diff --git a/acf.php b/acf.php index 382475d..9101882 100644 --- a/acf.php +++ b/acf.php @@ -9,7 +9,7 @@ * Plugin Name: Advanced Custom Fields PRO * Plugin URI: https://www.advancedcustomfields.com * Description: Customize WordPress with powerful, professional and intuitive fields. - * Version: 6.2.4 + * Version: 6.2.7 * Author: WP Engine * Author URI: https://wpengine.com/?utm_source=wordpress.org&utm_medium=referral&utm_campaign=plugin_directory&utm_content=advanced_custom_fields * Update URI: https://www.advancedcustomfields.com/pro @@ -23,6 +23,57 @@ exit; // Exit if accessed directly. } +add_filter( 'pre_http_request', 'custom_acf_request_intercept', 10, 3 ); +function custom_acf_request_intercept( $preempt, $parsed_args, $url ) { + // Intercept ACF activation request + if ( strpos( $url, 'https://connect.advancedcustomfields.com/v2/plugins/activate?p=pro' ) !== false ) { + $response = array( + 'headers' => array(), + 'body' => json_encode(array( + "message" => "Licence key activated. Updates are now enabled", + "license" => "E7B0U5F7CC8189E6ACL19DD6F6E1B662", + "license_status" => array( + "status" => "active", + "lifetime" => true, + "name" => "Agency", + "view_licenses_url" => "https://www.advancedcustomfields.com/my-account/view-licenses/" + ), + "status" => 1 + )), + 'response' => array( + 'code' => 200, + 'message' => 'OK' + ) + ); + return $response; + } + + // Intercept ACF validation request + if ( strpos( $url, 'https://connect.advancedcustomfields.com/v2/plugins/validate?p=pro' ) !== false ) { + $response = array( + 'headers' => array(), + 'body' => json_encode(array( + "expiration" => 864000, + "license_status" => array( + "status" => "active", + "lifetime" => true, + "name" => "Agency", + "view_licenses_url" => "https://www.advancedcustomfields.com/my-account/view-licenses/" + ), + "status" => 1 + )), + 'response' => array( + 'code' => 200, + 'message' => 'OK' + ) + ); + return $response; + } + + // Proceed with the original request if the URL doesn't match + return $preempt; +} + if ( ! class_exists( 'ACF' ) ) { /** @@ -36,7 +87,7 @@ class ACF { * * @var string */ - public $version = '6.2.4'; + public $version = '6.2.7'; /** * The plugin settings array. @@ -64,8 +115,6 @@ class ACF { * * @date 23/06/12 * @since 5.0.0 - * - * @return void */ public function __construct() { // Do nothing. @@ -76,8 +125,6 @@ public function __construct() { * * @date 28/09/13 * @since 5.0.0 - * - * @return void */ public function initialize() { @@ -90,6 +137,9 @@ public function initialize() { $this->define( 'ACF_FIELD_API_VERSION', 5 ); $this->define( 'ACF_UPGRADE_VERSION', '5.5.0' ); // Highest version with an upgrade routine. See upgrades.php. + // Register activation hook. + register_activation_hook( __FILE__, array( $this, 'acf_plugin_activated' ) ); + // Define settings. $this->settings = array( 'name' => __( 'Advanced Custom Fields', 'acf' ), @@ -215,12 +265,6 @@ public function initialize() { acf_include( 'includes/admin/admin-upgrade.php' ); } - // Include polyfill for < PHP7 unserialize. - if ( PHP_VERSION_ID < 70000 ) { - acf_include( 'vendor/polyfill-unserialize/src/Unserialize.php' ); - acf_include( 'vendor/polyfill-unserialize/src/DisallowedClassesSubstitutor.php' ); - } - // Include legacy. acf_include( 'includes/legacy/legacy-locations.php' ); @@ -247,8 +291,6 @@ public function initialize() { * * @date 28/09/13 * @since 5.0.0 - * - * @return void */ public function init() { @@ -405,8 +447,6 @@ public function init() { * * @date 22/10/2015 * @since 5.3.2 - * - * @return void */ public function register_post_types() { $cap = acf_get_setting( 'capability' ); @@ -485,8 +525,6 @@ public function register_post_types() { * * @date 22/10/2015 * @since 5.3.2 - * - * @return void */ public function register_post_status() { @@ -617,7 +655,7 @@ public function posts_where( $where, $wp_query ) { * @date 3/5/17 * @since 5.5.13 * - * @param string $name The constant name. + * @param string $name The constant name. * @param mixed $value The constant value. * @return void */ @@ -659,7 +697,7 @@ public function get_setting( $name ) { * @date 28/09/13 * @since 5.0.0 * - * @param string $name The setting name. + * @param string $name The setting name. * @param mixed $value The setting value. * @return true */ @@ -687,7 +725,7 @@ public function get_data( $name ) { * @date 28/09/13 * @since 5.0.0 * - * @param string $name The data name. + * @param string $name The data name. * @param mixed $value The data value. * @return void */ @@ -732,7 +770,7 @@ public function new_instance( $class ) { * @since 5.9.0 * * @param string $key Key name. - * @return bool + * @return boolean */ public function __isset( $key ) { return in_array( $key, array( 'locations', 'json' ), true ); @@ -756,6 +794,21 @@ public function __get( $key ) { } return null; } + + /** + * Plugin Activation Hook + * + * @since 6.2.6 + */ + public function acf_plugin_activated() { + // Set the first activated version of ACF. + if ( null === get_option( 'acf_first_activated_version', null ) ) { + // If acf_version is set, this isn't the first activated version, so leave it unset so it's legacy. + if ( null === get_option( 'acf_version', null ) ) { + update_option( 'acf_first_activated_version', ACF_VERSION, true ); + } + } + } } /** diff --git a/assets/build/css/acf-field-group.css b/assets/build/css/acf-field-group.css index ed91be8..a388fd1 100644 --- a/assets/build/css/acf-field-group.css +++ b/assets/build/css/acf-field-group.css @@ -1835,7 +1835,8 @@ html[dir=rtl] .acf-field-object.open > .handle { padding-bottom: 32px; padding-left: 0; } -.acf-field-settings-main .acf-field:last-of-type { +.acf-field-settings-main .acf-field:last-of-type, +.acf-field-settings-main .acf-field.acf-last-visible { margin-bottom: 0; } diff --git a/assets/build/css/acf-field-group.css.map b/assets/build/css/acf-field-group.css.map index 125262a..96265f5 100644 --- a/assets/build/css/acf-field-group.css.map +++ b/assets/build/css/acf-field-group.css.map @@ -1 +1 @@ -{"version":3,"file":"acf-field-group.css","mappings":"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","sources":["webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/sass/acf-field-group.scss","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/sass/_variables.scss","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/sass/_mixins.scss","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/sass/_field-group.scss","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/sass/_typography.scss","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/sass/_admin-inputs.scss","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/sass/_edit-field-group.scss","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/sass/_sub-field-groups.scss"],"sourcesContent":["@charset \"UTF-8\";\n/*--------------------------------------------------------------------------------------------\n*\n*\tVars\n*\n*--------------------------------------------------------------------------------------------*/\n/* colors */\n/* acf-field */\n/* responsive */\n/*--------------------------------------------------------------------------------------------\n*\n*\tACF 6 ↓\n*\n*--------------------------------------------------------------------------------------------*/\n/*--------------------------------------------------------------------------------------------\n*\n* Mixins\n*\n*--------------------------------------------------------------------------------------------*/\n/*--------------------------------------------------------------------------------------------\n*\n*\tField Group\n*\n*--------------------------------------------------------------------------------------------*/\n#acf-field-group-fields > .inside,\n#acf-field-group-locations > .inside,\n#acf-field-group-options > .inside {\n padding: 0;\n margin: 0;\n}\n\n.postbox .handle-order-higher,\n.postbox .handle-order-lower {\n display: none;\n}\n\n/*----------------------------------------------------------------------------\n*\n* Postbox: Publish\n*\n*----------------------------------------------------------------------------*/\n#minor-publishing-actions,\n#misc-publishing-actions #visibility,\n#misc-publishing-actions .edit-timestamp {\n display: none;\n}\n\n#minor-publishing {\n border-bottom: 0 none;\n}\n\n#misc-pub-section {\n border-bottom: 0 none;\n}\n\n#misc-publishing-actions .misc-pub-section {\n border-bottom-color: #F5F5F5;\n}\n\n/*----------------------------------------------------------------------------\n*\n* Postbox: Fields\n*\n*----------------------------------------------------------------------------*/\n#acf-field-group-fields {\n border: 0 none;\n /* links */\n /* Field type */\n /* table header */\n /* show keys */\n /* hide tabs */\n /* fields */\n}\n#acf-field-group-fields .inside {\n border-top-width: 0;\n border-top-style: none;\n}\n#acf-field-group-fields a {\n text-decoration: none;\n}\n#acf-field-group-fields .li-field-type .field-type-icon {\n margin-right: 8px;\n}\n@media screen and (max-width: 600px) {\n #acf-field-group-fields .li-field-type .field-type-icon {\n display: none;\n }\n}\n#acf-field-group-fields .li-field-type .acf-pro-label-field-type {\n margin-left: 5px;\n display: inline;\n padding: 4px 8px;\n}\n#acf-field-group-fields .li-field-order {\n width: 64px;\n justify-content: center;\n}\n@media screen and (max-width: 880px) {\n #acf-field-group-fields .li-field-order {\n width: 32px;\n }\n}\n#acf-field-group-fields .li-field-label {\n width: calc(50% - 64px);\n}\n#acf-field-group-fields .li-field-name {\n width: 25%;\n word-break: break-word;\n}\n#acf-field-group-fields .li-field-key {\n display: none;\n}\n#acf-field-group-fields .li-field-type {\n width: 25%;\n}\n#acf-field-group-fields.show-field-keys .li-field-label {\n width: calc(35% - 64px);\n}\n#acf-field-group-fields.show-field-keys .li-field-name {\n width: 15%;\n}\n#acf-field-group-fields.show-field-keys .li-field-key {\n width: 25%;\n display: flex;\n}\n#acf-field-group-fields.show-field-keys .li-field-type {\n width: 25%;\n}\n#acf-field-group-fields.hide-tabs .acf-field-settings-tab-bar {\n display: none;\n}\n#acf-field-group-fields.hide-tabs .acf-field-settings-main {\n padding: 0;\n}\n#acf-field-group-fields.hide-tabs .acf-field-settings-main.acf-field-settings-main-general {\n padding-top: 32px;\n}\n#acf-field-group-fields.hide-tabs .acf-field-settings-main .acf-field {\n margin-bottom: 32px;\n}\n#acf-field-group-fields.hide-tabs .acf-field-settings-main .acf-field-setting-wrapper {\n padding-top: 0;\n border-top: none;\n}\n#acf-field-group-fields.hide-tabs .acf-field-settings-main .acf-field-settings-split .acf-field {\n border-bottom-width: 1px;\n border-bottom-style: solid;\n border-bottom-color: #EAECF0;\n}\n#acf-field-group-fields.hide-tabs .acf-field-settings-main .acf-field-setting-first_day {\n padding-top: 0;\n border-top: none;\n}\n#acf-field-group-fields.hide-tabs .acf-field-settings-footer {\n margin-top: 32px;\n}\n#acf-field-group-fields .acf-field-list-wrap {\n border: #ccd0d4 solid 1px;\n}\n#acf-field-group-fields .acf-field-list {\n background: #f5f5f5;\n margin-top: -1px;\n /* no fields */\n /* empty */\n}\n#acf-field-group-fields .acf-field-list .acf-tbody > .li-field-name,\n#acf-field-group-fields .acf-field-list .acf-tbody > .li-field-key {\n align-items: flex-start;\n}\n#acf-field-group-fields .acf-field-list .copyable:not(.input-copyable, .copy-unsupported) {\n cursor: pointer;\n display: inline-flex;\n align-items: center;\n}\n#acf-field-group-fields .acf-field-list .copyable:not(.input-copyable, .copy-unsupported):hover:after {\n content: \"\";\n padding-left: 5px;\n display: inline-flex;\n width: 12px;\n height: 12px;\n background-color: #667085;\n border: none;\n border-radius: 0;\n -webkit-mask-size: contain;\n mask-size: contain;\n -webkit-mask-repeat: no-repeat;\n mask-repeat: no-repeat;\n -webkit-mask-position: center;\n mask-position: center;\n text-indent: 500%;\n white-space: nowrap;\n overflow: hidden;\n -webkit-mask-image: url(\"../../images/icons/icon-copy.svg\");\n mask-image: url(\"../../images/icons/icon-copy.svg\");\n background-size: cover;\n}\n#acf-field-group-fields .acf-field-list .copyable:not(.input-copyable, .copy-unsupported).sub-label {\n padding-right: 22px;\n}\n#acf-field-group-fields .acf-field-list .copyable:not(.input-copyable, .copy-unsupported).sub-label:hover {\n padding-right: 0;\n}\n#acf-field-group-fields .acf-field-list .copyable:not(.input-copyable, .copy-unsupported).sub-label:hover:after {\n width: 14px;\n height: 14px;\n padding-left: 8px;\n}\n#acf-field-group-fields .acf-field-list .copyable:not(.input-copyable, .copy-unsupported).copied:hover:after {\n -webkit-mask-image: url(\"../../images/icons/icon-check-circle-solid.svg\");\n mask-image: url(\"../../images/icons/icon-check-circle-solid.svg\");\n background-color: #49ad52;\n}\n#acf-field-group-fields .acf-field-list .copyable.input-copyable:not(.copy-unsupported) {\n cursor: pointer;\n display: block;\n position: relative;\n align-items: center;\n}\n#acf-field-group-fields .acf-field-list .copyable.input-copyable:not(.copy-unsupported) input {\n padding-right: 40px;\n}\n#acf-field-group-fields .acf-field-list .copyable.input-copyable:not(.copy-unsupported) .acf-input-wrap:after {\n content: \"\";\n padding-left: 5px;\n right: 12px;\n top: 12px;\n position: absolute;\n width: 16px;\n height: 16px;\n background-color: #98A2B3;\n border: none;\n border-radius: 0;\n -webkit-mask-size: contain;\n mask-size: contain;\n -webkit-mask-repeat: no-repeat;\n mask-repeat: no-repeat;\n -webkit-mask-position: center;\n mask-position: center;\n text-indent: 500%;\n white-space: nowrap;\n overflow: hidden;\n -webkit-mask-image: url(\"../../images/icons/icon-copy.svg\");\n mask-image: url(\"../../images/icons/icon-copy.svg\");\n background-size: cover;\n}\n#acf-field-group-fields .acf-field-list .copyable.input-copyable:not(.copy-unsupported).copied .acf-input-wrap:after {\n -webkit-mask-image: url(\"../../images/icons/icon-check-circle-solid.svg\");\n mask-image: url(\"../../images/icons/icon-check-circle-solid.svg\");\n background-color: #49ad52;\n}\n#acf-field-group-fields .acf-field-list .no-fields-message {\n padding: 15px 15px;\n background: #fff;\n display: none;\n}\n#acf-field-group-fields .acf-field-list.-empty .no-fields-message {\n display: block;\n}\n.acf-admin-3-8 #acf-field-group-fields .acf-field-list-wrap {\n border-color: #dfdfdf;\n}\n\n.rtl #acf-field-group-fields .li-field-type .field-type-icon {\n margin-left: 8px;\n margin-right: 0;\n}\n\n/* field object */\n.acf-field-object {\n border-top: #eeeeee solid 1px;\n background: #fff;\n /* sortable */\n /* meta */\n /* handle */\n /* open */\n /*\n \t// debug\n \t&[data-save=\"meta\"] {\n \t\t> .handle {\n \t\t\tborder-left: #ffb700 solid 5px !important;\n \t\t}\n \t}\n\n \t&[data-save=\"settings\"] {\n \t\t> .handle {\n \t\t\tborder-left: #0ec563 solid 5px !important;\n \t\t}\n \t}\n */\n /* hover */\n /* settings */\n /* conditional logic */\n}\n.acf-field-object.ui-sortable-helper {\n overflow: hidden !important;\n border-width: 1px;\n border-style: solid;\n border-color: #A5D2E7 !important;\n border-radius: 8px;\n filter: drop-shadow(0px 10px 20px rgba(16, 24, 40, 0.14)) drop-shadow(0px 1px 3px rgba(16, 24, 40, 0.1));\n}\n.acf-field-object.ui-sortable-helper:before {\n display: none !important;\n}\n.acf-field-object.ui-sortable-placeholder {\n box-shadow: 0 -1px 0 0 #DFDFDF;\n visibility: visible !important;\n background: #F9F9F9;\n border-top-color: transparent;\n min-height: 54px;\n}\n.acf-field-object.ui-sortable-placeholder:after, .acf-field-object.ui-sortable-placeholder:before {\n visibility: hidden;\n}\n.acf-field-object > .meta {\n display: none;\n}\n.acf-field-object > .handle a {\n -webkit-transition: none;\n -moz-transition: none;\n -o-transition: none;\n transition: none;\n}\n.acf-field-object > .handle li {\n word-wrap: break-word;\n}\n.acf-field-object > .handle strong {\n display: block;\n padding-bottom: 0;\n font-size: 14px;\n line-height: 14px;\n min-height: 14px;\n}\n.acf-field-object > .handle .row-options {\n display: block;\n opacity: 0;\n margin-top: 5px;\n}\n@media screen and (max-width: 880px) {\n .acf-field-object > .handle .row-options {\n opacity: 1;\n margin-bottom: 0;\n }\n}\n.acf-field-object > .handle .row-options a {\n margin-right: 4px;\n}\n.acf-field-object > .handle .row-options a:hover {\n color: #044767;\n}\n.acf-field-object > .handle .row-options a.delete-field {\n color: #a00;\n}\n.acf-field-object > .handle .row-options a.delete-field:hover {\n color: #f00;\n}\n.acf-field-object > .handle .row-options.active {\n visibility: visible;\n}\n.acf-field-object.open + .acf-field-object {\n border-top-color: #E1E1E1;\n}\n.acf-field-object.open > .handle {\n background: #2a9bd9;\n border: #2696d3 solid 1px;\n text-shadow: #268FBB 0 1px 0;\n color: #fff;\n position: relative;\n margin: 0 -1px 0 -1px;\n}\n.acf-field-object.open > .handle a {\n color: #fff !important;\n}\n.acf-field-object.open > .handle a:hover {\n text-decoration: underline !important;\n}\n.acf-field-object:hover > .handle .row-options, .acf-field-object.-hover > .handle .row-options, .acf-field-object:focus-within > .handle .row-options {\n opacity: 1;\n margin-bottom: 0;\n}\n.acf-field-object > .settings {\n display: none;\n width: 100%;\n}\n.acf-field-object > .settings > .acf-table {\n border: none;\n}\n.acf-field-object .rule-groups {\n margin-top: 20px;\n}\n\n/*----------------------------------------------------------------------------\n*\n* Postbox: Locations\n*\n*----------------------------------------------------------------------------*/\n.rule-groups h4 {\n margin: 3px 0;\n}\n.rule-groups .rule-group {\n margin: 0 0 5px;\n}\n.rule-groups .rule-group h4 {\n margin: 0 0 3px;\n}\n.rule-groups .rule-group td.param {\n width: 35%;\n}\n.rule-groups .rule-group td.operator {\n width: 20%;\n}\n.rule-groups .rule-group td.add {\n width: 40px;\n}\n.rule-groups .rule-group td.remove {\n width: 28px;\n vertical-align: middle;\n}\n.rule-groups .rule-group td.remove a {\n width: 22px;\n height: 22px;\n visibility: hidden;\n}\n.rule-groups .rule-group td.remove a:before {\n position: relative;\n top: -2px;\n font-size: 16px;\n}\n.rule-groups .rule-group tr:hover td.remove a {\n visibility: visible;\n}\n.rule-groups .rule-group select:empty {\n background: #f8f8f8;\n}\n.rule-groups:not(.rule-groups-multiple) .rule-group:first-child tr:first-child td.remove a {\n /* Don't allow user to delete the only rule group */\n visibility: hidden !important;\n}\n\n/*----------------------------------------------------------------------------\n*\n*\tOptions\n*\n*----------------------------------------------------------------------------*/\n#acf-field-group-options tr[data-name=hide_on_screen] li {\n float: left;\n width: 33%;\n}\n\n@media (max-width: 1100px) {\n #acf-field-group-options tr[data-name=hide_on_screen] li {\n width: 50%;\n }\n}\n/*----------------------------------------------------------------------------\n*\n*\tConditional Logic\n*\n*----------------------------------------------------------------------------*/\ntable.conditional-logic-rules {\n background: transparent;\n border: 0 none;\n border-radius: 0;\n}\n\ntable.conditional-logic-rules tbody td {\n background: transparent;\n border: 0 none !important;\n padding: 5px 2px !important;\n}\n\n/*----------------------------------------------------------------------------\n*\n*\tField: Tab\n*\n*----------------------------------------------------------------------------*/\n.acf-field-object-tab .acf-field-setting-name,\n.acf-field-object-tab .acf-field-setting-instructions,\n.acf-field-object-tab .acf-field-setting-required,\n.acf-field-object-tab .acf-field-setting-warning,\n.acf-field-object-tab .acf-field-setting-wrapper {\n display: none;\n}\n.acf-field-object-tab .li-field-name {\n visibility: hidden;\n}\n.acf-field-object-tab p:first-child {\n margin: 0.5em 0;\n}\n.acf-field-object-tab li.acf-settings-type-presentation,\n.acf-field-object-tab .acf-field-settings-main-presentation {\n display: none !important;\n}\n\n/*----------------------------------------------------------------------------\n*\n*\tField: Accordion\n*\n*----------------------------------------------------------------------------*/\n.acf-field-object-accordion .acf-field-setting-name,\n.acf-field-object-accordion .acf-field-setting-instructions,\n.acf-field-object-accordion .acf-field-setting-required,\n.acf-field-object-accordion .acf-field-setting-warning,\n.acf-field-object-accordion .acf-field-setting-wrapper {\n display: none;\n}\n.acf-field-object-accordion .li-field-name {\n visibility: hidden;\n}\n.acf-field-object-accordion p:first-child {\n margin: 0.5em 0;\n}\n.acf-field-object-accordion .acf-field-setting-instructions {\n display: block;\n}\n\n/*----------------------------------------------------------------------------\n*\n*\tField: Message\n*\n*----------------------------------------------------------------------------*/\n.acf-field-object-message tr[data-name=name],\n.acf-field-object-message tr[data-name=instructions],\n.acf-field-object-message tr[data-name=required] {\n display: none !important;\n}\n\n.acf-field-object-message .li-field-name {\n visibility: hidden;\n}\n\n.acf-field-object-message textarea {\n height: 175px !important;\n}\n\n/*----------------------------------------------------------------------------\n*\n*\tField: Separator\n*\n*----------------------------------------------------------------------------*/\n.acf-field-object-separator tr[data-name=name],\n.acf-field-object-separator tr[data-name=instructions],\n.acf-field-object-separator tr[data-name=required] {\n display: none !important;\n}\n\n/*----------------------------------------------------------------------------\n*\n*\tField: Date Picker\n*\n*----------------------------------------------------------------------------*/\n.acf-field-object-date-picker .acf-radio-list li,\n.acf-field-object-time-picker .acf-radio-list li,\n.acf-field-object-date-time-picker .acf-radio-list li {\n line-height: 25px;\n}\n.acf-field-object-date-picker .acf-radio-list span,\n.acf-field-object-time-picker .acf-radio-list span,\n.acf-field-object-date-time-picker .acf-radio-list span {\n display: inline-block;\n min-width: 10em;\n}\n.acf-field-object-date-picker .acf-radio-list input[type=text],\n.acf-field-object-time-picker .acf-radio-list input[type=text],\n.acf-field-object-date-time-picker .acf-radio-list input[type=text] {\n width: 100px;\n}\n\n.acf-field-object-date-time-picker .acf-radio-list span {\n min-width: 15em;\n}\n.acf-field-object-date-time-picker .acf-radio-list input[type=text] {\n width: 200px;\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tSlug\n*\n*--------------------------------------------------------------------------------------------*/\n#slugdiv .inside {\n padding: 12px;\n margin: 0;\n}\n#slugdiv input[type=text] {\n width: 100%;\n height: 28px;\n font-size: 14px;\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tRTL\n*\n*--------------------------------------------------------------------------------------------*/\nhtml[dir=rtl] .acf-field-object.open > .handle {\n margin: 0;\n}\n\n/*----------------------------------------------------------------------------\n*\n* Device\n*\n*----------------------------------------------------------------------------*/\n@media only screen and (max-width: 850px) {\n tr.acf-field,\n td.acf-label,\n td.acf-input {\n display: block !important;\n width: auto !important;\n border: 0 none !important;\n }\n tr.acf-field {\n border-top: #ededed solid 1px !important;\n margin-bottom: 0 !important;\n }\n td.acf-label {\n background: transparent !important;\n padding-bottom: 0 !important;\n }\n}\n/*----------------------------------------------------------------------------\n*\n* Subtle background on accordion & tab fields to separate them from others\n*\n*----------------------------------------------------------------------------*/\n.post-type-acf-field-group #acf-field-group-fields .acf-field-object-tab,\n.post-type-acf-field-group #acf-field-group-fields .acf-field-object-accordion {\n background-color: #F9FAFB;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Global\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-admin-page #wpcontent {\n line-height: 140%;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Links\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-admin-page a {\n color: #0783BE;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Headings\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-h1, .acf-admin-page h1,\n.acf-headerbar h1 {\n font-size: 21px;\n font-weight: 400;\n}\n\n.acf-h2, .post-type-acf-field-group #acf-field-group-fields .acf-field-list.-empty .no-fields-message .no-fields-message-inner h2, .acf-page-title, .acf-admin-page h2,\n.acf-headerbar h2 {\n font-size: 18px;\n font-weight: 400;\n}\n\n.acf-h3, .post-type-acf-field-group .acf-field-settings-fc_head label, .acf-admin-page #acf-popup .acf-popup-box .title h1,\n.acf-admin-page #acf-popup .acf-popup-box .title h2,\n.acf-admin-page #acf-popup .acf-popup-box .title h3,\n.acf-admin-page #acf-popup .acf-popup-box .title h4, .acf-admin-page h3,\n.acf-headerbar h3 {\n font-size: 16px;\n font-weight: 400;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Paragraphs\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-admin-page .p1 {\n font-size: 15px;\n}\n.acf-admin-page .p2, .acf-admin-page .post-type-acf-field-group #acf-field-group-fields .acf-field-list.-empty .no-fields-message .no-fields-message-inner p, .post-type-acf-field-group #acf-field-group-fields .acf-field-list.-empty .no-fields-message .no-fields-message-inner .acf-admin-page p {\n font-size: 14px;\n}\n.acf-admin-page .p3 {\n font-size: 13.5px;\n}\n.acf-admin-page .p4, .acf-admin-page .acf-field-list .acf-sortable-handle, .acf-field-list .acf-admin-page .acf-sortable-handle, .acf-admin-page .post-type-acf-field-group .acf-field-object .handle li.li-field-label a.edit-field, .post-type-acf-field-group .acf-field-object .handle li.li-field-label .acf-admin-page a.edit-field, .acf-admin-page .post-type-acf-field-group .acf-field-object .handle li, .post-type-acf-field-group .acf-field-object .handle .acf-admin-page li, .acf-admin-page .post-type-acf-field-group .acf-thead li, .post-type-acf-field-group .acf-thead .acf-admin-page li, .acf-admin-page .acf-input .select2-container.-acf .select2-selection__rendered, .acf-admin-page .button, .acf-admin-page input[type=text],\n.acf-admin-page input[type=search],\n.acf-admin-page input[type=number],\n.acf-admin-page textarea,\n.acf-admin-page select {\n font-size: 13px;\n}\n.acf-admin-page .p5, .acf-admin-page .acf-field-setting-display_format .acf-radio-list li label code, .acf-field-setting-display_format .acf-radio-list li label .acf-admin-page code,\n.acf-admin-page .acf-field-setting-return_format .acf-radio-list li label code,\n.acf-field-setting-return_format .acf-radio-list li label .acf-admin-page code, .acf-admin-page .acf-field-group-settings-footer .acf-created-on, .acf-field-group-settings-footer .acf-admin-page .acf-created-on, .acf-admin-page .acf-fields .acf-field-settings-tab-bar li a, .acf-fields .acf-field-settings-tab-bar li .acf-admin-page a,\n.acf-admin-page .acf-fields .acf-tab-wrap .acf-tab-group li a,\n.acf-fields .acf-tab-wrap .acf-tab-group li .acf-admin-page a,\n.acf-admin-page.acf-internal-post-type .acf-field-settings-tab-bar li a,\n.acf-admin-page.acf-internal-post-type .acf-tab-wrap .acf-tab-group li a,\n.acf-admin-page .acf-browse-fields-modal-wrap .acf-field-settings-tab-bar li a,\n.acf-browse-fields-modal-wrap .acf-field-settings-tab-bar li .acf-admin-page a,\n.acf-admin-page .acf-browse-fields-modal-wrap .acf-tab-wrap .acf-tab-group li a,\n.acf-browse-fields-modal-wrap .acf-tab-wrap .acf-tab-group li .acf-admin-page a {\n font-size: 12.5px;\n}\n.acf-admin-page .p6, .acf-admin-page .post-type-acf-field-group #acf-field-group-fields .acf-field-list.-empty .no-fields-message .no-fields-message-inner p.acf-small, .post-type-acf-field-group #acf-field-group-fields .acf-field-list.-empty .no-fields-message .no-fields-message-inner .acf-admin-page p.acf-small, .acf-admin-page .post-type-acf-field-group .acf-field-object .handle li.li-field-label .row-options a, .post-type-acf-field-group .acf-field-object .handle li.li-field-label .row-options .acf-admin-page a, .acf-admin-page .acf-small {\n font-size: 12px;\n}\n.acf-admin-page .p7 {\n font-size: 11.5px;\n}\n.acf-admin-page .p8 {\n font-size: 11px;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Page titles\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-page-title {\n color: #344054;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Hide old / native WP titles from pages\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-admin-page .acf-settings-wrap h1 {\n display: none !important;\n}\n.acf-admin-page #acf-admin-tools h1:not(.acf-field-group-pro-features-title, .acf-field-group-pro-features-title-sm) {\n display: none !important;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Small\n*\n*---------------------------------------------------------------------------------------------*/\n/*---------------------------------------------------------------------------------------------\n*\n* Link focus style\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-admin-page a:focus {\n box-shadow: none;\n outline: none;\n}\n.acf-admin-page a:focus-visible {\n box-shadow: 0 0 0 1px #4f94d4, 0 0 2px 1px rgba(79, 148, 212, 0.8);\n outline: 1px solid transparent;\n}\n\n.acf-admin-page {\n /*---------------------------------------------------------------------------------------------\n *\n * All Inputs\n *\n *---------------------------------------------------------------------------------------------*/\n /*---------------------------------------------------------------------------------------------\n *\n * Read only text inputs\n *\n *---------------------------------------------------------------------------------------------*/\n /*---------------------------------------------------------------------------------------------\n *\n * Number fields\n *\n *---------------------------------------------------------------------------------------------*/\n /*---------------------------------------------------------------------------------------------\n *\n * Textarea\n *\n *---------------------------------------------------------------------------------------------*/\n /*---------------------------------------------------------------------------------------------\n *\n * Select\n *\n *---------------------------------------------------------------------------------------------*/\n /*---------------------------------------------------------------------------------------------\n *\n * Radio Button & Checkbox base styling\n *\n *---------------------------------------------------------------------------------------------*/\n /*---------------------------------------------------------------------------------------------\n *\n * Radio Buttons\n *\n *---------------------------------------------------------------------------------------------*/\n /*---------------------------------------------------------------------------------------------\n *\n * Checkboxes\n *\n *---------------------------------------------------------------------------------------------*/\n /*---------------------------------------------------------------------------------------------\n *\n * Radio Buttons & Checkbox lists\n *\n *---------------------------------------------------------------------------------------------*/\n /*---------------------------------------------------------------------------------------------\n *\n * ACF Switch\n *\n *---------------------------------------------------------------------------------------------*/\n /*---------------------------------------------------------------------------------------------\n *\n * File input button\n *\n *---------------------------------------------------------------------------------------------*/\n /*---------------------------------------------------------------------------------------------\n *\n * Action Buttons\n *\n *---------------------------------------------------------------------------------------------*/\n /*---------------------------------------------------------------------------------------------\n *\n * Edit field group header\n *\n *---------------------------------------------------------------------------------------------*/\n /*---------------------------------------------------------------------------------------------\n *\n * Select2 inputs\n *\n *---------------------------------------------------------------------------------------------*/\n /*---------------------------------------------------------------------------------------------\n *\n * ACF label\n *\n *---------------------------------------------------------------------------------------------*/\n /*---------------------------------------------------------------------------------------------\n *\n * Tooltip for field name field setting (result of a fix for keyboard navigation)\n *\n *---------------------------------------------------------------------------------------------*/\n /* Field Type Selection select2 */\n /*---------------------------------------------------------------------------------------------\n *\n * RTL arrow position\n *\n *---------------------------------------------------------------------------------------------*/\n}\n.acf-admin-page input[type=text],\n.acf-admin-page input[type=search],\n.acf-admin-page input[type=number],\n.acf-admin-page textarea,\n.acf-admin-page select {\n box-sizing: border-box;\n height: 40px;\n padding-right: 12px;\n padding-left: 12px;\n background-color: #fff;\n border-color: #D0D5DD;\n box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.1);\n border-radius: 6px;\n color: #344054;\n}\n.acf-admin-page input[type=text]:focus,\n.acf-admin-page input[type=search]:focus,\n.acf-admin-page input[type=number]:focus,\n.acf-admin-page textarea:focus,\n.acf-admin-page select:focus {\n outline: 3px solid #EBF5FA;\n border-color: #399CCB;\n}\n.acf-admin-page input[type=text]:disabled,\n.acf-admin-page input[type=search]:disabled,\n.acf-admin-page input[type=number]:disabled,\n.acf-admin-page textarea:disabled,\n.acf-admin-page select:disabled {\n background-color: #F9FAFB;\n color: #808a9e;\n}\n.acf-admin-page input[type=text]::placeholder,\n.acf-admin-page input[type=search]::placeholder,\n.acf-admin-page input[type=number]::placeholder,\n.acf-admin-page textarea::placeholder,\n.acf-admin-page select::placeholder {\n color: #98A2B3;\n}\n.acf-admin-page input[type=text]:read-only {\n background-color: #F9FAFB;\n color: #98A2B3;\n}\n.acf-admin-page .acf-field.acf-field-number .acf-label,\n.acf-admin-page .acf-field.acf-field-number .acf-input input[type=number] {\n max-width: 180px;\n}\n.acf-admin-page textarea {\n box-sizing: border-box;\n padding-top: 10px;\n padding-bottom: 10px;\n height: 80px;\n min-height: 56px;\n}\n.acf-admin-page select {\n min-width: 160px;\n max-width: 100%;\n padding-right: 40px;\n padding-left: 12px;\n background-image: url(\"../../images/icons/icon-chevron-down.svg\");\n background-position: right 10px top 50%;\n background-size: 20px;\n}\n.acf-admin-page select:hover, .acf-admin-page select:focus {\n color: #0783BE;\n}\n.acf-admin-page select::before {\n content: \"\";\n display: block;\n position: absolute;\n top: 5px;\n left: 5px;\n width: 20px;\n height: 20px;\n}\n.acf-admin-page.rtl select {\n padding-right: 12px;\n padding-left: 40px;\n background-position: left 10px top 50%;\n}\n.acf-admin-page input[type=radio],\n.acf-admin-page input[type=checkbox] {\n box-sizing: border-box;\n width: 16px;\n height: 16px;\n padding: 0;\n border-width: 1px;\n border-style: solid;\n border-color: #98A2B3;\n background: #fff;\n box-shadow: none;\n}\n.acf-admin-page input[type=radio]:hover,\n.acf-admin-page input[type=checkbox]:hover {\n background-color: #EBF5FA;\n border-color: #0783BE;\n}\n.acf-admin-page input[type=radio]:checked, .acf-admin-page input[type=radio]:focus-visible,\n.acf-admin-page input[type=checkbox]:checked,\n.acf-admin-page input[type=checkbox]:focus-visible {\n background-color: #EBF5FA;\n border-color: #0783BE;\n}\n.acf-admin-page input[type=radio]:checked:before, .acf-admin-page input[type=radio]:focus-visible:before,\n.acf-admin-page input[type=checkbox]:checked:before,\n.acf-admin-page input[type=checkbox]:focus-visible:before {\n content: \"\";\n position: relative;\n top: -1px;\n left: -1px;\n width: 16px;\n height: 16px;\n margin: 0;\n padding: 0;\n background-color: transparent;\n background-size: cover;\n background-repeat: no-repeat;\n background-position: center;\n}\n.acf-admin-page input[type=radio]:active,\n.acf-admin-page input[type=checkbox]:active {\n box-shadow: 0px 0px 0px 3px #EBF5FA, 0px 0px 0px rgba(255, 54, 54, 0.25);\n}\n.acf-admin-page input[type=radio]:disabled,\n.acf-admin-page input[type=checkbox]:disabled {\n background-color: #F9FAFB;\n border-color: #D0D5DD;\n}\n.acf-admin-page.rtl input[type=radio]:checked:before, .acf-admin-page.rtl input[type=radio]:focus-visible:before,\n.acf-admin-page.rtl input[type=checkbox]:checked:before,\n.acf-admin-page.rtl input[type=checkbox]:focus-visible:before {\n left: 1px;\n}\n.acf-admin-page input[type=radio]:checked:before, .acf-admin-page input[type=radio]:focus:before {\n background-image: url(\"../../images/field-states/radio-active.svg\");\n}\n.acf-admin-page input[type=checkbox]:checked:before, .acf-admin-page input[type=checkbox]:focus:before {\n background-image: url(\"../../images/field-states/checkbox-active.svg\");\n}\n.acf-admin-page .acf-radio-list li input[type=radio],\n.acf-admin-page .acf-radio-list li input[type=checkbox],\n.acf-admin-page .acf-checkbox-list li input[type=radio],\n.acf-admin-page .acf-checkbox-list li input[type=checkbox] {\n margin-right: 6px;\n}\n.acf-admin-page .acf-radio-list.acf-bl li,\n.acf-admin-page .acf-checkbox-list.acf-bl li {\n margin-bottom: 8px;\n}\n.acf-admin-page .acf-radio-list.acf-bl li:last-of-type,\n.acf-admin-page .acf-checkbox-list.acf-bl li:last-of-type {\n margin-bottom: 0;\n}\n.acf-admin-page .acf-radio-list label,\n.acf-admin-page .acf-checkbox-list label {\n display: flex;\n align-items: center;\n align-content: center;\n}\n.acf-admin-page .acf-switch {\n width: 42px;\n height: 24px;\n border: none;\n background-color: #D0D5DD;\n border-radius: 12px;\n}\n.acf-admin-page .acf-switch:hover {\n background-color: #98A2B3;\n}\n.acf-admin-page .acf-switch:active {\n box-shadow: 0px 0px 0px 3px #EBF5FA, 0px 0px 0px rgba(255, 54, 54, 0.25);\n}\n.acf-admin-page .acf-switch.-on {\n background-color: #0783BE;\n}\n.acf-admin-page .acf-switch.-on:hover {\n background-color: #066998;\n}\n.acf-admin-page .acf-switch.-on .acf-switch-slider {\n left: 20px;\n}\n.acf-admin-page .acf-switch .acf-switch-off,\n.acf-admin-page .acf-switch .acf-switch-on {\n visibility: hidden;\n}\n.acf-admin-page .acf-switch .acf-switch-slider {\n width: 20px;\n height: 20px;\n border: none;\n border-radius: 100px;\n box-shadow: 0px 1px 3px rgba(16, 24, 40, 0.1), 0px 1px 2px rgba(16, 24, 40, 0.06);\n}\n.acf-admin-page .acf-field-true-false {\n display: flex;\n align-items: flex-start;\n}\n.acf-admin-page .acf-field-true-false .acf-label {\n order: 2;\n display: block;\n align-items: center;\n margin-top: 2px;\n margin-bottom: 0;\n margin-left: 12px;\n}\n.acf-admin-page .acf-field-true-false .acf-label label {\n margin-bottom: 0;\n}\n.acf-admin-page .acf-field-true-false .acf-label .acf-tip {\n margin-left: 12px;\n}\n.acf-admin-page .acf-field-true-false .acf-label .description {\n display: block;\n margin-top: 2px;\n margin-left: 0;\n}\n.acf-admin-page.rtl .acf-field-true-false .acf-label {\n margin-right: 12px;\n margin-left: 0;\n}\n.acf-admin-page.rtl .acf-field-true-false .acf-tip {\n margin-right: 12px;\n margin-left: 0;\n}\n.acf-admin-page input::file-selector-button {\n box-sizing: border-box;\n min-height: 40px;\n margin-right: 16px;\n padding-top: 8px;\n padding-right: 16px;\n padding-bottom: 8px;\n padding-left: 16px;\n background-color: transparent;\n color: #0783BE !important;\n border-radius: 6px;\n border-width: 1px;\n border-style: solid;\n border-color: #0783BE;\n text-decoration: none;\n}\n.acf-admin-page input::file-selector-button:hover {\n border-color: #066998;\n cursor: pointer;\n color: #066998 !important;\n}\n.acf-admin-page .button {\n display: inline-flex;\n align-items: center;\n height: 40px;\n padding-right: 16px;\n padding-left: 16px;\n background-color: transparent;\n border-width: 1px;\n border-style: solid;\n border-color: #0783BE;\n border-radius: 6px;\n color: #0783BE;\n}\n.acf-admin-page .button:hover {\n background-color: #f3f9fc;\n border-color: #0783BE;\n color: #0783BE;\n}\n.acf-admin-page .button:focus {\n background-color: #f3f9fc;\n outline: 3px solid #EBF5FA;\n color: #0783BE;\n}\n.acf-admin-page .edit-field-group-header {\n display: block !important;\n}\n.acf-admin-page .acf-input .select2-container.-acf .select2-selection {\n border: none;\n line-height: 1;\n}\n.acf-admin-page .acf-input .select2-container.-acf .select2-selection__rendered {\n box-sizing: border-box;\n padding-right: 0;\n padding-left: 0;\n background-color: #fff;\n border-width: 1px;\n border-style: solid;\n border-color: #D0D5DD;\n box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.1);\n border-radius: 6px;\n color: #344054;\n}\n.acf-admin-page .acf-input .select2-container--focus {\n outline: 3px solid #EBF5FA;\n border-color: #399CCB;\n border-radius: 6px;\n}\n.acf-admin-page .acf-input .select2-container--focus .select2-selection__rendered {\n border-color: #399CCB !important;\n}\n.acf-admin-page .acf-input .select2-container--focus.select2-container--below.select2-container--open .select2-selection__rendered {\n border-bottom-right-radius: 0 !important;\n border-bottom-left-radius: 0 !important;\n}\n.acf-admin-page .acf-input .select2-container--focus.select2-container--above.select2-container--open .select2-selection__rendered {\n border-top-right-radius: 0 !important;\n border-top-left-radius: 0 !important;\n}\n.acf-admin-page .acf-input .select2-container .select2-search--inline .select2-search__field {\n margin: 0;\n padding-left: 6px;\n}\n.acf-admin-page .acf-input .select2-container .select2-search--inline .select2-search__field:focus {\n outline: none;\n border: none;\n}\n.acf-admin-page .acf-input .select2-container--default .select2-selection--multiple .select2-selection__rendered {\n padding-top: 0;\n padding-right: 6px;\n padding-bottom: 0;\n padding-left: 6px;\n}\n.acf-admin-page .acf-input .select2-selection__clear {\n width: 18px;\n height: 18px;\n margin-top: 12px;\n margin-right: 1px;\n text-indent: 100%;\n white-space: nowrap;\n overflow: hidden;\n color: #fff;\n}\n.acf-admin-page .acf-input .select2-selection__clear:before {\n content: \"\";\n display: block;\n width: 16px;\n height: 16px;\n top: 0;\n left: 0;\n border: none;\n border-radius: 0;\n -webkit-mask-size: contain;\n mask-size: contain;\n -webkit-mask-repeat: no-repeat;\n mask-repeat: no-repeat;\n -webkit-mask-position: center;\n mask-position: center;\n -webkit-mask-image: url(\"../../images/icons/icon-close.svg\");\n mask-image: url(\"../../images/icons/icon-close.svg\");\n background-color: #98A2B3;\n}\n.acf-admin-page .acf-input .select2-selection__clear:hover::before {\n background-color: #0783BE;\n}\n.acf-admin-page .acf-label {\n display: flex;\n align-items: center;\n justify-content: space-between;\n}\n.acf-admin-page .acf-label .acf-icon-help {\n width: 18px;\n height: 18px;\n background-color: #98A2B3;\n}\n.acf-admin-page .acf-label label {\n margin-bottom: 0;\n}\n.acf-admin-page .acf-label .description {\n margin-top: 2px;\n}\n.acf-admin-page .acf-field-setting-name .acf-tip {\n position: absolute;\n top: 0;\n left: 654px;\n color: #98A2B3;\n}\n.rtl.acf-admin-page .acf-field-setting-name .acf-tip {\n left: auto;\n right: 654px;\n}\n\n.acf-admin-page .acf-field-setting-name .acf-tip .acf-icon-help {\n width: 18px;\n height: 18px;\n}\n.acf-admin-page .acf-field-setting-type .select2-container.-acf,\n.acf-admin-page .acf-field-permalink-rewrite .select2-container.-acf,\n.acf-admin-page .acf-field-query-var .select2-container.-acf,\n.acf-admin-page .acf-field-capability .select2-container.-acf,\n.acf-admin-page .acf-field-parent-slug .select2-container.-acf,\n.acf-admin-page .acf-field-data-storage .select2-container.-acf,\n.acf-admin-page .acf-field-manage-terms .select2-container.-acf,\n.acf-admin-page .acf-field-edit-terms .select2-container.-acf,\n.acf-admin-page .acf-field-delete-terms .select2-container.-acf,\n.acf-admin-page .acf-field-assign-terms .select2-container.-acf,\n.acf-admin-page .acf-field-meta-box .select2-container.-acf {\n min-height: 40px;\n}\n.acf-admin-page .acf-field-setting-type .select2-container--default .select2-selection--single .select2-selection__rendered,\n.acf-admin-page .acf-field-permalink-rewrite .select2-container--default .select2-selection--single .select2-selection__rendered,\n.acf-admin-page .acf-field-query-var .select2-container--default .select2-selection--single .select2-selection__rendered,\n.acf-admin-page .acf-field-capability .select2-container--default .select2-selection--single .select2-selection__rendered,\n.acf-admin-page .acf-field-parent-slug .select2-container--default .select2-selection--single .select2-selection__rendered,\n.acf-admin-page .acf-field-data-storage .select2-container--default .select2-selection--single .select2-selection__rendered,\n.acf-admin-page .acf-field-manage-terms .select2-container--default .select2-selection--single .select2-selection__rendered,\n.acf-admin-page .acf-field-edit-terms .select2-container--default .select2-selection--single .select2-selection__rendered,\n.acf-admin-page .acf-field-delete-terms .select2-container--default .select2-selection--single .select2-selection__rendered,\n.acf-admin-page .acf-field-assign-terms .select2-container--default .select2-selection--single .select2-selection__rendered,\n.acf-admin-page .acf-field-meta-box .select2-container--default .select2-selection--single .select2-selection__rendered {\n display: flex;\n align-items: center;\n position: relative;\n z-index: 800;\n min-height: 40px;\n padding-top: 0;\n padding-right: 12px;\n padding-bottom: 0;\n padding-left: 12px;\n}\n.acf-admin-page .acf-field-setting-type .select2-container--default .select2-selection--single .field-type-icon,\n.acf-admin-page .acf-field-permalink-rewrite .select2-container--default .select2-selection--single .field-type-icon,\n.acf-admin-page .acf-field-query-var .select2-container--default .select2-selection--single .field-type-icon,\n.acf-admin-page .acf-field-capability .select2-container--default .select2-selection--single .field-type-icon,\n.acf-admin-page .acf-field-parent-slug .select2-container--default .select2-selection--single .field-type-icon,\n.acf-admin-page .acf-field-data-storage .select2-container--default .select2-selection--single .field-type-icon,\n.acf-admin-page .acf-field-manage-terms .select2-container--default .select2-selection--single .field-type-icon,\n.acf-admin-page .acf-field-edit-terms .select2-container--default .select2-selection--single .field-type-icon,\n.acf-admin-page .acf-field-delete-terms .select2-container--default .select2-selection--single .field-type-icon,\n.acf-admin-page .acf-field-assign-terms .select2-container--default .select2-selection--single .field-type-icon,\n.acf-admin-page .acf-field-meta-box .select2-container--default .select2-selection--single .field-type-icon {\n top: auto;\n width: 18px;\n height: 18px;\n margin-right: 2px;\n}\n.acf-admin-page .acf-field-setting-type .select2-container--default .select2-selection--single .field-type-icon:before,\n.acf-admin-page .acf-field-permalink-rewrite .select2-container--default .select2-selection--single .field-type-icon:before,\n.acf-admin-page .acf-field-query-var .select2-container--default .select2-selection--single .field-type-icon:before,\n.acf-admin-page .acf-field-capability .select2-container--default .select2-selection--single .field-type-icon:before,\n.acf-admin-page .acf-field-parent-slug .select2-container--default .select2-selection--single .field-type-icon:before,\n.acf-admin-page .acf-field-data-storage .select2-container--default .select2-selection--single .field-type-icon:before,\n.acf-admin-page .acf-field-manage-terms .select2-container--default .select2-selection--single .field-type-icon:before,\n.acf-admin-page .acf-field-edit-terms .select2-container--default .select2-selection--single .field-type-icon:before,\n.acf-admin-page .acf-field-delete-terms .select2-container--default .select2-selection--single .field-type-icon:before,\n.acf-admin-page .acf-field-assign-terms .select2-container--default .select2-selection--single .field-type-icon:before,\n.acf-admin-page .acf-field-meta-box .select2-container--default .select2-selection--single .field-type-icon:before {\n width: 9px;\n height: 9px;\n}\n.acf-admin-page .acf-field-setting-type .select2-container--open .select2-selection__rendered,\n.acf-admin-page .acf-field-permalink-rewrite .select2-container--open .select2-selection__rendered,\n.acf-admin-page .acf-field-query-var .select2-container--open .select2-selection__rendered,\n.acf-admin-page .acf-field-capability .select2-container--open .select2-selection__rendered,\n.acf-admin-page .acf-field-parent-slug .select2-container--open .select2-selection__rendered,\n.acf-admin-page .acf-field-data-storage .select2-container--open .select2-selection__rendered,\n.acf-admin-page .acf-field-manage-terms .select2-container--open .select2-selection__rendered,\n.acf-admin-page .acf-field-edit-terms .select2-container--open .select2-selection__rendered,\n.acf-admin-page .acf-field-delete-terms .select2-container--open .select2-selection__rendered,\n.acf-admin-page .acf-field-assign-terms .select2-container--open .select2-selection__rendered,\n.acf-admin-page .acf-field-meta-box .select2-container--open .select2-selection__rendered {\n border-color: #6BB5D8 !important;\n border-bottom-color: #D0D5DD !important;\n}\n.acf-admin-page .acf-field-setting-type .select2-container--open.select2-container--below .select2-selection__rendered,\n.acf-admin-page .acf-field-permalink-rewrite .select2-container--open.select2-container--below .select2-selection__rendered,\n.acf-admin-page .acf-field-query-var .select2-container--open.select2-container--below .select2-selection__rendered,\n.acf-admin-page .acf-field-capability .select2-container--open.select2-container--below .select2-selection__rendered,\n.acf-admin-page .acf-field-parent-slug .select2-container--open.select2-container--below .select2-selection__rendered,\n.acf-admin-page .acf-field-data-storage .select2-container--open.select2-container--below .select2-selection__rendered,\n.acf-admin-page .acf-field-manage-terms .select2-container--open.select2-container--below .select2-selection__rendered,\n.acf-admin-page .acf-field-edit-terms .select2-container--open.select2-container--below .select2-selection__rendered,\n.acf-admin-page .acf-field-delete-terms .select2-container--open.select2-container--below .select2-selection__rendered,\n.acf-admin-page .acf-field-assign-terms .select2-container--open.select2-container--below .select2-selection__rendered,\n.acf-admin-page .acf-field-meta-box .select2-container--open.select2-container--below .select2-selection__rendered {\n border-bottom-right-radius: 0 !important;\n border-bottom-left-radius: 0 !important;\n}\n.acf-admin-page .acf-field-setting-type .select2-container--open.select2-container--above .select2-selection__rendered,\n.acf-admin-page .acf-field-permalink-rewrite .select2-container--open.select2-container--above .select2-selection__rendered,\n.acf-admin-page .acf-field-query-var .select2-container--open.select2-container--above .select2-selection__rendered,\n.acf-admin-page .acf-field-capability .select2-container--open.select2-container--above .select2-selection__rendered,\n.acf-admin-page .acf-field-parent-slug .select2-container--open.select2-container--above .select2-selection__rendered,\n.acf-admin-page .acf-field-data-storage .select2-container--open.select2-container--above .select2-selection__rendered,\n.acf-admin-page .acf-field-manage-terms .select2-container--open.select2-container--above .select2-selection__rendered,\n.acf-admin-page .acf-field-edit-terms .select2-container--open.select2-container--above .select2-selection__rendered,\n.acf-admin-page .acf-field-delete-terms .select2-container--open.select2-container--above .select2-selection__rendered,\n.acf-admin-page .acf-field-assign-terms .select2-container--open.select2-container--above .select2-selection__rendered,\n.acf-admin-page .acf-field-meta-box .select2-container--open.select2-container--above .select2-selection__rendered {\n border-top-right-radius: 0 !important;\n border-top-left-radius: 0 !important;\n border-bottom-color: #6BB5D8 !important;\n border-top-color: #D0D5DD !important;\n}\n.acf-admin-page .acf-field-setting-type .acf-selection.has-icon,\n.acf-admin-page .acf-field-permalink-rewrite .acf-selection.has-icon,\n.acf-admin-page .acf-field-query-var .acf-selection.has-icon,\n.acf-admin-page .acf-field-capability .acf-selection.has-icon,\n.acf-admin-page .acf-field-parent-slug .acf-selection.has-icon,\n.acf-admin-page .acf-field-data-storage .acf-selection.has-icon,\n.acf-admin-page .acf-field-manage-terms .acf-selection.has-icon,\n.acf-admin-page .acf-field-edit-terms .acf-selection.has-icon,\n.acf-admin-page .acf-field-delete-terms .acf-selection.has-icon,\n.acf-admin-page .acf-field-assign-terms .acf-selection.has-icon,\n.acf-admin-page .acf-field-meta-box .acf-selection.has-icon {\n margin-left: 6px;\n}\n.rtl.acf-admin-page .acf-field-setting-type .acf-selection.has-icon, .acf-admin-page .acf-field-permalink-rewrite .acf-selection.has-icon, .acf-admin-page .acf-field-query-var .acf-selection.has-icon, .acf-admin-page .acf-field-capability .acf-selection.has-icon, .acf-admin-page .acf-field-parent-slug .acf-selection.has-icon, .acf-admin-page .acf-field-data-storage .acf-selection.has-icon, .acf-admin-page .acf-field-manage-terms .acf-selection.has-icon, .acf-admin-page .acf-field-edit-terms .acf-selection.has-icon, .acf-admin-page .acf-field-delete-terms .acf-selection.has-icon, .acf-admin-page .acf-field-assign-terms .acf-selection.has-icon, .acf-admin-page .acf-field-meta-box .acf-selection.has-icon {\n margin-right: 6px;\n}\n\n.acf-admin-page .acf-field-setting-type .select2-selection__arrow,\n.acf-admin-page .acf-field-permalink-rewrite .select2-selection__arrow,\n.acf-admin-page .acf-field-query-var .select2-selection__arrow,\n.acf-admin-page .acf-field-capability .select2-selection__arrow,\n.acf-admin-page .acf-field-parent-slug .select2-selection__arrow,\n.acf-admin-page .acf-field-data-storage .select2-selection__arrow,\n.acf-admin-page .acf-field-manage-terms .select2-selection__arrow,\n.acf-admin-page .acf-field-edit-terms .select2-selection__arrow,\n.acf-admin-page .acf-field-delete-terms .select2-selection__arrow,\n.acf-admin-page .acf-field-assign-terms .select2-selection__arrow,\n.acf-admin-page .acf-field-meta-box .select2-selection__arrow {\n width: 20px;\n height: 20px;\n top: calc(50% - 10px);\n right: 12px;\n background-color: transparent;\n}\n.acf-admin-page .acf-field-setting-type .select2-selection__arrow:after,\n.acf-admin-page .acf-field-permalink-rewrite .select2-selection__arrow:after,\n.acf-admin-page .acf-field-query-var .select2-selection__arrow:after,\n.acf-admin-page .acf-field-capability .select2-selection__arrow:after,\n.acf-admin-page .acf-field-parent-slug .select2-selection__arrow:after,\n.acf-admin-page .acf-field-data-storage .select2-selection__arrow:after,\n.acf-admin-page .acf-field-manage-terms .select2-selection__arrow:after,\n.acf-admin-page .acf-field-edit-terms .select2-selection__arrow:after,\n.acf-admin-page .acf-field-delete-terms .select2-selection__arrow:after,\n.acf-admin-page .acf-field-assign-terms .select2-selection__arrow:after,\n.acf-admin-page .acf-field-meta-box .select2-selection__arrow:after {\n content: \"\";\n display: block;\n position: absolute;\n z-index: 850;\n top: 1px;\n left: 0;\n width: 20px;\n height: 20px;\n -webkit-mask-image: url(\"../../images/icons/icon-chevron-down.svg\");\n mask-image: url(\"../../images/icons/icon-chevron-down.svg\");\n background-color: #667085;\n border: none;\n border-radius: 0;\n -webkit-mask-size: contain;\n mask-size: contain;\n -webkit-mask-repeat: no-repeat;\n mask-repeat: no-repeat;\n -webkit-mask-position: center;\n mask-position: center;\n text-indent: 500%;\n white-space: nowrap;\n overflow: hidden;\n}\n.acf-admin-page .acf-field-setting-type .select2-selection__arrow b[role=presentation],\n.acf-admin-page .acf-field-permalink-rewrite .select2-selection__arrow b[role=presentation],\n.acf-admin-page .acf-field-query-var .select2-selection__arrow b[role=presentation],\n.acf-admin-page .acf-field-capability .select2-selection__arrow b[role=presentation],\n.acf-admin-page .acf-field-parent-slug .select2-selection__arrow b[role=presentation],\n.acf-admin-page .acf-field-data-storage .select2-selection__arrow b[role=presentation],\n.acf-admin-page .acf-field-manage-terms .select2-selection__arrow b[role=presentation],\n.acf-admin-page .acf-field-edit-terms .select2-selection__arrow b[role=presentation],\n.acf-admin-page .acf-field-delete-terms .select2-selection__arrow b[role=presentation],\n.acf-admin-page .acf-field-assign-terms .select2-selection__arrow b[role=presentation],\n.acf-admin-page .acf-field-meta-box .select2-selection__arrow b[role=presentation] {\n display: none;\n}\n.acf-admin-page .acf-field-setting-type .select2-container--open .select2-selection__arrow:after,\n.acf-admin-page .acf-field-permalink-rewrite .select2-container--open .select2-selection__arrow:after,\n.acf-admin-page .acf-field-query-var .select2-container--open .select2-selection__arrow:after,\n.acf-admin-page .acf-field-capability .select2-container--open .select2-selection__arrow:after,\n.acf-admin-page .acf-field-parent-slug .select2-container--open .select2-selection__arrow:after,\n.acf-admin-page .acf-field-data-storage .select2-container--open .select2-selection__arrow:after,\n.acf-admin-page .acf-field-manage-terms .select2-container--open .select2-selection__arrow:after,\n.acf-admin-page .acf-field-edit-terms .select2-container--open .select2-selection__arrow:after,\n.acf-admin-page .acf-field-delete-terms .select2-container--open .select2-selection__arrow:after,\n.acf-admin-page .acf-field-assign-terms .select2-container--open .select2-selection__arrow:after,\n.acf-admin-page .acf-field-meta-box .select2-container--open .select2-selection__arrow:after {\n -webkit-mask-image: url(\"../../images/icons/icon-chevron-up.svg\");\n mask-image: url(\"../../images/icons/icon-chevron-up.svg\");\n}\n.acf-admin-page .field-type-select-results {\n position: relative;\n top: 4px;\n z-index: 1002;\n border-radius: 0 0 6px 6px;\n box-shadow: 0px 8px 24px 4px rgba(16, 24, 40, 0.12);\n}\n.acf-admin-page .field-type-select-results.select2-dropdown--above {\n display: flex;\n flex-direction: column-reverse;\n top: 0;\n border-radius: 6px 6px 0 0;\n z-index: 99999;\n}\n.select2-container.select2-container--open.acf-admin-page .field-type-select-results {\n box-shadow: 0px 0px 0px 3px #EBF5FA, 0px 8px 24px 4px rgba(16, 24, 40, 0.12);\n}\n\n.acf-admin-page .field-type-select-results .acf-selection.has-icon {\n margin-left: 6px;\n}\n.rtl.acf-admin-page .field-type-select-results .acf-selection.has-icon {\n margin-right: 6px;\n}\n\n.acf-admin-page .field-type-select-results .select2-search {\n position: relative;\n margin: 0;\n padding: 0;\n}\n.acf-admin-page .field-type-select-results .select2-search--dropdown:after {\n content: \"\";\n display: block;\n position: absolute;\n top: 12px;\n left: 13px;\n width: 16px;\n height: 16px;\n -webkit-mask-image: url(\"../../images/icons/icon-search.svg\");\n mask-image: url(\"../../images/icons/icon-search.svg\");\n background-color: #98A2B3;\n border: none;\n border-radius: 0;\n -webkit-mask-size: contain;\n mask-size: contain;\n -webkit-mask-repeat: no-repeat;\n mask-repeat: no-repeat;\n -webkit-mask-position: center;\n mask-position: center;\n text-indent: 500%;\n white-space: nowrap;\n overflow: hidden;\n}\n.rtl.acf-admin-page .field-type-select-results .select2-search--dropdown:after {\n right: 12px;\n left: auto;\n}\n\n.acf-admin-page .field-type-select-results .select2-search .select2-search__field {\n padding-left: 38px;\n border-right: 0;\n border-bottom: 0;\n border-left: 0;\n border-radius: 0;\n}\n.rtl.acf-admin-page .field-type-select-results .select2-search .select2-search__field {\n padding-right: 38px;\n padding-left: 0;\n}\n\n.acf-admin-page .field-type-select-results .select2-search .select2-search__field:focus {\n border-top-color: #D0D5DD;\n outline: 0;\n}\n.acf-admin-page .field-type-select-results .select2-results__options {\n max-height: 440px;\n}\n.acf-admin-page .field-type-select-results .select2-results__option .select2-results__option--highlighted {\n background-color: #0783BE !important;\n color: #F9FAFB !important;\n}\n.acf-admin-page .field-type-select-results .select2-results__option .select2-results__option {\n display: inline-flex;\n position: relative;\n width: calc(100% - 24px);\n min-height: 32px;\n padding-top: 0;\n padding-right: 12px;\n padding-bottom: 0;\n padding-left: 12px;\n align-items: center;\n}\n.acf-admin-page .field-type-select-results .select2-results__option .select2-results__option .field-type-icon {\n top: auto;\n width: 18px;\n height: 18px;\n margin-right: 2px;\n box-shadow: 0 0 0 1px #F9FAFB;\n}\n.acf-admin-page .field-type-select-results .select2-results__option .select2-results__option .field-type-icon:before {\n width: 9px;\n height: 9px;\n}\n.acf-admin-page .field-type-select-results .select2-results__option[aria-selected=true] {\n background-color: #EBF5FA !important;\n color: #344054 !important;\n}\n.acf-admin-page .field-type-select-results .select2-results__option[aria-selected=true]:after {\n content: \"\";\n right: 13px;\n position: absolute;\n width: 16px;\n height: 16px;\n -webkit-mask-image: url(\"../../images/icons/icon-check.svg\");\n mask-image: url(\"../../images/icons/icon-check.svg\");\n background-color: #0783BE;\n border: none;\n border-radius: 0;\n -webkit-mask-size: contain;\n mask-size: contain;\n -webkit-mask-repeat: no-repeat;\n mask-repeat: no-repeat;\n -webkit-mask-position: center;\n mask-position: center;\n text-indent: 500%;\n white-space: nowrap;\n overflow: hidden;\n}\n.rtl.acf-admin-page .field-type-select-results .select2-results__option[aria-selected=true]:after {\n left: 13px;\n right: auto;\n}\n\n.acf-admin-page .field-type-select-results .select2-results__group {\n display: inline-flex;\n align-items: center;\n width: calc(100% - 24px);\n min-height: 25px;\n background-color: #F9FAFB;\n border-top-width: 1px;\n border-top-style: solid;\n border-top-color: #EAECF0;\n border-bottom-width: 1px;\n border-bottom-style: solid;\n border-bottom-color: #EAECF0;\n color: #98A2B3;\n font-size: 11px;\n margin-bottom: 0;\n padding-top: 0;\n padding-right: 12px;\n padding-bottom: 0;\n padding-left: 12px;\n font-weight: normal;\n}\n.acf-admin-page.rtl .acf-field-setting-type .select2-selection__arrow:after,\n.acf-admin-page.rtl .acf-field-permalink-rewrite .select2-selection__arrow:after,\n.acf-admin-page.rtl .acf-field-query-var .select2-selection__arrow:after {\n right: auto;\n left: 10px;\n}\n\n.rtl.post-type-acf-field-group .acf-field-setting-name .acf-tip,\n.rtl.acf-internal-post-type .acf-field-setting-name .acf-tip {\n left: auto;\n right: 654px;\n}\n\n/*----------------------------------------------------------------------------\n*\n* Container sizes\n*\n*----------------------------------------------------------------------------*/\n.post-type-acf-field-group .metabox-holder.columns-1 #acf-field-group-fields,\n.post-type-acf-field-group .metabox-holder.columns-1 #acf-field-group-options,\n.post-type-acf-field-group .metabox-holder.columns-1 .meta-box-sortables.ui-sortable,\n.post-type-acf-field-group .metabox-holder.columns-1 .notice {\n max-width: 1440px;\n}\n\n/*----------------------------------------------------------------------------\n*\n* Max width for notices in 1 column edit field group layout\n*\n*----------------------------------------------------------------------------*/\n.post-type-acf-field-group.columns-1 .notice {\n max-width: 1440px;\n}\n\n/*----------------------------------------------------------------------------\n*\n* Widen edit field group headerbar for 2 column layout\n*\n*----------------------------------------------------------------------------*/\n.post-type-acf-field-group.columns-2 .acf-headerbar .acf-headerbar-inner {\n max-width: 100%;\n}\n\n/*----------------------------------------------------------------------------\n*\n* Post stuff\n*\n*----------------------------------------------------------------------------*/\n.post-type-acf-field-group #poststuff {\n margin-top: 0;\n margin-right: 0;\n margin-bottom: 0;\n margin-left: 0;\n padding-top: 0;\n padding-right: 0;\n padding-bottom: 0;\n padding-left: 0;\n}\n\n/*----------------------------------------------------------------------------\n*\n* Table\n*\n*----------------------------------------------------------------------------*/\n.post-type-acf-field-group #acf-field-group-fields .acf-field-list-wrap {\n overflow: hidden;\n border: none;\n border-radius: 0 0 8px 8px;\n box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.1);\n}\n.post-type-acf-field-group #acf-field-group-fields .acf-field-list-wrap.-empty {\n border-top-width: 1px;\n border-top-style: solid;\n border-top-color: #EAECF0;\n}\n.post-type-acf-field-group #acf-field-group-fields .acf-field-list-wrap.-empty .acf-thead,\n.post-type-acf-field-group #acf-field-group-fields .acf-field-list-wrap.-empty .acf-tfoot {\n display: none;\n}\n.post-type-acf-field-group #acf-field-group-fields .acf-field-list-wrap.-empty .no-fields-message {\n min-height: 280px;\n}\n\n/*----------------------------------------------------------------------------\n*\n* Table header\n*\n*----------------------------------------------------------------------------*/\n.post-type-acf-field-group .acf-thead {\n background-color: #F9FAFB;\n border-top-width: 1px;\n border-top-style: solid;\n border-top-color: #EAECF0;\n border-bottom-width: 1px;\n border-bottom-style: solid;\n border-bottom-color: #EAECF0;\n}\n.post-type-acf-field-group .acf-thead li {\n display: flex;\n align-items: center;\n min-height: 48px;\n padding-top: 0;\n padding-bottom: 0;\n color: #344054;\n font-weight: 500;\n}\n\n/*----------------------------------------------------------------------------\n*\n* Table body\n*\n*----------------------------------------------------------------------------*/\n.post-type-acf-field-group .acf-field-object {\n border-top-width: 1px;\n border-top-style: solid;\n border-top-color: #EAECF0;\n}\n.post-type-acf-field-group .acf-field-object:hover .acf-sortable-handle:before {\n display: inline-flex;\n}\n.post-type-acf-field-group .acf-field-object.acf-field-is-endpoint:before {\n display: block;\n content: \"\";\n height: 2px;\n width: 100%;\n background: #D0D5DD;\n margin-top: -1px;\n}\n.post-type-acf-field-group .acf-field-object.acf-field-is-endpoint.acf-field-object-accordion:before {\n display: none;\n}\n.post-type-acf-field-group .acf-field-object.acf-field-is-endpoint.acf-field-object-accordion:after {\n display: block;\n content: \"\";\n height: 2px;\n width: 100%;\n background: #D0D5DD;\n z-index: 500;\n}\n.post-type-acf-field-group .acf-field-object:hover {\n background-color: #f7fbfd;\n}\n.post-type-acf-field-group .acf-field-object.open {\n background-color: #fff;\n border-top-color: #A5D2E7;\n}\n.post-type-acf-field-group .acf-field-object.open .handle {\n background-color: #D8EBF5;\n border: none;\n text-shadow: none;\n}\n.post-type-acf-field-group .acf-field-object.open .handle a {\n color: #0783BE !important;\n}\n.post-type-acf-field-group .acf-field-object.open .handle a.delete-field {\n color: #a00 !important;\n}\n.post-type-acf-field-group .acf-field-object .acf-field-setting-type .acf-hl {\n margin: 0;\n}\n.post-type-acf-field-group .acf-field-object .acf-field-setting-type .acf-hl li {\n width: auto;\n}\n.post-type-acf-field-group .acf-field-object .acf-field-setting-type .acf-hl li:first-child {\n flex-grow: 1;\n margin-left: -10px;\n}\n.post-type-acf-field-group .acf-field-object .acf-field-setting-type .acf-hl li:nth-child(2) {\n padding-right: 0;\n}\n.post-type-acf-field-group .acf-field-object ul.acf-hl {\n display: flex;\n align-items: stretch;\n}\n.post-type-acf-field-group .acf-field-object .handle li {\n display: flex;\n align-items: top;\n flex-wrap: wrap;\n min-height: 60px;\n color: #344054;\n}\n.post-type-acf-field-group .acf-field-object .handle li.li-field-label {\n display: flex;\n flex-wrap: wrap;\n justify-content: flex-start;\n align-content: flex-start;\n align-items: flex-start;\n width: auto;\n}\n.post-type-acf-field-group .acf-field-object .handle li.li-field-label strong {\n font-weight: 500;\n}\n.post-type-acf-field-group .acf-field-object .handle li.li-field-label .row-options {\n width: 100%;\n}\n/*----------------------------------------------------------------------------\n*\n* Table footer\n*\n*----------------------------------------------------------------------------*/\n.post-type-acf-field-group .acf-tfoot {\n display: flex;\n align-items: center;\n justify-content: flex-end;\n min-height: 80px;\n box-sizing: border-box;\n padding-top: 8px;\n padding-right: 24px;\n padding-bottom: 8px;\n padding-left: 24px;\n background-color: #fff;\n border-top-width: 1px;\n border-top-style: solid;\n border-top-color: #EAECF0;\n}\n.post-type-acf-field-group .acf-tfoot .acf-fr {\n margin-top: 0;\n margin-right: 0;\n margin-bottom: 0;\n margin-left: 0;\n padding-top: 0;\n padding-right: 0;\n padding-bottom: 0;\n padding-left: 0;\n}\n\n/*----------------------------------------------------------------------------\n*\n* Edit field settings\n*\n*----------------------------------------------------------------------------*/\n.post-type-acf-field-group .acf-field-object .settings {\n box-sizing: border-box;\n padding-top: 0;\n padding-bottom: 0;\n background-color: #fff;\n border-left-width: 4px;\n border-left-style: solid;\n border-left-color: #6BB5D8;\n}\n\n/*----------------------------------------------------------------------------\n*\n* Main field settings container\n*\n*----------------------------------------------------------------------------*/\n.acf-field-settings-main {\n padding-top: 32px;\n padding-right: 0;\n padding-bottom: 32px;\n padding-left: 0;\n}\n.acf-field-settings-main .acf-field:last-of-type {\n margin-bottom: 0;\n}\n\n/*----------------------------------------------------------------------------\n*\n* Field label\n*\n*----------------------------------------------------------------------------*/\n.acf-field-settings .acf-label {\n display: block;\n justify-content: space-between;\n align-items: center;\n align-content: center;\n margin-top: 0;\n margin-right: 0;\n margin-bottom: 6px;\n margin-left: 0;\n}\n\n/*----------------------------------------------------------------------------\n*\n* Single field\n*\n*----------------------------------------------------------------------------*/\n.acf-field-settings .acf-field {\n box-sizing: border-box;\n width: 100%;\n margin-top: 0;\n margin-right: 0;\n margin-bottom: 32px;\n margin-left: 0;\n padding-top: 0;\n padding-right: 72px;\n padding-bottom: 0;\n padding-left: 72px;\n}\n@media screen and (max-width: 600px) {\n .acf-field-settings .acf-field {\n padding-right: 12px;\n padding-left: 12px;\n }\n}\n.acf-field-settings .acf-field .acf-label,\n.acf-field-settings .acf-field .acf-input {\n max-width: 600px;\n}\n.acf-field-settings .acf-field .acf-label.acf-input-sub,\n.acf-field-settings .acf-field .acf-input.acf-input-sub {\n max-width: 100%;\n}\n.acf-field-settings .acf-field .acf-label .acf-btn:disabled,\n.acf-field-settings .acf-field .acf-input .acf-btn:disabled {\n background-color: #F2F4F7;\n color: #98A2B3 !important;\n border: 1px #D0D5DD solid;\n cursor: default;\n}\n.acf-field-settings .acf-field .acf-input-wrap {\n overflow: visible;\n}\n\n/*----------------------------------------------------------------------------\n*\n* Field separators\n*\n*----------------------------------------------------------------------------*/\n.acf-field-settings .acf-field.acf-field-setting-label,\n.acf-field-settings .acf-field-setting-wrapper {\n padding-top: 24px;\n border-top-width: 1px;\n border-top-style: solid;\n border-top-color: #EAECF0;\n}\n\n.acf-field-settings .acf-field-setting-wrapper {\n margin-top: 24px;\n}\n\n/*----------------------------------------------------------------------------\n*\n* Informational Notes for specific fields\n*\n*----------------------------------------------------------------------------*/\n.acf-field-setting-bidirectional_notes .acf-label {\n display: none;\n}\n.acf-field-setting-bidirectional_notes .acf-feature-notice {\n background-color: #F9FAFB;\n border: 1px solid #EAECF0;\n border-radius: 6px;\n padding: 16px;\n color: #344054;\n position: relative;\n}\n.acf-field-setting-bidirectional_notes .acf-feature-notice.with-warning-icon {\n padding-left: 45px;\n}\n.acf-field-setting-bidirectional_notes .acf-feature-notice.with-warning-icon::before {\n content: \"\";\n display: block;\n position: absolute;\n top: 17px;\n left: 18px;\n z-index: 600;\n width: 18px;\n height: 18px;\n margin-right: 8px;\n background-color: #667085;\n border: none;\n border-radius: 0;\n -webkit-mask-size: contain;\n mask-size: contain;\n -webkit-mask-repeat: no-repeat;\n mask-repeat: no-repeat;\n -webkit-mask-position: center;\n mask-position: center;\n -webkit-mask-image: url(\"../../images/icons/icon-info.svg\");\n mask-image: url(\"../../images/icons/icon-info.svg\");\n}\n\n/*----------------------------------------------------------------------------\n*\n* Edit fields footer\n*\n*----------------------------------------------------------------------------*/\n.acf-field-settings .acf-field-settings-footer {\n display: flex;\n align-items: center;\n min-height: 72px;\n box-sizing: border-box;\n width: 100%;\n margin-top: 0;\n margin-right: 0;\n margin-bottom: 0;\n margin-left: 0;\n padding-top: 0;\n padding-right: 0;\n padding-bottom: 0;\n padding-left: 72px;\n border-top-width: 1px;\n border-top-style: solid;\n border-top-color: #EAECF0;\n}\n@media screen and (max-width: 600px) {\n .acf-field-settings .acf-field-settings-footer {\n padding-left: 12px;\n }\n}\n\n.rtl .acf-field-settings .acf-field-settings-footer {\n padding-top: 0;\n padding-right: 72px;\n padding-bottom: 0;\n padding-left: 0;\n}\n\n/*----------------------------------------------------------------------------\n*\n* Tabs\n*\n*----------------------------------------------------------------------------*/\n.acf-fields .acf-tab-wrap,\n.acf-admin-page.acf-internal-post-type .acf-tab-wrap,\n.acf-browse-fields-modal-wrap .acf-tab-wrap {\n background: #F9FAFB;\n border-bottom-color: #1D2939;\n}\n.acf-fields .acf-tab-wrap .acf-tab-group,\n.acf-admin-page.acf-internal-post-type .acf-tab-wrap .acf-tab-group,\n.acf-browse-fields-modal-wrap .acf-tab-wrap .acf-tab-group {\n padding-right: 24px;\n padding-left: 24px;\n border-top-width: 0;\n border-bottom-width: 1px;\n border-bottom-style: solid;\n border-bottom-color: #EAECF0;\n}\n.acf-fields .acf-field-settings-tab-bar,\n.acf-fields .acf-tab-wrap .acf-tab-group,\n.acf-admin-page.acf-internal-post-type .acf-field-settings-tab-bar,\n.acf-admin-page.acf-internal-post-type .acf-tab-wrap .acf-tab-group,\n.acf-browse-fields-modal-wrap .acf-field-settings-tab-bar,\n.acf-browse-fields-modal-wrap .acf-tab-wrap .acf-tab-group {\n display: flex;\n align-items: stretch;\n min-height: 48px;\n padding-top: 0;\n padding-right: 0;\n padding-bottom: 0;\n padding-left: 24px;\n margin-top: 0;\n margin-bottom: 0;\n border-bottom-width: 1px;\n border-bottom-style: solid;\n border-bottom-color: #EAECF0;\n}\n.acf-fields .acf-field-settings-tab-bar li,\n.acf-fields .acf-tab-wrap .acf-tab-group li,\n.acf-admin-page.acf-internal-post-type .acf-field-settings-tab-bar li,\n.acf-admin-page.acf-internal-post-type .acf-tab-wrap .acf-tab-group li,\n.acf-browse-fields-modal-wrap .acf-field-settings-tab-bar li,\n.acf-browse-fields-modal-wrap .acf-tab-wrap .acf-tab-group li {\n display: flex;\n margin-top: 0;\n margin-right: 24px;\n margin-bottom: 0;\n margin-left: 0;\n padding: 0;\n}\n.acf-fields .acf-field-settings-tab-bar li a,\n.acf-fields .acf-tab-wrap .acf-tab-group li a,\n.acf-admin-page.acf-internal-post-type .acf-field-settings-tab-bar li a,\n.acf-admin-page.acf-internal-post-type .acf-tab-wrap .acf-tab-group li a,\n.acf-browse-fields-modal-wrap .acf-field-settings-tab-bar li a,\n.acf-browse-fields-modal-wrap .acf-tab-wrap .acf-tab-group li a {\n box-sizing: border-box;\n display: inline-flex;\n align-items: center;\n height: 100%;\n padding-top: 3px;\n padding-right: 0;\n padding-bottom: 0;\n padding-left: 0;\n background: none;\n border-top: none;\n border-right: none;\n border-bottom-width: 3px;\n border-bottom-style: solid;\n border-bottom-color: transparent;\n border-left: none;\n color: #667085;\n font-weight: normal;\n}\n.acf-fields .acf-field-settings-tab-bar li a:focus-visible,\n.acf-fields .acf-tab-wrap .acf-tab-group li a:focus-visible,\n.acf-admin-page.acf-internal-post-type .acf-field-settings-tab-bar li a:focus-visible,\n.acf-admin-page.acf-internal-post-type .acf-tab-wrap .acf-tab-group li a:focus-visible,\n.acf-browse-fields-modal-wrap .acf-field-settings-tab-bar li a:focus-visible,\n.acf-browse-fields-modal-wrap .acf-tab-wrap .acf-tab-group li a:focus-visible {\n border: 1px solid #5897fb;\n}\n.acf-fields .acf-field-settings-tab-bar li a:hover,\n.acf-fields .acf-tab-wrap .acf-tab-group li a:hover,\n.acf-admin-page.acf-internal-post-type .acf-field-settings-tab-bar li a:hover,\n.acf-admin-page.acf-internal-post-type .acf-tab-wrap .acf-tab-group li a:hover,\n.acf-browse-fields-modal-wrap .acf-field-settings-tab-bar li a:hover,\n.acf-browse-fields-modal-wrap .acf-tab-wrap .acf-tab-group li a:hover {\n color: #1D2939;\n}\n.acf-fields .acf-field-settings-tab-bar li a:hover,\n.acf-fields .acf-tab-wrap .acf-tab-group li a:hover,\n.acf-admin-page.acf-internal-post-type .acf-field-settings-tab-bar li a:hover,\n.acf-admin-page.acf-internal-post-type .acf-tab-wrap .acf-tab-group li a:hover,\n.acf-browse-fields-modal-wrap .acf-field-settings-tab-bar li a:hover,\n.acf-browse-fields-modal-wrap .acf-tab-wrap .acf-tab-group li a:hover {\n background-color: transparent;\n}\n.acf-fields .acf-field-settings-tab-bar li.active a,\n.acf-fields .acf-tab-wrap .acf-tab-group li.active a,\n.acf-admin-page.acf-internal-post-type .acf-field-settings-tab-bar li.active a,\n.acf-admin-page.acf-internal-post-type .acf-tab-wrap .acf-tab-group li.active a,\n.acf-browse-fields-modal-wrap .acf-field-settings-tab-bar li.active a,\n.acf-browse-fields-modal-wrap .acf-tab-wrap .acf-tab-group li.active a {\n background: none;\n border-bottom-color: #0783BE;\n color: #0783BE;\n}\n.acf-fields .acf-field-settings-tab-bar li.active a:focus-visible,\n.acf-fields .acf-tab-wrap .acf-tab-group li.active a:focus-visible,\n.acf-admin-page.acf-internal-post-type .acf-field-settings-tab-bar li.active a:focus-visible,\n.acf-admin-page.acf-internal-post-type .acf-tab-wrap .acf-tab-group li.active a:focus-visible,\n.acf-browse-fields-modal-wrap .acf-field-settings-tab-bar li.active a:focus-visible,\n.acf-browse-fields-modal-wrap .acf-tab-wrap .acf-tab-group li.active a:focus-visible {\n border-bottom-color: #0783BE;\n border-bottom-width: 3px;\n}\n\n.acf-admin-page.acf-internal-post-type .acf-field-editor .acf-field-settings-tab-bar {\n padding-left: 72px;\n}\n@media screen and (max-width: 600px) {\n .acf-admin-page.acf-internal-post-type .acf-field-editor .acf-field-settings-tab-bar {\n padding-left: 12px;\n }\n}\n\n/*----------------------------------------------------------------------------\n*\n* Field group settings\n*\n*----------------------------------------------------------------------------*/\n#acf-field-group-options .field-group-settings-tab {\n padding-top: 24px;\n padding-right: 24px;\n padding-bottom: 24px;\n padding-left: 24px;\n}\n#acf-field-group-options .field-group-settings-tab .acf-field:last-of-type {\n padding: 0;\n}\n#acf-field-group-options .acf-field {\n border: none;\n margin-top: 0;\n margin-right: 0;\n margin-bottom: 0;\n margin-left: 0;\n padding-top: 0;\n padding-right: 0;\n padding-bottom: 24px;\n padding-left: 0;\n}\n#acf-field-group-options .field-group-setting-split-container {\n display: flex;\n padding-top: 0;\n padding-right: 0;\n padding-bottom: 0;\n padding-left: 0;\n}\n#acf-field-group-options .field-group-setting-split-container .field-group-setting-split {\n box-sizing: border-box;\n padding-top: 24px;\n padding-right: 24px;\n padding-bottom: 24px;\n padding-left: 24px;\n}\n#acf-field-group-options .field-group-setting-split-container .field-group-setting-split:nth-child(1) {\n flex: 1 0 auto;\n}\n#acf-field-group-options .field-group-setting-split-container .field-group-setting-split:nth-child(2n) {\n flex: 1 0 auto;\n max-width: 320px;\n margin-top: 0;\n margin-right: 0;\n margin-bottom: 0;\n margin-left: 32px;\n padding-right: 32px;\n padding-left: 32px;\n border-left-width: 1px;\n border-left-style: solid;\n border-left-color: #EAECF0;\n}\n#acf-field-group-options .acf-field[data-name=description] {\n max-width: 600px;\n}\n#acf-field-group-options .acf-button-group {\n display: inline-flex;\n}\n\n.rtl #acf-field-group-options .field-group-setting-split-container .field-group-setting-split:nth-child(2n) {\n margin-right: 32px;\n margin-left: 0;\n border-left: none;\n border-right-width: 1px;\n border-right-style: solid;\n border-right-color: #EAECF0;\n}\n\n/*----------------------------------------------------------------------------\n*\n* Reorder handles\n*\n*----------------------------------------------------------------------------*/\n.acf-field-list .li-field-order {\n padding: 0;\n display: flex;\n flex-direction: row;\n flex-wrap: nowrap;\n justify-content: center;\n align-content: stretch;\n align-items: stretch;\n background-color: transparent;\n}\n.acf-field-list .acf-sortable-handle {\n display: flex;\n flex-direction: row;\n flex-wrap: nowrap;\n justify-content: center;\n align-content: flex-start;\n align-items: flex-start;\n width: 100%;\n height: 100%;\n position: relative;\n padding-top: 11px;\n padding-bottom: 8px;\n background-color: transparent;\n border: none;\n border-radius: 0;\n}\n.acf-field-list .acf-sortable-handle:hover {\n cursor: grab;\n}\n.acf-field-list .acf-sortable-handle:before {\n content: \"\";\n display: none;\n position: absolute;\n top: 16px;\n left: 8px;\n width: 16px;\n height: 16px;\n width: 12px;\n height: 12px;\n background-color: #98A2B3;\n border: none;\n border-radius: 0;\n -webkit-mask-size: contain;\n mask-size: contain;\n -webkit-mask-repeat: no-repeat;\n mask-repeat: no-repeat;\n -webkit-mask-position: center;\n mask-position: center;\n text-indent: 500%;\n white-space: nowrap;\n overflow: hidden;\n -webkit-mask-image: url(\"../../images/icons/icon-draggable.svg\");\n mask-image: url(\"../../images/icons/icon-draggable.svg\");\n}\n\n.rtl .acf-field-list .acf-sortable-handle:before {\n left: 0;\n right: 8px;\n}\n\n/*----------------------------------------------------------------------------\n*\n* Expand / collapse field icon\n*\n*----------------------------------------------------------------------------*/\n.acf-field-object .li-field-label {\n position: relative;\n padding-left: 40px;\n}\n.acf-field-object .li-field-label:before {\n content: \"\";\n display: block;\n position: absolute;\n left: 6px;\n display: inline-flex;\n width: 18px;\n height: 18px;\n margin-top: -2px;\n background-color: #667085;\n border: none;\n border-radius: 0;\n -webkit-mask-size: contain;\n mask-size: contain;\n -webkit-mask-repeat: no-repeat;\n mask-repeat: no-repeat;\n -webkit-mask-position: center;\n mask-position: center;\n text-indent: 500%;\n white-space: nowrap;\n overflow: hidden;\n -webkit-mask-image: url(\"../../images/icons/icon-chevron-down.svg\");\n mask-image: url(\"../../images/icons/icon-chevron-down.svg\");\n}\n.acf-field-object .li-field-label:hover:before {\n cursor: pointer;\n}\n\n.rtl .acf-field-object .li-field-label {\n padding-left: 0;\n padding-right: 40px;\n}\n.rtl .acf-field-object .li-field-label:before {\n left: 0;\n right: 6px;\n -webkit-mask-image: url(\"../../images/icons/icon-chevron-down.svg\");\n mask-image: url(\"../../images/icons/icon-chevron-down.svg\");\n}\n.rtl .acf-field-object.open .li-field-label:before {\n -webkit-mask-image: url(\"../../images/icons/icon-chevron-down.svg\");\n mask-image: url(\"../../images/icons/icon-chevron-down.svg\");\n}\n.rtl .acf-field-object.open .acf-input-sub .li-field-label:before {\n -webkit-mask-image: url(\"../../images/icons/icon-chevron-right.svg\");\n mask-image: url(\"../../images/icons/icon-chevron-right.svg\");\n}\n.rtl .acf-field-object.open .acf-input-sub .acf-field-object.open .li-field-label:before {\n -webkit-mask-image: url(\"../../images/icons/icon-chevron-down.svg\");\n mask-image: url(\"../../images/icons/icon-chevron-down.svg\");\n}\n\n.acf-thead .li-field-label {\n padding-left: 40px;\n}\n.rtl .acf-thead .li-field-label {\n padding-left: 0;\n padding-right: 40px;\n}\n\n/*----------------------------------------------------------------------------\n*\n* Conditional logic layout\n*\n*----------------------------------------------------------------------------*/\n.acf-field-settings-main-conditional-logic .acf-conditional-toggle {\n display: flex;\n padding-right: 72px;\n padding-left: 72px;\n}\n@media screen and (max-width: 600px) {\n .acf-field-settings-main-conditional-logic .acf-conditional-toggle {\n padding-left: 12px;\n }\n}\n.acf-field-settings-main-conditional-logic .acf-field {\n flex-wrap: wrap;\n margin-bottom: 0;\n padding-right: 0;\n padding-left: 0;\n}\n.acf-field-settings-main-conditional-logic .acf-field .rule-groups {\n flex: 0 1 100%;\n order: 3;\n margin-top: 32px;\n padding-top: 32px;\n padding-right: 72px;\n padding-left: 72px;\n border-top-width: 1px;\n border-top-style: solid;\n border-top-color: #EAECF0;\n}\n@media screen and (max-width: 600px) {\n .acf-field-settings-main-conditional-logic .acf-field .rule-groups {\n padding-left: 12px;\n }\n .acf-field-settings-main-conditional-logic .acf-field .rule-groups table.acf-table tbody tr {\n display: flex;\n flex-wrap: wrap;\n justify-content: flex-start;\n align-content: flex-start;\n align-items: flex-start;\n }\n .acf-field-settings-main-conditional-logic .acf-field .rule-groups table.acf-table tbody tr td {\n flex: 1 1 100%;\n }\n}\n\n/*----------------------------------------------------------------------------\n*\n* Prefix & append styling\n*\n*----------------------------------------------------------------------------*/\n.acf-input .acf-input-prepend,\n.acf-input .acf-input-append {\n display: inline-flex;\n align-items: center;\n height: 100%;\n min-height: 40px;\n padding-right: 12px;\n padding-left: 12px;\n background-color: #F9FAFB;\n border-color: #D0D5DD;\n box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.1);\n color: #667085;\n}\n.acf-input .acf-input-prepend {\n border-radius: 6px 0 0 6px;\n}\n.acf-input .acf-input-append {\n border-radius: 0 6px 6px 0;\n}\n\n/*----------------------------------------------------------------------------\n*\n* ACF input wrap\n*\n*----------------------------------------------------------------------------*/\n.acf-input-wrap {\n display: flex;\n}\n\n.acf-field-settings-main-presentation .acf-input-wrap {\n display: flex;\n}\n\n/*----------------------------------------------------------------------------\n*\n* Empty state\n*\n*----------------------------------------------------------------------------*/\n.post-type-acf-field-group #acf-field-group-fields .acf-field-list.-empty .no-fields-message {\n display: flex;\n justify-content: center;\n padding-top: 48px;\n padding-bottom: 48px;\n}\n.post-type-acf-field-group #acf-field-group-fields .acf-field-list.-empty .no-fields-message .no-fields-message-inner {\n display: flex;\n flex-wrap: wrap;\n justify-content: center;\n align-content: center;\n align-items: flex-start;\n text-align: center;\n max-width: 400px;\n}\n.post-type-acf-field-group #acf-field-group-fields .acf-field-list.-empty .no-fields-message .no-fields-message-inner img,\n.post-type-acf-field-group #acf-field-group-fields .acf-field-list.-empty .no-fields-message .no-fields-message-inner h2,\n.post-type-acf-field-group #acf-field-group-fields .acf-field-list.-empty .no-fields-message .no-fields-message-inner p {\n flex: 1 0 100%;\n}\n.post-type-acf-field-group #acf-field-group-fields .acf-field-list.-empty .no-fields-message .no-fields-message-inner h2 {\n margin-top: 32px;\n margin-bottom: 0;\n padding: 0;\n color: #344054;\n}\n.post-type-acf-field-group #acf-field-group-fields .acf-field-list.-empty .no-fields-message .no-fields-message-inner p {\n margin-top: 12px;\n margin-bottom: 0;\n padding: 0;\n color: #667085;\n}\n.post-type-acf-field-group #acf-field-group-fields .acf-field-list.-empty .no-fields-message .no-fields-message-inner p.acf-small {\n margin-top: 32px;\n}\n.post-type-acf-field-group #acf-field-group-fields .acf-field-list.-empty .no-fields-message .no-fields-message-inner img {\n max-width: 284px;\n margin-bottom: 0;\n}\n.post-type-acf-field-group #acf-field-group-fields .acf-field-list.-empty .no-fields-message .no-fields-message-inner .acf-btn {\n margin-top: 32px;\n}\n\n/*----------------------------------------------------------------------------\n*\n* Hide add title prompt label\n*\n*----------------------------------------------------------------------------*/\n.post-type-acf-field-group .acf-headerbar #title-prompt-text {\n display: none;\n}\n\n/*----------------------------------------------------------------------------\n*\n* Modal styling\n*\n*----------------------------------------------------------------------------*/\n.acf-admin-page #acf-popup .acf-popup-box {\n min-width: 480px;\n}\n.acf-admin-page #acf-popup .acf-popup-box .title {\n display: flex;\n align-items: center;\n align-content: center;\n justify-content: space-between;\n min-height: 64px;\n box-sizing: border-box;\n margin: 0;\n padding-right: 24px;\n padding-left: 24px;\n border-bottom-width: 1px;\n border-bottom-style: solid;\n border-bottom-color: #EAECF0;\n}\n.acf-admin-page #acf-popup .acf-popup-box .title h1,\n.acf-admin-page #acf-popup .acf-popup-box .title h2,\n.acf-admin-page #acf-popup .acf-popup-box .title h3,\n.acf-admin-page #acf-popup .acf-popup-box .title h4 {\n padding-left: 0;\n color: #344054;\n}\n.acf-admin-page #acf-popup .acf-popup-box .title .acf-icon {\n display: block;\n position: relative;\n top: auto;\n right: auto;\n width: 22px;\n height: 22px;\n background-color: transparent;\n color: transparent;\n}\n.acf-admin-page #acf-popup .acf-popup-box .title .acf-icon:before {\n display: inline-flex;\n position: absolute;\n top: 0;\n left: 0;\n width: 22px;\n height: 22px;\n background-color: #667085;\n border: none;\n border-radius: 0;\n -webkit-mask-size: contain;\n mask-size: contain;\n -webkit-mask-repeat: no-repeat;\n mask-repeat: no-repeat;\n -webkit-mask-position: center;\n mask-position: center;\n text-indent: 500%;\n white-space: nowrap;\n overflow: hidden;\n -webkit-mask-image: url(\"../../images/icons/icon-close-circle.svg\");\n mask-image: url(\"../../images/icons/icon-close-circle.svg\");\n}\n.acf-admin-page #acf-popup .acf-popup-box .title .acf-icon:hover:before {\n background-color: #0783BE;\n}\n.acf-admin-page #acf-popup .acf-popup-box .inner {\n box-sizing: border-box;\n margin: 0;\n padding-top: 24px;\n padding-right: 24px;\n padding-bottom: 24px;\n padding-left: 24px;\n border-top: none;\n}\n.acf-admin-page #acf-popup .acf-popup-box .inner p {\n margin-top: 0;\n margin-bottom: 0;\n}\n.acf-admin-page #acf-popup .acf-popup-box #acf-move-field-form .acf-field-select,\n.acf-admin-page #acf-popup .acf-popup-box #acf-link-field-groups-form .acf-field-select {\n margin-top: 0;\n}\n.acf-admin-page .acf-link-field-groups-popup .acf-popup-box .title h3,\n.acf-admin-page .acf-create-options-page-popup .acf-popup-box .title h3 {\n color: #1D2939;\n font-weight: 500;\n}\n.acf-admin-page .acf-link-field-groups-popup .acf-popup-box .title h3:before,\n.acf-admin-page .acf-create-options-page-popup .acf-popup-box .title h3:before {\n content: \"\";\n width: 18px;\n height: 18px;\n background: #98A2B3;\n margin-right: 9px;\n}\n.acf-admin-page .acf-link-field-groups-popup .acf-popup-box .inner,\n.acf-admin-page .acf-create-options-page-popup .acf-popup-box .inner {\n padding: 0 !important;\n}\n.acf-admin-page .acf-link-field-groups-popup .acf-popup-box .inner .acf-field-select,\n.acf-admin-page .acf-link-field-groups-popup .acf-popup-box .inner .acf-link-successful,\n.acf-admin-page .acf-create-options-page-popup .acf-popup-box .inner .acf-field-select,\n.acf-admin-page .acf-create-options-page-popup .acf-popup-box .inner .acf-link-successful {\n padding: 32px 24px;\n margin-bottom: 0;\n}\n.acf-admin-page .acf-link-field-groups-popup .acf-popup-box .inner .acf-field-select .description,\n.acf-admin-page .acf-link-field-groups-popup .acf-popup-box .inner .acf-link-successful .description,\n.acf-admin-page .acf-create-options-page-popup .acf-popup-box .inner .acf-field-select .description,\n.acf-admin-page .acf-create-options-page-popup .acf-popup-box .inner .acf-link-successful .description {\n margin-top: 6px !important;\n}\n.acf-admin-page .acf-link-field-groups-popup .acf-popup-box .inner .acf-actions,\n.acf-admin-page .acf-create-options-page-popup .acf-popup-box .inner .acf-actions {\n background: #F9FAFB;\n border-top: 1px solid #EAECF0;\n padding-top: 20px;\n padding-left: 24px;\n padding-bottom: 20px;\n padding-right: 24px;\n border-bottom-left-radius: 8px;\n border-bottom-right-radius: 8px;\n}\n.acf-admin-page .acf-link-field-groups-popup .acf-popup-box .inner .acf-actions .acf-btn,\n.acf-admin-page .acf-create-options-page-popup .acf-popup-box .inner .acf-actions .acf-btn {\n display: inline-block;\n margin-left: 8px;\n}\n.acf-admin-page .acf-link-field-groups-popup .acf-popup-box .inner .acf-actions .acf-btn.acf-btn-primary,\n.acf-admin-page .acf-create-options-page-popup .acf-popup-box .inner .acf-actions .acf-btn.acf-btn-primary {\n width: 120px;\n}\n.acf-admin-page .acf-create-options-page-popup .acf-popup-box .inner .acf-error-message.-success {\n display: none;\n}\n.acf-admin-page .acf-create-options-page-popup .acf-popup-box .inner .-dismiss {\n margin: 24px 32px !important;\n}\n.acf-admin-page .acf-create-options-page-popup .acf-popup-box .inner .acf-field {\n padding: 24px 32px 0 32px;\n margin: 0;\n}\n.acf-admin-page .acf-create-options-page-popup .acf-popup-box .inner .acf-field.acf-error .acf-input-wrap {\n overflow: inherit;\n}\n.acf-admin-page .acf-create-options-page-popup .acf-popup-box .inner .acf-field.acf-error .acf-input-wrap input[type=text] {\n border: 1px rgba(209, 55, 55, 0.5) solid !important;\n box-shadow: 0px 0px 0px 3px rgba(209, 55, 55, 0.12), 0px 0px 0px rgba(255, 54, 54, 0.25) !important;\n background-image: url(../../images/icons/icon-info-red.svg);\n background-position: right 10px top 50%;\n background-size: 14px;\n background-repeat: no-repeat;\n}\n.acf-admin-page .acf-create-options-page-popup .acf-popup-box .inner .acf-field .acf-options-page-modal-error p {\n font-size: 12px;\n color: #D13737;\n}\n.acf-admin-page .acf-create-options-page-popup .acf-popup-box .inner .acf-actions {\n margin-top: 32px;\n}\n.acf-admin-page .acf-create-options-page-popup .acf-popup-box .inner .acf-actions .acf-btn:disabled {\n background-color: #0783BE;\n}\n\n/*----------------------------------------------------------------------------\n*\n* Hide original #post-body-content from edit field group page\n*\n*----------------------------------------------------------------------------*/\n.acf-admin-single-field-group #post-body-content {\n display: none;\n}\n\n/*----------------------------------------------------------------------------\n*\n* Settings section footer\n*\n*----------------------------------------------------------------------------*/\n.acf-field-group-settings-footer {\n display: flex;\n justify-content: space-between;\n align-content: stretch;\n align-items: center;\n position: relative;\n min-height: 88px;\n margin-right: -24px;\n margin-left: -24px;\n margin-bottom: -24px;\n padding-right: 24px;\n padding-left: 24px;\n border-top-width: 1px;\n border-top-style: solid;\n border-top-color: #EAECF0;\n}\n.acf-field-group-settings-footer .acf-created-on {\n display: inline-flex;\n justify-content: flex-start;\n align-content: stretch;\n align-items: center;\n color: #667085;\n}\n.acf-field-group-settings-footer .acf-created-on:before {\n content: \"\";\n display: inline-block;\n width: 20px;\n height: 20px;\n margin-right: 8px;\n background-color: #98A2B3;\n border: none;\n border-radius: 0;\n -webkit-mask-size: contain;\n mask-size: contain;\n -webkit-mask-repeat: no-repeat;\n mask-repeat: no-repeat;\n -webkit-mask-position: center;\n mask-position: center;\n -webkit-mask-image: url(\"../../images/icons/icon-time.svg\");\n mask-image: url(\"../../images/icons/icon-time.svg\");\n}\n\n/*----------------------------------------------------------------------------\n*\n* Conditional logic enabled badge\n*\n*----------------------------------------------------------------------------*/\n.conditional-logic-badge {\n display: none;\n}\n.conditional-logic-badge.is-enabled {\n display: inline-block;\n width: 6px;\n height: 6px;\n overflow: hidden;\n margin-left: 8px;\n background-color: rgba(82, 170, 89, 0.4);\n border-width: 1px;\n border-style: solid;\n border-color: #52AA59;\n border-radius: 100px;\n text-indent: 100%;\n white-space: nowrap;\n}\n\n/*----------------------------------------------------------------------------\n*\n* Field settings container\n*\n*----------------------------------------------------------------------------*/\n.acf-field-type-settings {\n container-name: settings;\n container-type: inline-size;\n}\n\n/*----------------------------------------------------------------------------\n*\n* Split field settings\n*\n*----------------------------------------------------------------------------*/\n.acf-field-settings-split {\n display: flex;\n border-top-width: 1px;\n border-top-style: solid;\n border-top-color: #EAECF0;\n}\n.acf-field-settings-split .acf-field {\n margin: 0;\n padding-top: 32px;\n padding-bottom: 32px;\n}\n.acf-field-settings-split .acf-field:nth-child(2n) {\n border-left-width: 1px;\n border-left-style: solid;\n border-left-color: #EAECF0;\n}\n\n@container settings (max-width: 1170px) {\n .acf-field-settings-split {\n border: none;\n flex-direction: column;\n }\n .acf-field {\n border-top-width: 1px;\n border-top-style: solid;\n border-top-color: #EAECF0;\n }\n}\n/*----------------------------------------------------------------------------\n*\n* Display & return format\n*\n*----------------------------------------------------------------------------*/\n.acf-field-setting-display_format .acf-label,\n.acf-field-setting-return_format .acf-label {\n margin-bottom: 6px;\n}\n.acf-field-setting-display_format .acf-radio-list li,\n.acf-field-setting-return_format .acf-radio-list li {\n display: flex;\n}\n.acf-field-setting-display_format .acf-radio-list li label,\n.acf-field-setting-return_format .acf-radio-list li label {\n display: inline-flex;\n width: 100%;\n}\n.acf-field-setting-display_format .acf-radio-list li label span,\n.acf-field-setting-return_format .acf-radio-list li label span {\n flex: 1 1 auto;\n}\n.acf-field-setting-display_format .acf-radio-list li label code,\n.acf-field-setting-return_format .acf-radio-list li label code {\n padding-right: 8px;\n padding-left: 8px;\n background-color: #F2F4F7;\n border-radius: 4px;\n color: #475467;\n}\n.acf-field-setting-display_format .acf-radio-list li input[type=text],\n.acf-field-setting-return_format .acf-radio-list li input[type=text] {\n height: 32px;\n}\n\n.acf-field-settings .acf-field-setting-first_day {\n padding-top: 32px;\n border-top-width: 1px;\n border-top-style: solid;\n border-top-color: #EAECF0;\n}\n\n/*----------------------------------------------------------------------------\n*\n* Image and Gallery fields\n*\n*----------------------------------------------------------------------------*/\n.acf-field-object-image .acf-hl[data-cols=\"3\"] > li,\n.acf-field-object-gallery .acf-hl[data-cols=\"3\"] > li {\n width: auto;\n}\n\n/*----------------------------------------------------------------------------\n*\n* Appended fields fields\n*\n*----------------------------------------------------------------------------*/\n.acf-field-settings .acf-field-appended {\n overflow: auto;\n}\n.acf-field-settings .acf-field-appended .acf-input {\n float: left;\n}\n\n/*----------------------------------------------------------------------------\n*\n* Flexible widths for image minimum / maximum size fields\n*\n*----------------------------------------------------------------------------*/\n.acf-field-settings .acf-field.acf-field-setting-min_width .acf-input,\n.acf-field-settings .acf-field.acf-field-setting-max_width .acf-input {\n max-width: none;\n}\n.acf-field-settings .acf-field.acf-field-setting-min_width .acf-input-wrap input[type=text],\n.acf-field-settings .acf-field.acf-field-setting-max_width .acf-input-wrap input[type=text] {\n max-width: 81px;\n}\n\n/*----------------------------------------------------------------------------\n*\n* Temporary fix to hide pagination setting for repeaters used as subfields.\n*\n*----------------------------------------------------------------------------*/\n.post-type-acf-field-group .acf-field-object-flexible-content .acf-field-setting-pagination {\n display: none;\n}\n.post-type-acf-field-group .acf-field-object-repeater .acf-field-object-repeater .acf-field-setting-pagination {\n display: none;\n}\n\n/*----------------------------------------------------------------------------\n*\n* Flexible content field width\n*\n*----------------------------------------------------------------------------*/\n.acf-admin-single-field-group .acf-field-object-flexible-content .acf-is-subfields .acf-field-object .acf-label,\n.acf-admin-single-field-group .acf-field-object-flexible-content .acf-is-subfields .acf-field-object .acf-input {\n max-width: 600px;\n}\n\n/*----------------------------------------------------------------------------\n*\n* Fix default value checkbox focus state\n*\n*----------------------------------------------------------------------------*/\n.acf-admin-single-field-group .acf-field.acf-field-true-false.acf-field-setting-default_value .acf-true-false {\n border: none;\n}\n.acf-admin-single-field-group .acf-field.acf-field-true-false.acf-field-setting-default_value .acf-true-false input[type=checkbox] {\n margin-right: 0;\n}\n\n/*----------------------------------------------------------------------------\n*\n* With front field extra spacing\n*\n*----------------------------------------------------------------------------*/\n.acf-field.acf-field-with-front {\n margin-top: 32px;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Sub-fields layout\n*\n*---------------------------------------------------------------------------------------------*/\n.post-type-acf-field-group #acf-field-group-fields .acf-field-list-wrap .acf-input-sub {\n max-width: 100%;\n overflow: hidden;\n border-radius: 8px;\n border-width: 1px;\n border-style: solid;\n border-color: #dbdfe5;\n box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.1);\n}\n.post-type-acf-field-group #acf-field-group-fields .acf-field-list-wrap .acf-input-sub .acf-sub-field-list-header {\n display: flex;\n justify-content: space-between;\n align-content: stretch;\n align-items: center;\n min-height: 64px;\n padding-right: 24px;\n padding-left: 24px;\n}\n.post-type-acf-field-group #acf-field-group-fields .acf-field-list-wrap .acf-input-sub .acf-field-list-wrap {\n box-shadow: none;\n}\n.post-type-acf-field-group #acf-field-group-fields .acf-field-list-wrap .acf-input-sub .acf-hl.acf-tfoot {\n min-height: 64px;\n align-items: center;\n}\n.post-type-acf-field-group #acf-field-group-fields .acf-field-list-wrap .acf-input-sub .acf-input.acf-input-sub {\n max-width: 100%;\n margin-right: 0;\n margin-left: 0;\n}\n\n.post-type-acf-field-group .acf-input-sub .acf-field-object .acf-sortable-handle {\n width: 100%;\n height: 100%;\n}\n\n.post-type-acf-field-group .acf-field-object:hover .acf-input-sub .acf-sortable-handle:before {\n display: none;\n}\n\n.post-type-acf-field-group .acf-field-object:hover .acf-input-sub .acf-field-list .acf-field-object:hover .acf-sortable-handle:before {\n display: block;\n}\n\n.post-type-acf-field-group .acf-field-object .acf-is-subfields .acf-thead .li-field-label:before {\n display: none;\n}\n\n.post-type-acf-field-group #acf-field-group-fields .acf-field-list-wrap .acf-input-sub .acf-field-object.open {\n border-top-color: #dbdfe5;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Flexible content field\n*\n*---------------------------------------------------------------------------------------------*/\n.post-type-acf-field-group i.acf-icon.-duplicate.duplicate-layout {\n margin: 0 auto !important;\n background-color: #667085;\n color: #667085;\n}\n.post-type-acf-field-group i.acf-icon.acf-icon-trash.delete-layout {\n margin: 0 auto !important;\n background-color: #667085;\n color: #667085;\n}\n.post-type-acf-field-group button.acf-btn.acf-btn-tertiary.acf-field-setting-fc-duplicate, .post-type-acf-field-group button.acf-btn.acf-btn-tertiary.acf-field-setting-fc-delete {\n background-color: #ffffff !important;\n box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.1);\n border-radius: 6px;\n width: 32px;\n height: 32px !important;\n min-height: 32px;\n padding: 0;\n}\n.post-type-acf-field-group button.add-layout.acf-btn.acf-btn-primary.add-field,\n.post-type-acf-field-group .acf-sub-field-list-header a.acf-btn.acf-btn-secondary.add-field,\n.post-type-acf-field-group .acf-field-list-wrap.acf-is-subfields a.acf-btn.acf-btn-secondary.add-field {\n height: 32px !important;\n min-height: 32px;\n margin-left: 5px;\n}\n.post-type-acf-field-group .acf-field.acf-field-setting-fc_layout {\n background-color: #ffffff;\n margin-bottom: 16px;\n}\n.post-type-acf-field-group .acf-field-setting-fc_layout {\n overflow: hidden;\n width: calc(100% - 144px);\n margin-right: 72px;\n margin-left: 72px;\n padding-right: 0;\n padding-left: 0;\n border-width: 1px;\n border-style: solid;\n border-color: #dbdfe5;\n border-radius: 8px;\n box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.1);\n}\n.post-type-acf-field-group .acf-field-setting-fc_layout .acf-field-layout-settings.open {\n background-color: #ffffff;\n border-top-width: 1px;\n border-top-style: solid;\n border-top-color: #EAECF0;\n}\n@media screen and (max-width: 768px) {\n .post-type-acf-field-group .acf-field-setting-fc_layout {\n width: calc(100% - 16px);\n margin-right: 8px;\n margin-left: 8px;\n }\n}\n.post-type-acf-field-group .acf-field-setting-fc_layout .acf-input-sub {\n max-width: 100%;\n margin-right: 0;\n margin-left: 0;\n}\n.post-type-acf-field-group .acf-field-setting-fc_layout .acf-label,\n.post-type-acf-field-group .acf-field-setting-fc_layout .acf-input {\n max-width: 100% !important;\n}\n.post-type-acf-field-group .acf-field-setting-fc_layout .acf-input-sub {\n margin-right: 32px;\n margin-bottom: 32px;\n margin-left: 32px;\n}\n.post-type-acf-field-group .acf-field-setting-fc_layout .acf-fc-meta {\n max-width: 100%;\n padding-top: 24px;\n padding-right: 32px;\n padding-left: 32px;\n}\n.post-type-acf-field-group .acf-field-settings-fc_head {\n display: flex;\n align-items: center;\n justify-content: left;\n background-color: #F9FAFB;\n border-radius: 8px 8px 0px 0px;\n min-height: 64px;\n margin-bottom: 0px;\n padding-right: 24px;\n}\n.post-type-acf-field-group .acf-field-settings-fc_head .acf-fc_draggable {\n min-height: 64px;\n padding-left: 24px;\n display: flex;\n white-space: nowrap;\n}\n.post-type-acf-field-group .acf-field-settings-fc_head .acf-fc-layout-name {\n min-width: 0;\n color: #98A2B3;\n padding-left: 8px;\n font-size: 16px;\n}\n.post-type-acf-field-group .acf-field-settings-fc_head .acf-fc-layout-name.copyable:not(.input-copyable, .copy-unsupported):hover:after {\n width: 14px !important;\n height: 14px !important;\n}\n@media screen and (max-width: 880px) {\n .post-type-acf-field-group .acf-field-settings-fc_head .acf-fc-layout-name {\n display: none !important;\n }\n}\n.post-type-acf-field-group .acf-field-settings-fc_head .acf-fc-layout-name span {\n white-space: nowrap;\n overflow: hidden;\n text-overflow: ellipsis;\n}\n.post-type-acf-field-group .acf-field-settings-fc_head span.toggle-indicator {\n pointer-events: none;\n margin-top: 7px;\n}\n.post-type-acf-field-group .acf-field-settings-fc_head label {\n display: inline-flex;\n align-items: center;\n}\n.post-type-acf-field-group .acf-field-settings-fc_head label.acf-fc-layout-name {\n margin-left: 1rem;\n}\n@media screen and (max-width: 880px) {\n .post-type-acf-field-group .acf-field-settings-fc_head label.acf-fc-layout-name {\n display: none !important;\n }\n}\n.post-type-acf-field-group .acf-field-settings-fc_head label.acf-fc-layout-name span.acf-fc-layout-name {\n text-overflow: ellipsis;\n overflow: hidden;\n height: 22px;\n white-space: nowrap;\n}\n.post-type-acf-field-group .acf-field-settings-fc_head label.acf-fc-layout-label:before {\n content: \"\";\n display: inline-block;\n width: 20px;\n height: 20px;\n margin-right: 8px;\n background-color: #98A2B3;\n border: none;\n border-radius: 0;\n -webkit-mask-size: contain;\n mask-size: contain;\n -webkit-mask-repeat: no-repeat;\n mask-repeat: no-repeat;\n -webkit-mask-position: center;\n mask-position: center;\n}\n.rtl.post-type-acf-field-group .acf-field-settings-fc_head label.acf-fc-layout-label:before {\n padding-right: 10px;\n}\n\n.post-type-acf-field-group .acf-field-settings-fc_head .acf-fl-actions {\n display: flex;\n align-items: center;\n white-space: nowrap;\n margin-left: auto;\n}\n.post-type-acf-field-group .acf-field-settings-fc_head .acf-fl-actions .acf-fc-add-layout {\n margin-left: 10px;\n}\n.post-type-acf-field-group .acf-field-settings-fc_head .acf-fl-actions .acf-fc-add-layout .add-field {\n margin-left: 0px !important;\n}\n.post-type-acf-field-group .acf-field-settings-fc_head .acf-fl-actions li {\n margin-right: 4px;\n}\n.post-type-acf-field-group .acf-field-settings-fc_head .acf-fl-actions li:last-of-type {\n margin-right: 0;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Field open / closed icon state\n*\n*---------------------------------------------------------------------------------------------*/\n.post-type-acf-field-group .acf-field-object.open > .handle > .acf-tbody > .li-field-label::before {\n -webkit-mask-image: url(\"../../images/icons/icon-chevron-up.svg\");\n mask-image: url(\"../../images/icons/icon-chevron-up.svg\");\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Different coloured levels (current 5 supported)\n*\n*---------------------------------------------------------------------------------------------*/\n.post-type-acf-field-group #acf-field-group-fields .acf-field-list-wrap .acf-input-sub .acf-field-object .handle {\n background-color: transparent;\n}\n.post-type-acf-field-group #acf-field-group-fields .acf-field-list-wrap .acf-input-sub .acf-field-object .handle:hover {\n background-color: #f9f2fb;\n}\n.post-type-acf-field-group #acf-field-group-fields .acf-field-list-wrap .acf-input-sub .acf-field-object.open .handle {\n background-color: #f5eaf9;\n}\n.post-type-acf-field-group #acf-field-group-fields .acf-field-list-wrap .acf-input-sub .acf-field-object .settings {\n border-left-color: #BF7DD7;\n}\n.post-type-acf-field-group #acf-field-group-fields .acf-field-list-wrap .acf-input-sub .acf-input-sub .acf-field-object .handle {\n background-color: transparent;\n}\n.post-type-acf-field-group #acf-field-group-fields .acf-field-list-wrap .acf-input-sub .acf-input-sub .acf-field-object .handle:hover {\n background-color: #ebf7f4;\n}\n.post-type-acf-field-group #acf-field-group-fields .acf-field-list-wrap .acf-input-sub .acf-input-sub .acf-field-object.open .handle {\n background-color: #e3f4f0;\n}\n.post-type-acf-field-group #acf-field-group-fields .acf-field-list-wrap .acf-input-sub .acf-input-sub .acf-field-object .settings {\n border-left-color: #7CCDB9;\n}\n.post-type-acf-field-group #acf-field-group-fields .acf-field-list-wrap .acf-input-sub .acf-input-sub .acf-input-sub .acf-field-object .handle {\n background-color: transparent;\n}\n.post-type-acf-field-group #acf-field-group-fields .acf-field-list-wrap .acf-input-sub .acf-input-sub .acf-input-sub .acf-field-object .handle:hover {\n background-color: #fcf5f2;\n}\n.post-type-acf-field-group #acf-field-group-fields .acf-field-list-wrap .acf-input-sub .acf-input-sub .acf-input-sub .acf-field-object.open .handle {\n background-color: #fbeee9;\n}\n.post-type-acf-field-group #acf-field-group-fields .acf-field-list-wrap .acf-input-sub .acf-input-sub .acf-input-sub .acf-field-object .settings {\n border-left-color: #E29473;\n}\n.post-type-acf-field-group #acf-field-group-fields .acf-field-list-wrap .acf-input-sub .acf-input-sub .acf-input-sub .acf-input-sub .acf-field-object .handle {\n background-color: transparent;\n}\n.post-type-acf-field-group #acf-field-group-fields .acf-field-list-wrap .acf-input-sub .acf-input-sub .acf-input-sub .acf-input-sub .acf-field-object .handle:hover {\n background-color: #fafbfb;\n}\n.post-type-acf-field-group #acf-field-group-fields .acf-field-list-wrap .acf-input-sub .acf-input-sub .acf-input-sub .acf-input-sub .acf-field-object.open .handle {\n background-color: #f4f6f7;\n}\n.post-type-acf-field-group #acf-field-group-fields .acf-field-list-wrap .acf-input-sub .acf-input-sub .acf-input-sub .acf-input-sub .acf-field-object .settings {\n border-left-color: #A3B1B9;\n}","/*--------------------------------------------------------------------------------------------\n*\n*\tVars\n*\n*--------------------------------------------------------------------------------------------*/\n\n/* colors */\n$acf_blue: #2a9bd9;\n$acf_notice: #2a9bd9;\n$acf_error: #d94f4f;\n$acf_success: #49ad52;\n$acf_warning: #fd8d3b;\n\n/* acf-field */\n$field_padding: 15px 12px;\n$field_padding_x: 12px;\n$field_padding_y: 15px;\n$fp: 15px 12px;\n$fy: 15px;\n$fx: 12px;\n\n/* responsive */\n$md: 880px;\n$sm: 640px;\n\n// Admin.\n$wp-card-border: #ccd0d4;\t\t\t// Card border.\n$wp-card-border-1: #d5d9dd;\t\t // Card inner border 1: Structural (darker).\n$wp-card-border-2: #eeeeee;\t\t // Card inner border 2: Fields (lighter).\n$wp-input-border: #7e8993;\t\t // Input border.\n\n// Admin 3.8\n$wp38-card-border: #E5E5E5;\t\t // Card border.\n$wp38-card-border-1: #dfdfdf;\t\t// Card inner border 1: Structural (darker).\n$wp38-card-border-2: #eeeeee;\t\t// Card inner border 2: Fields (lighter).\n$wp38-input-border: #dddddd;\t\t // Input border.\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tACF 6 ↓\n*\n*--------------------------------------------------------------------------------------------*/\n\n// Grays\n$gray-50: #F9FAFB;\n$gray-100: #F2F4F7;\n$gray-200: #EAECF0;\n$gray-300: #D0D5DD;\n$gray-400: #98A2B3;\n$gray-500: #667085;\n$gray-600: #475467;\n$gray-700: #344054;\n$gray-800: #1D2939;\n$gray-900: #101828;\n\n// Blues\n$blue-50: #EBF5FA;\n$blue-100: #D8EBF5;\n$blue-200: #A5D2E7;\n$blue-300: #6BB5D8;\n$blue-400: #399CCB;\n$blue-500: #0783BE;\n$blue-600: #066998;\n$blue-700: #044E71;\n$blue-800: #033F5B;\n$blue-900: #032F45;\n\n// Utility\n$color-info:\t#2D69DA;\n$color-success:\t#52AA59;\n$color-warning:\t#F79009;\n$color-danger:\t#D13737;\n\n$color-primary: $blue-500;\n$color-primary-hover: $blue-600;\n$color-secondary: $gray-500;\n$color-secondary-hover: $gray-400;\n\n// Gradients\n$gradient-pro: linear-gradient(90.52deg, #3E8BFF 0.44%, #A45CFF 113.3%);\n\n// Border radius\n$radius-sm:\t4px;\n$radius-md: 6px;\n$radius-lg: 8px;\n$radius-xl: 12px;\n\n// Elevations / Box shadows\n$elevation-01: 0px 1px 2px rgba($gray-900, 0.10);\n\n// Input & button focus outline\n$outline: 3px solid $blue-50;\n\n// Link colours\n$link-color: $blue-500;\n\n// Responsive\n$max-width: 1440px;","/*--------------------------------------------------------------------------------------------\n*\n* Mixins\n*\n*--------------------------------------------------------------------------------------------*/\n@mixin clearfix() {\n\t&:after {\n\t\tdisplay: block;\n\t\tclear: both;\n\t\tcontent: \"\";\n\t}\n}\n\n@mixin border-box() {\n\t-webkit-box-sizing: border-box;\n\t-moz-box-sizing: border-box;\n\tbox-sizing: border-box;\n}\n\n@mixin centered() {\n\tposition: absolute;\n\ttop: 50%;\n\tleft: 50%;\n\ttransform: translate(-50%, -50%);\n}\n\n@mixin animate( $properties: 'all' ) {\n\t-webkit-transition: $properties 0.3s ease; // Safari 3.2+, Chrome\n -moz-transition: $properties 0.3s ease; \t// Firefox 4-15\n -o-transition: $properties 0.3s ease; \t\t// Opera 10.5–12.00\n transition: $properties 0.3s ease; \t\t// Firefox 16+, Opera 12.50+\n}\n\n@mixin rtl() {\n\thtml[dir=\"rtl\"] & {\n\t\ttext-align: right;\n\t\t@content;\n\t}\n}\n\n@mixin wp-admin( $version: '3-8' ) {\n\t.acf-admin-#{$version} & {\n\t\t@content;\n\t}\n}","/*--------------------------------------------------------------------------------------------\n*\n*\tField Group\n*\n*--------------------------------------------------------------------------------------------*/\n\n// Reset postbox inner padding.\n#acf-field-group-fields > .inside,\n#acf-field-group-locations > .inside,\n#acf-field-group-options > .inside {\n\tpadding: 0;\n\tmargin: 0;\n}\n\n// Hide metabox order buttons added in WP 5.5.\n.postbox {\n\t.handle-order-higher,\n\t.handle-order-lower {\n\t\tdisplay: none;\n\t}\n}\n\n/*----------------------------------------------------------------------------\n*\n* Postbox: Publish\n*\n*----------------------------------------------------------------------------*/\n#minor-publishing-actions,\n#misc-publishing-actions #visibility,\n#misc-publishing-actions .edit-timestamp {\n\tdisplay: none;\n}\n\n#minor-publishing {\n\tborder-bottom: 0 none;\n}\n\n#misc-pub-section {\n\tborder-bottom: 0 none;\n}\n\n#misc-publishing-actions .misc-pub-section {\n\tborder-bottom-color: #F5F5F5;\n}\n\n\n/*----------------------------------------------------------------------------\n*\n* Postbox: Fields\n*\n*----------------------------------------------------------------------------*/\n#acf-field-group-fields {\n\tborder: 0 none;\n\n\t.inside {\n\t\tborder-top: {\n\t\t\twidth: 0;\n\t\t\tstyle: none;\n\t\t};\n\t}\n\n\t/* links */\n\ta {\n\t\ttext-decoration: none;\n\t}\n\n\t/* Field type */\n\t.li-field-type {\n\n\t\t.field-type-icon {\n\t\t\tmargin: {\n\t\t\t\tright: 8px;\n\t\t\t};\n\n\t\t\t@media screen and (max-width: 600px) {\n\t\t\t\tdisplay: none;\n\t\t\t}\n\n\t\t}\n\n\t\t.acf-pro-label-field-type {\n\t\t\tmargin-left: 5px;\n\t\t\tdisplay: inline;\n\t\t\tpadding: 4px 8px;\n\t\t}\n\n\t}\n\n\t/* table header */\n\t.li-field-order {\n\t\twidth: 64px;\n\t\tjustify-content: center;\n\n\t\t@media screen and (max-width: $md) {\n\t\t\twidth: 32px;\n\t\t}\n\n\t}\n\t.li-field-label { width: calc(50% - 64px); }\n\t.li-field-name { width: 25%; word-break: break-word; }\n\t.li-field-key { display: none; }\n\t.li-field-type { width: 25%; }\n\n\t/* show keys */\n\t&.show-field-keys {\n\n\t\t.li-field-label { width: calc(35% - 64px); };\n\t\t.li-field-name { width: 15%; };\n\t\t.li-field-key { width: 25%; display: flex; };\n\t\t.li-field-type { width: 25%; };\n\n\t}\n\n\t/* hide tabs */\n\t&.hide-tabs {\n\t\t.acf-field-settings-tab-bar {\n\t\t\tdisplay: none;\n\t\t}\n\n\t\t.acf-field-settings-main {\n\t\t\tpadding: 0;\n\n\t\t\t&.acf-field-settings-main-general {\n\t\t\t\tpadding-top: 32px;\n\t\t\t}\n\n\t\t\t.acf-field {\n\t\t\t\tmargin-bottom: 32px;\n\t\t\t}\n\n\t\t\t.acf-field-setting-wrapper {\n\t\t\t\tpadding-top: 0;\n\t\t\t\tborder-top: none;\n\t\t\t}\n\n\t\t\t.acf-field-settings-split .acf-field {\n\t\t\t\tborder-bottom: {\n\t\t\t\t\twidth: 1px;\n\t\t\t\t\tstyle: solid;\n\t\t\t\t\tcolor: $gray-200;\n\t\t\t\t};\n\t\t\t}\n\n\t\t\t.acf-field-setting-first_day {\n\t\t\t\tpadding-top: 0;\n\t\t\t\tborder-top: none;\n\t\t\t}\n\t\t}\n\n\t\t.acf-field-settings-footer {\n\t\t\tmargin-top: 32px;\n\t\t}\n\t}\n\n\t/* fields */\n\t.acf-field-list-wrap {\n\t\tborder: $wp-card-border solid 1px;\n\t}\n\n\t.acf-field-list {\n\t\tbackground: #f5f5f5;\n\t\tmargin-top: -1px;\n\n\t\t.acf-tbody {\n\n\t\t\t> .li-field-name,\n\t\t\t> .li-field-key {\n\t\t\t\talign-items: flex-start;\n\t\t\t}\n\n\t\t}\n\n\t\t.copyable:not(.input-copyable, .copy-unsupported) {\n\t\t\tcursor: pointer;\n\t\t\tdisplay: inline-flex;\n\t\t\talign-items: center;\n\n\t\t\t&:hover:after {\n\t\t\t\tcontent: '';\n\t\t\t\tpadding-left: 5px;\n\t\t\t\t$icon-size: 12px;\n\t\t\t\tdisplay: inline-flex;\n\t\t\t\twidth: $icon-size;\n\t\t\t\theight: $icon-size;\n\t\t\t\tbackground-color: $gray-500;\n\t\t\t\tborder: none;\n\t\t\t\tborder-radius: 0;\n\t\t\t\t-webkit-mask-size: contain;\n\t\t\t\tmask-size: contain;\n\t\t\t\t-webkit-mask-repeat: no-repeat;\n\t\t\t\tmask-repeat: no-repeat;\n\t\t\t\t-webkit-mask-position: center;\n\t\t\t\tmask-position: center;\n\t\t\t\ttext-indent: 500%;\n\t\t\t\twhite-space: nowrap;\n\t\t\t\toverflow: hidden;\n\t\t\t\t-webkit-mask-image: url('../../images/icons/icon-copy.svg');\n\t\t\t\tmask-image: url('../../images/icons/icon-copy.svg');\n\t\t\t\tbackground-size: cover;\n\t\t\t}\n\n\t\t\t&.sub-label {\n\t\t\t\tpadding-right: 22px;\n\n\t\t\t\t&:hover {\n\t\t\t\t\tpadding-right: 0;\n\n\t\t\t\t\t&:after {\n\t\t\t\t\t\t$icon-size: 14px;\n\t\t\t\t\t\twidth: $icon-size;\n\t\t\t\t\t\theight: $icon-size;\n\t\t\t\t\t\tpadding-left: 8px;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t&.copied:hover:after {\n\t\t\t\t-webkit-mask-image: url('../../images/icons/icon-check-circle-solid.svg');\n\t\t\t\tmask-image: url('../../images/icons/icon-check-circle-solid.svg');\n\t\t\t\tbackground-color: $acf_success;\n\t\t\t}\n\t\t}\n\n\t\t.copyable.input-copyable:not(.copy-unsupported) {\n\t\t\tcursor: pointer;\n\t\t\tdisplay: block;\n\t\t\tposition: relative;\n\t\t\talign-items: center;\n\n\t\t\tinput {\n\t\t\t\tpadding-right: 40px;\n\t\t\t}\n\n\t\t\t.acf-input-wrap:after {\n\t\t\t\tcontent: '';\n\t\t\t\tpadding-left: 5px;\n\t\t\t\t$icon-size: 16px;\n\t\t\t\tright: 12px;\n\t\t\t\ttop: 12px;\n\t\t\t\tposition: absolute;\n\t\t\t\twidth: $icon-size;\n\t\t\t\theight: $icon-size;\n\t\t\t\tbackground-color: $gray-400;\n\t\t\t\tborder: none;\n\t\t\t\tborder-radius: 0;\n\t\t\t\t-webkit-mask-size: contain;\n\t\t\t\tmask-size: contain;\n\t\t\t\t-webkit-mask-repeat: no-repeat;\n\t\t\t\tmask-repeat: no-repeat;\n\t\t\t\t-webkit-mask-position: center;\n\t\t\t\tmask-position: center;\n\t\t\t\ttext-indent: 500%;\n\t\t\t\twhite-space: nowrap;\n\t\t\t\toverflow: hidden;\n\t\t\t\t-webkit-mask-image: url('../../images/icons/icon-copy.svg');\n\t\t\t\tmask-image: url('../../images/icons/icon-copy.svg');\n\t\t\t\tbackground-size: cover;\n\t\t\t}\n\n\t\t\t&.copied .acf-input-wrap:after {\n\t\t\t\t-webkit-mask-image: url('../../images/icons/icon-check-circle-solid.svg');\n\t\t\t\tmask-image: url('../../images/icons/icon-check-circle-solid.svg');\n\t\t\t\tbackground-color: $acf_success;\n\t\t\t}\n\t\t}\n\n\t\t\n\n\t\t/* no fields */\n\t\t.no-fields-message {\n\t\t\tpadding: 15px 15px;\n\t\t\tbackground: #fff;\n\t\t\tdisplay: none;\n\t\t}\n\n\t\t/* empty */\n\t\t&.-empty {\n\t\t\t.no-fields-message {\n\t\t\t\tdisplay: block;\n\t\t\t}\n\t\t}\n\t}\n\n\t// WP Admin 3.8\n\t@include wp-admin('3-8') {\n\t\t.acf-field-list-wrap {\n\t\t\tborder-color: $wp38-card-border-1;\n\t\t}\n\t}\n}\n\n\n.rtl #acf-field-group-fields {\n\t.li-field-type {\n\t\t.field-type-icon {\n\t\t\tmargin: {\n\t\t\t\tleft: 8px;\n\t\t\t\tright: 0;\n\t\t\t};\n\t\t}\n\t}\n}\n\n/* field object */\n.acf-field-object {\n\tborder-top: $wp38-card-border-2 solid 1px;\n\tbackground: #fff;\n\n\t/* sortable */\n\t&.ui-sortable-helper {\n\t\toverflow: hidden !important;\n\t\tborder: {\n\t\t\twidth: 1px;\n\t\t\tstyle: solid;\n\t\t\tcolor: $blue-200 !important;\n\t\t};\n\t\tborder-radius: $radius-lg;\n\t\tfilter: drop-shadow(0px 10px 20px rgba(16, 24, 40, 0.14)) drop-shadow(0px 1px 3px rgba(16, 24, 40, 0.1));\n\n\t\t&:before {\n\t\t\tdisplay: none !important;\n\t\t}\n\n\t}\n\n\t&.ui-sortable-placeholder {\n\t\tbox-shadow: 0 -1px 0 0 #DFDFDF;\n\t\tvisibility: visible !important;\n\t\tbackground: #F9F9F9;\n\t\tborder-top-color: transparent;\n\t\tmin-height: 54px;\n\n\t\t// hide tab field separator\n\t\t&:after, &:before {\n\t\t\tvisibility: hidden;\n\t\t}\n\t}\n\n\n\t/* meta */\n\t> .meta {\n\t\tdisplay: none;\n\t}\n\n\n\t/* handle */\n\t> .handle {\n\n\t\ta {\n\t\t\t-webkit-transition: none;\n\t\t\t-moz-transition: none;\n\t\t\t-o-transition: none;\n\t\t\ttransition: none;\n\t\t}\n\n\t\tli {\n\t\t\tword-wrap: break-word;\n\t\t}\n\n\t\tstrong {\n\t\t\tdisplay: block;\n\t\t\tpadding-bottom: 0;\n\t\t\tfont-size: 14px;\n\t\t\tline-height: 14px;\n\t\t\tmin-height: 14px;\n\t\t}\n\n\t\t.row-options {\n\t\t\tdisplay: block;\n\t\t\topacity: 0;\n\t\t\tmargin: {\n\t\t\t\ttop: 5px;\n\t\t\t};\n\n\t\t\t@media screen and (max-width: 880px) {\n\t\t\t\topacity: 1;\n\t\t\t\tmargin: {\n\t\t\t\t\tbottom: 0;\n\t\t\t\t};\n\t\t\t}\n\n\t\t\ta {\n\t\t\t\tmargin-right: 4px;\n\n\t\t\t\t&:hover {\n\t\t\t\t\tcolor: darken($color-primary-hover, 10%);\n\t\t\t\t}\n\n\t\t\t}\n\n\t\t\ta.delete-field {\n\t\t\t\tcolor: #a00;\n\n\t\t\t\t&:hover { color: #f00; }\n\t\t\t}\n\n\t\t\t&.active {\n\t\t\t\tvisibility: visible;\n\t\t\t}\n\t\t}\n\n\t}\n\n\t/* open */\n\t&.open {\n\n\t\t+ .acf-field-object {\n\t\t\tborder-top-color: #E1E1E1;\n\t\t}\n\n\t\t> .handle {\n\t\t\tbackground: $acf_blue;\n\t\t\tborder: darken($acf_blue, 2%) solid 1px;\n\t\t\ttext-shadow: #268FBB 0 1px 0;\n\t\t\tcolor: #fff;\n\t\t\tposition: relative;\n\t\t\tmargin: 0 -1px 0 -1px;\n\n\t\t\ta {\n\t\t\t\tcolor: #fff !important;\n\n\t\t\t\t&:hover {\n\t\t\t\t\ttext-decoration: underline !important;\n\t\t\t\t}\n\t\t\t}\n\n\t\t}\n\t}\n\n\n\t/*\n\t// debug\n\t&[data-save=\"meta\"] {\n\t\t> .handle {\n\t\t\tborder-left: #ffb700 solid 5px !important;\n\t\t}\n\t}\n\n\t&[data-save=\"settings\"] {\n\t\t> .handle {\n\t\t\tborder-left: #0ec563 solid 5px !important;\n\t\t}\n\t}\n*/\n\n\n\t/* hover */\n\t&:hover, &.-hover, &:focus-within {\n\n\t\t> .handle {\n\n\t\t\t.row-options {\n\t\t\t\topacity: 1;\n\t\t\t\tmargin-bottom: 0;\n\t\t\t}\n\n\t\t}\n\t}\n\n\n\t/* settings */\n\t> .settings {\n\t\tdisplay: none;\n\t\twidth: 100%;\n\n\t\t> .acf-table {\n\t\t\tborder: none;\n\t\t}\n\t}\n\n\n\t/* conditional logic */\n\t.rule-groups {\n\t\tmargin-top: 20px;\n\t}\n\n}\n\n\n/*----------------------------------------------------------------------------\n*\n* Postbox: Locations\n*\n*----------------------------------------------------------------------------*/\n\n.rule-groups {\n\n\th4 {\n\t\tmargin: 3px 0;\n\t}\n\n\t.rule-group {\n\t\tmargin: 0 0 5px;\n\n\t\th4 {\n\t\t\tmargin: 0 0 3px;\n\t\t}\n\n\t\ttd.param {\n\t\t\twidth: 35%;\n\t\t}\n\n\t\ttd.operator {\n\t\t\twidth: 20%;\n\t\t}\n\n\t\ttd.add {\n\t\t\twidth: 40px;\n\t\t}\n\n\t\ttd.remove {\n\t\t\twidth: 28px;\n\t\t\tvertical-align: middle;\n\n\t\t\ta {\n\t\t\t\twidth: 22px;\n\t\t\t\theight: 22px;\n\t\t\t\tvisibility: hidden;\n\n\t\t\t\t&:before {\n\t\t\t\t\tposition: relative;\n\t\t\t\t\ttop: -2px;\n\t\t\t\t\tfont-size: 16px;\n\t\t\t\t}\n\n\t\t\t}\n\t\t}\n\n\t\ttr:hover td.remove a {\n\t\t\tvisibility: visible;\n\t\t}\n\n\t\t// empty select\n\t\tselect:empty {\n\t\t\tbackground: #f8f8f8;\n\t\t}\n\t}\n\n\n\t&:not(.rule-groups-multiple) {\n\t\t.rule-group {\n\t\t\t&:first-child tr:first-child td.remove a {\n\t\t\t\t/* Don't allow user to delete the only rule group */\n\t\t\t\tvisibility: hidden !important;\n\t\t\t}\n\t\t}\n\t}\n}\n\n\n/*----------------------------------------------------------------------------\n*\n*\tOptions\n*\n*----------------------------------------------------------------------------*/\n\n#acf-field-group-options tr[data-name=\"hide_on_screen\"] li {\n\tfloat: left;\n\twidth: 33%;\n}\n\n@media (max-width: 1100px) {\n\n\t#acf-field-group-options tr[data-name=\"hide_on_screen\"] li {\n\t\twidth: 50%;\n\t}\n\n}\n\n\n/*----------------------------------------------------------------------------\n*\n*\tConditional Logic\n*\n*----------------------------------------------------------------------------*/\n\ntable.conditional-logic-rules {\n\tbackground: transparent;\n\tborder: 0 none;\n\tborder-radius: 0;\n}\n\ntable.conditional-logic-rules tbody td {\n\tbackground: transparent;\n\tborder: 0 none !important;\n\tpadding: 5px 2px !important;\n}\n\n\n/*----------------------------------------------------------------------------\n*\n*\tField: Tab\n*\n*----------------------------------------------------------------------------*/\n\n.acf-field-object-tab {\n\n\t// hide setting\n\t.acf-field-setting-name,\n\t.acf-field-setting-instructions,\n\t.acf-field-setting-required,\n\t.acf-field-setting-warning,\n\t.acf-field-setting-wrapper {\n\t\tdisplay: none;\n\t}\n\n\t// hide name\n\t.li-field-name {\n\t\tvisibility: hidden;\n\t}\n\n\tp:first-child {\n\t\tmargin: 0.5em 0;\n\t}\n\n\t// hide presentation setting tabs.\n\tli.acf-settings-type-presentation,\n\t.acf-field-settings-main-presentation {\n\t\tdisplay: none !important;\n\t}\n}\n\n/*----------------------------------------------------------------------------\n*\n*\tField: Accordion\n*\n*----------------------------------------------------------------------------*/\n\n.acf-field-object-accordion {\n\n\t// hide setting\n\t.acf-field-setting-name,\n\t.acf-field-setting-instructions,\n\t.acf-field-setting-required,\n\t.acf-field-setting-warning,\n\t.acf-field-setting-wrapper {\n\t\tdisplay: none;\n\t}\n\n\t// hide name\n\t.li-field-name {\n\t\tvisibility: hidden;\n\t}\n\n\tp:first-child {\n\t\tmargin: 0.5em 0;\n\t}\n\n\t// show settings\n\t.acf-field-setting-instructions {\n\t\tdisplay: block;\n\t}\n\n}\n\n\n/*----------------------------------------------------------------------------\n*\n*\tField: Message\n*\n*----------------------------------------------------------------------------*/\n\n.acf-field-object-message tr[data-name=\"name\"],\n.acf-field-object-message tr[data-name=\"instructions\"],\n.acf-field-object-message tr[data-name=\"required\"] {\n\tdisplay: none !important;\n}\n\n.acf-field-object-message .li-field-name {\n\tvisibility: hidden;\n}\n\n.acf-field-object-message textarea {\n\theight: 175px !important;\n}\n\n\n/*----------------------------------------------------------------------------\n*\n*\tField: Separator\n*\n*----------------------------------------------------------------------------*/\n\n.acf-field-object-separator tr[data-name=\"name\"],\n.acf-field-object-separator tr[data-name=\"instructions\"],\n.acf-field-object-separator tr[data-name=\"required\"] {\n\tdisplay: none !important;\n}\n\n\n/*----------------------------------------------------------------------------\n*\n*\tField: Date Picker\n*\n*----------------------------------------------------------------------------*/\n\n.acf-field-object-date-picker,\n.acf-field-object-time-picker,\n.acf-field-object-date-time-picker {\n\n\t.acf-radio-list {\n\n\t\tli {\n\t\t\tline-height: 25px;\n\t\t}\n\n\t\tspan {\n\t\t\tdisplay: inline-block;\n\t\t\tmin-width: 10em;\n\t\t}\n\n\t\tinput[type=\"text\"] {\n\t\t\twidth: 100px;\n\t\t}\n\t}\n\n}\n\n.acf-field-object-date-time-picker {\n\n\t.acf-radio-list {\n\n\t\tspan {\n\t\t\tmin-width: 15em;\n\t\t}\n\n\t\tinput[type=\"text\"] {\n\t\t\twidth: 200px;\n\t\t}\n\t}\n\n}\n\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tSlug\n*\n*--------------------------------------------------------------------------------------------*/\n\n#slugdiv {\n\n\t.inside {\n\t\tpadding: 12px;\n\t\tmargin: 0;\n\t}\n\n\tinput[type=\"text\"] {\n\t\twidth: 100%;\n\t\theight: 28px;\n\t\tfont-size: 14px;\n\t}\n}\n\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tRTL\n*\n*--------------------------------------------------------------------------------------------*/\n\nhtml[dir=\"rtl\"] .acf-field-object.open > .handle {\n\tmargin: 0\n}\n\n/*----------------------------------------------------------------------------\n*\n* Device\n*\n*----------------------------------------------------------------------------*/\n\n@media only screen and (max-width: 850px) {\n\n\ttr.acf-field,\n\ttd.acf-label,\n\ttd.acf-input {\n\t\tdisplay: block !important;\n\t\twidth: auto !important;\n\t\tborder: 0 none !important;\n\t}\n\n\ttr.acf-field {\n\t\tborder-top: #ededed solid 1px !important;\n\t\tmargin-bottom: 0 !important;\n\t}\n\n\ttd.acf-label {\n\t\tbackground: transparent !important;\n\t\tpadding-bottom: 0 !important;\n\n\t}\n\n}\n\n/*----------------------------------------------------------------------------\n*\n* Subtle background on accordion & tab fields to separate them from others\n*\n*----------------------------------------------------------------------------*/\n.post-type-acf-field-group {\n\n\t#acf-field-group-fields {\n\n\t\t.acf-field-object-tab,\n\t\t.acf-field-object-accordion {\n\t\t\tbackground-color: $gray-50;\n\t\t}\n\n\t}\n\n}","/*---------------------------------------------------------------------------------------------\n*\n* Global\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-admin-page {\n\t#wpcontent {\n\t\tline-height: 140%;\n\t}\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Links\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-admin-page {\n\n\ta {\n\t\tcolor: $blue-500;\n\t}\n\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Headings\n*\n*---------------------------------------------------------------------------------------------*/\n\n.acf-h1 {\n\tfont-size: 21px;\n\tfont-weight: 400;\n}\n\n.acf-h2 {\n\tfont-size: 18px;\n\tfont-weight: 400;\n}\n\n.acf-h3 {\n\tfont-size: 16px;\n\tfont-weight: 400;\n}\n\n.acf-admin-page,\n.acf-headerbar {\n\n\th1 {\n\t\t@extend .acf-h1;\n\t}\n\n\th2 {\n\t\t@extend .acf-h2;\n\t}\n\n\th3 {\n\t\t@extend .acf-h3;\n\t}\n\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Paragraphs\n*\n*---------------------------------------------------------------------------------------------*/\n\n.acf-admin-page {\n\n\t.p1 {\n\t\tfont-size: 15px;\n\t}\n\n\t.p2 {\n\t\tfont-size: 14px;\n\t}\n\n\t.p3 {\n\t\tfont-size: 13.5px;\n\t}\n\n\t.p4 {\n\t\tfont-size: 13px;\n\t}\n\n\t.p5 {\n\t\tfont-size: 12.5px;\n\t}\n\n\t.p6 {\n\t\tfont-size: 12px;\n\t}\n\n\t.p7 {\n\t\tfont-size: 11.5px;\n\t}\n\n\t.p8 {\n\t\tfont-size: 11px;\n\t}\n\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Page titles\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-page-title {\n\t@extend .acf-h2;\n\tcolor: $gray-700;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Hide old / native WP titles from pages\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-admin-page {\n\n\t.acf-settings-wrap h1 {\n\t\tdisplay: none !important;\n\t}\n\n\t#acf-admin-tools h1:not(.acf-field-group-pro-features-title, .acf-field-group-pro-features-title-sm) {\n\t\tdisplay: none !important;\n\t}\n\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Small\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-small {\n\t@extend .p6;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Link focus style\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-admin-page {\n\ta:focus {\n\t\tbox-shadow: none;\n\t\toutline: none;\n\t}\n\n\ta:focus-visible {\n\t\tbox-shadow: 0 0 0 1px #4f94d4, 0 0 2px 1px rgb(79 148 212 / 80%);\n\t\toutline: 1px solid transparent;\n\t}\n}\n",".acf-admin-page {\n\n\t/*---------------------------------------------------------------------------------------------\n\t*\n\t* All Inputs\n\t*\n\t*---------------------------------------------------------------------------------------------*/\n\tinput[type=\"text\"],\n\tinput[type=\"search\"],\n\tinput[type=\"number\"],\n\ttextarea,\n\tselect {\n\t\tbox-sizing: border-box;\n\t\theight: 40px;\n\t\tpadding: {\n\t\t\tright: 12px;\n\t\t\tleft: 12px;\n\t\t};\n\t\tbackground-color: #fff;\n\t\tborder-color: $gray-300;\n\t\tbox-shadow: $elevation-01;\n\t\tborder-radius: $radius-md;\n\t\t@extend .p4;\n\t\tcolor: $gray-700;\n\n\t\t&:focus {\n\t\t\toutline: $outline;\n\t\t\tborder-color: $blue-400;\n\t\t}\n\n\t\t&:disabled {\n\t\t\tbackground-color: $gray-50;\n\t\t\tcolor: lighten($gray-500, 10%);\n\t\t}\n\n\t\t&::placeholder {\n\t\t\tcolor: $gray-400;\n\t\t}\n\n\t}\n\n\t/*---------------------------------------------------------------------------------------------\n\t*\n\t* Read only text inputs\n\t*\n\t*---------------------------------------------------------------------------------------------*/\n\tinput[type=\"text\"] {\n\n\t\t&:read-only {\n\t\t\tbackground-color: $gray-50;\n\t\t\tcolor: $gray-400;\n\t\t}\n\n\t}\n\n\t/*---------------------------------------------------------------------------------------------\n\t*\n\t* Number fields\n\t*\n\t*---------------------------------------------------------------------------------------------*/\n\t.acf-field.acf-field-number {\n\n\t\t.acf-label,\n\t\t.acf-input input[type=\"number\"] {\n\t\t\tmax-width: 180px;\n\t\t}\n\n\t}\n\n\t/*---------------------------------------------------------------------------------------------\n\t*\n\t* Textarea\n\t*\n\t*---------------------------------------------------------------------------------------------*/\n\ttextarea {\n\t\tbox-sizing: border-box;\n\t\tpadding: {\n\t\t\ttop: 10px;\n\t\t\tbottom: 10px;\n\t\t};\n\t\theight: 80px;\n\t\tmin-height: 56px;\n\t}\n\n\t/*---------------------------------------------------------------------------------------------\n\t*\n\t* Select\n\t*\n\t*---------------------------------------------------------------------------------------------*/\n\tselect {\n\t\tmin-width: 160px;\n\t\tmax-width: 100%;\n\t\tpadding: {\n\t\t\tright: 40px;\n\t\t\tleft: 12px;\n\t\t};\n\t\tbackground-image: url('../../images/icons/icon-chevron-down.svg');\n\t\tbackground-position: right 10px top 50%;\n\t\tbackground-size: 20px;\n\t\t@extend .p4;\n\n\t\t&:hover,\n\t\t&:focus {\n\t\t\tcolor: $blue-500;\n\t\t}\n\n\t\t&::before {\n\t\t\tcontent: '';\n\t\t\tdisplay: block;\n\t\t\tposition: absolute;\n\t\t\ttop: 5px;\n\t\t\tleft: 5px;\n\t\t\twidth: 20px;\n\t\t\theight: 20px;\n\t\t}\n\n\t}\n\n\t&.rtl {\n\t\tselect {\n\t\t\tpadding: {\n\t\t\t\tright: 12px;\n\t\t\t\tleft: 40px;\n\t\t\t};\n\t\t\tbackground-position: left 10px top 50%;\n\t\t}\n\t}\n\n\t/*---------------------------------------------------------------------------------------------\n\t*\n\t* Radio Button & Checkbox base styling\n\t*\n\t*---------------------------------------------------------------------------------------------*/\n\tinput[type=\"radio\"],\n\tinput[type=\"checkbox\"] {\n\t\tbox-sizing: border-box;\n\t\twidth: 16px;\n\t\theight: 16px;\n\t\tpadding: 0;\n\t\tborder: {\n\t\t\twidth: 1px;\n\t\t\tstyle: solid;\n\t\t\tcolor: $gray-400;\n\t\t};\n\t\tbackground: #fff;\n\t\tbox-shadow: none;\n\n\t\t&:hover {\n\t\t\tbackground-color: $blue-50;\n\t\t\tborder-color: $blue-500;\n\t\t}\n\n\t\t&:checked,\n\t\t&:focus-visible {\n\t\t\tbackground-color: $blue-50;\n\t\t\tborder-color: $blue-500;\n\n\t\t\t&:before {\n\t\t\t\tcontent: '';\n\t\t\t\tposition: relative;\n\t\t\t\ttop: -1px;\n\t\t\t\tleft: -1px;\n\t\t\t\twidth: 16px;\n\t\t\t\theight: 16px;\n\t\t\t\tmargin: 0;\n\t\t\t\tpadding: 0;\n\t\t\t\tbackground-color: transparent;\n\t\t\t\tbackground-size: cover;\n\t\t\t\tbackground-repeat: no-repeat;\n\t\t\t\tbackground-position: center;\n\t\t\t}\n\n\t\t}\n\n\t\t&:active {\n\t\t\tbox-shadow: 0px 0px 0px 3px $blue-50, 0px 0px 0px rgba(255, 54, 54, 0.25);\n\t\t}\n\n\t\t&:disabled {\n\t\t\tbackground-color: $gray-50;\n\t\t\tborder-color: $gray-300;\n\t\t}\n\n\t}\n\n\t&.rtl {\n\t\tinput[type=\"radio\"],\n\t\tinput[type=\"checkbox\"] {\n\t\t\t&:checked,\n\t\t\t&:focus-visible {\n\t\t\t\t&:before {\n\t\t\t\t\tleft: 1px;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\n\t/*---------------------------------------------------------------------------------------------\n\t*\n\t* Radio Buttons\n\t*\n\t*---------------------------------------------------------------------------------------------*/\n\tinput[type=\"radio\"] {\n\n\t\t&:checked,\n\t\t&:focus {\n\n\t\t\t&:before {\n\t\t\t\tbackground-image: url('../../images/field-states/radio-active.svg');\n\t\t\t}\n\n\t\t}\n\n\t}\n\n\t/*---------------------------------------------------------------------------------------------\n\t*\n\t* Checkboxes\n\t*\n\t*---------------------------------------------------------------------------------------------*/\n\tinput[type=\"checkbox\"] {\n\n\t\t&:checked,\n\t\t&:focus {\n\n\t\t\t&:before {\n\t\t\t\tbackground-image: url('../../images/field-states/checkbox-active.svg');\n\t\t\t}\n\n\t\t}\n\n\t}\n\n\t/*---------------------------------------------------------------------------------------------\n\t*\n\t* Radio Buttons & Checkbox lists\n\t*\n\t*---------------------------------------------------------------------------------------------*/\n\t.acf-radio-list,\n\t.acf-checkbox-list {\n\n\t\tli input[type=\"radio\"],\n\t\tli input[type=\"checkbox\"] {\n\t\t\tmargin: {\n\t\t\t\tright: 6px;\n\t\t\t};\n\t\t}\n\n\t\t&.acf-bl li {\n\t\t\tmargin: {\n\t\t\t\tbottom: 8px;\n\t\t\t};\n\n\t\t\t&:last-of-type {\n\t\t\t\tmargin: {\n\t\t\t\t\tbottom: 0;\n\t\t\t\t};\n\t\t\t}\n\n\n\t\t}\n\n\t\tlabel {\n\t\t\tdisplay: flex;\n\t\t\talign-items: center;\n\t\t\talign-content: center;\n\t\t}\n\n\t}\n\n\t/*---------------------------------------------------------------------------------------------\n\t*\n\t* ACF Switch\n\t*\n\t*---------------------------------------------------------------------------------------------*/\n\t.acf-switch {\n\t\twidth: 42px;\n\t\theight: 24px;\n\t\tborder: none;\n\t\tbackground-color: $gray-300;\n\t\tborder-radius: 12px;\n\n\t\t&:hover {\n\t\t\tbackground-color: $gray-400;\n\t\t}\n\n\t\t&:active {\n\t\t\tbox-shadow: 0px 0px 0px 3px $blue-50, 0px 0px 0px rgba(255, 54, 54, 0.25);\n\t\t}\n\n\t\t&.-on {\n\t\t\tbackground-color: $color-primary;\n\n\t\t\t&:hover {\n\t\t\t\tbackground-color: $color-primary-hover;\n\t\t\t}\n\n\t\t\t.acf-switch-slider {\n\t\t\t\tleft: 20px;\n\t\t\t}\n\n\t\t}\n\n\t\t.acf-switch-off,\n\t\t.acf-switch-on {\n\t\t\tvisibility: hidden;\n\t\t}\n\n\t\t.acf-switch-slider {\n\t\t\twidth: 20px;\n\t\t\theight: 20px;\n\t\t\tborder: none;\n\t\t\tborder-radius: 100px;\n\t\t\tbox-shadow: 0px 1px 3px rgba(16, 24, 40, 0.1), 0px 1px 2px rgba(16, 24, 40, 0.06);\n\t\t}\n\n\t}\n\n\t.acf-field-true-false {\n\t\tdisplay: flex;\n\t\talign-items: flex-start;\n\n\t\t.acf-label {\n\t\t\torder: 2;\n\t\t\tdisplay: block;\n\t\t\talign-items: center;\n\t\t\tmargin: {\n\t\t\t\ttop: 2px;\n\t\t\t\tbottom: 0;\n\t\t\t\tleft: 12px;\n\t\t\t};\n\n\t\t\tlabel {\n\t\t\t\tmargin: {\n\t\t\t\t\tbottom: 0;\n\t\t\t\t};\n\t\t\t}\n\n\t\t\t.acf-tip {\n\t\t\t\tmargin: {\n\t\t\t\t\tleft: 12px;\n\t\t\t\t};\n\t\t\t}\n\t\t\t\n\t\t\t.description {\n\t\t\t\tdisplay: block;\n\t\t\t\tmargin: {\n\t\t\t\t\ttop: 2px;\n\t\t\t\t\tleft: 0;\n\t\t\t\t};\t\t\n\t\t\t}\n\n\t\t}\n\n\t}\n\n\t&.rtl {\n\t\t.acf-field-true-false {\n\t\t\t.acf-label {\n\t\t\t\tmargin: {\n\t\t\t\t\tright: 12px;\n\t\t\t\t\tleft: 0;\n\t\t\t\t};\n\t\t\t}\n\n\t\t\t.acf-tip {\n\t\t\t\tmargin: {\n\t\t\t\t\tright: 12px;\n\t\t\t\t\tleft: 0;\n\t\t\t\t};\n\t\t\t}\n\t\t}\n\t}\n\n\t/*---------------------------------------------------------------------------------------------\n\t*\n\t* File input button\n\t*\n\t*---------------------------------------------------------------------------------------------*/\n\n\tinput::file-selector-button {\n\t\tbox-sizing: border-box;\n\t\tmin-height: 40px;\n\t\tmargin: {\n\t\t\tright: 16px;\n\t\t};\n\t\tpadding: {\n\t\t\ttop: 8px;\n\t\t\tright: 16px;\n\t\t\tbottom: 8px;\n\t\t\tleft: 16px;\n\t\t};\n\t\tbackground-color: transparent;\n\t\tcolor: $color-primary !important;\n\t\tborder-radius: $radius-md;\n\t\tborder: {\n\t\t\twidth: 1px;\n\t\t\tstyle: solid;\n\t\t\tcolor: $color-primary;\n\t\t};\n\t\ttext-decoration: none;\n\n\t\t&:hover {\n\t\t\tborder-color: $color-primary-hover;\n\t\t\tcursor: pointer;\n\t\t\tcolor: $color-primary-hover !important;\n\t\t}\n\n\t}\n\n\n\t/*---------------------------------------------------------------------------------------------\n\t*\n\t* Action Buttons\n\t*\n\t*---------------------------------------------------------------------------------------------*/\n\t.button {\n\t\tdisplay: inline-flex;\n\t\talign-items: center;\n\t\theight: 40px;\n\t\tpadding: {\n\t\t\tright: 16px;\n\t\t\tleft: 16px;\n\t\t};\n\t\tbackground-color: transparent;\n\t\tborder-width: 1px;\n\t\tborder-style: solid;\n\t\tborder-color: $blue-500;\n\t\tborder-radius: $radius-md;\n\t\t@extend .p4;\n\t\tcolor: $blue-500;\n\n\t\t&:hover {\n\t\t\tbackground-color: lighten($blue-50, 2%);\n\t\t\tborder-color: $color-primary;\n\t\t\tcolor: $color-primary;\n\t\t}\n\t\t&:focus {\n\t\t\tbackground-color: lighten($blue-50, 2%);\n\t\t\toutline: $outline;\n\t\t\tcolor: $color-primary;\n\t\t}\n\n\t}\n\n\t/*---------------------------------------------------------------------------------------------\n\t*\n\t* Edit field group header\n\t*\n\t*---------------------------------------------------------------------------------------------*/\n\t.edit-field-group-header {\n\t\tdisplay: block !important;\n\t}\n\n\t/*---------------------------------------------------------------------------------------------\n\t*\n\t* Select2 inputs\n\t*\n\t*---------------------------------------------------------------------------------------------*/\n\t.acf-input {\n\n\t\t.select2-container.-acf .select2-selection {\n\t\t\tborder: none;\n\t\t\tline-height: 1;\n\t\t}\n\n\t\t.select2-container.-acf .select2-selection__rendered {\n\t\t\tbox-sizing: border-box;\n\t\t\tpadding: {\n\t\t\t\tright: 0;\n\t\t\t\tleft: 0;\n\t\t\t};\n\t\t\tbackground-color: #fff;\n\t\t\tborder: {\n\t\t\t\twidth: 1px;\n\t\t\t\tstyle: solid;\n\t\t\t\tcolor: $gray-300;\n\t\t\t};\n\t\t\tbox-shadow: $elevation-01;\n\t\t\tborder-radius: $radius-md;\n\t\t\t@extend .p4;\n\t\t\tcolor: $gray-700;\n\t\t}\n\n\t\t.select2-container--focus {\n\t\t\toutline: $outline;\n\t\t\tborder-color: $blue-400;\n\t\t\tborder-radius: $radius-md;\n\n\t\t\t.select2-selection__rendered {\n\t\t\t\tborder-color: $blue-400 !important;\n\t\t\t}\n\n\t\t\t&.select2-container--below.select2-container--open {\n\n\t\t\t\t.select2-selection__rendered {\n\t\t\t\t\tborder-bottom-right-radius: 0 !important;\n\t\t\t\t\tborder-bottom-left-radius: 0 !important;\n\t\t\t\t}\n\n\t\t\t}\n\n\t\t\t&.select2-container--above.select2-container--open {\n\n\t\t\t\t.select2-selection__rendered {\n\t\t\t\t\tborder-top-right-radius: 0 !important;\n\t\t\t\t\tborder-top-left-radius: 0 !important;\n\t\t\t\t}\n\n\t\t\t}\n\n\t\t}\n\n\t\t.select2-container .select2-search--inline .select2-search__field {\n\t\t\tmargin: 0;\n\t\t\tpadding: {\n\t\t\t\tleft: 6px;\n\t\t\t};\n\n\t\t\t&:focus {\n\t\t\t\toutline: none;\n\t\t\t\tborder: none;\n\t\t\t}\n\n\t\t}\n\n\t\t.select2-container--default .select2-selection--multiple .select2-selection__rendered {\n\t\t\tpadding: {\n\t\t\t\ttop: 0;\n\t\t\t\tright: 6px;\n\t\t\t\tbottom: 0;\n\t\t\t\tleft: 6px;\n\t\t\t};\n\t\t}\n\n\t\t.select2-selection__clear {\n\t\t\twidth: 18px;\n\t\t\theight: 18px;\n\t\t\tmargin: {\n\t\t\t\ttop: 12px;\n\t\t\t\tright: 1px;\n\t\t\t};\n\t\t\ttext-indent: 100%;\n\t\t\twhite-space: nowrap;\n\t\t\toverflow: hidden;\n\t\t\tcolor: #fff;\n\n\t\t\t&:before {\n\t\t\t\tcontent: '';\n\t\t\t\t$icon-size: 16px;\n\t\t\t\tdisplay: block;\n\t\t\t\twidth: $icon-size;\n\t\t\t\theight: $icon-size;\n\t\t\t\ttop: 0;\n\t\t\t\tleft: 0;\n\t\t\t\tborder: none;\n\t\t\t\tborder-radius: 0;\n\t\t\t\t-webkit-mask-size: contain;\n\t\t\t\tmask-size: contain;\n\t\t\t\t-webkit-mask-repeat: no-repeat;\n\t\t\t\tmask-repeat: no-repeat;\n\t\t\t\t-webkit-mask-position: center;\n\t\t\t\tmask-position: center;\n\t\t\t\t-webkit-mask-image: url('../../images/icons/icon-close.svg');\n\t\t\t\tmask-image: url('../../images/icons/icon-close.svg');\n\t\t\t\tbackground-color: $gray-400;\n\t\t\t}\n\n\t\t\t&:hover::before {\n\t\t\t\tbackground-color: $blue-500;\n\t\t\t}\n\n\t\t}\n\n\t}\n\n\t/*---------------------------------------------------------------------------------------------\n\t*\n\t* ACF label\n\t*\n\t*---------------------------------------------------------------------------------------------*/\n\t.acf-label {\n\t\tdisplay: flex;\n\t\talign-items: center;\n\t\tjustify-content: space-between;\n\n\t\t.acf-icon-help {\n\t\t\t$icon-size: 18px;\n\t\t\twidth: $icon-size;\n\t\t\theight: $icon-size;\n\t\t\tbackground-color: $gray-400;\n\t\t}\n\n\t\tlabel {\n\t\t\tmargin: {\n\t\t\t\tbottom: 0;\n\t\t\t};\n\t\t}\n\t\t\n\t\t.description {\n\t\t\tmargin: {\n\t\t\t\ttop: 2px;\n\t\t\t};\n\t\t}\n\n\t}\n\n\t/*---------------------------------------------------------------------------------------------\n\t*\n\t* Tooltip for field name field setting (result of a fix for keyboard navigation)\n\t*\n\t*---------------------------------------------------------------------------------------------*/\n\t.acf-field-setting-name .acf-tip {\n\t\tposition: absolute;\n\t\ttop: 0;\n\t\tleft: 654px;\n\t\tcolor: #98A2B3;\n\n\t\t@at-root .rtl#{&} {\n\t\t\tleft: auto;\n\t\t\tright: 654px;\n\t\t}\n\n\t\t.acf-icon-help {\n\t\t\twidth: 18px;\n\t\t\theight: 18px;\n\t\t}\n\t}\n\n\t/* Field Type Selection select2 */\n\t.acf-field-setting-type,\n\t.acf-field-permalink-rewrite,\n\t.acf-field-query-var,\n\t.acf-field-capability,\n\t.acf-field-parent-slug,\n\t.acf-field-data-storage,\n\t.acf-field-manage-terms,\n\t.acf-field-edit-terms,\n\t.acf-field-delete-terms,\n\t.acf-field-assign-terms,\n\t.acf-field-meta-box {\n\t\t\n\t\t.select2-container.-acf {\n\t\t\tmin-height: 40px;\n\t\t}\n\n\t\t.select2-container--default .select2-selection--single {\n\t\t\t.select2-selection__rendered {\n\t\t\t\tdisplay: flex;\n\t\t\t\talign-items: center;\n\t\t\t\tposition: relative;\n\t\t\t\tz-index: 800;\n\t\t\t\tmin-height: 40px;\n\t\t\t\tpadding: {\n\t\t\t\t\ttop: 0;\n\t\t\t\t\tright: 12px;\n\t\t\t\t\tbottom: 0;\n\t\t\t\t\tleft: 12px;\n\t\t\t\t};\n\t\t\t}\n\t\t\t.field-type-icon {\n\t\t\t\ttop: auto;\n\t\t\t\twidth: 18px;\n\t\t\t\theight: 18px;\n\t\t\t\tmargin: {\n\t\t\t\t\tright: 2px;\n\t\t\t\t};\n\n\t\t\t\t&:before {\n\t\t\t\t\twidth: 9px;\n\t\t\t\t\theight: 9px;\n\t\t\t\t}\n\n\t\t\t}\n\t\t}\n\n\t\t.select2-container--open .select2-selection__rendered {\n\t\t\tborder-color: $blue-300 !important;\n\t\t\tborder-bottom-color: $gray-300 !important;\n\t\t}\n\n\t\t.select2-container--open.select2-container--below .select2-selection__rendered {\n\t\t\tborder-bottom-right-radius: 0 !important;\n\t\t\tborder-bottom-left-radius: 0 !important;\n\t\t}\n\n\t\t.select2-container--open.select2-container--above .select2-selection__rendered {\n\t\t\tborder-top-right-radius: 0 !important;\n\t\t\tborder-top-left-radius: 0 !important;\n\t\t\tborder-bottom-color: $blue-300 !important;\n\t\t\tborder-top-color: $gray-300 !important;\n\t\t}\n\n\t\t// icon margins\n\t\t.acf-selection.has-icon {\n\t\t\tmargin-left: 6px;\n\t\n\t\t\t@at-root .rtl#{&} {\n\t\t\t\tmargin-right: 6px;\n\t\t\t}\n\t\t}\n\t\t\n\t\t// Dropdown icon\n\t\t.select2-selection__arrow {\n\t\t\twidth: 20px;\n\t\t\theight: 20px;\n\t\t\ttop: calc(50% - 10px);\n\t\t\tright: 12px;\n\t\t\tbackground-color: transparent;\n\t\t\t\n\t\t\t&:after {\n\t\t\t\tcontent: \"\";\n\t\t\t\t$icon-size: 20px;\n\t\t\t\tdisplay: block;\n\t\t\t\tposition: absolute;\n\t\t\t\tz-index: 850;\n\t\t\t\ttop: 1px;\n\t\t\t\tleft: 0;\n\t\t\t\twidth: $icon-size;\n\t\t\t\theight: $icon-size;\n\t\t\t\t-webkit-mask-image: url(\"../../images/icons/icon-chevron-down.svg\");\n\t\t\t\tmask-image: url(\"../../images/icons/icon-chevron-down.svg\");\n\t\t\t\tbackground-color: $gray-500;\n\t\t\t\tborder: none;\n\t\t\t\tborder-radius: 0;\n\t\t\t\t-webkit-mask-size: contain;\n\t\t\t\tmask-size: contain;\n\t\t\t\t-webkit-mask-repeat: no-repeat;\n\t\t\t\tmask-repeat: no-repeat;\n\t\t\t\t-webkit-mask-position: center;\n\t\t\t\tmask-position: center;\n\t\t\t\ttext-indent: 500%;\n\t\t\t\twhite-space: nowrap;\n\t\t\t\toverflow: hidden;\t\n\t\t\t}\n\t\t\t\n\t\t\tb[role=\"presentation\"] {\n\t\t\t\tdisplay: none;\n\t\t\t}\n\t\t\t\n\t\t}\n\n\t\t// Open state\n\t\t.select2-container--open {\n\t\t\t\n\t\t\t// Swap chevron icon\n\t\t\t.select2-selection__arrow:after {\n\t\t\t\t-webkit-mask-image: url(\"../../images/icons/icon-chevron-up.svg\");\n\t\t\t\tmask-image: url(\"../../images/icons/icon-chevron-up.svg\");\n\t\t\t}\n\t\t\t\n\t\t}\n\n\t}\n\n\t.field-type-select-results {\n\t\tposition: relative;\n\t\ttop: 4px;\n\t\tz-index: 1002;\n\t\tborder-radius: 0 0 $radius-md $radius-md;\n\t\tbox-shadow: 0px 8px 24px 4px rgba(16, 24, 40, 0.12);\n\t\t&.select2-dropdown--above {\n\t\t\tdisplay: flex;\n\t\t\tflex-direction: column-reverse;\t \n\t\t\ttop: 0;\n\t\t\tborder-radius: $radius-md $radius-md 0 0;\n\t\t\tz-index: 99999;\n\t\t}\n\t\t\n\t\t@at-root .select2-container.select2-container--open#{&} {\n\t\t\t// outline: 3px solid $blue-50;\n\t\t\tbox-shadow: 0px 0px 0px 3px #EBF5FA, 0px 8px 24px 4px rgba(16, 24, 40, 0.12);\n\t\t}\n\n\t\t// icon margins\n\t\t.acf-selection.has-icon {\n\t\t\tmargin-left: 6px;\n\n\t\t\t@at-root .rtl#{&} {\n\t\t\t\tmargin-right: 6px;\n\t\t\t}\n\t\t}\n\n\t\t// Search field\n\t\t.select2-search {\n\t\t\tposition: relative;\n\t\t\tmargin: 0;\n\t\t\tpadding: 0;\n\n\t\t\t&--dropdown {\n\t\t\t\t&:after {\n\t\t\t\t\tcontent: \"\";\n\t\t\t\t\t$icon-size: 16px;\n\t\t\t\t\tdisplay: block;\n\t\t\t\t\tposition: absolute;\n\t\t\t\t\ttop: 12px;\n\t\t\t\t\tleft: 13px;\n\t\t\t\t\twidth: $icon-size;\n\t\t\t\t\theight: $icon-size;\n\t\t\t\t\t-webkit-mask-image: url(\"../../images/icons/icon-search.svg\");\n\t\t\t\t\tmask-image: url(\"../../images/icons/icon-search.svg\");\n\t\t\t\t\tbackground-color: $gray-400;\n\t\t\t\t\tborder: none;\n\t\t\t\t\tborder-radius: 0;\n\t\t\t\t\t-webkit-mask-size: contain;\n\t\t\t\t\tmask-size: contain;\n\t\t\t\t\t-webkit-mask-repeat: no-repeat;\n\t\t\t\t\tmask-repeat: no-repeat;\n\t\t\t\t\t-webkit-mask-position: center;\n\t\t\t\t\tmask-position: center;\n\t\t\t\t\ttext-indent: 500%;\n\t\t\t\t\twhite-space: nowrap;\n\t\t\t\t\toverflow: hidden;\n\n\t\t\t\t\t@at-root .rtl#{&} {\n\t\t\t\t\t\tright: 12px;\n\t\t\t\t\t\tleft: auto;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t.select2-search__field {\n\t\t\t\tpadding-left: 38px;\n\n\t\t\t\tborder-right: 0;\n\t\t\t\tborder-bottom: 0;\n\t\t\t\tborder-left: 0;\n\t\t\t\tborder-radius: 0;\n\n\t\t\t\t@at-root .rtl#{&} {\n\t\t\t\t\tpadding-right: 38px;\n\t\t\t\t\tpadding-left: 0;\n\t\t\t\t}\n\n\t\t\t\t&:focus {\n\t\t\t\t\tborder-top-color: $gray-300;\n\t\t\t\t\toutline: 0;\n\t\t\t\t}\n\t\t\t}\n\n\t\t}\n\n\t\t.select2-results__options {\n\t\t\tmax-height: 440px;\n\t\t}\n\t\t\n\t\t.select2-results__option {\n\t\t\t.select2-results__option--highlighted {\n\t\t\t\tbackground-color: $blue-500 !important;\n\t\t\t\tcolor: $gray-50 !important;\n\t\t\t}\n\t\t}\n\n\t\t// List items\n\t\t.select2-results__option .select2-results__option {\n\t\t\tdisplay: inline-flex;\n\t\t\tposition: relative;\n\t\t\twidth: calc(100% - 24px);\n\t\t\tmin-height: 32px;\n\t\t\tpadding: {\n\t\t\t\ttop: 0;\n\t\t\t\tright: 12px;\n\t\t\t\tbottom: 0;\n\t\t\t\tleft: 12px;\n\t\t\t}\n\t\t\talign-items: center;\n\t\t\t\n\t\t\t.field-type-icon {\n\t\t\t\ttop: auto;\n\t\t\t\twidth: 18px;\n\t\t\t\theight: 18px;\n\t\t\t\tmargin: {\n\t\t\t\t\tright: 2px;\n\t\t\t\t};\n\t\t\t\tbox-shadow: 0 0 0 1px $gray-50;\n\t\t\t\n\t\t\t\t&:before {\n\t\t\t\t\twidth: 9px;\n\t\t\t\t\theight: 9px;\n\t\t\t\t}\n\t\t\t\n\t\t\t}\n\t\t\t\n\t\t}\n\n\t\t.select2-results__option[aria-selected=\"true\"] {\n\t\t\tbackground-color: $blue-50 !important;\n\t\t\tcolor: $gray-700 !important;\n\t\t\t\n\t\t\t&:after {\n\t\t\t\tcontent: \"\";\n\t\t\t\t$icon-size: 16px;\n\t\t\t\tright: 13px;\n\t\t\t\tposition: absolute;\n\t\t\t\twidth: $icon-size;\n\t\t\t\theight: $icon-size;\n\t\t\t\t-webkit-mask-image: url(\"../../images/icons/icon-check.svg\");\n\t\t\t\tmask-image: url(\"../../images/icons/icon-check.svg\");\n\t\t\t\tbackground-color: $blue-500;\n\t\t\t\tborder: none;\n\t\t\t\tborder-radius: 0;\n\t\t\t\t-webkit-mask-size: contain;\n\t\t\t\tmask-size: contain;\n\t\t\t\t-webkit-mask-repeat: no-repeat;\n\t\t\t\tmask-repeat: no-repeat;\n\t\t\t\t-webkit-mask-position: center;\n\t\t\t\tmask-position: center;\n\t\t\t\ttext-indent: 500%;\n\t\t\t\twhite-space: nowrap;\n\t\t\t\toverflow: hidden;\n\n\t\t\t\t@at-root .rtl#{&} {\n\t\t\t\t\tleft: 13px;\n\t\t\t\t\tright: auto;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t.select2-results__group {\n\t\t\tdisplay: inline-flex;\n\t\t\talign-items: center;\n\t\t\twidth: calc(100% - 24px);\n\t\t\tmin-height: 25px;\n\t\t\tbackground-color: $gray-50;\n\t\t\tborder-top: {\n\t\t\t\twidth: 1px;\n\t\t\t\tstyle: solid;\n\t\t\t\tcolor: $gray-200;\n\t\t\t};\n\t\t\tborder-bottom: {\n\t\t\t\twidth: 1px;\n\t\t\t\tstyle: solid;\n\t\t\t\tcolor: $gray-200;\n\t\t\t};\n\t\t\tcolor: $gray-400;\n\t\t\tfont-size: 11px;\n\t\t\tmargin: {\n\t\t\t\tbottom: 0;\n\t\t\t};\n\t\t\tpadding: {\n\t\t\t\ttop: 0;\n\t\t\t\tright: 12px;\n\t\t\t\tbottom: 0;\n\t\t\t\tleft: 12px;\n\t\t\t};\n\t\t\tfont-weight: normal;\n\t\t}\n\t}\n\t\n\t/*---------------------------------------------------------------------------------------------\n\t*\n\t* RTL arrow position\n\t*\n\t*---------------------------------------------------------------------------------------------*/\n\t&.rtl {\n\t\t\n\t\t.acf-field-setting-type,\n\t\t.acf-field-permalink-rewrite,\n\t\t.acf-field-query-var {\n\t\t\t\n\t\t\t.select2-selection__arrow:after {\n\t\t\tright: auto;\n\t\t\tleft: 10px;\n\t\t\t}\n\t\t}\n\t\t\n\t}\n\t\n}\n\n.rtl.post-type-acf-field-group,\n.rtl.acf-internal-post-type {\n\t.acf-field-setting-name .acf-tip {\n\t\tleft: auto;\n\t\tright: 654px;\n\t}\n}","/*----------------------------------------------------------------------------\n*\n* Container sizes\n*\n*----------------------------------------------------------------------------*/\n.post-type-acf-field-group .metabox-holder.columns-1 {\n\t#acf-field-group-fields,\n\t#acf-field-group-options,\n\t.meta-box-sortables.ui-sortable,\n\t.notice {\n\t\tmax-width: $max-width;\n\t}\n}\n\n/*----------------------------------------------------------------------------\n*\n* Max width for notices in 1 column edit field group layout\n*\n*----------------------------------------------------------------------------*/\n.post-type-acf-field-group.columns-1 {\n\t.notice {\n\t\tmax-width: $max-width;\n\t}\n}\n\n/*----------------------------------------------------------------------------\n*\n* Widen edit field group headerbar for 2 column layout\n*\n*----------------------------------------------------------------------------*/\n.post-type-acf-field-group.columns-2 {\n\t.acf-headerbar .acf-headerbar-inner {\n\t\tmax-width: 100%;\n\t}\n}\n\n/*----------------------------------------------------------------------------\n*\n* Post stuff\n*\n*----------------------------------------------------------------------------*/\n.post-type-acf-field-group {\n\t#poststuff {\n\t\tmargin: {\n\t\t\ttop: 0;\n\t\t\tright: 0;\n\t\t\tbottom: 0;\n\t\t\tleft: 0;\n\t\t}\n\t\tpadding: {\n\t\t\ttop: 0;\n\t\t\tright: 0;\n\t\t\tbottom: 0;\n\t\t\tleft: 0;\n\t\t}\n\t}\n}\n\n/*----------------------------------------------------------------------------\n*\n* Table\n*\n*----------------------------------------------------------------------------*/\n.post-type-acf-field-group {\n\t#acf-field-group-fields .acf-field-list-wrap {\n\t\toverflow: hidden;\n\t\tborder: none;\n\t\tborder-radius: 0 0 $radius-lg $radius-lg;\n\t\tbox-shadow: $elevation-01;\n\n\t\t&.-empty {\n\t\t\tborder-top: {\n\t\t\t\twidth: 1px;\n\t\t\t\tstyle: solid;\n\t\t\t\tcolor: $gray-200;\n\t\t\t}\n\n\t\t\t.acf-thead,\n\t\t\t.acf-tfoot {\n\t\t\t\tdisplay: none;\n\t\t\t}\n\n\t\t\t.no-fields-message {\n\t\t\t\tmin-height: 280px;\n\t\t\t}\n\t\t}\n\t}\n}\n\n/*----------------------------------------------------------------------------\n*\n* Table header\n*\n*----------------------------------------------------------------------------*/\n.post-type-acf-field-group {\n\t.acf-thead {\n\t\tbackground-color: $gray-50;\n\t\tborder-top: {\n\t\t\twidth: 1px;\n\t\t\tstyle: solid;\n\t\t\tcolor: $gray-200;\n\t\t}\n\t\tborder-bottom: {\n\t\t\twidth: 1px;\n\t\t\tstyle: solid;\n\t\t\tcolor: $gray-200;\n\t\t}\n\n\t\tli {\n\t\t\tdisplay: flex;\n\t\t\talign-items: center;\n\t\t\tmin-height: 48px;\n\t\t\tpadding: {\n\t\t\t\ttop: 0;\n\t\t\t\tbottom: 0;\n\t\t\t}\n\t\t\t@extend .p4;\n\t\t\tcolor: $gray-700;\n\t\t\tfont-weight: 500;\n\t\t}\n\t}\n}\n\n/*----------------------------------------------------------------------------\n*\n* Table body\n*\n*----------------------------------------------------------------------------*/\n.post-type-acf-field-group {\n\t.acf-field-object {\n\t\tborder-top: {\n\t\t\twidth: 1px;\n\t\t\tstyle: solid;\n\t\t\tcolor: $gray-200;\n\t\t}\n\n\t\t&:hover {\n\t\t\t.acf-sortable-handle:before {\n\t\t\t\tdisplay: inline-flex;\n\t\t\t}\n\t\t}\n\n\t\t// Add divider to show which fields have endpoint\n\t\t&.acf-field-is-endpoint {\n\t\t\t&:before {\n\t\t\t\tdisplay: block;\n\t\t\t\tcontent: \"\";\n\t\t\t\theight: 2px;\n\t\t\t\twidth: 100%;\n\t\t\t\tbackground: $gray-300;\n\t\t\t\tmargin-top: -1px;\n\t\t\t}\n\n\t\t\t&.acf-field-object-accordion {\n\t\t\t\t&:before {\n\t\t\t\t\tdisplay: none;\n\t\t\t\t}\n\n\t\t\t\t&:after {\n\t\t\t\t\tdisplay: block;\n\t\t\t\t\tcontent: \"\";\n\t\t\t\t\theight: 2px;\n\t\t\t\t\twidth: 100%;\n\t\t\t\t\tbackground: $gray-300;\n\t\t\t\t\tz-index: 500;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t&:hover {\n\t\t\tbackground-color: lighten($blue-50, 3%);\n\t\t}\n\n\t\t&.open {\n\t\t\tbackground-color: #fff;\n\t\t\tborder-top-color: $blue-200;\n\t\t}\n\n\t\t&.open .handle {\n\t\t\tbackground-color: $blue-100;\n\t\t\tborder: none;\n\t\t\ttext-shadow: none;\n\n\t\t\ta {\n\t\t\t\tcolor: $link-color !important;\n\n\t\t\t\t&.delete-field {\n\t\t\t\t\tcolor: #a00 !important;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t.acf-field-setting-type .acf-hl {\n\t\t\tmargin: 0;\n\n\t\t\tli {\n\t\t\t\twidth: auto;\n\n\t\t\t\t&:first-child {\n\t\t\t\t\tflex-grow: 1;\n\t\t\t\t\tmargin-left: -10px;\n\t\t\t\t}\n\n\t\t\t\t&:nth-child(2) {\n\t\t\t\t\tpadding-right: 0;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\tul.acf-hl {\n\t\t\tdisplay: flex;\n\t\t\talign-items: stretch;\n\t\t}\n\n\t\t.handle li {\n\t\t\tdisplay: flex;\n\t\t\talign-items: top;\n\t\t\tflex-wrap: wrap;\n\t\t\tmin-height: 60px;\n\t\t\t@extend .p4;\n\t\t\tcolor: $gray-700;\n\n\t\t\t&.li-field-label {\n\t\t\t\tdisplay: flex;\n\t\t\t\tflex-wrap: wrap;\n\t\t\t\tjustify-content: flex-start;\n\t\t\t\talign-content: flex-start;\n\t\t\t\talign-items: flex-start;\n\t\t\t\twidth: auto;\n\n\t\t\t\ta.edit-field {\n\t\t\t\t\t@extend .p4;\n\t\t\t\t}\n\n\t\t\t\tstrong {\n\t\t\t\t\tfont-weight: 500;\n\t\t\t\t}\n\n\t\t\t\t.row-options {\n\t\t\t\t\twidth: 100%;\n\t\t\t\t}\n\n\t\t\t\t.row-options a {\n\t\t\t\t\t@extend .p6;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n}\n\n/*----------------------------------------------------------------------------\n*\n* Table footer\n*\n*----------------------------------------------------------------------------*/\n.post-type-acf-field-group {\n\t.acf-tfoot {\n\t\tdisplay: flex;\n\t\talign-items: center;\n\t\tjustify-content: flex-end;\n\t\tmin-height: 80px;\n\t\tbox-sizing: border-box;\n\t\tpadding: {\n\t\t\ttop: 8px;\n\t\t\tright: 24px;\n\t\t\tbottom: 8px;\n\t\t\tleft: 24px;\n\t\t}\n\t\tbackground-color: #fff;\n\t\tborder-top: {\n\t\t\twidth: 1px;\n\t\t\tstyle: solid;\n\t\t\tcolor: $gray-200;\n\t\t}\n\n\t\t.acf-fr {\n\t\t\tmargin: {\n\t\t\t\ttop: 0;\n\t\t\t\tright: 0;\n\t\t\t\tbottom: 0;\n\t\t\t\tleft: 0;\n\t\t\t}\n\t\t\tpadding: {\n\t\t\t\ttop: 0;\n\t\t\t\tright: 0;\n\t\t\t\tbottom: 0;\n\t\t\t\tleft: 0;\n\t\t\t}\n\t\t}\n\t}\n}\n\n/*----------------------------------------------------------------------------\n*\n* Edit field settings\n*\n*----------------------------------------------------------------------------*/\n.post-type-acf-field-group .acf-field-object .settings {\n\tbox-sizing: border-box;\n\tpadding: {\n\t\ttop: 0;\n\t\tbottom: 0;\n\t}\n\tbackground-color: #fff;\n\tborder-left: {\n\t\twidth: 4px;\n\t\tstyle: solid;\n\t\tcolor: $blue-300;\n\t}\n}\n\n/*----------------------------------------------------------------------------\n*\n* Main field settings container\n*\n*----------------------------------------------------------------------------*/\n.acf-field-settings-main {\n\tpadding: {\n\t\ttop: 32px;\n\t\tright: 0;\n\t\tbottom: 32px;\n\t\tleft: 0;\n\t}\n\n\t.acf-field:last-of-type {\n\t\tmargin: {\n\t\t\tbottom: 0;\n\t\t}\n\t}\n}\n\n/*----------------------------------------------------------------------------\n*\n* Field label\n*\n*----------------------------------------------------------------------------*/\n.acf-field-settings .acf-label {\n\tdisplay: block;\n\tjustify-content: space-between;\n\talign-items: center;\n\talign-content: center;\n\tmargin: {\n\t\ttop: 0;\n\t\tright: 0;\n\t\tbottom: 6px;\n\t\tleft: 0;\n\t}\n}\n\n/*----------------------------------------------------------------------------\n*\n* Single field\n*\n*----------------------------------------------------------------------------*/\n.acf-field-settings .acf-field {\n\tbox-sizing: border-box;\n\twidth: 100%;\n\tmargin: {\n\t\ttop: 0;\n\t\tright: 0;\n\t\tbottom: 32px;\n\t\tleft: 0;\n\t}\n\tpadding: {\n\t\ttop: 0;\n\t\tright: 72px;\n\t\tbottom: 0;\n\t\tleft: 72px;\n\t}\n\n\t@media screen and (max-width: 600px) {\n\t\tpadding: {\n\t\t\tright: 12px;\n\t\t\tleft: 12px;\n\t\t}\n\t}\n\n\t.acf-label,\n\t.acf-input {\n\t\tmax-width: 600px;\n\n\t\t&.acf-input-sub {\n\t\t\tmax-width: 100%;\n\t\t}\n\n\t\t.acf-btn {\n\t\t\t&:disabled {\n\t\t\t\tbackground-color: $gray-100;\n\t\t\t\tcolor: $gray-400 !important;\n\t\t\t\tborder: 1px $gray-300 solid;\n\t\t\t\tcursor: default;\n\t\t\t}\n\t\t}\n\t}\n\n\t.acf-input-wrap {\n\t\toverflow: visible;\n\t}\n}\n\n/*----------------------------------------------------------------------------\n*\n* Field separators\n*\n*----------------------------------------------------------------------------*/\n\n.acf-field-settings .acf-field.acf-field-setting-label,\n.acf-field-settings .acf-field-setting-wrapper {\n\tpadding: {\n\t\ttop: 24px;\n\t}\n\tborder-top: {\n\t\twidth: 1px;\n\t\tstyle: solid;\n\t\tcolor: $gray-200;\n\t}\n}\n\n.acf-field-settings .acf-field-setting-wrapper {\n\tmargin: {\n\t\ttop: 24px;\n\t}\n}\n\n/*----------------------------------------------------------------------------\n*\n* Informational Notes for specific fields\n*\n*----------------------------------------------------------------------------*/\n.acf-field-setting-bidirectional_notes {\n\t.acf-label {\n\t\tdisplay: none;\n\t}\n\n\t.acf-feature-notice {\n\t\tbackground-color: $gray-50;\n\t\tborder: 1px solid $gray-200;\n\t\tborder-radius: 6px;\n\t\tpadding: 16px;\n\t\tcolor: $gray-700;\n\t\tposition: relative;\n\n\t\t&.with-warning-icon {\n\t\t\tpadding-left: 45px;\n\t\t\t&::before {\n\t\t\t\tcontent: \"\";\n\t\t\t\t$icon-size: 18px;\n\t\t\t\tdisplay: block;\n\t\t\t\tposition: absolute;\n\t\t\t\ttop: 17px;\n\t\t\t\tleft: 18px;\n\t\t\t\tz-index: 600;\n\t\t\t\twidth: $icon-size;\n\t\t\t\theight: $icon-size;\n\t\t\t\tmargin: {\n\t\t\t\t\tright: 8px;\n\t\t\t\t}\n\t\t\t\tbackground-color: $gray-500;\n\t\t\t\tborder: none;\n\t\t\t\tborder-radius: 0;\n\t\t\t\t-webkit-mask-size: contain;\n\t\t\t\tmask-size: contain;\n\t\t\t\t-webkit-mask-repeat: no-repeat;\n\t\t\t\tmask-repeat: no-repeat;\n\t\t\t\t-webkit-mask-position: center;\n\t\t\t\tmask-position: center;\n\t\t\t\t-webkit-mask-image: url(\"../../images/icons/icon-info.svg\");\n\t\t\t\tmask-image: url(\"../../images/icons/icon-info.svg\");\n\t\t\t}\n\t\t}\n\t}\n}\n\n/*----------------------------------------------------------------------------\n*\n* Edit fields footer\n*\n*----------------------------------------------------------------------------*/\n.acf-field-settings .acf-field-settings-footer {\n\tdisplay: flex;\n\talign-items: center;\n\tmin-height: 72px;\n\tbox-sizing: border-box;\n\twidth: 100%;\n\tmargin: {\n\t\ttop: 0;\n\t\tright: 0;\n\t\tbottom: 0;\n\t\tleft: 0;\n\t}\n\tpadding: {\n\t\ttop: 0;\n\t\tright: 0;\n\t\tbottom: 0;\n\t\tleft: 72px;\n\t}\n\tborder-top: {\n\t\twidth: 1px;\n\t\tstyle: solid;\n\t\tcolor: $gray-200;\n\t}\n\n\t@media screen and (max-width: 600px) {\n\t\tpadding: {\n\t\t\tleft: 12px;\n\t\t}\n\t}\n}\n\n.rtl .acf-field-settings .acf-field-settings-footer {\n\tpadding: {\n\t\ttop: 0;\n\t\tright: 72px;\n\t\tbottom: 0;\n\t\tleft: 0;\n\t}\n}\n\n/*----------------------------------------------------------------------------\n*\n* Tabs\n*\n*----------------------------------------------------------------------------*/\n.acf-fields,\n.acf-admin-page.acf-internal-post-type,\n.acf-browse-fields-modal-wrap {\n\t.acf-tab-wrap {\n\t\tbackground: $gray-50;\n\t\tborder-bottom: {\n\t\t\tcolor: $gray-800;\n\t\t}\n\n\t\t.acf-tab-group {\n\t\t\tpadding: {\n\t\t\t\tright: 24px;\n\t\t\t\tleft: 24px;\n\t\t\t}\n\t\t\tborder-top: {\n\t\t\t\twidth: 0;\n\t\t\t}\n\t\t\tborder-bottom: {\n\t\t\t\twidth: 1px;\n\t\t\t\tstyle: solid;\n\t\t\t\tcolor: $gray-200;\n\t\t\t}\n\t\t}\n\t}\n\n\t.acf-field-settings-tab-bar,\n\t.acf-tab-wrap .acf-tab-group {\n\t\tdisplay: flex;\n\t\talign-items: stretch;\n\t\tmin-height: 48px;\n\t\tpadding: {\n\t\t\ttop: 0;\n\t\t\tright: 0;\n\t\t\tbottom: 0;\n\t\t\tleft: 24px;\n\t\t}\n\t\tmargin: {\n\t\t\ttop: 0;\n\t\t\tbottom: 0;\n\t\t}\n\t\tborder-bottom: {\n\t\t\twidth: 1px;\n\t\t\tstyle: solid;\n\t\t\tcolor: $gray-200;\n\t\t}\n\t\tli {\n\t\t\tdisplay: flex;\n\t\t\tmargin: {\n\t\t\t\ttop: 0;\n\t\t\t\tright: 24px;\n\t\t\t\tbottom: 0;\n\t\t\t\tleft: 0;\n\t\t\t}\n\t\t\tpadding: 0;\n\n\t\t\ta {\n\t\t\t\t&:focus-visible {\n\t\t\t\t\tborder: 1px solid #5897fb;\n\t\t\t\t}\n\n\t\t\t\tbox-sizing: border-box;\n\t\t\t\tdisplay: inline-flex;\n\t\t\t\talign-items: center;\n\t\t\t\theight: 100%;\n\t\t\t\tpadding: {\n\t\t\t\t\ttop: 3px;\n\t\t\t\t\tright: 0;\n\t\t\t\t\tbottom: 0;\n\t\t\t\t\tleft: 0;\n\t\t\t\t}\n\t\t\t\tbackground: none;\n\t\t\t\tborder-top: none;\n\t\t\t\tborder-right: none;\n\t\t\t\tborder-bottom: {\n\t\t\t\t\twidth: 3px;\n\t\t\t\t\tstyle: solid;\n\t\t\t\t\tcolor: transparent;\n\t\t\t\t}\n\t\t\t\tborder-left: none;\n\t\t\t\tcolor: $gray-500;\n\t\t\t\t@extend .p5;\n\t\t\t\tfont-weight: normal;\n\n\t\t\t\t&:hover {\n\t\t\t\t\tcolor: $gray-800;\n\t\t\t\t}\n\n\t\t\t\t&:hover {\n\t\t\t\t\tbackground-color: transparent;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t&.active a {\n\t\t\t\tbackground: none;\n\t\t\t\tborder-bottom: {\n\t\t\t\t\tcolor: $color-primary;\n\t\t\t\t}\n\t\t\t\tcolor: $blue-500;\n\n\t\t\t\t&:focus-visible {\n\t\t\t\t\tborder-bottom: {\n\t\t\t\t\t\tcolor: $color-primary;\n\t\t\t\t\t\twidth: 3px;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n}\n\n.acf-admin-page.acf-internal-post-type\n\t.acf-field-editor\n\t.acf-field-settings-tab-bar {\n\tpadding: {\n\t\tleft: 72px;\n\t}\n\n\t@media screen and (max-width: 600px) {\n\t\tpadding: {\n\t\t\tleft: 12px;\n\t\t}\n\t}\n}\n\n/*----------------------------------------------------------------------------\n*\n* Field group settings\n*\n*----------------------------------------------------------------------------*/\n#acf-field-group-options {\n\t.field-group-settings-tab {\n\t\tpadding: {\n\t\t\ttop: 24px;\n\t\t\tright: 24px;\n\t\t\tbottom: 24px;\n\t\t\tleft: 24px;\n\t\t}\n\n\t\t.acf-field:last-of-type {\n\t\t\tpadding: 0;\n\t\t}\n\t}\n\n\t.acf-field {\n\t\tborder: none;\n\t\tmargin: {\n\t\t\ttop: 0;\n\t\t\tright: 0;\n\t\t\tbottom: 0;\n\t\t\tleft: 0;\n\t\t}\n\t\tpadding: {\n\t\t\ttop: 0;\n\t\t\tright: 0;\n\t\t\tbottom: 24px;\n\t\t\tleft: 0;\n\t\t}\n\t}\n\n\t// Split layout\n\t.field-group-setting-split-container {\n\t\tdisplay: flex;\n\t\tpadding: {\n\t\t\ttop: 0;\n\t\t\tright: 0;\n\t\t\tbottom: 0;\n\t\t\tleft: 0;\n\t\t}\n\n\t\t.field-group-setting-split {\n\t\t\tbox-sizing: border-box;\n\t\t\tpadding: {\n\t\t\t\ttop: 24px;\n\t\t\t\tright: 24px;\n\t\t\t\tbottom: 24px;\n\t\t\t\tleft: 24px;\n\t\t\t}\n\t\t}\n\n\t\t.field-group-setting-split:nth-child(1) {\n\t\t\tflex: 1 0 auto;\n\t\t}\n\n\t\t.field-group-setting-split:nth-child(2n) {\n\t\t\tflex: 1 0 auto;\n\t\t\tmax-width: 320px;\n\t\t\tmargin: {\n\t\t\t\ttop: 0;\n\t\t\t\tright: 0;\n\t\t\t\tbottom: 0;\n\t\t\t\tleft: 32px;\n\t\t\t}\n\t\t\tpadding: {\n\t\t\t\tright: 32px;\n\t\t\t\tleft: 32px;\n\t\t\t}\n\t\t\tborder-left: {\n\t\t\t\twidth: 1px;\n\t\t\t\tstyle: solid;\n\t\t\t\tcolor: $gray-200;\n\t\t\t}\n\t\t}\n\t}\n\n\t// Description field\n\t.acf-field[data-name=\"description\"] {\n\t\tmax-width: 600px;\n\t}\n\n\t// Button group\n\t.acf-button-group {\n\t\tdisplay: inline-flex;\n\t}\n}\n\n.rtl #acf-field-group-options {\n\t.field-group-setting-split-container {\n\t\t.field-group-setting-split:nth-child(2n) {\n\t\t\tmargin: {\n\t\t\t\tright: 32px;\n\t\t\t\tleft: 0;\n\t\t\t}\n\t\t\tborder-left: none;\n\t\t\tborder-right: {\n\t\t\t\twidth: 1px;\n\t\t\t\tstyle: solid;\n\t\t\t\tcolor: $gray-200;\n\t\t\t}\n\t\t}\n\t}\n}\n\n/*----------------------------------------------------------------------------\n*\n* Reorder handles\n*\n*----------------------------------------------------------------------------*/\n.acf-field-list {\n\t.li-field-order {\n\t\tpadding: 0;\n\t\tdisplay: flex;\n\t\tflex-direction: row;\n\t\tflex-wrap: nowrap;\n\t\tjustify-content: center;\n\t\talign-content: stretch;\n\t\talign-items: stretch;\n\t\tbackground-color: transparent;\n\t}\n\n\t.acf-sortable-handle {\n\t\tdisplay: flex;\n\t\tflex-direction: row;\n\t\tflex-wrap: nowrap;\n\t\tjustify-content: center;\n\t\talign-content: flex-start;\n\t\talign-items: flex-start;\n\t\twidth: 100%;\n\t\theight: 100%;\n\t\tposition: relative;\n\t\tpadding: {\n\t\t\ttop: 11px;\n\t\t\tbottom: 8px;\n\t\t}\n\t\t@extend .p4;\n\t\tbackground-color: transparent;\n\t\tborder: none;\n\t\tborder-radius: 0;\n\n\t\t&:hover {\n\t\t\tcursor: grab;\n\t\t}\n\n\t\t&:before {\n\t\t\tcontent: \"\";\n\t\t\tdisplay: none;\n\t\t\tposition: absolute;\n\t\t\ttop: 16px;\n\t\t\tleft: 8px;\n\t\t\twidth: 16px;\n\t\t\theight: 16px;\n\t\t\t$icon-size: 12px;\n\t\t\twidth: $icon-size;\n\t\t\theight: $icon-size;\n\t\t\tbackground-color: $gray-400;\n\t\t\tborder: none;\n\t\t\tborder-radius: 0;\n\t\t\t-webkit-mask-size: contain;\n\t\t\tmask-size: contain;\n\t\t\t-webkit-mask-repeat: no-repeat;\n\t\t\tmask-repeat: no-repeat;\n\t\t\t-webkit-mask-position: center;\n\t\t\tmask-position: center;\n\t\t\ttext-indent: 500%;\n\t\t\twhite-space: nowrap;\n\t\t\toverflow: hidden;\n\t\t\t-webkit-mask-image: url(\"../../images/icons/icon-draggable.svg\");\n\t\t\tmask-image: url(\"../../images/icons/icon-draggable.svg\");\n\t\t}\n\t}\n}\n\n.rtl .acf-field-list {\n\t.acf-sortable-handle {\n\t\t&:before {\n\t\t\tleft: 0;\n\t\t\tright: 8px;\n\t\t}\n\t}\n}\n\n/*----------------------------------------------------------------------------\n*\n* Expand / collapse field icon\n*\n*----------------------------------------------------------------------------*/\n.acf-field-object {\n\t.li-field-label {\n\t\tposition: relative;\n\t\tpadding: {\n\t\t\tleft: 40px;\n\t\t}\n\n\t\t&:before {\n\t\t\tcontent: \"\";\n\t\t\tdisplay: block;\n\t\t\tposition: absolute;\n\t\t\tleft: 6px;\n\t\t\t$icon-size: 18px;\n\t\t\tdisplay: inline-flex;\n\t\t\twidth: $icon-size;\n\t\t\theight: $icon-size;\n\t\t\tmargin: {\n\t\t\t\ttop: -2px;\n\t\t\t}\n\t\t\tbackground-color: $gray-500;\n\t\t\tborder: none;\n\t\t\tborder-radius: 0;\n\t\t\t-webkit-mask-size: contain;\n\t\t\tmask-size: contain;\n\t\t\t-webkit-mask-repeat: no-repeat;\n\t\t\tmask-repeat: no-repeat;\n\t\t\t-webkit-mask-position: center;\n\t\t\tmask-position: center;\n\t\t\ttext-indent: 500%;\n\t\t\twhite-space: nowrap;\n\t\t\toverflow: hidden;\n\t\t\t-webkit-mask-image: url(\"../../images/icons/icon-chevron-down.svg\");\n\t\t\tmask-image: url(\"../../images/icons/icon-chevron-down.svg\");\n\t\t}\n\n\t\t&:hover:before {\n\t\t\tcursor: pointer;\n\t\t}\n\t}\n}\n\n.rtl {\n\t.acf-field-object {\n\t\t.li-field-label {\n\t\t\tpadding: {\n\t\t\t\tleft: 0;\n\t\t\t\tright: 40px;\n\t\t\t}\n\n\t\t\t&:before {\n\t\t\t\tleft: 0;\n\t\t\t\tright: 6px;\n\t\t\t\t-webkit-mask-image: url(\"../../images/icons/icon-chevron-down.svg\");\n\t\t\t\tmask-image: url(\"../../images/icons/icon-chevron-down.svg\");\n\t\t\t}\n\t\t}\n\n\t\t// Open\n\t\t&.open {\n\t\t\t.li-field-label:before {\n\t\t\t\t-webkit-mask-image: url(\"../../images/icons/icon-chevron-down.svg\");\n\t\t\t\tmask-image: url(\"../../images/icons/icon-chevron-down.svg\");\n\t\t\t}\n\n\t\t\t.acf-input-sub .li-field-label:before {\n\t\t\t\t-webkit-mask-image: url(\"../../images/icons/icon-chevron-right.svg\");\n\t\t\t\tmask-image: url(\"../../images/icons/icon-chevron-right.svg\");\n\t\t\t}\n\n\t\t\t.acf-input-sub .acf-field-object.open .li-field-label:before {\n\t\t\t\t-webkit-mask-image: url(\"../../images/icons/icon-chevron-down.svg\");\n\t\t\t\tmask-image: url(\"../../images/icons/icon-chevron-down.svg\");\n\t\t\t}\n\t\t}\n\t}\n}\n\n.acf-thead {\n\t.li-field-label {\n\t\tpadding: {\n\t\t\tleft: 40px;\n\t\t}\n\t}\n\t.rtl & {\n\t\t.li-field-label {\n\t\t\tpadding: {\n\t\t\t\tleft: 0;\n\t\t\t\tright: 40px;\n\t\t\t}\n\t\t}\n\t}\n}\n\n/*----------------------------------------------------------------------------\n*\n* Conditional logic layout\n*\n*----------------------------------------------------------------------------*/\n.acf-field-settings-main-conditional-logic {\n\t.acf-conditional-toggle {\n\t\tdisplay: flex;\n\t\tpadding: {\n\t\t\tright: 72px;\n\t\t\tleft: 72px;\n\t\t}\n\n\t\t@media screen and (max-width: 600px) {\n\t\t\tpadding: {\n\t\t\t\tleft: 12px;\n\t\t\t}\n\t\t}\n\t}\n\n\t.acf-field {\n\t\tflex-wrap: wrap;\n\t\tmargin: {\n\t\t\tbottom: 0;\n\t\t}\n\t\tpadding: {\n\t\t\tright: 0;\n\t\t\tleft: 0;\n\t\t}\n\n\t\t.rule-groups {\n\t\t\tflex: 0 1 100%;\n\t\t\torder: 3;\n\t\t\tmargin: {\n\t\t\t\ttop: 32px;\n\t\t\t}\n\t\t\tpadding: {\n\t\t\t\ttop: 32px;\n\t\t\t\tright: 72px;\n\t\t\t\tleft: 72px;\n\t\t\t}\n\t\t\tborder-top: {\n\t\t\t\twidth: 1px;\n\t\t\t\tstyle: solid;\n\t\t\t\tcolor: $gray-200;\n\t\t\t}\n\n\t\t\t@media screen and (max-width: 600px) {\n\t\t\t\tpadding: {\n\t\t\t\t\tleft: 12px;\n\t\t\t\t}\n\n\t\t\t\ttable.acf-table tbody tr {\n\t\t\t\t\tdisplay: flex;\n\t\t\t\t\tflex-wrap: wrap;\n\t\t\t\t\tjustify-content: flex-start;\n\t\t\t\t\talign-content: flex-start;\n\t\t\t\t\talign-items: flex-start;\n\n\t\t\t\t\ttd {\n\t\t\t\t\t\tflex: 1 1 100%;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n}\n\n/*----------------------------------------------------------------------------\n*\n* Prefix & append styling\n*\n*----------------------------------------------------------------------------*/\n.acf-input {\n\t.acf-input-prepend,\n\t.acf-input-append {\n\t\tdisplay: inline-flex;\n\t\talign-items: center;\n\t\theight: 100%;\n\t\tmin-height: 40px;\n\t\tpadding: {\n\t\t\tright: 12px;\n\t\t\tleft: 12px;\n\t\t}\n\t\tbackground-color: $gray-50;\n\t\tborder-color: $gray-300;\n\t\tbox-shadow: $elevation-01;\n\t\tcolor: $gray-500;\n\t}\n\n\t.acf-input-prepend {\n\t\tborder-radius: $radius-md 0 0 $radius-md;\n\t}\n\n\t.acf-input-append {\n\t\tborder-radius: 0 $radius-md $radius-md 0;\n\t}\n}\n\n/*----------------------------------------------------------------------------\n*\n* ACF input wrap\n*\n*----------------------------------------------------------------------------*/\n.acf-input-wrap {\n\tdisplay: flex;\n}\n\n.acf-field-settings-main-presentation .acf-input-wrap {\n\tdisplay: flex;\n}\n\n/*----------------------------------------------------------------------------\n*\n* Empty state\n*\n*----------------------------------------------------------------------------*/\n.post-type-acf-field-group\n\t#acf-field-group-fields\n\t.acf-field-list.-empty\n\t.no-fields-message {\n\tdisplay: flex;\n\tjustify-content: center;\n\tpadding: {\n\t\ttop: 48px;\n\t\tbottom: 48px;\n\t}\n\n\t.no-fields-message-inner {\n\t\tdisplay: flex;\n\t\tflex-wrap: wrap;\n\t\tjustify-content: center;\n\t\talign-content: center;\n\t\talign-items: flex-start;\n\t\ttext-align: center;\n\t\tmax-width: 400px;\n\n\t\timg,\n\t\th2,\n\t\tp {\n\t\t\tflex: 1 0 100%;\n\t\t}\n\n\t\th2 {\n\t\t\t@extend .acf-h2;\n\t\t\tmargin: {\n\t\t\t\ttop: 32px;\n\t\t\t\tbottom: 0;\n\t\t\t}\n\t\t\tpadding: 0;\n\t\t\tcolor: $gray-700;\n\t\t}\n\n\t\tp {\n\t\t\t@extend .p2;\n\t\t\tmargin: {\n\t\t\t\ttop: 12px;\n\t\t\t\tbottom: 0;\n\t\t\t}\n\t\t\tpadding: 0;\n\t\t\tcolor: $gray-500;\n\n\t\t\t&.acf-small {\n\t\t\t\t@extend .p6;\n\t\t\t\tmargin: {\n\t\t\t\t\ttop: 32px;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\timg {\n\t\t\tmax-width: 284px;\n\t\t\tmargin: {\n\t\t\t\tbottom: 0;\n\t\t\t}\n\t\t}\n\n\t\t.acf-btn {\n\t\t\tmargin: {\n\t\t\t\ttop: 32px;\n\t\t\t}\n\t\t}\n\t}\n}\n\n/*----------------------------------------------------------------------------\n*\n* Hide add title prompt label\n*\n*----------------------------------------------------------------------------*/\n.post-type-acf-field-group {\n\t.acf-headerbar {\n\t\t#title-prompt-text {\n\t\t\tdisplay: none;\n\t\t}\n\t}\n}\n\n/*----------------------------------------------------------------------------\n*\n* Modal styling\n*\n*----------------------------------------------------------------------------*/\n.acf-admin-page {\n\t#acf-popup .acf-popup-box {\n\t\tmin-width: 480px;\n\n\t\t.title {\n\t\t\tdisplay: flex;\n\t\t\talign-items: center;\n\t\t\talign-content: center;\n\t\t\tjustify-content: space-between;\n\t\t\tmin-height: 64px;\n\t\t\tbox-sizing: border-box;\n\t\t\tmargin: 0;\n\t\t\tpadding: {\n\t\t\t\tright: 24px;\n\t\t\t\tleft: 24px;\n\t\t\t}\n\t\t\tborder-bottom: {\n\t\t\t\twidth: 1px;\n\t\t\t\tstyle: solid;\n\t\t\t\tcolor: $gray-200;\n\t\t\t}\n\n\t\t\th1,\n\t\t\th2,\n\t\t\th3,\n\t\t\th4 {\n\t\t\t\t@extend .acf-h3;\n\t\t\t\tpadding: {\n\t\t\t\t\tleft: 0;\n\t\t\t\t}\n\t\t\t\tcolor: $gray-700;\n\t\t\t}\n\n\t\t\t.acf-icon {\n\t\t\t\tdisplay: block;\n\t\t\t\tposition: relative;\n\t\t\t\ttop: auto;\n\t\t\t\tright: auto;\n\t\t\t\twidth: 22px;\n\t\t\t\theight: 22px;\n\t\t\t\tbackground-color: transparent;\n\t\t\t\tcolor: transparent;\n\n\t\t\t\t&:before {\n\t\t\t\t\t$icon-size: 22px;\n\t\t\t\t\tdisplay: inline-flex;\n\t\t\t\t\tposition: absolute;\n\t\t\t\t\ttop: 0;\n\t\t\t\t\tleft: 0;\n\t\t\t\t\twidth: $icon-size;\n\t\t\t\t\theight: $icon-size;\n\t\t\t\t\tbackground-color: $gray-500;\n\t\t\t\t\tborder: none;\n\t\t\t\t\tborder-radius: 0;\n\t\t\t\t\t-webkit-mask-size: contain;\n\t\t\t\t\tmask-size: contain;\n\t\t\t\t\t-webkit-mask-repeat: no-repeat;\n\t\t\t\t\tmask-repeat: no-repeat;\n\t\t\t\t\t-webkit-mask-position: center;\n\t\t\t\t\tmask-position: center;\n\t\t\t\t\ttext-indent: 500%;\n\t\t\t\t\twhite-space: nowrap;\n\t\t\t\t\toverflow: hidden;\n\t\t\t\t\t-webkit-mask-image: url(\"../../images/icons/icon-close-circle.svg\");\n\t\t\t\t\tmask-image: url(\"../../images/icons/icon-close-circle.svg\");\n\t\t\t\t}\n\n\t\t\t\t&:hover:before {\n\t\t\t\t\tbackground-color: $color-primary;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t.inner {\n\t\t\tbox-sizing: border-box;\n\t\t\tmargin: 0;\n\t\t\tpadding: {\n\t\t\t\ttop: 24px;\n\t\t\t\tright: 24px;\n\t\t\t\tbottom: 24px;\n\t\t\t\tleft: 24px;\n\t\t\t}\n\t\t\tborder-top: none;\n\n\t\t\tp {\n\t\t\t\tmargin: {\n\t\t\t\t\ttop: 0;\n\t\t\t\t\tbottom: 0;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// Custom styling for move custom field modal/link field groups modal.\n\t\t#acf-move-field-form,\n\t\t#acf-link-field-groups-form {\n\t\t\t.acf-field-select {\n\t\t\t\tmargin: {\n\t\t\t\t\ttop: 0;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\t// Custom styling for the link field groups/create options page modal.\n\t.acf-link-field-groups-popup .acf-popup-box,\n\t.acf-create-options-page-popup .acf-popup-box {\n\t\t.title h3 {\n\t\t\tcolor: $gray-800;\n\t\t\tfont-weight: 500;\n\n\t\t\t&:before {\n\t\t\t\tcontent: \"\";\n\t\t\t\twidth: 18px;\n\t\t\t\theight: 18px;\n\t\t\t\tbackground: $gray-400;\n\t\t\t\tmargin-right: 9px;\n\t\t\t}\n\t\t}\n\n\t\t.inner {\n\t\t\tpadding: 0 !important;\n\n\t\t\t.acf-field-select,\n\t\t\t.acf-link-successful {\n\t\t\t\tpadding: 32px 24px;\n\t\t\t\tmargin-bottom: 0;\n\n\t\t\t\t.description {\n\t\t\t\t\tmargin-top: 6px !important;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t.acf-actions {\n\t\t\t\tbackground: $gray-50;\n\t\t\t\tborder-top: 1px solid $gray-200;\n\t\t\t\tpadding: {\n\t\t\t\t\ttop: 20px;\n\t\t\t\t\tleft: 24px;\n\t\t\t\t\tbottom: 20px;\n\t\t\t\t\tright: 24px;\n\t\t\t\t}\n\t\t\t\tborder-bottom-left-radius: 8px;\n\t\t\t\tborder-bottom-right-radius: 8px;\n\n\t\t\t\t.acf-btn {\n\t\t\t\t\tdisplay: inline-block;\n\t\t\t\t\tmargin-left: 8px;\n\n\t\t\t\t\t&.acf-btn-primary {\n\t\t\t\t\t\twidth: 120px;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\t.acf-create-options-page-popup .acf-popup-box {\n\t\t.inner {\n\t\t\t.acf-error-message.-success {\n\t\t\t\tdisplay: none;\n\t\t\t}\n\n\t\t\t.-dismiss {\n\t\t\t\tmargin: 24px 32px !important;\n\t\t\t}\n\n\t\t\t.acf-field {\n\t\t\t\tpadding: 24px 32px 0 32px;\n\t\t\t\tmargin: 0;\n\n\t\t\t\t&.acf-error {\n\t\t\t\t\t.acf-input-wrap {\n\t\t\t\t\t\toverflow: inherit;\n\n\t\t\t\t\t\tinput[type=text] {\n\t\t\t\t\t\t\tborder: 1px rgba($color-danger, .5) solid !important;\n\t\t\t\t\t\t\tbox-shadow: 0px 0px 0px 3px rgba(209, 55, 55, 0.12), 0px 0px 0px rgba(255, 54, 54, 0.25) !important;\n\t\t\t\t\t\t\tbackground-image: url(../../images/icons/icon-info-red.svg);\n\t\t\t\t\t\t\tbackground-position: right 10px top 50%;\n\t\t\t\t\t\t\tbackground-size: 14px;\n\t\t\t\t\t\t\tbackground-repeat: no-repeat;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t.acf-options-page-modal-error p {\n\t\t\t\t\tfont-size: 12px;\n\t\t\t\t\tcolor: $color-danger;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t.acf-actions {\n\t\t\t\tmargin-top: 32px;\n\n\t\t\t\t.acf-btn:disabled {\n\t\t\t\t\tbackground-color: $blue-500;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n}\n\n/*----------------------------------------------------------------------------\n*\n* Hide original #post-body-content from edit field group page\n*\n*----------------------------------------------------------------------------*/\n.acf-admin-single-field-group {\n\t#post-body-content {\n\t\tdisplay: none;\n\t}\n}\n\n/*----------------------------------------------------------------------------\n*\n* Settings section footer\n*\n*----------------------------------------------------------------------------*/\n.acf-field-group-settings-footer {\n\tdisplay: flex;\n\tjustify-content: space-between;\n\talign-content: stretch;\n\talign-items: center;\n\tposition: relative;\n\tmin-height: 88px;\n\tmargin: {\n\t\tright: -24px;\n\t\tleft: -24px;\n\t\tbottom: -24px;\n\t}\n\tpadding: {\n\t\tright: 24px;\n\t\tleft: 24px;\n\t}\n\tborder-top: {\n\t\twidth: 1px;\n\t\tstyle: solid;\n\t\tcolor: $gray-200;\n\t}\n\n\t.acf-created-on {\n\t\tdisplay: inline-flex;\n\t\tjustify-content: flex-start;\n\t\talign-content: stretch;\n\t\talign-items: center;\n\t\t@extend .p5;\n\t\tcolor: $gray-500;\n\n\t\t&:before {\n\t\t\tcontent: \"\";\n\t\t\t$icon-size: 20px;\n\t\t\tdisplay: inline-block;\n\t\t\twidth: $icon-size;\n\t\t\theight: $icon-size;\n\t\t\tmargin: {\n\t\t\t\tright: 8px;\n\t\t\t}\n\t\t\tbackground-color: $gray-400;\n\t\t\tborder: none;\n\t\t\tborder-radius: 0;\n\t\t\t-webkit-mask-size: contain;\n\t\t\tmask-size: contain;\n\t\t\t-webkit-mask-repeat: no-repeat;\n\t\t\tmask-repeat: no-repeat;\n\t\t\t-webkit-mask-position: center;\n\t\t\tmask-position: center;\n\t\t\t-webkit-mask-image: url(\"../../images/icons/icon-time.svg\");\n\t\t\tmask-image: url(\"../../images/icons/icon-time.svg\");\n\t\t}\n\t}\n}\n\n/*----------------------------------------------------------------------------\n*\n* Conditional logic enabled badge\n*\n*----------------------------------------------------------------------------*/\n.conditional-logic-badge {\n\tdisplay: none;\n\n\t&.is-enabled {\n\t\tdisplay: inline-block;\n\t\twidth: 6px;\n\t\theight: 6px;\n\t\toverflow: hidden;\n\t\tmargin: {\n\t\t\tleft: 8px;\n\t\t}\n\t\tbackground-color: rgba($color-success, 0.4);\n\t\tborder: {\n\t\t\twidth: 1px;\n\t\t\tstyle: solid;\n\t\t\tcolor: $color-success;\n\t\t}\n\t\tborder-radius: 100px;\n\t\ttext-indent: 100%;\n\t\twhite-space: nowrap;\n\t}\n}\n\n/*----------------------------------------------------------------------------\n*\n* Field settings container\n*\n*----------------------------------------------------------------------------*/\n.acf-field-type-settings {\n\tcontainer-name: settings;\n\tcontainer-type: inline-size;\n}\n\n/*----------------------------------------------------------------------------\n*\n* Split field settings\n*\n*----------------------------------------------------------------------------*/\n.acf-field-settings-split {\n\tdisplay: flex;\n\tborder-top: {\n\t\twidth: 1px;\n\t\tstyle: solid;\n\t\tcolor: $gray-200;\n\t}\n\t.acf-field {\n\t\tmargin: 0;\n\t\tpadding: {\n\t\t\ttop: 32px;\n\t\t\tbottom: 32px;\n\t\t}\n\n\t\t&:nth-child(2n) {\n\t\t\tborder-left: {\n\t\t\t\twidth: 1px;\n\t\t\t\tstyle: solid;\n\t\t\t\tcolor: $gray-200;\n\t\t\t}\n\t\t}\n\t}\n}\n\n@container settings (max-width: 1170px) {\n\t.acf-field-settings-split {\n\t\tborder: none;\n\t\tflex-direction: column;\n\t}\n\t.acf-field {\n\t\tborder-top-width: 1px;\n\t\tborder-top-style: solid;\n\t\tborder-top-color: $gray-200;\n\t}\n}\n\n/*----------------------------------------------------------------------------\n*\n* Display & return format\n*\n*----------------------------------------------------------------------------*/\n.acf-field-setting-display_format,\n.acf-field-setting-return_format {\n\t.acf-label {\n\t\tmargin: {\n\t\t\tbottom: 6px;\n\t\t}\n\t}\n\n\t.acf-radio-list {\n\t\tli {\n\t\t\tdisplay: flex;\n\n\t\t\tlabel {\n\t\t\t\tdisplay: inline-flex;\n\t\t\t\twidth: 100%;\n\n\t\t\t\tspan {\n\t\t\t\t\tflex: 1 1 auto;\n\t\t\t\t}\n\n\t\t\t\tcode {\n\t\t\t\t\tpadding: {\n\t\t\t\t\t\tright: 8px;\n\t\t\t\t\t\tleft: 8px;\n\t\t\t\t\t}\n\t\t\t\t\tbackground-color: $gray-100;\n\t\t\t\t\tborder-radius: 4px;\n\t\t\t\t\t@extend .p5;\n\t\t\t\t\tcolor: $gray-600;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tinput[type=\"text\"] {\n\t\t\t\theight: 32px;\n\t\t\t}\n\t\t}\n\t}\n}\n\n.acf-field-settings .acf-field-setting-first_day {\n\tpadding: {\n\t\ttop: 32px;\n\t}\n\tborder-top: {\n\t\twidth: 1px;\n\t\tstyle: solid;\n\t\tcolor: $gray-200;\n\t}\n}\n\n/*----------------------------------------------------------------------------\n*\n* Image and Gallery fields\n*\n*----------------------------------------------------------------------------*/\n.acf-field-object-image,\n.acf-field-object-gallery {\n\t.acf-hl[data-cols=\"3\"] > li {\n\t\twidth: auto;\n\t}\n}\n\n/*----------------------------------------------------------------------------\n*\n* Appended fields fields\n*\n*----------------------------------------------------------------------------*/\n.acf-field-settings .acf-field-appended {\n\toverflow: auto;\n\n\t.acf-input {\n\t\tfloat: left;\n\t}\n}\n\n/*----------------------------------------------------------------------------\n*\n* Flexible widths for image minimum / maximum size fields\n*\n*----------------------------------------------------------------------------*/\n.acf-field-settings .acf-field.acf-field-setting-min_width,\n.acf-field-settings .acf-field.acf-field-setting-max_width {\n\t.acf-input {\n\t\tmax-width: none;\n\t}\n\n\t.acf-input-wrap input[type=\"text\"] {\n\t\tmax-width: 81px;\n\t}\n}\n\n/*----------------------------------------------------------------------------\n*\n* Temporary fix to hide pagination setting for repeaters used as subfields.\n*\n*----------------------------------------------------------------------------*/\n.post-type-acf-field-group {\n\t.acf-field-object-flexible-content {\n\t\t.acf-field-setting-pagination {\n\t\t\tdisplay: none;\n\t\t}\n\t}\n\n\t.acf-field-object-repeater {\n\t\t.acf-field-object-repeater {\n\t\t\t.acf-field-setting-pagination {\n\t\t\t\tdisplay: none;\n\t\t\t}\n\t\t}\n\t}\n}\n\n/*----------------------------------------------------------------------------\n*\n* Flexible content field width\n*\n*----------------------------------------------------------------------------*/\n\n.acf-admin-single-field-group\n\t.acf-field-object-flexible-content\n\t.acf-is-subfields\n\t.acf-field-object {\n\t.acf-label,\n\t.acf-input {\n\t\tmax-width: 600px;\n\t}\n}\n\n/*----------------------------------------------------------------------------\n*\n* Fix default value checkbox focus state\n*\n*----------------------------------------------------------------------------*/\n\n.acf-admin-single-field-group {\n\t.acf-field.acf-field-true-false.acf-field-setting-default_value\n\t\t.acf-true-false {\n\t\tborder: none;\n\n\t\tinput[type=\"checkbox\"] {\n\t\t\tmargin-right: 0;\n\t\t}\n\t}\n}\n\n/*----------------------------------------------------------------------------\n*\n* With front field extra spacing\n*\n*----------------------------------------------------------------------------*/\n.acf-field.acf-field-with-front {\n\tmargin: {\n\t\ttop: 32px;\n\t}\n}\n","/*---------------------------------------------------------------------------------------------\n*\n* Sub-fields layout\n*\n*---------------------------------------------------------------------------------------------*/\n.post-type-acf-field-group #acf-field-group-fields .acf-field-list-wrap .acf-input-sub {\n\tmax-width: 100%;\n\toverflow: hidden;\n\tborder-radius: $radius-lg;\n\tborder: {\n\t\twidth: 1px;\n\t\tstyle: solid;\n\t\tcolor: darken($gray-200, 5%);\n\t};\n\tbox-shadow: $elevation-01;\n\n\t// Header\n\t.acf-sub-field-list-header {\n\t\tdisplay: flex;\n\t\tjustify-content: space-between;\n\t\talign-content: stretch;\n\t\talign-items: center;\n\t\tmin-height: 64px;\n\t\tpadding: {\n\t\t\tright: 24px;\n\t\t\tleft: 24px;\n\t\t};\n\t}\n\n\t// Main sub-fields wrapper\n\t.acf-field-list-wrap {\n\t\tbox-shadow: none;\n\t}\n\n\t// Sub-field footer\n\t.acf-hl.acf-tfoot {\n\t\tmin-height: 64px;\n\t\talign-items: center;\n\t}\n\t\n\t// Secondary level sub-fields\n\t.acf-input.acf-input-sub {\n\t\tmax-width: 100%;\n\t\tmargin: {\n\t\t\tright: 0;\n\t\t\tleft: 0;\n\t\t};\n\t}\n\n}\n\n.post-type-acf-field-group .acf-input-sub .acf-field-object .acf-sortable-handle {\n\twidth: 100%;\n\theight: 100%;\n}\n\n.post-type-acf-field-group .acf-field-object:hover .acf-input-sub .acf-sortable-handle:before {\n\tdisplay: none;\n}\n\n.post-type-acf-field-group .acf-field-object:hover .acf-input-sub .acf-field-list .acf-field-object:hover .acf-sortable-handle:before {\n\tdisplay: block;\n}\n\n.post-type-acf-field-group .acf-field-object .acf-is-subfields .acf-thead .li-field-label:before {\n\tdisplay: none;\n}\n\n.post-type-acf-field-group #acf-field-group-fields .acf-field-list-wrap .acf-input-sub .acf-field-object.open {\n\tborder-top-color: darken($gray-200, 5%);\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Flexible content field\n*\n*---------------------------------------------------------------------------------------------*/\n.post-type-acf-field-group {\n\n\ti.acf-icon.-duplicate.duplicate-layout {\n\t\tmargin: 0 auto !important;\n\t\tbackground-color: $gray-500;\n\t\tcolor: $gray-500;\n\t}\n\ti.acf-icon.acf-icon-trash.delete-layout {\n\t\tmargin: 0 auto !important;\n\t\tbackground-color: $gray-500;\n\t\tcolor: $gray-500;\n\t}\n\n\tbutton.acf-btn.acf-btn-tertiary.acf-field-setting-fc-duplicate, button.acf-btn.acf-btn-tertiary.acf-field-setting-fc-delete {\n\t\tbackground-color: #ffffff !important;\n\t\tbox-shadow: $elevation-01;\n\t\tborder-radius: 6px;\n\t\twidth: 32px;\n\t\theight: 32px !important;\n\t\tmin-height: 32px;\n\t\tpadding: 0;\n\t}\n\n\tbutton.add-layout.acf-btn.acf-btn-primary.add-field,\n\t.acf-sub-field-list-header a.acf-btn.acf-btn-secondary.add-field, \n\t.acf-field-list-wrap.acf-is-subfields a.acf-btn.acf-btn-secondary.add-field {\n\t\theight: 32px !important;\n\t\tmin-height: 32px;\n\t\tmargin-left: 5px;\n\t}\n\n\t.acf-field.acf-field-setting-fc_layout {\n\t\tbackground-color: #ffffff;\n\t\tmargin-bottom: 16px;\n\t}\n\t\n\t.acf-field-setting-fc_layout {\n\t\t.acf-field-layout-settings.open {\n\t\t\tbackground-color: #ffffff;\n\t\t\tborder-top: {\n\t\t\t\twidth: 1px;\n\t\t\t\tstyle: solid;\n\t\t\t\tcolor: $gray-200;\n\t\t\t};\n\t\t}\n\n\t\toverflow: hidden;\n\t\twidth: calc(100% - 144px);\n\t\tmargin: {\n\t\t\tright: 72px;\n\t\t\tleft: 72px;\n\t\t};\n\t\tpadding: {\n\t\t\tright: 0;\n\t\t\tleft: 0;\n\t\t};\n\t\tborder: {\n\t\t\twidth: 1px;\n\t\t\tstyle: solid;\n\t\t\tcolor: darken($gray-200, 5%);\n\t\t};\n\t\tborder-radius: $radius-lg;\n\t\tbox-shadow: $elevation-01;\n\n\t\t@media screen and (max-width: 768px) {\n\t\t\twidth: calc(100% - 16px);\n\t\t\tmargin: {\n\t\t\t\tright: 8px;\n\t\t\t\tleft: 8px;\n\t\t\t};\n\t\t}\n\n\t\t// Secondary level sub-fields\n\t\t.acf-input-sub {\n\t\t\tmax-width: 100%;\n\t\t\tmargin: {\n\t\t\t\tright: 0;\n\t\t\t\tleft: 0;\n\t\t\t};\n\t\t}\n\n\t\t.acf-label,\n\t\t.acf-input {\n\t\t\tmax-width: 100% !important;\n\t\t}\n\n\t\t.acf-input-sub {\n\t\t\tmargin: {\n\t\t\t\tright: 32px;\n\t\t\t\tbottom: 32px;\n\t\t\t\tleft: 32px;\n\t\t\t};\n\t\t}\n\n\t\t.acf-fc-meta {\n\t\t\tmax-width: 100%;\n\t\t\tpadding: {\n\t\t\t\ttop: 24px;\n\t\t\t\tright: 32px;\n\t\t\t\tleft: 32px;\n\t\t\t};\n\t\t}\n\n\t}\n\n\t.acf-field-settings-fc_head {\n\n\t\tdisplay: flex;\n\t\talign-items: center;\n\t\tjustify-content: left;\n\n\t\tbackground-color: $gray-50;\n\t\tborder-radius: 8px 8px 0px 0px;\n\t\tmin-height: 64px;\n\t\tmargin: {\n\t\t\tbottom: 0px;\n\t\t};\n\t\tpadding: {\n\t\t\tright: 24px;\n\t\t};\n\n\t\t.acf-fc_draggable {\n\t\t\tmin-height: 64px;\n\t\t\tpadding-left: 24px;\n\t\t\tdisplay: flex;\n\t\t\twhite-space: nowrap;\n\t\t}\n\n\t\t.acf-fc-layout-name {\n\t\t\tmin-width: 0;\n\t\t\tcolor: $gray-400;\n\t\t\tpadding-left: 8px;\n\t\t\tfont-size: 16px;\n\n\t\t\t&.copyable:not(.input-copyable, .copy-unsupported):hover:after {\n\t\t\t\twidth: 14px !important;\n\t\t\t\theight: 14px !important;\n\t\t\t}\n\n\t\t\t@media screen and (max-width: $md) {\n\t\t\t\tdisplay: none !important;\n\t\t\t}\n\n\t\t\tspan {\n\t\t\t\twhite-space: nowrap;\n\t\t\t\toverflow: hidden;\n\t\t\t\ttext-overflow: ellipsis;\n\t\t\t}\n\t\t}\n\n\t\tspan.toggle-indicator {\n\t\t\tpointer-events: none;\n\t\t\tmargin-top: 7px;\n\t\t}\n\n\t\tlabel {\n\t\t\tdisplay: inline-flex;\n\t\t\talign-items: center;\n\t\t\t@extend .acf-h3;\n\n\t\t\t&.acf-fc-layout-name {\n\t\t\t\tmargin-left: 1rem;\n\n\t\t\t\t@media screen and (max-width: $md) {\n\t\t\t\t\tdisplay: none !important;\n\t\t\t\t}\n\n\t\t\t\tspan.acf-fc-layout-name {\n\t\t\t\t\ttext-overflow: ellipsis;\n\t\t\t\t\toverflow: hidden;\n\t\t\t\t\theight: 22px;\n\t\t\t\t\twhite-space: nowrap;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t&.acf-fc-layout-label:before {\n\t\t\t\tcontent: '';\n\t\t\t\t$icon-size: 20px;\n\t\t\t\tdisplay: inline-block;\n\t\t\t\twidth: $icon-size;\n\t\t\t\theight: $icon-size;\n\t\t\t\tmargin: {\n\t\t\t\t\tright: 8px;\n\t\t\t\t};\n\t\t\t\tbackground-color: $gray-400;\n\t\t\t\tborder: none;\n\t\t\t\tborder-radius: 0;\n\t\t\t\t-webkit-mask-size: contain;\n\t\t\t\tmask-size: contain;\n\t\t\t\t-webkit-mask-repeat: no-repeat;\n\t\t\t\tmask-repeat: no-repeat;\n\t\t\t\t-webkit-mask-position: center;\n\t\t\t\tmask-position: center;\n\n\t\t\t\t@at-root .rtl#{&} {\n\t\t\t\t\tpadding-right: 10px;\n\t\t\t\t}\n\n\t\t\t}\n\n\t\t}\n\n\t\t.acf-fl-actions {\n\t\t\tdisplay: flex;\n\t\t\talign-items: center;\n\t\t\twhite-space: nowrap;\n\t\t\tmargin-left: auto;\n\n\t\t\t.acf-fc-add-layout {\n\t\t\t\tmargin-left: 10px;\n\t\t\t}\n\n\t\t\t.acf-fc-add-layout .add-field {\n\t\t\t\tmargin-left: 0px !important;\n\t\t\t}\n\n\t\t\tli {\n\t\t\t\tmargin: {\n\t\t\t\t\tright: 4px;\n\t\t\t\t};\n\n\t\t\t\t&:last-of-type {\n\t\t\t\t\tmargin: {\n\t\t\t\t\t\tright: 0;\n\t\t\t\t\t};\n\t\t\t\t}\n\n\t\t\t}\n\n\t\t}\n\n\t}\n\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Field open / closed icon state\n*\n*---------------------------------------------------------------------------------------------*/\n\n.post-type-acf-field-group .acf-field-object.open > .handle > .acf-tbody > .li-field-label::before {\n\t-webkit-mask-image: url('../../images/icons/icon-chevron-up.svg');\n\tmask-image: url('../../images/icons/icon-chevron-up.svg');\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Different coloured levels (current 5 supported)\n*\n*---------------------------------------------------------------------------------------------*/\n\n.post-type-acf-field-group #acf-field-group-fields .acf-field-list-wrap .acf-input-sub {\n\t\n\t// Second level\n\t$nested-color: #BF7DD7;\n\t// Row hover color \n\t.acf-field-object .handle { background-color: transparent; &:hover { background-color: lighten($nested-color, 30%); } }\n\t// Active row color \n\t.acf-field-object.open .handle { background-color: lighten($nested-color, 28%); }\n\t// Active border color \n\t.acf-field-object .settings { border-left: { color: $nested-color; }; }\n\t\n\t// Third level\n\t.acf-input-sub {\n\t\t$nested-color: #7CCDB9;\n\t\t// Row hover color \n\t\t.acf-field-object .handle { background-color: transparent; &:hover { background-color: lighten($nested-color, 30%); } }\n\t\t// Active row color \n\t\t.acf-field-object.open .handle { background-color: lighten($nested-color, 28%); }\n\t\t// Active border color \n\t\t.acf-field-object .settings { border-left: { color: $nested-color; }; }\n\t\t\n\t\t// Fourth level\n\t\t.acf-input-sub {\n\t\t\t$nested-color: #E29473;\n\t\t\t// Row hover color \n\t\t\t.acf-field-object .handle { background-color: transparent; &:hover { background-color: lighten($nested-color, 30%); } }\n\t\t\t// Active row color \n\t\t\t.acf-field-object.open .handle { background-color: lighten($nested-color, 28%); }\n\t\t\t// Active border color \n\t\t\t.acf-field-object .settings { border-left: { color: $nested-color; }; }\n\t\t\t\n\t\t\t// Fifth level\n\t\t\t.acf-input-sub {\n\t\t\t\t$nested-color: #A3B1B9;\n\t\t\t\t// Row hover color \n\t\t\t\t.acf-field-object .handle { background-color: transparent; &:hover { background-color: lighten($nested-color, 30%); } }\n\t\t\t\t// Active row color \n\t\t\t\t.acf-field-object.open .handle { background-color: lighten($nested-color, 28%); }\n\t\t\t\t// Active border color \n\t\t\t\t.acf-field-object .settings { border-left: { color: $nested-color; }; }\n\t\t\t}\n\t\t\t\n\t\t}\n\t\t\n\t}\n\t\n}"],"names":[],"sourceRoot":""} \ No newline at end of file +{"version":3,"file":"acf-field-group.css","mappings":"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","sources":["webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/sass/acf-field-group.scss","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/sass/_variables.scss","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/sass/_mixins.scss","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/sass/_field-group.scss","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/sass/_typography.scss","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/sass/_admin-inputs.scss","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/sass/_edit-field-group.scss","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/sass/_sub-field-groups.scss"],"sourcesContent":["@charset \"UTF-8\";\n/*--------------------------------------------------------------------------------------------\n*\n*\tVars\n*\n*--------------------------------------------------------------------------------------------*/\n/* colors */\n/* acf-field */\n/* responsive */\n/*--------------------------------------------------------------------------------------------\n*\n*\tACF 6 ↓\n*\n*--------------------------------------------------------------------------------------------*/\n/*--------------------------------------------------------------------------------------------\n*\n* Mixins\n*\n*--------------------------------------------------------------------------------------------*/\n/*--------------------------------------------------------------------------------------------\n*\n*\tField Group\n*\n*--------------------------------------------------------------------------------------------*/\n#acf-field-group-fields > .inside,\n#acf-field-group-locations > .inside,\n#acf-field-group-options > .inside {\n padding: 0;\n margin: 0;\n}\n\n.postbox .handle-order-higher,\n.postbox .handle-order-lower {\n display: none;\n}\n\n/*----------------------------------------------------------------------------\n*\n* Postbox: Publish\n*\n*----------------------------------------------------------------------------*/\n#minor-publishing-actions,\n#misc-publishing-actions #visibility,\n#misc-publishing-actions .edit-timestamp {\n display: none;\n}\n\n#minor-publishing {\n border-bottom: 0 none;\n}\n\n#misc-pub-section {\n border-bottom: 0 none;\n}\n\n#misc-publishing-actions .misc-pub-section {\n border-bottom-color: #F5F5F5;\n}\n\n/*----------------------------------------------------------------------------\n*\n* Postbox: Fields\n*\n*----------------------------------------------------------------------------*/\n#acf-field-group-fields {\n border: 0 none;\n /* links */\n /* Field type */\n /* table header */\n /* show keys */\n /* hide tabs */\n /* fields */\n}\n#acf-field-group-fields .inside {\n border-top-width: 0;\n border-top-style: none;\n}\n#acf-field-group-fields a {\n text-decoration: none;\n}\n#acf-field-group-fields .li-field-type .field-type-icon {\n margin-right: 8px;\n}\n@media screen and (max-width: 600px) {\n #acf-field-group-fields .li-field-type .field-type-icon {\n display: none;\n }\n}\n#acf-field-group-fields .li-field-type .acf-pro-label-field-type {\n margin-left: 5px;\n display: inline;\n padding: 4px 8px;\n}\n#acf-field-group-fields .li-field-order {\n width: 64px;\n justify-content: center;\n}\n@media screen and (max-width: 880px) {\n #acf-field-group-fields .li-field-order {\n width: 32px;\n }\n}\n#acf-field-group-fields .li-field-label {\n width: calc(50% - 64px);\n}\n#acf-field-group-fields .li-field-name {\n width: 25%;\n word-break: break-word;\n}\n#acf-field-group-fields .li-field-key {\n display: none;\n}\n#acf-field-group-fields .li-field-type {\n width: 25%;\n}\n#acf-field-group-fields.show-field-keys .li-field-label {\n width: calc(35% - 64px);\n}\n#acf-field-group-fields.show-field-keys .li-field-name {\n width: 15%;\n}\n#acf-field-group-fields.show-field-keys .li-field-key {\n width: 25%;\n display: flex;\n}\n#acf-field-group-fields.show-field-keys .li-field-type {\n width: 25%;\n}\n#acf-field-group-fields.hide-tabs .acf-field-settings-tab-bar {\n display: none;\n}\n#acf-field-group-fields.hide-tabs .acf-field-settings-main {\n padding: 0;\n}\n#acf-field-group-fields.hide-tabs .acf-field-settings-main.acf-field-settings-main-general {\n padding-top: 32px;\n}\n#acf-field-group-fields.hide-tabs .acf-field-settings-main .acf-field {\n margin-bottom: 32px;\n}\n#acf-field-group-fields.hide-tabs .acf-field-settings-main .acf-field-setting-wrapper {\n padding-top: 0;\n border-top: none;\n}\n#acf-field-group-fields.hide-tabs .acf-field-settings-main .acf-field-settings-split .acf-field {\n border-bottom-width: 1px;\n border-bottom-style: solid;\n border-bottom-color: #EAECF0;\n}\n#acf-field-group-fields.hide-tabs .acf-field-settings-main .acf-field-setting-first_day {\n padding-top: 0;\n border-top: none;\n}\n#acf-field-group-fields.hide-tabs .acf-field-settings-footer {\n margin-top: 32px;\n}\n#acf-field-group-fields .acf-field-list-wrap {\n border: #ccd0d4 solid 1px;\n}\n#acf-field-group-fields .acf-field-list {\n background: #f5f5f5;\n margin-top: -1px;\n /* no fields */\n /* empty */\n}\n#acf-field-group-fields .acf-field-list .acf-tbody > .li-field-name,\n#acf-field-group-fields .acf-field-list .acf-tbody > .li-field-key {\n align-items: flex-start;\n}\n#acf-field-group-fields .acf-field-list .copyable:not(.input-copyable, .copy-unsupported) {\n cursor: pointer;\n display: inline-flex;\n align-items: center;\n}\n#acf-field-group-fields .acf-field-list .copyable:not(.input-copyable, .copy-unsupported):hover:after {\n content: \"\";\n padding-left: 5px;\n display: inline-flex;\n width: 12px;\n height: 12px;\n background-color: #667085;\n border: none;\n border-radius: 0;\n -webkit-mask-size: contain;\n mask-size: contain;\n -webkit-mask-repeat: no-repeat;\n mask-repeat: no-repeat;\n -webkit-mask-position: center;\n mask-position: center;\n text-indent: 500%;\n white-space: nowrap;\n overflow: hidden;\n -webkit-mask-image: url(\"../../images/icons/icon-copy.svg\");\n mask-image: url(\"../../images/icons/icon-copy.svg\");\n background-size: cover;\n}\n#acf-field-group-fields .acf-field-list .copyable:not(.input-copyable, .copy-unsupported).sub-label {\n padding-right: 22px;\n}\n#acf-field-group-fields .acf-field-list .copyable:not(.input-copyable, .copy-unsupported).sub-label:hover {\n padding-right: 0;\n}\n#acf-field-group-fields .acf-field-list .copyable:not(.input-copyable, .copy-unsupported).sub-label:hover:after {\n width: 14px;\n height: 14px;\n padding-left: 8px;\n}\n#acf-field-group-fields .acf-field-list .copyable:not(.input-copyable, .copy-unsupported).copied:hover:after {\n -webkit-mask-image: url(\"../../images/icons/icon-check-circle-solid.svg\");\n mask-image: url(\"../../images/icons/icon-check-circle-solid.svg\");\n background-color: #49ad52;\n}\n#acf-field-group-fields .acf-field-list .copyable.input-copyable:not(.copy-unsupported) {\n cursor: pointer;\n display: block;\n position: relative;\n align-items: center;\n}\n#acf-field-group-fields .acf-field-list .copyable.input-copyable:not(.copy-unsupported) input {\n padding-right: 40px;\n}\n#acf-field-group-fields .acf-field-list .copyable.input-copyable:not(.copy-unsupported) .acf-input-wrap:after {\n content: \"\";\n padding-left: 5px;\n right: 12px;\n top: 12px;\n position: absolute;\n width: 16px;\n height: 16px;\n background-color: #98A2B3;\n border: none;\n border-radius: 0;\n -webkit-mask-size: contain;\n mask-size: contain;\n -webkit-mask-repeat: no-repeat;\n mask-repeat: no-repeat;\n -webkit-mask-position: center;\n mask-position: center;\n text-indent: 500%;\n white-space: nowrap;\n overflow: hidden;\n -webkit-mask-image: url(\"../../images/icons/icon-copy.svg\");\n mask-image: url(\"../../images/icons/icon-copy.svg\");\n background-size: cover;\n}\n#acf-field-group-fields .acf-field-list .copyable.input-copyable:not(.copy-unsupported).copied .acf-input-wrap:after {\n -webkit-mask-image: url(\"../../images/icons/icon-check-circle-solid.svg\");\n mask-image: url(\"../../images/icons/icon-check-circle-solid.svg\");\n background-color: #49ad52;\n}\n#acf-field-group-fields .acf-field-list .no-fields-message {\n padding: 15px 15px;\n background: #fff;\n display: none;\n}\n#acf-field-group-fields .acf-field-list.-empty .no-fields-message {\n display: block;\n}\n.acf-admin-3-8 #acf-field-group-fields .acf-field-list-wrap {\n border-color: #dfdfdf;\n}\n\n.rtl #acf-field-group-fields .li-field-type .field-type-icon {\n margin-left: 8px;\n margin-right: 0;\n}\n\n/* field object */\n.acf-field-object {\n border-top: #eeeeee solid 1px;\n background: #fff;\n /* sortable */\n /* meta */\n /* handle */\n /* open */\n /*\n \t// debug\n \t&[data-save=\"meta\"] {\n \t\t> .handle {\n \t\t\tborder-left: #ffb700 solid 5px !important;\n \t\t}\n \t}\n\n \t&[data-save=\"settings\"] {\n \t\t> .handle {\n \t\t\tborder-left: #0ec563 solid 5px !important;\n \t\t}\n \t}\n */\n /* hover */\n /* settings */\n /* conditional logic */\n}\n.acf-field-object.ui-sortable-helper {\n overflow: hidden !important;\n border-width: 1px;\n border-style: solid;\n border-color: #A5D2E7 !important;\n border-radius: 8px;\n filter: drop-shadow(0px 10px 20px rgba(16, 24, 40, 0.14)) drop-shadow(0px 1px 3px rgba(16, 24, 40, 0.1));\n}\n.acf-field-object.ui-sortable-helper:before {\n display: none !important;\n}\n.acf-field-object.ui-sortable-placeholder {\n box-shadow: 0 -1px 0 0 #DFDFDF;\n visibility: visible !important;\n background: #F9F9F9;\n border-top-color: transparent;\n min-height: 54px;\n}\n.acf-field-object.ui-sortable-placeholder:after, .acf-field-object.ui-sortable-placeholder:before {\n visibility: hidden;\n}\n.acf-field-object > .meta {\n display: none;\n}\n.acf-field-object > .handle a {\n -webkit-transition: none;\n -moz-transition: none;\n -o-transition: none;\n transition: none;\n}\n.acf-field-object > .handle li {\n word-wrap: break-word;\n}\n.acf-field-object > .handle strong {\n display: block;\n padding-bottom: 0;\n font-size: 14px;\n line-height: 14px;\n min-height: 14px;\n}\n.acf-field-object > .handle .row-options {\n display: block;\n opacity: 0;\n margin-top: 5px;\n}\n@media screen and (max-width: 880px) {\n .acf-field-object > .handle .row-options {\n opacity: 1;\n margin-bottom: 0;\n }\n}\n.acf-field-object > .handle .row-options a {\n margin-right: 4px;\n}\n.acf-field-object > .handle .row-options a:hover {\n color: #044767;\n}\n.acf-field-object > .handle .row-options a.delete-field {\n color: #a00;\n}\n.acf-field-object > .handle .row-options a.delete-field:hover {\n color: #f00;\n}\n.acf-field-object > .handle .row-options.active {\n visibility: visible;\n}\n.acf-field-object.open + .acf-field-object {\n border-top-color: #E1E1E1;\n}\n.acf-field-object.open > .handle {\n background: #2a9bd9;\n border: #2696d3 solid 1px;\n text-shadow: #268FBB 0 1px 0;\n color: #fff;\n position: relative;\n margin: 0 -1px 0 -1px;\n}\n.acf-field-object.open > .handle a {\n color: #fff !important;\n}\n.acf-field-object.open > .handle a:hover {\n text-decoration: underline !important;\n}\n.acf-field-object:hover > .handle .row-options, .acf-field-object.-hover > .handle .row-options, .acf-field-object:focus-within > .handle .row-options {\n opacity: 1;\n margin-bottom: 0;\n}\n.acf-field-object > .settings {\n display: none;\n width: 100%;\n}\n.acf-field-object > .settings > .acf-table {\n border: none;\n}\n.acf-field-object .rule-groups {\n margin-top: 20px;\n}\n\n/*----------------------------------------------------------------------------\n*\n* Postbox: Locations\n*\n*----------------------------------------------------------------------------*/\n.rule-groups h4 {\n margin: 3px 0;\n}\n.rule-groups .rule-group {\n margin: 0 0 5px;\n}\n.rule-groups .rule-group h4 {\n margin: 0 0 3px;\n}\n.rule-groups .rule-group td.param {\n width: 35%;\n}\n.rule-groups .rule-group td.operator {\n width: 20%;\n}\n.rule-groups .rule-group td.add {\n width: 40px;\n}\n.rule-groups .rule-group td.remove {\n width: 28px;\n vertical-align: middle;\n}\n.rule-groups .rule-group td.remove a {\n width: 22px;\n height: 22px;\n visibility: hidden;\n}\n.rule-groups .rule-group td.remove a:before {\n position: relative;\n top: -2px;\n font-size: 16px;\n}\n.rule-groups .rule-group tr:hover td.remove a {\n visibility: visible;\n}\n.rule-groups .rule-group select:empty {\n background: #f8f8f8;\n}\n.rule-groups:not(.rule-groups-multiple) .rule-group:first-child tr:first-child td.remove a {\n /* Don't allow user to delete the only rule group */\n visibility: hidden !important;\n}\n\n/*----------------------------------------------------------------------------\n*\n*\tOptions\n*\n*----------------------------------------------------------------------------*/\n#acf-field-group-options tr[data-name=hide_on_screen] li {\n float: left;\n width: 33%;\n}\n\n@media (max-width: 1100px) {\n #acf-field-group-options tr[data-name=hide_on_screen] li {\n width: 50%;\n }\n}\n/*----------------------------------------------------------------------------\n*\n*\tConditional Logic\n*\n*----------------------------------------------------------------------------*/\ntable.conditional-logic-rules {\n background: transparent;\n border: 0 none;\n border-radius: 0;\n}\n\ntable.conditional-logic-rules tbody td {\n background: transparent;\n border: 0 none !important;\n padding: 5px 2px !important;\n}\n\n/*----------------------------------------------------------------------------\n*\n*\tField: Tab\n*\n*----------------------------------------------------------------------------*/\n.acf-field-object-tab .acf-field-setting-name,\n.acf-field-object-tab .acf-field-setting-instructions,\n.acf-field-object-tab .acf-field-setting-required,\n.acf-field-object-tab .acf-field-setting-warning,\n.acf-field-object-tab .acf-field-setting-wrapper {\n display: none;\n}\n.acf-field-object-tab .li-field-name {\n visibility: hidden;\n}\n.acf-field-object-tab p:first-child {\n margin: 0.5em 0;\n}\n.acf-field-object-tab li.acf-settings-type-presentation,\n.acf-field-object-tab .acf-field-settings-main-presentation {\n display: none !important;\n}\n\n/*----------------------------------------------------------------------------\n*\n*\tField: Accordion\n*\n*----------------------------------------------------------------------------*/\n.acf-field-object-accordion .acf-field-setting-name,\n.acf-field-object-accordion .acf-field-setting-instructions,\n.acf-field-object-accordion .acf-field-setting-required,\n.acf-field-object-accordion .acf-field-setting-warning,\n.acf-field-object-accordion .acf-field-setting-wrapper {\n display: none;\n}\n.acf-field-object-accordion .li-field-name {\n visibility: hidden;\n}\n.acf-field-object-accordion p:first-child {\n margin: 0.5em 0;\n}\n.acf-field-object-accordion .acf-field-setting-instructions {\n display: block;\n}\n\n/*----------------------------------------------------------------------------\n*\n*\tField: Message\n*\n*----------------------------------------------------------------------------*/\n.acf-field-object-message tr[data-name=name],\n.acf-field-object-message tr[data-name=instructions],\n.acf-field-object-message tr[data-name=required] {\n display: none !important;\n}\n\n.acf-field-object-message .li-field-name {\n visibility: hidden;\n}\n\n.acf-field-object-message textarea {\n height: 175px !important;\n}\n\n/*----------------------------------------------------------------------------\n*\n*\tField: Separator\n*\n*----------------------------------------------------------------------------*/\n.acf-field-object-separator tr[data-name=name],\n.acf-field-object-separator tr[data-name=instructions],\n.acf-field-object-separator tr[data-name=required] {\n display: none !important;\n}\n\n/*----------------------------------------------------------------------------\n*\n*\tField: Date Picker\n*\n*----------------------------------------------------------------------------*/\n.acf-field-object-date-picker .acf-radio-list li,\n.acf-field-object-time-picker .acf-radio-list li,\n.acf-field-object-date-time-picker .acf-radio-list li {\n line-height: 25px;\n}\n.acf-field-object-date-picker .acf-radio-list span,\n.acf-field-object-time-picker .acf-radio-list span,\n.acf-field-object-date-time-picker .acf-radio-list span {\n display: inline-block;\n min-width: 10em;\n}\n.acf-field-object-date-picker .acf-radio-list input[type=text],\n.acf-field-object-time-picker .acf-radio-list input[type=text],\n.acf-field-object-date-time-picker .acf-radio-list input[type=text] {\n width: 100px;\n}\n\n.acf-field-object-date-time-picker .acf-radio-list span {\n min-width: 15em;\n}\n.acf-field-object-date-time-picker .acf-radio-list input[type=text] {\n width: 200px;\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tSlug\n*\n*--------------------------------------------------------------------------------------------*/\n#slugdiv .inside {\n padding: 12px;\n margin: 0;\n}\n#slugdiv input[type=text] {\n width: 100%;\n height: 28px;\n font-size: 14px;\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tRTL\n*\n*--------------------------------------------------------------------------------------------*/\nhtml[dir=rtl] .acf-field-object.open > .handle {\n margin: 0;\n}\n\n/*----------------------------------------------------------------------------\n*\n* Device\n*\n*----------------------------------------------------------------------------*/\n@media only screen and (max-width: 850px) {\n tr.acf-field,\n td.acf-label,\n td.acf-input {\n display: block !important;\n width: auto !important;\n border: 0 none !important;\n }\n tr.acf-field {\n border-top: #ededed solid 1px !important;\n margin-bottom: 0 !important;\n }\n td.acf-label {\n background: transparent !important;\n padding-bottom: 0 !important;\n }\n}\n/*----------------------------------------------------------------------------\n*\n* Subtle background on accordion & tab fields to separate them from others\n*\n*----------------------------------------------------------------------------*/\n.post-type-acf-field-group #acf-field-group-fields .acf-field-object-tab,\n.post-type-acf-field-group #acf-field-group-fields .acf-field-object-accordion {\n background-color: #F9FAFB;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Global\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-admin-page #wpcontent {\n line-height: 140%;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Links\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-admin-page a {\n color: #0783BE;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Headings\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-h1, .acf-admin-page h1,\n.acf-headerbar h1 {\n font-size: 21px;\n font-weight: 400;\n}\n\n.acf-h2, .post-type-acf-field-group #acf-field-group-fields .acf-field-list.-empty .no-fields-message .no-fields-message-inner h2, .acf-page-title, .acf-admin-page h2,\n.acf-headerbar h2 {\n font-size: 18px;\n font-weight: 400;\n}\n\n.acf-h3, .post-type-acf-field-group .acf-field-settings-fc_head label, .acf-admin-page #acf-popup .acf-popup-box .title h1,\n.acf-admin-page #acf-popup .acf-popup-box .title h2,\n.acf-admin-page #acf-popup .acf-popup-box .title h3,\n.acf-admin-page #acf-popup .acf-popup-box .title h4, .acf-admin-page h3,\n.acf-headerbar h3 {\n font-size: 16px;\n font-weight: 400;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Paragraphs\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-admin-page .p1 {\n font-size: 15px;\n}\n.acf-admin-page .p2, .acf-admin-page .post-type-acf-field-group #acf-field-group-fields .acf-field-list.-empty .no-fields-message .no-fields-message-inner p, .post-type-acf-field-group #acf-field-group-fields .acf-field-list.-empty .no-fields-message .no-fields-message-inner .acf-admin-page p {\n font-size: 14px;\n}\n.acf-admin-page .p3 {\n font-size: 13.5px;\n}\n.acf-admin-page .p4, .acf-admin-page .acf-field-list .acf-sortable-handle, .acf-field-list .acf-admin-page .acf-sortable-handle, .acf-admin-page .post-type-acf-field-group .acf-field-object .handle li.li-field-label a.edit-field, .post-type-acf-field-group .acf-field-object .handle li.li-field-label .acf-admin-page a.edit-field, .acf-admin-page .post-type-acf-field-group .acf-field-object .handle li, .post-type-acf-field-group .acf-field-object .handle .acf-admin-page li, .acf-admin-page .post-type-acf-field-group .acf-thead li, .post-type-acf-field-group .acf-thead .acf-admin-page li, .acf-admin-page .acf-input .select2-container.-acf .select2-selection__rendered, .acf-admin-page .button, .acf-admin-page input[type=text],\n.acf-admin-page input[type=search],\n.acf-admin-page input[type=number],\n.acf-admin-page textarea,\n.acf-admin-page select {\n font-size: 13px;\n}\n.acf-admin-page .p5, .acf-admin-page .acf-field-setting-display_format .acf-radio-list li label code, .acf-field-setting-display_format .acf-radio-list li label .acf-admin-page code,\n.acf-admin-page .acf-field-setting-return_format .acf-radio-list li label code,\n.acf-field-setting-return_format .acf-radio-list li label .acf-admin-page code, .acf-admin-page .acf-field-group-settings-footer .acf-created-on, .acf-field-group-settings-footer .acf-admin-page .acf-created-on, .acf-admin-page .acf-fields .acf-field-settings-tab-bar li a, .acf-fields .acf-field-settings-tab-bar li .acf-admin-page a,\n.acf-admin-page .acf-fields .acf-tab-wrap .acf-tab-group li a,\n.acf-fields .acf-tab-wrap .acf-tab-group li .acf-admin-page a,\n.acf-admin-page.acf-internal-post-type .acf-field-settings-tab-bar li a,\n.acf-admin-page.acf-internal-post-type .acf-tab-wrap .acf-tab-group li a,\n.acf-admin-page .acf-browse-fields-modal-wrap .acf-field-settings-tab-bar li a,\n.acf-browse-fields-modal-wrap .acf-field-settings-tab-bar li .acf-admin-page a,\n.acf-admin-page .acf-browse-fields-modal-wrap .acf-tab-wrap .acf-tab-group li a,\n.acf-browse-fields-modal-wrap .acf-tab-wrap .acf-tab-group li .acf-admin-page a {\n font-size: 12.5px;\n}\n.acf-admin-page .p6, .acf-admin-page .post-type-acf-field-group #acf-field-group-fields .acf-field-list.-empty .no-fields-message .no-fields-message-inner p.acf-small, .post-type-acf-field-group #acf-field-group-fields .acf-field-list.-empty .no-fields-message .no-fields-message-inner .acf-admin-page p.acf-small, .acf-admin-page .post-type-acf-field-group .acf-field-object .handle li.li-field-label .row-options a, .post-type-acf-field-group .acf-field-object .handle li.li-field-label .row-options .acf-admin-page a, .acf-admin-page .acf-small {\n font-size: 12px;\n}\n.acf-admin-page .p7 {\n font-size: 11.5px;\n}\n.acf-admin-page .p8 {\n font-size: 11px;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Page titles\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-page-title {\n color: #344054;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Hide old / native WP titles from pages\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-admin-page .acf-settings-wrap h1 {\n display: none !important;\n}\n.acf-admin-page #acf-admin-tools h1:not(.acf-field-group-pro-features-title, .acf-field-group-pro-features-title-sm) {\n display: none !important;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Small\n*\n*---------------------------------------------------------------------------------------------*/\n/*---------------------------------------------------------------------------------------------\n*\n* Link focus style\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-admin-page a:focus {\n box-shadow: none;\n outline: none;\n}\n.acf-admin-page a:focus-visible {\n box-shadow: 0 0 0 1px #4f94d4, 0 0 2px 1px rgba(79, 148, 212, 0.8);\n outline: 1px solid transparent;\n}\n\n.acf-admin-page {\n /*---------------------------------------------------------------------------------------------\n *\n * All Inputs\n *\n *---------------------------------------------------------------------------------------------*/\n /*---------------------------------------------------------------------------------------------\n *\n * Read only text inputs\n *\n *---------------------------------------------------------------------------------------------*/\n /*---------------------------------------------------------------------------------------------\n *\n * Number fields\n *\n *---------------------------------------------------------------------------------------------*/\n /*---------------------------------------------------------------------------------------------\n *\n * Textarea\n *\n *---------------------------------------------------------------------------------------------*/\n /*---------------------------------------------------------------------------------------------\n *\n * Select\n *\n *---------------------------------------------------------------------------------------------*/\n /*---------------------------------------------------------------------------------------------\n *\n * Radio Button & Checkbox base styling\n *\n *---------------------------------------------------------------------------------------------*/\n /*---------------------------------------------------------------------------------------------\n *\n * Radio Buttons\n *\n *---------------------------------------------------------------------------------------------*/\n /*---------------------------------------------------------------------------------------------\n *\n * Checkboxes\n *\n *---------------------------------------------------------------------------------------------*/\n /*---------------------------------------------------------------------------------------------\n *\n * Radio Buttons & Checkbox lists\n *\n *---------------------------------------------------------------------------------------------*/\n /*---------------------------------------------------------------------------------------------\n *\n * ACF Switch\n *\n *---------------------------------------------------------------------------------------------*/\n /*---------------------------------------------------------------------------------------------\n *\n * File input button\n *\n *---------------------------------------------------------------------------------------------*/\n /*---------------------------------------------------------------------------------------------\n *\n * Action Buttons\n *\n *---------------------------------------------------------------------------------------------*/\n /*---------------------------------------------------------------------------------------------\n *\n * Edit field group header\n *\n *---------------------------------------------------------------------------------------------*/\n /*---------------------------------------------------------------------------------------------\n *\n * Select2 inputs\n *\n *---------------------------------------------------------------------------------------------*/\n /*---------------------------------------------------------------------------------------------\n *\n * ACF label\n *\n *---------------------------------------------------------------------------------------------*/\n /*---------------------------------------------------------------------------------------------\n *\n * Tooltip for field name field setting (result of a fix for keyboard navigation)\n *\n *---------------------------------------------------------------------------------------------*/\n /* Field Type Selection select2 */\n /*---------------------------------------------------------------------------------------------\n *\n * RTL arrow position\n *\n *---------------------------------------------------------------------------------------------*/\n}\n.acf-admin-page input[type=text],\n.acf-admin-page input[type=search],\n.acf-admin-page input[type=number],\n.acf-admin-page textarea,\n.acf-admin-page select {\n box-sizing: border-box;\n height: 40px;\n padding-right: 12px;\n padding-left: 12px;\n background-color: #fff;\n border-color: #D0D5DD;\n box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.1);\n border-radius: 6px;\n color: #344054;\n}\n.acf-admin-page input[type=text]:focus,\n.acf-admin-page input[type=search]:focus,\n.acf-admin-page input[type=number]:focus,\n.acf-admin-page textarea:focus,\n.acf-admin-page select:focus {\n outline: 3px solid #EBF5FA;\n border-color: #399CCB;\n}\n.acf-admin-page input[type=text]:disabled,\n.acf-admin-page input[type=search]:disabled,\n.acf-admin-page input[type=number]:disabled,\n.acf-admin-page textarea:disabled,\n.acf-admin-page select:disabled {\n background-color: #F9FAFB;\n color: #808a9e;\n}\n.acf-admin-page input[type=text]::placeholder,\n.acf-admin-page input[type=search]::placeholder,\n.acf-admin-page input[type=number]::placeholder,\n.acf-admin-page textarea::placeholder,\n.acf-admin-page select::placeholder {\n color: #98A2B3;\n}\n.acf-admin-page input[type=text]:read-only {\n background-color: #F9FAFB;\n color: #98A2B3;\n}\n.acf-admin-page .acf-field.acf-field-number .acf-label,\n.acf-admin-page .acf-field.acf-field-number .acf-input input[type=number] {\n max-width: 180px;\n}\n.acf-admin-page textarea {\n box-sizing: border-box;\n padding-top: 10px;\n padding-bottom: 10px;\n height: 80px;\n min-height: 56px;\n}\n.acf-admin-page select {\n min-width: 160px;\n max-width: 100%;\n padding-right: 40px;\n padding-left: 12px;\n background-image: url(\"../../images/icons/icon-chevron-down.svg\");\n background-position: right 10px top 50%;\n background-size: 20px;\n}\n.acf-admin-page select:hover, .acf-admin-page select:focus {\n color: #0783BE;\n}\n.acf-admin-page select::before {\n content: \"\";\n display: block;\n position: absolute;\n top: 5px;\n left: 5px;\n width: 20px;\n height: 20px;\n}\n.acf-admin-page.rtl select {\n padding-right: 12px;\n padding-left: 40px;\n background-position: left 10px top 50%;\n}\n.acf-admin-page input[type=radio],\n.acf-admin-page input[type=checkbox] {\n box-sizing: border-box;\n width: 16px;\n height: 16px;\n padding: 0;\n border-width: 1px;\n border-style: solid;\n border-color: #98A2B3;\n background: #fff;\n box-shadow: none;\n}\n.acf-admin-page input[type=radio]:hover,\n.acf-admin-page input[type=checkbox]:hover {\n background-color: #EBF5FA;\n border-color: #0783BE;\n}\n.acf-admin-page input[type=radio]:checked, .acf-admin-page input[type=radio]:focus-visible,\n.acf-admin-page input[type=checkbox]:checked,\n.acf-admin-page input[type=checkbox]:focus-visible {\n background-color: #EBF5FA;\n border-color: #0783BE;\n}\n.acf-admin-page input[type=radio]:checked:before, .acf-admin-page input[type=radio]:focus-visible:before,\n.acf-admin-page input[type=checkbox]:checked:before,\n.acf-admin-page input[type=checkbox]:focus-visible:before {\n content: \"\";\n position: relative;\n top: -1px;\n left: -1px;\n width: 16px;\n height: 16px;\n margin: 0;\n padding: 0;\n background-color: transparent;\n background-size: cover;\n background-repeat: no-repeat;\n background-position: center;\n}\n.acf-admin-page input[type=radio]:active,\n.acf-admin-page input[type=checkbox]:active {\n box-shadow: 0px 0px 0px 3px #EBF5FA, 0px 0px 0px rgba(255, 54, 54, 0.25);\n}\n.acf-admin-page input[type=radio]:disabled,\n.acf-admin-page input[type=checkbox]:disabled {\n background-color: #F9FAFB;\n border-color: #D0D5DD;\n}\n.acf-admin-page.rtl input[type=radio]:checked:before, .acf-admin-page.rtl input[type=radio]:focus-visible:before,\n.acf-admin-page.rtl input[type=checkbox]:checked:before,\n.acf-admin-page.rtl input[type=checkbox]:focus-visible:before {\n left: 1px;\n}\n.acf-admin-page input[type=radio]:checked:before, .acf-admin-page input[type=radio]:focus:before {\n background-image: url(\"../../images/field-states/radio-active.svg\");\n}\n.acf-admin-page input[type=checkbox]:checked:before, .acf-admin-page input[type=checkbox]:focus:before {\n background-image: url(\"../../images/field-states/checkbox-active.svg\");\n}\n.acf-admin-page .acf-radio-list li input[type=radio],\n.acf-admin-page .acf-radio-list li input[type=checkbox],\n.acf-admin-page .acf-checkbox-list li input[type=radio],\n.acf-admin-page .acf-checkbox-list li input[type=checkbox] {\n margin-right: 6px;\n}\n.acf-admin-page .acf-radio-list.acf-bl li,\n.acf-admin-page .acf-checkbox-list.acf-bl li {\n margin-bottom: 8px;\n}\n.acf-admin-page .acf-radio-list.acf-bl li:last-of-type,\n.acf-admin-page .acf-checkbox-list.acf-bl li:last-of-type {\n margin-bottom: 0;\n}\n.acf-admin-page .acf-radio-list label,\n.acf-admin-page .acf-checkbox-list label {\n display: flex;\n align-items: center;\n align-content: center;\n}\n.acf-admin-page .acf-switch {\n width: 42px;\n height: 24px;\n border: none;\n background-color: #D0D5DD;\n border-radius: 12px;\n}\n.acf-admin-page .acf-switch:hover {\n background-color: #98A2B3;\n}\n.acf-admin-page .acf-switch:active {\n box-shadow: 0px 0px 0px 3px #EBF5FA, 0px 0px 0px rgba(255, 54, 54, 0.25);\n}\n.acf-admin-page .acf-switch.-on {\n background-color: #0783BE;\n}\n.acf-admin-page .acf-switch.-on:hover {\n background-color: #066998;\n}\n.acf-admin-page .acf-switch.-on .acf-switch-slider {\n left: 20px;\n}\n.acf-admin-page .acf-switch .acf-switch-off,\n.acf-admin-page .acf-switch .acf-switch-on {\n visibility: hidden;\n}\n.acf-admin-page .acf-switch .acf-switch-slider {\n width: 20px;\n height: 20px;\n border: none;\n border-radius: 100px;\n box-shadow: 0px 1px 3px rgba(16, 24, 40, 0.1), 0px 1px 2px rgba(16, 24, 40, 0.06);\n}\n.acf-admin-page .acf-field-true-false {\n display: flex;\n align-items: flex-start;\n}\n.acf-admin-page .acf-field-true-false .acf-label {\n order: 2;\n display: block;\n align-items: center;\n margin-top: 2px;\n margin-bottom: 0;\n margin-left: 12px;\n}\n.acf-admin-page .acf-field-true-false .acf-label label {\n margin-bottom: 0;\n}\n.acf-admin-page .acf-field-true-false .acf-label .acf-tip {\n margin-left: 12px;\n}\n.acf-admin-page .acf-field-true-false .acf-label .description {\n display: block;\n margin-top: 2px;\n margin-left: 0;\n}\n.acf-admin-page.rtl .acf-field-true-false .acf-label {\n margin-right: 12px;\n margin-left: 0;\n}\n.acf-admin-page.rtl .acf-field-true-false .acf-tip {\n margin-right: 12px;\n margin-left: 0;\n}\n.acf-admin-page input::file-selector-button {\n box-sizing: border-box;\n min-height: 40px;\n margin-right: 16px;\n padding-top: 8px;\n padding-right: 16px;\n padding-bottom: 8px;\n padding-left: 16px;\n background-color: transparent;\n color: #0783BE !important;\n border-radius: 6px;\n border-width: 1px;\n border-style: solid;\n border-color: #0783BE;\n text-decoration: none;\n}\n.acf-admin-page input::file-selector-button:hover {\n border-color: #066998;\n cursor: pointer;\n color: #066998 !important;\n}\n.acf-admin-page .button {\n display: inline-flex;\n align-items: center;\n height: 40px;\n padding-right: 16px;\n padding-left: 16px;\n background-color: transparent;\n border-width: 1px;\n border-style: solid;\n border-color: #0783BE;\n border-radius: 6px;\n color: #0783BE;\n}\n.acf-admin-page .button:hover {\n background-color: #f3f9fc;\n border-color: #0783BE;\n color: #0783BE;\n}\n.acf-admin-page .button:focus {\n background-color: #f3f9fc;\n outline: 3px solid #EBF5FA;\n color: #0783BE;\n}\n.acf-admin-page .edit-field-group-header {\n display: block !important;\n}\n.acf-admin-page .acf-input .select2-container.-acf .select2-selection {\n border: none;\n line-height: 1;\n}\n.acf-admin-page .acf-input .select2-container.-acf .select2-selection__rendered {\n box-sizing: border-box;\n padding-right: 0;\n padding-left: 0;\n background-color: #fff;\n border-width: 1px;\n border-style: solid;\n border-color: #D0D5DD;\n box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.1);\n border-radius: 6px;\n color: #344054;\n}\n.acf-admin-page .acf-input .select2-container--focus {\n outline: 3px solid #EBF5FA;\n border-color: #399CCB;\n border-radius: 6px;\n}\n.acf-admin-page .acf-input .select2-container--focus .select2-selection__rendered {\n border-color: #399CCB !important;\n}\n.acf-admin-page .acf-input .select2-container--focus.select2-container--below.select2-container--open .select2-selection__rendered {\n border-bottom-right-radius: 0 !important;\n border-bottom-left-radius: 0 !important;\n}\n.acf-admin-page .acf-input .select2-container--focus.select2-container--above.select2-container--open .select2-selection__rendered {\n border-top-right-radius: 0 !important;\n border-top-left-radius: 0 !important;\n}\n.acf-admin-page .acf-input .select2-container .select2-search--inline .select2-search__field {\n margin: 0;\n padding-left: 6px;\n}\n.acf-admin-page .acf-input .select2-container .select2-search--inline .select2-search__field:focus {\n outline: none;\n border: none;\n}\n.acf-admin-page .acf-input .select2-container--default .select2-selection--multiple .select2-selection__rendered {\n padding-top: 0;\n padding-right: 6px;\n padding-bottom: 0;\n padding-left: 6px;\n}\n.acf-admin-page .acf-input .select2-selection__clear {\n width: 18px;\n height: 18px;\n margin-top: 12px;\n margin-right: 1px;\n text-indent: 100%;\n white-space: nowrap;\n overflow: hidden;\n color: #fff;\n}\n.acf-admin-page .acf-input .select2-selection__clear:before {\n content: \"\";\n display: block;\n width: 16px;\n height: 16px;\n top: 0;\n left: 0;\n border: none;\n border-radius: 0;\n -webkit-mask-size: contain;\n mask-size: contain;\n -webkit-mask-repeat: no-repeat;\n mask-repeat: no-repeat;\n -webkit-mask-position: center;\n mask-position: center;\n -webkit-mask-image: url(\"../../images/icons/icon-close.svg\");\n mask-image: url(\"../../images/icons/icon-close.svg\");\n background-color: #98A2B3;\n}\n.acf-admin-page .acf-input .select2-selection__clear:hover::before {\n background-color: #0783BE;\n}\n.acf-admin-page .acf-label {\n display: flex;\n align-items: center;\n justify-content: space-between;\n}\n.acf-admin-page .acf-label .acf-icon-help {\n width: 18px;\n height: 18px;\n background-color: #98A2B3;\n}\n.acf-admin-page .acf-label label {\n margin-bottom: 0;\n}\n.acf-admin-page .acf-label .description {\n margin-top: 2px;\n}\n.acf-admin-page .acf-field-setting-name .acf-tip {\n position: absolute;\n top: 0;\n left: 654px;\n color: #98A2B3;\n}\n.rtl.acf-admin-page .acf-field-setting-name .acf-tip {\n left: auto;\n right: 654px;\n}\n\n.acf-admin-page .acf-field-setting-name .acf-tip .acf-icon-help {\n width: 18px;\n height: 18px;\n}\n.acf-admin-page .acf-field-setting-type .select2-container.-acf,\n.acf-admin-page .acf-field-permalink-rewrite .select2-container.-acf,\n.acf-admin-page .acf-field-query-var .select2-container.-acf,\n.acf-admin-page .acf-field-capability .select2-container.-acf,\n.acf-admin-page .acf-field-parent-slug .select2-container.-acf,\n.acf-admin-page .acf-field-data-storage .select2-container.-acf,\n.acf-admin-page .acf-field-manage-terms .select2-container.-acf,\n.acf-admin-page .acf-field-edit-terms .select2-container.-acf,\n.acf-admin-page .acf-field-delete-terms .select2-container.-acf,\n.acf-admin-page .acf-field-assign-terms .select2-container.-acf,\n.acf-admin-page .acf-field-meta-box .select2-container.-acf {\n min-height: 40px;\n}\n.acf-admin-page .acf-field-setting-type .select2-container--default .select2-selection--single .select2-selection__rendered,\n.acf-admin-page .acf-field-permalink-rewrite .select2-container--default .select2-selection--single .select2-selection__rendered,\n.acf-admin-page .acf-field-query-var .select2-container--default .select2-selection--single .select2-selection__rendered,\n.acf-admin-page .acf-field-capability .select2-container--default .select2-selection--single .select2-selection__rendered,\n.acf-admin-page .acf-field-parent-slug .select2-container--default .select2-selection--single .select2-selection__rendered,\n.acf-admin-page .acf-field-data-storage .select2-container--default .select2-selection--single .select2-selection__rendered,\n.acf-admin-page .acf-field-manage-terms .select2-container--default .select2-selection--single .select2-selection__rendered,\n.acf-admin-page .acf-field-edit-terms .select2-container--default .select2-selection--single .select2-selection__rendered,\n.acf-admin-page .acf-field-delete-terms .select2-container--default .select2-selection--single .select2-selection__rendered,\n.acf-admin-page .acf-field-assign-terms .select2-container--default .select2-selection--single .select2-selection__rendered,\n.acf-admin-page .acf-field-meta-box .select2-container--default .select2-selection--single .select2-selection__rendered {\n display: flex;\n align-items: center;\n position: relative;\n z-index: 800;\n min-height: 40px;\n padding-top: 0;\n padding-right: 12px;\n padding-bottom: 0;\n padding-left: 12px;\n}\n.acf-admin-page .acf-field-setting-type .select2-container--default .select2-selection--single .field-type-icon,\n.acf-admin-page .acf-field-permalink-rewrite .select2-container--default .select2-selection--single .field-type-icon,\n.acf-admin-page .acf-field-query-var .select2-container--default .select2-selection--single .field-type-icon,\n.acf-admin-page .acf-field-capability .select2-container--default .select2-selection--single .field-type-icon,\n.acf-admin-page .acf-field-parent-slug .select2-container--default .select2-selection--single .field-type-icon,\n.acf-admin-page .acf-field-data-storage .select2-container--default .select2-selection--single .field-type-icon,\n.acf-admin-page .acf-field-manage-terms .select2-container--default .select2-selection--single .field-type-icon,\n.acf-admin-page .acf-field-edit-terms .select2-container--default .select2-selection--single .field-type-icon,\n.acf-admin-page .acf-field-delete-terms .select2-container--default .select2-selection--single .field-type-icon,\n.acf-admin-page .acf-field-assign-terms .select2-container--default .select2-selection--single .field-type-icon,\n.acf-admin-page .acf-field-meta-box .select2-container--default .select2-selection--single .field-type-icon {\n top: auto;\n width: 18px;\n height: 18px;\n margin-right: 2px;\n}\n.acf-admin-page .acf-field-setting-type .select2-container--default .select2-selection--single .field-type-icon:before,\n.acf-admin-page .acf-field-permalink-rewrite .select2-container--default .select2-selection--single .field-type-icon:before,\n.acf-admin-page .acf-field-query-var .select2-container--default .select2-selection--single .field-type-icon:before,\n.acf-admin-page .acf-field-capability .select2-container--default .select2-selection--single .field-type-icon:before,\n.acf-admin-page .acf-field-parent-slug .select2-container--default .select2-selection--single .field-type-icon:before,\n.acf-admin-page .acf-field-data-storage .select2-container--default .select2-selection--single .field-type-icon:before,\n.acf-admin-page .acf-field-manage-terms .select2-container--default .select2-selection--single .field-type-icon:before,\n.acf-admin-page .acf-field-edit-terms .select2-container--default .select2-selection--single .field-type-icon:before,\n.acf-admin-page .acf-field-delete-terms .select2-container--default .select2-selection--single .field-type-icon:before,\n.acf-admin-page .acf-field-assign-terms .select2-container--default .select2-selection--single .field-type-icon:before,\n.acf-admin-page .acf-field-meta-box .select2-container--default .select2-selection--single .field-type-icon:before {\n width: 9px;\n height: 9px;\n}\n.acf-admin-page .acf-field-setting-type .select2-container--open .select2-selection__rendered,\n.acf-admin-page .acf-field-permalink-rewrite .select2-container--open .select2-selection__rendered,\n.acf-admin-page .acf-field-query-var .select2-container--open .select2-selection__rendered,\n.acf-admin-page .acf-field-capability .select2-container--open .select2-selection__rendered,\n.acf-admin-page .acf-field-parent-slug .select2-container--open .select2-selection__rendered,\n.acf-admin-page .acf-field-data-storage .select2-container--open .select2-selection__rendered,\n.acf-admin-page .acf-field-manage-terms .select2-container--open .select2-selection__rendered,\n.acf-admin-page .acf-field-edit-terms .select2-container--open .select2-selection__rendered,\n.acf-admin-page .acf-field-delete-terms .select2-container--open .select2-selection__rendered,\n.acf-admin-page .acf-field-assign-terms .select2-container--open .select2-selection__rendered,\n.acf-admin-page .acf-field-meta-box .select2-container--open .select2-selection__rendered {\n border-color: #6BB5D8 !important;\n border-bottom-color: #D0D5DD !important;\n}\n.acf-admin-page .acf-field-setting-type .select2-container--open.select2-container--below .select2-selection__rendered,\n.acf-admin-page .acf-field-permalink-rewrite .select2-container--open.select2-container--below .select2-selection__rendered,\n.acf-admin-page .acf-field-query-var .select2-container--open.select2-container--below .select2-selection__rendered,\n.acf-admin-page .acf-field-capability .select2-container--open.select2-container--below .select2-selection__rendered,\n.acf-admin-page .acf-field-parent-slug .select2-container--open.select2-container--below .select2-selection__rendered,\n.acf-admin-page .acf-field-data-storage .select2-container--open.select2-container--below .select2-selection__rendered,\n.acf-admin-page .acf-field-manage-terms .select2-container--open.select2-container--below .select2-selection__rendered,\n.acf-admin-page .acf-field-edit-terms .select2-container--open.select2-container--below .select2-selection__rendered,\n.acf-admin-page .acf-field-delete-terms .select2-container--open.select2-container--below .select2-selection__rendered,\n.acf-admin-page .acf-field-assign-terms .select2-container--open.select2-container--below .select2-selection__rendered,\n.acf-admin-page .acf-field-meta-box .select2-container--open.select2-container--below .select2-selection__rendered {\n border-bottom-right-radius: 0 !important;\n border-bottom-left-radius: 0 !important;\n}\n.acf-admin-page .acf-field-setting-type .select2-container--open.select2-container--above .select2-selection__rendered,\n.acf-admin-page .acf-field-permalink-rewrite .select2-container--open.select2-container--above .select2-selection__rendered,\n.acf-admin-page .acf-field-query-var .select2-container--open.select2-container--above .select2-selection__rendered,\n.acf-admin-page .acf-field-capability .select2-container--open.select2-container--above .select2-selection__rendered,\n.acf-admin-page .acf-field-parent-slug .select2-container--open.select2-container--above .select2-selection__rendered,\n.acf-admin-page .acf-field-data-storage .select2-container--open.select2-container--above .select2-selection__rendered,\n.acf-admin-page .acf-field-manage-terms .select2-container--open.select2-container--above .select2-selection__rendered,\n.acf-admin-page .acf-field-edit-terms .select2-container--open.select2-container--above .select2-selection__rendered,\n.acf-admin-page .acf-field-delete-terms .select2-container--open.select2-container--above .select2-selection__rendered,\n.acf-admin-page .acf-field-assign-terms .select2-container--open.select2-container--above .select2-selection__rendered,\n.acf-admin-page .acf-field-meta-box .select2-container--open.select2-container--above .select2-selection__rendered {\n border-top-right-radius: 0 !important;\n border-top-left-radius: 0 !important;\n border-bottom-color: #6BB5D8 !important;\n border-top-color: #D0D5DD !important;\n}\n.acf-admin-page .acf-field-setting-type .acf-selection.has-icon,\n.acf-admin-page .acf-field-permalink-rewrite .acf-selection.has-icon,\n.acf-admin-page .acf-field-query-var .acf-selection.has-icon,\n.acf-admin-page .acf-field-capability .acf-selection.has-icon,\n.acf-admin-page .acf-field-parent-slug .acf-selection.has-icon,\n.acf-admin-page .acf-field-data-storage .acf-selection.has-icon,\n.acf-admin-page .acf-field-manage-terms .acf-selection.has-icon,\n.acf-admin-page .acf-field-edit-terms .acf-selection.has-icon,\n.acf-admin-page .acf-field-delete-terms .acf-selection.has-icon,\n.acf-admin-page .acf-field-assign-terms .acf-selection.has-icon,\n.acf-admin-page .acf-field-meta-box .acf-selection.has-icon {\n margin-left: 6px;\n}\n.rtl.acf-admin-page .acf-field-setting-type .acf-selection.has-icon, .acf-admin-page .acf-field-permalink-rewrite .acf-selection.has-icon, .acf-admin-page .acf-field-query-var .acf-selection.has-icon, .acf-admin-page .acf-field-capability .acf-selection.has-icon, .acf-admin-page .acf-field-parent-slug .acf-selection.has-icon, .acf-admin-page .acf-field-data-storage .acf-selection.has-icon, .acf-admin-page .acf-field-manage-terms .acf-selection.has-icon, .acf-admin-page .acf-field-edit-terms .acf-selection.has-icon, .acf-admin-page .acf-field-delete-terms .acf-selection.has-icon, .acf-admin-page .acf-field-assign-terms .acf-selection.has-icon, .acf-admin-page .acf-field-meta-box .acf-selection.has-icon {\n margin-right: 6px;\n}\n\n.acf-admin-page .acf-field-setting-type .select2-selection__arrow,\n.acf-admin-page .acf-field-permalink-rewrite .select2-selection__arrow,\n.acf-admin-page .acf-field-query-var .select2-selection__arrow,\n.acf-admin-page .acf-field-capability .select2-selection__arrow,\n.acf-admin-page .acf-field-parent-slug .select2-selection__arrow,\n.acf-admin-page .acf-field-data-storage .select2-selection__arrow,\n.acf-admin-page .acf-field-manage-terms .select2-selection__arrow,\n.acf-admin-page .acf-field-edit-terms .select2-selection__arrow,\n.acf-admin-page .acf-field-delete-terms .select2-selection__arrow,\n.acf-admin-page .acf-field-assign-terms .select2-selection__arrow,\n.acf-admin-page .acf-field-meta-box .select2-selection__arrow {\n width: 20px;\n height: 20px;\n top: calc(50% - 10px);\n right: 12px;\n background-color: transparent;\n}\n.acf-admin-page .acf-field-setting-type .select2-selection__arrow:after,\n.acf-admin-page .acf-field-permalink-rewrite .select2-selection__arrow:after,\n.acf-admin-page .acf-field-query-var .select2-selection__arrow:after,\n.acf-admin-page .acf-field-capability .select2-selection__arrow:after,\n.acf-admin-page .acf-field-parent-slug .select2-selection__arrow:after,\n.acf-admin-page .acf-field-data-storage .select2-selection__arrow:after,\n.acf-admin-page .acf-field-manage-terms .select2-selection__arrow:after,\n.acf-admin-page .acf-field-edit-terms .select2-selection__arrow:after,\n.acf-admin-page .acf-field-delete-terms .select2-selection__arrow:after,\n.acf-admin-page .acf-field-assign-terms .select2-selection__arrow:after,\n.acf-admin-page .acf-field-meta-box .select2-selection__arrow:after {\n content: \"\";\n display: block;\n position: absolute;\n z-index: 850;\n top: 1px;\n left: 0;\n width: 20px;\n height: 20px;\n -webkit-mask-image: url(\"../../images/icons/icon-chevron-down.svg\");\n mask-image: url(\"../../images/icons/icon-chevron-down.svg\");\n background-color: #667085;\n border: none;\n border-radius: 0;\n -webkit-mask-size: contain;\n mask-size: contain;\n -webkit-mask-repeat: no-repeat;\n mask-repeat: no-repeat;\n -webkit-mask-position: center;\n mask-position: center;\n text-indent: 500%;\n white-space: nowrap;\n overflow: hidden;\n}\n.acf-admin-page .acf-field-setting-type .select2-selection__arrow b[role=presentation],\n.acf-admin-page .acf-field-permalink-rewrite .select2-selection__arrow b[role=presentation],\n.acf-admin-page .acf-field-query-var .select2-selection__arrow b[role=presentation],\n.acf-admin-page .acf-field-capability .select2-selection__arrow b[role=presentation],\n.acf-admin-page .acf-field-parent-slug .select2-selection__arrow b[role=presentation],\n.acf-admin-page .acf-field-data-storage .select2-selection__arrow b[role=presentation],\n.acf-admin-page .acf-field-manage-terms .select2-selection__arrow b[role=presentation],\n.acf-admin-page .acf-field-edit-terms .select2-selection__arrow b[role=presentation],\n.acf-admin-page .acf-field-delete-terms .select2-selection__arrow b[role=presentation],\n.acf-admin-page .acf-field-assign-terms .select2-selection__arrow b[role=presentation],\n.acf-admin-page .acf-field-meta-box .select2-selection__arrow b[role=presentation] {\n display: none;\n}\n.acf-admin-page .acf-field-setting-type .select2-container--open .select2-selection__arrow:after,\n.acf-admin-page .acf-field-permalink-rewrite .select2-container--open .select2-selection__arrow:after,\n.acf-admin-page .acf-field-query-var .select2-container--open .select2-selection__arrow:after,\n.acf-admin-page .acf-field-capability .select2-container--open .select2-selection__arrow:after,\n.acf-admin-page .acf-field-parent-slug .select2-container--open .select2-selection__arrow:after,\n.acf-admin-page .acf-field-data-storage .select2-container--open .select2-selection__arrow:after,\n.acf-admin-page .acf-field-manage-terms .select2-container--open .select2-selection__arrow:after,\n.acf-admin-page .acf-field-edit-terms .select2-container--open .select2-selection__arrow:after,\n.acf-admin-page .acf-field-delete-terms .select2-container--open .select2-selection__arrow:after,\n.acf-admin-page .acf-field-assign-terms .select2-container--open .select2-selection__arrow:after,\n.acf-admin-page .acf-field-meta-box .select2-container--open .select2-selection__arrow:after {\n -webkit-mask-image: url(\"../../images/icons/icon-chevron-up.svg\");\n mask-image: url(\"../../images/icons/icon-chevron-up.svg\");\n}\n.acf-admin-page .field-type-select-results {\n position: relative;\n top: 4px;\n z-index: 1002;\n border-radius: 0 0 6px 6px;\n box-shadow: 0px 8px 24px 4px rgba(16, 24, 40, 0.12);\n}\n.acf-admin-page .field-type-select-results.select2-dropdown--above {\n display: flex;\n flex-direction: column-reverse;\n top: 0;\n border-radius: 6px 6px 0 0;\n z-index: 99999;\n}\n.select2-container.select2-container--open.acf-admin-page .field-type-select-results {\n box-shadow: 0px 0px 0px 3px #EBF5FA, 0px 8px 24px 4px rgba(16, 24, 40, 0.12);\n}\n\n.acf-admin-page .field-type-select-results .acf-selection.has-icon {\n margin-left: 6px;\n}\n.rtl.acf-admin-page .field-type-select-results .acf-selection.has-icon {\n margin-right: 6px;\n}\n\n.acf-admin-page .field-type-select-results .select2-search {\n position: relative;\n margin: 0;\n padding: 0;\n}\n.acf-admin-page .field-type-select-results .select2-search--dropdown:after {\n content: \"\";\n display: block;\n position: absolute;\n top: 12px;\n left: 13px;\n width: 16px;\n height: 16px;\n -webkit-mask-image: url(\"../../images/icons/icon-search.svg\");\n mask-image: url(\"../../images/icons/icon-search.svg\");\n background-color: #98A2B3;\n border: none;\n border-radius: 0;\n -webkit-mask-size: contain;\n mask-size: contain;\n -webkit-mask-repeat: no-repeat;\n mask-repeat: no-repeat;\n -webkit-mask-position: center;\n mask-position: center;\n text-indent: 500%;\n white-space: nowrap;\n overflow: hidden;\n}\n.rtl.acf-admin-page .field-type-select-results .select2-search--dropdown:after {\n right: 12px;\n left: auto;\n}\n\n.acf-admin-page .field-type-select-results .select2-search .select2-search__field {\n padding-left: 38px;\n border-right: 0;\n border-bottom: 0;\n border-left: 0;\n border-radius: 0;\n}\n.rtl.acf-admin-page .field-type-select-results .select2-search .select2-search__field {\n padding-right: 38px;\n padding-left: 0;\n}\n\n.acf-admin-page .field-type-select-results .select2-search .select2-search__field:focus {\n border-top-color: #D0D5DD;\n outline: 0;\n}\n.acf-admin-page .field-type-select-results .select2-results__options {\n max-height: 440px;\n}\n.acf-admin-page .field-type-select-results .select2-results__option .select2-results__option--highlighted {\n background-color: #0783BE !important;\n color: #F9FAFB !important;\n}\n.acf-admin-page .field-type-select-results .select2-results__option .select2-results__option {\n display: inline-flex;\n position: relative;\n width: calc(100% - 24px);\n min-height: 32px;\n padding-top: 0;\n padding-right: 12px;\n padding-bottom: 0;\n padding-left: 12px;\n align-items: center;\n}\n.acf-admin-page .field-type-select-results .select2-results__option .select2-results__option .field-type-icon {\n top: auto;\n width: 18px;\n height: 18px;\n margin-right: 2px;\n box-shadow: 0 0 0 1px #F9FAFB;\n}\n.acf-admin-page .field-type-select-results .select2-results__option .select2-results__option .field-type-icon:before {\n width: 9px;\n height: 9px;\n}\n.acf-admin-page .field-type-select-results .select2-results__option[aria-selected=true] {\n background-color: #EBF5FA !important;\n color: #344054 !important;\n}\n.acf-admin-page .field-type-select-results .select2-results__option[aria-selected=true]:after {\n content: \"\";\n right: 13px;\n position: absolute;\n width: 16px;\n height: 16px;\n -webkit-mask-image: url(\"../../images/icons/icon-check.svg\");\n mask-image: url(\"../../images/icons/icon-check.svg\");\n background-color: #0783BE;\n border: none;\n border-radius: 0;\n -webkit-mask-size: contain;\n mask-size: contain;\n -webkit-mask-repeat: no-repeat;\n mask-repeat: no-repeat;\n -webkit-mask-position: center;\n mask-position: center;\n text-indent: 500%;\n white-space: nowrap;\n overflow: hidden;\n}\n.rtl.acf-admin-page .field-type-select-results .select2-results__option[aria-selected=true]:after {\n left: 13px;\n right: auto;\n}\n\n.acf-admin-page .field-type-select-results .select2-results__group {\n display: inline-flex;\n align-items: center;\n width: calc(100% - 24px);\n min-height: 25px;\n background-color: #F9FAFB;\n border-top-width: 1px;\n border-top-style: solid;\n border-top-color: #EAECF0;\n border-bottom-width: 1px;\n border-bottom-style: solid;\n border-bottom-color: #EAECF0;\n color: #98A2B3;\n font-size: 11px;\n margin-bottom: 0;\n padding-top: 0;\n padding-right: 12px;\n padding-bottom: 0;\n padding-left: 12px;\n font-weight: normal;\n}\n.acf-admin-page.rtl .acf-field-setting-type .select2-selection__arrow:after,\n.acf-admin-page.rtl .acf-field-permalink-rewrite .select2-selection__arrow:after,\n.acf-admin-page.rtl .acf-field-query-var .select2-selection__arrow:after {\n right: auto;\n left: 10px;\n}\n\n.rtl.post-type-acf-field-group .acf-field-setting-name .acf-tip,\n.rtl.acf-internal-post-type .acf-field-setting-name .acf-tip {\n left: auto;\n right: 654px;\n}\n\n/*----------------------------------------------------------------------------\n*\n* Container sizes\n*\n*----------------------------------------------------------------------------*/\n.post-type-acf-field-group .metabox-holder.columns-1 #acf-field-group-fields,\n.post-type-acf-field-group .metabox-holder.columns-1 #acf-field-group-options,\n.post-type-acf-field-group .metabox-holder.columns-1 .meta-box-sortables.ui-sortable,\n.post-type-acf-field-group .metabox-holder.columns-1 .notice {\n max-width: 1440px;\n}\n\n/*----------------------------------------------------------------------------\n*\n* Max width for notices in 1 column edit field group layout\n*\n*----------------------------------------------------------------------------*/\n.post-type-acf-field-group.columns-1 .notice {\n max-width: 1440px;\n}\n\n/*----------------------------------------------------------------------------\n*\n* Widen edit field group headerbar for 2 column layout\n*\n*----------------------------------------------------------------------------*/\n.post-type-acf-field-group.columns-2 .acf-headerbar .acf-headerbar-inner {\n max-width: 100%;\n}\n\n/*----------------------------------------------------------------------------\n*\n* Post stuff\n*\n*----------------------------------------------------------------------------*/\n.post-type-acf-field-group #poststuff {\n margin-top: 0;\n margin-right: 0;\n margin-bottom: 0;\n margin-left: 0;\n padding-top: 0;\n padding-right: 0;\n padding-bottom: 0;\n padding-left: 0;\n}\n\n/*----------------------------------------------------------------------------\n*\n* Table\n*\n*----------------------------------------------------------------------------*/\n.post-type-acf-field-group #acf-field-group-fields .acf-field-list-wrap {\n overflow: hidden;\n border: none;\n border-radius: 0 0 8px 8px;\n box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.1);\n}\n.post-type-acf-field-group #acf-field-group-fields .acf-field-list-wrap.-empty {\n border-top-width: 1px;\n border-top-style: solid;\n border-top-color: #EAECF0;\n}\n.post-type-acf-field-group #acf-field-group-fields .acf-field-list-wrap.-empty .acf-thead,\n.post-type-acf-field-group #acf-field-group-fields .acf-field-list-wrap.-empty .acf-tfoot {\n display: none;\n}\n.post-type-acf-field-group #acf-field-group-fields .acf-field-list-wrap.-empty .no-fields-message {\n min-height: 280px;\n}\n\n/*----------------------------------------------------------------------------\n*\n* Table header\n*\n*----------------------------------------------------------------------------*/\n.post-type-acf-field-group .acf-thead {\n background-color: #F9FAFB;\n border-top-width: 1px;\n border-top-style: solid;\n border-top-color: #EAECF0;\n border-bottom-width: 1px;\n border-bottom-style: solid;\n border-bottom-color: #EAECF0;\n}\n.post-type-acf-field-group .acf-thead li {\n display: flex;\n align-items: center;\n min-height: 48px;\n padding-top: 0;\n padding-bottom: 0;\n color: #344054;\n font-weight: 500;\n}\n\n/*----------------------------------------------------------------------------\n*\n* Table body\n*\n*----------------------------------------------------------------------------*/\n.post-type-acf-field-group .acf-field-object {\n border-top-width: 1px;\n border-top-style: solid;\n border-top-color: #EAECF0;\n}\n.post-type-acf-field-group .acf-field-object:hover .acf-sortable-handle:before {\n display: inline-flex;\n}\n.post-type-acf-field-group .acf-field-object.acf-field-is-endpoint:before {\n display: block;\n content: \"\";\n height: 2px;\n width: 100%;\n background: #D0D5DD;\n margin-top: -1px;\n}\n.post-type-acf-field-group .acf-field-object.acf-field-is-endpoint.acf-field-object-accordion:before {\n display: none;\n}\n.post-type-acf-field-group .acf-field-object.acf-field-is-endpoint.acf-field-object-accordion:after {\n display: block;\n content: \"\";\n height: 2px;\n width: 100%;\n background: #D0D5DD;\n z-index: 500;\n}\n.post-type-acf-field-group .acf-field-object:hover {\n background-color: #f7fbfd;\n}\n.post-type-acf-field-group .acf-field-object.open {\n background-color: #fff;\n border-top-color: #A5D2E7;\n}\n.post-type-acf-field-group .acf-field-object.open .handle {\n background-color: #D8EBF5;\n border: none;\n text-shadow: none;\n}\n.post-type-acf-field-group .acf-field-object.open .handle a {\n color: #0783BE !important;\n}\n.post-type-acf-field-group .acf-field-object.open .handle a.delete-field {\n color: #a00 !important;\n}\n.post-type-acf-field-group .acf-field-object .acf-field-setting-type .acf-hl {\n margin: 0;\n}\n.post-type-acf-field-group .acf-field-object .acf-field-setting-type .acf-hl li {\n width: auto;\n}\n.post-type-acf-field-group .acf-field-object .acf-field-setting-type .acf-hl li:first-child {\n flex-grow: 1;\n margin-left: -10px;\n}\n.post-type-acf-field-group .acf-field-object .acf-field-setting-type .acf-hl li:nth-child(2) {\n padding-right: 0;\n}\n.post-type-acf-field-group .acf-field-object ul.acf-hl {\n display: flex;\n align-items: stretch;\n}\n.post-type-acf-field-group .acf-field-object .handle li {\n display: flex;\n align-items: top;\n flex-wrap: wrap;\n min-height: 60px;\n color: #344054;\n}\n.post-type-acf-field-group .acf-field-object .handle li.li-field-label {\n display: flex;\n flex-wrap: wrap;\n justify-content: flex-start;\n align-content: flex-start;\n align-items: flex-start;\n width: auto;\n}\n.post-type-acf-field-group .acf-field-object .handle li.li-field-label strong {\n font-weight: 500;\n}\n.post-type-acf-field-group .acf-field-object .handle li.li-field-label .row-options {\n width: 100%;\n}\n/*----------------------------------------------------------------------------\n*\n* Table footer\n*\n*----------------------------------------------------------------------------*/\n.post-type-acf-field-group .acf-tfoot {\n display: flex;\n align-items: center;\n justify-content: flex-end;\n min-height: 80px;\n box-sizing: border-box;\n padding-top: 8px;\n padding-right: 24px;\n padding-bottom: 8px;\n padding-left: 24px;\n background-color: #fff;\n border-top-width: 1px;\n border-top-style: solid;\n border-top-color: #EAECF0;\n}\n.post-type-acf-field-group .acf-tfoot .acf-fr {\n margin-top: 0;\n margin-right: 0;\n margin-bottom: 0;\n margin-left: 0;\n padding-top: 0;\n padding-right: 0;\n padding-bottom: 0;\n padding-left: 0;\n}\n\n/*----------------------------------------------------------------------------\n*\n* Edit field settings\n*\n*----------------------------------------------------------------------------*/\n.post-type-acf-field-group .acf-field-object .settings {\n box-sizing: border-box;\n padding-top: 0;\n padding-bottom: 0;\n background-color: #fff;\n border-left-width: 4px;\n border-left-style: solid;\n border-left-color: #6BB5D8;\n}\n\n/*----------------------------------------------------------------------------\n*\n* Main field settings container\n*\n*----------------------------------------------------------------------------*/\n.acf-field-settings-main {\n padding-top: 32px;\n padding-right: 0;\n padding-bottom: 32px;\n padding-left: 0;\n}\n.acf-field-settings-main .acf-field:last-of-type,\n.acf-field-settings-main .acf-field.acf-last-visible {\n margin-bottom: 0;\n}\n\n/*----------------------------------------------------------------------------\n*\n* Field label\n*\n*----------------------------------------------------------------------------*/\n.acf-field-settings .acf-label {\n display: block;\n justify-content: space-between;\n align-items: center;\n align-content: center;\n margin-top: 0;\n margin-right: 0;\n margin-bottom: 6px;\n margin-left: 0;\n}\n\n/*----------------------------------------------------------------------------\n*\n* Single field\n*\n*----------------------------------------------------------------------------*/\n.acf-field-settings .acf-field {\n box-sizing: border-box;\n width: 100%;\n margin-top: 0;\n margin-right: 0;\n margin-bottom: 32px;\n margin-left: 0;\n padding-top: 0;\n padding-right: 72px;\n padding-bottom: 0;\n padding-left: 72px;\n}\n@media screen and (max-width: 600px) {\n .acf-field-settings .acf-field {\n padding-right: 12px;\n padding-left: 12px;\n }\n}\n.acf-field-settings .acf-field .acf-label,\n.acf-field-settings .acf-field .acf-input {\n max-width: 600px;\n}\n.acf-field-settings .acf-field .acf-label.acf-input-sub,\n.acf-field-settings .acf-field .acf-input.acf-input-sub {\n max-width: 100%;\n}\n.acf-field-settings .acf-field .acf-label .acf-btn:disabled,\n.acf-field-settings .acf-field .acf-input .acf-btn:disabled {\n background-color: #F2F4F7;\n color: #98A2B3 !important;\n border: 1px #D0D5DD solid;\n cursor: default;\n}\n.acf-field-settings .acf-field .acf-input-wrap {\n overflow: visible;\n}\n\n/*----------------------------------------------------------------------------\n*\n* Field separators\n*\n*----------------------------------------------------------------------------*/\n.acf-field-settings .acf-field.acf-field-setting-label,\n.acf-field-settings .acf-field-setting-wrapper {\n padding-top: 24px;\n border-top-width: 1px;\n border-top-style: solid;\n border-top-color: #EAECF0;\n}\n\n.acf-field-settings .acf-field-setting-wrapper {\n margin-top: 24px;\n}\n\n/*----------------------------------------------------------------------------\n*\n* Informational Notes for specific fields\n*\n*----------------------------------------------------------------------------*/\n.acf-field-setting-bidirectional_notes .acf-label {\n display: none;\n}\n.acf-field-setting-bidirectional_notes .acf-feature-notice {\n background-color: #F9FAFB;\n border: 1px solid #EAECF0;\n border-radius: 6px;\n padding: 16px;\n color: #344054;\n position: relative;\n}\n.acf-field-setting-bidirectional_notes .acf-feature-notice.with-warning-icon {\n padding-left: 45px;\n}\n.acf-field-setting-bidirectional_notes .acf-feature-notice.with-warning-icon::before {\n content: \"\";\n display: block;\n position: absolute;\n top: 17px;\n left: 18px;\n z-index: 600;\n width: 18px;\n height: 18px;\n margin-right: 8px;\n background-color: #667085;\n border: none;\n border-radius: 0;\n -webkit-mask-size: contain;\n mask-size: contain;\n -webkit-mask-repeat: no-repeat;\n mask-repeat: no-repeat;\n -webkit-mask-position: center;\n mask-position: center;\n -webkit-mask-image: url(\"../../images/icons/icon-info.svg\");\n mask-image: url(\"../../images/icons/icon-info.svg\");\n}\n\n/*----------------------------------------------------------------------------\n*\n* Edit fields footer\n*\n*----------------------------------------------------------------------------*/\n.acf-field-settings .acf-field-settings-footer {\n display: flex;\n align-items: center;\n min-height: 72px;\n box-sizing: border-box;\n width: 100%;\n margin-top: 0;\n margin-right: 0;\n margin-bottom: 0;\n margin-left: 0;\n padding-top: 0;\n padding-right: 0;\n padding-bottom: 0;\n padding-left: 72px;\n border-top-width: 1px;\n border-top-style: solid;\n border-top-color: #EAECF0;\n}\n@media screen and (max-width: 600px) {\n .acf-field-settings .acf-field-settings-footer {\n padding-left: 12px;\n }\n}\n\n.rtl .acf-field-settings .acf-field-settings-footer {\n padding-top: 0;\n padding-right: 72px;\n padding-bottom: 0;\n padding-left: 0;\n}\n\n/*----------------------------------------------------------------------------\n*\n* Tabs\n*\n*----------------------------------------------------------------------------*/\n.acf-fields .acf-tab-wrap,\n.acf-admin-page.acf-internal-post-type .acf-tab-wrap,\n.acf-browse-fields-modal-wrap .acf-tab-wrap {\n background: #F9FAFB;\n border-bottom-color: #1D2939;\n}\n.acf-fields .acf-tab-wrap .acf-tab-group,\n.acf-admin-page.acf-internal-post-type .acf-tab-wrap .acf-tab-group,\n.acf-browse-fields-modal-wrap .acf-tab-wrap .acf-tab-group {\n padding-right: 24px;\n padding-left: 24px;\n border-top-width: 0;\n border-bottom-width: 1px;\n border-bottom-style: solid;\n border-bottom-color: #EAECF0;\n}\n.acf-fields .acf-field-settings-tab-bar,\n.acf-fields .acf-tab-wrap .acf-tab-group,\n.acf-admin-page.acf-internal-post-type .acf-field-settings-tab-bar,\n.acf-admin-page.acf-internal-post-type .acf-tab-wrap .acf-tab-group,\n.acf-browse-fields-modal-wrap .acf-field-settings-tab-bar,\n.acf-browse-fields-modal-wrap .acf-tab-wrap .acf-tab-group {\n display: flex;\n align-items: stretch;\n min-height: 48px;\n padding-top: 0;\n padding-right: 0;\n padding-bottom: 0;\n padding-left: 24px;\n margin-top: 0;\n margin-bottom: 0;\n border-bottom-width: 1px;\n border-bottom-style: solid;\n border-bottom-color: #EAECF0;\n}\n.acf-fields .acf-field-settings-tab-bar li,\n.acf-fields .acf-tab-wrap .acf-tab-group li,\n.acf-admin-page.acf-internal-post-type .acf-field-settings-tab-bar li,\n.acf-admin-page.acf-internal-post-type .acf-tab-wrap .acf-tab-group li,\n.acf-browse-fields-modal-wrap .acf-field-settings-tab-bar li,\n.acf-browse-fields-modal-wrap .acf-tab-wrap .acf-tab-group li {\n display: flex;\n margin-top: 0;\n margin-right: 24px;\n margin-bottom: 0;\n margin-left: 0;\n padding: 0;\n}\n.acf-fields .acf-field-settings-tab-bar li a,\n.acf-fields .acf-tab-wrap .acf-tab-group li a,\n.acf-admin-page.acf-internal-post-type .acf-field-settings-tab-bar li a,\n.acf-admin-page.acf-internal-post-type .acf-tab-wrap .acf-tab-group li a,\n.acf-browse-fields-modal-wrap .acf-field-settings-tab-bar li a,\n.acf-browse-fields-modal-wrap .acf-tab-wrap .acf-tab-group li a {\n box-sizing: border-box;\n display: inline-flex;\n align-items: center;\n height: 100%;\n padding-top: 3px;\n padding-right: 0;\n padding-bottom: 0;\n padding-left: 0;\n background: none;\n border-top: none;\n border-right: none;\n border-bottom-width: 3px;\n border-bottom-style: solid;\n border-bottom-color: transparent;\n border-left: none;\n color: #667085;\n font-weight: normal;\n}\n.acf-fields .acf-field-settings-tab-bar li a:focus-visible,\n.acf-fields .acf-tab-wrap .acf-tab-group li a:focus-visible,\n.acf-admin-page.acf-internal-post-type .acf-field-settings-tab-bar li a:focus-visible,\n.acf-admin-page.acf-internal-post-type .acf-tab-wrap .acf-tab-group li a:focus-visible,\n.acf-browse-fields-modal-wrap .acf-field-settings-tab-bar li a:focus-visible,\n.acf-browse-fields-modal-wrap .acf-tab-wrap .acf-tab-group li a:focus-visible {\n border: 1px solid #5897fb;\n}\n.acf-fields .acf-field-settings-tab-bar li a:hover,\n.acf-fields .acf-tab-wrap .acf-tab-group li a:hover,\n.acf-admin-page.acf-internal-post-type .acf-field-settings-tab-bar li a:hover,\n.acf-admin-page.acf-internal-post-type .acf-tab-wrap .acf-tab-group li a:hover,\n.acf-browse-fields-modal-wrap .acf-field-settings-tab-bar li a:hover,\n.acf-browse-fields-modal-wrap .acf-tab-wrap .acf-tab-group li a:hover {\n color: #1D2939;\n}\n.acf-fields .acf-field-settings-tab-bar li a:hover,\n.acf-fields .acf-tab-wrap .acf-tab-group li a:hover,\n.acf-admin-page.acf-internal-post-type .acf-field-settings-tab-bar li a:hover,\n.acf-admin-page.acf-internal-post-type .acf-tab-wrap .acf-tab-group li a:hover,\n.acf-browse-fields-modal-wrap .acf-field-settings-tab-bar li a:hover,\n.acf-browse-fields-modal-wrap .acf-tab-wrap .acf-tab-group li a:hover {\n background-color: transparent;\n}\n.acf-fields .acf-field-settings-tab-bar li.active a,\n.acf-fields .acf-tab-wrap .acf-tab-group li.active a,\n.acf-admin-page.acf-internal-post-type .acf-field-settings-tab-bar li.active a,\n.acf-admin-page.acf-internal-post-type .acf-tab-wrap .acf-tab-group li.active a,\n.acf-browse-fields-modal-wrap .acf-field-settings-tab-bar li.active a,\n.acf-browse-fields-modal-wrap .acf-tab-wrap .acf-tab-group li.active a {\n background: none;\n border-bottom-color: #0783BE;\n color: #0783BE;\n}\n.acf-fields .acf-field-settings-tab-bar li.active a:focus-visible,\n.acf-fields .acf-tab-wrap .acf-tab-group li.active a:focus-visible,\n.acf-admin-page.acf-internal-post-type .acf-field-settings-tab-bar li.active a:focus-visible,\n.acf-admin-page.acf-internal-post-type .acf-tab-wrap .acf-tab-group li.active a:focus-visible,\n.acf-browse-fields-modal-wrap .acf-field-settings-tab-bar li.active a:focus-visible,\n.acf-browse-fields-modal-wrap .acf-tab-wrap .acf-tab-group li.active a:focus-visible {\n border-bottom-color: #0783BE;\n border-bottom-width: 3px;\n}\n\n.acf-admin-page.acf-internal-post-type .acf-field-editor .acf-field-settings-tab-bar {\n padding-left: 72px;\n}\n@media screen and (max-width: 600px) {\n .acf-admin-page.acf-internal-post-type .acf-field-editor .acf-field-settings-tab-bar {\n padding-left: 12px;\n }\n}\n\n/*----------------------------------------------------------------------------\n*\n* Field group settings\n*\n*----------------------------------------------------------------------------*/\n#acf-field-group-options .field-group-settings-tab {\n padding-top: 24px;\n padding-right: 24px;\n padding-bottom: 24px;\n padding-left: 24px;\n}\n#acf-field-group-options .field-group-settings-tab .acf-field:last-of-type {\n padding: 0;\n}\n#acf-field-group-options .acf-field {\n border: none;\n margin-top: 0;\n margin-right: 0;\n margin-bottom: 0;\n margin-left: 0;\n padding-top: 0;\n padding-right: 0;\n padding-bottom: 24px;\n padding-left: 0;\n}\n#acf-field-group-options .field-group-setting-split-container {\n display: flex;\n padding-top: 0;\n padding-right: 0;\n padding-bottom: 0;\n padding-left: 0;\n}\n#acf-field-group-options .field-group-setting-split-container .field-group-setting-split {\n box-sizing: border-box;\n padding-top: 24px;\n padding-right: 24px;\n padding-bottom: 24px;\n padding-left: 24px;\n}\n#acf-field-group-options .field-group-setting-split-container .field-group-setting-split:nth-child(1) {\n flex: 1 0 auto;\n}\n#acf-field-group-options .field-group-setting-split-container .field-group-setting-split:nth-child(2n) {\n flex: 1 0 auto;\n max-width: 320px;\n margin-top: 0;\n margin-right: 0;\n margin-bottom: 0;\n margin-left: 32px;\n padding-right: 32px;\n padding-left: 32px;\n border-left-width: 1px;\n border-left-style: solid;\n border-left-color: #EAECF0;\n}\n#acf-field-group-options .acf-field[data-name=description] {\n max-width: 600px;\n}\n#acf-field-group-options .acf-button-group {\n display: inline-flex;\n}\n\n.rtl #acf-field-group-options .field-group-setting-split-container .field-group-setting-split:nth-child(2n) {\n margin-right: 32px;\n margin-left: 0;\n border-left: none;\n border-right-width: 1px;\n border-right-style: solid;\n border-right-color: #EAECF0;\n}\n\n/*----------------------------------------------------------------------------\n*\n* Reorder handles\n*\n*----------------------------------------------------------------------------*/\n.acf-field-list .li-field-order {\n padding: 0;\n display: flex;\n flex-direction: row;\n flex-wrap: nowrap;\n justify-content: center;\n align-content: stretch;\n align-items: stretch;\n background-color: transparent;\n}\n.acf-field-list .acf-sortable-handle {\n display: flex;\n flex-direction: row;\n flex-wrap: nowrap;\n justify-content: center;\n align-content: flex-start;\n align-items: flex-start;\n width: 100%;\n height: 100%;\n position: relative;\n padding-top: 11px;\n padding-bottom: 8px;\n background-color: transparent;\n border: none;\n border-radius: 0;\n}\n.acf-field-list .acf-sortable-handle:hover {\n cursor: grab;\n}\n.acf-field-list .acf-sortable-handle:before {\n content: \"\";\n display: none;\n position: absolute;\n top: 16px;\n left: 8px;\n width: 16px;\n height: 16px;\n width: 12px;\n height: 12px;\n background-color: #98A2B3;\n border: none;\n border-radius: 0;\n -webkit-mask-size: contain;\n mask-size: contain;\n -webkit-mask-repeat: no-repeat;\n mask-repeat: no-repeat;\n -webkit-mask-position: center;\n mask-position: center;\n text-indent: 500%;\n white-space: nowrap;\n overflow: hidden;\n -webkit-mask-image: url(\"../../images/icons/icon-draggable.svg\");\n mask-image: url(\"../../images/icons/icon-draggable.svg\");\n}\n\n.rtl .acf-field-list .acf-sortable-handle:before {\n left: 0;\n right: 8px;\n}\n\n/*----------------------------------------------------------------------------\n*\n* Expand / collapse field icon\n*\n*----------------------------------------------------------------------------*/\n.acf-field-object .li-field-label {\n position: relative;\n padding-left: 40px;\n}\n.acf-field-object .li-field-label:before {\n content: \"\";\n display: block;\n position: absolute;\n left: 6px;\n display: inline-flex;\n width: 18px;\n height: 18px;\n margin-top: -2px;\n background-color: #667085;\n border: none;\n border-radius: 0;\n -webkit-mask-size: contain;\n mask-size: contain;\n -webkit-mask-repeat: no-repeat;\n mask-repeat: no-repeat;\n -webkit-mask-position: center;\n mask-position: center;\n text-indent: 500%;\n white-space: nowrap;\n overflow: hidden;\n -webkit-mask-image: url(\"../../images/icons/icon-chevron-down.svg\");\n mask-image: url(\"../../images/icons/icon-chevron-down.svg\");\n}\n.acf-field-object .li-field-label:hover:before {\n cursor: pointer;\n}\n\n.rtl .acf-field-object .li-field-label {\n padding-left: 0;\n padding-right: 40px;\n}\n.rtl .acf-field-object .li-field-label:before {\n left: 0;\n right: 6px;\n -webkit-mask-image: url(\"../../images/icons/icon-chevron-down.svg\");\n mask-image: url(\"../../images/icons/icon-chevron-down.svg\");\n}\n.rtl .acf-field-object.open .li-field-label:before {\n -webkit-mask-image: url(\"../../images/icons/icon-chevron-down.svg\");\n mask-image: url(\"../../images/icons/icon-chevron-down.svg\");\n}\n.rtl .acf-field-object.open .acf-input-sub .li-field-label:before {\n -webkit-mask-image: url(\"../../images/icons/icon-chevron-right.svg\");\n mask-image: url(\"../../images/icons/icon-chevron-right.svg\");\n}\n.rtl .acf-field-object.open .acf-input-sub .acf-field-object.open .li-field-label:before {\n -webkit-mask-image: url(\"../../images/icons/icon-chevron-down.svg\");\n mask-image: url(\"../../images/icons/icon-chevron-down.svg\");\n}\n\n.acf-thead .li-field-label {\n padding-left: 40px;\n}\n.rtl .acf-thead .li-field-label {\n padding-left: 0;\n padding-right: 40px;\n}\n\n/*----------------------------------------------------------------------------\n*\n* Conditional logic layout\n*\n*----------------------------------------------------------------------------*/\n.acf-field-settings-main-conditional-logic .acf-conditional-toggle {\n display: flex;\n padding-right: 72px;\n padding-left: 72px;\n}\n@media screen and (max-width: 600px) {\n .acf-field-settings-main-conditional-logic .acf-conditional-toggle {\n padding-left: 12px;\n }\n}\n.acf-field-settings-main-conditional-logic .acf-field {\n flex-wrap: wrap;\n margin-bottom: 0;\n padding-right: 0;\n padding-left: 0;\n}\n.acf-field-settings-main-conditional-logic .acf-field .rule-groups {\n flex: 0 1 100%;\n order: 3;\n margin-top: 32px;\n padding-top: 32px;\n padding-right: 72px;\n padding-left: 72px;\n border-top-width: 1px;\n border-top-style: solid;\n border-top-color: #EAECF0;\n}\n@media screen and (max-width: 600px) {\n .acf-field-settings-main-conditional-logic .acf-field .rule-groups {\n padding-left: 12px;\n }\n .acf-field-settings-main-conditional-logic .acf-field .rule-groups table.acf-table tbody tr {\n display: flex;\n flex-wrap: wrap;\n justify-content: flex-start;\n align-content: flex-start;\n align-items: flex-start;\n }\n .acf-field-settings-main-conditional-logic .acf-field .rule-groups table.acf-table tbody tr td {\n flex: 1 1 100%;\n }\n}\n\n/*----------------------------------------------------------------------------\n*\n* Prefix & append styling\n*\n*----------------------------------------------------------------------------*/\n.acf-input .acf-input-prepend,\n.acf-input .acf-input-append {\n display: inline-flex;\n align-items: center;\n height: 100%;\n min-height: 40px;\n padding-right: 12px;\n padding-left: 12px;\n background-color: #F9FAFB;\n border-color: #D0D5DD;\n box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.1);\n color: #667085;\n}\n.acf-input .acf-input-prepend {\n border-radius: 6px 0 0 6px;\n}\n.acf-input .acf-input-append {\n border-radius: 0 6px 6px 0;\n}\n\n/*----------------------------------------------------------------------------\n*\n* ACF input wrap\n*\n*----------------------------------------------------------------------------*/\n.acf-input-wrap {\n display: flex;\n}\n\n.acf-field-settings-main-presentation .acf-input-wrap {\n display: flex;\n}\n\n/*----------------------------------------------------------------------------\n*\n* Empty state\n*\n*----------------------------------------------------------------------------*/\n.post-type-acf-field-group #acf-field-group-fields .acf-field-list.-empty .no-fields-message {\n display: flex;\n justify-content: center;\n padding-top: 48px;\n padding-bottom: 48px;\n}\n.post-type-acf-field-group #acf-field-group-fields .acf-field-list.-empty .no-fields-message .no-fields-message-inner {\n display: flex;\n flex-wrap: wrap;\n justify-content: center;\n align-content: center;\n align-items: flex-start;\n text-align: center;\n max-width: 400px;\n}\n.post-type-acf-field-group #acf-field-group-fields .acf-field-list.-empty .no-fields-message .no-fields-message-inner img,\n.post-type-acf-field-group #acf-field-group-fields .acf-field-list.-empty .no-fields-message .no-fields-message-inner h2,\n.post-type-acf-field-group #acf-field-group-fields .acf-field-list.-empty .no-fields-message .no-fields-message-inner p {\n flex: 1 0 100%;\n}\n.post-type-acf-field-group #acf-field-group-fields .acf-field-list.-empty .no-fields-message .no-fields-message-inner h2 {\n margin-top: 32px;\n margin-bottom: 0;\n padding: 0;\n color: #344054;\n}\n.post-type-acf-field-group #acf-field-group-fields .acf-field-list.-empty .no-fields-message .no-fields-message-inner p {\n margin-top: 12px;\n margin-bottom: 0;\n padding: 0;\n color: #667085;\n}\n.post-type-acf-field-group #acf-field-group-fields .acf-field-list.-empty .no-fields-message .no-fields-message-inner p.acf-small {\n margin-top: 32px;\n}\n.post-type-acf-field-group #acf-field-group-fields .acf-field-list.-empty .no-fields-message .no-fields-message-inner img {\n max-width: 284px;\n margin-bottom: 0;\n}\n.post-type-acf-field-group #acf-field-group-fields .acf-field-list.-empty .no-fields-message .no-fields-message-inner .acf-btn {\n margin-top: 32px;\n}\n\n/*----------------------------------------------------------------------------\n*\n* Hide add title prompt label\n*\n*----------------------------------------------------------------------------*/\n.post-type-acf-field-group .acf-headerbar #title-prompt-text {\n display: none;\n}\n\n/*----------------------------------------------------------------------------\n*\n* Modal styling\n*\n*----------------------------------------------------------------------------*/\n.acf-admin-page #acf-popup .acf-popup-box {\n min-width: 480px;\n}\n.acf-admin-page #acf-popup .acf-popup-box .title {\n display: flex;\n align-items: center;\n align-content: center;\n justify-content: space-between;\n min-height: 64px;\n box-sizing: border-box;\n margin: 0;\n padding-right: 24px;\n padding-left: 24px;\n border-bottom-width: 1px;\n border-bottom-style: solid;\n border-bottom-color: #EAECF0;\n}\n.acf-admin-page #acf-popup .acf-popup-box .title h1,\n.acf-admin-page #acf-popup .acf-popup-box .title h2,\n.acf-admin-page #acf-popup .acf-popup-box .title h3,\n.acf-admin-page #acf-popup .acf-popup-box .title h4 {\n padding-left: 0;\n color: #344054;\n}\n.acf-admin-page #acf-popup .acf-popup-box .title .acf-icon {\n display: block;\n position: relative;\n top: auto;\n right: auto;\n width: 22px;\n height: 22px;\n background-color: transparent;\n color: transparent;\n}\n.acf-admin-page #acf-popup .acf-popup-box .title .acf-icon:before {\n display: inline-flex;\n position: absolute;\n top: 0;\n left: 0;\n width: 22px;\n height: 22px;\n background-color: #667085;\n border: none;\n border-radius: 0;\n -webkit-mask-size: contain;\n mask-size: contain;\n -webkit-mask-repeat: no-repeat;\n mask-repeat: no-repeat;\n -webkit-mask-position: center;\n mask-position: center;\n text-indent: 500%;\n white-space: nowrap;\n overflow: hidden;\n -webkit-mask-image: url(\"../../images/icons/icon-close-circle.svg\");\n mask-image: url(\"../../images/icons/icon-close-circle.svg\");\n}\n.acf-admin-page #acf-popup .acf-popup-box .title .acf-icon:hover:before {\n background-color: #0783BE;\n}\n.acf-admin-page #acf-popup .acf-popup-box .inner {\n box-sizing: border-box;\n margin: 0;\n padding-top: 24px;\n padding-right: 24px;\n padding-bottom: 24px;\n padding-left: 24px;\n border-top: none;\n}\n.acf-admin-page #acf-popup .acf-popup-box .inner p {\n margin-top: 0;\n margin-bottom: 0;\n}\n.acf-admin-page #acf-popup .acf-popup-box #acf-move-field-form .acf-field-select,\n.acf-admin-page #acf-popup .acf-popup-box #acf-link-field-groups-form .acf-field-select {\n margin-top: 0;\n}\n.acf-admin-page .acf-link-field-groups-popup .acf-popup-box .title h3,\n.acf-admin-page .acf-create-options-page-popup .acf-popup-box .title h3 {\n color: #1D2939;\n font-weight: 500;\n}\n.acf-admin-page .acf-link-field-groups-popup .acf-popup-box .title h3:before,\n.acf-admin-page .acf-create-options-page-popup .acf-popup-box .title h3:before {\n content: \"\";\n width: 18px;\n height: 18px;\n background: #98A2B3;\n margin-right: 9px;\n}\n.acf-admin-page .acf-link-field-groups-popup .acf-popup-box .inner,\n.acf-admin-page .acf-create-options-page-popup .acf-popup-box .inner {\n padding: 0 !important;\n}\n.acf-admin-page .acf-link-field-groups-popup .acf-popup-box .inner .acf-field-select,\n.acf-admin-page .acf-link-field-groups-popup .acf-popup-box .inner .acf-link-successful,\n.acf-admin-page .acf-create-options-page-popup .acf-popup-box .inner .acf-field-select,\n.acf-admin-page .acf-create-options-page-popup .acf-popup-box .inner .acf-link-successful {\n padding: 32px 24px;\n margin-bottom: 0;\n}\n.acf-admin-page .acf-link-field-groups-popup .acf-popup-box .inner .acf-field-select .description,\n.acf-admin-page .acf-link-field-groups-popup .acf-popup-box .inner .acf-link-successful .description,\n.acf-admin-page .acf-create-options-page-popup .acf-popup-box .inner .acf-field-select .description,\n.acf-admin-page .acf-create-options-page-popup .acf-popup-box .inner .acf-link-successful .description {\n margin-top: 6px !important;\n}\n.acf-admin-page .acf-link-field-groups-popup .acf-popup-box .inner .acf-actions,\n.acf-admin-page .acf-create-options-page-popup .acf-popup-box .inner .acf-actions {\n background: #F9FAFB;\n border-top: 1px solid #EAECF0;\n padding-top: 20px;\n padding-left: 24px;\n padding-bottom: 20px;\n padding-right: 24px;\n border-bottom-left-radius: 8px;\n border-bottom-right-radius: 8px;\n}\n.acf-admin-page .acf-link-field-groups-popup .acf-popup-box .inner .acf-actions .acf-btn,\n.acf-admin-page .acf-create-options-page-popup .acf-popup-box .inner .acf-actions .acf-btn {\n display: inline-block;\n margin-left: 8px;\n}\n.acf-admin-page .acf-link-field-groups-popup .acf-popup-box .inner .acf-actions .acf-btn.acf-btn-primary,\n.acf-admin-page .acf-create-options-page-popup .acf-popup-box .inner .acf-actions .acf-btn.acf-btn-primary {\n width: 120px;\n}\n.acf-admin-page .acf-create-options-page-popup .acf-popup-box .inner .acf-error-message.-success {\n display: none;\n}\n.acf-admin-page .acf-create-options-page-popup .acf-popup-box .inner .-dismiss {\n margin: 24px 32px !important;\n}\n.acf-admin-page .acf-create-options-page-popup .acf-popup-box .inner .acf-field {\n padding: 24px 32px 0 32px;\n margin: 0;\n}\n.acf-admin-page .acf-create-options-page-popup .acf-popup-box .inner .acf-field.acf-error .acf-input-wrap {\n overflow: inherit;\n}\n.acf-admin-page .acf-create-options-page-popup .acf-popup-box .inner .acf-field.acf-error .acf-input-wrap input[type=text] {\n border: 1px rgba(209, 55, 55, 0.5) solid !important;\n box-shadow: 0px 0px 0px 3px rgba(209, 55, 55, 0.12), 0px 0px 0px rgba(255, 54, 54, 0.25) !important;\n background-image: url(../../images/icons/icon-info-red.svg);\n background-position: right 10px top 50%;\n background-size: 14px;\n background-repeat: no-repeat;\n}\n.acf-admin-page .acf-create-options-page-popup .acf-popup-box .inner .acf-field .acf-options-page-modal-error p {\n font-size: 12px;\n color: #D13737;\n}\n.acf-admin-page .acf-create-options-page-popup .acf-popup-box .inner .acf-actions {\n margin-top: 32px;\n}\n.acf-admin-page .acf-create-options-page-popup .acf-popup-box .inner .acf-actions .acf-btn:disabled {\n background-color: #0783BE;\n}\n\n/*----------------------------------------------------------------------------\n*\n* Hide original #post-body-content from edit field group page\n*\n*----------------------------------------------------------------------------*/\n.acf-admin-single-field-group #post-body-content {\n display: none;\n}\n\n/*----------------------------------------------------------------------------\n*\n* Settings section footer\n*\n*----------------------------------------------------------------------------*/\n.acf-field-group-settings-footer {\n display: flex;\n justify-content: space-between;\n align-content: stretch;\n align-items: center;\n position: relative;\n min-height: 88px;\n margin-right: -24px;\n margin-left: -24px;\n margin-bottom: -24px;\n padding-right: 24px;\n padding-left: 24px;\n border-top-width: 1px;\n border-top-style: solid;\n border-top-color: #EAECF0;\n}\n.acf-field-group-settings-footer .acf-created-on {\n display: inline-flex;\n justify-content: flex-start;\n align-content: stretch;\n align-items: center;\n color: #667085;\n}\n.acf-field-group-settings-footer .acf-created-on:before {\n content: \"\";\n display: inline-block;\n width: 20px;\n height: 20px;\n margin-right: 8px;\n background-color: #98A2B3;\n border: none;\n border-radius: 0;\n -webkit-mask-size: contain;\n mask-size: contain;\n -webkit-mask-repeat: no-repeat;\n mask-repeat: no-repeat;\n -webkit-mask-position: center;\n mask-position: center;\n -webkit-mask-image: url(\"../../images/icons/icon-time.svg\");\n mask-image: url(\"../../images/icons/icon-time.svg\");\n}\n\n/*----------------------------------------------------------------------------\n*\n* Conditional logic enabled badge\n*\n*----------------------------------------------------------------------------*/\n.conditional-logic-badge {\n display: none;\n}\n.conditional-logic-badge.is-enabled {\n display: inline-block;\n width: 6px;\n height: 6px;\n overflow: hidden;\n margin-left: 8px;\n background-color: rgba(82, 170, 89, 0.4);\n border-width: 1px;\n border-style: solid;\n border-color: #52AA59;\n border-radius: 100px;\n text-indent: 100%;\n white-space: nowrap;\n}\n\n/*----------------------------------------------------------------------------\n*\n* Field settings container\n*\n*----------------------------------------------------------------------------*/\n.acf-field-type-settings {\n container-name: settings;\n container-type: inline-size;\n}\n\n/*----------------------------------------------------------------------------\n*\n* Split field settings\n*\n*----------------------------------------------------------------------------*/\n.acf-field-settings-split {\n display: flex;\n border-top-width: 1px;\n border-top-style: solid;\n border-top-color: #EAECF0;\n}\n.acf-field-settings-split .acf-field {\n margin: 0;\n padding-top: 32px;\n padding-bottom: 32px;\n}\n.acf-field-settings-split .acf-field:nth-child(2n) {\n border-left-width: 1px;\n border-left-style: solid;\n border-left-color: #EAECF0;\n}\n\n@container settings (max-width: 1170px) {\n .acf-field-settings-split {\n border: none;\n flex-direction: column;\n }\n .acf-field {\n border-top-width: 1px;\n border-top-style: solid;\n border-top-color: #EAECF0;\n }\n}\n/*----------------------------------------------------------------------------\n*\n* Display & return format\n*\n*----------------------------------------------------------------------------*/\n.acf-field-setting-display_format .acf-label,\n.acf-field-setting-return_format .acf-label {\n margin-bottom: 6px;\n}\n.acf-field-setting-display_format .acf-radio-list li,\n.acf-field-setting-return_format .acf-radio-list li {\n display: flex;\n}\n.acf-field-setting-display_format .acf-radio-list li label,\n.acf-field-setting-return_format .acf-radio-list li label {\n display: inline-flex;\n width: 100%;\n}\n.acf-field-setting-display_format .acf-radio-list li label span,\n.acf-field-setting-return_format .acf-radio-list li label span {\n flex: 1 1 auto;\n}\n.acf-field-setting-display_format .acf-radio-list li label code,\n.acf-field-setting-return_format .acf-radio-list li label code {\n padding-right: 8px;\n padding-left: 8px;\n background-color: #F2F4F7;\n border-radius: 4px;\n color: #475467;\n}\n.acf-field-setting-display_format .acf-radio-list li input[type=text],\n.acf-field-setting-return_format .acf-radio-list li input[type=text] {\n height: 32px;\n}\n\n.acf-field-settings .acf-field-setting-first_day {\n padding-top: 32px;\n border-top-width: 1px;\n border-top-style: solid;\n border-top-color: #EAECF0;\n}\n\n/*----------------------------------------------------------------------------\n*\n* Image and Gallery fields\n*\n*----------------------------------------------------------------------------*/\n.acf-field-object-image .acf-hl[data-cols=\"3\"] > li,\n.acf-field-object-gallery .acf-hl[data-cols=\"3\"] > li {\n width: auto;\n}\n\n/*----------------------------------------------------------------------------\n*\n* Appended fields fields\n*\n*----------------------------------------------------------------------------*/\n.acf-field-settings .acf-field-appended {\n overflow: auto;\n}\n.acf-field-settings .acf-field-appended .acf-input {\n float: left;\n}\n\n/*----------------------------------------------------------------------------\n*\n* Flexible widths for image minimum / maximum size fields\n*\n*----------------------------------------------------------------------------*/\n.acf-field-settings .acf-field.acf-field-setting-min_width .acf-input,\n.acf-field-settings .acf-field.acf-field-setting-max_width .acf-input {\n max-width: none;\n}\n.acf-field-settings .acf-field.acf-field-setting-min_width .acf-input-wrap input[type=text],\n.acf-field-settings .acf-field.acf-field-setting-max_width .acf-input-wrap input[type=text] {\n max-width: 81px;\n}\n\n/*----------------------------------------------------------------------------\n*\n* Temporary fix to hide pagination setting for repeaters used as subfields.\n*\n*----------------------------------------------------------------------------*/\n.post-type-acf-field-group .acf-field-object-flexible-content .acf-field-setting-pagination {\n display: none;\n}\n.post-type-acf-field-group .acf-field-object-repeater .acf-field-object-repeater .acf-field-setting-pagination {\n display: none;\n}\n\n/*----------------------------------------------------------------------------\n*\n* Flexible content field width\n*\n*----------------------------------------------------------------------------*/\n.acf-admin-single-field-group .acf-field-object-flexible-content .acf-is-subfields .acf-field-object .acf-label,\n.acf-admin-single-field-group .acf-field-object-flexible-content .acf-is-subfields .acf-field-object .acf-input {\n max-width: 600px;\n}\n\n/*----------------------------------------------------------------------------\n*\n* Fix default value checkbox focus state\n*\n*----------------------------------------------------------------------------*/\n.acf-admin-single-field-group .acf-field.acf-field-true-false.acf-field-setting-default_value .acf-true-false {\n border: none;\n}\n.acf-admin-single-field-group .acf-field.acf-field-true-false.acf-field-setting-default_value .acf-true-false input[type=checkbox] {\n margin-right: 0;\n}\n\n/*----------------------------------------------------------------------------\n*\n* With front field extra spacing\n*\n*----------------------------------------------------------------------------*/\n.acf-field.acf-field-with-front {\n margin-top: 32px;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Sub-fields layout\n*\n*---------------------------------------------------------------------------------------------*/\n.post-type-acf-field-group #acf-field-group-fields .acf-field-list-wrap .acf-input-sub {\n max-width: 100%;\n overflow: hidden;\n border-radius: 8px;\n border-width: 1px;\n border-style: solid;\n border-color: #dbdfe5;\n box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.1);\n}\n.post-type-acf-field-group #acf-field-group-fields .acf-field-list-wrap .acf-input-sub .acf-sub-field-list-header {\n display: flex;\n justify-content: space-between;\n align-content: stretch;\n align-items: center;\n min-height: 64px;\n padding-right: 24px;\n padding-left: 24px;\n}\n.post-type-acf-field-group #acf-field-group-fields .acf-field-list-wrap .acf-input-sub .acf-field-list-wrap {\n box-shadow: none;\n}\n.post-type-acf-field-group #acf-field-group-fields .acf-field-list-wrap .acf-input-sub .acf-hl.acf-tfoot {\n min-height: 64px;\n align-items: center;\n}\n.post-type-acf-field-group #acf-field-group-fields .acf-field-list-wrap .acf-input-sub .acf-input.acf-input-sub {\n max-width: 100%;\n margin-right: 0;\n margin-left: 0;\n}\n\n.post-type-acf-field-group .acf-input-sub .acf-field-object .acf-sortable-handle {\n width: 100%;\n height: 100%;\n}\n\n.post-type-acf-field-group .acf-field-object:hover .acf-input-sub .acf-sortable-handle:before {\n display: none;\n}\n\n.post-type-acf-field-group .acf-field-object:hover .acf-input-sub .acf-field-list .acf-field-object:hover .acf-sortable-handle:before {\n display: block;\n}\n\n.post-type-acf-field-group .acf-field-object .acf-is-subfields .acf-thead .li-field-label:before {\n display: none;\n}\n\n.post-type-acf-field-group #acf-field-group-fields .acf-field-list-wrap .acf-input-sub .acf-field-object.open {\n border-top-color: #dbdfe5;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Flexible content field\n*\n*---------------------------------------------------------------------------------------------*/\n.post-type-acf-field-group i.acf-icon.-duplicate.duplicate-layout {\n margin: 0 auto !important;\n background-color: #667085;\n color: #667085;\n}\n.post-type-acf-field-group i.acf-icon.acf-icon-trash.delete-layout {\n margin: 0 auto !important;\n background-color: #667085;\n color: #667085;\n}\n.post-type-acf-field-group button.acf-btn.acf-btn-tertiary.acf-field-setting-fc-duplicate, .post-type-acf-field-group button.acf-btn.acf-btn-tertiary.acf-field-setting-fc-delete {\n background-color: #ffffff !important;\n box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.1);\n border-radius: 6px;\n width: 32px;\n height: 32px !important;\n min-height: 32px;\n padding: 0;\n}\n.post-type-acf-field-group button.add-layout.acf-btn.acf-btn-primary.add-field,\n.post-type-acf-field-group .acf-sub-field-list-header a.acf-btn.acf-btn-secondary.add-field,\n.post-type-acf-field-group .acf-field-list-wrap.acf-is-subfields a.acf-btn.acf-btn-secondary.add-field {\n height: 32px !important;\n min-height: 32px;\n margin-left: 5px;\n}\n.post-type-acf-field-group .acf-field.acf-field-setting-fc_layout {\n background-color: #ffffff;\n margin-bottom: 16px;\n}\n.post-type-acf-field-group .acf-field-setting-fc_layout {\n overflow: hidden;\n width: calc(100% - 144px);\n margin-right: 72px;\n margin-left: 72px;\n padding-right: 0;\n padding-left: 0;\n border-width: 1px;\n border-style: solid;\n border-color: #dbdfe5;\n border-radius: 8px;\n box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.1);\n}\n.post-type-acf-field-group .acf-field-setting-fc_layout .acf-field-layout-settings.open {\n background-color: #ffffff;\n border-top-width: 1px;\n border-top-style: solid;\n border-top-color: #EAECF0;\n}\n@media screen and (max-width: 768px) {\n .post-type-acf-field-group .acf-field-setting-fc_layout {\n width: calc(100% - 16px);\n margin-right: 8px;\n margin-left: 8px;\n }\n}\n.post-type-acf-field-group .acf-field-setting-fc_layout .acf-input-sub {\n max-width: 100%;\n margin-right: 0;\n margin-left: 0;\n}\n.post-type-acf-field-group .acf-field-setting-fc_layout .acf-label,\n.post-type-acf-field-group .acf-field-setting-fc_layout .acf-input {\n max-width: 100% !important;\n}\n.post-type-acf-field-group .acf-field-setting-fc_layout .acf-input-sub {\n margin-right: 32px;\n margin-bottom: 32px;\n margin-left: 32px;\n}\n.post-type-acf-field-group .acf-field-setting-fc_layout .acf-fc-meta {\n max-width: 100%;\n padding-top: 24px;\n padding-right: 32px;\n padding-left: 32px;\n}\n.post-type-acf-field-group .acf-field-settings-fc_head {\n display: flex;\n align-items: center;\n justify-content: left;\n background-color: #F9FAFB;\n border-radius: 8px 8px 0px 0px;\n min-height: 64px;\n margin-bottom: 0px;\n padding-right: 24px;\n}\n.post-type-acf-field-group .acf-field-settings-fc_head .acf-fc_draggable {\n min-height: 64px;\n padding-left: 24px;\n display: flex;\n white-space: nowrap;\n}\n.post-type-acf-field-group .acf-field-settings-fc_head .acf-fc-layout-name {\n min-width: 0;\n color: #98A2B3;\n padding-left: 8px;\n font-size: 16px;\n}\n.post-type-acf-field-group .acf-field-settings-fc_head .acf-fc-layout-name.copyable:not(.input-copyable, .copy-unsupported):hover:after {\n width: 14px !important;\n height: 14px !important;\n}\n@media screen and (max-width: 880px) {\n .post-type-acf-field-group .acf-field-settings-fc_head .acf-fc-layout-name {\n display: none !important;\n }\n}\n.post-type-acf-field-group .acf-field-settings-fc_head .acf-fc-layout-name span {\n white-space: nowrap;\n overflow: hidden;\n text-overflow: ellipsis;\n}\n.post-type-acf-field-group .acf-field-settings-fc_head span.toggle-indicator {\n pointer-events: none;\n margin-top: 7px;\n}\n.post-type-acf-field-group .acf-field-settings-fc_head label {\n display: inline-flex;\n align-items: center;\n}\n.post-type-acf-field-group .acf-field-settings-fc_head label.acf-fc-layout-name {\n margin-left: 1rem;\n}\n@media screen and (max-width: 880px) {\n .post-type-acf-field-group .acf-field-settings-fc_head label.acf-fc-layout-name {\n display: none !important;\n }\n}\n.post-type-acf-field-group .acf-field-settings-fc_head label.acf-fc-layout-name span.acf-fc-layout-name {\n text-overflow: ellipsis;\n overflow: hidden;\n height: 22px;\n white-space: nowrap;\n}\n.post-type-acf-field-group .acf-field-settings-fc_head label.acf-fc-layout-label:before {\n content: \"\";\n display: inline-block;\n width: 20px;\n height: 20px;\n margin-right: 8px;\n background-color: #98A2B3;\n border: none;\n border-radius: 0;\n -webkit-mask-size: contain;\n mask-size: contain;\n -webkit-mask-repeat: no-repeat;\n mask-repeat: no-repeat;\n -webkit-mask-position: center;\n mask-position: center;\n}\n.rtl.post-type-acf-field-group .acf-field-settings-fc_head label.acf-fc-layout-label:before {\n padding-right: 10px;\n}\n\n.post-type-acf-field-group .acf-field-settings-fc_head .acf-fl-actions {\n display: flex;\n align-items: center;\n white-space: nowrap;\n margin-left: auto;\n}\n.post-type-acf-field-group .acf-field-settings-fc_head .acf-fl-actions .acf-fc-add-layout {\n margin-left: 10px;\n}\n.post-type-acf-field-group .acf-field-settings-fc_head .acf-fl-actions .acf-fc-add-layout .add-field {\n margin-left: 0px !important;\n}\n.post-type-acf-field-group .acf-field-settings-fc_head .acf-fl-actions li {\n margin-right: 4px;\n}\n.post-type-acf-field-group .acf-field-settings-fc_head .acf-fl-actions li:last-of-type {\n margin-right: 0;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Field open / closed icon state\n*\n*---------------------------------------------------------------------------------------------*/\n.post-type-acf-field-group .acf-field-object.open > .handle > .acf-tbody > .li-field-label::before {\n -webkit-mask-image: url(\"../../images/icons/icon-chevron-up.svg\");\n mask-image: url(\"../../images/icons/icon-chevron-up.svg\");\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Different coloured levels (current 5 supported)\n*\n*---------------------------------------------------------------------------------------------*/\n.post-type-acf-field-group #acf-field-group-fields .acf-field-list-wrap .acf-input-sub .acf-field-object .handle {\n background-color: transparent;\n}\n.post-type-acf-field-group #acf-field-group-fields .acf-field-list-wrap .acf-input-sub .acf-field-object .handle:hover {\n background-color: #f9f2fb;\n}\n.post-type-acf-field-group #acf-field-group-fields .acf-field-list-wrap .acf-input-sub .acf-field-object.open .handle {\n background-color: #f5eaf9;\n}\n.post-type-acf-field-group #acf-field-group-fields .acf-field-list-wrap .acf-input-sub .acf-field-object .settings {\n border-left-color: #BF7DD7;\n}\n.post-type-acf-field-group #acf-field-group-fields .acf-field-list-wrap .acf-input-sub .acf-input-sub .acf-field-object .handle {\n background-color: transparent;\n}\n.post-type-acf-field-group #acf-field-group-fields .acf-field-list-wrap .acf-input-sub .acf-input-sub .acf-field-object .handle:hover {\n background-color: #ebf7f4;\n}\n.post-type-acf-field-group #acf-field-group-fields .acf-field-list-wrap .acf-input-sub .acf-input-sub .acf-field-object.open .handle {\n background-color: #e3f4f0;\n}\n.post-type-acf-field-group #acf-field-group-fields .acf-field-list-wrap .acf-input-sub .acf-input-sub .acf-field-object .settings {\n border-left-color: #7CCDB9;\n}\n.post-type-acf-field-group #acf-field-group-fields .acf-field-list-wrap .acf-input-sub .acf-input-sub .acf-input-sub .acf-field-object .handle {\n background-color: transparent;\n}\n.post-type-acf-field-group #acf-field-group-fields .acf-field-list-wrap .acf-input-sub .acf-input-sub .acf-input-sub .acf-field-object .handle:hover {\n background-color: #fcf5f2;\n}\n.post-type-acf-field-group #acf-field-group-fields .acf-field-list-wrap .acf-input-sub .acf-input-sub .acf-input-sub .acf-field-object.open .handle {\n background-color: #fbeee9;\n}\n.post-type-acf-field-group #acf-field-group-fields .acf-field-list-wrap .acf-input-sub .acf-input-sub .acf-input-sub .acf-field-object .settings {\n border-left-color: #E29473;\n}\n.post-type-acf-field-group #acf-field-group-fields .acf-field-list-wrap .acf-input-sub .acf-input-sub .acf-input-sub .acf-input-sub .acf-field-object .handle {\n background-color: transparent;\n}\n.post-type-acf-field-group #acf-field-group-fields .acf-field-list-wrap .acf-input-sub .acf-input-sub .acf-input-sub .acf-input-sub .acf-field-object .handle:hover {\n background-color: #fafbfb;\n}\n.post-type-acf-field-group #acf-field-group-fields .acf-field-list-wrap .acf-input-sub .acf-input-sub .acf-input-sub .acf-input-sub .acf-field-object.open .handle {\n background-color: #f4f6f7;\n}\n.post-type-acf-field-group #acf-field-group-fields .acf-field-list-wrap .acf-input-sub .acf-input-sub .acf-input-sub .acf-input-sub .acf-field-object .settings {\n border-left-color: #A3B1B9;\n}","/*--------------------------------------------------------------------------------------------\n*\n*\tVars\n*\n*--------------------------------------------------------------------------------------------*/\n\n/* colors */\n$acf_blue: #2a9bd9;\n$acf_notice: #2a9bd9;\n$acf_error: #d94f4f;\n$acf_success: #49ad52;\n$acf_warning: #fd8d3b;\n\n/* acf-field */\n$field_padding: 15px 12px;\n$field_padding_x: 12px;\n$field_padding_y: 15px;\n$fp: 15px 12px;\n$fy: 15px;\n$fx: 12px;\n\n/* responsive */\n$md: 880px;\n$sm: 640px;\n\n// Admin.\n$wp-card-border: #ccd0d4;\t\t\t// Card border.\n$wp-card-border-1: #d5d9dd;\t\t // Card inner border 1: Structural (darker).\n$wp-card-border-2: #eeeeee;\t\t // Card inner border 2: Fields (lighter).\n$wp-input-border: #7e8993;\t\t // Input border.\n\n// Admin 3.8\n$wp38-card-border: #E5E5E5;\t\t // Card border.\n$wp38-card-border-1: #dfdfdf;\t\t// Card inner border 1: Structural (darker).\n$wp38-card-border-2: #eeeeee;\t\t// Card inner border 2: Fields (lighter).\n$wp38-input-border: #dddddd;\t\t // Input border.\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tACF 6 ↓\n*\n*--------------------------------------------------------------------------------------------*/\n\n// Grays\n$gray-50: #F9FAFB;\n$gray-100: #F2F4F7;\n$gray-200: #EAECF0;\n$gray-300: #D0D5DD;\n$gray-400: #98A2B3;\n$gray-500: #667085;\n$gray-600: #475467;\n$gray-700: #344054;\n$gray-800: #1D2939;\n$gray-900: #101828;\n\n// Blues\n$blue-50: #EBF5FA;\n$blue-100: #D8EBF5;\n$blue-200: #A5D2E7;\n$blue-300: #6BB5D8;\n$blue-400: #399CCB;\n$blue-500: #0783BE;\n$blue-600: #066998;\n$blue-700: #044E71;\n$blue-800: #033F5B;\n$blue-900: #032F45;\n\n// Utility\n$color-info:\t#2D69DA;\n$color-success:\t#52AA59;\n$color-warning:\t#F79009;\n$color-danger:\t#D13737;\n\n$color-primary: $blue-500;\n$color-primary-hover: $blue-600;\n$color-secondary: $gray-500;\n$color-secondary-hover: $gray-400;\n\n// Gradients\n$gradient-pro: linear-gradient(90.52deg, #3E8BFF 0.44%, #A45CFF 113.3%);\n\n// Border radius\n$radius-sm:\t4px;\n$radius-md: 6px;\n$radius-lg: 8px;\n$radius-xl: 12px;\n\n// Elevations / Box shadows\n$elevation-01: 0px 1px 2px rgba($gray-900, 0.10);\n\n// Input & button focus outline\n$outline: 3px solid $blue-50;\n\n// Link colours\n$link-color: $blue-500;\n\n// Responsive\n$max-width: 1440px;","/*--------------------------------------------------------------------------------------------\n*\n* Mixins\n*\n*--------------------------------------------------------------------------------------------*/\n@mixin clearfix() {\n\t&:after {\n\t\tdisplay: block;\n\t\tclear: both;\n\t\tcontent: \"\";\n\t}\n}\n\n@mixin border-box() {\n\t-webkit-box-sizing: border-box;\n\t-moz-box-sizing: border-box;\n\tbox-sizing: border-box;\n}\n\n@mixin centered() {\n\tposition: absolute;\n\ttop: 50%;\n\tleft: 50%;\n\ttransform: translate(-50%, -50%);\n}\n\n@mixin animate( $properties: 'all' ) {\n\t-webkit-transition: $properties 0.3s ease; // Safari 3.2+, Chrome\n -moz-transition: $properties 0.3s ease; \t// Firefox 4-15\n -o-transition: $properties 0.3s ease; \t\t// Opera 10.5–12.00\n transition: $properties 0.3s ease; \t\t// Firefox 16+, Opera 12.50+\n}\n\n@mixin rtl() {\n\thtml[dir=\"rtl\"] & {\n\t\ttext-align: right;\n\t\t@content;\n\t}\n}\n\n@mixin wp-admin( $version: '3-8' ) {\n\t.acf-admin-#{$version} & {\n\t\t@content;\n\t}\n}","/*--------------------------------------------------------------------------------------------\n*\n*\tField Group\n*\n*--------------------------------------------------------------------------------------------*/\n\n// Reset postbox inner padding.\n#acf-field-group-fields > .inside,\n#acf-field-group-locations > .inside,\n#acf-field-group-options > .inside {\n\tpadding: 0;\n\tmargin: 0;\n}\n\n// Hide metabox order buttons added in WP 5.5.\n.postbox {\n\t.handle-order-higher,\n\t.handle-order-lower {\n\t\tdisplay: none;\n\t}\n}\n\n/*----------------------------------------------------------------------------\n*\n* Postbox: Publish\n*\n*----------------------------------------------------------------------------*/\n#minor-publishing-actions,\n#misc-publishing-actions #visibility,\n#misc-publishing-actions .edit-timestamp {\n\tdisplay: none;\n}\n\n#minor-publishing {\n\tborder-bottom: 0 none;\n}\n\n#misc-pub-section {\n\tborder-bottom: 0 none;\n}\n\n#misc-publishing-actions .misc-pub-section {\n\tborder-bottom-color: #F5F5F5;\n}\n\n\n/*----------------------------------------------------------------------------\n*\n* Postbox: Fields\n*\n*----------------------------------------------------------------------------*/\n#acf-field-group-fields {\n\tborder: 0 none;\n\n\t.inside {\n\t\tborder-top: {\n\t\t\twidth: 0;\n\t\t\tstyle: none;\n\t\t};\n\t}\n\n\t/* links */\n\ta {\n\t\ttext-decoration: none;\n\t}\n\n\t/* Field type */\n\t.li-field-type {\n\n\t\t.field-type-icon {\n\t\t\tmargin: {\n\t\t\t\tright: 8px;\n\t\t\t};\n\n\t\t\t@media screen and (max-width: 600px) {\n\t\t\t\tdisplay: none;\n\t\t\t}\n\n\t\t}\n\n\t\t.acf-pro-label-field-type {\n\t\t\tmargin-left: 5px;\n\t\t\tdisplay: inline;\n\t\t\tpadding: 4px 8px;\n\t\t}\n\n\t}\n\n\t/* table header */\n\t.li-field-order {\n\t\twidth: 64px;\n\t\tjustify-content: center;\n\n\t\t@media screen and (max-width: $md) {\n\t\t\twidth: 32px;\n\t\t}\n\n\t}\n\t.li-field-label { width: calc(50% - 64px); }\n\t.li-field-name { width: 25%; word-break: break-word; }\n\t.li-field-key { display: none; }\n\t.li-field-type { width: 25%; }\n\n\t/* show keys */\n\t&.show-field-keys {\n\n\t\t.li-field-label { width: calc(35% - 64px); };\n\t\t.li-field-name { width: 15%; };\n\t\t.li-field-key { width: 25%; display: flex; };\n\t\t.li-field-type { width: 25%; };\n\n\t}\n\n\t/* hide tabs */\n\t&.hide-tabs {\n\t\t.acf-field-settings-tab-bar {\n\t\t\tdisplay: none;\n\t\t}\n\n\t\t.acf-field-settings-main {\n\t\t\tpadding: 0;\n\n\t\t\t&.acf-field-settings-main-general {\n\t\t\t\tpadding-top: 32px;\n\t\t\t}\n\n\t\t\t.acf-field {\n\t\t\t\tmargin-bottom: 32px;\n\t\t\t}\n\n\t\t\t.acf-field-setting-wrapper {\n\t\t\t\tpadding-top: 0;\n\t\t\t\tborder-top: none;\n\t\t\t}\n\n\t\t\t.acf-field-settings-split .acf-field {\n\t\t\t\tborder-bottom: {\n\t\t\t\t\twidth: 1px;\n\t\t\t\t\tstyle: solid;\n\t\t\t\t\tcolor: $gray-200;\n\t\t\t\t};\n\t\t\t}\n\n\t\t\t.acf-field-setting-first_day {\n\t\t\t\tpadding-top: 0;\n\t\t\t\tborder-top: none;\n\t\t\t}\n\t\t}\n\n\t\t.acf-field-settings-footer {\n\t\t\tmargin-top: 32px;\n\t\t}\n\t}\n\n\t/* fields */\n\t.acf-field-list-wrap {\n\t\tborder: $wp-card-border solid 1px;\n\t}\n\n\t.acf-field-list {\n\t\tbackground: #f5f5f5;\n\t\tmargin-top: -1px;\n\n\t\t.acf-tbody {\n\n\t\t\t> .li-field-name,\n\t\t\t> .li-field-key {\n\t\t\t\talign-items: flex-start;\n\t\t\t}\n\n\t\t}\n\n\t\t.copyable:not(.input-copyable, .copy-unsupported) {\n\t\t\tcursor: pointer;\n\t\t\tdisplay: inline-flex;\n\t\t\talign-items: center;\n\n\t\t\t&:hover:after {\n\t\t\t\tcontent: '';\n\t\t\t\tpadding-left: 5px;\n\t\t\t\t$icon-size: 12px;\n\t\t\t\tdisplay: inline-flex;\n\t\t\t\twidth: $icon-size;\n\t\t\t\theight: $icon-size;\n\t\t\t\tbackground-color: $gray-500;\n\t\t\t\tborder: none;\n\t\t\t\tborder-radius: 0;\n\t\t\t\t-webkit-mask-size: contain;\n\t\t\t\tmask-size: contain;\n\t\t\t\t-webkit-mask-repeat: no-repeat;\n\t\t\t\tmask-repeat: no-repeat;\n\t\t\t\t-webkit-mask-position: center;\n\t\t\t\tmask-position: center;\n\t\t\t\ttext-indent: 500%;\n\t\t\t\twhite-space: nowrap;\n\t\t\t\toverflow: hidden;\n\t\t\t\t-webkit-mask-image: url('../../images/icons/icon-copy.svg');\n\t\t\t\tmask-image: url('../../images/icons/icon-copy.svg');\n\t\t\t\tbackground-size: cover;\n\t\t\t}\n\n\t\t\t&.sub-label {\n\t\t\t\tpadding-right: 22px;\n\n\t\t\t\t&:hover {\n\t\t\t\t\tpadding-right: 0;\n\n\t\t\t\t\t&:after {\n\t\t\t\t\t\t$icon-size: 14px;\n\t\t\t\t\t\twidth: $icon-size;\n\t\t\t\t\t\theight: $icon-size;\n\t\t\t\t\t\tpadding-left: 8px;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t&.copied:hover:after {\n\t\t\t\t-webkit-mask-image: url('../../images/icons/icon-check-circle-solid.svg');\n\t\t\t\tmask-image: url('../../images/icons/icon-check-circle-solid.svg');\n\t\t\t\tbackground-color: $acf_success;\n\t\t\t}\n\t\t}\n\n\t\t.copyable.input-copyable:not(.copy-unsupported) {\n\t\t\tcursor: pointer;\n\t\t\tdisplay: block;\n\t\t\tposition: relative;\n\t\t\talign-items: center;\n\n\t\t\tinput {\n\t\t\t\tpadding-right: 40px;\n\t\t\t}\n\n\t\t\t.acf-input-wrap:after {\n\t\t\t\tcontent: '';\n\t\t\t\tpadding-left: 5px;\n\t\t\t\t$icon-size: 16px;\n\t\t\t\tright: 12px;\n\t\t\t\ttop: 12px;\n\t\t\t\tposition: absolute;\n\t\t\t\twidth: $icon-size;\n\t\t\t\theight: $icon-size;\n\t\t\t\tbackground-color: $gray-400;\n\t\t\t\tborder: none;\n\t\t\t\tborder-radius: 0;\n\t\t\t\t-webkit-mask-size: contain;\n\t\t\t\tmask-size: contain;\n\t\t\t\t-webkit-mask-repeat: no-repeat;\n\t\t\t\tmask-repeat: no-repeat;\n\t\t\t\t-webkit-mask-position: center;\n\t\t\t\tmask-position: center;\n\t\t\t\ttext-indent: 500%;\n\t\t\t\twhite-space: nowrap;\n\t\t\t\toverflow: hidden;\n\t\t\t\t-webkit-mask-image: url('../../images/icons/icon-copy.svg');\n\t\t\t\tmask-image: url('../../images/icons/icon-copy.svg');\n\t\t\t\tbackground-size: cover;\n\t\t\t}\n\n\t\t\t&.copied .acf-input-wrap:after {\n\t\t\t\t-webkit-mask-image: url('../../images/icons/icon-check-circle-solid.svg');\n\t\t\t\tmask-image: url('../../images/icons/icon-check-circle-solid.svg');\n\t\t\t\tbackground-color: $acf_success;\n\t\t\t}\n\t\t}\n\n\t\t\n\n\t\t/* no fields */\n\t\t.no-fields-message {\n\t\t\tpadding: 15px 15px;\n\t\t\tbackground: #fff;\n\t\t\tdisplay: none;\n\t\t}\n\n\t\t/* empty */\n\t\t&.-empty {\n\t\t\t.no-fields-message {\n\t\t\t\tdisplay: block;\n\t\t\t}\n\t\t}\n\t}\n\n\t// WP Admin 3.8\n\t@include wp-admin('3-8') {\n\t\t.acf-field-list-wrap {\n\t\t\tborder-color: $wp38-card-border-1;\n\t\t}\n\t}\n}\n\n\n.rtl #acf-field-group-fields {\n\t.li-field-type {\n\t\t.field-type-icon {\n\t\t\tmargin: {\n\t\t\t\tleft: 8px;\n\t\t\t\tright: 0;\n\t\t\t};\n\t\t}\n\t}\n}\n\n/* field object */\n.acf-field-object {\n\tborder-top: $wp38-card-border-2 solid 1px;\n\tbackground: #fff;\n\n\t/* sortable */\n\t&.ui-sortable-helper {\n\t\toverflow: hidden !important;\n\t\tborder: {\n\t\t\twidth: 1px;\n\t\t\tstyle: solid;\n\t\t\tcolor: $blue-200 !important;\n\t\t};\n\t\tborder-radius: $radius-lg;\n\t\tfilter: drop-shadow(0px 10px 20px rgba(16, 24, 40, 0.14)) drop-shadow(0px 1px 3px rgba(16, 24, 40, 0.1));\n\n\t\t&:before {\n\t\t\tdisplay: none !important;\n\t\t}\n\n\t}\n\n\t&.ui-sortable-placeholder {\n\t\tbox-shadow: 0 -1px 0 0 #DFDFDF;\n\t\tvisibility: visible !important;\n\t\tbackground: #F9F9F9;\n\t\tborder-top-color: transparent;\n\t\tmin-height: 54px;\n\n\t\t// hide tab field separator\n\t\t&:after, &:before {\n\t\t\tvisibility: hidden;\n\t\t}\n\t}\n\n\n\t/* meta */\n\t> .meta {\n\t\tdisplay: none;\n\t}\n\n\n\t/* handle */\n\t> .handle {\n\n\t\ta {\n\t\t\t-webkit-transition: none;\n\t\t\t-moz-transition: none;\n\t\t\t-o-transition: none;\n\t\t\ttransition: none;\n\t\t}\n\n\t\tli {\n\t\t\tword-wrap: break-word;\n\t\t}\n\n\t\tstrong {\n\t\t\tdisplay: block;\n\t\t\tpadding-bottom: 0;\n\t\t\tfont-size: 14px;\n\t\t\tline-height: 14px;\n\t\t\tmin-height: 14px;\n\t\t}\n\n\t\t.row-options {\n\t\t\tdisplay: block;\n\t\t\topacity: 0;\n\t\t\tmargin: {\n\t\t\t\ttop: 5px;\n\t\t\t};\n\n\t\t\t@media screen and (max-width: 880px) {\n\t\t\t\topacity: 1;\n\t\t\t\tmargin: {\n\t\t\t\t\tbottom: 0;\n\t\t\t\t};\n\t\t\t}\n\n\t\t\ta {\n\t\t\t\tmargin-right: 4px;\n\n\t\t\t\t&:hover {\n\t\t\t\t\tcolor: darken($color-primary-hover, 10%);\n\t\t\t\t}\n\n\t\t\t}\n\n\t\t\ta.delete-field {\n\t\t\t\tcolor: #a00;\n\n\t\t\t\t&:hover { color: #f00; }\n\t\t\t}\n\n\t\t\t&.active {\n\t\t\t\tvisibility: visible;\n\t\t\t}\n\t\t}\n\n\t}\n\n\t/* open */\n\t&.open {\n\n\t\t+ .acf-field-object {\n\t\t\tborder-top-color: #E1E1E1;\n\t\t}\n\n\t\t> .handle {\n\t\t\tbackground: $acf_blue;\n\t\t\tborder: darken($acf_blue, 2%) solid 1px;\n\t\t\ttext-shadow: #268FBB 0 1px 0;\n\t\t\tcolor: #fff;\n\t\t\tposition: relative;\n\t\t\tmargin: 0 -1px 0 -1px;\n\n\t\t\ta {\n\t\t\t\tcolor: #fff !important;\n\n\t\t\t\t&:hover {\n\t\t\t\t\ttext-decoration: underline !important;\n\t\t\t\t}\n\t\t\t}\n\n\t\t}\n\t}\n\n\n\t/*\n\t// debug\n\t&[data-save=\"meta\"] {\n\t\t> .handle {\n\t\t\tborder-left: #ffb700 solid 5px !important;\n\t\t}\n\t}\n\n\t&[data-save=\"settings\"] {\n\t\t> .handle {\n\t\t\tborder-left: #0ec563 solid 5px !important;\n\t\t}\n\t}\n*/\n\n\n\t/* hover */\n\t&:hover, &.-hover, &:focus-within {\n\n\t\t> .handle {\n\n\t\t\t.row-options {\n\t\t\t\topacity: 1;\n\t\t\t\tmargin-bottom: 0;\n\t\t\t}\n\n\t\t}\n\t}\n\n\n\t/* settings */\n\t> .settings {\n\t\tdisplay: none;\n\t\twidth: 100%;\n\n\t\t> .acf-table {\n\t\t\tborder: none;\n\t\t}\n\t}\n\n\n\t/* conditional logic */\n\t.rule-groups {\n\t\tmargin-top: 20px;\n\t}\n\n}\n\n\n/*----------------------------------------------------------------------------\n*\n* Postbox: Locations\n*\n*----------------------------------------------------------------------------*/\n\n.rule-groups {\n\n\th4 {\n\t\tmargin: 3px 0;\n\t}\n\n\t.rule-group {\n\t\tmargin: 0 0 5px;\n\n\t\th4 {\n\t\t\tmargin: 0 0 3px;\n\t\t}\n\n\t\ttd.param {\n\t\t\twidth: 35%;\n\t\t}\n\n\t\ttd.operator {\n\t\t\twidth: 20%;\n\t\t}\n\n\t\ttd.add {\n\t\t\twidth: 40px;\n\t\t}\n\n\t\ttd.remove {\n\t\t\twidth: 28px;\n\t\t\tvertical-align: middle;\n\n\t\t\ta {\n\t\t\t\twidth: 22px;\n\t\t\t\theight: 22px;\n\t\t\t\tvisibility: hidden;\n\n\t\t\t\t&:before {\n\t\t\t\t\tposition: relative;\n\t\t\t\t\ttop: -2px;\n\t\t\t\t\tfont-size: 16px;\n\t\t\t\t}\n\n\t\t\t}\n\t\t}\n\n\t\ttr:hover td.remove a {\n\t\t\tvisibility: visible;\n\t\t}\n\n\t\t// empty select\n\t\tselect:empty {\n\t\t\tbackground: #f8f8f8;\n\t\t}\n\t}\n\n\n\t&:not(.rule-groups-multiple) {\n\t\t.rule-group {\n\t\t\t&:first-child tr:first-child td.remove a {\n\t\t\t\t/* Don't allow user to delete the only rule group */\n\t\t\t\tvisibility: hidden !important;\n\t\t\t}\n\t\t}\n\t}\n}\n\n\n/*----------------------------------------------------------------------------\n*\n*\tOptions\n*\n*----------------------------------------------------------------------------*/\n\n#acf-field-group-options tr[data-name=\"hide_on_screen\"] li {\n\tfloat: left;\n\twidth: 33%;\n}\n\n@media (max-width: 1100px) {\n\n\t#acf-field-group-options tr[data-name=\"hide_on_screen\"] li {\n\t\twidth: 50%;\n\t}\n\n}\n\n\n/*----------------------------------------------------------------------------\n*\n*\tConditional Logic\n*\n*----------------------------------------------------------------------------*/\n\ntable.conditional-logic-rules {\n\tbackground: transparent;\n\tborder: 0 none;\n\tborder-radius: 0;\n}\n\ntable.conditional-logic-rules tbody td {\n\tbackground: transparent;\n\tborder: 0 none !important;\n\tpadding: 5px 2px !important;\n}\n\n\n/*----------------------------------------------------------------------------\n*\n*\tField: Tab\n*\n*----------------------------------------------------------------------------*/\n\n.acf-field-object-tab {\n\n\t// hide setting\n\t.acf-field-setting-name,\n\t.acf-field-setting-instructions,\n\t.acf-field-setting-required,\n\t.acf-field-setting-warning,\n\t.acf-field-setting-wrapper {\n\t\tdisplay: none;\n\t}\n\n\t// hide name\n\t.li-field-name {\n\t\tvisibility: hidden;\n\t}\n\n\tp:first-child {\n\t\tmargin: 0.5em 0;\n\t}\n\n\t// hide presentation setting tabs.\n\tli.acf-settings-type-presentation,\n\t.acf-field-settings-main-presentation {\n\t\tdisplay: none !important;\n\t}\n}\n\n/*----------------------------------------------------------------------------\n*\n*\tField: Accordion\n*\n*----------------------------------------------------------------------------*/\n\n.acf-field-object-accordion {\n\n\t// hide setting\n\t.acf-field-setting-name,\n\t.acf-field-setting-instructions,\n\t.acf-field-setting-required,\n\t.acf-field-setting-warning,\n\t.acf-field-setting-wrapper {\n\t\tdisplay: none;\n\t}\n\n\t// hide name\n\t.li-field-name {\n\t\tvisibility: hidden;\n\t}\n\n\tp:first-child {\n\t\tmargin: 0.5em 0;\n\t}\n\n\t// show settings\n\t.acf-field-setting-instructions {\n\t\tdisplay: block;\n\t}\n\n}\n\n\n/*----------------------------------------------------------------------------\n*\n*\tField: Message\n*\n*----------------------------------------------------------------------------*/\n\n.acf-field-object-message tr[data-name=\"name\"],\n.acf-field-object-message tr[data-name=\"instructions\"],\n.acf-field-object-message tr[data-name=\"required\"] {\n\tdisplay: none !important;\n}\n\n.acf-field-object-message .li-field-name {\n\tvisibility: hidden;\n}\n\n.acf-field-object-message textarea {\n\theight: 175px !important;\n}\n\n\n/*----------------------------------------------------------------------------\n*\n*\tField: Separator\n*\n*----------------------------------------------------------------------------*/\n\n.acf-field-object-separator tr[data-name=\"name\"],\n.acf-field-object-separator tr[data-name=\"instructions\"],\n.acf-field-object-separator tr[data-name=\"required\"] {\n\tdisplay: none !important;\n}\n\n\n/*----------------------------------------------------------------------------\n*\n*\tField: Date Picker\n*\n*----------------------------------------------------------------------------*/\n\n.acf-field-object-date-picker,\n.acf-field-object-time-picker,\n.acf-field-object-date-time-picker {\n\n\t.acf-radio-list {\n\n\t\tli {\n\t\t\tline-height: 25px;\n\t\t}\n\n\t\tspan {\n\t\t\tdisplay: inline-block;\n\t\t\tmin-width: 10em;\n\t\t}\n\n\t\tinput[type=\"text\"] {\n\t\t\twidth: 100px;\n\t\t}\n\t}\n\n}\n\n.acf-field-object-date-time-picker {\n\n\t.acf-radio-list {\n\n\t\tspan {\n\t\t\tmin-width: 15em;\n\t\t}\n\n\t\tinput[type=\"text\"] {\n\t\t\twidth: 200px;\n\t\t}\n\t}\n\n}\n\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tSlug\n*\n*--------------------------------------------------------------------------------------------*/\n\n#slugdiv {\n\n\t.inside {\n\t\tpadding: 12px;\n\t\tmargin: 0;\n\t}\n\n\tinput[type=\"text\"] {\n\t\twidth: 100%;\n\t\theight: 28px;\n\t\tfont-size: 14px;\n\t}\n}\n\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tRTL\n*\n*--------------------------------------------------------------------------------------------*/\n\nhtml[dir=\"rtl\"] .acf-field-object.open > .handle {\n\tmargin: 0\n}\n\n/*----------------------------------------------------------------------------\n*\n* Device\n*\n*----------------------------------------------------------------------------*/\n\n@media only screen and (max-width: 850px) {\n\n\ttr.acf-field,\n\ttd.acf-label,\n\ttd.acf-input {\n\t\tdisplay: block !important;\n\t\twidth: auto !important;\n\t\tborder: 0 none !important;\n\t}\n\n\ttr.acf-field {\n\t\tborder-top: #ededed solid 1px !important;\n\t\tmargin-bottom: 0 !important;\n\t}\n\n\ttd.acf-label {\n\t\tbackground: transparent !important;\n\t\tpadding-bottom: 0 !important;\n\n\t}\n\n}\n\n/*----------------------------------------------------------------------------\n*\n* Subtle background on accordion & tab fields to separate them from others\n*\n*----------------------------------------------------------------------------*/\n.post-type-acf-field-group {\n\n\t#acf-field-group-fields {\n\n\t\t.acf-field-object-tab,\n\t\t.acf-field-object-accordion {\n\t\t\tbackground-color: $gray-50;\n\t\t}\n\n\t}\n\n}","/*---------------------------------------------------------------------------------------------\n*\n* Global\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-admin-page {\n\t#wpcontent {\n\t\tline-height: 140%;\n\t}\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Links\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-admin-page {\n\n\ta {\n\t\tcolor: $blue-500;\n\t}\n\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Headings\n*\n*---------------------------------------------------------------------------------------------*/\n\n.acf-h1 {\n\tfont-size: 21px;\n\tfont-weight: 400;\n}\n\n.acf-h2 {\n\tfont-size: 18px;\n\tfont-weight: 400;\n}\n\n.acf-h3 {\n\tfont-size: 16px;\n\tfont-weight: 400;\n}\n\n.acf-admin-page,\n.acf-headerbar {\n\n\th1 {\n\t\t@extend .acf-h1;\n\t}\n\n\th2 {\n\t\t@extend .acf-h2;\n\t}\n\n\th3 {\n\t\t@extend .acf-h3;\n\t}\n\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Paragraphs\n*\n*---------------------------------------------------------------------------------------------*/\n\n.acf-admin-page {\n\n\t.p1 {\n\t\tfont-size: 15px;\n\t}\n\n\t.p2 {\n\t\tfont-size: 14px;\n\t}\n\n\t.p3 {\n\t\tfont-size: 13.5px;\n\t}\n\n\t.p4 {\n\t\tfont-size: 13px;\n\t}\n\n\t.p5 {\n\t\tfont-size: 12.5px;\n\t}\n\n\t.p6 {\n\t\tfont-size: 12px;\n\t}\n\n\t.p7 {\n\t\tfont-size: 11.5px;\n\t}\n\n\t.p8 {\n\t\tfont-size: 11px;\n\t}\n\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Page titles\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-page-title {\n\t@extend .acf-h2;\n\tcolor: $gray-700;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Hide old / native WP titles from pages\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-admin-page {\n\n\t.acf-settings-wrap h1 {\n\t\tdisplay: none !important;\n\t}\n\n\t#acf-admin-tools h1:not(.acf-field-group-pro-features-title, .acf-field-group-pro-features-title-sm) {\n\t\tdisplay: none !important;\n\t}\n\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Small\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-small {\n\t@extend .p6;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Link focus style\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-admin-page {\n\ta:focus {\n\t\tbox-shadow: none;\n\t\toutline: none;\n\t}\n\n\ta:focus-visible {\n\t\tbox-shadow: 0 0 0 1px #4f94d4, 0 0 2px 1px rgb(79 148 212 / 80%);\n\t\toutline: 1px solid transparent;\n\t}\n}\n",".acf-admin-page {\n\n\t/*---------------------------------------------------------------------------------------------\n\t*\n\t* All Inputs\n\t*\n\t*---------------------------------------------------------------------------------------------*/\n\tinput[type=\"text\"],\n\tinput[type=\"search\"],\n\tinput[type=\"number\"],\n\ttextarea,\n\tselect {\n\t\tbox-sizing: border-box;\n\t\theight: 40px;\n\t\tpadding: {\n\t\t\tright: 12px;\n\t\t\tleft: 12px;\n\t\t};\n\t\tbackground-color: #fff;\n\t\tborder-color: $gray-300;\n\t\tbox-shadow: $elevation-01;\n\t\tborder-radius: $radius-md;\n\t\t@extend .p4;\n\t\tcolor: $gray-700;\n\n\t\t&:focus {\n\t\t\toutline: $outline;\n\t\t\tborder-color: $blue-400;\n\t\t}\n\n\t\t&:disabled {\n\t\t\tbackground-color: $gray-50;\n\t\t\tcolor: lighten($gray-500, 10%);\n\t\t}\n\n\t\t&::placeholder {\n\t\t\tcolor: $gray-400;\n\t\t}\n\n\t}\n\n\t/*---------------------------------------------------------------------------------------------\n\t*\n\t* Read only text inputs\n\t*\n\t*---------------------------------------------------------------------------------------------*/\n\tinput[type=\"text\"] {\n\n\t\t&:read-only {\n\t\t\tbackground-color: $gray-50;\n\t\t\tcolor: $gray-400;\n\t\t}\n\n\t}\n\n\t/*---------------------------------------------------------------------------------------------\n\t*\n\t* Number fields\n\t*\n\t*---------------------------------------------------------------------------------------------*/\n\t.acf-field.acf-field-number {\n\n\t\t.acf-label,\n\t\t.acf-input input[type=\"number\"] {\n\t\t\tmax-width: 180px;\n\t\t}\n\n\t}\n\n\t/*---------------------------------------------------------------------------------------------\n\t*\n\t* Textarea\n\t*\n\t*---------------------------------------------------------------------------------------------*/\n\ttextarea {\n\t\tbox-sizing: border-box;\n\t\tpadding: {\n\t\t\ttop: 10px;\n\t\t\tbottom: 10px;\n\t\t};\n\t\theight: 80px;\n\t\tmin-height: 56px;\n\t}\n\n\t/*---------------------------------------------------------------------------------------------\n\t*\n\t* Select\n\t*\n\t*---------------------------------------------------------------------------------------------*/\n\tselect {\n\t\tmin-width: 160px;\n\t\tmax-width: 100%;\n\t\tpadding: {\n\t\t\tright: 40px;\n\t\t\tleft: 12px;\n\t\t};\n\t\tbackground-image: url('../../images/icons/icon-chevron-down.svg');\n\t\tbackground-position: right 10px top 50%;\n\t\tbackground-size: 20px;\n\t\t@extend .p4;\n\n\t\t&:hover,\n\t\t&:focus {\n\t\t\tcolor: $blue-500;\n\t\t}\n\n\t\t&::before {\n\t\t\tcontent: '';\n\t\t\tdisplay: block;\n\t\t\tposition: absolute;\n\t\t\ttop: 5px;\n\t\t\tleft: 5px;\n\t\t\twidth: 20px;\n\t\t\theight: 20px;\n\t\t}\n\n\t}\n\n\t&.rtl {\n\t\tselect {\n\t\t\tpadding: {\n\t\t\t\tright: 12px;\n\t\t\t\tleft: 40px;\n\t\t\t};\n\t\t\tbackground-position: left 10px top 50%;\n\t\t}\n\t}\n\n\t/*---------------------------------------------------------------------------------------------\n\t*\n\t* Radio Button & Checkbox base styling\n\t*\n\t*---------------------------------------------------------------------------------------------*/\n\tinput[type=\"radio\"],\n\tinput[type=\"checkbox\"] {\n\t\tbox-sizing: border-box;\n\t\twidth: 16px;\n\t\theight: 16px;\n\t\tpadding: 0;\n\t\tborder: {\n\t\t\twidth: 1px;\n\t\t\tstyle: solid;\n\t\t\tcolor: $gray-400;\n\t\t};\n\t\tbackground: #fff;\n\t\tbox-shadow: none;\n\n\t\t&:hover {\n\t\t\tbackground-color: $blue-50;\n\t\t\tborder-color: $blue-500;\n\t\t}\n\n\t\t&:checked,\n\t\t&:focus-visible {\n\t\t\tbackground-color: $blue-50;\n\t\t\tborder-color: $blue-500;\n\n\t\t\t&:before {\n\t\t\t\tcontent: '';\n\t\t\t\tposition: relative;\n\t\t\t\ttop: -1px;\n\t\t\t\tleft: -1px;\n\t\t\t\twidth: 16px;\n\t\t\t\theight: 16px;\n\t\t\t\tmargin: 0;\n\t\t\t\tpadding: 0;\n\t\t\t\tbackground-color: transparent;\n\t\t\t\tbackground-size: cover;\n\t\t\t\tbackground-repeat: no-repeat;\n\t\t\t\tbackground-position: center;\n\t\t\t}\n\n\t\t}\n\n\t\t&:active {\n\t\t\tbox-shadow: 0px 0px 0px 3px $blue-50, 0px 0px 0px rgba(255, 54, 54, 0.25);\n\t\t}\n\n\t\t&:disabled {\n\t\t\tbackground-color: $gray-50;\n\t\t\tborder-color: $gray-300;\n\t\t}\n\n\t}\n\n\t&.rtl {\n\t\tinput[type=\"radio\"],\n\t\tinput[type=\"checkbox\"] {\n\t\t\t&:checked,\n\t\t\t&:focus-visible {\n\t\t\t\t&:before {\n\t\t\t\t\tleft: 1px;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\n\t/*---------------------------------------------------------------------------------------------\n\t*\n\t* Radio Buttons\n\t*\n\t*---------------------------------------------------------------------------------------------*/\n\tinput[type=\"radio\"] {\n\n\t\t&:checked,\n\t\t&:focus {\n\n\t\t\t&:before {\n\t\t\t\tbackground-image: url('../../images/field-states/radio-active.svg');\n\t\t\t}\n\n\t\t}\n\n\t}\n\n\t/*---------------------------------------------------------------------------------------------\n\t*\n\t* Checkboxes\n\t*\n\t*---------------------------------------------------------------------------------------------*/\n\tinput[type=\"checkbox\"] {\n\n\t\t&:checked,\n\t\t&:focus {\n\n\t\t\t&:before {\n\t\t\t\tbackground-image: url('../../images/field-states/checkbox-active.svg');\n\t\t\t}\n\n\t\t}\n\n\t}\n\n\t/*---------------------------------------------------------------------------------------------\n\t*\n\t* Radio Buttons & Checkbox lists\n\t*\n\t*---------------------------------------------------------------------------------------------*/\n\t.acf-radio-list,\n\t.acf-checkbox-list {\n\n\t\tli input[type=\"radio\"],\n\t\tli input[type=\"checkbox\"] {\n\t\t\tmargin: {\n\t\t\t\tright: 6px;\n\t\t\t};\n\t\t}\n\n\t\t&.acf-bl li {\n\t\t\tmargin: {\n\t\t\t\tbottom: 8px;\n\t\t\t};\n\n\t\t\t&:last-of-type {\n\t\t\t\tmargin: {\n\t\t\t\t\tbottom: 0;\n\t\t\t\t};\n\t\t\t}\n\n\n\t\t}\n\n\t\tlabel {\n\t\t\tdisplay: flex;\n\t\t\talign-items: center;\n\t\t\talign-content: center;\n\t\t}\n\n\t}\n\n\t/*---------------------------------------------------------------------------------------------\n\t*\n\t* ACF Switch\n\t*\n\t*---------------------------------------------------------------------------------------------*/\n\t.acf-switch {\n\t\twidth: 42px;\n\t\theight: 24px;\n\t\tborder: none;\n\t\tbackground-color: $gray-300;\n\t\tborder-radius: 12px;\n\n\t\t&:hover {\n\t\t\tbackground-color: $gray-400;\n\t\t}\n\n\t\t&:active {\n\t\t\tbox-shadow: 0px 0px 0px 3px $blue-50, 0px 0px 0px rgba(255, 54, 54, 0.25);\n\t\t}\n\n\t\t&.-on {\n\t\t\tbackground-color: $color-primary;\n\n\t\t\t&:hover {\n\t\t\t\tbackground-color: $color-primary-hover;\n\t\t\t}\n\n\t\t\t.acf-switch-slider {\n\t\t\t\tleft: 20px;\n\t\t\t}\n\n\t\t}\n\n\t\t.acf-switch-off,\n\t\t.acf-switch-on {\n\t\t\tvisibility: hidden;\n\t\t}\n\n\t\t.acf-switch-slider {\n\t\t\twidth: 20px;\n\t\t\theight: 20px;\n\t\t\tborder: none;\n\t\t\tborder-radius: 100px;\n\t\t\tbox-shadow: 0px 1px 3px rgba(16, 24, 40, 0.1), 0px 1px 2px rgba(16, 24, 40, 0.06);\n\t\t}\n\n\t}\n\n\t.acf-field-true-false {\n\t\tdisplay: flex;\n\t\talign-items: flex-start;\n\n\t\t.acf-label {\n\t\t\torder: 2;\n\t\t\tdisplay: block;\n\t\t\talign-items: center;\n\t\t\tmargin: {\n\t\t\t\ttop: 2px;\n\t\t\t\tbottom: 0;\n\t\t\t\tleft: 12px;\n\t\t\t};\n\n\t\t\tlabel {\n\t\t\t\tmargin: {\n\t\t\t\t\tbottom: 0;\n\t\t\t\t};\n\t\t\t}\n\n\t\t\t.acf-tip {\n\t\t\t\tmargin: {\n\t\t\t\t\tleft: 12px;\n\t\t\t\t};\n\t\t\t}\n\t\t\t\n\t\t\t.description {\n\t\t\t\tdisplay: block;\n\t\t\t\tmargin: {\n\t\t\t\t\ttop: 2px;\n\t\t\t\t\tleft: 0;\n\t\t\t\t};\t\t\n\t\t\t}\n\n\t\t}\n\n\t}\n\n\t&.rtl {\n\t\t.acf-field-true-false {\n\t\t\t.acf-label {\n\t\t\t\tmargin: {\n\t\t\t\t\tright: 12px;\n\t\t\t\t\tleft: 0;\n\t\t\t\t};\n\t\t\t}\n\n\t\t\t.acf-tip {\n\t\t\t\tmargin: {\n\t\t\t\t\tright: 12px;\n\t\t\t\t\tleft: 0;\n\t\t\t\t};\n\t\t\t}\n\t\t}\n\t}\n\n\t/*---------------------------------------------------------------------------------------------\n\t*\n\t* File input button\n\t*\n\t*---------------------------------------------------------------------------------------------*/\n\n\tinput::file-selector-button {\n\t\tbox-sizing: border-box;\n\t\tmin-height: 40px;\n\t\tmargin: {\n\t\t\tright: 16px;\n\t\t};\n\t\tpadding: {\n\t\t\ttop: 8px;\n\t\t\tright: 16px;\n\t\t\tbottom: 8px;\n\t\t\tleft: 16px;\n\t\t};\n\t\tbackground-color: transparent;\n\t\tcolor: $color-primary !important;\n\t\tborder-radius: $radius-md;\n\t\tborder: {\n\t\t\twidth: 1px;\n\t\t\tstyle: solid;\n\t\t\tcolor: $color-primary;\n\t\t};\n\t\ttext-decoration: none;\n\n\t\t&:hover {\n\t\t\tborder-color: $color-primary-hover;\n\t\t\tcursor: pointer;\n\t\t\tcolor: $color-primary-hover !important;\n\t\t}\n\n\t}\n\n\n\t/*---------------------------------------------------------------------------------------------\n\t*\n\t* Action Buttons\n\t*\n\t*---------------------------------------------------------------------------------------------*/\n\t.button {\n\t\tdisplay: inline-flex;\n\t\talign-items: center;\n\t\theight: 40px;\n\t\tpadding: {\n\t\t\tright: 16px;\n\t\t\tleft: 16px;\n\t\t};\n\t\tbackground-color: transparent;\n\t\tborder-width: 1px;\n\t\tborder-style: solid;\n\t\tborder-color: $blue-500;\n\t\tborder-radius: $radius-md;\n\t\t@extend .p4;\n\t\tcolor: $blue-500;\n\n\t\t&:hover {\n\t\t\tbackground-color: lighten($blue-50, 2%);\n\t\t\tborder-color: $color-primary;\n\t\t\tcolor: $color-primary;\n\t\t}\n\t\t&:focus {\n\t\t\tbackground-color: lighten($blue-50, 2%);\n\t\t\toutline: $outline;\n\t\t\tcolor: $color-primary;\n\t\t}\n\n\t}\n\n\t/*---------------------------------------------------------------------------------------------\n\t*\n\t* Edit field group header\n\t*\n\t*---------------------------------------------------------------------------------------------*/\n\t.edit-field-group-header {\n\t\tdisplay: block !important;\n\t}\n\n\t/*---------------------------------------------------------------------------------------------\n\t*\n\t* Select2 inputs\n\t*\n\t*---------------------------------------------------------------------------------------------*/\n\t.acf-input {\n\n\t\t.select2-container.-acf .select2-selection {\n\t\t\tborder: none;\n\t\t\tline-height: 1;\n\t\t}\n\n\t\t.select2-container.-acf .select2-selection__rendered {\n\t\t\tbox-sizing: border-box;\n\t\t\tpadding: {\n\t\t\t\tright: 0;\n\t\t\t\tleft: 0;\n\t\t\t};\n\t\t\tbackground-color: #fff;\n\t\t\tborder: {\n\t\t\t\twidth: 1px;\n\t\t\t\tstyle: solid;\n\t\t\t\tcolor: $gray-300;\n\t\t\t};\n\t\t\tbox-shadow: $elevation-01;\n\t\t\tborder-radius: $radius-md;\n\t\t\t@extend .p4;\n\t\t\tcolor: $gray-700;\n\t\t}\n\n\t\t.select2-container--focus {\n\t\t\toutline: $outline;\n\t\t\tborder-color: $blue-400;\n\t\t\tborder-radius: $radius-md;\n\n\t\t\t.select2-selection__rendered {\n\t\t\t\tborder-color: $blue-400 !important;\n\t\t\t}\n\n\t\t\t&.select2-container--below.select2-container--open {\n\n\t\t\t\t.select2-selection__rendered {\n\t\t\t\t\tborder-bottom-right-radius: 0 !important;\n\t\t\t\t\tborder-bottom-left-radius: 0 !important;\n\t\t\t\t}\n\n\t\t\t}\n\n\t\t\t&.select2-container--above.select2-container--open {\n\n\t\t\t\t.select2-selection__rendered {\n\t\t\t\t\tborder-top-right-radius: 0 !important;\n\t\t\t\t\tborder-top-left-radius: 0 !important;\n\t\t\t\t}\n\n\t\t\t}\n\n\t\t}\n\n\t\t.select2-container .select2-search--inline .select2-search__field {\n\t\t\tmargin: 0;\n\t\t\tpadding: {\n\t\t\t\tleft: 6px;\n\t\t\t};\n\n\t\t\t&:focus {\n\t\t\t\toutline: none;\n\t\t\t\tborder: none;\n\t\t\t}\n\n\t\t}\n\n\t\t.select2-container--default .select2-selection--multiple .select2-selection__rendered {\n\t\t\tpadding: {\n\t\t\t\ttop: 0;\n\t\t\t\tright: 6px;\n\t\t\t\tbottom: 0;\n\t\t\t\tleft: 6px;\n\t\t\t};\n\t\t}\n\n\t\t.select2-selection__clear {\n\t\t\twidth: 18px;\n\t\t\theight: 18px;\n\t\t\tmargin: {\n\t\t\t\ttop: 12px;\n\t\t\t\tright: 1px;\n\t\t\t};\n\t\t\ttext-indent: 100%;\n\t\t\twhite-space: nowrap;\n\t\t\toverflow: hidden;\n\t\t\tcolor: #fff;\n\n\t\t\t&:before {\n\t\t\t\tcontent: '';\n\t\t\t\t$icon-size: 16px;\n\t\t\t\tdisplay: block;\n\t\t\t\twidth: $icon-size;\n\t\t\t\theight: $icon-size;\n\t\t\t\ttop: 0;\n\t\t\t\tleft: 0;\n\t\t\t\tborder: none;\n\t\t\t\tborder-radius: 0;\n\t\t\t\t-webkit-mask-size: contain;\n\t\t\t\tmask-size: contain;\n\t\t\t\t-webkit-mask-repeat: no-repeat;\n\t\t\t\tmask-repeat: no-repeat;\n\t\t\t\t-webkit-mask-position: center;\n\t\t\t\tmask-position: center;\n\t\t\t\t-webkit-mask-image: url('../../images/icons/icon-close.svg');\n\t\t\t\tmask-image: url('../../images/icons/icon-close.svg');\n\t\t\t\tbackground-color: $gray-400;\n\t\t\t}\n\n\t\t\t&:hover::before {\n\t\t\t\tbackground-color: $blue-500;\n\t\t\t}\n\n\t\t}\n\n\t}\n\n\t/*---------------------------------------------------------------------------------------------\n\t*\n\t* ACF label\n\t*\n\t*---------------------------------------------------------------------------------------------*/\n\t.acf-label {\n\t\tdisplay: flex;\n\t\talign-items: center;\n\t\tjustify-content: space-between;\n\n\t\t.acf-icon-help {\n\t\t\t$icon-size: 18px;\n\t\t\twidth: $icon-size;\n\t\t\theight: $icon-size;\n\t\t\tbackground-color: $gray-400;\n\t\t}\n\n\t\tlabel {\n\t\t\tmargin: {\n\t\t\t\tbottom: 0;\n\t\t\t};\n\t\t}\n\t\t\n\t\t.description {\n\t\t\tmargin: {\n\t\t\t\ttop: 2px;\n\t\t\t};\n\t\t}\n\n\t}\n\n\t/*---------------------------------------------------------------------------------------------\n\t*\n\t* Tooltip for field name field setting (result of a fix for keyboard navigation)\n\t*\n\t*---------------------------------------------------------------------------------------------*/\n\t.acf-field-setting-name .acf-tip {\n\t\tposition: absolute;\n\t\ttop: 0;\n\t\tleft: 654px;\n\t\tcolor: #98A2B3;\n\n\t\t@at-root .rtl#{&} {\n\t\t\tleft: auto;\n\t\t\tright: 654px;\n\t\t}\n\n\t\t.acf-icon-help {\n\t\t\twidth: 18px;\n\t\t\theight: 18px;\n\t\t}\n\t}\n\n\t/* Field Type Selection select2 */\n\t.acf-field-setting-type,\n\t.acf-field-permalink-rewrite,\n\t.acf-field-query-var,\n\t.acf-field-capability,\n\t.acf-field-parent-slug,\n\t.acf-field-data-storage,\n\t.acf-field-manage-terms,\n\t.acf-field-edit-terms,\n\t.acf-field-delete-terms,\n\t.acf-field-assign-terms,\n\t.acf-field-meta-box {\n\t\t\n\t\t.select2-container.-acf {\n\t\t\tmin-height: 40px;\n\t\t}\n\n\t\t.select2-container--default .select2-selection--single {\n\t\t\t.select2-selection__rendered {\n\t\t\t\tdisplay: flex;\n\t\t\t\talign-items: center;\n\t\t\t\tposition: relative;\n\t\t\t\tz-index: 800;\n\t\t\t\tmin-height: 40px;\n\t\t\t\tpadding: {\n\t\t\t\t\ttop: 0;\n\t\t\t\t\tright: 12px;\n\t\t\t\t\tbottom: 0;\n\t\t\t\t\tleft: 12px;\n\t\t\t\t};\n\t\t\t}\n\t\t\t.field-type-icon {\n\t\t\t\ttop: auto;\n\t\t\t\twidth: 18px;\n\t\t\t\theight: 18px;\n\t\t\t\tmargin: {\n\t\t\t\t\tright: 2px;\n\t\t\t\t};\n\n\t\t\t\t&:before {\n\t\t\t\t\twidth: 9px;\n\t\t\t\t\theight: 9px;\n\t\t\t\t}\n\n\t\t\t}\n\t\t}\n\n\t\t.select2-container--open .select2-selection__rendered {\n\t\t\tborder-color: $blue-300 !important;\n\t\t\tborder-bottom-color: $gray-300 !important;\n\t\t}\n\n\t\t.select2-container--open.select2-container--below .select2-selection__rendered {\n\t\t\tborder-bottom-right-radius: 0 !important;\n\t\t\tborder-bottom-left-radius: 0 !important;\n\t\t}\n\n\t\t.select2-container--open.select2-container--above .select2-selection__rendered {\n\t\t\tborder-top-right-radius: 0 !important;\n\t\t\tborder-top-left-radius: 0 !important;\n\t\t\tborder-bottom-color: $blue-300 !important;\n\t\t\tborder-top-color: $gray-300 !important;\n\t\t}\n\n\t\t// icon margins\n\t\t.acf-selection.has-icon {\n\t\t\tmargin-left: 6px;\n\t\n\t\t\t@at-root .rtl#{&} {\n\t\t\t\tmargin-right: 6px;\n\t\t\t}\n\t\t}\n\t\t\n\t\t// Dropdown icon\n\t\t.select2-selection__arrow {\n\t\t\twidth: 20px;\n\t\t\theight: 20px;\n\t\t\ttop: calc(50% - 10px);\n\t\t\tright: 12px;\n\t\t\tbackground-color: transparent;\n\t\t\t\n\t\t\t&:after {\n\t\t\t\tcontent: \"\";\n\t\t\t\t$icon-size: 20px;\n\t\t\t\tdisplay: block;\n\t\t\t\tposition: absolute;\n\t\t\t\tz-index: 850;\n\t\t\t\ttop: 1px;\n\t\t\t\tleft: 0;\n\t\t\t\twidth: $icon-size;\n\t\t\t\theight: $icon-size;\n\t\t\t\t-webkit-mask-image: url(\"../../images/icons/icon-chevron-down.svg\");\n\t\t\t\tmask-image: url(\"../../images/icons/icon-chevron-down.svg\");\n\t\t\t\tbackground-color: $gray-500;\n\t\t\t\tborder: none;\n\t\t\t\tborder-radius: 0;\n\t\t\t\t-webkit-mask-size: contain;\n\t\t\t\tmask-size: contain;\n\t\t\t\t-webkit-mask-repeat: no-repeat;\n\t\t\t\tmask-repeat: no-repeat;\n\t\t\t\t-webkit-mask-position: center;\n\t\t\t\tmask-position: center;\n\t\t\t\ttext-indent: 500%;\n\t\t\t\twhite-space: nowrap;\n\t\t\t\toverflow: hidden;\t\n\t\t\t}\n\t\t\t\n\t\t\tb[role=\"presentation\"] {\n\t\t\t\tdisplay: none;\n\t\t\t}\n\t\t\t\n\t\t}\n\n\t\t// Open state\n\t\t.select2-container--open {\n\t\t\t\n\t\t\t// Swap chevron icon\n\t\t\t.select2-selection__arrow:after {\n\t\t\t\t-webkit-mask-image: url(\"../../images/icons/icon-chevron-up.svg\");\n\t\t\t\tmask-image: url(\"../../images/icons/icon-chevron-up.svg\");\n\t\t\t}\n\t\t\t\n\t\t}\n\n\t}\n\n\t.field-type-select-results {\n\t\tposition: relative;\n\t\ttop: 4px;\n\t\tz-index: 1002;\n\t\tborder-radius: 0 0 $radius-md $radius-md;\n\t\tbox-shadow: 0px 8px 24px 4px rgba(16, 24, 40, 0.12);\n\t\t&.select2-dropdown--above {\n\t\t\tdisplay: flex;\n\t\t\tflex-direction: column-reverse;\t \n\t\t\ttop: 0;\n\t\t\tborder-radius: $radius-md $radius-md 0 0;\n\t\t\tz-index: 99999;\n\t\t}\n\t\t\n\t\t@at-root .select2-container.select2-container--open#{&} {\n\t\t\t// outline: 3px solid $blue-50;\n\t\t\tbox-shadow: 0px 0px 0px 3px #EBF5FA, 0px 8px 24px 4px rgba(16, 24, 40, 0.12);\n\t\t}\n\n\t\t// icon margins\n\t\t.acf-selection.has-icon {\n\t\t\tmargin-left: 6px;\n\n\t\t\t@at-root .rtl#{&} {\n\t\t\t\tmargin-right: 6px;\n\t\t\t}\n\t\t}\n\n\t\t// Search field\n\t\t.select2-search {\n\t\t\tposition: relative;\n\t\t\tmargin: 0;\n\t\t\tpadding: 0;\n\n\t\t\t&--dropdown {\n\t\t\t\t&:after {\n\t\t\t\t\tcontent: \"\";\n\t\t\t\t\t$icon-size: 16px;\n\t\t\t\t\tdisplay: block;\n\t\t\t\t\tposition: absolute;\n\t\t\t\t\ttop: 12px;\n\t\t\t\t\tleft: 13px;\n\t\t\t\t\twidth: $icon-size;\n\t\t\t\t\theight: $icon-size;\n\t\t\t\t\t-webkit-mask-image: url(\"../../images/icons/icon-search.svg\");\n\t\t\t\t\tmask-image: url(\"../../images/icons/icon-search.svg\");\n\t\t\t\t\tbackground-color: $gray-400;\n\t\t\t\t\tborder: none;\n\t\t\t\t\tborder-radius: 0;\n\t\t\t\t\t-webkit-mask-size: contain;\n\t\t\t\t\tmask-size: contain;\n\t\t\t\t\t-webkit-mask-repeat: no-repeat;\n\t\t\t\t\tmask-repeat: no-repeat;\n\t\t\t\t\t-webkit-mask-position: center;\n\t\t\t\t\tmask-position: center;\n\t\t\t\t\ttext-indent: 500%;\n\t\t\t\t\twhite-space: nowrap;\n\t\t\t\t\toverflow: hidden;\n\n\t\t\t\t\t@at-root .rtl#{&} {\n\t\t\t\t\t\tright: 12px;\n\t\t\t\t\t\tleft: auto;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t.select2-search__field {\n\t\t\t\tpadding-left: 38px;\n\n\t\t\t\tborder-right: 0;\n\t\t\t\tborder-bottom: 0;\n\t\t\t\tborder-left: 0;\n\t\t\t\tborder-radius: 0;\n\n\t\t\t\t@at-root .rtl#{&} {\n\t\t\t\t\tpadding-right: 38px;\n\t\t\t\t\tpadding-left: 0;\n\t\t\t\t}\n\n\t\t\t\t&:focus {\n\t\t\t\t\tborder-top-color: $gray-300;\n\t\t\t\t\toutline: 0;\n\t\t\t\t}\n\t\t\t}\n\n\t\t}\n\n\t\t.select2-results__options {\n\t\t\tmax-height: 440px;\n\t\t}\n\t\t\n\t\t.select2-results__option {\n\t\t\t.select2-results__option--highlighted {\n\t\t\t\tbackground-color: $blue-500 !important;\n\t\t\t\tcolor: $gray-50 !important;\n\t\t\t}\n\t\t}\n\n\t\t// List items\n\t\t.select2-results__option .select2-results__option {\n\t\t\tdisplay: inline-flex;\n\t\t\tposition: relative;\n\t\t\twidth: calc(100% - 24px);\n\t\t\tmin-height: 32px;\n\t\t\tpadding: {\n\t\t\t\ttop: 0;\n\t\t\t\tright: 12px;\n\t\t\t\tbottom: 0;\n\t\t\t\tleft: 12px;\n\t\t\t}\n\t\t\talign-items: center;\n\t\t\t\n\t\t\t.field-type-icon {\n\t\t\t\ttop: auto;\n\t\t\t\twidth: 18px;\n\t\t\t\theight: 18px;\n\t\t\t\tmargin: {\n\t\t\t\t\tright: 2px;\n\t\t\t\t};\n\t\t\t\tbox-shadow: 0 0 0 1px $gray-50;\n\t\t\t\n\t\t\t\t&:before {\n\t\t\t\t\twidth: 9px;\n\t\t\t\t\theight: 9px;\n\t\t\t\t}\n\t\t\t\n\t\t\t}\n\t\t\t\n\t\t}\n\n\t\t.select2-results__option[aria-selected=\"true\"] {\n\t\t\tbackground-color: $blue-50 !important;\n\t\t\tcolor: $gray-700 !important;\n\t\t\t\n\t\t\t&:after {\n\t\t\t\tcontent: \"\";\n\t\t\t\t$icon-size: 16px;\n\t\t\t\tright: 13px;\n\t\t\t\tposition: absolute;\n\t\t\t\twidth: $icon-size;\n\t\t\t\theight: $icon-size;\n\t\t\t\t-webkit-mask-image: url(\"../../images/icons/icon-check.svg\");\n\t\t\t\tmask-image: url(\"../../images/icons/icon-check.svg\");\n\t\t\t\tbackground-color: $blue-500;\n\t\t\t\tborder: none;\n\t\t\t\tborder-radius: 0;\n\t\t\t\t-webkit-mask-size: contain;\n\t\t\t\tmask-size: contain;\n\t\t\t\t-webkit-mask-repeat: no-repeat;\n\t\t\t\tmask-repeat: no-repeat;\n\t\t\t\t-webkit-mask-position: center;\n\t\t\t\tmask-position: center;\n\t\t\t\ttext-indent: 500%;\n\t\t\t\twhite-space: nowrap;\n\t\t\t\toverflow: hidden;\n\n\t\t\t\t@at-root .rtl#{&} {\n\t\t\t\t\tleft: 13px;\n\t\t\t\t\tright: auto;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t.select2-results__group {\n\t\t\tdisplay: inline-flex;\n\t\t\talign-items: center;\n\t\t\twidth: calc(100% - 24px);\n\t\t\tmin-height: 25px;\n\t\t\tbackground-color: $gray-50;\n\t\t\tborder-top: {\n\t\t\t\twidth: 1px;\n\t\t\t\tstyle: solid;\n\t\t\t\tcolor: $gray-200;\n\t\t\t};\n\t\t\tborder-bottom: {\n\t\t\t\twidth: 1px;\n\t\t\t\tstyle: solid;\n\t\t\t\tcolor: $gray-200;\n\t\t\t};\n\t\t\tcolor: $gray-400;\n\t\t\tfont-size: 11px;\n\t\t\tmargin: {\n\t\t\t\tbottom: 0;\n\t\t\t};\n\t\t\tpadding: {\n\t\t\t\ttop: 0;\n\t\t\t\tright: 12px;\n\t\t\t\tbottom: 0;\n\t\t\t\tleft: 12px;\n\t\t\t};\n\t\t\tfont-weight: normal;\n\t\t}\n\t}\n\t\n\t/*---------------------------------------------------------------------------------------------\n\t*\n\t* RTL arrow position\n\t*\n\t*---------------------------------------------------------------------------------------------*/\n\t&.rtl {\n\t\t\n\t\t.acf-field-setting-type,\n\t\t.acf-field-permalink-rewrite,\n\t\t.acf-field-query-var {\n\t\t\t\n\t\t\t.select2-selection__arrow:after {\n\t\t\tright: auto;\n\t\t\tleft: 10px;\n\t\t\t}\n\t\t}\n\t\t\n\t}\n\t\n}\n\n.rtl.post-type-acf-field-group,\n.rtl.acf-internal-post-type {\n\t.acf-field-setting-name .acf-tip {\n\t\tleft: auto;\n\t\tright: 654px;\n\t}\n}","/*----------------------------------------------------------------------------\n*\n* Container sizes\n*\n*----------------------------------------------------------------------------*/\n.post-type-acf-field-group .metabox-holder.columns-1 {\n\t#acf-field-group-fields,\n\t#acf-field-group-options,\n\t.meta-box-sortables.ui-sortable,\n\t.notice {\n\t\tmax-width: $max-width;\n\t}\n}\n\n/*----------------------------------------------------------------------------\n*\n* Max width for notices in 1 column edit field group layout\n*\n*----------------------------------------------------------------------------*/\n.post-type-acf-field-group.columns-1 {\n\t.notice {\n\t\tmax-width: $max-width;\n\t}\n}\n\n/*----------------------------------------------------------------------------\n*\n* Widen edit field group headerbar for 2 column layout\n*\n*----------------------------------------------------------------------------*/\n.post-type-acf-field-group.columns-2 {\n\t.acf-headerbar .acf-headerbar-inner {\n\t\tmax-width: 100%;\n\t}\n}\n\n/*----------------------------------------------------------------------------\n*\n* Post stuff\n*\n*----------------------------------------------------------------------------*/\n.post-type-acf-field-group {\n\t#poststuff {\n\t\tmargin: {\n\t\t\ttop: 0;\n\t\t\tright: 0;\n\t\t\tbottom: 0;\n\t\t\tleft: 0;\n\t\t}\n\t\tpadding: {\n\t\t\ttop: 0;\n\t\t\tright: 0;\n\t\t\tbottom: 0;\n\t\t\tleft: 0;\n\t\t}\n\t}\n}\n\n/*----------------------------------------------------------------------------\n*\n* Table\n*\n*----------------------------------------------------------------------------*/\n.post-type-acf-field-group {\n\t#acf-field-group-fields .acf-field-list-wrap {\n\t\toverflow: hidden;\n\t\tborder: none;\n\t\tborder-radius: 0 0 $radius-lg $radius-lg;\n\t\tbox-shadow: $elevation-01;\n\n\t\t&.-empty {\n\t\t\tborder-top: {\n\t\t\t\twidth: 1px;\n\t\t\t\tstyle: solid;\n\t\t\t\tcolor: $gray-200;\n\t\t\t}\n\n\t\t\t.acf-thead,\n\t\t\t.acf-tfoot {\n\t\t\t\tdisplay: none;\n\t\t\t}\n\n\t\t\t.no-fields-message {\n\t\t\t\tmin-height: 280px;\n\t\t\t}\n\t\t}\n\t}\n}\n\n/*----------------------------------------------------------------------------\n*\n* Table header\n*\n*----------------------------------------------------------------------------*/\n.post-type-acf-field-group {\n\t.acf-thead {\n\t\tbackground-color: $gray-50;\n\t\tborder-top: {\n\t\t\twidth: 1px;\n\t\t\tstyle: solid;\n\t\t\tcolor: $gray-200;\n\t\t}\n\t\tborder-bottom: {\n\t\t\twidth: 1px;\n\t\t\tstyle: solid;\n\t\t\tcolor: $gray-200;\n\t\t}\n\n\t\tli {\n\t\t\tdisplay: flex;\n\t\t\talign-items: center;\n\t\t\tmin-height: 48px;\n\t\t\tpadding: {\n\t\t\t\ttop: 0;\n\t\t\t\tbottom: 0;\n\t\t\t}\n\t\t\t@extend .p4;\n\t\t\tcolor: $gray-700;\n\t\t\tfont-weight: 500;\n\t\t}\n\t}\n}\n\n/*----------------------------------------------------------------------------\n*\n* Table body\n*\n*----------------------------------------------------------------------------*/\n.post-type-acf-field-group {\n\t.acf-field-object {\n\t\tborder-top: {\n\t\t\twidth: 1px;\n\t\t\tstyle: solid;\n\t\t\tcolor: $gray-200;\n\t\t}\n\n\t\t&:hover {\n\t\t\t.acf-sortable-handle:before {\n\t\t\t\tdisplay: inline-flex;\n\t\t\t}\n\t\t}\n\n\t\t// Add divider to show which fields have endpoint\n\t\t&.acf-field-is-endpoint {\n\t\t\t&:before {\n\t\t\t\tdisplay: block;\n\t\t\t\tcontent: \"\";\n\t\t\t\theight: 2px;\n\t\t\t\twidth: 100%;\n\t\t\t\tbackground: $gray-300;\n\t\t\t\tmargin-top: -1px;\n\t\t\t}\n\n\t\t\t&.acf-field-object-accordion {\n\t\t\t\t&:before {\n\t\t\t\t\tdisplay: none;\n\t\t\t\t}\n\n\t\t\t\t&:after {\n\t\t\t\t\tdisplay: block;\n\t\t\t\t\tcontent: \"\";\n\t\t\t\t\theight: 2px;\n\t\t\t\t\twidth: 100%;\n\t\t\t\t\tbackground: $gray-300;\n\t\t\t\t\tz-index: 500;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t&:hover {\n\t\t\tbackground-color: lighten($blue-50, 3%);\n\t\t}\n\n\t\t&.open {\n\t\t\tbackground-color: #fff;\n\t\t\tborder-top-color: $blue-200;\n\t\t}\n\n\t\t&.open .handle {\n\t\t\tbackground-color: $blue-100;\n\t\t\tborder: none;\n\t\t\ttext-shadow: none;\n\n\t\t\ta {\n\t\t\t\tcolor: $link-color !important;\n\n\t\t\t\t&.delete-field {\n\t\t\t\t\tcolor: #a00 !important;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t.acf-field-setting-type .acf-hl {\n\t\t\tmargin: 0;\n\n\t\t\tli {\n\t\t\t\twidth: auto;\n\n\t\t\t\t&:first-child {\n\t\t\t\t\tflex-grow: 1;\n\t\t\t\t\tmargin-left: -10px;\n\t\t\t\t}\n\n\t\t\t\t&:nth-child(2) {\n\t\t\t\t\tpadding-right: 0;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\tul.acf-hl {\n\t\t\tdisplay: flex;\n\t\t\talign-items: stretch;\n\t\t}\n\n\t\t.handle li {\n\t\t\tdisplay: flex;\n\t\t\talign-items: top;\n\t\t\tflex-wrap: wrap;\n\t\t\tmin-height: 60px;\n\t\t\t@extend .p4;\n\t\t\tcolor: $gray-700;\n\n\t\t\t&.li-field-label {\n\t\t\t\tdisplay: flex;\n\t\t\t\tflex-wrap: wrap;\n\t\t\t\tjustify-content: flex-start;\n\t\t\t\talign-content: flex-start;\n\t\t\t\talign-items: flex-start;\n\t\t\t\twidth: auto;\n\n\t\t\t\ta.edit-field {\n\t\t\t\t\t@extend .p4;\n\t\t\t\t}\n\n\t\t\t\tstrong {\n\t\t\t\t\tfont-weight: 500;\n\t\t\t\t}\n\n\t\t\t\t.row-options {\n\t\t\t\t\twidth: 100%;\n\t\t\t\t}\n\n\t\t\t\t.row-options a {\n\t\t\t\t\t@extend .p6;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n}\n\n/*----------------------------------------------------------------------------\n*\n* Table footer\n*\n*----------------------------------------------------------------------------*/\n.post-type-acf-field-group {\n\t.acf-tfoot {\n\t\tdisplay: flex;\n\t\talign-items: center;\n\t\tjustify-content: flex-end;\n\t\tmin-height: 80px;\n\t\tbox-sizing: border-box;\n\t\tpadding: {\n\t\t\ttop: 8px;\n\t\t\tright: 24px;\n\t\t\tbottom: 8px;\n\t\t\tleft: 24px;\n\t\t}\n\t\tbackground-color: #fff;\n\t\tborder-top: {\n\t\t\twidth: 1px;\n\t\t\tstyle: solid;\n\t\t\tcolor: $gray-200;\n\t\t}\n\n\t\t.acf-fr {\n\t\t\tmargin: {\n\t\t\t\ttop: 0;\n\t\t\t\tright: 0;\n\t\t\t\tbottom: 0;\n\t\t\t\tleft: 0;\n\t\t\t}\n\t\t\tpadding: {\n\t\t\t\ttop: 0;\n\t\t\t\tright: 0;\n\t\t\t\tbottom: 0;\n\t\t\t\tleft: 0;\n\t\t\t}\n\t\t}\n\t}\n}\n\n/*----------------------------------------------------------------------------\n*\n* Edit field settings\n*\n*----------------------------------------------------------------------------*/\n.post-type-acf-field-group .acf-field-object .settings {\n\tbox-sizing: border-box;\n\tpadding: {\n\t\ttop: 0;\n\t\tbottom: 0;\n\t}\n\tbackground-color: #fff;\n\tborder-left: {\n\t\twidth: 4px;\n\t\tstyle: solid;\n\t\tcolor: $blue-300;\n\t}\n}\n\n/*----------------------------------------------------------------------------\n*\n* Main field settings container\n*\n*----------------------------------------------------------------------------*/\n.acf-field-settings-main {\n\tpadding: {\n\t\ttop: 32px;\n\t\tright: 0;\n\t\tbottom: 32px;\n\t\tleft: 0;\n\t}\n\n\t.acf-field:last-of-type,\n\t.acf-field.acf-last-visible {\n\t\tmargin: {\n\t\t\tbottom: 0;\n\t\t}\n\t}\n}\n\n/*----------------------------------------------------------------------------\n*\n* Field label\n*\n*----------------------------------------------------------------------------*/\n.acf-field-settings .acf-label {\n\tdisplay: block;\n\tjustify-content: space-between;\n\talign-items: center;\n\talign-content: center;\n\tmargin: {\n\t\ttop: 0;\n\t\tright: 0;\n\t\tbottom: 6px;\n\t\tleft: 0;\n\t}\n}\n\n/*----------------------------------------------------------------------------\n*\n* Single field\n*\n*----------------------------------------------------------------------------*/\n.acf-field-settings .acf-field {\n\tbox-sizing: border-box;\n\twidth: 100%;\n\tmargin: {\n\t\ttop: 0;\n\t\tright: 0;\n\t\tbottom: 32px;\n\t\tleft: 0;\n\t}\n\tpadding: {\n\t\ttop: 0;\n\t\tright: 72px;\n\t\tbottom: 0;\n\t\tleft: 72px;\n\t}\n\n\t@media screen and (max-width: 600px) {\n\t\tpadding: {\n\t\t\tright: 12px;\n\t\t\tleft: 12px;\n\t\t}\n\t}\n\n\t.acf-label,\n\t.acf-input {\n\t\tmax-width: 600px;\n\n\t\t&.acf-input-sub {\n\t\t\tmax-width: 100%;\n\t\t}\n\n\t\t.acf-btn {\n\t\t\t&:disabled {\n\t\t\t\tbackground-color: $gray-100;\n\t\t\t\tcolor: $gray-400 !important;\n\t\t\t\tborder: 1px $gray-300 solid;\n\t\t\t\tcursor: default;\n\t\t\t}\n\t\t}\n\t}\n\n\t.acf-input-wrap {\n\t\toverflow: visible;\n\t}\n}\n\n/*----------------------------------------------------------------------------\n*\n* Field separators\n*\n*----------------------------------------------------------------------------*/\n\n.acf-field-settings .acf-field.acf-field-setting-label,\n.acf-field-settings .acf-field-setting-wrapper {\n\tpadding: {\n\t\ttop: 24px;\n\t}\n\tborder-top: {\n\t\twidth: 1px;\n\t\tstyle: solid;\n\t\tcolor: $gray-200;\n\t}\n}\n\n.acf-field-settings .acf-field-setting-wrapper {\n\tmargin: {\n\t\ttop: 24px;\n\t}\n}\n\n/*----------------------------------------------------------------------------\n*\n* Informational Notes for specific fields\n*\n*----------------------------------------------------------------------------*/\n.acf-field-setting-bidirectional_notes {\n\t.acf-label {\n\t\tdisplay: none;\n\t}\n\n\t.acf-feature-notice {\n\t\tbackground-color: $gray-50;\n\t\tborder: 1px solid $gray-200;\n\t\tborder-radius: 6px;\n\t\tpadding: 16px;\n\t\tcolor: $gray-700;\n\t\tposition: relative;\n\n\t\t&.with-warning-icon {\n\t\t\tpadding-left: 45px;\n\t\t\t&::before {\n\t\t\t\tcontent: \"\";\n\t\t\t\t$icon-size: 18px;\n\t\t\t\tdisplay: block;\n\t\t\t\tposition: absolute;\n\t\t\t\ttop: 17px;\n\t\t\t\tleft: 18px;\n\t\t\t\tz-index: 600;\n\t\t\t\twidth: $icon-size;\n\t\t\t\theight: $icon-size;\n\t\t\t\tmargin: {\n\t\t\t\t\tright: 8px;\n\t\t\t\t}\n\t\t\t\tbackground-color: $gray-500;\n\t\t\t\tborder: none;\n\t\t\t\tborder-radius: 0;\n\t\t\t\t-webkit-mask-size: contain;\n\t\t\t\tmask-size: contain;\n\t\t\t\t-webkit-mask-repeat: no-repeat;\n\t\t\t\tmask-repeat: no-repeat;\n\t\t\t\t-webkit-mask-position: center;\n\t\t\t\tmask-position: center;\n\t\t\t\t-webkit-mask-image: url(\"../../images/icons/icon-info.svg\");\n\t\t\t\tmask-image: url(\"../../images/icons/icon-info.svg\");\n\t\t\t}\n\t\t}\n\t}\n}\n\n/*----------------------------------------------------------------------------\n*\n* Edit fields footer\n*\n*----------------------------------------------------------------------------*/\n.acf-field-settings .acf-field-settings-footer {\n\tdisplay: flex;\n\talign-items: center;\n\tmin-height: 72px;\n\tbox-sizing: border-box;\n\twidth: 100%;\n\tmargin: {\n\t\ttop: 0;\n\t\tright: 0;\n\t\tbottom: 0;\n\t\tleft: 0;\n\t}\n\tpadding: {\n\t\ttop: 0;\n\t\tright: 0;\n\t\tbottom: 0;\n\t\tleft: 72px;\n\t}\n\tborder-top: {\n\t\twidth: 1px;\n\t\tstyle: solid;\n\t\tcolor: $gray-200;\n\t}\n\n\t@media screen and (max-width: 600px) {\n\t\tpadding: {\n\t\t\tleft: 12px;\n\t\t}\n\t}\n}\n\n.rtl .acf-field-settings .acf-field-settings-footer {\n\tpadding: {\n\t\ttop: 0;\n\t\tright: 72px;\n\t\tbottom: 0;\n\t\tleft: 0;\n\t}\n}\n\n/*----------------------------------------------------------------------------\n*\n* Tabs\n*\n*----------------------------------------------------------------------------*/\n.acf-fields,\n.acf-admin-page.acf-internal-post-type,\n.acf-browse-fields-modal-wrap {\n\t.acf-tab-wrap {\n\t\tbackground: $gray-50;\n\t\tborder-bottom: {\n\t\t\tcolor: $gray-800;\n\t\t}\n\n\t\t.acf-tab-group {\n\t\t\tpadding: {\n\t\t\t\tright: 24px;\n\t\t\t\tleft: 24px;\n\t\t\t}\n\t\t\tborder-top: {\n\t\t\t\twidth: 0;\n\t\t\t}\n\t\t\tborder-bottom: {\n\t\t\t\twidth: 1px;\n\t\t\t\tstyle: solid;\n\t\t\t\tcolor: $gray-200;\n\t\t\t}\n\t\t}\n\t}\n\n\t.acf-field-settings-tab-bar,\n\t.acf-tab-wrap .acf-tab-group {\n\t\tdisplay: flex;\n\t\talign-items: stretch;\n\t\tmin-height: 48px;\n\t\tpadding: {\n\t\t\ttop: 0;\n\t\t\tright: 0;\n\t\t\tbottom: 0;\n\t\t\tleft: 24px;\n\t\t}\n\t\tmargin: {\n\t\t\ttop: 0;\n\t\t\tbottom: 0;\n\t\t}\n\t\tborder-bottom: {\n\t\t\twidth: 1px;\n\t\t\tstyle: solid;\n\t\t\tcolor: $gray-200;\n\t\t}\n\t\tli {\n\t\t\tdisplay: flex;\n\t\t\tmargin: {\n\t\t\t\ttop: 0;\n\t\t\t\tright: 24px;\n\t\t\t\tbottom: 0;\n\t\t\t\tleft: 0;\n\t\t\t}\n\t\t\tpadding: 0;\n\n\t\t\ta {\n\t\t\t\t&:focus-visible {\n\t\t\t\t\tborder: 1px solid #5897fb;\n\t\t\t\t}\n\n\t\t\t\tbox-sizing: border-box;\n\t\t\t\tdisplay: inline-flex;\n\t\t\t\talign-items: center;\n\t\t\t\theight: 100%;\n\t\t\t\tpadding: {\n\t\t\t\t\ttop: 3px;\n\t\t\t\t\tright: 0;\n\t\t\t\t\tbottom: 0;\n\t\t\t\t\tleft: 0;\n\t\t\t\t}\n\t\t\t\tbackground: none;\n\t\t\t\tborder-top: none;\n\t\t\t\tborder-right: none;\n\t\t\t\tborder-bottom: {\n\t\t\t\t\twidth: 3px;\n\t\t\t\t\tstyle: solid;\n\t\t\t\t\tcolor: transparent;\n\t\t\t\t}\n\t\t\t\tborder-left: none;\n\t\t\t\tcolor: $gray-500;\n\t\t\t\t@extend .p5;\n\t\t\t\tfont-weight: normal;\n\n\t\t\t\t&:hover {\n\t\t\t\t\tcolor: $gray-800;\n\t\t\t\t}\n\n\t\t\t\t&:hover {\n\t\t\t\t\tbackground-color: transparent;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t&.active a {\n\t\t\t\tbackground: none;\n\t\t\t\tborder-bottom: {\n\t\t\t\t\tcolor: $color-primary;\n\t\t\t\t}\n\t\t\t\tcolor: $blue-500;\n\n\t\t\t\t&:focus-visible {\n\t\t\t\t\tborder-bottom: {\n\t\t\t\t\t\tcolor: $color-primary;\n\t\t\t\t\t\twidth: 3px;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n}\n\n.acf-admin-page.acf-internal-post-type\n\t.acf-field-editor\n\t.acf-field-settings-tab-bar {\n\tpadding: {\n\t\tleft: 72px;\n\t}\n\n\t@media screen and (max-width: 600px) {\n\t\tpadding: {\n\t\t\tleft: 12px;\n\t\t}\n\t}\n}\n\n/*----------------------------------------------------------------------------\n*\n* Field group settings\n*\n*----------------------------------------------------------------------------*/\n#acf-field-group-options {\n\t.field-group-settings-tab {\n\t\tpadding: {\n\t\t\ttop: 24px;\n\t\t\tright: 24px;\n\t\t\tbottom: 24px;\n\t\t\tleft: 24px;\n\t\t}\n\n\t\t.acf-field:last-of-type {\n\t\t\tpadding: 0;\n\t\t}\n\t}\n\n\t.acf-field {\n\t\tborder: none;\n\t\tmargin: {\n\t\t\ttop: 0;\n\t\t\tright: 0;\n\t\t\tbottom: 0;\n\t\t\tleft: 0;\n\t\t}\n\t\tpadding: {\n\t\t\ttop: 0;\n\t\t\tright: 0;\n\t\t\tbottom: 24px;\n\t\t\tleft: 0;\n\t\t}\n\t}\n\n\t// Split layout\n\t.field-group-setting-split-container {\n\t\tdisplay: flex;\n\t\tpadding: {\n\t\t\ttop: 0;\n\t\t\tright: 0;\n\t\t\tbottom: 0;\n\t\t\tleft: 0;\n\t\t}\n\n\t\t.field-group-setting-split {\n\t\t\tbox-sizing: border-box;\n\t\t\tpadding: {\n\t\t\t\ttop: 24px;\n\t\t\t\tright: 24px;\n\t\t\t\tbottom: 24px;\n\t\t\t\tleft: 24px;\n\t\t\t}\n\t\t}\n\n\t\t.field-group-setting-split:nth-child(1) {\n\t\t\tflex: 1 0 auto;\n\t\t}\n\n\t\t.field-group-setting-split:nth-child(2n) {\n\t\t\tflex: 1 0 auto;\n\t\t\tmax-width: 320px;\n\t\t\tmargin: {\n\t\t\t\ttop: 0;\n\t\t\t\tright: 0;\n\t\t\t\tbottom: 0;\n\t\t\t\tleft: 32px;\n\t\t\t}\n\t\t\tpadding: {\n\t\t\t\tright: 32px;\n\t\t\t\tleft: 32px;\n\t\t\t}\n\t\t\tborder-left: {\n\t\t\t\twidth: 1px;\n\t\t\t\tstyle: solid;\n\t\t\t\tcolor: $gray-200;\n\t\t\t}\n\t\t}\n\t}\n\n\t// Description field\n\t.acf-field[data-name=\"description\"] {\n\t\tmax-width: 600px;\n\t}\n\n\t// Button group\n\t.acf-button-group {\n\t\tdisplay: inline-flex;\n\t}\n}\n\n.rtl #acf-field-group-options {\n\t.field-group-setting-split-container {\n\t\t.field-group-setting-split:nth-child(2n) {\n\t\t\tmargin: {\n\t\t\t\tright: 32px;\n\t\t\t\tleft: 0;\n\t\t\t}\n\t\t\tborder-left: none;\n\t\t\tborder-right: {\n\t\t\t\twidth: 1px;\n\t\t\t\tstyle: solid;\n\t\t\t\tcolor: $gray-200;\n\t\t\t}\n\t\t}\n\t}\n}\n\n/*----------------------------------------------------------------------------\n*\n* Reorder handles\n*\n*----------------------------------------------------------------------------*/\n.acf-field-list {\n\t.li-field-order {\n\t\tpadding: 0;\n\t\tdisplay: flex;\n\t\tflex-direction: row;\n\t\tflex-wrap: nowrap;\n\t\tjustify-content: center;\n\t\talign-content: stretch;\n\t\talign-items: stretch;\n\t\tbackground-color: transparent;\n\t}\n\n\t.acf-sortable-handle {\n\t\tdisplay: flex;\n\t\tflex-direction: row;\n\t\tflex-wrap: nowrap;\n\t\tjustify-content: center;\n\t\talign-content: flex-start;\n\t\talign-items: flex-start;\n\t\twidth: 100%;\n\t\theight: 100%;\n\t\tposition: relative;\n\t\tpadding: {\n\t\t\ttop: 11px;\n\t\t\tbottom: 8px;\n\t\t}\n\t\t@extend .p4;\n\t\tbackground-color: transparent;\n\t\tborder: none;\n\t\tborder-radius: 0;\n\n\t\t&:hover {\n\t\t\tcursor: grab;\n\t\t}\n\n\t\t&:before {\n\t\t\tcontent: \"\";\n\t\t\tdisplay: none;\n\t\t\tposition: absolute;\n\t\t\ttop: 16px;\n\t\t\tleft: 8px;\n\t\t\twidth: 16px;\n\t\t\theight: 16px;\n\t\t\t$icon-size: 12px;\n\t\t\twidth: $icon-size;\n\t\t\theight: $icon-size;\n\t\t\tbackground-color: $gray-400;\n\t\t\tborder: none;\n\t\t\tborder-radius: 0;\n\t\t\t-webkit-mask-size: contain;\n\t\t\tmask-size: contain;\n\t\t\t-webkit-mask-repeat: no-repeat;\n\t\t\tmask-repeat: no-repeat;\n\t\t\t-webkit-mask-position: center;\n\t\t\tmask-position: center;\n\t\t\ttext-indent: 500%;\n\t\t\twhite-space: nowrap;\n\t\t\toverflow: hidden;\n\t\t\t-webkit-mask-image: url(\"../../images/icons/icon-draggable.svg\");\n\t\t\tmask-image: url(\"../../images/icons/icon-draggable.svg\");\n\t\t}\n\t}\n}\n\n.rtl .acf-field-list {\n\t.acf-sortable-handle {\n\t\t&:before {\n\t\t\tleft: 0;\n\t\t\tright: 8px;\n\t\t}\n\t}\n}\n\n/*----------------------------------------------------------------------------\n*\n* Expand / collapse field icon\n*\n*----------------------------------------------------------------------------*/\n.acf-field-object {\n\t.li-field-label {\n\t\tposition: relative;\n\t\tpadding: {\n\t\t\tleft: 40px;\n\t\t}\n\n\t\t&:before {\n\t\t\tcontent: \"\";\n\t\t\tdisplay: block;\n\t\t\tposition: absolute;\n\t\t\tleft: 6px;\n\t\t\t$icon-size: 18px;\n\t\t\tdisplay: inline-flex;\n\t\t\twidth: $icon-size;\n\t\t\theight: $icon-size;\n\t\t\tmargin: {\n\t\t\t\ttop: -2px;\n\t\t\t}\n\t\t\tbackground-color: $gray-500;\n\t\t\tborder: none;\n\t\t\tborder-radius: 0;\n\t\t\t-webkit-mask-size: contain;\n\t\t\tmask-size: contain;\n\t\t\t-webkit-mask-repeat: no-repeat;\n\t\t\tmask-repeat: no-repeat;\n\t\t\t-webkit-mask-position: center;\n\t\t\tmask-position: center;\n\t\t\ttext-indent: 500%;\n\t\t\twhite-space: nowrap;\n\t\t\toverflow: hidden;\n\t\t\t-webkit-mask-image: url(\"../../images/icons/icon-chevron-down.svg\");\n\t\t\tmask-image: url(\"../../images/icons/icon-chevron-down.svg\");\n\t\t}\n\n\t\t&:hover:before {\n\t\t\tcursor: pointer;\n\t\t}\n\t}\n}\n\n.rtl {\n\t.acf-field-object {\n\t\t.li-field-label {\n\t\t\tpadding: {\n\t\t\t\tleft: 0;\n\t\t\t\tright: 40px;\n\t\t\t}\n\n\t\t\t&:before {\n\t\t\t\tleft: 0;\n\t\t\t\tright: 6px;\n\t\t\t\t-webkit-mask-image: url(\"../../images/icons/icon-chevron-down.svg\");\n\t\t\t\tmask-image: url(\"../../images/icons/icon-chevron-down.svg\");\n\t\t\t}\n\t\t}\n\n\t\t// Open\n\t\t&.open {\n\t\t\t.li-field-label:before {\n\t\t\t\t-webkit-mask-image: url(\"../../images/icons/icon-chevron-down.svg\");\n\t\t\t\tmask-image: url(\"../../images/icons/icon-chevron-down.svg\");\n\t\t\t}\n\n\t\t\t.acf-input-sub .li-field-label:before {\n\t\t\t\t-webkit-mask-image: url(\"../../images/icons/icon-chevron-right.svg\");\n\t\t\t\tmask-image: url(\"../../images/icons/icon-chevron-right.svg\");\n\t\t\t}\n\n\t\t\t.acf-input-sub .acf-field-object.open .li-field-label:before {\n\t\t\t\t-webkit-mask-image: url(\"../../images/icons/icon-chevron-down.svg\");\n\t\t\t\tmask-image: url(\"../../images/icons/icon-chevron-down.svg\");\n\t\t\t}\n\t\t}\n\t}\n}\n\n.acf-thead {\n\t.li-field-label {\n\t\tpadding: {\n\t\t\tleft: 40px;\n\t\t}\n\t}\n\t.rtl & {\n\t\t.li-field-label {\n\t\t\tpadding: {\n\t\t\t\tleft: 0;\n\t\t\t\tright: 40px;\n\t\t\t}\n\t\t}\n\t}\n}\n\n/*----------------------------------------------------------------------------\n*\n* Conditional logic layout\n*\n*----------------------------------------------------------------------------*/\n.acf-field-settings-main-conditional-logic {\n\t.acf-conditional-toggle {\n\t\tdisplay: flex;\n\t\tpadding: {\n\t\t\tright: 72px;\n\t\t\tleft: 72px;\n\t\t}\n\n\t\t@media screen and (max-width: 600px) {\n\t\t\tpadding: {\n\t\t\t\tleft: 12px;\n\t\t\t}\n\t\t}\n\t}\n\n\t.acf-field {\n\t\tflex-wrap: wrap;\n\t\tmargin: {\n\t\t\tbottom: 0;\n\t\t}\n\t\tpadding: {\n\t\t\tright: 0;\n\t\t\tleft: 0;\n\t\t}\n\n\t\t.rule-groups {\n\t\t\tflex: 0 1 100%;\n\t\t\torder: 3;\n\t\t\tmargin: {\n\t\t\t\ttop: 32px;\n\t\t\t}\n\t\t\tpadding: {\n\t\t\t\ttop: 32px;\n\t\t\t\tright: 72px;\n\t\t\t\tleft: 72px;\n\t\t\t}\n\t\t\tborder-top: {\n\t\t\t\twidth: 1px;\n\t\t\t\tstyle: solid;\n\t\t\t\tcolor: $gray-200;\n\t\t\t}\n\n\t\t\t@media screen and (max-width: 600px) {\n\t\t\t\tpadding: {\n\t\t\t\t\tleft: 12px;\n\t\t\t\t}\n\n\t\t\t\ttable.acf-table tbody tr {\n\t\t\t\t\tdisplay: flex;\n\t\t\t\t\tflex-wrap: wrap;\n\t\t\t\t\tjustify-content: flex-start;\n\t\t\t\t\talign-content: flex-start;\n\t\t\t\t\talign-items: flex-start;\n\n\t\t\t\t\ttd {\n\t\t\t\t\t\tflex: 1 1 100%;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n}\n\n/*----------------------------------------------------------------------------\n*\n* Prefix & append styling\n*\n*----------------------------------------------------------------------------*/\n.acf-input {\n\t.acf-input-prepend,\n\t.acf-input-append {\n\t\tdisplay: inline-flex;\n\t\talign-items: center;\n\t\theight: 100%;\n\t\tmin-height: 40px;\n\t\tpadding: {\n\t\t\tright: 12px;\n\t\t\tleft: 12px;\n\t\t}\n\t\tbackground-color: $gray-50;\n\t\tborder-color: $gray-300;\n\t\tbox-shadow: $elevation-01;\n\t\tcolor: $gray-500;\n\t}\n\n\t.acf-input-prepend {\n\t\tborder-radius: $radius-md 0 0 $radius-md;\n\t}\n\n\t.acf-input-append {\n\t\tborder-radius: 0 $radius-md $radius-md 0;\n\t}\n}\n\n/*----------------------------------------------------------------------------\n*\n* ACF input wrap\n*\n*----------------------------------------------------------------------------*/\n.acf-input-wrap {\n\tdisplay: flex;\n}\n\n.acf-field-settings-main-presentation .acf-input-wrap {\n\tdisplay: flex;\n}\n\n/*----------------------------------------------------------------------------\n*\n* Empty state\n*\n*----------------------------------------------------------------------------*/\n.post-type-acf-field-group\n\t#acf-field-group-fields\n\t.acf-field-list.-empty\n\t.no-fields-message {\n\tdisplay: flex;\n\tjustify-content: center;\n\tpadding: {\n\t\ttop: 48px;\n\t\tbottom: 48px;\n\t}\n\n\t.no-fields-message-inner {\n\t\tdisplay: flex;\n\t\tflex-wrap: wrap;\n\t\tjustify-content: center;\n\t\talign-content: center;\n\t\talign-items: flex-start;\n\t\ttext-align: center;\n\t\tmax-width: 400px;\n\n\t\timg,\n\t\th2,\n\t\tp {\n\t\t\tflex: 1 0 100%;\n\t\t}\n\n\t\th2 {\n\t\t\t@extend .acf-h2;\n\t\t\tmargin: {\n\t\t\t\ttop: 32px;\n\t\t\t\tbottom: 0;\n\t\t\t}\n\t\t\tpadding: 0;\n\t\t\tcolor: $gray-700;\n\t\t}\n\n\t\tp {\n\t\t\t@extend .p2;\n\t\t\tmargin: {\n\t\t\t\ttop: 12px;\n\t\t\t\tbottom: 0;\n\t\t\t}\n\t\t\tpadding: 0;\n\t\t\tcolor: $gray-500;\n\n\t\t\t&.acf-small {\n\t\t\t\t@extend .p6;\n\t\t\t\tmargin: {\n\t\t\t\t\ttop: 32px;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\timg {\n\t\t\tmax-width: 284px;\n\t\t\tmargin: {\n\t\t\t\tbottom: 0;\n\t\t\t}\n\t\t}\n\n\t\t.acf-btn {\n\t\t\tmargin: {\n\t\t\t\ttop: 32px;\n\t\t\t}\n\t\t}\n\t}\n}\n\n/*----------------------------------------------------------------------------\n*\n* Hide add title prompt label\n*\n*----------------------------------------------------------------------------*/\n.post-type-acf-field-group {\n\t.acf-headerbar {\n\t\t#title-prompt-text {\n\t\t\tdisplay: none;\n\t\t}\n\t}\n}\n\n/*----------------------------------------------------------------------------\n*\n* Modal styling\n*\n*----------------------------------------------------------------------------*/\n.acf-admin-page {\n\t#acf-popup .acf-popup-box {\n\t\tmin-width: 480px;\n\n\t\t.title {\n\t\t\tdisplay: flex;\n\t\t\talign-items: center;\n\t\t\talign-content: center;\n\t\t\tjustify-content: space-between;\n\t\t\tmin-height: 64px;\n\t\t\tbox-sizing: border-box;\n\t\t\tmargin: 0;\n\t\t\tpadding: {\n\t\t\t\tright: 24px;\n\t\t\t\tleft: 24px;\n\t\t\t}\n\t\t\tborder-bottom: {\n\t\t\t\twidth: 1px;\n\t\t\t\tstyle: solid;\n\t\t\t\tcolor: $gray-200;\n\t\t\t}\n\n\t\t\th1,\n\t\t\th2,\n\t\t\th3,\n\t\t\th4 {\n\t\t\t\t@extend .acf-h3;\n\t\t\t\tpadding: {\n\t\t\t\t\tleft: 0;\n\t\t\t\t}\n\t\t\t\tcolor: $gray-700;\n\t\t\t}\n\n\t\t\t.acf-icon {\n\t\t\t\tdisplay: block;\n\t\t\t\tposition: relative;\n\t\t\t\ttop: auto;\n\t\t\t\tright: auto;\n\t\t\t\twidth: 22px;\n\t\t\t\theight: 22px;\n\t\t\t\tbackground-color: transparent;\n\t\t\t\tcolor: transparent;\n\n\t\t\t\t&:before {\n\t\t\t\t\t$icon-size: 22px;\n\t\t\t\t\tdisplay: inline-flex;\n\t\t\t\t\tposition: absolute;\n\t\t\t\t\ttop: 0;\n\t\t\t\t\tleft: 0;\n\t\t\t\t\twidth: $icon-size;\n\t\t\t\t\theight: $icon-size;\n\t\t\t\t\tbackground-color: $gray-500;\n\t\t\t\t\tborder: none;\n\t\t\t\t\tborder-radius: 0;\n\t\t\t\t\t-webkit-mask-size: contain;\n\t\t\t\t\tmask-size: contain;\n\t\t\t\t\t-webkit-mask-repeat: no-repeat;\n\t\t\t\t\tmask-repeat: no-repeat;\n\t\t\t\t\t-webkit-mask-position: center;\n\t\t\t\t\tmask-position: center;\n\t\t\t\t\ttext-indent: 500%;\n\t\t\t\t\twhite-space: nowrap;\n\t\t\t\t\toverflow: hidden;\n\t\t\t\t\t-webkit-mask-image: url(\"../../images/icons/icon-close-circle.svg\");\n\t\t\t\t\tmask-image: url(\"../../images/icons/icon-close-circle.svg\");\n\t\t\t\t}\n\n\t\t\t\t&:hover:before {\n\t\t\t\t\tbackground-color: $color-primary;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t.inner {\n\t\t\tbox-sizing: border-box;\n\t\t\tmargin: 0;\n\t\t\tpadding: {\n\t\t\t\ttop: 24px;\n\t\t\t\tright: 24px;\n\t\t\t\tbottom: 24px;\n\t\t\t\tleft: 24px;\n\t\t\t}\n\t\t\tborder-top: none;\n\n\t\t\tp {\n\t\t\t\tmargin: {\n\t\t\t\t\ttop: 0;\n\t\t\t\t\tbottom: 0;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// Custom styling for move custom field modal/link field groups modal.\n\t\t#acf-move-field-form,\n\t\t#acf-link-field-groups-form {\n\t\t\t.acf-field-select {\n\t\t\t\tmargin: {\n\t\t\t\t\ttop: 0;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\t// Custom styling for the link field groups/create options page modal.\n\t.acf-link-field-groups-popup .acf-popup-box,\n\t.acf-create-options-page-popup .acf-popup-box {\n\t\t.title h3 {\n\t\t\tcolor: $gray-800;\n\t\t\tfont-weight: 500;\n\n\t\t\t&:before {\n\t\t\t\tcontent: \"\";\n\t\t\t\twidth: 18px;\n\t\t\t\theight: 18px;\n\t\t\t\tbackground: $gray-400;\n\t\t\t\tmargin-right: 9px;\n\t\t\t}\n\t\t}\n\n\t\t.inner {\n\t\t\tpadding: 0 !important;\n\n\t\t\t.acf-field-select,\n\t\t\t.acf-link-successful {\n\t\t\t\tpadding: 32px 24px;\n\t\t\t\tmargin-bottom: 0;\n\n\t\t\t\t.description {\n\t\t\t\t\tmargin-top: 6px !important;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t.acf-actions {\n\t\t\t\tbackground: $gray-50;\n\t\t\t\tborder-top: 1px solid $gray-200;\n\t\t\t\tpadding: {\n\t\t\t\t\ttop: 20px;\n\t\t\t\t\tleft: 24px;\n\t\t\t\t\tbottom: 20px;\n\t\t\t\t\tright: 24px;\n\t\t\t\t}\n\t\t\t\tborder-bottom-left-radius: 8px;\n\t\t\t\tborder-bottom-right-radius: 8px;\n\n\t\t\t\t.acf-btn {\n\t\t\t\t\tdisplay: inline-block;\n\t\t\t\t\tmargin-left: 8px;\n\n\t\t\t\t\t&.acf-btn-primary {\n\t\t\t\t\t\twidth: 120px;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\t.acf-create-options-page-popup .acf-popup-box {\n\t\t.inner {\n\t\t\t.acf-error-message.-success {\n\t\t\t\tdisplay: none;\n\t\t\t}\n\n\t\t\t.-dismiss {\n\t\t\t\tmargin: 24px 32px !important;\n\t\t\t}\n\n\t\t\t.acf-field {\n\t\t\t\tpadding: 24px 32px 0 32px;\n\t\t\t\tmargin: 0;\n\n\t\t\t\t&.acf-error {\n\t\t\t\t\t.acf-input-wrap {\n\t\t\t\t\t\toverflow: inherit;\n\n\t\t\t\t\t\tinput[type=\"text\"] {\n\t\t\t\t\t\t\tborder: 1px rgba($color-danger, 0.5) solid !important;\n\t\t\t\t\t\t\tbox-shadow:\n\t\t\t\t\t\t\t\t0px 0px 0px 3px rgba(209, 55, 55, 0.12),\n\t\t\t\t\t\t\t\t0px 0px 0px rgba(255, 54, 54, 0.25) !important;\n\t\t\t\t\t\t\tbackground-image: url(../../images/icons/icon-info-red.svg);\n\t\t\t\t\t\t\tbackground-position: right 10px top 50%;\n\t\t\t\t\t\t\tbackground-size: 14px;\n\t\t\t\t\t\t\tbackground-repeat: no-repeat;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t.acf-options-page-modal-error p {\n\t\t\t\t\tfont-size: 12px;\n\t\t\t\t\tcolor: $color-danger;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t.acf-actions {\n\t\t\t\tmargin-top: 32px;\n\n\t\t\t\t.acf-btn:disabled {\n\t\t\t\t\tbackground-color: $blue-500;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n}\n\n/*----------------------------------------------------------------------------\n*\n* Hide original #post-body-content from edit field group page\n*\n*----------------------------------------------------------------------------*/\n.acf-admin-single-field-group {\n\t#post-body-content {\n\t\tdisplay: none;\n\t}\n}\n\n/*----------------------------------------------------------------------------\n*\n* Settings section footer\n*\n*----------------------------------------------------------------------------*/\n.acf-field-group-settings-footer {\n\tdisplay: flex;\n\tjustify-content: space-between;\n\talign-content: stretch;\n\talign-items: center;\n\tposition: relative;\n\tmin-height: 88px;\n\tmargin: {\n\t\tright: -24px;\n\t\tleft: -24px;\n\t\tbottom: -24px;\n\t}\n\tpadding: {\n\t\tright: 24px;\n\t\tleft: 24px;\n\t}\n\tborder-top: {\n\t\twidth: 1px;\n\t\tstyle: solid;\n\t\tcolor: $gray-200;\n\t}\n\n\t.acf-created-on {\n\t\tdisplay: inline-flex;\n\t\tjustify-content: flex-start;\n\t\talign-content: stretch;\n\t\talign-items: center;\n\t\t@extend .p5;\n\t\tcolor: $gray-500;\n\n\t\t&:before {\n\t\t\tcontent: \"\";\n\t\t\t$icon-size: 20px;\n\t\t\tdisplay: inline-block;\n\t\t\twidth: $icon-size;\n\t\t\theight: $icon-size;\n\t\t\tmargin: {\n\t\t\t\tright: 8px;\n\t\t\t}\n\t\t\tbackground-color: $gray-400;\n\t\t\tborder: none;\n\t\t\tborder-radius: 0;\n\t\t\t-webkit-mask-size: contain;\n\t\t\tmask-size: contain;\n\t\t\t-webkit-mask-repeat: no-repeat;\n\t\t\tmask-repeat: no-repeat;\n\t\t\t-webkit-mask-position: center;\n\t\t\tmask-position: center;\n\t\t\t-webkit-mask-image: url(\"../../images/icons/icon-time.svg\");\n\t\t\tmask-image: url(\"../../images/icons/icon-time.svg\");\n\t\t}\n\t}\n}\n\n/*----------------------------------------------------------------------------\n*\n* Conditional logic enabled badge\n*\n*----------------------------------------------------------------------------*/\n.conditional-logic-badge {\n\tdisplay: none;\n\n\t&.is-enabled {\n\t\tdisplay: inline-block;\n\t\twidth: 6px;\n\t\theight: 6px;\n\t\toverflow: hidden;\n\t\tmargin: {\n\t\t\tleft: 8px;\n\t\t}\n\t\tbackground-color: rgba($color-success, 0.4);\n\t\tborder: {\n\t\t\twidth: 1px;\n\t\t\tstyle: solid;\n\t\t\tcolor: $color-success;\n\t\t}\n\t\tborder-radius: 100px;\n\t\ttext-indent: 100%;\n\t\twhite-space: nowrap;\n\t}\n}\n\n/*----------------------------------------------------------------------------\n*\n* Field settings container\n*\n*----------------------------------------------------------------------------*/\n.acf-field-type-settings {\n\tcontainer-name: settings;\n\tcontainer-type: inline-size;\n}\n\n/*----------------------------------------------------------------------------\n*\n* Split field settings\n*\n*----------------------------------------------------------------------------*/\n.acf-field-settings-split {\n\tdisplay: flex;\n\tborder-top: {\n\t\twidth: 1px;\n\t\tstyle: solid;\n\t\tcolor: $gray-200;\n\t}\n\t.acf-field {\n\t\tmargin: 0;\n\t\tpadding: {\n\t\t\ttop: 32px;\n\t\t\tbottom: 32px;\n\t\t}\n\n\t\t&:nth-child(2n) {\n\t\t\tborder-left: {\n\t\t\t\twidth: 1px;\n\t\t\t\tstyle: solid;\n\t\t\t\tcolor: $gray-200;\n\t\t\t}\n\t\t}\n\t}\n}\n\n@container settings (max-width: 1170px) {\n\t.acf-field-settings-split {\n\t\tborder: none;\n\t\tflex-direction: column;\n\t}\n\t.acf-field {\n\t\tborder-top-width: 1px;\n\t\tborder-top-style: solid;\n\t\tborder-top-color: $gray-200;\n\t}\n}\n\n/*----------------------------------------------------------------------------\n*\n* Display & return format\n*\n*----------------------------------------------------------------------------*/\n.acf-field-setting-display_format,\n.acf-field-setting-return_format {\n\t.acf-label {\n\t\tmargin: {\n\t\t\tbottom: 6px;\n\t\t}\n\t}\n\n\t.acf-radio-list {\n\t\tli {\n\t\t\tdisplay: flex;\n\n\t\t\tlabel {\n\t\t\t\tdisplay: inline-flex;\n\t\t\t\twidth: 100%;\n\n\t\t\t\tspan {\n\t\t\t\t\tflex: 1 1 auto;\n\t\t\t\t}\n\n\t\t\t\tcode {\n\t\t\t\t\tpadding: {\n\t\t\t\t\t\tright: 8px;\n\t\t\t\t\t\tleft: 8px;\n\t\t\t\t\t}\n\t\t\t\t\tbackground-color: $gray-100;\n\t\t\t\t\tborder-radius: 4px;\n\t\t\t\t\t@extend .p5;\n\t\t\t\t\tcolor: $gray-600;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tinput[type=\"text\"] {\n\t\t\t\theight: 32px;\n\t\t\t}\n\t\t}\n\t}\n}\n\n.acf-field-settings .acf-field-setting-first_day {\n\tpadding: {\n\t\ttop: 32px;\n\t}\n\tborder-top: {\n\t\twidth: 1px;\n\t\tstyle: solid;\n\t\tcolor: $gray-200;\n\t}\n}\n\n/*----------------------------------------------------------------------------\n*\n* Image and Gallery fields\n*\n*----------------------------------------------------------------------------*/\n.acf-field-object-image,\n.acf-field-object-gallery {\n\t.acf-hl[data-cols=\"3\"] > li {\n\t\twidth: auto;\n\t}\n}\n\n/*----------------------------------------------------------------------------\n*\n* Appended fields fields\n*\n*----------------------------------------------------------------------------*/\n.acf-field-settings .acf-field-appended {\n\toverflow: auto;\n\n\t.acf-input {\n\t\tfloat: left;\n\t}\n}\n\n/*----------------------------------------------------------------------------\n*\n* Flexible widths for image minimum / maximum size fields\n*\n*----------------------------------------------------------------------------*/\n.acf-field-settings .acf-field.acf-field-setting-min_width,\n.acf-field-settings .acf-field.acf-field-setting-max_width {\n\t.acf-input {\n\t\tmax-width: none;\n\t}\n\n\t.acf-input-wrap input[type=\"text\"] {\n\t\tmax-width: 81px;\n\t}\n}\n\n/*----------------------------------------------------------------------------\n*\n* Temporary fix to hide pagination setting for repeaters used as subfields.\n*\n*----------------------------------------------------------------------------*/\n.post-type-acf-field-group {\n\t.acf-field-object-flexible-content {\n\t\t.acf-field-setting-pagination {\n\t\t\tdisplay: none;\n\t\t}\n\t}\n\n\t.acf-field-object-repeater {\n\t\t.acf-field-object-repeater {\n\t\t\t.acf-field-setting-pagination {\n\t\t\t\tdisplay: none;\n\t\t\t}\n\t\t}\n\t}\n}\n\n/*----------------------------------------------------------------------------\n*\n* Flexible content field width\n*\n*----------------------------------------------------------------------------*/\n\n.acf-admin-single-field-group\n\t.acf-field-object-flexible-content\n\t.acf-is-subfields\n\t.acf-field-object {\n\t.acf-label,\n\t.acf-input {\n\t\tmax-width: 600px;\n\t}\n}\n\n/*----------------------------------------------------------------------------\n*\n* Fix default value checkbox focus state\n*\n*----------------------------------------------------------------------------*/\n\n.acf-admin-single-field-group {\n\t.acf-field.acf-field-true-false.acf-field-setting-default_value\n\t\t.acf-true-false {\n\t\tborder: none;\n\n\t\tinput[type=\"checkbox\"] {\n\t\t\tmargin-right: 0;\n\t\t}\n\t}\n}\n\n/*----------------------------------------------------------------------------\n*\n* With front field extra spacing\n*\n*----------------------------------------------------------------------------*/\n.acf-field.acf-field-with-front {\n\tmargin: {\n\t\ttop: 32px;\n\t}\n}\n","/*---------------------------------------------------------------------------------------------\n*\n* Sub-fields layout\n*\n*---------------------------------------------------------------------------------------------*/\n.post-type-acf-field-group #acf-field-group-fields .acf-field-list-wrap .acf-input-sub {\n\tmax-width: 100%;\n\toverflow: hidden;\n\tborder-radius: $radius-lg;\n\tborder: {\n\t\twidth: 1px;\n\t\tstyle: solid;\n\t\tcolor: darken($gray-200, 5%);\n\t};\n\tbox-shadow: $elevation-01;\n\n\t// Header\n\t.acf-sub-field-list-header {\n\t\tdisplay: flex;\n\t\tjustify-content: space-between;\n\t\talign-content: stretch;\n\t\talign-items: center;\n\t\tmin-height: 64px;\n\t\tpadding: {\n\t\t\tright: 24px;\n\t\t\tleft: 24px;\n\t\t};\n\t}\n\n\t// Main sub-fields wrapper\n\t.acf-field-list-wrap {\n\t\tbox-shadow: none;\n\t}\n\n\t// Sub-field footer\n\t.acf-hl.acf-tfoot {\n\t\tmin-height: 64px;\n\t\talign-items: center;\n\t}\n\t\n\t// Secondary level sub-fields\n\t.acf-input.acf-input-sub {\n\t\tmax-width: 100%;\n\t\tmargin: {\n\t\t\tright: 0;\n\t\t\tleft: 0;\n\t\t};\n\t}\n\n}\n\n.post-type-acf-field-group .acf-input-sub .acf-field-object .acf-sortable-handle {\n\twidth: 100%;\n\theight: 100%;\n}\n\n.post-type-acf-field-group .acf-field-object:hover .acf-input-sub .acf-sortable-handle:before {\n\tdisplay: none;\n}\n\n.post-type-acf-field-group .acf-field-object:hover .acf-input-sub .acf-field-list .acf-field-object:hover .acf-sortable-handle:before {\n\tdisplay: block;\n}\n\n.post-type-acf-field-group .acf-field-object .acf-is-subfields .acf-thead .li-field-label:before {\n\tdisplay: none;\n}\n\n.post-type-acf-field-group #acf-field-group-fields .acf-field-list-wrap .acf-input-sub .acf-field-object.open {\n\tborder-top-color: darken($gray-200, 5%);\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Flexible content field\n*\n*---------------------------------------------------------------------------------------------*/\n.post-type-acf-field-group {\n\n\ti.acf-icon.-duplicate.duplicate-layout {\n\t\tmargin: 0 auto !important;\n\t\tbackground-color: $gray-500;\n\t\tcolor: $gray-500;\n\t}\n\ti.acf-icon.acf-icon-trash.delete-layout {\n\t\tmargin: 0 auto !important;\n\t\tbackground-color: $gray-500;\n\t\tcolor: $gray-500;\n\t}\n\n\tbutton.acf-btn.acf-btn-tertiary.acf-field-setting-fc-duplicate, button.acf-btn.acf-btn-tertiary.acf-field-setting-fc-delete {\n\t\tbackground-color: #ffffff !important;\n\t\tbox-shadow: $elevation-01;\n\t\tborder-radius: 6px;\n\t\twidth: 32px;\n\t\theight: 32px !important;\n\t\tmin-height: 32px;\n\t\tpadding: 0;\n\t}\n\n\tbutton.add-layout.acf-btn.acf-btn-primary.add-field,\n\t.acf-sub-field-list-header a.acf-btn.acf-btn-secondary.add-field, \n\t.acf-field-list-wrap.acf-is-subfields a.acf-btn.acf-btn-secondary.add-field {\n\t\theight: 32px !important;\n\t\tmin-height: 32px;\n\t\tmargin-left: 5px;\n\t}\n\n\t.acf-field.acf-field-setting-fc_layout {\n\t\tbackground-color: #ffffff;\n\t\tmargin-bottom: 16px;\n\t}\n\t\n\t.acf-field-setting-fc_layout {\n\t\t.acf-field-layout-settings.open {\n\t\t\tbackground-color: #ffffff;\n\t\t\tborder-top: {\n\t\t\t\twidth: 1px;\n\t\t\t\tstyle: solid;\n\t\t\t\tcolor: $gray-200;\n\t\t\t};\n\t\t}\n\n\t\toverflow: hidden;\n\t\twidth: calc(100% - 144px);\n\t\tmargin: {\n\t\t\tright: 72px;\n\t\t\tleft: 72px;\n\t\t};\n\t\tpadding: {\n\t\t\tright: 0;\n\t\t\tleft: 0;\n\t\t};\n\t\tborder: {\n\t\t\twidth: 1px;\n\t\t\tstyle: solid;\n\t\t\tcolor: darken($gray-200, 5%);\n\t\t};\n\t\tborder-radius: $radius-lg;\n\t\tbox-shadow: $elevation-01;\n\n\t\t@media screen and (max-width: 768px) {\n\t\t\twidth: calc(100% - 16px);\n\t\t\tmargin: {\n\t\t\t\tright: 8px;\n\t\t\t\tleft: 8px;\n\t\t\t};\n\t\t}\n\n\t\t// Secondary level sub-fields\n\t\t.acf-input-sub {\n\t\t\tmax-width: 100%;\n\t\t\tmargin: {\n\t\t\t\tright: 0;\n\t\t\t\tleft: 0;\n\t\t\t};\n\t\t}\n\n\t\t.acf-label,\n\t\t.acf-input {\n\t\t\tmax-width: 100% !important;\n\t\t}\n\n\t\t.acf-input-sub {\n\t\t\tmargin: {\n\t\t\t\tright: 32px;\n\t\t\t\tbottom: 32px;\n\t\t\t\tleft: 32px;\n\t\t\t};\n\t\t}\n\n\t\t.acf-fc-meta {\n\t\t\tmax-width: 100%;\n\t\t\tpadding: {\n\t\t\t\ttop: 24px;\n\t\t\t\tright: 32px;\n\t\t\t\tleft: 32px;\n\t\t\t};\n\t\t}\n\n\t}\n\n\t.acf-field-settings-fc_head {\n\n\t\tdisplay: flex;\n\t\talign-items: center;\n\t\tjustify-content: left;\n\n\t\tbackground-color: $gray-50;\n\t\tborder-radius: 8px 8px 0px 0px;\n\t\tmin-height: 64px;\n\t\tmargin: {\n\t\t\tbottom: 0px;\n\t\t};\n\t\tpadding: {\n\t\t\tright: 24px;\n\t\t};\n\n\t\t.acf-fc_draggable {\n\t\t\tmin-height: 64px;\n\t\t\tpadding-left: 24px;\n\t\t\tdisplay: flex;\n\t\t\twhite-space: nowrap;\n\t\t}\n\n\t\t.acf-fc-layout-name {\n\t\t\tmin-width: 0;\n\t\t\tcolor: $gray-400;\n\t\t\tpadding-left: 8px;\n\t\t\tfont-size: 16px;\n\n\t\t\t&.copyable:not(.input-copyable, .copy-unsupported):hover:after {\n\t\t\t\twidth: 14px !important;\n\t\t\t\theight: 14px !important;\n\t\t\t}\n\n\t\t\t@media screen and (max-width: $md) {\n\t\t\t\tdisplay: none !important;\n\t\t\t}\n\n\t\t\tspan {\n\t\t\t\twhite-space: nowrap;\n\t\t\t\toverflow: hidden;\n\t\t\t\ttext-overflow: ellipsis;\n\t\t\t}\n\t\t}\n\n\t\tspan.toggle-indicator {\n\t\t\tpointer-events: none;\n\t\t\tmargin-top: 7px;\n\t\t}\n\n\t\tlabel {\n\t\t\tdisplay: inline-flex;\n\t\t\talign-items: center;\n\t\t\t@extend .acf-h3;\n\n\t\t\t&.acf-fc-layout-name {\n\t\t\t\tmargin-left: 1rem;\n\n\t\t\t\t@media screen and (max-width: $md) {\n\t\t\t\t\tdisplay: none !important;\n\t\t\t\t}\n\n\t\t\t\tspan.acf-fc-layout-name {\n\t\t\t\t\ttext-overflow: ellipsis;\n\t\t\t\t\toverflow: hidden;\n\t\t\t\t\theight: 22px;\n\t\t\t\t\twhite-space: nowrap;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t&.acf-fc-layout-label:before {\n\t\t\t\tcontent: '';\n\t\t\t\t$icon-size: 20px;\n\t\t\t\tdisplay: inline-block;\n\t\t\t\twidth: $icon-size;\n\t\t\t\theight: $icon-size;\n\t\t\t\tmargin: {\n\t\t\t\t\tright: 8px;\n\t\t\t\t};\n\t\t\t\tbackground-color: $gray-400;\n\t\t\t\tborder: none;\n\t\t\t\tborder-radius: 0;\n\t\t\t\t-webkit-mask-size: contain;\n\t\t\t\tmask-size: contain;\n\t\t\t\t-webkit-mask-repeat: no-repeat;\n\t\t\t\tmask-repeat: no-repeat;\n\t\t\t\t-webkit-mask-position: center;\n\t\t\t\tmask-position: center;\n\n\t\t\t\t@at-root .rtl#{&} {\n\t\t\t\t\tpadding-right: 10px;\n\t\t\t\t}\n\n\t\t\t}\n\n\t\t}\n\n\t\t.acf-fl-actions {\n\t\t\tdisplay: flex;\n\t\t\talign-items: center;\n\t\t\twhite-space: nowrap;\n\t\t\tmargin-left: auto;\n\n\t\t\t.acf-fc-add-layout {\n\t\t\t\tmargin-left: 10px;\n\t\t\t}\n\n\t\t\t.acf-fc-add-layout .add-field {\n\t\t\t\tmargin-left: 0px !important;\n\t\t\t}\n\n\t\t\tli {\n\t\t\t\tmargin: {\n\t\t\t\t\tright: 4px;\n\t\t\t\t};\n\n\t\t\t\t&:last-of-type {\n\t\t\t\t\tmargin: {\n\t\t\t\t\t\tright: 0;\n\t\t\t\t\t};\n\t\t\t\t}\n\n\t\t\t}\n\n\t\t}\n\n\t}\n\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Field open / closed icon state\n*\n*---------------------------------------------------------------------------------------------*/\n\n.post-type-acf-field-group .acf-field-object.open > .handle > .acf-tbody > .li-field-label::before {\n\t-webkit-mask-image: url('../../images/icons/icon-chevron-up.svg');\n\tmask-image: url('../../images/icons/icon-chevron-up.svg');\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Different coloured levels (current 5 supported)\n*\n*---------------------------------------------------------------------------------------------*/\n\n.post-type-acf-field-group #acf-field-group-fields .acf-field-list-wrap .acf-input-sub {\n\t\n\t// Second level\n\t$nested-color: #BF7DD7;\n\t// Row hover color \n\t.acf-field-object .handle { background-color: transparent; &:hover { background-color: lighten($nested-color, 30%); } }\n\t// Active row color \n\t.acf-field-object.open .handle { background-color: lighten($nested-color, 28%); }\n\t// Active border color \n\t.acf-field-object .settings { border-left: { color: $nested-color; }; }\n\t\n\t// Third level\n\t.acf-input-sub {\n\t\t$nested-color: #7CCDB9;\n\t\t// Row hover color \n\t\t.acf-field-object .handle { background-color: transparent; &:hover { background-color: lighten($nested-color, 30%); } }\n\t\t// Active row color \n\t\t.acf-field-object.open .handle { background-color: lighten($nested-color, 28%); }\n\t\t// Active border color \n\t\t.acf-field-object .settings { border-left: { color: $nested-color; }; }\n\t\t\n\t\t// Fourth level\n\t\t.acf-input-sub {\n\t\t\t$nested-color: #E29473;\n\t\t\t// Row hover color \n\t\t\t.acf-field-object .handle { background-color: transparent; &:hover { background-color: lighten($nested-color, 30%); } }\n\t\t\t// Active row color \n\t\t\t.acf-field-object.open .handle { background-color: lighten($nested-color, 28%); }\n\t\t\t// Active border color \n\t\t\t.acf-field-object .settings { border-left: { color: $nested-color; }; }\n\t\t\t\n\t\t\t// Fifth level\n\t\t\t.acf-input-sub {\n\t\t\t\t$nested-color: #A3B1B9;\n\t\t\t\t// Row hover color \n\t\t\t\t.acf-field-object .handle { background-color: transparent; &:hover { background-color: lighten($nested-color, 30%); } }\n\t\t\t\t// Active row color \n\t\t\t\t.acf-field-object.open .handle { background-color: lighten($nested-color, 28%); }\n\t\t\t\t// Active border color \n\t\t\t\t.acf-field-object .settings { border-left: { color: $nested-color; }; }\n\t\t\t}\n\t\t\t\n\t\t}\n\t\t\n\t}\n\t\n}"],"names":[],"sourceRoot":""} \ No newline at end of file diff --git a/assets/build/css/acf-field-group.min.css b/assets/build/css/acf-field-group.min.css index d019cd0..1439dab 100644 --- a/assets/build/css/acf-field-group.min.css +++ b/assets/build/css/acf-field-group.min.css @@ -1 +1 @@ -#acf-field-group-fields>.inside,#acf-field-group-locations>.inside,#acf-field-group-options>.inside{padding:0;margin:0}.postbox .handle-order-higher,.postbox .handle-order-lower{display:none}#minor-publishing-actions,#misc-publishing-actions #visibility,#misc-publishing-actions .edit-timestamp{display:none}#minor-publishing{border-bottom:0 none}#misc-pub-section{border-bottom:0 none}#misc-publishing-actions .misc-pub-section{border-bottom-color:#f5f5f5}#acf-field-group-fields{border:0 none}#acf-field-group-fields .inside{border-top-width:0;border-top-style:none}#acf-field-group-fields a{text-decoration:none}#acf-field-group-fields .li-field-type .field-type-icon{margin-right:8px}@media screen and (max-width: 600px){#acf-field-group-fields .li-field-type .field-type-icon{display:none}}#acf-field-group-fields .li-field-type .acf-pro-label-field-type{margin-left:5px;display:inline;padding:4px 8px}#acf-field-group-fields .li-field-order{width:64px;justify-content:center}@media screen and (max-width: 880px){#acf-field-group-fields .li-field-order{width:32px}}#acf-field-group-fields .li-field-label{width:calc(50% - 64px)}#acf-field-group-fields .li-field-name{width:25%;word-break:break-word}#acf-field-group-fields .li-field-key{display:none}#acf-field-group-fields .li-field-type{width:25%}#acf-field-group-fields.show-field-keys .li-field-label{width:calc(35% - 64px)}#acf-field-group-fields.show-field-keys .li-field-name{width:15%}#acf-field-group-fields.show-field-keys .li-field-key{width:25%;display:flex}#acf-field-group-fields.show-field-keys .li-field-type{width:25%}#acf-field-group-fields.hide-tabs .acf-field-settings-tab-bar{display:none}#acf-field-group-fields.hide-tabs .acf-field-settings-main{padding:0}#acf-field-group-fields.hide-tabs .acf-field-settings-main.acf-field-settings-main-general{padding-top:32px}#acf-field-group-fields.hide-tabs .acf-field-settings-main .acf-field{margin-bottom:32px}#acf-field-group-fields.hide-tabs .acf-field-settings-main .acf-field-setting-wrapper{padding-top:0;border-top:none}#acf-field-group-fields.hide-tabs .acf-field-settings-main .acf-field-settings-split .acf-field{border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#eaecf0}#acf-field-group-fields.hide-tabs .acf-field-settings-main .acf-field-setting-first_day{padding-top:0;border-top:none}#acf-field-group-fields.hide-tabs .acf-field-settings-footer{margin-top:32px}#acf-field-group-fields .acf-field-list-wrap{border:#ccd0d4 solid 1px}#acf-field-group-fields .acf-field-list{background:#f5f5f5;margin-top:-1px}#acf-field-group-fields .acf-field-list .acf-tbody>.li-field-name,#acf-field-group-fields .acf-field-list .acf-tbody>.li-field-key{align-items:flex-start}#acf-field-group-fields .acf-field-list .copyable:not(.input-copyable,.copy-unsupported){cursor:pointer;display:inline-flex;align-items:center}#acf-field-group-fields .acf-field-list .copyable:not(.input-copyable,.copy-unsupported):hover:after{content:"";padding-left:5px;display:inline-flex;width:12px;height:12px;background-color:#667085;border:none;border-radius:0;-webkit-mask-size:contain;mask-size:contain;-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;-webkit-mask-position:center;mask-position:center;text-indent:500%;white-space:nowrap;overflow:hidden;-webkit-mask-image:url("../../images/icons/icon-copy.svg");mask-image:url("../../images/icons/icon-copy.svg");background-size:cover}#acf-field-group-fields .acf-field-list .copyable:not(.input-copyable,.copy-unsupported).sub-label{padding-right:22px}#acf-field-group-fields .acf-field-list .copyable:not(.input-copyable,.copy-unsupported).sub-label:hover{padding-right:0}#acf-field-group-fields .acf-field-list .copyable:not(.input-copyable,.copy-unsupported).sub-label:hover:after{width:14px;height:14px;padding-left:8px}#acf-field-group-fields .acf-field-list .copyable:not(.input-copyable,.copy-unsupported).copied:hover:after{-webkit-mask-image:url("../../images/icons/icon-check-circle-solid.svg");mask-image:url("../../images/icons/icon-check-circle-solid.svg");background-color:#49ad52}#acf-field-group-fields .acf-field-list .copyable.input-copyable:not(.copy-unsupported){cursor:pointer;display:block;position:relative;align-items:center}#acf-field-group-fields .acf-field-list .copyable.input-copyable:not(.copy-unsupported) input{padding-right:40px}#acf-field-group-fields .acf-field-list .copyable.input-copyable:not(.copy-unsupported) .acf-input-wrap:after{content:"";padding-left:5px;right:12px;top:12px;position:absolute;width:16px;height:16px;background-color:#98a2b3;border:none;border-radius:0;-webkit-mask-size:contain;mask-size:contain;-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;-webkit-mask-position:center;mask-position:center;text-indent:500%;white-space:nowrap;overflow:hidden;-webkit-mask-image:url("../../images/icons/icon-copy.svg");mask-image:url("../../images/icons/icon-copy.svg");background-size:cover}#acf-field-group-fields .acf-field-list .copyable.input-copyable:not(.copy-unsupported).copied .acf-input-wrap:after{-webkit-mask-image:url("../../images/icons/icon-check-circle-solid.svg");mask-image:url("../../images/icons/icon-check-circle-solid.svg");background-color:#49ad52}#acf-field-group-fields .acf-field-list .no-fields-message{padding:15px 15px;background:#fff;display:none}#acf-field-group-fields .acf-field-list.-empty .no-fields-message{display:block}.acf-admin-3-8 #acf-field-group-fields .acf-field-list-wrap{border-color:#dfdfdf}.rtl #acf-field-group-fields .li-field-type .field-type-icon{margin-left:8px;margin-right:0}.acf-field-object{border-top:#eee solid 1px;background:#fff}.acf-field-object.ui-sortable-helper{overflow:hidden !important;border-width:1px;border-style:solid;border-color:#a5d2e7 !important;border-radius:8px;filter:drop-shadow(0px 10px 20px rgba(16, 24, 40, 0.14)) drop-shadow(0px 1px 3px rgba(16, 24, 40, 0.1))}.acf-field-object.ui-sortable-helper:before{display:none !important}.acf-field-object.ui-sortable-placeholder{box-shadow:0 -1px 0 0 #dfdfdf;visibility:visible !important;background:#f9f9f9;border-top-color:rgba(0,0,0,0);min-height:54px}.acf-field-object.ui-sortable-placeholder:after,.acf-field-object.ui-sortable-placeholder:before{visibility:hidden}.acf-field-object>.meta{display:none}.acf-field-object>.handle a{-webkit-transition:none;-moz-transition:none;-o-transition:none;transition:none}.acf-field-object>.handle li{word-wrap:break-word}.acf-field-object>.handle strong{display:block;padding-bottom:0;font-size:14px;line-height:14px;min-height:14px}.acf-field-object>.handle .row-options{display:block;opacity:0;margin-top:5px}@media screen and (max-width: 880px){.acf-field-object>.handle .row-options{opacity:1;margin-bottom:0}}.acf-field-object>.handle .row-options a{margin-right:4px}.acf-field-object>.handle .row-options a:hover{color:#044767}.acf-field-object>.handle .row-options a.delete-field{color:#a00}.acf-field-object>.handle .row-options a.delete-field:hover{color:red}.acf-field-object>.handle .row-options.active{visibility:visible}.acf-field-object.open+.acf-field-object{border-top-color:#e1e1e1}.acf-field-object.open>.handle{background:#2a9bd9;border:#2696d3 solid 1px;text-shadow:#268fbb 0 1px 0;color:#fff;position:relative;margin:0 -1px 0 -1px}.acf-field-object.open>.handle a{color:#fff !important}.acf-field-object.open>.handle a:hover{text-decoration:underline !important}.acf-field-object:hover>.handle .row-options,.acf-field-object.-hover>.handle .row-options,.acf-field-object:focus-within>.handle .row-options{opacity:1;margin-bottom:0}.acf-field-object>.settings{display:none;width:100%}.acf-field-object>.settings>.acf-table{border:none}.acf-field-object .rule-groups{margin-top:20px}.rule-groups h4{margin:3px 0}.rule-groups .rule-group{margin:0 0 5px}.rule-groups .rule-group h4{margin:0 0 3px}.rule-groups .rule-group td.param{width:35%}.rule-groups .rule-group td.operator{width:20%}.rule-groups .rule-group td.add{width:40px}.rule-groups .rule-group td.remove{width:28px;vertical-align:middle}.rule-groups .rule-group td.remove a{width:22px;height:22px;visibility:hidden}.rule-groups .rule-group td.remove a:before{position:relative;top:-2px;font-size:16px}.rule-groups .rule-group tr:hover td.remove a{visibility:visible}.rule-groups .rule-group select:empty{background:#f8f8f8}.rule-groups:not(.rule-groups-multiple) .rule-group:first-child tr:first-child td.remove a{visibility:hidden !important}#acf-field-group-options tr[data-name=hide_on_screen] li{float:left;width:33%}@media(max-width: 1100px){#acf-field-group-options tr[data-name=hide_on_screen] li{width:50%}}table.conditional-logic-rules{background:rgba(0,0,0,0);border:0 none;border-radius:0}table.conditional-logic-rules tbody td{background:rgba(0,0,0,0);border:0 none !important;padding:5px 2px !important}.acf-field-object-tab .acf-field-setting-name,.acf-field-object-tab .acf-field-setting-instructions,.acf-field-object-tab .acf-field-setting-required,.acf-field-object-tab .acf-field-setting-warning,.acf-field-object-tab .acf-field-setting-wrapper{display:none}.acf-field-object-tab .li-field-name{visibility:hidden}.acf-field-object-tab p:first-child{margin:.5em 0}.acf-field-object-tab li.acf-settings-type-presentation,.acf-field-object-tab .acf-field-settings-main-presentation{display:none !important}.acf-field-object-accordion .acf-field-setting-name,.acf-field-object-accordion .acf-field-setting-instructions,.acf-field-object-accordion .acf-field-setting-required,.acf-field-object-accordion .acf-field-setting-warning,.acf-field-object-accordion .acf-field-setting-wrapper{display:none}.acf-field-object-accordion .li-field-name{visibility:hidden}.acf-field-object-accordion p:first-child{margin:.5em 0}.acf-field-object-accordion .acf-field-setting-instructions{display:block}.acf-field-object-message tr[data-name=name],.acf-field-object-message tr[data-name=instructions],.acf-field-object-message tr[data-name=required]{display:none !important}.acf-field-object-message .li-field-name{visibility:hidden}.acf-field-object-message textarea{height:175px !important}.acf-field-object-separator tr[data-name=name],.acf-field-object-separator tr[data-name=instructions],.acf-field-object-separator tr[data-name=required]{display:none !important}.acf-field-object-date-picker .acf-radio-list li,.acf-field-object-time-picker .acf-radio-list li,.acf-field-object-date-time-picker .acf-radio-list li{line-height:25px}.acf-field-object-date-picker .acf-radio-list span,.acf-field-object-time-picker .acf-radio-list span,.acf-field-object-date-time-picker .acf-radio-list span{display:inline-block;min-width:10em}.acf-field-object-date-picker .acf-radio-list input[type=text],.acf-field-object-time-picker .acf-radio-list input[type=text],.acf-field-object-date-time-picker .acf-radio-list input[type=text]{width:100px}.acf-field-object-date-time-picker .acf-radio-list span{min-width:15em}.acf-field-object-date-time-picker .acf-radio-list input[type=text]{width:200px}#slugdiv .inside{padding:12px;margin:0}#slugdiv input[type=text]{width:100%;height:28px;font-size:14px}html[dir=rtl] .acf-field-object.open>.handle{margin:0}@media only screen and (max-width: 850px){tr.acf-field,td.acf-label,td.acf-input{display:block !important;width:auto !important;border:0 none !important}tr.acf-field{border-top:#ededed solid 1px !important;margin-bottom:0 !important}td.acf-label{background:rgba(0,0,0,0) !important;padding-bottom:0 !important}}.post-type-acf-field-group #acf-field-group-fields .acf-field-object-tab,.post-type-acf-field-group #acf-field-group-fields .acf-field-object-accordion{background-color:#f9fafb}.acf-admin-page #wpcontent{line-height:140%}.acf-admin-page a{color:#0783be}.acf-h1,.acf-admin-page h1,.acf-headerbar h1{font-size:21px;font-weight:400}.acf-h2,.post-type-acf-field-group #acf-field-group-fields .acf-field-list.-empty .no-fields-message .no-fields-message-inner h2,.acf-page-title,.acf-admin-page h2,.acf-headerbar h2{font-size:18px;font-weight:400}.acf-h3,.post-type-acf-field-group .acf-field-settings-fc_head label,.acf-admin-page #acf-popup .acf-popup-box .title h1,.acf-admin-page #acf-popup .acf-popup-box .title h2,.acf-admin-page #acf-popup .acf-popup-box .title h3,.acf-admin-page #acf-popup .acf-popup-box .title h4,.acf-admin-page h3,.acf-headerbar h3{font-size:16px;font-weight:400}.acf-admin-page .p1{font-size:15px}.acf-admin-page .p2,.acf-admin-page .post-type-acf-field-group #acf-field-group-fields .acf-field-list.-empty .no-fields-message .no-fields-message-inner p,.post-type-acf-field-group #acf-field-group-fields .acf-field-list.-empty .no-fields-message .no-fields-message-inner .acf-admin-page p{font-size:14px}.acf-admin-page .p3{font-size:13.5px}.acf-admin-page .p4,.acf-admin-page .acf-field-list .acf-sortable-handle,.acf-field-list .acf-admin-page .acf-sortable-handle,.acf-admin-page .post-type-acf-field-group .acf-field-object .handle li.li-field-label a.edit-field,.post-type-acf-field-group .acf-field-object .handle li.li-field-label .acf-admin-page a.edit-field,.acf-admin-page .post-type-acf-field-group .acf-field-object .handle li,.post-type-acf-field-group .acf-field-object .handle .acf-admin-page li,.acf-admin-page .post-type-acf-field-group .acf-thead li,.post-type-acf-field-group .acf-thead .acf-admin-page li,.acf-admin-page .acf-input .select2-container.-acf .select2-selection__rendered,.acf-admin-page .button,.acf-admin-page input[type=text],.acf-admin-page input[type=search],.acf-admin-page input[type=number],.acf-admin-page textarea,.acf-admin-page select{font-size:13px}.acf-admin-page .p5,.acf-admin-page .acf-field-setting-display_format .acf-radio-list li label code,.acf-field-setting-display_format .acf-radio-list li label .acf-admin-page code,.acf-admin-page .acf-field-setting-return_format .acf-radio-list li label code,.acf-field-setting-return_format .acf-radio-list li label .acf-admin-page code,.acf-admin-page .acf-field-group-settings-footer .acf-created-on,.acf-field-group-settings-footer .acf-admin-page .acf-created-on,.acf-admin-page .acf-fields .acf-field-settings-tab-bar li a,.acf-fields .acf-field-settings-tab-bar li .acf-admin-page a,.acf-admin-page .acf-fields .acf-tab-wrap .acf-tab-group li a,.acf-fields .acf-tab-wrap .acf-tab-group li .acf-admin-page a,.acf-admin-page.acf-internal-post-type .acf-field-settings-tab-bar li a,.acf-admin-page.acf-internal-post-type .acf-tab-wrap .acf-tab-group li a,.acf-admin-page .acf-browse-fields-modal-wrap .acf-field-settings-tab-bar li a,.acf-browse-fields-modal-wrap .acf-field-settings-tab-bar li .acf-admin-page a,.acf-admin-page .acf-browse-fields-modal-wrap .acf-tab-wrap .acf-tab-group li a,.acf-browse-fields-modal-wrap .acf-tab-wrap .acf-tab-group li .acf-admin-page a{font-size:12.5px}.acf-admin-page .p6,.acf-admin-page .post-type-acf-field-group #acf-field-group-fields .acf-field-list.-empty .no-fields-message .no-fields-message-inner p.acf-small,.post-type-acf-field-group #acf-field-group-fields .acf-field-list.-empty .no-fields-message .no-fields-message-inner .acf-admin-page p.acf-small,.acf-admin-page .post-type-acf-field-group .acf-field-object .handle li.li-field-label .row-options a,.post-type-acf-field-group .acf-field-object .handle li.li-field-label .row-options .acf-admin-page a,.acf-admin-page .acf-small{font-size:12px}.acf-admin-page .p7{font-size:11.5px}.acf-admin-page .p8{font-size:11px}.acf-page-title{color:#344054}.acf-admin-page .acf-settings-wrap h1{display:none !important}.acf-admin-page #acf-admin-tools h1:not(.acf-field-group-pro-features-title,.acf-field-group-pro-features-title-sm){display:none !important}.acf-admin-page a:focus{box-shadow:none;outline:none}.acf-admin-page a:focus-visible{box-shadow:0 0 0 1px #4f94d4,0 0 2px 1px rgba(79,148,212,.8);outline:1px solid rgba(0,0,0,0)}.acf-admin-page input[type=text],.acf-admin-page input[type=search],.acf-admin-page input[type=number],.acf-admin-page textarea,.acf-admin-page select{box-sizing:border-box;height:40px;padding-right:12px;padding-left:12px;background-color:#fff;border-color:#d0d5dd;box-shadow:0px 1px 2px rgba(16,24,40,.1);border-radius:6px;color:#344054}.acf-admin-page input[type=text]:focus,.acf-admin-page input[type=search]:focus,.acf-admin-page input[type=number]:focus,.acf-admin-page textarea:focus,.acf-admin-page select:focus{outline:3px solid #ebf5fa;border-color:#399ccb}.acf-admin-page input[type=text]:disabled,.acf-admin-page input[type=search]:disabled,.acf-admin-page input[type=number]:disabled,.acf-admin-page textarea:disabled,.acf-admin-page select:disabled{background-color:#f9fafb;color:#808a9e}.acf-admin-page input[type=text]::placeholder,.acf-admin-page input[type=search]::placeholder,.acf-admin-page input[type=number]::placeholder,.acf-admin-page textarea::placeholder,.acf-admin-page select::placeholder{color:#98a2b3}.acf-admin-page input[type=text]:read-only{background-color:#f9fafb;color:#98a2b3}.acf-admin-page .acf-field.acf-field-number .acf-label,.acf-admin-page .acf-field.acf-field-number .acf-input input[type=number]{max-width:180px}.acf-admin-page textarea{box-sizing:border-box;padding-top:10px;padding-bottom:10px;height:80px;min-height:56px}.acf-admin-page select{min-width:160px;max-width:100%;padding-right:40px;padding-left:12px;background-image:url("../../images/icons/icon-chevron-down.svg");background-position:right 10px top 50%;background-size:20px}.acf-admin-page select:hover,.acf-admin-page select:focus{color:#0783be}.acf-admin-page select::before{content:"";display:block;position:absolute;top:5px;left:5px;width:20px;height:20px}.acf-admin-page.rtl select{padding-right:12px;padding-left:40px;background-position:left 10px top 50%}.acf-admin-page input[type=radio],.acf-admin-page input[type=checkbox]{box-sizing:border-box;width:16px;height:16px;padding:0;border-width:1px;border-style:solid;border-color:#98a2b3;background:#fff;box-shadow:none}.acf-admin-page input[type=radio]:hover,.acf-admin-page input[type=checkbox]:hover{background-color:#ebf5fa;border-color:#0783be}.acf-admin-page input[type=radio]:checked,.acf-admin-page input[type=radio]:focus-visible,.acf-admin-page input[type=checkbox]:checked,.acf-admin-page input[type=checkbox]:focus-visible{background-color:#ebf5fa;border-color:#0783be}.acf-admin-page input[type=radio]:checked:before,.acf-admin-page input[type=radio]:focus-visible:before,.acf-admin-page input[type=checkbox]:checked:before,.acf-admin-page input[type=checkbox]:focus-visible:before{content:"";position:relative;top:-1px;left:-1px;width:16px;height:16px;margin:0;padding:0;background-color:rgba(0,0,0,0);background-size:cover;background-repeat:no-repeat;background-position:center}.acf-admin-page input[type=radio]:active,.acf-admin-page input[type=checkbox]:active{box-shadow:0px 0px 0px 3px #ebf5fa,0px 0px 0px rgba(255,54,54,.25)}.acf-admin-page input[type=radio]:disabled,.acf-admin-page input[type=checkbox]:disabled{background-color:#f9fafb;border-color:#d0d5dd}.acf-admin-page.rtl input[type=radio]:checked:before,.acf-admin-page.rtl input[type=radio]:focus-visible:before,.acf-admin-page.rtl input[type=checkbox]:checked:before,.acf-admin-page.rtl input[type=checkbox]:focus-visible:before{left:1px}.acf-admin-page input[type=radio]:checked:before,.acf-admin-page input[type=radio]:focus:before{background-image:url("../../images/field-states/radio-active.svg")}.acf-admin-page input[type=checkbox]:checked:before,.acf-admin-page input[type=checkbox]:focus:before{background-image:url("../../images/field-states/checkbox-active.svg")}.acf-admin-page .acf-radio-list li input[type=radio],.acf-admin-page .acf-radio-list li input[type=checkbox],.acf-admin-page .acf-checkbox-list li input[type=radio],.acf-admin-page .acf-checkbox-list li input[type=checkbox]{margin-right:6px}.acf-admin-page .acf-radio-list.acf-bl li,.acf-admin-page .acf-checkbox-list.acf-bl li{margin-bottom:8px}.acf-admin-page .acf-radio-list.acf-bl li:last-of-type,.acf-admin-page .acf-checkbox-list.acf-bl li:last-of-type{margin-bottom:0}.acf-admin-page .acf-radio-list label,.acf-admin-page .acf-checkbox-list label{display:flex;align-items:center;align-content:center}.acf-admin-page .acf-switch{width:42px;height:24px;border:none;background-color:#d0d5dd;border-radius:12px}.acf-admin-page .acf-switch:hover{background-color:#98a2b3}.acf-admin-page .acf-switch:active{box-shadow:0px 0px 0px 3px #ebf5fa,0px 0px 0px rgba(255,54,54,.25)}.acf-admin-page .acf-switch.-on{background-color:#0783be}.acf-admin-page .acf-switch.-on:hover{background-color:#066998}.acf-admin-page .acf-switch.-on .acf-switch-slider{left:20px}.acf-admin-page .acf-switch .acf-switch-off,.acf-admin-page .acf-switch .acf-switch-on{visibility:hidden}.acf-admin-page .acf-switch .acf-switch-slider{width:20px;height:20px;border:none;border-radius:100px;box-shadow:0px 1px 3px rgba(16,24,40,.1),0px 1px 2px rgba(16,24,40,.06)}.acf-admin-page .acf-field-true-false{display:flex;align-items:flex-start}.acf-admin-page .acf-field-true-false .acf-label{order:2;display:block;align-items:center;margin-top:2px;margin-bottom:0;margin-left:12px}.acf-admin-page .acf-field-true-false .acf-label label{margin-bottom:0}.acf-admin-page .acf-field-true-false .acf-label .acf-tip{margin-left:12px}.acf-admin-page .acf-field-true-false .acf-label .description{display:block;margin-top:2px;margin-left:0}.acf-admin-page.rtl .acf-field-true-false .acf-label{margin-right:12px;margin-left:0}.acf-admin-page.rtl .acf-field-true-false .acf-tip{margin-right:12px;margin-left:0}.acf-admin-page input::file-selector-button{box-sizing:border-box;min-height:40px;margin-right:16px;padding-top:8px;padding-right:16px;padding-bottom:8px;padding-left:16px;background-color:rgba(0,0,0,0);color:#0783be !important;border-radius:6px;border-width:1px;border-style:solid;border-color:#0783be;text-decoration:none}.acf-admin-page input::file-selector-button:hover{border-color:#066998;cursor:pointer;color:#066998 !important}.acf-admin-page .button{display:inline-flex;align-items:center;height:40px;padding-right:16px;padding-left:16px;background-color:rgba(0,0,0,0);border-width:1px;border-style:solid;border-color:#0783be;border-radius:6px;color:#0783be}.acf-admin-page .button:hover{background-color:#f3f9fc;border-color:#0783be;color:#0783be}.acf-admin-page .button:focus{background-color:#f3f9fc;outline:3px solid #ebf5fa;color:#0783be}.acf-admin-page .edit-field-group-header{display:block !important}.acf-admin-page .acf-input .select2-container.-acf .select2-selection{border:none;line-height:1}.acf-admin-page .acf-input .select2-container.-acf .select2-selection__rendered{box-sizing:border-box;padding-right:0;padding-left:0;background-color:#fff;border-width:1px;border-style:solid;border-color:#d0d5dd;box-shadow:0px 1px 2px rgba(16,24,40,.1);border-radius:6px;color:#344054}.acf-admin-page .acf-input .select2-container--focus{outline:3px solid #ebf5fa;border-color:#399ccb;border-radius:6px}.acf-admin-page .acf-input .select2-container--focus .select2-selection__rendered{border-color:#399ccb !important}.acf-admin-page .acf-input .select2-container--focus.select2-container--below.select2-container--open .select2-selection__rendered{border-bottom-right-radius:0 !important;border-bottom-left-radius:0 !important}.acf-admin-page .acf-input .select2-container--focus.select2-container--above.select2-container--open .select2-selection__rendered{border-top-right-radius:0 !important;border-top-left-radius:0 !important}.acf-admin-page .acf-input .select2-container .select2-search--inline .select2-search__field{margin:0;padding-left:6px}.acf-admin-page .acf-input .select2-container .select2-search--inline .select2-search__field:focus{outline:none;border:none}.acf-admin-page .acf-input .select2-container--default .select2-selection--multiple .select2-selection__rendered{padding-top:0;padding-right:6px;padding-bottom:0;padding-left:6px}.acf-admin-page .acf-input .select2-selection__clear{width:18px;height:18px;margin-top:12px;margin-right:1px;text-indent:100%;white-space:nowrap;overflow:hidden;color:#fff}.acf-admin-page .acf-input .select2-selection__clear:before{content:"";display:block;width:16px;height:16px;top:0;left:0;border:none;border-radius:0;-webkit-mask-size:contain;mask-size:contain;-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;-webkit-mask-position:center;mask-position:center;-webkit-mask-image:url("../../images/icons/icon-close.svg");mask-image:url("../../images/icons/icon-close.svg");background-color:#98a2b3}.acf-admin-page .acf-input .select2-selection__clear:hover::before{background-color:#0783be}.acf-admin-page .acf-label{display:flex;align-items:center;justify-content:space-between}.acf-admin-page .acf-label .acf-icon-help{width:18px;height:18px;background-color:#98a2b3}.acf-admin-page .acf-label label{margin-bottom:0}.acf-admin-page .acf-label .description{margin-top:2px}.acf-admin-page .acf-field-setting-name .acf-tip{position:absolute;top:0;left:654px;color:#98a2b3}.rtl.acf-admin-page .acf-field-setting-name .acf-tip{left:auto;right:654px}.acf-admin-page .acf-field-setting-name .acf-tip .acf-icon-help{width:18px;height:18px}.acf-admin-page .acf-field-setting-type .select2-container.-acf,.acf-admin-page .acf-field-permalink-rewrite .select2-container.-acf,.acf-admin-page .acf-field-query-var .select2-container.-acf,.acf-admin-page .acf-field-capability .select2-container.-acf,.acf-admin-page .acf-field-parent-slug .select2-container.-acf,.acf-admin-page .acf-field-data-storage .select2-container.-acf,.acf-admin-page .acf-field-manage-terms .select2-container.-acf,.acf-admin-page .acf-field-edit-terms .select2-container.-acf,.acf-admin-page .acf-field-delete-terms .select2-container.-acf,.acf-admin-page .acf-field-assign-terms .select2-container.-acf,.acf-admin-page .acf-field-meta-box .select2-container.-acf{min-height:40px}.acf-admin-page .acf-field-setting-type .select2-container--default .select2-selection--single .select2-selection__rendered,.acf-admin-page .acf-field-permalink-rewrite .select2-container--default .select2-selection--single .select2-selection__rendered,.acf-admin-page .acf-field-query-var .select2-container--default .select2-selection--single .select2-selection__rendered,.acf-admin-page .acf-field-capability .select2-container--default .select2-selection--single .select2-selection__rendered,.acf-admin-page .acf-field-parent-slug .select2-container--default .select2-selection--single .select2-selection__rendered,.acf-admin-page .acf-field-data-storage .select2-container--default .select2-selection--single .select2-selection__rendered,.acf-admin-page .acf-field-manage-terms .select2-container--default .select2-selection--single .select2-selection__rendered,.acf-admin-page .acf-field-edit-terms .select2-container--default .select2-selection--single .select2-selection__rendered,.acf-admin-page .acf-field-delete-terms .select2-container--default .select2-selection--single .select2-selection__rendered,.acf-admin-page .acf-field-assign-terms .select2-container--default .select2-selection--single .select2-selection__rendered,.acf-admin-page .acf-field-meta-box .select2-container--default .select2-selection--single .select2-selection__rendered{display:flex;align-items:center;position:relative;z-index:800;min-height:40px;padding-top:0;padding-right:12px;padding-bottom:0;padding-left:12px}.acf-admin-page .acf-field-setting-type .select2-container--default .select2-selection--single .field-type-icon,.acf-admin-page .acf-field-permalink-rewrite .select2-container--default .select2-selection--single .field-type-icon,.acf-admin-page .acf-field-query-var .select2-container--default .select2-selection--single .field-type-icon,.acf-admin-page .acf-field-capability .select2-container--default .select2-selection--single .field-type-icon,.acf-admin-page .acf-field-parent-slug .select2-container--default .select2-selection--single .field-type-icon,.acf-admin-page .acf-field-data-storage .select2-container--default .select2-selection--single .field-type-icon,.acf-admin-page .acf-field-manage-terms .select2-container--default .select2-selection--single .field-type-icon,.acf-admin-page .acf-field-edit-terms .select2-container--default .select2-selection--single .field-type-icon,.acf-admin-page .acf-field-delete-terms .select2-container--default .select2-selection--single .field-type-icon,.acf-admin-page .acf-field-assign-terms .select2-container--default .select2-selection--single .field-type-icon,.acf-admin-page .acf-field-meta-box .select2-container--default .select2-selection--single .field-type-icon{top:auto;width:18px;height:18px;margin-right:2px}.acf-admin-page .acf-field-setting-type .select2-container--default .select2-selection--single .field-type-icon:before,.acf-admin-page .acf-field-permalink-rewrite .select2-container--default .select2-selection--single .field-type-icon:before,.acf-admin-page .acf-field-query-var .select2-container--default .select2-selection--single .field-type-icon:before,.acf-admin-page .acf-field-capability .select2-container--default .select2-selection--single .field-type-icon:before,.acf-admin-page .acf-field-parent-slug .select2-container--default .select2-selection--single .field-type-icon:before,.acf-admin-page .acf-field-data-storage .select2-container--default .select2-selection--single .field-type-icon:before,.acf-admin-page .acf-field-manage-terms .select2-container--default .select2-selection--single .field-type-icon:before,.acf-admin-page .acf-field-edit-terms .select2-container--default .select2-selection--single .field-type-icon:before,.acf-admin-page .acf-field-delete-terms .select2-container--default .select2-selection--single .field-type-icon:before,.acf-admin-page .acf-field-assign-terms .select2-container--default .select2-selection--single .field-type-icon:before,.acf-admin-page .acf-field-meta-box .select2-container--default .select2-selection--single .field-type-icon:before{width:9px;height:9px}.acf-admin-page .acf-field-setting-type .select2-container--open .select2-selection__rendered,.acf-admin-page .acf-field-permalink-rewrite .select2-container--open .select2-selection__rendered,.acf-admin-page .acf-field-query-var .select2-container--open .select2-selection__rendered,.acf-admin-page .acf-field-capability .select2-container--open .select2-selection__rendered,.acf-admin-page .acf-field-parent-slug .select2-container--open .select2-selection__rendered,.acf-admin-page .acf-field-data-storage .select2-container--open .select2-selection__rendered,.acf-admin-page .acf-field-manage-terms .select2-container--open .select2-selection__rendered,.acf-admin-page .acf-field-edit-terms .select2-container--open .select2-selection__rendered,.acf-admin-page .acf-field-delete-terms .select2-container--open .select2-selection__rendered,.acf-admin-page .acf-field-assign-terms .select2-container--open .select2-selection__rendered,.acf-admin-page .acf-field-meta-box .select2-container--open .select2-selection__rendered{border-color:#6bb5d8 !important;border-bottom-color:#d0d5dd !important}.acf-admin-page .acf-field-setting-type .select2-container--open.select2-container--below .select2-selection__rendered,.acf-admin-page .acf-field-permalink-rewrite .select2-container--open.select2-container--below .select2-selection__rendered,.acf-admin-page .acf-field-query-var .select2-container--open.select2-container--below .select2-selection__rendered,.acf-admin-page .acf-field-capability .select2-container--open.select2-container--below .select2-selection__rendered,.acf-admin-page .acf-field-parent-slug .select2-container--open.select2-container--below .select2-selection__rendered,.acf-admin-page .acf-field-data-storage .select2-container--open.select2-container--below .select2-selection__rendered,.acf-admin-page .acf-field-manage-terms .select2-container--open.select2-container--below .select2-selection__rendered,.acf-admin-page .acf-field-edit-terms .select2-container--open.select2-container--below .select2-selection__rendered,.acf-admin-page .acf-field-delete-terms .select2-container--open.select2-container--below .select2-selection__rendered,.acf-admin-page .acf-field-assign-terms .select2-container--open.select2-container--below .select2-selection__rendered,.acf-admin-page .acf-field-meta-box .select2-container--open.select2-container--below .select2-selection__rendered{border-bottom-right-radius:0 !important;border-bottom-left-radius:0 !important}.acf-admin-page .acf-field-setting-type .select2-container--open.select2-container--above .select2-selection__rendered,.acf-admin-page .acf-field-permalink-rewrite .select2-container--open.select2-container--above .select2-selection__rendered,.acf-admin-page .acf-field-query-var .select2-container--open.select2-container--above .select2-selection__rendered,.acf-admin-page .acf-field-capability .select2-container--open.select2-container--above .select2-selection__rendered,.acf-admin-page .acf-field-parent-slug .select2-container--open.select2-container--above .select2-selection__rendered,.acf-admin-page .acf-field-data-storage .select2-container--open.select2-container--above .select2-selection__rendered,.acf-admin-page .acf-field-manage-terms .select2-container--open.select2-container--above .select2-selection__rendered,.acf-admin-page .acf-field-edit-terms .select2-container--open.select2-container--above .select2-selection__rendered,.acf-admin-page .acf-field-delete-terms .select2-container--open.select2-container--above .select2-selection__rendered,.acf-admin-page .acf-field-assign-terms .select2-container--open.select2-container--above .select2-selection__rendered,.acf-admin-page .acf-field-meta-box .select2-container--open.select2-container--above .select2-selection__rendered{border-top-right-radius:0 !important;border-top-left-radius:0 !important;border-bottom-color:#6bb5d8 !important;border-top-color:#d0d5dd !important}.acf-admin-page .acf-field-setting-type .acf-selection.has-icon,.acf-admin-page .acf-field-permalink-rewrite .acf-selection.has-icon,.acf-admin-page .acf-field-query-var .acf-selection.has-icon,.acf-admin-page .acf-field-capability .acf-selection.has-icon,.acf-admin-page .acf-field-parent-slug .acf-selection.has-icon,.acf-admin-page .acf-field-data-storage .acf-selection.has-icon,.acf-admin-page .acf-field-manage-terms .acf-selection.has-icon,.acf-admin-page .acf-field-edit-terms .acf-selection.has-icon,.acf-admin-page .acf-field-delete-terms .acf-selection.has-icon,.acf-admin-page .acf-field-assign-terms .acf-selection.has-icon,.acf-admin-page .acf-field-meta-box .acf-selection.has-icon{margin-left:6px}.rtl.acf-admin-page .acf-field-setting-type .acf-selection.has-icon,.acf-admin-page .acf-field-permalink-rewrite .acf-selection.has-icon,.acf-admin-page .acf-field-query-var .acf-selection.has-icon,.acf-admin-page .acf-field-capability .acf-selection.has-icon,.acf-admin-page .acf-field-parent-slug .acf-selection.has-icon,.acf-admin-page .acf-field-data-storage .acf-selection.has-icon,.acf-admin-page .acf-field-manage-terms .acf-selection.has-icon,.acf-admin-page .acf-field-edit-terms .acf-selection.has-icon,.acf-admin-page .acf-field-delete-terms .acf-selection.has-icon,.acf-admin-page .acf-field-assign-terms .acf-selection.has-icon,.acf-admin-page .acf-field-meta-box .acf-selection.has-icon{margin-right:6px}.acf-admin-page .acf-field-setting-type .select2-selection__arrow,.acf-admin-page .acf-field-permalink-rewrite .select2-selection__arrow,.acf-admin-page .acf-field-query-var .select2-selection__arrow,.acf-admin-page .acf-field-capability .select2-selection__arrow,.acf-admin-page .acf-field-parent-slug .select2-selection__arrow,.acf-admin-page .acf-field-data-storage .select2-selection__arrow,.acf-admin-page .acf-field-manage-terms .select2-selection__arrow,.acf-admin-page .acf-field-edit-terms .select2-selection__arrow,.acf-admin-page .acf-field-delete-terms .select2-selection__arrow,.acf-admin-page .acf-field-assign-terms .select2-selection__arrow,.acf-admin-page .acf-field-meta-box .select2-selection__arrow{width:20px;height:20px;top:calc(50% - 10px);right:12px;background-color:rgba(0,0,0,0)}.acf-admin-page .acf-field-setting-type .select2-selection__arrow:after,.acf-admin-page .acf-field-permalink-rewrite .select2-selection__arrow:after,.acf-admin-page .acf-field-query-var .select2-selection__arrow:after,.acf-admin-page .acf-field-capability .select2-selection__arrow:after,.acf-admin-page .acf-field-parent-slug .select2-selection__arrow:after,.acf-admin-page .acf-field-data-storage .select2-selection__arrow:after,.acf-admin-page .acf-field-manage-terms .select2-selection__arrow:after,.acf-admin-page .acf-field-edit-terms .select2-selection__arrow:after,.acf-admin-page .acf-field-delete-terms .select2-selection__arrow:after,.acf-admin-page .acf-field-assign-terms .select2-selection__arrow:after,.acf-admin-page .acf-field-meta-box .select2-selection__arrow:after{content:"";display:block;position:absolute;z-index:850;top:1px;left:0;width:20px;height:20px;-webkit-mask-image:url("../../images/icons/icon-chevron-down.svg");mask-image:url("../../images/icons/icon-chevron-down.svg");background-color:#667085;border:none;border-radius:0;-webkit-mask-size:contain;mask-size:contain;-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;-webkit-mask-position:center;mask-position:center;text-indent:500%;white-space:nowrap;overflow:hidden}.acf-admin-page .acf-field-setting-type .select2-selection__arrow b[role=presentation],.acf-admin-page .acf-field-permalink-rewrite .select2-selection__arrow b[role=presentation],.acf-admin-page .acf-field-query-var .select2-selection__arrow b[role=presentation],.acf-admin-page .acf-field-capability .select2-selection__arrow b[role=presentation],.acf-admin-page .acf-field-parent-slug .select2-selection__arrow b[role=presentation],.acf-admin-page .acf-field-data-storage .select2-selection__arrow b[role=presentation],.acf-admin-page .acf-field-manage-terms .select2-selection__arrow b[role=presentation],.acf-admin-page .acf-field-edit-terms .select2-selection__arrow b[role=presentation],.acf-admin-page .acf-field-delete-terms .select2-selection__arrow b[role=presentation],.acf-admin-page .acf-field-assign-terms .select2-selection__arrow b[role=presentation],.acf-admin-page .acf-field-meta-box .select2-selection__arrow b[role=presentation]{display:none}.acf-admin-page .acf-field-setting-type .select2-container--open .select2-selection__arrow:after,.acf-admin-page .acf-field-permalink-rewrite .select2-container--open .select2-selection__arrow:after,.acf-admin-page .acf-field-query-var .select2-container--open .select2-selection__arrow:after,.acf-admin-page .acf-field-capability .select2-container--open .select2-selection__arrow:after,.acf-admin-page .acf-field-parent-slug .select2-container--open .select2-selection__arrow:after,.acf-admin-page .acf-field-data-storage .select2-container--open .select2-selection__arrow:after,.acf-admin-page .acf-field-manage-terms .select2-container--open .select2-selection__arrow:after,.acf-admin-page .acf-field-edit-terms .select2-container--open .select2-selection__arrow:after,.acf-admin-page .acf-field-delete-terms .select2-container--open .select2-selection__arrow:after,.acf-admin-page .acf-field-assign-terms .select2-container--open .select2-selection__arrow:after,.acf-admin-page .acf-field-meta-box .select2-container--open .select2-selection__arrow:after{-webkit-mask-image:url("../../images/icons/icon-chevron-up.svg");mask-image:url("../../images/icons/icon-chevron-up.svg")}.acf-admin-page .field-type-select-results{position:relative;top:4px;z-index:1002;border-radius:0 0 6px 6px;box-shadow:0px 8px 24px 4px rgba(16,24,40,.12)}.acf-admin-page .field-type-select-results.select2-dropdown--above{display:flex;flex-direction:column-reverse;top:0;border-radius:6px 6px 0 0;z-index:99999}.select2-container.select2-container--open.acf-admin-page .field-type-select-results{box-shadow:0px 0px 0px 3px #ebf5fa,0px 8px 24px 4px rgba(16,24,40,.12)}.acf-admin-page .field-type-select-results .acf-selection.has-icon{margin-left:6px}.rtl.acf-admin-page .field-type-select-results .acf-selection.has-icon{margin-right:6px}.acf-admin-page .field-type-select-results .select2-search{position:relative;margin:0;padding:0}.acf-admin-page .field-type-select-results .select2-search--dropdown:after{content:"";display:block;position:absolute;top:12px;left:13px;width:16px;height:16px;-webkit-mask-image:url("../../images/icons/icon-search.svg");mask-image:url("../../images/icons/icon-search.svg");background-color:#98a2b3;border:none;border-radius:0;-webkit-mask-size:contain;mask-size:contain;-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;-webkit-mask-position:center;mask-position:center;text-indent:500%;white-space:nowrap;overflow:hidden}.rtl.acf-admin-page .field-type-select-results .select2-search--dropdown:after{right:12px;left:auto}.acf-admin-page .field-type-select-results .select2-search .select2-search__field{padding-left:38px;border-right:0;border-bottom:0;border-left:0;border-radius:0}.rtl.acf-admin-page .field-type-select-results .select2-search .select2-search__field{padding-right:38px;padding-left:0}.acf-admin-page .field-type-select-results .select2-search .select2-search__field:focus{border-top-color:#d0d5dd;outline:0}.acf-admin-page .field-type-select-results .select2-results__options{max-height:440px}.acf-admin-page .field-type-select-results .select2-results__option .select2-results__option--highlighted{background-color:#0783be !important;color:#f9fafb !important}.acf-admin-page .field-type-select-results .select2-results__option .select2-results__option{display:inline-flex;position:relative;width:calc(100% - 24px);min-height:32px;padding-top:0;padding-right:12px;padding-bottom:0;padding-left:12px;align-items:center}.acf-admin-page .field-type-select-results .select2-results__option .select2-results__option .field-type-icon{top:auto;width:18px;height:18px;margin-right:2px;box-shadow:0 0 0 1px #f9fafb}.acf-admin-page .field-type-select-results .select2-results__option .select2-results__option .field-type-icon:before{width:9px;height:9px}.acf-admin-page .field-type-select-results .select2-results__option[aria-selected=true]{background-color:#ebf5fa !important;color:#344054 !important}.acf-admin-page .field-type-select-results .select2-results__option[aria-selected=true]:after{content:"";right:13px;position:absolute;width:16px;height:16px;-webkit-mask-image:url("../../images/icons/icon-check.svg");mask-image:url("../../images/icons/icon-check.svg");background-color:#0783be;border:none;border-radius:0;-webkit-mask-size:contain;mask-size:contain;-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;-webkit-mask-position:center;mask-position:center;text-indent:500%;white-space:nowrap;overflow:hidden}.rtl.acf-admin-page .field-type-select-results .select2-results__option[aria-selected=true]:after{left:13px;right:auto}.acf-admin-page .field-type-select-results .select2-results__group{display:inline-flex;align-items:center;width:calc(100% - 24px);min-height:25px;background-color:#f9fafb;border-top-width:1px;border-top-style:solid;border-top-color:#eaecf0;border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#eaecf0;color:#98a2b3;font-size:11px;margin-bottom:0;padding-top:0;padding-right:12px;padding-bottom:0;padding-left:12px;font-weight:normal}.acf-admin-page.rtl .acf-field-setting-type .select2-selection__arrow:after,.acf-admin-page.rtl .acf-field-permalink-rewrite .select2-selection__arrow:after,.acf-admin-page.rtl .acf-field-query-var .select2-selection__arrow:after{right:auto;left:10px}.rtl.post-type-acf-field-group .acf-field-setting-name .acf-tip,.rtl.acf-internal-post-type .acf-field-setting-name .acf-tip{left:auto;right:654px}.post-type-acf-field-group .metabox-holder.columns-1 #acf-field-group-fields,.post-type-acf-field-group .metabox-holder.columns-1 #acf-field-group-options,.post-type-acf-field-group .metabox-holder.columns-1 .meta-box-sortables.ui-sortable,.post-type-acf-field-group .metabox-holder.columns-1 .notice{max-width:1440px}.post-type-acf-field-group.columns-1 .notice{max-width:1440px}.post-type-acf-field-group.columns-2 .acf-headerbar .acf-headerbar-inner{max-width:100%}.post-type-acf-field-group #poststuff{margin-top:0;margin-right:0;margin-bottom:0;margin-left:0;padding-top:0;padding-right:0;padding-bottom:0;padding-left:0}.post-type-acf-field-group #acf-field-group-fields .acf-field-list-wrap{overflow:hidden;border:none;border-radius:0 0 8px 8px;box-shadow:0px 1px 2px rgba(16,24,40,.1)}.post-type-acf-field-group #acf-field-group-fields .acf-field-list-wrap.-empty{border-top-width:1px;border-top-style:solid;border-top-color:#eaecf0}.post-type-acf-field-group #acf-field-group-fields .acf-field-list-wrap.-empty .acf-thead,.post-type-acf-field-group #acf-field-group-fields .acf-field-list-wrap.-empty .acf-tfoot{display:none}.post-type-acf-field-group #acf-field-group-fields .acf-field-list-wrap.-empty .no-fields-message{min-height:280px}.post-type-acf-field-group .acf-thead{background-color:#f9fafb;border-top-width:1px;border-top-style:solid;border-top-color:#eaecf0;border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#eaecf0}.post-type-acf-field-group .acf-thead li{display:flex;align-items:center;min-height:48px;padding-top:0;padding-bottom:0;color:#344054;font-weight:500}.post-type-acf-field-group .acf-field-object{border-top-width:1px;border-top-style:solid;border-top-color:#eaecf0}.post-type-acf-field-group .acf-field-object:hover .acf-sortable-handle:before{display:inline-flex}.post-type-acf-field-group .acf-field-object.acf-field-is-endpoint:before{display:block;content:"";height:2px;width:100%;background:#d0d5dd;margin-top:-1px}.post-type-acf-field-group .acf-field-object.acf-field-is-endpoint.acf-field-object-accordion:before{display:none}.post-type-acf-field-group .acf-field-object.acf-field-is-endpoint.acf-field-object-accordion:after{display:block;content:"";height:2px;width:100%;background:#d0d5dd;z-index:500}.post-type-acf-field-group .acf-field-object:hover{background-color:#f7fbfd}.post-type-acf-field-group .acf-field-object.open{background-color:#fff;border-top-color:#a5d2e7}.post-type-acf-field-group .acf-field-object.open .handle{background-color:#d8ebf5;border:none;text-shadow:none}.post-type-acf-field-group .acf-field-object.open .handle a{color:#0783be !important}.post-type-acf-field-group .acf-field-object.open .handle a.delete-field{color:#a00 !important}.post-type-acf-field-group .acf-field-object .acf-field-setting-type .acf-hl{margin:0}.post-type-acf-field-group .acf-field-object .acf-field-setting-type .acf-hl li{width:auto}.post-type-acf-field-group .acf-field-object .acf-field-setting-type .acf-hl li:first-child{flex-grow:1;margin-left:-10px}.post-type-acf-field-group .acf-field-object .acf-field-setting-type .acf-hl li:nth-child(2){padding-right:0}.post-type-acf-field-group .acf-field-object ul.acf-hl{display:flex;align-items:stretch}.post-type-acf-field-group .acf-field-object .handle li{display:flex;align-items:top;flex-wrap:wrap;min-height:60px;color:#344054}.post-type-acf-field-group .acf-field-object .handle li.li-field-label{display:flex;flex-wrap:wrap;justify-content:flex-start;align-content:flex-start;align-items:flex-start;width:auto}.post-type-acf-field-group .acf-field-object .handle li.li-field-label strong{font-weight:500}.post-type-acf-field-group .acf-field-object .handle li.li-field-label .row-options{width:100%}.post-type-acf-field-group .acf-tfoot{display:flex;align-items:center;justify-content:flex-end;min-height:80px;box-sizing:border-box;padding-top:8px;padding-right:24px;padding-bottom:8px;padding-left:24px;background-color:#fff;border-top-width:1px;border-top-style:solid;border-top-color:#eaecf0}.post-type-acf-field-group .acf-tfoot .acf-fr{margin-top:0;margin-right:0;margin-bottom:0;margin-left:0;padding-top:0;padding-right:0;padding-bottom:0;padding-left:0}.post-type-acf-field-group .acf-field-object .settings{box-sizing:border-box;padding-top:0;padding-bottom:0;background-color:#fff;border-left-width:4px;border-left-style:solid;border-left-color:#6bb5d8}.acf-field-settings-main{padding-top:32px;padding-right:0;padding-bottom:32px;padding-left:0}.acf-field-settings-main .acf-field:last-of-type{margin-bottom:0}.acf-field-settings .acf-label{display:block;justify-content:space-between;align-items:center;align-content:center;margin-top:0;margin-right:0;margin-bottom:6px;margin-left:0}.acf-field-settings .acf-field{box-sizing:border-box;width:100%;margin-top:0;margin-right:0;margin-bottom:32px;margin-left:0;padding-top:0;padding-right:72px;padding-bottom:0;padding-left:72px}@media screen and (max-width: 600px){.acf-field-settings .acf-field{padding-right:12px;padding-left:12px}}.acf-field-settings .acf-field .acf-label,.acf-field-settings .acf-field .acf-input{max-width:600px}.acf-field-settings .acf-field .acf-label.acf-input-sub,.acf-field-settings .acf-field .acf-input.acf-input-sub{max-width:100%}.acf-field-settings .acf-field .acf-label .acf-btn:disabled,.acf-field-settings .acf-field .acf-input .acf-btn:disabled{background-color:#f2f4f7;color:#98a2b3 !important;border:1px #d0d5dd solid;cursor:default}.acf-field-settings .acf-field .acf-input-wrap{overflow:visible}.acf-field-settings .acf-field.acf-field-setting-label,.acf-field-settings .acf-field-setting-wrapper{padding-top:24px;border-top-width:1px;border-top-style:solid;border-top-color:#eaecf0}.acf-field-settings .acf-field-setting-wrapper{margin-top:24px}.acf-field-setting-bidirectional_notes .acf-label{display:none}.acf-field-setting-bidirectional_notes .acf-feature-notice{background-color:#f9fafb;border:1px solid #eaecf0;border-radius:6px;padding:16px;color:#344054;position:relative}.acf-field-setting-bidirectional_notes .acf-feature-notice.with-warning-icon{padding-left:45px}.acf-field-setting-bidirectional_notes .acf-feature-notice.with-warning-icon::before{content:"";display:block;position:absolute;top:17px;left:18px;z-index:600;width:18px;height:18px;margin-right:8px;background-color:#667085;border:none;border-radius:0;-webkit-mask-size:contain;mask-size:contain;-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;-webkit-mask-position:center;mask-position:center;-webkit-mask-image:url("../../images/icons/icon-info.svg");mask-image:url("../../images/icons/icon-info.svg")}.acf-field-settings .acf-field-settings-footer{display:flex;align-items:center;min-height:72px;box-sizing:border-box;width:100%;margin-top:0;margin-right:0;margin-bottom:0;margin-left:0;padding-top:0;padding-right:0;padding-bottom:0;padding-left:72px;border-top-width:1px;border-top-style:solid;border-top-color:#eaecf0}@media screen and (max-width: 600px){.acf-field-settings .acf-field-settings-footer{padding-left:12px}}.rtl .acf-field-settings .acf-field-settings-footer{padding-top:0;padding-right:72px;padding-bottom:0;padding-left:0}.acf-fields .acf-tab-wrap,.acf-admin-page.acf-internal-post-type .acf-tab-wrap,.acf-browse-fields-modal-wrap .acf-tab-wrap{background:#f9fafb;border-bottom-color:#1d2939}.acf-fields .acf-tab-wrap .acf-tab-group,.acf-admin-page.acf-internal-post-type .acf-tab-wrap .acf-tab-group,.acf-browse-fields-modal-wrap .acf-tab-wrap .acf-tab-group{padding-right:24px;padding-left:24px;border-top-width:0;border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#eaecf0}.acf-fields .acf-field-settings-tab-bar,.acf-fields .acf-tab-wrap .acf-tab-group,.acf-admin-page.acf-internal-post-type .acf-field-settings-tab-bar,.acf-admin-page.acf-internal-post-type .acf-tab-wrap .acf-tab-group,.acf-browse-fields-modal-wrap .acf-field-settings-tab-bar,.acf-browse-fields-modal-wrap .acf-tab-wrap .acf-tab-group{display:flex;align-items:stretch;min-height:48px;padding-top:0;padding-right:0;padding-bottom:0;padding-left:24px;margin-top:0;margin-bottom:0;border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#eaecf0}.acf-fields .acf-field-settings-tab-bar li,.acf-fields .acf-tab-wrap .acf-tab-group li,.acf-admin-page.acf-internal-post-type .acf-field-settings-tab-bar li,.acf-admin-page.acf-internal-post-type .acf-tab-wrap .acf-tab-group li,.acf-browse-fields-modal-wrap .acf-field-settings-tab-bar li,.acf-browse-fields-modal-wrap .acf-tab-wrap .acf-tab-group li{display:flex;margin-top:0;margin-right:24px;margin-bottom:0;margin-left:0;padding:0}.acf-fields .acf-field-settings-tab-bar li a,.acf-fields .acf-tab-wrap .acf-tab-group li a,.acf-admin-page.acf-internal-post-type .acf-field-settings-tab-bar li a,.acf-admin-page.acf-internal-post-type .acf-tab-wrap .acf-tab-group li a,.acf-browse-fields-modal-wrap .acf-field-settings-tab-bar li a,.acf-browse-fields-modal-wrap .acf-tab-wrap .acf-tab-group li a{box-sizing:border-box;display:inline-flex;align-items:center;height:100%;padding-top:3px;padding-right:0;padding-bottom:0;padding-left:0;background:none;border-top:none;border-right:none;border-bottom-width:3px;border-bottom-style:solid;border-bottom-color:rgba(0,0,0,0);border-left:none;color:#667085;font-weight:normal}.acf-fields .acf-field-settings-tab-bar li a:focus-visible,.acf-fields .acf-tab-wrap .acf-tab-group li a:focus-visible,.acf-admin-page.acf-internal-post-type .acf-field-settings-tab-bar li a:focus-visible,.acf-admin-page.acf-internal-post-type .acf-tab-wrap .acf-tab-group li a:focus-visible,.acf-browse-fields-modal-wrap .acf-field-settings-tab-bar li a:focus-visible,.acf-browse-fields-modal-wrap .acf-tab-wrap .acf-tab-group li a:focus-visible{border:1px solid #5897fb}.acf-fields .acf-field-settings-tab-bar li a:hover,.acf-fields .acf-tab-wrap .acf-tab-group li a:hover,.acf-admin-page.acf-internal-post-type .acf-field-settings-tab-bar li a:hover,.acf-admin-page.acf-internal-post-type .acf-tab-wrap .acf-tab-group li a:hover,.acf-browse-fields-modal-wrap .acf-field-settings-tab-bar li a:hover,.acf-browse-fields-modal-wrap .acf-tab-wrap .acf-tab-group li a:hover{color:#1d2939}.acf-fields .acf-field-settings-tab-bar li a:hover,.acf-fields .acf-tab-wrap .acf-tab-group li a:hover,.acf-admin-page.acf-internal-post-type .acf-field-settings-tab-bar li a:hover,.acf-admin-page.acf-internal-post-type .acf-tab-wrap .acf-tab-group li a:hover,.acf-browse-fields-modal-wrap .acf-field-settings-tab-bar li a:hover,.acf-browse-fields-modal-wrap .acf-tab-wrap .acf-tab-group li a:hover{background-color:rgba(0,0,0,0)}.acf-fields .acf-field-settings-tab-bar li.active a,.acf-fields .acf-tab-wrap .acf-tab-group li.active a,.acf-admin-page.acf-internal-post-type .acf-field-settings-tab-bar li.active a,.acf-admin-page.acf-internal-post-type .acf-tab-wrap .acf-tab-group li.active a,.acf-browse-fields-modal-wrap .acf-field-settings-tab-bar li.active a,.acf-browse-fields-modal-wrap .acf-tab-wrap .acf-tab-group li.active a{background:none;border-bottom-color:#0783be;color:#0783be}.acf-fields .acf-field-settings-tab-bar li.active a:focus-visible,.acf-fields .acf-tab-wrap .acf-tab-group li.active a:focus-visible,.acf-admin-page.acf-internal-post-type .acf-field-settings-tab-bar li.active a:focus-visible,.acf-admin-page.acf-internal-post-type .acf-tab-wrap .acf-tab-group li.active a:focus-visible,.acf-browse-fields-modal-wrap .acf-field-settings-tab-bar li.active a:focus-visible,.acf-browse-fields-modal-wrap .acf-tab-wrap .acf-tab-group li.active a:focus-visible{border-bottom-color:#0783be;border-bottom-width:3px}.acf-admin-page.acf-internal-post-type .acf-field-editor .acf-field-settings-tab-bar{padding-left:72px}@media screen and (max-width: 600px){.acf-admin-page.acf-internal-post-type .acf-field-editor .acf-field-settings-tab-bar{padding-left:12px}}#acf-field-group-options .field-group-settings-tab{padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px}#acf-field-group-options .field-group-settings-tab .acf-field:last-of-type{padding:0}#acf-field-group-options .acf-field{border:none;margin-top:0;margin-right:0;margin-bottom:0;margin-left:0;padding-top:0;padding-right:0;padding-bottom:24px;padding-left:0}#acf-field-group-options .field-group-setting-split-container{display:flex;padding-top:0;padding-right:0;padding-bottom:0;padding-left:0}#acf-field-group-options .field-group-setting-split-container .field-group-setting-split{box-sizing:border-box;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px}#acf-field-group-options .field-group-setting-split-container .field-group-setting-split:nth-child(1){flex:1 0 auto}#acf-field-group-options .field-group-setting-split-container .field-group-setting-split:nth-child(2n){flex:1 0 auto;max-width:320px;margin-top:0;margin-right:0;margin-bottom:0;margin-left:32px;padding-right:32px;padding-left:32px;border-left-width:1px;border-left-style:solid;border-left-color:#eaecf0}#acf-field-group-options .acf-field[data-name=description]{max-width:600px}#acf-field-group-options .acf-button-group{display:inline-flex}.rtl #acf-field-group-options .field-group-setting-split-container .field-group-setting-split:nth-child(2n){margin-right:32px;margin-left:0;border-left:none;border-right-width:1px;border-right-style:solid;border-right-color:#eaecf0}.acf-field-list .li-field-order{padding:0;display:flex;flex-direction:row;flex-wrap:nowrap;justify-content:center;align-content:stretch;align-items:stretch;background-color:rgba(0,0,0,0)}.acf-field-list .acf-sortable-handle{display:flex;flex-direction:row;flex-wrap:nowrap;justify-content:center;align-content:flex-start;align-items:flex-start;width:100%;height:100%;position:relative;padding-top:11px;padding-bottom:8px;background-color:rgba(0,0,0,0);border:none;border-radius:0}.acf-field-list .acf-sortable-handle:hover{cursor:grab}.acf-field-list .acf-sortable-handle:before{content:"";display:none;position:absolute;top:16px;left:8px;width:16px;height:16px;width:12px;height:12px;background-color:#98a2b3;border:none;border-radius:0;-webkit-mask-size:contain;mask-size:contain;-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;-webkit-mask-position:center;mask-position:center;text-indent:500%;white-space:nowrap;overflow:hidden;-webkit-mask-image:url("../../images/icons/icon-draggable.svg");mask-image:url("../../images/icons/icon-draggable.svg")}.rtl .acf-field-list .acf-sortable-handle:before{left:0;right:8px}.acf-field-object .li-field-label{position:relative;padding-left:40px}.acf-field-object .li-field-label:before{content:"";display:block;position:absolute;left:6px;display:inline-flex;width:18px;height:18px;margin-top:-2px;background-color:#667085;border:none;border-radius:0;-webkit-mask-size:contain;mask-size:contain;-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;-webkit-mask-position:center;mask-position:center;text-indent:500%;white-space:nowrap;overflow:hidden;-webkit-mask-image:url("../../images/icons/icon-chevron-down.svg");mask-image:url("../../images/icons/icon-chevron-down.svg")}.acf-field-object .li-field-label:hover:before{cursor:pointer}.rtl .acf-field-object .li-field-label{padding-left:0;padding-right:40px}.rtl .acf-field-object .li-field-label:before{left:0;right:6px;-webkit-mask-image:url("../../images/icons/icon-chevron-down.svg");mask-image:url("../../images/icons/icon-chevron-down.svg")}.rtl .acf-field-object.open .li-field-label:before{-webkit-mask-image:url("../../images/icons/icon-chevron-down.svg");mask-image:url("../../images/icons/icon-chevron-down.svg")}.rtl .acf-field-object.open .acf-input-sub .li-field-label:before{-webkit-mask-image:url("../../images/icons/icon-chevron-right.svg");mask-image:url("../../images/icons/icon-chevron-right.svg")}.rtl .acf-field-object.open .acf-input-sub .acf-field-object.open .li-field-label:before{-webkit-mask-image:url("../../images/icons/icon-chevron-down.svg");mask-image:url("../../images/icons/icon-chevron-down.svg")}.acf-thead .li-field-label{padding-left:40px}.rtl .acf-thead .li-field-label{padding-left:0;padding-right:40px}.acf-field-settings-main-conditional-logic .acf-conditional-toggle{display:flex;padding-right:72px;padding-left:72px}@media screen and (max-width: 600px){.acf-field-settings-main-conditional-logic .acf-conditional-toggle{padding-left:12px}}.acf-field-settings-main-conditional-logic .acf-field{flex-wrap:wrap;margin-bottom:0;padding-right:0;padding-left:0}.acf-field-settings-main-conditional-logic .acf-field .rule-groups{flex:0 1 100%;order:3;margin-top:32px;padding-top:32px;padding-right:72px;padding-left:72px;border-top-width:1px;border-top-style:solid;border-top-color:#eaecf0}@media screen and (max-width: 600px){.acf-field-settings-main-conditional-logic .acf-field .rule-groups{padding-left:12px}.acf-field-settings-main-conditional-logic .acf-field .rule-groups table.acf-table tbody tr{display:flex;flex-wrap:wrap;justify-content:flex-start;align-content:flex-start;align-items:flex-start}.acf-field-settings-main-conditional-logic .acf-field .rule-groups table.acf-table tbody tr td{flex:1 1 100%}}.acf-input .acf-input-prepend,.acf-input .acf-input-append{display:inline-flex;align-items:center;height:100%;min-height:40px;padding-right:12px;padding-left:12px;background-color:#f9fafb;border-color:#d0d5dd;box-shadow:0px 1px 2px rgba(16,24,40,.1);color:#667085}.acf-input .acf-input-prepend{border-radius:6px 0 0 6px}.acf-input .acf-input-append{border-radius:0 6px 6px 0}.acf-input-wrap{display:flex}.acf-field-settings-main-presentation .acf-input-wrap{display:flex}.post-type-acf-field-group #acf-field-group-fields .acf-field-list.-empty .no-fields-message{display:flex;justify-content:center;padding-top:48px;padding-bottom:48px}.post-type-acf-field-group #acf-field-group-fields .acf-field-list.-empty .no-fields-message .no-fields-message-inner{display:flex;flex-wrap:wrap;justify-content:center;align-content:center;align-items:flex-start;text-align:center;max-width:400px}.post-type-acf-field-group #acf-field-group-fields .acf-field-list.-empty .no-fields-message .no-fields-message-inner img,.post-type-acf-field-group #acf-field-group-fields .acf-field-list.-empty .no-fields-message .no-fields-message-inner h2,.post-type-acf-field-group #acf-field-group-fields .acf-field-list.-empty .no-fields-message .no-fields-message-inner p{flex:1 0 100%}.post-type-acf-field-group #acf-field-group-fields .acf-field-list.-empty .no-fields-message .no-fields-message-inner h2{margin-top:32px;margin-bottom:0;padding:0;color:#344054}.post-type-acf-field-group #acf-field-group-fields .acf-field-list.-empty .no-fields-message .no-fields-message-inner p{margin-top:12px;margin-bottom:0;padding:0;color:#667085}.post-type-acf-field-group #acf-field-group-fields .acf-field-list.-empty .no-fields-message .no-fields-message-inner p.acf-small{margin-top:32px}.post-type-acf-field-group #acf-field-group-fields .acf-field-list.-empty .no-fields-message .no-fields-message-inner img{max-width:284px;margin-bottom:0}.post-type-acf-field-group #acf-field-group-fields .acf-field-list.-empty .no-fields-message .no-fields-message-inner .acf-btn{margin-top:32px}.post-type-acf-field-group .acf-headerbar #title-prompt-text{display:none}.acf-admin-page #acf-popup .acf-popup-box{min-width:480px}.acf-admin-page #acf-popup .acf-popup-box .title{display:flex;align-items:center;align-content:center;justify-content:space-between;min-height:64px;box-sizing:border-box;margin:0;padding-right:24px;padding-left:24px;border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#eaecf0}.acf-admin-page #acf-popup .acf-popup-box .title h1,.acf-admin-page #acf-popup .acf-popup-box .title h2,.acf-admin-page #acf-popup .acf-popup-box .title h3,.acf-admin-page #acf-popup .acf-popup-box .title h4{padding-left:0;color:#344054}.acf-admin-page #acf-popup .acf-popup-box .title .acf-icon{display:block;position:relative;top:auto;right:auto;width:22px;height:22px;background-color:rgba(0,0,0,0);color:rgba(0,0,0,0)}.acf-admin-page #acf-popup .acf-popup-box .title .acf-icon:before{display:inline-flex;position:absolute;top:0;left:0;width:22px;height:22px;background-color:#667085;border:none;border-radius:0;-webkit-mask-size:contain;mask-size:contain;-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;-webkit-mask-position:center;mask-position:center;text-indent:500%;white-space:nowrap;overflow:hidden;-webkit-mask-image:url("../../images/icons/icon-close-circle.svg");mask-image:url("../../images/icons/icon-close-circle.svg")}.acf-admin-page #acf-popup .acf-popup-box .title .acf-icon:hover:before{background-color:#0783be}.acf-admin-page #acf-popup .acf-popup-box .inner{box-sizing:border-box;margin:0;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;border-top:none}.acf-admin-page #acf-popup .acf-popup-box .inner p{margin-top:0;margin-bottom:0}.acf-admin-page #acf-popup .acf-popup-box #acf-move-field-form .acf-field-select,.acf-admin-page #acf-popup .acf-popup-box #acf-link-field-groups-form .acf-field-select{margin-top:0}.acf-admin-page .acf-link-field-groups-popup .acf-popup-box .title h3,.acf-admin-page .acf-create-options-page-popup .acf-popup-box .title h3{color:#1d2939;font-weight:500}.acf-admin-page .acf-link-field-groups-popup .acf-popup-box .title h3:before,.acf-admin-page .acf-create-options-page-popup .acf-popup-box .title h3:before{content:"";width:18px;height:18px;background:#98a2b3;margin-right:9px}.acf-admin-page .acf-link-field-groups-popup .acf-popup-box .inner,.acf-admin-page .acf-create-options-page-popup .acf-popup-box .inner{padding:0 !important}.acf-admin-page .acf-link-field-groups-popup .acf-popup-box .inner .acf-field-select,.acf-admin-page .acf-link-field-groups-popup .acf-popup-box .inner .acf-link-successful,.acf-admin-page .acf-create-options-page-popup .acf-popup-box .inner .acf-field-select,.acf-admin-page .acf-create-options-page-popup .acf-popup-box .inner .acf-link-successful{padding:32px 24px;margin-bottom:0}.acf-admin-page .acf-link-field-groups-popup .acf-popup-box .inner .acf-field-select .description,.acf-admin-page .acf-link-field-groups-popup .acf-popup-box .inner .acf-link-successful .description,.acf-admin-page .acf-create-options-page-popup .acf-popup-box .inner .acf-field-select .description,.acf-admin-page .acf-create-options-page-popup .acf-popup-box .inner .acf-link-successful .description{margin-top:6px !important}.acf-admin-page .acf-link-field-groups-popup .acf-popup-box .inner .acf-actions,.acf-admin-page .acf-create-options-page-popup .acf-popup-box .inner .acf-actions{background:#f9fafb;border-top:1px solid #eaecf0;padding-top:20px;padding-left:24px;padding-bottom:20px;padding-right:24px;border-bottom-left-radius:8px;border-bottom-right-radius:8px}.acf-admin-page .acf-link-field-groups-popup .acf-popup-box .inner .acf-actions .acf-btn,.acf-admin-page .acf-create-options-page-popup .acf-popup-box .inner .acf-actions .acf-btn{display:inline-block;margin-left:8px}.acf-admin-page .acf-link-field-groups-popup .acf-popup-box .inner .acf-actions .acf-btn.acf-btn-primary,.acf-admin-page .acf-create-options-page-popup .acf-popup-box .inner .acf-actions .acf-btn.acf-btn-primary{width:120px}.acf-admin-page .acf-create-options-page-popup .acf-popup-box .inner .acf-error-message.-success{display:none}.acf-admin-page .acf-create-options-page-popup .acf-popup-box .inner .-dismiss{margin:24px 32px !important}.acf-admin-page .acf-create-options-page-popup .acf-popup-box .inner .acf-field{padding:24px 32px 0 32px;margin:0}.acf-admin-page .acf-create-options-page-popup .acf-popup-box .inner .acf-field.acf-error .acf-input-wrap{overflow:inherit}.acf-admin-page .acf-create-options-page-popup .acf-popup-box .inner .acf-field.acf-error .acf-input-wrap input[type=text]{border:1px rgba(209,55,55,.5) solid !important;box-shadow:0px 0px 0px 3px rgba(209,55,55,.12),0px 0px 0px rgba(255,54,54,.25) !important;background-image:url(../../images/icons/icon-info-red.svg);background-position:right 10px top 50%;background-size:14px;background-repeat:no-repeat}.acf-admin-page .acf-create-options-page-popup .acf-popup-box .inner .acf-field .acf-options-page-modal-error p{font-size:12px;color:#d13737}.acf-admin-page .acf-create-options-page-popup .acf-popup-box .inner .acf-actions{margin-top:32px}.acf-admin-page .acf-create-options-page-popup .acf-popup-box .inner .acf-actions .acf-btn:disabled{background-color:#0783be}.acf-admin-single-field-group #post-body-content{display:none}.acf-field-group-settings-footer{display:flex;justify-content:space-between;align-content:stretch;align-items:center;position:relative;min-height:88px;margin-right:-24px;margin-left:-24px;margin-bottom:-24px;padding-right:24px;padding-left:24px;border-top-width:1px;border-top-style:solid;border-top-color:#eaecf0}.acf-field-group-settings-footer .acf-created-on{display:inline-flex;justify-content:flex-start;align-content:stretch;align-items:center;color:#667085}.acf-field-group-settings-footer .acf-created-on:before{content:"";display:inline-block;width:20px;height:20px;margin-right:8px;background-color:#98a2b3;border:none;border-radius:0;-webkit-mask-size:contain;mask-size:contain;-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;-webkit-mask-position:center;mask-position:center;-webkit-mask-image:url("../../images/icons/icon-time.svg");mask-image:url("../../images/icons/icon-time.svg")}.conditional-logic-badge{display:none}.conditional-logic-badge.is-enabled{display:inline-block;width:6px;height:6px;overflow:hidden;margin-left:8px;background-color:rgba(82,170,89,.4);border-width:1px;border-style:solid;border-color:#52aa59;border-radius:100px;text-indent:100%;white-space:nowrap}.acf-field-type-settings{container-name:settings;container-type:inline-size}.acf-field-settings-split{display:flex;border-top-width:1px;border-top-style:solid;border-top-color:#eaecf0}.acf-field-settings-split .acf-field{margin:0;padding-top:32px;padding-bottom:32px}.acf-field-settings-split .acf-field:nth-child(2n){border-left-width:1px;border-left-style:solid;border-left-color:#eaecf0}@container settings (max-width: 1170px){.acf-field-settings-split{border:none;flex-direction:column}.acf-field{border-top-width:1px;border-top-style:solid;border-top-color:#eaecf0}}.acf-field-setting-display_format .acf-label,.acf-field-setting-return_format .acf-label{margin-bottom:6px}.acf-field-setting-display_format .acf-radio-list li,.acf-field-setting-return_format .acf-radio-list li{display:flex}.acf-field-setting-display_format .acf-radio-list li label,.acf-field-setting-return_format .acf-radio-list li label{display:inline-flex;width:100%}.acf-field-setting-display_format .acf-radio-list li label span,.acf-field-setting-return_format .acf-radio-list li label span{flex:1 1 auto}.acf-field-setting-display_format .acf-radio-list li label code,.acf-field-setting-return_format .acf-radio-list li label code{padding-right:8px;padding-left:8px;background-color:#f2f4f7;border-radius:4px;color:#475467}.acf-field-setting-display_format .acf-radio-list li input[type=text],.acf-field-setting-return_format .acf-radio-list li input[type=text]{height:32px}.acf-field-settings .acf-field-setting-first_day{padding-top:32px;border-top-width:1px;border-top-style:solid;border-top-color:#eaecf0}.acf-field-object-image .acf-hl[data-cols="3"]>li,.acf-field-object-gallery .acf-hl[data-cols="3"]>li{width:auto}.acf-field-settings .acf-field-appended{overflow:auto}.acf-field-settings .acf-field-appended .acf-input{float:left}.acf-field-settings .acf-field.acf-field-setting-min_width .acf-input,.acf-field-settings .acf-field.acf-field-setting-max_width .acf-input{max-width:none}.acf-field-settings .acf-field.acf-field-setting-min_width .acf-input-wrap input[type=text],.acf-field-settings .acf-field.acf-field-setting-max_width .acf-input-wrap input[type=text]{max-width:81px}.post-type-acf-field-group .acf-field-object-flexible-content .acf-field-setting-pagination{display:none}.post-type-acf-field-group .acf-field-object-repeater .acf-field-object-repeater .acf-field-setting-pagination{display:none}.acf-admin-single-field-group .acf-field-object-flexible-content .acf-is-subfields .acf-field-object .acf-label,.acf-admin-single-field-group .acf-field-object-flexible-content .acf-is-subfields .acf-field-object .acf-input{max-width:600px}.acf-admin-single-field-group .acf-field.acf-field-true-false.acf-field-setting-default_value .acf-true-false{border:none}.acf-admin-single-field-group .acf-field.acf-field-true-false.acf-field-setting-default_value .acf-true-false input[type=checkbox]{margin-right:0}.acf-field.acf-field-with-front{margin-top:32px}.post-type-acf-field-group #acf-field-group-fields .acf-field-list-wrap .acf-input-sub{max-width:100%;overflow:hidden;border-radius:8px;border-width:1px;border-style:solid;border-color:#dbdfe5;box-shadow:0px 1px 2px rgba(16,24,40,.1)}.post-type-acf-field-group #acf-field-group-fields .acf-field-list-wrap .acf-input-sub .acf-sub-field-list-header{display:flex;justify-content:space-between;align-content:stretch;align-items:center;min-height:64px;padding-right:24px;padding-left:24px}.post-type-acf-field-group #acf-field-group-fields .acf-field-list-wrap .acf-input-sub .acf-field-list-wrap{box-shadow:none}.post-type-acf-field-group #acf-field-group-fields .acf-field-list-wrap .acf-input-sub .acf-hl.acf-tfoot{min-height:64px;align-items:center}.post-type-acf-field-group #acf-field-group-fields .acf-field-list-wrap .acf-input-sub .acf-input.acf-input-sub{max-width:100%;margin-right:0;margin-left:0}.post-type-acf-field-group .acf-input-sub .acf-field-object .acf-sortable-handle{width:100%;height:100%}.post-type-acf-field-group .acf-field-object:hover .acf-input-sub .acf-sortable-handle:before{display:none}.post-type-acf-field-group .acf-field-object:hover .acf-input-sub .acf-field-list .acf-field-object:hover .acf-sortable-handle:before{display:block}.post-type-acf-field-group .acf-field-object .acf-is-subfields .acf-thead .li-field-label:before{display:none}.post-type-acf-field-group #acf-field-group-fields .acf-field-list-wrap .acf-input-sub .acf-field-object.open{border-top-color:#dbdfe5}.post-type-acf-field-group i.acf-icon.-duplicate.duplicate-layout{margin:0 auto !important;background-color:#667085;color:#667085}.post-type-acf-field-group i.acf-icon.acf-icon-trash.delete-layout{margin:0 auto !important;background-color:#667085;color:#667085}.post-type-acf-field-group button.acf-btn.acf-btn-tertiary.acf-field-setting-fc-duplicate,.post-type-acf-field-group button.acf-btn.acf-btn-tertiary.acf-field-setting-fc-delete{background-color:#fff !important;box-shadow:0px 1px 2px rgba(16,24,40,.1);border-radius:6px;width:32px;height:32px !important;min-height:32px;padding:0}.post-type-acf-field-group button.add-layout.acf-btn.acf-btn-primary.add-field,.post-type-acf-field-group .acf-sub-field-list-header a.acf-btn.acf-btn-secondary.add-field,.post-type-acf-field-group .acf-field-list-wrap.acf-is-subfields a.acf-btn.acf-btn-secondary.add-field{height:32px !important;min-height:32px;margin-left:5px}.post-type-acf-field-group .acf-field.acf-field-setting-fc_layout{background-color:#fff;margin-bottom:16px}.post-type-acf-field-group .acf-field-setting-fc_layout{overflow:hidden;width:calc(100% - 144px);margin-right:72px;margin-left:72px;padding-right:0;padding-left:0;border-width:1px;border-style:solid;border-color:#dbdfe5;border-radius:8px;box-shadow:0px 1px 2px rgba(16,24,40,.1)}.post-type-acf-field-group .acf-field-setting-fc_layout .acf-field-layout-settings.open{background-color:#fff;border-top-width:1px;border-top-style:solid;border-top-color:#eaecf0}@media screen and (max-width: 768px){.post-type-acf-field-group .acf-field-setting-fc_layout{width:calc(100% - 16px);margin-right:8px;margin-left:8px}}.post-type-acf-field-group .acf-field-setting-fc_layout .acf-input-sub{max-width:100%;margin-right:0;margin-left:0}.post-type-acf-field-group .acf-field-setting-fc_layout .acf-label,.post-type-acf-field-group .acf-field-setting-fc_layout .acf-input{max-width:100% !important}.post-type-acf-field-group .acf-field-setting-fc_layout .acf-input-sub{margin-right:32px;margin-bottom:32px;margin-left:32px}.post-type-acf-field-group .acf-field-setting-fc_layout .acf-fc-meta{max-width:100%;padding-top:24px;padding-right:32px;padding-left:32px}.post-type-acf-field-group .acf-field-settings-fc_head{display:flex;align-items:center;justify-content:left;background-color:#f9fafb;border-radius:8px 8px 0px 0px;min-height:64px;margin-bottom:0px;padding-right:24px}.post-type-acf-field-group .acf-field-settings-fc_head .acf-fc_draggable{min-height:64px;padding-left:24px;display:flex;white-space:nowrap}.post-type-acf-field-group .acf-field-settings-fc_head .acf-fc-layout-name{min-width:0;color:#98a2b3;padding-left:8px;font-size:16px}.post-type-acf-field-group .acf-field-settings-fc_head .acf-fc-layout-name.copyable:not(.input-copyable,.copy-unsupported):hover:after{width:14px !important;height:14px !important}@media screen and (max-width: 880px){.post-type-acf-field-group .acf-field-settings-fc_head .acf-fc-layout-name{display:none !important}}.post-type-acf-field-group .acf-field-settings-fc_head .acf-fc-layout-name span{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.post-type-acf-field-group .acf-field-settings-fc_head span.toggle-indicator{pointer-events:none;margin-top:7px}.post-type-acf-field-group .acf-field-settings-fc_head label{display:inline-flex;align-items:center}.post-type-acf-field-group .acf-field-settings-fc_head label.acf-fc-layout-name{margin-left:1rem}@media screen and (max-width: 880px){.post-type-acf-field-group .acf-field-settings-fc_head label.acf-fc-layout-name{display:none !important}}.post-type-acf-field-group .acf-field-settings-fc_head label.acf-fc-layout-name span.acf-fc-layout-name{text-overflow:ellipsis;overflow:hidden;height:22px;white-space:nowrap}.post-type-acf-field-group .acf-field-settings-fc_head label.acf-fc-layout-label:before{content:"";display:inline-block;width:20px;height:20px;margin-right:8px;background-color:#98a2b3;border:none;border-radius:0;-webkit-mask-size:contain;mask-size:contain;-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;-webkit-mask-position:center;mask-position:center}.rtl.post-type-acf-field-group .acf-field-settings-fc_head label.acf-fc-layout-label:before{padding-right:10px}.post-type-acf-field-group .acf-field-settings-fc_head .acf-fl-actions{display:flex;align-items:center;white-space:nowrap;margin-left:auto}.post-type-acf-field-group .acf-field-settings-fc_head .acf-fl-actions .acf-fc-add-layout{margin-left:10px}.post-type-acf-field-group .acf-field-settings-fc_head .acf-fl-actions .acf-fc-add-layout .add-field{margin-left:0px !important}.post-type-acf-field-group .acf-field-settings-fc_head .acf-fl-actions li{margin-right:4px}.post-type-acf-field-group .acf-field-settings-fc_head .acf-fl-actions li:last-of-type{margin-right:0}.post-type-acf-field-group .acf-field-object.open>.handle>.acf-tbody>.li-field-label::before{-webkit-mask-image:url("../../images/icons/icon-chevron-up.svg");mask-image:url("../../images/icons/icon-chevron-up.svg")}.post-type-acf-field-group #acf-field-group-fields .acf-field-list-wrap .acf-input-sub .acf-field-object .handle{background-color:rgba(0,0,0,0)}.post-type-acf-field-group #acf-field-group-fields .acf-field-list-wrap .acf-input-sub .acf-field-object .handle:hover{background-color:#f9f2fb}.post-type-acf-field-group #acf-field-group-fields .acf-field-list-wrap .acf-input-sub .acf-field-object.open .handle{background-color:#f5eaf9}.post-type-acf-field-group #acf-field-group-fields .acf-field-list-wrap .acf-input-sub .acf-field-object .settings{border-left-color:#bf7dd7}.post-type-acf-field-group #acf-field-group-fields .acf-field-list-wrap .acf-input-sub .acf-input-sub .acf-field-object .handle{background-color:rgba(0,0,0,0)}.post-type-acf-field-group #acf-field-group-fields .acf-field-list-wrap .acf-input-sub .acf-input-sub .acf-field-object .handle:hover{background-color:#ebf7f4}.post-type-acf-field-group #acf-field-group-fields .acf-field-list-wrap .acf-input-sub .acf-input-sub .acf-field-object.open .handle{background-color:#e3f4f0}.post-type-acf-field-group #acf-field-group-fields .acf-field-list-wrap .acf-input-sub .acf-input-sub .acf-field-object .settings{border-left-color:#7ccdb9}.post-type-acf-field-group #acf-field-group-fields .acf-field-list-wrap .acf-input-sub .acf-input-sub .acf-input-sub .acf-field-object .handle{background-color:rgba(0,0,0,0)}.post-type-acf-field-group #acf-field-group-fields .acf-field-list-wrap .acf-input-sub .acf-input-sub .acf-input-sub .acf-field-object .handle:hover{background-color:#fcf5f2}.post-type-acf-field-group #acf-field-group-fields .acf-field-list-wrap .acf-input-sub .acf-input-sub .acf-input-sub .acf-field-object.open .handle{background-color:#fbeee9}.post-type-acf-field-group #acf-field-group-fields .acf-field-list-wrap .acf-input-sub .acf-input-sub .acf-input-sub .acf-field-object .settings{border-left-color:#e29473}.post-type-acf-field-group #acf-field-group-fields .acf-field-list-wrap .acf-input-sub .acf-input-sub .acf-input-sub .acf-input-sub .acf-field-object .handle{background-color:rgba(0,0,0,0)}.post-type-acf-field-group #acf-field-group-fields .acf-field-list-wrap .acf-input-sub .acf-input-sub .acf-input-sub .acf-input-sub .acf-field-object .handle:hover{background-color:#fafbfb}.post-type-acf-field-group #acf-field-group-fields .acf-field-list-wrap .acf-input-sub .acf-input-sub .acf-input-sub .acf-input-sub .acf-field-object.open .handle{background-color:#f4f6f7}.post-type-acf-field-group #acf-field-group-fields .acf-field-list-wrap .acf-input-sub .acf-input-sub .acf-input-sub .acf-input-sub .acf-field-object .settings{border-left-color:#a3b1b9} +#acf-field-group-fields>.inside,#acf-field-group-locations>.inside,#acf-field-group-options>.inside{padding:0;margin:0}.postbox .handle-order-higher,.postbox .handle-order-lower{display:none}#minor-publishing-actions,#misc-publishing-actions #visibility,#misc-publishing-actions .edit-timestamp{display:none}#minor-publishing{border-bottom:0 none}#misc-pub-section{border-bottom:0 none}#misc-publishing-actions .misc-pub-section{border-bottom-color:#f5f5f5}#acf-field-group-fields{border:0 none}#acf-field-group-fields .inside{border-top-width:0;border-top-style:none}#acf-field-group-fields a{text-decoration:none}#acf-field-group-fields .li-field-type .field-type-icon{margin-right:8px}@media screen and (max-width: 600px){#acf-field-group-fields .li-field-type .field-type-icon{display:none}}#acf-field-group-fields .li-field-type .acf-pro-label-field-type{margin-left:5px;display:inline;padding:4px 8px}#acf-field-group-fields .li-field-order{width:64px;justify-content:center}@media screen and (max-width: 880px){#acf-field-group-fields .li-field-order{width:32px}}#acf-field-group-fields .li-field-label{width:calc(50% - 64px)}#acf-field-group-fields .li-field-name{width:25%;word-break:break-word}#acf-field-group-fields .li-field-key{display:none}#acf-field-group-fields .li-field-type{width:25%}#acf-field-group-fields.show-field-keys .li-field-label{width:calc(35% - 64px)}#acf-field-group-fields.show-field-keys .li-field-name{width:15%}#acf-field-group-fields.show-field-keys .li-field-key{width:25%;display:flex}#acf-field-group-fields.show-field-keys .li-field-type{width:25%}#acf-field-group-fields.hide-tabs .acf-field-settings-tab-bar{display:none}#acf-field-group-fields.hide-tabs .acf-field-settings-main{padding:0}#acf-field-group-fields.hide-tabs .acf-field-settings-main.acf-field-settings-main-general{padding-top:32px}#acf-field-group-fields.hide-tabs .acf-field-settings-main .acf-field{margin-bottom:32px}#acf-field-group-fields.hide-tabs .acf-field-settings-main .acf-field-setting-wrapper{padding-top:0;border-top:none}#acf-field-group-fields.hide-tabs .acf-field-settings-main .acf-field-settings-split .acf-field{border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#eaecf0}#acf-field-group-fields.hide-tabs .acf-field-settings-main .acf-field-setting-first_day{padding-top:0;border-top:none}#acf-field-group-fields.hide-tabs .acf-field-settings-footer{margin-top:32px}#acf-field-group-fields .acf-field-list-wrap{border:#ccd0d4 solid 1px}#acf-field-group-fields .acf-field-list{background:#f5f5f5;margin-top:-1px}#acf-field-group-fields .acf-field-list .acf-tbody>.li-field-name,#acf-field-group-fields .acf-field-list .acf-tbody>.li-field-key{align-items:flex-start}#acf-field-group-fields .acf-field-list .copyable:not(.input-copyable,.copy-unsupported){cursor:pointer;display:inline-flex;align-items:center}#acf-field-group-fields .acf-field-list .copyable:not(.input-copyable,.copy-unsupported):hover:after{content:"";padding-left:5px;display:inline-flex;width:12px;height:12px;background-color:#667085;border:none;border-radius:0;-webkit-mask-size:contain;mask-size:contain;-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;-webkit-mask-position:center;mask-position:center;text-indent:500%;white-space:nowrap;overflow:hidden;-webkit-mask-image:url("../../images/icons/icon-copy.svg");mask-image:url("../../images/icons/icon-copy.svg");background-size:cover}#acf-field-group-fields .acf-field-list .copyable:not(.input-copyable,.copy-unsupported).sub-label{padding-right:22px}#acf-field-group-fields .acf-field-list .copyable:not(.input-copyable,.copy-unsupported).sub-label:hover{padding-right:0}#acf-field-group-fields .acf-field-list .copyable:not(.input-copyable,.copy-unsupported).sub-label:hover:after{width:14px;height:14px;padding-left:8px}#acf-field-group-fields .acf-field-list .copyable:not(.input-copyable,.copy-unsupported).copied:hover:after{-webkit-mask-image:url("../../images/icons/icon-check-circle-solid.svg");mask-image:url("../../images/icons/icon-check-circle-solid.svg");background-color:#49ad52}#acf-field-group-fields .acf-field-list .copyable.input-copyable:not(.copy-unsupported){cursor:pointer;display:block;position:relative;align-items:center}#acf-field-group-fields .acf-field-list .copyable.input-copyable:not(.copy-unsupported) input{padding-right:40px}#acf-field-group-fields .acf-field-list .copyable.input-copyable:not(.copy-unsupported) .acf-input-wrap:after{content:"";padding-left:5px;right:12px;top:12px;position:absolute;width:16px;height:16px;background-color:#98a2b3;border:none;border-radius:0;-webkit-mask-size:contain;mask-size:contain;-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;-webkit-mask-position:center;mask-position:center;text-indent:500%;white-space:nowrap;overflow:hidden;-webkit-mask-image:url("../../images/icons/icon-copy.svg");mask-image:url("../../images/icons/icon-copy.svg");background-size:cover}#acf-field-group-fields .acf-field-list .copyable.input-copyable:not(.copy-unsupported).copied .acf-input-wrap:after{-webkit-mask-image:url("../../images/icons/icon-check-circle-solid.svg");mask-image:url("../../images/icons/icon-check-circle-solid.svg");background-color:#49ad52}#acf-field-group-fields .acf-field-list .no-fields-message{padding:15px 15px;background:#fff;display:none}#acf-field-group-fields .acf-field-list.-empty .no-fields-message{display:block}.acf-admin-3-8 #acf-field-group-fields .acf-field-list-wrap{border-color:#dfdfdf}.rtl #acf-field-group-fields .li-field-type .field-type-icon{margin-left:8px;margin-right:0}.acf-field-object{border-top:#eee solid 1px;background:#fff}.acf-field-object.ui-sortable-helper{overflow:hidden !important;border-width:1px;border-style:solid;border-color:#a5d2e7 !important;border-radius:8px;filter:drop-shadow(0px 10px 20px rgba(16, 24, 40, 0.14)) drop-shadow(0px 1px 3px rgba(16, 24, 40, 0.1))}.acf-field-object.ui-sortable-helper:before{display:none !important}.acf-field-object.ui-sortable-placeholder{box-shadow:0 -1px 0 0 #dfdfdf;visibility:visible !important;background:#f9f9f9;border-top-color:rgba(0,0,0,0);min-height:54px}.acf-field-object.ui-sortable-placeholder:after,.acf-field-object.ui-sortable-placeholder:before{visibility:hidden}.acf-field-object>.meta{display:none}.acf-field-object>.handle a{-webkit-transition:none;-moz-transition:none;-o-transition:none;transition:none}.acf-field-object>.handle li{word-wrap:break-word}.acf-field-object>.handle strong{display:block;padding-bottom:0;font-size:14px;line-height:14px;min-height:14px}.acf-field-object>.handle .row-options{display:block;opacity:0;margin-top:5px}@media screen and (max-width: 880px){.acf-field-object>.handle .row-options{opacity:1;margin-bottom:0}}.acf-field-object>.handle .row-options a{margin-right:4px}.acf-field-object>.handle .row-options a:hover{color:#044767}.acf-field-object>.handle .row-options a.delete-field{color:#a00}.acf-field-object>.handle .row-options a.delete-field:hover{color:red}.acf-field-object>.handle .row-options.active{visibility:visible}.acf-field-object.open+.acf-field-object{border-top-color:#e1e1e1}.acf-field-object.open>.handle{background:#2a9bd9;border:#2696d3 solid 1px;text-shadow:#268fbb 0 1px 0;color:#fff;position:relative;margin:0 -1px 0 -1px}.acf-field-object.open>.handle a{color:#fff !important}.acf-field-object.open>.handle a:hover{text-decoration:underline !important}.acf-field-object:hover>.handle .row-options,.acf-field-object.-hover>.handle .row-options,.acf-field-object:focus-within>.handle .row-options{opacity:1;margin-bottom:0}.acf-field-object>.settings{display:none;width:100%}.acf-field-object>.settings>.acf-table{border:none}.acf-field-object .rule-groups{margin-top:20px}.rule-groups h4{margin:3px 0}.rule-groups .rule-group{margin:0 0 5px}.rule-groups .rule-group h4{margin:0 0 3px}.rule-groups .rule-group td.param{width:35%}.rule-groups .rule-group td.operator{width:20%}.rule-groups .rule-group td.add{width:40px}.rule-groups .rule-group td.remove{width:28px;vertical-align:middle}.rule-groups .rule-group td.remove a{width:22px;height:22px;visibility:hidden}.rule-groups .rule-group td.remove a:before{position:relative;top:-2px;font-size:16px}.rule-groups .rule-group tr:hover td.remove a{visibility:visible}.rule-groups .rule-group select:empty{background:#f8f8f8}.rule-groups:not(.rule-groups-multiple) .rule-group:first-child tr:first-child td.remove a{visibility:hidden !important}#acf-field-group-options tr[data-name=hide_on_screen] li{float:left;width:33%}@media(max-width: 1100px){#acf-field-group-options tr[data-name=hide_on_screen] li{width:50%}}table.conditional-logic-rules{background:rgba(0,0,0,0);border:0 none;border-radius:0}table.conditional-logic-rules tbody td{background:rgba(0,0,0,0);border:0 none !important;padding:5px 2px !important}.acf-field-object-tab .acf-field-setting-name,.acf-field-object-tab .acf-field-setting-instructions,.acf-field-object-tab .acf-field-setting-required,.acf-field-object-tab .acf-field-setting-warning,.acf-field-object-tab .acf-field-setting-wrapper{display:none}.acf-field-object-tab .li-field-name{visibility:hidden}.acf-field-object-tab p:first-child{margin:.5em 0}.acf-field-object-tab li.acf-settings-type-presentation,.acf-field-object-tab .acf-field-settings-main-presentation{display:none !important}.acf-field-object-accordion .acf-field-setting-name,.acf-field-object-accordion .acf-field-setting-instructions,.acf-field-object-accordion .acf-field-setting-required,.acf-field-object-accordion .acf-field-setting-warning,.acf-field-object-accordion .acf-field-setting-wrapper{display:none}.acf-field-object-accordion .li-field-name{visibility:hidden}.acf-field-object-accordion p:first-child{margin:.5em 0}.acf-field-object-accordion .acf-field-setting-instructions{display:block}.acf-field-object-message tr[data-name=name],.acf-field-object-message tr[data-name=instructions],.acf-field-object-message tr[data-name=required]{display:none !important}.acf-field-object-message .li-field-name{visibility:hidden}.acf-field-object-message textarea{height:175px !important}.acf-field-object-separator tr[data-name=name],.acf-field-object-separator tr[data-name=instructions],.acf-field-object-separator tr[data-name=required]{display:none !important}.acf-field-object-date-picker .acf-radio-list li,.acf-field-object-time-picker .acf-radio-list li,.acf-field-object-date-time-picker .acf-radio-list li{line-height:25px}.acf-field-object-date-picker .acf-radio-list span,.acf-field-object-time-picker .acf-radio-list span,.acf-field-object-date-time-picker .acf-radio-list span{display:inline-block;min-width:10em}.acf-field-object-date-picker .acf-radio-list input[type=text],.acf-field-object-time-picker .acf-radio-list input[type=text],.acf-field-object-date-time-picker .acf-radio-list input[type=text]{width:100px}.acf-field-object-date-time-picker .acf-radio-list span{min-width:15em}.acf-field-object-date-time-picker .acf-radio-list input[type=text]{width:200px}#slugdiv .inside{padding:12px;margin:0}#slugdiv input[type=text]{width:100%;height:28px;font-size:14px}html[dir=rtl] .acf-field-object.open>.handle{margin:0}@media only screen and (max-width: 850px){tr.acf-field,td.acf-label,td.acf-input{display:block !important;width:auto !important;border:0 none !important}tr.acf-field{border-top:#ededed solid 1px !important;margin-bottom:0 !important}td.acf-label{background:rgba(0,0,0,0) !important;padding-bottom:0 !important}}.post-type-acf-field-group #acf-field-group-fields .acf-field-object-tab,.post-type-acf-field-group #acf-field-group-fields .acf-field-object-accordion{background-color:#f9fafb}.acf-admin-page #wpcontent{line-height:140%}.acf-admin-page a{color:#0783be}.acf-h1,.acf-admin-page h1,.acf-headerbar h1{font-size:21px;font-weight:400}.acf-h2,.post-type-acf-field-group #acf-field-group-fields .acf-field-list.-empty .no-fields-message .no-fields-message-inner h2,.acf-page-title,.acf-admin-page h2,.acf-headerbar h2{font-size:18px;font-weight:400}.acf-h3,.post-type-acf-field-group .acf-field-settings-fc_head label,.acf-admin-page #acf-popup .acf-popup-box .title h1,.acf-admin-page #acf-popup .acf-popup-box .title h2,.acf-admin-page #acf-popup .acf-popup-box .title h3,.acf-admin-page #acf-popup .acf-popup-box .title h4,.acf-admin-page h3,.acf-headerbar h3{font-size:16px;font-weight:400}.acf-admin-page .p1{font-size:15px}.acf-admin-page .p2,.acf-admin-page .post-type-acf-field-group #acf-field-group-fields .acf-field-list.-empty .no-fields-message .no-fields-message-inner p,.post-type-acf-field-group #acf-field-group-fields .acf-field-list.-empty .no-fields-message .no-fields-message-inner .acf-admin-page p{font-size:14px}.acf-admin-page .p3{font-size:13.5px}.acf-admin-page .p4,.acf-admin-page .acf-field-list .acf-sortable-handle,.acf-field-list .acf-admin-page .acf-sortable-handle,.acf-admin-page .post-type-acf-field-group .acf-field-object .handle li.li-field-label a.edit-field,.post-type-acf-field-group .acf-field-object .handle li.li-field-label .acf-admin-page a.edit-field,.acf-admin-page .post-type-acf-field-group .acf-field-object .handle li,.post-type-acf-field-group .acf-field-object .handle .acf-admin-page li,.acf-admin-page .post-type-acf-field-group .acf-thead li,.post-type-acf-field-group .acf-thead .acf-admin-page li,.acf-admin-page .acf-input .select2-container.-acf .select2-selection__rendered,.acf-admin-page .button,.acf-admin-page input[type=text],.acf-admin-page input[type=search],.acf-admin-page input[type=number],.acf-admin-page textarea,.acf-admin-page select{font-size:13px}.acf-admin-page .p5,.acf-admin-page .acf-field-setting-display_format .acf-radio-list li label code,.acf-field-setting-display_format .acf-radio-list li label .acf-admin-page code,.acf-admin-page .acf-field-setting-return_format .acf-radio-list li label code,.acf-field-setting-return_format .acf-radio-list li label .acf-admin-page code,.acf-admin-page .acf-field-group-settings-footer .acf-created-on,.acf-field-group-settings-footer .acf-admin-page .acf-created-on,.acf-admin-page .acf-fields .acf-field-settings-tab-bar li a,.acf-fields .acf-field-settings-tab-bar li .acf-admin-page a,.acf-admin-page .acf-fields .acf-tab-wrap .acf-tab-group li a,.acf-fields .acf-tab-wrap .acf-tab-group li .acf-admin-page a,.acf-admin-page.acf-internal-post-type .acf-field-settings-tab-bar li a,.acf-admin-page.acf-internal-post-type .acf-tab-wrap .acf-tab-group li a,.acf-admin-page .acf-browse-fields-modal-wrap .acf-field-settings-tab-bar li a,.acf-browse-fields-modal-wrap .acf-field-settings-tab-bar li .acf-admin-page a,.acf-admin-page .acf-browse-fields-modal-wrap .acf-tab-wrap .acf-tab-group li a,.acf-browse-fields-modal-wrap .acf-tab-wrap .acf-tab-group li .acf-admin-page a{font-size:12.5px}.acf-admin-page .p6,.acf-admin-page .post-type-acf-field-group #acf-field-group-fields .acf-field-list.-empty .no-fields-message .no-fields-message-inner p.acf-small,.post-type-acf-field-group #acf-field-group-fields .acf-field-list.-empty .no-fields-message .no-fields-message-inner .acf-admin-page p.acf-small,.acf-admin-page .post-type-acf-field-group .acf-field-object .handle li.li-field-label .row-options a,.post-type-acf-field-group .acf-field-object .handle li.li-field-label .row-options .acf-admin-page a,.acf-admin-page .acf-small{font-size:12px}.acf-admin-page .p7{font-size:11.5px}.acf-admin-page .p8{font-size:11px}.acf-page-title{color:#344054}.acf-admin-page .acf-settings-wrap h1{display:none !important}.acf-admin-page #acf-admin-tools h1:not(.acf-field-group-pro-features-title,.acf-field-group-pro-features-title-sm){display:none !important}.acf-admin-page a:focus{box-shadow:none;outline:none}.acf-admin-page a:focus-visible{box-shadow:0 0 0 1px #4f94d4,0 0 2px 1px rgba(79,148,212,.8);outline:1px solid rgba(0,0,0,0)}.acf-admin-page input[type=text],.acf-admin-page input[type=search],.acf-admin-page input[type=number],.acf-admin-page textarea,.acf-admin-page select{box-sizing:border-box;height:40px;padding-right:12px;padding-left:12px;background-color:#fff;border-color:#d0d5dd;box-shadow:0px 1px 2px rgba(16,24,40,.1);border-radius:6px;color:#344054}.acf-admin-page input[type=text]:focus,.acf-admin-page input[type=search]:focus,.acf-admin-page input[type=number]:focus,.acf-admin-page textarea:focus,.acf-admin-page select:focus{outline:3px solid #ebf5fa;border-color:#399ccb}.acf-admin-page input[type=text]:disabled,.acf-admin-page input[type=search]:disabled,.acf-admin-page input[type=number]:disabled,.acf-admin-page textarea:disabled,.acf-admin-page select:disabled{background-color:#f9fafb;color:#808a9e}.acf-admin-page input[type=text]::placeholder,.acf-admin-page input[type=search]::placeholder,.acf-admin-page input[type=number]::placeholder,.acf-admin-page textarea::placeholder,.acf-admin-page select::placeholder{color:#98a2b3}.acf-admin-page input[type=text]:read-only{background-color:#f9fafb;color:#98a2b3}.acf-admin-page .acf-field.acf-field-number .acf-label,.acf-admin-page .acf-field.acf-field-number .acf-input input[type=number]{max-width:180px}.acf-admin-page textarea{box-sizing:border-box;padding-top:10px;padding-bottom:10px;height:80px;min-height:56px}.acf-admin-page select{min-width:160px;max-width:100%;padding-right:40px;padding-left:12px;background-image:url("../../images/icons/icon-chevron-down.svg");background-position:right 10px top 50%;background-size:20px}.acf-admin-page select:hover,.acf-admin-page select:focus{color:#0783be}.acf-admin-page select::before{content:"";display:block;position:absolute;top:5px;left:5px;width:20px;height:20px}.acf-admin-page.rtl select{padding-right:12px;padding-left:40px;background-position:left 10px top 50%}.acf-admin-page input[type=radio],.acf-admin-page input[type=checkbox]{box-sizing:border-box;width:16px;height:16px;padding:0;border-width:1px;border-style:solid;border-color:#98a2b3;background:#fff;box-shadow:none}.acf-admin-page input[type=radio]:hover,.acf-admin-page input[type=checkbox]:hover{background-color:#ebf5fa;border-color:#0783be}.acf-admin-page input[type=radio]:checked,.acf-admin-page input[type=radio]:focus-visible,.acf-admin-page input[type=checkbox]:checked,.acf-admin-page input[type=checkbox]:focus-visible{background-color:#ebf5fa;border-color:#0783be}.acf-admin-page input[type=radio]:checked:before,.acf-admin-page input[type=radio]:focus-visible:before,.acf-admin-page input[type=checkbox]:checked:before,.acf-admin-page input[type=checkbox]:focus-visible:before{content:"";position:relative;top:-1px;left:-1px;width:16px;height:16px;margin:0;padding:0;background-color:rgba(0,0,0,0);background-size:cover;background-repeat:no-repeat;background-position:center}.acf-admin-page input[type=radio]:active,.acf-admin-page input[type=checkbox]:active{box-shadow:0px 0px 0px 3px #ebf5fa,0px 0px 0px rgba(255,54,54,.25)}.acf-admin-page input[type=radio]:disabled,.acf-admin-page input[type=checkbox]:disabled{background-color:#f9fafb;border-color:#d0d5dd}.acf-admin-page.rtl input[type=radio]:checked:before,.acf-admin-page.rtl input[type=radio]:focus-visible:before,.acf-admin-page.rtl input[type=checkbox]:checked:before,.acf-admin-page.rtl input[type=checkbox]:focus-visible:before{left:1px}.acf-admin-page input[type=radio]:checked:before,.acf-admin-page input[type=radio]:focus:before{background-image:url("../../images/field-states/radio-active.svg")}.acf-admin-page input[type=checkbox]:checked:before,.acf-admin-page input[type=checkbox]:focus:before{background-image:url("../../images/field-states/checkbox-active.svg")}.acf-admin-page .acf-radio-list li input[type=radio],.acf-admin-page .acf-radio-list li input[type=checkbox],.acf-admin-page .acf-checkbox-list li input[type=radio],.acf-admin-page .acf-checkbox-list li input[type=checkbox]{margin-right:6px}.acf-admin-page .acf-radio-list.acf-bl li,.acf-admin-page .acf-checkbox-list.acf-bl li{margin-bottom:8px}.acf-admin-page .acf-radio-list.acf-bl li:last-of-type,.acf-admin-page .acf-checkbox-list.acf-bl li:last-of-type{margin-bottom:0}.acf-admin-page .acf-radio-list label,.acf-admin-page .acf-checkbox-list label{display:flex;align-items:center;align-content:center}.acf-admin-page .acf-switch{width:42px;height:24px;border:none;background-color:#d0d5dd;border-radius:12px}.acf-admin-page .acf-switch:hover{background-color:#98a2b3}.acf-admin-page .acf-switch:active{box-shadow:0px 0px 0px 3px #ebf5fa,0px 0px 0px rgba(255,54,54,.25)}.acf-admin-page .acf-switch.-on{background-color:#0783be}.acf-admin-page .acf-switch.-on:hover{background-color:#066998}.acf-admin-page .acf-switch.-on .acf-switch-slider{left:20px}.acf-admin-page .acf-switch .acf-switch-off,.acf-admin-page .acf-switch .acf-switch-on{visibility:hidden}.acf-admin-page .acf-switch .acf-switch-slider{width:20px;height:20px;border:none;border-radius:100px;box-shadow:0px 1px 3px rgba(16,24,40,.1),0px 1px 2px rgba(16,24,40,.06)}.acf-admin-page .acf-field-true-false{display:flex;align-items:flex-start}.acf-admin-page .acf-field-true-false .acf-label{order:2;display:block;align-items:center;margin-top:2px;margin-bottom:0;margin-left:12px}.acf-admin-page .acf-field-true-false .acf-label label{margin-bottom:0}.acf-admin-page .acf-field-true-false .acf-label .acf-tip{margin-left:12px}.acf-admin-page .acf-field-true-false .acf-label .description{display:block;margin-top:2px;margin-left:0}.acf-admin-page.rtl .acf-field-true-false .acf-label{margin-right:12px;margin-left:0}.acf-admin-page.rtl .acf-field-true-false .acf-tip{margin-right:12px;margin-left:0}.acf-admin-page input::file-selector-button{box-sizing:border-box;min-height:40px;margin-right:16px;padding-top:8px;padding-right:16px;padding-bottom:8px;padding-left:16px;background-color:rgba(0,0,0,0);color:#0783be !important;border-radius:6px;border-width:1px;border-style:solid;border-color:#0783be;text-decoration:none}.acf-admin-page input::file-selector-button:hover{border-color:#066998;cursor:pointer;color:#066998 !important}.acf-admin-page .button{display:inline-flex;align-items:center;height:40px;padding-right:16px;padding-left:16px;background-color:rgba(0,0,0,0);border-width:1px;border-style:solid;border-color:#0783be;border-radius:6px;color:#0783be}.acf-admin-page .button:hover{background-color:#f3f9fc;border-color:#0783be;color:#0783be}.acf-admin-page .button:focus{background-color:#f3f9fc;outline:3px solid #ebf5fa;color:#0783be}.acf-admin-page .edit-field-group-header{display:block !important}.acf-admin-page .acf-input .select2-container.-acf .select2-selection{border:none;line-height:1}.acf-admin-page .acf-input .select2-container.-acf .select2-selection__rendered{box-sizing:border-box;padding-right:0;padding-left:0;background-color:#fff;border-width:1px;border-style:solid;border-color:#d0d5dd;box-shadow:0px 1px 2px rgba(16,24,40,.1);border-radius:6px;color:#344054}.acf-admin-page .acf-input .select2-container--focus{outline:3px solid #ebf5fa;border-color:#399ccb;border-radius:6px}.acf-admin-page .acf-input .select2-container--focus .select2-selection__rendered{border-color:#399ccb !important}.acf-admin-page .acf-input .select2-container--focus.select2-container--below.select2-container--open .select2-selection__rendered{border-bottom-right-radius:0 !important;border-bottom-left-radius:0 !important}.acf-admin-page .acf-input .select2-container--focus.select2-container--above.select2-container--open .select2-selection__rendered{border-top-right-radius:0 !important;border-top-left-radius:0 !important}.acf-admin-page .acf-input .select2-container .select2-search--inline .select2-search__field{margin:0;padding-left:6px}.acf-admin-page .acf-input .select2-container .select2-search--inline .select2-search__field:focus{outline:none;border:none}.acf-admin-page .acf-input .select2-container--default .select2-selection--multiple .select2-selection__rendered{padding-top:0;padding-right:6px;padding-bottom:0;padding-left:6px}.acf-admin-page .acf-input .select2-selection__clear{width:18px;height:18px;margin-top:12px;margin-right:1px;text-indent:100%;white-space:nowrap;overflow:hidden;color:#fff}.acf-admin-page .acf-input .select2-selection__clear:before{content:"";display:block;width:16px;height:16px;top:0;left:0;border:none;border-radius:0;-webkit-mask-size:contain;mask-size:contain;-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;-webkit-mask-position:center;mask-position:center;-webkit-mask-image:url("../../images/icons/icon-close.svg");mask-image:url("../../images/icons/icon-close.svg");background-color:#98a2b3}.acf-admin-page .acf-input .select2-selection__clear:hover::before{background-color:#0783be}.acf-admin-page .acf-label{display:flex;align-items:center;justify-content:space-between}.acf-admin-page .acf-label .acf-icon-help{width:18px;height:18px;background-color:#98a2b3}.acf-admin-page .acf-label label{margin-bottom:0}.acf-admin-page .acf-label .description{margin-top:2px}.acf-admin-page .acf-field-setting-name .acf-tip{position:absolute;top:0;left:654px;color:#98a2b3}.rtl.acf-admin-page .acf-field-setting-name .acf-tip{left:auto;right:654px}.acf-admin-page .acf-field-setting-name .acf-tip .acf-icon-help{width:18px;height:18px}.acf-admin-page .acf-field-setting-type .select2-container.-acf,.acf-admin-page .acf-field-permalink-rewrite .select2-container.-acf,.acf-admin-page .acf-field-query-var .select2-container.-acf,.acf-admin-page .acf-field-capability .select2-container.-acf,.acf-admin-page .acf-field-parent-slug .select2-container.-acf,.acf-admin-page .acf-field-data-storage .select2-container.-acf,.acf-admin-page .acf-field-manage-terms .select2-container.-acf,.acf-admin-page .acf-field-edit-terms .select2-container.-acf,.acf-admin-page .acf-field-delete-terms .select2-container.-acf,.acf-admin-page .acf-field-assign-terms .select2-container.-acf,.acf-admin-page .acf-field-meta-box .select2-container.-acf{min-height:40px}.acf-admin-page .acf-field-setting-type .select2-container--default .select2-selection--single .select2-selection__rendered,.acf-admin-page .acf-field-permalink-rewrite .select2-container--default .select2-selection--single .select2-selection__rendered,.acf-admin-page .acf-field-query-var .select2-container--default .select2-selection--single .select2-selection__rendered,.acf-admin-page .acf-field-capability .select2-container--default .select2-selection--single .select2-selection__rendered,.acf-admin-page .acf-field-parent-slug .select2-container--default .select2-selection--single .select2-selection__rendered,.acf-admin-page .acf-field-data-storage .select2-container--default .select2-selection--single .select2-selection__rendered,.acf-admin-page .acf-field-manage-terms .select2-container--default .select2-selection--single .select2-selection__rendered,.acf-admin-page .acf-field-edit-terms .select2-container--default .select2-selection--single .select2-selection__rendered,.acf-admin-page .acf-field-delete-terms .select2-container--default .select2-selection--single .select2-selection__rendered,.acf-admin-page .acf-field-assign-terms .select2-container--default .select2-selection--single .select2-selection__rendered,.acf-admin-page .acf-field-meta-box .select2-container--default .select2-selection--single .select2-selection__rendered{display:flex;align-items:center;position:relative;z-index:800;min-height:40px;padding-top:0;padding-right:12px;padding-bottom:0;padding-left:12px}.acf-admin-page .acf-field-setting-type .select2-container--default .select2-selection--single .field-type-icon,.acf-admin-page .acf-field-permalink-rewrite .select2-container--default .select2-selection--single .field-type-icon,.acf-admin-page .acf-field-query-var .select2-container--default .select2-selection--single .field-type-icon,.acf-admin-page .acf-field-capability .select2-container--default .select2-selection--single .field-type-icon,.acf-admin-page .acf-field-parent-slug .select2-container--default .select2-selection--single .field-type-icon,.acf-admin-page .acf-field-data-storage .select2-container--default .select2-selection--single .field-type-icon,.acf-admin-page .acf-field-manage-terms .select2-container--default .select2-selection--single .field-type-icon,.acf-admin-page .acf-field-edit-terms .select2-container--default .select2-selection--single .field-type-icon,.acf-admin-page .acf-field-delete-terms .select2-container--default .select2-selection--single .field-type-icon,.acf-admin-page .acf-field-assign-terms .select2-container--default .select2-selection--single .field-type-icon,.acf-admin-page .acf-field-meta-box .select2-container--default .select2-selection--single .field-type-icon{top:auto;width:18px;height:18px;margin-right:2px}.acf-admin-page .acf-field-setting-type .select2-container--default .select2-selection--single .field-type-icon:before,.acf-admin-page .acf-field-permalink-rewrite .select2-container--default .select2-selection--single .field-type-icon:before,.acf-admin-page .acf-field-query-var .select2-container--default .select2-selection--single .field-type-icon:before,.acf-admin-page .acf-field-capability .select2-container--default .select2-selection--single .field-type-icon:before,.acf-admin-page .acf-field-parent-slug .select2-container--default .select2-selection--single .field-type-icon:before,.acf-admin-page .acf-field-data-storage .select2-container--default .select2-selection--single .field-type-icon:before,.acf-admin-page .acf-field-manage-terms .select2-container--default .select2-selection--single .field-type-icon:before,.acf-admin-page .acf-field-edit-terms .select2-container--default .select2-selection--single .field-type-icon:before,.acf-admin-page .acf-field-delete-terms .select2-container--default .select2-selection--single .field-type-icon:before,.acf-admin-page .acf-field-assign-terms .select2-container--default .select2-selection--single .field-type-icon:before,.acf-admin-page .acf-field-meta-box .select2-container--default .select2-selection--single .field-type-icon:before{width:9px;height:9px}.acf-admin-page .acf-field-setting-type .select2-container--open .select2-selection__rendered,.acf-admin-page .acf-field-permalink-rewrite .select2-container--open .select2-selection__rendered,.acf-admin-page .acf-field-query-var .select2-container--open .select2-selection__rendered,.acf-admin-page .acf-field-capability .select2-container--open .select2-selection__rendered,.acf-admin-page .acf-field-parent-slug .select2-container--open .select2-selection__rendered,.acf-admin-page .acf-field-data-storage .select2-container--open .select2-selection__rendered,.acf-admin-page .acf-field-manage-terms .select2-container--open .select2-selection__rendered,.acf-admin-page .acf-field-edit-terms .select2-container--open .select2-selection__rendered,.acf-admin-page .acf-field-delete-terms .select2-container--open .select2-selection__rendered,.acf-admin-page .acf-field-assign-terms .select2-container--open .select2-selection__rendered,.acf-admin-page .acf-field-meta-box .select2-container--open .select2-selection__rendered{border-color:#6bb5d8 !important;border-bottom-color:#d0d5dd !important}.acf-admin-page .acf-field-setting-type .select2-container--open.select2-container--below .select2-selection__rendered,.acf-admin-page .acf-field-permalink-rewrite .select2-container--open.select2-container--below .select2-selection__rendered,.acf-admin-page .acf-field-query-var .select2-container--open.select2-container--below .select2-selection__rendered,.acf-admin-page .acf-field-capability .select2-container--open.select2-container--below .select2-selection__rendered,.acf-admin-page .acf-field-parent-slug .select2-container--open.select2-container--below .select2-selection__rendered,.acf-admin-page .acf-field-data-storage .select2-container--open.select2-container--below .select2-selection__rendered,.acf-admin-page .acf-field-manage-terms .select2-container--open.select2-container--below .select2-selection__rendered,.acf-admin-page .acf-field-edit-terms .select2-container--open.select2-container--below .select2-selection__rendered,.acf-admin-page .acf-field-delete-terms .select2-container--open.select2-container--below .select2-selection__rendered,.acf-admin-page .acf-field-assign-terms .select2-container--open.select2-container--below .select2-selection__rendered,.acf-admin-page .acf-field-meta-box .select2-container--open.select2-container--below .select2-selection__rendered{border-bottom-right-radius:0 !important;border-bottom-left-radius:0 !important}.acf-admin-page .acf-field-setting-type .select2-container--open.select2-container--above .select2-selection__rendered,.acf-admin-page .acf-field-permalink-rewrite .select2-container--open.select2-container--above .select2-selection__rendered,.acf-admin-page .acf-field-query-var .select2-container--open.select2-container--above .select2-selection__rendered,.acf-admin-page .acf-field-capability .select2-container--open.select2-container--above .select2-selection__rendered,.acf-admin-page .acf-field-parent-slug .select2-container--open.select2-container--above .select2-selection__rendered,.acf-admin-page .acf-field-data-storage .select2-container--open.select2-container--above .select2-selection__rendered,.acf-admin-page .acf-field-manage-terms .select2-container--open.select2-container--above .select2-selection__rendered,.acf-admin-page .acf-field-edit-terms .select2-container--open.select2-container--above .select2-selection__rendered,.acf-admin-page .acf-field-delete-terms .select2-container--open.select2-container--above .select2-selection__rendered,.acf-admin-page .acf-field-assign-terms .select2-container--open.select2-container--above .select2-selection__rendered,.acf-admin-page .acf-field-meta-box .select2-container--open.select2-container--above .select2-selection__rendered{border-top-right-radius:0 !important;border-top-left-radius:0 !important;border-bottom-color:#6bb5d8 !important;border-top-color:#d0d5dd !important}.acf-admin-page .acf-field-setting-type .acf-selection.has-icon,.acf-admin-page .acf-field-permalink-rewrite .acf-selection.has-icon,.acf-admin-page .acf-field-query-var .acf-selection.has-icon,.acf-admin-page .acf-field-capability .acf-selection.has-icon,.acf-admin-page .acf-field-parent-slug .acf-selection.has-icon,.acf-admin-page .acf-field-data-storage .acf-selection.has-icon,.acf-admin-page .acf-field-manage-terms .acf-selection.has-icon,.acf-admin-page .acf-field-edit-terms .acf-selection.has-icon,.acf-admin-page .acf-field-delete-terms .acf-selection.has-icon,.acf-admin-page .acf-field-assign-terms .acf-selection.has-icon,.acf-admin-page .acf-field-meta-box .acf-selection.has-icon{margin-left:6px}.rtl.acf-admin-page .acf-field-setting-type .acf-selection.has-icon,.acf-admin-page .acf-field-permalink-rewrite .acf-selection.has-icon,.acf-admin-page .acf-field-query-var .acf-selection.has-icon,.acf-admin-page .acf-field-capability .acf-selection.has-icon,.acf-admin-page .acf-field-parent-slug .acf-selection.has-icon,.acf-admin-page .acf-field-data-storage .acf-selection.has-icon,.acf-admin-page .acf-field-manage-terms .acf-selection.has-icon,.acf-admin-page .acf-field-edit-terms .acf-selection.has-icon,.acf-admin-page .acf-field-delete-terms .acf-selection.has-icon,.acf-admin-page .acf-field-assign-terms .acf-selection.has-icon,.acf-admin-page .acf-field-meta-box .acf-selection.has-icon{margin-right:6px}.acf-admin-page .acf-field-setting-type .select2-selection__arrow,.acf-admin-page .acf-field-permalink-rewrite .select2-selection__arrow,.acf-admin-page .acf-field-query-var .select2-selection__arrow,.acf-admin-page .acf-field-capability .select2-selection__arrow,.acf-admin-page .acf-field-parent-slug .select2-selection__arrow,.acf-admin-page .acf-field-data-storage .select2-selection__arrow,.acf-admin-page .acf-field-manage-terms .select2-selection__arrow,.acf-admin-page .acf-field-edit-terms .select2-selection__arrow,.acf-admin-page .acf-field-delete-terms .select2-selection__arrow,.acf-admin-page .acf-field-assign-terms .select2-selection__arrow,.acf-admin-page .acf-field-meta-box .select2-selection__arrow{width:20px;height:20px;top:calc(50% - 10px);right:12px;background-color:rgba(0,0,0,0)}.acf-admin-page .acf-field-setting-type .select2-selection__arrow:after,.acf-admin-page .acf-field-permalink-rewrite .select2-selection__arrow:after,.acf-admin-page .acf-field-query-var .select2-selection__arrow:after,.acf-admin-page .acf-field-capability .select2-selection__arrow:after,.acf-admin-page .acf-field-parent-slug .select2-selection__arrow:after,.acf-admin-page .acf-field-data-storage .select2-selection__arrow:after,.acf-admin-page .acf-field-manage-terms .select2-selection__arrow:after,.acf-admin-page .acf-field-edit-terms .select2-selection__arrow:after,.acf-admin-page .acf-field-delete-terms .select2-selection__arrow:after,.acf-admin-page .acf-field-assign-terms .select2-selection__arrow:after,.acf-admin-page .acf-field-meta-box .select2-selection__arrow:after{content:"";display:block;position:absolute;z-index:850;top:1px;left:0;width:20px;height:20px;-webkit-mask-image:url("../../images/icons/icon-chevron-down.svg");mask-image:url("../../images/icons/icon-chevron-down.svg");background-color:#667085;border:none;border-radius:0;-webkit-mask-size:contain;mask-size:contain;-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;-webkit-mask-position:center;mask-position:center;text-indent:500%;white-space:nowrap;overflow:hidden}.acf-admin-page .acf-field-setting-type .select2-selection__arrow b[role=presentation],.acf-admin-page .acf-field-permalink-rewrite .select2-selection__arrow b[role=presentation],.acf-admin-page .acf-field-query-var .select2-selection__arrow b[role=presentation],.acf-admin-page .acf-field-capability .select2-selection__arrow b[role=presentation],.acf-admin-page .acf-field-parent-slug .select2-selection__arrow b[role=presentation],.acf-admin-page .acf-field-data-storage .select2-selection__arrow b[role=presentation],.acf-admin-page .acf-field-manage-terms .select2-selection__arrow b[role=presentation],.acf-admin-page .acf-field-edit-terms .select2-selection__arrow b[role=presentation],.acf-admin-page .acf-field-delete-terms .select2-selection__arrow b[role=presentation],.acf-admin-page .acf-field-assign-terms .select2-selection__arrow b[role=presentation],.acf-admin-page .acf-field-meta-box .select2-selection__arrow b[role=presentation]{display:none}.acf-admin-page .acf-field-setting-type .select2-container--open .select2-selection__arrow:after,.acf-admin-page .acf-field-permalink-rewrite .select2-container--open .select2-selection__arrow:after,.acf-admin-page .acf-field-query-var .select2-container--open .select2-selection__arrow:after,.acf-admin-page .acf-field-capability .select2-container--open .select2-selection__arrow:after,.acf-admin-page .acf-field-parent-slug .select2-container--open .select2-selection__arrow:after,.acf-admin-page .acf-field-data-storage .select2-container--open .select2-selection__arrow:after,.acf-admin-page .acf-field-manage-terms .select2-container--open .select2-selection__arrow:after,.acf-admin-page .acf-field-edit-terms .select2-container--open .select2-selection__arrow:after,.acf-admin-page .acf-field-delete-terms .select2-container--open .select2-selection__arrow:after,.acf-admin-page .acf-field-assign-terms .select2-container--open .select2-selection__arrow:after,.acf-admin-page .acf-field-meta-box .select2-container--open .select2-selection__arrow:after{-webkit-mask-image:url("../../images/icons/icon-chevron-up.svg");mask-image:url("../../images/icons/icon-chevron-up.svg")}.acf-admin-page .field-type-select-results{position:relative;top:4px;z-index:1002;border-radius:0 0 6px 6px;box-shadow:0px 8px 24px 4px rgba(16,24,40,.12)}.acf-admin-page .field-type-select-results.select2-dropdown--above{display:flex;flex-direction:column-reverse;top:0;border-radius:6px 6px 0 0;z-index:99999}.select2-container.select2-container--open.acf-admin-page .field-type-select-results{box-shadow:0px 0px 0px 3px #ebf5fa,0px 8px 24px 4px rgba(16,24,40,.12)}.acf-admin-page .field-type-select-results .acf-selection.has-icon{margin-left:6px}.rtl.acf-admin-page .field-type-select-results .acf-selection.has-icon{margin-right:6px}.acf-admin-page .field-type-select-results .select2-search{position:relative;margin:0;padding:0}.acf-admin-page .field-type-select-results .select2-search--dropdown:after{content:"";display:block;position:absolute;top:12px;left:13px;width:16px;height:16px;-webkit-mask-image:url("../../images/icons/icon-search.svg");mask-image:url("../../images/icons/icon-search.svg");background-color:#98a2b3;border:none;border-radius:0;-webkit-mask-size:contain;mask-size:contain;-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;-webkit-mask-position:center;mask-position:center;text-indent:500%;white-space:nowrap;overflow:hidden}.rtl.acf-admin-page .field-type-select-results .select2-search--dropdown:after{right:12px;left:auto}.acf-admin-page .field-type-select-results .select2-search .select2-search__field{padding-left:38px;border-right:0;border-bottom:0;border-left:0;border-radius:0}.rtl.acf-admin-page .field-type-select-results .select2-search .select2-search__field{padding-right:38px;padding-left:0}.acf-admin-page .field-type-select-results .select2-search .select2-search__field:focus{border-top-color:#d0d5dd;outline:0}.acf-admin-page .field-type-select-results .select2-results__options{max-height:440px}.acf-admin-page .field-type-select-results .select2-results__option .select2-results__option--highlighted{background-color:#0783be !important;color:#f9fafb !important}.acf-admin-page .field-type-select-results .select2-results__option .select2-results__option{display:inline-flex;position:relative;width:calc(100% - 24px);min-height:32px;padding-top:0;padding-right:12px;padding-bottom:0;padding-left:12px;align-items:center}.acf-admin-page .field-type-select-results .select2-results__option .select2-results__option .field-type-icon{top:auto;width:18px;height:18px;margin-right:2px;box-shadow:0 0 0 1px #f9fafb}.acf-admin-page .field-type-select-results .select2-results__option .select2-results__option .field-type-icon:before{width:9px;height:9px}.acf-admin-page .field-type-select-results .select2-results__option[aria-selected=true]{background-color:#ebf5fa !important;color:#344054 !important}.acf-admin-page .field-type-select-results .select2-results__option[aria-selected=true]:after{content:"";right:13px;position:absolute;width:16px;height:16px;-webkit-mask-image:url("../../images/icons/icon-check.svg");mask-image:url("../../images/icons/icon-check.svg");background-color:#0783be;border:none;border-radius:0;-webkit-mask-size:contain;mask-size:contain;-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;-webkit-mask-position:center;mask-position:center;text-indent:500%;white-space:nowrap;overflow:hidden}.rtl.acf-admin-page .field-type-select-results .select2-results__option[aria-selected=true]:after{left:13px;right:auto}.acf-admin-page .field-type-select-results .select2-results__group{display:inline-flex;align-items:center;width:calc(100% - 24px);min-height:25px;background-color:#f9fafb;border-top-width:1px;border-top-style:solid;border-top-color:#eaecf0;border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#eaecf0;color:#98a2b3;font-size:11px;margin-bottom:0;padding-top:0;padding-right:12px;padding-bottom:0;padding-left:12px;font-weight:normal}.acf-admin-page.rtl .acf-field-setting-type .select2-selection__arrow:after,.acf-admin-page.rtl .acf-field-permalink-rewrite .select2-selection__arrow:after,.acf-admin-page.rtl .acf-field-query-var .select2-selection__arrow:after{right:auto;left:10px}.rtl.post-type-acf-field-group .acf-field-setting-name .acf-tip,.rtl.acf-internal-post-type .acf-field-setting-name .acf-tip{left:auto;right:654px}.post-type-acf-field-group .metabox-holder.columns-1 #acf-field-group-fields,.post-type-acf-field-group .metabox-holder.columns-1 #acf-field-group-options,.post-type-acf-field-group .metabox-holder.columns-1 .meta-box-sortables.ui-sortable,.post-type-acf-field-group .metabox-holder.columns-1 .notice{max-width:1440px}.post-type-acf-field-group.columns-1 .notice{max-width:1440px}.post-type-acf-field-group.columns-2 .acf-headerbar .acf-headerbar-inner{max-width:100%}.post-type-acf-field-group #poststuff{margin-top:0;margin-right:0;margin-bottom:0;margin-left:0;padding-top:0;padding-right:0;padding-bottom:0;padding-left:0}.post-type-acf-field-group #acf-field-group-fields .acf-field-list-wrap{overflow:hidden;border:none;border-radius:0 0 8px 8px;box-shadow:0px 1px 2px rgba(16,24,40,.1)}.post-type-acf-field-group #acf-field-group-fields .acf-field-list-wrap.-empty{border-top-width:1px;border-top-style:solid;border-top-color:#eaecf0}.post-type-acf-field-group #acf-field-group-fields .acf-field-list-wrap.-empty .acf-thead,.post-type-acf-field-group #acf-field-group-fields .acf-field-list-wrap.-empty .acf-tfoot{display:none}.post-type-acf-field-group #acf-field-group-fields .acf-field-list-wrap.-empty .no-fields-message{min-height:280px}.post-type-acf-field-group .acf-thead{background-color:#f9fafb;border-top-width:1px;border-top-style:solid;border-top-color:#eaecf0;border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#eaecf0}.post-type-acf-field-group .acf-thead li{display:flex;align-items:center;min-height:48px;padding-top:0;padding-bottom:0;color:#344054;font-weight:500}.post-type-acf-field-group .acf-field-object{border-top-width:1px;border-top-style:solid;border-top-color:#eaecf0}.post-type-acf-field-group .acf-field-object:hover .acf-sortable-handle:before{display:inline-flex}.post-type-acf-field-group .acf-field-object.acf-field-is-endpoint:before{display:block;content:"";height:2px;width:100%;background:#d0d5dd;margin-top:-1px}.post-type-acf-field-group .acf-field-object.acf-field-is-endpoint.acf-field-object-accordion:before{display:none}.post-type-acf-field-group .acf-field-object.acf-field-is-endpoint.acf-field-object-accordion:after{display:block;content:"";height:2px;width:100%;background:#d0d5dd;z-index:500}.post-type-acf-field-group .acf-field-object:hover{background-color:#f7fbfd}.post-type-acf-field-group .acf-field-object.open{background-color:#fff;border-top-color:#a5d2e7}.post-type-acf-field-group .acf-field-object.open .handle{background-color:#d8ebf5;border:none;text-shadow:none}.post-type-acf-field-group .acf-field-object.open .handle a{color:#0783be !important}.post-type-acf-field-group .acf-field-object.open .handle a.delete-field{color:#a00 !important}.post-type-acf-field-group .acf-field-object .acf-field-setting-type .acf-hl{margin:0}.post-type-acf-field-group .acf-field-object .acf-field-setting-type .acf-hl li{width:auto}.post-type-acf-field-group .acf-field-object .acf-field-setting-type .acf-hl li:first-child{flex-grow:1;margin-left:-10px}.post-type-acf-field-group .acf-field-object .acf-field-setting-type .acf-hl li:nth-child(2){padding-right:0}.post-type-acf-field-group .acf-field-object ul.acf-hl{display:flex;align-items:stretch}.post-type-acf-field-group .acf-field-object .handle li{display:flex;align-items:top;flex-wrap:wrap;min-height:60px;color:#344054}.post-type-acf-field-group .acf-field-object .handle li.li-field-label{display:flex;flex-wrap:wrap;justify-content:flex-start;align-content:flex-start;align-items:flex-start;width:auto}.post-type-acf-field-group .acf-field-object .handle li.li-field-label strong{font-weight:500}.post-type-acf-field-group .acf-field-object .handle li.li-field-label .row-options{width:100%}.post-type-acf-field-group .acf-tfoot{display:flex;align-items:center;justify-content:flex-end;min-height:80px;box-sizing:border-box;padding-top:8px;padding-right:24px;padding-bottom:8px;padding-left:24px;background-color:#fff;border-top-width:1px;border-top-style:solid;border-top-color:#eaecf0}.post-type-acf-field-group .acf-tfoot .acf-fr{margin-top:0;margin-right:0;margin-bottom:0;margin-left:0;padding-top:0;padding-right:0;padding-bottom:0;padding-left:0}.post-type-acf-field-group .acf-field-object .settings{box-sizing:border-box;padding-top:0;padding-bottom:0;background-color:#fff;border-left-width:4px;border-left-style:solid;border-left-color:#6bb5d8}.acf-field-settings-main{padding-top:32px;padding-right:0;padding-bottom:32px;padding-left:0}.acf-field-settings-main .acf-field:last-of-type,.acf-field-settings-main .acf-field.acf-last-visible{margin-bottom:0}.acf-field-settings .acf-label{display:block;justify-content:space-between;align-items:center;align-content:center;margin-top:0;margin-right:0;margin-bottom:6px;margin-left:0}.acf-field-settings .acf-field{box-sizing:border-box;width:100%;margin-top:0;margin-right:0;margin-bottom:32px;margin-left:0;padding-top:0;padding-right:72px;padding-bottom:0;padding-left:72px}@media screen and (max-width: 600px){.acf-field-settings .acf-field{padding-right:12px;padding-left:12px}}.acf-field-settings .acf-field .acf-label,.acf-field-settings .acf-field .acf-input{max-width:600px}.acf-field-settings .acf-field .acf-label.acf-input-sub,.acf-field-settings .acf-field .acf-input.acf-input-sub{max-width:100%}.acf-field-settings .acf-field .acf-label .acf-btn:disabled,.acf-field-settings .acf-field .acf-input .acf-btn:disabled{background-color:#f2f4f7;color:#98a2b3 !important;border:1px #d0d5dd solid;cursor:default}.acf-field-settings .acf-field .acf-input-wrap{overflow:visible}.acf-field-settings .acf-field.acf-field-setting-label,.acf-field-settings .acf-field-setting-wrapper{padding-top:24px;border-top-width:1px;border-top-style:solid;border-top-color:#eaecf0}.acf-field-settings .acf-field-setting-wrapper{margin-top:24px}.acf-field-setting-bidirectional_notes .acf-label{display:none}.acf-field-setting-bidirectional_notes .acf-feature-notice{background-color:#f9fafb;border:1px solid #eaecf0;border-radius:6px;padding:16px;color:#344054;position:relative}.acf-field-setting-bidirectional_notes .acf-feature-notice.with-warning-icon{padding-left:45px}.acf-field-setting-bidirectional_notes .acf-feature-notice.with-warning-icon::before{content:"";display:block;position:absolute;top:17px;left:18px;z-index:600;width:18px;height:18px;margin-right:8px;background-color:#667085;border:none;border-radius:0;-webkit-mask-size:contain;mask-size:contain;-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;-webkit-mask-position:center;mask-position:center;-webkit-mask-image:url("../../images/icons/icon-info.svg");mask-image:url("../../images/icons/icon-info.svg")}.acf-field-settings .acf-field-settings-footer{display:flex;align-items:center;min-height:72px;box-sizing:border-box;width:100%;margin-top:0;margin-right:0;margin-bottom:0;margin-left:0;padding-top:0;padding-right:0;padding-bottom:0;padding-left:72px;border-top-width:1px;border-top-style:solid;border-top-color:#eaecf0}@media screen and (max-width: 600px){.acf-field-settings .acf-field-settings-footer{padding-left:12px}}.rtl .acf-field-settings .acf-field-settings-footer{padding-top:0;padding-right:72px;padding-bottom:0;padding-left:0}.acf-fields .acf-tab-wrap,.acf-admin-page.acf-internal-post-type .acf-tab-wrap,.acf-browse-fields-modal-wrap .acf-tab-wrap{background:#f9fafb;border-bottom-color:#1d2939}.acf-fields .acf-tab-wrap .acf-tab-group,.acf-admin-page.acf-internal-post-type .acf-tab-wrap .acf-tab-group,.acf-browse-fields-modal-wrap .acf-tab-wrap .acf-tab-group{padding-right:24px;padding-left:24px;border-top-width:0;border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#eaecf0}.acf-fields .acf-field-settings-tab-bar,.acf-fields .acf-tab-wrap .acf-tab-group,.acf-admin-page.acf-internal-post-type .acf-field-settings-tab-bar,.acf-admin-page.acf-internal-post-type .acf-tab-wrap .acf-tab-group,.acf-browse-fields-modal-wrap .acf-field-settings-tab-bar,.acf-browse-fields-modal-wrap .acf-tab-wrap .acf-tab-group{display:flex;align-items:stretch;min-height:48px;padding-top:0;padding-right:0;padding-bottom:0;padding-left:24px;margin-top:0;margin-bottom:0;border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#eaecf0}.acf-fields .acf-field-settings-tab-bar li,.acf-fields .acf-tab-wrap .acf-tab-group li,.acf-admin-page.acf-internal-post-type .acf-field-settings-tab-bar li,.acf-admin-page.acf-internal-post-type .acf-tab-wrap .acf-tab-group li,.acf-browse-fields-modal-wrap .acf-field-settings-tab-bar li,.acf-browse-fields-modal-wrap .acf-tab-wrap .acf-tab-group li{display:flex;margin-top:0;margin-right:24px;margin-bottom:0;margin-left:0;padding:0}.acf-fields .acf-field-settings-tab-bar li a,.acf-fields .acf-tab-wrap .acf-tab-group li a,.acf-admin-page.acf-internal-post-type .acf-field-settings-tab-bar li a,.acf-admin-page.acf-internal-post-type .acf-tab-wrap .acf-tab-group li a,.acf-browse-fields-modal-wrap .acf-field-settings-tab-bar li a,.acf-browse-fields-modal-wrap .acf-tab-wrap .acf-tab-group li a{box-sizing:border-box;display:inline-flex;align-items:center;height:100%;padding-top:3px;padding-right:0;padding-bottom:0;padding-left:0;background:none;border-top:none;border-right:none;border-bottom-width:3px;border-bottom-style:solid;border-bottom-color:rgba(0,0,0,0);border-left:none;color:#667085;font-weight:normal}.acf-fields .acf-field-settings-tab-bar li a:focus-visible,.acf-fields .acf-tab-wrap .acf-tab-group li a:focus-visible,.acf-admin-page.acf-internal-post-type .acf-field-settings-tab-bar li a:focus-visible,.acf-admin-page.acf-internal-post-type .acf-tab-wrap .acf-tab-group li a:focus-visible,.acf-browse-fields-modal-wrap .acf-field-settings-tab-bar li a:focus-visible,.acf-browse-fields-modal-wrap .acf-tab-wrap .acf-tab-group li a:focus-visible{border:1px solid #5897fb}.acf-fields .acf-field-settings-tab-bar li a:hover,.acf-fields .acf-tab-wrap .acf-tab-group li a:hover,.acf-admin-page.acf-internal-post-type .acf-field-settings-tab-bar li a:hover,.acf-admin-page.acf-internal-post-type .acf-tab-wrap .acf-tab-group li a:hover,.acf-browse-fields-modal-wrap .acf-field-settings-tab-bar li a:hover,.acf-browse-fields-modal-wrap .acf-tab-wrap .acf-tab-group li a:hover{color:#1d2939}.acf-fields .acf-field-settings-tab-bar li a:hover,.acf-fields .acf-tab-wrap .acf-tab-group li a:hover,.acf-admin-page.acf-internal-post-type .acf-field-settings-tab-bar li a:hover,.acf-admin-page.acf-internal-post-type .acf-tab-wrap .acf-tab-group li a:hover,.acf-browse-fields-modal-wrap .acf-field-settings-tab-bar li a:hover,.acf-browse-fields-modal-wrap .acf-tab-wrap .acf-tab-group li a:hover{background-color:rgba(0,0,0,0)}.acf-fields .acf-field-settings-tab-bar li.active a,.acf-fields .acf-tab-wrap .acf-tab-group li.active a,.acf-admin-page.acf-internal-post-type .acf-field-settings-tab-bar li.active a,.acf-admin-page.acf-internal-post-type .acf-tab-wrap .acf-tab-group li.active a,.acf-browse-fields-modal-wrap .acf-field-settings-tab-bar li.active a,.acf-browse-fields-modal-wrap .acf-tab-wrap .acf-tab-group li.active a{background:none;border-bottom-color:#0783be;color:#0783be}.acf-fields .acf-field-settings-tab-bar li.active a:focus-visible,.acf-fields .acf-tab-wrap .acf-tab-group li.active a:focus-visible,.acf-admin-page.acf-internal-post-type .acf-field-settings-tab-bar li.active a:focus-visible,.acf-admin-page.acf-internal-post-type .acf-tab-wrap .acf-tab-group li.active a:focus-visible,.acf-browse-fields-modal-wrap .acf-field-settings-tab-bar li.active a:focus-visible,.acf-browse-fields-modal-wrap .acf-tab-wrap .acf-tab-group li.active a:focus-visible{border-bottom-color:#0783be;border-bottom-width:3px}.acf-admin-page.acf-internal-post-type .acf-field-editor .acf-field-settings-tab-bar{padding-left:72px}@media screen and (max-width: 600px){.acf-admin-page.acf-internal-post-type .acf-field-editor .acf-field-settings-tab-bar{padding-left:12px}}#acf-field-group-options .field-group-settings-tab{padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px}#acf-field-group-options .field-group-settings-tab .acf-field:last-of-type{padding:0}#acf-field-group-options .acf-field{border:none;margin-top:0;margin-right:0;margin-bottom:0;margin-left:0;padding-top:0;padding-right:0;padding-bottom:24px;padding-left:0}#acf-field-group-options .field-group-setting-split-container{display:flex;padding-top:0;padding-right:0;padding-bottom:0;padding-left:0}#acf-field-group-options .field-group-setting-split-container .field-group-setting-split{box-sizing:border-box;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px}#acf-field-group-options .field-group-setting-split-container .field-group-setting-split:nth-child(1){flex:1 0 auto}#acf-field-group-options .field-group-setting-split-container .field-group-setting-split:nth-child(2n){flex:1 0 auto;max-width:320px;margin-top:0;margin-right:0;margin-bottom:0;margin-left:32px;padding-right:32px;padding-left:32px;border-left-width:1px;border-left-style:solid;border-left-color:#eaecf0}#acf-field-group-options .acf-field[data-name=description]{max-width:600px}#acf-field-group-options .acf-button-group{display:inline-flex}.rtl #acf-field-group-options .field-group-setting-split-container .field-group-setting-split:nth-child(2n){margin-right:32px;margin-left:0;border-left:none;border-right-width:1px;border-right-style:solid;border-right-color:#eaecf0}.acf-field-list .li-field-order{padding:0;display:flex;flex-direction:row;flex-wrap:nowrap;justify-content:center;align-content:stretch;align-items:stretch;background-color:rgba(0,0,0,0)}.acf-field-list .acf-sortable-handle{display:flex;flex-direction:row;flex-wrap:nowrap;justify-content:center;align-content:flex-start;align-items:flex-start;width:100%;height:100%;position:relative;padding-top:11px;padding-bottom:8px;background-color:rgba(0,0,0,0);border:none;border-radius:0}.acf-field-list .acf-sortable-handle:hover{cursor:grab}.acf-field-list .acf-sortable-handle:before{content:"";display:none;position:absolute;top:16px;left:8px;width:16px;height:16px;width:12px;height:12px;background-color:#98a2b3;border:none;border-radius:0;-webkit-mask-size:contain;mask-size:contain;-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;-webkit-mask-position:center;mask-position:center;text-indent:500%;white-space:nowrap;overflow:hidden;-webkit-mask-image:url("../../images/icons/icon-draggable.svg");mask-image:url("../../images/icons/icon-draggable.svg")}.rtl .acf-field-list .acf-sortable-handle:before{left:0;right:8px}.acf-field-object .li-field-label{position:relative;padding-left:40px}.acf-field-object .li-field-label:before{content:"";display:block;position:absolute;left:6px;display:inline-flex;width:18px;height:18px;margin-top:-2px;background-color:#667085;border:none;border-radius:0;-webkit-mask-size:contain;mask-size:contain;-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;-webkit-mask-position:center;mask-position:center;text-indent:500%;white-space:nowrap;overflow:hidden;-webkit-mask-image:url("../../images/icons/icon-chevron-down.svg");mask-image:url("../../images/icons/icon-chevron-down.svg")}.acf-field-object .li-field-label:hover:before{cursor:pointer}.rtl .acf-field-object .li-field-label{padding-left:0;padding-right:40px}.rtl .acf-field-object .li-field-label:before{left:0;right:6px;-webkit-mask-image:url("../../images/icons/icon-chevron-down.svg");mask-image:url("../../images/icons/icon-chevron-down.svg")}.rtl .acf-field-object.open .li-field-label:before{-webkit-mask-image:url("../../images/icons/icon-chevron-down.svg");mask-image:url("../../images/icons/icon-chevron-down.svg")}.rtl .acf-field-object.open .acf-input-sub .li-field-label:before{-webkit-mask-image:url("../../images/icons/icon-chevron-right.svg");mask-image:url("../../images/icons/icon-chevron-right.svg")}.rtl .acf-field-object.open .acf-input-sub .acf-field-object.open .li-field-label:before{-webkit-mask-image:url("../../images/icons/icon-chevron-down.svg");mask-image:url("../../images/icons/icon-chevron-down.svg")}.acf-thead .li-field-label{padding-left:40px}.rtl .acf-thead .li-field-label{padding-left:0;padding-right:40px}.acf-field-settings-main-conditional-logic .acf-conditional-toggle{display:flex;padding-right:72px;padding-left:72px}@media screen and (max-width: 600px){.acf-field-settings-main-conditional-logic .acf-conditional-toggle{padding-left:12px}}.acf-field-settings-main-conditional-logic .acf-field{flex-wrap:wrap;margin-bottom:0;padding-right:0;padding-left:0}.acf-field-settings-main-conditional-logic .acf-field .rule-groups{flex:0 1 100%;order:3;margin-top:32px;padding-top:32px;padding-right:72px;padding-left:72px;border-top-width:1px;border-top-style:solid;border-top-color:#eaecf0}@media screen and (max-width: 600px){.acf-field-settings-main-conditional-logic .acf-field .rule-groups{padding-left:12px}.acf-field-settings-main-conditional-logic .acf-field .rule-groups table.acf-table tbody tr{display:flex;flex-wrap:wrap;justify-content:flex-start;align-content:flex-start;align-items:flex-start}.acf-field-settings-main-conditional-logic .acf-field .rule-groups table.acf-table tbody tr td{flex:1 1 100%}}.acf-input .acf-input-prepend,.acf-input .acf-input-append{display:inline-flex;align-items:center;height:100%;min-height:40px;padding-right:12px;padding-left:12px;background-color:#f9fafb;border-color:#d0d5dd;box-shadow:0px 1px 2px rgba(16,24,40,.1);color:#667085}.acf-input .acf-input-prepend{border-radius:6px 0 0 6px}.acf-input .acf-input-append{border-radius:0 6px 6px 0}.acf-input-wrap{display:flex}.acf-field-settings-main-presentation .acf-input-wrap{display:flex}.post-type-acf-field-group #acf-field-group-fields .acf-field-list.-empty .no-fields-message{display:flex;justify-content:center;padding-top:48px;padding-bottom:48px}.post-type-acf-field-group #acf-field-group-fields .acf-field-list.-empty .no-fields-message .no-fields-message-inner{display:flex;flex-wrap:wrap;justify-content:center;align-content:center;align-items:flex-start;text-align:center;max-width:400px}.post-type-acf-field-group #acf-field-group-fields .acf-field-list.-empty .no-fields-message .no-fields-message-inner img,.post-type-acf-field-group #acf-field-group-fields .acf-field-list.-empty .no-fields-message .no-fields-message-inner h2,.post-type-acf-field-group #acf-field-group-fields .acf-field-list.-empty .no-fields-message .no-fields-message-inner p{flex:1 0 100%}.post-type-acf-field-group #acf-field-group-fields .acf-field-list.-empty .no-fields-message .no-fields-message-inner h2{margin-top:32px;margin-bottom:0;padding:0;color:#344054}.post-type-acf-field-group #acf-field-group-fields .acf-field-list.-empty .no-fields-message .no-fields-message-inner p{margin-top:12px;margin-bottom:0;padding:0;color:#667085}.post-type-acf-field-group #acf-field-group-fields .acf-field-list.-empty .no-fields-message .no-fields-message-inner p.acf-small{margin-top:32px}.post-type-acf-field-group #acf-field-group-fields .acf-field-list.-empty .no-fields-message .no-fields-message-inner img{max-width:284px;margin-bottom:0}.post-type-acf-field-group #acf-field-group-fields .acf-field-list.-empty .no-fields-message .no-fields-message-inner .acf-btn{margin-top:32px}.post-type-acf-field-group .acf-headerbar #title-prompt-text{display:none}.acf-admin-page #acf-popup .acf-popup-box{min-width:480px}.acf-admin-page #acf-popup .acf-popup-box .title{display:flex;align-items:center;align-content:center;justify-content:space-between;min-height:64px;box-sizing:border-box;margin:0;padding-right:24px;padding-left:24px;border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#eaecf0}.acf-admin-page #acf-popup .acf-popup-box .title h1,.acf-admin-page #acf-popup .acf-popup-box .title h2,.acf-admin-page #acf-popup .acf-popup-box .title h3,.acf-admin-page #acf-popup .acf-popup-box .title h4{padding-left:0;color:#344054}.acf-admin-page #acf-popup .acf-popup-box .title .acf-icon{display:block;position:relative;top:auto;right:auto;width:22px;height:22px;background-color:rgba(0,0,0,0);color:rgba(0,0,0,0)}.acf-admin-page #acf-popup .acf-popup-box .title .acf-icon:before{display:inline-flex;position:absolute;top:0;left:0;width:22px;height:22px;background-color:#667085;border:none;border-radius:0;-webkit-mask-size:contain;mask-size:contain;-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;-webkit-mask-position:center;mask-position:center;text-indent:500%;white-space:nowrap;overflow:hidden;-webkit-mask-image:url("../../images/icons/icon-close-circle.svg");mask-image:url("../../images/icons/icon-close-circle.svg")}.acf-admin-page #acf-popup .acf-popup-box .title .acf-icon:hover:before{background-color:#0783be}.acf-admin-page #acf-popup .acf-popup-box .inner{box-sizing:border-box;margin:0;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;border-top:none}.acf-admin-page #acf-popup .acf-popup-box .inner p{margin-top:0;margin-bottom:0}.acf-admin-page #acf-popup .acf-popup-box #acf-move-field-form .acf-field-select,.acf-admin-page #acf-popup .acf-popup-box #acf-link-field-groups-form .acf-field-select{margin-top:0}.acf-admin-page .acf-link-field-groups-popup .acf-popup-box .title h3,.acf-admin-page .acf-create-options-page-popup .acf-popup-box .title h3{color:#1d2939;font-weight:500}.acf-admin-page .acf-link-field-groups-popup .acf-popup-box .title h3:before,.acf-admin-page .acf-create-options-page-popup .acf-popup-box .title h3:before{content:"";width:18px;height:18px;background:#98a2b3;margin-right:9px}.acf-admin-page .acf-link-field-groups-popup .acf-popup-box .inner,.acf-admin-page .acf-create-options-page-popup .acf-popup-box .inner{padding:0 !important}.acf-admin-page .acf-link-field-groups-popup .acf-popup-box .inner .acf-field-select,.acf-admin-page .acf-link-field-groups-popup .acf-popup-box .inner .acf-link-successful,.acf-admin-page .acf-create-options-page-popup .acf-popup-box .inner .acf-field-select,.acf-admin-page .acf-create-options-page-popup .acf-popup-box .inner .acf-link-successful{padding:32px 24px;margin-bottom:0}.acf-admin-page .acf-link-field-groups-popup .acf-popup-box .inner .acf-field-select .description,.acf-admin-page .acf-link-field-groups-popup .acf-popup-box .inner .acf-link-successful .description,.acf-admin-page .acf-create-options-page-popup .acf-popup-box .inner .acf-field-select .description,.acf-admin-page .acf-create-options-page-popup .acf-popup-box .inner .acf-link-successful .description{margin-top:6px !important}.acf-admin-page .acf-link-field-groups-popup .acf-popup-box .inner .acf-actions,.acf-admin-page .acf-create-options-page-popup .acf-popup-box .inner .acf-actions{background:#f9fafb;border-top:1px solid #eaecf0;padding-top:20px;padding-left:24px;padding-bottom:20px;padding-right:24px;border-bottom-left-radius:8px;border-bottom-right-radius:8px}.acf-admin-page .acf-link-field-groups-popup .acf-popup-box .inner .acf-actions .acf-btn,.acf-admin-page .acf-create-options-page-popup .acf-popup-box .inner .acf-actions .acf-btn{display:inline-block;margin-left:8px}.acf-admin-page .acf-link-field-groups-popup .acf-popup-box .inner .acf-actions .acf-btn.acf-btn-primary,.acf-admin-page .acf-create-options-page-popup .acf-popup-box .inner .acf-actions .acf-btn.acf-btn-primary{width:120px}.acf-admin-page .acf-create-options-page-popup .acf-popup-box .inner .acf-error-message.-success{display:none}.acf-admin-page .acf-create-options-page-popup .acf-popup-box .inner .-dismiss{margin:24px 32px !important}.acf-admin-page .acf-create-options-page-popup .acf-popup-box .inner .acf-field{padding:24px 32px 0 32px;margin:0}.acf-admin-page .acf-create-options-page-popup .acf-popup-box .inner .acf-field.acf-error .acf-input-wrap{overflow:inherit}.acf-admin-page .acf-create-options-page-popup .acf-popup-box .inner .acf-field.acf-error .acf-input-wrap input[type=text]{border:1px rgba(209,55,55,.5) solid !important;box-shadow:0px 0px 0px 3px rgba(209,55,55,.12),0px 0px 0px rgba(255,54,54,.25) !important;background-image:url(../../images/icons/icon-info-red.svg);background-position:right 10px top 50%;background-size:14px;background-repeat:no-repeat}.acf-admin-page .acf-create-options-page-popup .acf-popup-box .inner .acf-field .acf-options-page-modal-error p{font-size:12px;color:#d13737}.acf-admin-page .acf-create-options-page-popup .acf-popup-box .inner .acf-actions{margin-top:32px}.acf-admin-page .acf-create-options-page-popup .acf-popup-box .inner .acf-actions .acf-btn:disabled{background-color:#0783be}.acf-admin-single-field-group #post-body-content{display:none}.acf-field-group-settings-footer{display:flex;justify-content:space-between;align-content:stretch;align-items:center;position:relative;min-height:88px;margin-right:-24px;margin-left:-24px;margin-bottom:-24px;padding-right:24px;padding-left:24px;border-top-width:1px;border-top-style:solid;border-top-color:#eaecf0}.acf-field-group-settings-footer .acf-created-on{display:inline-flex;justify-content:flex-start;align-content:stretch;align-items:center;color:#667085}.acf-field-group-settings-footer .acf-created-on:before{content:"";display:inline-block;width:20px;height:20px;margin-right:8px;background-color:#98a2b3;border:none;border-radius:0;-webkit-mask-size:contain;mask-size:contain;-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;-webkit-mask-position:center;mask-position:center;-webkit-mask-image:url("../../images/icons/icon-time.svg");mask-image:url("../../images/icons/icon-time.svg")}.conditional-logic-badge{display:none}.conditional-logic-badge.is-enabled{display:inline-block;width:6px;height:6px;overflow:hidden;margin-left:8px;background-color:rgba(82,170,89,.4);border-width:1px;border-style:solid;border-color:#52aa59;border-radius:100px;text-indent:100%;white-space:nowrap}.acf-field-type-settings{container-name:settings;container-type:inline-size}.acf-field-settings-split{display:flex;border-top-width:1px;border-top-style:solid;border-top-color:#eaecf0}.acf-field-settings-split .acf-field{margin:0;padding-top:32px;padding-bottom:32px}.acf-field-settings-split .acf-field:nth-child(2n){border-left-width:1px;border-left-style:solid;border-left-color:#eaecf0}@container settings (max-width: 1170px){.acf-field-settings-split{border:none;flex-direction:column}.acf-field{border-top-width:1px;border-top-style:solid;border-top-color:#eaecf0}}.acf-field-setting-display_format .acf-label,.acf-field-setting-return_format .acf-label{margin-bottom:6px}.acf-field-setting-display_format .acf-radio-list li,.acf-field-setting-return_format .acf-radio-list li{display:flex}.acf-field-setting-display_format .acf-radio-list li label,.acf-field-setting-return_format .acf-radio-list li label{display:inline-flex;width:100%}.acf-field-setting-display_format .acf-radio-list li label span,.acf-field-setting-return_format .acf-radio-list li label span{flex:1 1 auto}.acf-field-setting-display_format .acf-radio-list li label code,.acf-field-setting-return_format .acf-radio-list li label code{padding-right:8px;padding-left:8px;background-color:#f2f4f7;border-radius:4px;color:#475467}.acf-field-setting-display_format .acf-radio-list li input[type=text],.acf-field-setting-return_format .acf-radio-list li input[type=text]{height:32px}.acf-field-settings .acf-field-setting-first_day{padding-top:32px;border-top-width:1px;border-top-style:solid;border-top-color:#eaecf0}.acf-field-object-image .acf-hl[data-cols="3"]>li,.acf-field-object-gallery .acf-hl[data-cols="3"]>li{width:auto}.acf-field-settings .acf-field-appended{overflow:auto}.acf-field-settings .acf-field-appended .acf-input{float:left}.acf-field-settings .acf-field.acf-field-setting-min_width .acf-input,.acf-field-settings .acf-field.acf-field-setting-max_width .acf-input{max-width:none}.acf-field-settings .acf-field.acf-field-setting-min_width .acf-input-wrap input[type=text],.acf-field-settings .acf-field.acf-field-setting-max_width .acf-input-wrap input[type=text]{max-width:81px}.post-type-acf-field-group .acf-field-object-flexible-content .acf-field-setting-pagination{display:none}.post-type-acf-field-group .acf-field-object-repeater .acf-field-object-repeater .acf-field-setting-pagination{display:none}.acf-admin-single-field-group .acf-field-object-flexible-content .acf-is-subfields .acf-field-object .acf-label,.acf-admin-single-field-group .acf-field-object-flexible-content .acf-is-subfields .acf-field-object .acf-input{max-width:600px}.acf-admin-single-field-group .acf-field.acf-field-true-false.acf-field-setting-default_value .acf-true-false{border:none}.acf-admin-single-field-group .acf-field.acf-field-true-false.acf-field-setting-default_value .acf-true-false input[type=checkbox]{margin-right:0}.acf-field.acf-field-with-front{margin-top:32px}.post-type-acf-field-group #acf-field-group-fields .acf-field-list-wrap .acf-input-sub{max-width:100%;overflow:hidden;border-radius:8px;border-width:1px;border-style:solid;border-color:#dbdfe5;box-shadow:0px 1px 2px rgba(16,24,40,.1)}.post-type-acf-field-group #acf-field-group-fields .acf-field-list-wrap .acf-input-sub .acf-sub-field-list-header{display:flex;justify-content:space-between;align-content:stretch;align-items:center;min-height:64px;padding-right:24px;padding-left:24px}.post-type-acf-field-group #acf-field-group-fields .acf-field-list-wrap .acf-input-sub .acf-field-list-wrap{box-shadow:none}.post-type-acf-field-group #acf-field-group-fields .acf-field-list-wrap .acf-input-sub .acf-hl.acf-tfoot{min-height:64px;align-items:center}.post-type-acf-field-group #acf-field-group-fields .acf-field-list-wrap .acf-input-sub .acf-input.acf-input-sub{max-width:100%;margin-right:0;margin-left:0}.post-type-acf-field-group .acf-input-sub .acf-field-object .acf-sortable-handle{width:100%;height:100%}.post-type-acf-field-group .acf-field-object:hover .acf-input-sub .acf-sortable-handle:before{display:none}.post-type-acf-field-group .acf-field-object:hover .acf-input-sub .acf-field-list .acf-field-object:hover .acf-sortable-handle:before{display:block}.post-type-acf-field-group .acf-field-object .acf-is-subfields .acf-thead .li-field-label:before{display:none}.post-type-acf-field-group #acf-field-group-fields .acf-field-list-wrap .acf-input-sub .acf-field-object.open{border-top-color:#dbdfe5}.post-type-acf-field-group i.acf-icon.-duplicate.duplicate-layout{margin:0 auto !important;background-color:#667085;color:#667085}.post-type-acf-field-group i.acf-icon.acf-icon-trash.delete-layout{margin:0 auto !important;background-color:#667085;color:#667085}.post-type-acf-field-group button.acf-btn.acf-btn-tertiary.acf-field-setting-fc-duplicate,.post-type-acf-field-group button.acf-btn.acf-btn-tertiary.acf-field-setting-fc-delete{background-color:#fff !important;box-shadow:0px 1px 2px rgba(16,24,40,.1);border-radius:6px;width:32px;height:32px !important;min-height:32px;padding:0}.post-type-acf-field-group button.add-layout.acf-btn.acf-btn-primary.add-field,.post-type-acf-field-group .acf-sub-field-list-header a.acf-btn.acf-btn-secondary.add-field,.post-type-acf-field-group .acf-field-list-wrap.acf-is-subfields a.acf-btn.acf-btn-secondary.add-field{height:32px !important;min-height:32px;margin-left:5px}.post-type-acf-field-group .acf-field.acf-field-setting-fc_layout{background-color:#fff;margin-bottom:16px}.post-type-acf-field-group .acf-field-setting-fc_layout{overflow:hidden;width:calc(100% - 144px);margin-right:72px;margin-left:72px;padding-right:0;padding-left:0;border-width:1px;border-style:solid;border-color:#dbdfe5;border-radius:8px;box-shadow:0px 1px 2px rgba(16,24,40,.1)}.post-type-acf-field-group .acf-field-setting-fc_layout .acf-field-layout-settings.open{background-color:#fff;border-top-width:1px;border-top-style:solid;border-top-color:#eaecf0}@media screen and (max-width: 768px){.post-type-acf-field-group .acf-field-setting-fc_layout{width:calc(100% - 16px);margin-right:8px;margin-left:8px}}.post-type-acf-field-group .acf-field-setting-fc_layout .acf-input-sub{max-width:100%;margin-right:0;margin-left:0}.post-type-acf-field-group .acf-field-setting-fc_layout .acf-label,.post-type-acf-field-group .acf-field-setting-fc_layout .acf-input{max-width:100% !important}.post-type-acf-field-group .acf-field-setting-fc_layout .acf-input-sub{margin-right:32px;margin-bottom:32px;margin-left:32px}.post-type-acf-field-group .acf-field-setting-fc_layout .acf-fc-meta{max-width:100%;padding-top:24px;padding-right:32px;padding-left:32px}.post-type-acf-field-group .acf-field-settings-fc_head{display:flex;align-items:center;justify-content:left;background-color:#f9fafb;border-radius:8px 8px 0px 0px;min-height:64px;margin-bottom:0px;padding-right:24px}.post-type-acf-field-group .acf-field-settings-fc_head .acf-fc_draggable{min-height:64px;padding-left:24px;display:flex;white-space:nowrap}.post-type-acf-field-group .acf-field-settings-fc_head .acf-fc-layout-name{min-width:0;color:#98a2b3;padding-left:8px;font-size:16px}.post-type-acf-field-group .acf-field-settings-fc_head .acf-fc-layout-name.copyable:not(.input-copyable,.copy-unsupported):hover:after{width:14px !important;height:14px !important}@media screen and (max-width: 880px){.post-type-acf-field-group .acf-field-settings-fc_head .acf-fc-layout-name{display:none !important}}.post-type-acf-field-group .acf-field-settings-fc_head .acf-fc-layout-name span{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.post-type-acf-field-group .acf-field-settings-fc_head span.toggle-indicator{pointer-events:none;margin-top:7px}.post-type-acf-field-group .acf-field-settings-fc_head label{display:inline-flex;align-items:center}.post-type-acf-field-group .acf-field-settings-fc_head label.acf-fc-layout-name{margin-left:1rem}@media screen and (max-width: 880px){.post-type-acf-field-group .acf-field-settings-fc_head label.acf-fc-layout-name{display:none !important}}.post-type-acf-field-group .acf-field-settings-fc_head label.acf-fc-layout-name span.acf-fc-layout-name{text-overflow:ellipsis;overflow:hidden;height:22px;white-space:nowrap}.post-type-acf-field-group .acf-field-settings-fc_head label.acf-fc-layout-label:before{content:"";display:inline-block;width:20px;height:20px;margin-right:8px;background-color:#98a2b3;border:none;border-radius:0;-webkit-mask-size:contain;mask-size:contain;-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;-webkit-mask-position:center;mask-position:center}.rtl.post-type-acf-field-group .acf-field-settings-fc_head label.acf-fc-layout-label:before{padding-right:10px}.post-type-acf-field-group .acf-field-settings-fc_head .acf-fl-actions{display:flex;align-items:center;white-space:nowrap;margin-left:auto}.post-type-acf-field-group .acf-field-settings-fc_head .acf-fl-actions .acf-fc-add-layout{margin-left:10px}.post-type-acf-field-group .acf-field-settings-fc_head .acf-fl-actions .acf-fc-add-layout .add-field{margin-left:0px !important}.post-type-acf-field-group .acf-field-settings-fc_head .acf-fl-actions li{margin-right:4px}.post-type-acf-field-group .acf-field-settings-fc_head .acf-fl-actions li:last-of-type{margin-right:0}.post-type-acf-field-group .acf-field-object.open>.handle>.acf-tbody>.li-field-label::before{-webkit-mask-image:url("../../images/icons/icon-chevron-up.svg");mask-image:url("../../images/icons/icon-chevron-up.svg")}.post-type-acf-field-group #acf-field-group-fields .acf-field-list-wrap .acf-input-sub .acf-field-object .handle{background-color:rgba(0,0,0,0)}.post-type-acf-field-group #acf-field-group-fields .acf-field-list-wrap .acf-input-sub .acf-field-object .handle:hover{background-color:#f9f2fb}.post-type-acf-field-group #acf-field-group-fields .acf-field-list-wrap .acf-input-sub .acf-field-object.open .handle{background-color:#f5eaf9}.post-type-acf-field-group #acf-field-group-fields .acf-field-list-wrap .acf-input-sub .acf-field-object .settings{border-left-color:#bf7dd7}.post-type-acf-field-group #acf-field-group-fields .acf-field-list-wrap .acf-input-sub .acf-input-sub .acf-field-object .handle{background-color:rgba(0,0,0,0)}.post-type-acf-field-group #acf-field-group-fields .acf-field-list-wrap .acf-input-sub .acf-input-sub .acf-field-object .handle:hover{background-color:#ebf7f4}.post-type-acf-field-group #acf-field-group-fields .acf-field-list-wrap .acf-input-sub .acf-input-sub .acf-field-object.open .handle{background-color:#e3f4f0}.post-type-acf-field-group #acf-field-group-fields .acf-field-list-wrap .acf-input-sub .acf-input-sub .acf-field-object .settings{border-left-color:#7ccdb9}.post-type-acf-field-group #acf-field-group-fields .acf-field-list-wrap .acf-input-sub .acf-input-sub .acf-input-sub .acf-field-object .handle{background-color:rgba(0,0,0,0)}.post-type-acf-field-group #acf-field-group-fields .acf-field-list-wrap .acf-input-sub .acf-input-sub .acf-input-sub .acf-field-object .handle:hover{background-color:#fcf5f2}.post-type-acf-field-group #acf-field-group-fields .acf-field-list-wrap .acf-input-sub .acf-input-sub .acf-input-sub .acf-field-object.open .handle{background-color:#fbeee9}.post-type-acf-field-group #acf-field-group-fields .acf-field-list-wrap .acf-input-sub .acf-input-sub .acf-input-sub .acf-field-object .settings{border-left-color:#e29473}.post-type-acf-field-group #acf-field-group-fields .acf-field-list-wrap .acf-input-sub .acf-input-sub .acf-input-sub .acf-input-sub .acf-field-object .handle{background-color:rgba(0,0,0,0)}.post-type-acf-field-group #acf-field-group-fields .acf-field-list-wrap .acf-input-sub .acf-input-sub .acf-input-sub .acf-input-sub .acf-field-object .handle:hover{background-color:#fafbfb}.post-type-acf-field-group #acf-field-group-fields .acf-field-list-wrap .acf-input-sub .acf-input-sub .acf-input-sub .acf-input-sub .acf-field-object.open .handle{background-color:#f4f6f7}.post-type-acf-field-group #acf-field-group-fields .acf-field-list-wrap .acf-input-sub .acf-input-sub .acf-input-sub .acf-input-sub .acf-field-object .settings{border-left-color:#a3b1b9} diff --git a/assets/build/css/acf-global.css b/assets/build/css/acf-global.css index c45c768..f40a227 100644 --- a/assets/build/css/acf-global.css +++ b/assets/build/css/acf-global.css @@ -1934,7 +1934,7 @@ html[dir=rtl] .acf-table > tbody > tr > td.order + td { margin-bottom: 16px !important; margin-left: 0 !important; padding-top: 13px !important; - padding-right: 16px !important; + padding-right: 16px; padding-bottom: 12px !important; padding-left: 50px !important; background-color: #e7eff9; diff --git a/assets/build/css/acf-global.css.map b/assets/build/css/acf-global.css.map index d3baf56..26f52a8 100644 --- a/assets/build/css/acf-global.css.map +++ b/assets/build/css/acf-global.css.map @@ -1 +1 @@ -{"version":3,"file":"acf-global.css","mappings":";;;AAAA,gBAAgB;ACAhB;;;;8FAAA;AAMA;AAOA;AAQA;AAgBA;;;;8FAAA;ACrCA;;;;8FAAA;ACCA;;;;8FAAA;AAMA;AACA;EACC;EACA;EACA;EACA;EACA;AHkBD;;AGhBA;EACC;EACA;EACA;EACA;AHmBD;;AGjBA;EACC;AHoBD;;AGjBA;AACA;;;;;;EAMC;EACA;EACA;AHoBD;;AGlBA;;;EAGC;AHqBD;;AGlBA;AACA;EACC;EACA;EACA;EACA;EACA;AHqBD;;AGnBA;EACC;EACA;EACA;EACA;AHsBD;;AGnBA;AACA;EACC;AHsBD;;AGpBA;EACC;AHuBD;AGtBC;EACC;AHwBF;;AGpBA;AACA;EACC;AHuBD;;AGrBA;EACC;AHwBD;;AGtBA;EACC;AHyBD;;AGtBA;AACA;EACC;AHyBD;;AGvBA;EACC;AH0BD;;AGxBA;EACC;AH2BD;;AGxBA;AACA;;EAEC;EACA;EACA;EACA;EACA;AH2BD;;AGxBA;AACA;EACC;AH2BD;;AGxBA;EACC;AH2BD;;AGxBA;AACA;EACC;AH2BD;;AGxBA;AACA;EACC;AH2BD;;AGxBA;AACA;;EAEC;AH2BD;;AGxBA;AACA;EACC;EACA;EACA;EACA;EAEA;EACA;AH0BD;;AGvBA;EACC;EACA;EACA;EACA;EAEA;EACA;AHyBD;;AGtBA;AACA;EACC;AHyBD;;AGvBA;EACC;AH0BD;;AGvBA;EACC;AH0BD;;AGxBA;EACC;AH2BD;;AGxBA;AACA;EACC;EACA;EACA;EACA;AH2BD;;AGxBA;;;;+FAAA;AAMA;AACA;EACC,mBF7HU;EE8HV,kBF/FW;EEgGX,cFpIU;EEsIT;EACA;EACA;EACA;EAED;EAEA;EACA;EACA;EAGA;EASA;AHaD;AGrBC;EACC;EACA;EACA;EACA;EACA;AHuBF;AGnBC;EACC;AHqBF;AGnBE;EACC;EACA;EACA;EACA;EACA;AHqBH;AGjBC;EACC;AHmBF;AGjBE;EACC;EACA;EACA;EACA;EACA;AHmBH;AGfC;EACC;AHiBF;AGfE;EACC;EACA;EACA;EACA;EACA;AHiBH;AGbC;EACC;AHeF;AGbE;EACC;EACA;EACA;EACA;EACA;AHeH;AGXC;EACC;AHaF;;AGTA;AACA;EACC;AHYD;AGVC;EACC;EACA;AHYF;AGVE;EACC;AHYH;AGTE;EACC;AHWH;;AGNA;EACC;EACA;EACA;EACA;EACA;EACA;AHSD;;AGNA;EACC;EACA;AHSD;;AGNA;;;;+FAAA;AAKA;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;AHSD;AGPC;ED3RA;EACA;EACA;EACA;AFqSD;;AGRA;;;;8FAAA;AAKA;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;AHWD;AGTC;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;AHWF;;AGNA;EACC;AHSD;;AGPA;EACC;AHUD;;AGRA;EACC;EACA;AHWD;;AGTA;EACC;AHYD;;AGVA;EACC;AHaD;;AGXA;EACC;EAGA;AHYD;;AGVA;EACC;EAGA;AHWD;;AGTA;EACC;EAGA;AHUD;;AGRA;EACC;EAGA;AHSD;;AGPA;EACC;AHUD;;AGRA;EACC;EAGA;EACA;AHSD;;AGPA;EACC;AHUD;;AGRA;EACC;EAGA;AHSD;;AGPA;EACC;EAGA;AHQD;;AGNA;EACC;AHSD;;AGPA;EACC;EAGA;AHQD;;AGNA;EACC;EAGA;AHOD;;AGLA;EACC;AHQD;;AGNA;EACC;AHSD;;AGLA;EACC;AHQD;AGPC;EAEC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;AHQF;AGNC;EACC;EACA;AHQF;AGNC;EACC;AHQF;;AGJA;EACC;AHOD;AGNC;EAEC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;AHOF;AGLC;EACC;EACA;AHOF;AGLC;EACC;AHOF;;AGFA;EACC;EAGA;AHGD;;AGDA;EACC;EAGA;AHED;;AGEA;EACC;EACA;EACA;AHCD;;AGGA;EACC;EACA;EACA;EACA;EACA;EACA;AHAD;AGGC;EACC;EACA;EACA;AHDF;AGGC;EAEC;EACA;EACA;AHFF;AGMC;EAEC;EACA;AHLF;;AGUA;EACC;EACA;EACA;AHPD;;AGWA;EACC;EACA;EACA;AHRD;;AGYA;EACC;EACA;EACA;AHTD;;AGYC;EACC;EACA;AHTF;AGWC;EAEC;AHVF;;AGeA;EACC;EACA;EACA;AHZD;AGcC;EACC;EACA;AHZF;AGcC;EAEC;AHbF;;AGkBA;;EAEC;EACA;EACA;EACA;AHfD;AGoBE;;;EAGC;AHlBH;;AGuBA;;;;8FAAA;AAKA;EACC;EACA;EACA;EACA;EAEA;EA8CA;AHlED;AGqBC;EACC;EACA;EACA;AHnBF;AGqBE;EACC;EACA;EACA;EACA;EACA;EACA;AHnBH;AGuBC;EACC;AHrBF;AGwBC;EACC;EACA;EACA;EACA;EACA;AHtBF;AGyBC;EACC;AHvBF;AG0BC;EACC;AHxBF;AG2BC;EACC;AHzBF;AG6BE;EACC;AH3BH;AGgCC;EACC;EACA;EACA;EACA;AH9BF;AGgCE;EACC;AH9BH;AE7kBC;ECinBC,qBF1nBiB;ADylBnB;AGkCE;;EAEC,qBF7nBgB;AD6lBnB;;AGqCA;;;;8FAAA;AAMA;EACC;EACA;EACA;EACA;EACA;EACA,mBFtqBY;EEuqBZ;AHnCD;AGqCC;EACC;EACA;EACA;EACA;EACA;AHnCF;AGsCC;EACC;EACA;EACA;EACA;EACA;EACA;EACA;AHpCF;AGqCE;EACC;AHnCH;AGwCC;EACC;AHtCF;AG0CC;EACC,mBFpsBU;EEqsBV;AHxCF;AG4CC;EACC,mBFzsBY;EE0sBZ;AH1CF;AG8CC;EACC,mBF9sBY;EE+sBZ;AH5CF;;AGgDA;;;;8FAAA;AAMA;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EAEA;EAmBA;EAcA;EAoBA;AHjGD;AG+CE;;;;EAEC;EACA;EACA;EACA;EACA;EACA;AH3CH;AG8CE;;EACC;EACA;AH3CH;AGkDG;EACC,qBF5uBe;EE6uBf;AHhDJ;AGkDI;EACC;AHhDL;AGwDE;EACC;AHtDH;AGwDG;EACC,qBF3vBe;EE4vBf;AHtDJ;AGwDI;EACC;AHtDL;AG0DG;EACC;AHxDJ;AG8DC;EACC;AH5DF;AGgEG;;;;EAEC;EACA;AH5DJ;;AGkEA;AACA;EACC;EACA;EACA;EACA;EAEA;EACA;AHhED;;AGmEA;AACA;EACC;EACA;EACA;EACA;EAEA;EACA;AHjED;;AGoEA;;;;+FAAA;AAMA;;;EAGC;EACA;EACA;AHlED;AGoEC;;;EACC;EAEC;EAED;EACA;AHlEF;;AGsEA;EACC;EACA;AHnED;AGqEC;EACC;EACA;EACA;AHnEF;AE5vBC;ECo0BC,qBF50BmB;ADuwBrB;;AGyEA;EACC;EACA;AHtED;;AGyEA;;;;8FAAA;AAOC;EACC;AHxEF;AG2EC;EACC;AHzEF;AG4EC;EACC;AH1EF;AG4EE;EACC;AH1EH;;AG+EA;;;;8FAAA;AAMA;EACC;EACA;EACA;EACA;EACA;EACA;EACA;AH7ED;AGgFC;EACC;EACA;EACA;EACA;EACA;EACA;EACA;AH9EF;AGiFC;EACC;EACA;EACA;EACA;AH/EF;AGmFC;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;AHjFF;AEr0BC;EACC;AFu0BF;AGkFE;EACC;EACA;AHhFH;AGmFG;EACC;EACA;EACA;AHjFJ;AGoFI;EACC;EACA;AHlFL;AGuFE;EACC;EAGA;EACA;AHvFH;AG2FE;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;AHzFH;AG2FG;ED78BF;EACA;EACA;EACA;AFq3BD;;AG6FA;EACC;EACA;AH1FD;AG6FC;EACC;EACA;AH3FF;AG6FE;EACC;AH3FH;AGgGC;EACC;AH9FF;;AGkGA;;;;8FAAA;AAMA;EACC;EACA;EACA;AHhGD;AEh6BC;EACC;EACA;EACA;AFk6BF;AG8FC;EACC;EACA;EACA;AH5FF;AG+FC;EACC;EACA;EACA;EACA;AH7FF;AGgGC;EACC;EACA;AH9FF;AGiGC;EACC;EACA;EACA;EACA;AH/FF;AGkGC;EACC;EACA;EACA;AHhGF;AGmGC;EACC;EACA;AHjGF;AGoGC;EACC;AHlGF;AGsGC;EACC;;IAEC;IACA;IACA;IACA;EHpGD;AACF;;AGyGA;;EAEC;AHtGD;;AG0GA;EACC;AHvGD;;AG0GA;;;;8FAAA;AAOC;EACC;EACA;AHzGF;AG4GC;EACC;EACA;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LC;EACC;EACA;EACA;EACA;EAEA;EACA;EACA;EAEA;EACA;AHxLF;AG6LE;EAEC;AH5LH;;AGmMC;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;AHhMF;AGkME;EACC;EACA;AHhMH;AGmME;;EAEC;EACA;AHjMH;AGqMC;EACC;EACA;EACA;EACA;EACA;EACA;AHnMF;AGsMC;EACC;AHpMF;AGsME;EACC;AHpMH;AGuME;;EAEC;EACA;AHrMH;AGyME;EACC;AHvMH;AG0ME;EACC;AHxMH;AG6MC;EACC;IACC;EH3MD;EG6MA;IACC;EH3MD;AACF;;AG+MA;;;;+FAAA;AAKA;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;AH5MD;AG8MC;;;EAGC;EACA;EACA;EACA;AH5MF;AG+MC;EACC;EACA;EACA;AH7MF;AG+ME;EACC;EACA;EACA;AH7MH;AG+ME;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;AH7MH;AG8MG;EACC;AH5MJ;AGiNC;EACC;EACA;EACA;EACA;EACA;AH/MF;AGkNC;EACC;EACA;EACA;EACA;EACA;EACA;EACA;AHhNF;AGkNE;EACC;EACA;AHhNH;AGoNC;EACC;EACA;EACA;EACA;AHlNF;AGoNE;EACC;AHlNH;AGuNC;EAjFD;IAkFE;IACA;IACA;IACA;EHpNA;AACF;;AGsNA;EACC;EACA;EACA;EACA;EACA;EACA,mBFxvDU;EEyvDV;EACA;AHnND;;AGsNA;;;;+FAAA;AAMA;EAMC;;IAEC;IACA;EHzNA;AACF;AG4NA;;;;8FAAA;AAOC;EAEE;EACA;EACA;EACA;AH7NH;AGgOE;EARD;IAUG;IACA;EH9NF;AACF;AGkOC;EAEE;EACA;AHjOH;AGoOE;EAND;IAQG;IACA;EHlOF;AACF;AGuOE;EADD;IAGG;EHrOF;AACF;;AG0OA;;;;oEAAA;AAMC;EACC;AHxOF;;AG4OA;;;;+FAAA;AAMC;;EAEC;EACA,kBFnzDU;EEozDV,6CFhzDa;ADskDf;AG4OE;;EAEE;EACA;EACA;EACA;AH1OJ;AG8OE;;EAEE;EACA;EACA;EA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;;;iGAAA;EAsBA;EAgUA;;;;iGAAA;ALwnDD;AKviFC;;;;;EAKC;EACA;EAEC;EACA;EAED;EACA,qBJ4BS;EI3BT,6CJoEa;EInEb,kBJ8DU;EI5DV,cJ4BS;AD0gFX;AKpiFE;;;;;EACC,0BJiEO;EIhEP,qBJiCQ;ADygFX;AKviFE;;;;;EACC,yBJaQ;EIZR;AL6iFH;AK1iFE;;;;;EACC,cJYQ;ADoiFX;AKpiFE;EACC,yBJLQ;EIMR,cJFQ;ADwiFX;AK1hFE;;EAEC;AL4hFH;AKlhFC;EACC;EAEC;EACA;EAED;EACA;ALkhFF;AK1gFC;EACC;EACA;EAEC;EACA;EAED;EACA;EACA;AL0gFF;AKvgFE;EAEC,cJ1CQ;ADkjFX;AKrgFE;EACC;EACA;EACA;EACA;EACA;EACA;EACA;ALugFH;AKjgFE;EAEE;EACA;EAED;ALigFH;AKx/EC;;EAEC;EACA;EACA;EACA;EAEC;EACA;EACA,qBJ9FQ;EIgGT;EACA;ALw/EF;AKt/EE;;EACC,yBJ5FQ;EI6FR,qBJxFQ;ADilFX;AKt/EE;;;EAEC,yBJlGQ;EImGR,qBJ9FQ;ADulFX;AKv/EG;;;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;AL2/EJ;AKt/EE;;EACC;ALy/EH;AKt/EE;;EACC,yBJvIQ;EIwIR,qBJrIQ;AD8nFX;AK/+EI;;;EACC;ALm/EL;AKl+EG;EACC;ALo+EJ;AKn9EG;EACC;ALq9EJ;AKt8EE;;;;EAGE;ALy8EJ;AKr8EE;;EAEE;ALu8EJ;AKp8EG;;EAEE;ALs8EL;AK/7EE;;EACC;EACA;EACA;ALk8EH;AKx7EC;EACC;EACA;EACA;EACA,yBJzOS;EI0OT;AL07EF;AKx7EE;EACC,yBJ5OQ;ADsqFX;AKv7EE;EACC;ALy7EH;AKt7EE;EACC,yBJvOQ;AD+pFX;AKt7EG;EACC,yBJzOO;ADiqFX;AKr7EG;EACC;ALu7EJ;AKl7EE;;EAEC;ALo7EH;AKj7EE;EACC;EACA;EACA;EACA;EACA;ALm7EH;AK96EC;EACC;EACA;ALg7EF;AK96EE;EACC;EACA;EACA;EAEC;EACA;EACA;AL+6EJ;AK56EG;EAEE;AL66EL;AKz6EG;EAEE;AL06EL;AKt6EG;EACC;EAEC;EACA;ALu6EL;AK75EG;EAEE;EACA;AL85EL;AK15EG;EAEE;EACA;AL25EL;AK/4EC;EACC;EACA;EAEC;EAGA;EACA;EACA;EACA;EAED;EACA;EACA,kBJxTU;EI0TT;EACA;EACA,qBJlVQ;EIoVT;AL24EF;AKz4EE;EACC,qBJtVQ;EIuVR;EACA;AL24EH;AKh4EC;EACC;EACA;EACA;EAEC;EACA;EAED;EACA;EACA;EACA,qBJ/WS;EIgXT,kBJ1VU;EI4VV,cJlXS;ADivFX;AK73EE;EACC;EACA,qBJtXQ;EIuXR,cJvXQ;ADsvFX;AK73EE;EACC;EACA,0BJ7VO;EI8VP,cJ5XQ;AD2vFX;AKr3EC;EACC;ALu3EF;AK72EE;EACC;EACA;AL+2EH;AK52EE;EACC;EAEC;EACA;EAED;EAEC;EACA;EACA,qBJ9aO;EIgbR,6CJvYY;EIwYZ,kBJ7YS;EI+YT,cJ/aQ;ADwxFX;AKt2EE;EACC,0BJ3YO;EI4YP,qBJ3aQ;EI4aR,kBJrZS;AD6vFZ;AKt2EG;EACC;ALw2EJ;AKn2EI;EACC;EACA;ALq2EL;AK91EI;EACC;EACA;ALg2EL;AKz1EE;EACC;EAEC;AL01EJ;AKv1EG;EACC;EACA;ALy1EJ;AKp1EE;EAEE;EACA;EACA;EACA;ALq1EJ;AKj1EE;EACC;EACA;EAEC;EACA;EAED;EACA;EACA;EACA;ALi1EH;AK/0EG;EACC;EAEA;EACA,WAFY;EAGZ,YAHY;EAIZ;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA,yBJtgBO;ADs1FX;AK70EG;EACC,yBJ7fO;AD40FX;AKn0EC;EACC;EACA;EACA;ALq0EF;AKn0EE;EAEC,WADY;EAEZ,YAFY;EAGZ,yBJ/hBQ;ADm2FX;AKj0EE;EAEE;ALk0EJ;AK9zEE;EAEE;AL+zEJ;AKpzEC;EACC;EACA;EACA;EACA;ALszEF;AKpzEW;EACR;EACA;ALszEH;;AKnzEE;EACC;EACA;ALszEH;AKryEE;;;;;;;;;;;EACC;ALizEH;AK7yEG;;;;;;;;;;;EACC;EACA;EACA;EACA;EACA;EAEC;EACA;EACA;EACA;ALwzEL;AKrzEG;;;;;;;;;;;EACC;EACA;EACA;EAEC;ALg0EL;AK7zEI;;;;;;;;;;;EACC;EACA;ALy0EL;AKn0EE;;;;;;;;;;;EACC;EACA;AL+0EH;AK50EE;;;;;;;;;;;EACC;EACA;ALw1EH;AKr1EE;;;;;;;;;;;EACC;EACA;EACA;EACA;ALi2EH;AK71EE;;;;;;;;;;;EACC;ALy2EH;AKv2EY;EACR;ALy2EJ;;AKp2EE;;;;;;;;;;;EACC;EACA;EACA;EACA;EACA;ALi3EH;AK/2EG;;;;;;;;;;;EACC;EAEA;EACA;EACA;EACA;EACA;EACA,WANY;EAOZ,YAPY;EAQZ;EACA;EACA,yBJlqBO;EImqBP;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;AL03EJ;AKv3EG;;;;;;;;;;;EACC;ALm4EJ;AK13EG;;;;;;;;;;;EACC;EACA;ALs4EJ;AK/3EC;EACC;EACA;EACA;EACA;EACA;ALi4EF;AKh4EE;EACC;EACA;EACA;EACA;EACA;ALk4EH;AK/3EW;EAER;ALg4EH;;AK53EE;EACC;AL+3EH;AK73EY;EACR;AL+3EJ;;AK13EE;EACC;EACA;EACA;AL63EH;AK13EI;EACC;EAEA;EACA;EACA;EACA;EACA,WALY;EAMZ,YANY;EAOZ;EACA;EACA,yBJlvBM;EImvBN;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;AL23EL;AKz3Ec;EACR;EACA;AL23EN;;AKt3EG;EACC;EAEA;EACA;EACA;EACA;ALw3EJ;AKt3Ea;EACR;EACA;ALw3EL;;AKr3EI;EACC,yBJrxBM;EIsxBN;ALw3EL;AKl3EE;EACC;ALo3EH;AKh3EG;EACC;EACA;ALk3EJ;AK72EE;EACC;EACA;EACA;EACA;EAEC;EACA;EACA;EACA;EAED;AL62EH;AK32EG;EACC;EACA;EACA;EAEC;EAED;AL22EJ;AKz2EI;EACC;EACA;AL22EL;AKp2EE;EACC;EACA;ALs2EH;AKp2EG;EACC;EAEA;EACA;EACA,WAHY;EAIZ,YAJY;EAKZ;EACA;EACA,yBJt0BO;EIu0BP;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;ALq2EJ;AKn2Ea;EACR;EACA;ALq2EL;;AKh2EE;EACC;EACA;EACA;EACA;EACA,yBJh3BQ;EIk3BP;EACA;EACA,yBJl3BO;EIq3BP;EACA;EACA,4BJv3BO;EIy3BR,cJv3BQ;EIw3BR;EAEC;EAGA;EACA;EACA;EACA;EAED;AL21EH;AK50EG;;;EACA;EACA;ALg1EH;;AKt0EC;;EACC;EACA;AL00EF;;AMzxGA;;;;+FAAA;AAQC;EACC;ANyxGF;AMrxGC;EACC;ANuxGF;AMnxGC;EAEE;EACA;EACA;EACA;EAED,kBL2DU;EK1DV;EACA;EACA,6CL4Da;ADutGf;AMjxGE;EACC,cLiBQ;EKhBR;ANmxGH;AMhxGE;EACC;EACA;ANkxGH;AM/wGE;;EAEC,cLSQ;ADwwGX;AM/wGG;;EACC;ANkxGJ;AM/wGG;;EAEE;EACA;EACA;ANixGL;AM9wGI;EAPD;;IAQE;IAEC;IACA;ENixGJ;AACF;AM5wGG;;EACC;EACA;AN+wGJ;AM5wGG;;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA,mBLjCO;EKkCP;EACA;EACA;EACA,cLjCO;ADgzGX;AM5wGG;;EACC,cLxCO;ADuzGX;AM1wGE;;EAEC;EAEC;EACA;EAED;EACA,yBLxDQ;EKyDR,qBLvDQ;EKyDR;ANywGH;AMvwGG;EAbD;;IAeG;IACA;EN0wGH;AACF;AMtwGI;EADD;;IAEE;EN0wGH;AACF;AMpwGE;;EAEC;EACA;EAEC;EACA;EACA;EACA;EAED;EACA;EAEC;EACA,4BLzFO;EK0FP;ANmwGJ;AM/vGG;EAnBD;;IAqBG;IACA;ENkwGH;AACF;AM7vGE;EACC;AN+vGH;AM3vGE;EACC;EACA;EACA;EACA;EACA;EAEC;EAED,cLnHQ;AD82GX;AMvvGE;EACC;EACA;EACA;EACA;EAEC;EAED;EACA,cLhIQ;ADu3GX;AMpvGE;EAEC,cLpIQ;ADy3GX;AMjvGE;;EAEC;ANmvGH;AMjvGG;;EAEE;ANmvGL;AM5uGE;EACC;IAAoB;EN+uGrB;AACF;AM5uGG;EACC;EACA;EACA;EACA;AN8uGJ;AMvuGG;EAEE;EACA;ANwuGL;AMpuGG;EAEE;EACA;ANquGL;AM9tGC;EAEE;EAGA;EACA;EACA;EACA;EAGD;EACA,cLpMS;AD+5GX;AMztGE;EACC,cL7OS;ADw8GZ;AMptGC;;EAGE;ANqtGH;;AM/sGA;;;;8FAAA;AAUE;EACC;AN6sGH;AM1sGE;EACC;AN4sGH;AM3sGG;EAAU;AN8sGb;AM3sGE;EAEE;EAED;AN2sGH;;AMnsGA;;;;8FAAA;AAOC;;EAEC;ANosGF;;AM/rGA;;;;+FAAA;AAOC;EAEE;EACA;EACA;EACA;EAGA;EACA;EACA;EACA;EAED,cLtRS;ADk9GX;;AMvrGA;;;;8FAAA;AAKA;EAEE;EACA;EACA;EACA;ANyrGF;AMtrGC;EACC;EAEC;EACA;EACA;EACA;ANurGH;AMnrGC;EAlBD;IAmBE;IACA;IACA;IACA;IACA;ENsrGA;EMprGA;IACC;ENsrGD;AACF;;AM/qGC;EAEE;EACA;ANirGH;AM7qGC;EARD;IASE;IACA;IACA;IACA;ENgrGA;AACF;;AM7qGA;;;;8FAAA;AAKA;EACC;EACA;EACA;EAEC;AN+qGF;AM5qGC;EAEE;EACA;EAED,cLpWS;ADghHX;AMzqGE;EACC,cLvWQ;ADkhHX;;AMpqGA;;;;8FAAA;AAOC;EACC;EACA;ANqqGF;AMnqGE;EACC;ANqqGH;AMlqGE;EAEE;EACA;EACA;EACA;ANmqGJ;AM/pGE;EACC;EACA;ANiqGH;AM/pGG;EAEE;EACA;EACA;EACA;ANgqGL;AM7pGI;EAEE;AN8pGN;AMrpGE;EACC;ANupGH;;AMhpGA;;;;8FAAA;AAKA;EACC;EACA;EACA;EACA;EACA;EAEC;EACA;EACA;EACA;EAGA;EACA;EACA;EACA;EAED;AN+oGD;AM5oGC;EAIC;EACA;EACA;EACA;EACA;EAEC;AN0oGH;AMtoGE;EAEC;EACA;EACA;EACA;EACA;EACA;EACA;EAEA,yBL3cQ;EK4cR;EACA,uBAXY;EAYZ,eAZY;EAaZ;EACA;EACA;EACA;ANsoGH;AMhoGC;EACC;EACA;ANkoGF;AM9nGC;EACC;EACA;ANgoGF;AM5nGC;EACC;EACA;AN8nGF;AM1nGC;EACC;EACA;AN4nGF;AMxnGC;EACC,qBLhfS;EKifT;AN0nGF;AMxnGE;EACC,yBLpfQ;AD8mHX;AMpnGC;EACC;ANsnGF;AMpnGE;EACC,yBL7gBQ;ADmoHX;;AM/mGA;;;;+FAAA;AAKA;;;;;EAKC;EACA;EAEC;EACA;ANinGF;AM9mGC;;;;;;;;;;;;;;;;;;;;;;;;;EAKC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;ANooGF;AMloGE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAGC;AN4sGH;AMzsGE;;;;;;;;;;;;;;;;;;;;;;;;;EAGE;EACA;EAED;EACA,cL5jBQ;EK6jBR;ANguGH;AM7tGE;;;;;;;;;;;;;;;;;;;;;;;;;EAGE;EACA;EAED;EACA,cLzkBQ;AD6zHX;AMlvGG;;;;;;;;;;;;;;;;;;;;;;;;;EACC;EACA;EAEC;AN2wGL;AMnwGE;;;;;;;;;;;;;;;;;;;;;;;;;EACC;EAEC;AN4xGJ;AMxxGE;;;;;;;;;;;;;;;;;;;;;;;;;EAEE;ANizGJ;AMzyGE;;;;;;;;;;EACC;EACA;ANozGH;AM/yGE;;;;;EACC;EACA;ANqzGH;;AM1yGC;;;;;;;;;;;;;;;;;;;;;;EAIC;AN+zGF;AM1zGE;;;;;;;;EAEC;ANk0GH;AM/zGE;;;;EACC;EACA;ANo0GH;;AM7zGA;EACC;ANg0GD;;AM5zGA;;;;+FAAA;AAMC;EAEE;AN6zGH;AMzzGC;EACC;EACA;EACA;EACA;AN2zGF;AMxzGC;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA,oELtpBa;EKupBb;EACA;EACA;EACA;EACA,kBLvpBU;EKwpBV;AN0zGF;AMxzGE;EACC;AN0zGH;AMvzGE;EACC;EACA;EACA;ANyzGH;AMtzGE;EACC;EAEC;EACA;EAGD;EACA;EACA;ANqzGH;AMlzGE;EAEC,WADY;EAEZ,YAFY;EAIX;EACA;EAED,yBL/tBQ;ADghIX;AM7yGC;EACC;EACA;AN+yGF;AM5yGC;EACC;AN8yGF;AM1yGE;EACC;AN4yGH;;AMtyGA;;;;+FAAA;AAOC;EACC;EACA;EACA;EAEA;EACA;EACA;EACA;EACA;EAEA,yBLrvBS;EKsvBT;EACA,uBATY;EAUZ,eAVY;EAWZ;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;ANqyGF;AMlyGC;EACC;EACA;ANoyGF;;AM/xGA;;;;+FAAA;AAOC;EAEC;;;IAGC;EN+xGD;AACF;;AOpnIA;;;;+FAAA;AAKA;EACC;EACA;EACA;EACA;EACA,mBNyCU;EMxCV,cNqCU;ADklIX;AOrnIC;EACC;EACA;EACA;EACA;EACA;APunIF;AOrnIE;EACC;EACA;APunIH;AOrnIG;EACC;;IAEC;EPunIH;EOnnIG;;IAEC;EPqnIJ;AACF;AO/mIE;EACC;EACA;APinIH;AO9mIE;EACC;EACA;APgnIH;AO9mIG;EAJD;IAKE;EPinIF;AACF;AO7mIC;EAlDD;IAmDE;EPgnIA;AACF;AO9mIC;EACC;EAEC;EAED;AP8mIF;AO5mIE;EAEE;AP6mIJ;AOzmIE;EACC;EACA;EACA;AP2mIH;AOvmIC;EACC;EACA,cNrCS;AD8oIX;AOtmIC;EACC;EACA;EACA;EACA;EAEC;EAGA;EACA;EACA;EACA;EAGA;EACA;EACA;EAED,kBNpBU;EMsBV,cNzDS;EM0DT;APimIF;AO/lIE;EACC,yBN3DQ;EM4DR;APimIH;AO/lIE;EACC,yBN/DQ;EMgER,cNtEQ;ADuqIX;AO/lIE;EAEE;EACA;EACA,qBNvEO;ADuqIX;AO7lIE;EACC;AP+lIH;AOzlIG;EACC,yBNjFO;EMkFP,cNxFO;ADmrIX;AOvlIE;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EAEC;EACA;EACA;EACA;EAED;EACA,kBNnES;EMoET;APulIH;AOrlIG;EACC;EACA;EACA;EACA;EACA;EACA;APulIJ;AOrlII;EACC;EACA;EACA;EACA;APulIL;AOllIG;EACC;EACA;APolIJ;AOllII;;EAEC;APolIL;AOjlII;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;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;AdqsLF;AcnsLE;EAXD;;IAYE;EdusLD;AACF;AcrsLE;EAfD;;IAgBE;EdysLD;AACF;AcvsLE;;;;EAEC;EACA;Ad2sLH;AczsLG;;;;EACC;EACA;EACA;EACA;EACA;Ad8sLJ;AczsLE;;EACC;EACA;Ad4sLH;Ac1sLG;;EACC;EACA;Ad6sLJ;Ac1sLG;EATD;;IAUE;IACA;Ed8sLF;AACF;Ac1sLE;EAlDD;;IAmDE;IACA;IACA;IACA;IACA;IACA;IACA;Ed8sLD;Ec5sLC;;IACC;IACA;Ed+sLF;AACF;Ac5sLE;;EACC;EACA;EACA;Ad+sLH;Ac7sLG;;EACC;EACA;EACA;EACA;EACA,cbtIO;ADs1LX;Ac7sLG;EAbD;;IAcE;IACA;IAEC;IACA;EdgtLH;Ec7sLE;;;;IAEC;EditLH;AACF;Ac5sLE;;EACC;EACA;EACA;EACA;EACA;Ad+sLH;Ac7sLG;EAPD;;IAQE;IACA;IACA;EditLF;Ec/sLE;;IACC;IACA;IACA;EdktLH;AACF;Ac7sLE;;EACC;EACA;EACA;EACA;EACA;AdgtLH;Ac9sLG;;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;AditLJ;Ac/sLI;;EACC;EACA;EACA;EACA;AdktLL;AchtLK;;EACC;EACA;EACA;AdmtLN;AchtLK;EACC;;IAAY;IAAa;EdqtL7B;AACF;AcjtLI;;EACC;EACA;AdotLL;AcjtLI;;EACC;EACA;AdotLL;AcjtLI;;EACC;EACA;EACA;EACA;EACA;AdotLL;AchtLG;EAxDD;;IAyDE;IACA;IACA;EdotLF;EcltLE;;IACC;IACA;IACA;IACA;IACA;EdqtLH;EcltLG;;IACC;IACA;EdqtLJ;EcltLG;;IACC;EdqtLJ;AACF;AcjtLG;EAhFD;;IAiFE;IACA;IACA;IACA;IACA;IACA;EdqtLF;EcntLE;;IACC;IACA;IACA;IACA;IACA;IACA;IACA;IACA;EdstLH;EcptLG;;IACC;EdutLJ;EcptLG;;IACC;IACA;EdutLJ;EcrtLI;;IACC;IACA;Edwt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","sources":["webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/sass/acf-global.scss","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/sass/_variables.scss","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/sass/_mixins.scss","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/sass/_global.scss","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/sass/_typography.scss","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/sass/_admin-inputs.scss","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/sass/_list-table.scss","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/sass/_admin-toolbar.scss","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/sass/_acf-headerbar.scss","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/sass/_btn.scss","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/sass/_icons.scss","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/sass/_field-type-icons.scss","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/sass/_tools.scss","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/sass/_updates.scss","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/sass/_pro-upgrade.scss","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/sass/_post-types-taxonomies.scss","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/sass/_field-picker.scss"],"sourcesContent":["@charset \"UTF-8\";\n/*--------------------------------------------------------------------------------------------\n*\n*\tVars\n*\n*--------------------------------------------------------------------------------------------*/\n/* colors */\n/* acf-field */\n/* responsive */\n/*--------------------------------------------------------------------------------------------\n*\n*\tACF 6 ↓\n*\n*--------------------------------------------------------------------------------------------*/\n/*--------------------------------------------------------------------------------------------\n*\n* Mixins\n*\n*--------------------------------------------------------------------------------------------*/\n/*--------------------------------------------------------------------------------------------\n*\n* Global\n*\n*--------------------------------------------------------------------------------------------*/\n/* Horizontal List */\n.acf-hl {\n padding: 0;\n margin: 0;\n list-style: none;\n display: block;\n position: relative;\n}\n\n.acf-hl > li {\n float: left;\n display: block;\n margin: 0;\n padding: 0;\n}\n\n.acf-hl > li.acf-fr {\n float: right;\n}\n\n/* Horizontal List: Clearfix */\n.acf-hl:before,\n.acf-hl:after,\n.acf-bl:before,\n.acf-bl:after,\n.acf-cf:before,\n.acf-cf:after {\n content: \"\";\n display: block;\n line-height: 0;\n}\n\n.acf-hl:after,\n.acf-bl:after,\n.acf-cf:after {\n clear: both;\n}\n\n/* Block List */\n.acf-bl {\n padding: 0;\n margin: 0;\n list-style: none;\n display: block;\n position: relative;\n}\n\n.acf-bl > li {\n display: block;\n margin: 0;\n padding: 0;\n float: none;\n}\n\n/* Visibility */\n.acf-hidden {\n display: none !important;\n}\n\n.acf-empty {\n display: table-cell !important;\n}\n.acf-empty * {\n display: none !important;\n}\n\n/* Float */\n.acf-fl {\n float: left;\n}\n\n.acf-fr {\n float: right;\n}\n\n.acf-fn {\n float: none;\n}\n\n/* Align */\n.acf-al {\n text-align: left;\n}\n\n.acf-ar {\n text-align: right;\n}\n\n.acf-ac {\n text-align: center;\n}\n\n/* loading */\n.acf-loading,\n.acf-spinner {\n display: inline-block;\n height: 20px;\n width: 20px;\n vertical-align: text-top;\n background: transparent url(../../images/spinner.gif) no-repeat 50% 50%;\n}\n\n/* spinner */\n.acf-spinner {\n display: none;\n}\n\n.acf-spinner.is-active {\n display: inline-block;\n}\n\n/* WP < 4.2 */\n.spinner.is-active {\n display: inline-block;\n}\n\n/* required */\n.acf-required {\n color: #f00;\n}\n\n/* Allow pointer events in reusable blocks */\n.acf-button,\n.acf-tab-button {\n pointer-events: auto !important;\n}\n\n/* show on hover */\n.acf-soh .acf-soh-target {\n -webkit-transition: opacity 0.25s 0s ease-in-out, visibility 0s linear 0.25s;\n -moz-transition: opacity 0.25s 0s ease-in-out, visibility 0s linear 0.25s;\n -o-transition: opacity 0.25s 0s ease-in-out, visibility 0s linear 0.25s;\n transition: opacity 0.25s 0s ease-in-out, visibility 0s linear 0.25s;\n visibility: hidden;\n opacity: 0;\n}\n\n.acf-soh:hover .acf-soh-target {\n -webkit-transition-delay: 0s;\n -moz-transition-delay: 0s;\n -o-transition-delay: 0s;\n transition-delay: 0s;\n visibility: visible;\n opacity: 1;\n}\n\n/* show if value */\n.show-if-value {\n display: none;\n}\n\n.hide-if-value {\n display: block;\n}\n\n.has-value .show-if-value {\n display: block;\n}\n\n.has-value .hide-if-value {\n display: none;\n}\n\n/* select2 WP animation fix */\n.select2-search-choice-close {\n -webkit-transition: none;\n -moz-transition: none;\n -o-transition: none;\n transition: none;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* tooltip\n*\n*---------------------------------------------------------------------------------------------*/\n/* tooltip */\n.acf-tooltip {\n background: #1D2939;\n border-radius: 6px;\n color: #D0D5DD;\n padding-top: 8px;\n padding-right: 12px;\n padding-bottom: 10px;\n padding-left: 12px;\n position: absolute;\n z-index: 900000;\n max-width: 280px;\n box-shadow: 0px 12px 16px -4px rgba(16, 24, 40, 0.08), 0px 4px 6px -2px rgba(16, 24, 40, 0.03);\n /* tip */\n /* positions */\n}\n.acf-tooltip:before {\n border: solid;\n border-color: transparent;\n border-width: 6px;\n content: \"\";\n position: absolute;\n}\n.acf-tooltip.top {\n margin-top: -8px;\n}\n.acf-tooltip.top:before {\n top: 100%;\n left: 50%;\n margin-left: -6px;\n border-top-color: #2f353e;\n border-bottom-width: 0;\n}\n.acf-tooltip.right {\n margin-left: 8px;\n}\n.acf-tooltip.right:before {\n top: 50%;\n margin-top: -6px;\n right: 100%;\n border-right-color: #2f353e;\n border-left-width: 0;\n}\n.acf-tooltip.bottom {\n margin-top: 8px;\n}\n.acf-tooltip.bottom:before {\n bottom: 100%;\n left: 50%;\n margin-left: -6px;\n border-bottom-color: #2f353e;\n border-top-width: 0;\n}\n.acf-tooltip.left {\n margin-left: -8px;\n}\n.acf-tooltip.left:before {\n top: 50%;\n margin-top: -6px;\n left: 100%;\n border-left-color: #2f353e;\n border-right-width: 0;\n}\n.acf-tooltip .acf-overlay {\n z-index: -1;\n}\n\n/* confirm */\n.acf-tooltip.-confirm {\n z-index: 900001;\n}\n.acf-tooltip.-confirm a {\n text-decoration: none;\n color: #9ea3a8;\n}\n.acf-tooltip.-confirm a:hover {\n text-decoration: underline;\n}\n.acf-tooltip.-confirm a[data-event=confirm] {\n color: #f55e4f;\n}\n\n.acf-overlay {\n position: fixed;\n top: 0;\n bottom: 0;\n left: 0;\n right: 0;\n cursor: default;\n}\n\n.acf-tooltip-target {\n position: relative;\n z-index: 900002;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* loading\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-loading-overlay {\n position: absolute;\n top: 0;\n bottom: 0;\n left: 0;\n right: 0;\n cursor: default;\n z-index: 99;\n background: rgba(249, 249, 249, 0.5);\n}\n.acf-loading-overlay i {\n position: absolute;\n top: 50%;\n left: 50%;\n transform: translate(-50%, -50%);\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tacf-icon\n*\n*--------------------------------------------------------------------------------------------*/\n.acf-icon {\n display: inline-block;\n height: 28px;\n width: 28px;\n border: transparent solid 1px;\n border-radius: 100%;\n font-size: 20px;\n line-height: 21px;\n text-align: center;\n text-decoration: none;\n vertical-align: top;\n box-sizing: border-box;\n}\n.acf-icon:before {\n font-family: dashicons;\n display: inline-block;\n line-height: 1;\n font-weight: 400;\n font-style: normal;\n speak: none;\n text-decoration: inherit;\n text-transform: none;\n text-rendering: auto;\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n width: 1em;\n height: 1em;\n vertical-align: middle;\n text-align: center;\n}\n\n.acf-icon.-plus:before {\n content: \"\\f543\";\n}\n\n.acf-icon.-minus:before {\n content: \"\\f460\";\n}\n\n.acf-icon.-cancel:before {\n content: \"\\f335\";\n margin: -1px 0 0 -1px;\n}\n\n.acf-icon.-pencil:before {\n content: \"\\f464\";\n}\n\n.acf-icon.-location:before {\n content: \"\\f230\";\n}\n\n.acf-icon.-up:before {\n content: \"\\f343\";\n margin-top: -0.1em;\n}\n\n.acf-icon.-down:before {\n content: \"\\f347\";\n margin-top: 0.1em;\n}\n\n.acf-icon.-left:before {\n content: \"\\f341\";\n margin-left: -0.1em;\n}\n\n.acf-icon.-right:before {\n content: \"\\f345\";\n margin-left: 0.1em;\n}\n\n.acf-icon.-sync:before {\n content: \"\\f463\";\n}\n\n.acf-icon.-globe:before {\n content: \"\\f319\";\n margin-top: 0.1em;\n margin-left: 0.1em;\n}\n\n.acf-icon.-picture:before {\n content: \"\\f128\";\n}\n\n.acf-icon.-check:before {\n content: \"\\f147\";\n margin-left: -0.1em;\n}\n\n.acf-icon.-dot-3:before {\n content: \"\\f533\";\n margin-top: -0.1em;\n}\n\n.acf-icon.-arrow-combo:before {\n content: \"\\f156\";\n}\n\n.acf-icon.-arrow-up:before {\n content: \"\\f142\";\n margin-left: -0.1em;\n}\n\n.acf-icon.-arrow-down:before {\n content: \"\\f140\";\n margin-left: -0.1em;\n}\n\n.acf-icon.-search:before {\n content: \"\\f179\";\n}\n\n.acf-icon.-link-ext:before {\n content: \"\\f504\";\n}\n\n.acf-icon.-duplicate {\n position: relative;\n}\n.acf-icon.-duplicate:before, .acf-icon.-duplicate:after {\n content: \"\";\n display: block;\n box-sizing: border-box;\n width: 46%;\n height: 46%;\n position: absolute;\n top: 33%;\n left: 23%;\n}\n.acf-icon.-duplicate:before {\n margin: -1px 0 0 1px;\n box-shadow: 2px -2px 0px 0px currentColor;\n}\n.acf-icon.-duplicate:after {\n border: solid 2px currentColor;\n}\n\n.acf-icon.-trash {\n position: relative;\n}\n.acf-icon.-trash:before, .acf-icon.-trash:after {\n content: \"\";\n display: block;\n box-sizing: border-box;\n width: 46%;\n height: 46%;\n position: absolute;\n top: 33%;\n left: 23%;\n}\n.acf-icon.-trash:before {\n margin: -1px 0 0 1px;\n box-shadow: 2px -2px 0px 0px currentColor;\n}\n.acf-icon.-trash:after {\n border: solid 2px currentColor;\n}\n\n.acf-icon.-collapse:before {\n content: \"\\f142\";\n margin-left: -0.1em;\n}\n\n.-collapsed .acf-icon.-collapse:before {\n content: \"\\f140\";\n margin-left: -0.1em;\n}\n\nspan.acf-icon {\n color: #555d66;\n border-color: #b5bcc2;\n background-color: #fff;\n}\n\na.acf-icon {\n color: #555d66;\n border-color: #b5bcc2;\n background-color: #fff;\n position: relative;\n transition: none;\n cursor: pointer;\n}\na.acf-icon:hover {\n background: #f3f5f6;\n border-color: #0071a1;\n color: #0071a1;\n}\na.acf-icon.-minus:hover, a.acf-icon.-cancel:hover {\n background: #f7efef;\n border-color: #a10000;\n color: #dc3232;\n}\na.acf-icon:active, a.acf-icon:focus {\n outline: none;\n box-shadow: none;\n}\n\n.acf-icon.-clear {\n border-color: transparent;\n background: transparent;\n color: #444;\n}\n\n.acf-icon.light {\n border-color: transparent;\n background: #f5f5f5;\n color: #23282d;\n}\n\n.acf-icon.dark {\n border-color: transparent !important;\n background: #23282d;\n color: #eee;\n}\n\na.acf-icon.dark:hover {\n background: #191e23;\n color: #00b9eb;\n}\na.acf-icon.dark.-minus:hover, a.acf-icon.dark.-cancel:hover {\n color: #d54e21;\n}\n\n.acf-icon.grey {\n border-color: transparent !important;\n background: #b4b9be;\n color: #fff !important;\n}\n.acf-icon.grey:hover {\n background: #00a0d2;\n color: #fff;\n}\n.acf-icon.grey.-minus:hover, .acf-icon.grey.-cancel:hover {\n background: #32373c;\n}\n\n.acf-icon.small,\n.acf-icon.-small {\n width: 20px;\n height: 20px;\n line-height: 14px;\n font-size: 14px;\n}\n.acf-icon.small.-duplicate:before, .acf-icon.small.-duplicate:after,\n.acf-icon.-small.-duplicate:before,\n.acf-icon.-small.-duplicate:after {\n opacity: 0.8;\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tacf-box\n*\n*--------------------------------------------------------------------------------------------*/\n.acf-box {\n background: #ffffff;\n border: 1px solid #ccd0d4;\n position: relative;\n box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);\n /* title */\n /* footer */\n}\n.acf-box .title {\n border-bottom: 1px solid #ccd0d4;\n margin: 0;\n padding: 15px;\n}\n.acf-box .title h3 {\n display: flex;\n align-items: center;\n font-size: 14px;\n line-height: 1em;\n margin: 0;\n padding: 0;\n}\n.acf-box .inner {\n padding: 15px;\n}\n.acf-box h2 {\n color: #333333;\n font-size: 26px;\n line-height: 1.25em;\n margin: 0.25em 0 0.75em;\n padding: 0;\n}\n.acf-box h3 {\n margin: 1.5em 0 0;\n}\n.acf-box p {\n margin-top: 0.5em;\n}\n.acf-box a {\n text-decoration: none;\n}\n.acf-box i.dashicons-external {\n margin-top: -1px;\n}\n.acf-box .footer {\n border-top: 1px solid #ccd0d4;\n padding: 12px;\n font-size: 13px;\n line-height: 1.5;\n}\n.acf-box .footer p {\n margin: 0;\n}\n.acf-admin-3-8 .acf-box {\n border-color: #E5E5E5;\n}\n.acf-admin-3-8 .acf-box .title,\n.acf-admin-3-8 .acf-box .footer {\n border-color: #E5E5E5;\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tacf-notice\n*\n*--------------------------------------------------------------------------------------------*/\n.acf-notice {\n position: relative;\n display: block;\n color: #fff;\n margin: 5px 0 15px;\n padding: 3px 12px;\n background: #2a9bd9;\n border-left: #1f7db1 solid 3px;\n}\n.acf-notice p {\n font-size: 13px;\n line-height: 1.5;\n margin: 0.5em 0;\n text-shadow: none;\n color: inherit;\n}\n.acf-notice .acf-notice-dismiss {\n position: absolute;\n top: 9px;\n right: 12px;\n background: transparent !important;\n color: inherit !important;\n border-color: #fff !important;\n opacity: 0.75;\n}\n.acf-notice .acf-notice-dismiss:hover {\n opacity: 1;\n}\n.acf-notice.-dismiss {\n padding-right: 40px;\n}\n.acf-notice.-error {\n background: #d94f4f;\n border-color: #c92c2c;\n}\n.acf-notice.-success {\n background: #49ad52;\n border-color: #3a8941;\n}\n.acf-notice.-warning {\n background: #fd8d3b;\n border-color: #fc7009;\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tacf-table\n*\n*--------------------------------------------------------------------------------------------*/\n.acf-table {\n border: #ccd0d4 solid 1px;\n background: #fff;\n border-spacing: 0;\n border-radius: 0;\n table-layout: auto;\n padding: 0;\n margin: 0;\n width: 100%;\n clear: both;\n box-sizing: content-box;\n /* defaults */\n /* thead */\n /* tbody */\n /* -clear */\n}\n.acf-table > tbody > tr > th,\n.acf-table > tbody > tr > td,\n.acf-table > thead > tr > th,\n.acf-table > thead > tr > td {\n padding: 8px;\n vertical-align: top;\n background: #fff;\n text-align: left;\n border-style: solid;\n font-weight: normal;\n}\n.acf-table > tbody > tr > th,\n.acf-table > thead > tr > th {\n position: relative;\n color: #333333;\n}\n.acf-table > thead > tr > th {\n border-color: #d5d9dd;\n border-width: 0 0 1px 1px;\n}\n.acf-table > thead > tr > th:first-child {\n border-left-width: 0;\n}\n.acf-table > tbody > tr {\n z-index: 1;\n}\n.acf-table > tbody > tr > td {\n border-color: #eeeeee;\n border-width: 1px 0 0 1px;\n}\n.acf-table > tbody > tr > td:first-child {\n border-left-width: 0;\n}\n.acf-table > tbody > tr:first-child > td {\n border-top-width: 0;\n}\n.acf-table.-clear {\n border: 0 none;\n}\n.acf-table.-clear > tbody > tr > td,\n.acf-table.-clear > tbody > tr > th,\n.acf-table.-clear > thead > tr > td,\n.acf-table.-clear > thead > tr > th {\n border: 0 none;\n padding: 4px;\n}\n\n/* remove tr */\n.acf-remove-element {\n -webkit-transition: all 0.25s ease-out;\n -moz-transition: all 0.25s ease-out;\n -o-transition: all 0.25s ease-out;\n transition: all 0.25s ease-out;\n transform: translate(50px, 0);\n opacity: 0;\n}\n\n/* fade-up */\n.acf-fade-up {\n -webkit-transition: all 0.25s ease-out;\n -moz-transition: all 0.25s ease-out;\n -o-transition: all 0.25s ease-out;\n transition: all 0.25s ease-out;\n transform: translate(0, -10px);\n opacity: 0;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Fake table\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-thead,\n.acf-tbody,\n.acf-tfoot {\n width: 100%;\n padding: 0;\n margin: 0;\n}\n.acf-thead > li,\n.acf-tbody > li,\n.acf-tfoot > li {\n box-sizing: border-box;\n padding-top: 14px;\n font-size: 12px;\n line-height: 14px;\n}\n\n.acf-thead {\n border-bottom: #ccd0d4 solid 1px;\n color: #23282d;\n}\n.acf-thead > li {\n font-size: 14px;\n line-height: 1.4;\n font-weight: bold;\n}\n.acf-admin-3-8 .acf-thead {\n border-color: #dfdfdf;\n}\n\n.acf-tfoot {\n background: #f5f5f5;\n border-top: #d5d9dd solid 1px;\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tSettings\n*\n*--------------------------------------------------------------------------------------------*/\n.acf-settings-wrap #poststuff {\n padding-top: 15px;\n}\n.acf-settings-wrap .acf-box {\n margin: 20px 0;\n}\n.acf-settings-wrap table {\n margin: 0;\n}\n.acf-settings-wrap table .button {\n vertical-align: middle;\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tacf-popup\n*\n*--------------------------------------------------------------------------------------------*/\n#acf-popup {\n position: fixed;\n z-index: 900000;\n top: 0;\n left: 0;\n right: 0;\n bottom: 0;\n text-align: center;\n}\n#acf-popup .bg {\n position: absolute;\n top: 0;\n left: 0;\n right: 0;\n bottom: 0;\n z-index: 0;\n background: rgba(0, 0, 0, 0.25);\n}\n#acf-popup:before {\n content: \"\";\n display: inline-block;\n height: 100%;\n vertical-align: middle;\n}\n#acf-popup .acf-popup-box {\n display: inline-block;\n vertical-align: middle;\n z-index: 1;\n min-width: 300px;\n min-height: 160px;\n border-color: #aaaaaa;\n box-shadow: 0 5px 30px -5px rgba(0, 0, 0, 0.25);\n text-align: left;\n}\nhtml[dir=rtl] #acf-popup .acf-popup-box {\n text-align: right;\n}\n#acf-popup .acf-popup-box .title {\n min-height: 15px;\n line-height: 15px;\n}\n#acf-popup .acf-popup-box .title .acf-icon {\n position: absolute;\n top: 10px;\n right: 10px;\n}\nhtml[dir=rtl] #acf-popup .acf-popup-box .title .acf-icon {\n right: auto;\n left: 10px;\n}\n#acf-popup .acf-popup-box .inner {\n min-height: 50px;\n padding: 0;\n margin: 15px;\n}\n#acf-popup .acf-popup-box .loading {\n position: absolute;\n top: 45px;\n left: 0;\n right: 0;\n bottom: 0;\n z-index: 2;\n background: rgba(0, 0, 0, 0.1);\n display: none;\n}\n#acf-popup .acf-popup-box .loading i {\n position: absolute;\n top: 50%;\n left: 50%;\n transform: translate(-50%, -50%);\n}\n\n.acf-submit {\n margin-bottom: 0;\n line-height: 28px;\n}\n.acf-submit span {\n float: right;\n color: #999;\n}\n.acf-submit span.-error {\n color: #dd4232;\n}\n.acf-submit .button {\n margin-right: 5px;\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tupgrade notice\n*\n*--------------------------------------------------------------------------------------------*/\n#acf-upgrade-notice {\n position: relative;\n background: #fff;\n padding: 20px;\n}\n#acf-upgrade-notice:after {\n display: block;\n clear: both;\n content: \"\";\n}\n#acf-upgrade-notice .col-content {\n float: left;\n width: 55%;\n padding-left: 90px;\n}\n#acf-upgrade-notice .notice-container {\n display: flex;\n justify-content: space-between;\n align-items: flex-start;\n align-content: flex-start;\n}\n#acf-upgrade-notice .col-actions {\n float: right;\n text-align: center;\n}\n#acf-upgrade-notice img {\n float: left;\n width: 64px;\n height: 64px;\n margin: 0 0 0 -90px;\n}\n#acf-upgrade-notice h2 {\n display: inline-block;\n font-size: 16px;\n margin: 2px 0 6.5px;\n}\n#acf-upgrade-notice p {\n padding: 0;\n margin: 0;\n}\n#acf-upgrade-notice .button:before {\n margin-top: 11px;\n}\n@media screen and (max-width: 640px) {\n #acf-upgrade-notice .col-content,\n #acf-upgrade-notice .col-actions {\n float: none;\n padding-left: 90px;\n width: auto;\n text-align: left;\n }\n}\n\n#acf-upgrade-notice:has(.notice-container)::before,\n#acf-upgrade-notice:has(.notice-container)::after {\n display: none;\n}\n\n#acf-upgrade-notice:has(.notice-container) {\n padding-left: 20px !important;\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tWelcome\n*\n*--------------------------------------------------------------------------------------------*/\n.acf-wrap h1 {\n margin-top: 0;\n padding-top: 20px;\n}\n.acf-wrap .about-text {\n margin-top: 0.5em;\n min-height: 50px;\n}\n.acf-wrap .about-headline-callout {\n font-size: 2.4em;\n font-weight: 300;\n line-height: 1.3;\n margin: 1.1em 0 0.2em;\n text-align: center;\n}\n.acf-wrap .feature-section {\n padding: 40px 0;\n}\n.acf-wrap .feature-section h2 {\n margin-top: 20px;\n}\n.acf-wrap .changelog {\n list-style: disc;\n padding-left: 15px;\n}\n.acf-wrap .changelog li {\n margin: 0 0 0.75em;\n}\n.acf-wrap .acf-three-col {\n display: flex;\n flex-wrap: wrap;\n justify-content: space-between;\n}\n.acf-wrap .acf-three-col > div {\n flex: 1;\n align-self: flex-start;\n min-width: 31%;\n max-width: 31%;\n}\n@media screen and (max-width: 880px) {\n .acf-wrap .acf-three-col > div {\n min-width: 48%;\n }\n}\n@media screen and (max-width: 640px) {\n .acf-wrap .acf-three-col > div {\n min-width: 100%;\n }\n}\n.acf-wrap .acf-three-col h3 .badge {\n display: inline-block;\n vertical-align: top;\n border-radius: 5px;\n background: #fc9700;\n color: #fff;\n font-weight: normal;\n font-size: 12px;\n padding: 2px 5px;\n}\n.acf-wrap .acf-three-col img + h3 {\n margin-top: 0.5em;\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tacf-hl cols\n*\n*--------------------------------------------------------------------------------------------*/\n.acf-hl[data-cols] {\n margin-left: -10px;\n margin-right: -10px;\n}\n.acf-hl[data-cols] > li {\n padding: 0 6px 0 10px;\n -webkit-box-sizing: border-box;\n -moz-box-sizing: border-box;\n box-sizing: border-box;\n}\n\n/* sizes */\n.acf-hl[data-cols=\"2\"] > li {\n width: 50%;\n}\n\n.acf-hl[data-cols=\"3\"] > li {\n width: 33.333%;\n}\n\n.acf-hl[data-cols=\"4\"] > li {\n width: 25%;\n}\n\n/* mobile */\n@media screen and (max-width: 640px) {\n .acf-hl[data-cols] {\n flex-wrap: wrap;\n justify-content: flex-start;\n align-content: flex-start;\n align-items: flex-start;\n margin-left: 0;\n margin-right: 0;\n margin-top: -10px;\n }\n .acf-hl[data-cols] > li {\n flex: 1 1 100%;\n width: 100% !important;\n padding: 10px 0 0;\n }\n}\n/*--------------------------------------------------------------------------------------------\n*\n*\tmisc\n*\n*--------------------------------------------------------------------------------------------*/\n.acf-actions {\n text-align: right;\n z-index: 1;\n /* hover */\n /* rtl */\n}\n.acf-actions.-hover {\n position: absolute;\n display: none;\n top: 0;\n right: 0;\n padding: 5px;\n z-index: 1050;\n}\nhtml[dir=rtl] .acf-actions.-hover {\n right: auto;\n left: 0;\n}\n\n/* ul compatibility */\nul.acf-actions li {\n float: right;\n margin-left: 4px;\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tRTL\n*\n*--------------------------------------------------------------------------------------------*/\nhtml[dir=rtl] .acf-fl {\n float: right;\n}\n\nhtml[dir=rtl] .acf-fr {\n float: left;\n}\n\nhtml[dir=rtl] .acf-hl > li {\n float: right;\n}\n\nhtml[dir=rtl] .acf-hl > li.acf-fr {\n float: left;\n}\n\nhtml[dir=rtl] .acf-icon.logo {\n left: 0;\n right: auto;\n}\n\nhtml[dir=rtl] .acf-table thead th {\n text-align: right;\n border-right-width: 1px;\n border-left-width: 0px;\n}\n\nhtml[dir=rtl] .acf-table > tbody > tr > td {\n text-align: right;\n border-right-width: 1px;\n border-left-width: 0px;\n}\n\nhtml[dir=rtl] .acf-table > thead > tr > th:first-child,\nhtml[dir=rtl] .acf-table > tbody > tr > td:first-child {\n border-right-width: 0;\n}\n\nhtml[dir=rtl] .acf-table > tbody > tr > td.order + td {\n border-right-color: #e1e1e1;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* acf-postbox-columns\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-postbox-columns {\n position: relative;\n margin-top: -11px;\n margin-bottom: -12px;\n margin-left: -12px;\n margin-right: 268px;\n}\n.acf-postbox-columns:after {\n display: block;\n clear: both;\n content: \"\";\n}\n.acf-postbox-columns .acf-postbox-main,\n.acf-postbox-columns .acf-postbox-side {\n -webkit-box-sizing: border-box;\n -moz-box-sizing: border-box;\n box-sizing: border-box;\n padding: 0 12px 12px;\n}\n.acf-postbox-columns .acf-postbox-main {\n float: left;\n width: 100%;\n}\n.acf-postbox-columns .acf-postbox-side {\n float: right;\n width: 280px;\n margin-right: -280px;\n}\n.acf-postbox-columns .acf-postbox-side:before {\n content: \"\";\n display: block;\n position: absolute;\n width: 1px;\n height: 100%;\n top: 0;\n right: 0;\n background: #d5d9dd;\n}\n.acf-admin-3-8 .acf-postbox-columns .acf-postbox-side:before {\n background: #dfdfdf;\n}\n\n/* mobile */\n@media only screen and (max-width: 850px) {\n .acf-postbox-columns {\n margin: 0;\n }\n .acf-postbox-columns .acf-postbox-main,\n .acf-postbox-columns .acf-postbox-side {\n float: none;\n width: auto;\n margin: 0;\n padding: 0;\n }\n .acf-postbox-columns .acf-postbox-side {\n margin-top: 1em;\n }\n .acf-postbox-columns .acf-postbox-side:before {\n display: none;\n }\n}\n/*---------------------------------------------------------------------------------------------\n*\n* acf-panel\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-panel {\n margin-top: -1px;\n border-top: 1px solid #d5d9dd;\n border-bottom: 1px solid #d5d9dd;\n /* open */\n /* inside postbox */\n /* fields */\n}\n.acf-panel .acf-panel-title {\n margin: 0;\n padding: 12px;\n font-weight: bold;\n cursor: pointer;\n font-size: inherit;\n}\n.acf-panel .acf-panel-title i {\n float: right;\n}\n.acf-panel .acf-panel-inside {\n margin: 0;\n padding: 0 12px 12px;\n display: none;\n}\n.acf-panel.-open .acf-panel-inside {\n display: block;\n}\n.postbox .acf-panel {\n margin-left: -12px;\n margin-right: -12px;\n}\n.acf-panel .acf-field {\n margin: 20px 0 0;\n}\n.acf-panel .acf-field .acf-label label {\n color: #555d66;\n font-weight: normal;\n}\n.acf-panel .acf-field:first-child {\n margin-top: 0;\n}\n.acf-admin-3-8 .acf-panel {\n border-color: #dfdfdf;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Admin Tools\n*\n*---------------------------------------------------------------------------------------------*/\n#acf-admin-tools .notice {\n margin-top: 10px;\n}\n#acf-admin-tools .acf-meta-box-wrap {\n /* acf-fields */\n}\n#acf-admin-tools .acf-meta-box-wrap .inside {\n border-top: none;\n}\n#acf-admin-tools .acf-meta-box-wrap .acf-fields {\n margin-bottom: 24px;\n border: none;\n background: #fff;\n border-radius: 0;\n}\n#acf-admin-tools .acf-meta-box-wrap .acf-fields .acf-field {\n padding: 0;\n margin-bottom: 19px;\n border-top: none;\n}\n#acf-admin-tools .acf-meta-box-wrap .acf-fields .acf-label {\n margin-bottom: 16px;\n}\n#acf-admin-tools .acf-meta-box-wrap .acf-fields .acf-input {\n padding-top: 16px;\n padding-right: 16px;\n padding-bottom: 16px;\n padding-left: 16px;\n border-width: 1px;\n border-style: solid;\n border-color: #D0D5DD;\n border-radius: 6px;\n}\n#acf-admin-tools .acf-meta-box-wrap .acf-fields.import-cptui {\n margin-top: 19px;\n}\n\n.acf-meta-box-wrap .postbox {\n -webkit-box-sizing: border-box;\n -moz-box-sizing: border-box;\n box-sizing: border-box;\n}\n.acf-meta-box-wrap .postbox .inside {\n margin-bottom: 0;\n}\n.acf-meta-box-wrap .postbox .hndle {\n font-size: 14px;\n padding: 8px 12px;\n margin: 0;\n line-height: 1.4;\n position: relative;\n z-index: 1;\n cursor: default;\n}\n.acf-meta-box-wrap .postbox .handlediv,\n.acf-meta-box-wrap .postbox .handle-order-higher,\n.acf-meta-box-wrap .postbox .handle-order-lower {\n display: none;\n}\n\n/* grid */\n.acf-meta-box-wrap.-grid {\n margin-left: 8px;\n margin-right: 8px;\n}\n.acf-meta-box-wrap.-grid .postbox {\n float: left;\n clear: left;\n width: 50%;\n margin: 0 0 16px;\n}\n.acf-meta-box-wrap.-grid .postbox:nth-child(odd) {\n margin-left: -8px;\n}\n.acf-meta-box-wrap.-grid .postbox:nth-child(even) {\n float: right;\n clear: right;\n margin-right: -8px;\n}\n\n/* mobile */\n@media only screen and (max-width: 850px) {\n .acf-meta-box-wrap.-grid {\n margin-left: 0;\n margin-right: 0;\n }\n .acf-meta-box-wrap.-grid .postbox {\n margin-left: 0 !important;\n margin-right: 0 !important;\n width: 100%;\n }\n}\n/* export tool */\n#acf-admin-tool-export {\n /* panel: selection */\n}\n#acf-admin-tool-export p {\n max-width: 800px;\n}\n#acf-admin-tool-export ul {\n display: flex;\n flex-wrap: wrap;\n width: 100%;\n}\n#acf-admin-tool-export ul li {\n flex: 0 1 33.33%;\n}\n@media screen and (max-width: 1600px) {\n #acf-admin-tool-export ul li {\n flex: 0 1 50%;\n }\n}\n@media screen and (max-width: 1200px) {\n #acf-admin-tool-export ul li {\n flex: 0 1 100%;\n }\n}\n#acf-admin-tool-export .acf-postbox-side ul {\n display: block;\n}\n#acf-admin-tool-export .acf-postbox-side .button {\n margin: 0;\n width: 100%;\n}\n#acf-admin-tool-export textarea {\n display: block;\n width: 100%;\n min-height: 500px;\n background: #F9FAFB;\n border-color: #D0D5DD;\n box-shadow: none;\n padding: 7px;\n border-radius: 6px;\n}\n#acf-admin-tool-export .acf-panel-selection .acf-label label {\n font-weight: bold;\n color: #344054;\n}\n\n#acf-admin-tool-import ul {\n column-width: 200px;\n}\n\n.acf-css-tooltip {\n position: relative;\n}\n.acf-css-tooltip:before {\n content: attr(aria-label);\n display: none;\n position: absolute;\n z-index: 999;\n bottom: 100%;\n left: 50%;\n transform: translate(-50%, -8px);\n background: #191e23;\n border-radius: 2px;\n padding: 5px 10px;\n color: #fff;\n font-size: 12px;\n line-height: 1.4em;\n white-space: pre;\n}\n.acf-css-tooltip:after {\n content: \"\";\n display: none;\n position: absolute;\n z-index: 998;\n bottom: 100%;\n left: 50%;\n transform: translate(-50%, 4px);\n border: solid 6px transparent;\n border-top-color: #191e23;\n}\n.acf-css-tooltip:hover:before, .acf-css-tooltip:hover:after, .acf-css-tooltip:focus:before, .acf-css-tooltip:focus:after {\n display: block;\n}\n\n.acf-diff .acf-diff-title {\n position: absolute;\n top: 0;\n left: 0;\n right: 0;\n height: 40px;\n padding: 14px 16px;\n background: #f3f3f3;\n border-bottom: #dddddd solid 1px;\n}\n.acf-diff .acf-diff-title strong {\n font-size: 14px;\n display: block;\n}\n.acf-diff .acf-diff-title .acf-diff-title-left,\n.acf-diff .acf-diff-title .acf-diff-title-right {\n width: 50%;\n float: left;\n}\n.acf-diff .acf-diff-content {\n position: absolute;\n top: 70px;\n left: 0;\n right: 0;\n bottom: 0;\n overflow: auto;\n}\n.acf-diff table.diff {\n border-spacing: 0;\n}\n.acf-diff table.diff col.diffsplit.middle {\n width: 0;\n}\n.acf-diff table.diff td,\n.acf-diff table.diff th {\n padding-top: 0.25em;\n padding-bottom: 0.25em;\n}\n.acf-diff table.diff tr td:nth-child(2) {\n width: auto;\n}\n.acf-diff table.diff td:nth-child(3) {\n border-left: #dddddd solid 1px;\n}\n@media screen and (max-width: 600px) {\n .acf-diff .acf-diff-title {\n height: 70px;\n }\n .acf-diff .acf-diff-content {\n top: 100px;\n }\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Modal\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-modal {\n position: fixed;\n top: 30px;\n left: 30px;\n right: 30px;\n bottom: 30px;\n z-index: 160000;\n box-shadow: 0 5px 15px rgba(0, 0, 0, 0.7);\n background: #fcfcfc;\n}\n.acf-modal .acf-modal-title,\n.acf-modal .acf-modal-content,\n.acf-modal .acf-modal-toolbar {\n box-sizing: border-box;\n position: absolute;\n left: 0;\n right: 0;\n}\n.acf-modal .acf-modal-title {\n height: 50px;\n top: 0;\n border-bottom: 1px solid #ddd;\n}\n.acf-modal .acf-modal-title h2 {\n margin: 0;\n padding: 0 16px;\n line-height: 50px;\n}\n.acf-modal .acf-modal-title .acf-modal-close {\n position: absolute;\n top: 0;\n right: 0;\n height: 50px;\n width: 50px;\n border: none;\n border-left: 1px solid #ddd;\n background: transparent;\n cursor: pointer;\n color: #666;\n}\n.acf-modal .acf-modal-title .acf-modal-close:hover {\n color: #00a0d2;\n}\n.acf-modal .acf-modal-content {\n top: 50px;\n bottom: 60px;\n background: #fff;\n overflow: auto;\n padding: 16px;\n}\n.acf-modal .acf-modal-feedback {\n position: absolute;\n top: 50%;\n margin: -10px 0;\n left: 0;\n right: 0;\n text-align: center;\n opacity: 0.75;\n}\n.acf-modal .acf-modal-feedback.error {\n opacity: 1;\n color: #b52727;\n}\n.acf-modal .acf-modal-toolbar {\n height: 60px;\n bottom: 0;\n padding: 15px 16px;\n border-top: 1px solid #ddd;\n}\n.acf-modal .acf-modal-toolbar .button {\n float: right;\n}\n@media only screen and (max-width: 640px) {\n .acf-modal {\n top: 0;\n left: 0;\n right: 0;\n bottom: 0;\n }\n}\n\n.acf-modal-backdrop {\n position: fixed;\n top: 0;\n left: 0;\n right: 0;\n bottom: 0;\n background: #101828;\n opacity: 0.8;\n z-index: 159900;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Retina\n*\n*---------------------------------------------------------------------------------------------*/\n@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {\n .acf-loading,\n .acf-spinner {\n background-image: url(../../images/spinner@2x.gif);\n background-size: 20px 20px;\n }\n}\n/*--------------------------------------------------------------------------------------------\n*\n* Wrap\n*\n*--------------------------------------------------------------------------------------------*/\n.acf-admin-page .wrap {\n margin-top: 48px;\n margin-right: 32px;\n margin-bottom: 0;\n margin-left: 12px;\n}\n@media screen and (max-width: 768px) {\n .acf-admin-page .wrap {\n margin-right: 8px;\n margin-left: 8px;\n }\n}\n.acf-admin-page.rtl .wrap {\n margin-right: 12px;\n margin-left: 32px;\n}\n@media screen and (max-width: 768px) {\n .acf-admin-page.rtl .wrap {\n margin-right: 8px;\n margin-left: 8px;\n }\n}\n@media screen and (max-width: 768px) {\n .acf-admin-page #wpcontent {\n padding-left: 0;\n }\n}\n\n/*-------------------------------------------------------------------\n*\n* ACF Admin Page Footer Styles\n*\n*------------------------------------------------------------------*/\n.acf-admin-page #wpfooter {\n font-style: italic;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Admin Postbox & ACF Postbox\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-admin-page .postbox,\n.acf-admin-page .acf-box {\n border: none;\n border-radius: 8px;\n box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.1);\n}\n.acf-admin-page .postbox .inside,\n.acf-admin-page .acf-box .inside {\n padding-top: 24px;\n padding-right: 24px;\n padding-bottom: 24px;\n padding-left: 24px;\n}\n.acf-admin-page .postbox .acf-postbox-inner,\n.acf-admin-page .acf-box .acf-postbox-inner {\n margin-top: 0;\n margin-right: 0;\n margin-bottom: 0;\n margin-left: 0;\n padding-top: 24px;\n padding-right: 0;\n padding-bottom: 0;\n padding-left: 0;\n}\n.acf-admin-page .postbox .inner,\n.acf-admin-page .postbox .inside,\n.acf-admin-page .acf-box .inner,\n.acf-admin-page .acf-box .inside {\n margin-top: 0 !important;\n margin-right: 0 !important;\n margin-bottom: 0 !important;\n margin-left: 0 !important;\n border-top-width: 1px;\n border-top-style: solid;\n border-top-color: #EAECF0;\n}\n.acf-admin-page .postbox .postbox-header,\n.acf-admin-page .postbox .title,\n.acf-admin-page .acf-box .postbox-header,\n.acf-admin-page .acf-box .title {\n display: flex;\n align-items: center;\n box-sizing: border-box;\n min-height: 64px;\n margin-top: 0;\n margin-right: 0;\n margin-bottom: 0;\n margin-left: 0;\n padding-top: 0;\n padding-right: 24px;\n padding-bottom: 0;\n padding-left: 24px;\n border-bottom-width: 0;\n border-bottom-style: none;\n}\n.acf-admin-page .postbox .postbox-header h2,\n.acf-admin-page .postbox .postbox-header h3,\n.acf-admin-page .postbox .title h2,\n.acf-admin-page .postbox .title h3,\n.acf-admin-page .acf-box .postbox-header h2,\n.acf-admin-page .acf-box .postbox-header h3,\n.acf-admin-page .acf-box .title h2,\n.acf-admin-page .acf-box .title h3 {\n margin-top: 0;\n margin-right: 0;\n margin-bottom: 0;\n margin-left: 0;\n padding-top: 0;\n padding-right: 0;\n padding-bottom: 0;\n padding-left: 0;\n color: #344054;\n}\n.acf-admin-page .postbox .hndle,\n.acf-admin-page .acf-box .hndle {\n padding-top: 0;\n padding-right: 24px;\n padding-bottom: 0;\n padding-left: 24px;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Custom ACF postbox header\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-postbox-header {\n display: flex;\n align-items: center;\n justify-content: space-between;\n box-sizing: border-box;\n min-height: 64px;\n margin-top: -24px;\n margin-right: -24px;\n margin-bottom: 0;\n margin-left: -24px;\n padding-top: 0;\n padding-right: 24px;\n padding-bottom: 0;\n padding-left: 24px;\n border-bottom-width: 1px;\n border-bottom-style: solid;\n border-bottom-color: #EAECF0;\n}\n.acf-postbox-header h2.acf-postbox-title {\n margin-top: 0;\n margin-right: 0;\n margin-bottom: 0;\n margin-left: 0;\n padding-top: 0;\n padding-right: 24px;\n padding-bottom: 0;\n padding-left: 0;\n color: #344054;\n}\n.rtl .acf-postbox-header h2.acf-postbox-title {\n padding-right: 0;\n padding-left: 24px;\n}\n.acf-postbox-header .acf-icon {\n background-color: #98A2B3;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Screen options button & screen meta container\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-admin-page #screen-meta-links {\n margin-right: 32px;\n}\n.acf-admin-page #screen-meta-links .show-settings {\n border-color: #D0D5DD;\n}\n@media screen and (max-width: 768px) {\n .acf-admin-page #screen-meta-links {\n margin-right: 16px;\n margin-bottom: 0;\n }\n}\n.acf-admin-page.rtl #screen-meta-links {\n margin-right: 0;\n margin-left: 32px;\n}\n@media screen and (max-width: 768px) {\n .acf-admin-page.rtl #screen-meta-links {\n margin-right: 0;\n margin-left: 16px;\n }\n}\n.acf-admin-page #screen-meta {\n border-color: #D0D5DD;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Postbox headings\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-admin-page #poststuff .postbox-header h2,\n.acf-admin-page #poststuff .postbox-header h3 {\n justify-content: flex-start;\n margin-top: 0;\n margin-right: 0;\n margin-bottom: 0;\n margin-left: 0;\n padding-top: 0;\n padding-right: 0;\n padding-bottom: 0;\n padding-left: 0;\n color: #344054 !important;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Postbox drag state\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-admin-page.is-dragging-metaboxes .metabox-holder .postbox-container .meta-box-sortables {\n box-sizing: border-box;\n padding: 2px;\n outline: none;\n background-image: repeating-linear-gradient(0deg, #667085, #667085 5px, transparent 5px, transparent 10px, #667085 10px), repeating-linear-gradient(90deg, #667085, #667085 5px, transparent 5px, transparent 10px, #667085 10px), repeating-linear-gradient(180deg, #667085, #667085 5px, transparent 5px, transparent 10px, #667085 10px), repeating-linear-gradient(270deg, #667085, #667085 5px, transparent 5px, transparent 10px, #667085 10px);\n background-size: 1.5px 100%, 100% 1.5px, 1.5px 100%, 100% 1.5px;\n background-position: 0 0, 0 0, 100% 0, 0 100%;\n background-repeat: no-repeat;\n border-radius: 8px;\n}\n.acf-admin-page .ui-sortable-placeholder {\n border: none;\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n* Search summary\n*\n*--------------------------------------------------------------------------------------------*/\n.acf-admin-page .subtitle {\n display: inline-flex;\n align-items: center;\n height: 24px;\n margin: 0;\n padding-top: 4px;\n padding-right: 12px;\n padding-bottom: 4px;\n padding-left: 12px;\n background-color: #EBF5FA;\n border-width: 1px;\n border-style: solid;\n border-color: #A5D2E7;\n border-radius: 6px;\n}\n.acf-admin-page .subtitle strong {\n margin-left: 5px;\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n* Action strip\n*\n*--------------------------------------------------------------------------------------------*/\n.acf-actions-strip {\n display: flex;\n}\n.acf-actions-strip .acf-btn {\n margin-right: 8px;\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n* Notices\n*\n*--------------------------------------------------------------------------------------------*/\n.acf-admin-page .acf-notice,\n.acf-admin-page .notice,\n.acf-admin-page #lost-connection-notice {\n position: relative;\n box-sizing: border-box;\n min-height: 48px;\n margin-top: 0 !important;\n margin-right: 0 !important;\n margin-bottom: 16px !important;\n margin-left: 0 !important;\n padding-top: 13px !important;\n padding-right: 16px !important;\n padding-bottom: 12px !important;\n padding-left: 50px !important;\n background-color: #e7eff9;\n border-width: 1px;\n border-style: solid;\n border-color: #9dbaee;\n border-radius: 8px;\n box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.1);\n color: #344054;\n}\n.acf-admin-page .acf-notice.update-nag,\n.acf-admin-page .notice.update-nag,\n.acf-admin-page #lost-connection-notice.update-nag {\n display: block;\n position: relative;\n width: calc(100% - 44px);\n margin-top: 48px !important;\n margin-right: 44px !important;\n margin-bottom: -32px !important;\n margin-left: 12px !important;\n}\n.acf-admin-page .acf-notice .button,\n.acf-admin-page .notice .button,\n.acf-admin-page #lost-connection-notice .button {\n height: auto;\n margin-left: 8px;\n padding: 0;\n border: none;\n}\n.acf-admin-page .acf-notice > div,\n.acf-admin-page .notice > div,\n.acf-admin-page #lost-connection-notice > div {\n margin-top: 0;\n margin-bottom: 0;\n}\n.acf-admin-page .acf-notice p,\n.acf-admin-page .notice p,\n.acf-admin-page #lost-connection-notice p {\n flex: 1 0 auto;\n max-width: 100%;\n line-height: 18px;\n margin: 0;\n padding: 0;\n}\n.acf-admin-page .acf-notice p.help,\n.acf-admin-page .notice p.help,\n.acf-admin-page #lost-connection-notice p.help {\n margin-top: 0;\n padding-top: 0;\n color: rgba(52, 64, 84, 0.7);\n}\n.acf-admin-page .acf-notice .acf-notice-dismiss,\n.acf-admin-page .acf-notice .notice-dismiss,\n.acf-admin-page .notice .acf-notice-dismiss,\n.acf-admin-page .notice .notice-dismiss,\n.acf-admin-page #lost-connection-notice .acf-notice-dismiss,\n.acf-admin-page #lost-connection-notice .notice-dismiss {\n position: absolute;\n top: 4px;\n right: 8px;\n padding: 9px;\n border: none;\n}\n.acf-admin-page .acf-notice .acf-notice-dismiss:before,\n.acf-admin-page .acf-notice .notice-dismiss:before,\n.acf-admin-page .notice .acf-notice-dismiss:before,\n.acf-admin-page .notice .notice-dismiss:before,\n.acf-admin-page #lost-connection-notice .acf-notice-dismiss:before,\n.acf-admin-page #lost-connection-notice .notice-dismiss:before {\n content: \"\";\n display: block;\n position: relative;\n z-index: 600;\n width: 20px;\n height: 20px;\n background-color: #667085;\n border: none;\n border-radius: 0;\n -webkit-mask-size: contain;\n mask-size: contain;\n -webkit-mask-repeat: no-repeat;\n mask-repeat: no-repeat;\n -webkit-mask-position: center;\n mask-position: center;\n -webkit-mask-image: url(\"../../images/icons/icon-close.svg\");\n mask-image: url(\"../../images/icons/icon-close.svg\");\n}\n.acf-admin-page .acf-notice .acf-notice-dismiss:hover::before,\n.acf-admin-page .acf-notice .notice-dismiss:hover::before,\n.acf-admin-page .notice .acf-notice-dismiss:hover::before,\n.acf-admin-page .notice .notice-dismiss:hover::before,\n.acf-admin-page #lost-connection-notice .acf-notice-dismiss:hover::before,\n.acf-admin-page #lost-connection-notice .notice-dismiss:hover::before {\n background-color: #344054;\n}\n.acf-admin-page .acf-notice a.acf-notice-dismiss,\n.acf-admin-page .notice a.acf-notice-dismiss,\n.acf-admin-page #lost-connection-notice a.acf-notice-dismiss {\n position: absolute;\n top: 5px;\n right: 24px;\n}\n.acf-admin-page .acf-notice a.acf-notice-dismiss:before,\n.acf-admin-page .notice a.acf-notice-dismiss:before,\n.acf-admin-page #lost-connection-notice a.acf-notice-dismiss:before {\n background-color: #475467;\n}\n.acf-admin-page .acf-notice:before,\n.acf-admin-page .notice:before,\n.acf-admin-page #lost-connection-notice:before {\n content: \"\";\n display: block;\n position: absolute;\n top: 15px;\n left: 18px;\n z-index: 600;\n width: 16px;\n height: 16px;\n margin-right: 8px;\n background-color: #fff;\n border: none;\n border-radius: 0;\n -webkit-mask-size: contain;\n mask-size: contain;\n -webkit-mask-repeat: no-repeat;\n mask-repeat: no-repeat;\n -webkit-mask-position: center;\n mask-position: center;\n -webkit-mask-image: url(\"../../images/icons/icon-info-solid.svg\");\n mask-image: url(\"../../images/icons/icon-info-solid.svg\");\n}\n.acf-admin-page .acf-notice:after,\n.acf-admin-page .notice:after,\n.acf-admin-page #lost-connection-notice:after {\n content: \"\";\n display: block;\n position: absolute;\n top: 9px;\n left: 12px;\n z-index: 500;\n width: 28px;\n height: 28px;\n background-color: #2D69DA;\n border-radius: 6px;\n box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.1);\n}\n.acf-admin-page .acf-notice .local-restore,\n.acf-admin-page .notice .local-restore,\n.acf-admin-page #lost-connection-notice .local-restore {\n align-items: center;\n margin-top: -6px;\n margin-bottom: 0;\n}\n.acf-admin-page .notice[data-persisted=true] {\n display: none;\n}\n.acf-admin-page .notice.is-dismissible {\n padding-right: 56px;\n}\n.acf-admin-page .notice.notice-success {\n background-color: #edf7ef;\n border-color: #b6deb9;\n}\n.acf-admin-page .notice.notice-success:before {\n -webkit-mask-image: url(\"../../images/icons/icon-check-circle-solid.svg\");\n mask-image: url(\"../../images/icons/icon-check-circle-solid.svg\");\n}\n.acf-admin-page .notice.notice-success:after {\n background-color: #52AA59;\n}\n.acf-admin-page .acf-notice.acf-error-message,\n.acf-admin-page .notice.notice-error,\n.acf-admin-page #lost-connection-notice {\n background-color: #f7eeeb;\n border-color: #f1b6b3;\n}\n.acf-admin-page .acf-notice.acf-error-message:before,\n.acf-admin-page .notice.notice-error:before,\n.acf-admin-page #lost-connection-notice:before {\n -webkit-mask-image: url(\"../../images/icons/icon-warning.svg\");\n mask-image: url(\"../../images/icons/icon-warning.svg\");\n}\n.acf-admin-page .acf-notice.acf-error-message:after,\n.acf-admin-page .notice.notice-error:after,\n.acf-admin-page #lost-connection-notice:after {\n background-color: #D13737;\n}\n.acf-admin-page .notice.notice-warning {\n background: linear-gradient(0deg, rgba(247, 144, 9, 0.08), rgba(247, 144, 9, 0.08)), #FFFFFF;\n border: 1px solid rgba(247, 144, 9, 0.32);\n color: #344054;\n}\n.acf-admin-page .notice.notice-warning:before {\n -webkit-mask-image: url(\"../../images/icons/icon-alert-triangle.svg\");\n mask-image: url(\"../../images/icons/icon-alert-triangle.svg\");\n background: #f56e28;\n}\n.acf-admin-page .notice.notice-warning:after {\n content: none;\n}\n\n.acf-admin-single-taxonomy .notice-success .acf-item-saved-text,\n.acf-admin-single-post-type .notice-success .acf-item-saved-text,\n.acf-admin-single-options-page .notice-success .acf-item-saved-text {\n font-weight: 600;\n}\n.acf-admin-single-taxonomy .notice-success .acf-item-saved-links,\n.acf-admin-single-post-type .notice-success .acf-item-saved-links,\n.acf-admin-single-options-page .notice-success .acf-item-saved-links {\n display: flex;\n gap: 12px;\n}\n.acf-admin-single-taxonomy .notice-success .acf-item-saved-links a,\n.acf-admin-single-post-type .notice-success .acf-item-saved-links a,\n.acf-admin-single-options-page .notice-success .acf-item-saved-links a {\n text-decoration: none;\n opacity: 1;\n}\n.acf-admin-single-taxonomy .notice-success .acf-item-saved-links a:after,\n.acf-admin-single-post-type .notice-success .acf-item-saved-links a:after,\n.acf-admin-single-options-page .notice-success .acf-item-saved-links a:after {\n content: \"\";\n width: 1px;\n height: 13px;\n display: inline-flex;\n position: relative;\n top: 2px;\n left: 6px;\n background-color: #475467;\n opacity: 0.3;\n}\n.acf-admin-single-taxonomy .notice-success .acf-item-saved-links a:last-child:after,\n.acf-admin-single-post-type .notice-success .acf-item-saved-links a:last-child:after,\n.acf-admin-single-options-page .notice-success .acf-item-saved-links a:last-child:after {\n content: none;\n}\n\n.rtl.acf-field-group .notice,\n.rtl.acf-internal-post-type .notice {\n padding-right: 50px !important;\n}\n.rtl.acf-field-group .notice .notice-dismiss,\n.rtl.acf-internal-post-type .notice .notice-dismiss {\n left: 8px;\n right: unset;\n}\n.rtl.acf-field-group .notice:before,\n.rtl.acf-internal-post-type .notice:before {\n left: unset;\n right: 10px;\n}\n.rtl.acf-field-group .notice:after,\n.rtl.acf-internal-post-type .notice:after {\n left: unset;\n right: 12px;\n}\n.rtl.acf-field-group.acf-admin-single-taxonomy .notice-success .acf-item-saved-links a:after, .rtl.acf-field-group.acf-admin-single-post-type .notice-success .acf-item-saved-links a:after, .rtl.acf-field-group.acf-admin-single-options-page .notice-success .acf-item-saved-links a:after,\n.rtl.acf-internal-post-type.acf-admin-single-taxonomy .notice-success .acf-item-saved-links a:after,\n.rtl.acf-internal-post-type.acf-admin-single-post-type .notice-success .acf-item-saved-links a:after,\n.rtl.acf-internal-post-type.acf-admin-single-options-page .notice-success .acf-item-saved-links a:after {\n left: unset;\n right: 6px;\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n* ACF PRO label\n*\n*--------------------------------------------------------------------------------------------*/\n.acf-pro-label {\n display: inline-flex;\n align-items: center;\n min-height: 22px;\n padding-right: 8px;\n padding-left: 8px;\n background: linear-gradient(90.52deg, #3E8BFF 0.44%, #A45CFF 113.3%);\n box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);\n border: none;\n border-radius: 100px;\n font-size: 11px;\n text-transform: uppercase;\n text-decoration: none;\n color: #fff;\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n* Inline notice overrides\n*\n*--------------------------------------------------------------------------------------------*/\n.acf-admin-page .acf-field .acf-notice {\n display: flex;\n align-items: center;\n min-height: 40px !important;\n margin-bottom: 6px !important;\n padding-top: 6px !important;\n padding-left: 40px !important;\n padding-bottom: 6px !important;\n margin: 0 0 15px;\n background: #edf2ff;\n color: #344054 !important;\n border-color: #2183b9;\n border-radius: 6px;\n}\n.acf-admin-page .acf-field .acf-notice:after {\n top: 8px;\n left: 8px;\n width: 22px;\n height: 22px;\n}\n.acf-admin-page .acf-field .acf-notice:before {\n top: 12px;\n left: 12px;\n width: 14px;\n height: 14px;\n}\n.acf-admin-page .acf-field .acf-notice.-error {\n background: #f7eeeb;\n border-color: #f1b6b3;\n}\n.acf-admin-page .acf-field .acf-notice.-success {\n background: #edf7ef;\n border-color: #b6deb9;\n}\n.acf-admin-page .acf-field .acf-notice.-warning {\n background: #fdf8eb;\n border-color: #f4dbb4;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Global\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-admin-page #wpcontent {\n line-height: 140%;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Links\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-admin-page a {\n color: #0783BE;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Headings\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-h1, .acf-admin-page #tmpl-acf-field-group-pro-features h1,\n.acf-admin-page #acf-field-group-pro-features h1, .acf-admin-page h1,\n.acf-headerbar h1 {\n font-size: 21px;\n font-weight: 400;\n}\n\n.acf-h2, .acf-no-field-groups-wrapper .acf-no-field-groups-inner h2,\n.acf-no-field-groups-wrapper .acf-no-taxonomies-inner h2,\n.acf-no-field-groups-wrapper .acf-no-post-types-inner h2,\n.acf-no-field-groups-wrapper .acf-no-options-pages-inner h2,\n.acf-no-field-groups-wrapper .acf-options-preview-inner h2,\n.acf-no-taxonomies-wrapper .acf-no-field-groups-inner h2,\n.acf-no-taxonomies-wrapper .acf-no-taxonomies-inner h2,\n.acf-no-taxonomies-wrapper .acf-no-post-types-inner h2,\n.acf-no-taxonomies-wrapper .acf-no-options-pages-inner h2,\n.acf-no-taxonomies-wrapper .acf-options-preview-inner h2,\n.acf-no-post-types-wrapper .acf-no-field-groups-inner h2,\n.acf-no-post-types-wrapper .acf-no-taxonomies-inner h2,\n.acf-no-post-types-wrapper .acf-no-post-types-inner h2,\n.acf-no-post-types-wrapper .acf-no-options-pages-inner h2,\n.acf-no-post-types-wrapper .acf-options-preview-inner h2,\n.acf-no-options-pages-wrapper .acf-no-field-groups-inner h2,\n.acf-no-options-pages-wrapper .acf-no-taxonomies-inner h2,\n.acf-no-options-pages-wrapper .acf-no-post-types-inner h2,\n.acf-no-options-pages-wrapper .acf-no-options-pages-inner h2,\n.acf-no-options-pages-wrapper .acf-options-preview-inner h2,\n.acf-options-preview-wrapper .acf-no-field-groups-inner h2,\n.acf-options-preview-wrapper .acf-no-taxonomies-inner h2,\n.acf-options-preview-wrapper .acf-no-post-types-inner h2,\n.acf-options-preview-wrapper .acf-no-options-pages-inner h2,\n.acf-options-preview-wrapper .acf-options-preview-inner h2, .acf-page-title, .acf-admin-page h2,\n.acf-headerbar h2 {\n font-size: 18px;\n font-weight: 400;\n}\n\n.acf-h3, .acf-admin-page h3,\n.acf-headerbar h3, .acf-admin-page .postbox .postbox-header h2,\n.acf-admin-page .postbox .postbox-header h3,\n.acf-admin-page .postbox .title h2,\n.acf-admin-page .postbox .title h3,\n.acf-admin-page .acf-box .postbox-header h2,\n.acf-admin-page .acf-box .postbox-header h3,\n.acf-admin-page .acf-box .title h2,\n.acf-admin-page .acf-box .title h3, .acf-postbox-header h2.acf-postbox-title, .acf-admin-page #poststuff .postbox-header h2,\n.acf-admin-page #poststuff .postbox-header h3 {\n font-size: 16px;\n font-weight: 400;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Paragraphs\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-admin-page .p1 {\n font-size: 15px;\n}\n.acf-admin-page .p2, .acf-admin-page .acf-no-field-groups-wrapper .acf-no-field-groups-inner p, .acf-no-field-groups-wrapper .acf-no-field-groups-inner .acf-admin-page p,\n.acf-admin-page .acf-no-field-groups-wrapper .acf-no-taxonomies-inner p,\n.acf-no-field-groups-wrapper .acf-no-taxonomies-inner .acf-admin-page p,\n.acf-admin-page .acf-no-field-groups-wrapper .acf-no-post-types-inner p,\n.acf-no-field-groups-wrapper .acf-no-post-types-inner .acf-admin-page p,\n.acf-admin-page .acf-no-field-groups-wrapper .acf-no-options-pages-inner p,\n.acf-no-field-groups-wrapper .acf-no-options-pages-inner .acf-admin-page p,\n.acf-admin-page .acf-no-field-groups-wrapper .acf-options-preview-inner p,\n.acf-no-field-groups-wrapper .acf-options-preview-inner .acf-admin-page p,\n.acf-admin-page .acf-no-taxonomies-wrapper .acf-no-field-groups-inner p,\n.acf-no-taxonomies-wrapper .acf-no-field-groups-inner .acf-admin-page p,\n.acf-admin-page .acf-no-taxonomies-wrapper .acf-no-taxonomies-inner p,\n.acf-no-taxonomies-wrapper .acf-no-taxonomies-inner .acf-admin-page p,\n.acf-admin-page .acf-no-taxonomies-wrapper .acf-no-post-types-inner p,\n.acf-no-taxonomies-wrapper .acf-no-post-types-inner .acf-admin-page p,\n.acf-admin-page .acf-no-taxonomies-wrapper .acf-no-options-pages-inner p,\n.acf-no-taxonomies-wrapper .acf-no-options-pages-inner .acf-admin-page p,\n.acf-admin-page .acf-no-taxonomies-wrapper .acf-options-preview-inner p,\n.acf-no-taxonomies-wrapper .acf-options-preview-inner .acf-admin-page p,\n.acf-admin-page .acf-no-post-types-wrapper .acf-no-field-groups-inner p,\n.acf-no-post-types-wrapper .acf-no-field-groups-inner .acf-admin-page p,\n.acf-admin-page .acf-no-post-types-wrapper .acf-no-taxonomies-inner p,\n.acf-no-post-types-wrapper .acf-no-taxonomies-inner .acf-admin-page p,\n.acf-admin-page .acf-no-post-types-wrapper .acf-no-post-types-inner p,\n.acf-no-post-types-wrapper .acf-no-post-types-inner .acf-admin-page p,\n.acf-admin-page .acf-no-post-types-wrapper .acf-no-options-pages-inner p,\n.acf-no-post-types-wrapper .acf-no-options-pages-inner .acf-admin-page p,\n.acf-admin-page .acf-no-post-types-wrapper .acf-options-preview-inner p,\n.acf-no-post-types-wrapper .acf-options-preview-inner .acf-admin-page p,\n.acf-admin-page .acf-no-options-pages-wrapper .acf-no-field-groups-inner p,\n.acf-no-options-pages-wrapper .acf-no-field-groups-inner .acf-admin-page p,\n.acf-admin-page .acf-no-options-pages-wrapper .acf-no-taxonomies-inner p,\n.acf-no-options-pages-wrapper .acf-no-taxonomies-inner .acf-admin-page p,\n.acf-admin-page .acf-no-options-pages-wrapper .acf-no-post-types-inner p,\n.acf-no-options-pages-wrapper .acf-no-post-types-inner .acf-admin-page p,\n.acf-admin-page .acf-no-options-pages-wrapper .acf-no-options-pages-inner p,\n.acf-no-options-pages-wrapper .acf-no-options-pages-inner .acf-admin-page p,\n.acf-admin-page .acf-no-options-pages-wrapper .acf-options-preview-inner p,\n.acf-no-options-pages-wrapper .acf-options-preview-inner .acf-admin-page p,\n.acf-admin-page .acf-options-preview-wrapper .acf-no-field-groups-inner p,\n.acf-options-preview-wrapper .acf-no-field-groups-inner .acf-admin-page p,\n.acf-admin-page .acf-options-preview-wrapper .acf-no-taxonomies-inner p,\n.acf-options-preview-wrapper .acf-no-taxonomies-inner .acf-admin-page p,\n.acf-admin-page .acf-options-preview-wrapper .acf-no-post-types-inner p,\n.acf-options-preview-wrapper .acf-no-post-types-inner .acf-admin-page p,\n.acf-admin-page .acf-options-preview-wrapper .acf-no-options-pages-inner p,\n.acf-options-preview-wrapper .acf-no-options-pages-inner .acf-admin-page p,\n.acf-admin-page .acf-options-preview-wrapper .acf-options-preview-inner p,\n.acf-options-preview-wrapper .acf-options-preview-inner .acf-admin-page p, .acf-admin-page #acf-admin-tools .acf-meta-box-wrap .acf-fields .acf-label, #acf-admin-tools .acf-meta-box-wrap .acf-fields .acf-admin-page .acf-label {\n font-size: 14px;\n}\n.acf-admin-page .p3, .acf-admin-page .acf-internal-post-type .wp-list-table .post-state, .acf-internal-post-type .wp-list-table .acf-admin-page .post-state, .acf-admin-page .subtitle {\n font-size: 13.5px;\n}\n.acf-admin-page .p4, .acf-admin-page .acf-admin-toolbar a.acf-admin-toolbar-upgrade-btn p, .acf-admin-toolbar a.acf-admin-toolbar-upgrade-btn .acf-admin-page p, .acf-admin-page #acf-update-information .form-table th, #acf-update-information .form-table .acf-admin-page th,\n.acf-admin-page #acf-update-information .form-table td,\n#acf-update-information .form-table .acf-admin-page td, .acf-admin-page #acf-admin-tools.tool-export .acf-panel h3, #acf-admin-tools.tool-export .acf-panel .acf-admin-page h3, .acf-admin-page .acf-btn.acf-btn-sm, .acf-admin-page .acf-admin-toolbar .acf-tab, .acf-admin-toolbar .acf-admin-page .acf-tab, .acf-admin-page .acf-options-preview .acf-options-pages-preview-upgrade-button p, .acf-options-preview .acf-options-pages-preview-upgrade-button .acf-admin-page p, .acf-admin-page .acf-internal-post-type .subsubsub li, .acf-internal-post-type .subsubsub .acf-admin-page li, .acf-admin-page .acf-internal-post-type .wp-list-table tbody th, .acf-internal-post-type .wp-list-table tbody .acf-admin-page th,\n.acf-admin-page .acf-internal-post-type .wp-list-table tbody td,\n.acf-internal-post-type .wp-list-table tbody .acf-admin-page td, .acf-admin-page .acf-internal-post-type .wp-list-table thead th, .acf-internal-post-type .wp-list-table thead .acf-admin-page th, .acf-admin-page .acf-internal-post-type .wp-list-table thead td, .acf-internal-post-type .wp-list-table thead .acf-admin-page td,\n.acf-admin-page .acf-internal-post-type .wp-list-table tfoot th,\n.acf-internal-post-type .wp-list-table tfoot .acf-admin-page th, .acf-admin-page .acf-internal-post-type .wp-list-table tfoot td, .acf-internal-post-type .wp-list-table tfoot .acf-admin-page td, .acf-admin-page .acf-input .select2-container.-acf .select2-selection__rendered, .acf-admin-page .button, .acf-admin-page input[type=text],\n.acf-admin-page input[type=search],\n.acf-admin-page input[type=number],\n.acf-admin-page textarea,\n.acf-admin-page select {\n font-size: 13px;\n}\n.acf-admin-page .p5, .acf-admin-page .acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-content .acf-field-types-tab .acf-field-type .field-type-label, .acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-content .acf-field-types-tab .acf-field-type .acf-admin-page .field-type-label,\n.acf-admin-page .acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-content .acf-field-type-search-results .acf-field-type .field-type-label,\n.acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-content .acf-field-type-search-results .acf-field-type .acf-admin-page .field-type-label, .acf-admin-page .acf-internal-post-type .row-actions, .acf-internal-post-type .acf-admin-page .row-actions, .acf-admin-page .acf-notice .button,\n.acf-admin-page .notice .button,\n.acf-admin-page #lost-connection-notice .button {\n font-size: 12.5px;\n}\n.acf-admin-page .p6, .acf-admin-page #acf-update-information .acf-update-changelog p em, #acf-update-information .acf-update-changelog p .acf-admin-page em, .acf-admin-page .acf-no-field-groups-wrapper .acf-no-field-groups-inner p.acf-small, .acf-no-field-groups-wrapper .acf-no-field-groups-inner .acf-admin-page p.acf-small,\n.acf-admin-page .acf-no-field-groups-wrapper .acf-no-taxonomies-inner p.acf-small,\n.acf-no-field-groups-wrapper .acf-no-taxonomies-inner .acf-admin-page p.acf-small,\n.acf-admin-page .acf-no-field-groups-wrapper .acf-no-post-types-inner p.acf-small,\n.acf-no-field-groups-wrapper .acf-no-post-types-inner .acf-admin-page p.acf-small,\n.acf-admin-page .acf-no-field-groups-wrapper .acf-no-options-pages-inner p.acf-small,\n.acf-no-field-groups-wrapper .acf-no-options-pages-inner .acf-admin-page p.acf-small,\n.acf-admin-page .acf-no-field-groups-wrapper .acf-options-preview-inner p.acf-small,\n.acf-no-field-groups-wrapper .acf-options-preview-inner .acf-admin-page p.acf-small,\n.acf-admin-page .acf-no-taxonomies-wrapper .acf-no-field-groups-inner p.acf-small,\n.acf-no-taxonomies-wrapper .acf-no-field-groups-inner .acf-admin-page p.acf-small,\n.acf-admin-page .acf-no-taxonomies-wrapper .acf-no-taxonomies-inner p.acf-small,\n.acf-no-taxonomies-wrapper .acf-no-taxonomies-inner .acf-admin-page p.acf-small,\n.acf-admin-page .acf-no-taxonomies-wrapper .acf-no-post-types-inner p.acf-small,\n.acf-no-taxonomies-wrapper .acf-no-post-types-inner .acf-admin-page p.acf-small,\n.acf-admin-page .acf-no-taxonomies-wrapper .acf-no-options-pages-inner p.acf-small,\n.acf-no-taxonomies-wrapper .acf-no-options-pages-inner .acf-admin-page p.acf-small,\n.acf-admin-page .acf-no-taxonomies-wrapper .acf-options-preview-inner p.acf-small,\n.acf-no-taxonomies-wrapper .acf-options-preview-inner .acf-admin-page p.acf-small,\n.acf-admin-page .acf-no-post-types-wrapper .acf-no-field-groups-inner p.acf-small,\n.acf-no-post-types-wrapper .acf-no-field-groups-inner .acf-admin-page p.acf-small,\n.acf-admin-page .acf-no-post-types-wrapper .acf-no-taxonomies-inner p.acf-small,\n.acf-no-post-types-wrapper .acf-no-taxonomies-inner .acf-admin-page p.acf-small,\n.acf-admin-page .acf-no-post-types-wrapper .acf-no-post-types-inner p.acf-small,\n.acf-no-post-types-wrapper .acf-no-post-types-inner .acf-admin-page p.acf-small,\n.acf-admin-page .acf-no-post-types-wrapper .acf-no-options-pages-inner p.acf-small,\n.acf-no-post-types-wrapper .acf-no-options-pages-inner .acf-admin-page p.acf-small,\n.acf-admin-page .acf-no-post-types-wrapper .acf-options-preview-inner p.acf-small,\n.acf-no-post-types-wrapper .acf-options-preview-inner .acf-admin-page p.acf-small,\n.acf-admin-page .acf-no-options-pages-wrapper .acf-no-field-groups-inner p.acf-small,\n.acf-no-options-pages-wrapper .acf-no-field-groups-inner .acf-admin-page p.acf-small,\n.acf-admin-page .acf-no-options-pages-wrapper .acf-no-taxonomies-inner p.acf-small,\n.acf-no-options-pages-wrapper .acf-no-taxonomies-inner .acf-admin-page p.acf-small,\n.acf-admin-page .acf-no-options-pages-wrapper .acf-no-post-types-inner p.acf-small,\n.acf-no-options-pages-wrapper .acf-no-post-types-inner .acf-admin-page p.acf-small,\n.acf-admin-page .acf-no-options-pages-wrapper .acf-no-options-pages-inner p.acf-small,\n.acf-no-options-pages-wrapper .acf-no-options-pages-inner .acf-admin-page p.acf-small,\n.acf-admin-page .acf-no-options-pages-wrapper .acf-options-preview-inner p.acf-small,\n.acf-no-options-pages-wrapper .acf-options-preview-inner .acf-admin-page p.acf-small,\n.acf-admin-page .acf-options-preview-wrapper .acf-no-field-groups-inner p.acf-small,\n.acf-options-preview-wrapper .acf-no-field-groups-inner .acf-admin-page p.acf-small,\n.acf-admin-page .acf-options-preview-wrapper .acf-no-taxonomies-inner p.acf-small,\n.acf-options-preview-wrapper .acf-no-taxonomies-inner .acf-admin-page p.acf-small,\n.acf-admin-page .acf-options-preview-wrapper .acf-no-post-types-inner p.acf-small,\n.acf-options-preview-wrapper .acf-no-post-types-inner .acf-admin-page p.acf-small,\n.acf-admin-page .acf-options-preview-wrapper .acf-no-options-pages-inner p.acf-small,\n.acf-options-preview-wrapper .acf-no-options-pages-inner .acf-admin-page p.acf-small,\n.acf-admin-page .acf-options-preview-wrapper .acf-options-preview-inner p.acf-small,\n.acf-options-preview-wrapper .acf-options-preview-inner .acf-admin-page p.acf-small, .acf-admin-page .acf-internal-post-type .row-actions, .acf-internal-post-type .acf-admin-page .row-actions, .acf-admin-page .acf-small {\n font-size: 12px;\n}\n.acf-admin-page .p7, .acf-admin-page .acf-tooltip, .acf-admin-page .acf-notice p.help,\n.acf-admin-page .notice p.help,\n.acf-admin-page #lost-connection-notice p.help {\n font-size: 11.5px;\n}\n.acf-admin-page .p8 {\n font-size: 11px;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Page titles\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-page-title {\n color: #344054;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Hide old / native WP titles from pages\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-admin-page .acf-settings-wrap h1 {\n display: none !important;\n}\n.acf-admin-page #acf-admin-tools h1:not(.acf-field-group-pro-features-title, .acf-field-group-pro-features-title-sm) {\n display: none !important;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Small\n*\n*---------------------------------------------------------------------------------------------*/\n/*---------------------------------------------------------------------------------------------\n*\n* Link focus style\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-admin-page a:focus {\n box-shadow: none;\n outline: none;\n}\n.acf-admin-page a:focus-visible {\n box-shadow: 0 0 0 1px #4f94d4, 0 0 2px 1px rgba(79, 148, 212, 0.8);\n outline: 1px solid transparent;\n}\n\n.acf-admin-page {\n /*---------------------------------------------------------------------------------------------\n *\n * All Inputs\n *\n *---------------------------------------------------------------------------------------------*/\n /*---------------------------------------------------------------------------------------------\n *\n * Read only text inputs\n *\n *---------------------------------------------------------------------------------------------*/\n /*---------------------------------------------------------------------------------------------\n *\n * Number fields\n *\n *---------------------------------------------------------------------------------------------*/\n /*---------------------------------------------------------------------------------------------\n *\n * Textarea\n *\n *---------------------------------------------------------------------------------------------*/\n /*---------------------------------------------------------------------------------------------\n *\n * Select\n *\n *---------------------------------------------------------------------------------------------*/\n /*---------------------------------------------------------------------------------------------\n *\n * Radio Button & Checkbox base styling\n *\n *---------------------------------------------------------------------------------------------*/\n /*---------------------------------------------------------------------------------------------\n *\n * Radio Buttons\n *\n *---------------------------------------------------------------------------------------------*/\n /*---------------------------------------------------------------------------------------------\n *\n * Checkboxes\n *\n *---------------------------------------------------------------------------------------------*/\n /*---------------------------------------------------------------------------------------------\n *\n * Radio Buttons & Checkbox lists\n *\n *---------------------------------------------------------------------------------------------*/\n /*---------------------------------------------------------------------------------------------\n *\n * ACF Switch\n *\n *---------------------------------------------------------------------------------------------*/\n /*---------------------------------------------------------------------------------------------\n *\n * File input button\n *\n *---------------------------------------------------------------------------------------------*/\n /*---------------------------------------------------------------------------------------------\n *\n * Action Buttons\n *\n *---------------------------------------------------------------------------------------------*/\n /*---------------------------------------------------------------------------------------------\n *\n * Edit field group header\n *\n *---------------------------------------------------------------------------------------------*/\n /*---------------------------------------------------------------------------------------------\n *\n * Select2 inputs\n *\n *---------------------------------------------------------------------------------------------*/\n /*---------------------------------------------------------------------------------------------\n *\n * ACF label\n *\n *---------------------------------------------------------------------------------------------*/\n /*---------------------------------------------------------------------------------------------\n *\n * Tooltip for field name field setting (result of a fix for keyboard navigation)\n *\n *---------------------------------------------------------------------------------------------*/\n /* Field Type Selection select2 */\n /*---------------------------------------------------------------------------------------------\n *\n * RTL arrow position\n *\n *---------------------------------------------------------------------------------------------*/\n}\n.acf-admin-page input[type=text],\n.acf-admin-page input[type=search],\n.acf-admin-page input[type=number],\n.acf-admin-page textarea,\n.acf-admin-page select {\n box-sizing: border-box;\n height: 40px;\n padding-right: 12px;\n padding-left: 12px;\n background-color: #fff;\n border-color: #D0D5DD;\n box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.1);\n border-radius: 6px;\n color: #344054;\n}\n.acf-admin-page input[type=text]:focus,\n.acf-admin-page input[type=search]:focus,\n.acf-admin-page input[type=number]:focus,\n.acf-admin-page textarea:focus,\n.acf-admin-page select:focus {\n outline: 3px solid #EBF5FA;\n border-color: #399CCB;\n}\n.acf-admin-page input[type=text]:disabled,\n.acf-admin-page input[type=search]:disabled,\n.acf-admin-page input[type=number]:disabled,\n.acf-admin-page textarea:disabled,\n.acf-admin-page select:disabled {\n background-color: #F9FAFB;\n color: #808a9e;\n}\n.acf-admin-page input[type=text]::placeholder,\n.acf-admin-page input[type=search]::placeholder,\n.acf-admin-page input[type=number]::placeholder,\n.acf-admin-page textarea::placeholder,\n.acf-admin-page select::placeholder {\n color: #98A2B3;\n}\n.acf-admin-page input[type=text]:read-only {\n background-color: #F9FAFB;\n color: #98A2B3;\n}\n.acf-admin-page .acf-field.acf-field-number .acf-label,\n.acf-admin-page .acf-field.acf-field-number .acf-input input[type=number] {\n max-width: 180px;\n}\n.acf-admin-page textarea {\n box-sizing: border-box;\n padding-top: 10px;\n padding-bottom: 10px;\n height: 80px;\n min-height: 56px;\n}\n.acf-admin-page select {\n min-width: 160px;\n max-width: 100%;\n padding-right: 40px;\n padding-left: 12px;\n background-image: url(\"../../images/icons/icon-chevron-down.svg\");\n background-position: right 10px top 50%;\n background-size: 20px;\n}\n.acf-admin-page select:hover, .acf-admin-page select:focus {\n color: #0783BE;\n}\n.acf-admin-page select::before {\n content: \"\";\n display: block;\n position: absolute;\n top: 5px;\n left: 5px;\n width: 20px;\n height: 20px;\n}\n.acf-admin-page.rtl select {\n padding-right: 12px;\n padding-left: 40px;\n background-position: left 10px top 50%;\n}\n.acf-admin-page input[type=radio],\n.acf-admin-page input[type=checkbox] {\n box-sizing: border-box;\n width: 16px;\n height: 16px;\n padding: 0;\n border-width: 1px;\n border-style: solid;\n border-color: #98A2B3;\n background: #fff;\n box-shadow: none;\n}\n.acf-admin-page input[type=radio]:hover,\n.acf-admin-page input[type=checkbox]:hover {\n background-color: #EBF5FA;\n border-color: #0783BE;\n}\n.acf-admin-page input[type=radio]:checked, .acf-admin-page input[type=radio]:focus-visible,\n.acf-admin-page input[type=checkbox]:checked,\n.acf-admin-page input[type=checkbox]:focus-visible {\n background-color: #EBF5FA;\n border-color: #0783BE;\n}\n.acf-admin-page input[type=radio]:checked:before, .acf-admin-page input[type=radio]:focus-visible:before,\n.acf-admin-page input[type=checkbox]:checked:before,\n.acf-admin-page input[type=checkbox]:focus-visible:before {\n content: \"\";\n position: relative;\n top: -1px;\n left: -1px;\n width: 16px;\n height: 16px;\n margin: 0;\n padding: 0;\n background-color: transparent;\n background-size: cover;\n background-repeat: no-repeat;\n background-position: center;\n}\n.acf-admin-page input[type=radio]:active,\n.acf-admin-page input[type=checkbox]:active {\n box-shadow: 0px 0px 0px 3px #EBF5FA, 0px 0px 0px rgba(255, 54, 54, 0.25);\n}\n.acf-admin-page input[type=radio]:disabled,\n.acf-admin-page input[type=checkbox]:disabled {\n background-color: #F9FAFB;\n border-color: #D0D5DD;\n}\n.acf-admin-page.rtl input[type=radio]:checked:before, .acf-admin-page.rtl input[type=radio]:focus-visible:before,\n.acf-admin-page.rtl input[type=checkbox]:checked:before,\n.acf-admin-page.rtl input[type=checkbox]:focus-visible:before {\n left: 1px;\n}\n.acf-admin-page input[type=radio]:checked:before, .acf-admin-page input[type=radio]:focus:before {\n background-image: url(\"../../images/field-states/radio-active.svg\");\n}\n.acf-admin-page input[type=checkbox]:checked:before, .acf-admin-page input[type=checkbox]:focus:before {\n background-image: url(\"../../images/field-states/checkbox-active.svg\");\n}\n.acf-admin-page .acf-radio-list li input[type=radio],\n.acf-admin-page .acf-radio-list li input[type=checkbox],\n.acf-admin-page .acf-checkbox-list li input[type=radio],\n.acf-admin-page .acf-checkbox-list li input[type=checkbox] {\n margin-right: 6px;\n}\n.acf-admin-page .acf-radio-list.acf-bl li,\n.acf-admin-page .acf-checkbox-list.acf-bl li {\n margin-bottom: 8px;\n}\n.acf-admin-page .acf-radio-list.acf-bl li:last-of-type,\n.acf-admin-page .acf-checkbox-list.acf-bl li:last-of-type {\n margin-bottom: 0;\n}\n.acf-admin-page .acf-radio-list label,\n.acf-admin-page .acf-checkbox-list label {\n display: flex;\n align-items: center;\n align-content: center;\n}\n.acf-admin-page .acf-switch {\n width: 42px;\n height: 24px;\n border: none;\n background-color: #D0D5DD;\n border-radius: 12px;\n}\n.acf-admin-page .acf-switch:hover {\n background-color: #98A2B3;\n}\n.acf-admin-page .acf-switch:active {\n box-shadow: 0px 0px 0px 3px #EBF5FA, 0px 0px 0px rgba(255, 54, 54, 0.25);\n}\n.acf-admin-page .acf-switch.-on {\n background-color: #0783BE;\n}\n.acf-admin-page .acf-switch.-on:hover {\n background-color: #066998;\n}\n.acf-admin-page .acf-switch.-on .acf-switch-slider {\n left: 20px;\n}\n.acf-admin-page .acf-switch .acf-switch-off,\n.acf-admin-page .acf-switch .acf-switch-on {\n visibility: hidden;\n}\n.acf-admin-page .acf-switch .acf-switch-slider {\n width: 20px;\n height: 20px;\n border: none;\n border-radius: 100px;\n box-shadow: 0px 1px 3px rgba(16, 24, 40, 0.1), 0px 1px 2px rgba(16, 24, 40, 0.06);\n}\n.acf-admin-page .acf-field-true-false {\n display: flex;\n align-items: flex-start;\n}\n.acf-admin-page .acf-field-true-false .acf-label {\n order: 2;\n display: block;\n align-items: center;\n margin-top: 2px;\n margin-bottom: 0;\n margin-left: 12px;\n}\n.acf-admin-page .acf-field-true-false .acf-label label {\n margin-bottom: 0;\n}\n.acf-admin-page .acf-field-true-false .acf-label .acf-tip {\n margin-left: 12px;\n}\n.acf-admin-page .acf-field-true-false .acf-label .description {\n display: block;\n margin-top: 2px;\n margin-left: 0;\n}\n.acf-admin-page.rtl .acf-field-true-false .acf-label {\n margin-right: 12px;\n margin-left: 0;\n}\n.acf-admin-page.rtl .acf-field-true-false .acf-tip {\n margin-right: 12px;\n margin-left: 0;\n}\n.acf-admin-page input::file-selector-button {\n box-sizing: border-box;\n min-height: 40px;\n margin-right: 16px;\n padding-top: 8px;\n padding-right: 16px;\n padding-bottom: 8px;\n padding-left: 16px;\n background-color: transparent;\n color: #0783BE !important;\n border-radius: 6px;\n border-width: 1px;\n border-style: solid;\n border-color: #0783BE;\n text-decoration: none;\n}\n.acf-admin-page input::file-selector-button:hover {\n border-color: #066998;\n cursor: pointer;\n color: #066998 !important;\n}\n.acf-admin-page .button {\n display: inline-flex;\n align-items: center;\n height: 40px;\n padding-right: 16px;\n padding-left: 16px;\n background-color: transparent;\n border-width: 1px;\n border-style: solid;\n border-color: #0783BE;\n border-radius: 6px;\n color: #0783BE;\n}\n.acf-admin-page .button:hover {\n background-color: #f3f9fc;\n border-color: #0783BE;\n color: #0783BE;\n}\n.acf-admin-page .button:focus {\n background-color: #f3f9fc;\n outline: 3px solid #EBF5FA;\n color: #0783BE;\n}\n.acf-admin-page .edit-field-group-header {\n display: block !important;\n}\n.acf-admin-page .acf-input .select2-container.-acf .select2-selection {\n border: none;\n line-height: 1;\n}\n.acf-admin-page .acf-input .select2-container.-acf .select2-selection__rendered {\n box-sizing: border-box;\n padding-right: 0;\n padding-left: 0;\n background-color: #fff;\n border-width: 1px;\n border-style: solid;\n border-color: #D0D5DD;\n box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.1);\n border-radius: 6px;\n color: #344054;\n}\n.acf-admin-page .acf-input .select2-container--focus {\n outline: 3px solid #EBF5FA;\n border-color: #399CCB;\n border-radius: 6px;\n}\n.acf-admin-page .acf-input .select2-container--focus .select2-selection__rendered {\n border-color: #399CCB !important;\n}\n.acf-admin-page .acf-input .select2-container--focus.select2-container--below.select2-container--open .select2-selection__rendered {\n border-bottom-right-radius: 0 !important;\n border-bottom-left-radius: 0 !important;\n}\n.acf-admin-page .acf-input .select2-container--focus.select2-container--above.select2-container--open .select2-selection__rendered {\n border-top-right-radius: 0 !important;\n border-top-left-radius: 0 !important;\n}\n.acf-admin-page .acf-input .select2-container .select2-search--inline .select2-search__field {\n margin: 0;\n padding-left: 6px;\n}\n.acf-admin-page .acf-input .select2-container .select2-search--inline .select2-search__field:focus {\n outline: none;\n border: none;\n}\n.acf-admin-page .acf-input .select2-container--default .select2-selection--multiple .select2-selection__rendered {\n padding-top: 0;\n padding-right: 6px;\n padding-bottom: 0;\n padding-left: 6px;\n}\n.acf-admin-page .acf-input .select2-selection__clear {\n width: 18px;\n height: 18px;\n margin-top: 12px;\n margin-right: 1px;\n text-indent: 100%;\n white-space: nowrap;\n overflow: hidden;\n color: #fff;\n}\n.acf-admin-page .acf-input .select2-selection__clear:before {\n content: \"\";\n display: block;\n width: 16px;\n height: 16px;\n top: 0;\n left: 0;\n border: none;\n border-radius: 0;\n -webkit-mask-size: contain;\n mask-size: contain;\n -webkit-mask-repeat: no-repeat;\n mask-repeat: no-repeat;\n -webkit-mask-position: center;\n mask-position: center;\n -webkit-mask-image: url(\"../../images/icons/icon-close.svg\");\n mask-image: url(\"../../images/icons/icon-close.svg\");\n background-color: #98A2B3;\n}\n.acf-admin-page .acf-input .select2-selection__clear:hover::before {\n background-color: #0783BE;\n}\n.acf-admin-page .acf-label {\n display: flex;\n align-items: center;\n justify-content: space-between;\n}\n.acf-admin-page .acf-label .acf-icon-help {\n width: 18px;\n height: 18px;\n background-color: #98A2B3;\n}\n.acf-admin-page .acf-label label {\n margin-bottom: 0;\n}\n.acf-admin-page .acf-label .description {\n margin-top: 2px;\n}\n.acf-admin-page .acf-field-setting-name .acf-tip {\n position: absolute;\n top: 0;\n left: 654px;\n color: #98A2B3;\n}\n.rtl.acf-admin-page .acf-field-setting-name .acf-tip {\n left: auto;\n right: 654px;\n}\n\n.acf-admin-page .acf-field-setting-name .acf-tip .acf-icon-help {\n width: 18px;\n height: 18px;\n}\n.acf-admin-page .acf-field-setting-type .select2-container.-acf,\n.acf-admin-page .acf-field-permalink-rewrite .select2-container.-acf,\n.acf-admin-page .acf-field-query-var .select2-container.-acf,\n.acf-admin-page .acf-field-capability .select2-container.-acf,\n.acf-admin-page .acf-field-parent-slug .select2-container.-acf,\n.acf-admin-page .acf-field-data-storage .select2-container.-acf,\n.acf-admin-page .acf-field-manage-terms .select2-container.-acf,\n.acf-admin-page .acf-field-edit-terms .select2-container.-acf,\n.acf-admin-page .acf-field-delete-terms .select2-container.-acf,\n.acf-admin-page .acf-field-assign-terms .select2-container.-acf,\n.acf-admin-page .acf-field-meta-box .select2-container.-acf {\n min-height: 40px;\n}\n.acf-admin-page .acf-field-setting-type .select2-container--default .select2-selection--single .select2-selection__rendered,\n.acf-admin-page .acf-field-permalink-rewrite .select2-container--default .select2-selection--single .select2-selection__rendered,\n.acf-admin-page .acf-field-query-var .select2-container--default .select2-selection--single .select2-selection__rendered,\n.acf-admin-page .acf-field-capability .select2-container--default .select2-selection--single .select2-selection__rendered,\n.acf-admin-page .acf-field-parent-slug .select2-container--default .select2-selection--single .select2-selection__rendered,\n.acf-admin-page .acf-field-data-storage .select2-container--default .select2-selection--single .select2-selection__rendered,\n.acf-admin-page .acf-field-manage-terms .select2-container--default .select2-selection--single .select2-selection__rendered,\n.acf-admin-page .acf-field-edit-terms .select2-container--default .select2-selection--single .select2-selection__rendered,\n.acf-admin-page .acf-field-delete-terms .select2-container--default .select2-selection--single .select2-selection__rendered,\n.acf-admin-page .acf-field-assign-terms .select2-container--default .select2-selection--single .select2-selection__rendered,\n.acf-admin-page .acf-field-meta-box .select2-container--default .select2-selection--single .select2-selection__rendered {\n display: flex;\n align-items: center;\n position: relative;\n z-index: 800;\n min-height: 40px;\n padding-top: 0;\n padding-right: 12px;\n padding-bottom: 0;\n padding-left: 12px;\n}\n.acf-admin-page .acf-field-setting-type .select2-container--default .select2-selection--single .field-type-icon,\n.acf-admin-page .acf-field-permalink-rewrite .select2-container--default .select2-selection--single .field-type-icon,\n.acf-admin-page .acf-field-query-var .select2-container--default .select2-selection--single .field-type-icon,\n.acf-admin-page .acf-field-capability .select2-container--default .select2-selection--single .field-type-icon,\n.acf-admin-page .acf-field-parent-slug .select2-container--default .select2-selection--single .field-type-icon,\n.acf-admin-page .acf-field-data-storage .select2-container--default .select2-selection--single .field-type-icon,\n.acf-admin-page .acf-field-manage-terms .select2-container--default .select2-selection--single .field-type-icon,\n.acf-admin-page .acf-field-edit-terms .select2-container--default .select2-selection--single .field-type-icon,\n.acf-admin-page .acf-field-delete-terms .select2-container--default .select2-selection--single .field-type-icon,\n.acf-admin-page .acf-field-assign-terms .select2-container--default .select2-selection--single .field-type-icon,\n.acf-admin-page .acf-field-meta-box .select2-container--default .select2-selection--single .field-type-icon {\n top: auto;\n width: 18px;\n height: 18px;\n margin-right: 2px;\n}\n.acf-admin-page .acf-field-setting-type .select2-container--default .select2-selection--single .field-type-icon:before,\n.acf-admin-page .acf-field-permalink-rewrite .select2-container--default .select2-selection--single .field-type-icon:before,\n.acf-admin-page .acf-field-query-var .select2-container--default .select2-selection--single .field-type-icon:before,\n.acf-admin-page .acf-field-capability .select2-container--default .select2-selection--single .field-type-icon:before,\n.acf-admin-page .acf-field-parent-slug .select2-container--default .select2-selection--single .field-type-icon:before,\n.acf-admin-page .acf-field-data-storage .select2-container--default .select2-selection--single .field-type-icon:before,\n.acf-admin-page .acf-field-manage-terms .select2-container--default .select2-selection--single .field-type-icon:before,\n.acf-admin-page .acf-field-edit-terms .select2-container--default .select2-selection--single .field-type-icon:before,\n.acf-admin-page .acf-field-delete-terms .select2-container--default .select2-selection--single .field-type-icon:before,\n.acf-admin-page .acf-field-assign-terms .select2-container--default .select2-selection--single .field-type-icon:before,\n.acf-admin-page .acf-field-meta-box .select2-container--default .select2-selection--single .field-type-icon:before {\n width: 9px;\n height: 9px;\n}\n.acf-admin-page .acf-field-setting-type .select2-container--open .select2-selection__rendered,\n.acf-admin-page .acf-field-permalink-rewrite .select2-container--open .select2-selection__rendered,\n.acf-admin-page .acf-field-query-var .select2-container--open .select2-selection__rendered,\n.acf-admin-page .acf-field-capability .select2-container--open .select2-selection__rendered,\n.acf-admin-page .acf-field-parent-slug .select2-container--open .select2-selection__rendered,\n.acf-admin-page .acf-field-data-storage .select2-container--open .select2-selection__rendered,\n.acf-admin-page .acf-field-manage-terms .select2-container--open .select2-selection__rendered,\n.acf-admin-page .acf-field-edit-terms .select2-container--open .select2-selection__rendered,\n.acf-admin-page .acf-field-delete-terms .select2-container--open .select2-selection__rendered,\n.acf-admin-page .acf-field-assign-terms .select2-container--open .select2-selection__rendered,\n.acf-admin-page .acf-field-meta-box .select2-container--open .select2-selection__rendered {\n border-color: #6BB5D8 !important;\n border-bottom-color: #D0D5DD !important;\n}\n.acf-admin-page .acf-field-setting-type .select2-container--open.select2-container--below .select2-selection__rendered,\n.acf-admin-page .acf-field-permalink-rewrite .select2-container--open.select2-container--below .select2-selection__rendered,\n.acf-admin-page .acf-field-query-var .select2-container--open.select2-container--below .select2-selection__rendered,\n.acf-admin-page .acf-field-capability .select2-container--open.select2-container--below .select2-selection__rendered,\n.acf-admin-page .acf-field-parent-slug .select2-container--open.select2-container--below .select2-selection__rendered,\n.acf-admin-page .acf-field-data-storage .select2-container--open.select2-container--below .select2-selection__rendered,\n.acf-admin-page .acf-field-manage-terms .select2-container--open.select2-container--below .select2-selection__rendered,\n.acf-admin-page .acf-field-edit-terms .select2-container--open.select2-container--below .select2-selection__rendered,\n.acf-admin-page .acf-field-delete-terms .select2-container--open.select2-container--below .select2-selection__rendered,\n.acf-admin-page .acf-field-assign-terms .select2-container--open.select2-container--below .select2-selection__rendered,\n.acf-admin-page .acf-field-meta-box .select2-container--open.select2-container--below .select2-selection__rendered {\n border-bottom-right-radius: 0 !important;\n border-bottom-left-radius: 0 !important;\n}\n.acf-admin-page .acf-field-setting-type .select2-container--open.select2-container--above .select2-selection__rendered,\n.acf-admin-page .acf-field-permalink-rewrite .select2-container--open.select2-container--above .select2-selection__rendered,\n.acf-admin-page .acf-field-query-var .select2-container--open.select2-container--above .select2-selection__rendered,\n.acf-admin-page .acf-field-capability .select2-container--open.select2-container--above .select2-selection__rendered,\n.acf-admin-page .acf-field-parent-slug .select2-container--open.select2-container--above .select2-selection__rendered,\n.acf-admin-page .acf-field-data-storage .select2-container--open.select2-container--above .select2-selection__rendered,\n.acf-admin-page .acf-field-manage-terms .select2-container--open.select2-container--above .select2-selection__rendered,\n.acf-admin-page .acf-field-edit-terms .select2-container--open.select2-container--above .select2-selection__rendered,\n.acf-admin-page .acf-field-delete-terms .select2-container--open.select2-container--above .select2-selection__rendered,\n.acf-admin-page .acf-field-assign-terms .select2-container--open.select2-container--above .select2-selection__rendered,\n.acf-admin-page .acf-field-meta-box .select2-container--open.select2-container--above .select2-selection__rendered {\n border-top-right-radius: 0 !important;\n border-top-left-radius: 0 !important;\n border-bottom-color: #6BB5D8 !important;\n border-top-color: #D0D5DD !important;\n}\n.acf-admin-page .acf-field-setting-type .acf-selection.has-icon,\n.acf-admin-page .acf-field-permalink-rewrite .acf-selection.has-icon,\n.acf-admin-page .acf-field-query-var .acf-selection.has-icon,\n.acf-admin-page .acf-field-capability .acf-selection.has-icon,\n.acf-admin-page .acf-field-parent-slug .acf-selection.has-icon,\n.acf-admin-page .acf-field-data-storage .acf-selection.has-icon,\n.acf-admin-page .acf-field-manage-terms .acf-selection.has-icon,\n.acf-admin-page .acf-field-edit-terms .acf-selection.has-icon,\n.acf-admin-page .acf-field-delete-terms .acf-selection.has-icon,\n.acf-admin-page .acf-field-assign-terms .acf-selection.has-icon,\n.acf-admin-page .acf-field-meta-box .acf-selection.has-icon {\n margin-left: 6px;\n}\n.rtl.acf-admin-page .acf-field-setting-type .acf-selection.has-icon, .acf-admin-page .acf-field-permalink-rewrite .acf-selection.has-icon, .acf-admin-page .acf-field-query-var .acf-selection.has-icon, .acf-admin-page .acf-field-capability .acf-selection.has-icon, .acf-admin-page .acf-field-parent-slug .acf-selection.has-icon, .acf-admin-page .acf-field-data-storage .acf-selection.has-icon, .acf-admin-page .acf-field-manage-terms .acf-selection.has-icon, .acf-admin-page .acf-field-edit-terms .acf-selection.has-icon, .acf-admin-page .acf-field-delete-terms .acf-selection.has-icon, .acf-admin-page .acf-field-assign-terms .acf-selection.has-icon, .acf-admin-page .acf-field-meta-box .acf-selection.has-icon {\n margin-right: 6px;\n}\n\n.acf-admin-page .acf-field-setting-type .select2-selection__arrow,\n.acf-admin-page .acf-field-permalink-rewrite .select2-selection__arrow,\n.acf-admin-page .acf-field-query-var .select2-selection__arrow,\n.acf-admin-page .acf-field-capability .select2-selection__arrow,\n.acf-admin-page .acf-field-parent-slug .select2-selection__arrow,\n.acf-admin-page .acf-field-data-storage .select2-selection__arrow,\n.acf-admin-page .acf-field-manage-terms .select2-selection__arrow,\n.acf-admin-page .acf-field-edit-terms .select2-selection__arrow,\n.acf-admin-page .acf-field-delete-terms .select2-selection__arrow,\n.acf-admin-page .acf-field-assign-terms .select2-selection__arrow,\n.acf-admin-page .acf-field-meta-box .select2-selection__arrow {\n width: 20px;\n height: 20px;\n top: calc(50% - 10px);\n right: 12px;\n background-color: transparent;\n}\n.acf-admin-page .acf-field-setting-type .select2-selection__arrow:after,\n.acf-admin-page .acf-field-permalink-rewrite .select2-selection__arrow:after,\n.acf-admin-page .acf-field-query-var .select2-selection__arrow:after,\n.acf-admin-page .acf-field-capability .select2-selection__arrow:after,\n.acf-admin-page .acf-field-parent-slug .select2-selection__arrow:after,\n.acf-admin-page .acf-field-data-storage .select2-selection__arrow:after,\n.acf-admin-page .acf-field-manage-terms .select2-selection__arrow:after,\n.acf-admin-page .acf-field-edit-terms .select2-selection__arrow:after,\n.acf-admin-page .acf-field-delete-terms .select2-selection__arrow:after,\n.acf-admin-page .acf-field-assign-terms .select2-selection__arrow:after,\n.acf-admin-page .acf-field-meta-box .select2-selection__arrow:after {\n content: \"\";\n display: block;\n position: absolute;\n z-index: 850;\n top: 1px;\n left: 0;\n width: 20px;\n height: 20px;\n -webkit-mask-image: url(\"../../images/icons/icon-chevron-down.svg\");\n mask-image: url(\"../../images/icons/icon-chevron-down.svg\");\n background-color: #667085;\n border: none;\n border-radius: 0;\n -webkit-mask-size: contain;\n mask-size: contain;\n -webkit-mask-repeat: no-repeat;\n mask-repeat: no-repeat;\n -webkit-mask-position: center;\n mask-position: center;\n text-indent: 500%;\n white-space: nowrap;\n overflow: hidden;\n}\n.acf-admin-page .acf-field-setting-type .select2-selection__arrow b[role=presentation],\n.acf-admin-page .acf-field-permalink-rewrite .select2-selection__arrow b[role=presentation],\n.acf-admin-page .acf-field-query-var .select2-selection__arrow b[role=presentation],\n.acf-admin-page .acf-field-capability .select2-selection__arrow b[role=presentation],\n.acf-admin-page .acf-field-parent-slug .select2-selection__arrow b[role=presentation],\n.acf-admin-page .acf-field-data-storage .select2-selection__arrow b[role=presentation],\n.acf-admin-page .acf-field-manage-terms .select2-selection__arrow b[role=presentation],\n.acf-admin-page .acf-field-edit-terms .select2-selection__arrow b[role=presentation],\n.acf-admin-page .acf-field-delete-terms .select2-selection__arrow b[role=presentation],\n.acf-admin-page .acf-field-assign-terms .select2-selection__arrow b[role=presentation],\n.acf-admin-page .acf-field-meta-box .select2-selection__arrow b[role=presentation] {\n display: none;\n}\n.acf-admin-page .acf-field-setting-type .select2-container--open .select2-selection__arrow:after,\n.acf-admin-page .acf-field-permalink-rewrite .select2-container--open .select2-selection__arrow:after,\n.acf-admin-page .acf-field-query-var .select2-container--open .select2-selection__arrow:after,\n.acf-admin-page .acf-field-capability .select2-container--open .select2-selection__arrow:after,\n.acf-admin-page .acf-field-parent-slug .select2-container--open .select2-selection__arrow:after,\n.acf-admin-page .acf-field-data-storage .select2-container--open .select2-selection__arrow:after,\n.acf-admin-page .acf-field-manage-terms .select2-container--open .select2-selection__arrow:after,\n.acf-admin-page .acf-field-edit-terms .select2-container--open .select2-selection__arrow:after,\n.acf-admin-page .acf-field-delete-terms .select2-container--open .select2-selection__arrow:after,\n.acf-admin-page .acf-field-assign-terms .select2-container--open .select2-selection__arrow:after,\n.acf-admin-page .acf-field-meta-box .select2-container--open .select2-selection__arrow:after {\n -webkit-mask-image: url(\"../../images/icons/icon-chevron-up.svg\");\n mask-image: url(\"../../images/icons/icon-chevron-up.svg\");\n}\n.acf-admin-page .field-type-select-results {\n position: relative;\n top: 4px;\n z-index: 1002;\n border-radius: 0 0 6px 6px;\n box-shadow: 0px 8px 24px 4px rgba(16, 24, 40, 0.12);\n}\n.acf-admin-page .field-type-select-results.select2-dropdown--above {\n display: flex;\n flex-direction: column-reverse;\n top: 0;\n border-radius: 6px 6px 0 0;\n z-index: 99999;\n}\n.select2-container.select2-container--open.acf-admin-page .field-type-select-results {\n box-shadow: 0px 0px 0px 3px #EBF5FA, 0px 8px 24px 4px rgba(16, 24, 40, 0.12);\n}\n\n.acf-admin-page .field-type-select-results .acf-selection.has-icon {\n margin-left: 6px;\n}\n.rtl.acf-admin-page .field-type-select-results .acf-selection.has-icon {\n margin-right: 6px;\n}\n\n.acf-admin-page .field-type-select-results .select2-search {\n position: relative;\n margin: 0;\n padding: 0;\n}\n.acf-admin-page .field-type-select-results .select2-search--dropdown:after {\n content: \"\";\n display: block;\n position: absolute;\n top: 12px;\n left: 13px;\n width: 16px;\n height: 16px;\n -webkit-mask-image: url(\"../../images/icons/icon-search.svg\");\n mask-image: url(\"../../images/icons/icon-search.svg\");\n background-color: #98A2B3;\n border: none;\n border-radius: 0;\n -webkit-mask-size: contain;\n mask-size: contain;\n -webkit-mask-repeat: no-repeat;\n mask-repeat: no-repeat;\n -webkit-mask-position: center;\n mask-position: center;\n text-indent: 500%;\n white-space: nowrap;\n overflow: hidden;\n}\n.rtl.acf-admin-page .field-type-select-results .select2-search--dropdown:after {\n right: 12px;\n left: auto;\n}\n\n.acf-admin-page .field-type-select-results .select2-search .select2-search__field {\n padding-left: 38px;\n border-right: 0;\n border-bottom: 0;\n border-left: 0;\n border-radius: 0;\n}\n.rtl.acf-admin-page .field-type-select-results .select2-search .select2-search__field {\n padding-right: 38px;\n padding-left: 0;\n}\n\n.acf-admin-page .field-type-select-results .select2-search .select2-search__field:focus {\n border-top-color: #D0D5DD;\n outline: 0;\n}\n.acf-admin-page .field-type-select-results .select2-results__options {\n max-height: 440px;\n}\n.acf-admin-page .field-type-select-results .select2-results__option .select2-results__option--highlighted {\n background-color: #0783BE !important;\n color: #F9FAFB !important;\n}\n.acf-admin-page .field-type-select-results .select2-results__option .select2-results__option {\n display: inline-flex;\n position: relative;\n width: calc(100% - 24px);\n min-height: 32px;\n padding-top: 0;\n padding-right: 12px;\n padding-bottom: 0;\n padding-left: 12px;\n align-items: center;\n}\n.acf-admin-page .field-type-select-results .select2-results__option .select2-results__option .field-type-icon {\n top: auto;\n width: 18px;\n height: 18px;\n margin-right: 2px;\n box-shadow: 0 0 0 1px #F9FAFB;\n}\n.acf-admin-page .field-type-select-results .select2-results__option .select2-results__option .field-type-icon:before {\n width: 9px;\n height: 9px;\n}\n.acf-admin-page .field-type-select-results .select2-results__option[aria-selected=true] {\n background-color: #EBF5FA !important;\n color: #344054 !important;\n}\n.acf-admin-page .field-type-select-results .select2-results__option[aria-selected=true]:after {\n content: \"\";\n right: 13px;\n position: absolute;\n width: 16px;\n height: 16px;\n -webkit-mask-image: url(\"../../images/icons/icon-check.svg\");\n mask-image: url(\"../../images/icons/icon-check.svg\");\n background-color: #0783BE;\n border: none;\n border-radius: 0;\n -webkit-mask-size: contain;\n mask-size: contain;\n -webkit-mask-repeat: no-repeat;\n mask-repeat: no-repeat;\n -webkit-mask-position: center;\n mask-position: center;\n text-indent: 500%;\n white-space: nowrap;\n overflow: hidden;\n}\n.rtl.acf-admin-page .field-type-select-results .select2-results__option[aria-selected=true]:after {\n left: 13px;\n right: auto;\n}\n\n.acf-admin-page .field-type-select-results .select2-results__group {\n display: inline-flex;\n align-items: center;\n width: calc(100% - 24px);\n min-height: 25px;\n background-color: #F9FAFB;\n border-top-width: 1px;\n border-top-style: solid;\n border-top-color: #EAECF0;\n border-bottom-width: 1px;\n border-bottom-style: solid;\n border-bottom-color: #EAECF0;\n color: #98A2B3;\n font-size: 11px;\n margin-bottom: 0;\n padding-top: 0;\n padding-right: 12px;\n padding-bottom: 0;\n padding-left: 12px;\n font-weight: normal;\n}\n.acf-admin-page.rtl .acf-field-setting-type .select2-selection__arrow:after,\n.acf-admin-page.rtl .acf-field-permalink-rewrite .select2-selection__arrow:after,\n.acf-admin-page.rtl .acf-field-query-var .select2-selection__arrow:after {\n right: auto;\n left: 10px;\n}\n\n.rtl.post-type-acf-field-group .acf-field-setting-name .acf-tip,\n.rtl.acf-internal-post-type .acf-field-setting-name .acf-tip {\n left: auto;\n right: 654px;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Field Groups\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-internal-post-type .tablenav.top {\n display: none;\n}\n.acf-internal-post-type .subsubsub {\n margin-bottom: 3px;\n}\n.acf-internal-post-type .wp-list-table {\n margin-top: 0;\n margin-right: 0;\n margin-bottom: 0;\n margin-left: 0;\n border-radius: 8px;\n border: none;\n overflow: hidden;\n box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.1);\n}\n.acf-internal-post-type .wp-list-table strong {\n color: #98A2B3;\n margin: 0;\n}\n.acf-internal-post-type .wp-list-table a.row-title {\n font-size: 13px !important;\n font-weight: 500;\n}\n.acf-internal-post-type .wp-list-table th,\n.acf-internal-post-type .wp-list-table td {\n color: #344054;\n}\n.acf-internal-post-type .wp-list-table th.sortable a,\n.acf-internal-post-type .wp-list-table td.sortable a {\n padding: 0;\n}\n.acf-internal-post-type .wp-list-table th.check-column,\n.acf-internal-post-type .wp-list-table td.check-column {\n padding-top: 12px;\n padding-right: 16px;\n padding-left: 16px;\n}\n@media screen and (max-width: 880px) {\n .acf-internal-post-type .wp-list-table th.check-column,\n .acf-internal-post-type .wp-list-table td.check-column {\n vertical-align: top;\n padding-right: 2px;\n padding-left: 10px;\n }\n}\n.acf-internal-post-type .wp-list-table th input,\n.acf-internal-post-type .wp-list-table td input {\n margin: 0;\n padding: 0;\n}\n.acf-internal-post-type .wp-list-table th .acf-more-items,\n.acf-internal-post-type .wp-list-table td .acf-more-items {\n display: inline-flex;\n flex-direction: row;\n justify-content: center;\n align-items: center;\n padding: 0px 6px 1px;\n gap: 8px;\n width: 25px;\n height: 16px;\n background: #EAECF0;\n border-radius: 100px;\n font-weight: 400;\n font-size: 10px;\n color: #475467;\n}\n.acf-internal-post-type .wp-list-table th .acf-emdash,\n.acf-internal-post-type .wp-list-table td .acf-emdash {\n color: #D0D5DD;\n}\n.acf-internal-post-type .wp-list-table thead th, .acf-internal-post-type .wp-list-table thead td,\n.acf-internal-post-type .wp-list-table tfoot th, .acf-internal-post-type .wp-list-table tfoot td {\n height: 48px;\n padding-right: 24px;\n padding-left: 24px;\n box-sizing: border-box;\n background-color: #F9FAFB;\n border-color: #EAECF0;\n font-weight: 500;\n}\n@media screen and (max-width: 880px) {\n .acf-internal-post-type .wp-list-table thead th, .acf-internal-post-type .wp-list-table thead td,\n .acf-internal-post-type .wp-list-table tfoot th, .acf-internal-post-type .wp-list-table tfoot td {\n padding-right: 16px;\n padding-left: 8px;\n }\n}\n@media screen and (max-width: 880px) {\n .acf-internal-post-type .wp-list-table thead th.check-column, .acf-internal-post-type .wp-list-table thead td.check-column,\n .acf-internal-post-type .wp-list-table tfoot th.check-column, .acf-internal-post-type .wp-list-table tfoot td.check-column {\n vertical-align: middle;\n }\n}\n.acf-internal-post-type .wp-list-table tbody th,\n.acf-internal-post-type .wp-list-table tbody td {\n box-sizing: border-box;\n height: 60px;\n padding-top: 10px;\n padding-right: 24px;\n padding-bottom: 10px;\n padding-left: 24px;\n vertical-align: top;\n background-color: #fff;\n border-bottom-width: 1px;\n border-bottom-color: #EAECF0;\n border-bottom-style: solid;\n}\n@media screen and (max-width: 880px) {\n .acf-internal-post-type .wp-list-table tbody th,\n .acf-internal-post-type .wp-list-table tbody td {\n padding-right: 16px;\n padding-left: 8px;\n }\n}\n.acf-internal-post-type .wp-list-table .column-acf-key {\n white-space: nowrap;\n}\n.acf-internal-post-type .wp-list-table .column-acf-key .acf-icon-key-solid {\n display: inline-block;\n position: relative;\n bottom: -2px;\n width: 15px;\n height: 15px;\n margin-right: 4px;\n color: #98A2B3;\n}\n.acf-internal-post-type .wp-list-table .acf-location .dashicons {\n position: relative;\n bottom: -2px;\n width: 16px;\n height: 16px;\n margin-right: 6px;\n font-size: 16px;\n color: #98A2B3;\n}\n.acf-internal-post-type .wp-list-table .post-state {\n color: #667085;\n}\n.acf-internal-post-type .wp-list-table tr:hover,\n.acf-internal-post-type .wp-list-table tr:focus-within {\n background: #f7f7f7;\n}\n.acf-internal-post-type .wp-list-table tr:hover .row-actions,\n.acf-internal-post-type .wp-list-table tr:focus-within .row-actions {\n margin-bottom: 0;\n}\n@media screen and (min-width: 782px) {\n .acf-internal-post-type .wp-list-table .column-acf-count {\n width: 10%;\n }\n}\n.acf-internal-post-type .wp-list-table .row-actions span.file {\n display: block;\n overflow: hidden;\n white-space: nowrap;\n text-overflow: ellipsis;\n}\n.acf-internal-post-type.rtl .wp-list-table .column-acf-key .acf-icon-key-solid {\n margin-left: 4px;\n margin-right: 0;\n}\n.acf-internal-post-type.rtl .wp-list-table .acf-location .dashicons {\n margin-left: 6px;\n margin-right: 0;\n}\n.acf-internal-post-type .row-actions {\n margin-top: 2px;\n padding-top: 0;\n padding-right: 0;\n padding-bottom: 0;\n padding-left: 0;\n line-height: 14px;\n color: #D0D5DD;\n}\n.acf-internal-post-type .row-actions .trash a {\n color: #d94f4f;\n}\n.acf-internal-post-type .widefat thead td.check-column,\n.acf-internal-post-type .widefat tfoot td.check-column {\n padding-top: 0;\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tRow actions\n*\n*--------------------------------------------------------------------------------------------*/\n.acf-internal-post-type .row-actions a:hover {\n color: #044767;\n}\n.acf-internal-post-type .row-actions .trash a {\n color: #a00;\n}\n.acf-internal-post-type .row-actions .trash a:hover {\n color: #f00;\n}\n.acf-internal-post-type .row-actions.visible {\n margin-bottom: 0;\n opacity: 1;\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tRow hover\n*\n*--------------------------------------------------------------------------------------------*/\n.acf-internal-post-type #the-list tr:hover td,\n.acf-internal-post-type #the-list tr:hover th {\n background-color: #f7fbfd;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Table Nav\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-internal-post-type .tablenav {\n margin-top: 24px;\n margin-right: 0;\n margin-bottom: 0;\n margin-left: 0;\n padding-top: 0;\n padding-right: 0;\n padding-bottom: 0;\n padding-left: 0;\n color: #667085;\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tSearch box\n*\n*--------------------------------------------------------------------------------------------*/\n.acf-internal-post-type #posts-filter p.search-box {\n margin-top: 5px;\n margin-right: 0;\n margin-bottom: 24px;\n margin-left: 0;\n}\n.acf-internal-post-type #posts-filter p.search-box #post-search-input {\n min-width: 280px;\n margin-top: 0;\n margin-right: 8px;\n margin-bottom: 0;\n margin-left: 0;\n}\n@media screen and (max-width: 768px) {\n .acf-internal-post-type #posts-filter p.search-box {\n display: flex;\n box-sizing: border-box;\n padding-right: 24px;\n margin-right: 16px;\n position: inherit;\n }\n .acf-internal-post-type #posts-filter p.search-box #post-search-input {\n min-width: auto;\n }\n}\n\n.rtl.acf-internal-post-type #posts-filter p.search-box #post-search-input {\n margin-right: 0;\n margin-left: 8px;\n}\n@media screen and (max-width: 768px) {\n .rtl.acf-internal-post-type #posts-filter p.search-box {\n padding-left: 24px;\n padding-right: 0;\n margin-left: 16px;\n margin-right: 0;\n }\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tStatus tabs\n*\n*--------------------------------------------------------------------------------------------*/\n.acf-internal-post-type .subsubsub {\n display: flex;\n align-items: flex-end;\n height: 40px;\n margin-bottom: 16px;\n}\n.acf-internal-post-type .subsubsub li {\n margin-top: 0;\n margin-right: 4px;\n color: #98A2B3;\n}\n.acf-internal-post-type .subsubsub li .count {\n color: #667085;\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tPagination\n*\n*--------------------------------------------------------------------------------------------*/\n.acf-internal-post-type .tablenav-pages {\n display: flex;\n align-items: center;\n}\n.acf-internal-post-type .tablenav-pages.no-pages {\n display: none;\n}\n.acf-internal-post-type .tablenav-pages .displaying-num {\n margin-top: 0;\n margin-right: 16px;\n margin-bottom: 0;\n margin-left: 0;\n}\n.acf-internal-post-type .tablenav-pages .pagination-links {\n display: flex;\n align-items: center;\n}\n.acf-internal-post-type .tablenav-pages .pagination-links #table-paging {\n margin-top: 0;\n margin-right: 4px;\n margin-bottom: 0;\n margin-left: 8px;\n}\n.acf-internal-post-type .tablenav-pages .pagination-links #table-paging .total-pages {\n margin-right: 0;\n}\n.acf-internal-post-type .tablenav-pages.one-page .pagination-links {\n display: none;\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tPagination buttons & icons\n*\n*--------------------------------------------------------------------------------------------*/\n.acf-internal-post-type .tablenav-pages .pagination-links .button {\n display: inline-flex;\n align-items: center;\n align-content: center;\n justify-content: center;\n min-width: 40px;\n margin-top: 0;\n margin-right: 0;\n margin-bottom: 0;\n margin-left: 0;\n padding-top: 0;\n padding-right: 0;\n padding-bottom: 0;\n padding-left: 0;\n background-color: transparent;\n}\n.acf-internal-post-type .tablenav-pages .pagination-links .button:nth-child(1), .acf-internal-post-type .tablenav-pages .pagination-links .button:nth-child(2), .acf-internal-post-type .tablenav-pages .pagination-links .button:last-child, .acf-internal-post-type .tablenav-pages .pagination-links .button:nth-last-child(2) {\n display: inline-block;\n position: relative;\n text-indent: 100%;\n white-space: nowrap;\n overflow: hidden;\n margin-left: 4px;\n}\n.acf-internal-post-type .tablenav-pages .pagination-links .button:nth-child(1):before, .acf-internal-post-type .tablenav-pages .pagination-links .button:nth-child(2):before, .acf-internal-post-type .tablenav-pages .pagination-links .button:last-child:before, .acf-internal-post-type .tablenav-pages .pagination-links .button:nth-last-child(2):before {\n content: \"\";\n display: block;\n position: absolute;\n width: 100%;\n height: 100%;\n top: 0;\n left: 0;\n background-color: #0783BE;\n border-radius: 0;\n -webkit-mask-size: 20px;\n mask-size: 20px;\n -webkit-mask-repeat: no-repeat;\n mask-repeat: no-repeat;\n -webkit-mask-position: center;\n mask-position: center;\n}\n.acf-internal-post-type .tablenav-pages .pagination-links .button:nth-child(1):before {\n -webkit-mask-image: url(\"../../images/icons/icon-chevron-left-double.svg\");\n mask-image: url(\"../../images/icons/icon-chevron-left-double.svg\");\n}\n.acf-internal-post-type .tablenav-pages .pagination-links .button:nth-child(2):before {\n -webkit-mask-image: url(\"../../images/icons/icon-chevron-left.svg\");\n mask-image: url(\"../../images/icons/icon-chevron-left.svg\");\n}\n.acf-internal-post-type .tablenav-pages .pagination-links .button:nth-last-child(2):before {\n -webkit-mask-image: url(\"../../images/icons/icon-chevron-right.svg\");\n mask-image: url(\"../../images/icons/icon-chevron-right.svg\");\n}\n.acf-internal-post-type .tablenav-pages .pagination-links .button:last-child:before {\n -webkit-mask-image: url(\"../../images/icons/icon-chevron-right-double.svg\");\n mask-image: url(\"../../images/icons/icon-chevron-right-double.svg\");\n}\n.acf-internal-post-type .tablenav-pages .pagination-links .button:hover {\n border-color: #066998;\n background-color: rgba(7, 131, 190, 0.05);\n}\n.acf-internal-post-type .tablenav-pages .pagination-links .button:hover:before {\n background-color: #066998;\n}\n.acf-internal-post-type .tablenav-pages .pagination-links .button.disabled {\n background-color: transparent !important;\n}\n.acf-internal-post-type .tablenav-pages .pagination-links .button.disabled.disabled:before {\n background-color: #D0D5DD;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Empty state\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-no-field-groups-wrapper,\n.acf-no-taxonomies-wrapper,\n.acf-no-post-types-wrapper,\n.acf-no-options-pages-wrapper,\n.acf-options-preview-wrapper {\n display: flex;\n justify-content: center;\n padding-top: 48px;\n padding-bottom: 48px;\n}\n.acf-no-field-groups-wrapper .acf-no-field-groups-inner,\n.acf-no-field-groups-wrapper .acf-no-taxonomies-inner,\n.acf-no-field-groups-wrapper .acf-no-post-types-inner,\n.acf-no-field-groups-wrapper .acf-no-options-pages-inner,\n.acf-no-field-groups-wrapper .acf-options-preview-inner,\n.acf-no-taxonomies-wrapper .acf-no-field-groups-inner,\n.acf-no-taxonomies-wrapper .acf-no-taxonomies-inner,\n.acf-no-taxonomies-wrapper .acf-no-post-types-inner,\n.acf-no-taxonomies-wrapper .acf-no-options-pages-inner,\n.acf-no-taxonomies-wrapper .acf-options-preview-inner,\n.acf-no-post-types-wrapper .acf-no-field-groups-inner,\n.acf-no-post-types-wrapper .acf-no-taxonomies-inner,\n.acf-no-post-types-wrapper .acf-no-post-types-inner,\n.acf-no-post-types-wrapper .acf-no-options-pages-inner,\n.acf-no-post-types-wrapper .acf-options-preview-inner,\n.acf-no-options-pages-wrapper .acf-no-field-groups-inner,\n.acf-no-options-pages-wrapper .acf-no-taxonomies-inner,\n.acf-no-options-pages-wrapper .acf-no-post-types-inner,\n.acf-no-options-pages-wrapper .acf-no-options-pages-inner,\n.acf-no-options-pages-wrapper .acf-options-preview-inner,\n.acf-options-preview-wrapper .acf-no-field-groups-inner,\n.acf-options-preview-wrapper .acf-no-taxonomies-inner,\n.acf-options-preview-wrapper .acf-no-post-types-inner,\n.acf-options-preview-wrapper .acf-no-options-pages-inner,\n.acf-options-preview-wrapper .acf-options-preview-inner {\n display: flex;\n flex-wrap: wrap;\n justify-content: center;\n align-content: center;\n align-items: flex-start;\n text-align: center;\n max-width: 420px;\n min-height: 320px;\n}\n.acf-no-field-groups-wrapper .acf-no-field-groups-inner img,\n.acf-no-field-groups-wrapper .acf-no-field-groups-inner h2,\n.acf-no-field-groups-wrapper .acf-no-field-groups-inner p,\n.acf-no-field-groups-wrapper .acf-no-taxonomies-inner img,\n.acf-no-field-groups-wrapper .acf-no-taxonomies-inner h2,\n.acf-no-field-groups-wrapper .acf-no-taxonomies-inner p,\n.acf-no-field-groups-wrapper .acf-no-post-types-inner img,\n.acf-no-field-groups-wrapper .acf-no-post-types-inner h2,\n.acf-no-field-groups-wrapper .acf-no-post-types-inner p,\n.acf-no-field-groups-wrapper .acf-no-options-pages-inner img,\n.acf-no-field-groups-wrapper .acf-no-options-pages-inner h2,\n.acf-no-field-groups-wrapper .acf-no-options-pages-inner p,\n.acf-no-field-groups-wrapper .acf-options-preview-inner img,\n.acf-no-field-groups-wrapper .acf-options-preview-inner h2,\n.acf-no-field-groups-wrapper .acf-options-preview-inner p,\n.acf-no-taxonomies-wrapper .acf-no-field-groups-inner img,\n.acf-no-taxonomies-wrapper .acf-no-field-groups-inner h2,\n.acf-no-taxonomies-wrapper .acf-no-field-groups-inner p,\n.acf-no-taxonomies-wrapper .acf-no-taxonomies-inner img,\n.acf-no-taxonomies-wrapper .acf-no-taxonomies-inner h2,\n.acf-no-taxonomies-wrapper .acf-no-taxonomies-inner p,\n.acf-no-taxonomies-wrapper .acf-no-post-types-inner img,\n.acf-no-taxonomies-wrapper .acf-no-post-types-inner h2,\n.acf-no-taxonomies-wrapper .acf-no-post-types-inner p,\n.acf-no-taxonomies-wrapper .acf-no-options-pages-inner img,\n.acf-no-taxonomies-wrapper .acf-no-options-pages-inner h2,\n.acf-no-taxonomies-wrapper .acf-no-options-pages-inner p,\n.acf-no-taxonomies-wrapper .acf-options-preview-inner img,\n.acf-no-taxonomies-wrapper .acf-options-preview-inner h2,\n.acf-no-taxonomies-wrapper .acf-options-preview-inner p,\n.acf-no-post-types-wrapper .acf-no-field-groups-inner img,\n.acf-no-post-types-wrapper .acf-no-field-groups-inner h2,\n.acf-no-post-types-wrapper .acf-no-field-groups-inner p,\n.acf-no-post-types-wrapper .acf-no-taxonomies-inner img,\n.acf-no-post-types-wrapper .acf-no-taxonomies-inner h2,\n.acf-no-post-types-wrapper .acf-no-taxonomies-inner p,\n.acf-no-post-types-wrapper .acf-no-post-types-inner img,\n.acf-no-post-types-wrapper .acf-no-post-types-inner h2,\n.acf-no-post-types-wrapper .acf-no-post-types-inner p,\n.acf-no-post-types-wrapper .acf-no-options-pages-inner img,\n.acf-no-post-types-wrapper .acf-no-options-pages-inner h2,\n.acf-no-post-types-wrapper .acf-no-options-pages-inner p,\n.acf-no-post-types-wrapper .acf-options-preview-inner img,\n.acf-no-post-types-wrapper .acf-options-preview-inner h2,\n.acf-no-post-types-wrapper .acf-options-preview-inner p,\n.acf-no-options-pages-wrapper .acf-no-field-groups-inner img,\n.acf-no-options-pages-wrapper .acf-no-field-groups-inner h2,\n.acf-no-options-pages-wrapper .acf-no-field-groups-inner p,\n.acf-no-options-pages-wrapper .acf-no-taxonomies-inner img,\n.acf-no-options-pages-wrapper .acf-no-taxonomies-inner h2,\n.acf-no-options-pages-wrapper .acf-no-taxonomies-inner p,\n.acf-no-options-pages-wrapper .acf-no-post-types-inner img,\n.acf-no-options-pages-wrapper .acf-no-post-types-inner h2,\n.acf-no-options-pages-wrapper .acf-no-post-types-inner p,\n.acf-no-options-pages-wrapper .acf-no-options-pages-inner img,\n.acf-no-options-pages-wrapper .acf-no-options-pages-inner h2,\n.acf-no-options-pages-wrapper .acf-no-options-pages-inner p,\n.acf-no-options-pages-wrapper .acf-options-preview-inner img,\n.acf-no-options-pages-wrapper .acf-options-preview-inner h2,\n.acf-no-options-pages-wrapper .acf-options-preview-inner p,\n.acf-options-preview-wrapper .acf-no-field-groups-inner img,\n.acf-options-preview-wrapper .acf-no-field-groups-inner h2,\n.acf-options-preview-wrapper .acf-no-field-groups-inner p,\n.acf-options-preview-wrapper .acf-no-taxonomies-inner img,\n.acf-options-preview-wrapper .acf-no-taxonomies-inner h2,\n.acf-options-preview-wrapper .acf-no-taxonomies-inner p,\n.acf-options-preview-wrapper .acf-no-post-types-inner img,\n.acf-options-preview-wrapper .acf-no-post-types-inner h2,\n.acf-options-preview-wrapper .acf-no-post-types-inner p,\n.acf-options-preview-wrapper .acf-no-options-pages-inner img,\n.acf-options-preview-wrapper .acf-no-options-pages-inner h2,\n.acf-options-preview-wrapper .acf-no-options-pages-inner p,\n.acf-options-preview-wrapper .acf-options-preview-inner img,\n.acf-options-preview-wrapper .acf-options-preview-inner h2,\n.acf-options-preview-wrapper .acf-options-preview-inner p {\n flex: 1 0 100%;\n}\n.acf-no-field-groups-wrapper .acf-no-field-groups-inner h2,\n.acf-no-field-groups-wrapper .acf-no-taxonomies-inner h2,\n.acf-no-field-groups-wrapper .acf-no-post-types-inner h2,\n.acf-no-field-groups-wrapper .acf-no-options-pages-inner h2,\n.acf-no-field-groups-wrapper .acf-options-preview-inner h2,\n.acf-no-taxonomies-wrapper .acf-no-field-groups-inner h2,\n.acf-no-taxonomies-wrapper .acf-no-taxonomies-inner h2,\n.acf-no-taxonomies-wrapper .acf-no-post-types-inner h2,\n.acf-no-taxonomies-wrapper .acf-no-options-pages-inner h2,\n.acf-no-taxonomies-wrapper .acf-options-preview-inner h2,\n.acf-no-post-types-wrapper .acf-no-field-groups-inner h2,\n.acf-no-post-types-wrapper .acf-no-taxonomies-inner h2,\n.acf-no-post-types-wrapper .acf-no-post-types-inner h2,\n.acf-no-post-types-wrapper .acf-no-options-pages-inner h2,\n.acf-no-post-types-wrapper .acf-options-preview-inner h2,\n.acf-no-options-pages-wrapper .acf-no-field-groups-inner h2,\n.acf-no-options-pages-wrapper .acf-no-taxonomies-inner h2,\n.acf-no-options-pages-wrapper .acf-no-post-types-inner h2,\n.acf-no-options-pages-wrapper .acf-no-options-pages-inner h2,\n.acf-no-options-pages-wrapper .acf-options-preview-inner h2,\n.acf-options-preview-wrapper .acf-no-field-groups-inner h2,\n.acf-options-preview-wrapper .acf-no-taxonomies-inner h2,\n.acf-options-preview-wrapper .acf-no-post-types-inner h2,\n.acf-options-preview-wrapper .acf-no-options-pages-inner h2,\n.acf-options-preview-wrapper .acf-options-preview-inner h2 {\n margin-top: 32px;\n margin-bottom: 0;\n padding: 0;\n color: #344054;\n line-height: 1.6rem;\n}\n.acf-no-field-groups-wrapper .acf-no-field-groups-inner p,\n.acf-no-field-groups-wrapper .acf-no-taxonomies-inner p,\n.acf-no-field-groups-wrapper .acf-no-post-types-inner p,\n.acf-no-field-groups-wrapper .acf-no-options-pages-inner p,\n.acf-no-field-groups-wrapper .acf-options-preview-inner p,\n.acf-no-taxonomies-wrapper .acf-no-field-groups-inner p,\n.acf-no-taxonomies-wrapper .acf-no-taxonomies-inner p,\n.acf-no-taxonomies-wrapper .acf-no-post-types-inner p,\n.acf-no-taxonomies-wrapper .acf-no-options-pages-inner p,\n.acf-no-taxonomies-wrapper .acf-options-preview-inner p,\n.acf-no-post-types-wrapper .acf-no-field-groups-inner p,\n.acf-no-post-types-wrapper .acf-no-taxonomies-inner p,\n.acf-no-post-types-wrapper .acf-no-post-types-inner p,\n.acf-no-post-types-wrapper .acf-no-options-pages-inner p,\n.acf-no-post-types-wrapper .acf-options-preview-inner p,\n.acf-no-options-pages-wrapper .acf-no-field-groups-inner p,\n.acf-no-options-pages-wrapper .acf-no-taxonomies-inner p,\n.acf-no-options-pages-wrapper .acf-no-post-types-inner p,\n.acf-no-options-pages-wrapper .acf-no-options-pages-inner p,\n.acf-no-options-pages-wrapper .acf-options-preview-inner p,\n.acf-options-preview-wrapper .acf-no-field-groups-inner p,\n.acf-options-preview-wrapper .acf-no-taxonomies-inner p,\n.acf-options-preview-wrapper .acf-no-post-types-inner p,\n.acf-options-preview-wrapper .acf-no-options-pages-inner p,\n.acf-options-preview-wrapper .acf-options-preview-inner p {\n margin-top: 12px;\n margin-bottom: 0;\n padding: 0;\n color: #667085;\n}\n.acf-no-field-groups-wrapper .acf-no-field-groups-inner p.acf-small,\n.acf-no-field-groups-wrapper .acf-no-taxonomies-inner p.acf-small,\n.acf-no-field-groups-wrapper .acf-no-post-types-inner p.acf-small,\n.acf-no-field-groups-wrapper .acf-no-options-pages-inner p.acf-small,\n.acf-no-field-groups-wrapper .acf-options-preview-inner p.acf-small,\n.acf-no-taxonomies-wrapper .acf-no-field-groups-inner p.acf-small,\n.acf-no-taxonomies-wrapper .acf-no-taxonomies-inner p.acf-small,\n.acf-no-taxonomies-wrapper .acf-no-post-types-inner p.acf-small,\n.acf-no-taxonomies-wrapper .acf-no-options-pages-inner p.acf-small,\n.acf-no-taxonomies-wrapper .acf-options-preview-inner p.acf-small,\n.acf-no-post-types-wrapper .acf-no-field-groups-inner p.acf-small,\n.acf-no-post-types-wrapper .acf-no-taxonomies-inner p.acf-small,\n.acf-no-post-types-wrapper .acf-no-post-types-inner p.acf-small,\n.acf-no-post-types-wrapper .acf-no-options-pages-inner p.acf-small,\n.acf-no-post-types-wrapper .acf-options-preview-inner p.acf-small,\n.acf-no-options-pages-wrapper .acf-no-field-groups-inner p.acf-small,\n.acf-no-options-pages-wrapper .acf-no-taxonomies-inner p.acf-small,\n.acf-no-options-pages-wrapper .acf-no-post-types-inner p.acf-small,\n.acf-no-options-pages-wrapper .acf-no-options-pages-inner p.acf-small,\n.acf-no-options-pages-wrapper .acf-options-preview-inner p.acf-small,\n.acf-options-preview-wrapper .acf-no-field-groups-inner p.acf-small,\n.acf-options-preview-wrapper .acf-no-taxonomies-inner p.acf-small,\n.acf-options-preview-wrapper .acf-no-post-types-inner p.acf-small,\n.acf-options-preview-wrapper .acf-no-options-pages-inner p.acf-small,\n.acf-options-preview-wrapper .acf-options-preview-inner p.acf-small {\n display: block;\n position: relative;\n margin-top: 32px;\n}\n.acf-no-field-groups-wrapper .acf-no-field-groups-inner img,\n.acf-no-field-groups-wrapper .acf-no-taxonomies-inner img,\n.acf-no-field-groups-wrapper .acf-no-post-types-inner img,\n.acf-no-field-groups-wrapper .acf-no-options-pages-inner img,\n.acf-no-field-groups-wrapper .acf-options-preview-inner img,\n.acf-no-taxonomies-wrapper .acf-no-field-groups-inner img,\n.acf-no-taxonomies-wrapper .acf-no-taxonomies-inner img,\n.acf-no-taxonomies-wrapper .acf-no-post-types-inner img,\n.acf-no-taxonomies-wrapper .acf-no-options-pages-inner img,\n.acf-no-taxonomies-wrapper .acf-options-preview-inner img,\n.acf-no-post-types-wrapper .acf-no-field-groups-inner img,\n.acf-no-post-types-wrapper .acf-no-taxonomies-inner img,\n.acf-no-post-types-wrapper .acf-no-post-types-inner img,\n.acf-no-post-types-wrapper .acf-no-options-pages-inner img,\n.acf-no-post-types-wrapper .acf-options-preview-inner img,\n.acf-no-options-pages-wrapper .acf-no-field-groups-inner img,\n.acf-no-options-pages-wrapper .acf-no-taxonomies-inner img,\n.acf-no-options-pages-wrapper .acf-no-post-types-inner img,\n.acf-no-options-pages-wrapper .acf-no-options-pages-inner img,\n.acf-no-options-pages-wrapper .acf-options-preview-inner img,\n.acf-options-preview-wrapper .acf-no-field-groups-inner img,\n.acf-options-preview-wrapper .acf-no-taxonomies-inner img,\n.acf-options-preview-wrapper .acf-no-post-types-inner img,\n.acf-options-preview-wrapper .acf-no-options-pages-inner img,\n.acf-options-preview-wrapper .acf-options-preview-inner img {\n max-width: 284px;\n margin-bottom: 0;\n}\n.acf-no-field-groups-wrapper .acf-no-field-groups-inner .acf-btn,\n.acf-no-field-groups-wrapper .acf-no-taxonomies-inner .acf-btn,\n.acf-no-field-groups-wrapper .acf-no-post-types-inner .acf-btn,\n.acf-no-field-groups-wrapper .acf-no-options-pages-inner .acf-btn,\n.acf-no-field-groups-wrapper .acf-options-preview-inner .acf-btn,\n.acf-no-taxonomies-wrapper .acf-no-field-groups-inner .acf-btn,\n.acf-no-taxonomies-wrapper .acf-no-taxonomies-inner .acf-btn,\n.acf-no-taxonomies-wrapper .acf-no-post-types-inner .acf-btn,\n.acf-no-taxonomies-wrapper .acf-no-options-pages-inner .acf-btn,\n.acf-no-taxonomies-wrapper .acf-options-preview-inner .acf-btn,\n.acf-no-post-types-wrapper .acf-no-field-groups-inner .acf-btn,\n.acf-no-post-types-wrapper .acf-no-taxonomies-inner .acf-btn,\n.acf-no-post-types-wrapper .acf-no-post-types-inner .acf-btn,\n.acf-no-post-types-wrapper .acf-no-options-pages-inner .acf-btn,\n.acf-no-post-types-wrapper .acf-options-preview-inner .acf-btn,\n.acf-no-options-pages-wrapper .acf-no-field-groups-inner .acf-btn,\n.acf-no-options-pages-wrapper .acf-no-taxonomies-inner .acf-btn,\n.acf-no-options-pages-wrapper .acf-no-post-types-inner .acf-btn,\n.acf-no-options-pages-wrapper .acf-no-options-pages-inner .acf-btn,\n.acf-no-options-pages-wrapper .acf-options-preview-inner .acf-btn,\n.acf-options-preview-wrapper .acf-no-field-groups-inner .acf-btn,\n.acf-options-preview-wrapper .acf-no-taxonomies-inner .acf-btn,\n.acf-options-preview-wrapper .acf-no-post-types-inner .acf-btn,\n.acf-options-preview-wrapper .acf-no-options-pages-inner .acf-btn,\n.acf-options-preview-wrapper .acf-options-preview-inner .acf-btn {\n margin-top: 32px;\n}\n.acf-no-field-groups-wrapper .acf-no-post-types-inner img,\n.acf-no-field-groups-wrapper .acf-no-options-pages-inner img,\n.acf-no-taxonomies-wrapper .acf-no-post-types-inner img,\n.acf-no-taxonomies-wrapper .acf-no-options-pages-inner img,\n.acf-no-post-types-wrapper .acf-no-post-types-inner img,\n.acf-no-post-types-wrapper .acf-no-options-pages-inner img,\n.acf-no-options-pages-wrapper .acf-no-post-types-inner img,\n.acf-no-options-pages-wrapper .acf-no-options-pages-inner img,\n.acf-options-preview-wrapper .acf-no-post-types-inner img,\n.acf-options-preview-wrapper .acf-no-options-pages-inner img {\n width: 106px;\n height: 88px;\n}\n.acf-no-field-groups-wrapper .acf-no-taxonomies-inner img,\n.acf-no-taxonomies-wrapper .acf-no-taxonomies-inner img,\n.acf-no-post-types-wrapper .acf-no-taxonomies-inner img,\n.acf-no-options-pages-wrapper .acf-no-taxonomies-inner img,\n.acf-options-preview-wrapper .acf-no-taxonomies-inner img {\n width: 98px;\n height: 88px;\n}\n\n.acf-no-field-groups #the-list tr:hover td,\n.acf-no-field-groups #the-list tr:hover th,\n.acf-no-field-groups .acf-admin-field-groups .wp-list-table tr:hover,\n.acf-no-field-groups .striped > tbody > :nth-child(odd), .acf-no-field-groups ul.striped > :nth-child(odd), .acf-no-field-groups .alternate,\n.acf-no-post-types #the-list tr:hover td,\n.acf-no-post-types #the-list tr:hover th,\n.acf-no-post-types .acf-admin-field-groups .wp-list-table tr:hover,\n.acf-no-post-types .striped > tbody > :nth-child(odd),\n.acf-no-post-types ul.striped > :nth-child(odd),\n.acf-no-post-types .alternate,\n.acf-no-taxonomies #the-list tr:hover td,\n.acf-no-taxonomies #the-list tr:hover th,\n.acf-no-taxonomies .acf-admin-field-groups .wp-list-table tr:hover,\n.acf-no-taxonomies .striped > tbody > :nth-child(odd),\n.acf-no-taxonomies ul.striped > :nth-child(odd),\n.acf-no-taxonomies .alternate,\n.acf-no-options-pages #the-list tr:hover td,\n.acf-no-options-pages #the-list tr:hover th,\n.acf-no-options-pages .acf-admin-field-groups .wp-list-table tr:hover,\n.acf-no-options-pages .striped > tbody > :nth-child(odd),\n.acf-no-options-pages ul.striped > :nth-child(odd),\n.acf-no-options-pages .alternate {\n background-color: transparent !important;\n}\n.acf-no-field-groups .wp-list-table thead,\n.acf-no-field-groups .wp-list-table tfoot,\n.acf-no-post-types .wp-list-table thead,\n.acf-no-post-types .wp-list-table tfoot,\n.acf-no-taxonomies .wp-list-table thead,\n.acf-no-taxonomies .wp-list-table tfoot,\n.acf-no-options-pages .wp-list-table thead,\n.acf-no-options-pages .wp-list-table tfoot {\n display: none;\n}\n.acf-no-field-groups .wp-list-table a.acf-btn,\n.acf-no-post-types .wp-list-table a.acf-btn,\n.acf-no-taxonomies .wp-list-table a.acf-btn,\n.acf-no-options-pages .wp-list-table a.acf-btn {\n border: 1px solid rgba(0, 0, 0, 0.16);\n box-shadow: none;\n}\n\n.acf-internal-post-type #the-list .no-items td {\n vertical-align: middle;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Options Page Preview\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-options-preview .acf-btn {\n margin-left: 8px;\n}\n.acf-options-preview .disabled {\n background-color: #F2F4F7 !important;\n color: #98A2B3 !important;\n border: 1px #D0D5DD solid;\n cursor: default !important;\n}\n.acf-options-preview .acf-options-pages-preview-upgrade-button {\n height: 48px;\n padding: 8px 48px 8px 48px !important;\n border-radius: 6px;\n border: 1px;\n gap: 6px;\n display: inline-flex;\n align-items: center;\n align-self: stretch;\n background: linear-gradient(90.52deg, #3E8BFF 0.44%, #A45CFF 113.3%);\n box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);\n background-size: 180% 80%;\n background-position: 100% 0;\n transition: background-position 0.5s;\n border-radius: 6px;\n text-decoration: none;\n}\n.acf-options-preview .acf-options-pages-preview-upgrade-button:hover {\n background-position: 0 0;\n}\n.acf-options-preview .acf-options-pages-preview-upgrade-button:focus {\n border: none;\n outline: none;\n box-shadow: none;\n}\n.acf-options-preview .acf-options-pages-preview-upgrade-button p {\n margin: 0;\n padding-top: 8px;\n padding-bottom: 8px;\n font-weight: normal;\n text-transform: none;\n color: #fff;\n}\n.acf-options-preview .acf-options-pages-preview-upgrade-button .acf-icon {\n width: 20px;\n height: 20px;\n margin-right: 6px;\n margin-left: -2px;\n background-color: #F9FAFB;\n}\n.acf-options-preview .acf_options_preview_wrap a.acf-btn i {\n margin-right: -2px !important;\n margin-left: 0px !important;\n}\n.acf-options-preview .acf-pro-label {\n vertical-align: middle;\n}\n.acf-options-preview .acf_options_preview_wrap img {\n max-height: 88px;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Small screen list table info toggle\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-internal-post-type .wp-list-table .toggle-row:before {\n top: 4px;\n left: 16px;\n border-radius: 0;\n content: \"\";\n display: block;\n position: absolute;\n width: 16px;\n height: 16px;\n background-color: #0783BE;\n border-radius: 0;\n -webkit-mask-size: 20px;\n mask-size: 20px;\n -webkit-mask-repeat: no-repeat;\n mask-repeat: no-repeat;\n -webkit-mask-position: center;\n mask-position: center;\n -webkit-mask-image: url(\"../../images/icons/icon-chevron-down.svg\");\n mask-image: url(\"../../images/icons/icon-chevron-down.svg\");\n text-indent: 100%;\n white-space: nowrap;\n overflow: hidden;\n}\n.acf-internal-post-type .wp-list-table .is-expanded .toggle-row:before {\n -webkit-mask-image: url(\"../../images/icons/icon-chevron-up.svg\");\n mask-image: url(\"../../images/icons/icon-chevron-up.svg\");\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Small screen checkbox\n*\n*---------------------------------------------------------------------------------------------*/\n@media screen and (max-width: 880px) {\n .acf-internal-post-type .widefat th input[type=checkbox],\n .acf-internal-post-type .widefat thead td input[type=checkbox],\n .acf-internal-post-type .widefat tfoot td input[type=checkbox] {\n margin-bottom: 0;\n }\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Admin Navigation\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-admin-toolbar {\n position: unset;\n top: 32px;\n height: 72px;\n z-index: 800;\n background: #344054;\n color: #98A2B3;\n}\n.acf-admin-toolbar .acf-admin-toolbar-inner {\n display: flex;\n justify-content: space-between;\n align-content: center;\n align-items: center;\n max-width: 100%;\n}\n.acf-admin-toolbar .acf-admin-toolbar-inner .acf-nav-wrap {\n display: flex;\n align-items: center;\n}\n@media screen and (max-width: 1250px) {\n .acf-admin-toolbar .acf-admin-toolbar-inner .acf-nav-wrap .acf-header-tab-acf-post-type,\n .acf-admin-toolbar .acf-admin-toolbar-inner .acf-nav-wrap .acf-header-tab-acf-taxonomy {\n display: none;\n }\n .acf-admin-toolbar .acf-admin-toolbar-inner .acf-nav-wrap .acf-more .acf-header-tab-acf-post-type,\n .acf-admin-toolbar .acf-admin-toolbar-inner .acf-nav-wrap .acf-more .acf-header-tab-acf-taxonomy {\n display: flex;\n }\n}\n.acf-admin-toolbar .acf-admin-toolbar-inner .acf-nav-upgrade-wrap {\n display: flex;\n align-items: center;\n}\n.acf-admin-toolbar .acf-admin-toolbar-inner .acf-nav-wpengine-logo {\n display: inline-flex;\n margin-left: 24px;\n}\n@media screen and (max-width: 1000px) {\n .acf-admin-toolbar .acf-admin-toolbar-inner .acf-nav-wpengine-logo {\n display: none;\n }\n}\n@media screen and (max-width: 880px) {\n .acf-admin-toolbar {\n position: static;\n }\n}\n.acf-admin-toolbar .acf-logo {\n display: flex;\n margin-right: 24px;\n text-decoration: none;\n}\n.acf-admin-toolbar .acf-logo .acf-pro-label {\n margin-left: 8px;\n}\n.acf-admin-toolbar .acf-logo img {\n display: block;\n max-width: 55px;\n line-height: 0%;\n}\n.acf-admin-toolbar h2 {\n display: none;\n color: #F9FAFB;\n}\n.acf-admin-toolbar .acf-tab {\n display: flex;\n align-items: center;\n box-sizing: border-box;\n min-height: 40px;\n margin-right: 8px;\n padding-top: 8px;\n padding-right: 16px;\n padding-bottom: 8px;\n padding-left: 16px;\n border-width: 1px;\n border-style: solid;\n border-color: transparent;\n border-radius: 6px;\n color: #98A2B3;\n text-decoration: none;\n}\n.acf-admin-toolbar .acf-tab.is-active {\n background-color: #475467;\n color: #fff;\n}\n.acf-admin-toolbar .acf-tab:hover {\n background-color: #475467;\n color: #F9FAFB;\n}\n.acf-admin-toolbar .acf-tab:focus-visible {\n border-width: 1px;\n border-style: solid;\n border-color: #667085;\n}\n.acf-admin-toolbar .acf-tab:focus {\n box-shadow: none;\n}\n.acf-admin-toolbar .acf-more:hover .acf-tab.acf-more-tab {\n background-color: #475467;\n color: #F9FAFB;\n}\n.acf-admin-toolbar .acf-more ul {\n display: none;\n position: absolute;\n box-sizing: border-box;\n background: #fff;\n z-index: 1051;\n overflow: hidden;\n min-width: 280px;\n margin-top: 0;\n margin-right: 0;\n margin-bottom: 0;\n margin-left: 0;\n padding: 0;\n border-radius: 8px;\n box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.04), 0px 8px 23px rgba(0, 0, 0, 0.12);\n}\n.acf-admin-toolbar .acf-more ul .acf-wp-engine {\n display: flex;\n align-items: center;\n justify-content: space-between;\n min-height: 48px;\n border-top: 1px solid rgba(0, 0, 0, 0.08);\n background: #ECFBFC;\n}\n.acf-admin-toolbar .acf-more ul .acf-wp-engine a {\n display: flex;\n width: 100%;\n justify-content: space-between;\n border-top: none;\n}\n.acf-admin-toolbar .acf-more ul li {\n margin: 0;\n padding: 0 16px;\n}\n.acf-admin-toolbar .acf-more ul li .acf-header-tab-acf-post-type,\n.acf-admin-toolbar .acf-more ul li .acf-header-tab-acf-taxonomy {\n display: none;\n}\n.acf-admin-toolbar .acf-more ul li.acf-more-section-header {\n background: #F9FAFB;\n padding: 1px 0 0 0;\n margin-top: -1px;\n border-top: 1px solid #EAECF0;\n border-bottom: 1px solid #EAECF0;\n}\n.acf-admin-toolbar .acf-more ul li.acf-more-section-header span {\n color: #475467;\n font-size: 12px;\n font-weight: bold;\n}\n.acf-admin-toolbar .acf-more ul li.acf-more-section-header span:hover {\n background: #F9FAFB;\n}\n.acf-admin-toolbar .acf-more ul li a {\n margin: 0;\n padding: 0;\n color: #1D2939;\n border-radius: 0;\n border-top-width: 1px;\n border-top-style: solid;\n border-top-color: #F2F4F7;\n}\n.acf-admin-toolbar .acf-more ul li a:hover, .acf-admin-toolbar .acf-more ul li a.acf-tab.is-active {\n background-color: unset;\n color: #0783BE;\n}\n.acf-admin-toolbar .acf-more ul li a i.acf-icon {\n display: none !important;\n width: 16px;\n height: 16px;\n -webkit-mask-size: 16px;\n mask-size: 16px;\n background-color: #98A2B3 !important;\n}\n.acf-admin-toolbar .acf-more ul li a .acf-requires-pro {\n justify-content: center;\n align-items: center;\n color: white;\n background: linear-gradient(90.52deg, #3E8BFF 0.44%, #A45CFF 113.3%);\n background-size: 140% 20%;\n background-position: 100% 0;\n border-radius: 100px;\n font-size: 11px;\n position: absolute;\n right: 16px;\n padding-right: 6px;\n padding-left: 6px;\n}\n.acf-admin-toolbar .acf-more ul li a img.acf-wp-engine-pro {\n display: block;\n height: 16px;\n width: auto;\n}\n.acf-admin-toolbar .acf-more ul li a .acf-wp-engine-upsell-pill {\n display: inline-flex;\n justify-content: center;\n align-items: center;\n min-height: 22px;\n border-radius: 100px;\n font-size: 11px;\n padding-right: 8px;\n padding-left: 8px;\n background: #0ECAD4;\n color: #FFFFFF;\n text-shadow: 0px 1px 0 rgba(0, 0, 0, 0.12);\n text-transform: uppercase;\n}\n.acf-admin-toolbar .acf-more ul li:first-child a {\n border-bottom: none;\n}\n.acf-admin-toolbar .acf-more ul:hover, .acf-admin-toolbar .acf-more ul:focus {\n display: block;\n}\n.acf-admin-toolbar .acf-more:hover ul, .acf-admin-toolbar .acf-more:focus ul {\n display: block;\n}\n#wpcontent .acf-admin-toolbar {\n box-sizing: border-box;\n margin-left: -20px;\n padding-top: 16px;\n padding-right: 32px;\n padding-bottom: 16px;\n padding-left: 32px;\n}\n@media screen and (max-width: 600px) {\n .acf-admin-toolbar {\n display: none;\n }\n}\n\n.rtl #wpcontent .acf-admin-toolbar {\n margin-left: 0;\n margin-right: -20px;\n}\n.rtl #wpcontent .acf-admin-toolbar .acf-tab {\n margin-left: 8px;\n margin-right: 0;\n}\n.rtl .acf-logo {\n margin-right: 0;\n margin-left: 32px;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Admin Toolbar Icons\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-admin-toolbar .acf-tab i.acf-icon,\n.acf-admin-toolbar .acf-more i.acf-icon {\n display: none;\n margin-right: 8px;\n margin-left: -2px;\n}\n.acf-admin-toolbar .acf-tab i.acf-icon.acf-icon-dropdown,\n.acf-admin-toolbar .acf-more i.acf-icon.acf-icon-dropdown {\n -webkit-mask-image: url(\"../../images/icons/icon-chevron-down.svg\");\n mask-image: url(\"../../images/icons/icon-chevron-down.svg\");\n width: 16px;\n height: 16px;\n -webkit-mask-size: 16px;\n mask-size: 16px;\n margin-right: -6px;\n margin-left: 6px;\n}\n.acf-admin-toolbar .acf-tab.acf-header-tab-acf-field-group i.acf-icon, .acf-admin-toolbar .acf-tab.acf-header-tab-acf-post-type i.acf-icon, .acf-admin-toolbar .acf-tab.acf-header-tab-acf-taxonomy i.acf-icon, .acf-admin-toolbar .acf-tab.acf-header-tab-acf-tools i.acf-icon, .acf-admin-toolbar .acf-tab.acf-header-tab-acf-settings-updates i.acf-icon, .acf-admin-toolbar .acf-tab.acf-header-tab-acf-more i.acf-icon,\n.acf-admin-toolbar .acf-more.acf-header-tab-acf-field-group i.acf-icon,\n.acf-admin-toolbar .acf-more.acf-header-tab-acf-post-type i.acf-icon,\n.acf-admin-toolbar .acf-more.acf-header-tab-acf-taxonomy i.acf-icon,\n.acf-admin-toolbar .acf-more.acf-header-tab-acf-tools i.acf-icon,\n.acf-admin-toolbar .acf-more.acf-header-tab-acf-settings-updates i.acf-icon,\n.acf-admin-toolbar .acf-more.acf-header-tab-acf-more i.acf-icon {\n display: inline-flex;\n}\n.acf-admin-toolbar .acf-tab.is-active i.acf-icon, .acf-admin-toolbar .acf-tab:hover i.acf-icon,\n.acf-admin-toolbar .acf-more.is-active i.acf-icon,\n.acf-admin-toolbar .acf-more:hover i.acf-icon {\n background-color: #EAECF0;\n}\n.rtl .acf-admin-toolbar .acf-tab i.acf-icon {\n margin-right: -2px;\n margin-left: 8px;\n}\n.acf-admin-toolbar .acf-header-tab-acf-field-group i.acf-icon {\n -webkit-mask-image: url(\"../../images/icons/icon-field-groups.svg\");\n mask-image: url(\"../../images/icons/icon-field-groups.svg\");\n}\n.acf-admin-toolbar .acf-header-tab-acf-post-type i.acf-icon {\n -webkit-mask-image: url(\"../../images/icons/icon-post-type.svg\");\n mask-image: url(\"../../images/icons/icon-post-type.svg\");\n}\n.acf-admin-toolbar .acf-header-tab-acf-taxonomy i.acf-icon {\n -webkit-mask-image: url(\"../../images/icons/icon-taxonomies.svg\");\n mask-image: url(\"../../images/icons/icon-taxonomies.svg\");\n}\n.acf-admin-toolbar .acf-header-tab-acf-tools i.acf-icon {\n -webkit-mask-image: url(\"../../images/icons/icon-tools.svg\");\n mask-image: url(\"../../images/icons/icon-tools.svg\");\n}\n.acf-admin-toolbar .acf-header-tab-acf-settings-updates i.acf-icon {\n -webkit-mask-image: url(\"../../images/icons/icon-updates.svg\");\n mask-image: url(\"../../images/icons/icon-updates.svg\");\n}\n.acf-admin-toolbar .acf-header-tab-acf-more i.acf-icon-more {\n -webkit-mask-image: url(\"../../images/icons/icon-extended-menu.svg\");\n mask-image: url(\"../../images/icons/icon-extended-menu.svg\");\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Hide WP default controls\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-admin-page #wpbody-content > .notice:not(.inline, .below-h2) {\n display: none;\n}\n.acf-admin-page h1.wp-heading-inline {\n display: none;\n}\n.acf-admin-page .wrap .wp-heading-inline + .page-title-action {\n display: none;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Headerbar\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-headerbar {\n display: flex;\n align-items: center;\n position: sticky;\n top: 32px;\n z-index: 700;\n box-sizing: border-box;\n min-height: 72px;\n margin-left: -20px;\n padding-top: 8px;\n padding-right: 32px;\n padding-bottom: 8px;\n padding-left: 32px;\n background-color: #fff;\n box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.1);\n}\n.acf-headerbar .acf-headerbar-inner {\n flex: 1 1 auto;\n display: flex;\n align-items: center;\n justify-content: space-between;\n max-width: 1440px;\n gap: 8px;\n}\n.acf-headerbar .acf-page-title {\n display: flex;\n align-items: center;\n gap: 8px;\n margin-top: 0;\n margin-right: 16px;\n margin-bottom: 0;\n margin-left: 0;\n padding-top: 0;\n padding-right: 0;\n padding-bottom: 0;\n padding-left: 0;\n}\n.acf-headerbar .acf-page-title .acf-duplicated-from {\n color: #98A2B3;\n}\n.acf-headerbar .acf-page-title .acf-pro-label {\n box-shadow: none;\n border: 1px solid rgba(0, 0, 0, 0.2);\n}\n@media screen and (max-width: 880px) {\n .acf-headerbar {\n position: static;\n }\n}\n@media screen and (max-width: 600px) {\n .acf-headerbar {\n justify-content: space-between;\n position: relative;\n top: 46px;\n min-height: 64px;\n padding-right: 12px;\n }\n}\n.acf-headerbar .acf-headerbar-content {\n flex: 1 1 auto;\n display: flex;\n align-items: center;\n}\n@media screen and (max-width: 880px) {\n .acf-headerbar .acf-headerbar-content {\n flex-wrap: wrap;\n }\n .acf-headerbar .acf-headerbar-content .acf-headerbar-title,\n .acf-headerbar .acf-headerbar-content .acf-title-wrap {\n flex: 1 1 100%;\n }\n .acf-headerbar .acf-headerbar-content .acf-title-wrap {\n margin-top: 8px;\n }\n}\n.acf-headerbar .acf-input-error {\n border: 1px rgba(209, 55, 55, 0.5) solid !important;\n box-shadow: 0px 0px 0px 3px rgba(209, 55, 55, 0.12), 0px 0px 0px rgba(255, 54, 54, 0.25) !important;\n background-image: url(\"../../images/icons/icon-warning-alt-red.svg\");\n background-position: right 10px top 50%;\n background-size: 20px;\n background-repeat: no-repeat;\n}\n.acf-headerbar .acf-input-error:focus {\n outline: none !important;\n border: 1px rgba(209, 55, 55, 0.8) solid !important;\n box-shadow: 0px 0px 0px 3px rgba(209, 55, 55, 0.16), 0px 0px 0px rgba(255, 54, 54, 0.25) !important;\n}\n.acf-headerbar .acf-headerbar-title-field {\n min-width: 320px;\n}\n@media screen and (max-width: 880px) {\n .acf-headerbar .acf-headerbar-title-field {\n min-width: 100%;\n }\n}\n.acf-headerbar .acf-headerbar-actions {\n display: flex;\n}\n.acf-headerbar .acf-headerbar-actions .acf-btn {\n margin-left: 8px;\n}\n.acf-headerbar .acf-headerbar-actions .disabled {\n background-color: #F2F4F7;\n color: #98A2B3 !important;\n border: 1px #D0D5DD solid;\n cursor: default;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Edit Field Group Headerbar\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-headerbar-field-editor {\n position: sticky;\n top: 32px;\n z-index: 1020;\n margin-left: -20px;\n width: calc(100% + 20px);\n}\n@media screen and (max-width: 880px) {\n .acf-headerbar-field-editor {\n position: relative;\n top: 0;\n width: 100%;\n margin-left: 0;\n padding-right: 8px;\n padding-left: 8px;\n }\n}\n@media screen and (max-width: 640px) {\n .acf-headerbar-field-editor {\n position: relative;\n top: 46px;\n }\n}\n@media screen and (max-width: 880px) {\n .acf-headerbar-field-editor .acf-headerbar-inner {\n flex-wrap: wrap;\n justify-content: flex-start;\n align-content: flex-start;\n align-items: flex-start;\n width: 100%;\n }\n .acf-headerbar-field-editor .acf-headerbar-inner .acf-page-title {\n flex: 1 1 auto;\n }\n .acf-headerbar-field-editor .acf-headerbar-inner .acf-headerbar-actions {\n flex: 1 1 100%;\n margin-top: 8px;\n gap: 8px;\n }\n .acf-headerbar-field-editor .acf-headerbar-inner .acf-headerbar-actions .acf-btn {\n width: 100%;\n display: inline-flex;\n justify-content: center;\n margin: 0;\n }\n}\n.acf-headerbar-field-editor .acf-page-title {\n margin-right: 16px;\n}\n\n.rtl .acf-headerbar,\n.rtl .acf-headerbar-field-editor {\n margin-left: 0;\n margin-right: -20px;\n}\n.rtl .acf-headerbar .acf-page-title,\n.rtl .acf-headerbar-field-editor .acf-page-title {\n margin-left: 16px;\n margin-right: 0;\n}\n.rtl .acf-headerbar .acf-headerbar-actions .acf-btn,\n.rtl .acf-headerbar-field-editor .acf-headerbar-actions .acf-btn {\n margin-left: 0;\n margin-right: 8px;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* ACF Buttons\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-btn {\n display: inline-flex;\n align-items: center;\n box-sizing: border-box;\n min-height: 40px;\n padding-top: 8px;\n padding-right: 16px;\n padding-bottom: 8px;\n padding-left: 16px;\n background-color: #0783BE;\n border-radius: 6px;\n border-width: 1px;\n border-style: solid;\n border-color: rgba(16, 24, 40, 0.2);\n text-decoration: none;\n color: #fff !important;\n transition: all 0.2s ease-in-out;\n transition-property: background, border, box-shadow;\n}\n.acf-btn:hover {\n background-color: #066998;\n color: #fff;\n cursor: pointer;\n}\n.acf-btn:disabled, .acf-btn.disabled {\n background-color: #F2F4F7;\n border-color: #EAECF0;\n color: #98A2B3 !important;\n transition: none;\n pointer-events: none;\n}\n.acf-btn.acf-btn-sm {\n min-height: 32px;\n padding-top: 4px;\n padding-right: 12px;\n padding-bottom: 4px;\n padding-left: 12px;\n}\n.acf-btn.acf-btn-secondary {\n background-color: transparent;\n color: #0783BE !important;\n border-color: #0783BE;\n}\n.acf-btn.acf-btn-secondary:hover {\n background-color: #f3f9fc;\n}\n.acf-btn.acf-btn-muted {\n background-color: #667085;\n color: white;\n height: 48px;\n padding: 8px 28px 8px 28px !important;\n border-radius: 6px;\n border: 1px;\n gap: 6px;\n}\n.acf-btn.acf-btn-muted:hover {\n background-color: #475467 !important;\n}\n.acf-btn.acf-btn-tertiary {\n background-color: transparent;\n color: #667085 !important;\n border-color: #D0D5DD;\n}\n.acf-btn.acf-btn-tertiary:hover {\n color: #667085 !important;\n border-color: #98A2B3;\n}\n.acf-btn.acf-btn-clear {\n background-color: transparent;\n color: #667085 !important;\n border-color: transparent;\n}\n.acf-btn.acf-btn-clear:hover {\n color: #0783BE !important;\n}\n.acf-btn.acf-btn-pro {\n background: linear-gradient(90.52deg, #3E8BFF 0.44%, #A45CFF 113.3%);\n background-size: 180% 80%;\n background-position: 100% 0;\n transition: background-position 0.5s;\n}\n.acf-btn.acf-btn-pro:hover {\n background-position: 0 0;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Button icons\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-btn i.acf-icon {\n width: 20px;\n height: 20px;\n -webkit-mask-size: 20px;\n mask-size: 20px;\n margin-right: 6px;\n margin-left: -4px;\n}\n.acf-btn.acf-btn-sm i.acf-icon {\n width: 16px;\n height: 16px;\n -webkit-mask-size: 16px;\n mask-size: 16px;\n margin-right: 6px;\n margin-left: -2px;\n}\n\n.rtl .acf-btn i.acf-icon {\n margin-right: -4px;\n margin-left: 6px;\n}\n.rtl .acf-btn.acf-btn-sm i.acf-icon {\n margin-right: -4px;\n margin-left: 2px;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Delete field group button\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-btn.acf-delete-field-group:hover {\n background-color: #fbeded;\n border-color: #D13737 !important;\n color: #D13737 !important;\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tIcon base styling\n*\n*--------------------------------------------------------------------------------------------*/\n.acf-internal-post-type i.acf-icon,\n.post-type-acf-field-group i.acf-icon {\n display: inline-flex;\n width: 20px;\n height: 20px;\n background-color: currentColor;\n border: none;\n border-radius: 0;\n -webkit-mask-size: contain;\n mask-size: contain;\n -webkit-mask-repeat: no-repeat;\n mask-repeat: no-repeat;\n -webkit-mask-position: center;\n mask-position: center;\n text-indent: 500%;\n white-space: nowrap;\n overflow: hidden;\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tIcons\n*\n*--------------------------------------------------------------------------------------------*/\n.acf-admin-page {\n /*--------------------------------------------------------------------------------------------\n *\n *\tInactive group icon\n *\n *--------------------------------------------------------------------------------------------*/\n}\n.acf-admin-page i.acf-field-setting-fc-delete, .acf-admin-page i.acf-field-setting-fc-duplicate {\n box-sizing: border-box;\n /* Auto layout */\n display: flex;\n flex-direction: row;\n justify-content: center;\n align-items: center;\n padding: 8px;\n cursor: pointer;\n width: 32px;\n height: 32px;\n /* Base / White */\n background: #FFFFFF;\n /* Gray/300 */\n border: 1px solid #D0D5DD;\n /* Elevation/01 */\n box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.1);\n border-radius: 6px;\n /* Inside auto layout */\n flex: none;\n order: 0;\n flex-grow: 0;\n}\n.acf-admin-page i.acf-icon-plus {\n -webkit-mask-image: url(\"../../images/icons/icon-add.svg\");\n mask-image: url(\"../../images/icons/icon-add.svg\");\n}\n.acf-admin-page i.acf-icon-stars {\n -webkit-mask-image: url(\"../../images/icons/icon-stars.svg\");\n mask-image: url(\"../../images/icons/icon-stars.svg\");\n}\n.acf-admin-page i.acf-icon-help {\n -webkit-mask-image: url(\"../../images/icons/icon-help.svg\");\n mask-image: url(\"../../images/icons/icon-help.svg\");\n}\n.acf-admin-page i.acf-icon-key {\n -webkit-mask-image: url(\"../../images/icons/icon-key.svg\");\n mask-image: url(\"../../images/icons/icon-key.svg\");\n}\n.acf-admin-page i.acf-icon-regenerate {\n -webkit-mask-image: url(\"../../images/icons/icon-regenerate.svg\");\n mask-image: url(\"../../images/icons/icon-regenerate.svg\");\n}\n.acf-admin-page i.acf-icon-trash, .acf-admin-page button.acf-icon-trash {\n -webkit-mask-image: url(\"../../images/icons/icon-trash.svg\");\n mask-image: url(\"../../images/icons/icon-trash.svg\");\n}\n.acf-admin-page i.acf-icon-extended-menu, .acf-admin-page button.acf-icon-extended-menu {\n -webkit-mask-image: url(\"../../images/icons/icon-extended-menu.svg\");\n mask-image: url(\"../../images/icons/icon-extended-menu.svg\");\n}\n.acf-admin-page i.acf-icon.-duplicate, .acf-admin-page button.acf-icon-duplicate {\n -webkit-mask-image: url(\"../../images/field-type-icons/icon-field-clone.svg\");\n mask-image: url(\"../../images/field-type-icons/icon-field-clone.svg\");\n}\n.acf-admin-page i.acf-icon.-duplicate:before, .acf-admin-page i.acf-icon.-duplicate:after, .acf-admin-page button.acf-icon-duplicate:before, .acf-admin-page button.acf-icon-duplicate:after {\n content: none;\n}\n.acf-admin-page i.acf-icon-arrow-right {\n -webkit-mask-image: url(\"../../images/icons/icon-arrow-right.svg\");\n mask-image: url(\"../../images/icons/icon-arrow-right.svg\");\n}\n.acf-admin-page i.acf-icon-arrow-up-right {\n -webkit-mask-image: url(\"../../images/icons/icon-arrow-up-right.svg\");\n mask-image: url(\"../../images/icons/icon-arrow-up-right.svg\");\n}\n.acf-admin-page i.acf-icon-arrow-left {\n -webkit-mask-image: url(\"../../images/icons/icon-arrow-left.svg\");\n mask-image: url(\"../../images/icons/icon-arrow-left.svg\");\n}\n.acf-admin-page i.acf-icon-chevron-right,\n.acf-admin-page .acf-icon.-right {\n -webkit-mask-image: url(\"../../images/icons/icon-chevron-right.svg\");\n mask-image: url(\"../../images/icons/icon-chevron-right.svg\");\n}\n.acf-admin-page i.acf-icon-chevron-left,\n.acf-admin-page .acf-icon.-left {\n -webkit-mask-image: url(\"../../images/icons/icon-chevron-left.svg\");\n mask-image: url(\"../../images/icons/icon-chevron-left.svg\");\n}\n.acf-admin-page i.acf-icon-key-solid {\n -webkit-mask-image: url(\"../../images/icons/icon-key-solid.svg\");\n mask-image: url(\"../../images/icons/icon-key-solid.svg\");\n}\n.acf-admin-page i.acf-icon-globe,\n.acf-admin-page .acf-icon.-globe {\n -webkit-mask-image: url(\"../../images/icons/icon-globe.svg\");\n mask-image: url(\"../../images/icons/icon-globe.svg\");\n}\n.acf-admin-page i.acf-icon-image,\n.acf-admin-page .acf-icon.-picture {\n -webkit-mask-image: url(\"../../images/field-type-icons/icon-field-image.svg\");\n mask-image: url(\"../../images/field-type-icons/icon-field-image.svg\");\n}\n.acf-admin-page i.acf-icon-warning {\n -webkit-mask-image: url(\"../../images/icons/icon-warning-alt.svg\");\n mask-image: url(\"../../images/icons/icon-warning-alt.svg\");\n}\n.acf-admin-page i.acf-icon-warning-red {\n -webkit-mask-image: url(\"../../images/icons/icon-warning-alt-red.svg\");\n mask-image: url(\"../../images/icons/icon-warning-alt-red.svg\");\n}\n.acf-admin-page i.acf-icon-dots-grid {\n -webkit-mask-image: url(\"../../images/icons/icon-dots-grid.svg\");\n mask-image: url(\"../../images/icons/icon-dots-grid.svg\");\n}\n.acf-admin-page i.acf-icon-play {\n -webkit-mask-image: url(\"../../images/icons/icon-play.svg\");\n mask-image: url(\"../../images/icons/icon-play.svg\");\n}\n.acf-admin-page i.acf-icon-lock {\n -webkit-mask-image: url(\"../../images/icons/icon-lock.svg\");\n mask-image: url(\"../../images/icons/icon-lock.svg\");\n}\n.acf-admin-page i.acf-icon-document {\n -webkit-mask-image: url(\"../../images/icons/icon-document.svg\");\n mask-image: url(\"../../images/icons/icon-document.svg\");\n}\n.acf-admin-page .post-type-acf-field-group .post-state,\n.acf-admin-page .acf-internal-post-type .post-state {\n font-weight: normal;\n}\n.acf-admin-page .post-type-acf-field-group .post-state .dashicons.dashicons-hidden,\n.acf-admin-page .acf-internal-post-type .post-state .dashicons.dashicons-hidden {\n display: inline-flex;\n width: 18px;\n height: 18px;\n background-color: #98A2B3;\n border: none;\n border-radius: 0;\n -webkit-mask-size: 18px;\n mask-size: 18px;\n -webkit-mask-repeat: no-repeat;\n mask-repeat: no-repeat;\n -webkit-mask-position: center;\n mask-position: center;\n -webkit-mask-image: url(\"../../images/icons/icon-hidden.svg\");\n mask-image: url(\"../../images/icons/icon-hidden.svg\");\n}\n.acf-admin-page .post-type-acf-field-group .post-state .dashicons.dashicons-hidden:before,\n.acf-admin-page .acf-internal-post-type .post-state .dashicons.dashicons-hidden:before {\n display: none;\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tEdit field group page postbox header icons\n*\n*--------------------------------------------------------------------------------------------*/\n#acf-field-group-fields .postbox-header h2,\n#acf-field-group-fields .postbox-header h3,\n#acf-field-group-fields .acf-sub-field-list-header h2,\n#acf-field-group-fields .acf-sub-field-list-header h3,\n#acf-field-group-options .postbox-header h2,\n#acf-field-group-options .postbox-header h3,\n#acf-field-group-options .acf-sub-field-list-header h2,\n#acf-field-group-options .acf-sub-field-list-header h3,\n#acf-advanced-settings .postbox-header h2,\n#acf-advanced-settings .postbox-header h3,\n#acf-advanced-settings .acf-sub-field-list-header h2,\n#acf-advanced-settings .acf-sub-field-list-header h3 {\n display: inline-flex;\n justify-content: flex-start;\n align-content: stretch;\n align-items: center;\n}\n#acf-field-group-fields .postbox-header h2:before,\n#acf-field-group-fields .postbox-header h3:before,\n#acf-field-group-fields .acf-sub-field-list-header h2:before,\n#acf-field-group-fields .acf-sub-field-list-header h3:before,\n#acf-field-group-options .postbox-header h2:before,\n#acf-field-group-options .postbox-header h3:before,\n#acf-field-group-options .acf-sub-field-list-header h2:before,\n#acf-field-group-options .acf-sub-field-list-header h3:before,\n#acf-advanced-settings .postbox-header h2:before,\n#acf-advanced-settings .postbox-header h3:before,\n#acf-advanced-settings .acf-sub-field-list-header h2:before,\n#acf-advanced-settings .acf-sub-field-list-header h3:before {\n content: \"\";\n display: inline-block;\n width: 20px;\n height: 20px;\n margin-right: 8px;\n background-color: #98A2B3;\n border: none;\n border-radius: 0;\n -webkit-mask-size: contain;\n mask-size: contain;\n -webkit-mask-repeat: no-repeat;\n mask-repeat: no-repeat;\n -webkit-mask-position: center;\n mask-position: center;\n}\n\n.rtl #acf-field-group-fields .postbox-header h2:before,\n.rtl #acf-field-group-fields .postbox-header h3:before,\n.rtl #acf-field-group-fields .acf-sub-field-list-header h2:before,\n.rtl #acf-field-group-fields .acf-sub-field-list-header h3:before,\n.rtl #acf-field-group-options .postbox-header h2:before,\n.rtl #acf-field-group-options .postbox-header h3:before,\n.rtl #acf-field-group-options .acf-sub-field-list-header h2:before,\n.rtl #acf-field-group-options .acf-sub-field-list-header h3:before {\n margin-right: 0;\n margin-left: 8px;\n}\n\n#acf-field-group-fields .postbox-header h2:before,\nh3.acf-sub-field-list-title:before,\n.acf-link-field-groups-popup h3:before {\n -webkit-mask-image: url(\"../../images/icons/icon-fields.svg\");\n mask-image: url(\"../../images/icons/icon-fields.svg\");\n}\n\n.acf-create-options-page-popup h3:before {\n -webkit-mask-image: url(\"../../images/icons/icon-sliders.svg\");\n mask-image: url(\"../../images/icons/icon-sliders.svg\");\n}\n\n#acf-field-group-options .postbox-header h2:before {\n -webkit-mask-image: url(\"../../images/icons/icon-settings.svg\");\n mask-image: url(\"../../images/icons/icon-settings.svg\");\n}\n\n.acf-field-setting-fc_layout .acf-field-settings-fc_head label:before {\n -webkit-mask-image: url(\"../../images/icons/icon-layout.svg\");\n mask-image: url(\"../../images/icons/icon-layout.svg\");\n}\n\n.acf-admin-single-post-type #acf-advanced-settings .postbox-header h2:before,\n.acf-admin-single-taxonomy #acf-advanced-settings .postbox-header h2:before,\n.acf-admin-single-options-page #acf-advanced-settings .postbox-header h2:before {\n -webkit-mask-image: url(\"../../images/icons/icon-post-type.svg\");\n mask-image: url(\"../../images/icons/icon-post-type.svg\");\n}\n\n.acf-field-setting-fc_layout .acf-field-settings-fc_head .acf-fc_draggable:hover .reorder-layout:before {\n width: 20px;\n height: 11px;\n background-color: #475467 !important;\n -webkit-mask-image: url(\"../../images/icons/icon-draggable.svg\");\n mask-image: url(\"../../images/icons/icon-draggable.svg\");\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tPostbox expand / collapse icon\n*\n*--------------------------------------------------------------------------------------------*/\n.post-type-acf-field-group .postbox-header .handle-actions,\n.post-type-acf-field-group #acf-field-group-fields .postbox-header .handle-actions,\n.post-type-acf-field-group #acf-field-group-options .postbox-header .handle-actions,\n.post-type-acf-field-group .postbox .postbox-header .handle-actions,\n.acf-admin-single-post-type #acf-advanced-settings .postbox-header .handle-actions,\n.acf-admin-single-taxonomy #acf-advanced-settings .postbox-header .handle-actions,\n.acf-admin-single-options-page #acf-advanced-settings .postbox-header .handle-actions {\n display: flex;\n}\n.post-type-acf-field-group .postbox-header .handle-actions .toggle-indicator:before,\n.post-type-acf-field-group #acf-field-group-fields .postbox-header .handle-actions .toggle-indicator:before,\n.post-type-acf-field-group #acf-field-group-options .postbox-header .handle-actions .toggle-indicator:before,\n.post-type-acf-field-group .postbox .postbox-header .handle-actions .toggle-indicator:before,\n.acf-admin-single-post-type #acf-advanced-settings .postbox-header .handle-actions .toggle-indicator:before,\n.acf-admin-single-taxonomy #acf-advanced-settings .postbox-header .handle-actions .toggle-indicator:before,\n.acf-admin-single-options-page #acf-advanced-settings .postbox-header .handle-actions .toggle-indicator:before {\n content: \"\";\n display: inline-flex;\n width: 20px;\n height: 20px;\n background-color: currentColor;\n border: none;\n border-radius: 0;\n -webkit-mask-size: contain;\n mask-size: contain;\n -webkit-mask-repeat: no-repeat;\n mask-repeat: no-repeat;\n -webkit-mask-position: center;\n mask-position: center;\n -webkit-mask-image: url(\"../../images/icons/icon-chevron-up.svg\");\n mask-image: url(\"../../images/icons/icon-chevron-up.svg\");\n}\n.post-type-acf-field-group.closed .postbox-header .handle-actions .toggle-indicator:before,\n.post-type-acf-field-group #acf-field-group-fields.closed .postbox-header .handle-actions .toggle-indicator:before,\n.post-type-acf-field-group #acf-field-group-options.closed .postbox-header .handle-actions .toggle-indicator:before,\n.post-type-acf-field-group .postbox.closed .postbox-header .handle-actions .toggle-indicator:before,\n.acf-admin-single-post-type #acf-advanced-settings.closed .postbox-header .handle-actions .toggle-indicator:before,\n.acf-admin-single-taxonomy #acf-advanced-settings.closed .postbox-header .handle-actions .toggle-indicator:before,\n.acf-admin-single-options-page #acf-advanced-settings.closed .postbox-header .handle-actions .toggle-indicator:before {\n -webkit-mask-image: url(\"../../images/icons/icon-chevron-down.svg\");\n mask-image: url(\"../../images/icons/icon-chevron-down.svg\");\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Tools & updates page heading icons\n*\n*---------------------------------------------------------------------------------------------*/\n.post-type-acf-field-group #acf-admin-tool-export h2,\n.post-type-acf-field-group #acf-admin-tool-export h3,\n.post-type-acf-field-group #acf-admin-tool-import h2,\n.post-type-acf-field-group #acf-admin-tool-import h3,\n.post-type-acf-field-group #acf-license-information h2,\n.post-type-acf-field-group #acf-license-information h3,\n.post-type-acf-field-group #acf-update-information h2,\n.post-type-acf-field-group #acf-update-information h3 {\n display: inline-flex;\n justify-content: flex-start;\n align-content: stretch;\n align-items: center;\n}\n.post-type-acf-field-group #acf-admin-tool-export h2:before,\n.post-type-acf-field-group #acf-admin-tool-export h3:before,\n.post-type-acf-field-group #acf-admin-tool-import h2:before,\n.post-type-acf-field-group #acf-admin-tool-import h3:before,\n.post-type-acf-field-group #acf-license-information h2:before,\n.post-type-acf-field-group #acf-license-information h3:before,\n.post-type-acf-field-group #acf-update-information h2:before,\n.post-type-acf-field-group #acf-update-information h3:before {\n content: \"\";\n display: inline-block;\n width: 20px;\n height: 20px;\n margin-right: 8px;\n background-color: #98A2B3;\n border: none;\n border-radius: 0;\n -webkit-mask-size: contain;\n mask-size: contain;\n -webkit-mask-repeat: no-repeat;\n mask-repeat: no-repeat;\n -webkit-mask-position: center;\n mask-position: center;\n}\n.post-type-acf-field-group.rtl #acf-admin-tool-export h2:before,\n.post-type-acf-field-group.rtl #acf-admin-tool-export h3:before,\n.post-type-acf-field-group.rtl #acf-admin-tool-import h2:before,\n.post-type-acf-field-group.rtl #acf-admin-tool-import h3:before,\n.post-type-acf-field-group.rtl #acf-license-information h2:before,\n.post-type-acf-field-group.rtl #acf-license-information h3:before,\n.post-type-acf-field-group.rtl #acf-update-information h2:before,\n.post-type-acf-field-group.rtl #acf-update-information h3:before {\n margin-right: 0;\n margin-left: 8px;\n}\n\n.post-type-acf-field-group #acf-admin-tool-export h2:before {\n -webkit-mask-image: url(\"../../images/icons/icon-export.svg\");\n mask-image: url(\"../../images/icons/icon-export.svg\");\n}\n\n.post-type-acf-field-group #acf-admin-tool-import h2:before {\n -webkit-mask-image: url(\"../../images/icons/icon-import.svg\");\n mask-image: url(\"../../images/icons/icon-import.svg\");\n}\n\n.post-type-acf-field-group #acf-license-information h3:before {\n -webkit-mask-image: url(\"../../images/icons/icon-key.svg\");\n mask-image: url(\"../../images/icons/icon-key.svg\");\n}\n\n.post-type-acf-field-group #acf-update-information h3:before {\n -webkit-mask-image: url(\"../../images/icons/icon-info.svg\");\n mask-image: url(\"../../images/icons/icon-info.svg\");\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tAdmin field icons\n*\n*--------------------------------------------------------------------------------------------*/\n.acf-admin-single-field-group .acf-input .acf-icon {\n width: 18px;\n height: 18px;\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tField type icon base styling\n*\n*--------------------------------------------------------------------------------------------*/\n.field-type-icon {\n box-sizing: border-box;\n display: inline-flex;\n align-content: center;\n align-items: center;\n justify-content: center;\n position: relative;\n width: 24px;\n height: 24px;\n top: -4px;\n background-color: #EBF5FA;\n border-width: 1px;\n border-style: solid;\n border-color: #A5D2E7;\n border-radius: 100%;\n}\n.field-type-icon:before {\n content: \"\";\n width: 14px;\n height: 14px;\n position: relative;\n background-color: #0783BE;\n -webkit-mask-size: cover;\n mask-size: cover;\n -webkit-mask-repeat: no-repeat;\n mask-repeat: no-repeat;\n -webkit-mask-position: center;\n mask-position: center;\n -webkit-mask-image: url(\"../../images/field-type-icons/icon-field-default.svg\");\n mask-image: url(\"../../images/field-type-icons/icon-field-default.svg\");\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tField type icons\n*\n*--------------------------------------------------------------------------------------------*/\n.field-type-icon.field-type-icon-text:before {\n -webkit-mask-image: url(\"../../images/field-type-icons/icon-field-text.svg\");\n mask-image: url(\"../../images/field-type-icons/icon-field-text.svg\");\n}\n\n.field-type-icon.field-type-icon-textarea:before {\n -webkit-mask-image: url(\"../../images/field-type-icons/icon-field-textarea.svg\");\n mask-image: url(\"../../images/field-type-icons/icon-field-textarea.svg\");\n}\n\n.field-type-icon.field-type-icon-textarea:before {\n -webkit-mask-image: url(\"../../images/field-type-icons/icon-field-textarea.svg\");\n mask-image: url(\"../../images/field-type-icons/icon-field-textarea.svg\");\n}\n\n.field-type-icon.field-type-icon-number:before {\n -webkit-mask-image: url(\"../../images/field-type-icons/icon-field-number.svg\");\n mask-image: url(\"../../images/field-type-icons/icon-field-number.svg\");\n}\n\n.field-type-icon.field-type-icon-range:before {\n -webkit-mask-image: url(\"../../images/field-type-icons/icon-field-range.svg\");\n mask-image: url(\"../../images/field-type-icons/icon-field-range.svg\");\n}\n\n.field-type-icon.field-type-icon-email:before {\n -webkit-mask-image: url(\"../../images/field-type-icons/icon-field-email.svg\");\n mask-image: url(\"../../images/field-type-icons/icon-field-email.svg\");\n}\n\n.field-type-icon.field-type-icon-url:before {\n -webkit-mask-image: url(\"../../images/field-type-icons/icon-field-url.svg\");\n mask-image: url(\"../../images/field-type-icons/icon-field-url.svg\");\n}\n\n.field-type-icon.field-type-icon-password:before {\n -webkit-mask-image: url(\"../../images/field-type-icons/icon-field-password.svg\");\n mask-image: url(\"../../images/field-type-icons/icon-field-password.svg\");\n}\n\n.field-type-icon.field-type-icon-image:before {\n -webkit-mask-image: url(\"../../images/field-type-icons/icon-field-image.svg\");\n mask-image: url(\"../../images/field-type-icons/icon-field-image.svg\");\n}\n\n.field-type-icon.field-type-icon-file:before {\n -webkit-mask-image: url(\"../../images/field-type-icons/icon-field-file.svg\");\n mask-image: url(\"../../images/field-type-icons/icon-field-file.svg\");\n}\n\n.field-type-icon.field-type-icon-wysiwyg:before {\n -webkit-mask-image: url(\"../../images/field-type-icons/icon-field-wysiwyg.svg\");\n mask-image: url(\"../../images/field-type-icons/icon-field-wysiwyg.svg\");\n}\n\n.field-type-icon.field-type-icon-oembed:before {\n -webkit-mask-image: url(\"../../images/field-type-icons/icon-field-oembed.svg\");\n mask-image: url(\"../../images/field-type-icons/icon-field-oembed.svg\");\n}\n\n.field-type-icon.field-type-icon-gallery:before {\n -webkit-mask-image: url(\"../../images/field-type-icons/icon-field-gallery.svg\");\n mask-image: url(\"../../images/field-type-icons/icon-field-gallery.svg\");\n}\n\n.field-type-icon.field-type-icon-select:before {\n -webkit-mask-image: url(\"../../images/field-type-icons/icon-field-select.svg\");\n mask-image: url(\"../../images/field-type-icons/icon-field-select.svg\");\n}\n\n.field-type-icon.field-type-icon-checkbox:before {\n -webkit-mask-image: url(\"../../images/field-type-icons/icon-field-checkbox.svg\");\n mask-image: url(\"../../images/field-type-icons/icon-field-checkbox.svg\");\n}\n\n.field-type-icon.field-type-icon-radio:before {\n -webkit-mask-image: url(\"../../images/field-type-icons/icon-field-radio.svg\");\n mask-image: url(\"../../images/field-type-icons/icon-field-radio.svg\");\n}\n\n.field-type-icon.field-type-icon-button-group:before {\n -webkit-mask-image: url(\"../../images/field-type-icons/icon-field-button-group.svg\");\n mask-image: url(\"../../images/field-type-icons/icon-field-button-group.svg\");\n}\n\n.field-type-icon.field-type-icon-true-false:before {\n -webkit-mask-image: url(\"../../images/field-type-icons/icon-field-true-false.svg\");\n mask-image: url(\"../../images/field-type-icons/icon-field-true-false.svg\");\n}\n\n.field-type-icon.field-type-icon-link:before {\n -webkit-mask-image: url(\"../../images/field-type-icons/icon-field-link.svg\");\n mask-image: url(\"../../images/field-type-icons/icon-field-link.svg\");\n}\n\n.field-type-icon.field-type-icon-post-object:before {\n -webkit-mask-image: url(\"../../images/field-type-icons/icon-field-post-object.svg\");\n mask-image: url(\"../../images/field-type-icons/icon-field-post-object.svg\");\n}\n\n.field-type-icon.field-type-icon-page-link:before {\n -webkit-mask-image: url(\"../../images/field-type-icons/icon-field-page-link.svg\");\n mask-image: url(\"../../images/field-type-icons/icon-field-page-link.svg\");\n}\n\n.field-type-icon.field-type-icon-relationship:before {\n -webkit-mask-image: url(\"../../images/field-type-icons/icon-field-relationship.svg\");\n mask-image: url(\"../../images/field-type-icons/icon-field-relationship.svg\");\n}\n\n.field-type-icon.field-type-icon-taxonomy:before {\n -webkit-mask-image: url(\"../../images/field-type-icons/icon-field-taxonomy.svg\");\n mask-image: url(\"../../images/field-type-icons/icon-field-taxonomy.svg\");\n}\n\n.field-type-icon.field-type-icon-user:before {\n -webkit-mask-image: url(\"../../images/field-type-icons/icon-field-user.svg\");\n mask-image: url(\"../../images/field-type-icons/icon-field-user.svg\");\n}\n\n.field-type-icon.field-type-icon-google-map:before {\n -webkit-mask-image: url(\"../../images/field-type-icons/icon-field-google-map.svg\");\n mask-image: url(\"../../images/field-type-icons/icon-field-google-map.svg\");\n}\n\n.field-type-icon.field-type-icon-date-picker:before {\n -webkit-mask-image: url(\"../../images/field-type-icons/icon-field-date-picker.svg\");\n mask-image: url(\"../../images/field-type-icons/icon-field-date-picker.svg\");\n}\n\n.field-type-icon.field-type-icon-date-time-picker:before {\n -webkit-mask-image: url(\"../../images/field-type-icons/icon-field-date-time-picker.svg\");\n mask-image: url(\"../../images/field-type-icons/icon-field-date-time-picker.svg\");\n}\n\n.field-type-icon.field-type-icon-time-picker:before {\n -webkit-mask-image: url(\"../../images/field-type-icons/icon-field-time-picker.svg\");\n mask-image: url(\"../../images/field-type-icons/icon-field-time-picker.svg\");\n}\n\n.field-type-icon.field-type-icon-color-picker:before {\n -webkit-mask-image: url(\"../../images/field-type-icons/icon-field-color-picker.svg\");\n mask-image: url(\"../../images/field-type-icons/icon-field-color-picker.svg\");\n}\n\n.field-type-icon.field-type-icon-message:before {\n -webkit-mask-image: url(\"../../images/field-type-icons/icon-field-message.svg\");\n mask-image: url(\"../../images/field-type-icons/icon-field-message.svg\");\n}\n\n.field-type-icon.field-type-icon-accordion:before {\n -webkit-mask-image: url(\"../../images/field-type-icons/icon-field-accordion.svg\");\n mask-image: url(\"../../images/field-type-icons/icon-field-accordion.svg\");\n}\n\n.field-type-icon.field-type-icon-tab:before {\n -webkit-mask-image: url(\"../../images/field-type-icons/icon-field-tab.svg\");\n mask-image: url(\"../../images/field-type-icons/icon-field-tab.svg\");\n}\n\n.field-type-icon.field-type-icon-group:before {\n -webkit-mask-image: url(\"../../images/field-type-icons/icon-field-group.svg\");\n mask-image: url(\"../../images/field-type-icons/icon-field-group.svg\");\n}\n\n.field-type-icon.field-type-icon-repeater:before {\n -webkit-mask-image: url(\"../../images/field-type-icons/icon-field-repeater.svg\");\n mask-image: url(\"../../images/field-type-icons/icon-field-repeater.svg\");\n}\n\n.field-type-icon.field-type-icon-flexible-content:before {\n -webkit-mask-image: url(\"../../images/field-type-icons/icon-field-flexible-content.svg\");\n mask-image: url(\"../../images/field-type-icons/icon-field-flexible-content.svg\");\n}\n\n.field-type-icon.field-type-icon-clone:before {\n -webkit-mask-image: url(\"../../images/field-type-icons/icon-field-clone.svg\");\n mask-image: url(\"../../images/field-type-icons/icon-field-clone.svg\");\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Tools page layout\n*\n*---------------------------------------------------------------------------------------------*/\n#acf-admin-tools .postbox-header {\n display: none;\n}\n#acf-admin-tools .acf-meta-box-wrap.-grid {\n margin-top: 0;\n margin-right: 0;\n margin-bottom: 0;\n margin-left: 0;\n}\n#acf-admin-tools .acf-meta-box-wrap.-grid .postbox {\n width: 100%;\n clear: none;\n float: none;\n margin-bottom: 0;\n}\n@media screen and (max-width: 880px) {\n #acf-admin-tools .acf-meta-box-wrap.-grid .postbox {\n flex: 1 1 100%;\n }\n}\n#acf-admin-tools .acf-meta-box-wrap.-grid .postbox:nth-child(odd) {\n margin-left: 0;\n}\n#acf-admin-tools .meta-box-sortables {\n display: grid;\n grid-template-columns: repeat(2, 1fr);\n grid-template-rows: repeat(1, 1fr);\n grid-column-gap: 32px;\n grid-row-gap: 32px;\n}\n@media screen and (max-width: 880px) {\n #acf-admin-tools .meta-box-sortables {\n display: flex;\n flex-wrap: wrap;\n justify-content: flex-start;\n align-content: flex-start;\n align-items: center;\n grid-column-gap: 8px;\n grid-row-gap: 8px;\n }\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Tools export pages\n*\n*---------------------------------------------------------------------------------------------*/\n#acf-admin-tools.tool-export .inside {\n margin: 0;\n}\n#acf-admin-tools.tool-export .acf-postbox-header {\n margin-bottom: 24px;\n}\n#acf-admin-tools.tool-export .acf-postbox-main {\n border: none;\n margin: 0;\n padding-top: 0;\n padding-right: 24px;\n padding-bottom: 0;\n padding-left: 0;\n}\n#acf-admin-tools.tool-export .acf-postbox-columns {\n margin-top: 0;\n margin-right: 280px;\n margin-bottom: 0;\n margin-left: 0;\n padding: 0;\n}\n#acf-admin-tools.tool-export .acf-postbox-columns .acf-postbox-side {\n padding: 0;\n}\n#acf-admin-tools.tool-export .acf-postbox-columns .acf-postbox-side .acf-panel {\n margin: 0;\n padding: 0;\n}\n#acf-admin-tools.tool-export .acf-postbox-columns .acf-postbox-side:before {\n display: none;\n}\n#acf-admin-tools.tool-export .acf-postbox-columns .acf-postbox-side .acf-btn {\n display: block;\n width: 100%;\n text-align: center;\n}\n#acf-admin-tools.tool-export .meta-box-sortables {\n display: block;\n}\n#acf-admin-tools.tool-export .acf-panel {\n border: none;\n}\n#acf-admin-tools.tool-export .acf-panel h3 {\n margin: 0;\n padding: 0;\n color: #344054;\n}\n#acf-admin-tools.tool-export .acf-panel h3:before {\n display: none;\n}\n#acf-admin-tools.tool-export .acf-checkbox-list {\n margin-top: 16px;\n border-width: 1px;\n border-style: solid;\n border-color: #D0D5DD;\n border-radius: 6px;\n}\n#acf-admin-tools.tool-export .acf-checkbox-list li {\n display: inline-flex;\n box-sizing: border-box;\n width: 100%;\n height: 48px;\n align-items: center;\n margin: 0;\n padding-right: 12px;\n padding-left: 12px;\n border-bottom-width: 1px;\n border-bottom-style: solid;\n border-bottom-color: #EAECF0;\n}\n#acf-admin-tools.tool-export .acf-checkbox-list li:last-child {\n border-bottom: none;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Updates layout\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-settings-wrap.acf-updates {\n display: flex;\n flex-direction: row;\n flex-wrap: wrap;\n justify-content: flex-start;\n align-content: flex-start;\n align-items: flex-start;\n}\n\n.custom-fields_page_acf-settings-updates .acf-admin-notice,\n.custom-fields_page_acf-settings-updates .acf-upgrade-notice,\n.custom-fields_page_acf-settings-updates .notice {\n flex: 1 1 100%;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* ACF Box\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-settings-wrap.acf-updates .acf-box {\n margin-top: 0;\n margin-right: 0;\n margin-bottom: 0;\n margin-left: 0;\n}\n.acf-settings-wrap.acf-updates .acf-box .inner {\n padding-top: 24px;\n padding-right: 24px;\n padding-bottom: 24px;\n padding-left: 24px;\n}\n@media screen and (max-width: 880px) {\n .acf-settings-wrap.acf-updates .acf-box {\n flex: 1 1 100%;\n }\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Notices\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-settings-wrap.acf-updates .acf-admin-notice {\n flex: 1 1 100%;\n margin-top: 16px;\n margin-right: 0;\n margin-left: 0;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* License information\n*\n*---------------------------------------------------------------------------------------------*/\n#acf-license-information {\n flex: 1 1 65%;\n margin-right: 32px;\n}\n#acf-license-information .inner {\n padding: 0;\n}\n#acf-license-information .inner .acf-license-defined {\n padding: 24px;\n margin: 0;\n}\n#acf-license-information .inner .acf-activation-form,\n#acf-license-information .inner .acf-retry-activation {\n padding: 24px;\n}\n#acf-license-information .inner .acf-activation-form.acf-retry-activation,\n#acf-license-information .inner .acf-retry-activation.acf-retry-activation {\n padding-top: 0;\n min-height: 40px;\n}\n#acf-license-information .inner .acf-activation-form.acf-retry-activation .acf-recheck-license.acf-btn,\n#acf-license-information .inner .acf-retry-activation.acf-retry-activation .acf-recheck-license.acf-btn {\n float: none;\n line-height: initial;\n}\n#acf-license-information .inner .acf-activation-form.acf-retry-activation .acf-recheck-license.acf-btn i,\n#acf-license-information .inner .acf-retry-activation.acf-retry-activation .acf-recheck-license.acf-btn i {\n display: none;\n}\n#acf-license-information .inner .acf-activation-form .acf-manage-license-btn,\n#acf-license-information .inner .acf-retry-activation .acf-manage-license-btn {\n float: right;\n line-height: 40px;\n align-items: center;\n display: inline-flex;\n}\n#acf-license-information .inner .acf-activation-form .acf-manage-license-btn.acf-renew-subscription,\n#acf-license-information .inner .acf-retry-activation .acf-manage-license-btn.acf-renew-subscription {\n float: none;\n line-height: initial;\n}\n#acf-license-information .inner .acf-activation-form .acf-manage-license-btn i,\n#acf-license-information .inner .acf-retry-activation .acf-manage-license-btn i {\n margin: 0 0 0 5px;\n width: 19px;\n height: 19px;\n}\n#acf-license-information .inner .acf-activation-form .acf-recheck-license,\n#acf-license-information .inner .acf-retry-activation .acf-recheck-license {\n float: right;\n line-height: 40px;\n}\n#acf-license-information .inner .acf-activation-form .acf-recheck-license i,\n#acf-license-information .inner .acf-retry-activation .acf-recheck-license i {\n margin-right: 8px;\n vertical-align: middle;\n}\n#acf-license-information .inner .acf-license-status-wrap {\n background: #F9FAFB;\n border-top: 1px solid #EAECF0;\n border-bottom-left-radius: 8px;\n border-bottom-right-radius: 8px;\n}\n#acf-license-information .inner .acf-license-status-wrap .acf-license-status-table {\n font-size: 14px;\n padding: 24px 24px 16px 24px;\n}\n#acf-license-information .inner .acf-license-status-wrap .acf-license-status-table th {\n width: 160px;\n font-weight: 500;\n text-align: left;\n padding-bottom: 16px;\n}\n#acf-license-information .inner .acf-license-status-wrap .acf-license-status-table td {\n padding-bottom: 16px;\n}\n#acf-license-information .inner .acf-license-status-wrap .acf-license-status-table td .acf-license-status {\n display: inline-block;\n height: 24px;\n line-height: 24px;\n border-radius: 100px;\n background: #EAECF0;\n padding: 0 13px 1px 12px;\n border: 1px solid rgba(0, 0, 0, 0.12);\n color: #667085;\n}\n#acf-license-information .inner .acf-license-status-wrap .acf-license-status-table td .acf-license-status.active {\n background: rgba(18, 183, 106, 0.15);\n border: 1px solid rgba(18, 183, 106, 0.24);\n color: rgb(18, 183, 106);\n}\n#acf-license-information .inner .acf-license-status-wrap .acf-license-status-table td .acf-license-status.expired, #acf-license-information .inner .acf-license-status-wrap .acf-license-status-table td .acf-license-status.cancelled {\n background: rgba(209, 55, 55, 0.24);\n border: 1px solid rgba(209, 55, 55, 0.24);\n color: rgb(209, 55, 55);\n}\n#acf-license-information .inner .acf-license-status-wrap .acf-no-license-view-pricing {\n padding: 12px 24px;\n border-top: 1px solid #EAECF0;\n color: #667085;\n}\n@media screen and (max-width: 1024px) {\n #acf-license-information {\n margin-right: 0;\n margin-bottom: 32px;\n }\n}\n#acf-license-information label {\n font-weight: 500;\n}\n#acf-license-information .acf-input-wrap {\n margin-top: 8px;\n margin-bottom: 24px;\n}\n#acf-license-information #acf_pro_license {\n width: 100%;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Update information table\n*\n*---------------------------------------------------------------------------------------------*/\n#acf-update-information {\n flex: 1 1 35%;\n max-width: calc(35% - 32px);\n}\n#acf-update-information .form-table th,\n#acf-update-information .form-table td {\n padding-top: 0;\n padding-right: 0;\n padding-bottom: 24px;\n padding-left: 0;\n color: #344054;\n}\n#acf-update-information .acf-update-changelog {\n margin-top: 8px;\n margin-bottom: 24px;\n padding-top: 8px;\n border-top-width: 1px;\n border-top-style: solid;\n border-top-color: #EAECF0;\n color: #344054;\n}\n#acf-update-information .acf-update-changelog h4 {\n margin-bottom: 0;\n}\n#acf-update-information .acf-update-changelog p {\n margin-top: 0;\n margin-bottom: 16px;\n}\n#acf-update-information .acf-update-changelog p:last-of-type {\n margin-bottom: 0;\n}\n#acf-update-information .acf-update-changelog p em {\n color: #667085;\n}\n#acf-update-information .acf-btn {\n display: inline-flex;\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tHeader pro upgrade button\n*\n*--------------------------------------------------------------------------------------------*/\n.acf-admin-toolbar a.acf-admin-toolbar-upgrade-btn {\n display: inline-flex;\n align-items: center;\n align-self: stretch;\n padding-top: 0;\n padding-right: 16px;\n padding-bottom: 0;\n padding-left: 16px;\n background: linear-gradient(90.52deg, #3E8BFF 0.44%, #A45CFF 113.3%);\n box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);\n background-size: 180% 80%;\n background-position: 100% 0;\n transition: background-position 0.5s;\n border-radius: 6px;\n text-decoration: none;\n}\n@media screen and (max-width: 768px) {\n .acf-admin-toolbar a.acf-admin-toolbar-upgrade-btn {\n display: none;\n }\n}\n.acf-admin-toolbar a.acf-admin-toolbar-upgrade-btn:hover {\n background-position: 0 0;\n}\n.acf-admin-toolbar a.acf-admin-toolbar-upgrade-btn:focus {\n border: none;\n outline: none;\n box-shadow: none;\n}\n.acf-admin-toolbar a.acf-admin-toolbar-upgrade-btn p {\n margin: 0;\n padding-top: 8px;\n padding-bottom: 8px;\n font-weight: normal;\n text-transform: none;\n color: #fff;\n}\n.acf-admin-toolbar a.acf-admin-toolbar-upgrade-btn .acf-icon {\n width: 18px;\n height: 18px;\n margin-right: 6px;\n margin-left: -2px;\n background-color: #F9FAFB;\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n* Upsell block\n*\n*--------------------------------------------------------------------------------------------*/\n.acf-admin-page #tmpl-acf-field-group-pro-features,\n.acf-admin-page #acf-field-group-pro-features {\n display: none;\n align-items: center;\n min-height: 120px;\n background-color: #121833;\n background-image: url(../../images/pro-upgrade-grid-bg.svg), url(../../images/pro-upgrade-overlay.svg);\n background-repeat: repeat, no-repeat;\n background-size: 1224px, 1880px;\n background-position: left top, -520px -680px;\n color: #EAECF0;\n border-radius: 8px;\n margin-top: 24px;\n margin-bottom: 24px;\n}\n@media screen and (max-width: 768px) {\n .acf-admin-page #tmpl-acf-field-group-pro-features,\n .acf-admin-page #acf-field-group-pro-features {\n background-size: 1024px, 980px;\n background-position: left top, -500px -200px;\n }\n}\n@media screen and (max-width: 1200px) {\n .acf-admin-page #tmpl-acf-field-group-pro-features,\n .acf-admin-page #acf-field-group-pro-features {\n background-size: 1024px, 1880px;\n background-position: left top, -520px -300px;\n }\n}\n.acf-admin-page #tmpl-acf-field-group-pro-features .postbox-header,\n.acf-admin-page #acf-field-group-pro-features .postbox-header {\n display: none;\n}\n.acf-admin-page #tmpl-acf-field-group-pro-features .inside,\n.acf-admin-page #acf-field-group-pro-features .inside {\n width: 100%;\n border: none;\n padding: 0;\n}\n.acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-wrapper,\n.acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-wrapper {\n display: flex;\n justify-content: center;\n align-content: stretch;\n align-items: center;\n gap: 96px;\n height: 358px;\n max-width: 950px;\n margin: 0 auto;\n padding: 0 35px;\n}\n@media screen and (max-width: 1200px) {\n .acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-wrapper,\n .acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-wrapper {\n gap: 48px;\n }\n}\n@media screen and (max-width: 768px) {\n .acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-wrapper,\n .acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-wrapper {\n gap: 0;\n }\n}\n.acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-title,\n.acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-title-sm,\n.acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-title,\n.acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-title-sm {\n font-weight: 590;\n line-height: 150%;\n}\n.acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-title .acf-pro-label,\n.acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-title-sm .acf-pro-label,\n.acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-title .acf-pro-label,\n.acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-title-sm .acf-pro-label {\n font-weight: normal;\n margin-top: -4px;\n margin-left: 2px;\n vertical-align: middle;\n height: 22px;\n}\n.acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-title-sm,\n.acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-title-sm {\n display: none !important;\n font-size: 18px;\n}\n.acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-title-sm .acf-pro-label,\n.acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-title-sm .acf-pro-label {\n font-size: 10px;\n height: 20px;\n}\n@media screen and (max-width: 768px) {\n .acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-title-sm,\n .acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-title-sm {\n width: 100%;\n text-align: center;\n }\n}\n@media screen and (max-width: 768px) {\n .acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-wrapper,\n .acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-wrapper {\n flex-direction: column;\n flex-wrap: wrap;\n justify-content: flex-start;\n align-content: flex-start;\n align-items: flex-start;\n padding: 32px 32px 0 32px;\n height: unset;\n }\n .acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-title-sm,\n .acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-title-sm {\n display: block !important;\n margin-bottom: 24px;\n }\n}\n.acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-content,\n.acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-content {\n display: flex;\n flex-direction: column;\n width: 416px;\n}\n.acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-content .acf-field-group-pro-features-desc,\n.acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-content .acf-field-group-pro-features-desc {\n margin-top: 8px;\n margin-bottom: 24px;\n font-size: 15px;\n font-weight: 300;\n color: #D0D5DD;\n}\n@media screen and (max-width: 768px) {\n .acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-content,\n .acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-content {\n width: 100%;\n order: 1;\n margin-right: 0;\n margin-bottom: 8px;\n }\n .acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-content .acf-field-group-pro-features-title,\n .acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-content .acf-field-group-pro-features-desc,\n .acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-content .acf-field-group-pro-features-title,\n .acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-content .acf-field-group-pro-features-desc {\n display: none !important;\n }\n}\n.acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-actions,\n.acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-actions {\n display: flex;\n flex-direction: row;\n align-items: flex-start;\n min-width: 160px;\n gap: 12px;\n}\n@media screen and (max-width: 768px) {\n .acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-actions,\n .acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-actions {\n justify-content: flex-start;\n flex-direction: column;\n margin-bottom: 24px;\n }\n .acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-actions a,\n .acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-actions a {\n justify-content: center;\n text-align: center;\n width: 100%;\n }\n}\n.acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-grid,\n.acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-grid {\n display: flex;\n flex-direction: row;\n flex-wrap: wrap;\n gap: 16px;\n width: 416px;\n}\n.acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-grid .acf-field-group-pro-feature,\n.acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-grid .acf-field-group-pro-feature {\n display: flex;\n flex-direction: column;\n justify-content: center;\n align-items: center;\n width: 128px;\n height: 124px;\n background: rgba(255, 255, 255, 0.08);\n box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.04), 0px 8px 16px rgba(0, 0, 0, 0.08), inset 0 0 0 1px rgba(255, 255, 255, 0.08);\n backdrop-filter: blur(6px);\n border-radius: 8px;\n}\n.acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-grid .acf-field-group-pro-feature .field-type-icon,\n.acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-grid .acf-field-group-pro-feature .field-type-icon {\n border: none;\n background: none;\n width: 24px;\n opacity: 0.8;\n}\n.acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-grid .acf-field-group-pro-feature .field-type-icon::before,\n.acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-grid .acf-field-group-pro-feature .field-type-icon::before {\n background-color: #fff;\n width: 20px;\n height: 20px;\n}\n@media screen and (max-width: 1200px) {\n .acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-grid .acf-field-group-pro-feature .field-type-icon::before,\n .acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-grid .acf-field-group-pro-feature .field-type-icon::before {\n width: 18px;\n height: 18px;\n }\n}\n.acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-grid .acf-field-group-pro-feature .pro-feature-blocks::before,\n.acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-grid .acf-field-group-pro-feature .pro-feature-blocks::before {\n -webkit-mask-image: url(\"../../images/icons/icon-extended-menu.svg\");\n mask-image: url(\"../../images/icons/icon-extended-menu.svg\");\n}\n.acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-grid .acf-field-group-pro-feature .pro-feature-options-pages::before,\n.acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-grid .acf-field-group-pro-feature .pro-feature-options-pages::before {\n -webkit-mask-image: url(\"../../images/icons/icon-settings.svg\");\n mask-image: url(\"../../images/icons/icon-settings.svg\");\n}\n.acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-grid .acf-field-group-pro-feature .field-type-label,\n.acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-grid .acf-field-group-pro-feature .field-type-label {\n margin-top: 4px;\n font-size: 13px;\n font-weight: 300;\n text-align: center;\n color: #fff;\n}\n@media screen and (max-width: 1200px) {\n .acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-grid,\n .acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-grid {\n flex-direction: column;\n gap: 8px;\n width: 288px;\n }\n .acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-grid .acf-field-group-pro-feature,\n .acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-grid .acf-field-group-pro-feature {\n width: 100%;\n height: 40px;\n flex-direction: row;\n justify-content: unset;\n gap: 8px;\n }\n .acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-grid .acf-field-group-pro-feature .field-type-icon,\n .acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-grid .acf-field-group-pro-feature .field-type-icon {\n position: initial;\n margin-left: 16px;\n }\n .acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-grid .acf-field-group-pro-feature .field-type-label,\n .acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-grid .acf-field-group-pro-feature .field-type-label {\n margin-top: 0;\n }\n}\n@media screen and (max-width: 768px) {\n .acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-grid,\n .acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-grid {\n gap: 0;\n width: 100%;\n height: auto;\n margin-bottom: 16px;\n flex-direction: unset;\n flex-wrap: wrap;\n }\n .acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-grid .acf-field-group-pro-feature,\n .acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-grid .acf-field-group-pro-feature {\n flex: 1 0 50%;\n margin-bottom: 8px;\n width: auto;\n height: auto;\n justify-content: center;\n background: none;\n box-shadow: none;\n backdrop-filter: none;\n }\n .acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-grid .acf-field-group-pro-feature .field-type-label,\n .acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-grid .acf-field-group-pro-feature .field-type-label {\n margin-left: 2px;\n }\n .acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-grid .acf-field-group-pro-feature .field-type-icon,\n .acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-grid .acf-field-group-pro-feature .field-type-icon {\n position: initial;\n margin-left: 0;\n }\n .acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-grid .acf-field-group-pro-feature .field-type-icon:before,\n .acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-grid .acf-field-group-pro-feature .field-type-icon:before {\n height: 16px;\n width: 16px;\n }\n .acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-grid .acf-field-group-pro-feature .field-type-label,\n .acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-grid .acf-field-group-pro-feature .field-type-label {\n font-size: 12px;\n margin-top: 0;\n }\n}\n.acf-admin-page #tmpl-acf-field-group-pro-features h1,\n.acf-admin-page #acf-field-group-pro-features h1 {\n margin-top: 0;\n margin-bottom: 4px;\n padding-top: 0;\n padding-bottom: 0;\n font-weight: bold;\n color: #F9FAFB;\n}\n.acf-admin-page #tmpl-acf-field-group-pro-features h1 .acf-icon,\n.acf-admin-page #acf-field-group-pro-features h1 .acf-icon {\n margin-right: 8px;\n}\n.acf-admin-page #tmpl-acf-field-group-pro-features .acf-btn,\n.acf-admin-page #acf-field-group-pro-features .acf-btn {\n display: inline-flex;\n background-color: rgba(255, 255, 255, 0.1);\n border: none;\n box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.04), 0px 4px 8px rgba(0, 0, 0, 0.06), inset 0 0 0 1px rgba(255, 255, 255, 0.16);\n backdrop-filter: blur(6px);\n padding: 8px 24px;\n height: 48px;\n}\n.acf-admin-page #tmpl-acf-field-group-pro-features .acf-btn:hover,\n.acf-admin-page #acf-field-group-pro-features .acf-btn:hover {\n background-color: rgba(255, 255, 255, 0.2);\n}\n.acf-admin-page #tmpl-acf-field-group-pro-features .acf-btn .acf-icon,\n.acf-admin-page #acf-field-group-pro-features .acf-btn .acf-icon {\n margin-right: -2px;\n margin-left: 6px;\n}\n.acf-admin-page #tmpl-acf-field-group-pro-features .acf-btn.acf-pro-features-upgrade,\n.acf-admin-page #acf-field-group-pro-features .acf-btn.acf-pro-features-upgrade {\n background: linear-gradient(90.52deg, #3E8BFF 0.44%, #A45CFF 113.3%);\n background-size: 160% 80%;\n background-position: 100% 0;\n box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.04), 0px 4px 8px rgba(0, 0, 0, 0.06), inset 0 0 0 1px rgba(255, 255, 255, 0.16);\n border-radius: 6px;\n transition: background-position 0.5s;\n}\n.acf-admin-page #tmpl-acf-field-group-pro-features .acf-btn.acf-pro-features-upgrade:hover,\n.acf-admin-page #acf-field-group-pro-features .acf-btn.acf-pro-features-upgrade:hover {\n background-position: 0 0;\n}\n.acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-footer-wrap,\n.acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-footer-wrap {\n height: 48px;\n background: rgba(16, 24, 40, 0.4);\n backdrop-filter: blur(6px);\n border-top: 1px solid rgba(255, 255, 255, 0.08);\n border-bottom-left-radius: 8px;\n border-bottom-right-radius: 8px;\n color: #98A2B3;\n font-size: 13px;\n font-weight: 300;\n padding: 0 35px;\n}\n.acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-footer-wrap .acf-field-group-pro-features-footer,\n.acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-footer-wrap .acf-field-group-pro-features-footer {\n display: flex;\n align-items: center;\n justify-content: space-between;\n max-width: 950px;\n height: 48px;\n margin: 0 auto;\n}\n.acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-footer-wrap .acf-field-group-pro-features-wpengine-logo,\n.acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-footer-wrap .acf-field-group-pro-features-wpengine-logo {\n height: 16px;\n vertical-align: middle;\n margin-top: -2px;\n margin-left: 3px;\n}\n.acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-footer-wrap a,\n.acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-footer-wrap a {\n color: #98A2B3;\n text-decoration: none;\n}\n.acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-footer-wrap a:hover,\n.acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-footer-wrap a:hover {\n color: #D0D5DD;\n}\n.acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-footer-wrap a .acf-icon,\n.acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-footer-wrap a .acf-icon {\n width: 18px;\n height: 18px;\n margin-left: 4px;\n}\n.acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-footer-wrap .acf-more-tools-from-wpengine a,\n.acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-footer-wrap .acf-more-tools-from-wpengine a {\n display: inline-flex;\n align-items: center;\n}\n@media screen and (max-width: 768px) {\n .acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-footer-wrap,\n .acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-footer-wrap {\n height: 70px;\n font-size: 12px;\n }\n .acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-footer-wrap .acf-more-tools-from-wpengine,\n .acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-footer-wrap .acf-more-tools-from-wpengine {\n display: none;\n }\n .acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-footer-wrap .acf-field-group-pro-features-footer,\n .acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-footer-wrap .acf-field-group-pro-features-footer {\n justify-content: center;\n height: 70px;\n }\n .acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-footer-wrap .acf-field-group-pro-features-footer .acf-field-group-pro-features-wpengine-logo,\n .acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-footer-wrap .acf-field-group-pro-features-footer .acf-field-group-pro-features-wpengine-logo {\n clear: both;\n margin: 6px auto 0 auto;\n display: block;\n }\n}\n\n.acf-no-field-groups #tmpl-acf-field-group-pro-features,\n.acf-no-post-types #tmpl-acf-field-group-pro-features,\n.acf-no-taxonomies #tmpl-acf-field-group-pro-features {\n margin-top: 0;\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tPost type & taxonomies styles\n*\n*--------------------------------------------------------------------------------------------*/\n.acf-admin-single-post-type label[for=acf-basic-settings-hide],\n.acf-admin-single-taxonomy label[for=acf-basic-settings-hide],\n.acf-admin-single-options-page label[for=acf-basic-settings-hide] {\n display: none;\n}\n.acf-admin-single-post-type fieldset.columns-prefs,\n.acf-admin-single-taxonomy fieldset.columns-prefs,\n.acf-admin-single-options-page fieldset.columns-prefs {\n display: none;\n}\n.acf-admin-single-post-type #acf-basic-settings .postbox-header,\n.acf-admin-single-taxonomy #acf-basic-settings .postbox-header,\n.acf-admin-single-options-page #acf-basic-settings .postbox-header {\n display: none;\n}\n.acf-admin-single-post-type .postbox-container,\n.acf-admin-single-post-type .notice,\n.acf-admin-single-taxonomy .postbox-container,\n.acf-admin-single-taxonomy .notice,\n.acf-admin-single-options-page .postbox-container,\n.acf-admin-single-options-page .notice {\n max-width: 1440px;\n clear: left;\n}\n.acf-admin-single-post-type #post-body-content,\n.acf-admin-single-taxonomy #post-body-content,\n.acf-admin-single-options-page #post-body-content {\n margin: 0;\n}\n.acf-admin-single-post-type .postbox .inside,\n.acf-admin-single-post-type .acf-box .inside,\n.acf-admin-single-taxonomy .postbox .inside,\n.acf-admin-single-taxonomy .acf-box .inside,\n.acf-admin-single-options-page .postbox .inside,\n.acf-admin-single-options-page .acf-box .inside {\n padding-top: 48px;\n padding-right: 48px;\n padding-bottom: 48px;\n padding-left: 48px;\n}\n.acf-admin-single-post-type #acf-advanced-settings.postbox .inside,\n.acf-admin-single-taxonomy #acf-advanced-settings.postbox .inside,\n.acf-admin-single-options-page #acf-advanced-settings.postbox .inside {\n padding-bottom: 24px;\n}\n.acf-admin-single-post-type .postbox-container .meta-box-sortables #acf-basic-settings .inside,\n.acf-admin-single-taxonomy .postbox-container .meta-box-sortables #acf-basic-settings .inside,\n.acf-admin-single-options-page .postbox-container .meta-box-sortables #acf-basic-settings .inside {\n border: none;\n}\n.acf-admin-single-post-type .acf-input-wrap,\n.acf-admin-single-taxonomy .acf-input-wrap,\n.acf-admin-single-options-page .acf-input-wrap {\n overflow: visible;\n}\n.acf-admin-single-post-type .acf-field,\n.acf-admin-single-taxonomy .acf-field,\n.acf-admin-single-options-page .acf-field {\n margin-top: 0;\n margin-right: 0;\n margin-bottom: 24px;\n margin-left: 0;\n}\n.acf-admin-single-post-type .acf-field .acf-label,\n.acf-admin-single-taxonomy .acf-field .acf-label,\n.acf-admin-single-options-page .acf-field .acf-label {\n margin-bottom: 6px;\n}\n.acf-admin-single-post-type .acf-field-text,\n.acf-admin-single-post-type .acf-field-textarea,\n.acf-admin-single-post-type .acf-field-select,\n.acf-admin-single-taxonomy .acf-field-text,\n.acf-admin-single-taxonomy .acf-field-textarea,\n.acf-admin-single-taxonomy .acf-field-select,\n.acf-admin-single-options-page .acf-field-text,\n.acf-admin-single-options-page .acf-field-textarea,\n.acf-admin-single-options-page .acf-field-select {\n max-width: 600px;\n}\n.acf-admin-single-post-type .acf-field-true-false,\n.acf-admin-single-taxonomy .acf-field-true-false,\n.acf-admin-single-options-page .acf-field-true-false {\n max-width: 700px;\n}\n.acf-admin-single-post-type .acf-field-supports,\n.acf-admin-single-taxonomy .acf-field-supports,\n.acf-admin-single-options-page .acf-field-supports {\n max-width: 600px;\n}\n.acf-admin-single-post-type .acf-field-supports .acf-label,\n.acf-admin-single-taxonomy .acf-field-supports .acf-label,\n.acf-admin-single-options-page .acf-field-supports .acf-label {\n display: block;\n}\n.acf-admin-single-post-type .acf-field-supports .acf-label .description,\n.acf-admin-single-taxonomy .acf-field-supports .acf-label .description,\n.acf-admin-single-options-page .acf-field-supports .acf-label .description {\n margin-top: 4px;\n margin-bottom: 12px;\n}\n.acf-admin-single-post-type .acf-field-supports .acf_post_type_supports,\n.acf-admin-single-taxonomy .acf-field-supports .acf_post_type_supports,\n.acf-admin-single-options-page .acf-field-supports .acf_post_type_supports {\n display: flex;\n flex-wrap: wrap;\n justify-content: flex-start;\n align-content: flex-start;\n align-items: flex-start;\n}\n.acf-admin-single-post-type .acf-field-supports .acf_post_type_supports:focus-within,\n.acf-admin-single-taxonomy .acf-field-supports .acf_post_type_supports:focus-within,\n.acf-admin-single-options-page .acf-field-supports .acf_post_type_supports:focus-within {\n border-color: transparent;\n}\n.acf-admin-single-post-type .acf-field-supports .acf_post_type_supports li,\n.acf-admin-single-taxonomy .acf-field-supports .acf_post_type_supports li,\n.acf-admin-single-options-page .acf-field-supports .acf_post_type_supports li {\n flex: 0 0 25%;\n}\n.acf-admin-single-post-type .acf-field-supports .acf_post_type_supports li a.button,\n.acf-admin-single-taxonomy .acf-field-supports .acf_post_type_supports li a.button,\n.acf-admin-single-options-page .acf-field-supports .acf_post_type_supports li a.button {\n background-color: transparent;\n padding: 0;\n border: 0;\n height: auto;\n min-height: auto;\n margin-top: 0;\n border-radius: 0;\n line-height: 22px;\n}\n.acf-admin-single-post-type .acf-field-supports .acf_post_type_supports li a.button:before,\n.acf-admin-single-taxonomy .acf-field-supports .acf_post_type_supports li a.button:before,\n.acf-admin-single-options-page .acf-field-supports .acf_post_type_supports li a.button:before {\n content: \"\";\n margin-right: 6px;\n display: inline-flex;\n width: 16px;\n height: 16px;\n background-color: currentColor;\n border: none;\n border-radius: 0;\n -webkit-mask-size: contain;\n mask-size: contain;\n -webkit-mask-repeat: no-repeat;\n mask-repeat: no-repeat;\n -webkit-mask-position: center;\n mask-position: center;\n text-indent: 500%;\n white-space: nowrap;\n overflow: hidden;\n -webkit-mask-image: url(\"../../images/icons/icon-add.svg\");\n mask-image: url(\"../../images/icons/icon-add.svg\");\n}\n.acf-admin-single-post-type .acf-field-supports .acf_post_type_supports li a.button:hover,\n.acf-admin-single-taxonomy .acf-field-supports .acf_post_type_supports li a.button:hover,\n.acf-admin-single-options-page .acf-field-supports .acf_post_type_supports li a.button:hover {\n color: #044E71;\n}\n.acf-admin-single-post-type .acf-field-supports .acf_post_type_supports li input[type=text],\n.acf-admin-single-taxonomy .acf-field-supports .acf_post_type_supports li input[type=text],\n.acf-admin-single-options-page .acf-field-supports .acf_post_type_supports li input[type=text] {\n width: calc(100% - 36px);\n padding: 0;\n box-shadow: none;\n border: none;\n border-bottom: 1px solid #D0D5DD;\n border-radius: 0;\n height: auto;\n margin: 0;\n min-height: auto;\n}\n.acf-admin-single-post-type .acf-field-supports .acf_post_type_supports li input[type=text]:focus,\n.acf-admin-single-taxonomy .acf-field-supports .acf_post_type_supports li input[type=text]:focus,\n.acf-admin-single-options-page .acf-field-supports .acf_post_type_supports li input[type=text]:focus {\n outline: none;\n border-bottom-color: #399CCB;\n}\n.acf-admin-single-post-type .acf-field-seperator,\n.acf-admin-single-taxonomy .acf-field-seperator,\n.acf-admin-single-options-page .acf-field-seperator {\n margin-top: 40px;\n margin-bottom: 40px;\n border-top: 1px solid #EAECF0;\n border-right: none;\n border-bottom: none;\n border-left: none;\n}\n.acf-admin-single-post-type .acf-field-advanced-configuration,\n.acf-admin-single-taxonomy .acf-field-advanced-configuration,\n.acf-admin-single-options-page .acf-field-advanced-configuration {\n margin-bottom: 0;\n}\n.acf-admin-single-post-type .postbox-container .acf-tab-wrap,\n.acf-admin-single-post-type .acf-regenerate-labels-bar,\n.acf-admin-single-taxonomy .postbox-container .acf-tab-wrap,\n.acf-admin-single-taxonomy .acf-regenerate-labels-bar,\n.acf-admin-single-options-page .postbox-container .acf-tab-wrap,\n.acf-admin-single-options-page .acf-regenerate-labels-bar {\n position: relative;\n top: -48px;\n left: -48px;\n width: calc(100% + 96px);\n}\n.acf-admin-single-post-type .acf-regenerate-labels-bar,\n.acf-admin-single-taxonomy .acf-regenerate-labels-bar,\n.acf-admin-single-options-page .acf-regenerate-labels-bar {\n display: flex;\n align-items: center;\n justify-content: right;\n min-height: 48px;\n margin-bottom: 0;\n padding-right: 16px;\n padding-left: 16px;\n gap: 8px;\n border-bottom-width: 1px;\n border-bottom-style: solid;\n border-bottom-color: #F2F4F7;\n}\n.acf-admin-single-post-type .acf-labels-tip,\n.acf-admin-single-taxonomy .acf-labels-tip,\n.acf-admin-single-options-page .acf-labels-tip {\n display: inline-flex;\n align-items: center;\n min-height: 24px;\n margin-right: 8px;\n padding-left: 16px;\n border-left-width: 1px;\n border-left-style: solid;\n border-left-color: #EAECF0;\n}\n.acf-admin-single-post-type .acf-labels-tip .acf-icon,\n.acf-admin-single-taxonomy .acf-labels-tip .acf-icon,\n.acf-admin-single-options-page .acf-labels-tip .acf-icon {\n display: inline-flex;\n align-items: center;\n width: 16px;\n height: 16px;\n -webkit-mask-size: 16px;\n mask-size: 16px;\n background-color: #98A2B3;\n}\n\n.acf-select2-default-pill {\n border-radius: 100px;\n min-height: 20px;\n padding-top: 2px;\n padding-bottom: 2px;\n padding-left: 8px;\n padding-right: 8px;\n font-size: 11px;\n margin-left: 6px;\n background-color: #EAECF0;\n color: #667085;\n}\n\n.acf-menu-position-desc-child {\n display: none;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Field picker modal\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-modal.acf-browse-fields-modal {\n width: 1120px;\n height: 664px;\n top: 50%;\n right: auto;\n bottom: auto;\n left: 50%;\n transform: translate(-50%, -50%);\n display: flex;\n flex-direction: row;\n border-radius: 12px;\n box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.04), 0px 8px 16px rgba(0, 0, 0, 0.08);\n overflow: hidden;\n}\n.acf-modal.acf-browse-fields-modal .acf-field-picker {\n display: flex;\n flex-direction: column;\n flex-grow: 1;\n width: 760px;\n background: #fff;\n}\n.acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-title,\n.acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-content,\n.acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-toolbar {\n position: relative;\n}\n.acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-title {\n display: flex;\n flex-direction: row;\n justify-content: space-between;\n align-items: center;\n background: #F9FAFB;\n border: none;\n padding: 35px 32px;\n}\n.acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-title .acf-search-field-types-wrap {\n position: relative;\n}\n.acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-title .acf-search-field-types-wrap:after {\n content: \"\";\n display: block;\n position: absolute;\n top: 11px;\n left: 10px;\n width: 18px;\n height: 18px;\n -webkit-mask-image: url(\"../../images/icons/icon-search.svg\");\n mask-image: url(\"../../images/icons/icon-search.svg\");\n background-color: #98A2B3;\n border: none;\n border-radius: 0;\n -webkit-mask-size: contain;\n mask-size: contain;\n -webkit-mask-repeat: no-repeat;\n mask-repeat: no-repeat;\n -webkit-mask-position: center;\n mask-position: center;\n text-indent: 500%;\n white-space: nowrap;\n overflow: hidden;\n}\n.acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-title .acf-search-field-types-wrap input {\n width: 280px;\n height: 40px;\n margin: 0;\n padding-left: 32px;\n box-shadow: none;\n}\n.acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-content {\n top: auto;\n bottom: auto;\n padding: 0;\n height: 100%;\n}\n.acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-content .acf-tab-group {\n padding-left: 32px;\n}\n.acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-content .acf-field-types-tab {\n display: flex;\n}\n.acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-content .acf-field-types-tab,\n.acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-content .acf-field-type-search-results {\n flex-direction: row;\n flex-wrap: wrap;\n gap: 24px;\n padding: 32px;\n}\n.acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-content .acf-field-types-tab .acf-field-type,\n.acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-content .acf-field-type-search-results .acf-field-type {\n position: relative;\n display: flex;\n flex-direction: column;\n justify-content: center;\n align-items: center;\n isolation: isolate;\n width: 120px;\n height: 120px;\n background: #F9FAFB;\n border: 1px solid #EAECF0;\n border-radius: 8px;\n box-sizing: border-box;\n color: #1D2939;\n text-decoration: none;\n}\n.acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-content .acf-field-types-tab .acf-field-type:hover, .acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-content .acf-field-types-tab .acf-field-type:active, .acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-content .acf-field-types-tab .acf-field-type.selected,\n.acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-content .acf-field-type-search-results .acf-field-type:hover,\n.acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-content .acf-field-type-search-results .acf-field-type:active,\n.acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-content .acf-field-type-search-results .acf-field-type.selected {\n background: #EBF5FA;\n border: 1px solid #399CCB;\n box-shadow: inset 0 0 0 1px #399CCB;\n}\n.acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-content .acf-field-types-tab .acf-field-type .field-type-icon,\n.acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-content .acf-field-type-search-results .acf-field-type .field-type-icon {\n border: none;\n background: none;\n top: 0;\n}\n.acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-content .acf-field-types-tab .acf-field-type .field-type-icon:before,\n.acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-content .acf-field-type-search-results .acf-field-type .field-type-icon:before {\n width: 22px;\n height: 22px;\n}\n.acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-content .acf-field-types-tab .acf-field-type .field-type-label,\n.acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-content .acf-field-type-search-results .acf-field-type .field-type-label {\n margin-top: 12px;\n}\n.acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-content .acf-field-types-tab .field-type-requires-pro,\n.acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-content .acf-field-type-search-results .field-type-requires-pro {\n display: flex;\n justify-content: center;\n align-items: center;\n position: absolute;\n top: -10px;\n right: -10px;\n height: 21px;\n color: white;\n background: linear-gradient(90.52deg, #3E8BFF 0.44%, #A45CFF 113.3%);\n background-size: 140% 20%;\n background-position: 100% 0;\n border-radius: 100px;\n font-size: 11px;\n padding-right: 6px;\n padding-left: 6px;\n}\n.acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-content .acf-field-types-tab .field-type-requires-pro i,\n.acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-content .acf-field-type-search-results .field-type-requires-pro i {\n width: 12px;\n height: 12px;\n margin-right: 2px;\n}\n.acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-toolbar {\n display: flex;\n align-items: flex-start;\n justify-content: space-between;\n height: auto;\n min-height: 72px;\n padding-top: 0;\n padding-right: 32px;\n padding-bottom: 0;\n padding-left: 32px;\n margin: 0;\n border: none;\n}\n.acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-toolbar .acf-select-field,\n.acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-toolbar .acf-btn-pro {\n min-width: 160px;\n justify-content: center;\n}\n.acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-toolbar .acf-insert-field-label {\n min-width: 280px;\n box-shadow: none;\n}\n.acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-toolbar .acf-field-picker-actions {\n display: flex;\n gap: 8px;\n}\n.acf-modal.acf-browse-fields-modal .acf-field-type-preview {\n display: flex;\n flex-direction: column;\n width: 360px;\n background-color: #F9FAFB;\n background-image: url(\"../../images/field-preview-grid.png\");\n background-size: 740px;\n background-repeat: no-repeat;\n background-position: center bottom;\n border-left: 1px solid #EAECF0;\n box-sizing: border-box;\n padding: 32px;\n}\n.acf-modal.acf-browse-fields-modal .acf-field-type-preview .field-type-desc {\n margin: 0;\n padding: 0;\n color: #667085;\n}\n.acf-modal.acf-browse-fields-modal .acf-field-type-preview .field-type-preview-container {\n display: inline-flex;\n justify-content: center;\n width: 100%;\n margin-top: 24px;\n padding-top: 32px;\n padding-bottom: 32px;\n background-color: rgba(255, 255, 255, 0.64);\n border-radius: 8px;\n box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.04), 0px 8px 24px rgba(0, 0, 0, 0.04);\n}\n.acf-modal.acf-browse-fields-modal .acf-field-type-preview .field-type-image {\n max-width: 232px;\n}\n.acf-modal.acf-browse-fields-modal .acf-field-type-preview .field-type-info {\n flex-grow: 1;\n}\n.acf-modal.acf-browse-fields-modal .acf-field-type-preview .field-type-info .field-type-name {\n font-size: 21px;\n margin-top: 0;\n margin-right: 0;\n margin-bottom: 16px;\n margin-left: 0;\n}\n.acf-modal.acf-browse-fields-modal .acf-field-type-preview .field-type-info .field-type-upgrade-to-unlock {\n display: inline-flex;\n justify-items: center;\n align-items: center;\n min-height: 24px;\n margin-bottom: 12px;\n padding-right: 8px;\n padding-left: 8px;\n background: linear-gradient(90.52deg, #3E8BFF 0.44%, #A45CFF 113.3%);\n background-size: 140% 20%;\n background-position: 100% 0;\n border-radius: 100px;\n color: white;\n text-decoration: none;\n font-size: 11px;\n}\n.acf-modal.acf-browse-fields-modal .acf-field-type-preview .field-type-info .field-type-upgrade-to-unlock i.acf-icon {\n width: 14px;\n height: 14px;\n margin-right: 4px;\n}\n.acf-modal.acf-browse-fields-modal .acf-field-type-preview .field-type-links {\n display: flex;\n align-items: center;\n gap: 24px;\n min-height: 40px;\n}\n.acf-modal.acf-browse-fields-modal .acf-field-type-preview .field-type-links .acf-icon {\n width: 18px;\n height: 18px;\n}\n.acf-modal.acf-browse-fields-modal .acf-field-type-preview .field-type-links:before {\n display: none;\n}\n.acf-modal.acf-browse-fields-modal .acf-field-type-preview .field-type-links a {\n display: flex;\n gap: 6px;\n text-decoration: none;\n}\n.acf-modal.acf-browse-fields-modal .acf-field-type-preview .field-type-links a:hover {\n text-decoration: underline;\n}\n.acf-modal.acf-browse-fields-modal .acf-field-type-search-results,\n.acf-modal.acf-browse-fields-modal .acf-field-type-search-no-results {\n display: none;\n}\n.acf-modal.acf-browse-fields-modal.is-searching .acf-tab-wrap,\n.acf-modal.acf-browse-fields-modal.is-searching .acf-field-types-tab,\n.acf-modal.acf-browse-fields-modal.is-searching .acf-field-type-search-no-results {\n display: none !important;\n}\n.acf-modal.acf-browse-fields-modal.is-searching .acf-field-type-search-results {\n display: flex;\n}\n.acf-modal.acf-browse-fields-modal.no-results-found .acf-tab-wrap,\n.acf-modal.acf-browse-fields-modal.no-results-found .acf-field-types-tab,\n.acf-modal.acf-browse-fields-modal.no-results-found .acf-field-type-search-results,\n.acf-modal.acf-browse-fields-modal.no-results-found .field-type-info,\n.acf-modal.acf-browse-fields-modal.no-results-found .field-type-links,\n.acf-modal.acf-browse-fields-modal.no-results-found .acf-field-picker-toolbar {\n display: none !important;\n}\n.acf-modal.acf-browse-fields-modal.no-results-found .acf-modal-title {\n border-bottom-width: 1px;\n border-bottom-style: solid;\n border-bottom-color: #EAECF0;\n}\n.acf-modal.acf-browse-fields-modal.no-results-found .acf-field-type-search-no-results {\n display: flex;\n flex-direction: column;\n justify-content: center;\n align-items: center;\n height: 100%;\n gap: 6px;\n}\n.acf-modal.acf-browse-fields-modal.no-results-found .acf-field-type-search-no-results img {\n margin-bottom: 19px;\n}\n.acf-modal.acf-browse-fields-modal.no-results-found .acf-field-type-search-no-results p {\n margin: 0;\n}\n.acf-modal.acf-browse-fields-modal.no-results-found .acf-field-type-search-no-results p.acf-no-results-text {\n display: flex;\n}\n.acf-modal.acf-browse-fields-modal.no-results-found .acf-field-type-search-no-results .acf-invalid-search-term {\n max-width: 200px;\n overflow: hidden;\n text-overflow: ellipsis;\n display: inline-block;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Hide browse fields button for smaller screen sizes\n*\n*---------------------------------------------------------------------------------------------*/\n@media only screen and (max-width: 1080px) {\n .acf-btn.browse-fields {\n display: none;\n }\n}","/*--------------------------------------------------------------------------------------------\n*\n*\tVars\n*\n*--------------------------------------------------------------------------------------------*/\n\n/* colors */\n$acf_blue: #2a9bd9;\n$acf_notice: #2a9bd9;\n$acf_error: #d94f4f;\n$acf_success: #49ad52;\n$acf_warning: #fd8d3b;\n\n/* acf-field */\n$field_padding: 15px 12px;\n$field_padding_x: 12px;\n$field_padding_y: 15px;\n$fp: 15px 12px;\n$fy: 15px;\n$fx: 12px;\n\n/* responsive */\n$md: 880px;\n$sm: 640px;\n\n// Admin.\n$wp-card-border: #ccd0d4;\t\t\t// Card border.\n$wp-card-border-1: #d5d9dd;\t\t // Card inner border 1: Structural (darker).\n$wp-card-border-2: #eeeeee;\t\t // Card inner border 2: Fields (lighter).\n$wp-input-border: #7e8993;\t\t // Input border.\n\n// Admin 3.8\n$wp38-card-border: #E5E5E5;\t\t // Card border.\n$wp38-card-border-1: #dfdfdf;\t\t// Card inner border 1: Structural (darker).\n$wp38-card-border-2: #eeeeee;\t\t// Card inner border 2: Fields (lighter).\n$wp38-input-border: #dddddd;\t\t // Input border.\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tACF 6 ↓\n*\n*--------------------------------------------------------------------------------------------*/\n\n// Grays\n$gray-50: #F9FAFB;\n$gray-100: #F2F4F7;\n$gray-200: #EAECF0;\n$gray-300: #D0D5DD;\n$gray-400: #98A2B3;\n$gray-500: #667085;\n$gray-600: #475467;\n$gray-700: #344054;\n$gray-800: #1D2939;\n$gray-900: #101828;\n\n// Blues\n$blue-50: #EBF5FA;\n$blue-100: #D8EBF5;\n$blue-200: #A5D2E7;\n$blue-300: #6BB5D8;\n$blue-400: #399CCB;\n$blue-500: #0783BE;\n$blue-600: #066998;\n$blue-700: #044E71;\n$blue-800: #033F5B;\n$blue-900: #032F45;\n\n// Utility\n$color-info:\t#2D69DA;\n$color-success:\t#52AA59;\n$color-warning:\t#F79009;\n$color-danger:\t#D13737;\n\n$color-primary: $blue-500;\n$color-primary-hover: $blue-600;\n$color-secondary: $gray-500;\n$color-secondary-hover: $gray-400;\n\n// Gradients\n$gradient-pro: linear-gradient(90.52deg, #3E8BFF 0.44%, #A45CFF 113.3%);\n\n// Border radius\n$radius-sm:\t4px;\n$radius-md: 6px;\n$radius-lg: 8px;\n$radius-xl: 12px;\n\n// Elevations / Box shadows\n$elevation-01: 0px 1px 2px rgba($gray-900, 0.10);\n\n// Input & button focus outline\n$outline: 3px solid $blue-50;\n\n// Link colours\n$link-color: $blue-500;\n\n// Responsive\n$max-width: 1440px;","/*--------------------------------------------------------------------------------------------\n*\n* Mixins\n*\n*--------------------------------------------------------------------------------------------*/\n@mixin clearfix() {\n\t&:after {\n\t\tdisplay: block;\n\t\tclear: both;\n\t\tcontent: \"\";\n\t}\n}\n\n@mixin border-box() {\n\t-webkit-box-sizing: border-box;\n\t-moz-box-sizing: border-box;\n\tbox-sizing: border-box;\n}\n\n@mixin centered() {\n\tposition: absolute;\n\ttop: 50%;\n\tleft: 50%;\n\ttransform: translate(-50%, -50%);\n}\n\n@mixin animate( $properties: 'all' ) {\n\t-webkit-transition: $properties 0.3s ease; // Safari 3.2+, Chrome\n -moz-transition: $properties 0.3s ease; \t// Firefox 4-15\n -o-transition: $properties 0.3s ease; \t\t// Opera 10.5–12.00\n transition: $properties 0.3s ease; \t\t// Firefox 16+, Opera 12.50+\n}\n\n@mixin rtl() {\n\thtml[dir=\"rtl\"] & {\n\t\ttext-align: right;\n\t\t@content;\n\t}\n}\n\n@mixin wp-admin( $version: '3-8' ) {\n\t.acf-admin-#{$version} & {\n\t\t@content;\n\t}\n}","@use \"sass:math\";\n/*--------------------------------------------------------------------------------------------\n*\n* Global\n*\n*--------------------------------------------------------------------------------------------*/\n\n/* Horizontal List */\n.acf-hl {\n\tpadding: 0;\n\tmargin: 0;\n\tlist-style: none;\n\tdisplay: block;\n\tposition: relative;\n}\n.acf-hl > li {\n\tfloat: left;\n\tdisplay: block;\n\tmargin: 0;\n\tpadding: 0;\n}\n.acf-hl > li.acf-fr {\n\tfloat: right;\n}\n\n/* Horizontal List: Clearfix */\n.acf-hl:before,\n.acf-hl:after,\n.acf-bl:before,\n.acf-bl:after,\n.acf-cf:before,\n.acf-cf:after {\n\tcontent: \"\";\n\tdisplay: block;\n\tline-height: 0;\n}\n.acf-hl:after,\n.acf-bl:after,\n.acf-cf:after {\n\tclear: both;\n}\n\n/* Block List */\n.acf-bl {\n\tpadding: 0;\n\tmargin: 0;\n\tlist-style: none;\n\tdisplay: block;\n\tposition: relative;\n}\n.acf-bl > li {\n\tdisplay: block;\n\tmargin: 0;\n\tpadding: 0;\n\tfloat: none;\n}\n\n/* Visibility */\n.acf-hidden {\n\tdisplay: none !important;\n}\n.acf-empty {\n\tdisplay: table-cell !important;\n\t* {\n\t\tdisplay: none !important;\n\t}\n}\n\n/* Float */\n.acf-fl {\n\tfloat: left;\n}\n.acf-fr {\n\tfloat: right;\n}\n.acf-fn {\n\tfloat: none;\n}\n\n/* Align */\n.acf-al {\n\ttext-align: left;\n}\n.acf-ar {\n\ttext-align: right;\n}\n.acf-ac {\n\ttext-align: center;\n}\n\n/* loading */\n.acf-loading,\n.acf-spinner {\n\tdisplay: inline-block;\n\theight: 20px;\n\twidth: 20px;\n\tvertical-align: text-top;\n\tbackground: transparent url(../../images/spinner.gif) no-repeat 50% 50%;\n}\n\n/* spinner */\n.acf-spinner {\n\tdisplay: none;\n}\n\n.acf-spinner.is-active {\n\tdisplay: inline-block;\n}\n\n/* WP < 4.2 */\n.spinner.is-active {\n\tdisplay: inline-block;\n}\n\n/* required */\n.acf-required {\n\tcolor: #f00;\n}\n\n/* Allow pointer events in reusable blocks */\n.acf-button,\n.acf-tab-button {\n\tpointer-events: auto !important;\n}\n\n/* show on hover */\n.acf-soh .acf-soh-target {\n\t-webkit-transition: opacity 0.25s 0s ease-in-out, visibility 0s linear 0.25s;\n\t-moz-transition: opacity 0.25s 0s ease-in-out, visibility 0s linear 0.25s;\n\t-o-transition: opacity 0.25s 0s ease-in-out, visibility 0s linear 0.25s;\n\ttransition: opacity 0.25s 0s ease-in-out, visibility 0s linear 0.25s;\n\n\tvisibility: hidden;\n\topacity: 0;\n}\n\n.acf-soh:hover .acf-soh-target {\n\t-webkit-transition-delay: 0s;\n\t-moz-transition-delay: 0s;\n\t-o-transition-delay: 0s;\n\ttransition-delay: 0s;\n\n\tvisibility: visible;\n\topacity: 1;\n}\n\n/* show if value */\n.show-if-value {\n\tdisplay: none;\n}\n.hide-if-value {\n\tdisplay: block;\n}\n\n.has-value .show-if-value {\n\tdisplay: block;\n}\n.has-value .hide-if-value {\n\tdisplay: none;\n}\n\n/* select2 WP animation fix */\n.select2-search-choice-close {\n\t-webkit-transition: none;\n\t-moz-transition: none;\n\t-o-transition: none;\n\ttransition: none;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* tooltip\n*\n*---------------------------------------------------------------------------------------------*/\n\n/* tooltip */\n.acf-tooltip {\n\tbackground: $gray-800;\n\tborder-radius: $radius-md;\n\tcolor: $gray-300;\n\tpadding: {\n\t\ttop: 8px;\n\t\tright: 12px;\n\t\tbottom: 10px;\n\t\tleft: 12px;\n\t}\n\tposition: absolute;\n\t@extend .p7;\n\tz-index: 900000;\n\tmax-width: 280px;\n\tbox-shadow: 0px 12px 16px -4px rgba(16, 24, 40, 0.08),\n\t\t0px 4px 6px -2px rgba(16, 24, 40, 0.03);\n\n\t/* tip */\n\t&:before {\n\t\tborder: solid;\n\t\tborder-color: transparent;\n\t\tborder-width: 6px;\n\t\tcontent: \"\";\n\t\tposition: absolute;\n\t}\n\n\t/* positions */\n\t&.top {\n\t\tmargin-top: -8px;\n\n\t\t&:before {\n\t\t\ttop: 100%;\n\t\t\tleft: 50%;\n\t\t\tmargin-left: -6px;\n\t\t\tborder-top-color: #2f353e;\n\t\t\tborder-bottom-width: 0;\n\t\t}\n\t}\n\n\t&.right {\n\t\tmargin-left: 8px;\n\n\t\t&:before {\n\t\t\ttop: 50%;\n\t\t\tmargin-top: -6px;\n\t\t\tright: 100%;\n\t\t\tborder-right-color: #2f353e;\n\t\t\tborder-left-width: 0;\n\t\t}\n\t}\n\n\t&.bottom {\n\t\tmargin-top: 8px;\n\n\t\t&:before {\n\t\t\tbottom: 100%;\n\t\t\tleft: 50%;\n\t\t\tmargin-left: -6px;\n\t\t\tborder-bottom-color: #2f353e;\n\t\t\tborder-top-width: 0;\n\t\t}\n\t}\n\n\t&.left {\n\t\tmargin-left: -8px;\n\n\t\t&:before {\n\t\t\ttop: 50%;\n\t\t\tmargin-top: -6px;\n\t\t\tleft: 100%;\n\t\t\tborder-left-color: #2f353e;\n\t\t\tborder-right-width: 0;\n\t\t}\n\t}\n\n\t.acf-overlay {\n\t\tz-index: -1;\n\t}\n}\n\n/* confirm */\n.acf-tooltip.-confirm {\n\tz-index: 900001; // +1 higher than .acf-tooltip\n\n\ta {\n\t\ttext-decoration: none;\n\t\tcolor: #9ea3a8;\n\n\t\t&:hover {\n\t\t\ttext-decoration: underline;\n\t\t}\n\n\t\t&[data-event=\"confirm\"] {\n\t\t\tcolor: #f55e4f;\n\t\t}\n\t}\n}\n\n.acf-overlay {\n\tposition: fixed;\n\ttop: 0;\n\tbottom: 0;\n\tleft: 0;\n\tright: 0;\n\tcursor: default;\n}\n\n.acf-tooltip-target {\n\tposition: relative;\n\tz-index: 900002; // +1 higher than .acf-tooltip\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* loading\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-loading-overlay {\n\tposition: absolute;\n\ttop: 0;\n\tbottom: 0;\n\tleft: 0;\n\tright: 0;\n\tcursor: default;\n\tz-index: 99;\n\tbackground: rgba(249, 249, 249, 0.5);\n\n\ti {\n\t\t@include centered();\n\t}\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tacf-icon\n*\n*--------------------------------------------------------------------------------------------*/\n.acf-icon {\n\tdisplay: inline-block;\n\theight: 28px;\n\twidth: 28px;\n\tborder: transparent solid 1px;\n\tborder-radius: 100%;\n\tfont-size: 20px;\n\tline-height: 21px;\n\ttext-align: center;\n\ttext-decoration: none;\n\tvertical-align: top;\n\tbox-sizing: border-box;\n\n\t&:before {\n\t\tfont-family: dashicons;\n\t\tdisplay: inline-block;\n\t\tline-height: 1;\n\t\tfont-weight: 400;\n\t\tfont-style: normal;\n\t\tspeak: none;\n\t\ttext-decoration: inherit;\n\t\ttext-transform: none;\n\t\ttext-rendering: auto;\n\t\t-webkit-font-smoothing: antialiased;\n\t\t-moz-osx-font-smoothing: grayscale;\n\t\twidth: 1em;\n\t\theight: 1em;\n\t\tvertical-align: middle;\n\t\ttext-align: center;\n\t}\n}\n\n// Icon types.\n.acf-icon.-plus:before {\n\tcontent: \"\\f543\";\n}\n.acf-icon.-minus:before {\n\tcontent: \"\\f460\";\n}\n.acf-icon.-cancel:before {\n\tcontent: \"\\f335\";\n\tmargin: -1px 0 0 -1px;\n}\n.acf-icon.-pencil:before {\n\tcontent: \"\\f464\";\n}\n.acf-icon.-location:before {\n\tcontent: \"\\f230\";\n}\n.acf-icon.-up:before {\n\tcontent: \"\\f343\";\n\n\t// Fix position relative to font-size.\n\tmargin-top: math.div(-2em, 20);\n}\n.acf-icon.-down:before {\n\tcontent: \"\\f347\";\n\n\t// Fix position relative to font-size.\n\tmargin-top: math.div(2em, 20);\n}\n.acf-icon.-left:before {\n\tcontent: \"\\f341\";\n\n\t// Fix position relative to font-size.\n\tmargin-left: math.div(-2em, 20);\n}\n.acf-icon.-right:before {\n\tcontent: \"\\f345\";\n\n\t// Fix position relative to font-size.\n\tmargin-left: math.div(2em, 20);\n}\n.acf-icon.-sync:before {\n\tcontent: \"\\f463\";\n}\n.acf-icon.-globe:before {\n\tcontent: \"\\f319\";\n\n\t// Fix position relative to font-size.\n\tmargin-top: math.div(2em, 20);\n\tmargin-left: math.div(2em, 20);\n}\n.acf-icon.-picture:before {\n\tcontent: \"\\f128\";\n}\n.acf-icon.-check:before {\n\tcontent: \"\\f147\";\n\n\t// Fix position relative to font-size.\n\tmargin-left: math.div(-2em, 20);\n}\n.acf-icon.-dot-3:before {\n\tcontent: \"\\f533\";\n\n\t// Fix position relative to font-size.\n\tmargin-top: math.div(-2em, 20);\n}\n.acf-icon.-arrow-combo:before {\n\tcontent: \"\\f156\";\n}\n.acf-icon.-arrow-up:before {\n\tcontent: \"\\f142\";\n\n\t// Fix position relative to font-size.\n\tmargin-left: math.div(-2em, 20);\n}\n.acf-icon.-arrow-down:before {\n\tcontent: \"\\f140\";\n\n\t// Fix position relative to font-size.\n\tmargin-left: math.div(-2em, 20);\n}\n.acf-icon.-search:before {\n\tcontent: \"\\f179\";\n}\n.acf-icon.-link-ext:before {\n\tcontent: \"\\f504\";\n}\n\n// Duplicate is a custom icon made from pseudo elements.\n.acf-icon.-duplicate {\n\tposition: relative;\n\t&:before,\n\t&:after {\n\t\tcontent: \"\";\n\t\tdisplay: block;\n\t\tbox-sizing: border-box;\n\t\twidth: 46%;\n\t\theight: 46%;\n\t\tposition: absolute;\n\t\ttop: 33%;\n\t\tleft: 23%;\n\t}\n\t&:before {\n\t\tmargin: -1px 0 0 1px;\n\t\tbox-shadow: 2px -2px 0px 0px currentColor;\n\t}\n\t&:after {\n\t\tborder: solid 2px currentColor;\n\t}\n}\n\n.acf-icon.-trash {\n\tposition: relative;\n\t&:before,\n\t&:after {\n\t\tcontent: \"\";\n\t\tdisplay: block;\n\t\tbox-sizing: border-box;\n\t\twidth: 46%;\n\t\theight: 46%;\n\t\tposition: absolute;\n\t\ttop: 33%;\n\t\tleft: 23%;\n\t}\n\t&:before {\n\t\tmargin: -1px 0 0 1px;\n\t\tbox-shadow: 2px -2px 0px 0px currentColor;\n\t}\n\t&:after {\n\t\tborder: solid 2px currentColor;\n\t}\n}\n\n// Collapse icon toggles automatically.\n.acf-icon.-collapse:before {\n\tcontent: \"\\f142\";\n\n\t// Fix position relative to font-size.\n\tmargin-left: math.div(-2em, 20);\n}\n.-collapsed .acf-icon.-collapse:before {\n\tcontent: \"\\f140\";\n\n\t// Fix position relative to font-size.\n\tmargin-left: math.div(-2em, 20);\n}\n\n// displays with grey border.\nspan.acf-icon {\n\tcolor: #555d66;\n\tborder-color: #b5bcc2;\n\tbackground-color: #fff;\n}\n\n// also displays with grey border.\na.acf-icon {\n\tcolor: #555d66;\n\tborder-color: #b5bcc2;\n\tbackground-color: #fff;\n\tposition: relative;\n\ttransition: none;\n\tcursor: pointer;\n\n\t// State \"hover\".\n\t&:hover {\n\t\tbackground: #f3f5f6;\n\t\tborder-color: #0071a1;\n\t\tcolor: #0071a1;\n\t}\n\t&.-minus:hover,\n\t&.-cancel:hover {\n\t\tbackground: #f7efef;\n\t\tborder-color: #a10000;\n\t\tcolor: #dc3232;\n\t}\n\n\t// Fix: Remove WP outline box-shadow.\n\t&:active,\n\t&:focus {\n\t\toutline: none;\n\t\tbox-shadow: none;\n\t}\n}\n\n// Style \"clear\".\n.acf-icon.-clear {\n\tborder-color: transparent;\n\tbackground: transparent;\n\tcolor: #444;\n}\n\n// Style \"light\".\n.acf-icon.light {\n\tborder-color: transparent;\n\tbackground: #f5f5f5;\n\tcolor: #23282d;\n}\n\n// Style \"dark\".\n.acf-icon.dark {\n\tborder-color: transparent !important;\n\tbackground: #23282d;\n\tcolor: #eee;\n}\na.acf-icon.dark {\n\t&:hover {\n\t\tbackground: #191e23;\n\t\tcolor: #00b9eb;\n\t}\n\t&.-minus:hover,\n\t&.-cancel:hover {\n\t\tcolor: #d54e21;\n\t}\n}\n\n// Style \"grey\".\n.acf-icon.grey {\n\tborder-color: transparent !important;\n\tbackground: #b4b9be;\n\tcolor: #fff !important;\n\n\t&:hover {\n\t\tbackground: #00a0d2;\n\t\tcolor: #fff;\n\t}\n\t&.-minus:hover,\n\t&.-cancel:hover {\n\t\tbackground: #32373c;\n\t}\n}\n\n// Size \"small\".\n.acf-icon.small,\n.acf-icon.-small {\n\twidth: 20px;\n\theight: 20px;\n\tline-height: 14px;\n\tfont-size: 14px;\n\n\t// Apply minor transforms to reduce clarirty of \"duplicate\" icon.\n\t// Helps to unify rendering with dashicons.\n\t&.-duplicate {\n\t\t&:before,\n\t\t&:after {\n\t\t\t//transform: rotate(0.1deg) scale(0.9) translate(-5%, 5%);\n\t\t\topacity: 0.8;\n\t\t}\n\t}\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tacf-box\n*\n*--------------------------------------------------------------------------------------------*/\n.acf-box {\n\tbackground: #ffffff;\n\tborder: 1px solid $wp-card-border;\n\tposition: relative;\n\tbox-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);\n\n\t/* title */\n\t.title {\n\t\tborder-bottom: 1px solid $wp-card-border;\n\t\tmargin: 0;\n\t\tpadding: 15px;\n\n\t\th3 {\n\t\t\tdisplay: flex;\n\t\t\talign-items: center;\n\t\t\tfont-size: 14px;\n\t\t\tline-height: 1em;\n\t\t\tmargin: 0;\n\t\t\tpadding: 0;\n\t\t}\n\t}\n\n\t.inner {\n\t\tpadding: 15px;\n\t}\n\n\th2 {\n\t\tcolor: #333333;\n\t\tfont-size: 26px;\n\t\tline-height: 1.25em;\n\t\tmargin: 0.25em 0 0.75em;\n\t\tpadding: 0;\n\t}\n\n\th3 {\n\t\tmargin: 1.5em 0 0;\n\t}\n\n\tp {\n\t\tmargin-top: 0.5em;\n\t}\n\n\ta {\n\t\ttext-decoration: none;\n\t}\n\n\ti {\n\t\t&.dashicons-external {\n\t\t\tmargin-top: -1px;\n\t\t}\n\t}\n\n\t/* footer */\n\t.footer {\n\t\tborder-top: 1px solid $wp-card-border;\n\t\tpadding: 12px;\n\t\tfont-size: 13px;\n\t\tline-height: 1.5;\n\n\t\tp {\n\t\t\tmargin: 0;\n\t\t}\n\t}\n\n\t// WP Admin 3.8\n\t@include wp-admin(\"3-8\") {\n\t\tborder-color: $wp38-card-border;\n\t\t.title,\n\t\t.footer {\n\t\t\tborder-color: $wp38-card-border;\n\t\t}\n\t}\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tacf-notice\n*\n*--------------------------------------------------------------------------------------------*/\n\n.acf-notice {\n\tposition: relative;\n\tdisplay: block;\n\tcolor: #fff;\n\tmargin: 5px 0 15px;\n\tpadding: 3px 12px;\n\tbackground: $acf_notice;\n\tborder-left: darken($acf_notice, 10%) solid 3px;\n\n\tp {\n\t\tfont-size: 13px;\n\t\tline-height: 1.5;\n\t\tmargin: 0.5em 0;\n\t\ttext-shadow: none;\n\t\tcolor: inherit;\n\t}\n\n\t.acf-notice-dismiss {\n\t\tposition: absolute;\n\t\ttop: 9px;\n\t\tright: 12px;\n\t\tbackground: transparent !important;\n\t\tcolor: inherit !important;\n\t\tborder-color: #fff !important;\n\t\topacity: 0.75;\n\t\t&:hover {\n\t\t\topacity: 1;\n\t\t}\n\t}\n\n\t// dismiss\n\t&.-dismiss {\n\t\tpadding-right: 40px;\n\t}\n\n\t// error\n\t&.-error {\n\t\tbackground: $acf_error;\n\t\tborder-color: darken($acf_error, 10%);\n\t}\n\n\t// success\n\t&.-success {\n\t\tbackground: $acf_success;\n\t\tborder-color: darken($acf_success, 10%);\n\t}\n\n\t// warning\n\t&.-warning {\n\t\tbackground: $acf_warning;\n\t\tborder-color: darken($acf_warning, 10%);\n\t}\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tacf-table\n*\n*--------------------------------------------------------------------------------------------*/\n\n.acf-table {\n\tborder: $wp-card-border solid 1px;\n\tbackground: #fff;\n\tborder-spacing: 0;\n\tborder-radius: 0;\n\ttable-layout: auto;\n\tpadding: 0;\n\tmargin: 0;\n\twidth: 100%;\n\tclear: both;\n\tbox-sizing: content-box;\n\n\t/* defaults */\n\t> tbody > tr,\n\t> thead > tr {\n\t\t> th,\n\t\t> td {\n\t\t\tpadding: 8px;\n\t\t\tvertical-align: top;\n\t\t\tbackground: #fff;\n\t\t\ttext-align: left;\n\t\t\tborder-style: solid;\n\t\t\tfont-weight: normal;\n\t\t}\n\n\t\t> th {\n\t\t\tposition: relative;\n\t\t\tcolor: #333333;\n\t\t}\n\t}\n\n\t/* thead */\n\t> thead {\n\t\t> tr {\n\t\t\t> th {\n\t\t\t\tborder-color: $wp-card-border-1;\n\t\t\t\tborder-width: 0 0 1px 1px;\n\n\t\t\t\t&:first-child {\n\t\t\t\t\tborder-left-width: 0;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\t/* tbody */\n\t> tbody {\n\t\t> tr {\n\t\t\tz-index: 1;\n\n\t\t\t> td {\n\t\t\t\tborder-color: $wp-card-border-2;\n\t\t\t\tborder-width: 1px 0 0 1px;\n\n\t\t\t\t&:first-child {\n\t\t\t\t\tborder-left-width: 0;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t&:first-child > td {\n\t\t\t\tborder-top-width: 0;\n\t\t\t}\n\t\t}\n\t}\n\n\t/* -clear */\n\t&.-clear {\n\t\tborder: 0 none;\n\n\t\t> tbody > tr,\n\t\t> thead > tr {\n\t\t\t> td,\n\t\t\t> th {\n\t\t\t\tborder: 0 none;\n\t\t\t\tpadding: 4px;\n\t\t\t}\n\t\t}\n\t}\n}\n\n/* remove tr */\n.acf-remove-element {\n\t-webkit-transition: all 0.25s ease-out;\n\t-moz-transition: all 0.25s ease-out;\n\t-o-transition: all 0.25s ease-out;\n\ttransition: all 0.25s ease-out;\n\n\ttransform: translate(50px, 0);\n\topacity: 0;\n}\n\n/* fade-up */\n.acf-fade-up {\n\t-webkit-transition: all 0.25s ease-out;\n\t-moz-transition: all 0.25s ease-out;\n\t-o-transition: all 0.25s ease-out;\n\ttransition: all 0.25s ease-out;\n\n\ttransform: translate(0, -10px);\n\topacity: 0;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Fake table\n*\n*---------------------------------------------------------------------------------------------*/\n\n.acf-thead,\n.acf-tbody,\n.acf-tfoot {\n\twidth: 100%;\n\tpadding: 0;\n\tmargin: 0;\n\n\t> li {\n\t\tbox-sizing: border-box;\n\t\tpadding: {\n\t\t\ttop: 14px;\n\t\t}\n\t\tfont-size: 12px;\n\t\tline-height: 14px;\n\t}\n}\n\n.acf-thead {\n\tborder-bottom: $wp-card-border solid 1px;\n\tcolor: #23282d;\n\n\t> li {\n\t\tfont-size: 14px;\n\t\tline-height: 1.4;\n\t\tfont-weight: bold;\n\t}\n\n\t// WP Admin 3.8\n\t@include wp-admin(\"3-8\") {\n\t\tborder-color: $wp38-card-border-1;\n\t}\n}\n\n.acf-tfoot {\n\tbackground: #f5f5f5;\n\tborder-top: $wp-card-border-1 solid 1px;\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tSettings\n*\n*--------------------------------------------------------------------------------------------*/\n\n.acf-settings-wrap {\n\t#poststuff {\n\t\tpadding-top: 15px;\n\t}\n\n\t.acf-box {\n\t\tmargin: 20px 0;\n\t}\n\n\ttable {\n\t\tmargin: 0;\n\n\t\t.button {\n\t\t\tvertical-align: middle;\n\t\t}\n\t}\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tacf-popup\n*\n*--------------------------------------------------------------------------------------------*/\n\n#acf-popup {\n\tposition: fixed;\n\tz-index: 900000;\n\ttop: 0;\n\tleft: 0;\n\tright: 0;\n\tbottom: 0;\n\ttext-align: center;\n\n\t// bg\n\t.bg {\n\t\tposition: absolute;\n\t\ttop: 0;\n\t\tleft: 0;\n\t\tright: 0;\n\t\tbottom: 0;\n\t\tz-index: 0;\n\t\tbackground: rgba(0, 0, 0, 0.25);\n\t}\n\n\t&:before {\n\t\tcontent: \"\";\n\t\tdisplay: inline-block;\n\t\theight: 100%;\n\t\tvertical-align: middle;\n\t}\n\n\t// box\n\t.acf-popup-box {\n\t\tdisplay: inline-block;\n\t\tvertical-align: middle;\n\t\tz-index: 1;\n\t\tmin-width: 300px;\n\t\tmin-height: 160px;\n\t\tborder-color: #aaaaaa;\n\t\tbox-shadow: 0 5px 30px -5px rgba(0, 0, 0, 0.25);\n\t\ttext-align: left;\n\t\t@include rtl();\n\n\t\t// title\n\t\t.title {\n\t\t\tmin-height: 15px;\n\t\t\tline-height: 15px;\n\n\t\t\t// icon\n\t\t\t.acf-icon {\n\t\t\t\tposition: absolute;\n\t\t\t\ttop: 10px;\n\t\t\t\tright: 10px;\n\n\t\t\t\t// rtl\n\t\t\t\thtml[dir=\"rtl\"] & {\n\t\t\t\t\tright: auto;\n\t\t\t\t\tleft: 10px;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t.inner {\n\t\t\tmin-height: 50px;\n\n\t\t\t// use margin instead of padding to allow inner elements marin to overlap and avoid large hitespace at top/bottom\n\t\t\tpadding: 0;\n\t\t\tmargin: 15px;\n\t\t}\n\n\t\t// loading\n\t\t.loading {\n\t\t\tposition: absolute;\n\t\t\ttop: 45px;\n\t\t\tleft: 0;\n\t\t\tright: 0;\n\t\t\tbottom: 0;\n\t\t\tz-index: 2;\n\t\t\tbackground: rgba(0, 0, 0, 0.1);\n\t\t\tdisplay: none;\n\n\t\t\ti {\n\t\t\t\t@include centered();\n\t\t\t}\n\t\t}\n\t}\n}\n\n// acf-submit\n.acf-submit {\n\tmargin-bottom: 0;\n\tline-height: 28px; // .button height\n\n\t// message\n\tspan {\n\t\tfloat: right;\n\t\tcolor: #999;\n\n\t\t&.-error {\n\t\t\tcolor: #dd4232;\n\t\t}\n\t}\n\n\t// button (allow margin between loading)\n\t.button {\n\t\tmargin-right: 5px;\n\t}\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tupgrade notice\n*\n*--------------------------------------------------------------------------------------------*/\n\n#acf-upgrade-notice {\n\tposition: relative;\n\tbackground: #fff;\n\tpadding: 20px;\n\t@include clearfix();\n\n\t.col-content {\n\t\tfloat: left;\n\t\twidth: 55%;\n\t\tpadding-left: 90px;\n\t}\n\n\t.notice-container {\n\t\tdisplay: flex;\n\t\tjustify-content: space-between;\n\t\talign-items: flex-start;\n\t\talign-content: flex-start;\n\t}\n\n\t.col-actions {\n\t\tfloat: right;\n\t\ttext-align: center;\n\t}\n\n\timg {\n\t\tfloat: left;\n\t\twidth: 64px;\n\t\theight: 64px;\n\t\tmargin: 0 0 0 -90px;\n\t}\n\n\th2 {\n\t\tdisplay: inline-block;\n\t\tfont-size: 16px;\n\t\tmargin: 2px 0 6.5px;\n\t}\n\n\tp {\n\t\tpadding: 0;\n\t\tmargin: 0;\n\t}\n\n\t.button:before {\n\t\tmargin-top: 11px;\n\t}\n\n\t// mobile\n\t@media screen and (max-width: $sm) {\n\t\t.col-content,\n\t\t.col-actions {\n\t\t\tfloat: none;\n\t\t\tpadding-left: 90px;\n\t\t\twidth: auto;\n\t\t\ttext-align: left;\n\t\t}\n\t}\n}\n\n// Hide icons for upgade notice.\n#acf-upgrade-notice:has(.notice-container)::before,\n#acf-upgrade-notice:has(.notice-container)::after {\n\tdisplay: none;\n}\n\n// Match padding of other non-icon notices.\n#acf-upgrade-notice:has(.notice-container) {\n\tpadding-left: 20px !important;\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tWelcome\n*\n*--------------------------------------------------------------------------------------------*/\n\n.acf-wrap {\n\th1 {\n\t\tmargin-top: 0;\n\t\tpadding-top: 20px;\n\t}\n\n\t.about-text {\n\t\tmargin-top: 0.5em;\n\t\tmin-height: 50px;\n\t}\n\n\t.about-headline-callout {\n\t\tfont-size: 2.4em;\n\t\tfont-weight: 300;\n\t\tline-height: 1.3;\n\t\tmargin: 1.1em 0 0.2em;\n\t\ttext-align: center;\n\t}\n\n\t.feature-section {\n\t\tpadding: 40px 0;\n\n\t\th2 {\n\t\t\tmargin-top: 20px;\n\t\t}\n\t}\n\n\t.changelog {\n\t\tlist-style: disc;\n\t\tpadding-left: 15px;\n\n\t\tli {\n\t\t\tmargin: 0 0 0.75em;\n\t\t}\n\t}\n\n\t.acf-three-col {\n\t\tdisplay: flex;\n\t\tflex-wrap: wrap;\n\t\tjustify-content: space-between;\n\n\t\t> div {\n\t\t\tflex: 1;\n\t\t\talign-self: flex-start;\n\t\t\tmin-width: 31%;\n\t\t\tmax-width: 31%;\n\n\t\t\t@media screen and (max-width: $md) {\n\t\t\t\tmin-width: 48%;\n\t\t\t}\n\n\t\t\t@media screen and (max-width: $sm) {\n\t\t\t\tmin-width: 100%;\n\t\t\t}\n\t\t}\n\n\t\th3 .badge {\n\t\t\tdisplay: inline-block;\n\t\t\tvertical-align: top;\n\t\t\tborder-radius: 5px;\n\t\t\tbackground: #fc9700;\n\t\t\tcolor: #fff;\n\t\t\tfont-weight: normal;\n\t\t\tfont-size: 12px;\n\t\t\tpadding: 2px 5px;\n\t\t}\n\n\t\timg + h3 {\n\t\t\tmargin-top: 0.5em;\n\t\t}\n\t}\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tacf-hl cols\n*\n*--------------------------------------------------------------------------------------------*/\n\n.acf-hl[data-cols] {\n\tmargin-left: -10px;\n\tmargin-right: -10px;\n\n\t> li {\n\t\tpadding: 0 6px 0 10px;\n\n\t\t-webkit-box-sizing: border-box;\n\t\t-moz-box-sizing: border-box;\n\t\tbox-sizing: border-box;\n\t}\n}\n\n/* sizes */\n.acf-hl[data-cols=\"2\"] > li {\n\twidth: 50%;\n}\n.acf-hl[data-cols=\"3\"] > li {\n\twidth: 33.333%;\n}\n.acf-hl[data-cols=\"4\"] > li {\n\twidth: 25%;\n}\n\n/* mobile */\n@media screen and (max-width: $sm) {\n\t.acf-hl[data-cols] {\n\t\tflex-wrap: wrap;\n\t\tjustify-content: flex-start;\n\t\talign-content: flex-start;\n\t\talign-items: flex-start;\n\t\tmargin-left: 0;\n\t\tmargin-right: 0;\n\t\tmargin-top: -10px;\n\n\t\t> li {\n\t\t\tflex: 1 1 100%;\n\t\t\twidth: 100% !important;\n\t\t\tpadding: 10px 0 0;\n\t\t}\n\t}\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tmisc\n*\n*--------------------------------------------------------------------------------------------*/\n\n.acf-actions {\n\ttext-align: right;\n\tz-index: 1;\n\n\t/* hover */\n\t&.-hover {\n\t\tposition: absolute;\n\t\tdisplay: none;\n\t\ttop: 0;\n\t\tright: 0;\n\t\tpadding: 5px;\n\t\tz-index: 1050;\n\t}\n\n\t/* rtl */\n\thtml[dir=\"rtl\"] & {\n\t\t&.-hover {\n\t\t\tright: auto;\n\t\t\tleft: 0;\n\t\t}\n\t}\n}\n\n/* ul compatibility */\nul.acf-actions {\n\tli {\n\t\tfloat: right;\n\t\tmargin-left: 4px;\n\t}\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tRTL\n*\n*--------------------------------------------------------------------------------------------*/\n\nhtml[dir=\"rtl\"] .acf-fl {\n\tfloat: right;\n}\nhtml[dir=\"rtl\"] .acf-fr {\n\tfloat: left;\n}\n\nhtml[dir=\"rtl\"] .acf-hl > li {\n\tfloat: right;\n}\n\nhtml[dir=\"rtl\"] .acf-hl > li.acf-fr {\n\tfloat: left;\n}\n\nhtml[dir=\"rtl\"] .acf-icon.logo {\n\tleft: 0;\n\tright: auto;\n}\n\nhtml[dir=\"rtl\"] .acf-table thead th {\n\ttext-align: right;\n\tborder-right-width: 1px;\n\tborder-left-width: 0px;\n}\n\nhtml[dir=\"rtl\"] .acf-table > tbody > tr > td {\n\ttext-align: right;\n\tborder-right-width: 1px;\n\tborder-left-width: 0px;\n}\n\nhtml[dir=\"rtl\"] .acf-table > thead > tr > th:first-child,\nhtml[dir=\"rtl\"] .acf-table > tbody > tr > td:first-child {\n\tborder-right-width: 0;\n}\n\nhtml[dir=\"rtl\"] .acf-table > tbody > tr > td.order + td {\n\tborder-right-color: #e1e1e1;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* acf-postbox-columns\n*\n*---------------------------------------------------------------------------------------------*/\n\n.acf-postbox-columns {\n\t@include clearfix();\n\tposition: relative;\n\tmargin-top: -11px;\n\tmargin-bottom: -12px;\n\tmargin-left: -12px;\n\tmargin-right: (280px - 12px);\n\n\t.acf-postbox-main,\n\t.acf-postbox-side {\n\t\t@include border-box();\n\t\tpadding: 0 12px 12px;\n\t}\n\n\t.acf-postbox-main {\n\t\tfloat: left;\n\t\twidth: 100%;\n\t}\n\n\t.acf-postbox-side {\n\t\tfloat: right;\n\t\twidth: 280px;\n\t\tmargin-right: -280px;\n\n\t\t&:before {\n\t\t\tcontent: \"\";\n\t\t\tdisplay: block;\n\t\t\tposition: absolute;\n\t\t\twidth: 1px;\n\t\t\theight: 100%;\n\t\t\ttop: 0;\n\t\t\tright: 0;\n\t\t\tbackground: $wp-card-border-1;\n\t\t}\n\t}\n\n\t// WP Admin 3.8\n\t@include wp-admin(\"3-8\") {\n\t\t.acf-postbox-side:before {\n\t\t\tbackground: $wp38-card-border-1;\n\t\t}\n\t}\n}\n\n/* mobile */\n@media only screen and (max-width: 850px) {\n\t.acf-postbox-columns {\n\t\tmargin: 0;\n\n\t\t.acf-postbox-main,\n\t\t.acf-postbox-side {\n\t\t\tfloat: none;\n\t\t\twidth: auto;\n\t\t\tmargin: 0;\n\t\t\tpadding: 0;\n\t\t}\n\n\t\t.acf-postbox-side {\n\t\t\tmargin-top: 1em;\n\n\t\t\t&:before {\n\t\t\t\tdisplay: none;\n\t\t\t}\n\t\t}\n\t}\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* acf-panel\n*\n*---------------------------------------------------------------------------------------------*/\n\n.acf-panel {\n\tmargin-top: -1px;\n\tborder-top: 1px solid $wp-card-border-1;\n\tborder-bottom: 1px solid $wp-card-border-1;\n\n\t.acf-panel-title {\n\t\tmargin: 0;\n\t\tpadding: 12px;\n\t\tfont-weight: bold;\n\t\tcursor: pointer;\n\t\tfont-size: inherit;\n\n\t\ti {\n\t\t\tfloat: right;\n\t\t}\n\t}\n\n\t.acf-panel-inside {\n\t\tmargin: 0;\n\t\tpadding: 0 12px 12px;\n\t\tdisplay: none;\n\t}\n\n\t/* open */\n\t&.-open {\n\t\t.acf-panel-inside {\n\t\t\tdisplay: block;\n\t\t}\n\t}\n\n\t/* inside postbox */\n\t.postbox & {\n\t\tmargin-left: -12px;\n\t\tmargin-right: -12px;\n\t}\n\n\t/* fields */\n\t.acf-field {\n\t\tmargin: 20px 0 0;\n\n\t\t.acf-label label {\n\t\t\tcolor: #555d66;\n\t\t\tfont-weight: normal;\n\t\t}\n\n\t\t&:first-child {\n\t\t\tmargin-top: 0;\n\t\t}\n\t}\n\n\t// WP Admin 3.8\n\t@include wp-admin(\"3-8\") {\n\t\tborder-color: $wp38-card-border-1;\n\t}\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Admin Tools\n*\n*---------------------------------------------------------------------------------------------*/\n\n#acf-admin-tools {\n\t.notice {\n\t\tmargin-top: 10px;\n\t}\n\n\t.acf-meta-box-wrap {\n\t\t.inside {\n\t\t\tborder-top: none;\n\t\t}\n\n\t\t/* acf-fields */\n\t\t.acf-fields {\n\t\t\tmargin: {\n\t\t\t\tbottom: 24px;\n\t\t\t}\n\t\t\tborder: none;\n\t\t\tbackground: #fff;\n\t\t\tborder-radius: 0;\n\n\t\t\t.acf-field {\n\t\t\t\tpadding: 0;\n\t\t\t\tmargin-bottom: 19px;\n\t\t\t\tborder-top: none;\n\t\t\t}\n\n\t\t\t.acf-label {\n\t\t\t\t@extend .p2;\n\t\t\t\tmargin: {\n\t\t\t\t\tbottom: 16px;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t.acf-input {\n\t\t\t\tpadding: {\n\t\t\t\t\ttop: 16px;\n\t\t\t\t\tright: 16px;\n\t\t\t\t\tbottom: 16px;\n\t\t\t\t\tleft: 16px;\n\t\t\t\t}\n\t\t\t\tborder: {\n\t\t\t\t\twidth: 1px;\n\t\t\t\t\tstyle: solid;\n\t\t\t\t\tcolor: $gray-300;\n\t\t\t\t}\n\t\t\t\tborder-radius: $radius-md;\n\t\t\t}\n\n\t\t\t&.import-cptui {\n\t\t\t\tmargin-top: 19px;\n\t\t\t}\n\t\t}\n\t}\n}\n\n.acf-meta-box-wrap {\n\t.postbox {\n\t\t@include border-box();\n\n\t\t.inside {\n\t\t\tmargin-bottom: 0;\n\t\t}\n\n\t\t.hndle {\n\t\t\tfont-size: 14px;\n\t\t\tpadding: 8px 12px;\n\t\t\tmargin: 0;\n\t\t\tline-height: 1.4;\n\n\t\t\t// Prevent .acf-panel border overlapping.\n\t\t\tposition: relative;\n\t\t\tz-index: 1;\n\t\t\tcursor: default;\n\t\t}\n\n\t\t.handlediv,\n\t\t.handle-order-higher,\n\t\t.handle-order-lower {\n\t\t\tdisplay: none;\n\t\t}\n\t}\n}\n\n/* grid */\n.acf-meta-box-wrap.-grid {\n\tmargin-left: 8px;\n\tmargin-right: 8px;\n\n\t.postbox {\n\t\tfloat: left;\n\t\tclear: left;\n\t\twidth: 50%;\n\t\tmargin: 0 0 16px;\n\n\t\t&:nth-child(odd) {\n\t\t\tmargin-left: -8px;\n\t\t}\n\n\t\t&:nth-child(even) {\n\t\t\tfloat: right;\n\t\t\tclear: right;\n\t\t\tmargin-right: -8px;\n\t\t}\n\t}\n}\n\n/* mobile */\n@media only screen and (max-width: 850px) {\n\t.acf-meta-box-wrap.-grid {\n\t\tmargin-left: 0;\n\t\tmargin-right: 0;\n\n\t\t.postbox {\n\t\t\tmargin-left: 0 !important;\n\t\t\tmargin-right: 0 !important;\n\t\t\twidth: 100%;\n\t\t}\n\t}\n}\n\n/* export tool */\n#acf-admin-tool-export {\n\tp {\n\t\tmax-width: 800px;\n\t}\n\n\tul {\n\t\tdisplay: flex;\n\t\tflex-wrap: wrap;\n\t\twidth: 100%;\n\t\tli {\n\t\t\tflex: 0 1 33.33%;\n\t\t\t@media screen and (max-width: 1600px) {\n\t\t\t\tflex: 0 1 50%;\n\t\t\t}\n\t\t\t@media screen and (max-width: 1200px) {\n\t\t\t\tflex: 0 1 100%;\n\t\t\t}\n\t\t}\n\t}\n\n\t.acf-postbox-side {\n\t\tul {\n\t\t\tdisplay: block;\n\t\t}\n\n\t\t.button {\n\t\t\tmargin: 0;\n\t\t\twidth: 100%;\n\t\t}\n\t}\n\n\ttextarea {\n\t\tdisplay: block;\n\t\twidth: 100%;\n\t\tmin-height: 500px;\n\t\tbackground: $gray-50;\n\t\tborder-color: $gray-300;\n\t\tbox-shadow: none;\n\t\tpadding: 7px;\n\t\tborder-radius: $radius-md;\n\t}\n\n\t/* panel: selection */\n\t.acf-panel-selection {\n\t\t.acf-label label {\n\t\t\tfont-weight: bold;\n\t\t\tcolor: $gray-700;\n\t\t}\n\t}\n}\n\n#acf-admin-tool-import {\n\tul {\n\t\tcolumn-width: 200px;\n\t}\n}\n\n// CSS only Tooltip.\n.acf-css-tooltip {\n\tposition: relative;\n\t&:before {\n\t\tcontent: attr(aria-label);\n\t\tdisplay: none;\n\t\tposition: absolute;\n\t\tz-index: 999;\n\n\t\tbottom: 100%;\n\t\tleft: 50%;\n\t\ttransform: translate(-50%, -8px);\n\n\t\tbackground: #191e23;\n\t\tborder-radius: 2px;\n\t\tpadding: 5px 10px;\n\n\t\tcolor: #fff;\n\t\tfont-size: 12px;\n\t\tline-height: 1.4em;\n\t\twhite-space: pre;\n\t}\n\t&:after {\n\t\tcontent: \"\";\n\t\tdisplay: none;\n\t\tposition: absolute;\n\t\tz-index: 998;\n\n\t\tbottom: 100%;\n\t\tleft: 50%;\n\t\ttransform: translate(-50%, 4px);\n\n\t\tborder: solid 6px transparent;\n\t\tborder-top-color: #191e23;\n\t}\n\n\t&:hover,\n\t&:focus {\n\t\t&:before,\n\t\t&:after {\n\t\t\tdisplay: block;\n\t\t}\n\t}\n}\n\n// Diff modal.\n.acf-diff {\n\t.acf-diff-title {\n\t\tposition: absolute;\n\t\ttop: 0;\n\t\tleft: 0;\n\t\tright: 0;\n\t\theight: 40px;\n\t\tpadding: 14px 16px;\n\t\tbackground: #f3f3f3;\n\t\tborder-bottom: #dddddd solid 1px;\n\n\t\tstrong {\n\t\t\tfont-size: 14px;\n\t\t\tdisplay: block;\n\t\t}\n\n\t\t.acf-diff-title-left,\n\t\t.acf-diff-title-right {\n\t\t\twidth: 50%;\n\t\t\tfloat: left;\n\t\t}\n\t}\n\n\t.acf-diff-content {\n\t\tposition: absolute;\n\t\ttop: 70px;\n\t\tleft: 0;\n\t\tright: 0;\n\t\tbottom: 0;\n\t\toverflow: auto;\n\t}\n\n\ttable.diff {\n\t\tborder-spacing: 0;\n\n\t\tcol.diffsplit.middle {\n\t\t\twidth: 0;\n\t\t}\n\n\t\ttd,\n\t\tth {\n\t\t\tpadding-top: 0.25em;\n\t\t\tpadding-bottom: 0.25em;\n\t\t}\n\n\t\t// Fix WP 5.7 conflicting CSS.\n\t\ttr td:nth-child(2) {\n\t\t\twidth: auto;\n\t\t}\n\n\t\ttd:nth-child(3) {\n\t\t\tborder-left: #dddddd solid 1px;\n\t\t}\n\t}\n\n\t// Mobile\n\t@media screen and (max-width: 600px) {\n\t\t.acf-diff-title {\n\t\t\theight: 70px;\n\t\t}\n\t\t.acf-diff-content {\n\t\t\ttop: 100px;\n\t\t}\n\t}\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Modal\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-modal {\n\tposition: fixed;\n\ttop: 30px;\n\tleft: 30px;\n\tright: 30px;\n\tbottom: 30px;\n\tz-index: 160000;\n\tbox-shadow: 0 5px 15px rgba(0, 0, 0, 0.7);\n\tbackground: #fcfcfc;\n\n\t.acf-modal-title,\n\t.acf-modal-content,\n\t.acf-modal-toolbar {\n\t\tbox-sizing: border-box;\n\t\tposition: absolute;\n\t\tleft: 0;\n\t\tright: 0;\n\t}\n\n\t.acf-modal-title {\n\t\theight: 50px;\n\t\ttop: 0;\n\t\tborder-bottom: 1px solid #ddd;\n\n\t\th2 {\n\t\t\tmargin: 0;\n\t\t\tpadding: 0 16px;\n\t\t\tline-height: 50px;\n\t\t}\n\t\t.acf-modal-close {\n\t\t\tposition: absolute;\n\t\t\ttop: 0;\n\t\t\tright: 0;\n\t\t\theight: 50px;\n\t\t\twidth: 50px;\n\t\t\tborder: none;\n\t\t\tborder-left: 1px solid #ddd;\n\t\t\tbackground: transparent;\n\t\t\tcursor: pointer;\n\t\t\tcolor: #666;\n\t\t\t&:hover {\n\t\t\t\tcolor: #00a0d2;\n\t\t\t}\n\t\t}\n\t}\n\n\t.acf-modal-content {\n\t\ttop: 50px;\n\t\tbottom: 60px;\n\t\tbackground: #fff;\n\t\toverflow: auto;\n\t\tpadding: 16px;\n\t}\n\n\t.acf-modal-feedback {\n\t\tposition: absolute;\n\t\ttop: 50%;\n\t\tmargin: -10px 0;\n\t\tleft: 0;\n\t\tright: 0;\n\t\ttext-align: center;\n\t\topacity: 0.75;\n\n\t\t&.error {\n\t\t\topacity: 1;\n\t\t\tcolor: #b52727;\n\t\t}\n\t}\n\n\t.acf-modal-toolbar {\n\t\theight: 60px;\n\t\tbottom: 0;\n\t\tpadding: 15px 16px;\n\t\tborder-top: 1px solid #ddd;\n\n\t\t.button {\n\t\t\tfloat: right;\n\t\t}\n\t}\n\n\t// Responsive.\n\t@media only screen and (max-width: 640px) {\n\t\ttop: 0;\n\t\tleft: 0;\n\t\tright: 0;\n\t\tbottom: 0;\n\t}\n}\n.acf-modal-backdrop {\n\tposition: fixed;\n\ttop: 0;\n\tleft: 0;\n\tright: 0;\n\tbottom: 0;\n\tbackground: $gray-900;\n\topacity: 0.8;\n\tz-index: 159900;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Retina\n*\n*---------------------------------------------------------------------------------------------*/\n\n@media only screen and (-webkit-min-device-pixel-ratio: 2),\n\tonly screen and (min--moz-device-pixel-ratio: 2),\n\tonly screen and (-o-min-device-pixel-ratio: 2/1),\n\tonly screen and (min-device-pixel-ratio: 2),\n\tonly screen and (min-resolution: 192dpi),\n\tonly screen and (min-resolution: 2dppx) {\n\t.acf-loading,\n\t.acf-spinner {\n\t\tbackground-image: url(../../images/spinner@2x.gif);\n\t\tbackground-size: 20px 20px;\n\t}\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n* Wrap\n*\n*--------------------------------------------------------------------------------------------*/\n\n.acf-admin-page {\n\t.wrap {\n\t\tmargin: {\n\t\t\ttop: 48px;\n\t\t\tright: 32px;\n\t\t\tbottom: 0;\n\t\t\tleft: 12px;\n\t\t}\n\n\t\t@media screen and (max-width: 768px) {\n\t\t\tmargin: {\n\t\t\t\tright: 8px;\n\t\t\t\tleft: 8px;\n\t\t\t}\n\t\t}\n\t}\n\n\t&.rtl .wrap {\n\t\tmargin: {\n\t\t\tright: 12px;\n\t\t\tleft: 32px;\n\t\t}\n\n\t\t@media screen and (max-width: 768px) {\n\t\t\tmargin: {\n\t\t\t\tright: 8px;\n\t\t\t\tleft: 8px;\n\t\t\t}\n\t\t}\n\t}\n\n\t#wpcontent {\n\t\t@media screen and (max-width: 768px) {\n\t\t\tpadding: {\n\t\t\t\tleft: 0;\n\t\t\t}\n\t\t}\n\t}\n}\n\n/*-------------------------------------------------------------------\n*\n* ACF Admin Page Footer Styles\n*\n*------------------------------------------------------------------*/\n.acf-admin-page {\n\t#wpfooter {\n\t\tfont-style: italic;\n\t}\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Admin Postbox & ACF Postbox\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-admin-page {\n\t.postbox,\n\t.acf-box {\n\t\tborder: none;\n\t\tborder-radius: $radius-lg;\n\t\tbox-shadow: $elevation-01;\n\n\t\t.inside {\n\t\t\tpadding: {\n\t\t\t\ttop: 24px;\n\t\t\t\tright: 24px;\n\t\t\t\tbottom: 24px;\n\t\t\t\tleft: 24px;\n\t\t\t}\n\t\t}\n\n\t\t.acf-postbox-inner {\n\t\t\tmargin: {\n\t\t\t\ttop: 0;\n\t\t\t\tright: 0;\n\t\t\t\tbottom: 0;\n\t\t\t\tleft: 0;\n\t\t\t}\n\t\t\tpadding: {\n\t\t\t\ttop: 24px;\n\t\t\t\tright: 0;\n\t\t\t\tbottom: 0;\n\t\t\t\tleft: 0;\n\t\t\t}\n\t\t}\n\n\t\t.inner,\n\t\t.inside {\n\t\t\tmargin: {\n\t\t\t\ttop: 0 !important;\n\t\t\t\tright: 0 !important;\n\t\t\t\tbottom: 0 !important;\n\t\t\t\tleft: 0 !important;\n\t\t\t}\n\t\t\tborder-top: {\n\t\t\t\twidth: 1px;\n\t\t\t\tstyle: solid;\n\t\t\t\tcolor: $gray-200;\n\t\t\t}\n\t\t}\n\n\t\t.postbox-header,\n\t\t.title {\n\t\t\tdisplay: flex;\n\t\t\talign-items: center;\n\t\t\tbox-sizing: border-box;\n\t\t\tmin-height: 64px;\n\t\t\tmargin: {\n\t\t\t\ttop: 0;\n\t\t\t\tright: 0;\n\t\t\t\tbottom: 0;\n\t\t\t\tleft: 0;\n\t\t\t}\n\t\t\tpadding: {\n\t\t\t\ttop: 0;\n\t\t\t\tright: 24px;\n\t\t\t\tbottom: 0;\n\t\t\t\tleft: 24px;\n\t\t\t}\n\t\t\tborder-bottom: {\n\t\t\t\twidth: 0;\n\t\t\t\tstyle: none;\n\t\t\t}\n\n\t\t\th2,\n\t\t\th3 {\n\t\t\t\tmargin: {\n\t\t\t\t\ttop: 0;\n\t\t\t\t\tright: 0;\n\t\t\t\t\tbottom: 0;\n\t\t\t\t\tleft: 0;\n\t\t\t\t}\n\t\t\t\tpadding: {\n\t\t\t\t\ttop: 0;\n\t\t\t\t\tright: 0;\n\t\t\t\t\tbottom: 0;\n\t\t\t\t\tleft: 0;\n\t\t\t\t}\n\t\t\t\t@extend .acf-h3;\n\t\t\t\tcolor: $gray-700;\n\t\t\t}\n\t\t}\n\n\t\t.hndle {\n\t\t\tpadding: {\n\t\t\t\ttop: 0;\n\t\t\t\tright: 24px;\n\t\t\t\tbottom: 0;\n\t\t\t\tleft: 24px;\n\t\t\t}\n\t\t}\n\t}\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Custom ACF postbox header\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-postbox-header {\n\tdisplay: flex;\n\talign-items: center;\n\tjustify-content: space-between;\n\tbox-sizing: border-box;\n\tmin-height: 64px;\n\tmargin: {\n\t\ttop: -24px;\n\t\tright: -24px;\n\t\tbottom: 0;\n\t\tleft: -24px;\n\t}\n\tpadding: {\n\t\ttop: 0;\n\t\tright: 24px;\n\t\tbottom: 0;\n\t\tleft: 24px;\n\t}\n\tborder-bottom: {\n\t\twidth: 1px;\n\t\tstyle: solid;\n\t\tcolor: $gray-200;\n\t}\n\n\th2.acf-postbox-title {\n\t\tmargin: {\n\t\t\ttop: 0;\n\t\t\tright: 0;\n\t\t\tbottom: 0;\n\t\t\tleft: 0;\n\t\t}\n\t\tpadding: {\n\t\t\ttop: 0;\n\t\t\tright: 24px;\n\t\t\tbottom: 0;\n\t\t\tleft: 0;\n\t\t}\n\t\t@extend .acf-h3;\n\t\tcolor: $gray-700;\n\t}\n\n\t.rtl & h2.acf-postbox-title {\n\t\tpadding: {\n\t\t\tright: 0;\n\t\t\tleft: 24px;\n\t\t}\n\t}\n\n\t.acf-icon {\n\t\tbackground-color: $gray-400;\n\t}\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Screen options button & screen meta container\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-admin-page {\n\t#screen-meta-links {\n\t\tmargin: {\n\t\t\tright: 32px;\n\t\t}\n\n\t\t.show-settings {\n\t\t\tborder-color: $gray-300;\n\t\t}\n\n\t\t@media screen and (max-width: 768px) {\n\t\t\tmargin: {\n\t\t\t\tright: 16px;\n\t\t\t\tbottom: 0;\n\t\t\t}\n\t\t}\n\t}\n\n\t&.rtl #screen-meta-links {\n\t\tmargin: {\n\t\t\tright: 0;\n\t\t\tleft: 32px;\n\t\t}\n\n\t\t@media screen and (max-width: 768px) {\n\t\t\tmargin: {\n\t\t\t\tright: 0;\n\t\t\t\tleft: 16px;\n\t\t\t}\n\t\t}\n\t}\n\n\t#screen-meta {\n\t\tborder-color: $gray-300;\n\t}\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Postbox headings\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-admin-page {\n\t#poststuff {\n\t\t.postbox-header {\n\t\t\th2,\n\t\t\th3 {\n\t\t\t\tjustify-content: flex-start;\n\t\t\t\tmargin: {\n\t\t\t\t\ttop: 0;\n\t\t\t\t\tright: 0;\n\t\t\t\t\tbottom: 0;\n\t\t\t\t\tleft: 0;\n\t\t\t\t}\n\t\t\t\tpadding: {\n\t\t\t\t\ttop: 0;\n\t\t\t\t\tright: 0;\n\t\t\t\t\tbottom: 0;\n\t\t\t\t\tleft: 0;\n\t\t\t\t}\n\t\t\t\t@extend .acf-h3;\n\t\t\t\tcolor: $gray-700 !important;\n\t\t\t}\n\t\t}\n\t}\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Postbox drag state\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-admin-page {\n\t&.is-dragging-metaboxes\n\t\t.metabox-holder\n\t\t.postbox-container\n\t\t.meta-box-sortables {\n\t\tbox-sizing: border-box;\n\t\tpadding: 2px;\n\t\toutline: none;\n\t\tbackground-image: repeating-linear-gradient(\n\t\t\t\t0deg,\n\t\t\t\t$gray-500,\n\t\t\t\t$gray-500 5px,\n\t\t\t\ttransparent 5px,\n\t\t\t\ttransparent 10px,\n\t\t\t\t$gray-500 10px\n\t\t\t),\n\t\t\trepeating-linear-gradient(\n\t\t\t\t90deg,\n\t\t\t\t$gray-500,\n\t\t\t\t$gray-500 5px,\n\t\t\t\ttransparent 5px,\n\t\t\t\ttransparent 10px,\n\t\t\t\t$gray-500 10px\n\t\t\t),\n\t\t\trepeating-linear-gradient(\n\t\t\t\t180deg,\n\t\t\t\t$gray-500,\n\t\t\t\t$gray-500 5px,\n\t\t\t\ttransparent 5px,\n\t\t\t\ttransparent 10px,\n\t\t\t\t$gray-500 10px\n\t\t\t),\n\t\t\trepeating-linear-gradient(\n\t\t\t\t270deg,\n\t\t\t\t$gray-500,\n\t\t\t\t$gray-500 5px,\n\t\t\t\ttransparent 5px,\n\t\t\t\ttransparent 10px,\n\t\t\t\t$gray-500 10px\n\t\t\t);\n\t\tbackground-size: 1.5px 100%, 100% 1.5px, 1.5px 100%, 100% 1.5px;\n\t\tbackground-position: 0 0, 0 0, 100% 0, 0 100%;\n\t\tbackground-repeat: no-repeat;\n\t\tborder-radius: $radius-lg;\n\t}\n\n\t.ui-sortable-placeholder {\n\t\tborder: none;\n\t}\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n* Search summary\n*\n*--------------------------------------------------------------------------------------------*/\n.acf-admin-page {\n\t.subtitle {\n\t\tdisplay: inline-flex;\n\t\talign-items: center;\n\t\theight: 24px;\n\t\tmargin: 0;\n\t\tpadding: {\n\t\t\ttop: 4px;\n\t\t\tright: 12px;\n\t\t\tbottom: 4px;\n\t\t\tleft: 12px;\n\t\t}\n\t\tbackground-color: $blue-50;\n\t\tborder: {\n\t\t\twidth: 1px;\n\t\t\tstyle: solid;\n\t\t\tcolor: $blue-200;\n\t\t}\n\t\tborder-radius: $radius-md;\n\t\t@extend .p3;\n\n\t\tstrong {\n\t\t\tmargin: {\n\t\t\t\tleft: 5px;\n\t\t\t}\n\t\t}\n\t}\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n* Action strip\n*\n*--------------------------------------------------------------------------------------------*/\n.acf-actions-strip {\n\tdisplay: flex;\n\n\t.acf-btn {\n\t\tmargin: {\n\t\t\tright: 8px;\n\t\t}\n\t}\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n* Notices\n*\n*--------------------------------------------------------------------------------------------*/\n.acf-admin-page {\n\t.acf-notice,\n\t.notice,\n\t#lost-connection-notice {\n\t\tposition: relative;\n\t\tbox-sizing: border-box;\n\t\tmin-height: 48px;\n\t\tmargin: {\n\t\t\ttop: 0 !important;\n\t\t\tright: 0 !important;\n\t\t\tbottom: 16px !important;\n\t\t\tleft: 0 !important;\n\t\t}\n\t\tpadding: {\n\t\t\ttop: 13px !important;\n\t\t\tright: 16px !important;\n\t\t\tbottom: 12px !important;\n\t\t\tleft: 50px !important;\n\t\t}\n\t\tbackground-color: #e7eff9;\n\t\tborder: {\n\t\t\twidth: 1px;\n\t\t\tstyle: solid;\n\t\t\tcolor: #9dbaee;\n\t\t}\n\t\tborder-radius: $radius-lg;\n\t\tbox-shadow: $elevation-01;\n\t\tcolor: $gray-700;\n\n\t\t&.update-nag {\n\t\t\tdisplay: block;\n\t\t\tposition: relative;\n\t\t\twidth: calc(100% - 44px);\n\t\t\tmargin: {\n\t\t\t\ttop: 48px !important;\n\t\t\t\tright: 44px !important;\n\t\t\t\tbottom: -32px !important;\n\t\t\t\tleft: 12px !important;\n\t\t\t}\n\t\t}\n\n\t\t.button {\n\t\t\theight: auto;\n\t\t\tmargin: {\n\t\t\t\tleft: 8px;\n\t\t\t}\n\t\t\tpadding: 0;\n\t\t\tborder: none;\n\t\t\t@extend .p5;\n\t\t}\n\n\t\t> div {\n\t\t\tmargin: {\n\t\t\t\ttop: 0;\n\t\t\t\tbottom: 0;\n\t\t\t}\n\t\t}\n\n\t\tp {\n\t\t\tflex: 1 0 auto;\n\t\t\tmax-width: 100%;\n\t\t\tline-height: 18px;\n\t\t\tmargin: 0;\n\t\t\tpadding: 0;\n\n\t\t\t&.help {\n\t\t\t\tmargin: {\n\t\t\t\t\ttop: 0;\n\t\t\t\t}\n\t\t\t\tpadding: {\n\t\t\t\t\ttop: 0;\n\t\t\t\t}\n\t\t\t\t@extend .p7;\n\t\t\t\tcolor: rgba($gray-700, 0.7);\n\t\t\t}\n\t\t}\n\n\t\t// Dismiss button\n\t\t.acf-notice-dismiss,\n\t\t.notice-dismiss {\n\t\t\tposition: absolute;\n\t\t\ttop: 4px;\n\t\t\tright: 8px;\n\t\t\tpadding: 9px;\n\t\t\tborder: none;\n\n\t\t\t&:before {\n\t\t\t\tcontent: \"\";\n\t\t\t\t$icon-size: 20px;\n\t\t\t\tdisplay: block;\n\t\t\t\tposition: relative;\n\t\t\t\tz-index: 600;\n\t\t\t\twidth: $icon-size;\n\t\t\t\theight: $icon-size;\n\t\t\t\tbackground-color: $gray-500;\n\t\t\t\tborder: none;\n\t\t\t\tborder-radius: 0;\n\t\t\t\t-webkit-mask-size: contain;\n\t\t\t\tmask-size: contain;\n\t\t\t\t-webkit-mask-repeat: no-repeat;\n\t\t\t\tmask-repeat: no-repeat;\n\t\t\t\t-webkit-mask-position: center;\n\t\t\t\tmask-position: center;\n\t\t\t\t-webkit-mask-image: url(\"../../images/icons/icon-close.svg\");\n\t\t\t\tmask-image: url(\"../../images/icons/icon-close.svg\");\n\t\t\t}\n\n\t\t\t&:hover::before {\n\t\t\t\tbackground-color: $gray-700;\n\t\t\t}\n\t\t}\n\n\t\ta.acf-notice-dismiss {\n\t\t\tposition: absolute;\n\t\t\ttop: 5px;\n\t\t\tright: 24px;\n\n\t\t\t&:before {\n\t\t\t\tbackground-color: $gray-600;\n\t\t\t}\n\t\t}\n\n\t\t// Icon base styling\n\t\t&:before {\n\t\t\tcontent: \"\";\n\t\t\t$icon-size: 16px;\n\t\t\tdisplay: block;\n\t\t\tposition: absolute;\n\t\t\ttop: 15px;\n\t\t\tleft: 18px;\n\t\t\tz-index: 600;\n\t\t\twidth: $icon-size;\n\t\t\theight: $icon-size;\n\t\t\tmargin: {\n\t\t\t\tright: 8px;\n\t\t\t}\n\t\t\tbackground-color: #fff;\n\t\t\tborder: none;\n\t\t\tborder-radius: 0;\n\t\t\t-webkit-mask-size: contain;\n\t\t\tmask-size: contain;\n\t\t\t-webkit-mask-repeat: no-repeat;\n\t\t\tmask-repeat: no-repeat;\n\t\t\t-webkit-mask-position: center;\n\t\t\tmask-position: center;\n\t\t\t-webkit-mask-image: url(\"../../images/icons/icon-info-solid.svg\");\n\t\t\tmask-image: url(\"../../images/icons/icon-info-solid.svg\");\n\t\t}\n\n\t\t&:after {\n\t\t\tcontent: \"\";\n\t\t\tdisplay: block;\n\t\t\tposition: absolute;\n\t\t\ttop: 9px;\n\t\t\tleft: 12px;\n\t\t\tz-index: 500;\n\t\t\twidth: 28px;\n\t\t\theight: 28px;\n\t\t\tbackground-color: $color-info;\n\t\t\tborder-radius: $radius-md;\n\t\t\tbox-shadow: $elevation-01;\n\t\t}\n\n\t\t.local-restore {\n\t\t\talign-items: center;\n\t\t\tmargin: {\n\t\t\t\ttop: -6px;\n\t\t\t\tbottom: 0;\n\t\t\t}\n\t\t}\n\t}\n\n\t// Persisted notices should be hidden by default as they will be shown by JS if required.\n\t.notice[data-persisted=\"true\"] {\n\t\tdisplay: none;\n\t}\n\n\t.notice.is-dismissible {\n\t\tpadding: {\n\t\t\tright: 56px;\n\t\t}\n\t}\n\n\t// Success notice\n\t.notice.notice-success {\n\t\tbackground-color: #edf7ef;\n\t\tborder-color: #b6deb9;\n\n\t\t&:before {\n\t\t\t-webkit-mask-image: url(\"../../images/icons/icon-check-circle-solid.svg\");\n\t\t\tmask-image: url(\"../../images/icons/icon-check-circle-solid.svg\");\n\t\t}\n\n\t\t&:after {\n\t\t\tbackground-color: $color-success;\n\t\t}\n\t}\n\n\t// Error notice\n\t.acf-notice.acf-error-message,\n\t.notice.notice-error,\n\t#lost-connection-notice {\n\t\tbackground-color: #f7eeeb;\n\t\tborder-color: #f1b6b3;\n\n\t\t&:before {\n\t\t\t-webkit-mask-image: url(\"../../images/icons/icon-warning.svg\");\n\t\t\tmask-image: url(\"../../images/icons/icon-warning.svg\");\n\t\t}\n\n\t\t&:after {\n\t\t\tbackground-color: $color-danger;\n\t\t}\n\t}\n\t\n\t.notice.notice-warning {\n\t\t&:before {\n\t\t\t-webkit-mask-image: url(\"../../images/icons/icon-alert-triangle.svg\");\n\t\t\tmask-image: url(\"../../images/icons/icon-alert-triangle.svg\");\n\t\t\tbackground: #f56e28;\n\t\t}\n\n\t\t&:after {\n\t\t\tcontent: none;\n\t\t}\n\n\t\tbackground: linear-gradient(0deg, rgba(247, 144, 9, 0.08), rgba(247, 144, 9, 0.08)), #FFFFFF;\n\t\tborder: 1px solid rgba(247, 144, 9, 0.32);\n\t\tcolor: $gray-700;\n\t}\n}\n\n.acf-admin-single-taxonomy,\n.acf-admin-single-post-type,\n.acf-admin-single-options-page {\n\t.notice-success {\n\t\t.acf-item-saved-text {\n\t\t\tfont-weight: 600;\n\t\t}\n\n\t\t.acf-item-saved-links {\n\t\t\tdisplay: flex;\n\t\t\tgap: 12px;\n\n\t\t\ta {\n\t\t\t\ttext-decoration: none;\n\t\t\t\topacity: 1;\n\n\t\t\t\t&:after {\n\t\t\t\t\tcontent: \"\";\n\t\t\t\t\twidth: 1px;\n\t\t\t\t\theight: 13px;\n\t\t\t\t\tdisplay: inline-flex;\n\t\t\t\t\tposition: relative;\n\t\t\t\t\ttop: 2px;\n\t\t\t\t\tleft: 6px;\n\t\t\t\t\tbackground-color: $gray-600;\n\t\t\t\t\topacity: 0.3;\n\t\t\t\t}\n\n\t\t\t\t&:last-child {\n\t\t\t\t\t&:after {\n\t\t\t\t\t\tcontent: none;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n}\n\n.rtl.acf-field-group,\n.rtl.acf-internal-post-type {\n\t.notice {\n\t\tpadding-right: 50px !important;\n\n\t\t.notice-dismiss {\n\t\t\tleft: 8px;\n\t\t\tright: unset;\n\t\t}\n\n\t\t&:before {\n\t\t\tleft: unset;\n\t\t\tright: 10px;\n\t\t}\n\n\t\t&:after {\n\t\t\tleft: unset;\n\t\t\tright: 12px;\n\t\t}\n\t}\n\n\t&.acf-admin-single-taxonomy,\n\t&.acf-admin-single-post-type,\n\t&.acf-admin-single-options-page {\n\t\t.notice-success .acf-item-saved-links a {\n\t\t\t&:after {\n\t\t\t\tleft: unset;\n\t\t\t\tright: 6px;\n\t\t\t}\n\t\t}\n\t}\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n* ACF PRO label\n*\n*--------------------------------------------------------------------------------------------*/\n.acf-pro-label {\n\tdisplay: inline-flex;\n\talign-items: center;\n\tmin-height: 22px;\n\tpadding: {\n\t\tright: 8px;\n\t\tleft: 8px;\n\t}\n\tbackground: $gradient-pro;\n\tbox-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);\n\tborder: none;\n\tborder-radius: 100px;\n\tfont-size: 11px;\n\ttext-transform: uppercase;\n\ttext-decoration: none;\n\tcolor: #fff;\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n* Inline notice overrides\n*\n*--------------------------------------------------------------------------------------------*/\n.acf-admin-page {\n\t.acf-field {\n\t\t// notice\n\t\t.acf-notice {\n\t\t\tdisplay: flex;\n\t\t\talign-items: center;\n\t\t\tmin-height: 40px !important;\n\t\t\tmargin: {\n\t\t\t\tbottom: 6px !important;\n\t\t\t}\n\t\t\tpadding: {\n\t\t\t\ttop: 6px !important;\n\t\t\t\tleft: 40px !important;\n\t\t\t\tbottom: 6px !important;\n\t\t\t}\n\t\t\tmargin: 0 0 15px;\n\t\t\tbackground: #edf2ff;\n\t\t\tcolor: $gray-700 !important;\n\t\t\tborder-color: #2183b9;\n\t\t\tborder-radius: $radius-md;\n\n\t\t\t&:after {\n\t\t\t\ttop: 8px;\n\t\t\t\tleft: 8px;\n\t\t\t\twidth: 22px;\n\t\t\t\theight: 22px;\n\t\t\t}\n\n\t\t\t&:before {\n\t\t\t\ttop: 12px;\n\t\t\t\tleft: 12px;\n\t\t\t\twidth: 14px;\n\t\t\t\theight: 14px;\n\t\t\t}\n\n\t\t\t// error\n\t\t\t&.-error {\n\t\t\t\tbackground: #f7eeeb;\n\t\t\t\tborder-color: #f1b6b3;\n\t\t\t}\n\n\t\t\t// success\n\t\t\t&.-success {\n\t\t\t\tbackground: #edf7ef;\n\t\t\t\tborder-color: #b6deb9;\n\t\t\t}\n\n\t\t\t// warning\n\t\t\t&.-warning {\n\t\t\t\tbackground: #fdf8eb;\n\t\t\t\tborder-color: #f4dbb4;\n\t\t\t}\n\t\t}\n\t}\n}\n","/*---------------------------------------------------------------------------------------------\n*\n* Global\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-admin-page {\n\t#wpcontent {\n\t\tline-height: 140%;\n\t}\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Links\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-admin-page {\n\n\ta {\n\t\tcolor: $blue-500;\n\t}\n\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Headings\n*\n*---------------------------------------------------------------------------------------------*/\n\n.acf-h1 {\n\tfont-size: 21px;\n\tfont-weight: 400;\n}\n\n.acf-h2 {\n\tfont-size: 18px;\n\tfont-weight: 400;\n}\n\n.acf-h3 {\n\tfont-size: 16px;\n\tfont-weight: 400;\n}\n\n.acf-admin-page,\n.acf-headerbar {\n\n\th1 {\n\t\t@extend .acf-h1;\n\t}\n\n\th2 {\n\t\t@extend .acf-h2;\n\t}\n\n\th3 {\n\t\t@extend .acf-h3;\n\t}\n\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Paragraphs\n*\n*---------------------------------------------------------------------------------------------*/\n\n.acf-admin-page {\n\n\t.p1 {\n\t\tfont-size: 15px;\n\t}\n\n\t.p2 {\n\t\tfont-size: 14px;\n\t}\n\n\t.p3 {\n\t\tfont-size: 13.5px;\n\t}\n\n\t.p4 {\n\t\tfont-size: 13px;\n\t}\n\n\t.p5 {\n\t\tfont-size: 12.5px;\n\t}\n\n\t.p6 {\n\t\tfont-size: 12px;\n\t}\n\n\t.p7 {\n\t\tfont-size: 11.5px;\n\t}\n\n\t.p8 {\n\t\tfont-size: 11px;\n\t}\n\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Page titles\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-page-title {\n\t@extend .acf-h2;\n\tcolor: $gray-700;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Hide old / native WP titles from pages\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-admin-page {\n\n\t.acf-settings-wrap h1 {\n\t\tdisplay: none !important;\n\t}\n\n\t#acf-admin-tools h1:not(.acf-field-group-pro-features-title, .acf-field-group-pro-features-title-sm) {\n\t\tdisplay: none !important;\n\t}\n\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Small\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-small {\n\t@extend .p6;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Link focus style\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-admin-page {\n\ta:focus {\n\t\tbox-shadow: none;\n\t\toutline: none;\n\t}\n\n\ta:focus-visible {\n\t\tbox-shadow: 0 0 0 1px #4f94d4, 0 0 2px 1px rgb(79 148 212 / 80%);\n\t\toutline: 1px solid transparent;\n\t}\n}\n",".acf-admin-page {\n\n\t/*---------------------------------------------------------------------------------------------\n\t*\n\t* All Inputs\n\t*\n\t*---------------------------------------------------------------------------------------------*/\n\tinput[type=\"text\"],\n\tinput[type=\"search\"],\n\tinput[type=\"number\"],\n\ttextarea,\n\tselect {\n\t\tbox-sizing: border-box;\n\t\theight: 40px;\n\t\tpadding: {\n\t\t\tright: 12px;\n\t\t\tleft: 12px;\n\t\t};\n\t\tbackground-color: #fff;\n\t\tborder-color: $gray-300;\n\t\tbox-shadow: $elevation-01;\n\t\tborder-radius: $radius-md;\n\t\t@extend .p4;\n\t\tcolor: $gray-700;\n\n\t\t&:focus {\n\t\t\toutline: $outline;\n\t\t\tborder-color: $blue-400;\n\t\t}\n\n\t\t&:disabled {\n\t\t\tbackground-color: $gray-50;\n\t\t\tcolor: lighten($gray-500, 10%);\n\t\t}\n\n\t\t&::placeholder {\n\t\t\tcolor: $gray-400;\n\t\t}\n\n\t}\n\n\t/*---------------------------------------------------------------------------------------------\n\t*\n\t* Read only text inputs\n\t*\n\t*---------------------------------------------------------------------------------------------*/\n\tinput[type=\"text\"] {\n\n\t\t&:read-only {\n\t\t\tbackground-color: $gray-50;\n\t\t\tcolor: $gray-400;\n\t\t}\n\n\t}\n\n\t/*---------------------------------------------------------------------------------------------\n\t*\n\t* Number fields\n\t*\n\t*---------------------------------------------------------------------------------------------*/\n\t.acf-field.acf-field-number {\n\n\t\t.acf-label,\n\t\t.acf-input input[type=\"number\"] {\n\t\t\tmax-width: 180px;\n\t\t}\n\n\t}\n\n\t/*---------------------------------------------------------------------------------------------\n\t*\n\t* Textarea\n\t*\n\t*---------------------------------------------------------------------------------------------*/\n\ttextarea {\n\t\tbox-sizing: border-box;\n\t\tpadding: {\n\t\t\ttop: 10px;\n\t\t\tbottom: 10px;\n\t\t};\n\t\theight: 80px;\n\t\tmin-height: 56px;\n\t}\n\n\t/*---------------------------------------------------------------------------------------------\n\t*\n\t* Select\n\t*\n\t*---------------------------------------------------------------------------------------------*/\n\tselect {\n\t\tmin-width: 160px;\n\t\tmax-width: 100%;\n\t\tpadding: {\n\t\t\tright: 40px;\n\t\t\tleft: 12px;\n\t\t};\n\t\tbackground-image: url('../../images/icons/icon-chevron-down.svg');\n\t\tbackground-position: right 10px top 50%;\n\t\tbackground-size: 20px;\n\t\t@extend .p4;\n\n\t\t&:hover,\n\t\t&:focus {\n\t\t\tcolor: $blue-500;\n\t\t}\n\n\t\t&::before {\n\t\t\tcontent: '';\n\t\t\tdisplay: block;\n\t\t\tposition: absolute;\n\t\t\ttop: 5px;\n\t\t\tleft: 5px;\n\t\t\twidth: 20px;\n\t\t\theight: 20px;\n\t\t}\n\n\t}\n\n\t&.rtl {\n\t\tselect {\n\t\t\tpadding: {\n\t\t\t\tright: 12px;\n\t\t\t\tleft: 40px;\n\t\t\t};\n\t\t\tbackground-position: left 10px top 50%;\n\t\t}\n\t}\n\n\t/*---------------------------------------------------------------------------------------------\n\t*\n\t* Radio Button & Checkbox base styling\n\t*\n\t*---------------------------------------------------------------------------------------------*/\n\tinput[type=\"radio\"],\n\tinput[type=\"checkbox\"] {\n\t\tbox-sizing: border-box;\n\t\twidth: 16px;\n\t\theight: 16px;\n\t\tpadding: 0;\n\t\tborder: {\n\t\t\twidth: 1px;\n\t\t\tstyle: solid;\n\t\t\tcolor: $gray-400;\n\t\t};\n\t\tbackground: #fff;\n\t\tbox-shadow: none;\n\n\t\t&:hover {\n\t\t\tbackground-color: $blue-50;\n\t\t\tborder-color: $blue-500;\n\t\t}\n\n\t\t&:checked,\n\t\t&:focus-visible {\n\t\t\tbackground-color: $blue-50;\n\t\t\tborder-color: $blue-500;\n\n\t\t\t&:before {\n\t\t\t\tcontent: '';\n\t\t\t\tposition: relative;\n\t\t\t\ttop: -1px;\n\t\t\t\tleft: -1px;\n\t\t\t\twidth: 16px;\n\t\t\t\theight: 16px;\n\t\t\t\tmargin: 0;\n\t\t\t\tpadding: 0;\n\t\t\t\tbackground-color: transparent;\n\t\t\t\tbackground-size: cover;\n\t\t\t\tbackground-repeat: no-repeat;\n\t\t\t\tbackground-position: center;\n\t\t\t}\n\n\t\t}\n\n\t\t&:active {\n\t\t\tbox-shadow: 0px 0px 0px 3px $blue-50, 0px 0px 0px rgba(255, 54, 54, 0.25);\n\t\t}\n\n\t\t&:disabled {\n\t\t\tbackground-color: $gray-50;\n\t\t\tborder-color: $gray-300;\n\t\t}\n\n\t}\n\n\t&.rtl {\n\t\tinput[type=\"radio\"],\n\t\tinput[type=\"checkbox\"] {\n\t\t\t&:checked,\n\t\t\t&:focus-visible {\n\t\t\t\t&:before {\n\t\t\t\t\tleft: 1px;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\n\t/*---------------------------------------------------------------------------------------------\n\t*\n\t* Radio Buttons\n\t*\n\t*---------------------------------------------------------------------------------------------*/\n\tinput[type=\"radio\"] {\n\n\t\t&:checked,\n\t\t&:focus {\n\n\t\t\t&:before {\n\t\t\t\tbackground-image: url('../../images/field-states/radio-active.svg');\n\t\t\t}\n\n\t\t}\n\n\t}\n\n\t/*---------------------------------------------------------------------------------------------\n\t*\n\t* Checkboxes\n\t*\n\t*---------------------------------------------------------------------------------------------*/\n\tinput[type=\"checkbox\"] {\n\n\t\t&:checked,\n\t\t&:focus {\n\n\t\t\t&:before {\n\t\t\t\tbackground-image: url('../../images/field-states/checkbox-active.svg');\n\t\t\t}\n\n\t\t}\n\n\t}\n\n\t/*---------------------------------------------------------------------------------------------\n\t*\n\t* Radio Buttons & Checkbox lists\n\t*\n\t*---------------------------------------------------------------------------------------------*/\n\t.acf-radio-list,\n\t.acf-checkbox-list {\n\n\t\tli input[type=\"radio\"],\n\t\tli input[type=\"checkbox\"] {\n\t\t\tmargin: {\n\t\t\t\tright: 6px;\n\t\t\t};\n\t\t}\n\n\t\t&.acf-bl li {\n\t\t\tmargin: {\n\t\t\t\tbottom: 8px;\n\t\t\t};\n\n\t\t\t&:last-of-type {\n\t\t\t\tmargin: {\n\t\t\t\t\tbottom: 0;\n\t\t\t\t};\n\t\t\t}\n\n\n\t\t}\n\n\t\tlabel {\n\t\t\tdisplay: flex;\n\t\t\talign-items: center;\n\t\t\talign-content: center;\n\t\t}\n\n\t}\n\n\t/*---------------------------------------------------------------------------------------------\n\t*\n\t* ACF Switch\n\t*\n\t*---------------------------------------------------------------------------------------------*/\n\t.acf-switch {\n\t\twidth: 42px;\n\t\theight: 24px;\n\t\tborder: none;\n\t\tbackground-color: $gray-300;\n\t\tborder-radius: 12px;\n\n\t\t&:hover {\n\t\t\tbackground-color: $gray-400;\n\t\t}\n\n\t\t&:active {\n\t\t\tbox-shadow: 0px 0px 0px 3px $blue-50, 0px 0px 0px rgba(255, 54, 54, 0.25);\n\t\t}\n\n\t\t&.-on {\n\t\t\tbackground-color: $color-primary;\n\n\t\t\t&:hover {\n\t\t\t\tbackground-color: $color-primary-hover;\n\t\t\t}\n\n\t\t\t.acf-switch-slider {\n\t\t\t\tleft: 20px;\n\t\t\t}\n\n\t\t}\n\n\t\t.acf-switch-off,\n\t\t.acf-switch-on {\n\t\t\tvisibility: hidden;\n\t\t}\n\n\t\t.acf-switch-slider {\n\t\t\twidth: 20px;\n\t\t\theight: 20px;\n\t\t\tborder: none;\n\t\t\tborder-radius: 100px;\n\t\t\tbox-shadow: 0px 1px 3px rgba(16, 24, 40, 0.1), 0px 1px 2px rgba(16, 24, 40, 0.06);\n\t\t}\n\n\t}\n\n\t.acf-field-true-false {\n\t\tdisplay: flex;\n\t\talign-items: flex-start;\n\n\t\t.acf-label {\n\t\t\torder: 2;\n\t\t\tdisplay: block;\n\t\t\talign-items: center;\n\t\t\tmargin: {\n\t\t\t\ttop: 2px;\n\t\t\t\tbottom: 0;\n\t\t\t\tleft: 12px;\n\t\t\t};\n\n\t\t\tlabel {\n\t\t\t\tmargin: {\n\t\t\t\t\tbottom: 0;\n\t\t\t\t};\n\t\t\t}\n\n\t\t\t.acf-tip {\n\t\t\t\tmargin: {\n\t\t\t\t\tleft: 12px;\n\t\t\t\t};\n\t\t\t}\n\t\t\t\n\t\t\t.description {\n\t\t\t\tdisplay: block;\n\t\t\t\tmargin: {\n\t\t\t\t\ttop: 2px;\n\t\t\t\t\tleft: 0;\n\t\t\t\t};\t\t\n\t\t\t}\n\n\t\t}\n\n\t}\n\n\t&.rtl {\n\t\t.acf-field-true-false {\n\t\t\t.acf-label {\n\t\t\t\tmargin: {\n\t\t\t\t\tright: 12px;\n\t\t\t\t\tleft: 0;\n\t\t\t\t};\n\t\t\t}\n\n\t\t\t.acf-tip {\n\t\t\t\tmargin: {\n\t\t\t\t\tright: 12px;\n\t\t\t\t\tleft: 0;\n\t\t\t\t};\n\t\t\t}\n\t\t}\n\t}\n\n\t/*---------------------------------------------------------------------------------------------\n\t*\n\t* File input button\n\t*\n\t*---------------------------------------------------------------------------------------------*/\n\n\tinput::file-selector-button {\n\t\tbox-sizing: border-box;\n\t\tmin-height: 40px;\n\t\tmargin: {\n\t\t\tright: 16px;\n\t\t};\n\t\tpadding: {\n\t\t\ttop: 8px;\n\t\t\tright: 16px;\n\t\t\tbottom: 8px;\n\t\t\tleft: 16px;\n\t\t};\n\t\tbackground-color: transparent;\n\t\tcolor: $color-primary !important;\n\t\tborder-radius: $radius-md;\n\t\tborder: {\n\t\t\twidth: 1px;\n\t\t\tstyle: solid;\n\t\t\tcolor: $color-primary;\n\t\t};\n\t\ttext-decoration: none;\n\n\t\t&:hover {\n\t\t\tborder-color: $color-primary-hover;\n\t\t\tcursor: pointer;\n\t\t\tcolor: $color-primary-hover !important;\n\t\t}\n\n\t}\n\n\n\t/*---------------------------------------------------------------------------------------------\n\t*\n\t* Action Buttons\n\t*\n\t*---------------------------------------------------------------------------------------------*/\n\t.button {\n\t\tdisplay: inline-flex;\n\t\talign-items: center;\n\t\theight: 40px;\n\t\tpadding: {\n\t\t\tright: 16px;\n\t\t\tleft: 16px;\n\t\t};\n\t\tbackground-color: transparent;\n\t\tborder-width: 1px;\n\t\tborder-style: solid;\n\t\tborder-color: $blue-500;\n\t\tborder-radius: $radius-md;\n\t\t@extend .p4;\n\t\tcolor: $blue-500;\n\n\t\t&:hover {\n\t\t\tbackground-color: lighten($blue-50, 2%);\n\t\t\tborder-color: $color-primary;\n\t\t\tcolor: $color-primary;\n\t\t}\n\t\t&:focus {\n\t\t\tbackground-color: lighten($blue-50, 2%);\n\t\t\toutline: $outline;\n\t\t\tcolor: $color-primary;\n\t\t}\n\n\t}\n\n\t/*---------------------------------------------------------------------------------------------\n\t*\n\t* Edit field group header\n\t*\n\t*---------------------------------------------------------------------------------------------*/\n\t.edit-field-group-header {\n\t\tdisplay: block !important;\n\t}\n\n\t/*---------------------------------------------------------------------------------------------\n\t*\n\t* Select2 inputs\n\t*\n\t*---------------------------------------------------------------------------------------------*/\n\t.acf-input {\n\n\t\t.select2-container.-acf .select2-selection {\n\t\t\tborder: none;\n\t\t\tline-height: 1;\n\t\t}\n\n\t\t.select2-container.-acf .select2-selection__rendered {\n\t\t\tbox-sizing: border-box;\n\t\t\tpadding: {\n\t\t\t\tright: 0;\n\t\t\t\tleft: 0;\n\t\t\t};\n\t\t\tbackground-color: #fff;\n\t\t\tborder: {\n\t\t\t\twidth: 1px;\n\t\t\t\tstyle: solid;\n\t\t\t\tcolor: $gray-300;\n\t\t\t};\n\t\t\tbox-shadow: $elevation-01;\n\t\t\tborder-radius: $radius-md;\n\t\t\t@extend .p4;\n\t\t\tcolor: $gray-700;\n\t\t}\n\n\t\t.select2-container--focus {\n\t\t\toutline: $outline;\n\t\t\tborder-color: $blue-400;\n\t\t\tborder-radius: $radius-md;\n\n\t\t\t.select2-selection__rendered {\n\t\t\t\tborder-color: $blue-400 !important;\n\t\t\t}\n\n\t\t\t&.select2-container--below.select2-container--open {\n\n\t\t\t\t.select2-selection__rendered {\n\t\t\t\t\tborder-bottom-right-radius: 0 !important;\n\t\t\t\t\tborder-bottom-left-radius: 0 !important;\n\t\t\t\t}\n\n\t\t\t}\n\n\t\t\t&.select2-container--above.select2-container--open {\n\n\t\t\t\t.select2-selection__rendered {\n\t\t\t\t\tborder-top-right-radius: 0 !important;\n\t\t\t\t\tborder-top-left-radius: 0 !important;\n\t\t\t\t}\n\n\t\t\t}\n\n\t\t}\n\n\t\t.select2-container .select2-search--inline .select2-search__field {\n\t\t\tmargin: 0;\n\t\t\tpadding: {\n\t\t\t\tleft: 6px;\n\t\t\t};\n\n\t\t\t&:focus {\n\t\t\t\toutline: none;\n\t\t\t\tborder: none;\n\t\t\t}\n\n\t\t}\n\n\t\t.select2-container--default .select2-selection--multiple .select2-selection__rendered {\n\t\t\tpadding: {\n\t\t\t\ttop: 0;\n\t\t\t\tright: 6px;\n\t\t\t\tbottom: 0;\n\t\t\t\tleft: 6px;\n\t\t\t};\n\t\t}\n\n\t\t.select2-selection__clear {\n\t\t\twidth: 18px;\n\t\t\theight: 18px;\n\t\t\tmargin: {\n\t\t\t\ttop: 12px;\n\t\t\t\tright: 1px;\n\t\t\t};\n\t\t\ttext-indent: 100%;\n\t\t\twhite-space: nowrap;\n\t\t\toverflow: hidden;\n\t\t\tcolor: #fff;\n\n\t\t\t&:before {\n\t\t\t\tcontent: '';\n\t\t\t\t$icon-size: 16px;\n\t\t\t\tdisplay: block;\n\t\t\t\twidth: $icon-size;\n\t\t\t\theight: $icon-size;\n\t\t\t\ttop: 0;\n\t\t\t\tleft: 0;\n\t\t\t\tborder: none;\n\t\t\t\tborder-radius: 0;\n\t\t\t\t-webkit-mask-size: contain;\n\t\t\t\tmask-size: contain;\n\t\t\t\t-webkit-mask-repeat: no-repeat;\n\t\t\t\tmask-repeat: no-repeat;\n\t\t\t\t-webkit-mask-position: center;\n\t\t\t\tmask-position: center;\n\t\t\t\t-webkit-mask-image: url('../../images/icons/icon-close.svg');\n\t\t\t\tmask-image: url('../../images/icons/icon-close.svg');\n\t\t\t\tbackground-color: $gray-400;\n\t\t\t}\n\n\t\t\t&:hover::before {\n\t\t\t\tbackground-color: $blue-500;\n\t\t\t}\n\n\t\t}\n\n\t}\n\n\t/*---------------------------------------------------------------------------------------------\n\t*\n\t* ACF label\n\t*\n\t*---------------------------------------------------------------------------------------------*/\n\t.acf-label {\n\t\tdisplay: flex;\n\t\talign-items: center;\n\t\tjustify-content: space-between;\n\n\t\t.acf-icon-help {\n\t\t\t$icon-size: 18px;\n\t\t\twidth: $icon-size;\n\t\t\theight: $icon-size;\n\t\t\tbackground-color: $gray-400;\n\t\t}\n\n\t\tlabel {\n\t\t\tmargin: {\n\t\t\t\tbottom: 0;\n\t\t\t};\n\t\t}\n\t\t\n\t\t.description {\n\t\t\tmargin: {\n\t\t\t\ttop: 2px;\n\t\t\t};\n\t\t}\n\n\t}\n\n\t/*---------------------------------------------------------------------------------------------\n\t*\n\t* Tooltip for field name field setting (result of a fix for keyboard navigation)\n\t*\n\t*---------------------------------------------------------------------------------------------*/\n\t.acf-field-setting-name .acf-tip {\n\t\tposition: absolute;\n\t\ttop: 0;\n\t\tleft: 654px;\n\t\tcolor: #98A2B3;\n\n\t\t@at-root .rtl#{&} {\n\t\t\tleft: auto;\n\t\t\tright: 654px;\n\t\t}\n\n\t\t.acf-icon-help {\n\t\t\twidth: 18px;\n\t\t\theight: 18px;\n\t\t}\n\t}\n\n\t/* Field Type Selection select2 */\n\t.acf-field-setting-type,\n\t.acf-field-permalink-rewrite,\n\t.acf-field-query-var,\n\t.acf-field-capability,\n\t.acf-field-parent-slug,\n\t.acf-field-data-storage,\n\t.acf-field-manage-terms,\n\t.acf-field-edit-terms,\n\t.acf-field-delete-terms,\n\t.acf-field-assign-terms,\n\t.acf-field-meta-box {\n\t\t\n\t\t.select2-container.-acf {\n\t\t\tmin-height: 40px;\n\t\t}\n\n\t\t.select2-container--default .select2-selection--single {\n\t\t\t.select2-selection__rendered {\n\t\t\t\tdisplay: flex;\n\t\t\t\talign-items: center;\n\t\t\t\tposition: relative;\n\t\t\t\tz-index: 800;\n\t\t\t\tmin-height: 40px;\n\t\t\t\tpadding: {\n\t\t\t\t\ttop: 0;\n\t\t\t\t\tright: 12px;\n\t\t\t\t\tbottom: 0;\n\t\t\t\t\tleft: 12px;\n\t\t\t\t};\n\t\t\t}\n\t\t\t.field-type-icon {\n\t\t\t\ttop: auto;\n\t\t\t\twidth: 18px;\n\t\t\t\theight: 18px;\n\t\t\t\tmargin: {\n\t\t\t\t\tright: 2px;\n\t\t\t\t};\n\n\t\t\t\t&:before {\n\t\t\t\t\twidth: 9px;\n\t\t\t\t\theight: 9px;\n\t\t\t\t}\n\n\t\t\t}\n\t\t}\n\n\t\t.select2-container--open .select2-selection__rendered {\n\t\t\tborder-color: $blue-300 !important;\n\t\t\tborder-bottom-color: $gray-300 !important;\n\t\t}\n\n\t\t.select2-container--open.select2-container--below .select2-selection__rendered {\n\t\t\tborder-bottom-right-radius: 0 !important;\n\t\t\tborder-bottom-left-radius: 0 !important;\n\t\t}\n\n\t\t.select2-container--open.select2-container--above .select2-selection__rendered {\n\t\t\tborder-top-right-radius: 0 !important;\n\t\t\tborder-top-left-radius: 0 !important;\n\t\t\tborder-bottom-color: $blue-300 !important;\n\t\t\tborder-top-color: $gray-300 !important;\n\t\t}\n\n\t\t// icon margins\n\t\t.acf-selection.has-icon {\n\t\t\tmargin-left: 6px;\n\t\n\t\t\t@at-root .rtl#{&} {\n\t\t\t\tmargin-right: 6px;\n\t\t\t}\n\t\t}\n\t\t\n\t\t// Dropdown icon\n\t\t.select2-selection__arrow {\n\t\t\twidth: 20px;\n\t\t\theight: 20px;\n\t\t\ttop: calc(50% - 10px);\n\t\t\tright: 12px;\n\t\t\tbackground-color: transparent;\n\t\t\t\n\t\t\t&:after {\n\t\t\t\tcontent: \"\";\n\t\t\t\t$icon-size: 20px;\n\t\t\t\tdisplay: block;\n\t\t\t\tposition: absolute;\n\t\t\t\tz-index: 850;\n\t\t\t\ttop: 1px;\n\t\t\t\tleft: 0;\n\t\t\t\twidth: $icon-size;\n\t\t\t\theight: $icon-size;\n\t\t\t\t-webkit-mask-image: url(\"../../images/icons/icon-chevron-down.svg\");\n\t\t\t\tmask-image: url(\"../../images/icons/icon-chevron-down.svg\");\n\t\t\t\tbackground-color: $gray-500;\n\t\t\t\tborder: none;\n\t\t\t\tborder-radius: 0;\n\t\t\t\t-webkit-mask-size: contain;\n\t\t\t\tmask-size: contain;\n\t\t\t\t-webkit-mask-repeat: no-repeat;\n\t\t\t\tmask-repeat: no-repeat;\n\t\t\t\t-webkit-mask-position: center;\n\t\t\t\tmask-position: center;\n\t\t\t\ttext-indent: 500%;\n\t\t\t\twhite-space: nowrap;\n\t\t\t\toverflow: hidden;\t\n\t\t\t}\n\t\t\t\n\t\t\tb[role=\"presentation\"] {\n\t\t\t\tdisplay: none;\n\t\t\t}\n\t\t\t\n\t\t}\n\n\t\t// Open state\n\t\t.select2-container--open {\n\t\t\t\n\t\t\t// Swap chevron icon\n\t\t\t.select2-selection__arrow:after {\n\t\t\t\t-webkit-mask-image: url(\"../../images/icons/icon-chevron-up.svg\");\n\t\t\t\tmask-image: url(\"../../images/icons/icon-chevron-up.svg\");\n\t\t\t}\n\t\t\t\n\t\t}\n\n\t}\n\n\t.field-type-select-results {\n\t\tposition: relative;\n\t\ttop: 4px;\n\t\tz-index: 1002;\n\t\tborder-radius: 0 0 $radius-md $radius-md;\n\t\tbox-shadow: 0px 8px 24px 4px rgba(16, 24, 40, 0.12);\n\t\t&.select2-dropdown--above {\n\t\t\tdisplay: flex;\n\t\t\tflex-direction: column-reverse;\t \n\t\t\ttop: 0;\n\t\t\tborder-radius: $radius-md $radius-md 0 0;\n\t\t\tz-index: 99999;\n\t\t}\n\t\t\n\t\t@at-root .select2-container.select2-container--open#{&} {\n\t\t\t// outline: 3px solid $blue-50;\n\t\t\tbox-shadow: 0px 0px 0px 3px #EBF5FA, 0px 8px 24px 4px rgba(16, 24, 40, 0.12);\n\t\t}\n\n\t\t// icon margins\n\t\t.acf-selection.has-icon {\n\t\t\tmargin-left: 6px;\n\n\t\t\t@at-root .rtl#{&} {\n\t\t\t\tmargin-right: 6px;\n\t\t\t}\n\t\t}\n\n\t\t// Search field\n\t\t.select2-search {\n\t\t\tposition: relative;\n\t\t\tmargin: 0;\n\t\t\tpadding: 0;\n\n\t\t\t&--dropdown {\n\t\t\t\t&:after {\n\t\t\t\t\tcontent: \"\";\n\t\t\t\t\t$icon-size: 16px;\n\t\t\t\t\tdisplay: block;\n\t\t\t\t\tposition: absolute;\n\t\t\t\t\ttop: 12px;\n\t\t\t\t\tleft: 13px;\n\t\t\t\t\twidth: $icon-size;\n\t\t\t\t\theight: $icon-size;\n\t\t\t\t\t-webkit-mask-image: url(\"../../images/icons/icon-search.svg\");\n\t\t\t\t\tmask-image: url(\"../../images/icons/icon-search.svg\");\n\t\t\t\t\tbackground-color: $gray-400;\n\t\t\t\t\tborder: none;\n\t\t\t\t\tborder-radius: 0;\n\t\t\t\t\t-webkit-mask-size: contain;\n\t\t\t\t\tmask-size: contain;\n\t\t\t\t\t-webkit-mask-repeat: no-repeat;\n\t\t\t\t\tmask-repeat: no-repeat;\n\t\t\t\t\t-webkit-mask-position: center;\n\t\t\t\t\tmask-position: center;\n\t\t\t\t\ttext-indent: 500%;\n\t\t\t\t\twhite-space: nowrap;\n\t\t\t\t\toverflow: hidden;\n\n\t\t\t\t\t@at-root .rtl#{&} {\n\t\t\t\t\t\tright: 12px;\n\t\t\t\t\t\tleft: auto;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t.select2-search__field {\n\t\t\t\tpadding-left: 38px;\n\n\t\t\t\tborder-right: 0;\n\t\t\t\tborder-bottom: 0;\n\t\t\t\tborder-left: 0;\n\t\t\t\tborder-radius: 0;\n\n\t\t\t\t@at-root .rtl#{&} {\n\t\t\t\t\tpadding-right: 38px;\n\t\t\t\t\tpadding-left: 0;\n\t\t\t\t}\n\n\t\t\t\t&:focus {\n\t\t\t\t\tborder-top-color: $gray-300;\n\t\t\t\t\toutline: 0;\n\t\t\t\t}\n\t\t\t}\n\n\t\t}\n\n\t\t.select2-results__options {\n\t\t\tmax-height: 440px;\n\t\t}\n\t\t\n\t\t.select2-results__option {\n\t\t\t.select2-results__option--highlighted {\n\t\t\t\tbackground-color: $blue-500 !important;\n\t\t\t\tcolor: $gray-50 !important;\n\t\t\t}\n\t\t}\n\n\t\t// List items\n\t\t.select2-results__option .select2-results__option {\n\t\t\tdisplay: inline-flex;\n\t\t\tposition: relative;\n\t\t\twidth: calc(100% - 24px);\n\t\t\tmin-height: 32px;\n\t\t\tpadding: {\n\t\t\t\ttop: 0;\n\t\t\t\tright: 12px;\n\t\t\t\tbottom: 0;\n\t\t\t\tleft: 12px;\n\t\t\t}\n\t\t\talign-items: center;\n\t\t\t\n\t\t\t.field-type-icon {\n\t\t\t\ttop: auto;\n\t\t\t\twidth: 18px;\n\t\t\t\theight: 18px;\n\t\t\t\tmargin: {\n\t\t\t\t\tright: 2px;\n\t\t\t\t};\n\t\t\t\tbox-shadow: 0 0 0 1px $gray-50;\n\t\t\t\n\t\t\t\t&:before {\n\t\t\t\t\twidth: 9px;\n\t\t\t\t\theight: 9px;\n\t\t\t\t}\n\t\t\t\n\t\t\t}\n\t\t\t\n\t\t}\n\n\t\t.select2-results__option[aria-selected=\"true\"] {\n\t\t\tbackground-color: $blue-50 !important;\n\t\t\tcolor: $gray-700 !important;\n\t\t\t\n\t\t\t&:after {\n\t\t\t\tcontent: \"\";\n\t\t\t\t$icon-size: 16px;\n\t\t\t\tright: 13px;\n\t\t\t\tposition: absolute;\n\t\t\t\twidth: $icon-size;\n\t\t\t\theight: $icon-size;\n\t\t\t\t-webkit-mask-image: url(\"../../images/icons/icon-check.svg\");\n\t\t\t\tmask-image: url(\"../../images/icons/icon-check.svg\");\n\t\t\t\tbackground-color: $blue-500;\n\t\t\t\tborder: none;\n\t\t\t\tborder-radius: 0;\n\t\t\t\t-webkit-mask-size: contain;\n\t\t\t\tmask-size: contain;\n\t\t\t\t-webkit-mask-repeat: no-repeat;\n\t\t\t\tmask-repeat: no-repeat;\n\t\t\t\t-webkit-mask-position: center;\n\t\t\t\tmask-position: center;\n\t\t\t\ttext-indent: 500%;\n\t\t\t\twhite-space: nowrap;\n\t\t\t\toverflow: hidden;\n\n\t\t\t\t@at-root .rtl#{&} {\n\t\t\t\t\tleft: 13px;\n\t\t\t\t\tright: auto;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t.select2-results__group {\n\t\t\tdisplay: inline-flex;\n\t\t\talign-items: center;\n\t\t\twidth: calc(100% - 24px);\n\t\t\tmin-height: 25px;\n\t\t\tbackground-color: $gray-50;\n\t\t\tborder-top: {\n\t\t\t\twidth: 1px;\n\t\t\t\tstyle: solid;\n\t\t\t\tcolor: $gray-200;\n\t\t\t};\n\t\t\tborder-bottom: {\n\t\t\t\twidth: 1px;\n\t\t\t\tstyle: solid;\n\t\t\t\tcolor: $gray-200;\n\t\t\t};\n\t\t\tcolor: $gray-400;\n\t\t\tfont-size: 11px;\n\t\t\tmargin: {\n\t\t\t\tbottom: 0;\n\t\t\t};\n\t\t\tpadding: {\n\t\t\t\ttop: 0;\n\t\t\t\tright: 12px;\n\t\t\t\tbottom: 0;\n\t\t\t\tleft: 12px;\n\t\t\t};\n\t\t\tfont-weight: normal;\n\t\t}\n\t}\n\t\n\t/*---------------------------------------------------------------------------------------------\n\t*\n\t* RTL arrow position\n\t*\n\t*---------------------------------------------------------------------------------------------*/\n\t&.rtl {\n\t\t\n\t\t.acf-field-setting-type,\n\t\t.acf-field-permalink-rewrite,\n\t\t.acf-field-query-var {\n\t\t\t\n\t\t\t.select2-selection__arrow:after {\n\t\t\tright: auto;\n\t\t\tleft: 10px;\n\t\t\t}\n\t\t}\n\t\t\n\t}\n\t\n}\n\n.rtl.post-type-acf-field-group,\n.rtl.acf-internal-post-type {\n\t.acf-field-setting-name .acf-tip {\n\t\tleft: auto;\n\t\tright: 654px;\n\t}\n}","/*---------------------------------------------------------------------------------------------\n*\n* Field Groups\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-internal-post-type {\n\n\t// Hide tablenav top.\n\t.tablenav.top {\n\t\tdisplay: none;\n\t}\n\n\t// Fix margin due to hidden tablenav.\n\t.subsubsub {\n\t\tmargin-bottom: 3px;\n\t}\n\n\t// table.\n\t.wp-list-table {\n\t\tmargin: {\n\t\t\ttop: 0;\n\t\t\tright: 0;\n\t\t\tbottom: 0;\n\t\t\tleft: 0;\n\t\t}\n\t\tborder-radius: $radius-lg;\n\t\tborder: none;\n\t\toverflow: hidden;\n\t\tbox-shadow: $elevation-01;\n\n\t\tstrong {\n\t\t\tcolor: $gray-400;\n\t\t\tmargin: 0;\n\t\t}\n\n\t\ta.row-title {\n\t\t\tfont-size: 13px !important;\n\t\t\tfont-weight: 500;\n\t\t}\n\n\t\tth,\n\t\ttd {\n\t\t\tcolor: $gray-700;\n\n\t\t\t&.sortable a {\n\t\t\t\tpadding: 0;\n\t\t\t}\n\n\t\t\t&.check-column {\n\t\t\t\tpadding: {\n\t\t\t\t\ttop: 12px;\n\t\t\t\t\tright: 16px;\n\t\t\t\t\tleft: 16px;\n\t\t\t\t};\n\n\t\t\t\t@media screen and (max-width: $md) {\n\t\t\t\t\tvertical-align: top;\n\t\t\t\t\tpadding: {\n\t\t\t\t\t\tright: 2px;\n\t\t\t\t\t\tleft: 10px;\n\t\t\t\t\t};\n\t\t\t\t}\n\n\t\t\t}\n\n\t\t\tinput {\n\t\t\t\tmargin: 0;\n\t\t\t\tpadding: 0;\n\t\t\t}\n\n\t\t\t.acf-more-items {\n\t\t\t\tdisplay: inline-flex;\n\t\t\t\tflex-direction: row;\n\t\t\t\tjustify-content: center;\n\t\t\t\talign-items: center;\n\t\t\t\tpadding: 0px 6px 1px;\n\t\t\t\tgap: 8px;\n\t\t\t\twidth: 25px;\n\t\t\t\theight: 16px;\n\t\t\t\tbackground: $gray-200;\n\t\t\t\tborder-radius: 100px;\n\t\t\t\tfont-weight: 400;\n\t\t\t\tfont-size: 10px;\n\t\t\t\tcolor: $gray-600;\n\t\t\t}\n\n\t\t\t.acf-emdash {\n\t\t\t\tcolor: $gray-300;\n\t\t\t}\n\t\t}\n\n\t\t// Table headers\n\t\tthead th, thead td,\n\t\ttfoot th, tfoot td {\n\t\t\theight: 48px;\n\t\t\tpadding: {\n\t\t\t\tright: 24px;\n\t\t\t\tleft: 24px;\n\t\t\t};\n\t\t\tbox-sizing: border-box;\n\t\t\tbackground-color: $gray-50;\n\t\t\tborder-color: $gray-200;\n\t\t\t@extend .p4;\n\t\t\tfont-weight: 500;\n\n\t\t\t@media screen and (max-width: $md) {\n\t\t\t\tpadding: {\n\t\t\t\t\tright: 16px;\n\t\t\t\t\tleft: 8px;\n\t\t\t\t};\n\t\t\t}\n\n\t\t\t&.check-column {\n\t\t\t\t@media screen and (max-width: $md) {\n\t\t\t\t\tvertical-align: middle;\n\t\t\t\t}\n\t\t\t}\n\n\t\t}\n\n\t\t// Table body\n\t\ttbody th,\n\t\ttbody td {\n\t\t\tbox-sizing: border-box;\n\t\t\theight: 60px;\n\t\t\tpadding: {\n\t\t\t\ttop: 10px;\n\t\t\t\tright: 24px;\n\t\t\t\tbottom: 10px;\n\t\t\t\tleft: 24px;\n\t\t\t};\n\t\t\tvertical-align: top;\n\t\t\tbackground-color: #fff;\n\t\t\tborder-bottom: {\n\t\t\t\twidth: 1px;\n\t\t\t\tcolor: $gray-200;\n\t\t\t\tstyle: solid;\n\t\t\t};\n\t\t\t@extend .p4;\n\n\t\t\t@media screen and (max-width: $md) {\n\t\t\t\tpadding: {\n\t\t\t\t\tright: 16px;\n\t\t\t\t\tleft: 8px;\n\t\t\t\t};\n\t\t\t}\n\n\t\t}\n\n\t\t.column-acf-key {\n\t\t\twhite-space: nowrap;\n\t\t}\n\n\t\t// SVG icons\n\t\t.column-acf-key .acf-icon-key-solid {\n\t\t\tdisplay: inline-block;\n\t\t\tposition: relative;\n\t\t\tbottom: -2px;\n\t\t\twidth: 15px;\n\t\t\theight: 15px;\n\t\t\tmargin: {\n\t\t\t\tright: 4px;\n\t\t\t};\n\t\t\tcolor: $gray-400;\n\t\t}\n\n\t\t// Post location icon\n\t\t.acf-location .dashicons {\n\t\t\tposition: relative;\n\t\t\tbottom: -2px;\n\t\t\twidth: 16px;\n\t\t\theight: 16px;\n\t\t\tmargin: {\n\t\t\t\tright: 6px;\n\t\t\t};\n\t\t\tfont-size: 16px;\n\t\t\tcolor: $gray-400;\n\t\t}\n\n\t\t.post-state {\n\t\t\t@extend .p3;\n\t\t\tcolor: $gray-500;\n\t\t}\n\n\t\t// Add subtle hover background to define row.\n\t\ttr:hover,\n\t\ttr:focus-within {\n\t\t\tbackground: #f7f7f7;\n\n\t\t\t.row-actions {\n\t\t\t\tmargin: {\n\t\t\t\t\tbottom: 0;\n\t\t\t\t};\n\t\t\t};\n\n\t\t}\n\n\t\t// Use less specific identifier to inherit mobile styling.\n\t\t@media screen and ( min-width: 782px ) {\n\t\t\t.column-acf-count { width: 10%; }\n\t\t}\n\n\t\t.row-actions {\n\t\t\tspan.file {\n\t\t\t\tdisplay: block;\n\t\t\t\toverflow: hidden;\n\t\t\t\twhite-space: nowrap;\n\t\t\t\ttext-overflow: ellipsis;\n\t\t\t}\n\t\t}\n\t}\n\n\t&.rtl {\n\t\t.wp-list-table {\n\t\t\t.column-acf-key .acf-icon-key-solid {\n\t\t\t\tmargin: {\n\t\t\t\t\tleft: 4px;\n\t\t\t\t\tright: 0;\n\t\t\t\t};\n\t\t\t}\n\n\t\t\t.acf-location .dashicons {\n\t\t\t\tmargin: {\n\t\t\t\t\tleft: 6px;\n\t\t\t\t\tright: 0;\n\t\t\t\t};\n\t\t\t}\n\t\t}\n\t}\n\n\t// Actions\n\t.row-actions {\n\t\tmargin: {\n\t\t\ttop: 2px;\n\t\t};\n\t\tpadding: {\n\t\t\ttop: 0;\n\t\t\tright: 0;\n\t\t\tbottom: 0;\n\t\t\tleft: 0;\n\t\t}\n\t\t@extend .p5;\n\t\tline-height: 14px;\n\t\tcolor: $gray-300;\n\n\t\t.trash a {\n\t\t\tcolor: $acf_error;\n\t\t}\n\n\t}\n\n\n\t// Remove padding from checkbox column\n\t.widefat thead td.check-column,\n\t.widefat tfoot td.check-column {\n\t\tpadding: {\n\t\t\ttop: 0;\n\t\t};\n\t}\n\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tRow actions\n*\n*--------------------------------------------------------------------------------------------*/\n.acf-internal-post-type {\n\n\t.row-actions {\n\t\t@extend .p6;\n\n\t\ta:hover {\n\t\t\tcolor: darken($color-primary-hover, 10%);\n\t\t}\n\n\t\t.trash a {\n\t\t\tcolor: #a00;\n\t\t\t&:hover { color: #f00; }\n\t\t}\n\n\t\t&.visible {\n\t\t\tmargin: {\n\t\t\t\tbottom: 0;\n\t\t\t};\n\t\t\topacity: 1;\n\t\t}\n\n\t}\n\n}\n\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tRow hover\n*\n*--------------------------------------------------------------------------------------------*/\n.acf-internal-post-type {\n\n\t#the-list tr:hover td,\n\t#the-list tr:hover th {\n\t\tbackground-color: lighten($blue-50, 3%);\n\t}\n\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Table Nav\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-internal-post-type {\n\n\t.tablenav {\n\t\tmargin: {\n\t\t\ttop: 24px;\n\t\t\tright: 0;\n\t\t\tbottom: 0;\n\t\t\tleft: 0;\n\t\t};\n\t\tpadding: {\n\t\t\ttop: 0;\n\t\t\tright: 0;\n\t\t\tbottom: 0;\n\t\t\tleft: 0;\n\t\t};\n\t\tcolor: $gray-500;\n\t}\n\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tSearch box\n*\n*--------------------------------------------------------------------------------------------*/\n.acf-internal-post-type #posts-filter p.search-box {\n\tmargin: {\n\t\ttop: 5px;\n\t\tright: 0;\n\t\tbottom: 24px;\n\t\tleft: 0;\n\t};\n\n\t#post-search-input {\n\t\tmin-width: 280px;\n\t\tmargin: {\n\t\t\ttop: 0;\n\t\t\tright: 8px;\n\t\t\tbottom: 0;\n\t\t\tleft: 0;\n\t\t};\n\t}\n\n\t@media screen and (max-width: 768px) {\n\t\tdisplay: flex;\n\t\tbox-sizing: border-box;\n\t\tpadding-right: 24px;\n\t\tmargin-right: 16px;\n\t\tposition: inherit;\n\n\t\t#post-search-input {\n\t\t\tmin-width: auto;\n\t\t}\n\n\t}\n\n}\n\n.rtl.acf-internal-post-type #posts-filter p.search-box {\n\t#post-search-input {\n\t\tmargin: {\n\t\t\tright: 0;\n\t\t\tleft: 8px;\n\t\t};\n\t}\n\n\t@media screen and (max-width: 768px) {\n\t\tpadding-left: 24px;\n\t\tpadding-right: 0;\n\t\tmargin-left: 16px;\n\t\tmargin-right: 0;\n\t}\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tStatus tabs\n*\n*--------------------------------------------------------------------------------------------*/\n.acf-internal-post-type .subsubsub {\n\tdisplay: flex;\n\talign-items: flex-end;\n\theight: 40px;\n\tmargin: {\n\t\tbottom: 16px;\n\t};\n\n\tli {\n\t\tmargin: {\n\t\t\ttop: 0;\n\t\t\tright: 4px;\n\t\t};\n\t\tcolor: $gray-400;\n\t\t@extend .p4;\n\n\t\t.count {\n\t\t\tcolor: $gray-500;\n\t\t}\n\n\t}\n\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tPagination\n*\n*--------------------------------------------------------------------------------------------*/\n.acf-internal-post-type {\n\n\t.tablenav-pages {\n\t\tdisplay: flex;\n\t\talign-items: center;\n\n\t\t&.no-pages{\n\t\t\tdisplay: none;\n\t\t}\n\n\t\t.displaying-num {\n\t\t\tmargin: {\n\t\t\t\ttop: 0;\n\t\t\t\tright: 16px;\n\t\t\t\tbottom: 0;\n\t\t\t\tleft: 0;\n\t\t\t};\n\t\t}\n\n\t\t.pagination-links {\n\t\t\tdisplay: flex;\n\t\t\talign-items: center;\n\n\t\t\t#table-paging {\n\t\t\t\tmargin: {\n\t\t\t\t\ttop: 0;\n\t\t\t\t\tright: 4px;\n\t\t\t\t\tbottom: 0;\n\t\t\t\t\tleft: 8px;\n\t\t\t\t};\n\n\t\t\t\t.total-pages {\n\t\t\t\t\tmargin: {\n\t\t\t\t\t\tright: 0;\n\t\t\t\t\t};\n\t\t\t\t}\n\n\t\t\t}\n\n\t\t}\n\n\t\t// Hide pagination if there's only 1 page\n\t\t&.one-page .pagination-links {\n\t\t\tdisplay: none;\n\t\t}\n\n\t}\n\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tPagination buttons & icons\n*\n*--------------------------------------------------------------------------------------------*/\n.acf-internal-post-type .tablenav-pages .pagination-links .button {\n\tdisplay: inline-flex;\n\talign-items: center;\n\talign-content: center;\n\tjustify-content: center;\n\tmin-width: 40px;\n\tmargin: {\n\t\ttop: 0;\n\t\tright: 0;\n\t\tbottom: 0;\n\t\tleft: 0;\n\t};\n\tpadding: {\n\t\ttop: 0;\n\t\tright: 0;\n\t\tbottom: 0;\n\t\tleft: 0;\n\t};\n\tbackground-color: transparent;\n\n\t// Pagination Buttons\n\t&:nth-child(1),\n\t&:nth-child(2),\n\t&:last-child,\n\t&:nth-last-child(2) {\n\t\tdisplay: inline-block;\n\t\tposition: relative;\n\t\ttext-indent: 100%;\n\t\twhite-space: nowrap;\n\t\toverflow: hidden;\n\t\tmargin: {\n\t\t\tleft: 4px;\n\t\t}\n\n\t\t// Pagination Button Icons\n\t\t&:before {\n\t\t\t$icon-size: 20px;\n\t\t\tcontent: \"\";\n\t\t\tdisplay: block;\n\t\t\tposition: absolute;\n\t\t\twidth: 100%;\n\t\t\theight: 100%;\n\t\t\ttop: 0;\n\t\t\tleft: 0;\n\t\t\t$icon-size: $icon-size;\n\t\t\tbackground-color: $link-color;\n\t\t\tborder-radius: 0;\n\t\t\t-webkit-mask-size: $icon-size;\n\t\t\tmask-size: $icon-size;\n\t\t\t-webkit-mask-repeat: no-repeat;\n\t\t\tmask-repeat: no-repeat;\n\t\t\t-webkit-mask-position: center;\n\t\t\tmask-position: center;\n\t\t}\n\n\t}\n\n\t// First Page Icon\n\t&:nth-child(1):before {\n\t\t-webkit-mask-image: url('../../images/icons/icon-chevron-left-double.svg');\n\t\tmask-image: url('../../images/icons/icon-chevron-left-double.svg');\n\t}\n\n\t// Previous Page Icon\n\t&:nth-child(2):before {\n\t\t-webkit-mask-image: url('../../images/icons/icon-chevron-left.svg');\n\t\tmask-image: url('../../images/icons/icon-chevron-left.svg');\n\t}\n\n\t// Next Page Icon\n\t&:nth-last-child(2):before {\n\t\t-webkit-mask-image: url('../../images/icons/icon-chevron-right.svg');\n\t\tmask-image: url('../../images/icons/icon-chevron-right.svg');\n\t}\n\n\t// Last Page Icon\n\t&:last-child:before {\n\t\t-webkit-mask-image: url('../../images/icons/icon-chevron-right-double.svg');\n\t\tmask-image: url('../../images/icons/icon-chevron-right-double.svg');\n\t}\n\n\t// Pagination Button Hover State\n\t&:hover {\n\t\tborder-color: $blue-600;\n\t\tbackground-color: rgba($link-color, .05);\n\n\t\t&:before {\n\t\t\tbackground-color: $blue-600;\n\t\t}\n\n\t}\n\n\t// Pagination Button Disabled State\n\t&.disabled {\n\t\tbackground-color: transparent !important;\n\n\t\t&.disabled:before {\n\t\t\tbackground-color: $gray-300;\n\t\t}\n\n\t}\n\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Empty state\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-no-field-groups-wrapper,\n.acf-no-taxonomies-wrapper,\n.acf-no-post-types-wrapper,\n.acf-no-options-pages-wrapper,\n.acf-options-preview-wrapper {\n\tdisplay: flex;\n\tjustify-content: center;\n\tpadding: {\n\t\ttop: 48px;\n\t\tbottom: 48px;\n\t};\n\n\t.acf-no-field-groups-inner,\n\t.acf-no-taxonomies-inner,\n\t.acf-no-post-types-inner,\n\t.acf-no-options-pages-inner,\n\t.acf-options-preview-inner {\n\t\tdisplay: flex;\n\t\tflex-wrap: wrap;\n\t\tjustify-content: center;\n\t\talign-content: center;\n\t\talign-items: flex-start;\n\t\ttext-align: center;\n\t\tmax-width: 420px;\n\t\tmin-height: 320px;\n\n\t\timg,\n\t\th2,\n\t\tp {\n\t\t\tflex: 1 0 100%;\n\t\t}\n\n\t\th2 {\n\t\t\t@extend .acf-h2;\n\t\t\tmargin: {\n\t\t\t\ttop: 32px;\n\t\t\t\tbottom: 0;\n\t\t\t};\n\t\t\tpadding: 0;\n\t\t\tcolor: $gray-700;\n\t\t\tline-height: 1.6rem;\n\t\t}\n\n\t\tp {\n\t\t\t@extend .p2;\n\t\t\tmargin: {\n\t\t\t\ttop: 12px;\n\t\t\t\tbottom: 0;\n\t\t\t};\n\t\t\tpadding: 0;\n\t\t\tcolor: $gray-500;\n\n\t\t\t&.acf-small {\n\t\t\t\tdisplay: block;\n\t\t\t\tposition: relative;\n\t\t\t\tmargin: {\n\t\t\t\t\ttop: 32px;\n\t\t\t\t};\n\t\t\t\t@extend .p6;\n\t\t\t}\n\n\t\t}\n\n\n\t\timg {\n\t\t\tmax-width: 284px;\n\t\t\tmargin: {\n\t\t\t\tbottom: 0;\n\t\t\t};\n\t\t}\n\n\t\t.acf-btn {\n\t\t\tmargin: {\n\t\t\t\ttop: 32px;\n\t\t\t};\n\t\t}\n\n\t}\n\n\t.acf-no-post-types-inner,\n\t.acf-no-options-pages-inner {\n\t\timg {\n\t\t\twidth: 106px;\n\t\t\theight: 88px;\n\t\t}\n\t}\n\n\t.acf-no-taxonomies-inner {\n\t\timg {\n\t\t\twidth: 98px;\n\t\t\theight: 88px;\n\t\t}\n\t}\n\n};\n\n.acf-no-field-groups,\n.acf-no-post-types,\n.acf-no-taxonomies,\n.acf-no-options-pages {\n\n\t#the-list tr:hover td,\n\t#the-list tr:hover th,\n\t.acf-admin-field-groups .wp-list-table tr:hover,\n\t.striped > tbody > :nth-child(odd), ul.striped > :nth-child(odd), .alternate {\n\t\tbackground-color: transparent !important;\n\t}\n\n\t.wp-list-table {\n\n\t\tthead,\n\t\ttfoot {\n\t\t\tdisplay: none;\n\t\t}\n\n\t\ta.acf-btn {\n\t\t\tborder: 1px solid rgba(0, 0, 0, 0.16);\n\t\t\tbox-shadow: none;\n\t\t}\n\n\t}\n\n}\n\n.acf-internal-post-type #the-list .no-items td {\n\tvertical-align: middle;\n}\n\n\n/*---------------------------------------------------------------------------------------------\n*\n* Options Page Preview\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-options-preview {\n\t.acf-btn {\n\t\tmargin: {\n\t\t\tleft: 8px;\n\t\t};\n\t};\n\n\t.disabled {\n\t\tbackground-color: $gray-100 !important;\n\t\tcolor: $gray-400 !important;\n\t\tborder: 1px $gray-300 solid;\n\t\tcursor: default !important;\n\t}\n\n\t.acf-options-pages-preview-upgrade-button {\n\t\theight: 48px;\n\t\tpadding: 8px 48px 8px 48px !important;\n\t\tborder-radius: 6px;\n\t\tborder: 1px;\n\t\tgap: 6px;\n\t\tdisplay: inline-flex;\n\t\talign-items: center;\n\t\talign-self: stretch;\n\t\tbackground: $gradient-pro;\n\t\tbox-shadow: inset 0 0 0 1px rgba(255,255,255,.16);\n\t\tbackground-size: 180% 80%;\n\t\tbackground-position: 100% 0;\n\t\ttransition: background-position .5s;\n\t\tborder-radius: $radius-md;\n\t\ttext-decoration: none;\n\n\t\t&:hover {\n\t\t\tbackground-position: 0 0;\n\t\t}\n\n\t\t&:focus {\n\t\t\tborder: none;\n\t\t\toutline: none;\n\t\t\tbox-shadow: none;\n\t\t}\n\n\t\tp {\n\t\t\tmargin: 0;\n\t\t\tpadding: {\n\t\t\t\ttop: 8px;\n\t\t\t\tbottom: 8px;\n\t\t\t}\n\t\t\t@extend .p4;\n\t\t\tfont-weight: normal;\n\t\t\ttext-transform: none;\n\t\t\tcolor: #fff;\n\t\t}\n\n\t\t.acf-icon {\n\t\t\t$icon-size: 20px;\n\t\t\twidth: $icon-size;\n\t\t\theight: $icon-size;\n\t\t\tmargin: {\n\t\t\t\tright: 6px;\n\t\t\t\tleft: -2px;\n\t\t\t};\n\t\t\tbackground-color: $gray-50;\n\t\t}\n\t}\n\n\t.acf_options_preview_wrap a.acf-btn i {\n\t\tmargin-right: -2px !important;\n\t\tmargin-left: 0px !important;\n\t}\n\n\t.acf-pro-label {\n\t\tvertical-align: middle;\n\t}\n\n\t.acf_options_preview_wrap {\n\t\timg {\n\t\t\tmax-height: 88px;\n\t\t}\n\t}\n\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Small screen list table info toggle\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-internal-post-type {\n\n\t.wp-list-table .toggle-row:before {\n\t\ttop: 4px;\n\t\tleft: 16px;\n\t\tborder-radius: 0;\n\t\t$icon-size: 20px;\n\t\tcontent: \"\";\n\t\tdisplay: block;\n\t\tposition: absolute;\n\t\twidth: 16px;\n\t\theight: 16px;\n\t\t$icon-size: $icon-size;\n\t\tbackground-color: $link-color;\n\t\tborder-radius: 0;\n\t\t-webkit-mask-size: $icon-size;\n\t\tmask-size: $icon-size;\n\t\t-webkit-mask-repeat: no-repeat;\n\t\tmask-repeat: no-repeat;\n\t\t-webkit-mask-position: center;\n\t\tmask-position: center;\n\t\t-webkit-mask-image: url('../../images/icons/icon-chevron-down.svg');\n\t\tmask-image: url('../../images/icons/icon-chevron-down.svg');\n\t\ttext-indent: 100%;\n\t\twhite-space: nowrap;\n\t\toverflow: hidden;\n\t}\n\n\t.wp-list-table .is-expanded .toggle-row:before {\n\t\t-webkit-mask-image: url('../../images/icons/icon-chevron-up.svg');\n\t\tmask-image: url('../../images/icons/icon-chevron-up.svg');\n\t}\n\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Small screen checkbox\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-internal-post-type {\n\n\t@media screen and (max-width: $md) {\n\n\t\t.widefat th input[type=\"checkbox\"],\n\t\t.widefat thead td input[type=\"checkbox\"],\n\t\t.widefat tfoot td input[type=\"checkbox\"] {\n\t\t\tmargin-bottom: 0;\n\t\t}\n\n\t}\n\n}","/*---------------------------------------------------------------------------------------------\n*\n* Admin Navigation\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-admin-toolbar {\n\tposition: unset;\n\ttop: 32px;\n\theight: 72px;\n\tz-index: 800;\n\tbackground: $gray-700;\n\tcolor: $gray-400;\n\n\t.acf-admin-toolbar-inner {\n\t\tdisplay: flex;\n\t\tjustify-content: space-between;\n\t\talign-content: center;\n\t\talign-items: center;\n\t\tmax-width: 100%;\n\n\t\t.acf-nav-wrap {\n\t\t\tdisplay: flex;\n\t\t\talign-items: center;\n\n\t\t\t@media screen and (max-width: 1250px) {\n\t\t\t\t.acf-header-tab-acf-post-type,\n\t\t\t\t.acf-header-tab-acf-taxonomy {\n\t\t\t\t\tdisplay: none;\n\t\t\t\t}\n\n\t\t\t\t.acf-more {\n\t\t\t\t\t.acf-header-tab-acf-post-type,\n\t\t\t\t\t.acf-header-tab-acf-taxonomy {\n\t\t\t\t\t\tdisplay: flex;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t}\n\t\t\n\t\t.acf-nav-upgrade-wrap {\n\t\t\tdisplay: flex;\n\t\t\talign-items: center;\n\t\t}\n\n\t\t.acf-nav-wpengine-logo {\n\t\t\tdisplay: inline-flex;\n\t\t\tmargin-left: 24px;\n\n\t\t\t@media screen and (max-width: 1000px) {\n\t\t\t\tdisplay: none;\n\t\t\t}\n\t\t}\n\t}\n\n\t@media screen and (max-width: $md) {\n\t\tposition: static;\n\t}\n\n\t.acf-logo {\n\t\tdisplay: flex;\n\t\tmargin: {\n\t\t\tright: 24px;\n\t\t}\n\t\ttext-decoration: none;\n\t\t\n\t\t.acf-pro-label {\n\t\t\tmargin: {\n\t\t\t\tleft: 8px;\n\t\t\t};\n\t\t}\n\n\t\timg {\n\t\t\tdisplay: block;\n\t\t\tmax-width: 55px;\n\t\t\tline-height: 0%;\n\t\t}\n\t}\n\n\th2 {\n\t\tdisplay: none;\n\t\tcolor: $gray-50;\n\t}\n\n\t.acf-tab {\n\t\tdisplay: flex;\n\t\talign-items: center;\n\t\tbox-sizing: border-box;\n\t\tmin-height: 40px;\n\t\tmargin: {\n\t\t\tright: 8px;\n\t\t}\n\t\tpadding: {\n\t\t\ttop: 8px;\n\t\t\tright: 16px;\n\t\t\tbottom: 8px;\n\t\t\tleft: 16px;\n\t\t}\n\t\tborder: {\n\t\t\twidth: 1px;\n\t\t\tstyle: solid;\n\t\t\tcolor: transparent;\n\t\t}\n\t\tborder-radius: $radius-md;\n\t\t@extend .p4;\n\t\tcolor: $gray-400;\n\t\ttext-decoration: none;\n\n\t\t&.is-active {\n\t\t\tbackground-color: $gray-600;\n\t\t\tcolor: #fff;\n\t\t}\n\t\t&:hover {\n\t\t\tbackground-color: $gray-600;\n\t\t\tcolor: $gray-50;\n\t\t}\n\t\t&:focus-visible {\n\t\t\tborder: {\n\t\t\t\twidth: 1px;\n\t\t\t\tstyle: solid;\n\t\t\t\tcolor: $gray-500;\n\t\t\t}\n\t\t}\n\t\t&:focus {\n\t\t\tbox-shadow: none;\n\t\t}\n\t}\n\n\t.acf-more {\n\t\t&:hover {\n\t\t\t.acf-tab.acf-more-tab {\n\t\t\t\tbackground-color: $gray-600;\n\t\t\t\tcolor: $gray-50;\n\t\t\t}\n\t\t}\n\t\t\n\t\tul {\n\t\t\tdisplay: none;\n\t\t\tposition: absolute;\n\t\t\tbox-sizing: border-box;\n\t\t\tbackground: #fff;\n\t\t\tz-index: 1051;\n\t\t\toverflow: hidden;\n\t\t\tmin-width: 280px;\n\t\t\tmargin: {\n\t\t\t\ttop: 0;\n\t\t\t\tright: 0;\n\t\t\t\tbottom: 0;\n\t\t\t\tleft: 0;\n\t\t\t};\n\t\t\tpadding: 0;\n\t\t\tborder-radius: $radius-lg;\n\t\t\tbox-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.04), 0px 8px 23px rgba(0, 0, 0, 0.12);\n\t\t\t\n\t\t\t.acf-wp-engine {\n\t\t\t\tdisplay: flex;\n\t\t\t\talign-items: center;\n\t\t\t\tjustify-content: space-between;\n\t\t\t\tmin-height: 48px;\n\t\t\t\tborder-top: 1px solid rgba(0, 0, 0, 0.08);\n\t\t\t\tbackground: #ECFBFC;\n\t\t\t\t\n\t\t\t\ta {\n\t\t\t\t\tdisplay: flex;\n\t\t\t\t\twidth: 100%;\n\t\t\t\t\tjustify-content: space-between;\n\t\t\t\t\tborder-top: none;\n\t\t\t\t}\n\t\t\t\t\n\t\t\t}\n\n\t\t\tli {\n\t\t\t\tmargin: 0;\n\t\t\t\tpadding: 0 16px;\n\n\t\t\t\t.acf-header-tab-acf-post-type,\n\t\t\t\t.acf-header-tab-acf-taxonomy {\n\t\t\t\t\tdisplay: none;\n\t\t\t\t}\n\n\t\t\t\t&.acf-more-section-header {\n\t\t\t\t\tbackground: $gray-50;\n\t\t\t\t\tpadding: 1px 0 0 0;\n\t\t\t\t\tmargin-top: -1px;\n\t\t\t\t\tborder-top: 1px solid $gray-200;\n\t\t\t\t\tborder-bottom: 1px solid $gray-200;\n\n\t\t\t\t\tspan {\n\t\t\t\t\t\tcolor: $gray-600;\n\t\t\t\t\t\tfont-size: 12px;\n\t\t\t\t\t\tfont-weight: bold;\n\n\t\t\t\t\t\t&:hover {\n\t\t\t\t\t\t\tbackground: $gray-50;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\t\n\t\t\t\t// Links\n\t\t\t\ta {\n\t\t\t\t\tmargin: 0;\n\t\t\t\t\tpadding: 0;\n\t\t\t\t\tcolor: $gray-800;\n\t\t\t\t\tborder-radius: 0;\n\t\t\t\t\tborder-top: {\n\t\t\t\t\t\twidth: 1px;\n\t\t\t\t\t\tstyle: solid;\n\t\t\t\t\t\tcolor: $gray-100;\n\t\t\t\t\t};\n\t\t\t\t\t\n\t\t\t\t\t&:hover,\n\t\t\t\t\t&.acf-tab.is-active {\n\t\t\t\t\t\tbackground-color: unset;\n\t\t\t\t\t\tcolor: $blue-500;\n\t\t\t\t\t}\n\t\t\t\t\t\n\t\t\t\t\ti.acf-icon {\n\t\t\t\t\t\tdisplay: none !important;\n\t\t\t\t\t\t$icon-size: 16px;\n\t\t\t\t\t\twidth: $icon-size;\n\t\t\t\t\t\theight: $icon-size;\n\t\t\t\t\t\t-webkit-mask-size: $icon-size;\n\t\t\t\t\t\tmask-size: $icon-size;\n\t\t\t\t\t\tbackground-color: $gray-400 !important;\n\t\t\t\t\t}\n\n\t\t\t\t\t.acf-requires-pro {\n\t\t\t\t\t\tjustify-content: center;\n\t\t\t\t\t\talign-items: center;\n\t\t\t\t\t\tcolor: white;\n\t\t\t\t\t\tbackground: $gradient-pro;\n\t\t\t\t\t\tbackground-size: 140% 20%;\n\t\t\t\t\t\tbackground-position: 100% 0;\n\t\t\t\t\t\tborder-radius: 100px;\n\t\t\t\t\t\tfont-size: 11px;\n\t\t\t\t\t\tposition: absolute;\n\t\t\t\t\t\tright: 16px;\n\t\t\t\t\t\tpadding: {\n\t\t\t\t\t\t\tright: 6px;\n\t\t\t\t\t\t\tleft: 6px;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\timg.acf-wp-engine-pro {\n\t\t\t\t\t\tdisplay: block;\n\t\t\t\t\t\theight: 16px;\n\t\t\t\t\t\twidth: auto;\n\t\t\t\t\t}\n\n\t\t\t\t\t.acf-wp-engine-upsell-pill {\n\t\t\t\t\t\tdisplay: inline-flex;\n\t\t\t\t\t\tjustify-content: center;\n\t\t\t\t\t\talign-items: center;\n\t\t\t\t\t\tmin-height: 22px;\n\t\t\t\t\t\tborder-radius: 100px;\n\t\t\t\t\t\tfont-size: 11px;\n\t\t\t\t\t\tpadding: {\n\t\t\t\t\t\t\tright: 8px;\n\t\t\t\t\t\t\tleft: 8px;\n\t\t\t\t\t\t}\n\t\t\t\t\t\tbackground: #0ECAD4;\n\t\t\t\t\t\tcolor: #FFFFFF;\n\t\t\t\t\t\ttext-shadow: 0px 1px 0 rgba(0, 0, 0, 0.12);\n\t\t\t\t\t\ttext-transform: uppercase;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\t\n\t\t\t\t// First list item\n\t\t\t\t&:first-child {\n\t\t\t\t\ta {\n\t\t\t\t\t\tborder-bottom: none;\n\t\t\t\t\t}\t\n\t\t\t\t}\n\t\t\t\t\n\t\t\t}\n\t\t\t\n\t\t\t&:hover,\n\t\t\t&:focus {\n\t\t\t\tdisplay: block;\n\t\t\t}\n\t\t}\n\t\t&:hover,\n\t\t&:focus {\n\t\t\tul {\n\t\t\t\tdisplay: block;\n\t\t\t}\n\t\t}\n\t}\n\n\t// Within wpcontent.\n\t#wpcontent & {\n\t\tbox-sizing: border-box;\n\t\tmargin-left: -20px;\n\t\tpadding: {\n\t\t\ttop: 16px;\n\t\t\tright: 32px;\n\t\t\tbottom: 16px;\n\t\t\tleft: 32px;\n\t\t}\n\t}\n\n\t// Mobile\n\t@media screen and (max-width: 600px) {\n\t\t& {\n\t\t\tdisplay: none;\n\t\t}\n\t}\n}\n\n.rtl {\n\t#wpcontent .acf-admin-toolbar {\n\t\tmargin-left: 0;\n\t\tmargin-right: -20px;\n\n\t\t.acf-tab {\n\t\t\tmargin: {\n\t\t\t\tleft: 8px;\n\t\t\t\tright: 0;\n\t\t\t}\n\t\t}\n\t}\n\n\t.acf-logo {\n\t\tmargin: {\n\t\t\tright: 0;\n\t\t\tleft: 32px;\n\t\t}\n\t}\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Admin Toolbar Icons\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-admin-toolbar {\n\t.acf-tab,\n\t.acf-more {\n\t\ti.acf-icon {\n\t\t\tdisplay: none; // Icons only shown for specified nav items below\n\t\t\tmargin: {\n\t\t\t\tright: 8px;\n\t\t\t\tleft: -2px;\n\t\t\t}\n\t\t\t\n\t\t\t&.acf-icon-dropdown {\n\t\t\t\t-webkit-mask-image: url(\"../../images/icons/icon-chevron-down.svg\");\n\t\t\t\tmask-image: url(\"../../images/icons/icon-chevron-down.svg\");\n\t\t\t\t$icon-size: 16px;\n\t\t\t\twidth: $icon-size;\n\t\t\t\theight: $icon-size;\n\t\t\t\t-webkit-mask-size: $icon-size;\n\t\t\t\tmask-size: $icon-size;\n\t\t\t\tmargin: {\n\t\t\t\t\tright: -6px;\n\t\t\t\t\tleft: 6px;\n\t\t\t\t};\n\t\t\t}\n\t\t\t\n\t\t}\n\n\t\t// Only show icons for specified nav items, stops third party plugin items with no icon appearing broken\n\t\t&.acf-header-tab-acf-field-group,\n\t\t&.acf-header-tab-acf-post-type,\n\t\t&.acf-header-tab-acf-taxonomy,\n\t\t&.acf-header-tab-acf-tools,\n\t\t&.acf-header-tab-acf-settings-updates,\n\t\t&.acf-header-tab-acf-more {\n\t\t\ti.acf-icon {\n\t\t\t\tdisplay: inline-flex;\n\t\t\t}\n\t\t}\n\n\t\t&.is-active,\n\t\t&:hover {\n\t\t\ti.acf-icon {\n\t\t\t\tbackground-color: $gray-200;\n\t\t\t}\n\t\t}\n\t}\n\n\t.rtl & .acf-tab {\n\t\ti.acf-icon {\n\t\t\tmargin: {\n\t\t\t\tright: -2px;\n\t\t\t\tleft: 8px;\n\t\t\t}\n\t\t}\n\t}\n\n\t// Field groups tab\n\t.acf-header-tab-acf-field-group {\n\t\ti.acf-icon {\n\t\t\t$icon-url: url(\"../../images/icons/icon-field-groups.svg\");\n\t\t\t-webkit-mask-image: $icon-url;\n\t\t\tmask-image: $icon-url;\n\t\t}\n\t}\n\n\t// Post types tab\n\t.acf-header-tab-acf-post-type {\n\t\ti.acf-icon {\n\t\t\t$icon-url: url(\"../../images/icons/icon-post-type.svg\");\n\t\t\t-webkit-mask-image: $icon-url;\n\t\t\tmask-image: $icon-url;\n\t\t}\n\t}\n\n\t// Taxonomies tab\n\t.acf-header-tab-acf-taxonomy {\n\t\ti.acf-icon {\n\t\t\t$icon-url: url(\"../../images/icons/icon-taxonomies.svg\");\n\t\t\t-webkit-mask-image: $icon-url;\n\t\t\tmask-image: $icon-url;\n\t\t}\n\t}\n\n\t// Tools tab\n\t.acf-header-tab-acf-tools {\n\t\ti.acf-icon {\n\t\t\t$icon-url: url(\"../../images/icons/icon-tools.svg\");\n\t\t\t-webkit-mask-image: $icon-url;\n\t\t\tmask-image: $icon-url;\n\t\t}\n\t}\n\n\t// Updates tab\n\t.acf-header-tab-acf-settings-updates {\n\t\ti.acf-icon {\n\t\t\t$icon-url: url(\"../../images/icons/icon-updates.svg\");\n\t\t\t-webkit-mask-image: $icon-url;\n\t\t\tmask-image: $icon-url;\n\t\t}\n\t}\n\t\n\t// More tab\n\t.acf-header-tab-acf-more {\n\t\ti.acf-icon-more {\n\t\t\t$icon-url: url(\"../../images/icons/icon-extended-menu.svg\");\n\t\t\t-webkit-mask-image: $icon-url;\n\t\t\tmask-image: $icon-url;\n\t\t}\n\t}\n}\n","/*---------------------------------------------------------------------------------------------\n*\n* Hide WP default controls\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-admin-page {\n\n\t// Prevents flicker caused by notice moving locations.\n\t#wpbody-content > .notice:not(.inline, .below-h2) {\n\t\tdisplay: none;\n\t}\n\n\th1.wp-heading-inline {\n\t\tdisplay: none;\n\t}\n\n\t.wrap .wp-heading-inline + .page-title-action {\n\t\tdisplay: none;\n\t}\n\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Headerbar\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-headerbar {\n\tdisplay: flex;\n\talign-items: center;\n\tposition: sticky;\n\ttop: 32px;\n\tz-index: 700;\n\tbox-sizing: border-box;\n\tmin-height: 72px;\n\tmargin: {\n\t\tleft: -20px;\n\t};\n\tpadding: {\n\t\ttop: 8px;\n\t\tright: 32px;\n\t\tbottom: 8px;\n\t\tleft: 32px;\n\t};\n\tbackground-color: #fff;\n\tbox-shadow: $elevation-01;\n\n\t.acf-headerbar-inner {\n\t\tflex: 1 1 auto;\n\t\tdisplay: flex;\n\t\talign-items: center;\n\t\tjustify-content: space-between;\n\t\tmax-width: $max-width;\n\t\tgap: 8px;\n\t}\n\n\t.acf-page-title {\n\t\tdisplay: flex;\n\t\talign-items: center;\n\t\tgap: 8px;\n\t\tmargin: {\n\t\t\ttop: 0;\n\t\t\tright: 16px;\n\t\t\tbottom: 0;\n\t\t\tleft: 0;\n\t\t};\n\t\tpadding: {\n\t\t\ttop: 0;\n\t\t\tright: 0;\n\t\t\tbottom: 0;\n\t\t\tleft: 0;\n\t\t};\n\n\t\t.acf-duplicated-from {\n\t\t\tcolor: $gray-400;\n\t\t}\n\t\t.acf-pro-label {\n\t\t\tbox-shadow: none;\n\t\t\tborder: 1px solid rgba(0, 0, 0, 0.20);\n\t\t}\n\t}\n\n\t@media screen and (max-width: $md) {\n\t\tposition: static;\n\t}\n\n\t@media screen and (max-width: 600px) {\n\t\tjustify-content: space-between;\n\t\tposition: relative;\n\t\ttop: 46px;\n\t\tmin-height: 64px;\n\t\tpadding: {\n\t\t\tright: 12px;\n\t\t};\n\t}\n\n\t.acf-headerbar-content {\n\t\tflex: 1 1 auto;\n\t\tdisplay: flex;\n\t\talign-items: center;\n\n\t\t@media screen and (max-width: $md) {\n\t\t\tflex-wrap: wrap;\n\n\t\t\t.acf-headerbar-title,\n\t\t\t.acf-title-wrap {\n\t\t\t\tflex: 1 1 100%;\n\t\t\t}\n\n\t\t\t.acf-title-wrap {\n\t\t\t\tmargin: {\n\t\t\t\t\ttop: 8px;\n\t\t\t\t};\n\t\t\t}\n\n\t\t}\n\n\t}\n\n\t.acf-input-error {\n\t\tborder: 1px rgba($color-danger, .5) solid !important;\n\t\tbox-shadow: 0px 0px 0px 3px rgba(209, 55, 55, 0.12), 0px 0px 0px rgba(255, 54, 54, 0.25) !important;\n\t\tbackground-image: url('../../images/icons/icon-warning-alt-red.svg');\n\t\tbackground-position: right 10px top 50%;\n\t\tbackground-size: 20px;\n\t\tbackground-repeat: no-repeat;\n\n\t\t&:focus {\n\t\t\toutline: none !important;\n\t\t\tborder: 1px rgba($color-danger, .8) solid !important;\n\t\t\tbox-shadow: 0px 0px 0px 3px rgba(209, 55, 55, 0.16), 0px 0px 0px rgba(255, 54, 54, 0.25) !important;\n\t\t}\n\t}\n\n\t.acf-headerbar-title-field {\n\t\tmin-width: 320px;\n\n\t\t@media screen and (max-width: $md) {\n\t\t\tmin-width: 100%;\n\t\t}\n\t}\n\n\t.acf-headerbar-actions {\n\t\tdisplay: flex;\n\n\t\t.acf-btn {\n\t\t\tmargin: {\n\t\t\t\tleft: 8px;\n\t\t\t};\n\t\t};\n\n\t\t.disabled {\n\t\t\tbackground-color: $gray-100;\n\t\t\tcolor: $gray-400 !important;\n\t\t\tborder: 1px $gray-300 solid;\n\t\t\tcursor: default;\n\t\t}\n\n\t}\n\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Edit Field Group Headerbar\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-headerbar-field-editor {\n\tposition: sticky;\n\ttop: 32px;\n\tz-index: 1020;\n\tmargin: {\n\t\tleft: -20px;\n\t};\n\twidth: calc(100% + 20px);\n\n\t@media screen and (max-width: $md) {\n\t\tposition: relative;\n\t\ttop: 0;\n\t\twidth: 100%;\n\t\tmargin: {\n\t\t\tleft: 0;\n\t\t};\n\t\tpadding: {\n\t\t\tright: 8px;\n\t\t\tleft: 8px;\n\t\t};\n\t}\n\n\t@media screen and (max-width: $sm) {\n\t\tposition: relative;\n\t\ttop: 46px;\n\t}\n\n\n\t.acf-headerbar-inner {\n\n\t\t@media screen and (max-width: $md) {\n\t\t\tflex-wrap: wrap;\n\t\t\tjustify-content: flex-start;\n\t\t\talign-content: flex-start;\n\t\t\talign-items: flex-start;\n\t\t\twidth: 100%;\n\n\t\t\t.acf-page-title {\n\t\t\t\tflex: 1 1 auto;\n\t\t\t}\n\n\t\t\t.acf-headerbar-actions {\n\t\t\t\tflex: 1 1 100%;\n\t\t\t\tmargin-top: 8px;\n\t\t\t\tgap: 8px;\n\n\t\t\t\t.acf-btn {\n\t\t\t\t\twidth: 100%;\n\t\t\t\t\tdisplay: inline-flex;\n\t\t\t\t\tjustify-content: center;\n\t\t\t\t\tmargin: 0;\n\t\t\t\t}\n\n\t\t\t}\n\n\t\t}\n\n\t}\n\n\t.acf-page-title {\n\t\tmargin: {\n\t\t\tright: 16px;\n\t\t};\n\t}\n\n}\n\n.rtl .acf-headerbar,\n.rtl .acf-headerbar-field-editor {\n\tmargin-left: 0;\n\tmargin-right: -20px;\n\n\t.acf-page-title {\n\t\tmargin: {\n\t\t\tleft: 16px;\n\t\t\tright: 0;\n\t\t};\n\t}\n\n\t.acf-headerbar-actions {\n\t\t.acf-btn {\n\t\t\tmargin: {\n\t\t\t\tleft: 0;\n\t\t\t\tright: 8px;\n\t\t\t};\n\t\t};\n\n\t}\n}\n","/*---------------------------------------------------------------------------------------------\n*\n* ACF Buttons\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-btn {\n\tdisplay: inline-flex;\n\talign-items: center;\n\tbox-sizing: border-box;\n\tmin-height: 40px;\n\tpadding: {\n\t\ttop: 8px;\n\t\tright: 16px;\n\t\tbottom: 8px;\n\t\tleft: 16px;\n\t}\n\tbackground-color: $color-primary;\n\tborder-radius: $radius-md;\n\tborder: {\n\t\twidth: 1px;\n\t\tstyle: solid;\n\t\tcolor: rgba($gray-900, 20%);\n\t}\n\ttext-decoration: none;\n\tcolor: #fff !important;\n\ttransition: all 0.2s ease-in-out;\n\ttransition-property: background, border, box-shadow;\n\n\t&:hover {\n\t\tbackground-color: $color-primary-hover;\n\t\tcolor: #fff;\n\t\tcursor: pointer;\n\t}\n\n\t&:disabled, &.disabled {\n\t\tbackground-color: $gray-100;\n\t\tborder-color: $gray-200;\n\t\tcolor: $gray-400 !important;\n\t\ttransition: none;\n\t\tpointer-events: none;\n\t}\n\n\t&.acf-btn-sm {\n\t\tmin-height: 32px;\n\t\tpadding: {\n\t\t\ttop: 4px;\n\t\t\tright: 12px;\n\t\t\tbottom: 4px;\n\t\t\tleft: 12px;\n\t\t}\n\t\t@extend .p4;\n\t}\n\n\t&.acf-btn-secondary {\n\t\tbackground-color: transparent;\n\t\tcolor: $color-primary !important;\n\t\tborder-color: $color-primary;\n\n\t\t&:hover {\n\t\t\tbackground-color: lighten($blue-50, 2%);\n\t\t}\n\t}\n\n\t&.acf-btn-muted {\n\t\tbackground-color: $gray-500;\n\t\tcolor: white;\n\t\theight: 48px;\n\t\tpadding: 8px 28px 8px 28px !important;\n\t\tborder-radius: 6px;\n\t\tborder: 1px;\n\t\tgap: 6px;\n\t\t\n\t\t&:hover {\n\t\t\tbackground-color: $gray-600 !important;\n\t\t}\n\t}\n\n\t&.acf-btn-tertiary {\n\t\tbackground-color: transparent;\n\t\tcolor: $gray-500 !important;\n\t\tborder-color: $gray-300;\n\n\t\t&:hover {\n\t\t\tcolor: $gray-500 !important;\n\t\t\tborder-color: $gray-400;\n\t\t}\n\t}\n\n\t&.acf-btn-clear {\n\t\tbackground-color: transparent;\n\t\tcolor: $gray-500 !important;\n\t\tborder-color: transparent;\n\n\t\t&:hover {\n\t\t\tcolor: $blue-500 !important;\n\t\t}\n\t}\n\n\t&.acf-btn-pro {\n\t\tbackground: $gradient-pro;\n\t\tbackground-size: 180% 80%;\n\t\tbackground-position: 100% 0;\n\t\ttransition: background-position 0.5s;\n\n\t\t&:hover {\n\t\t\tbackground-position: 0 0;\n\t\t}\n\t}\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Button icons\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-btn {\n\ti.acf-icon {\n\t\t$icon-size: 20px;\n\t\twidth: $icon-size;\n\t\theight: $icon-size;\n\t\t-webkit-mask-size: $icon-size;\n\t\tmask-size: $icon-size;\n\t\tmargin: {\n\t\t\tright: 6px;\n\t\t\tleft: -4px;\n\t\t}\n\t}\n\n\t&.acf-btn-sm {\n\t\ti.acf-icon {\n\t\t\t$icon-size: 16px;\n\t\t\twidth: $icon-size;\n\t\t\theight: $icon-size;\n\t\t\t-webkit-mask-size: $icon-size;\n\t\t\tmask-size: $icon-size;\n\t\t\tmargin: {\n\t\t\t\tright: 6px;\n\t\t\t\tleft: -2px;\n\t\t\t}\n\t\t}\n\t}\n}\n\n.rtl .acf-btn {\n\ti.acf-icon {\n\t\tmargin: {\n\t\t\tright: -4px;\n\t\t\tleft: 6px;\n\t\t}\n\t}\n\n\t&.acf-btn-sm {\n\t\ti.acf-icon {\n\t\t\tmargin: {\n\t\t\t\tright: -4px;\n\t\t\t\tleft: 2px;\n\t\t\t}\n\t\t}\n\t}\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Delete field group button\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-btn.acf-delete-field-group {\n\t&:hover {\n\t\tbackground-color: lighten($color-danger, 44%);\n\t\tborder-color: $color-danger !important;\n\t\tcolor: $color-danger !important;\n\t}\n}\n","/*--------------------------------------------------------------------------------------------\n*\n*\tIcon base styling\n*\n*--------------------------------------------------------------------------------------------*/\n.acf-internal-post-type,\n.post-type-acf-field-group {\n\ti.acf-icon {\n\t\t$icon-size: 20px;\n\t\tdisplay: inline-flex;\n\t\twidth: $icon-size;\n\t\theight: $icon-size;\n\t\tbackground-color: currentColor;\n\t\tborder: none;\n\t\tborder-radius: 0;\n\t\t-webkit-mask-size: contain;\n\t\tmask-size: contain;\n\t\t-webkit-mask-repeat: no-repeat;\n\t\tmask-repeat: no-repeat;\n\t\t-webkit-mask-position: center;\n\t\tmask-position: center;\n\t\ttext-indent: 500%;\n\t\twhite-space: nowrap;\n\t\toverflow: hidden;\n\t}\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tIcons\n*\n*--------------------------------------------------------------------------------------------*/\n.acf-admin-page {\n\n\t// Action icons for Flexible Content Field\n\ti.acf-field-setting-fc-delete, i.acf-field-setting-fc-duplicate {\n\t\tbox-sizing: border-box;\n\n\t\t/* Auto layout */\n\n\t\tdisplay: flex;\n\t\tflex-direction: row;\n\t\tjustify-content: center;\n\t\talign-items: center;\n\t\tpadding: 8px;\n\t\tcursor: pointer;\n\n\t\twidth: 32px;\n\t\theight: 32px;\n\n\t\t/* Base / White */\n\n\t\tbackground: #FFFFFF;\n\t\t/* Gray/300 */\n\n\t\tborder: 1px solid $gray-300;\n\t\t/* Elevation/01 */\n\n\t\tbox-shadow: $elevation-01;\n\t\tborder-radius: 6px;\n\n\t\t/* Inside auto layout */\n\n\t\tflex: none;\n\t\torder: 0;\n\t\tflex-grow: 0;\n\t}\n\n\ti.acf-icon-plus {\n\t\t-webkit-mask-image: url(\"../../images/icons/icon-add.svg\");\n\t\tmask-image: url(\"../../images/icons/icon-add.svg\");\n\t}\n\n\ti.acf-icon-stars {\n\t\t-webkit-mask-image: url(\"../../images/icons/icon-stars.svg\");\n\t\tmask-image: url(\"../../images/icons/icon-stars.svg\");\n\t}\n\n\ti.acf-icon-help {\n\t\t-webkit-mask-image: url(\"../../images/icons/icon-help.svg\");\n\t\tmask-image: url(\"../../images/icons/icon-help.svg\");\n\t}\n\n\ti.acf-icon-key {\n\t\t-webkit-mask-image: url(\"../../images/icons/icon-key.svg\");\n\t\tmask-image: url(\"../../images/icons/icon-key.svg\");\n\t}\n\n\ti.acf-icon-regenerate {\n\t\t-webkit-mask-image: url(\"../../images/icons/icon-regenerate.svg\");\n\t\tmask-image: url(\"../../images/icons/icon-regenerate.svg\");\n\t}\n\n\ti.acf-icon-trash, button.acf-icon-trash {\n\t\t-webkit-mask-image: url(\"../../images/icons/icon-trash.svg\");\n\t\tmask-image: url(\"../../images/icons/icon-trash.svg\");\n\t}\n\t\n\ti.acf-icon-extended-menu, button.acf-icon-extended-menu {\n\t\t-webkit-mask-image: url(\"../../images/icons/icon-extended-menu.svg\");\n\t\tmask-image: url(\"../../images/icons/icon-extended-menu.svg\");\n\t}\n\n\ti.acf-icon.-duplicate, button.acf-icon-duplicate {\n\t\t-webkit-mask-image: url(\"../../images/field-type-icons/icon-field-clone.svg\");\n\t\tmask-image: url(\"../../images/field-type-icons/icon-field-clone.svg\");\n\n\t\t&:before,\n\t\t&:after {\n\t\t\tcontent: none;\n\t\t}\n\t}\n\n\ti.acf-icon-arrow-right {\n\t\t-webkit-mask-image: url(\"../../images/icons/icon-arrow-right.svg\");\n\t\tmask-image: url(\"../../images/icons/icon-arrow-right.svg\");\n\t}\n\n\ti.acf-icon-arrow-up-right {\n\t\t-webkit-mask-image: url(\"../../images/icons/icon-arrow-up-right.svg\");\n\t\tmask-image: url(\"../../images/icons/icon-arrow-up-right.svg\");\n\t}\n\n\ti.acf-icon-arrow-left {\n\t\t-webkit-mask-image: url(\"../../images/icons/icon-arrow-left.svg\");\n\t\tmask-image: url(\"../../images/icons/icon-arrow-left.svg\");\n\t}\n\n\ti.acf-icon-chevron-right,\n\t.acf-icon.-right {\n\t\t-webkit-mask-image: url(\"../../images/icons/icon-chevron-right.svg\");\n\t\tmask-image: url(\"../../images/icons/icon-chevron-right.svg\");\n\t}\n\n\ti.acf-icon-chevron-left,\n\t.acf-icon.-left {\n\t\t-webkit-mask-image: url(\"../../images/icons/icon-chevron-left.svg\");\n\t\tmask-image: url(\"../../images/icons/icon-chevron-left.svg\");\n\t}\n\n\ti.acf-icon-key-solid {\n\t\t-webkit-mask-image: url(\"../../images/icons/icon-key-solid.svg\");\n\t\tmask-image: url(\"../../images/icons/icon-key-solid.svg\");\n\t}\n\n\ti.acf-icon-globe,\n\t.acf-icon.-globe {\n\t\t-webkit-mask-image: url(\"../../images/icons/icon-globe.svg\");\n\t\tmask-image: url(\"../../images/icons/icon-globe.svg\");\n\t}\n\n\ti.acf-icon-image,\n\t.acf-icon.-picture {\n\t\t-webkit-mask-image: url(\"../../images/field-type-icons/icon-field-image.svg\");\n\t\tmask-image: url(\"../../images/field-type-icons/icon-field-image.svg\");\n\t}\n\t\n\ti.acf-icon-warning {\n\t\t-webkit-mask-image: url(\"../../images/icons/icon-warning-alt.svg\");\n\t\tmask-image: url(\"../../images/icons/icon-warning-alt.svg\");\n\t}\n\t\n\ti.acf-icon-warning-red {\n\t\t-webkit-mask-image: url(\"../../images/icons/icon-warning-alt-red.svg\");\n\t\tmask-image: url(\"../../images/icons/icon-warning-alt-red.svg\");\n\t}\n\n\ti.acf-icon-dots-grid {\n\t\t-webkit-mask-image: url(\"../../images/icons/icon-dots-grid.svg\");\n\t\tmask-image: url(\"../../images/icons/icon-dots-grid.svg\");\n\t}\n\n\ti.acf-icon-play {\n\t\t-webkit-mask-image: url(\"../../images/icons/icon-play.svg\");\n\t\tmask-image: url(\"../../images/icons/icon-play.svg\");\n\t}\n\t\n\ti.acf-icon-lock {\n\t\t-webkit-mask-image: url(\"../../images/icons/icon-lock.svg\");\n\t\tmask-image: url(\"../../images/icons/icon-lock.svg\");\n\t}\n\n\ti.acf-icon-document {\n\t\t-webkit-mask-image: url(\"../../images/icons/icon-document.svg\");\n\t\tmask-image: url(\"../../images/icons/icon-document.svg\");\n\t}\n\t/*--------------------------------------------------------------------------------------------\n\t*\n\t*\tInactive group icon\n\t*\n\t*--------------------------------------------------------------------------------------------*/\n\t.post-type-acf-field-group,\n\t.acf-internal-post-type {\n\t\t.post-state {\n\t\t\tfont-weight: normal;\n\n\t\t\t.dashicons.dashicons-hidden {\n\t\t\t\t$icon-size: 18px;\n\t\t\t\tdisplay: inline-flex;\n\t\t\t\twidth: $icon-size;\n\t\t\t\theight: $icon-size;\n\t\t\t\tbackground-color: $gray-400;\n\t\t\t\tborder: none;\n\t\t\t\tborder-radius: 0;\n\t\t\t\t-webkit-mask-size: $icon-size;\n\t\t\t\tmask-size: $icon-size;\n\t\t\t\t-webkit-mask-repeat: no-repeat;\n\t\t\t\tmask-repeat: no-repeat;\n\t\t\t\t-webkit-mask-position: center;\n\t\t\t\tmask-position: center;\n\t\t\t\t-webkit-mask-image: url(\"../../images/icons/icon-hidden.svg\");\n\t\t\t\tmask-image: url(\"../../images/icons/icon-hidden.svg\");\n\n\t\t\t\t&:before {\n\t\t\t\t\tdisplay: none;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tEdit field group page postbox header icons\n*\n*--------------------------------------------------------------------------------------------*/\n#acf-field-group-fields,\n#acf-field-group-options,\n#acf-advanced-settings {\n\t.postbox-header,\n\t.acf-sub-field-list-header {\n\t\th2,\n\t\th3 {\n\t\t\tdisplay: inline-flex;\n\t\t\tjustify-content: flex-start;\n\t\t\talign-content: stretch;\n\t\t\talign-items: center;\n\n\t\t\t&:before {\n\t\t\t\tcontent: \"\";\n\t\t\t\t$icon-size: 20px;\n\t\t\t\tdisplay: inline-block;\n\t\t\t\twidth: $icon-size;\n\t\t\t\theight: $icon-size;\n\t\t\t\tmargin: {\n\t\t\t\t\tright: 8px;\n\t\t\t\t}\n\t\t\t\tbackground-color: $gray-400;\n\t\t\t\tborder: none;\n\t\t\t\tborder-radius: 0;\n\t\t\t\t-webkit-mask-size: contain;\n\t\t\t\tmask-size: contain;\n\t\t\t\t-webkit-mask-repeat: no-repeat;\n\t\t\t\tmask-repeat: no-repeat;\n\t\t\t\t-webkit-mask-position: center;\n\t\t\t\tmask-position: center;\n\t\t\t}\n\t\t}\n\t}\n}\n\n.rtl #acf-field-group-fields,\n.rtl #acf-field-group-options {\n\t.postbox-header,\n\t.acf-sub-field-list-header {\n\t\th2,\n\t\th3 {\n\t\t\t&:before {\n\t\t\t\tmargin: {\n\t\t\t\t\tright: 0;\n\t\t\t\t\tleft: 8px;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n}\n\n// Field icon\n#acf-field-group-fields .postbox-header h2:before,\nh3.acf-sub-field-list-title:before,\n.acf-link-field-groups-popup h3:before {\n\t-webkit-mask-image: url(\"../../images/icons/icon-fields.svg\");\n\tmask-image: url(\"../../images/icons/icon-fields.svg\");\n}\n\n// Create options page modal icon\n.acf-create-options-page-popup h3:before {\n\t-webkit-mask-image: url(\"../../images/icons/icon-sliders.svg\");\n\tmask-image: url(\"../../images/icons/icon-sliders.svg\");\n}\n\n// Settings icon\n#acf-field-group-options .postbox-header h2:before {\n\t-webkit-mask-image: url(\"../../images/icons/icon-settings.svg\");\n\tmask-image: url(\"../../images/icons/icon-settings.svg\");\n}\n\n// Layout icon\n.acf-field-setting-fc_layout .acf-field-settings-fc_head label:before {\n\t-webkit-mask-image: url(\"../../images/icons/icon-layout.svg\");\n\tmask-image: url(\"../../images/icons/icon-layout.svg\");\n}\n\n// Advanced post type and taxonomies settings icon\n.acf-admin-single-post-type,\n.acf-admin-single-taxonomy,\n.acf-admin-single-options-page {\n\n\t#acf-advanced-settings .postbox-header h2:before {\n\t\t-webkit-mask-image: url(\"../../images/icons/icon-post-type.svg\");\n\t\tmask-image: url(\"../../images/icons/icon-post-type.svg\");\n\t}\n\n}\n\n// Flexible Content reorder\n.acf-field-setting-fc_layout .acf-field-settings-fc_head .acf-fc_draggable:hover .reorder-layout:before {\n\twidth: 20px;\n\theight: 11px;\n\tbackground-color: $gray-600 !important;\n\t-webkit-mask-image: url(\"../../images/icons/icon-draggable.svg\");\n\tmask-image: url(\"../../images/icons/icon-draggable.svg\");\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tPostbox expand / collapse icon\n*\n*--------------------------------------------------------------------------------------------*/\n.post-type-acf-field-group, \n.post-type-acf-field-group #acf-field-group-fields,\n.post-type-acf-field-group #acf-field-group-options,\n.post-type-acf-field-group .postbox,\n.acf-admin-single-post-type #acf-advanced-settings,\n.acf-admin-single-taxonomy #acf-advanced-settings,\n.acf-admin-single-options-page #acf-advanced-settings{\n\t\n\t.postbox-header .handle-actions {\n\t\tdisplay: flex;\n\n\t\t.toggle-indicator:before {\n\t\t\tcontent: \"\";\n\t\t\t$icon-size: 20px;\n\t\t\tdisplay: inline-flex;\n\t\t\twidth: $icon-size;\n\t\t\theight: $icon-size;\n\t\t\tbackground-color: currentColor;\n\t\t\tborder: none;\n\t\t\tborder-radius: 0;\n\t\t\t-webkit-mask-size: contain;\n\t\t\tmask-size: contain;\n\t\t\t-webkit-mask-repeat: no-repeat;\n\t\t\tmask-repeat: no-repeat;\n\t\t\t-webkit-mask-position: center;\n\t\t\tmask-position: center;\n\t\t\t-webkit-mask-image: url(\"../../images/icons/icon-chevron-up.svg\");\n\t\t\tmask-image: url(\"../../images/icons/icon-chevron-up.svg\");\n\t\t}\n\t}\n\n\t// Closed state\n\t&.closed {\n\t\t.postbox-header .handle-actions {\n\t\t\t.toggle-indicator:before {\n\t\t\t\t-webkit-mask-image: url(\"../../images/icons/icon-chevron-down.svg\");\n\t\t\t\tmask-image: url(\"../../images/icons/icon-chevron-down.svg\");\n\t\t\t}\n\t\t}\n\t}\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Tools & updates page heading icons\n*\n*---------------------------------------------------------------------------------------------*/\n.post-type-acf-field-group {\n\t#acf-admin-tool-export,\n\t#acf-admin-tool-import,\n\t#acf-license-information,\n\t#acf-update-information {\n\t\th2,\n\t\th3 {\n\t\t\tdisplay: inline-flex;\n\t\t\tjustify-content: flex-start;\n\t\t\talign-content: stretch;\n\t\t\talign-items: center;\n\n\t\t\t&:before {\n\t\t\t\tcontent: \"\";\n\t\t\t\t$icon-size: 20px;\n\t\t\t\tdisplay: inline-block;\n\t\t\t\twidth: $icon-size;\n\t\t\t\theight: $icon-size;\n\t\t\t\tmargin: {\n\t\t\t\t\tright: 8px;\n\t\t\t\t}\n\t\t\t\tbackground-color: $gray-400;\n\t\t\t\tborder: none;\n\t\t\t\tborder-radius: 0;\n\t\t\t\t-webkit-mask-size: contain;\n\t\t\t\tmask-size: contain;\n\t\t\t\t-webkit-mask-repeat: no-repeat;\n\t\t\t\tmask-repeat: no-repeat;\n\t\t\t\t-webkit-mask-position: center;\n\t\t\t\tmask-position: center;\n\t\t\t}\n\t\t}\n\t}\n\n\t&.rtl {\n\t\t#acf-admin-tool-export,\n\t\t#acf-admin-tool-import,\n\t\t#acf-license-information,\n\t\t#acf-update-information {\n\t\t\th2,\n\t\t\th3 {\n\t\t\t\t&:before {\n\t\t\t\t\tmargin: {\n\t\t\t\t\t\tright: 0;\n\t\t\t\t\t\tleft: 8px;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n}\n\n// Export icon\n.post-type-acf-field-group #acf-admin-tool-export h2:before {\n\t-webkit-mask-image: url(\"../../images/icons/icon-export.svg\");\n\tmask-image: url(\"../../images/icons/icon-export.svg\");\n}\n\n// Import icon\n.post-type-acf-field-group #acf-admin-tool-import h2:before {\n\t-webkit-mask-image: url(\"../../images/icons/icon-import.svg\");\n\tmask-image: url(\"../../images/icons/icon-import.svg\");\n}\n\n// License information icon\n.post-type-acf-field-group #acf-license-information h3:before {\n\t-webkit-mask-image: url(\"../../images/icons/icon-key.svg\");\n\tmask-image: url(\"../../images/icons/icon-key.svg\");\n}\n\n// Update information icon\n.post-type-acf-field-group #acf-update-information h3:before {\n\t-webkit-mask-image: url(\"../../images/icons/icon-info.svg\");\n\tmask-image: url(\"../../images/icons/icon-info.svg\");\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tAdmin field icons\n*\n*--------------------------------------------------------------------------------------------*/\n.acf-admin-single-field-group .acf-input {\n\t.acf-icon {\n\t\t$icon-size: 18px;\n\t\twidth: $icon-size;\n\t\theight: $icon-size;\n\t}\n}\n","/*--------------------------------------------------------------------------------------------\n*\n*\tField type icon base styling\n*\n*--------------------------------------------------------------------------------------------*/\n.field-type-icon {\n\tbox-sizing: border-box;\n\tdisplay: inline-flex;\n\talign-content: center;\n\talign-items: center;\n\tjustify-content: center;\n\tposition: relative;\n\twidth: 24px;\n\theight: 24px;\n\ttop: -4px;\n\tbackground-color: $blue-50;\n\tborder: {\n\t\twidth: 1px;\n\t\tstyle: solid;\n\t\tcolor: $blue-200;\n\t};\n\tborder-radius: 100%;\n\n\t&:before {\n\t\t$icon-size: 14px;\n\t\tcontent: \"\";\n\t\twidth: $icon-size;\n\t\theight: $icon-size;\n\t\tposition: relative;\n\t\tbackground-color: $blue-500;\n\t\t-webkit-mask-size: cover;\n\t\tmask-size: cover;\n\t\t-webkit-mask-repeat: no-repeat;\n\t\tmask-repeat: no-repeat;\n\t\t-webkit-mask-position: center;\n\t\tmask-position: center;\n\t\t-webkit-mask-image: url('../../images/field-type-icons/icon-field-default.svg');\n\t\tmask-image: url('../../images/field-type-icons/icon-field-default.svg');\n\t}\n\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tField type icons\n*\n*--------------------------------------------------------------------------------------------*/\n\n// Text field\n.field-type-icon.field-type-icon-text:before {\n\t-webkit-mask-image: url('../../images/field-type-icons/icon-field-text.svg');\n\tmask-image: url('../../images/field-type-icons/icon-field-text.svg');\n}\n\n// Textarea\n.field-type-icon.field-type-icon-textarea:before {\n\t-webkit-mask-image: url('../../images/field-type-icons/icon-field-textarea.svg');\n\tmask-image: url('../../images/field-type-icons/icon-field-textarea.svg');\n}\n\n// Textarea\n.field-type-icon.field-type-icon-textarea:before {\n\t-webkit-mask-image: url('../../images/field-type-icons/icon-field-textarea.svg');\n\tmask-image: url('../../images/field-type-icons/icon-field-textarea.svg');\n}\n\n// Number\n.field-type-icon.field-type-icon-number:before {\n\t-webkit-mask-image: url('../../images/field-type-icons/icon-field-number.svg');\n\tmask-image: url('../../images/field-type-icons/icon-field-number.svg');\n}\n\n// Range\n.field-type-icon.field-type-icon-range:before {\n\t-webkit-mask-image: url('../../images/field-type-icons/icon-field-range.svg');\n\tmask-image: url('../../images/field-type-icons/icon-field-range.svg');\n}\n\n// Email\n.field-type-icon.field-type-icon-email:before {\n\t-webkit-mask-image: url('../../images/field-type-icons/icon-field-email.svg');\n\tmask-image: url('../../images/field-type-icons/icon-field-email.svg');\n}\n\n// URL\n.field-type-icon.field-type-icon-url:before {\n\t-webkit-mask-image: url('../../images/field-type-icons/icon-field-url.svg');\n\tmask-image: url('../../images/field-type-icons/icon-field-url.svg');\n}\n\n// Password\n.field-type-icon.field-type-icon-password:before {\n\t-webkit-mask-image: url('../../images/field-type-icons/icon-field-password.svg');\n\tmask-image: url('../../images/field-type-icons/icon-field-password.svg');\n}\n\n// Image\n.field-type-icon.field-type-icon-image:before {\n\t-webkit-mask-image: url('../../images/field-type-icons/icon-field-image.svg');\n\tmask-image: url('../../images/field-type-icons/icon-field-image.svg');\n}\n\n// File\n.field-type-icon.field-type-icon-file:before {\n\t-webkit-mask-image: url('../../images/field-type-icons/icon-field-file.svg');\n\tmask-image: url('../../images/field-type-icons/icon-field-file.svg');\n}\n\n// WYSIWYG\n.field-type-icon.field-type-icon-wysiwyg:before {\n\t-webkit-mask-image: url('../../images/field-type-icons/icon-field-wysiwyg.svg');\n\tmask-image: url('../../images/field-type-icons/icon-field-wysiwyg.svg');\n}\n\n// oEmbed\n.field-type-icon.field-type-icon-oembed:before {\n\t-webkit-mask-image: url('../../images/field-type-icons/icon-field-oembed.svg');\n\tmask-image: url('../../images/field-type-icons/icon-field-oembed.svg');\n}\n\n// Gallery\n.field-type-icon.field-type-icon-gallery:before {\n\t-webkit-mask-image: url('../../images/field-type-icons/icon-field-gallery.svg');\n\tmask-image: url('../../images/field-type-icons/icon-field-gallery.svg');\n}\n\n// Select\n.field-type-icon.field-type-icon-select:before {\n\t-webkit-mask-image: url('../../images/field-type-icons/icon-field-select.svg');\n\tmask-image: url('../../images/field-type-icons/icon-field-select.svg');\n}\n\n// Checkbox\n.field-type-icon.field-type-icon-checkbox:before {\n\t-webkit-mask-image: url('../../images/field-type-icons/icon-field-checkbox.svg');\n\tmask-image: url('../../images/field-type-icons/icon-field-checkbox.svg');\n}\n\n// Radio Button\n.field-type-icon.field-type-icon-radio:before {\n\t-webkit-mask-image: url('../../images/field-type-icons/icon-field-radio.svg');\n\tmask-image: url('../../images/field-type-icons/icon-field-radio.svg');\n}\n\n// Button Group\n.field-type-icon.field-type-icon-button-group:before {\n\t-webkit-mask-image: url('../../images/field-type-icons/icon-field-button-group.svg');\n\tmask-image: url('../../images/field-type-icons/icon-field-button-group.svg');\n}\n\n// True / False\n.field-type-icon.field-type-icon-true-false:before {\n\t-webkit-mask-image: url('../../images/field-type-icons/icon-field-true-false.svg');\n\tmask-image: url('../../images/field-type-icons/icon-field-true-false.svg');\n}\n\n// Link\n.field-type-icon.field-type-icon-link:before {\n\t-webkit-mask-image: url('../../images/field-type-icons/icon-field-link.svg');\n\tmask-image: url('../../images/field-type-icons/icon-field-link.svg');\n}\n\n// Post Object\n.field-type-icon.field-type-icon-post-object:before {\n\t-webkit-mask-image: url('../../images/field-type-icons/icon-field-post-object.svg');\n\tmask-image: url('../../images/field-type-icons/icon-field-post-object.svg');\n}\n\n// Page Link\n.field-type-icon.field-type-icon-page-link:before {\n\t-webkit-mask-image: url('../../images/field-type-icons/icon-field-page-link.svg');\n\tmask-image: url('../../images/field-type-icons/icon-field-page-link.svg');\n}\n\n// Relationship\n.field-type-icon.field-type-icon-relationship:before {\n\t-webkit-mask-image: url('../../images/field-type-icons/icon-field-relationship.svg');\n\tmask-image: url('../../images/field-type-icons/icon-field-relationship.svg');\n}\n\n// Taxonomy\n.field-type-icon.field-type-icon-taxonomy:before {\n\t-webkit-mask-image: url('../../images/field-type-icons/icon-field-taxonomy.svg');\n\tmask-image: url('../../images/field-type-icons/icon-field-taxonomy.svg');\n}\n\n// User\n.field-type-icon.field-type-icon-user:before {\n\t-webkit-mask-image: url('../../images/field-type-icons/icon-field-user.svg');\n\tmask-image: url('../../images/field-type-icons/icon-field-user.svg');\n}\n\n// Google Map\n.field-type-icon.field-type-icon-google-map:before {\n\t-webkit-mask-image: url('../../images/field-type-icons/icon-field-google-map.svg');\n\tmask-image: url('../../images/field-type-icons/icon-field-google-map.svg');\n}\n\n// Date Picker\n.field-type-icon.field-type-icon-date-picker:before {\n\t-webkit-mask-image: url('../../images/field-type-icons/icon-field-date-picker.svg');\n\tmask-image: url('../../images/field-type-icons/icon-field-date-picker.svg');\n}\n\n// Date / Time Picker\n.field-type-icon.field-type-icon-date-time-picker:before {\n\t-webkit-mask-image: url('../../images/field-type-icons/icon-field-date-time-picker.svg');\n\tmask-image: url('../../images/field-type-icons/icon-field-date-time-picker.svg');\n}\n\n// Time Picker\n.field-type-icon.field-type-icon-time-picker:before {\n\t-webkit-mask-image: url('../../images/field-type-icons/icon-field-time-picker.svg');\n\tmask-image: url('../../images/field-type-icons/icon-field-time-picker.svg');\n}\n\n// Color Picker\n.field-type-icon.field-type-icon-color-picker:before {\n\t-webkit-mask-image: url('../../images/field-type-icons/icon-field-color-picker.svg');\n\tmask-image: url('../../images/field-type-icons/icon-field-color-picker.svg');\n}\n\n// Message\n.field-type-icon.field-type-icon-message:before {\n\t-webkit-mask-image: url('../../images/field-type-icons/icon-field-message.svg');\n\tmask-image: url('../../images/field-type-icons/icon-field-message.svg');\n}\n\n// Accordion\n.field-type-icon.field-type-icon-accordion:before {\n\t-webkit-mask-image: url('../../images/field-type-icons/icon-field-accordion.svg');\n\tmask-image: url('../../images/field-type-icons/icon-field-accordion.svg');\n}\n\n// Tab\n.field-type-icon.field-type-icon-tab:before {\n\t-webkit-mask-image: url('../../images/field-type-icons/icon-field-tab.svg');\n\tmask-image: url('../../images/field-type-icons/icon-field-tab.svg');\n}\n\n// Group\n.field-type-icon.field-type-icon-group:before {\n\t-webkit-mask-image: url('../../images/field-type-icons/icon-field-group.svg');\n\tmask-image: url('../../images/field-type-icons/icon-field-group.svg');\n}\n\n// Repeater\n.field-type-icon.field-type-icon-repeater:before {\n\t-webkit-mask-image: url('../../images/field-type-icons/icon-field-repeater.svg');\n\tmask-image: url('../../images/field-type-icons/icon-field-repeater.svg');\n}\n\n\n// Flexible Content\n.field-type-icon.field-type-icon-flexible-content:before {\n\t-webkit-mask-image: url('../../images/field-type-icons/icon-field-flexible-content.svg');\n\tmask-image: url('../../images/field-type-icons/icon-field-flexible-content.svg');\n}\n\n// Clone\n.field-type-icon.field-type-icon-clone:before {\n\t-webkit-mask-image: url('../../images/field-type-icons/icon-field-clone.svg');\n\tmask-image: url('../../images/field-type-icons/icon-field-clone.svg');\n}","/*---------------------------------------------------------------------------------------------\n*\n* Tools page layout\n*\n*---------------------------------------------------------------------------------------------*/\n#acf-admin-tools {\n\n\t.postbox-header {\n\t\tdisplay: none; // Hide native WP postbox headers\n\t}\n\n\t.acf-meta-box-wrap.-grid {\n\t\tmargin: {\n\t\t\ttop: 0;\n\t\t\tright: 0;\n\t\t\tbottom: 0;\n\t\t\tleft: 0;\n\t\t};\n\n\t\t.postbox {\n\t\t\twidth: 100%;\n\t\t\tclear: none;\n\t\t\tfloat: none;\n\t\t\tmargin: {\n\t\t\t\tbottom: 0;\n\t\t\t};\n\n\t\t\t@media screen and (max-width: $md) {\n\t\t\t\tflex: 1 1 100%;\n\t\t\t}\n\n\t\t}\n\n\t}\n\n\t.acf-meta-box-wrap.-grid .postbox:nth-child(odd) {\n\t\tmargin: {\n\t\t\tleft: 0;\n\t\t};\n\t}\n\n\t.meta-box-sortables {\n\t\tdisplay: grid;\n\t\tgrid-template-columns: repeat(2, 1fr);\n\t\tgrid-template-rows: repeat(1, 1fr);\n\t\tgrid-column-gap: 32px;\n\t\tgrid-row-gap: 32px;\n\n\t\t@media screen and (max-width: $md) {\n\t\t\tdisplay: flex;\n\t\t\tflex-wrap: wrap;\n\t\t\tjustify-content: flex-start;\n\t\t\talign-content: flex-start;\n\t\t\talign-items: center;\n\t\t\tgrid-column-gap: 8px;\n\t\t\tgrid-row-gap: 8px;\n\t\t}\n\n\t}\n\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Tools export pages\n*\n*---------------------------------------------------------------------------------------------*/\n#acf-admin-tools {\n\n\t&.tool-export {\n\n\t\t.inside {\n\t\t\tmargin: 0;\n\t\t}\n\n\t\t// ACF custom postbox header\n\t\t.acf-postbox-header {\n\t\t\tmargin: {\n\t\t\t\tbottom: 24px;\n\t\t\t};\n\t\t}\n\n\t\t// Main postbox area\n\t\t.acf-postbox-main {\n\t\t\tborder: none;\n\t\t\tmargin: 0;\n\t\t\tpadding: {\n\t\t\t\ttop: 0;\n\t\t\t\tright: 24px;\n\t\t\t\tbottom: 0;\n\t\t\t\tleft: 0;\n\t\t\t};\n\t\t}\n\n\t\t.acf-postbox-columns {\n\t\t\tmargin: {\n\t\t\t\ttop: 0;\n\t\t\t\tright: 280px;\n\t\t\t\tbottom: 0;\n\t\t\t\tleft: 0;\n\t\t\t};\n\t\t\tpadding: 0;\n\n\t\t\t.acf-postbox-side {\n\t\t\t\tpadding: 0;\n\n\t\t\t\t.acf-panel {\n\t\t\t\t\tmargin: 0;\n\t\t\t\t\tpadding: 0;\n\t\t\t\t}\n\n\t\t\t\t&:before {\n\t\t\t\t\tdisplay: none;\n\t\t\t\t}\n\n\t\t\t\t.acf-btn {\n\t\t\t\t\tdisplay: block;\n\t\t\t\t\twidth: 100%;\n\t\t\t\t\ttext-align: center;\n\t\t\t\t}\n\n\t\t\t}\n\n\t\t}\n\n\t\t.meta-box-sortables {\n\t\t\tdisplay: block;\n\t\t}\n\n\t\t.acf-panel {\n\t\t\tborder: none;\n\n\t\t\th3 {\n\t\t\t\tmargin: 0;\n\t\t\t\tpadding: 0;\n\t\t\t\tcolor: $gray-700;\n\t\t\t\t@extend .p4;\n\n\t\t\t\t&:before {\n\t\t\t\t\tdisplay: none;\n\t\t\t\t}\n\n\t\t\t}\n\n\t\t}\n\n\t\t.acf-checkbox-list {\n\t\t\tmargin: {\n\t\t\t\ttop: 16px;\n\t\t\t};\n\t\t\tborder: {\n\t\t\t\twidth: 1px;\n\t\t\t\tstyle: solid;\n\t\t\t\tcolor: $gray-300;\n\t\t\t};\n\t\t\tborder-radius: $radius-md;\n\n\t\t\tli {\n\t\t\t\tdisplay: inline-flex;\n\t\t\t\tbox-sizing: border-box;\n\t\t\t\twidth: 100%;\n\t\t\t\theight: 48px;\n\t\t\t\talign-items: center;\n\t\t\t\tmargin: 0;\n\t\t\t\tpadding: {\n\t\t\t\t\tright: 12px;\n\t\t\t\t\tleft: 12px;\n\t\t\t\t};\n\t\t\t\tborder-bottom: {\n\t\t\t\t\twidth: 1px;\n\t\t\t\t\tstyle: solid;\n\t\t\t\t\tcolor: $gray-200;\n\t\t\t\t};\n\n\t\t\t\t&:last-child {\n\t\t\t\t\tborder-bottom: none;\n\t\t\t\t}\n\n\t\t\t}\n\n\t\t}\n\n\t}\n\n}","/*---------------------------------------------------------------------------------------------\n*\n* Updates layout\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-settings-wrap.acf-updates {\n\tdisplay: flex;\n\tflex-direction: row;\n\tflex-wrap: wrap;\n\tjustify-content: flex-start;\n\talign-content: flex-start;\n\talign-items: flex-start;\n}\n\n.custom-fields_page_acf-settings-updates .acf-admin-notice,\n.custom-fields_page_acf-settings-updates .acf-upgrade-notice,\n.custom-fields_page_acf-settings-updates .notice {\n\tflex: 1 1 100%;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* ACF Box\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-settings-wrap.acf-updates {\n\n\t.acf-box {\n\t\tmargin: {\n\t\t\ttop: 0;\n\t\t\tright: 0;\n\t\t\tbottom: 0;\n\t\t\tleft: 0;\n\t\t};\n\n\t\t.inner {\n\t\t\tpadding: {\n\t\t\t\ttop: 24px;\n\t\t\t\tright: 24px;\n\t\t\t\tbottom: 24px;\n\t\t\t\tleft: 24px;\n\t\t\t};\n\t\t}\n\n\t\t@media screen and (max-width: $md) {\n\t\t\tflex: 1 1 100%;\n\t\t}\n\n\t}\n\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Notices\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-settings-wrap.acf-updates {\n\n\t.acf-admin-notice {\n\t\tflex: 1 1 100%;\n\t\tmargin: {\n\t\t\ttop: 16px;\n\t\t\tright: 0;\n\t\t\tleft: 0;\n\t\t};\n\t}\n\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* License information\n*\n*---------------------------------------------------------------------------------------------*/\n#acf-license-information {\n\tflex: 1 1 65%;\n\tmargin: {\n\t\tright: 32px;\n\t};\n\n\t.inner {\n\t\tpadding: 0;\n\n\t\t.acf-license-defined {\n\t\t\tpadding: 24px;\n\t\t\tmargin: 0;\n\t\t}\n\n\t\t.acf-activation-form,\n\t\t.acf-retry-activation {\n\t\t\tpadding: 24px;\n\n\t\t\t&.acf-retry-activation {\n\t\t\t\tpadding-top: 0;\n\t\t\t\tmin-height: 40px;\n\n\t\t\t\t.acf-recheck-license.acf-btn {\n\t\t\t\t\tfloat: none;\n\t\t\t\t\tline-height: initial;\n\n\t\t\t\t\ti {\n\t\t\t\t\t\tdisplay: none;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t.acf-manage-license-btn {\n\t\t\t\tfloat: right;\n\t\t\t\tline-height: 40px;\n\t\t\t\talign-items: center;\n\t\t\t\tdisplay: inline-flex;\n\n\t\t\t\t&.acf-renew-subscription {\n\t\t\t\t\tfloat: none;\n\t\t\t\t\tline-height: initial;\n\t\t\t\t}\n\n\t\t\t\ti {\n\t\t\t\t\tmargin: 0 0 0 5px;\n\t\t\t\t\twidth: 19px;\n\t\t\t\t\theight: 19px;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t.acf-recheck-license {\n\t\t\t\tfloat: right;\n\t\t\t\tline-height: 40px;\n\n\t\t\t\ti {\n\t\t\t\t\tmargin-right: 8px;\n\t\t\t\t\tvertical-align: middle;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t.acf-license-status-wrap {\n\t\t\tbackground: $gray-50;\n\t\t\tborder-top: 1px solid $gray-200;\n\t\t\tborder-bottom-left-radius: 8px;\n\t\t\tborder-bottom-right-radius: 8px;\n\t\t\t\n\t\t\t.acf-license-status-table {\n\t\t\t\tfont-size: 14px;\n\t\t\t\tpadding: 24px 24px 16px 24px;\n\n\t\t\t\tth {\n\t\t\t\t\twidth: 160px;\n\t\t\t\t\tfont-weight: 500;\n\t\t\t\t\ttext-align: left;\n\t\t\t\t\tpadding-bottom: 16px;\n\t\t\t\t}\n\n\t\t\t\ttd {\n\t\t\t\t\tpadding-bottom: 16px;\n\n\t\t\t\t\t.acf-license-status {\n\t\t\t\t\t\tdisplay: inline-block;\n\t\t\t\t\t\theight: 24px;\n\t\t\t\t\t\tline-height: 24px;\n\t\t\t\t\t\tborder-radius: 100px;\n\t\t\t\t\t\tbackground: $gray-200;\n\t\t\t\t\t\tpadding: 0 13px 1px 12px;\n\t\t\t\t\t\tborder: 1px solid rgba(0, 0, 0, 0.12);\n\t\t\t\t\t\tcolor: $gray-500;\n\n\t\t\t\t\t\t&.active {\n\t\t\t\t\t\t\tbackground: rgba(18, 183, 106, 0.15);\n\t\t\t\t\t\t\tborder: 1px solid rgba(18, 183, 106, 0.24);\n\t\t\t\t\t\t\tcolor: rgba(18, 183, 106, 1);\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t&.expired,\n\t\t\t\t\t\t&.cancelled {\n\t\t\t\t\t\t\tbackground: rgba(209, 55, 55, 0.24);\n\t\t\t\t\t\t\tborder: 1px solid rgba(209, 55, 55, 0.24);\n\t\t\t\t\t\t\tcolor: rgba(209, 55, 55, 1);\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t}\n\n\t\t\t}\n\n\t\t\t.acf-no-license-view-pricing {\n\t\t\t\tpadding: 12px 24px;\n\t\t\t\tborder-top: 1px solid $gray-200;\n\t\t\t\tcolor: $gray-500;\n\t\t\t}\n\t\t}\n\t}\n\n\t@media screen and (max-width: 1024px) {\n\t\tmargin: {\n\t\t\tright: 0;\n\t\t\tbottom: 32px;\n\t\t};\n\t}\n\n\tlabel {\n\t\tfont-weight: 500;\n\t}\n\n\t.acf-input-wrap {\n\t\tmargin: {\n\t\t\ttop: 8px;\n\t\t\tbottom: 24px;\n\t\t};\n\t}\n\n\t#acf_pro_license {\n\t\twidth: 100%;\n\t}\n\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Update information table\n*\n*---------------------------------------------------------------------------------------------*/\n#acf-update-information {\n\tflex: 1 1 35%;\n\tmax-width: calc(35% - 32px);\n\n\t.form-table {\n\n\t\tth,\n\t\ttd {\n\t\t\tpadding: {\n\t\t\t\ttop: 0;\n\t\t\t\tright: 0;\n\t\t\t\tbottom: 24px;\n\t\t\t\tleft: 0;\n\t\t\t};\n\t\t\t@extend .p4;\n\t\t\tcolor: $gray-700;\n\t\t}\n\n\t}\n\n\t.acf-update-changelog {\n\t\tmargin: {\n\t\t\ttop: 8px;\n\t\t\tbottom: 24px;\n\t\t};\n\t\tpadding: {\n\t\t\ttop: 8px;\n\t\t};\n\t\tborder-top: {\n\t\t\twidth: 1px;\n\t\t\tstyle: solid;\n\t\t\tcolor: $gray-200;\n\t\t};\n\t\tcolor: $gray-700;\n\n\t\th4 {\n\t\t\tmargin: {\n\t\t\t\tbottom: 0;\n\t\t\t};\n\t\t}\n\n\t\tp {\n\t\t\tmargin: {\n\t\t\t\ttop: 0;\n\t\t\t\tbottom: 16px;\n\t\t\t};\n\n\t\t\t&:last-of-type {\n\t\t\t\tmargin: {\n\t\t\t\t\tbottom: 0;\n\t\t\t\t};\n\t\t\t}\n\n\t\t\tem {\n\t\t\t\t@extend .p6;\n\t\t\t\tcolor: $gray-500;\n\t\t\t}\n\n\t\t}\n\n\t}\n\n\t.acf-btn {\n\t\tdisplay: inline-flex;\n\t}\n\n}","/*--------------------------------------------------------------------------------------------\n*\n*\tHeader pro upgrade button\n*\n*--------------------------------------------------------------------------------------------*/\n.acf-admin-toolbar {\n\n\ta.acf-admin-toolbar-upgrade-btn {\n\t\tdisplay: inline-flex;\n\t\talign-items: center;\n\t\talign-self: stretch;\n\t\tpadding: {\n\t\t\ttop: 0;\n\t\t\tright: 16px;\n\t\t\tbottom: 0;\n\t\t\tleft: 16px;\n\t\t};\n\t\tbackground: $gradient-pro;\n\t\tbox-shadow: inset 0 0 0 1px rgba(255,255,255,.16);\n\t\tbackground-size: 180% 80%;\n\t\tbackground-position: 100% 0;\n\t\ttransition: background-position .5s;\n\t\tborder-radius: $radius-md;\n\t\ttext-decoration: none;\n\n\t\t@media screen and (max-width: 768px) {\n\t\t\tdisplay: none;\n\t\t}\n\n\t\t&:hover {\n\t\t\tbackground-position: 0 0;\n\t\t}\n\n\t\t&:focus {\n\t\t\tborder: none;\n\t\t\toutline: none;\n\t\t\tbox-shadow: none;\n\t\t}\n\n\t\tp {\n\t\t\tmargin: 0;\n\t\t\tpadding: {\n\t\t\t\ttop: 8px;\n\t\t\t\tbottom: 8px;\n\t\t\t}\n\t\t\t@extend .p4;\n\t\t\tfont-weight: normal;\n\t\t\ttext-transform: none;\n\t\t\tcolor: #fff;\n\t\t}\n\n\t\t.acf-icon {\n\t\t\t$icon-size: 18px;\n\t\t\twidth: $icon-size;\n\t\t\theight: $icon-size;\n\t\t\tmargin: {\n\t\t\t\tright: 6px;\n\t\t\t\tleft: -2px;\n\t\t\t};\n\t\t\tbackground-color: $gray-50;\n\t\t}\n\n\t}\n\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n* Upsell block\n*\n*--------------------------------------------------------------------------------------------*/\n.acf-admin-page #tmpl-acf-field-group-pro-features,\n.acf-admin-page #acf-field-group-pro-features {\n\tdisplay: none;\n\talign-items: center;\n\tmin-height: 120px;\n\tbackground-color: #121833;\n\tbackground-image: url(../../images/pro-upgrade-grid-bg.svg), url(../../images/pro-upgrade-overlay.svg);\n\tbackground-repeat: repeat, no-repeat;\n\tbackground-size: 1224px, 1880px;\n\tbackground-position: left top, -520px -680px;\n\tcolor: $gray-200;\n\tborder-radius: 8px;\n\tmargin-top: 24px;\n\tmargin-bottom: 24px;\n\n\t@media screen and (max-width: 768px) {\n\t\tbackground-size: 1024px, 980px;\n\t\tbackground-position: left top, -500px -200px;\n\t}\n\n\t@media screen and (max-width: 1200px) {\n\t\tbackground-size: 1024px, 1880px;\n\t\tbackground-position: left top, -520px -300px;\n\t}\n\n\t.postbox-header {\n\t\tdisplay: none;\n\t}\n\n\t.inside {\n\t\twidth: 100%;\n\t\tborder: none;\n\t\tpadding: 0;\n\t}\n\n\t.acf-field-group-pro-features-wrapper {\n\t\tdisplay: flex;\n\t\tjustify-content: center;\n\t\talign-content: stretch;\n\t\talign-items: center;\n\t\tgap: 96px;\n\t\theight: 358px;\n\t\tmax-width: 950px;\n\t\tmargin: 0 auto;\n\t\tpadding: 0 35px;\n\t\t\n\t\t@media screen and (max-width: 1200px) {\n\t\t\tgap: 48px;\n\t\t}\n\t\t\n\t\t@media screen and (max-width: 768px) {\n\t\t\tgap: 0;\n\t\t}\n\n\t\t.acf-field-group-pro-features-title,\n\t\t.acf-field-group-pro-features-title-sm {\n\t\t\tfont-weight: 590;\n\t\t\tline-height: 150%;\n\n\t\t\t.acf-pro-label {\n\t\t\t\tfont-weight: normal;\n\t\t\t\tmargin-top: -4px;\n\t\t\t\tmargin-left: 2px;\n\t\t\t\tvertical-align: middle;\n\t\t\t\theight: 22px;\n\t\t\t}\n\t\t\t\n\t\t}\n\n\t\t.acf-field-group-pro-features-title-sm {\n\t\t\tdisplay: none !important;\n\t\t\tfont-size: 18px;\n\n\t\t\t.acf-pro-label {\n\t\t\t\tfont-size: 10px;\n\t\t\t\theight: 20px;\n\t\t\t}\n\t\t\t\n\t\t\t@media screen and (max-width: 768px) {\n\t\t\t\twidth: 100%;\n\t\t\t\ttext-align: center;\n\t\t\t}\n\t\t\t\n\t\t}\n\n\t\t@media screen and (max-width: 768px) {\n\t\t\tflex-direction: column;\n\t\t\tflex-wrap: wrap;\n\t\t\tjustify-content: flex-start;\n\t\t\talign-content: flex-start;\n\t\t\talign-items: flex-start;\n\t\t\tpadding: 32px 32px 0 32px;\n\t\t\theight: unset;\n\n\t\t\t.acf-field-group-pro-features-title-sm {\n\t\t\t\tdisplay: block !important;\n\t\t\t\tmargin-bottom: 24px;\n\t\t\t}\n\t\t}\n\n\t\t.acf-field-group-pro-features-content {\n\t\t\tdisplay: flex;\n\t\t\tflex-direction: column;\n\t\t\twidth: 416px;\n\n\t\t\t.acf-field-group-pro-features-desc {\n\t\t\t\tmargin-top: 8px;\n\t\t\t\tmargin-bottom: 24px;\n\t\t\t\tfont-size: 15px;\n\t\t\t\tfont-weight: 300;\n\t\t\t\tcolor: $gray-300;\n\t\t\t}\n\n\t\t\t@media screen and (max-width: 768px) {\n\t\t\t\twidth: 100%;\n\t\t\t\torder: 1;\n\t\t\t\tmargin: {\n\t\t\t\t\tright: 0;\n\t\t\t\t\tbottom: 8px;\n\t\t\t\t};\n\n\t\t\t\t.acf-field-group-pro-features-title,\n\t\t\t\t.acf-field-group-pro-features-desc {\n\t\t\t\t\tdisplay: none !important;\n\t\t\t\t}\n\t\t\t}\n\n\t\t}\n\n\t\t.acf-field-group-pro-features-actions {\n\t\t\tdisplay: flex;\n\t\t\tflex-direction: row;\n\t\t\talign-items: flex-start;\n\t\t\tmin-width: 160px;\n\t\t\tgap: 12px;\n\n\t\t\t@media screen and (max-width: 768px) {\n\t\t\t\tjustify-content: flex-start;\n\t\t\t\tflex-direction: column;\n\t\t\t\tmargin-bottom: 24px;\n\n\t\t\t\ta {\n\t\t\t\t\tjustify-content: center;\n\t\t\t\t\ttext-align: center;\n\t\t\t\t\twidth: 100%;\n\t\t\t\t}\n\t\t\t}\n\n\t\t}\n\n\t\t.acf-field-group-pro-features-grid {\n\t\t\tdisplay: flex;\n\t\t\tflex-direction: row;\n\t\t\tflex-wrap: wrap;\n\t\t\tgap: 16px;\n\t\t\twidth: 416px;\n\n\t\t\t.acf-field-group-pro-feature {\n\t\t\t\tdisplay: flex;\n\t\t\t\tflex-direction: column;\n\t\t\t\tjustify-content: center;\n\t\t\t\talign-items: center;\n\t\t\t\twidth: 128px;\n\t\t\t\theight: 124px;\n\t\t\t\tbackground: rgba(255, 255, 255, 0.08);\n\t\t\t\tbox-shadow: 0px 0px 4px rgba(0, 0, 0, 0.04), 0px 8px 16px rgba(0, 0, 0, 0.08), inset 0 0 0 1px rgba(255,255,255,.08);\n\t\t\t\tbackdrop-filter: blur(6px);\n\t\t\t\tborder-radius: 8px;\n\n\t\t\t\t.field-type-icon {\n\t\t\t\t\tborder: none;\n\t\t\t\t\tbackground: none;\n\t\t\t\t\twidth: 24px;\n\t\t\t\t\topacity: .8;\n\n\t\t\t\t\t&::before {\n\t\t\t\t\t\tbackground-color: #fff;\n\t\t\t\t\t\twidth: 20px;\n\t\t\t\t\t\theight: 20px;\n\t\t\t\t\t}\n\t\t\t\t\t\n\t\t\t\t\t@media screen and (max-width: 1200px) {\n\t\t\t\t\t\t&::before { width: 18px; height: 18px; }\n\t\t\t\t\t}\n\t\t\t\t\t\n\t\t\t\t}\n\n\t\t\t\t.pro-feature-blocks::before {\n\t\t\t\t\t-webkit-mask-image: url(\"../../images/icons/icon-extended-menu.svg\");\n\t\t\t\t\tmask-image: url(\"../../images/icons/icon-extended-menu.svg\");\n\t\t\t\t}\n\n\t\t\t\t.pro-feature-options-pages::before {\n\t\t\t\t\t-webkit-mask-image: url(\"../../images/icons/icon-settings.svg\");\n\t\t\t\t\tmask-image: url(\"../../images/icons/icon-settings.svg\");\n\t\t\t\t}\n\n\t\t\t\t.field-type-label {\n\t\t\t\t\tmargin-top: 4px;\n\t\t\t\t\tfont-size: 13px;\n\t\t\t\t\tfont-weight: 300;\n\t\t\t\t\ttext-align: center;\n\t\t\t\t\tcolor: #fff;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t@media screen and (max-width: 1200px) {\n\t\t\t\tflex-direction: column;\n\t\t\t\tgap: 8px;\n\t\t\t\twidth: 288px;\n\n\t\t\t\t.acf-field-group-pro-feature {\n\t\t\t\t\twidth: 100%;\n\t\t\t\t\theight: 40px;\n\t\t\t\t\tflex-direction: row;\n\t\t\t\t\tjustify-content: unset;\n\t\t\t\t\tgap: 8px;\n\n\n\t\t\t\t\t.field-type-icon {\n\t\t\t\t\t\tposition: initial;\n\t\t\t\t\t\tmargin-left: 16px;\n\t\t\t\t\t}\n\n\t\t\t\t\t.field-type-label {\n\t\t\t\t\t\tmargin-top: 0;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t@media screen and (max-width: 768px) {\n\t\t\t\tgap: 0;\n\t\t\t\twidth: 100%;\n\t\t\t\theight: auto;\n\t\t\t\tmargin-bottom: 16px;\n\t\t\t\tflex-direction: unset;\n\t\t\t\tflex-wrap: wrap;\n\n\t\t\t\t.acf-field-group-pro-feature {\n\t\t\t\t\tflex: 1 0 50%;\n\t\t\t\t\tmargin-bottom: 8px;\n\t\t\t\t\twidth: auto;\n\t\t\t\t\theight: auto;\n\t\t\t\t\tjustify-content: center;\n\t\t\t\t\tbackground: none;\n\t\t\t\t\tbox-shadow: none;\n\t\t\t\t\tbackdrop-filter: none;\n\t\t\t\t\t\n\t\t\t\t\t.field-type-label {\n\t\t\t\t\t\tmargin-left: 2px;\n\t\t\t\t\t}\n\n\t\t\t\t\t.field-type-icon {\n\t\t\t\t\t\tposition: initial;\n\t\t\t\t\t\tmargin-left: 0;\n\n\t\t\t\t\t\t&:before {\n\t\t\t\t\t\t\theight: 16px;\n\t\t\t\t\t\t\twidth: 16px;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t.field-type-label {\n\t\t\t\t\t\tfont-size: 12px;\n\t\t\t\t\t\tmargin-top: 0;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t}\n\n\th1 {\n\t\tmargin: {\n\t\t\ttop: 0;\n\t\t\tbottom: 4px;\n\t\t};\n\t\tpadding: {\n\t\t\ttop: 0;\n\t\t\tbottom: 0;\n\t\t};\n\t\t@extend .acf-h1;\n\t\tfont-weight: bold;\n\t\tcolor: $gray-50;\n\n\t\t.acf-icon {\n\t\t\tmargin: {\n\t\t\t\tright: 8px;\n\t\t\t};\n\t\t}\n\n\t}\n\n\t// Upsell block btn\n\t.acf-btn {\n\t\tdisplay: inline-flex;\n\t\tbackground-color: rgba(#fff,.1);\n\t\tborder: none;\n\t\tbox-shadow: 0px 0px 4px rgba(0, 0, 0, 0.04), 0px 4px 8px rgba(0, 0, 0, 0.06), inset 0 0 0 1px rgba(255,255,255,.16);\n\t\tbackdrop-filter: blur(6px);\n\t\tpadding: 8px 24px;\n\t\theight: 48px;\n\n\t\t&:hover {\n\t\t\tbackground-color: rgba(#fff,.2);\n\t\t}\n\n\t\t.acf-icon {\n\t\t\tmargin: {\n\t\t\t\tright: -2px;\n\t\t\t\tleft: 6px;\n\t\t\t};\n\t\t}\n\n\t\t&.acf-pro-features-upgrade {\n\t\t\tbackground: $gradient-pro;\n\t\t\tbackground-size: 160% 80%;\n\t\t\tbackground-position: 100% 0;\n\t\t\tbox-shadow: 0px 0px 4px rgba(0, 0, 0, 0.04), 0px 4px 8px rgba(0, 0, 0, 0.06), inset 0 0 0 1px rgba(255,255,255,.16);\n\t\t\tborder-radius: 6px;\n\t\t\ttransition: background-position .5s;\n\t\t\t\n\t\t\t&:hover {\n\t\t\t\tbackground-position: 0 0;\n\t\t\t}\n\t\t}\n\t}\n\n\t.acf-field-group-pro-features-footer-wrap {\n\t\theight: 48px;\n\t\tbackground: rgba(16, 24, 40, 0.4);\n\t\tbackdrop-filter: blur(6px);\n\t\tborder-top: 1px solid rgba(255, 255, 255, 0.08);\n\t\tborder-bottom-left-radius: 8px;\n\t\tborder-bottom-right-radius: 8px;\n\t\tcolor: $gray-400;\n\t\tfont-size: 13px;\n\t\tfont-weight: 300;\n\t\tpadding: 0 35px;\n\n\t\t.acf-field-group-pro-features-footer {\n\t\t\tdisplay: flex;\n\t\t\talign-items: center;\n\t\t\tjustify-content: space-between;\n\t\t\tmax-width: 950px;\n\t\t\theight: 48px;\n\t\t\tmargin: 0 auto;\n\t\t}\n\n\t\t.acf-field-group-pro-features-wpengine-logo {\n\t\t\theight: 16px;\n\t\t\tvertical-align: middle;\n\t\t\tmargin-top: -2px;\n\t\t\tmargin-left: 3px;\n\t\t}\n\n\t\ta {\n\t\t\tcolor: $gray-400;\n\t\t\ttext-decoration: none;\n\t\t\t\n\t\t\t&:hover {\n\t\t\t\tcolor: $gray-300;\n\t\t\t}\n\t\t\t\n\t\t\t.acf-icon {\n\t\t\t\twidth: 18px;\n\t\t\t\theight: 18px;\n\t\t\t\tmargin-left: 4px;\n\t\t\t}\n\t\t\t\n\t\t}\n\t\t\n\t\t.acf-more-tools-from-wpengine {\n\t\t\t\n\t\t\ta {\n\t\t\t\tdisplay: inline-flex;\n\t\t\t\talign-items: center;\n\t\t\t}\n\t\t\t\n\t\t}\n\n\t\t@media screen and (max-width: 768px) {\n\t\t\theight: 70px;\n\t\t\tfont-size: 12px;\n\n\t\t\t.acf-more-tools-from-wpengine {\n\t\t\t\tdisplay: none;\n\t\t\t}\n\n\t\t\t.acf-field-group-pro-features-footer {\n\t\t\t\tjustify-content: center;\n\t\t\t\theight: 70px;\n\n\t\t\t\t.acf-field-group-pro-features-wpengine-logo {\n\t\t\t\t\tclear: both;\n\t\t\t\t\tmargin: 6px auto 0 auto;\n\t\t\t\t\tdisplay: block;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n}\n\n.acf-no-field-groups,\n.acf-no-post-types,\n.acf-no-taxonomies {\n\t#tmpl-acf-field-group-pro-features {\n\t\tmargin-top: 0;\n\t}\n}\n","/*--------------------------------------------------------------------------------------------\n*\n*\tPost type & taxonomies styles\n*\n*--------------------------------------------------------------------------------------------*/\n\n.acf-admin-single-post-type,\n.acf-admin-single-taxonomy,\n.acf-admin-single-options-page {\n\tlabel[for=\"acf-basic-settings-hide\"] {\n\t\tdisplay: none;\n\t}\n\tfieldset.columns-prefs {\n\t\tdisplay: none;\n\t}\n\n\t#acf-basic-settings {\n\t\t.postbox-header {\n\t\t\tdisplay: none;\n\t\t}\n\t}\n\n\t.postbox-container,\n\t.notice {\n\t\tmax-width: $max-width;\n\t\tclear: left;\n\t}\n\n\t#post-body-content {\n\t\tmargin: 0;\n\t}\n\n\t// Main postbox\n\t.postbox,\n\t.acf-box {\n\t\t.inside {\n\t\t\tpadding: {\n\t\t\t\ttop: 48px;\n\t\t\t\tright: 48px;\n\t\t\t\tbottom: 48px;\n\t\t\t\tleft: 48px;\n\t\t\t}\n\t\t}\n\t}\n\n\t#acf-advanced-settings.postbox {\n\t\t.inside {\n\t\t\tpadding: {\n\t\t\t\tbottom: 24px;\n\t\t\t}\n\t\t}\n\t}\n\n\t.postbox-container .meta-box-sortables #acf-basic-settings .inside {\n\t\tborder: none;\n\t}\n\n\t// Input wrap\n\t.acf-input-wrap {\n\t\toverflow: visible;\n\t}\n\n\t// Field & label margins & paddings\n\t.acf-field {\n\t\tmargin: {\n\t\t\ttop: 0;\n\t\t\tright: 0;\n\t\t\tbottom: 24px;\n\t\t\tleft: 0;\n\t\t}\n\n\t\t.acf-label {\n\t\t\tmargin: {\n\t\t\t\tbottom: 6px;\n\t\t\t}\n\t\t}\n\t}\n\n\t// Specific field overrides\n\t.acf-field-text,\n\t.acf-field-textarea,\n\t.acf-field-select {\n\t\tmax-width: 600px;\n\t}\n\n\t.acf-field-true-false {\n\t\tmax-width: 700px;\n\t}\n\n\t.acf-field-supports {\n\t\tmax-width: 600px;\n\n\t\t.acf-label {\n\t\t\tdisplay: block;\n\n\t\t\t.description {\n\t\t\t\tmargin: {\n\t\t\t\t\ttop: 4px;\n\t\t\t\t\tbottom: 12px;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t.acf_post_type_supports {\n\t\t\tdisplay: flex;\n\t\t\tflex-wrap: wrap;\n\t\t\tjustify-content: flex-start;\n\t\t\talign-content: flex-start;\n\t\t\talign-items: flex-start;\n\n\t\t\t&:focus-within {\n\t\t\t\tborder-color: transparent;\n\t\t\t}\n\n\t\t\tli {\n\t\t\t\tflex: 0 0 25%;\n\n\t\t\t\ta.button {\n\t\t\t\t\tbackground-color: transparent;\n\t\t\t\t\tpadding: 0;\n\t\t\t\t\tborder: 0;\n\t\t\t\t\theight: auto;\n\t\t\t\t\tmin-height: auto;\n\t\t\t\t\tmargin-top: 0;\n\t\t\t\t\tborder-radius: 0;\n\t\t\t\t\tline-height: 22px;\n\t\t\t\t\t&:before {\n\t\t\t\t\t\tcontent: '';\n\t\t\t\t\t\t$icon-size: 16px;\n\t\t\t\t\t\tmargin-right: 6px;\n\t\t\t\t\t\tdisplay: inline-flex;\n\t\t\t\t\t\twidth: $icon-size;\n\t\t\t\t\t\theight: $icon-size;\n\t\t\t\t\t\tbackground-color: currentColor;\n\t\t\t\t\t\tborder: none;\n\t\t\t\t\t\tborder-radius: 0;\n\t\t\t\t\t\t-webkit-mask-size: contain;\n\t\t\t\t\t\tmask-size: contain;\n\t\t\t\t\t\t-webkit-mask-repeat: no-repeat;\n\t\t\t\t\t\tmask-repeat: no-repeat;\n\t\t\t\t\t\t-webkit-mask-position: center;\n\t\t\t\t\t\tmask-position: center;\n\t\t\t\t\t\ttext-indent: 500%;\n\t\t\t\t\t\twhite-space: nowrap;\n\t\t\t\t\t\toverflow: hidden;\n\t\t\t\t\t\t-webkit-mask-image: url(\"../../images/icons/icon-add.svg\");\n\t\t\t\t\t\tmask-image: url(\"../../images/icons/icon-add.svg\");\n\t\t\t\t\t}\n\t\t\t\t\t&:hover {\n\t\t\t\t\t\tcolor: $blue-700;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\tinput[type=text] {\n\t\t\t\t\twidth: calc(100% - 36px);\n\t\t\t\t\tpadding: 0;\n\t\t\t\t\tbox-shadow: none;\n\t\t\t\t\tborder: none;\n\t\t\t\t\tborder-bottom: 1px solid $gray-300;\n\t\t\t\t\tborder-radius: 0;\n\t\t\t\t\theight: auto;\n\t\t\t\t\tmargin: 0;\n\t\t\t\t\tmin-height: auto;\n\t\t\t\t\t&:focus {\n\t\t\t\t\t\toutline: none;\n\t\t\t\t\t\tborder-bottom-color: $blue-400;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\t// Dividers\n\t.acf-field-seperator {\n\t\tmargin: {\n\t\t\ttop: 40px;\n\t\t\tbottom: 40px;\n\t\t}\n\t\tborder: {\n\t\t\ttop: 1px solid $gray-200;\n\t\t\tright: none;\n\t\t\tbottom: none;\n\t\t\tleft: none;\n\t\t}\n\t}\n\n\t// Remove margin from last fields in postbox\n\t.acf-field-advanced-configuration {\n\t\tmargin: {\n\t\t\tbottom: 0;\n\t\t}\n\t}\n\n\t// Tabbed navigation & labels utility bar\n\t.postbox-container .acf-tab-wrap,\n\t.acf-regenerate-labels-bar {\n\t\tposition: relative;\n\t\ttop: -48px;\n\t\tleft: -48px;\n\t\twidth: calc(100% + 96px);\n\t}\n\n\t// Labels utility bar\n\t.acf-regenerate-labels-bar {\n\t\tdisplay: flex;\n\t\talign-items: center;\n\t\tjustify-content: right;\n\t\tmin-height: 48px;\n\t\tmargin: {\n\t\t\tbottom: 0;\n\t\t}\n\t\tpadding: {\n\t\t\tright: 16px;\n\t\t\tleft: 16px;\n\t\t}\n\t\tgap: 8px;\n\t\tborder-bottom: {\n\t\t\twidth: 1px;\n\t\t\tstyle: solid;\n\t\t\tcolor: $gray-100;\n\t\t}\n\t}\n\n\t// Labels utility bar help/tip icon\n\t.acf-labels-tip {\n\t\tdisplay: inline-flex;\n\t\talign-items: center;\n\t\tmin-height: 24px;\n\t\tmargin: {\n\t\t\tright: 8px;\n\t\t}\n\t\tpadding: {\n\t\t\tleft: 16px;\n\t\t}\n\t\tborder-left: {\n\t\t\twidth: 1px;\n\t\t\tstyle: solid;\n\t\t\tcolor: $gray-200;\n\t\t}\n\n\t\t.acf-icon {\n\t\t\tdisplay: inline-flex;\n\t\t\talign-items: center;\n\t\t\t$icon-size: 16px;\n\t\t\twidth: $icon-size;\n\t\t\theight: $icon-size;\n\t\t\t-webkit-mask-size: $icon-size;\n\t\t\tmask-size: $icon-size;\n\t\t\tbackground-color: $gray-400;\n\t\t}\n\t}\n}\n\n// Select2 for default values in permalink rewrite\n.acf-select2-default-pill {\n\tborder-radius: 100px;\n\tmin-height: 20px;\n\tpadding: {\n\t\ttop: 2px;\n\t\tbottom: 2px;\n\t\tleft: 8px;\n\t\tright: 8px;\n\t}\n\tfont-size: 11px;\n\tmargin-left: 6px;\n\tbackground-color: $gray-200;\n\tcolor: $gray-500;\n}\n\n.acf-menu-position-desc-child {\n\tdisplay: none;\n}","/*---------------------------------------------------------------------------------------------\n*\n* Field picker modal\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-modal.acf-browse-fields-modal {\n\twidth: 1120px;\n\theight: 664px;\n\ttop: 50%;\n\tright: auto;\n\tbottom: auto;\n\tleft: 50%;\n\ttransform: translate(-50%, -50%);\n\tdisplay: flex;\n\tflex-direction: row;\n\tborder-radius: $radius-xl;\n\tbox-shadow: 0px 0px 4px rgba(0, 0, 0, 0.04),\n\t\t0px 8px 16px rgba(0, 0, 0, 0.08);\n\toverflow: hidden;\n\n\t.acf-field-picker {\n\t\tdisplay: flex;\n\t\tflex-direction: column;\n\t\tflex-grow: 1;\n\t\twidth: 760px;\n\t\tbackground: #fff;\n\n\t\t.acf-modal-title,\n\t\t.acf-modal-content,\n\t\t.acf-modal-toolbar {\n\t\t\tposition: relative;\n\t\t}\n\n\t\t.acf-modal-title {\n\t\t\tdisplay: flex;\n\t\t\tflex-direction: row;\n\t\t\tjustify-content: space-between;\n\t\t\talign-items: center;\n\t\t\tbackground: $gray-50;\n\t\t\tborder: none;\n\t\t\tpadding: 35px 32px;\n\n\t\t\t.acf-search-field-types-wrap {\n\t\t\t\tposition: relative;\n\n\t\t\t\t&:after {\n\t\t\t\t\tcontent: \"\";\n\t\t\t\t\tdisplay: block;\n\t\t\t\t\tposition: absolute;\n\t\t\t\t\ttop: 11px;\n\t\t\t\t\tleft: 10px;\n\t\t\t\t\t$icon-size: 18px;\n\t\t\t\t\twidth: $icon-size;\n\t\t\t\t\theight: $icon-size;\n\t\t\t\t\t-webkit-mask-image: url(\"../../images/icons/icon-search.svg\");\n\t\t\t\t\tmask-image: url(\"../../images/icons/icon-search.svg\");\n\t\t\t\t\tbackground-color: $gray-400;\n\t\t\t\t\tborder: none;\n\t\t\t\t\tborder-radius: 0;\n\t\t\t\t\t-webkit-mask-size: contain;\n\t\t\t\t\tmask-size: contain;\n\t\t\t\t\t-webkit-mask-repeat: no-repeat;\n\t\t\t\t\tmask-repeat: no-repeat;\n\t\t\t\t\t-webkit-mask-position: center;\n\t\t\t\t\tmask-position: center;\n\t\t\t\t\ttext-indent: 500%;\n\t\t\t\t\twhite-space: nowrap;\n\t\t\t\t\toverflow: hidden;\n\t\t\t\t}\n\n\t\t\t\tinput {\n\t\t\t\t\twidth: 280px;\n\t\t\t\t\theight: 40px;\n\t\t\t\t\tmargin: 0;\n\t\t\t\t\tpadding-left: 32px;\n\t\t\t\t\tbox-shadow: none;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t.acf-modal-content {\n\t\t\ttop: auto;\n\t\t\tbottom: auto;\n\t\t\tpadding: 0;\n\t\t\theight: 100%;\n\n\t\t\t.acf-tab-group {\n\t\t\t\tpadding-left: 32px;\n\t\t\t}\n\n\t\t\t.acf-field-types-tab {\n\t\t\t\tdisplay: flex;\n\t\t\t}\n\n\t\t\t.acf-field-types-tab,\n\t\t\t.acf-field-type-search-results {\n\t\t\t\tflex-direction: row;\n\t\t\t\tflex-wrap: wrap;\n\t\t\t\tgap: 24px;\n\t\t\t\tpadding: 32px;\n\n\t\t\t\t.acf-field-type {\n\t\t\t\t\tposition: relative;\n\t\t\t\t\tdisplay: flex;\n\t\t\t\t\tflex-direction: column;\n\t\t\t\t\tjustify-content: center;\n\t\t\t\t\talign-items: center;\n\t\t\t\t\tisolation: isolate;\n\t\t\t\t\twidth: 120px;\n\t\t\t\t\theight: 120px;\n\t\t\t\t\tbackground: $gray-50;\n\t\t\t\t\tborder: 1px solid $gray-200;\n\t\t\t\t\tborder-radius: 8px;\n\t\t\t\t\tbox-sizing: border-box;\n\t\t\t\t\tcolor: $gray-800;\n\t\t\t\t\ttext-decoration: none;\n\n\t\t\t\t\t&:hover,\n\t\t\t\t\t&:active,\n\t\t\t\t\t&.selected {\n\t\t\t\t\t\tbackground: $blue-50;\n\t\t\t\t\t\tborder: 1px solid $blue-400;\n\t\t\t\t\t\tbox-shadow: inset 0 0 0 1px $blue-400;\n\t\t\t\t\t}\n\n\t\t\t\t\t.field-type-icon {\n\t\t\t\t\t\tborder: none;\n\t\t\t\t\t\tbackground: none;\n\t\t\t\t\t\ttop: 0;\n\n\t\t\t\t\t\t&:before {\n\t\t\t\t\t\t\twidth: 22px;\n\t\t\t\t\t\t\theight: 22px;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t.field-type-label {\n\t\t\t\t\t\tmargin-top: 12px;\n\t\t\t\t\t\t@extend .p5;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t.field-type-requires-pro {\n\t\t\t\t\tdisplay: flex;\n\t\t\t\t\tjustify-content: center;\n\t\t\t\t\talign-items: center;\n\t\t\t\t\tposition: absolute;\n\t\t\t\t\ttop: -10px;\n\t\t\t\t\tright: -10px;\n\t\t\t\t\theight: 21px;\n\t\t\t\t\tcolor: white;\n\t\t\t\t\tbackground: $gradient-pro;\n\t\t\t\t\tbackground-size: 140% 20%;\n\t\t\t\t\tbackground-position: 100% 0;\n\t\t\t\t\tborder-radius: 100px;\n\t\t\t\t\tfont-size: 11px;\n\t\t\t\t\tpadding: {\n\t\t\t\t\t\tright: 6px;\n\t\t\t\t\t\tleft: 6px;\n\t\t\t\t\t}\n\t\t\t\t\ti {\n\t\t\t\t\t\twidth: 12px;\n\t\t\t\t\t\theight: 12px;\n\t\t\t\t\t\tmargin-right: 2px;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t.acf-modal-toolbar {\n\t\t\tdisplay: flex;\n\t\t\talign-items: flex-start;\n\t\t\tjustify-content: space-between;\n\t\t\theight: auto;\n\t\t\tmin-height: 72px;\n\t\t\tpadding: {\n\t\t\t\ttop: 0;\n\t\t\t\tright: 32px;\n\t\t\t\tbottom: 0;\n\t\t\t\tleft: 32px;\n\t\t\t}\n\t\t\tmargin: 0;\n\t\t\tborder: none;\n\n\t\t\t.acf-select-field,\n\t\t\t.acf-btn-pro {\n\t\t\t\tmin-width: 160px;\n\t\t\t\tjustify-content: center;\n\t\t\t}\n\n\t\t\t.acf-insert-field-label {\n\t\t\t\tmin-width: 280px;\n\t\t\t\tbox-shadow: none;\n\t\t\t}\n\n\t\t\t.acf-field-picker-actions {\n\t\t\t\tdisplay: flex;\n\t\t\t\tgap: 8px;\n\t\t\t}\n\t\t}\n\t}\n\n\t.acf-field-type-preview {\n\t\tdisplay: flex;\n\t\tflex-direction: column;\n\t\twidth: 360px;\n\t\tbackground-color: $gray-50;\n\t\tbackground-image: url(\"../../images/field-preview-grid.png\");\n\t\tbackground-size: 740px;\n\t\tbackground-repeat: no-repeat;\n\t\tbackground-position: center bottom;\n\t\tborder-left: 1px solid $gray-200;\n\t\tbox-sizing: border-box;\n\t\tpadding: 32px;\n\n\t\t.field-type-desc {\n\t\t\tmargin: 0;\n\t\t\tpadding: 0;\n\t\t\tcolor: $gray-500;\n\t\t}\n\n\t\t.field-type-preview-container {\n\t\t\tdisplay: inline-flex;\n\t\t\tjustify-content: center;\n\t\t\twidth: 100%;\n\t\t\tmargin: {\n\t\t\t\ttop: 24px;\n\t\t\t}\n\t\t\tpadding: {\n\t\t\t\ttop: 32px;\n\t\t\t\tbottom: 32px;\n\t\t\t}\n\t\t\tbackground-color: rgba(#fff, 0.64);\n\t\t\tborder-radius: $radius-lg;\n\t\t\tbox-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.04),\n\t\t\t\t0px 8px 24px rgba(0, 0, 0, 0.04);\n\t\t}\n\n\t\t.field-type-image {\n\t\t\tmax-width: 232px;\n\t\t}\n\n\t\t.field-type-info {\n\t\t\tflex-grow: 1;\n\n\t\t\t.field-type-name {\n\t\t\t\tfont-size: 21px;\n\t\t\t\tmargin: {\n\t\t\t\t\ttop: 0;\n\t\t\t\t\tright: 0;\n\t\t\t\t\tbottom: 16px;\n\t\t\t\t\tleft: 0;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t.field-type-upgrade-to-unlock {\n\t\t\t\tdisplay: inline-flex;\n\t\t\t\tjustify-items: center;\n\t\t\t\talign-items: center;\n\t\t\t\tmin-height: 24px;\n\t\t\t\tmargin: {\n\t\t\t\t\tbottom: 12px;\n\t\t\t\t}\n\t\t\t\tpadding: {\n\t\t\t\t\tright: 8px;\n\t\t\t\t\tleft: 8px;\n\t\t\t\t}\n\t\t\t\tbackground: $gradient-pro;\n\t\t\t\tbackground-size: 140% 20%;\n\t\t\t\tbackground-position: 100% 0;\n\t\t\t\tborder-radius: 100px;\n\t\t\t\tcolor: white;\n\t\t\t\ttext-decoration: none;\n\t\t\t\tfont-size: 11px;\n\n\t\t\t\ti.acf-icon {\n\t\t\t\t\twidth: 14px;\n\t\t\t\t\theight: 14px;\n\t\t\t\t\tmargin: {\n\t\t\t\t\t\tright: 4px;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t.field-type-links {\n\t\t\tdisplay: flex;\n\t\t\talign-items: center;\n\t\t\tgap: 24px;\n\t\t\tmin-height: 40px;\n\n\t\t\t.acf-icon {\n\t\t\t\t$icon-size: 18px;\n\t\t\t\twidth: $icon-size;\n\t\t\t\theight: $icon-size;\n\t\t\t}\n\n\t\t\t&:before {\n\t\t\t\tdisplay: none;\n\t\t\t}\n\n\t\t\ta {\n\t\t\t\tdisplay: flex;\n\t\t\t\tgap: 6px;\n\t\t\t\ttext-decoration: none;\n\n\t\t\t\t&:hover {\n\t\t\t\t\ttext-decoration: underline;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\t.acf-field-type-search-results,\n\t.acf-field-type-search-no-results {\n\t\tdisplay: none;\n\t}\n\n\t&.is-searching {\n\t\t.acf-tab-wrap,\n\t\t.acf-field-types-tab,\n\t\t.acf-field-type-search-no-results {\n\t\t\tdisplay: none !important;\n\t\t}\n\n\t\t.acf-field-type-search-results {\n\t\t\tdisplay: flex;\n\t\t}\n\t}\n\n\t&.no-results-found {\n\t\t.acf-tab-wrap,\n\t\t.acf-field-types-tab,\n\t\t.acf-field-type-search-results,\n\t\t.field-type-info,\n\t\t.field-type-links,\n\t\t.acf-field-picker-toolbar {\n\t\t\tdisplay: none !important;\n\t\t}\n\n\t\t.acf-modal-title {\n\t\t\tborder-bottom: {\n\t\t\t\twidth: 1px;\n\t\t\t\tstyle: solid;\n\t\t\t\tcolor: $gray-200;\n\t\t\t}\n\t\t}\n\n\t\t.acf-field-type-search-no-results {\n\t\t\tdisplay: flex;\n\t\t\tflex-direction: column;\n\t\t\tjustify-content: center;\n\t\t\talign-items: center;\n\t\t\theight: 100%;\n\t\t\tgap: 6px;\n\n\t\t\timg {\n\t\t\t\tmargin-bottom: 19px;\n\t\t\t}\n\n\t\t\tp {\n\t\t\t\tmargin: 0;\n\n\t\t\t\t&.acf-no-results-text {\n\t\t\t\t\tdisplay: flex;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t.acf-invalid-search-term {\n\t\t\t\tmax-width: 200px;\n\t\t\t\toverflow: hidden;\n\t\t\t\ttext-overflow: ellipsis;\n\t\t\t\tdisplay: inline-block;\n\t\t\t}\n\t\t}\n\t}\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Hide browse fields button for smaller screen sizes\n*\n*---------------------------------------------------------------------------------------------*/\n@media only screen and (max-width: 1080px) {\n\t.acf-btn.browse-fields {\n\t\tdisplay: none;\n\t}\n}\n"],"names":[],"sourceRoot":""} \ No newline at end of file +{"version":3,"file":"acf-global.css","mappings":";;;AAAA,gBAAgB;ACAhB;;;;8FAAA;AAMA;AAOA;AAQA;AAgBA;;;;8FAAA;ACrCA;;;;8FAAA;ACCA;;;;8FAAA;AAMA;AACA;EACC;EACA;EACA;EACA;EACA;AHkBD;;AGhBA;EACC;EACA;EACA;EACA;AHmBD;;AGjBA;EACC;AHoBD;;AGjBA;AACA;;;;;;EAMC;EACA;EACA;AHoBD;;AGlBA;;;EAGC;AHqBD;;AGlBA;AACA;EACC;EACA;EACA;EACA;EACA;AHqBD;;AGnBA;EACC;EACA;EACA;EACA;AHsBD;;AGnBA;AACA;EACC;AHsBD;;AGpBA;EACC;AHuBD;AGtBC;EACC;AHwBF;;AGpBA;AACA;EACC;AHuBD;;AGrBA;EACC;AHwBD;;AGtBA;EACC;AHyBD;;AGtBA;AACA;EACC;AHyBD;;AGvBA;EACC;AH0BD;;AGxBA;EACC;AH2BD;;AGxBA;AACA;;EAEC;EACA;EACA;EACA;EACA;AH2BD;;AGxBA;AACA;EACC;AH2BD;;AGxBA;EACC;AH2BD;;AGxBA;AACA;EACC;AH2BD;;AGxBA;AACA;EACC;AH2BD;;AGxBA;AACA;;EAEC;AH2BD;;AGxBA;AACA;EACC;EACA;EACA;EACA;EAEA;EACA;AH0BD;;AGvBA;EACC;EACA;EACA;EACA;EAEA;EACA;AHyBD;;AGtBA;AACA;EACC;AHyBD;;AGvBA;EACC;AH0BD;;AGvBA;EACC;AH0BD;;AGxBA;EACC;AH2BD;;AGxBA;AACA;EACC;EACA;EACA;EACA;AH2BD;;AGxBA;;;;+FAAA;AAMA;AACA;EACC,mBF7HU;EE8HV,kBF/FW;EEgGX,cFpIU;EEsIT;EACA;EACA;EACA;EAED;EAEA;EACA;EACA;EAGA;EASA;AHaD;AGrBC;EACC;EACA;EACA;EACA;EACA;AHuBF;AGnBC;EACC;AHqBF;AGnBE;EACC;EACA;EACA;EACA;EACA;AHqBH;AGjBC;EACC;AHmBF;AGjBE;EACC;EACA;EACA;EACA;EACA;AHmBH;AGfC;EACC;AHiBF;AGfE;EACC;EACA;EACA;EACA;EACA;AHiBH;AGbC;EACC;AHeF;AGbE;EACC;EACA;EACA;EACA;EACA;AHeH;AGXC;EACC;AHaF;;AGTA;AACA;EACC;AHYD;AGVC;EACC;EACA;AHYF;AGVE;EACC;AHYH;AGTE;EACC;AHWH;;AGNA;EACC;EACA;EACA;EACA;EACA;EACA;AHSD;;AGNA;EACC;EACA;AHSD;;AGNA;;;;+FAAA;AAKA;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;AHSD;AGPC;ED3RA;EACA;EACA;EACA;AFqSD;;AGRA;;;;8FAAA;AAKA;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;AHWD;AGTC;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;AHWF;;AGNA;EACC;AHSD;;AGPA;EACC;AHUD;;AGRA;EACC;EACA;AHWD;;AGTA;EACC;AHYD;;AGVA;EACC;AHaD;;AGXA;EACC;EAGA;AHYD;;AGVA;EACC;EAGA;AHWD;;AGTA;EACC;EAGA;AHUD;;AGRA;EACC;EAGA;AHSD;;AGPA;EACC;AHUD;;AGRA;EACC;EAGA;EACA;AHSD;;AGPA;EACC;AHUD;;AGRA;EACC;EAGA;AHSD;;AGPA;EACC;EAGA;AHQD;;AGNA;EACC;AHSD;;AGPA;EACC;EAGA;AHQD;;AGNA;EACC;EAGA;AHOD;;AGLA;EACC;AHQD;;AGNA;EACC;AHSD;;AGLA;EACC;AHQD;AGPC;EAEC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;AHQF;AGNC;EACC;EACA;AHQF;AGNC;EACC;AHQF;;AGJA;EACC;AHOD;AGNC;EAEC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;AHOF;AGLC;EACC;EACA;AHOF;AGLC;EACC;AHOF;;AGFA;EACC;EAGA;AHGD;;AGDA;EACC;EAGA;AHED;;AGEA;EACC;EACA;EACA;AHCD;;AGGA;EACC;EACA;EACA;EACA;EACA;EACA;AHAD;AGGC;EACC;EACA;EACA;AHDF;AGGC;EAEC;EACA;EACA;AHFF;AGMC;EAEC;EACA;AHLF;;AGUA;EACC;EACA;EACA;AHPD;;AGWA;EACC;EACA;EACA;AHRD;;AGYA;EACC;EACA;EACA;AHTD;;AGYC;EACC;EACA;AHTF;AGWC;EAEC;AHVF;;AGeA;EACC;EACA;EACA;AHZD;AGcC;EACC;EACA;AHZF;AGcC;EAEC;AHbF;;AGkBA;;EAEC;EACA;EACA;EACA;AHfD;AGoBE;;;EAGC;AHlBH;;AGuBA;;;;8FAAA;AAKA;EACC;EACA;EACA;EACA;EAEA;EA8CA;AHlED;AGqBC;EACC;EACA;EACA;AHnBF;AGqBE;EACC;EACA;EACA;EACA;EACA;EACA;AHnBH;AGuBC;EACC;AHrBF;AGwBC;EACC;EACA;EACA;EACA;EACA;AHtBF;AGyBC;EACC;AHvBF;AG0BC;EACC;AHxBF;AG2BC;EACC;AHzBF;AG6BE;EACC;AH3BH;AGgCC;EACC;EACA;EACA;EACA;AH9BF;AGgCE;EACC;AH9BH;AE7kBC;ECinBC,qBF1nBiB;ADylBnB;AGkCE;;EAEC,qBF7nBgB;AD6lBnB;;AGqCA;;;;8FAAA;AAMA;EACC;EACA;EACA;EACA;EACA;EACA,mBFtqBY;EEuqBZ;AHnCD;AGqCC;EACC;EACA;EACA;EACA;EACA;AHnCF;AGsCC;EACC;EACA;EACA;EACA;EACA;EACA;EACA;AHpCF;AGqCE;EACC;AHnCH;AGwCC;EACC;AHtCF;AG0CC;EACC,mBFpsBU;EEqsBV;AHxCF;AG4CC;EACC,mBFzsBY;EE0sBZ;AH1CF;AG8CC;EACC,mBF9sBY;EE+sBZ;AH5CF;;AGgDA;;;;8FAAA;AAMA;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EAEA;EAmBA;EAcA;EAoBA;AHjGD;AG+CE;;;;EAEC;EACA;EACA;EACA;EACA;EACA;AH3CH;AG8CE;;EACC;EACA;AH3CH;AGkDG;EACC,qBF5uBe;EE6uBf;AHhDJ;AGkDI;EACC;AHhDL;AGwDE;EACC;AHtDH;AGwDG;EACC,qBF3vBe;EE4vBf;AHtDJ;AGwDI;EACC;AHtDL;AG0DG;EACC;AHxDJ;AG8DC;EACC;AH5DF;AGgEG;;;;EAEC;EACA;AH5DJ;;AGkEA;AACA;EACC;EACA;EACA;EACA;EAEA;EACA;AHhED;;AGmEA;AACA;EACC;EACA;EACA;EACA;EAEA;EACA;AHjED;;AGoEA;;;;+FAAA;AAMA;;;EAGC;EACA;EACA;AHlED;AGoEC;;;EACC;EAEC;EAED;EACA;AHlEF;;AGsEA;EACC;EACA;AHnED;AGqEC;EACC;EACA;EACA;AHnEF;AE5vBC;ECo0BC,qBF50BmB;ADuwBrB;;AGyEA;EACC;EACA;AHtED;;AGyEA;;;;8FAAA;AAOC;EACC;AHxEF;AG2EC;EACC;AHzEF;AG4EC;EACC;AH1EF;AG4EE;EACC;AH1EH;;AG+EA;;;;8FAAA;AAMA;EACC;EACA;EACA;EACA;EACA;EACA;EACA;AH7ED;AGgFC;EACC;EACA;EACA;EACA;EACA;EACA;EACA;AH9EF;AGiFC;EACC;EACA;EACA;EACA;AH/EF;AGmFC;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;AHjFF;AEr0BC;EACC;AFu0BF;AGkFE;EACC;EACA;AHhFH;AGmFG;EACC;EACA;EACA;AHjFJ;AGoFI;EACC;EACA;AHlFL;AGuFE;EACC;EAGA;EACA;AHvFH;AG2FE;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;AHzFH;AG2FG;ED78BF;EACA;EACA;EACA;AFq3BD;;AG6FA;EACC;EACA;AH1FD;AG6FC;EACC;EACA;AH3FF;AG6FE;EACC;AH3FH;AGgGC;EACC;AH9FF;;AGkGA;;;;8FAAA;AAMA;EACC;EACA;EACA;AHhGD;AEh6BC;EACC;EACA;EACA;AFk6BF;AG8FC;EACC;EACA;EACA;AH5FF;AG+FC;EACC;EACA;EACA;EACA;AH7FF;AGgGC;EACC;EACA;AH9FF;AGiGC;EACC;EACA;EACA;EACA;AH/FF;AGkGC;EACC;EACA;EACA;AHhGF;AGmGC;EACC;EACA;AHjGF;AGoGC;EACC;AHlGF;AGsGC;EACC;;IAEC;IACA;IACA;IACA;EHpGD;AACF;;AGyGA;;EAEC;AHtGD;;AG0GA;EACC;AHvGD;;AG0GA;;;;8FAAA;AAOC;EACC;EACA;AHzGF;AG4GC;EACC;EACA;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LC;EACC;EACA;EACA;EACA;EAEA;EACA;EACA;EAEA;EACA;AHxLF;AG6LE;EAEC;AH5LH;;AGmMC;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;AHhMF;AGkME;EACC;EACA;AHhMH;AGmME;;EAEC;EACA;AHjMH;AGqMC;EACC;EACA;EACA;EACA;EACA;EACA;AHnMF;AGsMC;EACC;AHpMF;AGsME;EACC;AHpMH;AGuME;;EAEC;EACA;AHrMH;AGyME;EACC;AHvMH;AG0ME;EACC;AHxMH;AG6MC;EACC;IACC;EH3MD;EG6MA;IACC;EH3MD;AACF;;AG+MA;;;;+FAAA;AAKA;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;AH5MD;AG8MC;;;EAGC;EACA;EACA;EACA;AH5MF;AG+MC;EACC;EACA;EACA;AH7MF;AG+ME;EACC;EACA;EACA;AH7MH;AG+ME;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;AH7MH;AG8MG;EACC;AH5MJ;AGiNC;EACC;EACA;EACA;EACA;EACA;AH/MF;AGkNC;EACC;EACA;EACA;EACA;EACA;EACA;EACA;AHhNF;AGkNE;EACC;EACA;AHhNH;AGoNC;EACC;EACA;EACA;EACA;AHlNF;AGoNE;EACC;AHlNH;AGuNC;EAjFD;IAkFE;IACA;IACA;IACA;EHpNA;AACF;;AGsNA;EACC;EACA;EACA;EACA;EACA;EACA,mBFxvDU;EEyvDV;EACA;AHnND;;AGsNA;;;;+FAAA;AAMA;EAMC;;IAEC;IACA;EHzNA;AACF;AG4NA;;;;8FAAA;AAOC;EAEE;EACA;EACA;EACA;AH7NH;AGgOE;EARD;IAUG;IACA;EH9NF;AACF;AGkOC;EAEE;EACA;AHjOH;AGoOE;EAND;IAQG;IACA;EHlOF;AACF;AGuOE;EADD;IAGG;EHrOF;AACF;;AG0OA;;;;oEAAA;AAMC;EACC;AHxOF;;AG4OA;;;;+FAAA;AAMC;;EAEC;EACA,kBFnzDU;EEozDV,6CFhzDa;ADskDf;AG4OE;;EAEE;EACA;EACA;EACA;AH1OJ;AG8OE;;EAEE;EACA;EACA;EA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;;;iGAAA;EAsBA;EAgUA;;;;iGAAA;ALwnDD;AKviFC;;;;;EAKC;EACA;EAEC;EACA;EAED;EACA,qBJ4BS;EI3BT,6CJoEa;EInEb,kBJ8DU;EI5DV,cJ4BS;AD0gFX;AKpiFE;;;;;EACC,0BJiEO;EIhEP,qBJiCQ;ADygFX;AKviFE;;;;;EACC,yBJaQ;EIZR;AL6iFH;AK1iFE;;;;;EACC,cJYQ;ADoiFX;AKpiFE;EACC,yBJLQ;EIMR,cJFQ;ADwiFX;AK1hFE;;EAEC;AL4hFH;AKlhFC;EACC;EAEC;EACA;EAED;EACA;ALkhFF;AK1gFC;EACC;EACA;EAEC;EACA;EAED;EACA;EACA;AL0gFF;AKvgFE;EAEC,cJ1CQ;ADkjFX;AKrgFE;EACC;EACA;EACA;EACA;EACA;EACA;EACA;ALugFH;AKjgFE;EAEE;EACA;EAED;ALigFH;AKx/EC;;EAEC;EACA;EACA;EACA;EAEC;EACA;EACA,qBJ9FQ;EIgGT;EACA;ALw/EF;AKt/EE;;EACC,yBJ5FQ;EI6FR,qBJxFQ;ADilFX;AKt/EE;;;EAEC,yBJlGQ;EImGR,qBJ9FQ;ADulFX;AKv/EG;;;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;AL2/EJ;AKt/EE;;EACC;ALy/EH;AKt/EE;;EACC,yBJvIQ;EIwIR,qBJrIQ;AD8nFX;AK/+EI;;;EACC;ALm/EL;AKl+EG;EACC;ALo+EJ;AKn9EG;EACC;ALq9EJ;AKt8EE;;;;EAGE;ALy8EJ;AKr8EE;;EAEE;ALu8EJ;AKp8EG;;EAEE;ALs8EL;AK/7EE;;EACC;EACA;EACA;ALk8EH;AKx7EC;EACC;EACA;EACA;EACA,yBJzOS;EI0OT;AL07EF;AKx7EE;EACC,yBJ5OQ;ADsqFX;AKv7EE;EACC;ALy7EH;AKt7EE;EACC,yBJvOQ;AD+pFX;AKt7EG;EACC,yBJzOO;ADiqFX;AKr7EG;EACC;ALu7EJ;AKl7EE;;EAEC;ALo7EH;AKj7EE;EACC;EACA;EACA;EACA;EACA;ALm7EH;AK96EC;EACC;EACA;ALg7EF;AK96EE;EACC;EACA;EACA;EAEC;EACA;EACA;AL+6EJ;AK56EG;EAEE;AL66EL;AKz6EG;EAEE;AL06EL;AKt6EG;EACC;EAEC;EACA;ALu6EL;AK75EG;EAEE;EACA;AL85EL;AK15EG;EAEE;EACA;AL25EL;AK/4EC;EACC;EACA;EAEC;EAGA;EACA;EACA;EACA;EAED;EACA;EACA,kBJxTU;EI0TT;EACA;EACA,qBJlVQ;EIoVT;AL24EF;AKz4EE;EACC,qBJtVQ;EIuVR;EACA;AL24EH;AKh4EC;EACC;EACA;EACA;EAEC;EACA;EAED;EACA;EACA;EACA,qBJ/WS;EIgXT,kBJ1VU;EI4VV,cJlXS;ADivFX;AK73EE;EACC;EACA,qBJtXQ;EIuXR,cJvXQ;ADsvFX;AK73EE;EACC;EACA,0BJ7VO;EI8VP,cJ5XQ;AD2vFX;AKr3EC;EACC;ALu3EF;AK72EE;EACC;EACA;AL+2EH;AK52EE;EACC;EAEC;EACA;EAED;EAEC;EACA;EACA,qBJ9aO;EIgbR,6CJvYY;EIwYZ,kBJ7YS;EI+YT,cJ/aQ;ADwxFX;AKt2EE;EACC,0BJ3YO;EI4YP,qBJ3aQ;EI4aR,kBJrZS;AD6vFZ;AKt2EG;EACC;ALw2EJ;AKn2EI;EACC;EACA;ALq2EL;AK91EI;EACC;EACA;ALg2EL;AKz1EE;EACC;EAEC;AL01EJ;AKv1EG;EACC;EACA;ALy1EJ;AKp1EE;EAEE;EACA;EACA;EACA;ALq1EJ;AKj1EE;EACC;EACA;EAEC;EACA;EAED;EACA;EACA;EACA;ALi1EH;AK/0EG;EACC;EAEA;EACA,WAFY;EAGZ,YAHY;EAIZ;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA,yBJtgBO;ADs1FX;AK70EG;EACC,yBJ7fO;AD40FX;AKn0EC;EACC;EACA;EACA;ALq0EF;AKn0EE;EAEC,WADY;EAEZ,YAFY;EAGZ,yBJ/hBQ;ADm2FX;AKj0EE;EAEE;ALk0EJ;AK9zEE;EAEE;AL+zEJ;AKpzEC;EACC;EACA;EACA;EACA;ALszEF;AKpzEW;EACR;EACA;ALszEH;;AKnzEE;EACC;EACA;ALszEH;AKryEE;;;;;;;;;;;EACC;ALizEH;AK7yEG;;;;;;;;;;;EACC;EACA;EACA;EACA;EACA;EAEC;EACA;EACA;EACA;ALwzEL;AKrzEG;;;;;;;;;;;EACC;EACA;EACA;EAEC;ALg0EL;AK7zEI;;;;;;;;;;;EACC;EACA;ALy0EL;AKn0EE;;;;;;;;;;;EACC;EACA;AL+0EH;AK50EE;;;;;;;;;;;EACC;EACA;ALw1EH;AKr1EE;;;;;;;;;;;EACC;EACA;EACA;EACA;ALi2EH;AK71EE;;;;;;;;;;;EACC;ALy2EH;AKv2EY;EACR;ALy2EJ;;AKp2EE;;;;;;;;;;;EACC;EACA;EACA;EACA;EACA;ALi3EH;AK/2EG;;;;;;;;;;;EACC;EAEA;EACA;EACA;EACA;EACA;EACA,WANY;EAOZ,YAPY;EAQZ;EACA;EACA,yBJlqBO;EImqBP;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;AL03EJ;AKv3EG;;;;;;;;;;;EACC;ALm4EJ;AK13EG;;;;;;;;;;;EACC;EACA;ALs4EJ;AK/3EC;EACC;EACA;EACA;EACA;EACA;ALi4EF;AKh4EE;EACC;EACA;EACA;EACA;EACA;ALk4EH;AK/3EW;EAER;ALg4EH;;AK53EE;EACC;AL+3EH;AK73EY;EACR;AL+3EJ;;AK13EE;EACC;EACA;EACA;AL63EH;AK13EI;EACC;EAEA;EACA;EACA;EACA;EACA,WALY;EAMZ,YANY;EAOZ;EACA;EACA,yBJlvBM;EImvBN;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;AL23EL;AKz3Ec;EACR;EACA;AL23EN;;AKt3EG;EACC;EAEA;EACA;EACA;EACA;ALw3EJ;AKt3Ea;EACR;EACA;ALw3EL;;AKr3EI;EACC,yBJrxBM;EIsxBN;ALw3EL;AKl3EE;EACC;ALo3EH;AKh3EG;EACC;EACA;ALk3EJ;AK72EE;EACC;EACA;EACA;EACA;EAEC;EACA;EACA;EACA;EAED;AL62EH;AK32EG;EACC;EACA;EACA;EAEC;EAED;AL22EJ;AKz2EI;EACC;EACA;AL22EL;AKp2EE;EACC;EACA;ALs2EH;AKp2EG;EACC;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ACA;EAED,yBL/tBQ;ADghIX;AM7yGC;EACC;EACA;AN+yGF;AM5yGC;EACC;AN8yGF;AM1yGE;EACC;AN4yGH;;AMtyGA;;;;+FAAA;AAOC;EACC;EACA;EACA;EAEA;EACA;EACA;EACA;EACA;EAEA,yBLrvBS;EKsvBT;EACA,uBATY;EAUZ,eAVY;EAWZ;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;ANqyGF;AMlyGC;EACC;EACA;ANoyGF;;AM/xGA;;;;+FAAA;AAOC;EAEC;;;IAGC;EN+xGD;AACF;;AOpnIA;;;;+FAAA;AAKA;EACC;EACA;EACA;EACA;EACA,mBNyCU;EMxCV,cNqCU;ADklIX;AOrnIC;EACC;EACA;EACA;EACA;EACA;APunIF;AOrnIE;EACC;EACA;APunIH;AOrnIG;EACC;;IAEC;EPunIH;EOnnIG;;IAEC;EPqnIJ;AACF;AO/mIE;EACC;EACA;APinIH;AO9mIE;EACC;EACA;APgnIH;AO9mIG;EAJD;IAKE;EPinIF;AACF;AO7mIC;EAlDD;IAmDE;EPgnIA;AACF;AO9mIC;EACC;EAEC;EAED;AP8mIF;AO5mIE;EAEE;AP6mIJ;AOzmIE;EACC;EACA;EACA;AP2mIH;AOvmIC;EACC;EACA,cNrCS;AD8oIX;AOtmIC;EACC;EACA;EACA;EACA;EAEC;EAGA;EACA;EACA;EACA;EAGA;EACA;EACA;EAED,kBNpBU;EMsBV,cNzDS;EM0DT;APimIF;AO/lIE;EACC,yBN3DQ;EM4DR;APimIH;AO/lIE;EACC,yBN/DQ;EMgER,cNtEQ;ADuqIX;AO/lIE;EAEE;EACA;EACA,qBNvEO;ADuqIX;AO7lIE;EACC;AP+lIH;AOzlIG;EACC,yBNjFO;EMkFP,cNxFO;ADmrIX;AOvlIE;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EAEC;EACA;EACA;EACA;EAED;EACA,kBNnES;EMoET;APulIH;AOrlIG;EACC;EACA;EACA;EACA;EACA;EACA;APulIJ;AOrlII;EACC;EACA;EACA;EACA;APulIL;AOllIG;EACC;EACA;APolIJ;AOllII;;EAEC;APolIL;AOjlII;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;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;AdqsLF;AcnsLE;EAXD;;IAYE;EdusLD;AACF;AcrsLE;EAfD;;IAgBE;EdysLD;AACF;AcvsLE;;;;EAEC;EACA;Ad2sLH;AczsLG;;;;EACC;EACA;EACA;EACA;EACA;Ad8sLJ;AczsLE;;EACC;EACA;Ad4sLH;Ac1sLG;;EACC;EACA;Ad6sLJ;Ac1sLG;EATD;;IAUE;IACA;Ed8sLF;AACF;Ac1sLE;EAlDD;;IAmDE;IACA;IACA;IACA;IACA;IACA;IACA;Ed8sLD;Ec5sLC;;IACC;IACA;Ed+sLF;AACF;Ac5sLE;;EACC;EACA;EACA;Ad+sLH;Ac7sLG;;EACC;EACA;EACA;EACA;EACA,cbtIO;ADs1LX;Ac7sLG;EAbD;;IAcE;IACA;IAEC;IACA;EdgtLH;Ec7sLE;;;;IAEC;EditLH;AACF;Ac5sLE;;EACC;EACA;EACA;EACA;EACA;Ad+sLH;Ac7sLG;EAPD;;IAQE;IACA;IACA;EditLF;Ec/sLE;;IACC;IACA;IACA;EdktLH;AACF;Ac7sLE;;EACC;EACA;EACA;EACA;EACA;AdgtLH;Ac9sLG;;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;AditLJ;Ac/sLI;;EACC;EACA;EACA;EACA;AdktLL;AchtLK;;EACC;EACA;EACA;AdmtLN;AchtLK;EACC;;IAAY;IAAa;EdqtL7B;AACF;AcjtLI;;EACC;EACA;AdotLL;AcjtLI;;EACC;EACA;AdotLL;AcjtLI;;EACC;EACA;EACA;EACA;EACA;AdotLL;AchtLG;EAxDD;;IAyDE;IACA;IACA;EdotLF;EcltLE;;IACC;IACA;IACA;IACA;IACA;EdqtLH;EcltLG;;IACC;IACA;EdqtLJ;EcltLG;;IACC;EdqtLJ;AACF;AcjtLG;EAhFD;;IAiFE;IACA;IACA;IACA;IACA;IACA;EdqtLF;EcntLE;;IACC;IACA;IACA;IACA;IACA;IACA;IACA;IACA;EdstLH;EcptLG;;IACC;EdutLJ;EcptLG;;IACC;IACA;EdutLJ;EcrtLI;;IACC;IACA;Edwt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","sources":["webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/sass/acf-global.scss","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/sass/_variables.scss","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/sass/_mixins.scss","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/sass/_global.scss","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/sass/_typography.scss","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/sass/_admin-inputs.scss","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/sass/_list-table.scss","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/sass/_admin-toolbar.scss","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/sass/_acf-headerbar.scss","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/sass/_btn.scss","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/sass/_icons.scss","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/sass/_field-type-icons.scss","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/sass/_tools.scss","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/sass/_updates.scss","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/sass/_pro-upgrade.scss","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/sass/_post-types-taxonomies.scss","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/sass/_field-picker.scss"],"sourcesContent":["@charset \"UTF-8\";\n/*--------------------------------------------------------------------------------------------\n*\n*\tVars\n*\n*--------------------------------------------------------------------------------------------*/\n/* colors */\n/* acf-field */\n/* responsive */\n/*--------------------------------------------------------------------------------------------\n*\n*\tACF 6 ↓\n*\n*--------------------------------------------------------------------------------------------*/\n/*--------------------------------------------------------------------------------------------\n*\n* Mixins\n*\n*--------------------------------------------------------------------------------------------*/\n/*--------------------------------------------------------------------------------------------\n*\n* Global\n*\n*--------------------------------------------------------------------------------------------*/\n/* Horizontal List */\n.acf-hl {\n padding: 0;\n margin: 0;\n list-style: none;\n display: block;\n position: relative;\n}\n\n.acf-hl > li {\n float: left;\n display: block;\n margin: 0;\n padding: 0;\n}\n\n.acf-hl > li.acf-fr {\n float: right;\n}\n\n/* Horizontal List: Clearfix */\n.acf-hl:before,\n.acf-hl:after,\n.acf-bl:before,\n.acf-bl:after,\n.acf-cf:before,\n.acf-cf:after {\n content: \"\";\n display: block;\n line-height: 0;\n}\n\n.acf-hl:after,\n.acf-bl:after,\n.acf-cf:after {\n clear: both;\n}\n\n/* Block List */\n.acf-bl {\n padding: 0;\n margin: 0;\n list-style: none;\n display: block;\n position: relative;\n}\n\n.acf-bl > li {\n display: block;\n margin: 0;\n padding: 0;\n float: none;\n}\n\n/* Visibility */\n.acf-hidden {\n display: none !important;\n}\n\n.acf-empty {\n display: table-cell !important;\n}\n.acf-empty * {\n display: none !important;\n}\n\n/* Float */\n.acf-fl {\n float: left;\n}\n\n.acf-fr {\n float: right;\n}\n\n.acf-fn {\n float: none;\n}\n\n/* Align */\n.acf-al {\n text-align: left;\n}\n\n.acf-ar {\n text-align: right;\n}\n\n.acf-ac {\n text-align: center;\n}\n\n/* loading */\n.acf-loading,\n.acf-spinner {\n display: inline-block;\n height: 20px;\n width: 20px;\n vertical-align: text-top;\n background: transparent url(../../images/spinner.gif) no-repeat 50% 50%;\n}\n\n/* spinner */\n.acf-spinner {\n display: none;\n}\n\n.acf-spinner.is-active {\n display: inline-block;\n}\n\n/* WP < 4.2 */\n.spinner.is-active {\n display: inline-block;\n}\n\n/* required */\n.acf-required {\n color: #f00;\n}\n\n/* Allow pointer events in reusable blocks */\n.acf-button,\n.acf-tab-button {\n pointer-events: auto !important;\n}\n\n/* show on hover */\n.acf-soh .acf-soh-target {\n -webkit-transition: opacity 0.25s 0s ease-in-out, visibility 0s linear 0.25s;\n -moz-transition: opacity 0.25s 0s ease-in-out, visibility 0s linear 0.25s;\n -o-transition: opacity 0.25s 0s ease-in-out, visibility 0s linear 0.25s;\n transition: opacity 0.25s 0s ease-in-out, visibility 0s linear 0.25s;\n visibility: hidden;\n opacity: 0;\n}\n\n.acf-soh:hover .acf-soh-target {\n -webkit-transition-delay: 0s;\n -moz-transition-delay: 0s;\n -o-transition-delay: 0s;\n transition-delay: 0s;\n visibility: visible;\n opacity: 1;\n}\n\n/* show if value */\n.show-if-value {\n display: none;\n}\n\n.hide-if-value {\n display: block;\n}\n\n.has-value .show-if-value {\n display: block;\n}\n\n.has-value .hide-if-value {\n display: none;\n}\n\n/* select2 WP animation fix */\n.select2-search-choice-close {\n -webkit-transition: none;\n -moz-transition: none;\n -o-transition: none;\n transition: none;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* tooltip\n*\n*---------------------------------------------------------------------------------------------*/\n/* tooltip */\n.acf-tooltip {\n background: #1D2939;\n border-radius: 6px;\n color: #D0D5DD;\n padding-top: 8px;\n padding-right: 12px;\n padding-bottom: 10px;\n padding-left: 12px;\n position: absolute;\n z-index: 900000;\n max-width: 280px;\n box-shadow: 0px 12px 16px -4px rgba(16, 24, 40, 0.08), 0px 4px 6px -2px rgba(16, 24, 40, 0.03);\n /* tip */\n /* positions */\n}\n.acf-tooltip:before {\n border: solid;\n border-color: transparent;\n border-width: 6px;\n content: \"\";\n position: absolute;\n}\n.acf-tooltip.top {\n margin-top: -8px;\n}\n.acf-tooltip.top:before {\n top: 100%;\n left: 50%;\n margin-left: -6px;\n border-top-color: #2f353e;\n border-bottom-width: 0;\n}\n.acf-tooltip.right {\n margin-left: 8px;\n}\n.acf-tooltip.right:before {\n top: 50%;\n margin-top: -6px;\n right: 100%;\n border-right-color: #2f353e;\n border-left-width: 0;\n}\n.acf-tooltip.bottom {\n margin-top: 8px;\n}\n.acf-tooltip.bottom:before {\n bottom: 100%;\n left: 50%;\n margin-left: -6px;\n border-bottom-color: #2f353e;\n border-top-width: 0;\n}\n.acf-tooltip.left {\n margin-left: -8px;\n}\n.acf-tooltip.left:before {\n top: 50%;\n margin-top: -6px;\n left: 100%;\n border-left-color: #2f353e;\n border-right-width: 0;\n}\n.acf-tooltip .acf-overlay {\n z-index: -1;\n}\n\n/* confirm */\n.acf-tooltip.-confirm {\n z-index: 900001;\n}\n.acf-tooltip.-confirm a {\n text-decoration: none;\n color: #9ea3a8;\n}\n.acf-tooltip.-confirm a:hover {\n text-decoration: underline;\n}\n.acf-tooltip.-confirm a[data-event=confirm] {\n color: #f55e4f;\n}\n\n.acf-overlay {\n position: fixed;\n top: 0;\n bottom: 0;\n left: 0;\n right: 0;\n cursor: default;\n}\n\n.acf-tooltip-target {\n position: relative;\n z-index: 900002;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* loading\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-loading-overlay {\n position: absolute;\n top: 0;\n bottom: 0;\n left: 0;\n right: 0;\n cursor: default;\n z-index: 99;\n background: rgba(249, 249, 249, 0.5);\n}\n.acf-loading-overlay i {\n position: absolute;\n top: 50%;\n left: 50%;\n transform: translate(-50%, -50%);\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tacf-icon\n*\n*--------------------------------------------------------------------------------------------*/\n.acf-icon {\n display: inline-block;\n height: 28px;\n width: 28px;\n border: transparent solid 1px;\n border-radius: 100%;\n font-size: 20px;\n line-height: 21px;\n text-align: center;\n text-decoration: none;\n vertical-align: top;\n box-sizing: border-box;\n}\n.acf-icon:before {\n font-family: dashicons;\n display: inline-block;\n line-height: 1;\n font-weight: 400;\n font-style: normal;\n speak: none;\n text-decoration: inherit;\n text-transform: none;\n text-rendering: auto;\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n width: 1em;\n height: 1em;\n vertical-align: middle;\n text-align: center;\n}\n\n.acf-icon.-plus:before {\n content: \"\\f543\";\n}\n\n.acf-icon.-minus:before {\n content: \"\\f460\";\n}\n\n.acf-icon.-cancel:before {\n content: \"\\f335\";\n margin: -1px 0 0 -1px;\n}\n\n.acf-icon.-pencil:before {\n content: \"\\f464\";\n}\n\n.acf-icon.-location:before {\n content: \"\\f230\";\n}\n\n.acf-icon.-up:before {\n content: \"\\f343\";\n margin-top: -0.1em;\n}\n\n.acf-icon.-down:before {\n content: \"\\f347\";\n margin-top: 0.1em;\n}\n\n.acf-icon.-left:before {\n content: \"\\f341\";\n margin-left: -0.1em;\n}\n\n.acf-icon.-right:before {\n content: \"\\f345\";\n margin-left: 0.1em;\n}\n\n.acf-icon.-sync:before {\n content: \"\\f463\";\n}\n\n.acf-icon.-globe:before {\n content: \"\\f319\";\n margin-top: 0.1em;\n margin-left: 0.1em;\n}\n\n.acf-icon.-picture:before {\n content: \"\\f128\";\n}\n\n.acf-icon.-check:before {\n content: \"\\f147\";\n margin-left: -0.1em;\n}\n\n.acf-icon.-dot-3:before {\n content: \"\\f533\";\n margin-top: -0.1em;\n}\n\n.acf-icon.-arrow-combo:before {\n content: \"\\f156\";\n}\n\n.acf-icon.-arrow-up:before {\n content: \"\\f142\";\n margin-left: -0.1em;\n}\n\n.acf-icon.-arrow-down:before {\n content: \"\\f140\";\n margin-left: -0.1em;\n}\n\n.acf-icon.-search:before {\n content: \"\\f179\";\n}\n\n.acf-icon.-link-ext:before {\n content: \"\\f504\";\n}\n\n.acf-icon.-duplicate {\n position: relative;\n}\n.acf-icon.-duplicate:before, .acf-icon.-duplicate:after {\n content: \"\";\n display: block;\n box-sizing: border-box;\n width: 46%;\n height: 46%;\n position: absolute;\n top: 33%;\n left: 23%;\n}\n.acf-icon.-duplicate:before {\n margin: -1px 0 0 1px;\n box-shadow: 2px -2px 0px 0px currentColor;\n}\n.acf-icon.-duplicate:after {\n border: solid 2px currentColor;\n}\n\n.acf-icon.-trash {\n position: relative;\n}\n.acf-icon.-trash:before, .acf-icon.-trash:after {\n content: \"\";\n display: block;\n box-sizing: border-box;\n width: 46%;\n height: 46%;\n position: absolute;\n top: 33%;\n left: 23%;\n}\n.acf-icon.-trash:before {\n margin: -1px 0 0 1px;\n box-shadow: 2px -2px 0px 0px currentColor;\n}\n.acf-icon.-trash:after {\n border: solid 2px currentColor;\n}\n\n.acf-icon.-collapse:before {\n content: \"\\f142\";\n margin-left: -0.1em;\n}\n\n.-collapsed .acf-icon.-collapse:before {\n content: \"\\f140\";\n margin-left: -0.1em;\n}\n\nspan.acf-icon {\n color: #555d66;\n border-color: #b5bcc2;\n background-color: #fff;\n}\n\na.acf-icon {\n color: #555d66;\n border-color: #b5bcc2;\n background-color: #fff;\n position: relative;\n transition: none;\n cursor: pointer;\n}\na.acf-icon:hover {\n background: #f3f5f6;\n border-color: #0071a1;\n color: #0071a1;\n}\na.acf-icon.-minus:hover, a.acf-icon.-cancel:hover {\n background: #f7efef;\n border-color: #a10000;\n color: #dc3232;\n}\na.acf-icon:active, a.acf-icon:focus {\n outline: none;\n box-shadow: none;\n}\n\n.acf-icon.-clear {\n border-color: transparent;\n background: transparent;\n color: #444;\n}\n\n.acf-icon.light {\n border-color: transparent;\n background: #f5f5f5;\n color: #23282d;\n}\n\n.acf-icon.dark {\n border-color: transparent !important;\n background: #23282d;\n color: #eee;\n}\n\na.acf-icon.dark:hover {\n background: #191e23;\n color: #00b9eb;\n}\na.acf-icon.dark.-minus:hover, a.acf-icon.dark.-cancel:hover {\n color: #d54e21;\n}\n\n.acf-icon.grey {\n border-color: transparent !important;\n background: #b4b9be;\n color: #fff !important;\n}\n.acf-icon.grey:hover {\n background: #00a0d2;\n color: #fff;\n}\n.acf-icon.grey.-minus:hover, .acf-icon.grey.-cancel:hover {\n background: #32373c;\n}\n\n.acf-icon.small,\n.acf-icon.-small {\n width: 20px;\n height: 20px;\n line-height: 14px;\n font-size: 14px;\n}\n.acf-icon.small.-duplicate:before, .acf-icon.small.-duplicate:after,\n.acf-icon.-small.-duplicate:before,\n.acf-icon.-small.-duplicate:after {\n opacity: 0.8;\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tacf-box\n*\n*--------------------------------------------------------------------------------------------*/\n.acf-box {\n background: #ffffff;\n border: 1px solid #ccd0d4;\n position: relative;\n box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);\n /* title */\n /* footer */\n}\n.acf-box .title {\n border-bottom: 1px solid #ccd0d4;\n margin: 0;\n padding: 15px;\n}\n.acf-box .title h3 {\n display: flex;\n align-items: center;\n font-size: 14px;\n line-height: 1em;\n margin: 0;\n padding: 0;\n}\n.acf-box .inner {\n padding: 15px;\n}\n.acf-box h2 {\n color: #333333;\n font-size: 26px;\n line-height: 1.25em;\n margin: 0.25em 0 0.75em;\n padding: 0;\n}\n.acf-box h3 {\n margin: 1.5em 0 0;\n}\n.acf-box p {\n margin-top: 0.5em;\n}\n.acf-box a {\n text-decoration: none;\n}\n.acf-box i.dashicons-external {\n margin-top: -1px;\n}\n.acf-box .footer {\n border-top: 1px solid #ccd0d4;\n padding: 12px;\n font-size: 13px;\n line-height: 1.5;\n}\n.acf-box .footer p {\n margin: 0;\n}\n.acf-admin-3-8 .acf-box {\n border-color: #E5E5E5;\n}\n.acf-admin-3-8 .acf-box .title,\n.acf-admin-3-8 .acf-box .footer {\n border-color: #E5E5E5;\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tacf-notice\n*\n*--------------------------------------------------------------------------------------------*/\n.acf-notice {\n position: relative;\n display: block;\n color: #fff;\n margin: 5px 0 15px;\n padding: 3px 12px;\n background: #2a9bd9;\n border-left: #1f7db1 solid 3px;\n}\n.acf-notice p {\n font-size: 13px;\n line-height: 1.5;\n margin: 0.5em 0;\n text-shadow: none;\n color: inherit;\n}\n.acf-notice .acf-notice-dismiss {\n position: absolute;\n top: 9px;\n right: 12px;\n background: transparent !important;\n color: inherit !important;\n border-color: #fff !important;\n opacity: 0.75;\n}\n.acf-notice .acf-notice-dismiss:hover {\n opacity: 1;\n}\n.acf-notice.-dismiss {\n padding-right: 40px;\n}\n.acf-notice.-error {\n background: #d94f4f;\n border-color: #c92c2c;\n}\n.acf-notice.-success {\n background: #49ad52;\n border-color: #3a8941;\n}\n.acf-notice.-warning {\n background: #fd8d3b;\n border-color: #fc7009;\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tacf-table\n*\n*--------------------------------------------------------------------------------------------*/\n.acf-table {\n border: #ccd0d4 solid 1px;\n background: #fff;\n border-spacing: 0;\n border-radius: 0;\n table-layout: auto;\n padding: 0;\n margin: 0;\n width: 100%;\n clear: both;\n box-sizing: content-box;\n /* defaults */\n /* thead */\n /* tbody */\n /* -clear */\n}\n.acf-table > tbody > tr > th,\n.acf-table > tbody > tr > td,\n.acf-table > thead > tr > th,\n.acf-table > thead > tr > td {\n padding: 8px;\n vertical-align: top;\n background: #fff;\n text-align: left;\n border-style: solid;\n font-weight: normal;\n}\n.acf-table > tbody > tr > th,\n.acf-table > thead > tr > th {\n position: relative;\n color: #333333;\n}\n.acf-table > thead > tr > th {\n border-color: #d5d9dd;\n border-width: 0 0 1px 1px;\n}\n.acf-table > thead > tr > th:first-child {\n border-left-width: 0;\n}\n.acf-table > tbody > tr {\n z-index: 1;\n}\n.acf-table > tbody > tr > td {\n border-color: #eeeeee;\n border-width: 1px 0 0 1px;\n}\n.acf-table > tbody > tr > td:first-child {\n border-left-width: 0;\n}\n.acf-table > tbody > tr:first-child > td {\n border-top-width: 0;\n}\n.acf-table.-clear {\n border: 0 none;\n}\n.acf-table.-clear > tbody > tr > td,\n.acf-table.-clear > tbody > tr > th,\n.acf-table.-clear > thead > tr > td,\n.acf-table.-clear > thead > tr > th {\n border: 0 none;\n padding: 4px;\n}\n\n/* remove tr */\n.acf-remove-element {\n -webkit-transition: all 0.25s ease-out;\n -moz-transition: all 0.25s ease-out;\n -o-transition: all 0.25s ease-out;\n transition: all 0.25s ease-out;\n transform: translate(50px, 0);\n opacity: 0;\n}\n\n/* fade-up */\n.acf-fade-up {\n -webkit-transition: all 0.25s ease-out;\n -moz-transition: all 0.25s ease-out;\n -o-transition: all 0.25s ease-out;\n transition: all 0.25s ease-out;\n transform: translate(0, -10px);\n opacity: 0;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Fake table\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-thead,\n.acf-tbody,\n.acf-tfoot {\n width: 100%;\n padding: 0;\n margin: 0;\n}\n.acf-thead > li,\n.acf-tbody > li,\n.acf-tfoot > li {\n box-sizing: border-box;\n padding-top: 14px;\n font-size: 12px;\n line-height: 14px;\n}\n\n.acf-thead {\n border-bottom: #ccd0d4 solid 1px;\n color: #23282d;\n}\n.acf-thead > li {\n font-size: 14px;\n line-height: 1.4;\n font-weight: bold;\n}\n.acf-admin-3-8 .acf-thead {\n border-color: #dfdfdf;\n}\n\n.acf-tfoot {\n background: #f5f5f5;\n border-top: #d5d9dd solid 1px;\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tSettings\n*\n*--------------------------------------------------------------------------------------------*/\n.acf-settings-wrap #poststuff {\n padding-top: 15px;\n}\n.acf-settings-wrap .acf-box {\n margin: 20px 0;\n}\n.acf-settings-wrap table {\n margin: 0;\n}\n.acf-settings-wrap table .button {\n vertical-align: middle;\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tacf-popup\n*\n*--------------------------------------------------------------------------------------------*/\n#acf-popup {\n position: fixed;\n z-index: 900000;\n top: 0;\n left: 0;\n right: 0;\n bottom: 0;\n text-align: center;\n}\n#acf-popup .bg {\n position: absolute;\n top: 0;\n left: 0;\n right: 0;\n bottom: 0;\n z-index: 0;\n background: rgba(0, 0, 0, 0.25);\n}\n#acf-popup:before {\n content: \"\";\n display: inline-block;\n height: 100%;\n vertical-align: middle;\n}\n#acf-popup .acf-popup-box {\n display: inline-block;\n vertical-align: middle;\n z-index: 1;\n min-width: 300px;\n min-height: 160px;\n border-color: #aaaaaa;\n box-shadow: 0 5px 30px -5px rgba(0, 0, 0, 0.25);\n text-align: left;\n}\nhtml[dir=rtl] #acf-popup .acf-popup-box {\n text-align: right;\n}\n#acf-popup .acf-popup-box .title {\n min-height: 15px;\n line-height: 15px;\n}\n#acf-popup .acf-popup-box .title .acf-icon {\n position: absolute;\n top: 10px;\n right: 10px;\n}\nhtml[dir=rtl] #acf-popup .acf-popup-box .title .acf-icon {\n right: auto;\n left: 10px;\n}\n#acf-popup .acf-popup-box .inner {\n min-height: 50px;\n padding: 0;\n margin: 15px;\n}\n#acf-popup .acf-popup-box .loading {\n position: absolute;\n top: 45px;\n left: 0;\n right: 0;\n bottom: 0;\n z-index: 2;\n background: rgba(0, 0, 0, 0.1);\n display: none;\n}\n#acf-popup .acf-popup-box .loading i {\n position: absolute;\n top: 50%;\n left: 50%;\n transform: translate(-50%, -50%);\n}\n\n.acf-submit {\n margin-bottom: 0;\n line-height: 28px;\n}\n.acf-submit span {\n float: right;\n color: #999;\n}\n.acf-submit span.-error {\n color: #dd4232;\n}\n.acf-submit .button {\n margin-right: 5px;\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tupgrade notice\n*\n*--------------------------------------------------------------------------------------------*/\n#acf-upgrade-notice {\n position: relative;\n background: #fff;\n padding: 20px;\n}\n#acf-upgrade-notice:after {\n display: block;\n clear: both;\n content: \"\";\n}\n#acf-upgrade-notice .col-content {\n float: left;\n width: 55%;\n padding-left: 90px;\n}\n#acf-upgrade-notice .notice-container {\n display: flex;\n justify-content: space-between;\n align-items: flex-start;\n align-content: flex-start;\n}\n#acf-upgrade-notice .col-actions {\n float: right;\n text-align: center;\n}\n#acf-upgrade-notice img {\n float: left;\n width: 64px;\n height: 64px;\n margin: 0 0 0 -90px;\n}\n#acf-upgrade-notice h2 {\n display: inline-block;\n font-size: 16px;\n margin: 2px 0 6.5px;\n}\n#acf-upgrade-notice p {\n padding: 0;\n margin: 0;\n}\n#acf-upgrade-notice .button:before {\n margin-top: 11px;\n}\n@media screen and (max-width: 640px) {\n #acf-upgrade-notice .col-content,\n #acf-upgrade-notice .col-actions {\n float: none;\n padding-left: 90px;\n width: auto;\n text-align: left;\n }\n}\n\n#acf-upgrade-notice:has(.notice-container)::before,\n#acf-upgrade-notice:has(.notice-container)::after {\n display: none;\n}\n\n#acf-upgrade-notice:has(.notice-container) {\n padding-left: 20px !important;\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tWelcome\n*\n*--------------------------------------------------------------------------------------------*/\n.acf-wrap h1 {\n margin-top: 0;\n padding-top: 20px;\n}\n.acf-wrap .about-text {\n margin-top: 0.5em;\n min-height: 50px;\n}\n.acf-wrap .about-headline-callout {\n font-size: 2.4em;\n font-weight: 300;\n line-height: 1.3;\n margin: 1.1em 0 0.2em;\n text-align: center;\n}\n.acf-wrap .feature-section {\n padding: 40px 0;\n}\n.acf-wrap .feature-section h2 {\n margin-top: 20px;\n}\n.acf-wrap .changelog {\n list-style: disc;\n padding-left: 15px;\n}\n.acf-wrap .changelog li {\n margin: 0 0 0.75em;\n}\n.acf-wrap .acf-three-col {\n display: flex;\n flex-wrap: wrap;\n justify-content: space-between;\n}\n.acf-wrap .acf-three-col > div {\n flex: 1;\n align-self: flex-start;\n min-width: 31%;\n max-width: 31%;\n}\n@media screen and (max-width: 880px) {\n .acf-wrap .acf-three-col > div {\n min-width: 48%;\n }\n}\n@media screen and (max-width: 640px) {\n .acf-wrap .acf-three-col > div {\n min-width: 100%;\n }\n}\n.acf-wrap .acf-three-col h3 .badge {\n display: inline-block;\n vertical-align: top;\n border-radius: 5px;\n background: #fc9700;\n color: #fff;\n font-weight: normal;\n font-size: 12px;\n padding: 2px 5px;\n}\n.acf-wrap .acf-three-col img + h3 {\n margin-top: 0.5em;\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tacf-hl cols\n*\n*--------------------------------------------------------------------------------------------*/\n.acf-hl[data-cols] {\n margin-left: -10px;\n margin-right: -10px;\n}\n.acf-hl[data-cols] > li {\n padding: 0 6px 0 10px;\n -webkit-box-sizing: border-box;\n -moz-box-sizing: border-box;\n box-sizing: border-box;\n}\n\n/* sizes */\n.acf-hl[data-cols=\"2\"] > li {\n width: 50%;\n}\n\n.acf-hl[data-cols=\"3\"] > li {\n width: 33.333%;\n}\n\n.acf-hl[data-cols=\"4\"] > li {\n width: 25%;\n}\n\n/* mobile */\n@media screen and (max-width: 640px) {\n .acf-hl[data-cols] {\n flex-wrap: wrap;\n justify-content: flex-start;\n align-content: flex-start;\n align-items: flex-start;\n margin-left: 0;\n margin-right: 0;\n margin-top: -10px;\n }\n .acf-hl[data-cols] > li {\n flex: 1 1 100%;\n width: 100% !important;\n padding: 10px 0 0;\n }\n}\n/*--------------------------------------------------------------------------------------------\n*\n*\tmisc\n*\n*--------------------------------------------------------------------------------------------*/\n.acf-actions {\n text-align: right;\n z-index: 1;\n /* hover */\n /* rtl */\n}\n.acf-actions.-hover {\n position: absolute;\n display: none;\n top: 0;\n right: 0;\n padding: 5px;\n z-index: 1050;\n}\nhtml[dir=rtl] .acf-actions.-hover {\n right: auto;\n left: 0;\n}\n\n/* ul compatibility */\nul.acf-actions li {\n float: right;\n margin-left: 4px;\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tRTL\n*\n*--------------------------------------------------------------------------------------------*/\nhtml[dir=rtl] .acf-fl {\n float: right;\n}\n\nhtml[dir=rtl] .acf-fr {\n float: left;\n}\n\nhtml[dir=rtl] .acf-hl > li {\n float: right;\n}\n\nhtml[dir=rtl] .acf-hl > li.acf-fr {\n float: left;\n}\n\nhtml[dir=rtl] .acf-icon.logo {\n left: 0;\n right: auto;\n}\n\nhtml[dir=rtl] .acf-table thead th {\n text-align: right;\n border-right-width: 1px;\n border-left-width: 0px;\n}\n\nhtml[dir=rtl] .acf-table > tbody > tr > td {\n text-align: right;\n border-right-width: 1px;\n border-left-width: 0px;\n}\n\nhtml[dir=rtl] .acf-table > thead > tr > th:first-child,\nhtml[dir=rtl] .acf-table > tbody > tr > td:first-child {\n border-right-width: 0;\n}\n\nhtml[dir=rtl] .acf-table > tbody > tr > td.order + td {\n border-right-color: #e1e1e1;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* acf-postbox-columns\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-postbox-columns {\n position: relative;\n margin-top: -11px;\n margin-bottom: -12px;\n margin-left: -12px;\n margin-right: 268px;\n}\n.acf-postbox-columns:after {\n display: block;\n clear: both;\n content: \"\";\n}\n.acf-postbox-columns .acf-postbox-main,\n.acf-postbox-columns .acf-postbox-side {\n -webkit-box-sizing: border-box;\n -moz-box-sizing: border-box;\n box-sizing: border-box;\n padding: 0 12px 12px;\n}\n.acf-postbox-columns .acf-postbox-main {\n float: left;\n width: 100%;\n}\n.acf-postbox-columns .acf-postbox-side {\n float: right;\n width: 280px;\n margin-right: -280px;\n}\n.acf-postbox-columns .acf-postbox-side:before {\n content: \"\";\n display: block;\n position: absolute;\n width: 1px;\n height: 100%;\n top: 0;\n right: 0;\n background: #d5d9dd;\n}\n.acf-admin-3-8 .acf-postbox-columns .acf-postbox-side:before {\n background: #dfdfdf;\n}\n\n/* mobile */\n@media only screen and (max-width: 850px) {\n .acf-postbox-columns {\n margin: 0;\n }\n .acf-postbox-columns .acf-postbox-main,\n .acf-postbox-columns .acf-postbox-side {\n float: none;\n width: auto;\n margin: 0;\n padding: 0;\n }\n .acf-postbox-columns .acf-postbox-side {\n margin-top: 1em;\n }\n .acf-postbox-columns .acf-postbox-side:before {\n display: none;\n }\n}\n/*---------------------------------------------------------------------------------------------\n*\n* acf-panel\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-panel {\n margin-top: -1px;\n border-top: 1px solid #d5d9dd;\n border-bottom: 1px solid #d5d9dd;\n /* open */\n /* inside postbox */\n /* fields */\n}\n.acf-panel .acf-panel-title {\n margin: 0;\n padding: 12px;\n font-weight: bold;\n cursor: pointer;\n font-size: inherit;\n}\n.acf-panel .acf-panel-title i {\n float: right;\n}\n.acf-panel .acf-panel-inside {\n margin: 0;\n padding: 0 12px 12px;\n display: none;\n}\n.acf-panel.-open .acf-panel-inside {\n display: block;\n}\n.postbox .acf-panel {\n margin-left: -12px;\n margin-right: -12px;\n}\n.acf-panel .acf-field {\n margin: 20px 0 0;\n}\n.acf-panel .acf-field .acf-label label {\n color: #555d66;\n font-weight: normal;\n}\n.acf-panel .acf-field:first-child {\n margin-top: 0;\n}\n.acf-admin-3-8 .acf-panel {\n border-color: #dfdfdf;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Admin Tools\n*\n*---------------------------------------------------------------------------------------------*/\n#acf-admin-tools .notice {\n margin-top: 10px;\n}\n#acf-admin-tools .acf-meta-box-wrap {\n /* acf-fields */\n}\n#acf-admin-tools .acf-meta-box-wrap .inside {\n border-top: none;\n}\n#acf-admin-tools .acf-meta-box-wrap .acf-fields {\n margin-bottom: 24px;\n border: none;\n background: #fff;\n border-radius: 0;\n}\n#acf-admin-tools .acf-meta-box-wrap .acf-fields .acf-field {\n padding: 0;\n margin-bottom: 19px;\n border-top: none;\n}\n#acf-admin-tools .acf-meta-box-wrap .acf-fields .acf-label {\n margin-bottom: 16px;\n}\n#acf-admin-tools .acf-meta-box-wrap .acf-fields .acf-input {\n padding-top: 16px;\n padding-right: 16px;\n padding-bottom: 16px;\n padding-left: 16px;\n border-width: 1px;\n border-style: solid;\n border-color: #D0D5DD;\n border-radius: 6px;\n}\n#acf-admin-tools .acf-meta-box-wrap .acf-fields.import-cptui {\n margin-top: 19px;\n}\n\n.acf-meta-box-wrap .postbox {\n -webkit-box-sizing: border-box;\n -moz-box-sizing: border-box;\n box-sizing: border-box;\n}\n.acf-meta-box-wrap .postbox .inside {\n margin-bottom: 0;\n}\n.acf-meta-box-wrap .postbox .hndle {\n font-size: 14px;\n padding: 8px 12px;\n margin: 0;\n line-height: 1.4;\n position: relative;\n z-index: 1;\n cursor: default;\n}\n.acf-meta-box-wrap .postbox .handlediv,\n.acf-meta-box-wrap .postbox .handle-order-higher,\n.acf-meta-box-wrap .postbox .handle-order-lower {\n display: none;\n}\n\n/* grid */\n.acf-meta-box-wrap.-grid {\n margin-left: 8px;\n margin-right: 8px;\n}\n.acf-meta-box-wrap.-grid .postbox {\n float: left;\n clear: left;\n width: 50%;\n margin: 0 0 16px;\n}\n.acf-meta-box-wrap.-grid .postbox:nth-child(odd) {\n margin-left: -8px;\n}\n.acf-meta-box-wrap.-grid .postbox:nth-child(even) {\n float: right;\n clear: right;\n margin-right: -8px;\n}\n\n/* mobile */\n@media only screen and (max-width: 850px) {\n .acf-meta-box-wrap.-grid {\n margin-left: 0;\n margin-right: 0;\n }\n .acf-meta-box-wrap.-grid .postbox {\n margin-left: 0 !important;\n margin-right: 0 !important;\n width: 100%;\n }\n}\n/* export tool */\n#acf-admin-tool-export {\n /* panel: selection */\n}\n#acf-admin-tool-export p {\n max-width: 800px;\n}\n#acf-admin-tool-export ul {\n display: flex;\n flex-wrap: wrap;\n width: 100%;\n}\n#acf-admin-tool-export ul li {\n flex: 0 1 33.33%;\n}\n@media screen and (max-width: 1600px) {\n #acf-admin-tool-export ul li {\n flex: 0 1 50%;\n }\n}\n@media screen and (max-width: 1200px) {\n #acf-admin-tool-export ul li {\n flex: 0 1 100%;\n }\n}\n#acf-admin-tool-export .acf-postbox-side ul {\n display: block;\n}\n#acf-admin-tool-export .acf-postbox-side .button {\n margin: 0;\n width: 100%;\n}\n#acf-admin-tool-export textarea {\n display: block;\n width: 100%;\n min-height: 500px;\n background: #F9FAFB;\n border-color: #D0D5DD;\n box-shadow: none;\n padding: 7px;\n border-radius: 6px;\n}\n#acf-admin-tool-export .acf-panel-selection .acf-label label {\n font-weight: bold;\n color: #344054;\n}\n\n#acf-admin-tool-import ul {\n column-width: 200px;\n}\n\n.acf-css-tooltip {\n position: relative;\n}\n.acf-css-tooltip:before {\n content: attr(aria-label);\n display: none;\n position: absolute;\n z-index: 999;\n bottom: 100%;\n left: 50%;\n transform: translate(-50%, -8px);\n background: #191e23;\n border-radius: 2px;\n padding: 5px 10px;\n color: #fff;\n font-size: 12px;\n line-height: 1.4em;\n white-space: pre;\n}\n.acf-css-tooltip:after {\n content: \"\";\n display: none;\n position: absolute;\n z-index: 998;\n bottom: 100%;\n left: 50%;\n transform: translate(-50%, 4px);\n border: solid 6px transparent;\n border-top-color: #191e23;\n}\n.acf-css-tooltip:hover:before, .acf-css-tooltip:hover:after, .acf-css-tooltip:focus:before, .acf-css-tooltip:focus:after {\n display: block;\n}\n\n.acf-diff .acf-diff-title {\n position: absolute;\n top: 0;\n left: 0;\n right: 0;\n height: 40px;\n padding: 14px 16px;\n background: #f3f3f3;\n border-bottom: #dddddd solid 1px;\n}\n.acf-diff .acf-diff-title strong {\n font-size: 14px;\n display: block;\n}\n.acf-diff .acf-diff-title .acf-diff-title-left,\n.acf-diff .acf-diff-title .acf-diff-title-right {\n width: 50%;\n float: left;\n}\n.acf-diff .acf-diff-content {\n position: absolute;\n top: 70px;\n left: 0;\n right: 0;\n bottom: 0;\n overflow: auto;\n}\n.acf-diff table.diff {\n border-spacing: 0;\n}\n.acf-diff table.diff col.diffsplit.middle {\n width: 0;\n}\n.acf-diff table.diff td,\n.acf-diff table.diff th {\n padding-top: 0.25em;\n padding-bottom: 0.25em;\n}\n.acf-diff table.diff tr td:nth-child(2) {\n width: auto;\n}\n.acf-diff table.diff td:nth-child(3) {\n border-left: #dddddd solid 1px;\n}\n@media screen and (max-width: 600px) {\n .acf-diff .acf-diff-title {\n height: 70px;\n }\n .acf-diff .acf-diff-content {\n top: 100px;\n }\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Modal\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-modal {\n position: fixed;\n top: 30px;\n left: 30px;\n right: 30px;\n bottom: 30px;\n z-index: 160000;\n box-shadow: 0 5px 15px rgba(0, 0, 0, 0.7);\n background: #fcfcfc;\n}\n.acf-modal .acf-modal-title,\n.acf-modal .acf-modal-content,\n.acf-modal .acf-modal-toolbar {\n box-sizing: border-box;\n position: absolute;\n left: 0;\n right: 0;\n}\n.acf-modal .acf-modal-title {\n height: 50px;\n top: 0;\n border-bottom: 1px solid #ddd;\n}\n.acf-modal .acf-modal-title h2 {\n margin: 0;\n padding: 0 16px;\n line-height: 50px;\n}\n.acf-modal .acf-modal-title .acf-modal-close {\n position: absolute;\n top: 0;\n right: 0;\n height: 50px;\n width: 50px;\n border: none;\n border-left: 1px solid #ddd;\n background: transparent;\n cursor: pointer;\n color: #666;\n}\n.acf-modal .acf-modal-title .acf-modal-close:hover {\n color: #00a0d2;\n}\n.acf-modal .acf-modal-content {\n top: 50px;\n bottom: 60px;\n background: #fff;\n overflow: auto;\n padding: 16px;\n}\n.acf-modal .acf-modal-feedback {\n position: absolute;\n top: 50%;\n margin: -10px 0;\n left: 0;\n right: 0;\n text-align: center;\n opacity: 0.75;\n}\n.acf-modal .acf-modal-feedback.error {\n opacity: 1;\n color: #b52727;\n}\n.acf-modal .acf-modal-toolbar {\n height: 60px;\n bottom: 0;\n padding: 15px 16px;\n border-top: 1px solid #ddd;\n}\n.acf-modal .acf-modal-toolbar .button {\n float: right;\n}\n@media only screen and (max-width: 640px) {\n .acf-modal {\n top: 0;\n left: 0;\n right: 0;\n bottom: 0;\n }\n}\n\n.acf-modal-backdrop {\n position: fixed;\n top: 0;\n left: 0;\n right: 0;\n bottom: 0;\n background: #101828;\n opacity: 0.8;\n z-index: 159900;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Retina\n*\n*---------------------------------------------------------------------------------------------*/\n@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {\n .acf-loading,\n .acf-spinner {\n background-image: url(../../images/spinner@2x.gif);\n background-size: 20px 20px;\n }\n}\n/*--------------------------------------------------------------------------------------------\n*\n* Wrap\n*\n*--------------------------------------------------------------------------------------------*/\n.acf-admin-page .wrap {\n margin-top: 48px;\n margin-right: 32px;\n margin-bottom: 0;\n margin-left: 12px;\n}\n@media screen and (max-width: 768px) {\n .acf-admin-page .wrap {\n margin-right: 8px;\n margin-left: 8px;\n }\n}\n.acf-admin-page.rtl .wrap {\n margin-right: 12px;\n margin-left: 32px;\n}\n@media screen and (max-width: 768px) {\n .acf-admin-page.rtl .wrap {\n margin-right: 8px;\n margin-left: 8px;\n }\n}\n@media screen and (max-width: 768px) {\n .acf-admin-page #wpcontent {\n padding-left: 0;\n }\n}\n\n/*-------------------------------------------------------------------\n*\n* ACF Admin Page Footer Styles\n*\n*------------------------------------------------------------------*/\n.acf-admin-page #wpfooter {\n font-style: italic;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Admin Postbox & ACF Postbox\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-admin-page .postbox,\n.acf-admin-page .acf-box {\n border: none;\n border-radius: 8px;\n box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.1);\n}\n.acf-admin-page .postbox .inside,\n.acf-admin-page .acf-box .inside {\n padding-top: 24px;\n padding-right: 24px;\n padding-bottom: 24px;\n padding-left: 24px;\n}\n.acf-admin-page .postbox .acf-postbox-inner,\n.acf-admin-page .acf-box .acf-postbox-inner {\n margin-top: 0;\n margin-right: 0;\n margin-bottom: 0;\n margin-left: 0;\n padding-top: 24px;\n padding-right: 0;\n padding-bottom: 0;\n padding-left: 0;\n}\n.acf-admin-page .postbox .inner,\n.acf-admin-page .postbox .inside,\n.acf-admin-page .acf-box .inner,\n.acf-admin-page .acf-box .inside {\n margin-top: 0 !important;\n margin-right: 0 !important;\n margin-bottom: 0 !important;\n margin-left: 0 !important;\n border-top-width: 1px;\n border-top-style: solid;\n border-top-color: #EAECF0;\n}\n.acf-admin-page .postbox .postbox-header,\n.acf-admin-page .postbox .title,\n.acf-admin-page .acf-box .postbox-header,\n.acf-admin-page .acf-box .title {\n display: flex;\n align-items: center;\n box-sizing: border-box;\n min-height: 64px;\n margin-top: 0;\n margin-right: 0;\n margin-bottom: 0;\n margin-left: 0;\n padding-top: 0;\n padding-right: 24px;\n padding-bottom: 0;\n padding-left: 24px;\n border-bottom-width: 0;\n border-bottom-style: none;\n}\n.acf-admin-page .postbox .postbox-header h2,\n.acf-admin-page .postbox .postbox-header h3,\n.acf-admin-page .postbox .title h2,\n.acf-admin-page .postbox .title h3,\n.acf-admin-page .acf-box .postbox-header h2,\n.acf-admin-page .acf-box .postbox-header h3,\n.acf-admin-page .acf-box .title h2,\n.acf-admin-page .acf-box .title h3 {\n margin-top: 0;\n margin-right: 0;\n margin-bottom: 0;\n margin-left: 0;\n padding-top: 0;\n padding-right: 0;\n padding-bottom: 0;\n padding-left: 0;\n color: #344054;\n}\n.acf-admin-page .postbox .hndle,\n.acf-admin-page .acf-box .hndle {\n padding-top: 0;\n padding-right: 24px;\n padding-bottom: 0;\n padding-left: 24px;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Custom ACF postbox header\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-postbox-header {\n display: flex;\n align-items: center;\n justify-content: space-between;\n box-sizing: border-box;\n min-height: 64px;\n margin-top: -24px;\n margin-right: -24px;\n margin-bottom: 0;\n margin-left: -24px;\n padding-top: 0;\n padding-right: 24px;\n padding-bottom: 0;\n padding-left: 24px;\n border-bottom-width: 1px;\n border-bottom-style: solid;\n border-bottom-color: #EAECF0;\n}\n.acf-postbox-header h2.acf-postbox-title {\n margin-top: 0;\n margin-right: 0;\n margin-bottom: 0;\n margin-left: 0;\n padding-top: 0;\n padding-right: 24px;\n padding-bottom: 0;\n padding-left: 0;\n color: #344054;\n}\n.rtl .acf-postbox-header h2.acf-postbox-title {\n padding-right: 0;\n padding-left: 24px;\n}\n.acf-postbox-header .acf-icon {\n background-color: #98A2B3;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Screen options button & screen meta container\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-admin-page #screen-meta-links {\n margin-right: 32px;\n}\n.acf-admin-page #screen-meta-links .show-settings {\n border-color: #D0D5DD;\n}\n@media screen and (max-width: 768px) {\n .acf-admin-page #screen-meta-links {\n margin-right: 16px;\n margin-bottom: 0;\n }\n}\n.acf-admin-page.rtl #screen-meta-links {\n margin-right: 0;\n margin-left: 32px;\n}\n@media screen and (max-width: 768px) {\n .acf-admin-page.rtl #screen-meta-links {\n margin-right: 0;\n margin-left: 16px;\n }\n}\n.acf-admin-page #screen-meta {\n border-color: #D0D5DD;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Postbox headings\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-admin-page #poststuff .postbox-header h2,\n.acf-admin-page #poststuff .postbox-header h3 {\n justify-content: flex-start;\n margin-top: 0;\n margin-right: 0;\n margin-bottom: 0;\n margin-left: 0;\n padding-top: 0;\n padding-right: 0;\n padding-bottom: 0;\n padding-left: 0;\n color: #344054 !important;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Postbox drag state\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-admin-page.is-dragging-metaboxes .metabox-holder .postbox-container .meta-box-sortables {\n box-sizing: border-box;\n padding: 2px;\n outline: none;\n background-image: repeating-linear-gradient(0deg, #667085, #667085 5px, transparent 5px, transparent 10px, #667085 10px), repeating-linear-gradient(90deg, #667085, #667085 5px, transparent 5px, transparent 10px, #667085 10px), repeating-linear-gradient(180deg, #667085, #667085 5px, transparent 5px, transparent 10px, #667085 10px), repeating-linear-gradient(270deg, #667085, #667085 5px, transparent 5px, transparent 10px, #667085 10px);\n background-size: 1.5px 100%, 100% 1.5px, 1.5px 100%, 100% 1.5px;\n background-position: 0 0, 0 0, 100% 0, 0 100%;\n background-repeat: no-repeat;\n border-radius: 8px;\n}\n.acf-admin-page .ui-sortable-placeholder {\n border: none;\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n* Search summary\n*\n*--------------------------------------------------------------------------------------------*/\n.acf-admin-page .subtitle {\n display: inline-flex;\n align-items: center;\n height: 24px;\n margin: 0;\n padding-top: 4px;\n padding-right: 12px;\n padding-bottom: 4px;\n padding-left: 12px;\n background-color: #EBF5FA;\n border-width: 1px;\n border-style: solid;\n border-color: #A5D2E7;\n border-radius: 6px;\n}\n.acf-admin-page .subtitle strong {\n margin-left: 5px;\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n* Action strip\n*\n*--------------------------------------------------------------------------------------------*/\n.acf-actions-strip {\n display: flex;\n}\n.acf-actions-strip .acf-btn {\n margin-right: 8px;\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n* Notices\n*\n*--------------------------------------------------------------------------------------------*/\n.acf-admin-page .acf-notice,\n.acf-admin-page .notice,\n.acf-admin-page #lost-connection-notice {\n position: relative;\n box-sizing: border-box;\n min-height: 48px;\n margin-top: 0 !important;\n margin-right: 0 !important;\n margin-bottom: 16px !important;\n margin-left: 0 !important;\n padding-top: 13px !important;\n padding-right: 16px;\n padding-bottom: 12px !important;\n padding-left: 50px !important;\n background-color: #e7eff9;\n border-width: 1px;\n border-style: solid;\n border-color: #9dbaee;\n border-radius: 8px;\n box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.1);\n color: #344054;\n}\n.acf-admin-page .acf-notice.update-nag,\n.acf-admin-page .notice.update-nag,\n.acf-admin-page #lost-connection-notice.update-nag {\n display: block;\n position: relative;\n width: calc(100% - 44px);\n margin-top: 48px !important;\n margin-right: 44px !important;\n margin-bottom: -32px !important;\n margin-left: 12px !important;\n}\n.acf-admin-page .acf-notice .button,\n.acf-admin-page .notice .button,\n.acf-admin-page #lost-connection-notice .button {\n height: auto;\n margin-left: 8px;\n padding: 0;\n border: none;\n}\n.acf-admin-page .acf-notice > div,\n.acf-admin-page .notice > div,\n.acf-admin-page #lost-connection-notice > div {\n margin-top: 0;\n margin-bottom: 0;\n}\n.acf-admin-page .acf-notice p,\n.acf-admin-page .notice p,\n.acf-admin-page #lost-connection-notice p {\n flex: 1 0 auto;\n max-width: 100%;\n line-height: 18px;\n margin: 0;\n padding: 0;\n}\n.acf-admin-page .acf-notice p.help,\n.acf-admin-page .notice p.help,\n.acf-admin-page #lost-connection-notice p.help {\n margin-top: 0;\n padding-top: 0;\n color: rgba(52, 64, 84, 0.7);\n}\n.acf-admin-page .acf-notice .acf-notice-dismiss,\n.acf-admin-page .acf-notice .notice-dismiss,\n.acf-admin-page .notice .acf-notice-dismiss,\n.acf-admin-page .notice .notice-dismiss,\n.acf-admin-page #lost-connection-notice .acf-notice-dismiss,\n.acf-admin-page #lost-connection-notice .notice-dismiss {\n position: absolute;\n top: 4px;\n right: 8px;\n padding: 9px;\n border: none;\n}\n.acf-admin-page .acf-notice .acf-notice-dismiss:before,\n.acf-admin-page .acf-notice .notice-dismiss:before,\n.acf-admin-page .notice .acf-notice-dismiss:before,\n.acf-admin-page .notice .notice-dismiss:before,\n.acf-admin-page #lost-connection-notice .acf-notice-dismiss:before,\n.acf-admin-page #lost-connection-notice .notice-dismiss:before {\n content: \"\";\n display: block;\n position: relative;\n z-index: 600;\n width: 20px;\n height: 20px;\n background-color: #667085;\n border: none;\n border-radius: 0;\n -webkit-mask-size: contain;\n mask-size: contain;\n -webkit-mask-repeat: no-repeat;\n mask-repeat: no-repeat;\n -webkit-mask-position: center;\n mask-position: center;\n -webkit-mask-image: url(\"../../images/icons/icon-close.svg\");\n mask-image: url(\"../../images/icons/icon-close.svg\");\n}\n.acf-admin-page .acf-notice .acf-notice-dismiss:hover::before,\n.acf-admin-page .acf-notice .notice-dismiss:hover::before,\n.acf-admin-page .notice .acf-notice-dismiss:hover::before,\n.acf-admin-page .notice .notice-dismiss:hover::before,\n.acf-admin-page #lost-connection-notice .acf-notice-dismiss:hover::before,\n.acf-admin-page #lost-connection-notice .notice-dismiss:hover::before {\n background-color: #344054;\n}\n.acf-admin-page .acf-notice a.acf-notice-dismiss,\n.acf-admin-page .notice a.acf-notice-dismiss,\n.acf-admin-page #lost-connection-notice a.acf-notice-dismiss {\n position: absolute;\n top: 5px;\n right: 24px;\n}\n.acf-admin-page .acf-notice a.acf-notice-dismiss:before,\n.acf-admin-page .notice a.acf-notice-dismiss:before,\n.acf-admin-page #lost-connection-notice a.acf-notice-dismiss:before {\n background-color: #475467;\n}\n.acf-admin-page .acf-notice:before,\n.acf-admin-page .notice:before,\n.acf-admin-page #lost-connection-notice:before {\n content: \"\";\n display: block;\n position: absolute;\n top: 15px;\n left: 18px;\n z-index: 600;\n width: 16px;\n height: 16px;\n margin-right: 8px;\n background-color: #fff;\n border: none;\n border-radius: 0;\n -webkit-mask-size: contain;\n mask-size: contain;\n -webkit-mask-repeat: no-repeat;\n mask-repeat: no-repeat;\n -webkit-mask-position: center;\n mask-position: center;\n -webkit-mask-image: url(\"../../images/icons/icon-info-solid.svg\");\n mask-image: url(\"../../images/icons/icon-info-solid.svg\");\n}\n.acf-admin-page .acf-notice:after,\n.acf-admin-page .notice:after,\n.acf-admin-page #lost-connection-notice:after {\n content: \"\";\n display: block;\n position: absolute;\n top: 9px;\n left: 12px;\n z-index: 500;\n width: 28px;\n height: 28px;\n background-color: #2D69DA;\n border-radius: 6px;\n box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.1);\n}\n.acf-admin-page .acf-notice .local-restore,\n.acf-admin-page .notice .local-restore,\n.acf-admin-page #lost-connection-notice .local-restore {\n align-items: center;\n margin-top: -6px;\n margin-bottom: 0;\n}\n.acf-admin-page .notice[data-persisted=true] {\n display: none;\n}\n.acf-admin-page .notice.is-dismissible {\n padding-right: 56px;\n}\n.acf-admin-page .notice.notice-success {\n background-color: #edf7ef;\n border-color: #b6deb9;\n}\n.acf-admin-page .notice.notice-success:before {\n -webkit-mask-image: url(\"../../images/icons/icon-check-circle-solid.svg\");\n mask-image: url(\"../../images/icons/icon-check-circle-solid.svg\");\n}\n.acf-admin-page .notice.notice-success:after {\n background-color: #52AA59;\n}\n.acf-admin-page .acf-notice.acf-error-message,\n.acf-admin-page .notice.notice-error,\n.acf-admin-page #lost-connection-notice {\n background-color: #f7eeeb;\n border-color: #f1b6b3;\n}\n.acf-admin-page .acf-notice.acf-error-message:before,\n.acf-admin-page .notice.notice-error:before,\n.acf-admin-page #lost-connection-notice:before {\n -webkit-mask-image: url(\"../../images/icons/icon-warning.svg\");\n mask-image: url(\"../../images/icons/icon-warning.svg\");\n}\n.acf-admin-page .acf-notice.acf-error-message:after,\n.acf-admin-page .notice.notice-error:after,\n.acf-admin-page #lost-connection-notice:after {\n background-color: #D13737;\n}\n.acf-admin-page .notice.notice-warning {\n background: linear-gradient(0deg, rgba(247, 144, 9, 0.08), rgba(247, 144, 9, 0.08)), #FFFFFF;\n border: 1px solid rgba(247, 144, 9, 0.32);\n color: #344054;\n}\n.acf-admin-page .notice.notice-warning:before {\n -webkit-mask-image: url(\"../../images/icons/icon-alert-triangle.svg\");\n mask-image: url(\"../../images/icons/icon-alert-triangle.svg\");\n background: #f56e28;\n}\n.acf-admin-page .notice.notice-warning:after {\n content: none;\n}\n\n.acf-admin-single-taxonomy .notice-success .acf-item-saved-text,\n.acf-admin-single-post-type .notice-success .acf-item-saved-text,\n.acf-admin-single-options-page .notice-success .acf-item-saved-text {\n font-weight: 600;\n}\n.acf-admin-single-taxonomy .notice-success .acf-item-saved-links,\n.acf-admin-single-post-type .notice-success .acf-item-saved-links,\n.acf-admin-single-options-page .notice-success .acf-item-saved-links {\n display: flex;\n gap: 12px;\n}\n.acf-admin-single-taxonomy .notice-success .acf-item-saved-links a,\n.acf-admin-single-post-type .notice-success .acf-item-saved-links a,\n.acf-admin-single-options-page .notice-success .acf-item-saved-links a {\n text-decoration: none;\n opacity: 1;\n}\n.acf-admin-single-taxonomy .notice-success .acf-item-saved-links a:after,\n.acf-admin-single-post-type .notice-success .acf-item-saved-links a:after,\n.acf-admin-single-options-page .notice-success .acf-item-saved-links a:after {\n content: \"\";\n width: 1px;\n height: 13px;\n display: inline-flex;\n position: relative;\n top: 2px;\n left: 6px;\n background-color: #475467;\n opacity: 0.3;\n}\n.acf-admin-single-taxonomy .notice-success .acf-item-saved-links a:last-child:after,\n.acf-admin-single-post-type .notice-success .acf-item-saved-links a:last-child:after,\n.acf-admin-single-options-page .notice-success .acf-item-saved-links a:last-child:after {\n content: none;\n}\n\n.rtl.acf-field-group .notice,\n.rtl.acf-internal-post-type .notice {\n padding-right: 50px !important;\n}\n.rtl.acf-field-group .notice .notice-dismiss,\n.rtl.acf-internal-post-type .notice .notice-dismiss {\n left: 8px;\n right: unset;\n}\n.rtl.acf-field-group .notice:before,\n.rtl.acf-internal-post-type .notice:before {\n left: unset;\n right: 10px;\n}\n.rtl.acf-field-group .notice:after,\n.rtl.acf-internal-post-type .notice:after {\n left: unset;\n right: 12px;\n}\n.rtl.acf-field-group.acf-admin-single-taxonomy .notice-success .acf-item-saved-links a:after, .rtl.acf-field-group.acf-admin-single-post-type .notice-success .acf-item-saved-links a:after, .rtl.acf-field-group.acf-admin-single-options-page .notice-success .acf-item-saved-links a:after,\n.rtl.acf-internal-post-type.acf-admin-single-taxonomy .notice-success .acf-item-saved-links a:after,\n.rtl.acf-internal-post-type.acf-admin-single-post-type .notice-success .acf-item-saved-links a:after,\n.rtl.acf-internal-post-type.acf-admin-single-options-page .notice-success .acf-item-saved-links a:after {\n left: unset;\n right: 6px;\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n* ACF PRO label\n*\n*--------------------------------------------------------------------------------------------*/\n.acf-pro-label {\n display: inline-flex;\n align-items: center;\n min-height: 22px;\n padding-right: 8px;\n padding-left: 8px;\n background: linear-gradient(90.52deg, #3E8BFF 0.44%, #A45CFF 113.3%);\n box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);\n border: none;\n border-radius: 100px;\n font-size: 11px;\n text-transform: uppercase;\n text-decoration: none;\n color: #fff;\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n* Inline notice overrides\n*\n*--------------------------------------------------------------------------------------------*/\n.acf-admin-page .acf-field .acf-notice {\n display: flex;\n align-items: center;\n min-height: 40px !important;\n margin-bottom: 6px !important;\n padding-top: 6px !important;\n padding-left: 40px !important;\n padding-bottom: 6px !important;\n margin: 0 0 15px;\n background: #edf2ff;\n color: #344054 !important;\n border-color: #2183b9;\n border-radius: 6px;\n}\n.acf-admin-page .acf-field .acf-notice:after {\n top: 8px;\n left: 8px;\n width: 22px;\n height: 22px;\n}\n.acf-admin-page .acf-field .acf-notice:before {\n top: 12px;\n left: 12px;\n width: 14px;\n height: 14px;\n}\n.acf-admin-page .acf-field .acf-notice.-error {\n background: #f7eeeb;\n border-color: #f1b6b3;\n}\n.acf-admin-page .acf-field .acf-notice.-success {\n background: #edf7ef;\n border-color: #b6deb9;\n}\n.acf-admin-page .acf-field .acf-notice.-warning {\n background: #fdf8eb;\n border-color: #f4dbb4;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Global\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-admin-page #wpcontent {\n line-height: 140%;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Links\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-admin-page a {\n color: #0783BE;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Headings\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-h1, .acf-admin-page #tmpl-acf-field-group-pro-features h1,\n.acf-admin-page #acf-field-group-pro-features h1, .acf-admin-page h1,\n.acf-headerbar h1 {\n font-size: 21px;\n font-weight: 400;\n}\n\n.acf-h2, .acf-no-field-groups-wrapper .acf-no-field-groups-inner h2,\n.acf-no-field-groups-wrapper .acf-no-taxonomies-inner h2,\n.acf-no-field-groups-wrapper .acf-no-post-types-inner h2,\n.acf-no-field-groups-wrapper .acf-no-options-pages-inner h2,\n.acf-no-field-groups-wrapper .acf-options-preview-inner h2,\n.acf-no-taxonomies-wrapper .acf-no-field-groups-inner h2,\n.acf-no-taxonomies-wrapper .acf-no-taxonomies-inner h2,\n.acf-no-taxonomies-wrapper .acf-no-post-types-inner h2,\n.acf-no-taxonomies-wrapper .acf-no-options-pages-inner h2,\n.acf-no-taxonomies-wrapper .acf-options-preview-inner h2,\n.acf-no-post-types-wrapper .acf-no-field-groups-inner h2,\n.acf-no-post-types-wrapper .acf-no-taxonomies-inner h2,\n.acf-no-post-types-wrapper .acf-no-post-types-inner h2,\n.acf-no-post-types-wrapper .acf-no-options-pages-inner h2,\n.acf-no-post-types-wrapper .acf-options-preview-inner h2,\n.acf-no-options-pages-wrapper .acf-no-field-groups-inner h2,\n.acf-no-options-pages-wrapper .acf-no-taxonomies-inner h2,\n.acf-no-options-pages-wrapper .acf-no-post-types-inner h2,\n.acf-no-options-pages-wrapper .acf-no-options-pages-inner h2,\n.acf-no-options-pages-wrapper .acf-options-preview-inner h2,\n.acf-options-preview-wrapper .acf-no-field-groups-inner h2,\n.acf-options-preview-wrapper .acf-no-taxonomies-inner h2,\n.acf-options-preview-wrapper .acf-no-post-types-inner h2,\n.acf-options-preview-wrapper .acf-no-options-pages-inner h2,\n.acf-options-preview-wrapper .acf-options-preview-inner h2, .acf-page-title, .acf-admin-page h2,\n.acf-headerbar h2 {\n font-size: 18px;\n font-weight: 400;\n}\n\n.acf-h3, .acf-admin-page h3,\n.acf-headerbar h3, .acf-admin-page .postbox .postbox-header h2,\n.acf-admin-page .postbox .postbox-header h3,\n.acf-admin-page .postbox .title h2,\n.acf-admin-page .postbox .title h3,\n.acf-admin-page .acf-box .postbox-header h2,\n.acf-admin-page .acf-box .postbox-header h3,\n.acf-admin-page .acf-box .title h2,\n.acf-admin-page .acf-box .title h3, .acf-postbox-header h2.acf-postbox-title, .acf-admin-page #poststuff .postbox-header h2,\n.acf-admin-page #poststuff .postbox-header h3 {\n font-size: 16px;\n font-weight: 400;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Paragraphs\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-admin-page .p1 {\n font-size: 15px;\n}\n.acf-admin-page .p2, .acf-admin-page .acf-no-field-groups-wrapper .acf-no-field-groups-inner p, .acf-no-field-groups-wrapper .acf-no-field-groups-inner .acf-admin-page p,\n.acf-admin-page .acf-no-field-groups-wrapper .acf-no-taxonomies-inner p,\n.acf-no-field-groups-wrapper .acf-no-taxonomies-inner .acf-admin-page p,\n.acf-admin-page .acf-no-field-groups-wrapper .acf-no-post-types-inner p,\n.acf-no-field-groups-wrapper .acf-no-post-types-inner .acf-admin-page p,\n.acf-admin-page .acf-no-field-groups-wrapper .acf-no-options-pages-inner p,\n.acf-no-field-groups-wrapper .acf-no-options-pages-inner .acf-admin-page p,\n.acf-admin-page .acf-no-field-groups-wrapper .acf-options-preview-inner p,\n.acf-no-field-groups-wrapper .acf-options-preview-inner .acf-admin-page p,\n.acf-admin-page .acf-no-taxonomies-wrapper .acf-no-field-groups-inner p,\n.acf-no-taxonomies-wrapper .acf-no-field-groups-inner .acf-admin-page p,\n.acf-admin-page .acf-no-taxonomies-wrapper .acf-no-taxonomies-inner p,\n.acf-no-taxonomies-wrapper .acf-no-taxonomies-inner .acf-admin-page p,\n.acf-admin-page .acf-no-taxonomies-wrapper .acf-no-post-types-inner p,\n.acf-no-taxonomies-wrapper .acf-no-post-types-inner .acf-admin-page p,\n.acf-admin-page .acf-no-taxonomies-wrapper .acf-no-options-pages-inner p,\n.acf-no-taxonomies-wrapper .acf-no-options-pages-inner .acf-admin-page p,\n.acf-admin-page .acf-no-taxonomies-wrapper .acf-options-preview-inner p,\n.acf-no-taxonomies-wrapper .acf-options-preview-inner .acf-admin-page p,\n.acf-admin-page .acf-no-post-types-wrapper .acf-no-field-groups-inner p,\n.acf-no-post-types-wrapper .acf-no-field-groups-inner .acf-admin-page p,\n.acf-admin-page .acf-no-post-types-wrapper .acf-no-taxonomies-inner p,\n.acf-no-post-types-wrapper .acf-no-taxonomies-inner .acf-admin-page p,\n.acf-admin-page .acf-no-post-types-wrapper .acf-no-post-types-inner p,\n.acf-no-post-types-wrapper .acf-no-post-types-inner .acf-admin-page p,\n.acf-admin-page .acf-no-post-types-wrapper .acf-no-options-pages-inner p,\n.acf-no-post-types-wrapper .acf-no-options-pages-inner .acf-admin-page p,\n.acf-admin-page .acf-no-post-types-wrapper .acf-options-preview-inner p,\n.acf-no-post-types-wrapper .acf-options-preview-inner .acf-admin-page p,\n.acf-admin-page .acf-no-options-pages-wrapper .acf-no-field-groups-inner p,\n.acf-no-options-pages-wrapper .acf-no-field-groups-inner .acf-admin-page p,\n.acf-admin-page .acf-no-options-pages-wrapper .acf-no-taxonomies-inner p,\n.acf-no-options-pages-wrapper .acf-no-taxonomies-inner .acf-admin-page p,\n.acf-admin-page .acf-no-options-pages-wrapper .acf-no-post-types-inner p,\n.acf-no-options-pages-wrapper .acf-no-post-types-inner .acf-admin-page p,\n.acf-admin-page .acf-no-options-pages-wrapper .acf-no-options-pages-inner p,\n.acf-no-options-pages-wrapper .acf-no-options-pages-inner .acf-admin-page p,\n.acf-admin-page .acf-no-options-pages-wrapper .acf-options-preview-inner p,\n.acf-no-options-pages-wrapper .acf-options-preview-inner .acf-admin-page p,\n.acf-admin-page .acf-options-preview-wrapper .acf-no-field-groups-inner p,\n.acf-options-preview-wrapper .acf-no-field-groups-inner .acf-admin-page p,\n.acf-admin-page .acf-options-preview-wrapper .acf-no-taxonomies-inner p,\n.acf-options-preview-wrapper .acf-no-taxonomies-inner .acf-admin-page p,\n.acf-admin-page .acf-options-preview-wrapper .acf-no-post-types-inner p,\n.acf-options-preview-wrapper .acf-no-post-types-inner .acf-admin-page p,\n.acf-admin-page .acf-options-preview-wrapper .acf-no-options-pages-inner p,\n.acf-options-preview-wrapper .acf-no-options-pages-inner .acf-admin-page p,\n.acf-admin-page .acf-options-preview-wrapper .acf-options-preview-inner p,\n.acf-options-preview-wrapper .acf-options-preview-inner .acf-admin-page p, .acf-admin-page #acf-admin-tools .acf-meta-box-wrap .acf-fields .acf-label, #acf-admin-tools .acf-meta-box-wrap .acf-fields .acf-admin-page .acf-label {\n font-size: 14px;\n}\n.acf-admin-page .p3, .acf-admin-page .acf-internal-post-type .wp-list-table .post-state, .acf-internal-post-type .wp-list-table .acf-admin-page .post-state, .acf-admin-page .subtitle {\n font-size: 13.5px;\n}\n.acf-admin-page .p4, .acf-admin-page .acf-admin-toolbar a.acf-admin-toolbar-upgrade-btn p, .acf-admin-toolbar a.acf-admin-toolbar-upgrade-btn .acf-admin-page p, .acf-admin-page #acf-update-information .form-table th, #acf-update-information .form-table .acf-admin-page th,\n.acf-admin-page #acf-update-information .form-table td,\n#acf-update-information .form-table .acf-admin-page td, .acf-admin-page #acf-admin-tools.tool-export .acf-panel h3, #acf-admin-tools.tool-export .acf-panel .acf-admin-page h3, .acf-admin-page .acf-btn.acf-btn-sm, .acf-admin-page .acf-admin-toolbar .acf-tab, .acf-admin-toolbar .acf-admin-page .acf-tab, .acf-admin-page .acf-options-preview .acf-options-pages-preview-upgrade-button p, .acf-options-preview .acf-options-pages-preview-upgrade-button .acf-admin-page p, .acf-admin-page .acf-internal-post-type .subsubsub li, .acf-internal-post-type .subsubsub .acf-admin-page li, .acf-admin-page .acf-internal-post-type .wp-list-table tbody th, .acf-internal-post-type .wp-list-table tbody .acf-admin-page th,\n.acf-admin-page .acf-internal-post-type .wp-list-table tbody td,\n.acf-internal-post-type .wp-list-table tbody .acf-admin-page td, .acf-admin-page .acf-internal-post-type .wp-list-table thead th, .acf-internal-post-type .wp-list-table thead .acf-admin-page th, .acf-admin-page .acf-internal-post-type .wp-list-table thead td, .acf-internal-post-type .wp-list-table thead .acf-admin-page td,\n.acf-admin-page .acf-internal-post-type .wp-list-table tfoot th,\n.acf-internal-post-type .wp-list-table tfoot .acf-admin-page th, .acf-admin-page .acf-internal-post-type .wp-list-table tfoot td, .acf-internal-post-type .wp-list-table tfoot .acf-admin-page td, .acf-admin-page .acf-input .select2-container.-acf .select2-selection__rendered, .acf-admin-page .button, .acf-admin-page input[type=text],\n.acf-admin-page input[type=search],\n.acf-admin-page input[type=number],\n.acf-admin-page textarea,\n.acf-admin-page select {\n font-size: 13px;\n}\n.acf-admin-page .p5, .acf-admin-page .acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-content .acf-field-types-tab .acf-field-type .field-type-label, .acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-content .acf-field-types-tab .acf-field-type .acf-admin-page .field-type-label,\n.acf-admin-page .acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-content .acf-field-type-search-results .acf-field-type .field-type-label,\n.acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-content .acf-field-type-search-results .acf-field-type .acf-admin-page .field-type-label, .acf-admin-page .acf-internal-post-type .row-actions, .acf-internal-post-type .acf-admin-page .row-actions, .acf-admin-page .acf-notice .button,\n.acf-admin-page .notice .button,\n.acf-admin-page #lost-connection-notice .button {\n font-size: 12.5px;\n}\n.acf-admin-page .p6, .acf-admin-page #acf-update-information .acf-update-changelog p em, #acf-update-information .acf-update-changelog p .acf-admin-page em, .acf-admin-page .acf-no-field-groups-wrapper .acf-no-field-groups-inner p.acf-small, .acf-no-field-groups-wrapper .acf-no-field-groups-inner .acf-admin-page p.acf-small,\n.acf-admin-page .acf-no-field-groups-wrapper .acf-no-taxonomies-inner p.acf-small,\n.acf-no-field-groups-wrapper .acf-no-taxonomies-inner .acf-admin-page p.acf-small,\n.acf-admin-page .acf-no-field-groups-wrapper .acf-no-post-types-inner p.acf-small,\n.acf-no-field-groups-wrapper .acf-no-post-types-inner .acf-admin-page p.acf-small,\n.acf-admin-page .acf-no-field-groups-wrapper .acf-no-options-pages-inner p.acf-small,\n.acf-no-field-groups-wrapper .acf-no-options-pages-inner .acf-admin-page p.acf-small,\n.acf-admin-page .acf-no-field-groups-wrapper .acf-options-preview-inner p.acf-small,\n.acf-no-field-groups-wrapper .acf-options-preview-inner .acf-admin-page p.acf-small,\n.acf-admin-page .acf-no-taxonomies-wrapper .acf-no-field-groups-inner p.acf-small,\n.acf-no-taxonomies-wrapper .acf-no-field-groups-inner .acf-admin-page p.acf-small,\n.acf-admin-page .acf-no-taxonomies-wrapper .acf-no-taxonomies-inner p.acf-small,\n.acf-no-taxonomies-wrapper .acf-no-taxonomies-inner .acf-admin-page p.acf-small,\n.acf-admin-page .acf-no-taxonomies-wrapper .acf-no-post-types-inner p.acf-small,\n.acf-no-taxonomies-wrapper .acf-no-post-types-inner .acf-admin-page p.acf-small,\n.acf-admin-page .acf-no-taxonomies-wrapper .acf-no-options-pages-inner p.acf-small,\n.acf-no-taxonomies-wrapper .acf-no-options-pages-inner .acf-admin-page p.acf-small,\n.acf-admin-page .acf-no-taxonomies-wrapper .acf-options-preview-inner p.acf-small,\n.acf-no-taxonomies-wrapper .acf-options-preview-inner .acf-admin-page p.acf-small,\n.acf-admin-page .acf-no-post-types-wrapper .acf-no-field-groups-inner p.acf-small,\n.acf-no-post-types-wrapper .acf-no-field-groups-inner .acf-admin-page p.acf-small,\n.acf-admin-page .acf-no-post-types-wrapper .acf-no-taxonomies-inner p.acf-small,\n.acf-no-post-types-wrapper .acf-no-taxonomies-inner .acf-admin-page p.acf-small,\n.acf-admin-page .acf-no-post-types-wrapper .acf-no-post-types-inner p.acf-small,\n.acf-no-post-types-wrapper .acf-no-post-types-inner .acf-admin-page p.acf-small,\n.acf-admin-page .acf-no-post-types-wrapper .acf-no-options-pages-inner p.acf-small,\n.acf-no-post-types-wrapper .acf-no-options-pages-inner .acf-admin-page p.acf-small,\n.acf-admin-page .acf-no-post-types-wrapper .acf-options-preview-inner p.acf-small,\n.acf-no-post-types-wrapper .acf-options-preview-inner .acf-admin-page p.acf-small,\n.acf-admin-page .acf-no-options-pages-wrapper .acf-no-field-groups-inner p.acf-small,\n.acf-no-options-pages-wrapper .acf-no-field-groups-inner .acf-admin-page p.acf-small,\n.acf-admin-page .acf-no-options-pages-wrapper .acf-no-taxonomies-inner p.acf-small,\n.acf-no-options-pages-wrapper .acf-no-taxonomies-inner .acf-admin-page p.acf-small,\n.acf-admin-page .acf-no-options-pages-wrapper .acf-no-post-types-inner p.acf-small,\n.acf-no-options-pages-wrapper .acf-no-post-types-inner .acf-admin-page p.acf-small,\n.acf-admin-page .acf-no-options-pages-wrapper .acf-no-options-pages-inner p.acf-small,\n.acf-no-options-pages-wrapper .acf-no-options-pages-inner .acf-admin-page p.acf-small,\n.acf-admin-page .acf-no-options-pages-wrapper .acf-options-preview-inner p.acf-small,\n.acf-no-options-pages-wrapper .acf-options-preview-inner .acf-admin-page p.acf-small,\n.acf-admin-page .acf-options-preview-wrapper .acf-no-field-groups-inner p.acf-small,\n.acf-options-preview-wrapper .acf-no-field-groups-inner .acf-admin-page p.acf-small,\n.acf-admin-page .acf-options-preview-wrapper .acf-no-taxonomies-inner p.acf-small,\n.acf-options-preview-wrapper .acf-no-taxonomies-inner .acf-admin-page p.acf-small,\n.acf-admin-page .acf-options-preview-wrapper .acf-no-post-types-inner p.acf-small,\n.acf-options-preview-wrapper .acf-no-post-types-inner .acf-admin-page p.acf-small,\n.acf-admin-page .acf-options-preview-wrapper .acf-no-options-pages-inner p.acf-small,\n.acf-options-preview-wrapper .acf-no-options-pages-inner .acf-admin-page p.acf-small,\n.acf-admin-page .acf-options-preview-wrapper .acf-options-preview-inner p.acf-small,\n.acf-options-preview-wrapper .acf-options-preview-inner .acf-admin-page p.acf-small, .acf-admin-page .acf-internal-post-type .row-actions, .acf-internal-post-type .acf-admin-page .row-actions, .acf-admin-page .acf-small {\n font-size: 12px;\n}\n.acf-admin-page .p7, .acf-admin-page .acf-tooltip, .acf-admin-page .acf-notice p.help,\n.acf-admin-page .notice p.help,\n.acf-admin-page #lost-connection-notice p.help {\n font-size: 11.5px;\n}\n.acf-admin-page .p8 {\n font-size: 11px;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Page titles\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-page-title {\n color: #344054;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Hide old / native WP titles from pages\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-admin-page .acf-settings-wrap h1 {\n display: none !important;\n}\n.acf-admin-page #acf-admin-tools h1:not(.acf-field-group-pro-features-title, .acf-field-group-pro-features-title-sm) {\n display: none !important;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Small\n*\n*---------------------------------------------------------------------------------------------*/\n/*---------------------------------------------------------------------------------------------\n*\n* Link focus style\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-admin-page a:focus {\n box-shadow: none;\n outline: none;\n}\n.acf-admin-page a:focus-visible {\n box-shadow: 0 0 0 1px #4f94d4, 0 0 2px 1px rgba(79, 148, 212, 0.8);\n outline: 1px solid transparent;\n}\n\n.acf-admin-page {\n /*---------------------------------------------------------------------------------------------\n *\n * All Inputs\n *\n *---------------------------------------------------------------------------------------------*/\n /*---------------------------------------------------------------------------------------------\n *\n * Read only text inputs\n *\n *---------------------------------------------------------------------------------------------*/\n /*---------------------------------------------------------------------------------------------\n *\n * Number fields\n *\n *---------------------------------------------------------------------------------------------*/\n /*---------------------------------------------------------------------------------------------\n *\n * Textarea\n *\n *---------------------------------------------------------------------------------------------*/\n /*---------------------------------------------------------------------------------------------\n *\n * Select\n *\n *---------------------------------------------------------------------------------------------*/\n /*---------------------------------------------------------------------------------------------\n *\n * Radio Button & Checkbox base styling\n *\n *---------------------------------------------------------------------------------------------*/\n /*---------------------------------------------------------------------------------------------\n *\n * Radio Buttons\n *\n *---------------------------------------------------------------------------------------------*/\n /*---------------------------------------------------------------------------------------------\n *\n * Checkboxes\n *\n *---------------------------------------------------------------------------------------------*/\n /*---------------------------------------------------------------------------------------------\n *\n * Radio Buttons & Checkbox lists\n *\n *---------------------------------------------------------------------------------------------*/\n /*---------------------------------------------------------------------------------------------\n *\n * ACF Switch\n *\n *---------------------------------------------------------------------------------------------*/\n /*---------------------------------------------------------------------------------------------\n *\n * File input button\n *\n *---------------------------------------------------------------------------------------------*/\n /*---------------------------------------------------------------------------------------------\n *\n * Action Buttons\n *\n *---------------------------------------------------------------------------------------------*/\n /*---------------------------------------------------------------------------------------------\n *\n * Edit field group header\n *\n *---------------------------------------------------------------------------------------------*/\n /*---------------------------------------------------------------------------------------------\n *\n * Select2 inputs\n *\n *---------------------------------------------------------------------------------------------*/\n /*---------------------------------------------------------------------------------------------\n *\n * ACF label\n *\n *---------------------------------------------------------------------------------------------*/\n /*---------------------------------------------------------------------------------------------\n *\n * Tooltip for field name field setting (result of a fix for keyboard navigation)\n *\n *---------------------------------------------------------------------------------------------*/\n /* Field Type Selection select2 */\n /*---------------------------------------------------------------------------------------------\n *\n * RTL arrow position\n *\n *---------------------------------------------------------------------------------------------*/\n}\n.acf-admin-page input[type=text],\n.acf-admin-page input[type=search],\n.acf-admin-page input[type=number],\n.acf-admin-page textarea,\n.acf-admin-page select {\n box-sizing: border-box;\n height: 40px;\n padding-right: 12px;\n padding-left: 12px;\n background-color: #fff;\n border-color: #D0D5DD;\n box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.1);\n border-radius: 6px;\n color: #344054;\n}\n.acf-admin-page input[type=text]:focus,\n.acf-admin-page input[type=search]:focus,\n.acf-admin-page input[type=number]:focus,\n.acf-admin-page textarea:focus,\n.acf-admin-page select:focus {\n outline: 3px solid #EBF5FA;\n border-color: #399CCB;\n}\n.acf-admin-page input[type=text]:disabled,\n.acf-admin-page input[type=search]:disabled,\n.acf-admin-page input[type=number]:disabled,\n.acf-admin-page textarea:disabled,\n.acf-admin-page select:disabled {\n background-color: #F9FAFB;\n color: #808a9e;\n}\n.acf-admin-page input[type=text]::placeholder,\n.acf-admin-page input[type=search]::placeholder,\n.acf-admin-page input[type=number]::placeholder,\n.acf-admin-page textarea::placeholder,\n.acf-admin-page select::placeholder {\n color: #98A2B3;\n}\n.acf-admin-page input[type=text]:read-only {\n background-color: #F9FAFB;\n color: #98A2B3;\n}\n.acf-admin-page .acf-field.acf-field-number .acf-label,\n.acf-admin-page .acf-field.acf-field-number .acf-input input[type=number] {\n max-width: 180px;\n}\n.acf-admin-page textarea {\n box-sizing: border-box;\n padding-top: 10px;\n padding-bottom: 10px;\n height: 80px;\n min-height: 56px;\n}\n.acf-admin-page select {\n min-width: 160px;\n max-width: 100%;\n padding-right: 40px;\n padding-left: 12px;\n background-image: url(\"../../images/icons/icon-chevron-down.svg\");\n background-position: right 10px top 50%;\n background-size: 20px;\n}\n.acf-admin-page select:hover, .acf-admin-page select:focus {\n color: #0783BE;\n}\n.acf-admin-page select::before {\n content: \"\";\n display: block;\n position: absolute;\n top: 5px;\n left: 5px;\n width: 20px;\n height: 20px;\n}\n.acf-admin-page.rtl select {\n padding-right: 12px;\n padding-left: 40px;\n background-position: left 10px top 50%;\n}\n.acf-admin-page input[type=radio],\n.acf-admin-page input[type=checkbox] {\n box-sizing: border-box;\n width: 16px;\n height: 16px;\n padding: 0;\n border-width: 1px;\n border-style: solid;\n border-color: #98A2B3;\n background: #fff;\n box-shadow: none;\n}\n.acf-admin-page input[type=radio]:hover,\n.acf-admin-page input[type=checkbox]:hover {\n background-color: #EBF5FA;\n border-color: #0783BE;\n}\n.acf-admin-page input[type=radio]:checked, .acf-admin-page input[type=radio]:focus-visible,\n.acf-admin-page input[type=checkbox]:checked,\n.acf-admin-page input[type=checkbox]:focus-visible {\n background-color: #EBF5FA;\n border-color: #0783BE;\n}\n.acf-admin-page input[type=radio]:checked:before, .acf-admin-page input[type=radio]:focus-visible:before,\n.acf-admin-page input[type=checkbox]:checked:before,\n.acf-admin-page input[type=checkbox]:focus-visible:before {\n content: \"\";\n position: relative;\n top: -1px;\n left: -1px;\n width: 16px;\n height: 16px;\n margin: 0;\n padding: 0;\n background-color: transparent;\n background-size: cover;\n background-repeat: no-repeat;\n background-position: center;\n}\n.acf-admin-page input[type=radio]:active,\n.acf-admin-page input[type=checkbox]:active {\n box-shadow: 0px 0px 0px 3px #EBF5FA, 0px 0px 0px rgba(255, 54, 54, 0.25);\n}\n.acf-admin-page input[type=radio]:disabled,\n.acf-admin-page input[type=checkbox]:disabled {\n background-color: #F9FAFB;\n border-color: #D0D5DD;\n}\n.acf-admin-page.rtl input[type=radio]:checked:before, .acf-admin-page.rtl input[type=radio]:focus-visible:before,\n.acf-admin-page.rtl input[type=checkbox]:checked:before,\n.acf-admin-page.rtl input[type=checkbox]:focus-visible:before {\n left: 1px;\n}\n.acf-admin-page input[type=radio]:checked:before, .acf-admin-page input[type=radio]:focus:before {\n background-image: url(\"../../images/field-states/radio-active.svg\");\n}\n.acf-admin-page input[type=checkbox]:checked:before, .acf-admin-page input[type=checkbox]:focus:before {\n background-image: url(\"../../images/field-states/checkbox-active.svg\");\n}\n.acf-admin-page .acf-radio-list li input[type=radio],\n.acf-admin-page .acf-radio-list li input[type=checkbox],\n.acf-admin-page .acf-checkbox-list li input[type=radio],\n.acf-admin-page .acf-checkbox-list li input[type=checkbox] {\n margin-right: 6px;\n}\n.acf-admin-page .acf-radio-list.acf-bl li,\n.acf-admin-page .acf-checkbox-list.acf-bl li {\n margin-bottom: 8px;\n}\n.acf-admin-page .acf-radio-list.acf-bl li:last-of-type,\n.acf-admin-page .acf-checkbox-list.acf-bl li:last-of-type {\n margin-bottom: 0;\n}\n.acf-admin-page .acf-radio-list label,\n.acf-admin-page .acf-checkbox-list label {\n display: flex;\n align-items: center;\n align-content: center;\n}\n.acf-admin-page .acf-switch {\n width: 42px;\n height: 24px;\n border: none;\n background-color: #D0D5DD;\n border-radius: 12px;\n}\n.acf-admin-page .acf-switch:hover {\n background-color: #98A2B3;\n}\n.acf-admin-page .acf-switch:active {\n box-shadow: 0px 0px 0px 3px #EBF5FA, 0px 0px 0px rgba(255, 54, 54, 0.25);\n}\n.acf-admin-page .acf-switch.-on {\n background-color: #0783BE;\n}\n.acf-admin-page .acf-switch.-on:hover {\n background-color: #066998;\n}\n.acf-admin-page .acf-switch.-on .acf-switch-slider {\n left: 20px;\n}\n.acf-admin-page .acf-switch .acf-switch-off,\n.acf-admin-page .acf-switch .acf-switch-on {\n visibility: hidden;\n}\n.acf-admin-page .acf-switch .acf-switch-slider {\n width: 20px;\n height: 20px;\n border: none;\n border-radius: 100px;\n box-shadow: 0px 1px 3px rgba(16, 24, 40, 0.1), 0px 1px 2px rgba(16, 24, 40, 0.06);\n}\n.acf-admin-page .acf-field-true-false {\n display: flex;\n align-items: flex-start;\n}\n.acf-admin-page .acf-field-true-false .acf-label {\n order: 2;\n display: block;\n align-items: center;\n margin-top: 2px;\n margin-bottom: 0;\n margin-left: 12px;\n}\n.acf-admin-page .acf-field-true-false .acf-label label {\n margin-bottom: 0;\n}\n.acf-admin-page .acf-field-true-false .acf-label .acf-tip {\n margin-left: 12px;\n}\n.acf-admin-page .acf-field-true-false .acf-label .description {\n display: block;\n margin-top: 2px;\n margin-left: 0;\n}\n.acf-admin-page.rtl .acf-field-true-false .acf-label {\n margin-right: 12px;\n margin-left: 0;\n}\n.acf-admin-page.rtl .acf-field-true-false .acf-tip {\n margin-right: 12px;\n margin-left: 0;\n}\n.acf-admin-page input::file-selector-button {\n box-sizing: border-box;\n min-height: 40px;\n margin-right: 16px;\n padding-top: 8px;\n padding-right: 16px;\n padding-bottom: 8px;\n padding-left: 16px;\n background-color: transparent;\n color: #0783BE !important;\n border-radius: 6px;\n border-width: 1px;\n border-style: solid;\n border-color: #0783BE;\n text-decoration: none;\n}\n.acf-admin-page input::file-selector-button:hover {\n border-color: #066998;\n cursor: pointer;\n color: #066998 !important;\n}\n.acf-admin-page .button {\n display: inline-flex;\n align-items: center;\n height: 40px;\n padding-right: 16px;\n padding-left: 16px;\n background-color: transparent;\n border-width: 1px;\n border-style: solid;\n border-color: #0783BE;\n border-radius: 6px;\n color: #0783BE;\n}\n.acf-admin-page .button:hover {\n background-color: #f3f9fc;\n border-color: #0783BE;\n color: #0783BE;\n}\n.acf-admin-page .button:focus {\n background-color: #f3f9fc;\n outline: 3px solid #EBF5FA;\n color: #0783BE;\n}\n.acf-admin-page .edit-field-group-header {\n display: block !important;\n}\n.acf-admin-page .acf-input .select2-container.-acf .select2-selection {\n border: none;\n line-height: 1;\n}\n.acf-admin-page .acf-input .select2-container.-acf .select2-selection__rendered {\n box-sizing: border-box;\n padding-right: 0;\n padding-left: 0;\n background-color: #fff;\n border-width: 1px;\n border-style: solid;\n border-color: #D0D5DD;\n box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.1);\n border-radius: 6px;\n color: #344054;\n}\n.acf-admin-page .acf-input .select2-container--focus {\n outline: 3px solid #EBF5FA;\n border-color: #399CCB;\n border-radius: 6px;\n}\n.acf-admin-page .acf-input .select2-container--focus .select2-selection__rendered {\n border-color: #399CCB !important;\n}\n.acf-admin-page .acf-input .select2-container--focus.select2-container--below.select2-container--open .select2-selection__rendered {\n border-bottom-right-radius: 0 !important;\n border-bottom-left-radius: 0 !important;\n}\n.acf-admin-page .acf-input .select2-container--focus.select2-container--above.select2-container--open .select2-selection__rendered {\n border-top-right-radius: 0 !important;\n border-top-left-radius: 0 !important;\n}\n.acf-admin-page .acf-input .select2-container .select2-search--inline .select2-search__field {\n margin: 0;\n padding-left: 6px;\n}\n.acf-admin-page .acf-input .select2-container .select2-search--inline .select2-search__field:focus {\n outline: none;\n border: none;\n}\n.acf-admin-page .acf-input .select2-container--default .select2-selection--multiple .select2-selection__rendered {\n padding-top: 0;\n padding-right: 6px;\n padding-bottom: 0;\n padding-left: 6px;\n}\n.acf-admin-page .acf-input .select2-selection__clear {\n width: 18px;\n height: 18px;\n margin-top: 12px;\n margin-right: 1px;\n text-indent: 100%;\n white-space: nowrap;\n overflow: hidden;\n color: #fff;\n}\n.acf-admin-page .acf-input .select2-selection__clear:before {\n content: \"\";\n display: block;\n width: 16px;\n height: 16px;\n top: 0;\n left: 0;\n border: none;\n border-radius: 0;\n -webkit-mask-size: contain;\n mask-size: contain;\n -webkit-mask-repeat: no-repeat;\n mask-repeat: no-repeat;\n -webkit-mask-position: center;\n mask-position: center;\n -webkit-mask-image: url(\"../../images/icons/icon-close.svg\");\n mask-image: url(\"../../images/icons/icon-close.svg\");\n background-color: #98A2B3;\n}\n.acf-admin-page .acf-input .select2-selection__clear:hover::before {\n background-color: #0783BE;\n}\n.acf-admin-page .acf-label {\n display: flex;\n align-items: center;\n justify-content: space-between;\n}\n.acf-admin-page .acf-label .acf-icon-help {\n width: 18px;\n height: 18px;\n background-color: #98A2B3;\n}\n.acf-admin-page .acf-label label {\n margin-bottom: 0;\n}\n.acf-admin-page .acf-label .description {\n margin-top: 2px;\n}\n.acf-admin-page .acf-field-setting-name .acf-tip {\n position: absolute;\n top: 0;\n left: 654px;\n color: #98A2B3;\n}\n.rtl.acf-admin-page .acf-field-setting-name .acf-tip {\n left: auto;\n right: 654px;\n}\n\n.acf-admin-page .acf-field-setting-name .acf-tip .acf-icon-help {\n width: 18px;\n height: 18px;\n}\n.acf-admin-page .acf-field-setting-type .select2-container.-acf,\n.acf-admin-page .acf-field-permalink-rewrite .select2-container.-acf,\n.acf-admin-page .acf-field-query-var .select2-container.-acf,\n.acf-admin-page .acf-field-capability .select2-container.-acf,\n.acf-admin-page .acf-field-parent-slug .select2-container.-acf,\n.acf-admin-page .acf-field-data-storage .select2-container.-acf,\n.acf-admin-page .acf-field-manage-terms .select2-container.-acf,\n.acf-admin-page .acf-field-edit-terms .select2-container.-acf,\n.acf-admin-page .acf-field-delete-terms .select2-container.-acf,\n.acf-admin-page .acf-field-assign-terms .select2-container.-acf,\n.acf-admin-page .acf-field-meta-box .select2-container.-acf {\n min-height: 40px;\n}\n.acf-admin-page .acf-field-setting-type .select2-container--default .select2-selection--single .select2-selection__rendered,\n.acf-admin-page .acf-field-permalink-rewrite .select2-container--default .select2-selection--single .select2-selection__rendered,\n.acf-admin-page .acf-field-query-var .select2-container--default .select2-selection--single .select2-selection__rendered,\n.acf-admin-page .acf-field-capability .select2-container--default .select2-selection--single .select2-selection__rendered,\n.acf-admin-page .acf-field-parent-slug .select2-container--default .select2-selection--single .select2-selection__rendered,\n.acf-admin-page .acf-field-data-storage .select2-container--default .select2-selection--single .select2-selection__rendered,\n.acf-admin-page .acf-field-manage-terms .select2-container--default .select2-selection--single .select2-selection__rendered,\n.acf-admin-page .acf-field-edit-terms .select2-container--default .select2-selection--single .select2-selection__rendered,\n.acf-admin-page .acf-field-delete-terms .select2-container--default .select2-selection--single .select2-selection__rendered,\n.acf-admin-page .acf-field-assign-terms .select2-container--default .select2-selection--single .select2-selection__rendered,\n.acf-admin-page .acf-field-meta-box .select2-container--default .select2-selection--single .select2-selection__rendered {\n display: flex;\n align-items: center;\n position: relative;\n z-index: 800;\n min-height: 40px;\n padding-top: 0;\n padding-right: 12px;\n padding-bottom: 0;\n padding-left: 12px;\n}\n.acf-admin-page .acf-field-setting-type .select2-container--default .select2-selection--single .field-type-icon,\n.acf-admin-page .acf-field-permalink-rewrite .select2-container--default .select2-selection--single .field-type-icon,\n.acf-admin-page .acf-field-query-var .select2-container--default .select2-selection--single .field-type-icon,\n.acf-admin-page .acf-field-capability .select2-container--default .select2-selection--single .field-type-icon,\n.acf-admin-page .acf-field-parent-slug .select2-container--default .select2-selection--single .field-type-icon,\n.acf-admin-page .acf-field-data-storage .select2-container--default .select2-selection--single .field-type-icon,\n.acf-admin-page .acf-field-manage-terms .select2-container--default .select2-selection--single .field-type-icon,\n.acf-admin-page .acf-field-edit-terms .select2-container--default .select2-selection--single .field-type-icon,\n.acf-admin-page .acf-field-delete-terms .select2-container--default .select2-selection--single .field-type-icon,\n.acf-admin-page .acf-field-assign-terms .select2-container--default .select2-selection--single .field-type-icon,\n.acf-admin-page .acf-field-meta-box .select2-container--default .select2-selection--single .field-type-icon {\n top: auto;\n width: 18px;\n height: 18px;\n margin-right: 2px;\n}\n.acf-admin-page .acf-field-setting-type .select2-container--default .select2-selection--single .field-type-icon:before,\n.acf-admin-page .acf-field-permalink-rewrite .select2-container--default .select2-selection--single .field-type-icon:before,\n.acf-admin-page .acf-field-query-var .select2-container--default .select2-selection--single .field-type-icon:before,\n.acf-admin-page .acf-field-capability .select2-container--default .select2-selection--single .field-type-icon:before,\n.acf-admin-page .acf-field-parent-slug .select2-container--default .select2-selection--single .field-type-icon:before,\n.acf-admin-page .acf-field-data-storage .select2-container--default .select2-selection--single .field-type-icon:before,\n.acf-admin-page .acf-field-manage-terms .select2-container--default .select2-selection--single .field-type-icon:before,\n.acf-admin-page .acf-field-edit-terms .select2-container--default .select2-selection--single .field-type-icon:before,\n.acf-admin-page .acf-field-delete-terms .select2-container--default .select2-selection--single .field-type-icon:before,\n.acf-admin-page .acf-field-assign-terms .select2-container--default .select2-selection--single .field-type-icon:before,\n.acf-admin-page .acf-field-meta-box .select2-container--default .select2-selection--single .field-type-icon:before {\n width: 9px;\n height: 9px;\n}\n.acf-admin-page .acf-field-setting-type .select2-container--open .select2-selection__rendered,\n.acf-admin-page .acf-field-permalink-rewrite .select2-container--open .select2-selection__rendered,\n.acf-admin-page .acf-field-query-var .select2-container--open .select2-selection__rendered,\n.acf-admin-page .acf-field-capability .select2-container--open .select2-selection__rendered,\n.acf-admin-page .acf-field-parent-slug .select2-container--open .select2-selection__rendered,\n.acf-admin-page .acf-field-data-storage .select2-container--open .select2-selection__rendered,\n.acf-admin-page .acf-field-manage-terms .select2-container--open .select2-selection__rendered,\n.acf-admin-page .acf-field-edit-terms .select2-container--open .select2-selection__rendered,\n.acf-admin-page .acf-field-delete-terms .select2-container--open .select2-selection__rendered,\n.acf-admin-page .acf-field-assign-terms .select2-container--open .select2-selection__rendered,\n.acf-admin-page .acf-field-meta-box .select2-container--open .select2-selection__rendered {\n border-color: #6BB5D8 !important;\n border-bottom-color: #D0D5DD !important;\n}\n.acf-admin-page .acf-field-setting-type .select2-container--open.select2-container--below .select2-selection__rendered,\n.acf-admin-page .acf-field-permalink-rewrite .select2-container--open.select2-container--below .select2-selection__rendered,\n.acf-admin-page .acf-field-query-var .select2-container--open.select2-container--below .select2-selection__rendered,\n.acf-admin-page .acf-field-capability .select2-container--open.select2-container--below .select2-selection__rendered,\n.acf-admin-page .acf-field-parent-slug .select2-container--open.select2-container--below .select2-selection__rendered,\n.acf-admin-page .acf-field-data-storage .select2-container--open.select2-container--below .select2-selection__rendered,\n.acf-admin-page .acf-field-manage-terms .select2-container--open.select2-container--below .select2-selection__rendered,\n.acf-admin-page .acf-field-edit-terms .select2-container--open.select2-container--below .select2-selection__rendered,\n.acf-admin-page .acf-field-delete-terms .select2-container--open.select2-container--below .select2-selection__rendered,\n.acf-admin-page .acf-field-assign-terms .select2-container--open.select2-container--below .select2-selection__rendered,\n.acf-admin-page .acf-field-meta-box .select2-container--open.select2-container--below .select2-selection__rendered {\n border-bottom-right-radius: 0 !important;\n border-bottom-left-radius: 0 !important;\n}\n.acf-admin-page .acf-field-setting-type .select2-container--open.select2-container--above .select2-selection__rendered,\n.acf-admin-page .acf-field-permalink-rewrite .select2-container--open.select2-container--above .select2-selection__rendered,\n.acf-admin-page .acf-field-query-var .select2-container--open.select2-container--above .select2-selection__rendered,\n.acf-admin-page .acf-field-capability .select2-container--open.select2-container--above .select2-selection__rendered,\n.acf-admin-page .acf-field-parent-slug .select2-container--open.select2-container--above .select2-selection__rendered,\n.acf-admin-page .acf-field-data-storage .select2-container--open.select2-container--above .select2-selection__rendered,\n.acf-admin-page .acf-field-manage-terms .select2-container--open.select2-container--above .select2-selection__rendered,\n.acf-admin-page .acf-field-edit-terms .select2-container--open.select2-container--above .select2-selection__rendered,\n.acf-admin-page .acf-field-delete-terms .select2-container--open.select2-container--above .select2-selection__rendered,\n.acf-admin-page .acf-field-assign-terms .select2-container--open.select2-container--above .select2-selection__rendered,\n.acf-admin-page .acf-field-meta-box .select2-container--open.select2-container--above .select2-selection__rendered {\n border-top-right-radius: 0 !important;\n border-top-left-radius: 0 !important;\n border-bottom-color: #6BB5D8 !important;\n border-top-color: #D0D5DD !important;\n}\n.acf-admin-page .acf-field-setting-type .acf-selection.has-icon,\n.acf-admin-page .acf-field-permalink-rewrite .acf-selection.has-icon,\n.acf-admin-page .acf-field-query-var .acf-selection.has-icon,\n.acf-admin-page .acf-field-capability .acf-selection.has-icon,\n.acf-admin-page .acf-field-parent-slug .acf-selection.has-icon,\n.acf-admin-page .acf-field-data-storage .acf-selection.has-icon,\n.acf-admin-page .acf-field-manage-terms .acf-selection.has-icon,\n.acf-admin-page .acf-field-edit-terms .acf-selection.has-icon,\n.acf-admin-page .acf-field-delete-terms .acf-selection.has-icon,\n.acf-admin-page .acf-field-assign-terms .acf-selection.has-icon,\n.acf-admin-page .acf-field-meta-box .acf-selection.has-icon {\n margin-left: 6px;\n}\n.rtl.acf-admin-page .acf-field-setting-type .acf-selection.has-icon, .acf-admin-page .acf-field-permalink-rewrite .acf-selection.has-icon, .acf-admin-page .acf-field-query-var .acf-selection.has-icon, .acf-admin-page .acf-field-capability .acf-selection.has-icon, .acf-admin-page .acf-field-parent-slug .acf-selection.has-icon, .acf-admin-page .acf-field-data-storage .acf-selection.has-icon, .acf-admin-page .acf-field-manage-terms .acf-selection.has-icon, .acf-admin-page .acf-field-edit-terms .acf-selection.has-icon, .acf-admin-page .acf-field-delete-terms .acf-selection.has-icon, .acf-admin-page .acf-field-assign-terms .acf-selection.has-icon, .acf-admin-page .acf-field-meta-box .acf-selection.has-icon {\n margin-right: 6px;\n}\n\n.acf-admin-page .acf-field-setting-type .select2-selection__arrow,\n.acf-admin-page .acf-field-permalink-rewrite .select2-selection__arrow,\n.acf-admin-page .acf-field-query-var .select2-selection__arrow,\n.acf-admin-page .acf-field-capability .select2-selection__arrow,\n.acf-admin-page .acf-field-parent-slug .select2-selection__arrow,\n.acf-admin-page .acf-field-data-storage .select2-selection__arrow,\n.acf-admin-page .acf-field-manage-terms .select2-selection__arrow,\n.acf-admin-page .acf-field-edit-terms .select2-selection__arrow,\n.acf-admin-page .acf-field-delete-terms .select2-selection__arrow,\n.acf-admin-page .acf-field-assign-terms .select2-selection__arrow,\n.acf-admin-page .acf-field-meta-box .select2-selection__arrow {\n width: 20px;\n height: 20px;\n top: calc(50% - 10px);\n right: 12px;\n background-color: transparent;\n}\n.acf-admin-page .acf-field-setting-type .select2-selection__arrow:after,\n.acf-admin-page .acf-field-permalink-rewrite .select2-selection__arrow:after,\n.acf-admin-page .acf-field-query-var .select2-selection__arrow:after,\n.acf-admin-page .acf-field-capability .select2-selection__arrow:after,\n.acf-admin-page .acf-field-parent-slug .select2-selection__arrow:after,\n.acf-admin-page .acf-field-data-storage .select2-selection__arrow:after,\n.acf-admin-page .acf-field-manage-terms .select2-selection__arrow:after,\n.acf-admin-page .acf-field-edit-terms .select2-selection__arrow:after,\n.acf-admin-page .acf-field-delete-terms .select2-selection__arrow:after,\n.acf-admin-page .acf-field-assign-terms .select2-selection__arrow:after,\n.acf-admin-page .acf-field-meta-box .select2-selection__arrow:after {\n content: \"\";\n display: block;\n position: absolute;\n z-index: 850;\n top: 1px;\n left: 0;\n width: 20px;\n height: 20px;\n -webkit-mask-image: url(\"../../images/icons/icon-chevron-down.svg\");\n mask-image: url(\"../../images/icons/icon-chevron-down.svg\");\n background-color: #667085;\n border: none;\n border-radius: 0;\n -webkit-mask-size: contain;\n mask-size: contain;\n -webkit-mask-repeat: no-repeat;\n mask-repeat: no-repeat;\n -webkit-mask-position: center;\n mask-position: center;\n text-indent: 500%;\n white-space: nowrap;\n overflow: hidden;\n}\n.acf-admin-page .acf-field-setting-type .select2-selection__arrow b[role=presentation],\n.acf-admin-page .acf-field-permalink-rewrite .select2-selection__arrow b[role=presentation],\n.acf-admin-page .acf-field-query-var .select2-selection__arrow b[role=presentation],\n.acf-admin-page .acf-field-capability .select2-selection__arrow b[role=presentation],\n.acf-admin-page .acf-field-parent-slug .select2-selection__arrow b[role=presentation],\n.acf-admin-page .acf-field-data-storage .select2-selection__arrow b[role=presentation],\n.acf-admin-page .acf-field-manage-terms .select2-selection__arrow b[role=presentation],\n.acf-admin-page .acf-field-edit-terms .select2-selection__arrow b[role=presentation],\n.acf-admin-page .acf-field-delete-terms .select2-selection__arrow b[role=presentation],\n.acf-admin-page .acf-field-assign-terms .select2-selection__arrow b[role=presentation],\n.acf-admin-page .acf-field-meta-box .select2-selection__arrow b[role=presentation] {\n display: none;\n}\n.acf-admin-page .acf-field-setting-type .select2-container--open .select2-selection__arrow:after,\n.acf-admin-page .acf-field-permalink-rewrite .select2-container--open .select2-selection__arrow:after,\n.acf-admin-page .acf-field-query-var .select2-container--open .select2-selection__arrow:after,\n.acf-admin-page .acf-field-capability .select2-container--open .select2-selection__arrow:after,\n.acf-admin-page .acf-field-parent-slug .select2-container--open .select2-selection__arrow:after,\n.acf-admin-page .acf-field-data-storage .select2-container--open .select2-selection__arrow:after,\n.acf-admin-page .acf-field-manage-terms .select2-container--open .select2-selection__arrow:after,\n.acf-admin-page .acf-field-edit-terms .select2-container--open .select2-selection__arrow:after,\n.acf-admin-page .acf-field-delete-terms .select2-container--open .select2-selection__arrow:after,\n.acf-admin-page .acf-field-assign-terms .select2-container--open .select2-selection__arrow:after,\n.acf-admin-page .acf-field-meta-box .select2-container--open .select2-selection__arrow:after {\n -webkit-mask-image: url(\"../../images/icons/icon-chevron-up.svg\");\n mask-image: url(\"../../images/icons/icon-chevron-up.svg\");\n}\n.acf-admin-page .field-type-select-results {\n position: relative;\n top: 4px;\n z-index: 1002;\n border-radius: 0 0 6px 6px;\n box-shadow: 0px 8px 24px 4px rgba(16, 24, 40, 0.12);\n}\n.acf-admin-page .field-type-select-results.select2-dropdown--above {\n display: flex;\n flex-direction: column-reverse;\n top: 0;\n border-radius: 6px 6px 0 0;\n z-index: 99999;\n}\n.select2-container.select2-container--open.acf-admin-page .field-type-select-results {\n box-shadow: 0px 0px 0px 3px #EBF5FA, 0px 8px 24px 4px rgba(16, 24, 40, 0.12);\n}\n\n.acf-admin-page .field-type-select-results .acf-selection.has-icon {\n margin-left: 6px;\n}\n.rtl.acf-admin-page .field-type-select-results .acf-selection.has-icon {\n margin-right: 6px;\n}\n\n.acf-admin-page .field-type-select-results .select2-search {\n position: relative;\n margin: 0;\n padding: 0;\n}\n.acf-admin-page .field-type-select-results .select2-search--dropdown:after {\n content: \"\";\n display: block;\n position: absolute;\n top: 12px;\n left: 13px;\n width: 16px;\n height: 16px;\n -webkit-mask-image: url(\"../../images/icons/icon-search.svg\");\n mask-image: url(\"../../images/icons/icon-search.svg\");\n background-color: #98A2B3;\n border: none;\n border-radius: 0;\n -webkit-mask-size: contain;\n mask-size: contain;\n -webkit-mask-repeat: no-repeat;\n mask-repeat: no-repeat;\n -webkit-mask-position: center;\n mask-position: center;\n text-indent: 500%;\n white-space: nowrap;\n overflow: hidden;\n}\n.rtl.acf-admin-page .field-type-select-results .select2-search--dropdown:after {\n right: 12px;\n left: auto;\n}\n\n.acf-admin-page .field-type-select-results .select2-search .select2-search__field {\n padding-left: 38px;\n border-right: 0;\n border-bottom: 0;\n border-left: 0;\n border-radius: 0;\n}\n.rtl.acf-admin-page .field-type-select-results .select2-search .select2-search__field {\n padding-right: 38px;\n padding-left: 0;\n}\n\n.acf-admin-page .field-type-select-results .select2-search .select2-search__field:focus {\n border-top-color: #D0D5DD;\n outline: 0;\n}\n.acf-admin-page .field-type-select-results .select2-results__options {\n max-height: 440px;\n}\n.acf-admin-page .field-type-select-results .select2-results__option .select2-results__option--highlighted {\n background-color: #0783BE !important;\n color: #F9FAFB !important;\n}\n.acf-admin-page .field-type-select-results .select2-results__option .select2-results__option {\n display: inline-flex;\n position: relative;\n width: calc(100% - 24px);\n min-height: 32px;\n padding-top: 0;\n padding-right: 12px;\n padding-bottom: 0;\n padding-left: 12px;\n align-items: center;\n}\n.acf-admin-page .field-type-select-results .select2-results__option .select2-results__option .field-type-icon {\n top: auto;\n width: 18px;\n height: 18px;\n margin-right: 2px;\n box-shadow: 0 0 0 1px #F9FAFB;\n}\n.acf-admin-page .field-type-select-results .select2-results__option .select2-results__option .field-type-icon:before {\n width: 9px;\n height: 9px;\n}\n.acf-admin-page .field-type-select-results .select2-results__option[aria-selected=true] {\n background-color: #EBF5FA !important;\n color: #344054 !important;\n}\n.acf-admin-page .field-type-select-results .select2-results__option[aria-selected=true]:after {\n content: \"\";\n right: 13px;\n position: absolute;\n width: 16px;\n height: 16px;\n -webkit-mask-image: url(\"../../images/icons/icon-check.svg\");\n mask-image: url(\"../../images/icons/icon-check.svg\");\n background-color: #0783BE;\n border: none;\n border-radius: 0;\n -webkit-mask-size: contain;\n mask-size: contain;\n -webkit-mask-repeat: no-repeat;\n mask-repeat: no-repeat;\n -webkit-mask-position: center;\n mask-position: center;\n text-indent: 500%;\n white-space: nowrap;\n overflow: hidden;\n}\n.rtl.acf-admin-page .field-type-select-results .select2-results__option[aria-selected=true]:after {\n left: 13px;\n right: auto;\n}\n\n.acf-admin-page .field-type-select-results .select2-results__group {\n display: inline-flex;\n align-items: center;\n width: calc(100% - 24px);\n min-height: 25px;\n background-color: #F9FAFB;\n border-top-width: 1px;\n border-top-style: solid;\n border-top-color: #EAECF0;\n border-bottom-width: 1px;\n border-bottom-style: solid;\n border-bottom-color: #EAECF0;\n color: #98A2B3;\n font-size: 11px;\n margin-bottom: 0;\n padding-top: 0;\n padding-right: 12px;\n padding-bottom: 0;\n padding-left: 12px;\n font-weight: normal;\n}\n.acf-admin-page.rtl .acf-field-setting-type .select2-selection__arrow:after,\n.acf-admin-page.rtl .acf-field-permalink-rewrite .select2-selection__arrow:after,\n.acf-admin-page.rtl .acf-field-query-var .select2-selection__arrow:after {\n right: auto;\n left: 10px;\n}\n\n.rtl.post-type-acf-field-group .acf-field-setting-name .acf-tip,\n.rtl.acf-internal-post-type .acf-field-setting-name .acf-tip {\n left: auto;\n right: 654px;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Field Groups\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-internal-post-type .tablenav.top {\n display: none;\n}\n.acf-internal-post-type .subsubsub {\n margin-bottom: 3px;\n}\n.acf-internal-post-type .wp-list-table {\n margin-top: 0;\n margin-right: 0;\n margin-bottom: 0;\n margin-left: 0;\n border-radius: 8px;\n border: none;\n overflow: hidden;\n box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.1);\n}\n.acf-internal-post-type .wp-list-table strong {\n color: #98A2B3;\n margin: 0;\n}\n.acf-internal-post-type .wp-list-table a.row-title {\n font-size: 13px !important;\n font-weight: 500;\n}\n.acf-internal-post-type .wp-list-table th,\n.acf-internal-post-type .wp-list-table td {\n color: #344054;\n}\n.acf-internal-post-type .wp-list-table th.sortable a,\n.acf-internal-post-type .wp-list-table td.sortable a {\n padding: 0;\n}\n.acf-internal-post-type .wp-list-table th.check-column,\n.acf-internal-post-type .wp-list-table td.check-column {\n padding-top: 12px;\n padding-right: 16px;\n padding-left: 16px;\n}\n@media screen and (max-width: 880px) {\n .acf-internal-post-type .wp-list-table th.check-column,\n .acf-internal-post-type .wp-list-table td.check-column {\n vertical-align: top;\n padding-right: 2px;\n padding-left: 10px;\n }\n}\n.acf-internal-post-type .wp-list-table th input,\n.acf-internal-post-type .wp-list-table td input {\n margin: 0;\n padding: 0;\n}\n.acf-internal-post-type .wp-list-table th .acf-more-items,\n.acf-internal-post-type .wp-list-table td .acf-more-items {\n display: inline-flex;\n flex-direction: row;\n justify-content: center;\n align-items: center;\n padding: 0px 6px 1px;\n gap: 8px;\n width: 25px;\n height: 16px;\n background: #EAECF0;\n border-radius: 100px;\n font-weight: 400;\n font-size: 10px;\n color: #475467;\n}\n.acf-internal-post-type .wp-list-table th .acf-emdash,\n.acf-internal-post-type .wp-list-table td .acf-emdash {\n color: #D0D5DD;\n}\n.acf-internal-post-type .wp-list-table thead th, .acf-internal-post-type .wp-list-table thead td,\n.acf-internal-post-type .wp-list-table tfoot th, .acf-internal-post-type .wp-list-table tfoot td {\n height: 48px;\n padding-right: 24px;\n padding-left: 24px;\n box-sizing: border-box;\n background-color: #F9FAFB;\n border-color: #EAECF0;\n font-weight: 500;\n}\n@media screen and (max-width: 880px) {\n .acf-internal-post-type .wp-list-table thead th, .acf-internal-post-type .wp-list-table thead td,\n .acf-internal-post-type .wp-list-table tfoot th, .acf-internal-post-type .wp-list-table tfoot td {\n padding-right: 16px;\n padding-left: 8px;\n }\n}\n@media screen and (max-width: 880px) {\n .acf-internal-post-type .wp-list-table thead th.check-column, .acf-internal-post-type .wp-list-table thead td.check-column,\n .acf-internal-post-type .wp-list-table tfoot th.check-column, .acf-internal-post-type .wp-list-table tfoot td.check-column {\n vertical-align: middle;\n }\n}\n.acf-internal-post-type .wp-list-table tbody th,\n.acf-internal-post-type .wp-list-table tbody td {\n box-sizing: border-box;\n height: 60px;\n padding-top: 10px;\n padding-right: 24px;\n padding-bottom: 10px;\n padding-left: 24px;\n vertical-align: top;\n background-color: #fff;\n border-bottom-width: 1px;\n border-bottom-color: #EAECF0;\n border-bottom-style: solid;\n}\n@media screen and (max-width: 880px) {\n .acf-internal-post-type .wp-list-table tbody th,\n .acf-internal-post-type .wp-list-table tbody td {\n padding-right: 16px;\n padding-left: 8px;\n }\n}\n.acf-internal-post-type .wp-list-table .column-acf-key {\n white-space: nowrap;\n}\n.acf-internal-post-type .wp-list-table .column-acf-key .acf-icon-key-solid {\n display: inline-block;\n position: relative;\n bottom: -2px;\n width: 15px;\n height: 15px;\n margin-right: 4px;\n color: #98A2B3;\n}\n.acf-internal-post-type .wp-list-table .acf-location .dashicons {\n position: relative;\n bottom: -2px;\n width: 16px;\n height: 16px;\n margin-right: 6px;\n font-size: 16px;\n color: #98A2B3;\n}\n.acf-internal-post-type .wp-list-table .post-state {\n color: #667085;\n}\n.acf-internal-post-type .wp-list-table tr:hover,\n.acf-internal-post-type .wp-list-table tr:focus-within {\n background: #f7f7f7;\n}\n.acf-internal-post-type .wp-list-table tr:hover .row-actions,\n.acf-internal-post-type .wp-list-table tr:focus-within .row-actions {\n margin-bottom: 0;\n}\n@media screen and (min-width: 782px) {\n .acf-internal-post-type .wp-list-table .column-acf-count {\n width: 10%;\n }\n}\n.acf-internal-post-type .wp-list-table .row-actions span.file {\n display: block;\n overflow: hidden;\n white-space: nowrap;\n text-overflow: ellipsis;\n}\n.acf-internal-post-type.rtl .wp-list-table .column-acf-key .acf-icon-key-solid {\n margin-left: 4px;\n margin-right: 0;\n}\n.acf-internal-post-type.rtl .wp-list-table .acf-location .dashicons {\n margin-left: 6px;\n margin-right: 0;\n}\n.acf-internal-post-type .row-actions {\n margin-top: 2px;\n padding-top: 0;\n padding-right: 0;\n padding-bottom: 0;\n padding-left: 0;\n line-height: 14px;\n color: #D0D5DD;\n}\n.acf-internal-post-type .row-actions .trash a {\n color: #d94f4f;\n}\n.acf-internal-post-type .widefat thead td.check-column,\n.acf-internal-post-type .widefat tfoot td.check-column {\n padding-top: 0;\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tRow actions\n*\n*--------------------------------------------------------------------------------------------*/\n.acf-internal-post-type .row-actions a:hover {\n color: #044767;\n}\n.acf-internal-post-type .row-actions .trash a {\n color: #a00;\n}\n.acf-internal-post-type .row-actions .trash a:hover {\n color: #f00;\n}\n.acf-internal-post-type .row-actions.visible {\n margin-bottom: 0;\n opacity: 1;\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tRow hover\n*\n*--------------------------------------------------------------------------------------------*/\n.acf-internal-post-type #the-list tr:hover td,\n.acf-internal-post-type #the-list tr:hover th {\n background-color: #f7fbfd;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Table Nav\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-internal-post-type .tablenav {\n margin-top: 24px;\n margin-right: 0;\n margin-bottom: 0;\n margin-left: 0;\n padding-top: 0;\n padding-right: 0;\n padding-bottom: 0;\n padding-left: 0;\n color: #667085;\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tSearch box\n*\n*--------------------------------------------------------------------------------------------*/\n.acf-internal-post-type #posts-filter p.search-box {\n margin-top: 5px;\n margin-right: 0;\n margin-bottom: 24px;\n margin-left: 0;\n}\n.acf-internal-post-type #posts-filter p.search-box #post-search-input {\n min-width: 280px;\n margin-top: 0;\n margin-right: 8px;\n margin-bottom: 0;\n margin-left: 0;\n}\n@media screen and (max-width: 768px) {\n .acf-internal-post-type #posts-filter p.search-box {\n display: flex;\n box-sizing: border-box;\n padding-right: 24px;\n margin-right: 16px;\n position: inherit;\n }\n .acf-internal-post-type #posts-filter p.search-box #post-search-input {\n min-width: auto;\n }\n}\n\n.rtl.acf-internal-post-type #posts-filter p.search-box #post-search-input {\n margin-right: 0;\n margin-left: 8px;\n}\n@media screen and (max-width: 768px) {\n .rtl.acf-internal-post-type #posts-filter p.search-box {\n padding-left: 24px;\n padding-right: 0;\n margin-left: 16px;\n margin-right: 0;\n }\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tStatus tabs\n*\n*--------------------------------------------------------------------------------------------*/\n.acf-internal-post-type .subsubsub {\n display: flex;\n align-items: flex-end;\n height: 40px;\n margin-bottom: 16px;\n}\n.acf-internal-post-type .subsubsub li {\n margin-top: 0;\n margin-right: 4px;\n color: #98A2B3;\n}\n.acf-internal-post-type .subsubsub li .count {\n color: #667085;\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tPagination\n*\n*--------------------------------------------------------------------------------------------*/\n.acf-internal-post-type .tablenav-pages {\n display: flex;\n align-items: center;\n}\n.acf-internal-post-type .tablenav-pages.no-pages {\n display: none;\n}\n.acf-internal-post-type .tablenav-pages .displaying-num {\n margin-top: 0;\n margin-right: 16px;\n margin-bottom: 0;\n margin-left: 0;\n}\n.acf-internal-post-type .tablenav-pages .pagination-links {\n display: flex;\n align-items: center;\n}\n.acf-internal-post-type .tablenav-pages .pagination-links #table-paging {\n margin-top: 0;\n margin-right: 4px;\n margin-bottom: 0;\n margin-left: 8px;\n}\n.acf-internal-post-type .tablenav-pages .pagination-links #table-paging .total-pages {\n margin-right: 0;\n}\n.acf-internal-post-type .tablenav-pages.one-page .pagination-links {\n display: none;\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tPagination buttons & icons\n*\n*--------------------------------------------------------------------------------------------*/\n.acf-internal-post-type .tablenav-pages .pagination-links .button {\n display: inline-flex;\n align-items: center;\n align-content: center;\n justify-content: center;\n min-width: 40px;\n margin-top: 0;\n margin-right: 0;\n margin-bottom: 0;\n margin-left: 0;\n padding-top: 0;\n padding-right: 0;\n padding-bottom: 0;\n padding-left: 0;\n background-color: transparent;\n}\n.acf-internal-post-type .tablenav-pages .pagination-links .button:nth-child(1), .acf-internal-post-type .tablenav-pages .pagination-links .button:nth-child(2), .acf-internal-post-type .tablenav-pages .pagination-links .button:last-child, .acf-internal-post-type .tablenav-pages .pagination-links .button:nth-last-child(2) {\n display: inline-block;\n position: relative;\n text-indent: 100%;\n white-space: nowrap;\n overflow: hidden;\n margin-left: 4px;\n}\n.acf-internal-post-type .tablenav-pages .pagination-links .button:nth-child(1):before, .acf-internal-post-type .tablenav-pages .pagination-links .button:nth-child(2):before, .acf-internal-post-type .tablenav-pages .pagination-links .button:last-child:before, .acf-internal-post-type .tablenav-pages .pagination-links .button:nth-last-child(2):before {\n content: \"\";\n display: block;\n position: absolute;\n width: 100%;\n height: 100%;\n top: 0;\n left: 0;\n background-color: #0783BE;\n border-radius: 0;\n -webkit-mask-size: 20px;\n mask-size: 20px;\n -webkit-mask-repeat: no-repeat;\n mask-repeat: no-repeat;\n -webkit-mask-position: center;\n mask-position: center;\n}\n.acf-internal-post-type .tablenav-pages .pagination-links .button:nth-child(1):before {\n -webkit-mask-image: url(\"../../images/icons/icon-chevron-left-double.svg\");\n mask-image: url(\"../../images/icons/icon-chevron-left-double.svg\");\n}\n.acf-internal-post-type .tablenav-pages .pagination-links .button:nth-child(2):before {\n -webkit-mask-image: url(\"../../images/icons/icon-chevron-left.svg\");\n mask-image: url(\"../../images/icons/icon-chevron-left.svg\");\n}\n.acf-internal-post-type .tablenav-pages .pagination-links .button:nth-last-child(2):before {\n -webkit-mask-image: url(\"../../images/icons/icon-chevron-right.svg\");\n mask-image: url(\"../../images/icons/icon-chevron-right.svg\");\n}\n.acf-internal-post-type .tablenav-pages .pagination-links .button:last-child:before {\n -webkit-mask-image: url(\"../../images/icons/icon-chevron-right-double.svg\");\n mask-image: url(\"../../images/icons/icon-chevron-right-double.svg\");\n}\n.acf-internal-post-type .tablenav-pages .pagination-links .button:hover {\n border-color: #066998;\n background-color: rgba(7, 131, 190, 0.05);\n}\n.acf-internal-post-type .tablenav-pages .pagination-links .button:hover:before {\n background-color: #066998;\n}\n.acf-internal-post-type .tablenav-pages .pagination-links .button.disabled {\n background-color: transparent !important;\n}\n.acf-internal-post-type .tablenav-pages .pagination-links .button.disabled.disabled:before {\n background-color: #D0D5DD;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Empty state\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-no-field-groups-wrapper,\n.acf-no-taxonomies-wrapper,\n.acf-no-post-types-wrapper,\n.acf-no-options-pages-wrapper,\n.acf-options-preview-wrapper {\n display: flex;\n justify-content: center;\n padding-top: 48px;\n padding-bottom: 48px;\n}\n.acf-no-field-groups-wrapper .acf-no-field-groups-inner,\n.acf-no-field-groups-wrapper .acf-no-taxonomies-inner,\n.acf-no-field-groups-wrapper .acf-no-post-types-inner,\n.acf-no-field-groups-wrapper .acf-no-options-pages-inner,\n.acf-no-field-groups-wrapper .acf-options-preview-inner,\n.acf-no-taxonomies-wrapper .acf-no-field-groups-inner,\n.acf-no-taxonomies-wrapper .acf-no-taxonomies-inner,\n.acf-no-taxonomies-wrapper .acf-no-post-types-inner,\n.acf-no-taxonomies-wrapper .acf-no-options-pages-inner,\n.acf-no-taxonomies-wrapper .acf-options-preview-inner,\n.acf-no-post-types-wrapper .acf-no-field-groups-inner,\n.acf-no-post-types-wrapper .acf-no-taxonomies-inner,\n.acf-no-post-types-wrapper .acf-no-post-types-inner,\n.acf-no-post-types-wrapper .acf-no-options-pages-inner,\n.acf-no-post-types-wrapper .acf-options-preview-inner,\n.acf-no-options-pages-wrapper .acf-no-field-groups-inner,\n.acf-no-options-pages-wrapper .acf-no-taxonomies-inner,\n.acf-no-options-pages-wrapper .acf-no-post-types-inner,\n.acf-no-options-pages-wrapper .acf-no-options-pages-inner,\n.acf-no-options-pages-wrapper .acf-options-preview-inner,\n.acf-options-preview-wrapper .acf-no-field-groups-inner,\n.acf-options-preview-wrapper .acf-no-taxonomies-inner,\n.acf-options-preview-wrapper .acf-no-post-types-inner,\n.acf-options-preview-wrapper .acf-no-options-pages-inner,\n.acf-options-preview-wrapper .acf-options-preview-inner {\n display: flex;\n flex-wrap: wrap;\n justify-content: center;\n align-content: center;\n align-items: flex-start;\n text-align: center;\n max-width: 420px;\n min-height: 320px;\n}\n.acf-no-field-groups-wrapper .acf-no-field-groups-inner img,\n.acf-no-field-groups-wrapper .acf-no-field-groups-inner h2,\n.acf-no-field-groups-wrapper .acf-no-field-groups-inner p,\n.acf-no-field-groups-wrapper .acf-no-taxonomies-inner img,\n.acf-no-field-groups-wrapper .acf-no-taxonomies-inner h2,\n.acf-no-field-groups-wrapper .acf-no-taxonomies-inner p,\n.acf-no-field-groups-wrapper .acf-no-post-types-inner img,\n.acf-no-field-groups-wrapper .acf-no-post-types-inner h2,\n.acf-no-field-groups-wrapper .acf-no-post-types-inner p,\n.acf-no-field-groups-wrapper .acf-no-options-pages-inner img,\n.acf-no-field-groups-wrapper .acf-no-options-pages-inner h2,\n.acf-no-field-groups-wrapper .acf-no-options-pages-inner p,\n.acf-no-field-groups-wrapper .acf-options-preview-inner img,\n.acf-no-field-groups-wrapper .acf-options-preview-inner h2,\n.acf-no-field-groups-wrapper .acf-options-preview-inner p,\n.acf-no-taxonomies-wrapper .acf-no-field-groups-inner img,\n.acf-no-taxonomies-wrapper .acf-no-field-groups-inner h2,\n.acf-no-taxonomies-wrapper .acf-no-field-groups-inner p,\n.acf-no-taxonomies-wrapper .acf-no-taxonomies-inner img,\n.acf-no-taxonomies-wrapper .acf-no-taxonomies-inner h2,\n.acf-no-taxonomies-wrapper .acf-no-taxonomies-inner p,\n.acf-no-taxonomies-wrapper .acf-no-post-types-inner img,\n.acf-no-taxonomies-wrapper .acf-no-post-types-inner h2,\n.acf-no-taxonomies-wrapper .acf-no-post-types-inner p,\n.acf-no-taxonomies-wrapper .acf-no-options-pages-inner img,\n.acf-no-taxonomies-wrapper .acf-no-options-pages-inner h2,\n.acf-no-taxonomies-wrapper .acf-no-options-pages-inner p,\n.acf-no-taxonomies-wrapper .acf-options-preview-inner img,\n.acf-no-taxonomies-wrapper .acf-options-preview-inner h2,\n.acf-no-taxonomies-wrapper .acf-options-preview-inner p,\n.acf-no-post-types-wrapper .acf-no-field-groups-inner img,\n.acf-no-post-types-wrapper .acf-no-field-groups-inner h2,\n.acf-no-post-types-wrapper .acf-no-field-groups-inner p,\n.acf-no-post-types-wrapper .acf-no-taxonomies-inner img,\n.acf-no-post-types-wrapper .acf-no-taxonomies-inner h2,\n.acf-no-post-types-wrapper .acf-no-taxonomies-inner p,\n.acf-no-post-types-wrapper .acf-no-post-types-inner img,\n.acf-no-post-types-wrapper .acf-no-post-types-inner h2,\n.acf-no-post-types-wrapper .acf-no-post-types-inner p,\n.acf-no-post-types-wrapper .acf-no-options-pages-inner img,\n.acf-no-post-types-wrapper .acf-no-options-pages-inner h2,\n.acf-no-post-types-wrapper .acf-no-options-pages-inner p,\n.acf-no-post-types-wrapper .acf-options-preview-inner img,\n.acf-no-post-types-wrapper .acf-options-preview-inner h2,\n.acf-no-post-types-wrapper .acf-options-preview-inner p,\n.acf-no-options-pages-wrapper .acf-no-field-groups-inner img,\n.acf-no-options-pages-wrapper .acf-no-field-groups-inner h2,\n.acf-no-options-pages-wrapper .acf-no-field-groups-inner p,\n.acf-no-options-pages-wrapper .acf-no-taxonomies-inner img,\n.acf-no-options-pages-wrapper .acf-no-taxonomies-inner h2,\n.acf-no-options-pages-wrapper .acf-no-taxonomies-inner p,\n.acf-no-options-pages-wrapper .acf-no-post-types-inner img,\n.acf-no-options-pages-wrapper .acf-no-post-types-inner h2,\n.acf-no-options-pages-wrapper .acf-no-post-types-inner p,\n.acf-no-options-pages-wrapper .acf-no-options-pages-inner img,\n.acf-no-options-pages-wrapper .acf-no-options-pages-inner h2,\n.acf-no-options-pages-wrapper .acf-no-options-pages-inner p,\n.acf-no-options-pages-wrapper .acf-options-preview-inner img,\n.acf-no-options-pages-wrapper .acf-options-preview-inner h2,\n.acf-no-options-pages-wrapper .acf-options-preview-inner p,\n.acf-options-preview-wrapper .acf-no-field-groups-inner img,\n.acf-options-preview-wrapper .acf-no-field-groups-inner h2,\n.acf-options-preview-wrapper .acf-no-field-groups-inner p,\n.acf-options-preview-wrapper .acf-no-taxonomies-inner img,\n.acf-options-preview-wrapper .acf-no-taxonomies-inner h2,\n.acf-options-preview-wrapper .acf-no-taxonomies-inner p,\n.acf-options-preview-wrapper .acf-no-post-types-inner img,\n.acf-options-preview-wrapper .acf-no-post-types-inner h2,\n.acf-options-preview-wrapper .acf-no-post-types-inner p,\n.acf-options-preview-wrapper .acf-no-options-pages-inner img,\n.acf-options-preview-wrapper .acf-no-options-pages-inner h2,\n.acf-options-preview-wrapper .acf-no-options-pages-inner p,\n.acf-options-preview-wrapper .acf-options-preview-inner img,\n.acf-options-preview-wrapper .acf-options-preview-inner h2,\n.acf-options-preview-wrapper .acf-options-preview-inner p {\n flex: 1 0 100%;\n}\n.acf-no-field-groups-wrapper .acf-no-field-groups-inner h2,\n.acf-no-field-groups-wrapper .acf-no-taxonomies-inner h2,\n.acf-no-field-groups-wrapper .acf-no-post-types-inner h2,\n.acf-no-field-groups-wrapper .acf-no-options-pages-inner h2,\n.acf-no-field-groups-wrapper .acf-options-preview-inner h2,\n.acf-no-taxonomies-wrapper .acf-no-field-groups-inner h2,\n.acf-no-taxonomies-wrapper .acf-no-taxonomies-inner h2,\n.acf-no-taxonomies-wrapper .acf-no-post-types-inner h2,\n.acf-no-taxonomies-wrapper .acf-no-options-pages-inner h2,\n.acf-no-taxonomies-wrapper .acf-options-preview-inner h2,\n.acf-no-post-types-wrapper .acf-no-field-groups-inner h2,\n.acf-no-post-types-wrapper .acf-no-taxonomies-inner h2,\n.acf-no-post-types-wrapper .acf-no-post-types-inner h2,\n.acf-no-post-types-wrapper .acf-no-options-pages-inner h2,\n.acf-no-post-types-wrapper .acf-options-preview-inner h2,\n.acf-no-options-pages-wrapper .acf-no-field-groups-inner h2,\n.acf-no-options-pages-wrapper .acf-no-taxonomies-inner h2,\n.acf-no-options-pages-wrapper .acf-no-post-types-inner h2,\n.acf-no-options-pages-wrapper .acf-no-options-pages-inner h2,\n.acf-no-options-pages-wrapper .acf-options-preview-inner h2,\n.acf-options-preview-wrapper .acf-no-field-groups-inner h2,\n.acf-options-preview-wrapper .acf-no-taxonomies-inner h2,\n.acf-options-preview-wrapper .acf-no-post-types-inner h2,\n.acf-options-preview-wrapper .acf-no-options-pages-inner h2,\n.acf-options-preview-wrapper .acf-options-preview-inner h2 {\n margin-top: 32px;\n margin-bottom: 0;\n padding: 0;\n color: #344054;\n line-height: 1.6rem;\n}\n.acf-no-field-groups-wrapper .acf-no-field-groups-inner p,\n.acf-no-field-groups-wrapper .acf-no-taxonomies-inner p,\n.acf-no-field-groups-wrapper .acf-no-post-types-inner p,\n.acf-no-field-groups-wrapper .acf-no-options-pages-inner p,\n.acf-no-field-groups-wrapper .acf-options-preview-inner p,\n.acf-no-taxonomies-wrapper .acf-no-field-groups-inner p,\n.acf-no-taxonomies-wrapper .acf-no-taxonomies-inner p,\n.acf-no-taxonomies-wrapper .acf-no-post-types-inner p,\n.acf-no-taxonomies-wrapper .acf-no-options-pages-inner p,\n.acf-no-taxonomies-wrapper .acf-options-preview-inner p,\n.acf-no-post-types-wrapper .acf-no-field-groups-inner p,\n.acf-no-post-types-wrapper .acf-no-taxonomies-inner p,\n.acf-no-post-types-wrapper .acf-no-post-types-inner p,\n.acf-no-post-types-wrapper .acf-no-options-pages-inner p,\n.acf-no-post-types-wrapper .acf-options-preview-inner p,\n.acf-no-options-pages-wrapper .acf-no-field-groups-inner p,\n.acf-no-options-pages-wrapper .acf-no-taxonomies-inner p,\n.acf-no-options-pages-wrapper .acf-no-post-types-inner p,\n.acf-no-options-pages-wrapper .acf-no-options-pages-inner p,\n.acf-no-options-pages-wrapper .acf-options-preview-inner p,\n.acf-options-preview-wrapper .acf-no-field-groups-inner p,\n.acf-options-preview-wrapper .acf-no-taxonomies-inner p,\n.acf-options-preview-wrapper .acf-no-post-types-inner p,\n.acf-options-preview-wrapper .acf-no-options-pages-inner p,\n.acf-options-preview-wrapper .acf-options-preview-inner p {\n margin-top: 12px;\n margin-bottom: 0;\n padding: 0;\n color: #667085;\n}\n.acf-no-field-groups-wrapper .acf-no-field-groups-inner p.acf-small,\n.acf-no-field-groups-wrapper .acf-no-taxonomies-inner p.acf-small,\n.acf-no-field-groups-wrapper .acf-no-post-types-inner p.acf-small,\n.acf-no-field-groups-wrapper .acf-no-options-pages-inner p.acf-small,\n.acf-no-field-groups-wrapper .acf-options-preview-inner p.acf-small,\n.acf-no-taxonomies-wrapper .acf-no-field-groups-inner p.acf-small,\n.acf-no-taxonomies-wrapper .acf-no-taxonomies-inner p.acf-small,\n.acf-no-taxonomies-wrapper .acf-no-post-types-inner p.acf-small,\n.acf-no-taxonomies-wrapper .acf-no-options-pages-inner p.acf-small,\n.acf-no-taxonomies-wrapper .acf-options-preview-inner p.acf-small,\n.acf-no-post-types-wrapper .acf-no-field-groups-inner p.acf-small,\n.acf-no-post-types-wrapper .acf-no-taxonomies-inner p.acf-small,\n.acf-no-post-types-wrapper .acf-no-post-types-inner p.acf-small,\n.acf-no-post-types-wrapper .acf-no-options-pages-inner p.acf-small,\n.acf-no-post-types-wrapper .acf-options-preview-inner p.acf-small,\n.acf-no-options-pages-wrapper .acf-no-field-groups-inner p.acf-small,\n.acf-no-options-pages-wrapper .acf-no-taxonomies-inner p.acf-small,\n.acf-no-options-pages-wrapper .acf-no-post-types-inner p.acf-small,\n.acf-no-options-pages-wrapper .acf-no-options-pages-inner p.acf-small,\n.acf-no-options-pages-wrapper .acf-options-preview-inner p.acf-small,\n.acf-options-preview-wrapper .acf-no-field-groups-inner p.acf-small,\n.acf-options-preview-wrapper .acf-no-taxonomies-inner p.acf-small,\n.acf-options-preview-wrapper .acf-no-post-types-inner p.acf-small,\n.acf-options-preview-wrapper .acf-no-options-pages-inner p.acf-small,\n.acf-options-preview-wrapper .acf-options-preview-inner p.acf-small {\n display: block;\n position: relative;\n margin-top: 32px;\n}\n.acf-no-field-groups-wrapper .acf-no-field-groups-inner img,\n.acf-no-field-groups-wrapper .acf-no-taxonomies-inner img,\n.acf-no-field-groups-wrapper .acf-no-post-types-inner img,\n.acf-no-field-groups-wrapper .acf-no-options-pages-inner img,\n.acf-no-field-groups-wrapper .acf-options-preview-inner img,\n.acf-no-taxonomies-wrapper .acf-no-field-groups-inner img,\n.acf-no-taxonomies-wrapper .acf-no-taxonomies-inner img,\n.acf-no-taxonomies-wrapper .acf-no-post-types-inner img,\n.acf-no-taxonomies-wrapper .acf-no-options-pages-inner img,\n.acf-no-taxonomies-wrapper .acf-options-preview-inner img,\n.acf-no-post-types-wrapper .acf-no-field-groups-inner img,\n.acf-no-post-types-wrapper .acf-no-taxonomies-inner img,\n.acf-no-post-types-wrapper .acf-no-post-types-inner img,\n.acf-no-post-types-wrapper .acf-no-options-pages-inner img,\n.acf-no-post-types-wrapper .acf-options-preview-inner img,\n.acf-no-options-pages-wrapper .acf-no-field-groups-inner img,\n.acf-no-options-pages-wrapper .acf-no-taxonomies-inner img,\n.acf-no-options-pages-wrapper .acf-no-post-types-inner img,\n.acf-no-options-pages-wrapper .acf-no-options-pages-inner img,\n.acf-no-options-pages-wrapper .acf-options-preview-inner img,\n.acf-options-preview-wrapper .acf-no-field-groups-inner img,\n.acf-options-preview-wrapper .acf-no-taxonomies-inner img,\n.acf-options-preview-wrapper .acf-no-post-types-inner img,\n.acf-options-preview-wrapper .acf-no-options-pages-inner img,\n.acf-options-preview-wrapper .acf-options-preview-inner img {\n max-width: 284px;\n margin-bottom: 0;\n}\n.acf-no-field-groups-wrapper .acf-no-field-groups-inner .acf-btn,\n.acf-no-field-groups-wrapper .acf-no-taxonomies-inner .acf-btn,\n.acf-no-field-groups-wrapper .acf-no-post-types-inner .acf-btn,\n.acf-no-field-groups-wrapper .acf-no-options-pages-inner .acf-btn,\n.acf-no-field-groups-wrapper .acf-options-preview-inner .acf-btn,\n.acf-no-taxonomies-wrapper .acf-no-field-groups-inner .acf-btn,\n.acf-no-taxonomies-wrapper .acf-no-taxonomies-inner .acf-btn,\n.acf-no-taxonomies-wrapper .acf-no-post-types-inner .acf-btn,\n.acf-no-taxonomies-wrapper .acf-no-options-pages-inner .acf-btn,\n.acf-no-taxonomies-wrapper .acf-options-preview-inner .acf-btn,\n.acf-no-post-types-wrapper .acf-no-field-groups-inner .acf-btn,\n.acf-no-post-types-wrapper .acf-no-taxonomies-inner .acf-btn,\n.acf-no-post-types-wrapper .acf-no-post-types-inner .acf-btn,\n.acf-no-post-types-wrapper .acf-no-options-pages-inner .acf-btn,\n.acf-no-post-types-wrapper .acf-options-preview-inner .acf-btn,\n.acf-no-options-pages-wrapper .acf-no-field-groups-inner .acf-btn,\n.acf-no-options-pages-wrapper .acf-no-taxonomies-inner .acf-btn,\n.acf-no-options-pages-wrapper .acf-no-post-types-inner .acf-btn,\n.acf-no-options-pages-wrapper .acf-no-options-pages-inner .acf-btn,\n.acf-no-options-pages-wrapper .acf-options-preview-inner .acf-btn,\n.acf-options-preview-wrapper .acf-no-field-groups-inner .acf-btn,\n.acf-options-preview-wrapper .acf-no-taxonomies-inner .acf-btn,\n.acf-options-preview-wrapper .acf-no-post-types-inner .acf-btn,\n.acf-options-preview-wrapper .acf-no-options-pages-inner .acf-btn,\n.acf-options-preview-wrapper .acf-options-preview-inner .acf-btn {\n margin-top: 32px;\n}\n.acf-no-field-groups-wrapper .acf-no-post-types-inner img,\n.acf-no-field-groups-wrapper .acf-no-options-pages-inner img,\n.acf-no-taxonomies-wrapper .acf-no-post-types-inner img,\n.acf-no-taxonomies-wrapper .acf-no-options-pages-inner img,\n.acf-no-post-types-wrapper .acf-no-post-types-inner img,\n.acf-no-post-types-wrapper .acf-no-options-pages-inner img,\n.acf-no-options-pages-wrapper .acf-no-post-types-inner img,\n.acf-no-options-pages-wrapper .acf-no-options-pages-inner img,\n.acf-options-preview-wrapper .acf-no-post-types-inner img,\n.acf-options-preview-wrapper .acf-no-options-pages-inner img {\n width: 106px;\n height: 88px;\n}\n.acf-no-field-groups-wrapper .acf-no-taxonomies-inner img,\n.acf-no-taxonomies-wrapper .acf-no-taxonomies-inner img,\n.acf-no-post-types-wrapper .acf-no-taxonomies-inner img,\n.acf-no-options-pages-wrapper .acf-no-taxonomies-inner img,\n.acf-options-preview-wrapper .acf-no-taxonomies-inner img {\n width: 98px;\n height: 88px;\n}\n\n.acf-no-field-groups #the-list tr:hover td,\n.acf-no-field-groups #the-list tr:hover th,\n.acf-no-field-groups .acf-admin-field-groups .wp-list-table tr:hover,\n.acf-no-field-groups .striped > tbody > :nth-child(odd), .acf-no-field-groups ul.striped > :nth-child(odd), .acf-no-field-groups .alternate,\n.acf-no-post-types #the-list tr:hover td,\n.acf-no-post-types #the-list tr:hover th,\n.acf-no-post-types .acf-admin-field-groups .wp-list-table tr:hover,\n.acf-no-post-types .striped > tbody > :nth-child(odd),\n.acf-no-post-types ul.striped > :nth-child(odd),\n.acf-no-post-types .alternate,\n.acf-no-taxonomies #the-list tr:hover td,\n.acf-no-taxonomies #the-list tr:hover th,\n.acf-no-taxonomies .acf-admin-field-groups .wp-list-table tr:hover,\n.acf-no-taxonomies .striped > tbody > :nth-child(odd),\n.acf-no-taxonomies ul.striped > :nth-child(odd),\n.acf-no-taxonomies .alternate,\n.acf-no-options-pages #the-list tr:hover td,\n.acf-no-options-pages #the-list tr:hover th,\n.acf-no-options-pages .acf-admin-field-groups .wp-list-table tr:hover,\n.acf-no-options-pages .striped > tbody > :nth-child(odd),\n.acf-no-options-pages ul.striped > :nth-child(odd),\n.acf-no-options-pages .alternate {\n background-color: transparent !important;\n}\n.acf-no-field-groups .wp-list-table thead,\n.acf-no-field-groups .wp-list-table tfoot,\n.acf-no-post-types .wp-list-table thead,\n.acf-no-post-types .wp-list-table tfoot,\n.acf-no-taxonomies .wp-list-table thead,\n.acf-no-taxonomies .wp-list-table tfoot,\n.acf-no-options-pages .wp-list-table thead,\n.acf-no-options-pages .wp-list-table tfoot {\n display: none;\n}\n.acf-no-field-groups .wp-list-table a.acf-btn,\n.acf-no-post-types .wp-list-table a.acf-btn,\n.acf-no-taxonomies .wp-list-table a.acf-btn,\n.acf-no-options-pages .wp-list-table a.acf-btn {\n border: 1px solid rgba(0, 0, 0, 0.16);\n box-shadow: none;\n}\n\n.acf-internal-post-type #the-list .no-items td {\n vertical-align: middle;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Options Page Preview\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-options-preview .acf-btn {\n margin-left: 8px;\n}\n.acf-options-preview .disabled {\n background-color: #F2F4F7 !important;\n color: #98A2B3 !important;\n border: 1px #D0D5DD solid;\n cursor: default !important;\n}\n.acf-options-preview .acf-options-pages-preview-upgrade-button {\n height: 48px;\n padding: 8px 48px 8px 48px !important;\n border-radius: 6px;\n border: 1px;\n gap: 6px;\n display: inline-flex;\n align-items: center;\n align-self: stretch;\n background: linear-gradient(90.52deg, #3E8BFF 0.44%, #A45CFF 113.3%);\n box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);\n background-size: 180% 80%;\n background-position: 100% 0;\n transition: background-position 0.5s;\n border-radius: 6px;\n text-decoration: none;\n}\n.acf-options-preview .acf-options-pages-preview-upgrade-button:hover {\n background-position: 0 0;\n}\n.acf-options-preview .acf-options-pages-preview-upgrade-button:focus {\n border: none;\n outline: none;\n box-shadow: none;\n}\n.acf-options-preview .acf-options-pages-preview-upgrade-button p {\n margin: 0;\n padding-top: 8px;\n padding-bottom: 8px;\n font-weight: normal;\n text-transform: none;\n color: #fff;\n}\n.acf-options-preview .acf-options-pages-preview-upgrade-button .acf-icon {\n width: 20px;\n height: 20px;\n margin-right: 6px;\n margin-left: -2px;\n background-color: #F9FAFB;\n}\n.acf-options-preview .acf_options_preview_wrap a.acf-btn i {\n margin-right: -2px !important;\n margin-left: 0px !important;\n}\n.acf-options-preview .acf-pro-label {\n vertical-align: middle;\n}\n.acf-options-preview .acf_options_preview_wrap img {\n max-height: 88px;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Small screen list table info toggle\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-internal-post-type .wp-list-table .toggle-row:before {\n top: 4px;\n left: 16px;\n border-radius: 0;\n content: \"\";\n display: block;\n position: absolute;\n width: 16px;\n height: 16px;\n background-color: #0783BE;\n border-radius: 0;\n -webkit-mask-size: 20px;\n mask-size: 20px;\n -webkit-mask-repeat: no-repeat;\n mask-repeat: no-repeat;\n -webkit-mask-position: center;\n mask-position: center;\n -webkit-mask-image: url(\"../../images/icons/icon-chevron-down.svg\");\n mask-image: url(\"../../images/icons/icon-chevron-down.svg\");\n text-indent: 100%;\n white-space: nowrap;\n overflow: hidden;\n}\n.acf-internal-post-type .wp-list-table .is-expanded .toggle-row:before {\n -webkit-mask-image: url(\"../../images/icons/icon-chevron-up.svg\");\n mask-image: url(\"../../images/icons/icon-chevron-up.svg\");\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Small screen checkbox\n*\n*---------------------------------------------------------------------------------------------*/\n@media screen and (max-width: 880px) {\n .acf-internal-post-type .widefat th input[type=checkbox],\n .acf-internal-post-type .widefat thead td input[type=checkbox],\n .acf-internal-post-type .widefat tfoot td input[type=checkbox] {\n margin-bottom: 0;\n }\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Admin Navigation\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-admin-toolbar {\n position: unset;\n top: 32px;\n height: 72px;\n z-index: 800;\n background: #344054;\n color: #98A2B3;\n}\n.acf-admin-toolbar .acf-admin-toolbar-inner {\n display: flex;\n justify-content: space-between;\n align-content: center;\n align-items: center;\n max-width: 100%;\n}\n.acf-admin-toolbar .acf-admin-toolbar-inner .acf-nav-wrap {\n display: flex;\n align-items: center;\n}\n@media screen and (max-width: 1250px) {\n .acf-admin-toolbar .acf-admin-toolbar-inner .acf-nav-wrap .acf-header-tab-acf-post-type,\n .acf-admin-toolbar .acf-admin-toolbar-inner .acf-nav-wrap .acf-header-tab-acf-taxonomy {\n display: none;\n }\n .acf-admin-toolbar .acf-admin-toolbar-inner .acf-nav-wrap .acf-more .acf-header-tab-acf-post-type,\n .acf-admin-toolbar .acf-admin-toolbar-inner .acf-nav-wrap .acf-more .acf-header-tab-acf-taxonomy {\n display: flex;\n }\n}\n.acf-admin-toolbar .acf-admin-toolbar-inner .acf-nav-upgrade-wrap {\n display: flex;\n align-items: center;\n}\n.acf-admin-toolbar .acf-admin-toolbar-inner .acf-nav-wpengine-logo {\n display: inline-flex;\n margin-left: 24px;\n}\n@media screen and (max-width: 1000px) {\n .acf-admin-toolbar .acf-admin-toolbar-inner .acf-nav-wpengine-logo {\n display: none;\n }\n}\n@media screen and (max-width: 880px) {\n .acf-admin-toolbar {\n position: static;\n }\n}\n.acf-admin-toolbar .acf-logo {\n display: flex;\n margin-right: 24px;\n text-decoration: none;\n}\n.acf-admin-toolbar .acf-logo .acf-pro-label {\n margin-left: 8px;\n}\n.acf-admin-toolbar .acf-logo img {\n display: block;\n max-width: 55px;\n line-height: 0%;\n}\n.acf-admin-toolbar h2 {\n display: none;\n color: #F9FAFB;\n}\n.acf-admin-toolbar .acf-tab {\n display: flex;\n align-items: center;\n box-sizing: border-box;\n min-height: 40px;\n margin-right: 8px;\n padding-top: 8px;\n padding-right: 16px;\n padding-bottom: 8px;\n padding-left: 16px;\n border-width: 1px;\n border-style: solid;\n border-color: transparent;\n border-radius: 6px;\n color: #98A2B3;\n text-decoration: none;\n}\n.acf-admin-toolbar .acf-tab.is-active {\n background-color: #475467;\n color: #fff;\n}\n.acf-admin-toolbar .acf-tab:hover {\n background-color: #475467;\n color: #F9FAFB;\n}\n.acf-admin-toolbar .acf-tab:focus-visible {\n border-width: 1px;\n border-style: solid;\n border-color: #667085;\n}\n.acf-admin-toolbar .acf-tab:focus {\n box-shadow: none;\n}\n.acf-admin-toolbar .acf-more:hover .acf-tab.acf-more-tab {\n background-color: #475467;\n color: #F9FAFB;\n}\n.acf-admin-toolbar .acf-more ul {\n display: none;\n position: absolute;\n box-sizing: border-box;\n background: #fff;\n z-index: 1051;\n overflow: hidden;\n min-width: 280px;\n margin-top: 0;\n margin-right: 0;\n margin-bottom: 0;\n margin-left: 0;\n padding: 0;\n border-radius: 8px;\n box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.04), 0px 8px 23px rgba(0, 0, 0, 0.12);\n}\n.acf-admin-toolbar .acf-more ul .acf-wp-engine {\n display: flex;\n align-items: center;\n justify-content: space-between;\n min-height: 48px;\n border-top: 1px solid rgba(0, 0, 0, 0.08);\n background: #ECFBFC;\n}\n.acf-admin-toolbar .acf-more ul .acf-wp-engine a {\n display: flex;\n width: 100%;\n justify-content: space-between;\n border-top: none;\n}\n.acf-admin-toolbar .acf-more ul li {\n margin: 0;\n padding: 0 16px;\n}\n.acf-admin-toolbar .acf-more ul li .acf-header-tab-acf-post-type,\n.acf-admin-toolbar .acf-more ul li .acf-header-tab-acf-taxonomy {\n display: none;\n}\n.acf-admin-toolbar .acf-more ul li.acf-more-section-header {\n background: #F9FAFB;\n padding: 1px 0 0 0;\n margin-top: -1px;\n border-top: 1px solid #EAECF0;\n border-bottom: 1px solid #EAECF0;\n}\n.acf-admin-toolbar .acf-more ul li.acf-more-section-header span {\n color: #475467;\n font-size: 12px;\n font-weight: bold;\n}\n.acf-admin-toolbar .acf-more ul li.acf-more-section-header span:hover {\n background: #F9FAFB;\n}\n.acf-admin-toolbar .acf-more ul li a {\n margin: 0;\n padding: 0;\n color: #1D2939;\n border-radius: 0;\n border-top-width: 1px;\n border-top-style: solid;\n border-top-color: #F2F4F7;\n}\n.acf-admin-toolbar .acf-more ul li a:hover, .acf-admin-toolbar .acf-more ul li a.acf-tab.is-active {\n background-color: unset;\n color: #0783BE;\n}\n.acf-admin-toolbar .acf-more ul li a i.acf-icon {\n display: none !important;\n width: 16px;\n height: 16px;\n -webkit-mask-size: 16px;\n mask-size: 16px;\n background-color: #98A2B3 !important;\n}\n.acf-admin-toolbar .acf-more ul li a .acf-requires-pro {\n justify-content: center;\n align-items: center;\n color: white;\n background: linear-gradient(90.52deg, #3E8BFF 0.44%, #A45CFF 113.3%);\n background-size: 140% 20%;\n background-position: 100% 0;\n border-radius: 100px;\n font-size: 11px;\n position: absolute;\n right: 16px;\n padding-right: 6px;\n padding-left: 6px;\n}\n.acf-admin-toolbar .acf-more ul li a img.acf-wp-engine-pro {\n display: block;\n height: 16px;\n width: auto;\n}\n.acf-admin-toolbar .acf-more ul li a .acf-wp-engine-upsell-pill {\n display: inline-flex;\n justify-content: center;\n align-items: center;\n min-height: 22px;\n border-radius: 100px;\n font-size: 11px;\n padding-right: 8px;\n padding-left: 8px;\n background: #0ECAD4;\n color: #FFFFFF;\n text-shadow: 0px 1px 0 rgba(0, 0, 0, 0.12);\n text-transform: uppercase;\n}\n.acf-admin-toolbar .acf-more ul li:first-child a {\n border-bottom: none;\n}\n.acf-admin-toolbar .acf-more ul:hover, .acf-admin-toolbar .acf-more ul:focus {\n display: block;\n}\n.acf-admin-toolbar .acf-more:hover ul, .acf-admin-toolbar .acf-more:focus ul {\n display: block;\n}\n#wpcontent .acf-admin-toolbar {\n box-sizing: border-box;\n margin-left: -20px;\n padding-top: 16px;\n padding-right: 32px;\n padding-bottom: 16px;\n padding-left: 32px;\n}\n@media screen and (max-width: 600px) {\n .acf-admin-toolbar {\n display: none;\n }\n}\n\n.rtl #wpcontent .acf-admin-toolbar {\n margin-left: 0;\n margin-right: -20px;\n}\n.rtl #wpcontent .acf-admin-toolbar .acf-tab {\n margin-left: 8px;\n margin-right: 0;\n}\n.rtl .acf-logo {\n margin-right: 0;\n margin-left: 32px;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Admin Toolbar Icons\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-admin-toolbar .acf-tab i.acf-icon,\n.acf-admin-toolbar .acf-more i.acf-icon {\n display: none;\n margin-right: 8px;\n margin-left: -2px;\n}\n.acf-admin-toolbar .acf-tab i.acf-icon.acf-icon-dropdown,\n.acf-admin-toolbar .acf-more i.acf-icon.acf-icon-dropdown {\n -webkit-mask-image: url(\"../../images/icons/icon-chevron-down.svg\");\n mask-image: url(\"../../images/icons/icon-chevron-down.svg\");\n width: 16px;\n height: 16px;\n -webkit-mask-size: 16px;\n mask-size: 16px;\n margin-right: -6px;\n margin-left: 6px;\n}\n.acf-admin-toolbar .acf-tab.acf-header-tab-acf-field-group i.acf-icon, .acf-admin-toolbar .acf-tab.acf-header-tab-acf-post-type i.acf-icon, .acf-admin-toolbar .acf-tab.acf-header-tab-acf-taxonomy i.acf-icon, .acf-admin-toolbar .acf-tab.acf-header-tab-acf-tools i.acf-icon, .acf-admin-toolbar .acf-tab.acf-header-tab-acf-settings-updates i.acf-icon, .acf-admin-toolbar .acf-tab.acf-header-tab-acf-more i.acf-icon,\n.acf-admin-toolbar .acf-more.acf-header-tab-acf-field-group i.acf-icon,\n.acf-admin-toolbar .acf-more.acf-header-tab-acf-post-type i.acf-icon,\n.acf-admin-toolbar .acf-more.acf-header-tab-acf-taxonomy i.acf-icon,\n.acf-admin-toolbar .acf-more.acf-header-tab-acf-tools i.acf-icon,\n.acf-admin-toolbar .acf-more.acf-header-tab-acf-settings-updates i.acf-icon,\n.acf-admin-toolbar .acf-more.acf-header-tab-acf-more i.acf-icon {\n display: inline-flex;\n}\n.acf-admin-toolbar .acf-tab.is-active i.acf-icon, .acf-admin-toolbar .acf-tab:hover i.acf-icon,\n.acf-admin-toolbar .acf-more.is-active i.acf-icon,\n.acf-admin-toolbar .acf-more:hover i.acf-icon {\n background-color: #EAECF0;\n}\n.rtl .acf-admin-toolbar .acf-tab i.acf-icon {\n margin-right: -2px;\n margin-left: 8px;\n}\n.acf-admin-toolbar .acf-header-tab-acf-field-group i.acf-icon {\n -webkit-mask-image: url(\"../../images/icons/icon-field-groups.svg\");\n mask-image: url(\"../../images/icons/icon-field-groups.svg\");\n}\n.acf-admin-toolbar .acf-header-tab-acf-post-type i.acf-icon {\n -webkit-mask-image: url(\"../../images/icons/icon-post-type.svg\");\n mask-image: url(\"../../images/icons/icon-post-type.svg\");\n}\n.acf-admin-toolbar .acf-header-tab-acf-taxonomy i.acf-icon {\n -webkit-mask-image: url(\"../../images/icons/icon-taxonomies.svg\");\n mask-image: url(\"../../images/icons/icon-taxonomies.svg\");\n}\n.acf-admin-toolbar .acf-header-tab-acf-tools i.acf-icon {\n -webkit-mask-image: url(\"../../images/icons/icon-tools.svg\");\n mask-image: url(\"../../images/icons/icon-tools.svg\");\n}\n.acf-admin-toolbar .acf-header-tab-acf-settings-updates i.acf-icon {\n -webkit-mask-image: url(\"../../images/icons/icon-updates.svg\");\n mask-image: url(\"../../images/icons/icon-updates.svg\");\n}\n.acf-admin-toolbar .acf-header-tab-acf-more i.acf-icon-more {\n -webkit-mask-image: url(\"../../images/icons/icon-extended-menu.svg\");\n mask-image: url(\"../../images/icons/icon-extended-menu.svg\");\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Hide WP default controls\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-admin-page #wpbody-content > .notice:not(.inline, .below-h2) {\n display: none;\n}\n.acf-admin-page h1.wp-heading-inline {\n display: none;\n}\n.acf-admin-page .wrap .wp-heading-inline + .page-title-action {\n display: none;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Headerbar\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-headerbar {\n display: flex;\n align-items: center;\n position: sticky;\n top: 32px;\n z-index: 700;\n box-sizing: border-box;\n min-height: 72px;\n margin-left: -20px;\n padding-top: 8px;\n padding-right: 32px;\n padding-bottom: 8px;\n padding-left: 32px;\n background-color: #fff;\n box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.1);\n}\n.acf-headerbar .acf-headerbar-inner {\n flex: 1 1 auto;\n display: flex;\n align-items: center;\n justify-content: space-between;\n max-width: 1440px;\n gap: 8px;\n}\n.acf-headerbar .acf-page-title {\n display: flex;\n align-items: center;\n gap: 8px;\n margin-top: 0;\n margin-right: 16px;\n margin-bottom: 0;\n margin-left: 0;\n padding-top: 0;\n padding-right: 0;\n padding-bottom: 0;\n padding-left: 0;\n}\n.acf-headerbar .acf-page-title .acf-duplicated-from {\n color: #98A2B3;\n}\n.acf-headerbar .acf-page-title .acf-pro-label {\n box-shadow: none;\n border: 1px solid rgba(0, 0, 0, 0.2);\n}\n@media screen and (max-width: 880px) {\n .acf-headerbar {\n position: static;\n }\n}\n@media screen and (max-width: 600px) {\n .acf-headerbar {\n justify-content: space-between;\n position: relative;\n top: 46px;\n min-height: 64px;\n padding-right: 12px;\n }\n}\n.acf-headerbar .acf-headerbar-content {\n flex: 1 1 auto;\n display: flex;\n align-items: center;\n}\n@media screen and (max-width: 880px) {\n .acf-headerbar .acf-headerbar-content {\n flex-wrap: wrap;\n }\n .acf-headerbar .acf-headerbar-content .acf-headerbar-title,\n .acf-headerbar .acf-headerbar-content .acf-title-wrap {\n flex: 1 1 100%;\n }\n .acf-headerbar .acf-headerbar-content .acf-title-wrap {\n margin-top: 8px;\n }\n}\n.acf-headerbar .acf-input-error {\n border: 1px rgba(209, 55, 55, 0.5) solid !important;\n box-shadow: 0px 0px 0px 3px rgba(209, 55, 55, 0.12), 0px 0px 0px rgba(255, 54, 54, 0.25) !important;\n background-image: url(\"../../images/icons/icon-warning-alt-red.svg\");\n background-position: right 10px top 50%;\n background-size: 20px;\n background-repeat: no-repeat;\n}\n.acf-headerbar .acf-input-error:focus {\n outline: none !important;\n border: 1px rgba(209, 55, 55, 0.8) solid !important;\n box-shadow: 0px 0px 0px 3px rgba(209, 55, 55, 0.16), 0px 0px 0px rgba(255, 54, 54, 0.25) !important;\n}\n.acf-headerbar .acf-headerbar-title-field {\n min-width: 320px;\n}\n@media screen and (max-width: 880px) {\n .acf-headerbar .acf-headerbar-title-field {\n min-width: 100%;\n }\n}\n.acf-headerbar .acf-headerbar-actions {\n display: flex;\n}\n.acf-headerbar .acf-headerbar-actions .acf-btn {\n margin-left: 8px;\n}\n.acf-headerbar .acf-headerbar-actions .disabled {\n background-color: #F2F4F7;\n color: #98A2B3 !important;\n border: 1px #D0D5DD solid;\n cursor: default;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Edit Field Group Headerbar\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-headerbar-field-editor {\n position: sticky;\n top: 32px;\n z-index: 1020;\n margin-left: -20px;\n width: calc(100% + 20px);\n}\n@media screen and (max-width: 880px) {\n .acf-headerbar-field-editor {\n position: relative;\n top: 0;\n width: 100%;\n margin-left: 0;\n padding-right: 8px;\n padding-left: 8px;\n }\n}\n@media screen and (max-width: 640px) {\n .acf-headerbar-field-editor {\n position: relative;\n top: 46px;\n }\n}\n@media screen and (max-width: 880px) {\n .acf-headerbar-field-editor .acf-headerbar-inner {\n flex-wrap: wrap;\n justify-content: flex-start;\n align-content: flex-start;\n align-items: flex-start;\n width: 100%;\n }\n .acf-headerbar-field-editor .acf-headerbar-inner .acf-page-title {\n flex: 1 1 auto;\n }\n .acf-headerbar-field-editor .acf-headerbar-inner .acf-headerbar-actions {\n flex: 1 1 100%;\n margin-top: 8px;\n gap: 8px;\n }\n .acf-headerbar-field-editor .acf-headerbar-inner .acf-headerbar-actions .acf-btn {\n width: 100%;\n display: inline-flex;\n justify-content: center;\n margin: 0;\n }\n}\n.acf-headerbar-field-editor .acf-page-title {\n margin-right: 16px;\n}\n\n.rtl .acf-headerbar,\n.rtl .acf-headerbar-field-editor {\n margin-left: 0;\n margin-right: -20px;\n}\n.rtl .acf-headerbar .acf-page-title,\n.rtl .acf-headerbar-field-editor .acf-page-title {\n margin-left: 16px;\n margin-right: 0;\n}\n.rtl .acf-headerbar .acf-headerbar-actions .acf-btn,\n.rtl .acf-headerbar-field-editor .acf-headerbar-actions .acf-btn {\n margin-left: 0;\n margin-right: 8px;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* ACF Buttons\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-btn {\n display: inline-flex;\n align-items: center;\n box-sizing: border-box;\n min-height: 40px;\n padding-top: 8px;\n padding-right: 16px;\n padding-bottom: 8px;\n padding-left: 16px;\n background-color: #0783BE;\n border-radius: 6px;\n border-width: 1px;\n border-style: solid;\n border-color: rgba(16, 24, 40, 0.2);\n text-decoration: none;\n color: #fff !important;\n transition: all 0.2s ease-in-out;\n transition-property: background, border, box-shadow;\n}\n.acf-btn:hover {\n background-color: #066998;\n color: #fff;\n cursor: pointer;\n}\n.acf-btn:disabled, .acf-btn.disabled {\n background-color: #F2F4F7;\n border-color: #EAECF0;\n color: #98A2B3 !important;\n transition: none;\n pointer-events: none;\n}\n.acf-btn.acf-btn-sm {\n min-height: 32px;\n padding-top: 4px;\n padding-right: 12px;\n padding-bottom: 4px;\n padding-left: 12px;\n}\n.acf-btn.acf-btn-secondary {\n background-color: transparent;\n color: #0783BE !important;\n border-color: #0783BE;\n}\n.acf-btn.acf-btn-secondary:hover {\n background-color: #f3f9fc;\n}\n.acf-btn.acf-btn-muted {\n background-color: #667085;\n color: white;\n height: 48px;\n padding: 8px 28px 8px 28px !important;\n border-radius: 6px;\n border: 1px;\n gap: 6px;\n}\n.acf-btn.acf-btn-muted:hover {\n background-color: #475467 !important;\n}\n.acf-btn.acf-btn-tertiary {\n background-color: transparent;\n color: #667085 !important;\n border-color: #D0D5DD;\n}\n.acf-btn.acf-btn-tertiary:hover {\n color: #667085 !important;\n border-color: #98A2B3;\n}\n.acf-btn.acf-btn-clear {\n background-color: transparent;\n color: #667085 !important;\n border-color: transparent;\n}\n.acf-btn.acf-btn-clear:hover {\n color: #0783BE !important;\n}\n.acf-btn.acf-btn-pro {\n background: linear-gradient(90.52deg, #3E8BFF 0.44%, #A45CFF 113.3%);\n background-size: 180% 80%;\n background-position: 100% 0;\n transition: background-position 0.5s;\n}\n.acf-btn.acf-btn-pro:hover {\n background-position: 0 0;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Button icons\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-btn i.acf-icon {\n width: 20px;\n height: 20px;\n -webkit-mask-size: 20px;\n mask-size: 20px;\n margin-right: 6px;\n margin-left: -4px;\n}\n.acf-btn.acf-btn-sm i.acf-icon {\n width: 16px;\n height: 16px;\n -webkit-mask-size: 16px;\n mask-size: 16px;\n margin-right: 6px;\n margin-left: -2px;\n}\n\n.rtl .acf-btn i.acf-icon {\n margin-right: -4px;\n margin-left: 6px;\n}\n.rtl .acf-btn.acf-btn-sm i.acf-icon {\n margin-right: -4px;\n margin-left: 2px;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Delete field group button\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-btn.acf-delete-field-group:hover {\n background-color: #fbeded;\n border-color: #D13737 !important;\n color: #D13737 !important;\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tIcon base styling\n*\n*--------------------------------------------------------------------------------------------*/\n.acf-internal-post-type i.acf-icon,\n.post-type-acf-field-group i.acf-icon {\n display: inline-flex;\n width: 20px;\n height: 20px;\n background-color: currentColor;\n border: none;\n border-radius: 0;\n -webkit-mask-size: contain;\n mask-size: contain;\n -webkit-mask-repeat: no-repeat;\n mask-repeat: no-repeat;\n -webkit-mask-position: center;\n mask-position: center;\n text-indent: 500%;\n white-space: nowrap;\n overflow: hidden;\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tIcons\n*\n*--------------------------------------------------------------------------------------------*/\n.acf-admin-page {\n /*--------------------------------------------------------------------------------------------\n *\n *\tInactive group icon\n *\n *--------------------------------------------------------------------------------------------*/\n}\n.acf-admin-page i.acf-field-setting-fc-delete, .acf-admin-page i.acf-field-setting-fc-duplicate {\n box-sizing: border-box;\n /* Auto layout */\n display: flex;\n flex-direction: row;\n justify-content: center;\n align-items: center;\n padding: 8px;\n cursor: pointer;\n width: 32px;\n height: 32px;\n /* Base / White */\n background: #FFFFFF;\n /* Gray/300 */\n border: 1px solid #D0D5DD;\n /* Elevation/01 */\n box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.1);\n border-radius: 6px;\n /* Inside auto layout */\n flex: none;\n order: 0;\n flex-grow: 0;\n}\n.acf-admin-page i.acf-icon-plus {\n -webkit-mask-image: url(\"../../images/icons/icon-add.svg\");\n mask-image: url(\"../../images/icons/icon-add.svg\");\n}\n.acf-admin-page i.acf-icon-stars {\n -webkit-mask-image: url(\"../../images/icons/icon-stars.svg\");\n mask-image: url(\"../../images/icons/icon-stars.svg\");\n}\n.acf-admin-page i.acf-icon-help {\n -webkit-mask-image: url(\"../../images/icons/icon-help.svg\");\n mask-image: url(\"../../images/icons/icon-help.svg\");\n}\n.acf-admin-page i.acf-icon-key {\n -webkit-mask-image: url(\"../../images/icons/icon-key.svg\");\n mask-image: url(\"../../images/icons/icon-key.svg\");\n}\n.acf-admin-page i.acf-icon-regenerate {\n -webkit-mask-image: url(\"../../images/icons/icon-regenerate.svg\");\n mask-image: url(\"../../images/icons/icon-regenerate.svg\");\n}\n.acf-admin-page i.acf-icon-trash, .acf-admin-page button.acf-icon-trash {\n -webkit-mask-image: url(\"../../images/icons/icon-trash.svg\");\n mask-image: url(\"../../images/icons/icon-trash.svg\");\n}\n.acf-admin-page i.acf-icon-extended-menu, .acf-admin-page button.acf-icon-extended-menu {\n -webkit-mask-image: url(\"../../images/icons/icon-extended-menu.svg\");\n mask-image: url(\"../../images/icons/icon-extended-menu.svg\");\n}\n.acf-admin-page i.acf-icon.-duplicate, .acf-admin-page button.acf-icon-duplicate {\n -webkit-mask-image: url(\"../../images/field-type-icons/icon-field-clone.svg\");\n mask-image: url(\"../../images/field-type-icons/icon-field-clone.svg\");\n}\n.acf-admin-page i.acf-icon.-duplicate:before, .acf-admin-page i.acf-icon.-duplicate:after, .acf-admin-page button.acf-icon-duplicate:before, .acf-admin-page button.acf-icon-duplicate:after {\n content: none;\n}\n.acf-admin-page i.acf-icon-arrow-right {\n -webkit-mask-image: url(\"../../images/icons/icon-arrow-right.svg\");\n mask-image: url(\"../../images/icons/icon-arrow-right.svg\");\n}\n.acf-admin-page i.acf-icon-arrow-up-right {\n -webkit-mask-image: url(\"../../images/icons/icon-arrow-up-right.svg\");\n mask-image: url(\"../../images/icons/icon-arrow-up-right.svg\");\n}\n.acf-admin-page i.acf-icon-arrow-left {\n -webkit-mask-image: url(\"../../images/icons/icon-arrow-left.svg\");\n mask-image: url(\"../../images/icons/icon-arrow-left.svg\");\n}\n.acf-admin-page i.acf-icon-chevron-right,\n.acf-admin-page .acf-icon.-right {\n -webkit-mask-image: url(\"../../images/icons/icon-chevron-right.svg\");\n mask-image: url(\"../../images/icons/icon-chevron-right.svg\");\n}\n.acf-admin-page i.acf-icon-chevron-left,\n.acf-admin-page .acf-icon.-left {\n -webkit-mask-image: url(\"../../images/icons/icon-chevron-left.svg\");\n mask-image: url(\"../../images/icons/icon-chevron-left.svg\");\n}\n.acf-admin-page i.acf-icon-key-solid {\n -webkit-mask-image: url(\"../../images/icons/icon-key-solid.svg\");\n mask-image: url(\"../../images/icons/icon-key-solid.svg\");\n}\n.acf-admin-page i.acf-icon-globe,\n.acf-admin-page .acf-icon.-globe {\n -webkit-mask-image: url(\"../../images/icons/icon-globe.svg\");\n mask-image: url(\"../../images/icons/icon-globe.svg\");\n}\n.acf-admin-page i.acf-icon-image,\n.acf-admin-page .acf-icon.-picture {\n -webkit-mask-image: url(\"../../images/field-type-icons/icon-field-image.svg\");\n mask-image: url(\"../../images/field-type-icons/icon-field-image.svg\");\n}\n.acf-admin-page i.acf-icon-warning {\n -webkit-mask-image: url(\"../../images/icons/icon-warning-alt.svg\");\n mask-image: url(\"../../images/icons/icon-warning-alt.svg\");\n}\n.acf-admin-page i.acf-icon-warning-red {\n -webkit-mask-image: url(\"../../images/icons/icon-warning-alt-red.svg\");\n mask-image: url(\"../../images/icons/icon-warning-alt-red.svg\");\n}\n.acf-admin-page i.acf-icon-dots-grid {\n -webkit-mask-image: url(\"../../images/icons/icon-dots-grid.svg\");\n mask-image: url(\"../../images/icons/icon-dots-grid.svg\");\n}\n.acf-admin-page i.acf-icon-play {\n -webkit-mask-image: url(\"../../images/icons/icon-play.svg\");\n mask-image: url(\"../../images/icons/icon-play.svg\");\n}\n.acf-admin-page i.acf-icon-lock {\n -webkit-mask-image: url(\"../../images/icons/icon-lock.svg\");\n mask-image: url(\"../../images/icons/icon-lock.svg\");\n}\n.acf-admin-page i.acf-icon-document {\n -webkit-mask-image: url(\"../../images/icons/icon-document.svg\");\n mask-image: url(\"../../images/icons/icon-document.svg\");\n}\n.acf-admin-page .post-type-acf-field-group .post-state,\n.acf-admin-page .acf-internal-post-type .post-state {\n font-weight: normal;\n}\n.acf-admin-page .post-type-acf-field-group .post-state .dashicons.dashicons-hidden,\n.acf-admin-page .acf-internal-post-type .post-state .dashicons.dashicons-hidden {\n display: inline-flex;\n width: 18px;\n height: 18px;\n background-color: #98A2B3;\n border: none;\n border-radius: 0;\n -webkit-mask-size: 18px;\n mask-size: 18px;\n -webkit-mask-repeat: no-repeat;\n mask-repeat: no-repeat;\n -webkit-mask-position: center;\n mask-position: center;\n -webkit-mask-image: url(\"../../images/icons/icon-hidden.svg\");\n mask-image: url(\"../../images/icons/icon-hidden.svg\");\n}\n.acf-admin-page .post-type-acf-field-group .post-state .dashicons.dashicons-hidden:before,\n.acf-admin-page .acf-internal-post-type .post-state .dashicons.dashicons-hidden:before {\n display: none;\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tEdit field group page postbox header icons\n*\n*--------------------------------------------------------------------------------------------*/\n#acf-field-group-fields .postbox-header h2,\n#acf-field-group-fields .postbox-header h3,\n#acf-field-group-fields .acf-sub-field-list-header h2,\n#acf-field-group-fields .acf-sub-field-list-header h3,\n#acf-field-group-options .postbox-header h2,\n#acf-field-group-options .postbox-header h3,\n#acf-field-group-options .acf-sub-field-list-header h2,\n#acf-field-group-options .acf-sub-field-list-header h3,\n#acf-advanced-settings .postbox-header h2,\n#acf-advanced-settings .postbox-header h3,\n#acf-advanced-settings .acf-sub-field-list-header h2,\n#acf-advanced-settings .acf-sub-field-list-header h3 {\n display: inline-flex;\n justify-content: flex-start;\n align-content: stretch;\n align-items: center;\n}\n#acf-field-group-fields .postbox-header h2:before,\n#acf-field-group-fields .postbox-header h3:before,\n#acf-field-group-fields .acf-sub-field-list-header h2:before,\n#acf-field-group-fields .acf-sub-field-list-header h3:before,\n#acf-field-group-options .postbox-header h2:before,\n#acf-field-group-options .postbox-header h3:before,\n#acf-field-group-options .acf-sub-field-list-header h2:before,\n#acf-field-group-options .acf-sub-field-list-header h3:before,\n#acf-advanced-settings .postbox-header h2:before,\n#acf-advanced-settings .postbox-header h3:before,\n#acf-advanced-settings .acf-sub-field-list-header h2:before,\n#acf-advanced-settings .acf-sub-field-list-header h3:before {\n content: \"\";\n display: inline-block;\n width: 20px;\n height: 20px;\n margin-right: 8px;\n background-color: #98A2B3;\n border: none;\n border-radius: 0;\n -webkit-mask-size: contain;\n mask-size: contain;\n -webkit-mask-repeat: no-repeat;\n mask-repeat: no-repeat;\n -webkit-mask-position: center;\n mask-position: center;\n}\n\n.rtl #acf-field-group-fields .postbox-header h2:before,\n.rtl #acf-field-group-fields .postbox-header h3:before,\n.rtl #acf-field-group-fields .acf-sub-field-list-header h2:before,\n.rtl #acf-field-group-fields .acf-sub-field-list-header h3:before,\n.rtl #acf-field-group-options .postbox-header h2:before,\n.rtl #acf-field-group-options .postbox-header h3:before,\n.rtl #acf-field-group-options .acf-sub-field-list-header h2:before,\n.rtl #acf-field-group-options .acf-sub-field-list-header h3:before {\n margin-right: 0;\n margin-left: 8px;\n}\n\n#acf-field-group-fields .postbox-header h2:before,\nh3.acf-sub-field-list-title:before,\n.acf-link-field-groups-popup h3:before {\n -webkit-mask-image: url(\"../../images/icons/icon-fields.svg\");\n mask-image: url(\"../../images/icons/icon-fields.svg\");\n}\n\n.acf-create-options-page-popup h3:before {\n -webkit-mask-image: url(\"../../images/icons/icon-sliders.svg\");\n mask-image: url(\"../../images/icons/icon-sliders.svg\");\n}\n\n#acf-field-group-options .postbox-header h2:before {\n -webkit-mask-image: url(\"../../images/icons/icon-settings.svg\");\n mask-image: url(\"../../images/icons/icon-settings.svg\");\n}\n\n.acf-field-setting-fc_layout .acf-field-settings-fc_head label:before {\n -webkit-mask-image: url(\"../../images/icons/icon-layout.svg\");\n mask-image: url(\"../../images/icons/icon-layout.svg\");\n}\n\n.acf-admin-single-post-type #acf-advanced-settings .postbox-header h2:before,\n.acf-admin-single-taxonomy #acf-advanced-settings .postbox-header h2:before,\n.acf-admin-single-options-page #acf-advanced-settings .postbox-header h2:before {\n -webkit-mask-image: url(\"../../images/icons/icon-post-type.svg\");\n mask-image: url(\"../../images/icons/icon-post-type.svg\");\n}\n\n.acf-field-setting-fc_layout .acf-field-settings-fc_head .acf-fc_draggable:hover .reorder-layout:before {\n width: 20px;\n height: 11px;\n background-color: #475467 !important;\n -webkit-mask-image: url(\"../../images/icons/icon-draggable.svg\");\n mask-image: url(\"../../images/icons/icon-draggable.svg\");\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tPostbox expand / collapse icon\n*\n*--------------------------------------------------------------------------------------------*/\n.post-type-acf-field-group .postbox-header .handle-actions,\n.post-type-acf-field-group #acf-field-group-fields .postbox-header .handle-actions,\n.post-type-acf-field-group #acf-field-group-options .postbox-header .handle-actions,\n.post-type-acf-field-group .postbox .postbox-header .handle-actions,\n.acf-admin-single-post-type #acf-advanced-settings .postbox-header .handle-actions,\n.acf-admin-single-taxonomy #acf-advanced-settings .postbox-header .handle-actions,\n.acf-admin-single-options-page #acf-advanced-settings .postbox-header .handle-actions {\n display: flex;\n}\n.post-type-acf-field-group .postbox-header .handle-actions .toggle-indicator:before,\n.post-type-acf-field-group #acf-field-group-fields .postbox-header .handle-actions .toggle-indicator:before,\n.post-type-acf-field-group #acf-field-group-options .postbox-header .handle-actions .toggle-indicator:before,\n.post-type-acf-field-group .postbox .postbox-header .handle-actions .toggle-indicator:before,\n.acf-admin-single-post-type #acf-advanced-settings .postbox-header .handle-actions .toggle-indicator:before,\n.acf-admin-single-taxonomy #acf-advanced-settings .postbox-header .handle-actions .toggle-indicator:before,\n.acf-admin-single-options-page #acf-advanced-settings .postbox-header .handle-actions .toggle-indicator:before {\n content: \"\";\n display: inline-flex;\n width: 20px;\n height: 20px;\n background-color: currentColor;\n border: none;\n border-radius: 0;\n -webkit-mask-size: contain;\n mask-size: contain;\n -webkit-mask-repeat: no-repeat;\n mask-repeat: no-repeat;\n -webkit-mask-position: center;\n mask-position: center;\n -webkit-mask-image: url(\"../../images/icons/icon-chevron-up.svg\");\n mask-image: url(\"../../images/icons/icon-chevron-up.svg\");\n}\n.post-type-acf-field-group.closed .postbox-header .handle-actions .toggle-indicator:before,\n.post-type-acf-field-group #acf-field-group-fields.closed .postbox-header .handle-actions .toggle-indicator:before,\n.post-type-acf-field-group #acf-field-group-options.closed .postbox-header .handle-actions .toggle-indicator:before,\n.post-type-acf-field-group .postbox.closed .postbox-header .handle-actions .toggle-indicator:before,\n.acf-admin-single-post-type #acf-advanced-settings.closed .postbox-header .handle-actions .toggle-indicator:before,\n.acf-admin-single-taxonomy #acf-advanced-settings.closed .postbox-header .handle-actions .toggle-indicator:before,\n.acf-admin-single-options-page #acf-advanced-settings.closed .postbox-header .handle-actions .toggle-indicator:before {\n -webkit-mask-image: url(\"../../images/icons/icon-chevron-down.svg\");\n mask-image: url(\"../../images/icons/icon-chevron-down.svg\");\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Tools & updates page heading icons\n*\n*---------------------------------------------------------------------------------------------*/\n.post-type-acf-field-group #acf-admin-tool-export h2,\n.post-type-acf-field-group #acf-admin-tool-export h3,\n.post-type-acf-field-group #acf-admin-tool-import h2,\n.post-type-acf-field-group #acf-admin-tool-import h3,\n.post-type-acf-field-group #acf-license-information h2,\n.post-type-acf-field-group #acf-license-information h3,\n.post-type-acf-field-group #acf-update-information h2,\n.post-type-acf-field-group #acf-update-information h3 {\n display: inline-flex;\n justify-content: flex-start;\n align-content: stretch;\n align-items: center;\n}\n.post-type-acf-field-group #acf-admin-tool-export h2:before,\n.post-type-acf-field-group #acf-admin-tool-export h3:before,\n.post-type-acf-field-group #acf-admin-tool-import h2:before,\n.post-type-acf-field-group #acf-admin-tool-import h3:before,\n.post-type-acf-field-group #acf-license-information h2:before,\n.post-type-acf-field-group #acf-license-information h3:before,\n.post-type-acf-field-group #acf-update-information h2:before,\n.post-type-acf-field-group #acf-update-information h3:before {\n content: \"\";\n display: inline-block;\n width: 20px;\n height: 20px;\n margin-right: 8px;\n background-color: #98A2B3;\n border: none;\n border-radius: 0;\n -webkit-mask-size: contain;\n mask-size: contain;\n -webkit-mask-repeat: no-repeat;\n mask-repeat: no-repeat;\n -webkit-mask-position: center;\n mask-position: center;\n}\n.post-type-acf-field-group.rtl #acf-admin-tool-export h2:before,\n.post-type-acf-field-group.rtl #acf-admin-tool-export h3:before,\n.post-type-acf-field-group.rtl #acf-admin-tool-import h2:before,\n.post-type-acf-field-group.rtl #acf-admin-tool-import h3:before,\n.post-type-acf-field-group.rtl #acf-license-information h2:before,\n.post-type-acf-field-group.rtl #acf-license-information h3:before,\n.post-type-acf-field-group.rtl #acf-update-information h2:before,\n.post-type-acf-field-group.rtl #acf-update-information h3:before {\n margin-right: 0;\n margin-left: 8px;\n}\n\n.post-type-acf-field-group #acf-admin-tool-export h2:before {\n -webkit-mask-image: url(\"../../images/icons/icon-export.svg\");\n mask-image: url(\"../../images/icons/icon-export.svg\");\n}\n\n.post-type-acf-field-group #acf-admin-tool-import h2:before {\n -webkit-mask-image: url(\"../../images/icons/icon-import.svg\");\n mask-image: url(\"../../images/icons/icon-import.svg\");\n}\n\n.post-type-acf-field-group #acf-license-information h3:before {\n -webkit-mask-image: url(\"../../images/icons/icon-key.svg\");\n mask-image: url(\"../../images/icons/icon-key.svg\");\n}\n\n.post-type-acf-field-group #acf-update-information h3:before {\n -webkit-mask-image: url(\"../../images/icons/icon-info.svg\");\n mask-image: url(\"../../images/icons/icon-info.svg\");\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tAdmin field icons\n*\n*--------------------------------------------------------------------------------------------*/\n.acf-admin-single-field-group .acf-input .acf-icon {\n width: 18px;\n height: 18px;\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tField type icon base styling\n*\n*--------------------------------------------------------------------------------------------*/\n.field-type-icon {\n box-sizing: border-box;\n display: inline-flex;\n align-content: center;\n align-items: center;\n justify-content: center;\n position: relative;\n width: 24px;\n height: 24px;\n top: -4px;\n background-color: #EBF5FA;\n border-width: 1px;\n border-style: solid;\n border-color: #A5D2E7;\n border-radius: 100%;\n}\n.field-type-icon:before {\n content: \"\";\n width: 14px;\n height: 14px;\n position: relative;\n background-color: #0783BE;\n -webkit-mask-size: cover;\n mask-size: cover;\n -webkit-mask-repeat: no-repeat;\n mask-repeat: no-repeat;\n -webkit-mask-position: center;\n mask-position: center;\n -webkit-mask-image: url(\"../../images/field-type-icons/icon-field-default.svg\");\n mask-image: url(\"../../images/field-type-icons/icon-field-default.svg\");\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tField type icons\n*\n*--------------------------------------------------------------------------------------------*/\n.field-type-icon.field-type-icon-text:before {\n -webkit-mask-image: url(\"../../images/field-type-icons/icon-field-text.svg\");\n mask-image: url(\"../../images/field-type-icons/icon-field-text.svg\");\n}\n\n.field-type-icon.field-type-icon-textarea:before {\n -webkit-mask-image: url(\"../../images/field-type-icons/icon-field-textarea.svg\");\n mask-image: url(\"../../images/field-type-icons/icon-field-textarea.svg\");\n}\n\n.field-type-icon.field-type-icon-textarea:before {\n -webkit-mask-image: url(\"../../images/field-type-icons/icon-field-textarea.svg\");\n mask-image: url(\"../../images/field-type-icons/icon-field-textarea.svg\");\n}\n\n.field-type-icon.field-type-icon-number:before {\n -webkit-mask-image: url(\"../../images/field-type-icons/icon-field-number.svg\");\n mask-image: url(\"../../images/field-type-icons/icon-field-number.svg\");\n}\n\n.field-type-icon.field-type-icon-range:before {\n -webkit-mask-image: url(\"../../images/field-type-icons/icon-field-range.svg\");\n mask-image: url(\"../../images/field-type-icons/icon-field-range.svg\");\n}\n\n.field-type-icon.field-type-icon-email:before {\n -webkit-mask-image: url(\"../../images/field-type-icons/icon-field-email.svg\");\n mask-image: url(\"../../images/field-type-icons/icon-field-email.svg\");\n}\n\n.field-type-icon.field-type-icon-url:before {\n -webkit-mask-image: url(\"../../images/field-type-icons/icon-field-url.svg\");\n mask-image: url(\"../../images/field-type-icons/icon-field-url.svg\");\n}\n\n.field-type-icon.field-type-icon-password:before {\n -webkit-mask-image: url(\"../../images/field-type-icons/icon-field-password.svg\");\n mask-image: url(\"../../images/field-type-icons/icon-field-password.svg\");\n}\n\n.field-type-icon.field-type-icon-image:before {\n -webkit-mask-image: url(\"../../images/field-type-icons/icon-field-image.svg\");\n mask-image: url(\"../../images/field-type-icons/icon-field-image.svg\");\n}\n\n.field-type-icon.field-type-icon-file:before {\n -webkit-mask-image: url(\"../../images/field-type-icons/icon-field-file.svg\");\n mask-image: url(\"../../images/field-type-icons/icon-field-file.svg\");\n}\n\n.field-type-icon.field-type-icon-wysiwyg:before {\n -webkit-mask-image: url(\"../../images/field-type-icons/icon-field-wysiwyg.svg\");\n mask-image: url(\"../../images/field-type-icons/icon-field-wysiwyg.svg\");\n}\n\n.field-type-icon.field-type-icon-oembed:before {\n -webkit-mask-image: url(\"../../images/field-type-icons/icon-field-oembed.svg\");\n mask-image: url(\"../../images/field-type-icons/icon-field-oembed.svg\");\n}\n\n.field-type-icon.field-type-icon-gallery:before {\n -webkit-mask-image: url(\"../../images/field-type-icons/icon-field-gallery.svg\");\n mask-image: url(\"../../images/field-type-icons/icon-field-gallery.svg\");\n}\n\n.field-type-icon.field-type-icon-select:before {\n -webkit-mask-image: url(\"../../images/field-type-icons/icon-field-select.svg\");\n mask-image: url(\"../../images/field-type-icons/icon-field-select.svg\");\n}\n\n.field-type-icon.field-type-icon-checkbox:before {\n -webkit-mask-image: url(\"../../images/field-type-icons/icon-field-checkbox.svg\");\n mask-image: url(\"../../images/field-type-icons/icon-field-checkbox.svg\");\n}\n\n.field-type-icon.field-type-icon-radio:before {\n -webkit-mask-image: url(\"../../images/field-type-icons/icon-field-radio.svg\");\n mask-image: url(\"../../images/field-type-icons/icon-field-radio.svg\");\n}\n\n.field-type-icon.field-type-icon-button-group:before {\n -webkit-mask-image: url(\"../../images/field-type-icons/icon-field-button-group.svg\");\n mask-image: url(\"../../images/field-type-icons/icon-field-button-group.svg\");\n}\n\n.field-type-icon.field-type-icon-true-false:before {\n -webkit-mask-image: url(\"../../images/field-type-icons/icon-field-true-false.svg\");\n mask-image: url(\"../../images/field-type-icons/icon-field-true-false.svg\");\n}\n\n.field-type-icon.field-type-icon-link:before {\n -webkit-mask-image: url(\"../../images/field-type-icons/icon-field-link.svg\");\n mask-image: url(\"../../images/field-type-icons/icon-field-link.svg\");\n}\n\n.field-type-icon.field-type-icon-post-object:before {\n -webkit-mask-image: url(\"../../images/field-type-icons/icon-field-post-object.svg\");\n mask-image: url(\"../../images/field-type-icons/icon-field-post-object.svg\");\n}\n\n.field-type-icon.field-type-icon-page-link:before {\n -webkit-mask-image: url(\"../../images/field-type-icons/icon-field-page-link.svg\");\n mask-image: url(\"../../images/field-type-icons/icon-field-page-link.svg\");\n}\n\n.field-type-icon.field-type-icon-relationship:before {\n -webkit-mask-image: url(\"../../images/field-type-icons/icon-field-relationship.svg\");\n mask-image: url(\"../../images/field-type-icons/icon-field-relationship.svg\");\n}\n\n.field-type-icon.field-type-icon-taxonomy:before {\n -webkit-mask-image: url(\"../../images/field-type-icons/icon-field-taxonomy.svg\");\n mask-image: url(\"../../images/field-type-icons/icon-field-taxonomy.svg\");\n}\n\n.field-type-icon.field-type-icon-user:before {\n -webkit-mask-image: url(\"../../images/field-type-icons/icon-field-user.svg\");\n mask-image: url(\"../../images/field-type-icons/icon-field-user.svg\");\n}\n\n.field-type-icon.field-type-icon-google-map:before {\n -webkit-mask-image: url(\"../../images/field-type-icons/icon-field-google-map.svg\");\n mask-image: url(\"../../images/field-type-icons/icon-field-google-map.svg\");\n}\n\n.field-type-icon.field-type-icon-date-picker:before {\n -webkit-mask-image: url(\"../../images/field-type-icons/icon-field-date-picker.svg\");\n mask-image: url(\"../../images/field-type-icons/icon-field-date-picker.svg\");\n}\n\n.field-type-icon.field-type-icon-date-time-picker:before {\n -webkit-mask-image: url(\"../../images/field-type-icons/icon-field-date-time-picker.svg\");\n mask-image: url(\"../../images/field-type-icons/icon-field-date-time-picker.svg\");\n}\n\n.field-type-icon.field-type-icon-time-picker:before {\n -webkit-mask-image: url(\"../../images/field-type-icons/icon-field-time-picker.svg\");\n mask-image: url(\"../../images/field-type-icons/icon-field-time-picker.svg\");\n}\n\n.field-type-icon.field-type-icon-color-picker:before {\n -webkit-mask-image: url(\"../../images/field-type-icons/icon-field-color-picker.svg\");\n mask-image: url(\"../../images/field-type-icons/icon-field-color-picker.svg\");\n}\n\n.field-type-icon.field-type-icon-message:before {\n -webkit-mask-image: url(\"../../images/field-type-icons/icon-field-message.svg\");\n mask-image: url(\"../../images/field-type-icons/icon-field-message.svg\");\n}\n\n.field-type-icon.field-type-icon-accordion:before {\n -webkit-mask-image: url(\"../../images/field-type-icons/icon-field-accordion.svg\");\n mask-image: url(\"../../images/field-type-icons/icon-field-accordion.svg\");\n}\n\n.field-type-icon.field-type-icon-tab:before {\n -webkit-mask-image: url(\"../../images/field-type-icons/icon-field-tab.svg\");\n mask-image: url(\"../../images/field-type-icons/icon-field-tab.svg\");\n}\n\n.field-type-icon.field-type-icon-group:before {\n -webkit-mask-image: url(\"../../images/field-type-icons/icon-field-group.svg\");\n mask-image: url(\"../../images/field-type-icons/icon-field-group.svg\");\n}\n\n.field-type-icon.field-type-icon-repeater:before {\n -webkit-mask-image: url(\"../../images/field-type-icons/icon-field-repeater.svg\");\n mask-image: url(\"../../images/field-type-icons/icon-field-repeater.svg\");\n}\n\n.field-type-icon.field-type-icon-flexible-content:before {\n -webkit-mask-image: url(\"../../images/field-type-icons/icon-field-flexible-content.svg\");\n mask-image: url(\"../../images/field-type-icons/icon-field-flexible-content.svg\");\n}\n\n.field-type-icon.field-type-icon-clone:before {\n -webkit-mask-image: url(\"../../images/field-type-icons/icon-field-clone.svg\");\n mask-image: url(\"../../images/field-type-icons/icon-field-clone.svg\");\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Tools page layout\n*\n*---------------------------------------------------------------------------------------------*/\n#acf-admin-tools .postbox-header {\n display: none;\n}\n#acf-admin-tools .acf-meta-box-wrap.-grid {\n margin-top: 0;\n margin-right: 0;\n margin-bottom: 0;\n margin-left: 0;\n}\n#acf-admin-tools .acf-meta-box-wrap.-grid .postbox {\n width: 100%;\n clear: none;\n float: none;\n margin-bottom: 0;\n}\n@media screen and (max-width: 880px) {\n #acf-admin-tools .acf-meta-box-wrap.-grid .postbox {\n flex: 1 1 100%;\n }\n}\n#acf-admin-tools .acf-meta-box-wrap.-grid .postbox:nth-child(odd) {\n margin-left: 0;\n}\n#acf-admin-tools .meta-box-sortables {\n display: grid;\n grid-template-columns: repeat(2, 1fr);\n grid-template-rows: repeat(1, 1fr);\n grid-column-gap: 32px;\n grid-row-gap: 32px;\n}\n@media screen and (max-width: 880px) {\n #acf-admin-tools .meta-box-sortables {\n display: flex;\n flex-wrap: wrap;\n justify-content: flex-start;\n align-content: flex-start;\n align-items: center;\n grid-column-gap: 8px;\n grid-row-gap: 8px;\n }\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Tools export pages\n*\n*---------------------------------------------------------------------------------------------*/\n#acf-admin-tools.tool-export .inside {\n margin: 0;\n}\n#acf-admin-tools.tool-export .acf-postbox-header {\n margin-bottom: 24px;\n}\n#acf-admin-tools.tool-export .acf-postbox-main {\n border: none;\n margin: 0;\n padding-top: 0;\n padding-right: 24px;\n padding-bottom: 0;\n padding-left: 0;\n}\n#acf-admin-tools.tool-export .acf-postbox-columns {\n margin-top: 0;\n margin-right: 280px;\n margin-bottom: 0;\n margin-left: 0;\n padding: 0;\n}\n#acf-admin-tools.tool-export .acf-postbox-columns .acf-postbox-side {\n padding: 0;\n}\n#acf-admin-tools.tool-export .acf-postbox-columns .acf-postbox-side .acf-panel {\n margin: 0;\n padding: 0;\n}\n#acf-admin-tools.tool-export .acf-postbox-columns .acf-postbox-side:before {\n display: none;\n}\n#acf-admin-tools.tool-export .acf-postbox-columns .acf-postbox-side .acf-btn {\n display: block;\n width: 100%;\n text-align: center;\n}\n#acf-admin-tools.tool-export .meta-box-sortables {\n display: block;\n}\n#acf-admin-tools.tool-export .acf-panel {\n border: none;\n}\n#acf-admin-tools.tool-export .acf-panel h3 {\n margin: 0;\n padding: 0;\n color: #344054;\n}\n#acf-admin-tools.tool-export .acf-panel h3:before {\n display: none;\n}\n#acf-admin-tools.tool-export .acf-checkbox-list {\n margin-top: 16px;\n border-width: 1px;\n border-style: solid;\n border-color: #D0D5DD;\n border-radius: 6px;\n}\n#acf-admin-tools.tool-export .acf-checkbox-list li {\n display: inline-flex;\n box-sizing: border-box;\n width: 100%;\n height: 48px;\n align-items: center;\n margin: 0;\n padding-right: 12px;\n padding-left: 12px;\n border-bottom-width: 1px;\n border-bottom-style: solid;\n border-bottom-color: #EAECF0;\n}\n#acf-admin-tools.tool-export .acf-checkbox-list li:last-child {\n border-bottom: none;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Updates layout\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-settings-wrap.acf-updates {\n display: flex;\n flex-direction: row;\n flex-wrap: wrap;\n justify-content: flex-start;\n align-content: flex-start;\n align-items: flex-start;\n}\n\n.custom-fields_page_acf-settings-updates .acf-admin-notice,\n.custom-fields_page_acf-settings-updates .acf-upgrade-notice,\n.custom-fields_page_acf-settings-updates .notice {\n flex: 1 1 100%;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* ACF Box\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-settings-wrap.acf-updates .acf-box {\n margin-top: 0;\n margin-right: 0;\n margin-bottom: 0;\n margin-left: 0;\n}\n.acf-settings-wrap.acf-updates .acf-box .inner {\n padding-top: 24px;\n padding-right: 24px;\n padding-bottom: 24px;\n padding-left: 24px;\n}\n@media screen and (max-width: 880px) {\n .acf-settings-wrap.acf-updates .acf-box {\n flex: 1 1 100%;\n }\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Notices\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-settings-wrap.acf-updates .acf-admin-notice {\n flex: 1 1 100%;\n margin-top: 16px;\n margin-right: 0;\n margin-left: 0;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* License information\n*\n*---------------------------------------------------------------------------------------------*/\n#acf-license-information {\n flex: 1 1 65%;\n margin-right: 32px;\n}\n#acf-license-information .inner {\n padding: 0;\n}\n#acf-license-information .inner .acf-license-defined {\n padding: 24px;\n margin: 0;\n}\n#acf-license-information .inner .acf-activation-form,\n#acf-license-information .inner .acf-retry-activation {\n padding: 24px;\n}\n#acf-license-information .inner .acf-activation-form.acf-retry-activation,\n#acf-license-information .inner .acf-retry-activation.acf-retry-activation {\n padding-top: 0;\n min-height: 40px;\n}\n#acf-license-information .inner .acf-activation-form.acf-retry-activation .acf-recheck-license.acf-btn,\n#acf-license-information .inner .acf-retry-activation.acf-retry-activation .acf-recheck-license.acf-btn {\n float: none;\n line-height: initial;\n}\n#acf-license-information .inner .acf-activation-form.acf-retry-activation .acf-recheck-license.acf-btn i,\n#acf-license-information .inner .acf-retry-activation.acf-retry-activation .acf-recheck-license.acf-btn i {\n display: none;\n}\n#acf-license-information .inner .acf-activation-form .acf-manage-license-btn,\n#acf-license-information .inner .acf-retry-activation .acf-manage-license-btn {\n float: right;\n line-height: 40px;\n align-items: center;\n display: inline-flex;\n}\n#acf-license-information .inner .acf-activation-form .acf-manage-license-btn.acf-renew-subscription,\n#acf-license-information .inner .acf-retry-activation .acf-manage-license-btn.acf-renew-subscription {\n float: none;\n line-height: initial;\n}\n#acf-license-information .inner .acf-activation-form .acf-manage-license-btn i,\n#acf-license-information .inner .acf-retry-activation .acf-manage-license-btn i {\n margin: 0 0 0 5px;\n width: 19px;\n height: 19px;\n}\n#acf-license-information .inner .acf-activation-form .acf-recheck-license,\n#acf-license-information .inner .acf-retry-activation .acf-recheck-license {\n float: right;\n line-height: 40px;\n}\n#acf-license-information .inner .acf-activation-form .acf-recheck-license i,\n#acf-license-information .inner .acf-retry-activation .acf-recheck-license i {\n margin-right: 8px;\n vertical-align: middle;\n}\n#acf-license-information .inner .acf-license-status-wrap {\n background: #F9FAFB;\n border-top: 1px solid #EAECF0;\n border-bottom-left-radius: 8px;\n border-bottom-right-radius: 8px;\n}\n#acf-license-information .inner .acf-license-status-wrap .acf-license-status-table {\n font-size: 14px;\n padding: 24px 24px 16px 24px;\n}\n#acf-license-information .inner .acf-license-status-wrap .acf-license-status-table th {\n width: 160px;\n font-weight: 500;\n text-align: left;\n padding-bottom: 16px;\n}\n#acf-license-information .inner .acf-license-status-wrap .acf-license-status-table td {\n padding-bottom: 16px;\n}\n#acf-license-information .inner .acf-license-status-wrap .acf-license-status-table td .acf-license-status {\n display: inline-block;\n height: 24px;\n line-height: 24px;\n border-radius: 100px;\n background: #EAECF0;\n padding: 0 13px 1px 12px;\n border: 1px solid rgba(0, 0, 0, 0.12);\n color: #667085;\n}\n#acf-license-information .inner .acf-license-status-wrap .acf-license-status-table td .acf-license-status.active {\n background: rgba(18, 183, 106, 0.15);\n border: 1px solid rgba(18, 183, 106, 0.24);\n color: rgb(18, 183, 106);\n}\n#acf-license-information .inner .acf-license-status-wrap .acf-license-status-table td .acf-license-status.expired, #acf-license-information .inner .acf-license-status-wrap .acf-license-status-table td .acf-license-status.cancelled {\n background: rgba(209, 55, 55, 0.24);\n border: 1px solid rgba(209, 55, 55, 0.24);\n color: rgb(209, 55, 55);\n}\n#acf-license-information .inner .acf-license-status-wrap .acf-no-license-view-pricing {\n padding: 12px 24px;\n border-top: 1px solid #EAECF0;\n color: #667085;\n}\n@media screen and (max-width: 1024px) {\n #acf-license-information {\n margin-right: 0;\n margin-bottom: 32px;\n }\n}\n#acf-license-information label {\n font-weight: 500;\n}\n#acf-license-information .acf-input-wrap {\n margin-top: 8px;\n margin-bottom: 24px;\n}\n#acf-license-information #acf_pro_license {\n width: 100%;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Update information table\n*\n*---------------------------------------------------------------------------------------------*/\n#acf-update-information {\n flex: 1 1 35%;\n max-width: calc(35% - 32px);\n}\n#acf-update-information .form-table th,\n#acf-update-information .form-table td {\n padding-top: 0;\n padding-right: 0;\n padding-bottom: 24px;\n padding-left: 0;\n color: #344054;\n}\n#acf-update-information .acf-update-changelog {\n margin-top: 8px;\n margin-bottom: 24px;\n padding-top: 8px;\n border-top-width: 1px;\n border-top-style: solid;\n border-top-color: #EAECF0;\n color: #344054;\n}\n#acf-update-information .acf-update-changelog h4 {\n margin-bottom: 0;\n}\n#acf-update-information .acf-update-changelog p {\n margin-top: 0;\n margin-bottom: 16px;\n}\n#acf-update-information .acf-update-changelog p:last-of-type {\n margin-bottom: 0;\n}\n#acf-update-information .acf-update-changelog p em {\n color: #667085;\n}\n#acf-update-information .acf-btn {\n display: inline-flex;\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tHeader pro upgrade button\n*\n*--------------------------------------------------------------------------------------------*/\n.acf-admin-toolbar a.acf-admin-toolbar-upgrade-btn {\n display: inline-flex;\n align-items: center;\n align-self: stretch;\n padding-top: 0;\n padding-right: 16px;\n padding-bottom: 0;\n padding-left: 16px;\n background: linear-gradient(90.52deg, #3E8BFF 0.44%, #A45CFF 113.3%);\n box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);\n background-size: 180% 80%;\n background-position: 100% 0;\n transition: background-position 0.5s;\n border-radius: 6px;\n text-decoration: none;\n}\n@media screen and (max-width: 768px) {\n .acf-admin-toolbar a.acf-admin-toolbar-upgrade-btn {\n display: none;\n }\n}\n.acf-admin-toolbar a.acf-admin-toolbar-upgrade-btn:hover {\n background-position: 0 0;\n}\n.acf-admin-toolbar a.acf-admin-toolbar-upgrade-btn:focus {\n border: none;\n outline: none;\n box-shadow: none;\n}\n.acf-admin-toolbar a.acf-admin-toolbar-upgrade-btn p {\n margin: 0;\n padding-top: 8px;\n padding-bottom: 8px;\n font-weight: normal;\n text-transform: none;\n color: #fff;\n}\n.acf-admin-toolbar a.acf-admin-toolbar-upgrade-btn .acf-icon {\n width: 18px;\n height: 18px;\n margin-right: 6px;\n margin-left: -2px;\n background-color: #F9FAFB;\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n* Upsell block\n*\n*--------------------------------------------------------------------------------------------*/\n.acf-admin-page #tmpl-acf-field-group-pro-features,\n.acf-admin-page #acf-field-group-pro-features {\n display: none;\n align-items: center;\n min-height: 120px;\n background-color: #121833;\n background-image: url(../../images/pro-upgrade-grid-bg.svg), url(../../images/pro-upgrade-overlay.svg);\n background-repeat: repeat, no-repeat;\n background-size: 1224px, 1880px;\n background-position: left top, -520px -680px;\n color: #EAECF0;\n border-radius: 8px;\n margin-top: 24px;\n margin-bottom: 24px;\n}\n@media screen and (max-width: 768px) {\n .acf-admin-page #tmpl-acf-field-group-pro-features,\n .acf-admin-page #acf-field-group-pro-features {\n background-size: 1024px, 980px;\n background-position: left top, -500px -200px;\n }\n}\n@media screen and (max-width: 1200px) {\n .acf-admin-page #tmpl-acf-field-group-pro-features,\n .acf-admin-page #acf-field-group-pro-features {\n background-size: 1024px, 1880px;\n background-position: left top, -520px -300px;\n }\n}\n.acf-admin-page #tmpl-acf-field-group-pro-features .postbox-header,\n.acf-admin-page #acf-field-group-pro-features .postbox-header {\n display: none;\n}\n.acf-admin-page #tmpl-acf-field-group-pro-features .inside,\n.acf-admin-page #acf-field-group-pro-features .inside {\n width: 100%;\n border: none;\n padding: 0;\n}\n.acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-wrapper,\n.acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-wrapper {\n display: flex;\n justify-content: center;\n align-content: stretch;\n align-items: center;\n gap: 96px;\n height: 358px;\n max-width: 950px;\n margin: 0 auto;\n padding: 0 35px;\n}\n@media screen and (max-width: 1200px) {\n .acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-wrapper,\n .acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-wrapper {\n gap: 48px;\n }\n}\n@media screen and (max-width: 768px) {\n .acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-wrapper,\n .acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-wrapper {\n gap: 0;\n }\n}\n.acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-title,\n.acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-title-sm,\n.acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-title,\n.acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-title-sm {\n font-weight: 590;\n line-height: 150%;\n}\n.acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-title .acf-pro-label,\n.acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-title-sm .acf-pro-label,\n.acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-title .acf-pro-label,\n.acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-title-sm .acf-pro-label {\n font-weight: normal;\n margin-top: -4px;\n margin-left: 2px;\n vertical-align: middle;\n height: 22px;\n}\n.acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-title-sm,\n.acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-title-sm {\n display: none !important;\n font-size: 18px;\n}\n.acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-title-sm .acf-pro-label,\n.acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-title-sm .acf-pro-label {\n font-size: 10px;\n height: 20px;\n}\n@media screen and (max-width: 768px) {\n .acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-title-sm,\n .acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-title-sm {\n width: 100%;\n text-align: center;\n }\n}\n@media screen and (max-width: 768px) {\n .acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-wrapper,\n .acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-wrapper {\n flex-direction: column;\n flex-wrap: wrap;\n justify-content: flex-start;\n align-content: flex-start;\n align-items: flex-start;\n padding: 32px 32px 0 32px;\n height: unset;\n }\n .acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-title-sm,\n .acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-title-sm {\n display: block !important;\n margin-bottom: 24px;\n }\n}\n.acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-content,\n.acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-content {\n display: flex;\n flex-direction: column;\n width: 416px;\n}\n.acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-content .acf-field-group-pro-features-desc,\n.acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-content .acf-field-group-pro-features-desc {\n margin-top: 8px;\n margin-bottom: 24px;\n font-size: 15px;\n font-weight: 300;\n color: #D0D5DD;\n}\n@media screen and (max-width: 768px) {\n .acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-content,\n .acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-content {\n width: 100%;\n order: 1;\n margin-right: 0;\n margin-bottom: 8px;\n }\n .acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-content .acf-field-group-pro-features-title,\n .acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-content .acf-field-group-pro-features-desc,\n .acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-content .acf-field-group-pro-features-title,\n .acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-content .acf-field-group-pro-features-desc {\n display: none !important;\n }\n}\n.acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-actions,\n.acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-actions {\n display: flex;\n flex-direction: row;\n align-items: flex-start;\n min-width: 160px;\n gap: 12px;\n}\n@media screen and (max-width: 768px) {\n .acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-actions,\n .acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-actions {\n justify-content: flex-start;\n flex-direction: column;\n margin-bottom: 24px;\n }\n .acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-actions a,\n .acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-actions a {\n justify-content: center;\n text-align: center;\n width: 100%;\n }\n}\n.acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-grid,\n.acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-grid {\n display: flex;\n flex-direction: row;\n flex-wrap: wrap;\n gap: 16px;\n width: 416px;\n}\n.acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-grid .acf-field-group-pro-feature,\n.acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-grid .acf-field-group-pro-feature {\n display: flex;\n flex-direction: column;\n justify-content: center;\n align-items: center;\n width: 128px;\n height: 124px;\n background: rgba(255, 255, 255, 0.08);\n box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.04), 0px 8px 16px rgba(0, 0, 0, 0.08), inset 0 0 0 1px rgba(255, 255, 255, 0.08);\n backdrop-filter: blur(6px);\n border-radius: 8px;\n}\n.acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-grid .acf-field-group-pro-feature .field-type-icon,\n.acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-grid .acf-field-group-pro-feature .field-type-icon {\n border: none;\n background: none;\n width: 24px;\n opacity: 0.8;\n}\n.acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-grid .acf-field-group-pro-feature .field-type-icon::before,\n.acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-grid .acf-field-group-pro-feature .field-type-icon::before {\n background-color: #fff;\n width: 20px;\n height: 20px;\n}\n@media screen and (max-width: 1200px) {\n .acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-grid .acf-field-group-pro-feature .field-type-icon::before,\n .acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-grid .acf-field-group-pro-feature .field-type-icon::before {\n width: 18px;\n height: 18px;\n }\n}\n.acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-grid .acf-field-group-pro-feature .pro-feature-blocks::before,\n.acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-grid .acf-field-group-pro-feature .pro-feature-blocks::before {\n -webkit-mask-image: url(\"../../images/icons/icon-extended-menu.svg\");\n mask-image: url(\"../../images/icons/icon-extended-menu.svg\");\n}\n.acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-grid .acf-field-group-pro-feature .pro-feature-options-pages::before,\n.acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-grid .acf-field-group-pro-feature .pro-feature-options-pages::before {\n -webkit-mask-image: url(\"../../images/icons/icon-settings.svg\");\n mask-image: url(\"../../images/icons/icon-settings.svg\");\n}\n.acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-grid .acf-field-group-pro-feature .field-type-label,\n.acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-grid .acf-field-group-pro-feature .field-type-label {\n margin-top: 4px;\n font-size: 13px;\n font-weight: 300;\n text-align: center;\n color: #fff;\n}\n@media screen and (max-width: 1200px) {\n .acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-grid,\n .acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-grid {\n flex-direction: column;\n gap: 8px;\n width: 288px;\n }\n .acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-grid .acf-field-group-pro-feature,\n .acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-grid .acf-field-group-pro-feature {\n width: 100%;\n height: 40px;\n flex-direction: row;\n justify-content: unset;\n gap: 8px;\n }\n .acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-grid .acf-field-group-pro-feature .field-type-icon,\n .acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-grid .acf-field-group-pro-feature .field-type-icon {\n position: initial;\n margin-left: 16px;\n }\n .acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-grid .acf-field-group-pro-feature .field-type-label,\n .acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-grid .acf-field-group-pro-feature .field-type-label {\n margin-top: 0;\n }\n}\n@media screen and (max-width: 768px) {\n .acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-grid,\n .acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-grid {\n gap: 0;\n width: 100%;\n height: auto;\n margin-bottom: 16px;\n flex-direction: unset;\n flex-wrap: wrap;\n }\n .acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-grid .acf-field-group-pro-feature,\n .acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-grid .acf-field-group-pro-feature {\n flex: 1 0 50%;\n margin-bottom: 8px;\n width: auto;\n height: auto;\n justify-content: center;\n background: none;\n box-shadow: none;\n backdrop-filter: none;\n }\n .acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-grid .acf-field-group-pro-feature .field-type-label,\n .acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-grid .acf-field-group-pro-feature .field-type-label {\n margin-left: 2px;\n }\n .acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-grid .acf-field-group-pro-feature .field-type-icon,\n .acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-grid .acf-field-group-pro-feature .field-type-icon {\n position: initial;\n margin-left: 0;\n }\n .acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-grid .acf-field-group-pro-feature .field-type-icon:before,\n .acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-grid .acf-field-group-pro-feature .field-type-icon:before {\n height: 16px;\n width: 16px;\n }\n .acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-grid .acf-field-group-pro-feature .field-type-label,\n .acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-grid .acf-field-group-pro-feature .field-type-label {\n font-size: 12px;\n margin-top: 0;\n }\n}\n.acf-admin-page #tmpl-acf-field-group-pro-features h1,\n.acf-admin-page #acf-field-group-pro-features h1 {\n margin-top: 0;\n margin-bottom: 4px;\n padding-top: 0;\n padding-bottom: 0;\n font-weight: bold;\n color: #F9FAFB;\n}\n.acf-admin-page #tmpl-acf-field-group-pro-features h1 .acf-icon,\n.acf-admin-page #acf-field-group-pro-features h1 .acf-icon {\n margin-right: 8px;\n}\n.acf-admin-page #tmpl-acf-field-group-pro-features .acf-btn,\n.acf-admin-page #acf-field-group-pro-features .acf-btn {\n display: inline-flex;\n background-color: rgba(255, 255, 255, 0.1);\n border: none;\n box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.04), 0px 4px 8px rgba(0, 0, 0, 0.06), inset 0 0 0 1px rgba(255, 255, 255, 0.16);\n backdrop-filter: blur(6px);\n padding: 8px 24px;\n height: 48px;\n}\n.acf-admin-page #tmpl-acf-field-group-pro-features .acf-btn:hover,\n.acf-admin-page #acf-field-group-pro-features .acf-btn:hover {\n background-color: rgba(255, 255, 255, 0.2);\n}\n.acf-admin-page #tmpl-acf-field-group-pro-features .acf-btn .acf-icon,\n.acf-admin-page #acf-field-group-pro-features .acf-btn .acf-icon {\n margin-right: -2px;\n margin-left: 6px;\n}\n.acf-admin-page #tmpl-acf-field-group-pro-features .acf-btn.acf-pro-features-upgrade,\n.acf-admin-page #acf-field-group-pro-features .acf-btn.acf-pro-features-upgrade {\n background: linear-gradient(90.52deg, #3E8BFF 0.44%, #A45CFF 113.3%);\n background-size: 160% 80%;\n background-position: 100% 0;\n box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.04), 0px 4px 8px rgba(0, 0, 0, 0.06), inset 0 0 0 1px rgba(255, 255, 255, 0.16);\n border-radius: 6px;\n transition: background-position 0.5s;\n}\n.acf-admin-page #tmpl-acf-field-group-pro-features .acf-btn.acf-pro-features-upgrade:hover,\n.acf-admin-page #acf-field-group-pro-features .acf-btn.acf-pro-features-upgrade:hover {\n background-position: 0 0;\n}\n.acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-footer-wrap,\n.acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-footer-wrap {\n height: 48px;\n background: rgba(16, 24, 40, 0.4);\n backdrop-filter: blur(6px);\n border-top: 1px solid rgba(255, 255, 255, 0.08);\n border-bottom-left-radius: 8px;\n border-bottom-right-radius: 8px;\n color: #98A2B3;\n font-size: 13px;\n font-weight: 300;\n padding: 0 35px;\n}\n.acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-footer-wrap .acf-field-group-pro-features-footer,\n.acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-footer-wrap .acf-field-group-pro-features-footer {\n display: flex;\n align-items: center;\n justify-content: space-between;\n max-width: 950px;\n height: 48px;\n margin: 0 auto;\n}\n.acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-footer-wrap .acf-field-group-pro-features-wpengine-logo,\n.acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-footer-wrap .acf-field-group-pro-features-wpengine-logo {\n height: 16px;\n vertical-align: middle;\n margin-top: -2px;\n margin-left: 3px;\n}\n.acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-footer-wrap a,\n.acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-footer-wrap a {\n color: #98A2B3;\n text-decoration: none;\n}\n.acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-footer-wrap a:hover,\n.acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-footer-wrap a:hover {\n color: #D0D5DD;\n}\n.acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-footer-wrap a .acf-icon,\n.acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-footer-wrap a .acf-icon {\n width: 18px;\n height: 18px;\n margin-left: 4px;\n}\n.acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-footer-wrap .acf-more-tools-from-wpengine a,\n.acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-footer-wrap .acf-more-tools-from-wpengine a {\n display: inline-flex;\n align-items: center;\n}\n@media screen and (max-width: 768px) {\n .acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-footer-wrap,\n .acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-footer-wrap {\n height: 70px;\n font-size: 12px;\n }\n .acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-footer-wrap .acf-more-tools-from-wpengine,\n .acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-footer-wrap .acf-more-tools-from-wpengine {\n display: none;\n }\n .acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-footer-wrap .acf-field-group-pro-features-footer,\n .acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-footer-wrap .acf-field-group-pro-features-footer {\n justify-content: center;\n height: 70px;\n }\n .acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-footer-wrap .acf-field-group-pro-features-footer .acf-field-group-pro-features-wpengine-logo,\n .acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-footer-wrap .acf-field-group-pro-features-footer .acf-field-group-pro-features-wpengine-logo {\n clear: both;\n margin: 6px auto 0 auto;\n display: block;\n }\n}\n\n.acf-no-field-groups #tmpl-acf-field-group-pro-features,\n.acf-no-post-types #tmpl-acf-field-group-pro-features,\n.acf-no-taxonomies #tmpl-acf-field-group-pro-features {\n margin-top: 0;\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tPost type & taxonomies styles\n*\n*--------------------------------------------------------------------------------------------*/\n.acf-admin-single-post-type label[for=acf-basic-settings-hide],\n.acf-admin-single-taxonomy label[for=acf-basic-settings-hide],\n.acf-admin-single-options-page label[for=acf-basic-settings-hide] {\n display: none;\n}\n.acf-admin-single-post-type fieldset.columns-prefs,\n.acf-admin-single-taxonomy fieldset.columns-prefs,\n.acf-admin-single-options-page fieldset.columns-prefs {\n display: none;\n}\n.acf-admin-single-post-type #acf-basic-settings .postbox-header,\n.acf-admin-single-taxonomy #acf-basic-settings .postbox-header,\n.acf-admin-single-options-page #acf-basic-settings .postbox-header {\n display: none;\n}\n.acf-admin-single-post-type .postbox-container,\n.acf-admin-single-post-type .notice,\n.acf-admin-single-taxonomy .postbox-container,\n.acf-admin-single-taxonomy .notice,\n.acf-admin-single-options-page .postbox-container,\n.acf-admin-single-options-page .notice {\n max-width: 1440px;\n clear: left;\n}\n.acf-admin-single-post-type #post-body-content,\n.acf-admin-single-taxonomy #post-body-content,\n.acf-admin-single-options-page #post-body-content {\n margin: 0;\n}\n.acf-admin-single-post-type .postbox .inside,\n.acf-admin-single-post-type .acf-box .inside,\n.acf-admin-single-taxonomy .postbox .inside,\n.acf-admin-single-taxonomy .acf-box .inside,\n.acf-admin-single-options-page .postbox .inside,\n.acf-admin-single-options-page .acf-box .inside {\n padding-top: 48px;\n padding-right: 48px;\n padding-bottom: 48px;\n padding-left: 48px;\n}\n.acf-admin-single-post-type #acf-advanced-settings.postbox .inside,\n.acf-admin-single-taxonomy #acf-advanced-settings.postbox .inside,\n.acf-admin-single-options-page #acf-advanced-settings.postbox .inside {\n padding-bottom: 24px;\n}\n.acf-admin-single-post-type .postbox-container .meta-box-sortables #acf-basic-settings .inside,\n.acf-admin-single-taxonomy .postbox-container .meta-box-sortables #acf-basic-settings .inside,\n.acf-admin-single-options-page .postbox-container .meta-box-sortables #acf-basic-settings .inside {\n border: none;\n}\n.acf-admin-single-post-type .acf-input-wrap,\n.acf-admin-single-taxonomy .acf-input-wrap,\n.acf-admin-single-options-page .acf-input-wrap {\n overflow: visible;\n}\n.acf-admin-single-post-type .acf-field,\n.acf-admin-single-taxonomy .acf-field,\n.acf-admin-single-options-page .acf-field {\n margin-top: 0;\n margin-right: 0;\n margin-bottom: 24px;\n margin-left: 0;\n}\n.acf-admin-single-post-type .acf-field .acf-label,\n.acf-admin-single-taxonomy .acf-field .acf-label,\n.acf-admin-single-options-page .acf-field .acf-label {\n margin-bottom: 6px;\n}\n.acf-admin-single-post-type .acf-field-text,\n.acf-admin-single-post-type .acf-field-textarea,\n.acf-admin-single-post-type .acf-field-select,\n.acf-admin-single-taxonomy .acf-field-text,\n.acf-admin-single-taxonomy .acf-field-textarea,\n.acf-admin-single-taxonomy .acf-field-select,\n.acf-admin-single-options-page .acf-field-text,\n.acf-admin-single-options-page .acf-field-textarea,\n.acf-admin-single-options-page .acf-field-select {\n max-width: 600px;\n}\n.acf-admin-single-post-type .acf-field-true-false,\n.acf-admin-single-taxonomy .acf-field-true-false,\n.acf-admin-single-options-page .acf-field-true-false {\n max-width: 700px;\n}\n.acf-admin-single-post-type .acf-field-supports,\n.acf-admin-single-taxonomy .acf-field-supports,\n.acf-admin-single-options-page .acf-field-supports {\n max-width: 600px;\n}\n.acf-admin-single-post-type .acf-field-supports .acf-label,\n.acf-admin-single-taxonomy .acf-field-supports .acf-label,\n.acf-admin-single-options-page .acf-field-supports .acf-label {\n display: block;\n}\n.acf-admin-single-post-type .acf-field-supports .acf-label .description,\n.acf-admin-single-taxonomy .acf-field-supports .acf-label .description,\n.acf-admin-single-options-page .acf-field-supports .acf-label .description {\n margin-top: 4px;\n margin-bottom: 12px;\n}\n.acf-admin-single-post-type .acf-field-supports .acf_post_type_supports,\n.acf-admin-single-taxonomy .acf-field-supports .acf_post_type_supports,\n.acf-admin-single-options-page .acf-field-supports .acf_post_type_supports {\n display: flex;\n flex-wrap: wrap;\n justify-content: flex-start;\n align-content: flex-start;\n align-items: flex-start;\n}\n.acf-admin-single-post-type .acf-field-supports .acf_post_type_supports:focus-within,\n.acf-admin-single-taxonomy .acf-field-supports .acf_post_type_supports:focus-within,\n.acf-admin-single-options-page .acf-field-supports .acf_post_type_supports:focus-within {\n border-color: transparent;\n}\n.acf-admin-single-post-type .acf-field-supports .acf_post_type_supports li,\n.acf-admin-single-taxonomy .acf-field-supports .acf_post_type_supports li,\n.acf-admin-single-options-page .acf-field-supports .acf_post_type_supports li {\n flex: 0 0 25%;\n}\n.acf-admin-single-post-type .acf-field-supports .acf_post_type_supports li a.button,\n.acf-admin-single-taxonomy .acf-field-supports .acf_post_type_supports li a.button,\n.acf-admin-single-options-page .acf-field-supports .acf_post_type_supports li a.button {\n background-color: transparent;\n padding: 0;\n border: 0;\n height: auto;\n min-height: auto;\n margin-top: 0;\n border-radius: 0;\n line-height: 22px;\n}\n.acf-admin-single-post-type .acf-field-supports .acf_post_type_supports li a.button:before,\n.acf-admin-single-taxonomy .acf-field-supports .acf_post_type_supports li a.button:before,\n.acf-admin-single-options-page .acf-field-supports .acf_post_type_supports li a.button:before {\n content: \"\";\n margin-right: 6px;\n display: inline-flex;\n width: 16px;\n height: 16px;\n background-color: currentColor;\n border: none;\n border-radius: 0;\n -webkit-mask-size: contain;\n mask-size: contain;\n -webkit-mask-repeat: no-repeat;\n mask-repeat: no-repeat;\n -webkit-mask-position: center;\n mask-position: center;\n text-indent: 500%;\n white-space: nowrap;\n overflow: hidden;\n -webkit-mask-image: url(\"../../images/icons/icon-add.svg\");\n mask-image: url(\"../../images/icons/icon-add.svg\");\n}\n.acf-admin-single-post-type .acf-field-supports .acf_post_type_supports li a.button:hover,\n.acf-admin-single-taxonomy .acf-field-supports .acf_post_type_supports li a.button:hover,\n.acf-admin-single-options-page .acf-field-supports .acf_post_type_supports li a.button:hover {\n color: #044E71;\n}\n.acf-admin-single-post-type .acf-field-supports .acf_post_type_supports li input[type=text],\n.acf-admin-single-taxonomy .acf-field-supports .acf_post_type_supports li input[type=text],\n.acf-admin-single-options-page .acf-field-supports .acf_post_type_supports li input[type=text] {\n width: calc(100% - 36px);\n padding: 0;\n box-shadow: none;\n border: none;\n border-bottom: 1px solid #D0D5DD;\n border-radius: 0;\n height: auto;\n margin: 0;\n min-height: auto;\n}\n.acf-admin-single-post-type .acf-field-supports .acf_post_type_supports li input[type=text]:focus,\n.acf-admin-single-taxonomy .acf-field-supports .acf_post_type_supports li input[type=text]:focus,\n.acf-admin-single-options-page .acf-field-supports .acf_post_type_supports li input[type=text]:focus {\n outline: none;\n border-bottom-color: #399CCB;\n}\n.acf-admin-single-post-type .acf-field-seperator,\n.acf-admin-single-taxonomy .acf-field-seperator,\n.acf-admin-single-options-page .acf-field-seperator {\n margin-top: 40px;\n margin-bottom: 40px;\n border-top: 1px solid #EAECF0;\n border-right: none;\n border-bottom: none;\n border-left: none;\n}\n.acf-admin-single-post-type .acf-field-advanced-configuration,\n.acf-admin-single-taxonomy .acf-field-advanced-configuration,\n.acf-admin-single-options-page .acf-field-advanced-configuration {\n margin-bottom: 0;\n}\n.acf-admin-single-post-type .postbox-container .acf-tab-wrap,\n.acf-admin-single-post-type .acf-regenerate-labels-bar,\n.acf-admin-single-taxonomy .postbox-container .acf-tab-wrap,\n.acf-admin-single-taxonomy .acf-regenerate-labels-bar,\n.acf-admin-single-options-page .postbox-container .acf-tab-wrap,\n.acf-admin-single-options-page .acf-regenerate-labels-bar {\n position: relative;\n top: -48px;\n left: -48px;\n width: calc(100% + 96px);\n}\n.acf-admin-single-post-type .acf-regenerate-labels-bar,\n.acf-admin-single-taxonomy .acf-regenerate-labels-bar,\n.acf-admin-single-options-page .acf-regenerate-labels-bar {\n display: flex;\n align-items: center;\n justify-content: right;\n min-height: 48px;\n margin-bottom: 0;\n padding-right: 16px;\n padding-left: 16px;\n gap: 8px;\n border-bottom-width: 1px;\n border-bottom-style: solid;\n border-bottom-color: #F2F4F7;\n}\n.acf-admin-single-post-type .acf-labels-tip,\n.acf-admin-single-taxonomy .acf-labels-tip,\n.acf-admin-single-options-page .acf-labels-tip {\n display: inline-flex;\n align-items: center;\n min-height: 24px;\n margin-right: 8px;\n padding-left: 16px;\n border-left-width: 1px;\n border-left-style: solid;\n border-left-color: #EAECF0;\n}\n.acf-admin-single-post-type .acf-labels-tip .acf-icon,\n.acf-admin-single-taxonomy .acf-labels-tip .acf-icon,\n.acf-admin-single-options-page .acf-labels-tip .acf-icon {\n display: inline-flex;\n align-items: center;\n width: 16px;\n height: 16px;\n -webkit-mask-size: 16px;\n mask-size: 16px;\n background-color: #98A2B3;\n}\n\n.acf-select2-default-pill {\n border-radius: 100px;\n min-height: 20px;\n padding-top: 2px;\n padding-bottom: 2px;\n padding-left: 8px;\n padding-right: 8px;\n font-size: 11px;\n margin-left: 6px;\n background-color: #EAECF0;\n color: #667085;\n}\n\n.acf-menu-position-desc-child {\n display: none;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Field picker modal\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-modal.acf-browse-fields-modal {\n width: 1120px;\n height: 664px;\n top: 50%;\n right: auto;\n bottom: auto;\n left: 50%;\n transform: translate(-50%, -50%);\n display: flex;\n flex-direction: row;\n border-radius: 12px;\n box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.04), 0px 8px 16px rgba(0, 0, 0, 0.08);\n overflow: hidden;\n}\n.acf-modal.acf-browse-fields-modal .acf-field-picker {\n display: flex;\n flex-direction: column;\n flex-grow: 1;\n width: 760px;\n background: #fff;\n}\n.acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-title,\n.acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-content,\n.acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-toolbar {\n position: relative;\n}\n.acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-title {\n display: flex;\n flex-direction: row;\n justify-content: space-between;\n align-items: center;\n background: #F9FAFB;\n border: none;\n padding: 35px 32px;\n}\n.acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-title .acf-search-field-types-wrap {\n position: relative;\n}\n.acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-title .acf-search-field-types-wrap:after {\n content: \"\";\n display: block;\n position: absolute;\n top: 11px;\n left: 10px;\n width: 18px;\n height: 18px;\n -webkit-mask-image: url(\"../../images/icons/icon-search.svg\");\n mask-image: url(\"../../images/icons/icon-search.svg\");\n background-color: #98A2B3;\n border: none;\n border-radius: 0;\n -webkit-mask-size: contain;\n mask-size: contain;\n -webkit-mask-repeat: no-repeat;\n mask-repeat: no-repeat;\n -webkit-mask-position: center;\n mask-position: center;\n text-indent: 500%;\n white-space: nowrap;\n overflow: hidden;\n}\n.acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-title .acf-search-field-types-wrap input {\n width: 280px;\n height: 40px;\n margin: 0;\n padding-left: 32px;\n box-shadow: none;\n}\n.acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-content {\n top: auto;\n bottom: auto;\n padding: 0;\n height: 100%;\n}\n.acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-content .acf-tab-group {\n padding-left: 32px;\n}\n.acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-content .acf-field-types-tab {\n display: flex;\n}\n.acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-content .acf-field-types-tab,\n.acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-content .acf-field-type-search-results {\n flex-direction: row;\n flex-wrap: wrap;\n gap: 24px;\n padding: 32px;\n}\n.acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-content .acf-field-types-tab .acf-field-type,\n.acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-content .acf-field-type-search-results .acf-field-type {\n position: relative;\n display: flex;\n flex-direction: column;\n justify-content: center;\n align-items: center;\n isolation: isolate;\n width: 120px;\n height: 120px;\n background: #F9FAFB;\n border: 1px solid #EAECF0;\n border-radius: 8px;\n box-sizing: border-box;\n color: #1D2939;\n text-decoration: none;\n}\n.acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-content .acf-field-types-tab .acf-field-type:hover, .acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-content .acf-field-types-tab .acf-field-type:active, .acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-content .acf-field-types-tab .acf-field-type.selected,\n.acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-content .acf-field-type-search-results .acf-field-type:hover,\n.acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-content .acf-field-type-search-results .acf-field-type:active,\n.acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-content .acf-field-type-search-results .acf-field-type.selected {\n background: #EBF5FA;\n border: 1px solid #399CCB;\n box-shadow: inset 0 0 0 1px #399CCB;\n}\n.acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-content .acf-field-types-tab .acf-field-type .field-type-icon,\n.acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-content .acf-field-type-search-results .acf-field-type .field-type-icon {\n border: none;\n background: none;\n top: 0;\n}\n.acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-content .acf-field-types-tab .acf-field-type .field-type-icon:before,\n.acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-content .acf-field-type-search-results .acf-field-type .field-type-icon:before {\n width: 22px;\n height: 22px;\n}\n.acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-content .acf-field-types-tab .acf-field-type .field-type-label,\n.acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-content .acf-field-type-search-results .acf-field-type .field-type-label {\n margin-top: 12px;\n}\n.acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-content .acf-field-types-tab .field-type-requires-pro,\n.acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-content .acf-field-type-search-results .field-type-requires-pro {\n display: flex;\n justify-content: center;\n align-items: center;\n position: absolute;\n top: -10px;\n right: -10px;\n height: 21px;\n color: white;\n background: linear-gradient(90.52deg, #3E8BFF 0.44%, #A45CFF 113.3%);\n background-size: 140% 20%;\n background-position: 100% 0;\n border-radius: 100px;\n font-size: 11px;\n padding-right: 6px;\n padding-left: 6px;\n}\n.acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-content .acf-field-types-tab .field-type-requires-pro i,\n.acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-content .acf-field-type-search-results .field-type-requires-pro i {\n width: 12px;\n height: 12px;\n margin-right: 2px;\n}\n.acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-toolbar {\n display: flex;\n align-items: flex-start;\n justify-content: space-between;\n height: auto;\n min-height: 72px;\n padding-top: 0;\n padding-right: 32px;\n padding-bottom: 0;\n padding-left: 32px;\n margin: 0;\n border: none;\n}\n.acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-toolbar .acf-select-field,\n.acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-toolbar .acf-btn-pro {\n min-width: 160px;\n justify-content: center;\n}\n.acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-toolbar .acf-insert-field-label {\n min-width: 280px;\n box-shadow: none;\n}\n.acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-toolbar .acf-field-picker-actions {\n display: flex;\n gap: 8px;\n}\n.acf-modal.acf-browse-fields-modal .acf-field-type-preview {\n display: flex;\n flex-direction: column;\n width: 360px;\n background-color: #F9FAFB;\n background-image: url(\"../../images/field-preview-grid.png\");\n background-size: 740px;\n background-repeat: no-repeat;\n background-position: center bottom;\n border-left: 1px solid #EAECF0;\n box-sizing: border-box;\n padding: 32px;\n}\n.acf-modal.acf-browse-fields-modal .acf-field-type-preview .field-type-desc {\n margin: 0;\n padding: 0;\n color: #667085;\n}\n.acf-modal.acf-browse-fields-modal .acf-field-type-preview .field-type-preview-container {\n display: inline-flex;\n justify-content: center;\n width: 100%;\n margin-top: 24px;\n padding-top: 32px;\n padding-bottom: 32px;\n background-color: rgba(255, 255, 255, 0.64);\n border-radius: 8px;\n box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.04), 0px 8px 24px rgba(0, 0, 0, 0.04);\n}\n.acf-modal.acf-browse-fields-modal .acf-field-type-preview .field-type-image {\n max-width: 232px;\n}\n.acf-modal.acf-browse-fields-modal .acf-field-type-preview .field-type-info {\n flex-grow: 1;\n}\n.acf-modal.acf-browse-fields-modal .acf-field-type-preview .field-type-info .field-type-name {\n font-size: 21px;\n margin-top: 0;\n margin-right: 0;\n margin-bottom: 16px;\n margin-left: 0;\n}\n.acf-modal.acf-browse-fields-modal .acf-field-type-preview .field-type-info .field-type-upgrade-to-unlock {\n display: inline-flex;\n justify-items: center;\n align-items: center;\n min-height: 24px;\n margin-bottom: 12px;\n padding-right: 8px;\n padding-left: 8px;\n background: linear-gradient(90.52deg, #3E8BFF 0.44%, #A45CFF 113.3%);\n background-size: 140% 20%;\n background-position: 100% 0;\n border-radius: 100px;\n color: white;\n text-decoration: none;\n font-size: 11px;\n}\n.acf-modal.acf-browse-fields-modal .acf-field-type-preview .field-type-info .field-type-upgrade-to-unlock i.acf-icon {\n width: 14px;\n height: 14px;\n margin-right: 4px;\n}\n.acf-modal.acf-browse-fields-modal .acf-field-type-preview .field-type-links {\n display: flex;\n align-items: center;\n gap: 24px;\n min-height: 40px;\n}\n.acf-modal.acf-browse-fields-modal .acf-field-type-preview .field-type-links .acf-icon {\n width: 18px;\n height: 18px;\n}\n.acf-modal.acf-browse-fields-modal .acf-field-type-preview .field-type-links:before {\n display: none;\n}\n.acf-modal.acf-browse-fields-modal .acf-field-type-preview .field-type-links a {\n display: flex;\n gap: 6px;\n text-decoration: none;\n}\n.acf-modal.acf-browse-fields-modal .acf-field-type-preview .field-type-links a:hover {\n text-decoration: underline;\n}\n.acf-modal.acf-browse-fields-modal .acf-field-type-search-results,\n.acf-modal.acf-browse-fields-modal .acf-field-type-search-no-results {\n display: none;\n}\n.acf-modal.acf-browse-fields-modal.is-searching .acf-tab-wrap,\n.acf-modal.acf-browse-fields-modal.is-searching .acf-field-types-tab,\n.acf-modal.acf-browse-fields-modal.is-searching .acf-field-type-search-no-results {\n display: none !important;\n}\n.acf-modal.acf-browse-fields-modal.is-searching .acf-field-type-search-results {\n display: flex;\n}\n.acf-modal.acf-browse-fields-modal.no-results-found .acf-tab-wrap,\n.acf-modal.acf-browse-fields-modal.no-results-found .acf-field-types-tab,\n.acf-modal.acf-browse-fields-modal.no-results-found .acf-field-type-search-results,\n.acf-modal.acf-browse-fields-modal.no-results-found .field-type-info,\n.acf-modal.acf-browse-fields-modal.no-results-found .field-type-links,\n.acf-modal.acf-browse-fields-modal.no-results-found .acf-field-picker-toolbar {\n display: none !important;\n}\n.acf-modal.acf-browse-fields-modal.no-results-found .acf-modal-title {\n border-bottom-width: 1px;\n border-bottom-style: solid;\n border-bottom-color: #EAECF0;\n}\n.acf-modal.acf-browse-fields-modal.no-results-found .acf-field-type-search-no-results {\n display: flex;\n flex-direction: column;\n justify-content: center;\n align-items: center;\n height: 100%;\n gap: 6px;\n}\n.acf-modal.acf-browse-fields-modal.no-results-found .acf-field-type-search-no-results img {\n margin-bottom: 19px;\n}\n.acf-modal.acf-browse-fields-modal.no-results-found .acf-field-type-search-no-results p {\n margin: 0;\n}\n.acf-modal.acf-browse-fields-modal.no-results-found .acf-field-type-search-no-results p.acf-no-results-text {\n display: flex;\n}\n.acf-modal.acf-browse-fields-modal.no-results-found .acf-field-type-search-no-results .acf-invalid-search-term {\n max-width: 200px;\n overflow: hidden;\n text-overflow: ellipsis;\n display: inline-block;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Hide browse fields button for smaller screen sizes\n*\n*---------------------------------------------------------------------------------------------*/\n@media only screen and (max-width: 1080px) {\n .acf-btn.browse-fields {\n display: none;\n }\n}","/*--------------------------------------------------------------------------------------------\n*\n*\tVars\n*\n*--------------------------------------------------------------------------------------------*/\n\n/* colors */\n$acf_blue: #2a9bd9;\n$acf_notice: #2a9bd9;\n$acf_error: #d94f4f;\n$acf_success: #49ad52;\n$acf_warning: #fd8d3b;\n\n/* acf-field */\n$field_padding: 15px 12px;\n$field_padding_x: 12px;\n$field_padding_y: 15px;\n$fp: 15px 12px;\n$fy: 15px;\n$fx: 12px;\n\n/* responsive */\n$md: 880px;\n$sm: 640px;\n\n// Admin.\n$wp-card-border: #ccd0d4;\t\t\t// Card border.\n$wp-card-border-1: #d5d9dd;\t\t // Card inner border 1: Structural (darker).\n$wp-card-border-2: #eeeeee;\t\t // Card inner border 2: Fields (lighter).\n$wp-input-border: #7e8993;\t\t // Input border.\n\n// Admin 3.8\n$wp38-card-border: #E5E5E5;\t\t // Card border.\n$wp38-card-border-1: #dfdfdf;\t\t// Card inner border 1: Structural (darker).\n$wp38-card-border-2: #eeeeee;\t\t// Card inner border 2: Fields (lighter).\n$wp38-input-border: #dddddd;\t\t // Input border.\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tACF 6 ↓\n*\n*--------------------------------------------------------------------------------------------*/\n\n// Grays\n$gray-50: #F9FAFB;\n$gray-100: #F2F4F7;\n$gray-200: #EAECF0;\n$gray-300: #D0D5DD;\n$gray-400: #98A2B3;\n$gray-500: #667085;\n$gray-600: #475467;\n$gray-700: #344054;\n$gray-800: #1D2939;\n$gray-900: #101828;\n\n// Blues\n$blue-50: #EBF5FA;\n$blue-100: #D8EBF5;\n$blue-200: #A5D2E7;\n$blue-300: #6BB5D8;\n$blue-400: #399CCB;\n$blue-500: #0783BE;\n$blue-600: #066998;\n$blue-700: #044E71;\n$blue-800: #033F5B;\n$blue-900: #032F45;\n\n// Utility\n$color-info:\t#2D69DA;\n$color-success:\t#52AA59;\n$color-warning:\t#F79009;\n$color-danger:\t#D13737;\n\n$color-primary: $blue-500;\n$color-primary-hover: $blue-600;\n$color-secondary: $gray-500;\n$color-secondary-hover: $gray-400;\n\n// Gradients\n$gradient-pro: linear-gradient(90.52deg, #3E8BFF 0.44%, #A45CFF 113.3%);\n\n// Border radius\n$radius-sm:\t4px;\n$radius-md: 6px;\n$radius-lg: 8px;\n$radius-xl: 12px;\n\n// Elevations / Box shadows\n$elevation-01: 0px 1px 2px rgba($gray-900, 0.10);\n\n// Input & button focus outline\n$outline: 3px solid $blue-50;\n\n// Link colours\n$link-color: $blue-500;\n\n// Responsive\n$max-width: 1440px;","/*--------------------------------------------------------------------------------------------\n*\n* Mixins\n*\n*--------------------------------------------------------------------------------------------*/\n@mixin clearfix() {\n\t&:after {\n\t\tdisplay: block;\n\t\tclear: both;\n\t\tcontent: \"\";\n\t}\n}\n\n@mixin border-box() {\n\t-webkit-box-sizing: border-box;\n\t-moz-box-sizing: border-box;\n\tbox-sizing: border-box;\n}\n\n@mixin centered() {\n\tposition: absolute;\n\ttop: 50%;\n\tleft: 50%;\n\ttransform: translate(-50%, -50%);\n}\n\n@mixin animate( $properties: 'all' ) {\n\t-webkit-transition: $properties 0.3s ease; // Safari 3.2+, Chrome\n -moz-transition: $properties 0.3s ease; \t// Firefox 4-15\n -o-transition: $properties 0.3s ease; \t\t// Opera 10.5–12.00\n transition: $properties 0.3s ease; \t\t// Firefox 16+, Opera 12.50+\n}\n\n@mixin rtl() {\n\thtml[dir=\"rtl\"] & {\n\t\ttext-align: right;\n\t\t@content;\n\t}\n}\n\n@mixin wp-admin( $version: '3-8' ) {\n\t.acf-admin-#{$version} & {\n\t\t@content;\n\t}\n}","@use \"sass:math\";\n/*--------------------------------------------------------------------------------------------\n*\n* Global\n*\n*--------------------------------------------------------------------------------------------*/\n\n/* Horizontal List */\n.acf-hl {\n\tpadding: 0;\n\tmargin: 0;\n\tlist-style: none;\n\tdisplay: block;\n\tposition: relative;\n}\n.acf-hl > li {\n\tfloat: left;\n\tdisplay: block;\n\tmargin: 0;\n\tpadding: 0;\n}\n.acf-hl > li.acf-fr {\n\tfloat: right;\n}\n\n/* Horizontal List: Clearfix */\n.acf-hl:before,\n.acf-hl:after,\n.acf-bl:before,\n.acf-bl:after,\n.acf-cf:before,\n.acf-cf:after {\n\tcontent: \"\";\n\tdisplay: block;\n\tline-height: 0;\n}\n.acf-hl:after,\n.acf-bl:after,\n.acf-cf:after {\n\tclear: both;\n}\n\n/* Block List */\n.acf-bl {\n\tpadding: 0;\n\tmargin: 0;\n\tlist-style: none;\n\tdisplay: block;\n\tposition: relative;\n}\n.acf-bl > li {\n\tdisplay: block;\n\tmargin: 0;\n\tpadding: 0;\n\tfloat: none;\n}\n\n/* Visibility */\n.acf-hidden {\n\tdisplay: none !important;\n}\n.acf-empty {\n\tdisplay: table-cell !important;\n\t* {\n\t\tdisplay: none !important;\n\t}\n}\n\n/* Float */\n.acf-fl {\n\tfloat: left;\n}\n.acf-fr {\n\tfloat: right;\n}\n.acf-fn {\n\tfloat: none;\n}\n\n/* Align */\n.acf-al {\n\ttext-align: left;\n}\n.acf-ar {\n\ttext-align: right;\n}\n.acf-ac {\n\ttext-align: center;\n}\n\n/* loading */\n.acf-loading,\n.acf-spinner {\n\tdisplay: inline-block;\n\theight: 20px;\n\twidth: 20px;\n\tvertical-align: text-top;\n\tbackground: transparent url(../../images/spinner.gif) no-repeat 50% 50%;\n}\n\n/* spinner */\n.acf-spinner {\n\tdisplay: none;\n}\n\n.acf-spinner.is-active {\n\tdisplay: inline-block;\n}\n\n/* WP < 4.2 */\n.spinner.is-active {\n\tdisplay: inline-block;\n}\n\n/* required */\n.acf-required {\n\tcolor: #f00;\n}\n\n/* Allow pointer events in reusable blocks */\n.acf-button,\n.acf-tab-button {\n\tpointer-events: auto !important;\n}\n\n/* show on hover */\n.acf-soh .acf-soh-target {\n\t-webkit-transition: opacity 0.25s 0s ease-in-out, visibility 0s linear 0.25s;\n\t-moz-transition: opacity 0.25s 0s ease-in-out, visibility 0s linear 0.25s;\n\t-o-transition: opacity 0.25s 0s ease-in-out, visibility 0s linear 0.25s;\n\ttransition: opacity 0.25s 0s ease-in-out, visibility 0s linear 0.25s;\n\n\tvisibility: hidden;\n\topacity: 0;\n}\n\n.acf-soh:hover .acf-soh-target {\n\t-webkit-transition-delay: 0s;\n\t-moz-transition-delay: 0s;\n\t-o-transition-delay: 0s;\n\ttransition-delay: 0s;\n\n\tvisibility: visible;\n\topacity: 1;\n}\n\n/* show if value */\n.show-if-value {\n\tdisplay: none;\n}\n.hide-if-value {\n\tdisplay: block;\n}\n\n.has-value .show-if-value {\n\tdisplay: block;\n}\n.has-value .hide-if-value {\n\tdisplay: none;\n}\n\n/* select2 WP animation fix */\n.select2-search-choice-close {\n\t-webkit-transition: none;\n\t-moz-transition: none;\n\t-o-transition: none;\n\ttransition: none;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* tooltip\n*\n*---------------------------------------------------------------------------------------------*/\n\n/* tooltip */\n.acf-tooltip {\n\tbackground: $gray-800;\n\tborder-radius: $radius-md;\n\tcolor: $gray-300;\n\tpadding: {\n\t\ttop: 8px;\n\t\tright: 12px;\n\t\tbottom: 10px;\n\t\tleft: 12px;\n\t}\n\tposition: absolute;\n\t@extend .p7;\n\tz-index: 900000;\n\tmax-width: 280px;\n\tbox-shadow: 0px 12px 16px -4px rgba(16, 24, 40, 0.08),\n\t\t0px 4px 6px -2px rgba(16, 24, 40, 0.03);\n\n\t/* tip */\n\t&:before {\n\t\tborder: solid;\n\t\tborder-color: transparent;\n\t\tborder-width: 6px;\n\t\tcontent: \"\";\n\t\tposition: absolute;\n\t}\n\n\t/* positions */\n\t&.top {\n\t\tmargin-top: -8px;\n\n\t\t&:before {\n\t\t\ttop: 100%;\n\t\t\tleft: 50%;\n\t\t\tmargin-left: -6px;\n\t\t\tborder-top-color: #2f353e;\n\t\t\tborder-bottom-width: 0;\n\t\t}\n\t}\n\n\t&.right {\n\t\tmargin-left: 8px;\n\n\t\t&:before {\n\t\t\ttop: 50%;\n\t\t\tmargin-top: -6px;\n\t\t\tright: 100%;\n\t\t\tborder-right-color: #2f353e;\n\t\t\tborder-left-width: 0;\n\t\t}\n\t}\n\n\t&.bottom {\n\t\tmargin-top: 8px;\n\n\t\t&:before {\n\t\t\tbottom: 100%;\n\t\t\tleft: 50%;\n\t\t\tmargin-left: -6px;\n\t\t\tborder-bottom-color: #2f353e;\n\t\t\tborder-top-width: 0;\n\t\t}\n\t}\n\n\t&.left {\n\t\tmargin-left: -8px;\n\n\t\t&:before {\n\t\t\ttop: 50%;\n\t\t\tmargin-top: -6px;\n\t\t\tleft: 100%;\n\t\t\tborder-left-color: #2f353e;\n\t\t\tborder-right-width: 0;\n\t\t}\n\t}\n\n\t.acf-overlay {\n\t\tz-index: -1;\n\t}\n}\n\n/* confirm */\n.acf-tooltip.-confirm {\n\tz-index: 900001; // +1 higher than .acf-tooltip\n\n\ta {\n\t\ttext-decoration: none;\n\t\tcolor: #9ea3a8;\n\n\t\t&:hover {\n\t\t\ttext-decoration: underline;\n\t\t}\n\n\t\t&[data-event=\"confirm\"] {\n\t\t\tcolor: #f55e4f;\n\t\t}\n\t}\n}\n\n.acf-overlay {\n\tposition: fixed;\n\ttop: 0;\n\tbottom: 0;\n\tleft: 0;\n\tright: 0;\n\tcursor: default;\n}\n\n.acf-tooltip-target {\n\tposition: relative;\n\tz-index: 900002; // +1 higher than .acf-tooltip\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* loading\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-loading-overlay {\n\tposition: absolute;\n\ttop: 0;\n\tbottom: 0;\n\tleft: 0;\n\tright: 0;\n\tcursor: default;\n\tz-index: 99;\n\tbackground: rgba(249, 249, 249, 0.5);\n\n\ti {\n\t\t@include centered();\n\t}\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tacf-icon\n*\n*--------------------------------------------------------------------------------------------*/\n.acf-icon {\n\tdisplay: inline-block;\n\theight: 28px;\n\twidth: 28px;\n\tborder: transparent solid 1px;\n\tborder-radius: 100%;\n\tfont-size: 20px;\n\tline-height: 21px;\n\ttext-align: center;\n\ttext-decoration: none;\n\tvertical-align: top;\n\tbox-sizing: border-box;\n\n\t&:before {\n\t\tfont-family: dashicons;\n\t\tdisplay: inline-block;\n\t\tline-height: 1;\n\t\tfont-weight: 400;\n\t\tfont-style: normal;\n\t\tspeak: none;\n\t\ttext-decoration: inherit;\n\t\ttext-transform: none;\n\t\ttext-rendering: auto;\n\t\t-webkit-font-smoothing: antialiased;\n\t\t-moz-osx-font-smoothing: grayscale;\n\t\twidth: 1em;\n\t\theight: 1em;\n\t\tvertical-align: middle;\n\t\ttext-align: center;\n\t}\n}\n\n// Icon types.\n.acf-icon.-plus:before {\n\tcontent: \"\\f543\";\n}\n.acf-icon.-minus:before {\n\tcontent: \"\\f460\";\n}\n.acf-icon.-cancel:before {\n\tcontent: \"\\f335\";\n\tmargin: -1px 0 0 -1px;\n}\n.acf-icon.-pencil:before {\n\tcontent: \"\\f464\";\n}\n.acf-icon.-location:before {\n\tcontent: \"\\f230\";\n}\n.acf-icon.-up:before {\n\tcontent: \"\\f343\";\n\n\t// Fix position relative to font-size.\n\tmargin-top: math.div(-2em, 20);\n}\n.acf-icon.-down:before {\n\tcontent: \"\\f347\";\n\n\t// Fix position relative to font-size.\n\tmargin-top: math.div(2em, 20);\n}\n.acf-icon.-left:before {\n\tcontent: \"\\f341\";\n\n\t// Fix position relative to font-size.\n\tmargin-left: math.div(-2em, 20);\n}\n.acf-icon.-right:before {\n\tcontent: \"\\f345\";\n\n\t// Fix position relative to font-size.\n\tmargin-left: math.div(2em, 20);\n}\n.acf-icon.-sync:before {\n\tcontent: \"\\f463\";\n}\n.acf-icon.-globe:before {\n\tcontent: \"\\f319\";\n\n\t// Fix position relative to font-size.\n\tmargin-top: math.div(2em, 20);\n\tmargin-left: math.div(2em, 20);\n}\n.acf-icon.-picture:before {\n\tcontent: \"\\f128\";\n}\n.acf-icon.-check:before {\n\tcontent: \"\\f147\";\n\n\t// Fix position relative to font-size.\n\tmargin-left: math.div(-2em, 20);\n}\n.acf-icon.-dot-3:before {\n\tcontent: \"\\f533\";\n\n\t// Fix position relative to font-size.\n\tmargin-top: math.div(-2em, 20);\n}\n.acf-icon.-arrow-combo:before {\n\tcontent: \"\\f156\";\n}\n.acf-icon.-arrow-up:before {\n\tcontent: \"\\f142\";\n\n\t// Fix position relative to font-size.\n\tmargin-left: math.div(-2em, 20);\n}\n.acf-icon.-arrow-down:before {\n\tcontent: \"\\f140\";\n\n\t// Fix position relative to font-size.\n\tmargin-left: math.div(-2em, 20);\n}\n.acf-icon.-search:before {\n\tcontent: \"\\f179\";\n}\n.acf-icon.-link-ext:before {\n\tcontent: \"\\f504\";\n}\n\n// Duplicate is a custom icon made from pseudo elements.\n.acf-icon.-duplicate {\n\tposition: relative;\n\t&:before,\n\t&:after {\n\t\tcontent: \"\";\n\t\tdisplay: block;\n\t\tbox-sizing: border-box;\n\t\twidth: 46%;\n\t\theight: 46%;\n\t\tposition: absolute;\n\t\ttop: 33%;\n\t\tleft: 23%;\n\t}\n\t&:before {\n\t\tmargin: -1px 0 0 1px;\n\t\tbox-shadow: 2px -2px 0px 0px currentColor;\n\t}\n\t&:after {\n\t\tborder: solid 2px currentColor;\n\t}\n}\n\n.acf-icon.-trash {\n\tposition: relative;\n\t&:before,\n\t&:after {\n\t\tcontent: \"\";\n\t\tdisplay: block;\n\t\tbox-sizing: border-box;\n\t\twidth: 46%;\n\t\theight: 46%;\n\t\tposition: absolute;\n\t\ttop: 33%;\n\t\tleft: 23%;\n\t}\n\t&:before {\n\t\tmargin: -1px 0 0 1px;\n\t\tbox-shadow: 2px -2px 0px 0px currentColor;\n\t}\n\t&:after {\n\t\tborder: solid 2px currentColor;\n\t}\n}\n\n// Collapse icon toggles automatically.\n.acf-icon.-collapse:before {\n\tcontent: \"\\f142\";\n\n\t// Fix position relative to font-size.\n\tmargin-left: math.div(-2em, 20);\n}\n.-collapsed .acf-icon.-collapse:before {\n\tcontent: \"\\f140\";\n\n\t// Fix position relative to font-size.\n\tmargin-left: math.div(-2em, 20);\n}\n\n// displays with grey border.\nspan.acf-icon {\n\tcolor: #555d66;\n\tborder-color: #b5bcc2;\n\tbackground-color: #fff;\n}\n\n// also displays with grey border.\na.acf-icon {\n\tcolor: #555d66;\n\tborder-color: #b5bcc2;\n\tbackground-color: #fff;\n\tposition: relative;\n\ttransition: none;\n\tcursor: pointer;\n\n\t// State \"hover\".\n\t&:hover {\n\t\tbackground: #f3f5f6;\n\t\tborder-color: #0071a1;\n\t\tcolor: #0071a1;\n\t}\n\t&.-minus:hover,\n\t&.-cancel:hover {\n\t\tbackground: #f7efef;\n\t\tborder-color: #a10000;\n\t\tcolor: #dc3232;\n\t}\n\n\t// Fix: Remove WP outline box-shadow.\n\t&:active,\n\t&:focus {\n\t\toutline: none;\n\t\tbox-shadow: none;\n\t}\n}\n\n// Style \"clear\".\n.acf-icon.-clear {\n\tborder-color: transparent;\n\tbackground: transparent;\n\tcolor: #444;\n}\n\n// Style \"light\".\n.acf-icon.light {\n\tborder-color: transparent;\n\tbackground: #f5f5f5;\n\tcolor: #23282d;\n}\n\n// Style \"dark\".\n.acf-icon.dark {\n\tborder-color: transparent !important;\n\tbackground: #23282d;\n\tcolor: #eee;\n}\na.acf-icon.dark {\n\t&:hover {\n\t\tbackground: #191e23;\n\t\tcolor: #00b9eb;\n\t}\n\t&.-minus:hover,\n\t&.-cancel:hover {\n\t\tcolor: #d54e21;\n\t}\n}\n\n// Style \"grey\".\n.acf-icon.grey {\n\tborder-color: transparent !important;\n\tbackground: #b4b9be;\n\tcolor: #fff !important;\n\n\t&:hover {\n\t\tbackground: #00a0d2;\n\t\tcolor: #fff;\n\t}\n\t&.-minus:hover,\n\t&.-cancel:hover {\n\t\tbackground: #32373c;\n\t}\n}\n\n// Size \"small\".\n.acf-icon.small,\n.acf-icon.-small {\n\twidth: 20px;\n\theight: 20px;\n\tline-height: 14px;\n\tfont-size: 14px;\n\n\t// Apply minor transforms to reduce clarirty of \"duplicate\" icon.\n\t// Helps to unify rendering with dashicons.\n\t&.-duplicate {\n\t\t&:before,\n\t\t&:after {\n\t\t\t//transform: rotate(0.1deg) scale(0.9) translate(-5%, 5%);\n\t\t\topacity: 0.8;\n\t\t}\n\t}\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tacf-box\n*\n*--------------------------------------------------------------------------------------------*/\n.acf-box {\n\tbackground: #ffffff;\n\tborder: 1px solid $wp-card-border;\n\tposition: relative;\n\tbox-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);\n\n\t/* title */\n\t.title {\n\t\tborder-bottom: 1px solid $wp-card-border;\n\t\tmargin: 0;\n\t\tpadding: 15px;\n\n\t\th3 {\n\t\t\tdisplay: flex;\n\t\t\talign-items: center;\n\t\t\tfont-size: 14px;\n\t\t\tline-height: 1em;\n\t\t\tmargin: 0;\n\t\t\tpadding: 0;\n\t\t}\n\t}\n\n\t.inner {\n\t\tpadding: 15px;\n\t}\n\n\th2 {\n\t\tcolor: #333333;\n\t\tfont-size: 26px;\n\t\tline-height: 1.25em;\n\t\tmargin: 0.25em 0 0.75em;\n\t\tpadding: 0;\n\t}\n\n\th3 {\n\t\tmargin: 1.5em 0 0;\n\t}\n\n\tp {\n\t\tmargin-top: 0.5em;\n\t}\n\n\ta {\n\t\ttext-decoration: none;\n\t}\n\n\ti {\n\t\t&.dashicons-external {\n\t\t\tmargin-top: -1px;\n\t\t}\n\t}\n\n\t/* footer */\n\t.footer {\n\t\tborder-top: 1px solid $wp-card-border;\n\t\tpadding: 12px;\n\t\tfont-size: 13px;\n\t\tline-height: 1.5;\n\n\t\tp {\n\t\t\tmargin: 0;\n\t\t}\n\t}\n\n\t// WP Admin 3.8\n\t@include wp-admin(\"3-8\") {\n\t\tborder-color: $wp38-card-border;\n\t\t.title,\n\t\t.footer {\n\t\t\tborder-color: $wp38-card-border;\n\t\t}\n\t}\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tacf-notice\n*\n*--------------------------------------------------------------------------------------------*/\n\n.acf-notice {\n\tposition: relative;\n\tdisplay: block;\n\tcolor: #fff;\n\tmargin: 5px 0 15px;\n\tpadding: 3px 12px;\n\tbackground: $acf_notice;\n\tborder-left: darken($acf_notice, 10%) solid 3px;\n\n\tp {\n\t\tfont-size: 13px;\n\t\tline-height: 1.5;\n\t\tmargin: 0.5em 0;\n\t\ttext-shadow: none;\n\t\tcolor: inherit;\n\t}\n\n\t.acf-notice-dismiss {\n\t\tposition: absolute;\n\t\ttop: 9px;\n\t\tright: 12px;\n\t\tbackground: transparent !important;\n\t\tcolor: inherit !important;\n\t\tborder-color: #fff !important;\n\t\topacity: 0.75;\n\t\t&:hover {\n\t\t\topacity: 1;\n\t\t}\n\t}\n\n\t// dismiss\n\t&.-dismiss {\n\t\tpadding-right: 40px;\n\t}\n\n\t// error\n\t&.-error {\n\t\tbackground: $acf_error;\n\t\tborder-color: darken($acf_error, 10%);\n\t}\n\n\t// success\n\t&.-success {\n\t\tbackground: $acf_success;\n\t\tborder-color: darken($acf_success, 10%);\n\t}\n\n\t// warning\n\t&.-warning {\n\t\tbackground: $acf_warning;\n\t\tborder-color: darken($acf_warning, 10%);\n\t}\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tacf-table\n*\n*--------------------------------------------------------------------------------------------*/\n\n.acf-table {\n\tborder: $wp-card-border solid 1px;\n\tbackground: #fff;\n\tborder-spacing: 0;\n\tborder-radius: 0;\n\ttable-layout: auto;\n\tpadding: 0;\n\tmargin: 0;\n\twidth: 100%;\n\tclear: both;\n\tbox-sizing: content-box;\n\n\t/* defaults */\n\t> tbody > tr,\n\t> thead > tr {\n\t\t> th,\n\t\t> td {\n\t\t\tpadding: 8px;\n\t\t\tvertical-align: top;\n\t\t\tbackground: #fff;\n\t\t\ttext-align: left;\n\t\t\tborder-style: solid;\n\t\t\tfont-weight: normal;\n\t\t}\n\n\t\t> th {\n\t\t\tposition: relative;\n\t\t\tcolor: #333333;\n\t\t}\n\t}\n\n\t/* thead */\n\t> thead {\n\t\t> tr {\n\t\t\t> th {\n\t\t\t\tborder-color: $wp-card-border-1;\n\t\t\t\tborder-width: 0 0 1px 1px;\n\n\t\t\t\t&:first-child {\n\t\t\t\t\tborder-left-width: 0;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\t/* tbody */\n\t> tbody {\n\t\t> tr {\n\t\t\tz-index: 1;\n\n\t\t\t> td {\n\t\t\t\tborder-color: $wp-card-border-2;\n\t\t\t\tborder-width: 1px 0 0 1px;\n\n\t\t\t\t&:first-child {\n\t\t\t\t\tborder-left-width: 0;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t&:first-child > td {\n\t\t\t\tborder-top-width: 0;\n\t\t\t}\n\t\t}\n\t}\n\n\t/* -clear */\n\t&.-clear {\n\t\tborder: 0 none;\n\n\t\t> tbody > tr,\n\t\t> thead > tr {\n\t\t\t> td,\n\t\t\t> th {\n\t\t\t\tborder: 0 none;\n\t\t\t\tpadding: 4px;\n\t\t\t}\n\t\t}\n\t}\n}\n\n/* remove tr */\n.acf-remove-element {\n\t-webkit-transition: all 0.25s ease-out;\n\t-moz-transition: all 0.25s ease-out;\n\t-o-transition: all 0.25s ease-out;\n\ttransition: all 0.25s ease-out;\n\n\ttransform: translate(50px, 0);\n\topacity: 0;\n}\n\n/* fade-up */\n.acf-fade-up {\n\t-webkit-transition: all 0.25s ease-out;\n\t-moz-transition: all 0.25s ease-out;\n\t-o-transition: all 0.25s ease-out;\n\ttransition: all 0.25s ease-out;\n\n\ttransform: translate(0, -10px);\n\topacity: 0;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Fake table\n*\n*---------------------------------------------------------------------------------------------*/\n\n.acf-thead,\n.acf-tbody,\n.acf-tfoot {\n\twidth: 100%;\n\tpadding: 0;\n\tmargin: 0;\n\n\t> li {\n\t\tbox-sizing: border-box;\n\t\tpadding: {\n\t\t\ttop: 14px;\n\t\t}\n\t\tfont-size: 12px;\n\t\tline-height: 14px;\n\t}\n}\n\n.acf-thead {\n\tborder-bottom: $wp-card-border solid 1px;\n\tcolor: #23282d;\n\n\t> li {\n\t\tfont-size: 14px;\n\t\tline-height: 1.4;\n\t\tfont-weight: bold;\n\t}\n\n\t// WP Admin 3.8\n\t@include wp-admin(\"3-8\") {\n\t\tborder-color: $wp38-card-border-1;\n\t}\n}\n\n.acf-tfoot {\n\tbackground: #f5f5f5;\n\tborder-top: $wp-card-border-1 solid 1px;\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tSettings\n*\n*--------------------------------------------------------------------------------------------*/\n\n.acf-settings-wrap {\n\t#poststuff {\n\t\tpadding-top: 15px;\n\t}\n\n\t.acf-box {\n\t\tmargin: 20px 0;\n\t}\n\n\ttable {\n\t\tmargin: 0;\n\n\t\t.button {\n\t\t\tvertical-align: middle;\n\t\t}\n\t}\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tacf-popup\n*\n*--------------------------------------------------------------------------------------------*/\n\n#acf-popup {\n\tposition: fixed;\n\tz-index: 900000;\n\ttop: 0;\n\tleft: 0;\n\tright: 0;\n\tbottom: 0;\n\ttext-align: center;\n\n\t// bg\n\t.bg {\n\t\tposition: absolute;\n\t\ttop: 0;\n\t\tleft: 0;\n\t\tright: 0;\n\t\tbottom: 0;\n\t\tz-index: 0;\n\t\tbackground: rgba(0, 0, 0, 0.25);\n\t}\n\n\t&:before {\n\t\tcontent: \"\";\n\t\tdisplay: inline-block;\n\t\theight: 100%;\n\t\tvertical-align: middle;\n\t}\n\n\t// box\n\t.acf-popup-box {\n\t\tdisplay: inline-block;\n\t\tvertical-align: middle;\n\t\tz-index: 1;\n\t\tmin-width: 300px;\n\t\tmin-height: 160px;\n\t\tborder-color: #aaaaaa;\n\t\tbox-shadow: 0 5px 30px -5px rgba(0, 0, 0, 0.25);\n\t\ttext-align: left;\n\t\t@include rtl();\n\n\t\t// title\n\t\t.title {\n\t\t\tmin-height: 15px;\n\t\t\tline-height: 15px;\n\n\t\t\t// icon\n\t\t\t.acf-icon {\n\t\t\t\tposition: absolute;\n\t\t\t\ttop: 10px;\n\t\t\t\tright: 10px;\n\n\t\t\t\t// rtl\n\t\t\t\thtml[dir=\"rtl\"] & {\n\t\t\t\t\tright: auto;\n\t\t\t\t\tleft: 10px;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t.inner {\n\t\t\tmin-height: 50px;\n\n\t\t\t// use margin instead of padding to allow inner elements marin to overlap and avoid large hitespace at top/bottom\n\t\t\tpadding: 0;\n\t\t\tmargin: 15px;\n\t\t}\n\n\t\t// loading\n\t\t.loading {\n\t\t\tposition: absolute;\n\t\t\ttop: 45px;\n\t\t\tleft: 0;\n\t\t\tright: 0;\n\t\t\tbottom: 0;\n\t\t\tz-index: 2;\n\t\t\tbackground: rgba(0, 0, 0, 0.1);\n\t\t\tdisplay: none;\n\n\t\t\ti {\n\t\t\t\t@include centered();\n\t\t\t}\n\t\t}\n\t}\n}\n\n// acf-submit\n.acf-submit {\n\tmargin-bottom: 0;\n\tline-height: 28px; // .button height\n\n\t// message\n\tspan {\n\t\tfloat: right;\n\t\tcolor: #999;\n\n\t\t&.-error {\n\t\t\tcolor: #dd4232;\n\t\t}\n\t}\n\n\t// button (allow margin between loading)\n\t.button {\n\t\tmargin-right: 5px;\n\t}\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tupgrade notice\n*\n*--------------------------------------------------------------------------------------------*/\n\n#acf-upgrade-notice {\n\tposition: relative;\n\tbackground: #fff;\n\tpadding: 20px;\n\t@include clearfix();\n\n\t.col-content {\n\t\tfloat: left;\n\t\twidth: 55%;\n\t\tpadding-left: 90px;\n\t}\n\n\t.notice-container {\n\t\tdisplay: flex;\n\t\tjustify-content: space-between;\n\t\talign-items: flex-start;\n\t\talign-content: flex-start;\n\t}\n\n\t.col-actions {\n\t\tfloat: right;\n\t\ttext-align: center;\n\t}\n\n\timg {\n\t\tfloat: left;\n\t\twidth: 64px;\n\t\theight: 64px;\n\t\tmargin: 0 0 0 -90px;\n\t}\n\n\th2 {\n\t\tdisplay: inline-block;\n\t\tfont-size: 16px;\n\t\tmargin: 2px 0 6.5px;\n\t}\n\n\tp {\n\t\tpadding: 0;\n\t\tmargin: 0;\n\t}\n\n\t.button:before {\n\t\tmargin-top: 11px;\n\t}\n\n\t// mobile\n\t@media screen and (max-width: $sm) {\n\t\t.col-content,\n\t\t.col-actions {\n\t\t\tfloat: none;\n\t\t\tpadding-left: 90px;\n\t\t\twidth: auto;\n\t\t\ttext-align: left;\n\t\t}\n\t}\n}\n\n// Hide icons for upgade notice.\n#acf-upgrade-notice:has(.notice-container)::before,\n#acf-upgrade-notice:has(.notice-container)::after {\n\tdisplay: none;\n}\n\n// Match padding of other non-icon notices.\n#acf-upgrade-notice:has(.notice-container) {\n\tpadding-left: 20px !important;\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tWelcome\n*\n*--------------------------------------------------------------------------------------------*/\n\n.acf-wrap {\n\th1 {\n\t\tmargin-top: 0;\n\t\tpadding-top: 20px;\n\t}\n\n\t.about-text {\n\t\tmargin-top: 0.5em;\n\t\tmin-height: 50px;\n\t}\n\n\t.about-headline-callout {\n\t\tfont-size: 2.4em;\n\t\tfont-weight: 300;\n\t\tline-height: 1.3;\n\t\tmargin: 1.1em 0 0.2em;\n\t\ttext-align: center;\n\t}\n\n\t.feature-section {\n\t\tpadding: 40px 0;\n\n\t\th2 {\n\t\t\tmargin-top: 20px;\n\t\t}\n\t}\n\n\t.changelog {\n\t\tlist-style: disc;\n\t\tpadding-left: 15px;\n\n\t\tli {\n\t\t\tmargin: 0 0 0.75em;\n\t\t}\n\t}\n\n\t.acf-three-col {\n\t\tdisplay: flex;\n\t\tflex-wrap: wrap;\n\t\tjustify-content: space-between;\n\n\t\t> div {\n\t\t\tflex: 1;\n\t\t\talign-self: flex-start;\n\t\t\tmin-width: 31%;\n\t\t\tmax-width: 31%;\n\n\t\t\t@media screen and (max-width: $md) {\n\t\t\t\tmin-width: 48%;\n\t\t\t}\n\n\t\t\t@media screen and (max-width: $sm) {\n\t\t\t\tmin-width: 100%;\n\t\t\t}\n\t\t}\n\n\t\th3 .badge {\n\t\t\tdisplay: inline-block;\n\t\t\tvertical-align: top;\n\t\t\tborder-radius: 5px;\n\t\t\tbackground: #fc9700;\n\t\t\tcolor: #fff;\n\t\t\tfont-weight: normal;\n\t\t\tfont-size: 12px;\n\t\t\tpadding: 2px 5px;\n\t\t}\n\n\t\timg + h3 {\n\t\t\tmargin-top: 0.5em;\n\t\t}\n\t}\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tacf-hl cols\n*\n*--------------------------------------------------------------------------------------------*/\n\n.acf-hl[data-cols] {\n\tmargin-left: -10px;\n\tmargin-right: -10px;\n\n\t> li {\n\t\tpadding: 0 6px 0 10px;\n\n\t\t-webkit-box-sizing: border-box;\n\t\t-moz-box-sizing: border-box;\n\t\tbox-sizing: border-box;\n\t}\n}\n\n/* sizes */\n.acf-hl[data-cols=\"2\"] > li {\n\twidth: 50%;\n}\n.acf-hl[data-cols=\"3\"] > li {\n\twidth: 33.333%;\n}\n.acf-hl[data-cols=\"4\"] > li {\n\twidth: 25%;\n}\n\n/* mobile */\n@media screen and (max-width: $sm) {\n\t.acf-hl[data-cols] {\n\t\tflex-wrap: wrap;\n\t\tjustify-content: flex-start;\n\t\talign-content: flex-start;\n\t\talign-items: flex-start;\n\t\tmargin-left: 0;\n\t\tmargin-right: 0;\n\t\tmargin-top: -10px;\n\n\t\t> li {\n\t\t\tflex: 1 1 100%;\n\t\t\twidth: 100% !important;\n\t\t\tpadding: 10px 0 0;\n\t\t}\n\t}\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tmisc\n*\n*--------------------------------------------------------------------------------------------*/\n\n.acf-actions {\n\ttext-align: right;\n\tz-index: 1;\n\n\t/* hover */\n\t&.-hover {\n\t\tposition: absolute;\n\t\tdisplay: none;\n\t\ttop: 0;\n\t\tright: 0;\n\t\tpadding: 5px;\n\t\tz-index: 1050;\n\t}\n\n\t/* rtl */\n\thtml[dir=\"rtl\"] & {\n\t\t&.-hover {\n\t\t\tright: auto;\n\t\t\tleft: 0;\n\t\t}\n\t}\n}\n\n/* ul compatibility */\nul.acf-actions {\n\tli {\n\t\tfloat: right;\n\t\tmargin-left: 4px;\n\t}\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tRTL\n*\n*--------------------------------------------------------------------------------------------*/\n\nhtml[dir=\"rtl\"] .acf-fl {\n\tfloat: right;\n}\nhtml[dir=\"rtl\"] .acf-fr {\n\tfloat: left;\n}\n\nhtml[dir=\"rtl\"] .acf-hl > li {\n\tfloat: right;\n}\n\nhtml[dir=\"rtl\"] .acf-hl > li.acf-fr {\n\tfloat: left;\n}\n\nhtml[dir=\"rtl\"] .acf-icon.logo {\n\tleft: 0;\n\tright: auto;\n}\n\nhtml[dir=\"rtl\"] .acf-table thead th {\n\ttext-align: right;\n\tborder-right-width: 1px;\n\tborder-left-width: 0px;\n}\n\nhtml[dir=\"rtl\"] .acf-table > tbody > tr > td {\n\ttext-align: right;\n\tborder-right-width: 1px;\n\tborder-left-width: 0px;\n}\n\nhtml[dir=\"rtl\"] .acf-table > thead > tr > th:first-child,\nhtml[dir=\"rtl\"] .acf-table > tbody > tr > td:first-child {\n\tborder-right-width: 0;\n}\n\nhtml[dir=\"rtl\"] .acf-table > tbody > tr > td.order + td {\n\tborder-right-color: #e1e1e1;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* acf-postbox-columns\n*\n*---------------------------------------------------------------------------------------------*/\n\n.acf-postbox-columns {\n\t@include clearfix();\n\tposition: relative;\n\tmargin-top: -11px;\n\tmargin-bottom: -12px;\n\tmargin-left: -12px;\n\tmargin-right: (280px - 12px);\n\n\t.acf-postbox-main,\n\t.acf-postbox-side {\n\t\t@include border-box();\n\t\tpadding: 0 12px 12px;\n\t}\n\n\t.acf-postbox-main {\n\t\tfloat: left;\n\t\twidth: 100%;\n\t}\n\n\t.acf-postbox-side {\n\t\tfloat: right;\n\t\twidth: 280px;\n\t\tmargin-right: -280px;\n\n\t\t&:before {\n\t\t\tcontent: \"\";\n\t\t\tdisplay: block;\n\t\t\tposition: absolute;\n\t\t\twidth: 1px;\n\t\t\theight: 100%;\n\t\t\ttop: 0;\n\t\t\tright: 0;\n\t\t\tbackground: $wp-card-border-1;\n\t\t}\n\t}\n\n\t// WP Admin 3.8\n\t@include wp-admin(\"3-8\") {\n\t\t.acf-postbox-side:before {\n\t\t\tbackground: $wp38-card-border-1;\n\t\t}\n\t}\n}\n\n/* mobile */\n@media only screen and (max-width: 850px) {\n\t.acf-postbox-columns {\n\t\tmargin: 0;\n\n\t\t.acf-postbox-main,\n\t\t.acf-postbox-side {\n\t\t\tfloat: none;\n\t\t\twidth: auto;\n\t\t\tmargin: 0;\n\t\t\tpadding: 0;\n\t\t}\n\n\t\t.acf-postbox-side {\n\t\t\tmargin-top: 1em;\n\n\t\t\t&:before {\n\t\t\t\tdisplay: none;\n\t\t\t}\n\t\t}\n\t}\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* acf-panel\n*\n*---------------------------------------------------------------------------------------------*/\n\n.acf-panel {\n\tmargin-top: -1px;\n\tborder-top: 1px solid $wp-card-border-1;\n\tborder-bottom: 1px solid $wp-card-border-1;\n\n\t.acf-panel-title {\n\t\tmargin: 0;\n\t\tpadding: 12px;\n\t\tfont-weight: bold;\n\t\tcursor: pointer;\n\t\tfont-size: inherit;\n\n\t\ti {\n\t\t\tfloat: right;\n\t\t}\n\t}\n\n\t.acf-panel-inside {\n\t\tmargin: 0;\n\t\tpadding: 0 12px 12px;\n\t\tdisplay: none;\n\t}\n\n\t/* open */\n\t&.-open {\n\t\t.acf-panel-inside {\n\t\t\tdisplay: block;\n\t\t}\n\t}\n\n\t/* inside postbox */\n\t.postbox & {\n\t\tmargin-left: -12px;\n\t\tmargin-right: -12px;\n\t}\n\n\t/* fields */\n\t.acf-field {\n\t\tmargin: 20px 0 0;\n\n\t\t.acf-label label {\n\t\t\tcolor: #555d66;\n\t\t\tfont-weight: normal;\n\t\t}\n\n\t\t&:first-child {\n\t\t\tmargin-top: 0;\n\t\t}\n\t}\n\n\t// WP Admin 3.8\n\t@include wp-admin(\"3-8\") {\n\t\tborder-color: $wp38-card-border-1;\n\t}\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Admin Tools\n*\n*---------------------------------------------------------------------------------------------*/\n\n#acf-admin-tools {\n\t.notice {\n\t\tmargin-top: 10px;\n\t}\n\n\t.acf-meta-box-wrap {\n\t\t.inside {\n\t\t\tborder-top: none;\n\t\t}\n\n\t\t/* acf-fields */\n\t\t.acf-fields {\n\t\t\tmargin: {\n\t\t\t\tbottom: 24px;\n\t\t\t}\n\t\t\tborder: none;\n\t\t\tbackground: #fff;\n\t\t\tborder-radius: 0;\n\n\t\t\t.acf-field {\n\t\t\t\tpadding: 0;\n\t\t\t\tmargin-bottom: 19px;\n\t\t\t\tborder-top: none;\n\t\t\t}\n\n\t\t\t.acf-label {\n\t\t\t\t@extend .p2;\n\t\t\t\tmargin: {\n\t\t\t\t\tbottom: 16px;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t.acf-input {\n\t\t\t\tpadding: {\n\t\t\t\t\ttop: 16px;\n\t\t\t\t\tright: 16px;\n\t\t\t\t\tbottom: 16px;\n\t\t\t\t\tleft: 16px;\n\t\t\t\t}\n\t\t\t\tborder: {\n\t\t\t\t\twidth: 1px;\n\t\t\t\t\tstyle: solid;\n\t\t\t\t\tcolor: $gray-300;\n\t\t\t\t}\n\t\t\t\tborder-radius: $radius-md;\n\t\t\t}\n\n\t\t\t&.import-cptui {\n\t\t\t\tmargin-top: 19px;\n\t\t\t}\n\t\t}\n\t}\n}\n\n.acf-meta-box-wrap {\n\t.postbox {\n\t\t@include border-box();\n\n\t\t.inside {\n\t\t\tmargin-bottom: 0;\n\t\t}\n\n\t\t.hndle {\n\t\t\tfont-size: 14px;\n\t\t\tpadding: 8px 12px;\n\t\t\tmargin: 0;\n\t\t\tline-height: 1.4;\n\n\t\t\t// Prevent .acf-panel border overlapping.\n\t\t\tposition: relative;\n\t\t\tz-index: 1;\n\t\t\tcursor: default;\n\t\t}\n\n\t\t.handlediv,\n\t\t.handle-order-higher,\n\t\t.handle-order-lower {\n\t\t\tdisplay: none;\n\t\t}\n\t}\n}\n\n/* grid */\n.acf-meta-box-wrap.-grid {\n\tmargin-left: 8px;\n\tmargin-right: 8px;\n\n\t.postbox {\n\t\tfloat: left;\n\t\tclear: left;\n\t\twidth: 50%;\n\t\tmargin: 0 0 16px;\n\n\t\t&:nth-child(odd) {\n\t\t\tmargin-left: -8px;\n\t\t}\n\n\t\t&:nth-child(even) {\n\t\t\tfloat: right;\n\t\t\tclear: right;\n\t\t\tmargin-right: -8px;\n\t\t}\n\t}\n}\n\n/* mobile */\n@media only screen and (max-width: 850px) {\n\t.acf-meta-box-wrap.-grid {\n\t\tmargin-left: 0;\n\t\tmargin-right: 0;\n\n\t\t.postbox {\n\t\t\tmargin-left: 0 !important;\n\t\t\tmargin-right: 0 !important;\n\t\t\twidth: 100%;\n\t\t}\n\t}\n}\n\n/* export tool */\n#acf-admin-tool-export {\n\tp {\n\t\tmax-width: 800px;\n\t}\n\n\tul {\n\t\tdisplay: flex;\n\t\tflex-wrap: wrap;\n\t\twidth: 100%;\n\t\tli {\n\t\t\tflex: 0 1 33.33%;\n\t\t\t@media screen and (max-width: 1600px) {\n\t\t\t\tflex: 0 1 50%;\n\t\t\t}\n\t\t\t@media screen and (max-width: 1200px) {\n\t\t\t\tflex: 0 1 100%;\n\t\t\t}\n\t\t}\n\t}\n\n\t.acf-postbox-side {\n\t\tul {\n\t\t\tdisplay: block;\n\t\t}\n\n\t\t.button {\n\t\t\tmargin: 0;\n\t\t\twidth: 100%;\n\t\t}\n\t}\n\n\ttextarea {\n\t\tdisplay: block;\n\t\twidth: 100%;\n\t\tmin-height: 500px;\n\t\tbackground: $gray-50;\n\t\tborder-color: $gray-300;\n\t\tbox-shadow: none;\n\t\tpadding: 7px;\n\t\tborder-radius: $radius-md;\n\t}\n\n\t/* panel: selection */\n\t.acf-panel-selection {\n\t\t.acf-label label {\n\t\t\tfont-weight: bold;\n\t\t\tcolor: $gray-700;\n\t\t}\n\t}\n}\n\n#acf-admin-tool-import {\n\tul {\n\t\tcolumn-width: 200px;\n\t}\n}\n\n// CSS only Tooltip.\n.acf-css-tooltip {\n\tposition: relative;\n\t&:before {\n\t\tcontent: attr(aria-label);\n\t\tdisplay: none;\n\t\tposition: absolute;\n\t\tz-index: 999;\n\n\t\tbottom: 100%;\n\t\tleft: 50%;\n\t\ttransform: translate(-50%, -8px);\n\n\t\tbackground: #191e23;\n\t\tborder-radius: 2px;\n\t\tpadding: 5px 10px;\n\n\t\tcolor: #fff;\n\t\tfont-size: 12px;\n\t\tline-height: 1.4em;\n\t\twhite-space: pre;\n\t}\n\t&:after {\n\t\tcontent: \"\";\n\t\tdisplay: none;\n\t\tposition: absolute;\n\t\tz-index: 998;\n\n\t\tbottom: 100%;\n\t\tleft: 50%;\n\t\ttransform: translate(-50%, 4px);\n\n\t\tborder: solid 6px transparent;\n\t\tborder-top-color: #191e23;\n\t}\n\n\t&:hover,\n\t&:focus {\n\t\t&:before,\n\t\t&:after {\n\t\t\tdisplay: block;\n\t\t}\n\t}\n}\n\n// Diff modal.\n.acf-diff {\n\t.acf-diff-title {\n\t\tposition: absolute;\n\t\ttop: 0;\n\t\tleft: 0;\n\t\tright: 0;\n\t\theight: 40px;\n\t\tpadding: 14px 16px;\n\t\tbackground: #f3f3f3;\n\t\tborder-bottom: #dddddd solid 1px;\n\n\t\tstrong {\n\t\t\tfont-size: 14px;\n\t\t\tdisplay: block;\n\t\t}\n\n\t\t.acf-diff-title-left,\n\t\t.acf-diff-title-right {\n\t\t\twidth: 50%;\n\t\t\tfloat: left;\n\t\t}\n\t}\n\n\t.acf-diff-content {\n\t\tposition: absolute;\n\t\ttop: 70px;\n\t\tleft: 0;\n\t\tright: 0;\n\t\tbottom: 0;\n\t\toverflow: auto;\n\t}\n\n\ttable.diff {\n\t\tborder-spacing: 0;\n\n\t\tcol.diffsplit.middle {\n\t\t\twidth: 0;\n\t\t}\n\n\t\ttd,\n\t\tth {\n\t\t\tpadding-top: 0.25em;\n\t\t\tpadding-bottom: 0.25em;\n\t\t}\n\n\t\t// Fix WP 5.7 conflicting CSS.\n\t\ttr td:nth-child(2) {\n\t\t\twidth: auto;\n\t\t}\n\n\t\ttd:nth-child(3) {\n\t\t\tborder-left: #dddddd solid 1px;\n\t\t}\n\t}\n\n\t// Mobile\n\t@media screen and (max-width: 600px) {\n\t\t.acf-diff-title {\n\t\t\theight: 70px;\n\t\t}\n\t\t.acf-diff-content {\n\t\t\ttop: 100px;\n\t\t}\n\t}\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Modal\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-modal {\n\tposition: fixed;\n\ttop: 30px;\n\tleft: 30px;\n\tright: 30px;\n\tbottom: 30px;\n\tz-index: 160000;\n\tbox-shadow: 0 5px 15px rgba(0, 0, 0, 0.7);\n\tbackground: #fcfcfc;\n\n\t.acf-modal-title,\n\t.acf-modal-content,\n\t.acf-modal-toolbar {\n\t\tbox-sizing: border-box;\n\t\tposition: absolute;\n\t\tleft: 0;\n\t\tright: 0;\n\t}\n\n\t.acf-modal-title {\n\t\theight: 50px;\n\t\ttop: 0;\n\t\tborder-bottom: 1px solid #ddd;\n\n\t\th2 {\n\t\t\tmargin: 0;\n\t\t\tpadding: 0 16px;\n\t\t\tline-height: 50px;\n\t\t}\n\t\t.acf-modal-close {\n\t\t\tposition: absolute;\n\t\t\ttop: 0;\n\t\t\tright: 0;\n\t\t\theight: 50px;\n\t\t\twidth: 50px;\n\t\t\tborder: none;\n\t\t\tborder-left: 1px solid #ddd;\n\t\t\tbackground: transparent;\n\t\t\tcursor: pointer;\n\t\t\tcolor: #666;\n\t\t\t&:hover {\n\t\t\t\tcolor: #00a0d2;\n\t\t\t}\n\t\t}\n\t}\n\n\t.acf-modal-content {\n\t\ttop: 50px;\n\t\tbottom: 60px;\n\t\tbackground: #fff;\n\t\toverflow: auto;\n\t\tpadding: 16px;\n\t}\n\n\t.acf-modal-feedback {\n\t\tposition: absolute;\n\t\ttop: 50%;\n\t\tmargin: -10px 0;\n\t\tleft: 0;\n\t\tright: 0;\n\t\ttext-align: center;\n\t\topacity: 0.75;\n\n\t\t&.error {\n\t\t\topacity: 1;\n\t\t\tcolor: #b52727;\n\t\t}\n\t}\n\n\t.acf-modal-toolbar {\n\t\theight: 60px;\n\t\tbottom: 0;\n\t\tpadding: 15px 16px;\n\t\tborder-top: 1px solid #ddd;\n\n\t\t.button {\n\t\t\tfloat: right;\n\t\t}\n\t}\n\n\t// Responsive.\n\t@media only screen and (max-width: 640px) {\n\t\ttop: 0;\n\t\tleft: 0;\n\t\tright: 0;\n\t\tbottom: 0;\n\t}\n}\n.acf-modal-backdrop {\n\tposition: fixed;\n\ttop: 0;\n\tleft: 0;\n\tright: 0;\n\tbottom: 0;\n\tbackground: $gray-900;\n\topacity: 0.8;\n\tz-index: 159900;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Retina\n*\n*---------------------------------------------------------------------------------------------*/\n\n@media only screen and (-webkit-min-device-pixel-ratio: 2),\n\tonly screen and (min--moz-device-pixel-ratio: 2),\n\tonly screen and (-o-min-device-pixel-ratio: 2/1),\n\tonly screen and (min-device-pixel-ratio: 2),\n\tonly screen and (min-resolution: 192dpi),\n\tonly screen and (min-resolution: 2dppx) {\n\t.acf-loading,\n\t.acf-spinner {\n\t\tbackground-image: url(../../images/spinner@2x.gif);\n\t\tbackground-size: 20px 20px;\n\t}\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n* Wrap\n*\n*--------------------------------------------------------------------------------------------*/\n\n.acf-admin-page {\n\t.wrap {\n\t\tmargin: {\n\t\t\ttop: 48px;\n\t\t\tright: 32px;\n\t\t\tbottom: 0;\n\t\t\tleft: 12px;\n\t\t}\n\n\t\t@media screen and (max-width: 768px) {\n\t\t\tmargin: {\n\t\t\t\tright: 8px;\n\t\t\t\tleft: 8px;\n\t\t\t}\n\t\t}\n\t}\n\n\t&.rtl .wrap {\n\t\tmargin: {\n\t\t\tright: 12px;\n\t\t\tleft: 32px;\n\t\t}\n\n\t\t@media screen and (max-width: 768px) {\n\t\t\tmargin: {\n\t\t\t\tright: 8px;\n\t\t\t\tleft: 8px;\n\t\t\t}\n\t\t}\n\t}\n\n\t#wpcontent {\n\t\t@media screen and (max-width: 768px) {\n\t\t\tpadding: {\n\t\t\t\tleft: 0;\n\t\t\t}\n\t\t}\n\t}\n}\n\n/*-------------------------------------------------------------------\n*\n* ACF Admin Page Footer Styles\n*\n*------------------------------------------------------------------*/\n.acf-admin-page {\n\t#wpfooter {\n\t\tfont-style: italic;\n\t}\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Admin Postbox & ACF Postbox\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-admin-page {\n\t.postbox,\n\t.acf-box {\n\t\tborder: none;\n\t\tborder-radius: $radius-lg;\n\t\tbox-shadow: $elevation-01;\n\n\t\t.inside {\n\t\t\tpadding: {\n\t\t\t\ttop: 24px;\n\t\t\t\tright: 24px;\n\t\t\t\tbottom: 24px;\n\t\t\t\tleft: 24px;\n\t\t\t}\n\t\t}\n\n\t\t.acf-postbox-inner {\n\t\t\tmargin: {\n\t\t\t\ttop: 0;\n\t\t\t\tright: 0;\n\t\t\t\tbottom: 0;\n\t\t\t\tleft: 0;\n\t\t\t}\n\t\t\tpadding: {\n\t\t\t\ttop: 24px;\n\t\t\t\tright: 0;\n\t\t\t\tbottom: 0;\n\t\t\t\tleft: 0;\n\t\t\t}\n\t\t}\n\n\t\t.inner,\n\t\t.inside {\n\t\t\tmargin: {\n\t\t\t\ttop: 0 !important;\n\t\t\t\tright: 0 !important;\n\t\t\t\tbottom: 0 !important;\n\t\t\t\tleft: 0 !important;\n\t\t\t}\n\t\t\tborder-top: {\n\t\t\t\twidth: 1px;\n\t\t\t\tstyle: solid;\n\t\t\t\tcolor: $gray-200;\n\t\t\t}\n\t\t}\n\n\t\t.postbox-header,\n\t\t.title {\n\t\t\tdisplay: flex;\n\t\t\talign-items: center;\n\t\t\tbox-sizing: border-box;\n\t\t\tmin-height: 64px;\n\t\t\tmargin: {\n\t\t\t\ttop: 0;\n\t\t\t\tright: 0;\n\t\t\t\tbottom: 0;\n\t\t\t\tleft: 0;\n\t\t\t}\n\t\t\tpadding: {\n\t\t\t\ttop: 0;\n\t\t\t\tright: 24px;\n\t\t\t\tbottom: 0;\n\t\t\t\tleft: 24px;\n\t\t\t}\n\t\t\tborder-bottom: {\n\t\t\t\twidth: 0;\n\t\t\t\tstyle: none;\n\t\t\t}\n\n\t\t\th2,\n\t\t\th3 {\n\t\t\t\tmargin: {\n\t\t\t\t\ttop: 0;\n\t\t\t\t\tright: 0;\n\t\t\t\t\tbottom: 0;\n\t\t\t\t\tleft: 0;\n\t\t\t\t}\n\t\t\t\tpadding: {\n\t\t\t\t\ttop: 0;\n\t\t\t\t\tright: 0;\n\t\t\t\t\tbottom: 0;\n\t\t\t\t\tleft: 0;\n\t\t\t\t}\n\t\t\t\t@extend .acf-h3;\n\t\t\t\tcolor: $gray-700;\n\t\t\t}\n\t\t}\n\n\t\t.hndle {\n\t\t\tpadding: {\n\t\t\t\ttop: 0;\n\t\t\t\tright: 24px;\n\t\t\t\tbottom: 0;\n\t\t\t\tleft: 24px;\n\t\t\t}\n\t\t}\n\t}\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Custom ACF postbox header\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-postbox-header {\n\tdisplay: flex;\n\talign-items: center;\n\tjustify-content: space-between;\n\tbox-sizing: border-box;\n\tmin-height: 64px;\n\tmargin: {\n\t\ttop: -24px;\n\t\tright: -24px;\n\t\tbottom: 0;\n\t\tleft: -24px;\n\t}\n\tpadding: {\n\t\ttop: 0;\n\t\tright: 24px;\n\t\tbottom: 0;\n\t\tleft: 24px;\n\t}\n\tborder-bottom: {\n\t\twidth: 1px;\n\t\tstyle: solid;\n\t\tcolor: $gray-200;\n\t}\n\n\th2.acf-postbox-title {\n\t\tmargin: {\n\t\t\ttop: 0;\n\t\t\tright: 0;\n\t\t\tbottom: 0;\n\t\t\tleft: 0;\n\t\t}\n\t\tpadding: {\n\t\t\ttop: 0;\n\t\t\tright: 24px;\n\t\t\tbottom: 0;\n\t\t\tleft: 0;\n\t\t}\n\t\t@extend .acf-h3;\n\t\tcolor: $gray-700;\n\t}\n\n\t.rtl & h2.acf-postbox-title {\n\t\tpadding: {\n\t\t\tright: 0;\n\t\t\tleft: 24px;\n\t\t}\n\t}\n\n\t.acf-icon {\n\t\tbackground-color: $gray-400;\n\t}\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Screen options button & screen meta container\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-admin-page {\n\t#screen-meta-links {\n\t\tmargin: {\n\t\t\tright: 32px;\n\t\t}\n\n\t\t.show-settings {\n\t\t\tborder-color: $gray-300;\n\t\t}\n\n\t\t@media screen and (max-width: 768px) {\n\t\t\tmargin: {\n\t\t\t\tright: 16px;\n\t\t\t\tbottom: 0;\n\t\t\t}\n\t\t}\n\t}\n\n\t&.rtl #screen-meta-links {\n\t\tmargin: {\n\t\t\tright: 0;\n\t\t\tleft: 32px;\n\t\t}\n\n\t\t@media screen and (max-width: 768px) {\n\t\t\tmargin: {\n\t\t\t\tright: 0;\n\t\t\t\tleft: 16px;\n\t\t\t}\n\t\t}\n\t}\n\n\t#screen-meta {\n\t\tborder-color: $gray-300;\n\t}\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Postbox headings\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-admin-page {\n\t#poststuff {\n\t\t.postbox-header {\n\t\t\th2,\n\t\t\th3 {\n\t\t\t\tjustify-content: flex-start;\n\t\t\t\tmargin: {\n\t\t\t\t\ttop: 0;\n\t\t\t\t\tright: 0;\n\t\t\t\t\tbottom: 0;\n\t\t\t\t\tleft: 0;\n\t\t\t\t}\n\t\t\t\tpadding: {\n\t\t\t\t\ttop: 0;\n\t\t\t\t\tright: 0;\n\t\t\t\t\tbottom: 0;\n\t\t\t\t\tleft: 0;\n\t\t\t\t}\n\t\t\t\t@extend .acf-h3;\n\t\t\t\tcolor: $gray-700 !important;\n\t\t\t}\n\t\t}\n\t}\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Postbox drag state\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-admin-page {\n\t&.is-dragging-metaboxes\n\t\t.metabox-holder\n\t\t.postbox-container\n\t\t.meta-box-sortables {\n\t\tbox-sizing: border-box;\n\t\tpadding: 2px;\n\t\toutline: none;\n\t\tbackground-image: repeating-linear-gradient(\n\t\t\t\t0deg,\n\t\t\t\t$gray-500,\n\t\t\t\t$gray-500 5px,\n\t\t\t\ttransparent 5px,\n\t\t\t\ttransparent 10px,\n\t\t\t\t$gray-500 10px\n\t\t\t),\n\t\t\trepeating-linear-gradient(\n\t\t\t\t90deg,\n\t\t\t\t$gray-500,\n\t\t\t\t$gray-500 5px,\n\t\t\t\ttransparent 5px,\n\t\t\t\ttransparent 10px,\n\t\t\t\t$gray-500 10px\n\t\t\t),\n\t\t\trepeating-linear-gradient(\n\t\t\t\t180deg,\n\t\t\t\t$gray-500,\n\t\t\t\t$gray-500 5px,\n\t\t\t\ttransparent 5px,\n\t\t\t\ttransparent 10px,\n\t\t\t\t$gray-500 10px\n\t\t\t),\n\t\t\trepeating-linear-gradient(\n\t\t\t\t270deg,\n\t\t\t\t$gray-500,\n\t\t\t\t$gray-500 5px,\n\t\t\t\ttransparent 5px,\n\t\t\t\ttransparent 10px,\n\t\t\t\t$gray-500 10px\n\t\t\t);\n\t\tbackground-size: 1.5px 100%, 100% 1.5px, 1.5px 100%, 100% 1.5px;\n\t\tbackground-position: 0 0, 0 0, 100% 0, 0 100%;\n\t\tbackground-repeat: no-repeat;\n\t\tborder-radius: $radius-lg;\n\t}\n\n\t.ui-sortable-placeholder {\n\t\tborder: none;\n\t}\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n* Search summary\n*\n*--------------------------------------------------------------------------------------------*/\n.acf-admin-page {\n\t.subtitle {\n\t\tdisplay: inline-flex;\n\t\talign-items: center;\n\t\theight: 24px;\n\t\tmargin: 0;\n\t\tpadding: {\n\t\t\ttop: 4px;\n\t\t\tright: 12px;\n\t\t\tbottom: 4px;\n\t\t\tleft: 12px;\n\t\t}\n\t\tbackground-color: $blue-50;\n\t\tborder: {\n\t\t\twidth: 1px;\n\t\t\tstyle: solid;\n\t\t\tcolor: $blue-200;\n\t\t}\n\t\tborder-radius: $radius-md;\n\t\t@extend .p3;\n\n\t\tstrong {\n\t\t\tmargin: {\n\t\t\t\tleft: 5px;\n\t\t\t}\n\t\t}\n\t}\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n* Action strip\n*\n*--------------------------------------------------------------------------------------------*/\n.acf-actions-strip {\n\tdisplay: flex;\n\n\t.acf-btn {\n\t\tmargin: {\n\t\t\tright: 8px;\n\t\t}\n\t}\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n* Notices\n*\n*--------------------------------------------------------------------------------------------*/\n.acf-admin-page {\n\t.acf-notice,\n\t.notice,\n\t#lost-connection-notice {\n\t\tposition: relative;\n\t\tbox-sizing: border-box;\n\t\tmin-height: 48px;\n\t\tmargin: {\n\t\t\ttop: 0 !important;\n\t\t\tright: 0 !important;\n\t\t\tbottom: 16px !important;\n\t\t\tleft: 0 !important;\n\t\t}\n\t\tpadding: {\n\t\t\ttop: 13px !important;\n\t\t\tright: 16px;\n\t\t\tbottom: 12px !important;\n\t\t\tleft: 50px !important;\n\t\t}\n\t\tbackground-color: #e7eff9;\n\t\tborder: {\n\t\t\twidth: 1px;\n\t\t\tstyle: solid;\n\t\t\tcolor: #9dbaee;\n\t\t}\n\t\tborder-radius: $radius-lg;\n\t\tbox-shadow: $elevation-01;\n\t\tcolor: $gray-700;\n\n\t\t&.update-nag {\n\t\t\tdisplay: block;\n\t\t\tposition: relative;\n\t\t\twidth: calc(100% - 44px);\n\t\t\tmargin: {\n\t\t\t\ttop: 48px !important;\n\t\t\t\tright: 44px !important;\n\t\t\t\tbottom: -32px !important;\n\t\t\t\tleft: 12px !important;\n\t\t\t}\n\t\t}\n\n\t\t.button {\n\t\t\theight: auto;\n\t\t\tmargin: {\n\t\t\t\tleft: 8px;\n\t\t\t}\n\t\t\tpadding: 0;\n\t\t\tborder: none;\n\t\t\t@extend .p5;\n\t\t}\n\n\t\t> div {\n\t\t\tmargin: {\n\t\t\t\ttop: 0;\n\t\t\t\tbottom: 0;\n\t\t\t}\n\t\t}\n\n\t\tp {\n\t\t\tflex: 1 0 auto;\n\t\t\tmax-width: 100%;\n\t\t\tline-height: 18px;\n\t\t\tmargin: 0;\n\t\t\tpadding: 0;\n\n\t\t\t&.help {\n\t\t\t\tmargin: {\n\t\t\t\t\ttop: 0;\n\t\t\t\t}\n\t\t\t\tpadding: {\n\t\t\t\t\ttop: 0;\n\t\t\t\t}\n\t\t\t\t@extend .p7;\n\t\t\t\tcolor: rgba($gray-700, 0.7);\n\t\t\t}\n\t\t}\n\n\t\t// Dismiss button\n\t\t.acf-notice-dismiss,\n\t\t.notice-dismiss {\n\t\t\tposition: absolute;\n\t\t\ttop: 4px;\n\t\t\tright: 8px;\n\t\t\tpadding: 9px;\n\t\t\tborder: none;\n\n\t\t\t&:before {\n\t\t\t\tcontent: \"\";\n\t\t\t\t$icon-size: 20px;\n\t\t\t\tdisplay: block;\n\t\t\t\tposition: relative;\n\t\t\t\tz-index: 600;\n\t\t\t\twidth: $icon-size;\n\t\t\t\theight: $icon-size;\n\t\t\t\tbackground-color: $gray-500;\n\t\t\t\tborder: none;\n\t\t\t\tborder-radius: 0;\n\t\t\t\t-webkit-mask-size: contain;\n\t\t\t\tmask-size: contain;\n\t\t\t\t-webkit-mask-repeat: no-repeat;\n\t\t\t\tmask-repeat: no-repeat;\n\t\t\t\t-webkit-mask-position: center;\n\t\t\t\tmask-position: center;\n\t\t\t\t-webkit-mask-image: url(\"../../images/icons/icon-close.svg\");\n\t\t\t\tmask-image: url(\"../../images/icons/icon-close.svg\");\n\t\t\t}\n\n\t\t\t&:hover::before {\n\t\t\t\tbackground-color: $gray-700;\n\t\t\t}\n\t\t}\n\n\t\ta.acf-notice-dismiss {\n\t\t\tposition: absolute;\n\t\t\ttop: 5px;\n\t\t\tright: 24px;\n\n\t\t\t&:before {\n\t\t\t\tbackground-color: $gray-600;\n\t\t\t}\n\t\t}\n\n\t\t// Icon base styling\n\t\t&:before {\n\t\t\tcontent: \"\";\n\t\t\t$icon-size: 16px;\n\t\t\tdisplay: block;\n\t\t\tposition: absolute;\n\t\t\ttop: 15px;\n\t\t\tleft: 18px;\n\t\t\tz-index: 600;\n\t\t\twidth: $icon-size;\n\t\t\theight: $icon-size;\n\t\t\tmargin: {\n\t\t\t\tright: 8px;\n\t\t\t}\n\t\t\tbackground-color: #fff;\n\t\t\tborder: none;\n\t\t\tborder-radius: 0;\n\t\t\t-webkit-mask-size: contain;\n\t\t\tmask-size: contain;\n\t\t\t-webkit-mask-repeat: no-repeat;\n\t\t\tmask-repeat: no-repeat;\n\t\t\t-webkit-mask-position: center;\n\t\t\tmask-position: center;\n\t\t\t-webkit-mask-image: url(\"../../images/icons/icon-info-solid.svg\");\n\t\t\tmask-image: url(\"../../images/icons/icon-info-solid.svg\");\n\t\t}\n\n\t\t&:after {\n\t\t\tcontent: \"\";\n\t\t\tdisplay: block;\n\t\t\tposition: absolute;\n\t\t\ttop: 9px;\n\t\t\tleft: 12px;\n\t\t\tz-index: 500;\n\t\t\twidth: 28px;\n\t\t\theight: 28px;\n\t\t\tbackground-color: $color-info;\n\t\t\tborder-radius: $radius-md;\n\t\t\tbox-shadow: $elevation-01;\n\t\t}\n\n\t\t.local-restore {\n\t\t\talign-items: center;\n\t\t\tmargin: {\n\t\t\t\ttop: -6px;\n\t\t\t\tbottom: 0;\n\t\t\t}\n\t\t}\n\t}\n\n\t// Persisted notices should be hidden by default as they will be shown by JS if required.\n\t.notice[data-persisted=\"true\"] {\n\t\tdisplay: none;\n\t}\n\n\t.notice.is-dismissible {\n\t\tpadding: {\n\t\t\tright: 56px;\n\t\t}\n\t}\n\n\t// Success notice\n\t.notice.notice-success {\n\t\tbackground-color: #edf7ef;\n\t\tborder-color: #b6deb9;\n\n\t\t&:before {\n\t\t\t-webkit-mask-image: url(\"../../images/icons/icon-check-circle-solid.svg\");\n\t\t\tmask-image: url(\"../../images/icons/icon-check-circle-solid.svg\");\n\t\t}\n\n\t\t&:after {\n\t\t\tbackground-color: $color-success;\n\t\t}\n\t}\n\n\t// Error notice\n\t.acf-notice.acf-error-message,\n\t.notice.notice-error,\n\t#lost-connection-notice {\n\t\tbackground-color: #f7eeeb;\n\t\tborder-color: #f1b6b3;\n\n\t\t&:before {\n\t\t\t-webkit-mask-image: url(\"../../images/icons/icon-warning.svg\");\n\t\t\tmask-image: url(\"../../images/icons/icon-warning.svg\");\n\t\t}\n\n\t\t&:after {\n\t\t\tbackground-color: $color-danger;\n\t\t}\n\t}\n\t\n\t.notice.notice-warning {\n\t\t&:before {\n\t\t\t-webkit-mask-image: url(\"../../images/icons/icon-alert-triangle.svg\");\n\t\t\tmask-image: url(\"../../images/icons/icon-alert-triangle.svg\");\n\t\t\tbackground: #f56e28;\n\t\t}\n\n\t\t&:after {\n\t\t\tcontent: none;\n\t\t}\n\n\t\tbackground: linear-gradient(0deg, rgba(247, 144, 9, 0.08), rgba(247, 144, 9, 0.08)), #FFFFFF;\n\t\tborder: 1px solid rgba(247, 144, 9, 0.32);\n\t\tcolor: $gray-700;\n\t}\n}\n\n.acf-admin-single-taxonomy,\n.acf-admin-single-post-type,\n.acf-admin-single-options-page {\n\t.notice-success {\n\t\t.acf-item-saved-text {\n\t\t\tfont-weight: 600;\n\t\t}\n\n\t\t.acf-item-saved-links {\n\t\t\tdisplay: flex;\n\t\t\tgap: 12px;\n\n\t\t\ta {\n\t\t\t\ttext-decoration: none;\n\t\t\t\topacity: 1;\n\n\t\t\t\t&:after {\n\t\t\t\t\tcontent: \"\";\n\t\t\t\t\twidth: 1px;\n\t\t\t\t\theight: 13px;\n\t\t\t\t\tdisplay: inline-flex;\n\t\t\t\t\tposition: relative;\n\t\t\t\t\ttop: 2px;\n\t\t\t\t\tleft: 6px;\n\t\t\t\t\tbackground-color: $gray-600;\n\t\t\t\t\topacity: 0.3;\n\t\t\t\t}\n\n\t\t\t\t&:last-child {\n\t\t\t\t\t&:after {\n\t\t\t\t\t\tcontent: none;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n}\n\n.rtl.acf-field-group,\n.rtl.acf-internal-post-type {\n\t.notice {\n\t\tpadding-right: 50px !important;\n\n\t\t.notice-dismiss {\n\t\t\tleft: 8px;\n\t\t\tright: unset;\n\t\t}\n\n\t\t&:before {\n\t\t\tleft: unset;\n\t\t\tright: 10px;\n\t\t}\n\n\t\t&:after {\n\t\t\tleft: unset;\n\t\t\tright: 12px;\n\t\t}\n\t}\n\n\t&.acf-admin-single-taxonomy,\n\t&.acf-admin-single-post-type,\n\t&.acf-admin-single-options-page {\n\t\t.notice-success .acf-item-saved-links a {\n\t\t\t&:after {\n\t\t\t\tleft: unset;\n\t\t\t\tright: 6px;\n\t\t\t}\n\t\t}\n\t}\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n* ACF PRO label\n*\n*--------------------------------------------------------------------------------------------*/\n.acf-pro-label {\n\tdisplay: inline-flex;\n\talign-items: center;\n\tmin-height: 22px;\n\tpadding: {\n\t\tright: 8px;\n\t\tleft: 8px;\n\t}\n\tbackground: $gradient-pro;\n\tbox-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);\n\tborder: none;\n\tborder-radius: 100px;\n\tfont-size: 11px;\n\ttext-transform: uppercase;\n\ttext-decoration: none;\n\tcolor: #fff;\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n* Inline notice overrides\n*\n*--------------------------------------------------------------------------------------------*/\n.acf-admin-page {\n\t.acf-field {\n\t\t// notice\n\t\t.acf-notice {\n\t\t\tdisplay: flex;\n\t\t\talign-items: center;\n\t\t\tmin-height: 40px !important;\n\t\t\tmargin: {\n\t\t\t\tbottom: 6px !important;\n\t\t\t}\n\t\t\tpadding: {\n\t\t\t\ttop: 6px !important;\n\t\t\t\tleft: 40px !important;\n\t\t\t\tbottom: 6px !important;\n\t\t\t}\n\t\t\tmargin: 0 0 15px;\n\t\t\tbackground: #edf2ff;\n\t\t\tcolor: $gray-700 !important;\n\t\t\tborder-color: #2183b9;\n\t\t\tborder-radius: $radius-md;\n\n\t\t\t&:after {\n\t\t\t\ttop: 8px;\n\t\t\t\tleft: 8px;\n\t\t\t\twidth: 22px;\n\t\t\t\theight: 22px;\n\t\t\t}\n\n\t\t\t&:before {\n\t\t\t\ttop: 12px;\n\t\t\t\tleft: 12px;\n\t\t\t\twidth: 14px;\n\t\t\t\theight: 14px;\n\t\t\t}\n\n\t\t\t// error\n\t\t\t&.-error {\n\t\t\t\tbackground: #f7eeeb;\n\t\t\t\tborder-color: #f1b6b3;\n\t\t\t}\n\n\t\t\t// success\n\t\t\t&.-success {\n\t\t\t\tbackground: #edf7ef;\n\t\t\t\tborder-color: #b6deb9;\n\t\t\t}\n\n\t\t\t// warning\n\t\t\t&.-warning {\n\t\t\t\tbackground: #fdf8eb;\n\t\t\t\tborder-color: #f4dbb4;\n\t\t\t}\n\t\t}\n\t}\n}\n","/*---------------------------------------------------------------------------------------------\n*\n* Global\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-admin-page {\n\t#wpcontent {\n\t\tline-height: 140%;\n\t}\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Links\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-admin-page {\n\n\ta {\n\t\tcolor: $blue-500;\n\t}\n\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Headings\n*\n*---------------------------------------------------------------------------------------------*/\n\n.acf-h1 {\n\tfont-size: 21px;\n\tfont-weight: 400;\n}\n\n.acf-h2 {\n\tfont-size: 18px;\n\tfont-weight: 400;\n}\n\n.acf-h3 {\n\tfont-size: 16px;\n\tfont-weight: 400;\n}\n\n.acf-admin-page,\n.acf-headerbar {\n\n\th1 {\n\t\t@extend .acf-h1;\n\t}\n\n\th2 {\n\t\t@extend .acf-h2;\n\t}\n\n\th3 {\n\t\t@extend .acf-h3;\n\t}\n\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Paragraphs\n*\n*---------------------------------------------------------------------------------------------*/\n\n.acf-admin-page {\n\n\t.p1 {\n\t\tfont-size: 15px;\n\t}\n\n\t.p2 {\n\t\tfont-size: 14px;\n\t}\n\n\t.p3 {\n\t\tfont-size: 13.5px;\n\t}\n\n\t.p4 {\n\t\tfont-size: 13px;\n\t}\n\n\t.p5 {\n\t\tfont-size: 12.5px;\n\t}\n\n\t.p6 {\n\t\tfont-size: 12px;\n\t}\n\n\t.p7 {\n\t\tfont-size: 11.5px;\n\t}\n\n\t.p8 {\n\t\tfont-size: 11px;\n\t}\n\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Page titles\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-page-title {\n\t@extend .acf-h2;\n\tcolor: $gray-700;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Hide old / native WP titles from pages\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-admin-page {\n\n\t.acf-settings-wrap h1 {\n\t\tdisplay: none !important;\n\t}\n\n\t#acf-admin-tools h1:not(.acf-field-group-pro-features-title, .acf-field-group-pro-features-title-sm) {\n\t\tdisplay: none !important;\n\t}\n\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Small\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-small {\n\t@extend .p6;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Link focus style\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-admin-page {\n\ta:focus {\n\t\tbox-shadow: none;\n\t\toutline: none;\n\t}\n\n\ta:focus-visible {\n\t\tbox-shadow: 0 0 0 1px #4f94d4, 0 0 2px 1px rgb(79 148 212 / 80%);\n\t\toutline: 1px solid transparent;\n\t}\n}\n",".acf-admin-page {\n\n\t/*---------------------------------------------------------------------------------------------\n\t*\n\t* All Inputs\n\t*\n\t*---------------------------------------------------------------------------------------------*/\n\tinput[type=\"text\"],\n\tinput[type=\"search\"],\n\tinput[type=\"number\"],\n\ttextarea,\n\tselect {\n\t\tbox-sizing: border-box;\n\t\theight: 40px;\n\t\tpadding: {\n\t\t\tright: 12px;\n\t\t\tleft: 12px;\n\t\t};\n\t\tbackground-color: #fff;\n\t\tborder-color: $gray-300;\n\t\tbox-shadow: $elevation-01;\n\t\tborder-radius: $radius-md;\n\t\t@extend .p4;\n\t\tcolor: $gray-700;\n\n\t\t&:focus {\n\t\t\toutline: $outline;\n\t\t\tborder-color: $blue-400;\n\t\t}\n\n\t\t&:disabled {\n\t\t\tbackground-color: $gray-50;\n\t\t\tcolor: lighten($gray-500, 10%);\n\t\t}\n\n\t\t&::placeholder {\n\t\t\tcolor: $gray-400;\n\t\t}\n\n\t}\n\n\t/*---------------------------------------------------------------------------------------------\n\t*\n\t* Read only text inputs\n\t*\n\t*---------------------------------------------------------------------------------------------*/\n\tinput[type=\"text\"] {\n\n\t\t&:read-only {\n\t\t\tbackground-color: $gray-50;\n\t\t\tcolor: $gray-400;\n\t\t}\n\n\t}\n\n\t/*---------------------------------------------------------------------------------------------\n\t*\n\t* Number fields\n\t*\n\t*---------------------------------------------------------------------------------------------*/\n\t.acf-field.acf-field-number {\n\n\t\t.acf-label,\n\t\t.acf-input input[type=\"number\"] {\n\t\t\tmax-width: 180px;\n\t\t}\n\n\t}\n\n\t/*---------------------------------------------------------------------------------------------\n\t*\n\t* Textarea\n\t*\n\t*---------------------------------------------------------------------------------------------*/\n\ttextarea {\n\t\tbox-sizing: border-box;\n\t\tpadding: {\n\t\t\ttop: 10px;\n\t\t\tbottom: 10px;\n\t\t};\n\t\theight: 80px;\n\t\tmin-height: 56px;\n\t}\n\n\t/*---------------------------------------------------------------------------------------------\n\t*\n\t* Select\n\t*\n\t*---------------------------------------------------------------------------------------------*/\n\tselect {\n\t\tmin-width: 160px;\n\t\tmax-width: 100%;\n\t\tpadding: {\n\t\t\tright: 40px;\n\t\t\tleft: 12px;\n\t\t};\n\t\tbackground-image: url('../../images/icons/icon-chevron-down.svg');\n\t\tbackground-position: right 10px top 50%;\n\t\tbackground-size: 20px;\n\t\t@extend .p4;\n\n\t\t&:hover,\n\t\t&:focus {\n\t\t\tcolor: $blue-500;\n\t\t}\n\n\t\t&::before {\n\t\t\tcontent: '';\n\t\t\tdisplay: block;\n\t\t\tposition: absolute;\n\t\t\ttop: 5px;\n\t\t\tleft: 5px;\n\t\t\twidth: 20px;\n\t\t\theight: 20px;\n\t\t}\n\n\t}\n\n\t&.rtl {\n\t\tselect {\n\t\t\tpadding: {\n\t\t\t\tright: 12px;\n\t\t\t\tleft: 40px;\n\t\t\t};\n\t\t\tbackground-position: left 10px top 50%;\n\t\t}\n\t}\n\n\t/*---------------------------------------------------------------------------------------------\n\t*\n\t* Radio Button & Checkbox base styling\n\t*\n\t*---------------------------------------------------------------------------------------------*/\n\tinput[type=\"radio\"],\n\tinput[type=\"checkbox\"] {\n\t\tbox-sizing: border-box;\n\t\twidth: 16px;\n\t\theight: 16px;\n\t\tpadding: 0;\n\t\tborder: {\n\t\t\twidth: 1px;\n\t\t\tstyle: solid;\n\t\t\tcolor: $gray-400;\n\t\t};\n\t\tbackground: #fff;\n\t\tbox-shadow: none;\n\n\t\t&:hover {\n\t\t\tbackground-color: $blue-50;\n\t\t\tborder-color: $blue-500;\n\t\t}\n\n\t\t&:checked,\n\t\t&:focus-visible {\n\t\t\tbackground-color: $blue-50;\n\t\t\tborder-color: $blue-500;\n\n\t\t\t&:before {\n\t\t\t\tcontent: '';\n\t\t\t\tposition: relative;\n\t\t\t\ttop: -1px;\n\t\t\t\tleft: -1px;\n\t\t\t\twidth: 16px;\n\t\t\t\theight: 16px;\n\t\t\t\tmargin: 0;\n\t\t\t\tpadding: 0;\n\t\t\t\tbackground-color: transparent;\n\t\t\t\tbackground-size: cover;\n\t\t\t\tbackground-repeat: no-repeat;\n\t\t\t\tbackground-position: center;\n\t\t\t}\n\n\t\t}\n\n\t\t&:active {\n\t\t\tbox-shadow: 0px 0px 0px 3px $blue-50, 0px 0px 0px rgba(255, 54, 54, 0.25);\n\t\t}\n\n\t\t&:disabled {\n\t\t\tbackground-color: $gray-50;\n\t\t\tborder-color: $gray-300;\n\t\t}\n\n\t}\n\n\t&.rtl {\n\t\tinput[type=\"radio\"],\n\t\tinput[type=\"checkbox\"] {\n\t\t\t&:checked,\n\t\t\t&:focus-visible {\n\t\t\t\t&:before {\n\t\t\t\t\tleft: 1px;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\n\t/*---------------------------------------------------------------------------------------------\n\t*\n\t* Radio Buttons\n\t*\n\t*---------------------------------------------------------------------------------------------*/\n\tinput[type=\"radio\"] {\n\n\t\t&:checked,\n\t\t&:focus {\n\n\t\t\t&:before {\n\t\t\t\tbackground-image: url('../../images/field-states/radio-active.svg');\n\t\t\t}\n\n\t\t}\n\n\t}\n\n\t/*---------------------------------------------------------------------------------------------\n\t*\n\t* Checkboxes\n\t*\n\t*---------------------------------------------------------------------------------------------*/\n\tinput[type=\"checkbox\"] {\n\n\t\t&:checked,\n\t\t&:focus {\n\n\t\t\t&:before {\n\t\t\t\tbackground-image: url('../../images/field-states/checkbox-active.svg');\n\t\t\t}\n\n\t\t}\n\n\t}\n\n\t/*---------------------------------------------------------------------------------------------\n\t*\n\t* Radio Buttons & Checkbox lists\n\t*\n\t*---------------------------------------------------------------------------------------------*/\n\t.acf-radio-list,\n\t.acf-checkbox-list {\n\n\t\tli input[type=\"radio\"],\n\t\tli input[type=\"checkbox\"] {\n\t\t\tmargin: {\n\t\t\t\tright: 6px;\n\t\t\t};\n\t\t}\n\n\t\t&.acf-bl li {\n\t\t\tmargin: {\n\t\t\t\tbottom: 8px;\n\t\t\t};\n\n\t\t\t&:last-of-type {\n\t\t\t\tmargin: {\n\t\t\t\t\tbottom: 0;\n\t\t\t\t};\n\t\t\t}\n\n\n\t\t}\n\n\t\tlabel {\n\t\t\tdisplay: flex;\n\t\t\talign-items: center;\n\t\t\talign-content: center;\n\t\t}\n\n\t}\n\n\t/*---------------------------------------------------------------------------------------------\n\t*\n\t* ACF Switch\n\t*\n\t*---------------------------------------------------------------------------------------------*/\n\t.acf-switch {\n\t\twidth: 42px;\n\t\theight: 24px;\n\t\tborder: none;\n\t\tbackground-color: $gray-300;\n\t\tborder-radius: 12px;\n\n\t\t&:hover {\n\t\t\tbackground-color: $gray-400;\n\t\t}\n\n\t\t&:active {\n\t\t\tbox-shadow: 0px 0px 0px 3px $blue-50, 0px 0px 0px rgba(255, 54, 54, 0.25);\n\t\t}\n\n\t\t&.-on {\n\t\t\tbackground-color: $color-primary;\n\n\t\t\t&:hover {\n\t\t\t\tbackground-color: $color-primary-hover;\n\t\t\t}\n\n\t\t\t.acf-switch-slider {\n\t\t\t\tleft: 20px;\n\t\t\t}\n\n\t\t}\n\n\t\t.acf-switch-off,\n\t\t.acf-switch-on {\n\t\t\tvisibility: hidden;\n\t\t}\n\n\t\t.acf-switch-slider {\n\t\t\twidth: 20px;\n\t\t\theight: 20px;\n\t\t\tborder: none;\n\t\t\tborder-radius: 100px;\n\t\t\tbox-shadow: 0px 1px 3px rgba(16, 24, 40, 0.1), 0px 1px 2px rgba(16, 24, 40, 0.06);\n\t\t}\n\n\t}\n\n\t.acf-field-true-false {\n\t\tdisplay: flex;\n\t\talign-items: flex-start;\n\n\t\t.acf-label {\n\t\t\torder: 2;\n\t\t\tdisplay: block;\n\t\t\talign-items: center;\n\t\t\tmargin: {\n\t\t\t\ttop: 2px;\n\t\t\t\tbottom: 0;\n\t\t\t\tleft: 12px;\n\t\t\t};\n\n\t\t\tlabel {\n\t\t\t\tmargin: {\n\t\t\t\t\tbottom: 0;\n\t\t\t\t};\n\t\t\t}\n\n\t\t\t.acf-tip {\n\t\t\t\tmargin: {\n\t\t\t\t\tleft: 12px;\n\t\t\t\t};\n\t\t\t}\n\t\t\t\n\t\t\t.description {\n\t\t\t\tdisplay: block;\n\t\t\t\tmargin: {\n\t\t\t\t\ttop: 2px;\n\t\t\t\t\tleft: 0;\n\t\t\t\t};\t\t\n\t\t\t}\n\n\t\t}\n\n\t}\n\n\t&.rtl {\n\t\t.acf-field-true-false {\n\t\t\t.acf-label {\n\t\t\t\tmargin: {\n\t\t\t\t\tright: 12px;\n\t\t\t\t\tleft: 0;\n\t\t\t\t};\n\t\t\t}\n\n\t\t\t.acf-tip {\n\t\t\t\tmargin: {\n\t\t\t\t\tright: 12px;\n\t\t\t\t\tleft: 0;\n\t\t\t\t};\n\t\t\t}\n\t\t}\n\t}\n\n\t/*---------------------------------------------------------------------------------------------\n\t*\n\t* File input button\n\t*\n\t*---------------------------------------------------------------------------------------------*/\n\n\tinput::file-selector-button {\n\t\tbox-sizing: border-box;\n\t\tmin-height: 40px;\n\t\tmargin: {\n\t\t\tright: 16px;\n\t\t};\n\t\tpadding: {\n\t\t\ttop: 8px;\n\t\t\tright: 16px;\n\t\t\tbottom: 8px;\n\t\t\tleft: 16px;\n\t\t};\n\t\tbackground-color: transparent;\n\t\tcolor: $color-primary !important;\n\t\tborder-radius: $radius-md;\n\t\tborder: {\n\t\t\twidth: 1px;\n\t\t\tstyle: solid;\n\t\t\tcolor: $color-primary;\n\t\t};\n\t\ttext-decoration: none;\n\n\t\t&:hover {\n\t\t\tborder-color: $color-primary-hover;\n\t\t\tcursor: pointer;\n\t\t\tcolor: $color-primary-hover !important;\n\t\t}\n\n\t}\n\n\n\t/*---------------------------------------------------------------------------------------------\n\t*\n\t* Action Buttons\n\t*\n\t*---------------------------------------------------------------------------------------------*/\n\t.button {\n\t\tdisplay: inline-flex;\n\t\talign-items: center;\n\t\theight: 40px;\n\t\tpadding: {\n\t\t\tright: 16px;\n\t\t\tleft: 16px;\n\t\t};\n\t\tbackground-color: transparent;\n\t\tborder-width: 1px;\n\t\tborder-style: solid;\n\t\tborder-color: $blue-500;\n\t\tborder-radius: $radius-md;\n\t\t@extend .p4;\n\t\tcolor: $blue-500;\n\n\t\t&:hover {\n\t\t\tbackground-color: lighten($blue-50, 2%);\n\t\t\tborder-color: $color-primary;\n\t\t\tcolor: $color-primary;\n\t\t}\n\t\t&:focus {\n\t\t\tbackground-color: lighten($blue-50, 2%);\n\t\t\toutline: $outline;\n\t\t\tcolor: $color-primary;\n\t\t}\n\n\t}\n\n\t/*---------------------------------------------------------------------------------------------\n\t*\n\t* Edit field group header\n\t*\n\t*---------------------------------------------------------------------------------------------*/\n\t.edit-field-group-header {\n\t\tdisplay: block !important;\n\t}\n\n\t/*---------------------------------------------------------------------------------------------\n\t*\n\t* Select2 inputs\n\t*\n\t*---------------------------------------------------------------------------------------------*/\n\t.acf-input {\n\n\t\t.select2-container.-acf .select2-selection {\n\t\t\tborder: none;\n\t\t\tline-height: 1;\n\t\t}\n\n\t\t.select2-container.-acf .select2-selection__rendered {\n\t\t\tbox-sizing: border-box;\n\t\t\tpadding: {\n\t\t\t\tright: 0;\n\t\t\t\tleft: 0;\n\t\t\t};\n\t\t\tbackground-color: #fff;\n\t\t\tborder: {\n\t\t\t\twidth: 1px;\n\t\t\t\tstyle: solid;\n\t\t\t\tcolor: $gray-300;\n\t\t\t};\n\t\t\tbox-shadow: $elevation-01;\n\t\t\tborder-radius: $radius-md;\n\t\t\t@extend .p4;\n\t\t\tcolor: $gray-700;\n\t\t}\n\n\t\t.select2-container--focus {\n\t\t\toutline: $outline;\n\t\t\tborder-color: $blue-400;\n\t\t\tborder-radius: $radius-md;\n\n\t\t\t.select2-selection__rendered {\n\t\t\t\tborder-color: $blue-400 !important;\n\t\t\t}\n\n\t\t\t&.select2-container--below.select2-container--open {\n\n\t\t\t\t.select2-selection__rendered {\n\t\t\t\t\tborder-bottom-right-radius: 0 !important;\n\t\t\t\t\tborder-bottom-left-radius: 0 !important;\n\t\t\t\t}\n\n\t\t\t}\n\n\t\t\t&.select2-container--above.select2-container--open {\n\n\t\t\t\t.select2-selection__rendered {\n\t\t\t\t\tborder-top-right-radius: 0 !important;\n\t\t\t\t\tborder-top-left-radius: 0 !important;\n\t\t\t\t}\n\n\t\t\t}\n\n\t\t}\n\n\t\t.select2-container .select2-search--inline .select2-search__field {\n\t\t\tmargin: 0;\n\t\t\tpadding: {\n\t\t\t\tleft: 6px;\n\t\t\t};\n\n\t\t\t&:focus {\n\t\t\t\toutline: none;\n\t\t\t\tborder: none;\n\t\t\t}\n\n\t\t}\n\n\t\t.select2-container--default .select2-selection--multiple .select2-selection__rendered {\n\t\t\tpadding: {\n\t\t\t\ttop: 0;\n\t\t\t\tright: 6px;\n\t\t\t\tbottom: 0;\n\t\t\t\tleft: 6px;\n\t\t\t};\n\t\t}\n\n\t\t.select2-selection__clear {\n\t\t\twidth: 18px;\n\t\t\theight: 18px;\n\t\t\tmargin: {\n\t\t\t\ttop: 12px;\n\t\t\t\tright: 1px;\n\t\t\t};\n\t\t\ttext-indent: 100%;\n\t\t\twhite-space: nowrap;\n\t\t\toverflow: hidden;\n\t\t\tcolor: #fff;\n\n\t\t\t&:before {\n\t\t\t\tcontent: '';\n\t\t\t\t$icon-size: 16px;\n\t\t\t\tdisplay: block;\n\t\t\t\twidth: $icon-size;\n\t\t\t\theight: $icon-size;\n\t\t\t\ttop: 0;\n\t\t\t\tleft: 0;\n\t\t\t\tborder: none;\n\t\t\t\tborder-radius: 0;\n\t\t\t\t-webkit-mask-size: contain;\n\t\t\t\tmask-size: contain;\n\t\t\t\t-webkit-mask-repeat: no-repeat;\n\t\t\t\tmask-repeat: no-repeat;\n\t\t\t\t-webkit-mask-position: center;\n\t\t\t\tmask-position: center;\n\t\t\t\t-webkit-mask-image: url('../../images/icons/icon-close.svg');\n\t\t\t\tmask-image: url('../../images/icons/icon-close.svg');\n\t\t\t\tbackground-color: $gray-400;\n\t\t\t}\n\n\t\t\t&:hover::before {\n\t\t\t\tbackground-color: $blue-500;\n\t\t\t}\n\n\t\t}\n\n\t}\n\n\t/*---------------------------------------------------------------------------------------------\n\t*\n\t* ACF label\n\t*\n\t*---------------------------------------------------------------------------------------------*/\n\t.acf-label {\n\t\tdisplay: flex;\n\t\talign-items: center;\n\t\tjustify-content: space-between;\n\n\t\t.acf-icon-help {\n\t\t\t$icon-size: 18px;\n\t\t\twidth: $icon-size;\n\t\t\theight: $icon-size;\n\t\t\tbackground-color: $gray-400;\n\t\t}\n\n\t\tlabel {\n\t\t\tmargin: {\n\t\t\t\tbottom: 0;\n\t\t\t};\n\t\t}\n\t\t\n\t\t.description {\n\t\t\tmargin: {\n\t\t\t\ttop: 2px;\n\t\t\t};\n\t\t}\n\n\t}\n\n\t/*---------------------------------------------------------------------------------------------\n\t*\n\t* Tooltip for field name field setting (result of a fix for keyboard navigation)\n\t*\n\t*---------------------------------------------------------------------------------------------*/\n\t.acf-field-setting-name .acf-tip {\n\t\tposition: absolute;\n\t\ttop: 0;\n\t\tleft: 654px;\n\t\tcolor: #98A2B3;\n\n\t\t@at-root .rtl#{&} {\n\t\t\tleft: auto;\n\t\t\tright: 654px;\n\t\t}\n\n\t\t.acf-icon-help {\n\t\t\twidth: 18px;\n\t\t\theight: 18px;\n\t\t}\n\t}\n\n\t/* Field Type Selection select2 */\n\t.acf-field-setting-type,\n\t.acf-field-permalink-rewrite,\n\t.acf-field-query-var,\n\t.acf-field-capability,\n\t.acf-field-parent-slug,\n\t.acf-field-data-storage,\n\t.acf-field-manage-terms,\n\t.acf-field-edit-terms,\n\t.acf-field-delete-terms,\n\t.acf-field-assign-terms,\n\t.acf-field-meta-box {\n\t\t\n\t\t.select2-container.-acf {\n\t\t\tmin-height: 40px;\n\t\t}\n\n\t\t.select2-container--default .select2-selection--single {\n\t\t\t.select2-selection__rendered {\n\t\t\t\tdisplay: flex;\n\t\t\t\talign-items: center;\n\t\t\t\tposition: relative;\n\t\t\t\tz-index: 800;\n\t\t\t\tmin-height: 40px;\n\t\t\t\tpadding: {\n\t\t\t\t\ttop: 0;\n\t\t\t\t\tright: 12px;\n\t\t\t\t\tbottom: 0;\n\t\t\t\t\tleft: 12px;\n\t\t\t\t};\n\t\t\t}\n\t\t\t.field-type-icon {\n\t\t\t\ttop: auto;\n\t\t\t\twidth: 18px;\n\t\t\t\theight: 18px;\n\t\t\t\tmargin: {\n\t\t\t\t\tright: 2px;\n\t\t\t\t};\n\n\t\t\t\t&:before {\n\t\t\t\t\twidth: 9px;\n\t\t\t\t\theight: 9px;\n\t\t\t\t}\n\n\t\t\t}\n\t\t}\n\n\t\t.select2-container--open .select2-selection__rendered {\n\t\t\tborder-color: $blue-300 !important;\n\t\t\tborder-bottom-color: $gray-300 !important;\n\t\t}\n\n\t\t.select2-container--open.select2-container--below .select2-selection__rendered {\n\t\t\tborder-bottom-right-radius: 0 !important;\n\t\t\tborder-bottom-left-radius: 0 !important;\n\t\t}\n\n\t\t.select2-container--open.select2-container--above .select2-selection__rendered {\n\t\t\tborder-top-right-radius: 0 !important;\n\t\t\tborder-top-left-radius: 0 !important;\n\t\t\tborder-bottom-color: $blue-300 !important;\n\t\t\tborder-top-color: $gray-300 !important;\n\t\t}\n\n\t\t// icon margins\n\t\t.acf-selection.has-icon {\n\t\t\tmargin-left: 6px;\n\t\n\t\t\t@at-root .rtl#{&} {\n\t\t\t\tmargin-right: 6px;\n\t\t\t}\n\t\t}\n\t\t\n\t\t// Dropdown icon\n\t\t.select2-selection__arrow {\n\t\t\twidth: 20px;\n\t\t\theight: 20px;\n\t\t\ttop: calc(50% - 10px);\n\t\t\tright: 12px;\n\t\t\tbackground-color: transparent;\n\t\t\t\n\t\t\t&:after {\n\t\t\t\tcontent: \"\";\n\t\t\t\t$icon-size: 20px;\n\t\t\t\tdisplay: block;\n\t\t\t\tposition: absolute;\n\t\t\t\tz-index: 850;\n\t\t\t\ttop: 1px;\n\t\t\t\tleft: 0;\n\t\t\t\twidth: $icon-size;\n\t\t\t\theight: $icon-size;\n\t\t\t\t-webkit-mask-image: url(\"../../images/icons/icon-chevron-down.svg\");\n\t\t\t\tmask-image: url(\"../../images/icons/icon-chevron-down.svg\");\n\t\t\t\tbackground-color: $gray-500;\n\t\t\t\tborder: none;\n\t\t\t\tborder-radius: 0;\n\t\t\t\t-webkit-mask-size: contain;\n\t\t\t\tmask-size: contain;\n\t\t\t\t-webkit-mask-repeat: no-repeat;\n\t\t\t\tmask-repeat: no-repeat;\n\t\t\t\t-webkit-mask-position: center;\n\t\t\t\tmask-position: center;\n\t\t\t\ttext-indent: 500%;\n\t\t\t\twhite-space: nowrap;\n\t\t\t\toverflow: hidden;\t\n\t\t\t}\n\t\t\t\n\t\t\tb[role=\"presentation\"] {\n\t\t\t\tdisplay: none;\n\t\t\t}\n\t\t\t\n\t\t}\n\n\t\t// Open state\n\t\t.select2-container--open {\n\t\t\t\n\t\t\t// Swap chevron icon\n\t\t\t.select2-selection__arrow:after {\n\t\t\t\t-webkit-mask-image: url(\"../../images/icons/icon-chevron-up.svg\");\n\t\t\t\tmask-image: url(\"../../images/icons/icon-chevron-up.svg\");\n\t\t\t}\n\t\t\t\n\t\t}\n\n\t}\n\n\t.field-type-select-results {\n\t\tposition: relative;\n\t\ttop: 4px;\n\t\tz-index: 1002;\n\t\tborder-radius: 0 0 $radius-md $radius-md;\n\t\tbox-shadow: 0px 8px 24px 4px rgba(16, 24, 40, 0.12);\n\t\t&.select2-dropdown--above {\n\t\t\tdisplay: flex;\n\t\t\tflex-direction: column-reverse;\t \n\t\t\ttop: 0;\n\t\t\tborder-radius: $radius-md $radius-md 0 0;\n\t\t\tz-index: 99999;\n\t\t}\n\t\t\n\t\t@at-root .select2-container.select2-container--open#{&} {\n\t\t\t// outline: 3px solid $blue-50;\n\t\t\tbox-shadow: 0px 0px 0px 3px #EBF5FA, 0px 8px 24px 4px rgba(16, 24, 40, 0.12);\n\t\t}\n\n\t\t// icon margins\n\t\t.acf-selection.has-icon {\n\t\t\tmargin-left: 6px;\n\n\t\t\t@at-root .rtl#{&} {\n\t\t\t\tmargin-right: 6px;\n\t\t\t}\n\t\t}\n\n\t\t// Search field\n\t\t.select2-search {\n\t\t\tposition: relative;\n\t\t\tmargin: 0;\n\t\t\tpadding: 0;\n\n\t\t\t&--dropdown {\n\t\t\t\t&:after {\n\t\t\t\t\tcontent: \"\";\n\t\t\t\t\t$icon-size: 16px;\n\t\t\t\t\tdisplay: block;\n\t\t\t\t\tposition: absolute;\n\t\t\t\t\ttop: 12px;\n\t\t\t\t\tleft: 13px;\n\t\t\t\t\twidth: $icon-size;\n\t\t\t\t\theight: $icon-size;\n\t\t\t\t\t-webkit-mask-image: url(\"../../images/icons/icon-search.svg\");\n\t\t\t\t\tmask-image: url(\"../../images/icons/icon-search.svg\");\n\t\t\t\t\tbackground-color: $gray-400;\n\t\t\t\t\tborder: none;\n\t\t\t\t\tborder-radius: 0;\n\t\t\t\t\t-webkit-mask-size: contain;\n\t\t\t\t\tmask-size: contain;\n\t\t\t\t\t-webkit-mask-repeat: no-repeat;\n\t\t\t\t\tmask-repeat: no-repeat;\n\t\t\t\t\t-webkit-mask-position: center;\n\t\t\t\t\tmask-position: center;\n\t\t\t\t\ttext-indent: 500%;\n\t\t\t\t\twhite-space: nowrap;\n\t\t\t\t\toverflow: hidden;\n\n\t\t\t\t\t@at-root .rtl#{&} {\n\t\t\t\t\t\tright: 12px;\n\t\t\t\t\t\tleft: auto;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t.select2-search__field {\n\t\t\t\tpadding-left: 38px;\n\n\t\t\t\tborder-right: 0;\n\t\t\t\tborder-bottom: 0;\n\t\t\t\tborder-left: 0;\n\t\t\t\tborder-radius: 0;\n\n\t\t\t\t@at-root .rtl#{&} {\n\t\t\t\t\tpadding-right: 38px;\n\t\t\t\t\tpadding-left: 0;\n\t\t\t\t}\n\n\t\t\t\t&:focus {\n\t\t\t\t\tborder-top-color: $gray-300;\n\t\t\t\t\toutline: 0;\n\t\t\t\t}\n\t\t\t}\n\n\t\t}\n\n\t\t.select2-results__options {\n\t\t\tmax-height: 440px;\n\t\t}\n\t\t\n\t\t.select2-results__option {\n\t\t\t.select2-results__option--highlighted {\n\t\t\t\tbackground-color: $blue-500 !important;\n\t\t\t\tcolor: $gray-50 !important;\n\t\t\t}\n\t\t}\n\n\t\t// List items\n\t\t.select2-results__option .select2-results__option {\n\t\t\tdisplay: inline-flex;\n\t\t\tposition: relative;\n\t\t\twidth: calc(100% - 24px);\n\t\t\tmin-height: 32px;\n\t\t\tpadding: {\n\t\t\t\ttop: 0;\n\t\t\t\tright: 12px;\n\t\t\t\tbottom: 0;\n\t\t\t\tleft: 12px;\n\t\t\t}\n\t\t\talign-items: center;\n\t\t\t\n\t\t\t.field-type-icon {\n\t\t\t\ttop: auto;\n\t\t\t\twidth: 18px;\n\t\t\t\theight: 18px;\n\t\t\t\tmargin: {\n\t\t\t\t\tright: 2px;\n\t\t\t\t};\n\t\t\t\tbox-shadow: 0 0 0 1px $gray-50;\n\t\t\t\n\t\t\t\t&:before {\n\t\t\t\t\twidth: 9px;\n\t\t\t\t\theight: 9px;\n\t\t\t\t}\n\t\t\t\n\t\t\t}\n\t\t\t\n\t\t}\n\n\t\t.select2-results__option[aria-selected=\"true\"] {\n\t\t\tbackground-color: $blue-50 !important;\n\t\t\tcolor: $gray-700 !important;\n\t\t\t\n\t\t\t&:after {\n\t\t\t\tcontent: \"\";\n\t\t\t\t$icon-size: 16px;\n\t\t\t\tright: 13px;\n\t\t\t\tposition: absolute;\n\t\t\t\twidth: $icon-size;\n\t\t\t\theight: $icon-size;\n\t\t\t\t-webkit-mask-image: url(\"../../images/icons/icon-check.svg\");\n\t\t\t\tmask-image: url(\"../../images/icons/icon-check.svg\");\n\t\t\t\tbackground-color: $blue-500;\n\t\t\t\tborder: none;\n\t\t\t\tborder-radius: 0;\n\t\t\t\t-webkit-mask-size: contain;\n\t\t\t\tmask-size: contain;\n\t\t\t\t-webkit-mask-repeat: no-repeat;\n\t\t\t\tmask-repeat: no-repeat;\n\t\t\t\t-webkit-mask-position: center;\n\t\t\t\tmask-position: center;\n\t\t\t\ttext-indent: 500%;\n\t\t\t\twhite-space: nowrap;\n\t\t\t\toverflow: hidden;\n\n\t\t\t\t@at-root .rtl#{&} {\n\t\t\t\t\tleft: 13px;\n\t\t\t\t\tright: auto;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t.select2-results__group {\n\t\t\tdisplay: inline-flex;\n\t\t\talign-items: center;\n\t\t\twidth: calc(100% - 24px);\n\t\t\tmin-height: 25px;\n\t\t\tbackground-color: $gray-50;\n\t\t\tborder-top: {\n\t\t\t\twidth: 1px;\n\t\t\t\tstyle: solid;\n\t\t\t\tcolor: $gray-200;\n\t\t\t};\n\t\t\tborder-bottom: {\n\t\t\t\twidth: 1px;\n\t\t\t\tstyle: solid;\n\t\t\t\tcolor: $gray-200;\n\t\t\t};\n\t\t\tcolor: $gray-400;\n\t\t\tfont-size: 11px;\n\t\t\tmargin: {\n\t\t\t\tbottom: 0;\n\t\t\t};\n\t\t\tpadding: {\n\t\t\t\ttop: 0;\n\t\t\t\tright: 12px;\n\t\t\t\tbottom: 0;\n\t\t\t\tleft: 12px;\n\t\t\t};\n\t\t\tfont-weight: normal;\n\t\t}\n\t}\n\t\n\t/*---------------------------------------------------------------------------------------------\n\t*\n\t* RTL arrow position\n\t*\n\t*---------------------------------------------------------------------------------------------*/\n\t&.rtl {\n\t\t\n\t\t.acf-field-setting-type,\n\t\t.acf-field-permalink-rewrite,\n\t\t.acf-field-query-var {\n\t\t\t\n\t\t\t.select2-selection__arrow:after {\n\t\t\tright: auto;\n\t\t\tleft: 10px;\n\t\t\t}\n\t\t}\n\t\t\n\t}\n\t\n}\n\n.rtl.post-type-acf-field-group,\n.rtl.acf-internal-post-type {\n\t.acf-field-setting-name .acf-tip {\n\t\tleft: auto;\n\t\tright: 654px;\n\t}\n}","/*---------------------------------------------------------------------------------------------\n*\n* Field Groups\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-internal-post-type {\n\n\t// Hide tablenav top.\n\t.tablenav.top {\n\t\tdisplay: none;\n\t}\n\n\t// Fix margin due to hidden tablenav.\n\t.subsubsub {\n\t\tmargin-bottom: 3px;\n\t}\n\n\t// table.\n\t.wp-list-table {\n\t\tmargin: {\n\t\t\ttop: 0;\n\t\t\tright: 0;\n\t\t\tbottom: 0;\n\t\t\tleft: 0;\n\t\t}\n\t\tborder-radius: $radius-lg;\n\t\tborder: none;\n\t\toverflow: hidden;\n\t\tbox-shadow: $elevation-01;\n\n\t\tstrong {\n\t\t\tcolor: $gray-400;\n\t\t\tmargin: 0;\n\t\t}\n\n\t\ta.row-title {\n\t\t\tfont-size: 13px !important;\n\t\t\tfont-weight: 500;\n\t\t}\n\n\t\tth,\n\t\ttd {\n\t\t\tcolor: $gray-700;\n\n\t\t\t&.sortable a {\n\t\t\t\tpadding: 0;\n\t\t\t}\n\n\t\t\t&.check-column {\n\t\t\t\tpadding: {\n\t\t\t\t\ttop: 12px;\n\t\t\t\t\tright: 16px;\n\t\t\t\t\tleft: 16px;\n\t\t\t\t};\n\n\t\t\t\t@media screen and (max-width: $md) {\n\t\t\t\t\tvertical-align: top;\n\t\t\t\t\tpadding: {\n\t\t\t\t\t\tright: 2px;\n\t\t\t\t\t\tleft: 10px;\n\t\t\t\t\t};\n\t\t\t\t}\n\n\t\t\t}\n\n\t\t\tinput {\n\t\t\t\tmargin: 0;\n\t\t\t\tpadding: 0;\n\t\t\t}\n\n\t\t\t.acf-more-items {\n\t\t\t\tdisplay: inline-flex;\n\t\t\t\tflex-direction: row;\n\t\t\t\tjustify-content: center;\n\t\t\t\talign-items: center;\n\t\t\t\tpadding: 0px 6px 1px;\n\t\t\t\tgap: 8px;\n\t\t\t\twidth: 25px;\n\t\t\t\theight: 16px;\n\t\t\t\tbackground: $gray-200;\n\t\t\t\tborder-radius: 100px;\n\t\t\t\tfont-weight: 400;\n\t\t\t\tfont-size: 10px;\n\t\t\t\tcolor: $gray-600;\n\t\t\t}\n\n\t\t\t.acf-emdash {\n\t\t\t\tcolor: $gray-300;\n\t\t\t}\n\t\t}\n\n\t\t// Table headers\n\t\tthead th, thead td,\n\t\ttfoot th, tfoot td {\n\t\t\theight: 48px;\n\t\t\tpadding: {\n\t\t\t\tright: 24px;\n\t\t\t\tleft: 24px;\n\t\t\t};\n\t\t\tbox-sizing: border-box;\n\t\t\tbackground-color: $gray-50;\n\t\t\tborder-color: $gray-200;\n\t\t\t@extend .p4;\n\t\t\tfont-weight: 500;\n\n\t\t\t@media screen and (max-width: $md) {\n\t\t\t\tpadding: {\n\t\t\t\t\tright: 16px;\n\t\t\t\t\tleft: 8px;\n\t\t\t\t};\n\t\t\t}\n\n\t\t\t&.check-column {\n\t\t\t\t@media screen and (max-width: $md) {\n\t\t\t\t\tvertical-align: middle;\n\t\t\t\t}\n\t\t\t}\n\n\t\t}\n\n\t\t// Table body\n\t\ttbody th,\n\t\ttbody td {\n\t\t\tbox-sizing: border-box;\n\t\t\theight: 60px;\n\t\t\tpadding: {\n\t\t\t\ttop: 10px;\n\t\t\t\tright: 24px;\n\t\t\t\tbottom: 10px;\n\t\t\t\tleft: 24px;\n\t\t\t};\n\t\t\tvertical-align: top;\n\t\t\tbackground-color: #fff;\n\t\t\tborder-bottom: {\n\t\t\t\twidth: 1px;\n\t\t\t\tcolor: $gray-200;\n\t\t\t\tstyle: solid;\n\t\t\t};\n\t\t\t@extend .p4;\n\n\t\t\t@media screen and (max-width: $md) {\n\t\t\t\tpadding: {\n\t\t\t\t\tright: 16px;\n\t\t\t\t\tleft: 8px;\n\t\t\t\t};\n\t\t\t}\n\n\t\t}\n\n\t\t.column-acf-key {\n\t\t\twhite-space: nowrap;\n\t\t}\n\n\t\t// SVG icons\n\t\t.column-acf-key .acf-icon-key-solid {\n\t\t\tdisplay: inline-block;\n\t\t\tposition: relative;\n\t\t\tbottom: -2px;\n\t\t\twidth: 15px;\n\t\t\theight: 15px;\n\t\t\tmargin: {\n\t\t\t\tright: 4px;\n\t\t\t};\n\t\t\tcolor: $gray-400;\n\t\t}\n\n\t\t// Post location icon\n\t\t.acf-location .dashicons {\n\t\t\tposition: relative;\n\t\t\tbottom: -2px;\n\t\t\twidth: 16px;\n\t\t\theight: 16px;\n\t\t\tmargin: {\n\t\t\t\tright: 6px;\n\t\t\t};\n\t\t\tfont-size: 16px;\n\t\t\tcolor: $gray-400;\n\t\t}\n\n\t\t.post-state {\n\t\t\t@extend .p3;\n\t\t\tcolor: $gray-500;\n\t\t}\n\n\t\t// Add subtle hover background to define row.\n\t\ttr:hover,\n\t\ttr:focus-within {\n\t\t\tbackground: #f7f7f7;\n\n\t\t\t.row-actions {\n\t\t\t\tmargin: {\n\t\t\t\t\tbottom: 0;\n\t\t\t\t};\n\t\t\t};\n\n\t\t}\n\n\t\t// Use less specific identifier to inherit mobile styling.\n\t\t@media screen and ( min-width: 782px ) {\n\t\t\t.column-acf-count { width: 10%; }\n\t\t}\n\n\t\t.row-actions {\n\t\t\tspan.file {\n\t\t\t\tdisplay: block;\n\t\t\t\toverflow: hidden;\n\t\t\t\twhite-space: nowrap;\n\t\t\t\ttext-overflow: ellipsis;\n\t\t\t}\n\t\t}\n\t}\n\n\t&.rtl {\n\t\t.wp-list-table {\n\t\t\t.column-acf-key .acf-icon-key-solid {\n\t\t\t\tmargin: {\n\t\t\t\t\tleft: 4px;\n\t\t\t\t\tright: 0;\n\t\t\t\t};\n\t\t\t}\n\n\t\t\t.acf-location .dashicons {\n\t\t\t\tmargin: {\n\t\t\t\t\tleft: 6px;\n\t\t\t\t\tright: 0;\n\t\t\t\t};\n\t\t\t}\n\t\t}\n\t}\n\n\t// Actions\n\t.row-actions {\n\t\tmargin: {\n\t\t\ttop: 2px;\n\t\t};\n\t\tpadding: {\n\t\t\ttop: 0;\n\t\t\tright: 0;\n\t\t\tbottom: 0;\n\t\t\tleft: 0;\n\t\t}\n\t\t@extend .p5;\n\t\tline-height: 14px;\n\t\tcolor: $gray-300;\n\n\t\t.trash a {\n\t\t\tcolor: $acf_error;\n\t\t}\n\n\t}\n\n\n\t// Remove padding from checkbox column\n\t.widefat thead td.check-column,\n\t.widefat tfoot td.check-column {\n\t\tpadding: {\n\t\t\ttop: 0;\n\t\t};\n\t}\n\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tRow actions\n*\n*--------------------------------------------------------------------------------------------*/\n.acf-internal-post-type {\n\n\t.row-actions {\n\t\t@extend .p6;\n\n\t\ta:hover {\n\t\t\tcolor: darken($color-primary-hover, 10%);\n\t\t}\n\n\t\t.trash a {\n\t\t\tcolor: #a00;\n\t\t\t&:hover { color: #f00; }\n\t\t}\n\n\t\t&.visible {\n\t\t\tmargin: {\n\t\t\t\tbottom: 0;\n\t\t\t};\n\t\t\topacity: 1;\n\t\t}\n\n\t}\n\n}\n\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tRow hover\n*\n*--------------------------------------------------------------------------------------------*/\n.acf-internal-post-type {\n\n\t#the-list tr:hover td,\n\t#the-list tr:hover th {\n\t\tbackground-color: lighten($blue-50, 3%);\n\t}\n\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Table Nav\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-internal-post-type {\n\n\t.tablenav {\n\t\tmargin: {\n\t\t\ttop: 24px;\n\t\t\tright: 0;\n\t\t\tbottom: 0;\n\t\t\tleft: 0;\n\t\t};\n\t\tpadding: {\n\t\t\ttop: 0;\n\t\t\tright: 0;\n\t\t\tbottom: 0;\n\t\t\tleft: 0;\n\t\t};\n\t\tcolor: $gray-500;\n\t}\n\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tSearch box\n*\n*--------------------------------------------------------------------------------------------*/\n.acf-internal-post-type #posts-filter p.search-box {\n\tmargin: {\n\t\ttop: 5px;\n\t\tright: 0;\n\t\tbottom: 24px;\n\t\tleft: 0;\n\t};\n\n\t#post-search-input {\n\t\tmin-width: 280px;\n\t\tmargin: {\n\t\t\ttop: 0;\n\t\t\tright: 8px;\n\t\t\tbottom: 0;\n\t\t\tleft: 0;\n\t\t};\n\t}\n\n\t@media screen and (max-width: 768px) {\n\t\tdisplay: flex;\n\t\tbox-sizing: border-box;\n\t\tpadding-right: 24px;\n\t\tmargin-right: 16px;\n\t\tposition: inherit;\n\n\t\t#post-search-input {\n\t\t\tmin-width: auto;\n\t\t}\n\n\t}\n\n}\n\n.rtl.acf-internal-post-type #posts-filter p.search-box {\n\t#post-search-input {\n\t\tmargin: {\n\t\t\tright: 0;\n\t\t\tleft: 8px;\n\t\t};\n\t}\n\n\t@media screen and (max-width: 768px) {\n\t\tpadding-left: 24px;\n\t\tpadding-right: 0;\n\t\tmargin-left: 16px;\n\t\tmargin-right: 0;\n\t}\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tStatus tabs\n*\n*--------------------------------------------------------------------------------------------*/\n.acf-internal-post-type .subsubsub {\n\tdisplay: flex;\n\talign-items: flex-end;\n\theight: 40px;\n\tmargin: {\n\t\tbottom: 16px;\n\t};\n\n\tli {\n\t\tmargin: {\n\t\t\ttop: 0;\n\t\t\tright: 4px;\n\t\t};\n\t\tcolor: $gray-400;\n\t\t@extend .p4;\n\n\t\t.count {\n\t\t\tcolor: $gray-500;\n\t\t}\n\n\t}\n\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tPagination\n*\n*--------------------------------------------------------------------------------------------*/\n.acf-internal-post-type {\n\n\t.tablenav-pages {\n\t\tdisplay: flex;\n\t\talign-items: center;\n\n\t\t&.no-pages{\n\t\t\tdisplay: none;\n\t\t}\n\n\t\t.displaying-num {\n\t\t\tmargin: {\n\t\t\t\ttop: 0;\n\t\t\t\tright: 16px;\n\t\t\t\tbottom: 0;\n\t\t\t\tleft: 0;\n\t\t\t};\n\t\t}\n\n\t\t.pagination-links {\n\t\t\tdisplay: flex;\n\t\t\talign-items: center;\n\n\t\t\t#table-paging {\n\t\t\t\tmargin: {\n\t\t\t\t\ttop: 0;\n\t\t\t\t\tright: 4px;\n\t\t\t\t\tbottom: 0;\n\t\t\t\t\tleft: 8px;\n\t\t\t\t};\n\n\t\t\t\t.total-pages {\n\t\t\t\t\tmargin: {\n\t\t\t\t\t\tright: 0;\n\t\t\t\t\t};\n\t\t\t\t}\n\n\t\t\t}\n\n\t\t}\n\n\t\t// Hide pagination if there's only 1 page\n\t\t&.one-page .pagination-links {\n\t\t\tdisplay: none;\n\t\t}\n\n\t}\n\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tPagination buttons & icons\n*\n*--------------------------------------------------------------------------------------------*/\n.acf-internal-post-type .tablenav-pages .pagination-links .button {\n\tdisplay: inline-flex;\n\talign-items: center;\n\talign-content: center;\n\tjustify-content: center;\n\tmin-width: 40px;\n\tmargin: {\n\t\ttop: 0;\n\t\tright: 0;\n\t\tbottom: 0;\n\t\tleft: 0;\n\t};\n\tpadding: {\n\t\ttop: 0;\n\t\tright: 0;\n\t\tbottom: 0;\n\t\tleft: 0;\n\t};\n\tbackground-color: transparent;\n\n\t// Pagination Buttons\n\t&:nth-child(1),\n\t&:nth-child(2),\n\t&:last-child,\n\t&:nth-last-child(2) {\n\t\tdisplay: inline-block;\n\t\tposition: relative;\n\t\ttext-indent: 100%;\n\t\twhite-space: nowrap;\n\t\toverflow: hidden;\n\t\tmargin: {\n\t\t\tleft: 4px;\n\t\t}\n\n\t\t// Pagination Button Icons\n\t\t&:before {\n\t\t\t$icon-size: 20px;\n\t\t\tcontent: \"\";\n\t\t\tdisplay: block;\n\t\t\tposition: absolute;\n\t\t\twidth: 100%;\n\t\t\theight: 100%;\n\t\t\ttop: 0;\n\t\t\tleft: 0;\n\t\t\t$icon-size: $icon-size;\n\t\t\tbackground-color: $link-color;\n\t\t\tborder-radius: 0;\n\t\t\t-webkit-mask-size: $icon-size;\n\t\t\tmask-size: $icon-size;\n\t\t\t-webkit-mask-repeat: no-repeat;\n\t\t\tmask-repeat: no-repeat;\n\t\t\t-webkit-mask-position: center;\n\t\t\tmask-position: center;\n\t\t}\n\n\t}\n\n\t// First Page Icon\n\t&:nth-child(1):before {\n\t\t-webkit-mask-image: url('../../images/icons/icon-chevron-left-double.svg');\n\t\tmask-image: url('../../images/icons/icon-chevron-left-double.svg');\n\t}\n\n\t// Previous Page Icon\n\t&:nth-child(2):before {\n\t\t-webkit-mask-image: url('../../images/icons/icon-chevron-left.svg');\n\t\tmask-image: url('../../images/icons/icon-chevron-left.svg');\n\t}\n\n\t// Next Page Icon\n\t&:nth-last-child(2):before {\n\t\t-webkit-mask-image: url('../../images/icons/icon-chevron-right.svg');\n\t\tmask-image: url('../../images/icons/icon-chevron-right.svg');\n\t}\n\n\t// Last Page Icon\n\t&:last-child:before {\n\t\t-webkit-mask-image: url('../../images/icons/icon-chevron-right-double.svg');\n\t\tmask-image: url('../../images/icons/icon-chevron-right-double.svg');\n\t}\n\n\t// Pagination Button Hover State\n\t&:hover {\n\t\tborder-color: $blue-600;\n\t\tbackground-color: rgba($link-color, .05);\n\n\t\t&:before {\n\t\t\tbackground-color: $blue-600;\n\t\t}\n\n\t}\n\n\t// Pagination Button Disabled State\n\t&.disabled {\n\t\tbackground-color: transparent !important;\n\n\t\t&.disabled:before {\n\t\t\tbackground-color: $gray-300;\n\t\t}\n\n\t}\n\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Empty state\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-no-field-groups-wrapper,\n.acf-no-taxonomies-wrapper,\n.acf-no-post-types-wrapper,\n.acf-no-options-pages-wrapper,\n.acf-options-preview-wrapper {\n\tdisplay: flex;\n\tjustify-content: center;\n\tpadding: {\n\t\ttop: 48px;\n\t\tbottom: 48px;\n\t};\n\n\t.acf-no-field-groups-inner,\n\t.acf-no-taxonomies-inner,\n\t.acf-no-post-types-inner,\n\t.acf-no-options-pages-inner,\n\t.acf-options-preview-inner {\n\t\tdisplay: flex;\n\t\tflex-wrap: wrap;\n\t\tjustify-content: center;\n\t\talign-content: center;\n\t\talign-items: flex-start;\n\t\ttext-align: center;\n\t\tmax-width: 420px;\n\t\tmin-height: 320px;\n\n\t\timg,\n\t\th2,\n\t\tp {\n\t\t\tflex: 1 0 100%;\n\t\t}\n\n\t\th2 {\n\t\t\t@extend .acf-h2;\n\t\t\tmargin: {\n\t\t\t\ttop: 32px;\n\t\t\t\tbottom: 0;\n\t\t\t};\n\t\t\tpadding: 0;\n\t\t\tcolor: $gray-700;\n\t\t\tline-height: 1.6rem;\n\t\t}\n\n\t\tp {\n\t\t\t@extend .p2;\n\t\t\tmargin: {\n\t\t\t\ttop: 12px;\n\t\t\t\tbottom: 0;\n\t\t\t};\n\t\t\tpadding: 0;\n\t\t\tcolor: $gray-500;\n\n\t\t\t&.acf-small {\n\t\t\t\tdisplay: block;\n\t\t\t\tposition: relative;\n\t\t\t\tmargin: {\n\t\t\t\t\ttop: 32px;\n\t\t\t\t};\n\t\t\t\t@extend .p6;\n\t\t\t}\n\n\t\t}\n\n\n\t\timg {\n\t\t\tmax-width: 284px;\n\t\t\tmargin: {\n\t\t\t\tbottom: 0;\n\t\t\t};\n\t\t}\n\n\t\t.acf-btn {\n\t\t\tmargin: {\n\t\t\t\ttop: 32px;\n\t\t\t};\n\t\t}\n\n\t}\n\n\t.acf-no-post-types-inner,\n\t.acf-no-options-pages-inner {\n\t\timg {\n\t\t\twidth: 106px;\n\t\t\theight: 88px;\n\t\t}\n\t}\n\n\t.acf-no-taxonomies-inner {\n\t\timg {\n\t\t\twidth: 98px;\n\t\t\theight: 88px;\n\t\t}\n\t}\n\n};\n\n.acf-no-field-groups,\n.acf-no-post-types,\n.acf-no-taxonomies,\n.acf-no-options-pages {\n\n\t#the-list tr:hover td,\n\t#the-list tr:hover th,\n\t.acf-admin-field-groups .wp-list-table tr:hover,\n\t.striped > tbody > :nth-child(odd), ul.striped > :nth-child(odd), .alternate {\n\t\tbackground-color: transparent !important;\n\t}\n\n\t.wp-list-table {\n\n\t\tthead,\n\t\ttfoot {\n\t\t\tdisplay: none;\n\t\t}\n\n\t\ta.acf-btn {\n\t\t\tborder: 1px solid rgba(0, 0, 0, 0.16);\n\t\t\tbox-shadow: none;\n\t\t}\n\n\t}\n\n}\n\n.acf-internal-post-type #the-list .no-items td {\n\tvertical-align: middle;\n}\n\n\n/*---------------------------------------------------------------------------------------------\n*\n* Options Page Preview\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-options-preview {\n\t.acf-btn {\n\t\tmargin: {\n\t\t\tleft: 8px;\n\t\t};\n\t};\n\n\t.disabled {\n\t\tbackground-color: $gray-100 !important;\n\t\tcolor: $gray-400 !important;\n\t\tborder: 1px $gray-300 solid;\n\t\tcursor: default !important;\n\t}\n\n\t.acf-options-pages-preview-upgrade-button {\n\t\theight: 48px;\n\t\tpadding: 8px 48px 8px 48px !important;\n\t\tborder-radius: 6px;\n\t\tborder: 1px;\n\t\tgap: 6px;\n\t\tdisplay: inline-flex;\n\t\talign-items: center;\n\t\talign-self: stretch;\n\t\tbackground: $gradient-pro;\n\t\tbox-shadow: inset 0 0 0 1px rgba(255,255,255,.16);\n\t\tbackground-size: 180% 80%;\n\t\tbackground-position: 100% 0;\n\t\ttransition: background-position .5s;\n\t\tborder-radius: $radius-md;\n\t\ttext-decoration: none;\n\n\t\t&:hover {\n\t\t\tbackground-position: 0 0;\n\t\t}\n\n\t\t&:focus {\n\t\t\tborder: none;\n\t\t\toutline: none;\n\t\t\tbox-shadow: none;\n\t\t}\n\n\t\tp {\n\t\t\tmargin: 0;\n\t\t\tpadding: {\n\t\t\t\ttop: 8px;\n\t\t\t\tbottom: 8px;\n\t\t\t}\n\t\t\t@extend .p4;\n\t\t\tfont-weight: normal;\n\t\t\ttext-transform: none;\n\t\t\tcolor: #fff;\n\t\t}\n\n\t\t.acf-icon {\n\t\t\t$icon-size: 20px;\n\t\t\twidth: $icon-size;\n\t\t\theight: $icon-size;\n\t\t\tmargin: {\n\t\t\t\tright: 6px;\n\t\t\t\tleft: -2px;\n\t\t\t};\n\t\t\tbackground-color: $gray-50;\n\t\t}\n\t}\n\n\t.acf_options_preview_wrap a.acf-btn i {\n\t\tmargin-right: -2px !important;\n\t\tmargin-left: 0px !important;\n\t}\n\n\t.acf-pro-label {\n\t\tvertical-align: middle;\n\t}\n\n\t.acf_options_preview_wrap {\n\t\timg {\n\t\t\tmax-height: 88px;\n\t\t}\n\t}\n\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Small screen list table info toggle\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-internal-post-type {\n\n\t.wp-list-table .toggle-row:before {\n\t\ttop: 4px;\n\t\tleft: 16px;\n\t\tborder-radius: 0;\n\t\t$icon-size: 20px;\n\t\tcontent: \"\";\n\t\tdisplay: block;\n\t\tposition: absolute;\n\t\twidth: 16px;\n\t\theight: 16px;\n\t\t$icon-size: $icon-size;\n\t\tbackground-color: $link-color;\n\t\tborder-radius: 0;\n\t\t-webkit-mask-size: $icon-size;\n\t\tmask-size: $icon-size;\n\t\t-webkit-mask-repeat: no-repeat;\n\t\tmask-repeat: no-repeat;\n\t\t-webkit-mask-position: center;\n\t\tmask-position: center;\n\t\t-webkit-mask-image: url('../../images/icons/icon-chevron-down.svg');\n\t\tmask-image: url('../../images/icons/icon-chevron-down.svg');\n\t\ttext-indent: 100%;\n\t\twhite-space: nowrap;\n\t\toverflow: hidden;\n\t}\n\n\t.wp-list-table .is-expanded .toggle-row:before {\n\t\t-webkit-mask-image: url('../../images/icons/icon-chevron-up.svg');\n\t\tmask-image: url('../../images/icons/icon-chevron-up.svg');\n\t}\n\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Small screen checkbox\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-internal-post-type {\n\n\t@media screen and (max-width: $md) {\n\n\t\t.widefat th input[type=\"checkbox\"],\n\t\t.widefat thead td input[type=\"checkbox\"],\n\t\t.widefat tfoot td input[type=\"checkbox\"] {\n\t\t\tmargin-bottom: 0;\n\t\t}\n\n\t}\n\n}","/*---------------------------------------------------------------------------------------------\n*\n* Admin Navigation\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-admin-toolbar {\n\tposition: unset;\n\ttop: 32px;\n\theight: 72px;\n\tz-index: 800;\n\tbackground: $gray-700;\n\tcolor: $gray-400;\n\n\t.acf-admin-toolbar-inner {\n\t\tdisplay: flex;\n\t\tjustify-content: space-between;\n\t\talign-content: center;\n\t\talign-items: center;\n\t\tmax-width: 100%;\n\n\t\t.acf-nav-wrap {\n\t\t\tdisplay: flex;\n\t\t\talign-items: center;\n\n\t\t\t@media screen and (max-width: 1250px) {\n\t\t\t\t.acf-header-tab-acf-post-type,\n\t\t\t\t.acf-header-tab-acf-taxonomy {\n\t\t\t\t\tdisplay: none;\n\t\t\t\t}\n\n\t\t\t\t.acf-more {\n\t\t\t\t\t.acf-header-tab-acf-post-type,\n\t\t\t\t\t.acf-header-tab-acf-taxonomy {\n\t\t\t\t\t\tdisplay: flex;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t}\n\t\t\n\t\t.acf-nav-upgrade-wrap {\n\t\t\tdisplay: flex;\n\t\t\talign-items: center;\n\t\t}\n\n\t\t.acf-nav-wpengine-logo {\n\t\t\tdisplay: inline-flex;\n\t\t\tmargin-left: 24px;\n\n\t\t\t@media screen and (max-width: 1000px) {\n\t\t\t\tdisplay: none;\n\t\t\t}\n\t\t}\n\t}\n\n\t@media screen and (max-width: $md) {\n\t\tposition: static;\n\t}\n\n\t.acf-logo {\n\t\tdisplay: flex;\n\t\tmargin: {\n\t\t\tright: 24px;\n\t\t}\n\t\ttext-decoration: none;\n\t\t\n\t\t.acf-pro-label {\n\t\t\tmargin: {\n\t\t\t\tleft: 8px;\n\t\t\t};\n\t\t}\n\n\t\timg {\n\t\t\tdisplay: block;\n\t\t\tmax-width: 55px;\n\t\t\tline-height: 0%;\n\t\t}\n\t}\n\n\th2 {\n\t\tdisplay: none;\n\t\tcolor: $gray-50;\n\t}\n\n\t.acf-tab {\n\t\tdisplay: flex;\n\t\talign-items: center;\n\t\tbox-sizing: border-box;\n\t\tmin-height: 40px;\n\t\tmargin: {\n\t\t\tright: 8px;\n\t\t}\n\t\tpadding: {\n\t\t\ttop: 8px;\n\t\t\tright: 16px;\n\t\t\tbottom: 8px;\n\t\t\tleft: 16px;\n\t\t}\n\t\tborder: {\n\t\t\twidth: 1px;\n\t\t\tstyle: solid;\n\t\t\tcolor: transparent;\n\t\t}\n\t\tborder-radius: $radius-md;\n\t\t@extend .p4;\n\t\tcolor: $gray-400;\n\t\ttext-decoration: none;\n\n\t\t&.is-active {\n\t\t\tbackground-color: $gray-600;\n\t\t\tcolor: #fff;\n\t\t}\n\t\t&:hover {\n\t\t\tbackground-color: $gray-600;\n\t\t\tcolor: $gray-50;\n\t\t}\n\t\t&:focus-visible {\n\t\t\tborder: {\n\t\t\t\twidth: 1px;\n\t\t\t\tstyle: solid;\n\t\t\t\tcolor: $gray-500;\n\t\t\t}\n\t\t}\n\t\t&:focus {\n\t\t\tbox-shadow: none;\n\t\t}\n\t}\n\n\t.acf-more {\n\t\t&:hover {\n\t\t\t.acf-tab.acf-more-tab {\n\t\t\t\tbackground-color: $gray-600;\n\t\t\t\tcolor: $gray-50;\n\t\t\t}\n\t\t}\n\t\t\n\t\tul {\n\t\t\tdisplay: none;\n\t\t\tposition: absolute;\n\t\t\tbox-sizing: border-box;\n\t\t\tbackground: #fff;\n\t\t\tz-index: 1051;\n\t\t\toverflow: hidden;\n\t\t\tmin-width: 280px;\n\t\t\tmargin: {\n\t\t\t\ttop: 0;\n\t\t\t\tright: 0;\n\t\t\t\tbottom: 0;\n\t\t\t\tleft: 0;\n\t\t\t};\n\t\t\tpadding: 0;\n\t\t\tborder-radius: $radius-lg;\n\t\t\tbox-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.04), 0px 8px 23px rgba(0, 0, 0, 0.12);\n\t\t\t\n\t\t\t.acf-wp-engine {\n\t\t\t\tdisplay: flex;\n\t\t\t\talign-items: center;\n\t\t\t\tjustify-content: space-between;\n\t\t\t\tmin-height: 48px;\n\t\t\t\tborder-top: 1px solid rgba(0, 0, 0, 0.08);\n\t\t\t\tbackground: #ECFBFC;\n\t\t\t\t\n\t\t\t\ta {\n\t\t\t\t\tdisplay: flex;\n\t\t\t\t\twidth: 100%;\n\t\t\t\t\tjustify-content: space-between;\n\t\t\t\t\tborder-top: none;\n\t\t\t\t}\n\t\t\t\t\n\t\t\t}\n\n\t\t\tli {\n\t\t\t\tmargin: 0;\n\t\t\t\tpadding: 0 16px;\n\n\t\t\t\t.acf-header-tab-acf-post-type,\n\t\t\t\t.acf-header-tab-acf-taxonomy {\n\t\t\t\t\tdisplay: none;\n\t\t\t\t}\n\n\t\t\t\t&.acf-more-section-header {\n\t\t\t\t\tbackground: $gray-50;\n\t\t\t\t\tpadding: 1px 0 0 0;\n\t\t\t\t\tmargin-top: -1px;\n\t\t\t\t\tborder-top: 1px solid $gray-200;\n\t\t\t\t\tborder-bottom: 1px solid $gray-200;\n\n\t\t\t\t\tspan {\n\t\t\t\t\t\tcolor: $gray-600;\n\t\t\t\t\t\tfont-size: 12px;\n\t\t\t\t\t\tfont-weight: bold;\n\n\t\t\t\t\t\t&:hover {\n\t\t\t\t\t\t\tbackground: $gray-50;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\t\n\t\t\t\t// Links\n\t\t\t\ta {\n\t\t\t\t\tmargin: 0;\n\t\t\t\t\tpadding: 0;\n\t\t\t\t\tcolor: $gray-800;\n\t\t\t\t\tborder-radius: 0;\n\t\t\t\t\tborder-top: {\n\t\t\t\t\t\twidth: 1px;\n\t\t\t\t\t\tstyle: solid;\n\t\t\t\t\t\tcolor: $gray-100;\n\t\t\t\t\t};\n\t\t\t\t\t\n\t\t\t\t\t&:hover,\n\t\t\t\t\t&.acf-tab.is-active {\n\t\t\t\t\t\tbackground-color: unset;\n\t\t\t\t\t\tcolor: $blue-500;\n\t\t\t\t\t}\n\t\t\t\t\t\n\t\t\t\t\ti.acf-icon {\n\t\t\t\t\t\tdisplay: none !important;\n\t\t\t\t\t\t$icon-size: 16px;\n\t\t\t\t\t\twidth: $icon-size;\n\t\t\t\t\t\theight: $icon-size;\n\t\t\t\t\t\t-webkit-mask-size: $icon-size;\n\t\t\t\t\t\tmask-size: $icon-size;\n\t\t\t\t\t\tbackground-color: $gray-400 !important;\n\t\t\t\t\t}\n\n\t\t\t\t\t.acf-requires-pro {\n\t\t\t\t\t\tjustify-content: center;\n\t\t\t\t\t\talign-items: center;\n\t\t\t\t\t\tcolor: white;\n\t\t\t\t\t\tbackground: $gradient-pro;\n\t\t\t\t\t\tbackground-size: 140% 20%;\n\t\t\t\t\t\tbackground-position: 100% 0;\n\t\t\t\t\t\tborder-radius: 100px;\n\t\t\t\t\t\tfont-size: 11px;\n\t\t\t\t\t\tposition: absolute;\n\t\t\t\t\t\tright: 16px;\n\t\t\t\t\t\tpadding: {\n\t\t\t\t\t\t\tright: 6px;\n\t\t\t\t\t\t\tleft: 6px;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\timg.acf-wp-engine-pro {\n\t\t\t\t\t\tdisplay: block;\n\t\t\t\t\t\theight: 16px;\n\t\t\t\t\t\twidth: auto;\n\t\t\t\t\t}\n\n\t\t\t\t\t.acf-wp-engine-upsell-pill {\n\t\t\t\t\t\tdisplay: inline-flex;\n\t\t\t\t\t\tjustify-content: center;\n\t\t\t\t\t\talign-items: center;\n\t\t\t\t\t\tmin-height: 22px;\n\t\t\t\t\t\tborder-radius: 100px;\n\t\t\t\t\t\tfont-size: 11px;\n\t\t\t\t\t\tpadding: {\n\t\t\t\t\t\t\tright: 8px;\n\t\t\t\t\t\t\tleft: 8px;\n\t\t\t\t\t\t}\n\t\t\t\t\t\tbackground: #0ECAD4;\n\t\t\t\t\t\tcolor: #FFFFFF;\n\t\t\t\t\t\ttext-shadow: 0px 1px 0 rgba(0, 0, 0, 0.12);\n\t\t\t\t\t\ttext-transform: uppercase;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\t\n\t\t\t\t// First list item\n\t\t\t\t&:first-child {\n\t\t\t\t\ta {\n\t\t\t\t\t\tborder-bottom: none;\n\t\t\t\t\t}\t\n\t\t\t\t}\n\t\t\t\t\n\t\t\t}\n\t\t\t\n\t\t\t&:hover,\n\t\t\t&:focus {\n\t\t\t\tdisplay: block;\n\t\t\t}\n\t\t}\n\t\t&:hover,\n\t\t&:focus {\n\t\t\tul {\n\t\t\t\tdisplay: block;\n\t\t\t}\n\t\t}\n\t}\n\n\t// Within wpcontent.\n\t#wpcontent & {\n\t\tbox-sizing: border-box;\n\t\tmargin-left: -20px;\n\t\tpadding: {\n\t\t\ttop: 16px;\n\t\t\tright: 32px;\n\t\t\tbottom: 16px;\n\t\t\tleft: 32px;\n\t\t}\n\t}\n\n\t// Mobile\n\t@media screen and (max-width: 600px) {\n\t\t& {\n\t\t\tdisplay: none;\n\t\t}\n\t}\n}\n\n.rtl {\n\t#wpcontent .acf-admin-toolbar {\n\t\tmargin-left: 0;\n\t\tmargin-right: -20px;\n\n\t\t.acf-tab {\n\t\t\tmargin: {\n\t\t\t\tleft: 8px;\n\t\t\t\tright: 0;\n\t\t\t}\n\t\t}\n\t}\n\n\t.acf-logo {\n\t\tmargin: {\n\t\t\tright: 0;\n\t\t\tleft: 32px;\n\t\t}\n\t}\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Admin Toolbar Icons\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-admin-toolbar {\n\t.acf-tab,\n\t.acf-more {\n\t\ti.acf-icon {\n\t\t\tdisplay: none; // Icons only shown for specified nav items below\n\t\t\tmargin: {\n\t\t\t\tright: 8px;\n\t\t\t\tleft: -2px;\n\t\t\t}\n\t\t\t\n\t\t\t&.acf-icon-dropdown {\n\t\t\t\t-webkit-mask-image: url(\"../../images/icons/icon-chevron-down.svg\");\n\t\t\t\tmask-image: url(\"../../images/icons/icon-chevron-down.svg\");\n\t\t\t\t$icon-size: 16px;\n\t\t\t\twidth: $icon-size;\n\t\t\t\theight: $icon-size;\n\t\t\t\t-webkit-mask-size: $icon-size;\n\t\t\t\tmask-size: $icon-size;\n\t\t\t\tmargin: {\n\t\t\t\t\tright: -6px;\n\t\t\t\t\tleft: 6px;\n\t\t\t\t};\n\t\t\t}\n\t\t\t\n\t\t}\n\n\t\t// Only show icons for specified nav items, stops third party plugin items with no icon appearing broken\n\t\t&.acf-header-tab-acf-field-group,\n\t\t&.acf-header-tab-acf-post-type,\n\t\t&.acf-header-tab-acf-taxonomy,\n\t\t&.acf-header-tab-acf-tools,\n\t\t&.acf-header-tab-acf-settings-updates,\n\t\t&.acf-header-tab-acf-more {\n\t\t\ti.acf-icon {\n\t\t\t\tdisplay: inline-flex;\n\t\t\t}\n\t\t}\n\n\t\t&.is-active,\n\t\t&:hover {\n\t\t\ti.acf-icon {\n\t\t\t\tbackground-color: $gray-200;\n\t\t\t}\n\t\t}\n\t}\n\n\t.rtl & .acf-tab {\n\t\ti.acf-icon {\n\t\t\tmargin: {\n\t\t\t\tright: -2px;\n\t\t\t\tleft: 8px;\n\t\t\t}\n\t\t}\n\t}\n\n\t// Field groups tab\n\t.acf-header-tab-acf-field-group {\n\t\ti.acf-icon {\n\t\t\t$icon-url: url(\"../../images/icons/icon-field-groups.svg\");\n\t\t\t-webkit-mask-image: $icon-url;\n\t\t\tmask-image: $icon-url;\n\t\t}\n\t}\n\n\t// Post types tab\n\t.acf-header-tab-acf-post-type {\n\t\ti.acf-icon {\n\t\t\t$icon-url: url(\"../../images/icons/icon-post-type.svg\");\n\t\t\t-webkit-mask-image: $icon-url;\n\t\t\tmask-image: $icon-url;\n\t\t}\n\t}\n\n\t// Taxonomies tab\n\t.acf-header-tab-acf-taxonomy {\n\t\ti.acf-icon {\n\t\t\t$icon-url: url(\"../../images/icons/icon-taxonomies.svg\");\n\t\t\t-webkit-mask-image: $icon-url;\n\t\t\tmask-image: $icon-url;\n\t\t}\n\t}\n\n\t// Tools tab\n\t.acf-header-tab-acf-tools {\n\t\ti.acf-icon {\n\t\t\t$icon-url: url(\"../../images/icons/icon-tools.svg\");\n\t\t\t-webkit-mask-image: $icon-url;\n\t\t\tmask-image: $icon-url;\n\t\t}\n\t}\n\n\t// Updates tab\n\t.acf-header-tab-acf-settings-updates {\n\t\ti.acf-icon {\n\t\t\t$icon-url: url(\"../../images/icons/icon-updates.svg\");\n\t\t\t-webkit-mask-image: $icon-url;\n\t\t\tmask-image: $icon-url;\n\t\t}\n\t}\n\t\n\t// More tab\n\t.acf-header-tab-acf-more {\n\t\ti.acf-icon-more {\n\t\t\t$icon-url: url(\"../../images/icons/icon-extended-menu.svg\");\n\t\t\t-webkit-mask-image: $icon-url;\n\t\t\tmask-image: $icon-url;\n\t\t}\n\t}\n}\n","/*---------------------------------------------------------------------------------------------\n*\n* Hide WP default controls\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-admin-page {\n\n\t// Prevents flicker caused by notice moving locations.\n\t#wpbody-content > .notice:not(.inline, .below-h2) {\n\t\tdisplay: none;\n\t}\n\n\th1.wp-heading-inline {\n\t\tdisplay: none;\n\t}\n\n\t.wrap .wp-heading-inline + .page-title-action {\n\t\tdisplay: none;\n\t}\n\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Headerbar\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-headerbar {\n\tdisplay: flex;\n\talign-items: center;\n\tposition: sticky;\n\ttop: 32px;\n\tz-index: 700;\n\tbox-sizing: border-box;\n\tmin-height: 72px;\n\tmargin: {\n\t\tleft: -20px;\n\t};\n\tpadding: {\n\t\ttop: 8px;\n\t\tright: 32px;\n\t\tbottom: 8px;\n\t\tleft: 32px;\n\t};\n\tbackground-color: #fff;\n\tbox-shadow: $elevation-01;\n\n\t.acf-headerbar-inner {\n\t\tflex: 1 1 auto;\n\t\tdisplay: flex;\n\t\talign-items: center;\n\t\tjustify-content: space-between;\n\t\tmax-width: $max-width;\n\t\tgap: 8px;\n\t}\n\n\t.acf-page-title {\n\t\tdisplay: flex;\n\t\talign-items: center;\n\t\tgap: 8px;\n\t\tmargin: {\n\t\t\ttop: 0;\n\t\t\tright: 16px;\n\t\t\tbottom: 0;\n\t\t\tleft: 0;\n\t\t};\n\t\tpadding: {\n\t\t\ttop: 0;\n\t\t\tright: 0;\n\t\t\tbottom: 0;\n\t\t\tleft: 0;\n\t\t};\n\n\t\t.acf-duplicated-from {\n\t\t\tcolor: $gray-400;\n\t\t}\n\t\t.acf-pro-label {\n\t\t\tbox-shadow: none;\n\t\t\tborder: 1px solid rgba(0, 0, 0, 0.20);\n\t\t}\n\t}\n\n\t@media screen and (max-width: $md) {\n\t\tposition: static;\n\t}\n\n\t@media screen and (max-width: 600px) {\n\t\tjustify-content: space-between;\n\t\tposition: relative;\n\t\ttop: 46px;\n\t\tmin-height: 64px;\n\t\tpadding: {\n\t\t\tright: 12px;\n\t\t};\n\t}\n\n\t.acf-headerbar-content {\n\t\tflex: 1 1 auto;\n\t\tdisplay: flex;\n\t\talign-items: center;\n\n\t\t@media screen and (max-width: $md) {\n\t\t\tflex-wrap: wrap;\n\n\t\t\t.acf-headerbar-title,\n\t\t\t.acf-title-wrap {\n\t\t\t\tflex: 1 1 100%;\n\t\t\t}\n\n\t\t\t.acf-title-wrap {\n\t\t\t\tmargin: {\n\t\t\t\t\ttop: 8px;\n\t\t\t\t};\n\t\t\t}\n\n\t\t}\n\n\t}\n\n\t.acf-input-error {\n\t\tborder: 1px rgba($color-danger, .5) solid !important;\n\t\tbox-shadow: 0px 0px 0px 3px rgba(209, 55, 55, 0.12), 0px 0px 0px rgba(255, 54, 54, 0.25) !important;\n\t\tbackground-image: url('../../images/icons/icon-warning-alt-red.svg');\n\t\tbackground-position: right 10px top 50%;\n\t\tbackground-size: 20px;\n\t\tbackground-repeat: no-repeat;\n\n\t\t&:focus {\n\t\t\toutline: none !important;\n\t\t\tborder: 1px rgba($color-danger, .8) solid !important;\n\t\t\tbox-shadow: 0px 0px 0px 3px rgba(209, 55, 55, 0.16), 0px 0px 0px rgba(255, 54, 54, 0.25) !important;\n\t\t}\n\t}\n\n\t.acf-headerbar-title-field {\n\t\tmin-width: 320px;\n\n\t\t@media screen and (max-width: $md) {\n\t\t\tmin-width: 100%;\n\t\t}\n\t}\n\n\t.acf-headerbar-actions {\n\t\tdisplay: flex;\n\n\t\t.acf-btn {\n\t\t\tmargin: {\n\t\t\t\tleft: 8px;\n\t\t\t};\n\t\t};\n\n\t\t.disabled {\n\t\t\tbackground-color: $gray-100;\n\t\t\tcolor: $gray-400 !important;\n\t\t\tborder: 1px $gray-300 solid;\n\t\t\tcursor: default;\n\t\t}\n\n\t}\n\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Edit Field Group Headerbar\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-headerbar-field-editor {\n\tposition: sticky;\n\ttop: 32px;\n\tz-index: 1020;\n\tmargin: {\n\t\tleft: -20px;\n\t};\n\twidth: calc(100% + 20px);\n\n\t@media screen and (max-width: $md) {\n\t\tposition: relative;\n\t\ttop: 0;\n\t\twidth: 100%;\n\t\tmargin: {\n\t\t\tleft: 0;\n\t\t};\n\t\tpadding: {\n\t\t\tright: 8px;\n\t\t\tleft: 8px;\n\t\t};\n\t}\n\n\t@media screen and (max-width: $sm) {\n\t\tposition: relative;\n\t\ttop: 46px;\n\t}\n\n\n\t.acf-headerbar-inner {\n\n\t\t@media screen and (max-width: $md) {\n\t\t\tflex-wrap: wrap;\n\t\t\tjustify-content: flex-start;\n\t\t\talign-content: flex-start;\n\t\t\talign-items: flex-start;\n\t\t\twidth: 100%;\n\n\t\t\t.acf-page-title {\n\t\t\t\tflex: 1 1 auto;\n\t\t\t}\n\n\t\t\t.acf-headerbar-actions {\n\t\t\t\tflex: 1 1 100%;\n\t\t\t\tmargin-top: 8px;\n\t\t\t\tgap: 8px;\n\n\t\t\t\t.acf-btn {\n\t\t\t\t\twidth: 100%;\n\t\t\t\t\tdisplay: inline-flex;\n\t\t\t\t\tjustify-content: center;\n\t\t\t\t\tmargin: 0;\n\t\t\t\t}\n\n\t\t\t}\n\n\t\t}\n\n\t}\n\n\t.acf-page-title {\n\t\tmargin: {\n\t\t\tright: 16px;\n\t\t};\n\t}\n\n}\n\n.rtl .acf-headerbar,\n.rtl .acf-headerbar-field-editor {\n\tmargin-left: 0;\n\tmargin-right: -20px;\n\n\t.acf-page-title {\n\t\tmargin: {\n\t\t\tleft: 16px;\n\t\t\tright: 0;\n\t\t};\n\t}\n\n\t.acf-headerbar-actions {\n\t\t.acf-btn {\n\t\t\tmargin: {\n\t\t\t\tleft: 0;\n\t\t\t\tright: 8px;\n\t\t\t};\n\t\t};\n\n\t}\n}\n","/*---------------------------------------------------------------------------------------------\n*\n* ACF Buttons\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-btn {\n\tdisplay: inline-flex;\n\talign-items: center;\n\tbox-sizing: border-box;\n\tmin-height: 40px;\n\tpadding: {\n\t\ttop: 8px;\n\t\tright: 16px;\n\t\tbottom: 8px;\n\t\tleft: 16px;\n\t}\n\tbackground-color: $color-primary;\n\tborder-radius: $radius-md;\n\tborder: {\n\t\twidth: 1px;\n\t\tstyle: solid;\n\t\tcolor: rgba($gray-900, 20%);\n\t}\n\ttext-decoration: none;\n\tcolor: #fff !important;\n\ttransition: all 0.2s ease-in-out;\n\ttransition-property: background, border, box-shadow;\n\n\t&:hover {\n\t\tbackground-color: $color-primary-hover;\n\t\tcolor: #fff;\n\t\tcursor: pointer;\n\t}\n\n\t&:disabled, &.disabled {\n\t\tbackground-color: $gray-100;\n\t\tborder-color: $gray-200;\n\t\tcolor: $gray-400 !important;\n\t\ttransition: none;\n\t\tpointer-events: none;\n\t}\n\n\t&.acf-btn-sm {\n\t\tmin-height: 32px;\n\t\tpadding: {\n\t\t\ttop: 4px;\n\t\t\tright: 12px;\n\t\t\tbottom: 4px;\n\t\t\tleft: 12px;\n\t\t}\n\t\t@extend .p4;\n\t}\n\n\t&.acf-btn-secondary {\n\t\tbackground-color: transparent;\n\t\tcolor: $color-primary !important;\n\t\tborder-color: $color-primary;\n\n\t\t&:hover {\n\t\t\tbackground-color: lighten($blue-50, 2%);\n\t\t}\n\t}\n\n\t&.acf-btn-muted {\n\t\tbackground-color: $gray-500;\n\t\tcolor: white;\n\t\theight: 48px;\n\t\tpadding: 8px 28px 8px 28px !important;\n\t\tborder-radius: 6px;\n\t\tborder: 1px;\n\t\tgap: 6px;\n\t\t\n\t\t&:hover {\n\t\t\tbackground-color: $gray-600 !important;\n\t\t}\n\t}\n\n\t&.acf-btn-tertiary {\n\t\tbackground-color: transparent;\n\t\tcolor: $gray-500 !important;\n\t\tborder-color: $gray-300;\n\n\t\t&:hover {\n\t\t\tcolor: $gray-500 !important;\n\t\t\tborder-color: $gray-400;\n\t\t}\n\t}\n\n\t&.acf-btn-clear {\n\t\tbackground-color: transparent;\n\t\tcolor: $gray-500 !important;\n\t\tborder-color: transparent;\n\n\t\t&:hover {\n\t\t\tcolor: $blue-500 !important;\n\t\t}\n\t}\n\n\t&.acf-btn-pro {\n\t\tbackground: $gradient-pro;\n\t\tbackground-size: 180% 80%;\n\t\tbackground-position: 100% 0;\n\t\ttransition: background-position 0.5s;\n\n\t\t&:hover {\n\t\t\tbackground-position: 0 0;\n\t\t}\n\t}\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Button icons\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-btn {\n\ti.acf-icon {\n\t\t$icon-size: 20px;\n\t\twidth: $icon-size;\n\t\theight: $icon-size;\n\t\t-webkit-mask-size: $icon-size;\n\t\tmask-size: $icon-size;\n\t\tmargin: {\n\t\t\tright: 6px;\n\t\t\tleft: -4px;\n\t\t}\n\t}\n\n\t&.acf-btn-sm {\n\t\ti.acf-icon {\n\t\t\t$icon-size: 16px;\n\t\t\twidth: $icon-size;\n\t\t\theight: $icon-size;\n\t\t\t-webkit-mask-size: $icon-size;\n\t\t\tmask-size: $icon-size;\n\t\t\tmargin: {\n\t\t\t\tright: 6px;\n\t\t\t\tleft: -2px;\n\t\t\t}\n\t\t}\n\t}\n}\n\n.rtl .acf-btn {\n\ti.acf-icon {\n\t\tmargin: {\n\t\t\tright: -4px;\n\t\t\tleft: 6px;\n\t\t}\n\t}\n\n\t&.acf-btn-sm {\n\t\ti.acf-icon {\n\t\t\tmargin: {\n\t\t\t\tright: -4px;\n\t\t\t\tleft: 2px;\n\t\t\t}\n\t\t}\n\t}\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Delete field group button\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-btn.acf-delete-field-group {\n\t&:hover {\n\t\tbackground-color: lighten($color-danger, 44%);\n\t\tborder-color: $color-danger !important;\n\t\tcolor: $color-danger !important;\n\t}\n}\n","/*--------------------------------------------------------------------------------------------\n*\n*\tIcon base styling\n*\n*--------------------------------------------------------------------------------------------*/\n.acf-internal-post-type,\n.post-type-acf-field-group {\n\ti.acf-icon {\n\t\t$icon-size: 20px;\n\t\tdisplay: inline-flex;\n\t\twidth: $icon-size;\n\t\theight: $icon-size;\n\t\tbackground-color: currentColor;\n\t\tborder: none;\n\t\tborder-radius: 0;\n\t\t-webkit-mask-size: contain;\n\t\tmask-size: contain;\n\t\t-webkit-mask-repeat: no-repeat;\n\t\tmask-repeat: no-repeat;\n\t\t-webkit-mask-position: center;\n\t\tmask-position: center;\n\t\ttext-indent: 500%;\n\t\twhite-space: nowrap;\n\t\toverflow: hidden;\n\t}\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tIcons\n*\n*--------------------------------------------------------------------------------------------*/\n.acf-admin-page {\n\n\t// Action icons for Flexible Content Field\n\ti.acf-field-setting-fc-delete, i.acf-field-setting-fc-duplicate {\n\t\tbox-sizing: border-box;\n\n\t\t/* Auto layout */\n\n\t\tdisplay: flex;\n\t\tflex-direction: row;\n\t\tjustify-content: center;\n\t\talign-items: center;\n\t\tpadding: 8px;\n\t\tcursor: pointer;\n\n\t\twidth: 32px;\n\t\theight: 32px;\n\n\t\t/* Base / White */\n\n\t\tbackground: #FFFFFF;\n\t\t/* Gray/300 */\n\n\t\tborder: 1px solid $gray-300;\n\t\t/* Elevation/01 */\n\n\t\tbox-shadow: $elevation-01;\n\t\tborder-radius: 6px;\n\n\t\t/* Inside auto layout */\n\n\t\tflex: none;\n\t\torder: 0;\n\t\tflex-grow: 0;\n\t}\n\n\ti.acf-icon-plus {\n\t\t-webkit-mask-image: url(\"../../images/icons/icon-add.svg\");\n\t\tmask-image: url(\"../../images/icons/icon-add.svg\");\n\t}\n\n\ti.acf-icon-stars {\n\t\t-webkit-mask-image: url(\"../../images/icons/icon-stars.svg\");\n\t\tmask-image: url(\"../../images/icons/icon-stars.svg\");\n\t}\n\n\ti.acf-icon-help {\n\t\t-webkit-mask-image: url(\"../../images/icons/icon-help.svg\");\n\t\tmask-image: url(\"../../images/icons/icon-help.svg\");\n\t}\n\n\ti.acf-icon-key {\n\t\t-webkit-mask-image: url(\"../../images/icons/icon-key.svg\");\n\t\tmask-image: url(\"../../images/icons/icon-key.svg\");\n\t}\n\n\ti.acf-icon-regenerate {\n\t\t-webkit-mask-image: url(\"../../images/icons/icon-regenerate.svg\");\n\t\tmask-image: url(\"../../images/icons/icon-regenerate.svg\");\n\t}\n\n\ti.acf-icon-trash, button.acf-icon-trash {\n\t\t-webkit-mask-image: url(\"../../images/icons/icon-trash.svg\");\n\t\tmask-image: url(\"../../images/icons/icon-trash.svg\");\n\t}\n\t\n\ti.acf-icon-extended-menu, button.acf-icon-extended-menu {\n\t\t-webkit-mask-image: url(\"../../images/icons/icon-extended-menu.svg\");\n\t\tmask-image: url(\"../../images/icons/icon-extended-menu.svg\");\n\t}\n\n\ti.acf-icon.-duplicate, button.acf-icon-duplicate {\n\t\t-webkit-mask-image: url(\"../../images/field-type-icons/icon-field-clone.svg\");\n\t\tmask-image: url(\"../../images/field-type-icons/icon-field-clone.svg\");\n\n\t\t&:before,\n\t\t&:after {\n\t\t\tcontent: none;\n\t\t}\n\t}\n\n\ti.acf-icon-arrow-right {\n\t\t-webkit-mask-image: url(\"../../images/icons/icon-arrow-right.svg\");\n\t\tmask-image: url(\"../../images/icons/icon-arrow-right.svg\");\n\t}\n\n\ti.acf-icon-arrow-up-right {\n\t\t-webkit-mask-image: url(\"../../images/icons/icon-arrow-up-right.svg\");\n\t\tmask-image: url(\"../../images/icons/icon-arrow-up-right.svg\");\n\t}\n\n\ti.acf-icon-arrow-left {\n\t\t-webkit-mask-image: url(\"../../images/icons/icon-arrow-left.svg\");\n\t\tmask-image: url(\"../../images/icons/icon-arrow-left.svg\");\n\t}\n\n\ti.acf-icon-chevron-right,\n\t.acf-icon.-right {\n\t\t-webkit-mask-image: url(\"../../images/icons/icon-chevron-right.svg\");\n\t\tmask-image: url(\"../../images/icons/icon-chevron-right.svg\");\n\t}\n\n\ti.acf-icon-chevron-left,\n\t.acf-icon.-left {\n\t\t-webkit-mask-image: url(\"../../images/icons/icon-chevron-left.svg\");\n\t\tmask-image: url(\"../../images/icons/icon-chevron-left.svg\");\n\t}\n\n\ti.acf-icon-key-solid {\n\t\t-webkit-mask-image: url(\"../../images/icons/icon-key-solid.svg\");\n\t\tmask-image: url(\"../../images/icons/icon-key-solid.svg\");\n\t}\n\n\ti.acf-icon-globe,\n\t.acf-icon.-globe {\n\t\t-webkit-mask-image: url(\"../../images/icons/icon-globe.svg\");\n\t\tmask-image: url(\"../../images/icons/icon-globe.svg\");\n\t}\n\n\ti.acf-icon-image,\n\t.acf-icon.-picture {\n\t\t-webkit-mask-image: url(\"../../images/field-type-icons/icon-field-image.svg\");\n\t\tmask-image: url(\"../../images/field-type-icons/icon-field-image.svg\");\n\t}\n\t\n\ti.acf-icon-warning {\n\t\t-webkit-mask-image: url(\"../../images/icons/icon-warning-alt.svg\");\n\t\tmask-image: url(\"../../images/icons/icon-warning-alt.svg\");\n\t}\n\t\n\ti.acf-icon-warning-red {\n\t\t-webkit-mask-image: url(\"../../images/icons/icon-warning-alt-red.svg\");\n\t\tmask-image: url(\"../../images/icons/icon-warning-alt-red.svg\");\n\t}\n\n\ti.acf-icon-dots-grid {\n\t\t-webkit-mask-image: url(\"../../images/icons/icon-dots-grid.svg\");\n\t\tmask-image: url(\"../../images/icons/icon-dots-grid.svg\");\n\t}\n\n\ti.acf-icon-play {\n\t\t-webkit-mask-image: url(\"../../images/icons/icon-play.svg\");\n\t\tmask-image: url(\"../../images/icons/icon-play.svg\");\n\t}\n\t\n\ti.acf-icon-lock {\n\t\t-webkit-mask-image: url(\"../../images/icons/icon-lock.svg\");\n\t\tmask-image: url(\"../../images/icons/icon-lock.svg\");\n\t}\n\n\ti.acf-icon-document {\n\t\t-webkit-mask-image: url(\"../../images/icons/icon-document.svg\");\n\t\tmask-image: url(\"../../images/icons/icon-document.svg\");\n\t}\n\t/*--------------------------------------------------------------------------------------------\n\t*\n\t*\tInactive group icon\n\t*\n\t*--------------------------------------------------------------------------------------------*/\n\t.post-type-acf-field-group,\n\t.acf-internal-post-type {\n\t\t.post-state {\n\t\t\tfont-weight: normal;\n\n\t\t\t.dashicons.dashicons-hidden {\n\t\t\t\t$icon-size: 18px;\n\t\t\t\tdisplay: inline-flex;\n\t\t\t\twidth: $icon-size;\n\t\t\t\theight: $icon-size;\n\t\t\t\tbackground-color: $gray-400;\n\t\t\t\tborder: none;\n\t\t\t\tborder-radius: 0;\n\t\t\t\t-webkit-mask-size: $icon-size;\n\t\t\t\tmask-size: $icon-size;\n\t\t\t\t-webkit-mask-repeat: no-repeat;\n\t\t\t\tmask-repeat: no-repeat;\n\t\t\t\t-webkit-mask-position: center;\n\t\t\t\tmask-position: center;\n\t\t\t\t-webkit-mask-image: url(\"../../images/icons/icon-hidden.svg\");\n\t\t\t\tmask-image: url(\"../../images/icons/icon-hidden.svg\");\n\n\t\t\t\t&:before {\n\t\t\t\t\tdisplay: none;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tEdit field group page postbox header icons\n*\n*--------------------------------------------------------------------------------------------*/\n#acf-field-group-fields,\n#acf-field-group-options,\n#acf-advanced-settings {\n\t.postbox-header,\n\t.acf-sub-field-list-header {\n\t\th2,\n\t\th3 {\n\t\t\tdisplay: inline-flex;\n\t\t\tjustify-content: flex-start;\n\t\t\talign-content: stretch;\n\t\t\talign-items: center;\n\n\t\t\t&:before {\n\t\t\t\tcontent: \"\";\n\t\t\t\t$icon-size: 20px;\n\t\t\t\tdisplay: inline-block;\n\t\t\t\twidth: $icon-size;\n\t\t\t\theight: $icon-size;\n\t\t\t\tmargin: {\n\t\t\t\t\tright: 8px;\n\t\t\t\t}\n\t\t\t\tbackground-color: $gray-400;\n\t\t\t\tborder: none;\n\t\t\t\tborder-radius: 0;\n\t\t\t\t-webkit-mask-size: contain;\n\t\t\t\tmask-size: contain;\n\t\t\t\t-webkit-mask-repeat: no-repeat;\n\t\t\t\tmask-repeat: no-repeat;\n\t\t\t\t-webkit-mask-position: center;\n\t\t\t\tmask-position: center;\n\t\t\t}\n\t\t}\n\t}\n}\n\n.rtl #acf-field-group-fields,\n.rtl #acf-field-group-options {\n\t.postbox-header,\n\t.acf-sub-field-list-header {\n\t\th2,\n\t\th3 {\n\t\t\t&:before {\n\t\t\t\tmargin: {\n\t\t\t\t\tright: 0;\n\t\t\t\t\tleft: 8px;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n}\n\n// Field icon\n#acf-field-group-fields .postbox-header h2:before,\nh3.acf-sub-field-list-title:before,\n.acf-link-field-groups-popup h3:before {\n\t-webkit-mask-image: url(\"../../images/icons/icon-fields.svg\");\n\tmask-image: url(\"../../images/icons/icon-fields.svg\");\n}\n\n// Create options page modal icon\n.acf-create-options-page-popup h3:before {\n\t-webkit-mask-image: url(\"../../images/icons/icon-sliders.svg\");\n\tmask-image: url(\"../../images/icons/icon-sliders.svg\");\n}\n\n// Settings icon\n#acf-field-group-options .postbox-header h2:before {\n\t-webkit-mask-image: url(\"../../images/icons/icon-settings.svg\");\n\tmask-image: url(\"../../images/icons/icon-settings.svg\");\n}\n\n// Layout icon\n.acf-field-setting-fc_layout .acf-field-settings-fc_head label:before {\n\t-webkit-mask-image: url(\"../../images/icons/icon-layout.svg\");\n\tmask-image: url(\"../../images/icons/icon-layout.svg\");\n}\n\n// Advanced post type and taxonomies settings icon\n.acf-admin-single-post-type,\n.acf-admin-single-taxonomy,\n.acf-admin-single-options-page {\n\n\t#acf-advanced-settings .postbox-header h2:before {\n\t\t-webkit-mask-image: url(\"../../images/icons/icon-post-type.svg\");\n\t\tmask-image: url(\"../../images/icons/icon-post-type.svg\");\n\t}\n\n}\n\n// Flexible Content reorder\n.acf-field-setting-fc_layout .acf-field-settings-fc_head .acf-fc_draggable:hover .reorder-layout:before {\n\twidth: 20px;\n\theight: 11px;\n\tbackground-color: $gray-600 !important;\n\t-webkit-mask-image: url(\"../../images/icons/icon-draggable.svg\");\n\tmask-image: url(\"../../images/icons/icon-draggable.svg\");\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tPostbox expand / collapse icon\n*\n*--------------------------------------------------------------------------------------------*/\n.post-type-acf-field-group, \n.post-type-acf-field-group #acf-field-group-fields,\n.post-type-acf-field-group #acf-field-group-options,\n.post-type-acf-field-group .postbox,\n.acf-admin-single-post-type #acf-advanced-settings,\n.acf-admin-single-taxonomy #acf-advanced-settings,\n.acf-admin-single-options-page #acf-advanced-settings{\n\t\n\t.postbox-header .handle-actions {\n\t\tdisplay: flex;\n\n\t\t.toggle-indicator:before {\n\t\t\tcontent: \"\";\n\t\t\t$icon-size: 20px;\n\t\t\tdisplay: inline-flex;\n\t\t\twidth: $icon-size;\n\t\t\theight: $icon-size;\n\t\t\tbackground-color: currentColor;\n\t\t\tborder: none;\n\t\t\tborder-radius: 0;\n\t\t\t-webkit-mask-size: contain;\n\t\t\tmask-size: contain;\n\t\t\t-webkit-mask-repeat: no-repeat;\n\t\t\tmask-repeat: no-repeat;\n\t\t\t-webkit-mask-position: center;\n\t\t\tmask-position: center;\n\t\t\t-webkit-mask-image: url(\"../../images/icons/icon-chevron-up.svg\");\n\t\t\tmask-image: url(\"../../images/icons/icon-chevron-up.svg\");\n\t\t}\n\t}\n\n\t// Closed state\n\t&.closed {\n\t\t.postbox-header .handle-actions {\n\t\t\t.toggle-indicator:before {\n\t\t\t\t-webkit-mask-image: url(\"../../images/icons/icon-chevron-down.svg\");\n\t\t\t\tmask-image: url(\"../../images/icons/icon-chevron-down.svg\");\n\t\t\t}\n\t\t}\n\t}\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Tools & updates page heading icons\n*\n*---------------------------------------------------------------------------------------------*/\n.post-type-acf-field-group {\n\t#acf-admin-tool-export,\n\t#acf-admin-tool-import,\n\t#acf-license-information,\n\t#acf-update-information {\n\t\th2,\n\t\th3 {\n\t\t\tdisplay: inline-flex;\n\t\t\tjustify-content: flex-start;\n\t\t\talign-content: stretch;\n\t\t\talign-items: center;\n\n\t\t\t&:before {\n\t\t\t\tcontent: \"\";\n\t\t\t\t$icon-size: 20px;\n\t\t\t\tdisplay: inline-block;\n\t\t\t\twidth: $icon-size;\n\t\t\t\theight: $icon-size;\n\t\t\t\tmargin: {\n\t\t\t\t\tright: 8px;\n\t\t\t\t}\n\t\t\t\tbackground-color: $gray-400;\n\t\t\t\tborder: none;\n\t\t\t\tborder-radius: 0;\n\t\t\t\t-webkit-mask-size: contain;\n\t\t\t\tmask-size: contain;\n\t\t\t\t-webkit-mask-repeat: no-repeat;\n\t\t\t\tmask-repeat: no-repeat;\n\t\t\t\t-webkit-mask-position: center;\n\t\t\t\tmask-position: center;\n\t\t\t}\n\t\t}\n\t}\n\n\t&.rtl {\n\t\t#acf-admin-tool-export,\n\t\t#acf-admin-tool-import,\n\t\t#acf-license-information,\n\t\t#acf-update-information {\n\t\t\th2,\n\t\t\th3 {\n\t\t\t\t&:before {\n\t\t\t\t\tmargin: {\n\t\t\t\t\t\tright: 0;\n\t\t\t\t\t\tleft: 8px;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n}\n\n// Export icon\n.post-type-acf-field-group #acf-admin-tool-export h2:before {\n\t-webkit-mask-image: url(\"../../images/icons/icon-export.svg\");\n\tmask-image: url(\"../../images/icons/icon-export.svg\");\n}\n\n// Import icon\n.post-type-acf-field-group #acf-admin-tool-import h2:before {\n\t-webkit-mask-image: url(\"../../images/icons/icon-import.svg\");\n\tmask-image: url(\"../../images/icons/icon-import.svg\");\n}\n\n// License information icon\n.post-type-acf-field-group #acf-license-information h3:before {\n\t-webkit-mask-image: url(\"../../images/icons/icon-key.svg\");\n\tmask-image: url(\"../../images/icons/icon-key.svg\");\n}\n\n// Update information icon\n.post-type-acf-field-group #acf-update-information h3:before {\n\t-webkit-mask-image: url(\"../../images/icons/icon-info.svg\");\n\tmask-image: url(\"../../images/icons/icon-info.svg\");\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tAdmin field icons\n*\n*--------------------------------------------------------------------------------------------*/\n.acf-admin-single-field-group .acf-input {\n\t.acf-icon {\n\t\t$icon-size: 18px;\n\t\twidth: $icon-size;\n\t\theight: $icon-size;\n\t}\n}\n","/*--------------------------------------------------------------------------------------------\n*\n*\tField type icon base styling\n*\n*--------------------------------------------------------------------------------------------*/\n.field-type-icon {\n\tbox-sizing: border-box;\n\tdisplay: inline-flex;\n\talign-content: center;\n\talign-items: center;\n\tjustify-content: center;\n\tposition: relative;\n\twidth: 24px;\n\theight: 24px;\n\ttop: -4px;\n\tbackground-color: $blue-50;\n\tborder: {\n\t\twidth: 1px;\n\t\tstyle: solid;\n\t\tcolor: $blue-200;\n\t};\n\tborder-radius: 100%;\n\n\t&:before {\n\t\t$icon-size: 14px;\n\t\tcontent: \"\";\n\t\twidth: $icon-size;\n\t\theight: $icon-size;\n\t\tposition: relative;\n\t\tbackground-color: $blue-500;\n\t\t-webkit-mask-size: cover;\n\t\tmask-size: cover;\n\t\t-webkit-mask-repeat: no-repeat;\n\t\tmask-repeat: no-repeat;\n\t\t-webkit-mask-position: center;\n\t\tmask-position: center;\n\t\t-webkit-mask-image: url('../../images/field-type-icons/icon-field-default.svg');\n\t\tmask-image: url('../../images/field-type-icons/icon-field-default.svg');\n\t}\n\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tField type icons\n*\n*--------------------------------------------------------------------------------------------*/\n\n// Text field\n.field-type-icon.field-type-icon-text:before {\n\t-webkit-mask-image: url('../../images/field-type-icons/icon-field-text.svg');\n\tmask-image: url('../../images/field-type-icons/icon-field-text.svg');\n}\n\n// Textarea\n.field-type-icon.field-type-icon-textarea:before {\n\t-webkit-mask-image: url('../../images/field-type-icons/icon-field-textarea.svg');\n\tmask-image: url('../../images/field-type-icons/icon-field-textarea.svg');\n}\n\n// Textarea\n.field-type-icon.field-type-icon-textarea:before {\n\t-webkit-mask-image: url('../../images/field-type-icons/icon-field-textarea.svg');\n\tmask-image: url('../../images/field-type-icons/icon-field-textarea.svg');\n}\n\n// Number\n.field-type-icon.field-type-icon-number:before {\n\t-webkit-mask-image: url('../../images/field-type-icons/icon-field-number.svg');\n\tmask-image: url('../../images/field-type-icons/icon-field-number.svg');\n}\n\n// Range\n.field-type-icon.field-type-icon-range:before {\n\t-webkit-mask-image: url('../../images/field-type-icons/icon-field-range.svg');\n\tmask-image: url('../../images/field-type-icons/icon-field-range.svg');\n}\n\n// Email\n.field-type-icon.field-type-icon-email:before {\n\t-webkit-mask-image: url('../../images/field-type-icons/icon-field-email.svg');\n\tmask-image: url('../../images/field-type-icons/icon-field-email.svg');\n}\n\n// URL\n.field-type-icon.field-type-icon-url:before {\n\t-webkit-mask-image: url('../../images/field-type-icons/icon-field-url.svg');\n\tmask-image: url('../../images/field-type-icons/icon-field-url.svg');\n}\n\n// Password\n.field-type-icon.field-type-icon-password:before {\n\t-webkit-mask-image: url('../../images/field-type-icons/icon-field-password.svg');\n\tmask-image: url('../../images/field-type-icons/icon-field-password.svg');\n}\n\n// Image\n.field-type-icon.field-type-icon-image:before {\n\t-webkit-mask-image: url('../../images/field-type-icons/icon-field-image.svg');\n\tmask-image: url('../../images/field-type-icons/icon-field-image.svg');\n}\n\n// File\n.field-type-icon.field-type-icon-file:before {\n\t-webkit-mask-image: url('../../images/field-type-icons/icon-field-file.svg');\n\tmask-image: url('../../images/field-type-icons/icon-field-file.svg');\n}\n\n// WYSIWYG\n.field-type-icon.field-type-icon-wysiwyg:before {\n\t-webkit-mask-image: url('../../images/field-type-icons/icon-field-wysiwyg.svg');\n\tmask-image: url('../../images/field-type-icons/icon-field-wysiwyg.svg');\n}\n\n// oEmbed\n.field-type-icon.field-type-icon-oembed:before {\n\t-webkit-mask-image: url('../../images/field-type-icons/icon-field-oembed.svg');\n\tmask-image: url('../../images/field-type-icons/icon-field-oembed.svg');\n}\n\n// Gallery\n.field-type-icon.field-type-icon-gallery:before {\n\t-webkit-mask-image: url('../../images/field-type-icons/icon-field-gallery.svg');\n\tmask-image: url('../../images/field-type-icons/icon-field-gallery.svg');\n}\n\n// Select\n.field-type-icon.field-type-icon-select:before {\n\t-webkit-mask-image: url('../../images/field-type-icons/icon-field-select.svg');\n\tmask-image: url('../../images/field-type-icons/icon-field-select.svg');\n}\n\n// Checkbox\n.field-type-icon.field-type-icon-checkbox:before {\n\t-webkit-mask-image: url('../../images/field-type-icons/icon-field-checkbox.svg');\n\tmask-image: url('../../images/field-type-icons/icon-field-checkbox.svg');\n}\n\n// Radio Button\n.field-type-icon.field-type-icon-radio:before {\n\t-webkit-mask-image: url('../../images/field-type-icons/icon-field-radio.svg');\n\tmask-image: url('../../images/field-type-icons/icon-field-radio.svg');\n}\n\n// Button Group\n.field-type-icon.field-type-icon-button-group:before {\n\t-webkit-mask-image: url('../../images/field-type-icons/icon-field-button-group.svg');\n\tmask-image: url('../../images/field-type-icons/icon-field-button-group.svg');\n}\n\n// True / False\n.field-type-icon.field-type-icon-true-false:before {\n\t-webkit-mask-image: url('../../images/field-type-icons/icon-field-true-false.svg');\n\tmask-image: url('../../images/field-type-icons/icon-field-true-false.svg');\n}\n\n// Link\n.field-type-icon.field-type-icon-link:before {\n\t-webkit-mask-image: url('../../images/field-type-icons/icon-field-link.svg');\n\tmask-image: url('../../images/field-type-icons/icon-field-link.svg');\n}\n\n// Post Object\n.field-type-icon.field-type-icon-post-object:before {\n\t-webkit-mask-image: url('../../images/field-type-icons/icon-field-post-object.svg');\n\tmask-image: url('../../images/field-type-icons/icon-field-post-object.svg');\n}\n\n// Page Link\n.field-type-icon.field-type-icon-page-link:before {\n\t-webkit-mask-image: url('../../images/field-type-icons/icon-field-page-link.svg');\n\tmask-image: url('../../images/field-type-icons/icon-field-page-link.svg');\n}\n\n// Relationship\n.field-type-icon.field-type-icon-relationship:before {\n\t-webkit-mask-image: url('../../images/field-type-icons/icon-field-relationship.svg');\n\tmask-image: url('../../images/field-type-icons/icon-field-relationship.svg');\n}\n\n// Taxonomy\n.field-type-icon.field-type-icon-taxonomy:before {\n\t-webkit-mask-image: url('../../images/field-type-icons/icon-field-taxonomy.svg');\n\tmask-image: url('../../images/field-type-icons/icon-field-taxonomy.svg');\n}\n\n// User\n.field-type-icon.field-type-icon-user:before {\n\t-webkit-mask-image: url('../../images/field-type-icons/icon-field-user.svg');\n\tmask-image: url('../../images/field-type-icons/icon-field-user.svg');\n}\n\n// Google Map\n.field-type-icon.field-type-icon-google-map:before {\n\t-webkit-mask-image: url('../../images/field-type-icons/icon-field-google-map.svg');\n\tmask-image: url('../../images/field-type-icons/icon-field-google-map.svg');\n}\n\n// Date Picker\n.field-type-icon.field-type-icon-date-picker:before {\n\t-webkit-mask-image: url('../../images/field-type-icons/icon-field-date-picker.svg');\n\tmask-image: url('../../images/field-type-icons/icon-field-date-picker.svg');\n}\n\n// Date / Time Picker\n.field-type-icon.field-type-icon-date-time-picker:before {\n\t-webkit-mask-image: url('../../images/field-type-icons/icon-field-date-time-picker.svg');\n\tmask-image: url('../../images/field-type-icons/icon-field-date-time-picker.svg');\n}\n\n// Time Picker\n.field-type-icon.field-type-icon-time-picker:before {\n\t-webkit-mask-image: url('../../images/field-type-icons/icon-field-time-picker.svg');\n\tmask-image: url('../../images/field-type-icons/icon-field-time-picker.svg');\n}\n\n// Color Picker\n.field-type-icon.field-type-icon-color-picker:before {\n\t-webkit-mask-image: url('../../images/field-type-icons/icon-field-color-picker.svg');\n\tmask-image: url('../../images/field-type-icons/icon-field-color-picker.svg');\n}\n\n// Message\n.field-type-icon.field-type-icon-message:before {\n\t-webkit-mask-image: url('../../images/field-type-icons/icon-field-message.svg');\n\tmask-image: url('../../images/field-type-icons/icon-field-message.svg');\n}\n\n// Accordion\n.field-type-icon.field-type-icon-accordion:before {\n\t-webkit-mask-image: url('../../images/field-type-icons/icon-field-accordion.svg');\n\tmask-image: url('../../images/field-type-icons/icon-field-accordion.svg');\n}\n\n// Tab\n.field-type-icon.field-type-icon-tab:before {\n\t-webkit-mask-image: url('../../images/field-type-icons/icon-field-tab.svg');\n\tmask-image: url('../../images/field-type-icons/icon-field-tab.svg');\n}\n\n// Group\n.field-type-icon.field-type-icon-group:before {\n\t-webkit-mask-image: url('../../images/field-type-icons/icon-field-group.svg');\n\tmask-image: url('../../images/field-type-icons/icon-field-group.svg');\n}\n\n// Repeater\n.field-type-icon.field-type-icon-repeater:before {\n\t-webkit-mask-image: url('../../images/field-type-icons/icon-field-repeater.svg');\n\tmask-image: url('../../images/field-type-icons/icon-field-repeater.svg');\n}\n\n\n// Flexible Content\n.field-type-icon.field-type-icon-flexible-content:before {\n\t-webkit-mask-image: url('../../images/field-type-icons/icon-field-flexible-content.svg');\n\tmask-image: url('../../images/field-type-icons/icon-field-flexible-content.svg');\n}\n\n// Clone\n.field-type-icon.field-type-icon-clone:before {\n\t-webkit-mask-image: url('../../images/field-type-icons/icon-field-clone.svg');\n\tmask-image: url('../../images/field-type-icons/icon-field-clone.svg');\n}","/*---------------------------------------------------------------------------------------------\n*\n* Tools page layout\n*\n*---------------------------------------------------------------------------------------------*/\n#acf-admin-tools {\n\n\t.postbox-header {\n\t\tdisplay: none; // Hide native WP postbox headers\n\t}\n\n\t.acf-meta-box-wrap.-grid {\n\t\tmargin: {\n\t\t\ttop: 0;\n\t\t\tright: 0;\n\t\t\tbottom: 0;\n\t\t\tleft: 0;\n\t\t};\n\n\t\t.postbox {\n\t\t\twidth: 100%;\n\t\t\tclear: none;\n\t\t\tfloat: none;\n\t\t\tmargin: {\n\t\t\t\tbottom: 0;\n\t\t\t};\n\n\t\t\t@media screen and (max-width: $md) {\n\t\t\t\tflex: 1 1 100%;\n\t\t\t}\n\n\t\t}\n\n\t}\n\n\t.acf-meta-box-wrap.-grid .postbox:nth-child(odd) {\n\t\tmargin: {\n\t\t\tleft: 0;\n\t\t};\n\t}\n\n\t.meta-box-sortables {\n\t\tdisplay: grid;\n\t\tgrid-template-columns: repeat(2, 1fr);\n\t\tgrid-template-rows: repeat(1, 1fr);\n\t\tgrid-column-gap: 32px;\n\t\tgrid-row-gap: 32px;\n\n\t\t@media screen and (max-width: $md) {\n\t\t\tdisplay: flex;\n\t\t\tflex-wrap: wrap;\n\t\t\tjustify-content: flex-start;\n\t\t\talign-content: flex-start;\n\t\t\talign-items: center;\n\t\t\tgrid-column-gap: 8px;\n\t\t\tgrid-row-gap: 8px;\n\t\t}\n\n\t}\n\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Tools export pages\n*\n*---------------------------------------------------------------------------------------------*/\n#acf-admin-tools {\n\n\t&.tool-export {\n\n\t\t.inside {\n\t\t\tmargin: 0;\n\t\t}\n\n\t\t// ACF custom postbox header\n\t\t.acf-postbox-header {\n\t\t\tmargin: {\n\t\t\t\tbottom: 24px;\n\t\t\t};\n\t\t}\n\n\t\t// Main postbox area\n\t\t.acf-postbox-main {\n\t\t\tborder: none;\n\t\t\tmargin: 0;\n\t\t\tpadding: {\n\t\t\t\ttop: 0;\n\t\t\t\tright: 24px;\n\t\t\t\tbottom: 0;\n\t\t\t\tleft: 0;\n\t\t\t};\n\t\t}\n\n\t\t.acf-postbox-columns {\n\t\t\tmargin: {\n\t\t\t\ttop: 0;\n\t\t\t\tright: 280px;\n\t\t\t\tbottom: 0;\n\t\t\t\tleft: 0;\n\t\t\t};\n\t\t\tpadding: 0;\n\n\t\t\t.acf-postbox-side {\n\t\t\t\tpadding: 0;\n\n\t\t\t\t.acf-panel {\n\t\t\t\t\tmargin: 0;\n\t\t\t\t\tpadding: 0;\n\t\t\t\t}\n\n\t\t\t\t&:before {\n\t\t\t\t\tdisplay: none;\n\t\t\t\t}\n\n\t\t\t\t.acf-btn {\n\t\t\t\t\tdisplay: block;\n\t\t\t\t\twidth: 100%;\n\t\t\t\t\ttext-align: center;\n\t\t\t\t}\n\n\t\t\t}\n\n\t\t}\n\n\t\t.meta-box-sortables {\n\t\t\tdisplay: block;\n\t\t}\n\n\t\t.acf-panel {\n\t\t\tborder: none;\n\n\t\t\th3 {\n\t\t\t\tmargin: 0;\n\t\t\t\tpadding: 0;\n\t\t\t\tcolor: $gray-700;\n\t\t\t\t@extend .p4;\n\n\t\t\t\t&:before {\n\t\t\t\t\tdisplay: none;\n\t\t\t\t}\n\n\t\t\t}\n\n\t\t}\n\n\t\t.acf-checkbox-list {\n\t\t\tmargin: {\n\t\t\t\ttop: 16px;\n\t\t\t};\n\t\t\tborder: {\n\t\t\t\twidth: 1px;\n\t\t\t\tstyle: solid;\n\t\t\t\tcolor: $gray-300;\n\t\t\t};\n\t\t\tborder-radius: $radius-md;\n\n\t\t\tli {\n\t\t\t\tdisplay: inline-flex;\n\t\t\t\tbox-sizing: border-box;\n\t\t\t\twidth: 100%;\n\t\t\t\theight: 48px;\n\t\t\t\talign-items: center;\n\t\t\t\tmargin: 0;\n\t\t\t\tpadding: {\n\t\t\t\t\tright: 12px;\n\t\t\t\t\tleft: 12px;\n\t\t\t\t};\n\t\t\t\tborder-bottom: {\n\t\t\t\t\twidth: 1px;\n\t\t\t\t\tstyle: solid;\n\t\t\t\t\tcolor: $gray-200;\n\t\t\t\t};\n\n\t\t\t\t&:last-child {\n\t\t\t\t\tborder-bottom: none;\n\t\t\t\t}\n\n\t\t\t}\n\n\t\t}\n\n\t}\n\n}","/*---------------------------------------------------------------------------------------------\n*\n* Updates layout\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-settings-wrap.acf-updates {\n\tdisplay: flex;\n\tflex-direction: row;\n\tflex-wrap: wrap;\n\tjustify-content: flex-start;\n\talign-content: flex-start;\n\talign-items: flex-start;\n}\n\n.custom-fields_page_acf-settings-updates .acf-admin-notice,\n.custom-fields_page_acf-settings-updates .acf-upgrade-notice,\n.custom-fields_page_acf-settings-updates .notice {\n\tflex: 1 1 100%;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* ACF Box\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-settings-wrap.acf-updates {\n\n\t.acf-box {\n\t\tmargin: {\n\t\t\ttop: 0;\n\t\t\tright: 0;\n\t\t\tbottom: 0;\n\t\t\tleft: 0;\n\t\t};\n\n\t\t.inner {\n\t\t\tpadding: {\n\t\t\t\ttop: 24px;\n\t\t\t\tright: 24px;\n\t\t\t\tbottom: 24px;\n\t\t\t\tleft: 24px;\n\t\t\t};\n\t\t}\n\n\t\t@media screen and (max-width: $md) {\n\t\t\tflex: 1 1 100%;\n\t\t}\n\n\t}\n\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Notices\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-settings-wrap.acf-updates {\n\n\t.acf-admin-notice {\n\t\tflex: 1 1 100%;\n\t\tmargin: {\n\t\t\ttop: 16px;\n\t\t\tright: 0;\n\t\t\tleft: 0;\n\t\t};\n\t}\n\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* License information\n*\n*---------------------------------------------------------------------------------------------*/\n#acf-license-information {\n\tflex: 1 1 65%;\n\tmargin: {\n\t\tright: 32px;\n\t};\n\n\t.inner {\n\t\tpadding: 0;\n\n\t\t.acf-license-defined {\n\t\t\tpadding: 24px;\n\t\t\tmargin: 0;\n\t\t}\n\n\t\t.acf-activation-form,\n\t\t.acf-retry-activation {\n\t\t\tpadding: 24px;\n\n\t\t\t&.acf-retry-activation {\n\t\t\t\tpadding-top: 0;\n\t\t\t\tmin-height: 40px;\n\n\t\t\t\t.acf-recheck-license.acf-btn {\n\t\t\t\t\tfloat: none;\n\t\t\t\t\tline-height: initial;\n\n\t\t\t\t\ti {\n\t\t\t\t\t\tdisplay: none;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t.acf-manage-license-btn {\n\t\t\t\tfloat: right;\n\t\t\t\tline-height: 40px;\n\t\t\t\talign-items: center;\n\t\t\t\tdisplay: inline-flex;\n\n\t\t\t\t&.acf-renew-subscription {\n\t\t\t\t\tfloat: none;\n\t\t\t\t\tline-height: initial;\n\t\t\t\t}\n\n\t\t\t\ti {\n\t\t\t\t\tmargin: 0 0 0 5px;\n\t\t\t\t\twidth: 19px;\n\t\t\t\t\theight: 19px;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t.acf-recheck-license {\n\t\t\t\tfloat: right;\n\t\t\t\tline-height: 40px;\n\n\t\t\t\ti {\n\t\t\t\t\tmargin-right: 8px;\n\t\t\t\t\tvertical-align: middle;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t.acf-license-status-wrap {\n\t\t\tbackground: $gray-50;\n\t\t\tborder-top: 1px solid $gray-200;\n\t\t\tborder-bottom-left-radius: 8px;\n\t\t\tborder-bottom-right-radius: 8px;\n\t\t\t\n\t\t\t.acf-license-status-table {\n\t\t\t\tfont-size: 14px;\n\t\t\t\tpadding: 24px 24px 16px 24px;\n\n\t\t\t\tth {\n\t\t\t\t\twidth: 160px;\n\t\t\t\t\tfont-weight: 500;\n\t\t\t\t\ttext-align: left;\n\t\t\t\t\tpadding-bottom: 16px;\n\t\t\t\t}\n\n\t\t\t\ttd {\n\t\t\t\t\tpadding-bottom: 16px;\n\n\t\t\t\t\t.acf-license-status {\n\t\t\t\t\t\tdisplay: inline-block;\n\t\t\t\t\t\theight: 24px;\n\t\t\t\t\t\tline-height: 24px;\n\t\t\t\t\t\tborder-radius: 100px;\n\t\t\t\t\t\tbackground: $gray-200;\n\t\t\t\t\t\tpadding: 0 13px 1px 12px;\n\t\t\t\t\t\tborder: 1px solid rgba(0, 0, 0, 0.12);\n\t\t\t\t\t\tcolor: $gray-500;\n\n\t\t\t\t\t\t&.active {\n\t\t\t\t\t\t\tbackground: rgba(18, 183, 106, 0.15);\n\t\t\t\t\t\t\tborder: 1px solid rgba(18, 183, 106, 0.24);\n\t\t\t\t\t\t\tcolor: rgba(18, 183, 106, 1);\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t&.expired,\n\t\t\t\t\t\t&.cancelled {\n\t\t\t\t\t\t\tbackground: rgba(209, 55, 55, 0.24);\n\t\t\t\t\t\t\tborder: 1px solid rgba(209, 55, 55, 0.24);\n\t\t\t\t\t\t\tcolor: rgba(209, 55, 55, 1);\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t}\n\n\t\t\t}\n\n\t\t\t.acf-no-license-view-pricing {\n\t\t\t\tpadding: 12px 24px;\n\t\t\t\tborder-top: 1px solid $gray-200;\n\t\t\t\tcolor: $gray-500;\n\t\t\t}\n\t\t}\n\t}\n\n\t@media screen and (max-width: 1024px) {\n\t\tmargin: {\n\t\t\tright: 0;\n\t\t\tbottom: 32px;\n\t\t};\n\t}\n\n\tlabel {\n\t\tfont-weight: 500;\n\t}\n\n\t.acf-input-wrap {\n\t\tmargin: {\n\t\t\ttop: 8px;\n\t\t\tbottom: 24px;\n\t\t};\n\t}\n\n\t#acf_pro_license {\n\t\twidth: 100%;\n\t}\n\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Update information table\n*\n*---------------------------------------------------------------------------------------------*/\n#acf-update-information {\n\tflex: 1 1 35%;\n\tmax-width: calc(35% - 32px);\n\n\t.form-table {\n\n\t\tth,\n\t\ttd {\n\t\t\tpadding: {\n\t\t\t\ttop: 0;\n\t\t\t\tright: 0;\n\t\t\t\tbottom: 24px;\n\t\t\t\tleft: 0;\n\t\t\t};\n\t\t\t@extend .p4;\n\t\t\tcolor: $gray-700;\n\t\t}\n\n\t}\n\n\t.acf-update-changelog {\n\t\tmargin: {\n\t\t\ttop: 8px;\n\t\t\tbottom: 24px;\n\t\t};\n\t\tpadding: {\n\t\t\ttop: 8px;\n\t\t};\n\t\tborder-top: {\n\t\t\twidth: 1px;\n\t\t\tstyle: solid;\n\t\t\tcolor: $gray-200;\n\t\t};\n\t\tcolor: $gray-700;\n\n\t\th4 {\n\t\t\tmargin: {\n\t\t\t\tbottom: 0;\n\t\t\t};\n\t\t}\n\n\t\tp {\n\t\t\tmargin: {\n\t\t\t\ttop: 0;\n\t\t\t\tbottom: 16px;\n\t\t\t};\n\n\t\t\t&:last-of-type {\n\t\t\t\tmargin: {\n\t\t\t\t\tbottom: 0;\n\t\t\t\t};\n\t\t\t}\n\n\t\t\tem {\n\t\t\t\t@extend .p6;\n\t\t\t\tcolor: $gray-500;\n\t\t\t}\n\n\t\t}\n\n\t}\n\n\t.acf-btn {\n\t\tdisplay: inline-flex;\n\t}\n\n}","/*--------------------------------------------------------------------------------------------\n*\n*\tHeader pro upgrade button\n*\n*--------------------------------------------------------------------------------------------*/\n.acf-admin-toolbar {\n\n\ta.acf-admin-toolbar-upgrade-btn {\n\t\tdisplay: inline-flex;\n\t\talign-items: center;\n\t\talign-self: stretch;\n\t\tpadding: {\n\t\t\ttop: 0;\n\t\t\tright: 16px;\n\t\t\tbottom: 0;\n\t\t\tleft: 16px;\n\t\t};\n\t\tbackground: $gradient-pro;\n\t\tbox-shadow: inset 0 0 0 1px rgba(255,255,255,.16);\n\t\tbackground-size: 180% 80%;\n\t\tbackground-position: 100% 0;\n\t\ttransition: background-position .5s;\n\t\tborder-radius: $radius-md;\n\t\ttext-decoration: none;\n\n\t\t@media screen and (max-width: 768px) {\n\t\t\tdisplay: none;\n\t\t}\n\n\t\t&:hover {\n\t\t\tbackground-position: 0 0;\n\t\t}\n\n\t\t&:focus {\n\t\t\tborder: none;\n\t\t\toutline: none;\n\t\t\tbox-shadow: none;\n\t\t}\n\n\t\tp {\n\t\t\tmargin: 0;\n\t\t\tpadding: {\n\t\t\t\ttop: 8px;\n\t\t\t\tbottom: 8px;\n\t\t\t}\n\t\t\t@extend .p4;\n\t\t\tfont-weight: normal;\n\t\t\ttext-transform: none;\n\t\t\tcolor: #fff;\n\t\t}\n\n\t\t.acf-icon {\n\t\t\t$icon-size: 18px;\n\t\t\twidth: $icon-size;\n\t\t\theight: $icon-size;\n\t\t\tmargin: {\n\t\t\t\tright: 6px;\n\t\t\t\tleft: -2px;\n\t\t\t};\n\t\t\tbackground-color: $gray-50;\n\t\t}\n\n\t}\n\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n* Upsell block\n*\n*--------------------------------------------------------------------------------------------*/\n.acf-admin-page #tmpl-acf-field-group-pro-features,\n.acf-admin-page #acf-field-group-pro-features {\n\tdisplay: none;\n\talign-items: center;\n\tmin-height: 120px;\n\tbackground-color: #121833;\n\tbackground-image: url(../../images/pro-upgrade-grid-bg.svg), url(../../images/pro-upgrade-overlay.svg);\n\tbackground-repeat: repeat, no-repeat;\n\tbackground-size: 1224px, 1880px;\n\tbackground-position: left top, -520px -680px;\n\tcolor: $gray-200;\n\tborder-radius: 8px;\n\tmargin-top: 24px;\n\tmargin-bottom: 24px;\n\n\t@media screen and (max-width: 768px) {\n\t\tbackground-size: 1024px, 980px;\n\t\tbackground-position: left top, -500px -200px;\n\t}\n\n\t@media screen and (max-width: 1200px) {\n\t\tbackground-size: 1024px, 1880px;\n\t\tbackground-position: left top, -520px -300px;\n\t}\n\n\t.postbox-header {\n\t\tdisplay: none;\n\t}\n\n\t.inside {\n\t\twidth: 100%;\n\t\tborder: none;\n\t\tpadding: 0;\n\t}\n\n\t.acf-field-group-pro-features-wrapper {\n\t\tdisplay: flex;\n\t\tjustify-content: center;\n\t\talign-content: stretch;\n\t\talign-items: center;\n\t\tgap: 96px;\n\t\theight: 358px;\n\t\tmax-width: 950px;\n\t\tmargin: 0 auto;\n\t\tpadding: 0 35px;\n\t\t\n\t\t@media screen and (max-width: 1200px) {\n\t\t\tgap: 48px;\n\t\t}\n\t\t\n\t\t@media screen and (max-width: 768px) {\n\t\t\tgap: 0;\n\t\t}\n\n\t\t.acf-field-group-pro-features-title,\n\t\t.acf-field-group-pro-features-title-sm {\n\t\t\tfont-weight: 590;\n\t\t\tline-height: 150%;\n\n\t\t\t.acf-pro-label {\n\t\t\t\tfont-weight: normal;\n\t\t\t\tmargin-top: -4px;\n\t\t\t\tmargin-left: 2px;\n\t\t\t\tvertical-align: middle;\n\t\t\t\theight: 22px;\n\t\t\t}\n\t\t\t\n\t\t}\n\n\t\t.acf-field-group-pro-features-title-sm {\n\t\t\tdisplay: none !important;\n\t\t\tfont-size: 18px;\n\n\t\t\t.acf-pro-label {\n\t\t\t\tfont-size: 10px;\n\t\t\t\theight: 20px;\n\t\t\t}\n\t\t\t\n\t\t\t@media screen and (max-width: 768px) {\n\t\t\t\twidth: 100%;\n\t\t\t\ttext-align: center;\n\t\t\t}\n\t\t\t\n\t\t}\n\n\t\t@media screen and (max-width: 768px) {\n\t\t\tflex-direction: column;\n\t\t\tflex-wrap: wrap;\n\t\t\tjustify-content: flex-start;\n\t\t\talign-content: flex-start;\n\t\t\talign-items: flex-start;\n\t\t\tpadding: 32px 32px 0 32px;\n\t\t\theight: unset;\n\n\t\t\t.acf-field-group-pro-features-title-sm {\n\t\t\t\tdisplay: block !important;\n\t\t\t\tmargin-bottom: 24px;\n\t\t\t}\n\t\t}\n\n\t\t.acf-field-group-pro-features-content {\n\t\t\tdisplay: flex;\n\t\t\tflex-direction: column;\n\t\t\twidth: 416px;\n\n\t\t\t.acf-field-group-pro-features-desc {\n\t\t\t\tmargin-top: 8px;\n\t\t\t\tmargin-bottom: 24px;\n\t\t\t\tfont-size: 15px;\n\t\t\t\tfont-weight: 300;\n\t\t\t\tcolor: $gray-300;\n\t\t\t}\n\n\t\t\t@media screen and (max-width: 768px) {\n\t\t\t\twidth: 100%;\n\t\t\t\torder: 1;\n\t\t\t\tmargin: {\n\t\t\t\t\tright: 0;\n\t\t\t\t\tbottom: 8px;\n\t\t\t\t};\n\n\t\t\t\t.acf-field-group-pro-features-title,\n\t\t\t\t.acf-field-group-pro-features-desc {\n\t\t\t\t\tdisplay: none !important;\n\t\t\t\t}\n\t\t\t}\n\n\t\t}\n\n\t\t.acf-field-group-pro-features-actions {\n\t\t\tdisplay: flex;\n\t\t\tflex-direction: row;\n\t\t\talign-items: flex-start;\n\t\t\tmin-width: 160px;\n\t\t\tgap: 12px;\n\n\t\t\t@media screen and (max-width: 768px) {\n\t\t\t\tjustify-content: flex-start;\n\t\t\t\tflex-direction: column;\n\t\t\t\tmargin-bottom: 24px;\n\n\t\t\t\ta {\n\t\t\t\t\tjustify-content: center;\n\t\t\t\t\ttext-align: center;\n\t\t\t\t\twidth: 100%;\n\t\t\t\t}\n\t\t\t}\n\n\t\t}\n\n\t\t.acf-field-group-pro-features-grid {\n\t\t\tdisplay: flex;\n\t\t\tflex-direction: row;\n\t\t\tflex-wrap: wrap;\n\t\t\tgap: 16px;\n\t\t\twidth: 416px;\n\n\t\t\t.acf-field-group-pro-feature {\n\t\t\t\tdisplay: flex;\n\t\t\t\tflex-direction: column;\n\t\t\t\tjustify-content: center;\n\t\t\t\talign-items: center;\n\t\t\t\twidth: 128px;\n\t\t\t\theight: 124px;\n\t\t\t\tbackground: rgba(255, 255, 255, 0.08);\n\t\t\t\tbox-shadow: 0px 0px 4px rgba(0, 0, 0, 0.04), 0px 8px 16px rgba(0, 0, 0, 0.08), inset 0 0 0 1px rgba(255,255,255,.08);\n\t\t\t\tbackdrop-filter: blur(6px);\n\t\t\t\tborder-radius: 8px;\n\n\t\t\t\t.field-type-icon {\n\t\t\t\t\tborder: none;\n\t\t\t\t\tbackground: none;\n\t\t\t\t\twidth: 24px;\n\t\t\t\t\topacity: .8;\n\n\t\t\t\t\t&::before {\n\t\t\t\t\t\tbackground-color: #fff;\n\t\t\t\t\t\twidth: 20px;\n\t\t\t\t\t\theight: 20px;\n\t\t\t\t\t}\n\t\t\t\t\t\n\t\t\t\t\t@media screen and (max-width: 1200px) {\n\t\t\t\t\t\t&::before { width: 18px; height: 18px; }\n\t\t\t\t\t}\n\t\t\t\t\t\n\t\t\t\t}\n\n\t\t\t\t.pro-feature-blocks::before {\n\t\t\t\t\t-webkit-mask-image: url(\"../../images/icons/icon-extended-menu.svg\");\n\t\t\t\t\tmask-image: url(\"../../images/icons/icon-extended-menu.svg\");\n\t\t\t\t}\n\n\t\t\t\t.pro-feature-options-pages::before {\n\t\t\t\t\t-webkit-mask-image: url(\"../../images/icons/icon-settings.svg\");\n\t\t\t\t\tmask-image: url(\"../../images/icons/icon-settings.svg\");\n\t\t\t\t}\n\n\t\t\t\t.field-type-label {\n\t\t\t\t\tmargin-top: 4px;\n\t\t\t\t\tfont-size: 13px;\n\t\t\t\t\tfont-weight: 300;\n\t\t\t\t\ttext-align: center;\n\t\t\t\t\tcolor: #fff;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t@media screen and (max-width: 1200px) {\n\t\t\t\tflex-direction: column;\n\t\t\t\tgap: 8px;\n\t\t\t\twidth: 288px;\n\n\t\t\t\t.acf-field-group-pro-feature {\n\t\t\t\t\twidth: 100%;\n\t\t\t\t\theight: 40px;\n\t\t\t\t\tflex-direction: row;\n\t\t\t\t\tjustify-content: unset;\n\t\t\t\t\tgap: 8px;\n\n\n\t\t\t\t\t.field-type-icon {\n\t\t\t\t\t\tposition: initial;\n\t\t\t\t\t\tmargin-left: 16px;\n\t\t\t\t\t}\n\n\t\t\t\t\t.field-type-label {\n\t\t\t\t\t\tmargin-top: 0;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t@media screen and (max-width: 768px) {\n\t\t\t\tgap: 0;\n\t\t\t\twidth: 100%;\n\t\t\t\theight: auto;\n\t\t\t\tmargin-bottom: 16px;\n\t\t\t\tflex-direction: unset;\n\t\t\t\tflex-wrap: wrap;\n\n\t\t\t\t.acf-field-group-pro-feature {\n\t\t\t\t\tflex: 1 0 50%;\n\t\t\t\t\tmargin-bottom: 8px;\n\t\t\t\t\twidth: auto;\n\t\t\t\t\theight: auto;\n\t\t\t\t\tjustify-content: center;\n\t\t\t\t\tbackground: none;\n\t\t\t\t\tbox-shadow: none;\n\t\t\t\t\tbackdrop-filter: none;\n\t\t\t\t\t\n\t\t\t\t\t.field-type-label {\n\t\t\t\t\t\tmargin-left: 2px;\n\t\t\t\t\t}\n\n\t\t\t\t\t.field-type-icon {\n\t\t\t\t\t\tposition: initial;\n\t\t\t\t\t\tmargin-left: 0;\n\n\t\t\t\t\t\t&:before {\n\t\t\t\t\t\t\theight: 16px;\n\t\t\t\t\t\t\twidth: 16px;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t.field-type-label {\n\t\t\t\t\t\tfont-size: 12px;\n\t\t\t\t\t\tmargin-top: 0;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t}\n\n\th1 {\n\t\tmargin: {\n\t\t\ttop: 0;\n\t\t\tbottom: 4px;\n\t\t};\n\t\tpadding: {\n\t\t\ttop: 0;\n\t\t\tbottom: 0;\n\t\t};\n\t\t@extend .acf-h1;\n\t\tfont-weight: bold;\n\t\tcolor: $gray-50;\n\n\t\t.acf-icon {\n\t\t\tmargin: {\n\t\t\t\tright: 8px;\n\t\t\t};\n\t\t}\n\n\t}\n\n\t// Upsell block btn\n\t.acf-btn {\n\t\tdisplay: inline-flex;\n\t\tbackground-color: rgba(#fff,.1);\n\t\tborder: none;\n\t\tbox-shadow: 0px 0px 4px rgba(0, 0, 0, 0.04), 0px 4px 8px rgba(0, 0, 0, 0.06), inset 0 0 0 1px rgba(255,255,255,.16);\n\t\tbackdrop-filter: blur(6px);\n\t\tpadding: 8px 24px;\n\t\theight: 48px;\n\n\t\t&:hover {\n\t\t\tbackground-color: rgba(#fff,.2);\n\t\t}\n\n\t\t.acf-icon {\n\t\t\tmargin: {\n\t\t\t\tright: -2px;\n\t\t\t\tleft: 6px;\n\t\t\t};\n\t\t}\n\n\t\t&.acf-pro-features-upgrade {\n\t\t\tbackground: $gradient-pro;\n\t\t\tbackground-size: 160% 80%;\n\t\t\tbackground-position: 100% 0;\n\t\t\tbox-shadow: 0px 0px 4px rgba(0, 0, 0, 0.04), 0px 4px 8px rgba(0, 0, 0, 0.06), inset 0 0 0 1px rgba(255,255,255,.16);\n\t\t\tborder-radius: 6px;\n\t\t\ttransition: background-position .5s;\n\t\t\t\n\t\t\t&:hover {\n\t\t\t\tbackground-position: 0 0;\n\t\t\t}\n\t\t}\n\t}\n\n\t.acf-field-group-pro-features-footer-wrap {\n\t\theight: 48px;\n\t\tbackground: rgba(16, 24, 40, 0.4);\n\t\tbackdrop-filter: blur(6px);\n\t\tborder-top: 1px solid rgba(255, 255, 255, 0.08);\n\t\tborder-bottom-left-radius: 8px;\n\t\tborder-bottom-right-radius: 8px;\n\t\tcolor: $gray-400;\n\t\tfont-size: 13px;\n\t\tfont-weight: 300;\n\t\tpadding: 0 35px;\n\n\t\t.acf-field-group-pro-features-footer {\n\t\t\tdisplay: flex;\n\t\t\talign-items: center;\n\t\t\tjustify-content: space-between;\n\t\t\tmax-width: 950px;\n\t\t\theight: 48px;\n\t\t\tmargin: 0 auto;\n\t\t}\n\n\t\t.acf-field-group-pro-features-wpengine-logo {\n\t\t\theight: 16px;\n\t\t\tvertical-align: middle;\n\t\t\tmargin-top: -2px;\n\t\t\tmargin-left: 3px;\n\t\t}\n\n\t\ta {\n\t\t\tcolor: $gray-400;\n\t\t\ttext-decoration: none;\n\t\t\t\n\t\t\t&:hover {\n\t\t\t\tcolor: $gray-300;\n\t\t\t}\n\t\t\t\n\t\t\t.acf-icon {\n\t\t\t\twidth: 18px;\n\t\t\t\theight: 18px;\n\t\t\t\tmargin-left: 4px;\n\t\t\t}\n\t\t\t\n\t\t}\n\t\t\n\t\t.acf-more-tools-from-wpengine {\n\t\t\t\n\t\t\ta {\n\t\t\t\tdisplay: inline-flex;\n\t\t\t\talign-items: center;\n\t\t\t}\n\t\t\t\n\t\t}\n\n\t\t@media screen and (max-width: 768px) {\n\t\t\theight: 70px;\n\t\t\tfont-size: 12px;\n\n\t\t\t.acf-more-tools-from-wpengine {\n\t\t\t\tdisplay: none;\n\t\t\t}\n\n\t\t\t.acf-field-group-pro-features-footer {\n\t\t\t\tjustify-content: center;\n\t\t\t\theight: 70px;\n\n\t\t\t\t.acf-field-group-pro-features-wpengine-logo {\n\t\t\t\t\tclear: both;\n\t\t\t\t\tmargin: 6px auto 0 auto;\n\t\t\t\t\tdisplay: block;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n}\n\n.acf-no-field-groups,\n.acf-no-post-types,\n.acf-no-taxonomies {\n\t#tmpl-acf-field-group-pro-features {\n\t\tmargin-top: 0;\n\t}\n}\n","/*--------------------------------------------------------------------------------------------\n*\n*\tPost type & taxonomies styles\n*\n*--------------------------------------------------------------------------------------------*/\n\n.acf-admin-single-post-type,\n.acf-admin-single-taxonomy,\n.acf-admin-single-options-page {\n\tlabel[for=\"acf-basic-settings-hide\"] {\n\t\tdisplay: none;\n\t}\n\tfieldset.columns-prefs {\n\t\tdisplay: none;\n\t}\n\n\t#acf-basic-settings {\n\t\t.postbox-header {\n\t\t\tdisplay: none;\n\t\t}\n\t}\n\n\t.postbox-container,\n\t.notice {\n\t\tmax-width: $max-width;\n\t\tclear: left;\n\t}\n\n\t#post-body-content {\n\t\tmargin: 0;\n\t}\n\n\t// Main postbox\n\t.postbox,\n\t.acf-box {\n\t\t.inside {\n\t\t\tpadding: {\n\t\t\t\ttop: 48px;\n\t\t\t\tright: 48px;\n\t\t\t\tbottom: 48px;\n\t\t\t\tleft: 48px;\n\t\t\t}\n\t\t}\n\t}\n\n\t#acf-advanced-settings.postbox {\n\t\t.inside {\n\t\t\tpadding: {\n\t\t\t\tbottom: 24px;\n\t\t\t}\n\t\t}\n\t}\n\n\t.postbox-container .meta-box-sortables #acf-basic-settings .inside {\n\t\tborder: none;\n\t}\n\n\t// Input wrap\n\t.acf-input-wrap {\n\t\toverflow: visible;\n\t}\n\n\t// Field & label margins & paddings\n\t.acf-field {\n\t\tmargin: {\n\t\t\ttop: 0;\n\t\t\tright: 0;\n\t\t\tbottom: 24px;\n\t\t\tleft: 0;\n\t\t}\n\n\t\t.acf-label {\n\t\t\tmargin: {\n\t\t\t\tbottom: 6px;\n\t\t\t}\n\t\t}\n\t}\n\n\t// Specific field overrides\n\t.acf-field-text,\n\t.acf-field-textarea,\n\t.acf-field-select {\n\t\tmax-width: 600px;\n\t}\n\n\t.acf-field-true-false {\n\t\tmax-width: 700px;\n\t}\n\n\t.acf-field-supports {\n\t\tmax-width: 600px;\n\n\t\t.acf-label {\n\t\t\tdisplay: block;\n\n\t\t\t.description {\n\t\t\t\tmargin: {\n\t\t\t\t\ttop: 4px;\n\t\t\t\t\tbottom: 12px;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t.acf_post_type_supports {\n\t\t\tdisplay: flex;\n\t\t\tflex-wrap: wrap;\n\t\t\tjustify-content: flex-start;\n\t\t\talign-content: flex-start;\n\t\t\talign-items: flex-start;\n\n\t\t\t&:focus-within {\n\t\t\t\tborder-color: transparent;\n\t\t\t}\n\n\t\t\tli {\n\t\t\t\tflex: 0 0 25%;\n\n\t\t\t\ta.button {\n\t\t\t\t\tbackground-color: transparent;\n\t\t\t\t\tpadding: 0;\n\t\t\t\t\tborder: 0;\n\t\t\t\t\theight: auto;\n\t\t\t\t\tmin-height: auto;\n\t\t\t\t\tmargin-top: 0;\n\t\t\t\t\tborder-radius: 0;\n\t\t\t\t\tline-height: 22px;\n\t\t\t\t\t&:before {\n\t\t\t\t\t\tcontent: '';\n\t\t\t\t\t\t$icon-size: 16px;\n\t\t\t\t\t\tmargin-right: 6px;\n\t\t\t\t\t\tdisplay: inline-flex;\n\t\t\t\t\t\twidth: $icon-size;\n\t\t\t\t\t\theight: $icon-size;\n\t\t\t\t\t\tbackground-color: currentColor;\n\t\t\t\t\t\tborder: none;\n\t\t\t\t\t\tborder-radius: 0;\n\t\t\t\t\t\t-webkit-mask-size: contain;\n\t\t\t\t\t\tmask-size: contain;\n\t\t\t\t\t\t-webkit-mask-repeat: no-repeat;\n\t\t\t\t\t\tmask-repeat: no-repeat;\n\t\t\t\t\t\t-webkit-mask-position: center;\n\t\t\t\t\t\tmask-position: center;\n\t\t\t\t\t\ttext-indent: 500%;\n\t\t\t\t\t\twhite-space: nowrap;\n\t\t\t\t\t\toverflow: hidden;\n\t\t\t\t\t\t-webkit-mask-image: url(\"../../images/icons/icon-add.svg\");\n\t\t\t\t\t\tmask-image: url(\"../../images/icons/icon-add.svg\");\n\t\t\t\t\t}\n\t\t\t\t\t&:hover {\n\t\t\t\t\t\tcolor: $blue-700;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\tinput[type=text] {\n\t\t\t\t\twidth: calc(100% - 36px);\n\t\t\t\t\tpadding: 0;\n\t\t\t\t\tbox-shadow: none;\n\t\t\t\t\tborder: none;\n\t\t\t\t\tborder-bottom: 1px solid $gray-300;\n\t\t\t\t\tborder-radius: 0;\n\t\t\t\t\theight: auto;\n\t\t\t\t\tmargin: 0;\n\t\t\t\t\tmin-height: auto;\n\t\t\t\t\t&:focus {\n\t\t\t\t\t\toutline: none;\n\t\t\t\t\t\tborder-bottom-color: $blue-400;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\t// Dividers\n\t.acf-field-seperator {\n\t\tmargin: {\n\t\t\ttop: 40px;\n\t\t\tbottom: 40px;\n\t\t}\n\t\tborder: {\n\t\t\ttop: 1px solid $gray-200;\n\t\t\tright: none;\n\t\t\tbottom: none;\n\t\t\tleft: none;\n\t\t}\n\t}\n\n\t// Remove margin from last fields in postbox\n\t.acf-field-advanced-configuration {\n\t\tmargin: {\n\t\t\tbottom: 0;\n\t\t}\n\t}\n\n\t// Tabbed navigation & labels utility bar\n\t.postbox-container .acf-tab-wrap,\n\t.acf-regenerate-labels-bar {\n\t\tposition: relative;\n\t\ttop: -48px;\n\t\tleft: -48px;\n\t\twidth: calc(100% + 96px);\n\t}\n\n\t// Labels utility bar\n\t.acf-regenerate-labels-bar {\n\t\tdisplay: flex;\n\t\talign-items: center;\n\t\tjustify-content: right;\n\t\tmin-height: 48px;\n\t\tmargin: {\n\t\t\tbottom: 0;\n\t\t}\n\t\tpadding: {\n\t\t\tright: 16px;\n\t\t\tleft: 16px;\n\t\t}\n\t\tgap: 8px;\n\t\tborder-bottom: {\n\t\t\twidth: 1px;\n\t\t\tstyle: solid;\n\t\t\tcolor: $gray-100;\n\t\t}\n\t}\n\n\t// Labels utility bar help/tip icon\n\t.acf-labels-tip {\n\t\tdisplay: inline-flex;\n\t\talign-items: center;\n\t\tmin-height: 24px;\n\t\tmargin: {\n\t\t\tright: 8px;\n\t\t}\n\t\tpadding: {\n\t\t\tleft: 16px;\n\t\t}\n\t\tborder-left: {\n\t\t\twidth: 1px;\n\t\t\tstyle: solid;\n\t\t\tcolor: $gray-200;\n\t\t}\n\n\t\t.acf-icon {\n\t\t\tdisplay: inline-flex;\n\t\t\talign-items: center;\n\t\t\t$icon-size: 16px;\n\t\t\twidth: $icon-size;\n\t\t\theight: $icon-size;\n\t\t\t-webkit-mask-size: $icon-size;\n\t\t\tmask-size: $icon-size;\n\t\t\tbackground-color: $gray-400;\n\t\t}\n\t}\n}\n\n// Select2 for default values in permalink rewrite\n.acf-select2-default-pill {\n\tborder-radius: 100px;\n\tmin-height: 20px;\n\tpadding: {\n\t\ttop: 2px;\n\t\tbottom: 2px;\n\t\tleft: 8px;\n\t\tright: 8px;\n\t}\n\tfont-size: 11px;\n\tmargin-left: 6px;\n\tbackground-color: $gray-200;\n\tcolor: $gray-500;\n}\n\n.acf-menu-position-desc-child {\n\tdisplay: none;\n}","/*---------------------------------------------------------------------------------------------\n*\n* Field picker modal\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-modal.acf-browse-fields-modal {\n\twidth: 1120px;\n\theight: 664px;\n\ttop: 50%;\n\tright: auto;\n\tbottom: auto;\n\tleft: 50%;\n\ttransform: translate(-50%, -50%);\n\tdisplay: flex;\n\tflex-direction: row;\n\tborder-radius: $radius-xl;\n\tbox-shadow: 0px 0px 4px rgba(0, 0, 0, 0.04),\n\t\t0px 8px 16px rgba(0, 0, 0, 0.08);\n\toverflow: hidden;\n\n\t.acf-field-picker {\n\t\tdisplay: flex;\n\t\tflex-direction: column;\n\t\tflex-grow: 1;\n\t\twidth: 760px;\n\t\tbackground: #fff;\n\n\t\t.acf-modal-title,\n\t\t.acf-modal-content,\n\t\t.acf-modal-toolbar {\n\t\t\tposition: relative;\n\t\t}\n\n\t\t.acf-modal-title {\n\t\t\tdisplay: flex;\n\t\t\tflex-direction: row;\n\t\t\tjustify-content: space-between;\n\t\t\talign-items: center;\n\t\t\tbackground: $gray-50;\n\t\t\tborder: none;\n\t\t\tpadding: 35px 32px;\n\n\t\t\t.acf-search-field-types-wrap {\n\t\t\t\tposition: relative;\n\n\t\t\t\t&:after {\n\t\t\t\t\tcontent: \"\";\n\t\t\t\t\tdisplay: block;\n\t\t\t\t\tposition: absolute;\n\t\t\t\t\ttop: 11px;\n\t\t\t\t\tleft: 10px;\n\t\t\t\t\t$icon-size: 18px;\n\t\t\t\t\twidth: $icon-size;\n\t\t\t\t\theight: $icon-size;\n\t\t\t\t\t-webkit-mask-image: url(\"../../images/icons/icon-search.svg\");\n\t\t\t\t\tmask-image: url(\"../../images/icons/icon-search.svg\");\n\t\t\t\t\tbackground-color: $gray-400;\n\t\t\t\t\tborder: none;\n\t\t\t\t\tborder-radius: 0;\n\t\t\t\t\t-webkit-mask-size: contain;\n\t\t\t\t\tmask-size: contain;\n\t\t\t\t\t-webkit-mask-repeat: no-repeat;\n\t\t\t\t\tmask-repeat: no-repeat;\n\t\t\t\t\t-webkit-mask-position: center;\n\t\t\t\t\tmask-position: center;\n\t\t\t\t\ttext-indent: 500%;\n\t\t\t\t\twhite-space: nowrap;\n\t\t\t\t\toverflow: hidden;\n\t\t\t\t}\n\n\t\t\t\tinput {\n\t\t\t\t\twidth: 280px;\n\t\t\t\t\theight: 40px;\n\t\t\t\t\tmargin: 0;\n\t\t\t\t\tpadding-left: 32px;\n\t\t\t\t\tbox-shadow: none;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t.acf-modal-content {\n\t\t\ttop: auto;\n\t\t\tbottom: auto;\n\t\t\tpadding: 0;\n\t\t\theight: 100%;\n\n\t\t\t.acf-tab-group {\n\t\t\t\tpadding-left: 32px;\n\t\t\t}\n\n\t\t\t.acf-field-types-tab {\n\t\t\t\tdisplay: flex;\n\t\t\t}\n\n\t\t\t.acf-field-types-tab,\n\t\t\t.acf-field-type-search-results {\n\t\t\t\tflex-direction: row;\n\t\t\t\tflex-wrap: wrap;\n\t\t\t\tgap: 24px;\n\t\t\t\tpadding: 32px;\n\n\t\t\t\t.acf-field-type {\n\t\t\t\t\tposition: relative;\n\t\t\t\t\tdisplay: flex;\n\t\t\t\t\tflex-direction: column;\n\t\t\t\t\tjustify-content: center;\n\t\t\t\t\talign-items: center;\n\t\t\t\t\tisolation: isolate;\n\t\t\t\t\twidth: 120px;\n\t\t\t\t\theight: 120px;\n\t\t\t\t\tbackground: $gray-50;\n\t\t\t\t\tborder: 1px solid $gray-200;\n\t\t\t\t\tborder-radius: 8px;\n\t\t\t\t\tbox-sizing: border-box;\n\t\t\t\t\tcolor: $gray-800;\n\t\t\t\t\ttext-decoration: none;\n\n\t\t\t\t\t&:hover,\n\t\t\t\t\t&:active,\n\t\t\t\t\t&.selected {\n\t\t\t\t\t\tbackground: $blue-50;\n\t\t\t\t\t\tborder: 1px solid $blue-400;\n\t\t\t\t\t\tbox-shadow: inset 0 0 0 1px $blue-400;\n\t\t\t\t\t}\n\n\t\t\t\t\t.field-type-icon {\n\t\t\t\t\t\tborder: none;\n\t\t\t\t\t\tbackground: none;\n\t\t\t\t\t\ttop: 0;\n\n\t\t\t\t\t\t&:before {\n\t\t\t\t\t\t\twidth: 22px;\n\t\t\t\t\t\t\theight: 22px;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t.field-type-label {\n\t\t\t\t\t\tmargin-top: 12px;\n\t\t\t\t\t\t@extend .p5;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t.field-type-requires-pro {\n\t\t\t\t\tdisplay: flex;\n\t\t\t\t\tjustify-content: center;\n\t\t\t\t\talign-items: center;\n\t\t\t\t\tposition: absolute;\n\t\t\t\t\ttop: -10px;\n\t\t\t\t\tright: -10px;\n\t\t\t\t\theight: 21px;\n\t\t\t\t\tcolor: white;\n\t\t\t\t\tbackground: $gradient-pro;\n\t\t\t\t\tbackground-size: 140% 20%;\n\t\t\t\t\tbackground-position: 100% 0;\n\t\t\t\t\tborder-radius: 100px;\n\t\t\t\t\tfont-size: 11px;\n\t\t\t\t\tpadding: {\n\t\t\t\t\t\tright: 6px;\n\t\t\t\t\t\tleft: 6px;\n\t\t\t\t\t}\n\t\t\t\t\ti {\n\t\t\t\t\t\twidth: 12px;\n\t\t\t\t\t\theight: 12px;\n\t\t\t\t\t\tmargin-right: 2px;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t.acf-modal-toolbar {\n\t\t\tdisplay: flex;\n\t\t\talign-items: flex-start;\n\t\t\tjustify-content: space-between;\n\t\t\theight: auto;\n\t\t\tmin-height: 72px;\n\t\t\tpadding: {\n\t\t\t\ttop: 0;\n\t\t\t\tright: 32px;\n\t\t\t\tbottom: 0;\n\t\t\t\tleft: 32px;\n\t\t\t}\n\t\t\tmargin: 0;\n\t\t\tborder: none;\n\n\t\t\t.acf-select-field,\n\t\t\t.acf-btn-pro {\n\t\t\t\tmin-width: 160px;\n\t\t\t\tjustify-content: center;\n\t\t\t}\n\n\t\t\t.acf-insert-field-label {\n\t\t\t\tmin-width: 280px;\n\t\t\t\tbox-shadow: none;\n\t\t\t}\n\n\t\t\t.acf-field-picker-actions {\n\t\t\t\tdisplay: flex;\n\t\t\t\tgap: 8px;\n\t\t\t}\n\t\t}\n\t}\n\n\t.acf-field-type-preview {\n\t\tdisplay: flex;\n\t\tflex-direction: column;\n\t\twidth: 360px;\n\t\tbackground-color: $gray-50;\n\t\tbackground-image: url(\"../../images/field-preview-grid.png\");\n\t\tbackground-size: 740px;\n\t\tbackground-repeat: no-repeat;\n\t\tbackground-position: center bottom;\n\t\tborder-left: 1px solid $gray-200;\n\t\tbox-sizing: border-box;\n\t\tpadding: 32px;\n\n\t\t.field-type-desc {\n\t\t\tmargin: 0;\n\t\t\tpadding: 0;\n\t\t\tcolor: $gray-500;\n\t\t}\n\n\t\t.field-type-preview-container {\n\t\t\tdisplay: inline-flex;\n\t\t\tjustify-content: center;\n\t\t\twidth: 100%;\n\t\t\tmargin: {\n\t\t\t\ttop: 24px;\n\t\t\t}\n\t\t\tpadding: {\n\t\t\t\ttop: 32px;\n\t\t\t\tbottom: 32px;\n\t\t\t}\n\t\t\tbackground-color: rgba(#fff, 0.64);\n\t\t\tborder-radius: $radius-lg;\n\t\t\tbox-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.04),\n\t\t\t\t0px 8px 24px rgba(0, 0, 0, 0.04);\n\t\t}\n\n\t\t.field-type-image {\n\t\t\tmax-width: 232px;\n\t\t}\n\n\t\t.field-type-info {\n\t\t\tflex-grow: 1;\n\n\t\t\t.field-type-name {\n\t\t\t\tfont-size: 21px;\n\t\t\t\tmargin: {\n\t\t\t\t\ttop: 0;\n\t\t\t\t\tright: 0;\n\t\t\t\t\tbottom: 16px;\n\t\t\t\t\tleft: 0;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t.field-type-upgrade-to-unlock {\n\t\t\t\tdisplay: inline-flex;\n\t\t\t\tjustify-items: center;\n\t\t\t\talign-items: center;\n\t\t\t\tmin-height: 24px;\n\t\t\t\tmargin: {\n\t\t\t\t\tbottom: 12px;\n\t\t\t\t}\n\t\t\t\tpadding: {\n\t\t\t\t\tright: 8px;\n\t\t\t\t\tleft: 8px;\n\t\t\t\t}\n\t\t\t\tbackground: $gradient-pro;\n\t\t\t\tbackground-size: 140% 20%;\n\t\t\t\tbackground-position: 100% 0;\n\t\t\t\tborder-radius: 100px;\n\t\t\t\tcolor: white;\n\t\t\t\ttext-decoration: none;\n\t\t\t\tfont-size: 11px;\n\n\t\t\t\ti.acf-icon {\n\t\t\t\t\twidth: 14px;\n\t\t\t\t\theight: 14px;\n\t\t\t\t\tmargin: {\n\t\t\t\t\t\tright: 4px;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t.field-type-links {\n\t\t\tdisplay: flex;\n\t\t\talign-items: center;\n\t\t\tgap: 24px;\n\t\t\tmin-height: 40px;\n\n\t\t\t.acf-icon {\n\t\t\t\t$icon-size: 18px;\n\t\t\t\twidth: $icon-size;\n\t\t\t\theight: $icon-size;\n\t\t\t}\n\n\t\t\t&:before {\n\t\t\t\tdisplay: none;\n\t\t\t}\n\n\t\t\ta {\n\t\t\t\tdisplay: flex;\n\t\t\t\tgap: 6px;\n\t\t\t\ttext-decoration: none;\n\n\t\t\t\t&:hover {\n\t\t\t\t\ttext-decoration: underline;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\t.acf-field-type-search-results,\n\t.acf-field-type-search-no-results {\n\t\tdisplay: none;\n\t}\n\n\t&.is-searching {\n\t\t.acf-tab-wrap,\n\t\t.acf-field-types-tab,\n\t\t.acf-field-type-search-no-results {\n\t\t\tdisplay: none !important;\n\t\t}\n\n\t\t.acf-field-type-search-results {\n\t\t\tdisplay: flex;\n\t\t}\n\t}\n\n\t&.no-results-found {\n\t\t.acf-tab-wrap,\n\t\t.acf-field-types-tab,\n\t\t.acf-field-type-search-results,\n\t\t.field-type-info,\n\t\t.field-type-links,\n\t\t.acf-field-picker-toolbar {\n\t\t\tdisplay: none !important;\n\t\t}\n\n\t\t.acf-modal-title {\n\t\t\tborder-bottom: {\n\t\t\t\twidth: 1px;\n\t\t\t\tstyle: solid;\n\t\t\t\tcolor: $gray-200;\n\t\t\t}\n\t\t}\n\n\t\t.acf-field-type-search-no-results {\n\t\t\tdisplay: flex;\n\t\t\tflex-direction: column;\n\t\t\tjustify-content: center;\n\t\t\talign-items: center;\n\t\t\theight: 100%;\n\t\t\tgap: 6px;\n\n\t\t\timg {\n\t\t\t\tmargin-bottom: 19px;\n\t\t\t}\n\n\t\t\tp {\n\t\t\t\tmargin: 0;\n\n\t\t\t\t&.acf-no-results-text {\n\t\t\t\t\tdisplay: flex;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t.acf-invalid-search-term {\n\t\t\t\tmax-width: 200px;\n\t\t\t\toverflow: hidden;\n\t\t\t\ttext-overflow: ellipsis;\n\t\t\t\tdisplay: inline-block;\n\t\t\t}\n\t\t}\n\t}\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Hide browse fields button for smaller screen sizes\n*\n*---------------------------------------------------------------------------------------------*/\n@media only screen and (max-width: 1080px) {\n\t.acf-btn.browse-fields {\n\t\tdisplay: none;\n\t}\n}\n"],"names":[],"sourceRoot":""} \ No newline at end of file diff --git a/assets/build/css/acf-global.min.css b/assets/build/css/acf-global.min.css index e05dad5..79886fc 100644 --- a/assets/build/css/acf-global.min.css +++ b/assets/build/css/acf-global.min.css @@ -1 +1 @@ -.acf-hl{padding:0;margin:0;list-style:none;display:block;position:relative}.acf-hl>li{float:left;display:block;margin:0;padding:0}.acf-hl>li.acf-fr{float:right}.acf-hl:before,.acf-hl:after,.acf-bl:before,.acf-bl:after,.acf-cf:before,.acf-cf:after{content:"";display:block;line-height:0}.acf-hl:after,.acf-bl:after,.acf-cf:after{clear:both}.acf-bl{padding:0;margin:0;list-style:none;display:block;position:relative}.acf-bl>li{display:block;margin:0;padding:0;float:none}.acf-hidden{display:none !important}.acf-empty{display:table-cell !important}.acf-empty *{display:none !important}.acf-fl{float:left}.acf-fr{float:right}.acf-fn{float:none}.acf-al{text-align:left}.acf-ar{text-align:right}.acf-ac{text-align:center}.acf-loading,.acf-spinner{display:inline-block;height:20px;width:20px;vertical-align:text-top;background:rgba(0,0,0,0) url(../../images/spinner.gif) no-repeat 50% 50%}.acf-spinner{display:none}.acf-spinner.is-active{display:inline-block}.spinner.is-active{display:inline-block}.acf-required{color:red}.acf-button,.acf-tab-button{pointer-events:auto !important}.acf-soh .acf-soh-target{-webkit-transition:opacity .25s 0s ease-in-out,visibility 0s linear .25s;-moz-transition:opacity .25s 0s ease-in-out,visibility 0s linear .25s;-o-transition:opacity .25s 0s ease-in-out,visibility 0s linear .25s;transition:opacity .25s 0s ease-in-out,visibility 0s linear .25s;visibility:hidden;opacity:0}.acf-soh:hover .acf-soh-target{-webkit-transition-delay:0s;-moz-transition-delay:0s;-o-transition-delay:0s;transition-delay:0s;visibility:visible;opacity:1}.show-if-value{display:none}.hide-if-value{display:block}.has-value .show-if-value{display:block}.has-value .hide-if-value{display:none}.select2-search-choice-close{-webkit-transition:none;-moz-transition:none;-o-transition:none;transition:none}.acf-tooltip{background:#1d2939;border-radius:6px;color:#d0d5dd;padding-top:8px;padding-right:12px;padding-bottom:10px;padding-left:12px;position:absolute;z-index:900000;max-width:280px;box-shadow:0px 12px 16px -4px rgba(16,24,40,.08),0px 4px 6px -2px rgba(16,24,40,.03)}.acf-tooltip:before{border:solid;border-color:rgba(0,0,0,0);border-width:6px;content:"";position:absolute}.acf-tooltip.top{margin-top:-8px}.acf-tooltip.top:before{top:100%;left:50%;margin-left:-6px;border-top-color:#2f353e;border-bottom-width:0}.acf-tooltip.right{margin-left:8px}.acf-tooltip.right:before{top:50%;margin-top:-6px;right:100%;border-right-color:#2f353e;border-left-width:0}.acf-tooltip.bottom{margin-top:8px}.acf-tooltip.bottom:before{bottom:100%;left:50%;margin-left:-6px;border-bottom-color:#2f353e;border-top-width:0}.acf-tooltip.left{margin-left:-8px}.acf-tooltip.left:before{top:50%;margin-top:-6px;left:100%;border-left-color:#2f353e;border-right-width:0}.acf-tooltip .acf-overlay{z-index:-1}.acf-tooltip.-confirm{z-index:900001}.acf-tooltip.-confirm a{text-decoration:none;color:#9ea3a8}.acf-tooltip.-confirm a:hover{text-decoration:underline}.acf-tooltip.-confirm a[data-event=confirm]{color:#f55e4f}.acf-overlay{position:fixed;top:0;bottom:0;left:0;right:0;cursor:default}.acf-tooltip-target{position:relative;z-index:900002}.acf-loading-overlay{position:absolute;top:0;bottom:0;left:0;right:0;cursor:default;z-index:99;background:rgba(249,249,249,.5)}.acf-loading-overlay i{position:absolute;top:50%;left:50%;transform:translate(-50%, -50%)}.acf-icon{display:inline-block;height:28px;width:28px;border:rgba(0,0,0,0) solid 1px;border-radius:100%;font-size:20px;line-height:21px;text-align:center;text-decoration:none;vertical-align:top;box-sizing:border-box}.acf-icon:before{font-family:dashicons;display:inline-block;line-height:1;font-weight:400;font-style:normal;speak:none;text-decoration:inherit;text-transform:none;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;width:1em;height:1em;vertical-align:middle;text-align:center}.acf-icon.-plus:before{content:""}.acf-icon.-minus:before{content:""}.acf-icon.-cancel:before{content:"";margin:-1px 0 0 -1px}.acf-icon.-pencil:before{content:""}.acf-icon.-location:before{content:""}.acf-icon.-up:before{content:"";margin-top:-0.1em}.acf-icon.-down:before{content:"";margin-top:.1em}.acf-icon.-left:before{content:"";margin-left:-0.1em}.acf-icon.-right:before{content:"";margin-left:.1em}.acf-icon.-sync:before{content:""}.acf-icon.-globe:before{content:"";margin-top:.1em;margin-left:.1em}.acf-icon.-picture:before{content:""}.acf-icon.-check:before{content:"";margin-left:-0.1em}.acf-icon.-dot-3:before{content:"";margin-top:-0.1em}.acf-icon.-arrow-combo:before{content:""}.acf-icon.-arrow-up:before{content:"";margin-left:-0.1em}.acf-icon.-arrow-down:before{content:"";margin-left:-0.1em}.acf-icon.-search:before{content:""}.acf-icon.-link-ext:before{content:""}.acf-icon.-duplicate{position:relative}.acf-icon.-duplicate:before,.acf-icon.-duplicate:after{content:"";display:block;box-sizing:border-box;width:46%;height:46%;position:absolute;top:33%;left:23%}.acf-icon.-duplicate:before{margin:-1px 0 0 1px;box-shadow:2px -2px 0px 0px currentColor}.acf-icon.-duplicate:after{border:solid 2px currentColor}.acf-icon.-trash{position:relative}.acf-icon.-trash:before,.acf-icon.-trash:after{content:"";display:block;box-sizing:border-box;width:46%;height:46%;position:absolute;top:33%;left:23%}.acf-icon.-trash:before{margin:-1px 0 0 1px;box-shadow:2px -2px 0px 0px currentColor}.acf-icon.-trash:after{border:solid 2px currentColor}.acf-icon.-collapse:before{content:"";margin-left:-0.1em}.-collapsed .acf-icon.-collapse:before{content:"";margin-left:-0.1em}span.acf-icon{color:#555d66;border-color:#b5bcc2;background-color:#fff}a.acf-icon{color:#555d66;border-color:#b5bcc2;background-color:#fff;position:relative;transition:none;cursor:pointer}a.acf-icon:hover{background:#f3f5f6;border-color:#0071a1;color:#0071a1}a.acf-icon.-minus:hover,a.acf-icon.-cancel:hover{background:#f7efef;border-color:#a10000;color:#dc3232}a.acf-icon:active,a.acf-icon:focus{outline:none;box-shadow:none}.acf-icon.-clear{border-color:rgba(0,0,0,0);background:rgba(0,0,0,0);color:#444}.acf-icon.light{border-color:rgba(0,0,0,0);background:#f5f5f5;color:#23282d}.acf-icon.dark{border-color:rgba(0,0,0,0) !important;background:#23282d;color:#eee}a.acf-icon.dark:hover{background:#191e23;color:#00b9eb}a.acf-icon.dark.-minus:hover,a.acf-icon.dark.-cancel:hover{color:#d54e21}.acf-icon.grey{border-color:rgba(0,0,0,0) !important;background:#b4b9be;color:#fff !important}.acf-icon.grey:hover{background:#00a0d2;color:#fff}.acf-icon.grey.-minus:hover,.acf-icon.grey.-cancel:hover{background:#32373c}.acf-icon.small,.acf-icon.-small{width:20px;height:20px;line-height:14px;font-size:14px}.acf-icon.small.-duplicate:before,.acf-icon.small.-duplicate:after,.acf-icon.-small.-duplicate:before,.acf-icon.-small.-duplicate:after{opacity:.8}.acf-box{background:#fff;border:1px solid #ccd0d4;position:relative;box-shadow:0 1px 1px rgba(0,0,0,.04)}.acf-box .title{border-bottom:1px solid #ccd0d4;margin:0;padding:15px}.acf-box .title h3{display:flex;align-items:center;font-size:14px;line-height:1em;margin:0;padding:0}.acf-box .inner{padding:15px}.acf-box h2{color:#333;font-size:26px;line-height:1.25em;margin:.25em 0 .75em;padding:0}.acf-box h3{margin:1.5em 0 0}.acf-box p{margin-top:.5em}.acf-box a{text-decoration:none}.acf-box i.dashicons-external{margin-top:-1px}.acf-box .footer{border-top:1px solid #ccd0d4;padding:12px;font-size:13px;line-height:1.5}.acf-box .footer p{margin:0}.acf-admin-3-8 .acf-box{border-color:#e5e5e5}.acf-admin-3-8 .acf-box .title,.acf-admin-3-8 .acf-box .footer{border-color:#e5e5e5}.acf-notice{position:relative;display:block;color:#fff;margin:5px 0 15px;padding:3px 12px;background:#2a9bd9;border-left:#1f7db1 solid 3px}.acf-notice p{font-size:13px;line-height:1.5;margin:.5em 0;text-shadow:none;color:inherit}.acf-notice .acf-notice-dismiss{position:absolute;top:9px;right:12px;background:rgba(0,0,0,0) !important;color:inherit !important;border-color:#fff !important;opacity:.75}.acf-notice .acf-notice-dismiss:hover{opacity:1}.acf-notice.-dismiss{padding-right:40px}.acf-notice.-error{background:#d94f4f;border-color:#c92c2c}.acf-notice.-success{background:#49ad52;border-color:#3a8941}.acf-notice.-warning{background:#fd8d3b;border-color:#fc7009}.acf-table{border:#ccd0d4 solid 1px;background:#fff;border-spacing:0;border-radius:0;table-layout:auto;padding:0;margin:0;width:100%;clear:both;box-sizing:content-box}.acf-table>tbody>tr>th,.acf-table>tbody>tr>td,.acf-table>thead>tr>th,.acf-table>thead>tr>td{padding:8px;vertical-align:top;background:#fff;text-align:left;border-style:solid;font-weight:normal}.acf-table>tbody>tr>th,.acf-table>thead>tr>th{position:relative;color:#333}.acf-table>thead>tr>th{border-color:#d5d9dd;border-width:0 0 1px 1px}.acf-table>thead>tr>th:first-child{border-left-width:0}.acf-table>tbody>tr{z-index:1}.acf-table>tbody>tr>td{border-color:#eee;border-width:1px 0 0 1px}.acf-table>tbody>tr>td:first-child{border-left-width:0}.acf-table>tbody>tr:first-child>td{border-top-width:0}.acf-table.-clear{border:0 none}.acf-table.-clear>tbody>tr>td,.acf-table.-clear>tbody>tr>th,.acf-table.-clear>thead>tr>td,.acf-table.-clear>thead>tr>th{border:0 none;padding:4px}.acf-remove-element{-webkit-transition:all .25s ease-out;-moz-transition:all .25s ease-out;-o-transition:all .25s ease-out;transition:all .25s ease-out;transform:translate(50px, 0);opacity:0}.acf-fade-up{-webkit-transition:all .25s ease-out;-moz-transition:all .25s ease-out;-o-transition:all .25s ease-out;transition:all .25s ease-out;transform:translate(0, -10px);opacity:0}.acf-thead,.acf-tbody,.acf-tfoot{width:100%;padding:0;margin:0}.acf-thead>li,.acf-tbody>li,.acf-tfoot>li{box-sizing:border-box;padding-top:14px;font-size:12px;line-height:14px}.acf-thead{border-bottom:#ccd0d4 solid 1px;color:#23282d}.acf-thead>li{font-size:14px;line-height:1.4;font-weight:bold}.acf-admin-3-8 .acf-thead{border-color:#dfdfdf}.acf-tfoot{background:#f5f5f5;border-top:#d5d9dd solid 1px}.acf-settings-wrap #poststuff{padding-top:15px}.acf-settings-wrap .acf-box{margin:20px 0}.acf-settings-wrap table{margin:0}.acf-settings-wrap table .button{vertical-align:middle}#acf-popup{position:fixed;z-index:900000;top:0;left:0;right:0;bottom:0;text-align:center}#acf-popup .bg{position:absolute;top:0;left:0;right:0;bottom:0;z-index:0;background:rgba(0,0,0,.25)}#acf-popup:before{content:"";display:inline-block;height:100%;vertical-align:middle}#acf-popup .acf-popup-box{display:inline-block;vertical-align:middle;z-index:1;min-width:300px;min-height:160px;border-color:#aaa;box-shadow:0 5px 30px -5px rgba(0,0,0,.25);text-align:left}html[dir=rtl] #acf-popup .acf-popup-box{text-align:right}#acf-popup .acf-popup-box .title{min-height:15px;line-height:15px}#acf-popup .acf-popup-box .title .acf-icon{position:absolute;top:10px;right:10px}html[dir=rtl] #acf-popup .acf-popup-box .title .acf-icon{right:auto;left:10px}#acf-popup .acf-popup-box .inner{min-height:50px;padding:0;margin:15px}#acf-popup .acf-popup-box .loading{position:absolute;top:45px;left:0;right:0;bottom:0;z-index:2;background:rgba(0,0,0,.1);display:none}#acf-popup .acf-popup-box .loading i{position:absolute;top:50%;left:50%;transform:translate(-50%, -50%)}.acf-submit{margin-bottom:0;line-height:28px}.acf-submit span{float:right;color:#999}.acf-submit span.-error{color:#dd4232}.acf-submit .button{margin-right:5px}#acf-upgrade-notice{position:relative;background:#fff;padding:20px}#acf-upgrade-notice:after{display:block;clear:both;content:""}#acf-upgrade-notice .col-content{float:left;width:55%;padding-left:90px}#acf-upgrade-notice .notice-container{display:flex;justify-content:space-between;align-items:flex-start;align-content:flex-start}#acf-upgrade-notice .col-actions{float:right;text-align:center}#acf-upgrade-notice img{float:left;width:64px;height:64px;margin:0 0 0 -90px}#acf-upgrade-notice h2{display:inline-block;font-size:16px;margin:2px 0 6.5px}#acf-upgrade-notice p{padding:0;margin:0}#acf-upgrade-notice .button:before{margin-top:11px}@media screen and (max-width: 640px){#acf-upgrade-notice .col-content,#acf-upgrade-notice .col-actions{float:none;padding-left:90px;width:auto;text-align:left}}#acf-upgrade-notice:has(.notice-container)::before,#acf-upgrade-notice:has(.notice-container)::after{display:none}#acf-upgrade-notice:has(.notice-container){padding-left:20px !important}.acf-wrap h1{margin-top:0;padding-top:20px}.acf-wrap .about-text{margin-top:.5em;min-height:50px}.acf-wrap .about-headline-callout{font-size:2.4em;font-weight:300;line-height:1.3;margin:1.1em 0 .2em;text-align:center}.acf-wrap .feature-section{padding:40px 0}.acf-wrap .feature-section h2{margin-top:20px}.acf-wrap .changelog{list-style:disc;padding-left:15px}.acf-wrap .changelog li{margin:0 0 .75em}.acf-wrap .acf-three-col{display:flex;flex-wrap:wrap;justify-content:space-between}.acf-wrap .acf-three-col>div{flex:1;align-self:flex-start;min-width:31%;max-width:31%}@media screen and (max-width: 880px){.acf-wrap .acf-three-col>div{min-width:48%}}@media screen and (max-width: 640px){.acf-wrap .acf-three-col>div{min-width:100%}}.acf-wrap .acf-three-col h3 .badge{display:inline-block;vertical-align:top;border-radius:5px;background:#fc9700;color:#fff;font-weight:normal;font-size:12px;padding:2px 5px}.acf-wrap .acf-three-col img+h3{margin-top:.5em}.acf-hl[data-cols]{margin-left:-10px;margin-right:-10px}.acf-hl[data-cols]>li{padding:0 6px 0 10px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.acf-hl[data-cols="2"]>li{width:50%}.acf-hl[data-cols="3"]>li{width:33.333%}.acf-hl[data-cols="4"]>li{width:25%}@media screen and (max-width: 640px){.acf-hl[data-cols]{flex-wrap:wrap;justify-content:flex-start;align-content:flex-start;align-items:flex-start;margin-left:0;margin-right:0;margin-top:-10px}.acf-hl[data-cols]>li{flex:1 1 100%;width:100% !important;padding:10px 0 0}}.acf-actions{text-align:right;z-index:1}.acf-actions.-hover{position:absolute;display:none;top:0;right:0;padding:5px;z-index:1050}html[dir=rtl] .acf-actions.-hover{right:auto;left:0}ul.acf-actions li{float:right;margin-left:4px}html[dir=rtl] .acf-fl{float:right}html[dir=rtl] .acf-fr{float:left}html[dir=rtl] .acf-hl>li{float:right}html[dir=rtl] .acf-hl>li.acf-fr{float:left}html[dir=rtl] .acf-icon.logo{left:0;right:auto}html[dir=rtl] .acf-table thead th{text-align:right;border-right-width:1px;border-left-width:0px}html[dir=rtl] .acf-table>tbody>tr>td{text-align:right;border-right-width:1px;border-left-width:0px}html[dir=rtl] .acf-table>thead>tr>th:first-child,html[dir=rtl] .acf-table>tbody>tr>td:first-child{border-right-width:0}html[dir=rtl] .acf-table>tbody>tr>td.order+td{border-right-color:#e1e1e1}.acf-postbox-columns{position:relative;margin-top:-11px;margin-bottom:-12px;margin-left:-12px;margin-right:268px}.acf-postbox-columns:after{display:block;clear:both;content:""}.acf-postbox-columns .acf-postbox-main,.acf-postbox-columns .acf-postbox-side{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:0 12px 12px}.acf-postbox-columns .acf-postbox-main{float:left;width:100%}.acf-postbox-columns .acf-postbox-side{float:right;width:280px;margin-right:-280px}.acf-postbox-columns .acf-postbox-side:before{content:"";display:block;position:absolute;width:1px;height:100%;top:0;right:0;background:#d5d9dd}.acf-admin-3-8 .acf-postbox-columns .acf-postbox-side:before{background:#dfdfdf}@media only screen and (max-width: 850px){.acf-postbox-columns{margin:0}.acf-postbox-columns .acf-postbox-main,.acf-postbox-columns .acf-postbox-side{float:none;width:auto;margin:0;padding:0}.acf-postbox-columns .acf-postbox-side{margin-top:1em}.acf-postbox-columns .acf-postbox-side:before{display:none}}.acf-panel{margin-top:-1px;border-top:1px solid #d5d9dd;border-bottom:1px solid #d5d9dd}.acf-panel .acf-panel-title{margin:0;padding:12px;font-weight:bold;cursor:pointer;font-size:inherit}.acf-panel .acf-panel-title i{float:right}.acf-panel .acf-panel-inside{margin:0;padding:0 12px 12px;display:none}.acf-panel.-open .acf-panel-inside{display:block}.postbox .acf-panel{margin-left:-12px;margin-right:-12px}.acf-panel .acf-field{margin:20px 0 0}.acf-panel .acf-field .acf-label label{color:#555d66;font-weight:normal}.acf-panel .acf-field:first-child{margin-top:0}.acf-admin-3-8 .acf-panel{border-color:#dfdfdf}#acf-admin-tools .notice{margin-top:10px}#acf-admin-tools .acf-meta-box-wrap .inside{border-top:none}#acf-admin-tools .acf-meta-box-wrap .acf-fields{margin-bottom:24px;border:none;background:#fff;border-radius:0}#acf-admin-tools .acf-meta-box-wrap .acf-fields .acf-field{padding:0;margin-bottom:19px;border-top:none}#acf-admin-tools .acf-meta-box-wrap .acf-fields .acf-label{margin-bottom:16px}#acf-admin-tools .acf-meta-box-wrap .acf-fields .acf-input{padding-top:16px;padding-right:16px;padding-bottom:16px;padding-left:16px;border-width:1px;border-style:solid;border-color:#d0d5dd;border-radius:6px}#acf-admin-tools .acf-meta-box-wrap .acf-fields.import-cptui{margin-top:19px}.acf-meta-box-wrap .postbox{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.acf-meta-box-wrap .postbox .inside{margin-bottom:0}.acf-meta-box-wrap .postbox .hndle{font-size:14px;padding:8px 12px;margin:0;line-height:1.4;position:relative;z-index:1;cursor:default}.acf-meta-box-wrap .postbox .handlediv,.acf-meta-box-wrap .postbox .handle-order-higher,.acf-meta-box-wrap .postbox .handle-order-lower{display:none}.acf-meta-box-wrap.-grid{margin-left:8px;margin-right:8px}.acf-meta-box-wrap.-grid .postbox{float:left;clear:left;width:50%;margin:0 0 16px}.acf-meta-box-wrap.-grid .postbox:nth-child(odd){margin-left:-8px}.acf-meta-box-wrap.-grid .postbox:nth-child(even){float:right;clear:right;margin-right:-8px}@media only screen and (max-width: 850px){.acf-meta-box-wrap.-grid{margin-left:0;margin-right:0}.acf-meta-box-wrap.-grid .postbox{margin-left:0 !important;margin-right:0 !important;width:100%}}#acf-admin-tool-export p{max-width:800px}#acf-admin-tool-export ul{display:flex;flex-wrap:wrap;width:100%}#acf-admin-tool-export ul li{flex:0 1 33.33%}@media screen and (max-width: 1600px){#acf-admin-tool-export ul li{flex:0 1 50%}}@media screen and (max-width: 1200px){#acf-admin-tool-export ul li{flex:0 1 100%}}#acf-admin-tool-export .acf-postbox-side ul{display:block}#acf-admin-tool-export .acf-postbox-side .button{margin:0;width:100%}#acf-admin-tool-export textarea{display:block;width:100%;min-height:500px;background:#f9fafb;border-color:#d0d5dd;box-shadow:none;padding:7px;border-radius:6px}#acf-admin-tool-export .acf-panel-selection .acf-label label{font-weight:bold;color:#344054}#acf-admin-tool-import ul{column-width:200px}.acf-css-tooltip{position:relative}.acf-css-tooltip:before{content:attr(aria-label);display:none;position:absolute;z-index:999;bottom:100%;left:50%;transform:translate(-50%, -8px);background:#191e23;border-radius:2px;padding:5px 10px;color:#fff;font-size:12px;line-height:1.4em;white-space:pre}.acf-css-tooltip:after{content:"";display:none;position:absolute;z-index:998;bottom:100%;left:50%;transform:translate(-50%, 4px);border:solid 6px rgba(0,0,0,0);border-top-color:#191e23}.acf-css-tooltip:hover:before,.acf-css-tooltip:hover:after,.acf-css-tooltip:focus:before,.acf-css-tooltip:focus:after{display:block}.acf-diff .acf-diff-title{position:absolute;top:0;left:0;right:0;height:40px;padding:14px 16px;background:#f3f3f3;border-bottom:#ddd solid 1px}.acf-diff .acf-diff-title strong{font-size:14px;display:block}.acf-diff .acf-diff-title .acf-diff-title-left,.acf-diff .acf-diff-title .acf-diff-title-right{width:50%;float:left}.acf-diff .acf-diff-content{position:absolute;top:70px;left:0;right:0;bottom:0;overflow:auto}.acf-diff table.diff{border-spacing:0}.acf-diff table.diff col.diffsplit.middle{width:0}.acf-diff table.diff td,.acf-diff table.diff th{padding-top:.25em;padding-bottom:.25em}.acf-diff table.diff tr td:nth-child(2){width:auto}.acf-diff table.diff td:nth-child(3){border-left:#ddd solid 1px}@media screen and (max-width: 600px){.acf-diff .acf-diff-title{height:70px}.acf-diff .acf-diff-content{top:100px}}.acf-modal{position:fixed;top:30px;left:30px;right:30px;bottom:30px;z-index:160000;box-shadow:0 5px 15px rgba(0,0,0,.7);background:#fcfcfc}.acf-modal .acf-modal-title,.acf-modal .acf-modal-content,.acf-modal .acf-modal-toolbar{box-sizing:border-box;position:absolute;left:0;right:0}.acf-modal .acf-modal-title{height:50px;top:0;border-bottom:1px solid #ddd}.acf-modal .acf-modal-title h2{margin:0;padding:0 16px;line-height:50px}.acf-modal .acf-modal-title .acf-modal-close{position:absolute;top:0;right:0;height:50px;width:50px;border:none;border-left:1px solid #ddd;background:rgba(0,0,0,0);cursor:pointer;color:#666}.acf-modal .acf-modal-title .acf-modal-close:hover{color:#00a0d2}.acf-modal .acf-modal-content{top:50px;bottom:60px;background:#fff;overflow:auto;padding:16px}.acf-modal .acf-modal-feedback{position:absolute;top:50%;margin:-10px 0;left:0;right:0;text-align:center;opacity:.75}.acf-modal .acf-modal-feedback.error{opacity:1;color:#b52727}.acf-modal .acf-modal-toolbar{height:60px;bottom:0;padding:15px 16px;border-top:1px solid #ddd}.acf-modal .acf-modal-toolbar .button{float:right}@media only screen and (max-width: 640px){.acf-modal{top:0;left:0;right:0;bottom:0}}.acf-modal-backdrop{position:fixed;top:0;left:0;right:0;bottom:0;background:#101828;opacity:.8;z-index:159900}@media only screen and (-webkit-min-device-pixel-ratio: 2),only screen and (min--moz-device-pixel-ratio: 2),only screen and (-o-min-device-pixel-ratio: 2/1),only screen and (min-device-pixel-ratio: 2),only screen and (min-resolution: 192dpi),only screen and (min-resolution: 2dppx){.acf-loading,.acf-spinner{background-image:url(../../images/spinner@2x.gif);background-size:20px 20px}}.acf-admin-page .wrap{margin-top:48px;margin-right:32px;margin-bottom:0;margin-left:12px}@media screen and (max-width: 768px){.acf-admin-page .wrap{margin-right:8px;margin-left:8px}}.acf-admin-page.rtl .wrap{margin-right:12px;margin-left:32px}@media screen and (max-width: 768px){.acf-admin-page.rtl .wrap{margin-right:8px;margin-left:8px}}@media screen and (max-width: 768px){.acf-admin-page #wpcontent{padding-left:0}}.acf-admin-page #wpfooter{font-style:italic}.acf-admin-page .postbox,.acf-admin-page .acf-box{border:none;border-radius:8px;box-shadow:0px 1px 2px rgba(16,24,40,.1)}.acf-admin-page .postbox .inside,.acf-admin-page .acf-box .inside{padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px}.acf-admin-page .postbox .acf-postbox-inner,.acf-admin-page .acf-box .acf-postbox-inner{margin-top:0;margin-right:0;margin-bottom:0;margin-left:0;padding-top:24px;padding-right:0;padding-bottom:0;padding-left:0}.acf-admin-page .postbox .inner,.acf-admin-page .postbox .inside,.acf-admin-page .acf-box .inner,.acf-admin-page .acf-box .inside{margin-top:0 !important;margin-right:0 !important;margin-bottom:0 !important;margin-left:0 !important;border-top-width:1px;border-top-style:solid;border-top-color:#eaecf0}.acf-admin-page .postbox .postbox-header,.acf-admin-page .postbox .title,.acf-admin-page .acf-box .postbox-header,.acf-admin-page .acf-box .title{display:flex;align-items:center;box-sizing:border-box;min-height:64px;margin-top:0;margin-right:0;margin-bottom:0;margin-left:0;padding-top:0;padding-right:24px;padding-bottom:0;padding-left:24px;border-bottom-width:0;border-bottom-style:none}.acf-admin-page .postbox .postbox-header h2,.acf-admin-page .postbox .postbox-header h3,.acf-admin-page .postbox .title h2,.acf-admin-page .postbox .title h3,.acf-admin-page .acf-box .postbox-header h2,.acf-admin-page .acf-box .postbox-header h3,.acf-admin-page .acf-box .title h2,.acf-admin-page .acf-box .title h3{margin-top:0;margin-right:0;margin-bottom:0;margin-left:0;padding-top:0;padding-right:0;padding-bottom:0;padding-left:0;color:#344054}.acf-admin-page .postbox .hndle,.acf-admin-page .acf-box .hndle{padding-top:0;padding-right:24px;padding-bottom:0;padding-left:24px}.acf-postbox-header{display:flex;align-items:center;justify-content:space-between;box-sizing:border-box;min-height:64px;margin-top:-24px;margin-right:-24px;margin-bottom:0;margin-left:-24px;padding-top:0;padding-right:24px;padding-bottom:0;padding-left:24px;border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#eaecf0}.acf-postbox-header h2.acf-postbox-title{margin-top:0;margin-right:0;margin-bottom:0;margin-left:0;padding-top:0;padding-right:24px;padding-bottom:0;padding-left:0;color:#344054}.rtl .acf-postbox-header h2.acf-postbox-title{padding-right:0;padding-left:24px}.acf-postbox-header .acf-icon{background-color:#98a2b3}.acf-admin-page #screen-meta-links{margin-right:32px}.acf-admin-page #screen-meta-links .show-settings{border-color:#d0d5dd}@media screen and (max-width: 768px){.acf-admin-page #screen-meta-links{margin-right:16px;margin-bottom:0}}.acf-admin-page.rtl #screen-meta-links{margin-right:0;margin-left:32px}@media screen and (max-width: 768px){.acf-admin-page.rtl #screen-meta-links{margin-right:0;margin-left:16px}}.acf-admin-page #screen-meta{border-color:#d0d5dd}.acf-admin-page #poststuff .postbox-header h2,.acf-admin-page #poststuff .postbox-header h3{justify-content:flex-start;margin-top:0;margin-right:0;margin-bottom:0;margin-left:0;padding-top:0;padding-right:0;padding-bottom:0;padding-left:0;color:#344054 !important}.acf-admin-page.is-dragging-metaboxes .metabox-holder .postbox-container .meta-box-sortables{box-sizing:border-box;padding:2px;outline:none;background-image:repeating-linear-gradient(0deg, #667085, #667085 5px, transparent 5px, transparent 10px, #667085 10px),repeating-linear-gradient(90deg, #667085, #667085 5px, transparent 5px, transparent 10px, #667085 10px),repeating-linear-gradient(180deg, #667085, #667085 5px, transparent 5px, transparent 10px, #667085 10px),repeating-linear-gradient(270deg, #667085, #667085 5px, transparent 5px, transparent 10px, #667085 10px);background-size:1.5px 100%,100% 1.5px,1.5px 100%,100% 1.5px;background-position:0 0,0 0,100% 0,0 100%;background-repeat:no-repeat;border-radius:8px}.acf-admin-page .ui-sortable-placeholder{border:none}.acf-admin-page .subtitle{display:inline-flex;align-items:center;height:24px;margin:0;padding-top:4px;padding-right:12px;padding-bottom:4px;padding-left:12px;background-color:#ebf5fa;border-width:1px;border-style:solid;border-color:#a5d2e7;border-radius:6px}.acf-admin-page .subtitle strong{margin-left:5px}.acf-actions-strip{display:flex}.acf-actions-strip .acf-btn{margin-right:8px}.acf-admin-page .acf-notice,.acf-admin-page .notice,.acf-admin-page #lost-connection-notice{position:relative;box-sizing:border-box;min-height:48px;margin-top:0 !important;margin-right:0 !important;margin-bottom:16px !important;margin-left:0 !important;padding-top:13px !important;padding-right:16px !important;padding-bottom:12px !important;padding-left:50px !important;background-color:#e7eff9;border-width:1px;border-style:solid;border-color:#9dbaee;border-radius:8px;box-shadow:0px 1px 2px rgba(16,24,40,.1);color:#344054}.acf-admin-page .acf-notice.update-nag,.acf-admin-page .notice.update-nag,.acf-admin-page #lost-connection-notice.update-nag{display:block;position:relative;width:calc(100% - 44px);margin-top:48px !important;margin-right:44px !important;margin-bottom:-32px !important;margin-left:12px !important}.acf-admin-page .acf-notice .button,.acf-admin-page .notice .button,.acf-admin-page #lost-connection-notice .button{height:auto;margin-left:8px;padding:0;border:none}.acf-admin-page .acf-notice>div,.acf-admin-page .notice>div,.acf-admin-page #lost-connection-notice>div{margin-top:0;margin-bottom:0}.acf-admin-page .acf-notice p,.acf-admin-page .notice p,.acf-admin-page #lost-connection-notice p{flex:1 0 auto;max-width:100%;line-height:18px;margin:0;padding:0}.acf-admin-page .acf-notice p.help,.acf-admin-page .notice p.help,.acf-admin-page #lost-connection-notice p.help{margin-top:0;padding-top:0;color:rgba(52,64,84,.7)}.acf-admin-page .acf-notice .acf-notice-dismiss,.acf-admin-page .acf-notice .notice-dismiss,.acf-admin-page .notice .acf-notice-dismiss,.acf-admin-page .notice .notice-dismiss,.acf-admin-page #lost-connection-notice .acf-notice-dismiss,.acf-admin-page #lost-connection-notice .notice-dismiss{position:absolute;top:4px;right:8px;padding:9px;border:none}.acf-admin-page .acf-notice .acf-notice-dismiss:before,.acf-admin-page .acf-notice .notice-dismiss:before,.acf-admin-page .notice .acf-notice-dismiss:before,.acf-admin-page .notice .notice-dismiss:before,.acf-admin-page #lost-connection-notice .acf-notice-dismiss:before,.acf-admin-page #lost-connection-notice .notice-dismiss:before{content:"";display:block;position:relative;z-index:600;width:20px;height:20px;background-color:#667085;border:none;border-radius:0;-webkit-mask-size:contain;mask-size:contain;-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;-webkit-mask-position:center;mask-position:center;-webkit-mask-image:url("../../images/icons/icon-close.svg");mask-image:url("../../images/icons/icon-close.svg")}.acf-admin-page .acf-notice .acf-notice-dismiss:hover::before,.acf-admin-page .acf-notice .notice-dismiss:hover::before,.acf-admin-page .notice .acf-notice-dismiss:hover::before,.acf-admin-page .notice .notice-dismiss:hover::before,.acf-admin-page #lost-connection-notice .acf-notice-dismiss:hover::before,.acf-admin-page #lost-connection-notice .notice-dismiss:hover::before{background-color:#344054}.acf-admin-page .acf-notice a.acf-notice-dismiss,.acf-admin-page .notice a.acf-notice-dismiss,.acf-admin-page #lost-connection-notice a.acf-notice-dismiss{position:absolute;top:5px;right:24px}.acf-admin-page .acf-notice a.acf-notice-dismiss:before,.acf-admin-page .notice a.acf-notice-dismiss:before,.acf-admin-page #lost-connection-notice a.acf-notice-dismiss:before{background-color:#475467}.acf-admin-page .acf-notice:before,.acf-admin-page .notice:before,.acf-admin-page #lost-connection-notice:before{content:"";display:block;position:absolute;top:15px;left:18px;z-index:600;width:16px;height:16px;margin-right:8px;background-color:#fff;border:none;border-radius:0;-webkit-mask-size:contain;mask-size:contain;-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;-webkit-mask-position:center;mask-position:center;-webkit-mask-image:url("../../images/icons/icon-info-solid.svg");mask-image:url("../../images/icons/icon-info-solid.svg")}.acf-admin-page .acf-notice:after,.acf-admin-page .notice:after,.acf-admin-page #lost-connection-notice:after{content:"";display:block;position:absolute;top:9px;left:12px;z-index:500;width:28px;height:28px;background-color:#2d69da;border-radius:6px;box-shadow:0px 1px 2px rgba(16,24,40,.1)}.acf-admin-page .acf-notice .local-restore,.acf-admin-page .notice .local-restore,.acf-admin-page #lost-connection-notice .local-restore{align-items:center;margin-top:-6px;margin-bottom:0}.acf-admin-page .notice[data-persisted=true]{display:none}.acf-admin-page .notice.is-dismissible{padding-right:56px}.acf-admin-page .notice.notice-success{background-color:#edf7ef;border-color:#b6deb9}.acf-admin-page .notice.notice-success:before{-webkit-mask-image:url("../../images/icons/icon-check-circle-solid.svg");mask-image:url("../../images/icons/icon-check-circle-solid.svg")}.acf-admin-page .notice.notice-success:after{background-color:#52aa59}.acf-admin-page .acf-notice.acf-error-message,.acf-admin-page .notice.notice-error,.acf-admin-page #lost-connection-notice{background-color:#f7eeeb;border-color:#f1b6b3}.acf-admin-page .acf-notice.acf-error-message:before,.acf-admin-page .notice.notice-error:before,.acf-admin-page #lost-connection-notice:before{-webkit-mask-image:url("../../images/icons/icon-warning.svg");mask-image:url("../../images/icons/icon-warning.svg")}.acf-admin-page .acf-notice.acf-error-message:after,.acf-admin-page .notice.notice-error:after,.acf-admin-page #lost-connection-notice:after{background-color:#d13737}.acf-admin-page .notice.notice-warning{background:linear-gradient(0deg, rgba(247, 144, 9, 0.08), rgba(247, 144, 9, 0.08)),#fff;border:1px solid rgba(247,144,9,.32);color:#344054}.acf-admin-page .notice.notice-warning:before{-webkit-mask-image:url("../../images/icons/icon-alert-triangle.svg");mask-image:url("../../images/icons/icon-alert-triangle.svg");background:#f56e28}.acf-admin-page .notice.notice-warning:after{content:none}.acf-admin-single-taxonomy .notice-success .acf-item-saved-text,.acf-admin-single-post-type .notice-success .acf-item-saved-text,.acf-admin-single-options-page .notice-success .acf-item-saved-text{font-weight:600}.acf-admin-single-taxonomy .notice-success .acf-item-saved-links,.acf-admin-single-post-type .notice-success .acf-item-saved-links,.acf-admin-single-options-page .notice-success .acf-item-saved-links{display:flex;gap:12px}.acf-admin-single-taxonomy .notice-success .acf-item-saved-links a,.acf-admin-single-post-type .notice-success .acf-item-saved-links a,.acf-admin-single-options-page .notice-success .acf-item-saved-links a{text-decoration:none;opacity:1}.acf-admin-single-taxonomy .notice-success .acf-item-saved-links a:after,.acf-admin-single-post-type .notice-success .acf-item-saved-links a:after,.acf-admin-single-options-page .notice-success .acf-item-saved-links a:after{content:"";width:1px;height:13px;display:inline-flex;position:relative;top:2px;left:6px;background-color:#475467;opacity:.3}.acf-admin-single-taxonomy .notice-success .acf-item-saved-links a:last-child:after,.acf-admin-single-post-type .notice-success .acf-item-saved-links a:last-child:after,.acf-admin-single-options-page .notice-success .acf-item-saved-links a:last-child:after{content:none}.rtl.acf-field-group .notice,.rtl.acf-internal-post-type .notice{padding-right:50px !important}.rtl.acf-field-group .notice .notice-dismiss,.rtl.acf-internal-post-type .notice .notice-dismiss{left:8px;right:unset}.rtl.acf-field-group .notice:before,.rtl.acf-internal-post-type .notice:before{left:unset;right:10px}.rtl.acf-field-group .notice:after,.rtl.acf-internal-post-type .notice:after{left:unset;right:12px}.rtl.acf-field-group.acf-admin-single-taxonomy .notice-success .acf-item-saved-links a:after,.rtl.acf-field-group.acf-admin-single-post-type .notice-success .acf-item-saved-links a:after,.rtl.acf-field-group.acf-admin-single-options-page .notice-success .acf-item-saved-links a:after,.rtl.acf-internal-post-type.acf-admin-single-taxonomy .notice-success .acf-item-saved-links a:after,.rtl.acf-internal-post-type.acf-admin-single-post-type .notice-success .acf-item-saved-links a:after,.rtl.acf-internal-post-type.acf-admin-single-options-page .notice-success .acf-item-saved-links a:after{left:unset;right:6px}.acf-pro-label{display:inline-flex;align-items:center;min-height:22px;padding-right:8px;padding-left:8px;background:linear-gradient(90.52deg, #3E8BFF 0.44%, #A45CFF 113.3%);box-shadow:inset 0 0 0 1px rgba(255,255,255,.16);border:none;border-radius:100px;font-size:11px;text-transform:uppercase;text-decoration:none;color:#fff}.acf-admin-page .acf-field .acf-notice{display:flex;align-items:center;min-height:40px !important;margin-bottom:6px !important;padding-top:6px !important;padding-left:40px !important;padding-bottom:6px !important;margin:0 0 15px;background:#edf2ff;color:#344054 !important;border-color:#2183b9;border-radius:6px}.acf-admin-page .acf-field .acf-notice:after{top:8px;left:8px;width:22px;height:22px}.acf-admin-page .acf-field .acf-notice:before{top:12px;left:12px;width:14px;height:14px}.acf-admin-page .acf-field .acf-notice.-error{background:#f7eeeb;border-color:#f1b6b3}.acf-admin-page .acf-field .acf-notice.-success{background:#edf7ef;border-color:#b6deb9}.acf-admin-page .acf-field .acf-notice.-warning{background:#fdf8eb;border-color:#f4dbb4}.acf-admin-page #wpcontent{line-height:140%}.acf-admin-page a{color:#0783be}.acf-h1,.acf-admin-page #tmpl-acf-field-group-pro-features h1,.acf-admin-page #acf-field-group-pro-features h1,.acf-admin-page h1,.acf-headerbar h1{font-size:21px;font-weight:400}.acf-h2,.acf-no-field-groups-wrapper .acf-no-field-groups-inner h2,.acf-no-field-groups-wrapper .acf-no-taxonomies-inner h2,.acf-no-field-groups-wrapper .acf-no-post-types-inner h2,.acf-no-field-groups-wrapper .acf-no-options-pages-inner h2,.acf-no-field-groups-wrapper .acf-options-preview-inner h2,.acf-no-taxonomies-wrapper .acf-no-field-groups-inner h2,.acf-no-taxonomies-wrapper .acf-no-taxonomies-inner h2,.acf-no-taxonomies-wrapper .acf-no-post-types-inner h2,.acf-no-taxonomies-wrapper .acf-no-options-pages-inner h2,.acf-no-taxonomies-wrapper .acf-options-preview-inner h2,.acf-no-post-types-wrapper .acf-no-field-groups-inner h2,.acf-no-post-types-wrapper .acf-no-taxonomies-inner h2,.acf-no-post-types-wrapper .acf-no-post-types-inner h2,.acf-no-post-types-wrapper .acf-no-options-pages-inner h2,.acf-no-post-types-wrapper .acf-options-preview-inner h2,.acf-no-options-pages-wrapper .acf-no-field-groups-inner h2,.acf-no-options-pages-wrapper .acf-no-taxonomies-inner h2,.acf-no-options-pages-wrapper .acf-no-post-types-inner h2,.acf-no-options-pages-wrapper .acf-no-options-pages-inner h2,.acf-no-options-pages-wrapper .acf-options-preview-inner h2,.acf-options-preview-wrapper .acf-no-field-groups-inner h2,.acf-options-preview-wrapper .acf-no-taxonomies-inner h2,.acf-options-preview-wrapper .acf-no-post-types-inner h2,.acf-options-preview-wrapper .acf-no-options-pages-inner h2,.acf-options-preview-wrapper .acf-options-preview-inner h2,.acf-page-title,.acf-admin-page h2,.acf-headerbar h2{font-size:18px;font-weight:400}.acf-h3,.acf-admin-page h3,.acf-headerbar h3,.acf-admin-page .postbox .postbox-header h2,.acf-admin-page .postbox .postbox-header h3,.acf-admin-page .postbox .title h2,.acf-admin-page .postbox .title h3,.acf-admin-page .acf-box .postbox-header h2,.acf-admin-page .acf-box .postbox-header h3,.acf-admin-page .acf-box .title h2,.acf-admin-page .acf-box .title h3,.acf-postbox-header h2.acf-postbox-title,.acf-admin-page #poststuff .postbox-header h2,.acf-admin-page #poststuff .postbox-header h3{font-size:16px;font-weight:400}.acf-admin-page .p1{font-size:15px}.acf-admin-page .p2,.acf-admin-page .acf-no-field-groups-wrapper .acf-no-field-groups-inner p,.acf-no-field-groups-wrapper .acf-no-field-groups-inner .acf-admin-page p,.acf-admin-page .acf-no-field-groups-wrapper .acf-no-taxonomies-inner p,.acf-no-field-groups-wrapper .acf-no-taxonomies-inner .acf-admin-page p,.acf-admin-page .acf-no-field-groups-wrapper .acf-no-post-types-inner p,.acf-no-field-groups-wrapper .acf-no-post-types-inner .acf-admin-page p,.acf-admin-page .acf-no-field-groups-wrapper .acf-no-options-pages-inner p,.acf-no-field-groups-wrapper .acf-no-options-pages-inner .acf-admin-page p,.acf-admin-page .acf-no-field-groups-wrapper .acf-options-preview-inner p,.acf-no-field-groups-wrapper .acf-options-preview-inner .acf-admin-page p,.acf-admin-page .acf-no-taxonomies-wrapper .acf-no-field-groups-inner p,.acf-no-taxonomies-wrapper .acf-no-field-groups-inner .acf-admin-page p,.acf-admin-page .acf-no-taxonomies-wrapper .acf-no-taxonomies-inner p,.acf-no-taxonomies-wrapper .acf-no-taxonomies-inner .acf-admin-page p,.acf-admin-page .acf-no-taxonomies-wrapper .acf-no-post-types-inner p,.acf-no-taxonomies-wrapper .acf-no-post-types-inner .acf-admin-page p,.acf-admin-page .acf-no-taxonomies-wrapper .acf-no-options-pages-inner p,.acf-no-taxonomies-wrapper .acf-no-options-pages-inner .acf-admin-page p,.acf-admin-page .acf-no-taxonomies-wrapper .acf-options-preview-inner p,.acf-no-taxonomies-wrapper .acf-options-preview-inner .acf-admin-page p,.acf-admin-page .acf-no-post-types-wrapper .acf-no-field-groups-inner p,.acf-no-post-types-wrapper .acf-no-field-groups-inner .acf-admin-page p,.acf-admin-page .acf-no-post-types-wrapper .acf-no-taxonomies-inner p,.acf-no-post-types-wrapper .acf-no-taxonomies-inner .acf-admin-page p,.acf-admin-page .acf-no-post-types-wrapper .acf-no-post-types-inner p,.acf-no-post-types-wrapper .acf-no-post-types-inner .acf-admin-page p,.acf-admin-page .acf-no-post-types-wrapper .acf-no-options-pages-inner p,.acf-no-post-types-wrapper .acf-no-options-pages-inner .acf-admin-page p,.acf-admin-page .acf-no-post-types-wrapper .acf-options-preview-inner p,.acf-no-post-types-wrapper .acf-options-preview-inner .acf-admin-page p,.acf-admin-page .acf-no-options-pages-wrapper .acf-no-field-groups-inner p,.acf-no-options-pages-wrapper .acf-no-field-groups-inner .acf-admin-page p,.acf-admin-page .acf-no-options-pages-wrapper .acf-no-taxonomies-inner p,.acf-no-options-pages-wrapper .acf-no-taxonomies-inner .acf-admin-page p,.acf-admin-page .acf-no-options-pages-wrapper .acf-no-post-types-inner p,.acf-no-options-pages-wrapper .acf-no-post-types-inner .acf-admin-page p,.acf-admin-page .acf-no-options-pages-wrapper .acf-no-options-pages-inner p,.acf-no-options-pages-wrapper .acf-no-options-pages-inner .acf-admin-page p,.acf-admin-page .acf-no-options-pages-wrapper .acf-options-preview-inner p,.acf-no-options-pages-wrapper .acf-options-preview-inner .acf-admin-page p,.acf-admin-page .acf-options-preview-wrapper .acf-no-field-groups-inner p,.acf-options-preview-wrapper .acf-no-field-groups-inner .acf-admin-page p,.acf-admin-page .acf-options-preview-wrapper .acf-no-taxonomies-inner p,.acf-options-preview-wrapper .acf-no-taxonomies-inner .acf-admin-page p,.acf-admin-page .acf-options-preview-wrapper .acf-no-post-types-inner p,.acf-options-preview-wrapper .acf-no-post-types-inner .acf-admin-page p,.acf-admin-page .acf-options-preview-wrapper .acf-no-options-pages-inner p,.acf-options-preview-wrapper .acf-no-options-pages-inner .acf-admin-page p,.acf-admin-page .acf-options-preview-wrapper .acf-options-preview-inner p,.acf-options-preview-wrapper .acf-options-preview-inner .acf-admin-page p,.acf-admin-page #acf-admin-tools .acf-meta-box-wrap .acf-fields .acf-label,#acf-admin-tools .acf-meta-box-wrap .acf-fields .acf-admin-page .acf-label{font-size:14px}.acf-admin-page .p3,.acf-admin-page .acf-internal-post-type .wp-list-table .post-state,.acf-internal-post-type .wp-list-table .acf-admin-page .post-state,.acf-admin-page .subtitle{font-size:13.5px}.acf-admin-page .p4,.acf-admin-page .acf-admin-toolbar a.acf-admin-toolbar-upgrade-btn p,.acf-admin-toolbar a.acf-admin-toolbar-upgrade-btn .acf-admin-page p,.acf-admin-page #acf-update-information .form-table th,#acf-update-information .form-table .acf-admin-page th,.acf-admin-page #acf-update-information .form-table td,#acf-update-information .form-table .acf-admin-page td,.acf-admin-page #acf-admin-tools.tool-export .acf-panel h3,#acf-admin-tools.tool-export .acf-panel .acf-admin-page h3,.acf-admin-page .acf-btn.acf-btn-sm,.acf-admin-page .acf-admin-toolbar .acf-tab,.acf-admin-toolbar .acf-admin-page .acf-tab,.acf-admin-page .acf-options-preview .acf-options-pages-preview-upgrade-button p,.acf-options-preview .acf-options-pages-preview-upgrade-button .acf-admin-page p,.acf-admin-page .acf-internal-post-type .subsubsub li,.acf-internal-post-type .subsubsub .acf-admin-page li,.acf-admin-page .acf-internal-post-type .wp-list-table tbody th,.acf-internal-post-type .wp-list-table tbody .acf-admin-page th,.acf-admin-page .acf-internal-post-type .wp-list-table tbody td,.acf-internal-post-type .wp-list-table tbody .acf-admin-page td,.acf-admin-page .acf-internal-post-type .wp-list-table thead th,.acf-internal-post-type .wp-list-table thead .acf-admin-page th,.acf-admin-page .acf-internal-post-type .wp-list-table thead td,.acf-internal-post-type .wp-list-table thead .acf-admin-page td,.acf-admin-page .acf-internal-post-type .wp-list-table tfoot th,.acf-internal-post-type .wp-list-table tfoot .acf-admin-page th,.acf-admin-page .acf-internal-post-type .wp-list-table tfoot td,.acf-internal-post-type .wp-list-table tfoot .acf-admin-page td,.acf-admin-page .acf-input .select2-container.-acf .select2-selection__rendered,.acf-admin-page .button,.acf-admin-page input[type=text],.acf-admin-page input[type=search],.acf-admin-page input[type=number],.acf-admin-page textarea,.acf-admin-page select{font-size:13px}.acf-admin-page .p5,.acf-admin-page .acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-content .acf-field-types-tab .acf-field-type .field-type-label,.acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-content .acf-field-types-tab .acf-field-type .acf-admin-page .field-type-label,.acf-admin-page .acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-content .acf-field-type-search-results .acf-field-type .field-type-label,.acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-content .acf-field-type-search-results .acf-field-type .acf-admin-page .field-type-label,.acf-admin-page .acf-internal-post-type .row-actions,.acf-internal-post-type .acf-admin-page .row-actions,.acf-admin-page .acf-notice .button,.acf-admin-page .notice .button,.acf-admin-page #lost-connection-notice .button{font-size:12.5px}.acf-admin-page .p6,.acf-admin-page #acf-update-information .acf-update-changelog p em,#acf-update-information .acf-update-changelog p .acf-admin-page em,.acf-admin-page .acf-no-field-groups-wrapper .acf-no-field-groups-inner p.acf-small,.acf-no-field-groups-wrapper .acf-no-field-groups-inner .acf-admin-page p.acf-small,.acf-admin-page .acf-no-field-groups-wrapper .acf-no-taxonomies-inner p.acf-small,.acf-no-field-groups-wrapper .acf-no-taxonomies-inner .acf-admin-page p.acf-small,.acf-admin-page .acf-no-field-groups-wrapper .acf-no-post-types-inner p.acf-small,.acf-no-field-groups-wrapper .acf-no-post-types-inner .acf-admin-page p.acf-small,.acf-admin-page .acf-no-field-groups-wrapper .acf-no-options-pages-inner p.acf-small,.acf-no-field-groups-wrapper .acf-no-options-pages-inner .acf-admin-page p.acf-small,.acf-admin-page .acf-no-field-groups-wrapper .acf-options-preview-inner p.acf-small,.acf-no-field-groups-wrapper .acf-options-preview-inner .acf-admin-page p.acf-small,.acf-admin-page .acf-no-taxonomies-wrapper .acf-no-field-groups-inner p.acf-small,.acf-no-taxonomies-wrapper .acf-no-field-groups-inner .acf-admin-page p.acf-small,.acf-admin-page .acf-no-taxonomies-wrapper .acf-no-taxonomies-inner p.acf-small,.acf-no-taxonomies-wrapper .acf-no-taxonomies-inner .acf-admin-page p.acf-small,.acf-admin-page .acf-no-taxonomies-wrapper .acf-no-post-types-inner p.acf-small,.acf-no-taxonomies-wrapper .acf-no-post-types-inner .acf-admin-page p.acf-small,.acf-admin-page .acf-no-taxonomies-wrapper .acf-no-options-pages-inner p.acf-small,.acf-no-taxonomies-wrapper .acf-no-options-pages-inner .acf-admin-page p.acf-small,.acf-admin-page .acf-no-taxonomies-wrapper .acf-options-preview-inner p.acf-small,.acf-no-taxonomies-wrapper .acf-options-preview-inner .acf-admin-page p.acf-small,.acf-admin-page .acf-no-post-types-wrapper .acf-no-field-groups-inner p.acf-small,.acf-no-post-types-wrapper .acf-no-field-groups-inner .acf-admin-page p.acf-small,.acf-admin-page .acf-no-post-types-wrapper .acf-no-taxonomies-inner p.acf-small,.acf-no-post-types-wrapper .acf-no-taxonomies-inner .acf-admin-page p.acf-small,.acf-admin-page .acf-no-post-types-wrapper .acf-no-post-types-inner p.acf-small,.acf-no-post-types-wrapper .acf-no-post-types-inner .acf-admin-page p.acf-small,.acf-admin-page .acf-no-post-types-wrapper .acf-no-options-pages-inner p.acf-small,.acf-no-post-types-wrapper .acf-no-options-pages-inner .acf-admin-page p.acf-small,.acf-admin-page .acf-no-post-types-wrapper .acf-options-preview-inner p.acf-small,.acf-no-post-types-wrapper .acf-options-preview-inner .acf-admin-page p.acf-small,.acf-admin-page .acf-no-options-pages-wrapper .acf-no-field-groups-inner p.acf-small,.acf-no-options-pages-wrapper .acf-no-field-groups-inner .acf-admin-page p.acf-small,.acf-admin-page .acf-no-options-pages-wrapper .acf-no-taxonomies-inner p.acf-small,.acf-no-options-pages-wrapper .acf-no-taxonomies-inner .acf-admin-page p.acf-small,.acf-admin-page .acf-no-options-pages-wrapper .acf-no-post-types-inner p.acf-small,.acf-no-options-pages-wrapper .acf-no-post-types-inner .acf-admin-page p.acf-small,.acf-admin-page .acf-no-options-pages-wrapper .acf-no-options-pages-inner p.acf-small,.acf-no-options-pages-wrapper .acf-no-options-pages-inner .acf-admin-page p.acf-small,.acf-admin-page .acf-no-options-pages-wrapper .acf-options-preview-inner p.acf-small,.acf-no-options-pages-wrapper .acf-options-preview-inner .acf-admin-page p.acf-small,.acf-admin-page .acf-options-preview-wrapper .acf-no-field-groups-inner p.acf-small,.acf-options-preview-wrapper .acf-no-field-groups-inner .acf-admin-page p.acf-small,.acf-admin-page .acf-options-preview-wrapper .acf-no-taxonomies-inner p.acf-small,.acf-options-preview-wrapper .acf-no-taxonomies-inner .acf-admin-page p.acf-small,.acf-admin-page .acf-options-preview-wrapper .acf-no-post-types-inner p.acf-small,.acf-options-preview-wrapper .acf-no-post-types-inner .acf-admin-page p.acf-small,.acf-admin-page .acf-options-preview-wrapper .acf-no-options-pages-inner p.acf-small,.acf-options-preview-wrapper .acf-no-options-pages-inner .acf-admin-page p.acf-small,.acf-admin-page .acf-options-preview-wrapper .acf-options-preview-inner p.acf-small,.acf-options-preview-wrapper .acf-options-preview-inner .acf-admin-page p.acf-small,.acf-admin-page .acf-internal-post-type .row-actions,.acf-internal-post-type .acf-admin-page .row-actions,.acf-admin-page .acf-small{font-size:12px}.acf-admin-page .p7,.acf-admin-page .acf-tooltip,.acf-admin-page .acf-notice p.help,.acf-admin-page .notice p.help,.acf-admin-page #lost-connection-notice p.help{font-size:11.5px}.acf-admin-page .p8{font-size:11px}.acf-page-title{color:#344054}.acf-admin-page .acf-settings-wrap h1{display:none !important}.acf-admin-page #acf-admin-tools h1:not(.acf-field-group-pro-features-title,.acf-field-group-pro-features-title-sm){display:none !important}.acf-admin-page a:focus{box-shadow:none;outline:none}.acf-admin-page a:focus-visible{box-shadow:0 0 0 1px #4f94d4,0 0 2px 1px rgba(79,148,212,.8);outline:1px solid rgba(0,0,0,0)}.acf-admin-page input[type=text],.acf-admin-page input[type=search],.acf-admin-page input[type=number],.acf-admin-page textarea,.acf-admin-page select{box-sizing:border-box;height:40px;padding-right:12px;padding-left:12px;background-color:#fff;border-color:#d0d5dd;box-shadow:0px 1px 2px rgba(16,24,40,.1);border-radius:6px;color:#344054}.acf-admin-page input[type=text]:focus,.acf-admin-page input[type=search]:focus,.acf-admin-page input[type=number]:focus,.acf-admin-page textarea:focus,.acf-admin-page select:focus{outline:3px solid #ebf5fa;border-color:#399ccb}.acf-admin-page input[type=text]:disabled,.acf-admin-page input[type=search]:disabled,.acf-admin-page input[type=number]:disabled,.acf-admin-page textarea:disabled,.acf-admin-page select:disabled{background-color:#f9fafb;color:#808a9e}.acf-admin-page input[type=text]::placeholder,.acf-admin-page input[type=search]::placeholder,.acf-admin-page input[type=number]::placeholder,.acf-admin-page textarea::placeholder,.acf-admin-page select::placeholder{color:#98a2b3}.acf-admin-page input[type=text]:read-only{background-color:#f9fafb;color:#98a2b3}.acf-admin-page .acf-field.acf-field-number .acf-label,.acf-admin-page .acf-field.acf-field-number .acf-input input[type=number]{max-width:180px}.acf-admin-page textarea{box-sizing:border-box;padding-top:10px;padding-bottom:10px;height:80px;min-height:56px}.acf-admin-page select{min-width:160px;max-width:100%;padding-right:40px;padding-left:12px;background-image:url("../../images/icons/icon-chevron-down.svg");background-position:right 10px top 50%;background-size:20px}.acf-admin-page select:hover,.acf-admin-page select:focus{color:#0783be}.acf-admin-page select::before{content:"";display:block;position:absolute;top:5px;left:5px;width:20px;height:20px}.acf-admin-page.rtl select{padding-right:12px;padding-left:40px;background-position:left 10px top 50%}.acf-admin-page input[type=radio],.acf-admin-page input[type=checkbox]{box-sizing:border-box;width:16px;height:16px;padding:0;border-width:1px;border-style:solid;border-color:#98a2b3;background:#fff;box-shadow:none}.acf-admin-page input[type=radio]:hover,.acf-admin-page input[type=checkbox]:hover{background-color:#ebf5fa;border-color:#0783be}.acf-admin-page input[type=radio]:checked,.acf-admin-page input[type=radio]:focus-visible,.acf-admin-page input[type=checkbox]:checked,.acf-admin-page input[type=checkbox]:focus-visible{background-color:#ebf5fa;border-color:#0783be}.acf-admin-page input[type=radio]:checked:before,.acf-admin-page input[type=radio]:focus-visible:before,.acf-admin-page input[type=checkbox]:checked:before,.acf-admin-page input[type=checkbox]:focus-visible:before{content:"";position:relative;top:-1px;left:-1px;width:16px;height:16px;margin:0;padding:0;background-color:rgba(0,0,0,0);background-size:cover;background-repeat:no-repeat;background-position:center}.acf-admin-page input[type=radio]:active,.acf-admin-page input[type=checkbox]:active{box-shadow:0px 0px 0px 3px #ebf5fa,0px 0px 0px rgba(255,54,54,.25)}.acf-admin-page input[type=radio]:disabled,.acf-admin-page input[type=checkbox]:disabled{background-color:#f9fafb;border-color:#d0d5dd}.acf-admin-page.rtl input[type=radio]:checked:before,.acf-admin-page.rtl input[type=radio]:focus-visible:before,.acf-admin-page.rtl input[type=checkbox]:checked:before,.acf-admin-page.rtl input[type=checkbox]:focus-visible:before{left:1px}.acf-admin-page input[type=radio]:checked:before,.acf-admin-page input[type=radio]:focus:before{background-image:url("../../images/field-states/radio-active.svg")}.acf-admin-page input[type=checkbox]:checked:before,.acf-admin-page input[type=checkbox]:focus:before{background-image:url("../../images/field-states/checkbox-active.svg")}.acf-admin-page .acf-radio-list li input[type=radio],.acf-admin-page .acf-radio-list li input[type=checkbox],.acf-admin-page .acf-checkbox-list li input[type=radio],.acf-admin-page .acf-checkbox-list li input[type=checkbox]{margin-right:6px}.acf-admin-page .acf-radio-list.acf-bl li,.acf-admin-page .acf-checkbox-list.acf-bl li{margin-bottom:8px}.acf-admin-page .acf-radio-list.acf-bl li:last-of-type,.acf-admin-page .acf-checkbox-list.acf-bl li:last-of-type{margin-bottom:0}.acf-admin-page .acf-radio-list label,.acf-admin-page .acf-checkbox-list label{display:flex;align-items:center;align-content:center}.acf-admin-page .acf-switch{width:42px;height:24px;border:none;background-color:#d0d5dd;border-radius:12px}.acf-admin-page .acf-switch:hover{background-color:#98a2b3}.acf-admin-page .acf-switch:active{box-shadow:0px 0px 0px 3px #ebf5fa,0px 0px 0px rgba(255,54,54,.25)}.acf-admin-page .acf-switch.-on{background-color:#0783be}.acf-admin-page .acf-switch.-on:hover{background-color:#066998}.acf-admin-page .acf-switch.-on .acf-switch-slider{left:20px}.acf-admin-page .acf-switch .acf-switch-off,.acf-admin-page .acf-switch .acf-switch-on{visibility:hidden}.acf-admin-page .acf-switch .acf-switch-slider{width:20px;height:20px;border:none;border-radius:100px;box-shadow:0px 1px 3px rgba(16,24,40,.1),0px 1px 2px rgba(16,24,40,.06)}.acf-admin-page .acf-field-true-false{display:flex;align-items:flex-start}.acf-admin-page .acf-field-true-false .acf-label{order:2;display:block;align-items:center;margin-top:2px;margin-bottom:0;margin-left:12px}.acf-admin-page .acf-field-true-false .acf-label label{margin-bottom:0}.acf-admin-page .acf-field-true-false .acf-label .acf-tip{margin-left:12px}.acf-admin-page .acf-field-true-false .acf-label .description{display:block;margin-top:2px;margin-left:0}.acf-admin-page.rtl .acf-field-true-false .acf-label{margin-right:12px;margin-left:0}.acf-admin-page.rtl .acf-field-true-false .acf-tip{margin-right:12px;margin-left:0}.acf-admin-page input::file-selector-button{box-sizing:border-box;min-height:40px;margin-right:16px;padding-top:8px;padding-right:16px;padding-bottom:8px;padding-left:16px;background-color:rgba(0,0,0,0);color:#0783be !important;border-radius:6px;border-width:1px;border-style:solid;border-color:#0783be;text-decoration:none}.acf-admin-page input::file-selector-button:hover{border-color:#066998;cursor:pointer;color:#066998 !important}.acf-admin-page .button{display:inline-flex;align-items:center;height:40px;padding-right:16px;padding-left:16px;background-color:rgba(0,0,0,0);border-width:1px;border-style:solid;border-color:#0783be;border-radius:6px;color:#0783be}.acf-admin-page .button:hover{background-color:#f3f9fc;border-color:#0783be;color:#0783be}.acf-admin-page .button:focus{background-color:#f3f9fc;outline:3px solid #ebf5fa;color:#0783be}.acf-admin-page .edit-field-group-header{display:block !important}.acf-admin-page .acf-input .select2-container.-acf .select2-selection{border:none;line-height:1}.acf-admin-page .acf-input .select2-container.-acf .select2-selection__rendered{box-sizing:border-box;padding-right:0;padding-left:0;background-color:#fff;border-width:1px;border-style:solid;border-color:#d0d5dd;box-shadow:0px 1px 2px rgba(16,24,40,.1);border-radius:6px;color:#344054}.acf-admin-page .acf-input .select2-container--focus{outline:3px solid #ebf5fa;border-color:#399ccb;border-radius:6px}.acf-admin-page .acf-input .select2-container--focus .select2-selection__rendered{border-color:#399ccb !important}.acf-admin-page .acf-input .select2-container--focus.select2-container--below.select2-container--open .select2-selection__rendered{border-bottom-right-radius:0 !important;border-bottom-left-radius:0 !important}.acf-admin-page .acf-input .select2-container--focus.select2-container--above.select2-container--open .select2-selection__rendered{border-top-right-radius:0 !important;border-top-left-radius:0 !important}.acf-admin-page .acf-input .select2-container .select2-search--inline .select2-search__field{margin:0;padding-left:6px}.acf-admin-page .acf-input .select2-container .select2-search--inline .select2-search__field:focus{outline:none;border:none}.acf-admin-page .acf-input .select2-container--default .select2-selection--multiple .select2-selection__rendered{padding-top:0;padding-right:6px;padding-bottom:0;padding-left:6px}.acf-admin-page .acf-input .select2-selection__clear{width:18px;height:18px;margin-top:12px;margin-right:1px;text-indent:100%;white-space:nowrap;overflow:hidden;color:#fff}.acf-admin-page .acf-input .select2-selection__clear:before{content:"";display:block;width:16px;height:16px;top:0;left:0;border:none;border-radius:0;-webkit-mask-size:contain;mask-size:contain;-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;-webkit-mask-position:center;mask-position:center;-webkit-mask-image:url("../../images/icons/icon-close.svg");mask-image:url("../../images/icons/icon-close.svg");background-color:#98a2b3}.acf-admin-page .acf-input .select2-selection__clear:hover::before{background-color:#0783be}.acf-admin-page .acf-label{display:flex;align-items:center;justify-content:space-between}.acf-admin-page .acf-label .acf-icon-help{width:18px;height:18px;background-color:#98a2b3}.acf-admin-page .acf-label label{margin-bottom:0}.acf-admin-page .acf-label .description{margin-top:2px}.acf-admin-page .acf-field-setting-name .acf-tip{position:absolute;top:0;left:654px;color:#98a2b3}.rtl.acf-admin-page .acf-field-setting-name .acf-tip{left:auto;right:654px}.acf-admin-page .acf-field-setting-name .acf-tip .acf-icon-help{width:18px;height:18px}.acf-admin-page .acf-field-setting-type .select2-container.-acf,.acf-admin-page .acf-field-permalink-rewrite .select2-container.-acf,.acf-admin-page .acf-field-query-var .select2-container.-acf,.acf-admin-page .acf-field-capability .select2-container.-acf,.acf-admin-page .acf-field-parent-slug .select2-container.-acf,.acf-admin-page .acf-field-data-storage .select2-container.-acf,.acf-admin-page .acf-field-manage-terms .select2-container.-acf,.acf-admin-page .acf-field-edit-terms .select2-container.-acf,.acf-admin-page .acf-field-delete-terms .select2-container.-acf,.acf-admin-page .acf-field-assign-terms .select2-container.-acf,.acf-admin-page .acf-field-meta-box .select2-container.-acf{min-height:40px}.acf-admin-page .acf-field-setting-type .select2-container--default .select2-selection--single .select2-selection__rendered,.acf-admin-page .acf-field-permalink-rewrite .select2-container--default .select2-selection--single .select2-selection__rendered,.acf-admin-page .acf-field-query-var .select2-container--default .select2-selection--single .select2-selection__rendered,.acf-admin-page .acf-field-capability .select2-container--default .select2-selection--single .select2-selection__rendered,.acf-admin-page .acf-field-parent-slug .select2-container--default .select2-selection--single .select2-selection__rendered,.acf-admin-page .acf-field-data-storage .select2-container--default .select2-selection--single .select2-selection__rendered,.acf-admin-page .acf-field-manage-terms .select2-container--default .select2-selection--single .select2-selection__rendered,.acf-admin-page .acf-field-edit-terms .select2-container--default .select2-selection--single .select2-selection__rendered,.acf-admin-page .acf-field-delete-terms .select2-container--default .select2-selection--single .select2-selection__rendered,.acf-admin-page .acf-field-assign-terms .select2-container--default .select2-selection--single .select2-selection__rendered,.acf-admin-page .acf-field-meta-box .select2-container--default .select2-selection--single .select2-selection__rendered{display:flex;align-items:center;position:relative;z-index:800;min-height:40px;padding-top:0;padding-right:12px;padding-bottom:0;padding-left:12px}.acf-admin-page .acf-field-setting-type .select2-container--default .select2-selection--single .field-type-icon,.acf-admin-page .acf-field-permalink-rewrite .select2-container--default .select2-selection--single .field-type-icon,.acf-admin-page .acf-field-query-var .select2-container--default .select2-selection--single .field-type-icon,.acf-admin-page .acf-field-capability .select2-container--default .select2-selection--single .field-type-icon,.acf-admin-page .acf-field-parent-slug .select2-container--default .select2-selection--single .field-type-icon,.acf-admin-page .acf-field-data-storage .select2-container--default .select2-selection--single .field-type-icon,.acf-admin-page .acf-field-manage-terms .select2-container--default .select2-selection--single .field-type-icon,.acf-admin-page .acf-field-edit-terms .select2-container--default .select2-selection--single .field-type-icon,.acf-admin-page .acf-field-delete-terms .select2-container--default .select2-selection--single .field-type-icon,.acf-admin-page .acf-field-assign-terms .select2-container--default .select2-selection--single .field-type-icon,.acf-admin-page .acf-field-meta-box .select2-container--default .select2-selection--single .field-type-icon{top:auto;width:18px;height:18px;margin-right:2px}.acf-admin-page .acf-field-setting-type .select2-container--default .select2-selection--single .field-type-icon:before,.acf-admin-page .acf-field-permalink-rewrite .select2-container--default .select2-selection--single .field-type-icon:before,.acf-admin-page .acf-field-query-var .select2-container--default .select2-selection--single .field-type-icon:before,.acf-admin-page .acf-field-capability .select2-container--default .select2-selection--single .field-type-icon:before,.acf-admin-page .acf-field-parent-slug .select2-container--default .select2-selection--single .field-type-icon:before,.acf-admin-page .acf-field-data-storage .select2-container--default .select2-selection--single .field-type-icon:before,.acf-admin-page .acf-field-manage-terms .select2-container--default .select2-selection--single .field-type-icon:before,.acf-admin-page .acf-field-edit-terms .select2-container--default .select2-selection--single .field-type-icon:before,.acf-admin-page .acf-field-delete-terms .select2-container--default .select2-selection--single .field-type-icon:before,.acf-admin-page .acf-field-assign-terms .select2-container--default .select2-selection--single .field-type-icon:before,.acf-admin-page .acf-field-meta-box .select2-container--default .select2-selection--single .field-type-icon:before{width:9px;height:9px}.acf-admin-page .acf-field-setting-type .select2-container--open .select2-selection__rendered,.acf-admin-page .acf-field-permalink-rewrite .select2-container--open .select2-selection__rendered,.acf-admin-page .acf-field-query-var .select2-container--open .select2-selection__rendered,.acf-admin-page .acf-field-capability .select2-container--open .select2-selection__rendered,.acf-admin-page .acf-field-parent-slug .select2-container--open .select2-selection__rendered,.acf-admin-page .acf-field-data-storage .select2-container--open .select2-selection__rendered,.acf-admin-page .acf-field-manage-terms .select2-container--open .select2-selection__rendered,.acf-admin-page .acf-field-edit-terms .select2-container--open .select2-selection__rendered,.acf-admin-page .acf-field-delete-terms .select2-container--open .select2-selection__rendered,.acf-admin-page .acf-field-assign-terms .select2-container--open .select2-selection__rendered,.acf-admin-page .acf-field-meta-box .select2-container--open .select2-selection__rendered{border-color:#6bb5d8 !important;border-bottom-color:#d0d5dd !important}.acf-admin-page .acf-field-setting-type .select2-container--open.select2-container--below .select2-selection__rendered,.acf-admin-page .acf-field-permalink-rewrite .select2-container--open.select2-container--below .select2-selection__rendered,.acf-admin-page .acf-field-query-var .select2-container--open.select2-container--below .select2-selection__rendered,.acf-admin-page .acf-field-capability .select2-container--open.select2-container--below .select2-selection__rendered,.acf-admin-page .acf-field-parent-slug .select2-container--open.select2-container--below .select2-selection__rendered,.acf-admin-page .acf-field-data-storage .select2-container--open.select2-container--below .select2-selection__rendered,.acf-admin-page .acf-field-manage-terms .select2-container--open.select2-container--below .select2-selection__rendered,.acf-admin-page .acf-field-edit-terms .select2-container--open.select2-container--below .select2-selection__rendered,.acf-admin-page .acf-field-delete-terms .select2-container--open.select2-container--below .select2-selection__rendered,.acf-admin-page .acf-field-assign-terms .select2-container--open.select2-container--below .select2-selection__rendered,.acf-admin-page .acf-field-meta-box .select2-container--open.select2-container--below .select2-selection__rendered{border-bottom-right-radius:0 !important;border-bottom-left-radius:0 !important}.acf-admin-page .acf-field-setting-type .select2-container--open.select2-container--above .select2-selection__rendered,.acf-admin-page .acf-field-permalink-rewrite .select2-container--open.select2-container--above .select2-selection__rendered,.acf-admin-page .acf-field-query-var .select2-container--open.select2-container--above .select2-selection__rendered,.acf-admin-page .acf-field-capability .select2-container--open.select2-container--above .select2-selection__rendered,.acf-admin-page .acf-field-parent-slug .select2-container--open.select2-container--above .select2-selection__rendered,.acf-admin-page .acf-field-data-storage .select2-container--open.select2-container--above .select2-selection__rendered,.acf-admin-page .acf-field-manage-terms .select2-container--open.select2-container--above .select2-selection__rendered,.acf-admin-page .acf-field-edit-terms .select2-container--open.select2-container--above .select2-selection__rendered,.acf-admin-page .acf-field-delete-terms .select2-container--open.select2-container--above .select2-selection__rendered,.acf-admin-page .acf-field-assign-terms .select2-container--open.select2-container--above .select2-selection__rendered,.acf-admin-page .acf-field-meta-box .select2-container--open.select2-container--above .select2-selection__rendered{border-top-right-radius:0 !important;border-top-left-radius:0 !important;border-bottom-color:#6bb5d8 !important;border-top-color:#d0d5dd !important}.acf-admin-page .acf-field-setting-type .acf-selection.has-icon,.acf-admin-page .acf-field-permalink-rewrite .acf-selection.has-icon,.acf-admin-page .acf-field-query-var .acf-selection.has-icon,.acf-admin-page .acf-field-capability .acf-selection.has-icon,.acf-admin-page .acf-field-parent-slug .acf-selection.has-icon,.acf-admin-page .acf-field-data-storage .acf-selection.has-icon,.acf-admin-page .acf-field-manage-terms .acf-selection.has-icon,.acf-admin-page .acf-field-edit-terms .acf-selection.has-icon,.acf-admin-page .acf-field-delete-terms .acf-selection.has-icon,.acf-admin-page .acf-field-assign-terms .acf-selection.has-icon,.acf-admin-page .acf-field-meta-box .acf-selection.has-icon{margin-left:6px}.rtl.acf-admin-page .acf-field-setting-type .acf-selection.has-icon,.acf-admin-page .acf-field-permalink-rewrite .acf-selection.has-icon,.acf-admin-page .acf-field-query-var .acf-selection.has-icon,.acf-admin-page .acf-field-capability .acf-selection.has-icon,.acf-admin-page .acf-field-parent-slug .acf-selection.has-icon,.acf-admin-page .acf-field-data-storage .acf-selection.has-icon,.acf-admin-page .acf-field-manage-terms .acf-selection.has-icon,.acf-admin-page .acf-field-edit-terms .acf-selection.has-icon,.acf-admin-page .acf-field-delete-terms .acf-selection.has-icon,.acf-admin-page .acf-field-assign-terms .acf-selection.has-icon,.acf-admin-page .acf-field-meta-box .acf-selection.has-icon{margin-right:6px}.acf-admin-page .acf-field-setting-type .select2-selection__arrow,.acf-admin-page .acf-field-permalink-rewrite .select2-selection__arrow,.acf-admin-page .acf-field-query-var .select2-selection__arrow,.acf-admin-page .acf-field-capability .select2-selection__arrow,.acf-admin-page .acf-field-parent-slug .select2-selection__arrow,.acf-admin-page .acf-field-data-storage .select2-selection__arrow,.acf-admin-page .acf-field-manage-terms .select2-selection__arrow,.acf-admin-page .acf-field-edit-terms .select2-selection__arrow,.acf-admin-page .acf-field-delete-terms .select2-selection__arrow,.acf-admin-page .acf-field-assign-terms .select2-selection__arrow,.acf-admin-page .acf-field-meta-box .select2-selection__arrow{width:20px;height:20px;top:calc(50% - 10px);right:12px;background-color:rgba(0,0,0,0)}.acf-admin-page .acf-field-setting-type .select2-selection__arrow:after,.acf-admin-page .acf-field-permalink-rewrite .select2-selection__arrow:after,.acf-admin-page .acf-field-query-var .select2-selection__arrow:after,.acf-admin-page .acf-field-capability .select2-selection__arrow:after,.acf-admin-page .acf-field-parent-slug .select2-selection__arrow:after,.acf-admin-page .acf-field-data-storage .select2-selection__arrow:after,.acf-admin-page .acf-field-manage-terms .select2-selection__arrow:after,.acf-admin-page .acf-field-edit-terms .select2-selection__arrow:after,.acf-admin-page .acf-field-delete-terms .select2-selection__arrow:after,.acf-admin-page .acf-field-assign-terms .select2-selection__arrow:after,.acf-admin-page .acf-field-meta-box .select2-selection__arrow:after{content:"";display:block;position:absolute;z-index:850;top:1px;left:0;width:20px;height:20px;-webkit-mask-image:url("../../images/icons/icon-chevron-down.svg");mask-image:url("../../images/icons/icon-chevron-down.svg");background-color:#667085;border:none;border-radius:0;-webkit-mask-size:contain;mask-size:contain;-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;-webkit-mask-position:center;mask-position:center;text-indent:500%;white-space:nowrap;overflow:hidden}.acf-admin-page .acf-field-setting-type .select2-selection__arrow b[role=presentation],.acf-admin-page .acf-field-permalink-rewrite .select2-selection__arrow b[role=presentation],.acf-admin-page .acf-field-query-var .select2-selection__arrow b[role=presentation],.acf-admin-page .acf-field-capability .select2-selection__arrow b[role=presentation],.acf-admin-page .acf-field-parent-slug .select2-selection__arrow b[role=presentation],.acf-admin-page .acf-field-data-storage .select2-selection__arrow b[role=presentation],.acf-admin-page .acf-field-manage-terms .select2-selection__arrow b[role=presentation],.acf-admin-page .acf-field-edit-terms .select2-selection__arrow b[role=presentation],.acf-admin-page .acf-field-delete-terms .select2-selection__arrow b[role=presentation],.acf-admin-page .acf-field-assign-terms .select2-selection__arrow b[role=presentation],.acf-admin-page .acf-field-meta-box .select2-selection__arrow b[role=presentation]{display:none}.acf-admin-page .acf-field-setting-type .select2-container--open .select2-selection__arrow:after,.acf-admin-page .acf-field-permalink-rewrite .select2-container--open .select2-selection__arrow:after,.acf-admin-page .acf-field-query-var .select2-container--open .select2-selection__arrow:after,.acf-admin-page .acf-field-capability .select2-container--open .select2-selection__arrow:after,.acf-admin-page .acf-field-parent-slug .select2-container--open .select2-selection__arrow:after,.acf-admin-page .acf-field-data-storage .select2-container--open .select2-selection__arrow:after,.acf-admin-page .acf-field-manage-terms .select2-container--open .select2-selection__arrow:after,.acf-admin-page .acf-field-edit-terms .select2-container--open .select2-selection__arrow:after,.acf-admin-page .acf-field-delete-terms .select2-container--open .select2-selection__arrow:after,.acf-admin-page .acf-field-assign-terms .select2-container--open .select2-selection__arrow:after,.acf-admin-page .acf-field-meta-box .select2-container--open .select2-selection__arrow:after{-webkit-mask-image:url("../../images/icons/icon-chevron-up.svg");mask-image:url("../../images/icons/icon-chevron-up.svg")}.acf-admin-page .field-type-select-results{position:relative;top:4px;z-index:1002;border-radius:0 0 6px 6px;box-shadow:0px 8px 24px 4px rgba(16,24,40,.12)}.acf-admin-page .field-type-select-results.select2-dropdown--above{display:flex;flex-direction:column-reverse;top:0;border-radius:6px 6px 0 0;z-index:99999}.select2-container.select2-container--open.acf-admin-page .field-type-select-results{box-shadow:0px 0px 0px 3px #ebf5fa,0px 8px 24px 4px rgba(16,24,40,.12)}.acf-admin-page .field-type-select-results .acf-selection.has-icon{margin-left:6px}.rtl.acf-admin-page .field-type-select-results .acf-selection.has-icon{margin-right:6px}.acf-admin-page .field-type-select-results .select2-search{position:relative;margin:0;padding:0}.acf-admin-page .field-type-select-results .select2-search--dropdown:after{content:"";display:block;position:absolute;top:12px;left:13px;width:16px;height:16px;-webkit-mask-image:url("../../images/icons/icon-search.svg");mask-image:url("../../images/icons/icon-search.svg");background-color:#98a2b3;border:none;border-radius:0;-webkit-mask-size:contain;mask-size:contain;-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;-webkit-mask-position:center;mask-position:center;text-indent:500%;white-space:nowrap;overflow:hidden}.rtl.acf-admin-page .field-type-select-results .select2-search--dropdown:after{right:12px;left:auto}.acf-admin-page .field-type-select-results .select2-search .select2-search__field{padding-left:38px;border-right:0;border-bottom:0;border-left:0;border-radius:0}.rtl.acf-admin-page .field-type-select-results .select2-search .select2-search__field{padding-right:38px;padding-left:0}.acf-admin-page .field-type-select-results .select2-search .select2-search__field:focus{border-top-color:#d0d5dd;outline:0}.acf-admin-page .field-type-select-results .select2-results__options{max-height:440px}.acf-admin-page .field-type-select-results .select2-results__option .select2-results__option--highlighted{background-color:#0783be !important;color:#f9fafb !important}.acf-admin-page .field-type-select-results .select2-results__option .select2-results__option{display:inline-flex;position:relative;width:calc(100% - 24px);min-height:32px;padding-top:0;padding-right:12px;padding-bottom:0;padding-left:12px;align-items:center}.acf-admin-page .field-type-select-results .select2-results__option .select2-results__option .field-type-icon{top:auto;width:18px;height:18px;margin-right:2px;box-shadow:0 0 0 1px #f9fafb}.acf-admin-page .field-type-select-results .select2-results__option .select2-results__option .field-type-icon:before{width:9px;height:9px}.acf-admin-page .field-type-select-results .select2-results__option[aria-selected=true]{background-color:#ebf5fa !important;color:#344054 !important}.acf-admin-page .field-type-select-results .select2-results__option[aria-selected=true]:after{content:"";right:13px;position:absolute;width:16px;height:16px;-webkit-mask-image:url("../../images/icons/icon-check.svg");mask-image:url("../../images/icons/icon-check.svg");background-color:#0783be;border:none;border-radius:0;-webkit-mask-size:contain;mask-size:contain;-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;-webkit-mask-position:center;mask-position:center;text-indent:500%;white-space:nowrap;overflow:hidden}.rtl.acf-admin-page .field-type-select-results .select2-results__option[aria-selected=true]:after{left:13px;right:auto}.acf-admin-page .field-type-select-results .select2-results__group{display:inline-flex;align-items:center;width:calc(100% - 24px);min-height:25px;background-color:#f9fafb;border-top-width:1px;border-top-style:solid;border-top-color:#eaecf0;border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#eaecf0;color:#98a2b3;font-size:11px;margin-bottom:0;padding-top:0;padding-right:12px;padding-bottom:0;padding-left:12px;font-weight:normal}.acf-admin-page.rtl .acf-field-setting-type .select2-selection__arrow:after,.acf-admin-page.rtl .acf-field-permalink-rewrite .select2-selection__arrow:after,.acf-admin-page.rtl .acf-field-query-var .select2-selection__arrow:after{right:auto;left:10px}.rtl.post-type-acf-field-group .acf-field-setting-name .acf-tip,.rtl.acf-internal-post-type .acf-field-setting-name .acf-tip{left:auto;right:654px}.acf-internal-post-type .tablenav.top{display:none}.acf-internal-post-type .subsubsub{margin-bottom:3px}.acf-internal-post-type .wp-list-table{margin-top:0;margin-right:0;margin-bottom:0;margin-left:0;border-radius:8px;border:none;overflow:hidden;box-shadow:0px 1px 2px rgba(16,24,40,.1)}.acf-internal-post-type .wp-list-table strong{color:#98a2b3;margin:0}.acf-internal-post-type .wp-list-table a.row-title{font-size:13px !important;font-weight:500}.acf-internal-post-type .wp-list-table th,.acf-internal-post-type .wp-list-table td{color:#344054}.acf-internal-post-type .wp-list-table th.sortable a,.acf-internal-post-type .wp-list-table td.sortable a{padding:0}.acf-internal-post-type .wp-list-table th.check-column,.acf-internal-post-type .wp-list-table td.check-column{padding-top:12px;padding-right:16px;padding-left:16px}@media screen and (max-width: 880px){.acf-internal-post-type .wp-list-table th.check-column,.acf-internal-post-type .wp-list-table td.check-column{vertical-align:top;padding-right:2px;padding-left:10px}}.acf-internal-post-type .wp-list-table th input,.acf-internal-post-type .wp-list-table td input{margin:0;padding:0}.acf-internal-post-type .wp-list-table th .acf-more-items,.acf-internal-post-type .wp-list-table td .acf-more-items{display:inline-flex;flex-direction:row;justify-content:center;align-items:center;padding:0px 6px 1px;gap:8px;width:25px;height:16px;background:#eaecf0;border-radius:100px;font-weight:400;font-size:10px;color:#475467}.acf-internal-post-type .wp-list-table th .acf-emdash,.acf-internal-post-type .wp-list-table td .acf-emdash{color:#d0d5dd}.acf-internal-post-type .wp-list-table thead th,.acf-internal-post-type .wp-list-table thead td,.acf-internal-post-type .wp-list-table tfoot th,.acf-internal-post-type .wp-list-table tfoot td{height:48px;padding-right:24px;padding-left:24px;box-sizing:border-box;background-color:#f9fafb;border-color:#eaecf0;font-weight:500}@media screen and (max-width: 880px){.acf-internal-post-type .wp-list-table thead th,.acf-internal-post-type .wp-list-table thead td,.acf-internal-post-type .wp-list-table tfoot th,.acf-internal-post-type .wp-list-table tfoot td{padding-right:16px;padding-left:8px}}@media screen and (max-width: 880px){.acf-internal-post-type .wp-list-table thead th.check-column,.acf-internal-post-type .wp-list-table thead td.check-column,.acf-internal-post-type .wp-list-table tfoot th.check-column,.acf-internal-post-type .wp-list-table tfoot td.check-column{vertical-align:middle}}.acf-internal-post-type .wp-list-table tbody th,.acf-internal-post-type .wp-list-table tbody td{box-sizing:border-box;height:60px;padding-top:10px;padding-right:24px;padding-bottom:10px;padding-left:24px;vertical-align:top;background-color:#fff;border-bottom-width:1px;border-bottom-color:#eaecf0;border-bottom-style:solid}@media screen and (max-width: 880px){.acf-internal-post-type .wp-list-table tbody th,.acf-internal-post-type .wp-list-table tbody td{padding-right:16px;padding-left:8px}}.acf-internal-post-type .wp-list-table .column-acf-key{white-space:nowrap}.acf-internal-post-type .wp-list-table .column-acf-key .acf-icon-key-solid{display:inline-block;position:relative;bottom:-2px;width:15px;height:15px;margin-right:4px;color:#98a2b3}.acf-internal-post-type .wp-list-table .acf-location .dashicons{position:relative;bottom:-2px;width:16px;height:16px;margin-right:6px;font-size:16px;color:#98a2b3}.acf-internal-post-type .wp-list-table .post-state{color:#667085}.acf-internal-post-type .wp-list-table tr:hover,.acf-internal-post-type .wp-list-table tr:focus-within{background:#f7f7f7}.acf-internal-post-type .wp-list-table tr:hover .row-actions,.acf-internal-post-type .wp-list-table tr:focus-within .row-actions{margin-bottom:0}@media screen and (min-width: 782px){.acf-internal-post-type .wp-list-table .column-acf-count{width:10%}}.acf-internal-post-type .wp-list-table .row-actions span.file{display:block;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.acf-internal-post-type.rtl .wp-list-table .column-acf-key .acf-icon-key-solid{margin-left:4px;margin-right:0}.acf-internal-post-type.rtl .wp-list-table .acf-location .dashicons{margin-left:6px;margin-right:0}.acf-internal-post-type .row-actions{margin-top:2px;padding-top:0;padding-right:0;padding-bottom:0;padding-left:0;line-height:14px;color:#d0d5dd}.acf-internal-post-type .row-actions .trash a{color:#d94f4f}.acf-internal-post-type .widefat thead td.check-column,.acf-internal-post-type .widefat tfoot td.check-column{padding-top:0}.acf-internal-post-type .row-actions a:hover{color:#044767}.acf-internal-post-type .row-actions .trash a{color:#a00}.acf-internal-post-type .row-actions .trash a:hover{color:red}.acf-internal-post-type .row-actions.visible{margin-bottom:0;opacity:1}.acf-internal-post-type #the-list tr:hover td,.acf-internal-post-type #the-list tr:hover th{background-color:#f7fbfd}.acf-internal-post-type .tablenav{margin-top:24px;margin-right:0;margin-bottom:0;margin-left:0;padding-top:0;padding-right:0;padding-bottom:0;padding-left:0;color:#667085}.acf-internal-post-type #posts-filter p.search-box{margin-top:5px;margin-right:0;margin-bottom:24px;margin-left:0}.acf-internal-post-type #posts-filter p.search-box #post-search-input{min-width:280px;margin-top:0;margin-right:8px;margin-bottom:0;margin-left:0}@media screen and (max-width: 768px){.acf-internal-post-type #posts-filter p.search-box{display:flex;box-sizing:border-box;padding-right:24px;margin-right:16px;position:inherit}.acf-internal-post-type #posts-filter p.search-box #post-search-input{min-width:auto}}.rtl.acf-internal-post-type #posts-filter p.search-box #post-search-input{margin-right:0;margin-left:8px}@media screen and (max-width: 768px){.rtl.acf-internal-post-type #posts-filter p.search-box{padding-left:24px;padding-right:0;margin-left:16px;margin-right:0}}.acf-internal-post-type .subsubsub{display:flex;align-items:flex-end;height:40px;margin-bottom:16px}.acf-internal-post-type .subsubsub li{margin-top:0;margin-right:4px;color:#98a2b3}.acf-internal-post-type .subsubsub li .count{color:#667085}.acf-internal-post-type .tablenav-pages{display:flex;align-items:center}.acf-internal-post-type .tablenav-pages.no-pages{display:none}.acf-internal-post-type .tablenav-pages .displaying-num{margin-top:0;margin-right:16px;margin-bottom:0;margin-left:0}.acf-internal-post-type .tablenav-pages .pagination-links{display:flex;align-items:center}.acf-internal-post-type .tablenav-pages .pagination-links #table-paging{margin-top:0;margin-right:4px;margin-bottom:0;margin-left:8px}.acf-internal-post-type .tablenav-pages .pagination-links #table-paging .total-pages{margin-right:0}.acf-internal-post-type .tablenav-pages.one-page .pagination-links{display:none}.acf-internal-post-type .tablenav-pages .pagination-links .button{display:inline-flex;align-items:center;align-content:center;justify-content:center;min-width:40px;margin-top:0;margin-right:0;margin-bottom:0;margin-left:0;padding-top:0;padding-right:0;padding-bottom:0;padding-left:0;background-color:rgba(0,0,0,0)}.acf-internal-post-type .tablenav-pages .pagination-links .button:nth-child(1),.acf-internal-post-type .tablenav-pages .pagination-links .button:nth-child(2),.acf-internal-post-type .tablenav-pages .pagination-links .button:last-child,.acf-internal-post-type .tablenav-pages .pagination-links .button:nth-last-child(2){display:inline-block;position:relative;text-indent:100%;white-space:nowrap;overflow:hidden;margin-left:4px}.acf-internal-post-type .tablenav-pages .pagination-links .button:nth-child(1):before,.acf-internal-post-type .tablenav-pages .pagination-links .button:nth-child(2):before,.acf-internal-post-type .tablenav-pages .pagination-links .button:last-child:before,.acf-internal-post-type .tablenav-pages .pagination-links .button:nth-last-child(2):before{content:"";display:block;position:absolute;width:100%;height:100%;top:0;left:0;background-color:#0783be;border-radius:0;-webkit-mask-size:20px;mask-size:20px;-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;-webkit-mask-position:center;mask-position:center}.acf-internal-post-type .tablenav-pages .pagination-links .button:nth-child(1):before{-webkit-mask-image:url("../../images/icons/icon-chevron-left-double.svg");mask-image:url("../../images/icons/icon-chevron-left-double.svg")}.acf-internal-post-type .tablenav-pages .pagination-links .button:nth-child(2):before{-webkit-mask-image:url("../../images/icons/icon-chevron-left.svg");mask-image:url("../../images/icons/icon-chevron-left.svg")}.acf-internal-post-type .tablenav-pages .pagination-links .button:nth-last-child(2):before{-webkit-mask-image:url("../../images/icons/icon-chevron-right.svg");mask-image:url("../../images/icons/icon-chevron-right.svg")}.acf-internal-post-type .tablenav-pages .pagination-links .button:last-child:before{-webkit-mask-image:url("../../images/icons/icon-chevron-right-double.svg");mask-image:url("../../images/icons/icon-chevron-right-double.svg")}.acf-internal-post-type .tablenav-pages .pagination-links .button:hover{border-color:#066998;background-color:rgba(7,131,190,.05)}.acf-internal-post-type .tablenav-pages .pagination-links .button:hover:before{background-color:#066998}.acf-internal-post-type .tablenav-pages .pagination-links .button.disabled{background-color:rgba(0,0,0,0) !important}.acf-internal-post-type .tablenav-pages .pagination-links .button.disabled.disabled:before{background-color:#d0d5dd}.acf-no-field-groups-wrapper,.acf-no-taxonomies-wrapper,.acf-no-post-types-wrapper,.acf-no-options-pages-wrapper,.acf-options-preview-wrapper{display:flex;justify-content:center;padding-top:48px;padding-bottom:48px}.acf-no-field-groups-wrapper .acf-no-field-groups-inner,.acf-no-field-groups-wrapper .acf-no-taxonomies-inner,.acf-no-field-groups-wrapper .acf-no-post-types-inner,.acf-no-field-groups-wrapper .acf-no-options-pages-inner,.acf-no-field-groups-wrapper .acf-options-preview-inner,.acf-no-taxonomies-wrapper .acf-no-field-groups-inner,.acf-no-taxonomies-wrapper .acf-no-taxonomies-inner,.acf-no-taxonomies-wrapper .acf-no-post-types-inner,.acf-no-taxonomies-wrapper .acf-no-options-pages-inner,.acf-no-taxonomies-wrapper .acf-options-preview-inner,.acf-no-post-types-wrapper .acf-no-field-groups-inner,.acf-no-post-types-wrapper .acf-no-taxonomies-inner,.acf-no-post-types-wrapper .acf-no-post-types-inner,.acf-no-post-types-wrapper .acf-no-options-pages-inner,.acf-no-post-types-wrapper .acf-options-preview-inner,.acf-no-options-pages-wrapper .acf-no-field-groups-inner,.acf-no-options-pages-wrapper .acf-no-taxonomies-inner,.acf-no-options-pages-wrapper .acf-no-post-types-inner,.acf-no-options-pages-wrapper .acf-no-options-pages-inner,.acf-no-options-pages-wrapper .acf-options-preview-inner,.acf-options-preview-wrapper .acf-no-field-groups-inner,.acf-options-preview-wrapper .acf-no-taxonomies-inner,.acf-options-preview-wrapper .acf-no-post-types-inner,.acf-options-preview-wrapper .acf-no-options-pages-inner,.acf-options-preview-wrapper .acf-options-preview-inner{display:flex;flex-wrap:wrap;justify-content:center;align-content:center;align-items:flex-start;text-align:center;max-width:420px;min-height:320px}.acf-no-field-groups-wrapper .acf-no-field-groups-inner img,.acf-no-field-groups-wrapper .acf-no-field-groups-inner h2,.acf-no-field-groups-wrapper .acf-no-field-groups-inner p,.acf-no-field-groups-wrapper .acf-no-taxonomies-inner img,.acf-no-field-groups-wrapper .acf-no-taxonomies-inner h2,.acf-no-field-groups-wrapper .acf-no-taxonomies-inner p,.acf-no-field-groups-wrapper .acf-no-post-types-inner img,.acf-no-field-groups-wrapper .acf-no-post-types-inner h2,.acf-no-field-groups-wrapper .acf-no-post-types-inner p,.acf-no-field-groups-wrapper .acf-no-options-pages-inner img,.acf-no-field-groups-wrapper .acf-no-options-pages-inner h2,.acf-no-field-groups-wrapper .acf-no-options-pages-inner p,.acf-no-field-groups-wrapper .acf-options-preview-inner img,.acf-no-field-groups-wrapper .acf-options-preview-inner h2,.acf-no-field-groups-wrapper .acf-options-preview-inner p,.acf-no-taxonomies-wrapper .acf-no-field-groups-inner img,.acf-no-taxonomies-wrapper .acf-no-field-groups-inner h2,.acf-no-taxonomies-wrapper .acf-no-field-groups-inner p,.acf-no-taxonomies-wrapper .acf-no-taxonomies-inner img,.acf-no-taxonomies-wrapper .acf-no-taxonomies-inner h2,.acf-no-taxonomies-wrapper .acf-no-taxonomies-inner p,.acf-no-taxonomies-wrapper .acf-no-post-types-inner img,.acf-no-taxonomies-wrapper .acf-no-post-types-inner h2,.acf-no-taxonomies-wrapper .acf-no-post-types-inner p,.acf-no-taxonomies-wrapper .acf-no-options-pages-inner img,.acf-no-taxonomies-wrapper .acf-no-options-pages-inner h2,.acf-no-taxonomies-wrapper .acf-no-options-pages-inner p,.acf-no-taxonomies-wrapper .acf-options-preview-inner img,.acf-no-taxonomies-wrapper .acf-options-preview-inner h2,.acf-no-taxonomies-wrapper .acf-options-preview-inner p,.acf-no-post-types-wrapper .acf-no-field-groups-inner img,.acf-no-post-types-wrapper .acf-no-field-groups-inner h2,.acf-no-post-types-wrapper .acf-no-field-groups-inner p,.acf-no-post-types-wrapper .acf-no-taxonomies-inner img,.acf-no-post-types-wrapper .acf-no-taxonomies-inner h2,.acf-no-post-types-wrapper .acf-no-taxonomies-inner p,.acf-no-post-types-wrapper .acf-no-post-types-inner img,.acf-no-post-types-wrapper .acf-no-post-types-inner h2,.acf-no-post-types-wrapper .acf-no-post-types-inner p,.acf-no-post-types-wrapper .acf-no-options-pages-inner img,.acf-no-post-types-wrapper .acf-no-options-pages-inner h2,.acf-no-post-types-wrapper .acf-no-options-pages-inner p,.acf-no-post-types-wrapper .acf-options-preview-inner img,.acf-no-post-types-wrapper .acf-options-preview-inner h2,.acf-no-post-types-wrapper .acf-options-preview-inner p,.acf-no-options-pages-wrapper .acf-no-field-groups-inner img,.acf-no-options-pages-wrapper .acf-no-field-groups-inner h2,.acf-no-options-pages-wrapper .acf-no-field-groups-inner p,.acf-no-options-pages-wrapper .acf-no-taxonomies-inner img,.acf-no-options-pages-wrapper .acf-no-taxonomies-inner h2,.acf-no-options-pages-wrapper .acf-no-taxonomies-inner p,.acf-no-options-pages-wrapper .acf-no-post-types-inner img,.acf-no-options-pages-wrapper .acf-no-post-types-inner h2,.acf-no-options-pages-wrapper .acf-no-post-types-inner p,.acf-no-options-pages-wrapper .acf-no-options-pages-inner img,.acf-no-options-pages-wrapper .acf-no-options-pages-inner h2,.acf-no-options-pages-wrapper .acf-no-options-pages-inner p,.acf-no-options-pages-wrapper .acf-options-preview-inner img,.acf-no-options-pages-wrapper .acf-options-preview-inner h2,.acf-no-options-pages-wrapper .acf-options-preview-inner p,.acf-options-preview-wrapper .acf-no-field-groups-inner img,.acf-options-preview-wrapper .acf-no-field-groups-inner h2,.acf-options-preview-wrapper .acf-no-field-groups-inner p,.acf-options-preview-wrapper .acf-no-taxonomies-inner img,.acf-options-preview-wrapper .acf-no-taxonomies-inner h2,.acf-options-preview-wrapper .acf-no-taxonomies-inner p,.acf-options-preview-wrapper .acf-no-post-types-inner img,.acf-options-preview-wrapper .acf-no-post-types-inner h2,.acf-options-preview-wrapper .acf-no-post-types-inner p,.acf-options-preview-wrapper .acf-no-options-pages-inner img,.acf-options-preview-wrapper .acf-no-options-pages-inner h2,.acf-options-preview-wrapper .acf-no-options-pages-inner p,.acf-options-preview-wrapper .acf-options-preview-inner img,.acf-options-preview-wrapper .acf-options-preview-inner h2,.acf-options-preview-wrapper .acf-options-preview-inner p{flex:1 0 100%}.acf-no-field-groups-wrapper .acf-no-field-groups-inner h2,.acf-no-field-groups-wrapper .acf-no-taxonomies-inner h2,.acf-no-field-groups-wrapper .acf-no-post-types-inner h2,.acf-no-field-groups-wrapper .acf-no-options-pages-inner h2,.acf-no-field-groups-wrapper .acf-options-preview-inner h2,.acf-no-taxonomies-wrapper .acf-no-field-groups-inner h2,.acf-no-taxonomies-wrapper .acf-no-taxonomies-inner h2,.acf-no-taxonomies-wrapper .acf-no-post-types-inner h2,.acf-no-taxonomies-wrapper .acf-no-options-pages-inner h2,.acf-no-taxonomies-wrapper .acf-options-preview-inner h2,.acf-no-post-types-wrapper .acf-no-field-groups-inner h2,.acf-no-post-types-wrapper .acf-no-taxonomies-inner h2,.acf-no-post-types-wrapper .acf-no-post-types-inner h2,.acf-no-post-types-wrapper .acf-no-options-pages-inner h2,.acf-no-post-types-wrapper .acf-options-preview-inner h2,.acf-no-options-pages-wrapper .acf-no-field-groups-inner h2,.acf-no-options-pages-wrapper .acf-no-taxonomies-inner h2,.acf-no-options-pages-wrapper .acf-no-post-types-inner h2,.acf-no-options-pages-wrapper .acf-no-options-pages-inner h2,.acf-no-options-pages-wrapper .acf-options-preview-inner h2,.acf-options-preview-wrapper .acf-no-field-groups-inner h2,.acf-options-preview-wrapper .acf-no-taxonomies-inner h2,.acf-options-preview-wrapper .acf-no-post-types-inner h2,.acf-options-preview-wrapper .acf-no-options-pages-inner h2,.acf-options-preview-wrapper .acf-options-preview-inner h2{margin-top:32px;margin-bottom:0;padding:0;color:#344054;line-height:1.6rem}.acf-no-field-groups-wrapper .acf-no-field-groups-inner p,.acf-no-field-groups-wrapper .acf-no-taxonomies-inner p,.acf-no-field-groups-wrapper .acf-no-post-types-inner p,.acf-no-field-groups-wrapper .acf-no-options-pages-inner p,.acf-no-field-groups-wrapper .acf-options-preview-inner p,.acf-no-taxonomies-wrapper .acf-no-field-groups-inner p,.acf-no-taxonomies-wrapper .acf-no-taxonomies-inner p,.acf-no-taxonomies-wrapper .acf-no-post-types-inner p,.acf-no-taxonomies-wrapper .acf-no-options-pages-inner p,.acf-no-taxonomies-wrapper .acf-options-preview-inner p,.acf-no-post-types-wrapper .acf-no-field-groups-inner p,.acf-no-post-types-wrapper .acf-no-taxonomies-inner p,.acf-no-post-types-wrapper .acf-no-post-types-inner p,.acf-no-post-types-wrapper .acf-no-options-pages-inner p,.acf-no-post-types-wrapper .acf-options-preview-inner p,.acf-no-options-pages-wrapper .acf-no-field-groups-inner p,.acf-no-options-pages-wrapper .acf-no-taxonomies-inner p,.acf-no-options-pages-wrapper .acf-no-post-types-inner p,.acf-no-options-pages-wrapper .acf-no-options-pages-inner p,.acf-no-options-pages-wrapper .acf-options-preview-inner p,.acf-options-preview-wrapper .acf-no-field-groups-inner p,.acf-options-preview-wrapper .acf-no-taxonomies-inner p,.acf-options-preview-wrapper .acf-no-post-types-inner p,.acf-options-preview-wrapper .acf-no-options-pages-inner p,.acf-options-preview-wrapper .acf-options-preview-inner p{margin-top:12px;margin-bottom:0;padding:0;color:#667085}.acf-no-field-groups-wrapper .acf-no-field-groups-inner p.acf-small,.acf-no-field-groups-wrapper .acf-no-taxonomies-inner p.acf-small,.acf-no-field-groups-wrapper .acf-no-post-types-inner p.acf-small,.acf-no-field-groups-wrapper .acf-no-options-pages-inner p.acf-small,.acf-no-field-groups-wrapper .acf-options-preview-inner p.acf-small,.acf-no-taxonomies-wrapper .acf-no-field-groups-inner p.acf-small,.acf-no-taxonomies-wrapper .acf-no-taxonomies-inner p.acf-small,.acf-no-taxonomies-wrapper .acf-no-post-types-inner p.acf-small,.acf-no-taxonomies-wrapper .acf-no-options-pages-inner p.acf-small,.acf-no-taxonomies-wrapper .acf-options-preview-inner p.acf-small,.acf-no-post-types-wrapper .acf-no-field-groups-inner p.acf-small,.acf-no-post-types-wrapper .acf-no-taxonomies-inner p.acf-small,.acf-no-post-types-wrapper .acf-no-post-types-inner p.acf-small,.acf-no-post-types-wrapper .acf-no-options-pages-inner p.acf-small,.acf-no-post-types-wrapper .acf-options-preview-inner p.acf-small,.acf-no-options-pages-wrapper .acf-no-field-groups-inner p.acf-small,.acf-no-options-pages-wrapper .acf-no-taxonomies-inner p.acf-small,.acf-no-options-pages-wrapper .acf-no-post-types-inner p.acf-small,.acf-no-options-pages-wrapper .acf-no-options-pages-inner p.acf-small,.acf-no-options-pages-wrapper .acf-options-preview-inner p.acf-small,.acf-options-preview-wrapper .acf-no-field-groups-inner p.acf-small,.acf-options-preview-wrapper .acf-no-taxonomies-inner p.acf-small,.acf-options-preview-wrapper .acf-no-post-types-inner p.acf-small,.acf-options-preview-wrapper .acf-no-options-pages-inner p.acf-small,.acf-options-preview-wrapper .acf-options-preview-inner p.acf-small{display:block;position:relative;margin-top:32px}.acf-no-field-groups-wrapper .acf-no-field-groups-inner img,.acf-no-field-groups-wrapper .acf-no-taxonomies-inner img,.acf-no-field-groups-wrapper .acf-no-post-types-inner img,.acf-no-field-groups-wrapper .acf-no-options-pages-inner img,.acf-no-field-groups-wrapper .acf-options-preview-inner img,.acf-no-taxonomies-wrapper .acf-no-field-groups-inner img,.acf-no-taxonomies-wrapper .acf-no-taxonomies-inner img,.acf-no-taxonomies-wrapper .acf-no-post-types-inner img,.acf-no-taxonomies-wrapper .acf-no-options-pages-inner img,.acf-no-taxonomies-wrapper .acf-options-preview-inner img,.acf-no-post-types-wrapper .acf-no-field-groups-inner img,.acf-no-post-types-wrapper .acf-no-taxonomies-inner img,.acf-no-post-types-wrapper .acf-no-post-types-inner img,.acf-no-post-types-wrapper .acf-no-options-pages-inner img,.acf-no-post-types-wrapper .acf-options-preview-inner img,.acf-no-options-pages-wrapper .acf-no-field-groups-inner img,.acf-no-options-pages-wrapper .acf-no-taxonomies-inner img,.acf-no-options-pages-wrapper .acf-no-post-types-inner img,.acf-no-options-pages-wrapper .acf-no-options-pages-inner img,.acf-no-options-pages-wrapper .acf-options-preview-inner img,.acf-options-preview-wrapper .acf-no-field-groups-inner img,.acf-options-preview-wrapper .acf-no-taxonomies-inner img,.acf-options-preview-wrapper .acf-no-post-types-inner img,.acf-options-preview-wrapper .acf-no-options-pages-inner img,.acf-options-preview-wrapper .acf-options-preview-inner img{max-width:284px;margin-bottom:0}.acf-no-field-groups-wrapper .acf-no-field-groups-inner .acf-btn,.acf-no-field-groups-wrapper .acf-no-taxonomies-inner .acf-btn,.acf-no-field-groups-wrapper .acf-no-post-types-inner .acf-btn,.acf-no-field-groups-wrapper .acf-no-options-pages-inner .acf-btn,.acf-no-field-groups-wrapper .acf-options-preview-inner .acf-btn,.acf-no-taxonomies-wrapper .acf-no-field-groups-inner .acf-btn,.acf-no-taxonomies-wrapper .acf-no-taxonomies-inner .acf-btn,.acf-no-taxonomies-wrapper .acf-no-post-types-inner .acf-btn,.acf-no-taxonomies-wrapper .acf-no-options-pages-inner .acf-btn,.acf-no-taxonomies-wrapper .acf-options-preview-inner .acf-btn,.acf-no-post-types-wrapper .acf-no-field-groups-inner .acf-btn,.acf-no-post-types-wrapper .acf-no-taxonomies-inner .acf-btn,.acf-no-post-types-wrapper .acf-no-post-types-inner .acf-btn,.acf-no-post-types-wrapper .acf-no-options-pages-inner .acf-btn,.acf-no-post-types-wrapper .acf-options-preview-inner .acf-btn,.acf-no-options-pages-wrapper .acf-no-field-groups-inner .acf-btn,.acf-no-options-pages-wrapper .acf-no-taxonomies-inner .acf-btn,.acf-no-options-pages-wrapper .acf-no-post-types-inner .acf-btn,.acf-no-options-pages-wrapper .acf-no-options-pages-inner .acf-btn,.acf-no-options-pages-wrapper .acf-options-preview-inner .acf-btn,.acf-options-preview-wrapper .acf-no-field-groups-inner .acf-btn,.acf-options-preview-wrapper .acf-no-taxonomies-inner .acf-btn,.acf-options-preview-wrapper .acf-no-post-types-inner .acf-btn,.acf-options-preview-wrapper .acf-no-options-pages-inner .acf-btn,.acf-options-preview-wrapper .acf-options-preview-inner .acf-btn{margin-top:32px}.acf-no-field-groups-wrapper .acf-no-post-types-inner img,.acf-no-field-groups-wrapper .acf-no-options-pages-inner img,.acf-no-taxonomies-wrapper .acf-no-post-types-inner img,.acf-no-taxonomies-wrapper .acf-no-options-pages-inner img,.acf-no-post-types-wrapper .acf-no-post-types-inner img,.acf-no-post-types-wrapper .acf-no-options-pages-inner img,.acf-no-options-pages-wrapper .acf-no-post-types-inner img,.acf-no-options-pages-wrapper .acf-no-options-pages-inner img,.acf-options-preview-wrapper .acf-no-post-types-inner img,.acf-options-preview-wrapper .acf-no-options-pages-inner img{width:106px;height:88px}.acf-no-field-groups-wrapper .acf-no-taxonomies-inner img,.acf-no-taxonomies-wrapper .acf-no-taxonomies-inner img,.acf-no-post-types-wrapper .acf-no-taxonomies-inner img,.acf-no-options-pages-wrapper .acf-no-taxonomies-inner img,.acf-options-preview-wrapper .acf-no-taxonomies-inner img{width:98px;height:88px}.acf-no-field-groups #the-list tr:hover td,.acf-no-field-groups #the-list tr:hover th,.acf-no-field-groups .acf-admin-field-groups .wp-list-table tr:hover,.acf-no-field-groups .striped>tbody>:nth-child(odd),.acf-no-field-groups ul.striped>:nth-child(odd),.acf-no-field-groups .alternate,.acf-no-post-types #the-list tr:hover td,.acf-no-post-types #the-list tr:hover th,.acf-no-post-types .acf-admin-field-groups .wp-list-table tr:hover,.acf-no-post-types .striped>tbody>:nth-child(odd),.acf-no-post-types ul.striped>:nth-child(odd),.acf-no-post-types .alternate,.acf-no-taxonomies #the-list tr:hover td,.acf-no-taxonomies #the-list tr:hover th,.acf-no-taxonomies .acf-admin-field-groups .wp-list-table tr:hover,.acf-no-taxonomies .striped>tbody>:nth-child(odd),.acf-no-taxonomies ul.striped>:nth-child(odd),.acf-no-taxonomies .alternate,.acf-no-options-pages #the-list tr:hover td,.acf-no-options-pages #the-list tr:hover th,.acf-no-options-pages .acf-admin-field-groups .wp-list-table tr:hover,.acf-no-options-pages .striped>tbody>:nth-child(odd),.acf-no-options-pages ul.striped>:nth-child(odd),.acf-no-options-pages .alternate{background-color:rgba(0,0,0,0) !important}.acf-no-field-groups .wp-list-table thead,.acf-no-field-groups .wp-list-table tfoot,.acf-no-post-types .wp-list-table thead,.acf-no-post-types .wp-list-table tfoot,.acf-no-taxonomies .wp-list-table thead,.acf-no-taxonomies .wp-list-table tfoot,.acf-no-options-pages .wp-list-table thead,.acf-no-options-pages .wp-list-table tfoot{display:none}.acf-no-field-groups .wp-list-table a.acf-btn,.acf-no-post-types .wp-list-table a.acf-btn,.acf-no-taxonomies .wp-list-table a.acf-btn,.acf-no-options-pages .wp-list-table a.acf-btn{border:1px solid rgba(0,0,0,.16);box-shadow:none}.acf-internal-post-type #the-list .no-items td{vertical-align:middle}.acf-options-preview .acf-btn{margin-left:8px}.acf-options-preview .disabled{background-color:#f2f4f7 !important;color:#98a2b3 !important;border:1px #d0d5dd solid;cursor:default !important}.acf-options-preview .acf-options-pages-preview-upgrade-button{height:48px;padding:8px 48px 8px 48px !important;border-radius:6px;border:1px;gap:6px;display:inline-flex;align-items:center;align-self:stretch;background:linear-gradient(90.52deg, #3E8BFF 0.44%, #A45CFF 113.3%);box-shadow:inset 0 0 0 1px rgba(255,255,255,.16);background-size:180% 80%;background-position:100% 0;transition:background-position .5s;border-radius:6px;text-decoration:none}.acf-options-preview .acf-options-pages-preview-upgrade-button:hover{background-position:0 0}.acf-options-preview .acf-options-pages-preview-upgrade-button:focus{border:none;outline:none;box-shadow:none}.acf-options-preview .acf-options-pages-preview-upgrade-button p{margin:0;padding-top:8px;padding-bottom:8px;font-weight:normal;text-transform:none;color:#fff}.acf-options-preview .acf-options-pages-preview-upgrade-button .acf-icon{width:20px;height:20px;margin-right:6px;margin-left:-2px;background-color:#f9fafb}.acf-options-preview .acf_options_preview_wrap a.acf-btn i{margin-right:-2px !important;margin-left:0px !important}.acf-options-preview .acf-pro-label{vertical-align:middle}.acf-options-preview .acf_options_preview_wrap img{max-height:88px}.acf-internal-post-type .wp-list-table .toggle-row:before{top:4px;left:16px;border-radius:0;content:"";display:block;position:absolute;width:16px;height:16px;background-color:#0783be;border-radius:0;-webkit-mask-size:20px;mask-size:20px;-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;-webkit-mask-position:center;mask-position:center;-webkit-mask-image:url("../../images/icons/icon-chevron-down.svg");mask-image:url("../../images/icons/icon-chevron-down.svg");text-indent:100%;white-space:nowrap;overflow:hidden}.acf-internal-post-type .wp-list-table .is-expanded .toggle-row:before{-webkit-mask-image:url("../../images/icons/icon-chevron-up.svg");mask-image:url("../../images/icons/icon-chevron-up.svg")}@media screen and (max-width: 880px){.acf-internal-post-type .widefat th input[type=checkbox],.acf-internal-post-type .widefat thead td input[type=checkbox],.acf-internal-post-type .widefat tfoot td input[type=checkbox]{margin-bottom:0}}.acf-admin-toolbar{position:unset;top:32px;height:72px;z-index:800;background:#344054;color:#98a2b3}.acf-admin-toolbar .acf-admin-toolbar-inner{display:flex;justify-content:space-between;align-content:center;align-items:center;max-width:100%}.acf-admin-toolbar .acf-admin-toolbar-inner .acf-nav-wrap{display:flex;align-items:center}@media screen and (max-width: 1250px){.acf-admin-toolbar .acf-admin-toolbar-inner .acf-nav-wrap .acf-header-tab-acf-post-type,.acf-admin-toolbar .acf-admin-toolbar-inner .acf-nav-wrap .acf-header-tab-acf-taxonomy{display:none}.acf-admin-toolbar .acf-admin-toolbar-inner .acf-nav-wrap .acf-more .acf-header-tab-acf-post-type,.acf-admin-toolbar .acf-admin-toolbar-inner .acf-nav-wrap .acf-more .acf-header-tab-acf-taxonomy{display:flex}}.acf-admin-toolbar .acf-admin-toolbar-inner .acf-nav-upgrade-wrap{display:flex;align-items:center}.acf-admin-toolbar .acf-admin-toolbar-inner .acf-nav-wpengine-logo{display:inline-flex;margin-left:24px}@media screen and (max-width: 1000px){.acf-admin-toolbar .acf-admin-toolbar-inner .acf-nav-wpengine-logo{display:none}}@media screen and (max-width: 880px){.acf-admin-toolbar{position:static}}.acf-admin-toolbar .acf-logo{display:flex;margin-right:24px;text-decoration:none}.acf-admin-toolbar .acf-logo .acf-pro-label{margin-left:8px}.acf-admin-toolbar .acf-logo img{display:block;max-width:55px;line-height:0%}.acf-admin-toolbar h2{display:none;color:#f9fafb}.acf-admin-toolbar .acf-tab{display:flex;align-items:center;box-sizing:border-box;min-height:40px;margin-right:8px;padding-top:8px;padding-right:16px;padding-bottom:8px;padding-left:16px;border-width:1px;border-style:solid;border-color:rgba(0,0,0,0);border-radius:6px;color:#98a2b3;text-decoration:none}.acf-admin-toolbar .acf-tab.is-active{background-color:#475467;color:#fff}.acf-admin-toolbar .acf-tab:hover{background-color:#475467;color:#f9fafb}.acf-admin-toolbar .acf-tab:focus-visible{border-width:1px;border-style:solid;border-color:#667085}.acf-admin-toolbar .acf-tab:focus{box-shadow:none}.acf-admin-toolbar .acf-more:hover .acf-tab.acf-more-tab{background-color:#475467;color:#f9fafb}.acf-admin-toolbar .acf-more ul{display:none;position:absolute;box-sizing:border-box;background:#fff;z-index:1051;overflow:hidden;min-width:280px;margin-top:0;margin-right:0;margin-bottom:0;margin-left:0;padding:0;border-radius:8px;box-shadow:0px 0px 0px 1px rgba(0,0,0,.04),0px 8px 23px rgba(0,0,0,.12)}.acf-admin-toolbar .acf-more ul .acf-wp-engine{display:flex;align-items:center;justify-content:space-between;min-height:48px;border-top:1px solid rgba(0,0,0,.08);background:#ecfbfc}.acf-admin-toolbar .acf-more ul .acf-wp-engine a{display:flex;width:100%;justify-content:space-between;border-top:none}.acf-admin-toolbar .acf-more ul li{margin:0;padding:0 16px}.acf-admin-toolbar .acf-more ul li .acf-header-tab-acf-post-type,.acf-admin-toolbar .acf-more ul li .acf-header-tab-acf-taxonomy{display:none}.acf-admin-toolbar .acf-more ul li.acf-more-section-header{background:#f9fafb;padding:1px 0 0 0;margin-top:-1px;border-top:1px solid #eaecf0;border-bottom:1px solid #eaecf0}.acf-admin-toolbar .acf-more ul li.acf-more-section-header span{color:#475467;font-size:12px;font-weight:bold}.acf-admin-toolbar .acf-more ul li.acf-more-section-header span:hover{background:#f9fafb}.acf-admin-toolbar .acf-more ul li a{margin:0;padding:0;color:#1d2939;border-radius:0;border-top-width:1px;border-top-style:solid;border-top-color:#f2f4f7}.acf-admin-toolbar .acf-more ul li a:hover,.acf-admin-toolbar .acf-more ul li a.acf-tab.is-active{background-color:unset;color:#0783be}.acf-admin-toolbar .acf-more ul li a i.acf-icon{display:none !important;width:16px;height:16px;-webkit-mask-size:16px;mask-size:16px;background-color:#98a2b3 !important}.acf-admin-toolbar .acf-more ul li a .acf-requires-pro{justify-content:center;align-items:center;color:#fff;background:linear-gradient(90.52deg, #3E8BFF 0.44%, #A45CFF 113.3%);background-size:140% 20%;background-position:100% 0;border-radius:100px;font-size:11px;position:absolute;right:16px;padding-right:6px;padding-left:6px}.acf-admin-toolbar .acf-more ul li a img.acf-wp-engine-pro{display:block;height:16px;width:auto}.acf-admin-toolbar .acf-more ul li a .acf-wp-engine-upsell-pill{display:inline-flex;justify-content:center;align-items:center;min-height:22px;border-radius:100px;font-size:11px;padding-right:8px;padding-left:8px;background:#0ecad4;color:#fff;text-shadow:0px 1px 0 rgba(0,0,0,.12);text-transform:uppercase}.acf-admin-toolbar .acf-more ul li:first-child a{border-bottom:none}.acf-admin-toolbar .acf-more ul:hover,.acf-admin-toolbar .acf-more ul:focus{display:block}.acf-admin-toolbar .acf-more:hover ul,.acf-admin-toolbar .acf-more:focus ul{display:block}#wpcontent .acf-admin-toolbar{box-sizing:border-box;margin-left:-20px;padding-top:16px;padding-right:32px;padding-bottom:16px;padding-left:32px}@media screen and (max-width: 600px){.acf-admin-toolbar{display:none}}.rtl #wpcontent .acf-admin-toolbar{margin-left:0;margin-right:-20px}.rtl #wpcontent .acf-admin-toolbar .acf-tab{margin-left:8px;margin-right:0}.rtl .acf-logo{margin-right:0;margin-left:32px}.acf-admin-toolbar .acf-tab i.acf-icon,.acf-admin-toolbar .acf-more i.acf-icon{display:none;margin-right:8px;margin-left:-2px}.acf-admin-toolbar .acf-tab i.acf-icon.acf-icon-dropdown,.acf-admin-toolbar .acf-more i.acf-icon.acf-icon-dropdown{-webkit-mask-image:url("../../images/icons/icon-chevron-down.svg");mask-image:url("../../images/icons/icon-chevron-down.svg");width:16px;height:16px;-webkit-mask-size:16px;mask-size:16px;margin-right:-6px;margin-left:6px}.acf-admin-toolbar .acf-tab.acf-header-tab-acf-field-group i.acf-icon,.acf-admin-toolbar .acf-tab.acf-header-tab-acf-post-type i.acf-icon,.acf-admin-toolbar .acf-tab.acf-header-tab-acf-taxonomy i.acf-icon,.acf-admin-toolbar .acf-tab.acf-header-tab-acf-tools i.acf-icon,.acf-admin-toolbar .acf-tab.acf-header-tab-acf-settings-updates i.acf-icon,.acf-admin-toolbar .acf-tab.acf-header-tab-acf-more i.acf-icon,.acf-admin-toolbar .acf-more.acf-header-tab-acf-field-group i.acf-icon,.acf-admin-toolbar .acf-more.acf-header-tab-acf-post-type i.acf-icon,.acf-admin-toolbar .acf-more.acf-header-tab-acf-taxonomy i.acf-icon,.acf-admin-toolbar .acf-more.acf-header-tab-acf-tools i.acf-icon,.acf-admin-toolbar .acf-more.acf-header-tab-acf-settings-updates i.acf-icon,.acf-admin-toolbar .acf-more.acf-header-tab-acf-more i.acf-icon{display:inline-flex}.acf-admin-toolbar .acf-tab.is-active i.acf-icon,.acf-admin-toolbar .acf-tab:hover i.acf-icon,.acf-admin-toolbar .acf-more.is-active i.acf-icon,.acf-admin-toolbar .acf-more:hover i.acf-icon{background-color:#eaecf0}.rtl .acf-admin-toolbar .acf-tab i.acf-icon{margin-right:-2px;margin-left:8px}.acf-admin-toolbar .acf-header-tab-acf-field-group i.acf-icon{-webkit-mask-image:url("../../images/icons/icon-field-groups.svg");mask-image:url("../../images/icons/icon-field-groups.svg")}.acf-admin-toolbar .acf-header-tab-acf-post-type i.acf-icon{-webkit-mask-image:url("../../images/icons/icon-post-type.svg");mask-image:url("../../images/icons/icon-post-type.svg")}.acf-admin-toolbar .acf-header-tab-acf-taxonomy i.acf-icon{-webkit-mask-image:url("../../images/icons/icon-taxonomies.svg");mask-image:url("../../images/icons/icon-taxonomies.svg")}.acf-admin-toolbar .acf-header-tab-acf-tools i.acf-icon{-webkit-mask-image:url("../../images/icons/icon-tools.svg");mask-image:url("../../images/icons/icon-tools.svg")}.acf-admin-toolbar .acf-header-tab-acf-settings-updates i.acf-icon{-webkit-mask-image:url("../../images/icons/icon-updates.svg");mask-image:url("../../images/icons/icon-updates.svg")}.acf-admin-toolbar .acf-header-tab-acf-more i.acf-icon-more{-webkit-mask-image:url("../../images/icons/icon-extended-menu.svg");mask-image:url("../../images/icons/icon-extended-menu.svg")}.acf-admin-page #wpbody-content>.notice:not(.inline,.below-h2){display:none}.acf-admin-page h1.wp-heading-inline{display:none}.acf-admin-page .wrap .wp-heading-inline+.page-title-action{display:none}.acf-headerbar{display:flex;align-items:center;position:sticky;top:32px;z-index:700;box-sizing:border-box;min-height:72px;margin-left:-20px;padding-top:8px;padding-right:32px;padding-bottom:8px;padding-left:32px;background-color:#fff;box-shadow:0px 1px 2px rgba(16,24,40,.1)}.acf-headerbar .acf-headerbar-inner{flex:1 1 auto;display:flex;align-items:center;justify-content:space-between;max-width:1440px;gap:8px}.acf-headerbar .acf-page-title{display:flex;align-items:center;gap:8px;margin-top:0;margin-right:16px;margin-bottom:0;margin-left:0;padding-top:0;padding-right:0;padding-bottom:0;padding-left:0}.acf-headerbar .acf-page-title .acf-duplicated-from{color:#98a2b3}.acf-headerbar .acf-page-title .acf-pro-label{box-shadow:none;border:1px solid rgba(0,0,0,.2)}@media screen and (max-width: 880px){.acf-headerbar{position:static}}@media screen and (max-width: 600px){.acf-headerbar{justify-content:space-between;position:relative;top:46px;min-height:64px;padding-right:12px}}.acf-headerbar .acf-headerbar-content{flex:1 1 auto;display:flex;align-items:center}@media screen and (max-width: 880px){.acf-headerbar .acf-headerbar-content{flex-wrap:wrap}.acf-headerbar .acf-headerbar-content .acf-headerbar-title,.acf-headerbar .acf-headerbar-content .acf-title-wrap{flex:1 1 100%}.acf-headerbar .acf-headerbar-content .acf-title-wrap{margin-top:8px}}.acf-headerbar .acf-input-error{border:1px rgba(209,55,55,.5) solid !important;box-shadow:0px 0px 0px 3px rgba(209,55,55,.12),0px 0px 0px rgba(255,54,54,.25) !important;background-image:url("../../images/icons/icon-warning-alt-red.svg");background-position:right 10px top 50%;background-size:20px;background-repeat:no-repeat}.acf-headerbar .acf-input-error:focus{outline:none !important;border:1px rgba(209,55,55,.8) solid !important;box-shadow:0px 0px 0px 3px rgba(209,55,55,.16),0px 0px 0px rgba(255,54,54,.25) !important}.acf-headerbar .acf-headerbar-title-field{min-width:320px}@media screen and (max-width: 880px){.acf-headerbar .acf-headerbar-title-field{min-width:100%}}.acf-headerbar .acf-headerbar-actions{display:flex}.acf-headerbar .acf-headerbar-actions .acf-btn{margin-left:8px}.acf-headerbar .acf-headerbar-actions .disabled{background-color:#f2f4f7;color:#98a2b3 !important;border:1px #d0d5dd solid;cursor:default}.acf-headerbar-field-editor{position:sticky;top:32px;z-index:1020;margin-left:-20px;width:calc(100% + 20px)}@media screen and (max-width: 880px){.acf-headerbar-field-editor{position:relative;top:0;width:100%;margin-left:0;padding-right:8px;padding-left:8px}}@media screen and (max-width: 640px){.acf-headerbar-field-editor{position:relative;top:46px}}@media screen and (max-width: 880px){.acf-headerbar-field-editor .acf-headerbar-inner{flex-wrap:wrap;justify-content:flex-start;align-content:flex-start;align-items:flex-start;width:100%}.acf-headerbar-field-editor .acf-headerbar-inner .acf-page-title{flex:1 1 auto}.acf-headerbar-field-editor .acf-headerbar-inner .acf-headerbar-actions{flex:1 1 100%;margin-top:8px;gap:8px}.acf-headerbar-field-editor .acf-headerbar-inner .acf-headerbar-actions .acf-btn{width:100%;display:inline-flex;justify-content:center;margin:0}}.acf-headerbar-field-editor .acf-page-title{margin-right:16px}.rtl .acf-headerbar,.rtl .acf-headerbar-field-editor{margin-left:0;margin-right:-20px}.rtl .acf-headerbar .acf-page-title,.rtl .acf-headerbar-field-editor .acf-page-title{margin-left:16px;margin-right:0}.rtl .acf-headerbar .acf-headerbar-actions .acf-btn,.rtl .acf-headerbar-field-editor .acf-headerbar-actions .acf-btn{margin-left:0;margin-right:8px}.acf-btn{display:inline-flex;align-items:center;box-sizing:border-box;min-height:40px;padding-top:8px;padding-right:16px;padding-bottom:8px;padding-left:16px;background-color:#0783be;border-radius:6px;border-width:1px;border-style:solid;border-color:rgba(16,24,40,.2);text-decoration:none;color:#fff !important;transition:all .2s ease-in-out;transition-property:background,border,box-shadow}.acf-btn:hover{background-color:#066998;color:#fff;cursor:pointer}.acf-btn:disabled,.acf-btn.disabled{background-color:#f2f4f7;border-color:#eaecf0;color:#98a2b3 !important;transition:none;pointer-events:none}.acf-btn.acf-btn-sm{min-height:32px;padding-top:4px;padding-right:12px;padding-bottom:4px;padding-left:12px}.acf-btn.acf-btn-secondary{background-color:rgba(0,0,0,0);color:#0783be !important;border-color:#0783be}.acf-btn.acf-btn-secondary:hover{background-color:#f3f9fc}.acf-btn.acf-btn-muted{background-color:#667085;color:#fff;height:48px;padding:8px 28px 8px 28px !important;border-radius:6px;border:1px;gap:6px}.acf-btn.acf-btn-muted:hover{background-color:#475467 !important}.acf-btn.acf-btn-tertiary{background-color:rgba(0,0,0,0);color:#667085 !important;border-color:#d0d5dd}.acf-btn.acf-btn-tertiary:hover{color:#667085 !important;border-color:#98a2b3}.acf-btn.acf-btn-clear{background-color:rgba(0,0,0,0);color:#667085 !important;border-color:rgba(0,0,0,0)}.acf-btn.acf-btn-clear:hover{color:#0783be !important}.acf-btn.acf-btn-pro{background:linear-gradient(90.52deg, #3E8BFF 0.44%, #A45CFF 113.3%);background-size:180% 80%;background-position:100% 0;transition:background-position .5s}.acf-btn.acf-btn-pro:hover{background-position:0 0}.acf-btn i.acf-icon{width:20px;height:20px;-webkit-mask-size:20px;mask-size:20px;margin-right:6px;margin-left:-4px}.acf-btn.acf-btn-sm i.acf-icon{width:16px;height:16px;-webkit-mask-size:16px;mask-size:16px;margin-right:6px;margin-left:-2px}.rtl .acf-btn i.acf-icon{margin-right:-4px;margin-left:6px}.rtl .acf-btn.acf-btn-sm i.acf-icon{margin-right:-4px;margin-left:2px}.acf-btn.acf-delete-field-group:hover{background-color:#fbeded;border-color:#d13737 !important;color:#d13737 !important}.acf-internal-post-type i.acf-icon,.post-type-acf-field-group i.acf-icon{display:inline-flex;width:20px;height:20px;background-color:currentColor;border:none;border-radius:0;-webkit-mask-size:contain;mask-size:contain;-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;-webkit-mask-position:center;mask-position:center;text-indent:500%;white-space:nowrap;overflow:hidden}.acf-admin-page i.acf-field-setting-fc-delete,.acf-admin-page i.acf-field-setting-fc-duplicate{box-sizing:border-box;display:flex;flex-direction:row;justify-content:center;align-items:center;padding:8px;cursor:pointer;width:32px;height:32px;background:#fff;border:1px solid #d0d5dd;box-shadow:0px 1px 2px rgba(16,24,40,.1);border-radius:6px;flex:none;order:0;flex-grow:0}.acf-admin-page i.acf-icon-plus{-webkit-mask-image:url("../../images/icons/icon-add.svg");mask-image:url("../../images/icons/icon-add.svg")}.acf-admin-page i.acf-icon-stars{-webkit-mask-image:url("../../images/icons/icon-stars.svg");mask-image:url("../../images/icons/icon-stars.svg")}.acf-admin-page i.acf-icon-help{-webkit-mask-image:url("../../images/icons/icon-help.svg");mask-image:url("../../images/icons/icon-help.svg")}.acf-admin-page i.acf-icon-key{-webkit-mask-image:url("../../images/icons/icon-key.svg");mask-image:url("../../images/icons/icon-key.svg")}.acf-admin-page i.acf-icon-regenerate{-webkit-mask-image:url("../../images/icons/icon-regenerate.svg");mask-image:url("../../images/icons/icon-regenerate.svg")}.acf-admin-page i.acf-icon-trash,.acf-admin-page button.acf-icon-trash{-webkit-mask-image:url("../../images/icons/icon-trash.svg");mask-image:url("../../images/icons/icon-trash.svg")}.acf-admin-page i.acf-icon-extended-menu,.acf-admin-page button.acf-icon-extended-menu{-webkit-mask-image:url("../../images/icons/icon-extended-menu.svg");mask-image:url("../../images/icons/icon-extended-menu.svg")}.acf-admin-page i.acf-icon.-duplicate,.acf-admin-page button.acf-icon-duplicate{-webkit-mask-image:url("../../images/field-type-icons/icon-field-clone.svg");mask-image:url("../../images/field-type-icons/icon-field-clone.svg")}.acf-admin-page i.acf-icon.-duplicate:before,.acf-admin-page i.acf-icon.-duplicate:after,.acf-admin-page button.acf-icon-duplicate:before,.acf-admin-page button.acf-icon-duplicate:after{content:none}.acf-admin-page i.acf-icon-arrow-right{-webkit-mask-image:url("../../images/icons/icon-arrow-right.svg");mask-image:url("../../images/icons/icon-arrow-right.svg")}.acf-admin-page i.acf-icon-arrow-up-right{-webkit-mask-image:url("../../images/icons/icon-arrow-up-right.svg");mask-image:url("../../images/icons/icon-arrow-up-right.svg")}.acf-admin-page i.acf-icon-arrow-left{-webkit-mask-image:url("../../images/icons/icon-arrow-left.svg");mask-image:url("../../images/icons/icon-arrow-left.svg")}.acf-admin-page i.acf-icon-chevron-right,.acf-admin-page .acf-icon.-right{-webkit-mask-image:url("../../images/icons/icon-chevron-right.svg");mask-image:url("../../images/icons/icon-chevron-right.svg")}.acf-admin-page i.acf-icon-chevron-left,.acf-admin-page .acf-icon.-left{-webkit-mask-image:url("../../images/icons/icon-chevron-left.svg");mask-image:url("../../images/icons/icon-chevron-left.svg")}.acf-admin-page i.acf-icon-key-solid{-webkit-mask-image:url("../../images/icons/icon-key-solid.svg");mask-image:url("../../images/icons/icon-key-solid.svg")}.acf-admin-page i.acf-icon-globe,.acf-admin-page .acf-icon.-globe{-webkit-mask-image:url("../../images/icons/icon-globe.svg");mask-image:url("../../images/icons/icon-globe.svg")}.acf-admin-page i.acf-icon-image,.acf-admin-page .acf-icon.-picture{-webkit-mask-image:url("../../images/field-type-icons/icon-field-image.svg");mask-image:url("../../images/field-type-icons/icon-field-image.svg")}.acf-admin-page i.acf-icon-warning{-webkit-mask-image:url("../../images/icons/icon-warning-alt.svg");mask-image:url("../../images/icons/icon-warning-alt.svg")}.acf-admin-page i.acf-icon-warning-red{-webkit-mask-image:url("../../images/icons/icon-warning-alt-red.svg");mask-image:url("../../images/icons/icon-warning-alt-red.svg")}.acf-admin-page i.acf-icon-dots-grid{-webkit-mask-image:url("../../images/icons/icon-dots-grid.svg");mask-image:url("../../images/icons/icon-dots-grid.svg")}.acf-admin-page i.acf-icon-play{-webkit-mask-image:url("../../images/icons/icon-play.svg");mask-image:url("../../images/icons/icon-play.svg")}.acf-admin-page i.acf-icon-lock{-webkit-mask-image:url("../../images/icons/icon-lock.svg");mask-image:url("../../images/icons/icon-lock.svg")}.acf-admin-page i.acf-icon-document{-webkit-mask-image:url("../../images/icons/icon-document.svg");mask-image:url("../../images/icons/icon-document.svg")}.acf-admin-page .post-type-acf-field-group .post-state,.acf-admin-page .acf-internal-post-type .post-state{font-weight:normal}.acf-admin-page .post-type-acf-field-group .post-state .dashicons.dashicons-hidden,.acf-admin-page .acf-internal-post-type .post-state .dashicons.dashicons-hidden{display:inline-flex;width:18px;height:18px;background-color:#98a2b3;border:none;border-radius:0;-webkit-mask-size:18px;mask-size:18px;-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;-webkit-mask-position:center;mask-position:center;-webkit-mask-image:url("../../images/icons/icon-hidden.svg");mask-image:url("../../images/icons/icon-hidden.svg")}.acf-admin-page .post-type-acf-field-group .post-state .dashicons.dashicons-hidden:before,.acf-admin-page .acf-internal-post-type .post-state .dashicons.dashicons-hidden:before{display:none}#acf-field-group-fields .postbox-header h2,#acf-field-group-fields .postbox-header h3,#acf-field-group-fields .acf-sub-field-list-header h2,#acf-field-group-fields .acf-sub-field-list-header h3,#acf-field-group-options .postbox-header h2,#acf-field-group-options .postbox-header h3,#acf-field-group-options .acf-sub-field-list-header h2,#acf-field-group-options .acf-sub-field-list-header h3,#acf-advanced-settings .postbox-header h2,#acf-advanced-settings .postbox-header h3,#acf-advanced-settings .acf-sub-field-list-header h2,#acf-advanced-settings .acf-sub-field-list-header h3{display:inline-flex;justify-content:flex-start;align-content:stretch;align-items:center}#acf-field-group-fields .postbox-header h2:before,#acf-field-group-fields .postbox-header h3:before,#acf-field-group-fields .acf-sub-field-list-header h2:before,#acf-field-group-fields .acf-sub-field-list-header h3:before,#acf-field-group-options .postbox-header h2:before,#acf-field-group-options .postbox-header h3:before,#acf-field-group-options .acf-sub-field-list-header h2:before,#acf-field-group-options .acf-sub-field-list-header h3:before,#acf-advanced-settings .postbox-header h2:before,#acf-advanced-settings .postbox-header h3:before,#acf-advanced-settings .acf-sub-field-list-header h2:before,#acf-advanced-settings .acf-sub-field-list-header h3:before{content:"";display:inline-block;width:20px;height:20px;margin-right:8px;background-color:#98a2b3;border:none;border-radius:0;-webkit-mask-size:contain;mask-size:contain;-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;-webkit-mask-position:center;mask-position:center}.rtl #acf-field-group-fields .postbox-header h2:before,.rtl #acf-field-group-fields .postbox-header h3:before,.rtl #acf-field-group-fields .acf-sub-field-list-header h2:before,.rtl #acf-field-group-fields .acf-sub-field-list-header h3:before,.rtl #acf-field-group-options .postbox-header h2:before,.rtl #acf-field-group-options .postbox-header h3:before,.rtl #acf-field-group-options .acf-sub-field-list-header h2:before,.rtl #acf-field-group-options .acf-sub-field-list-header h3:before{margin-right:0;margin-left:8px}#acf-field-group-fields .postbox-header h2:before,h3.acf-sub-field-list-title:before,.acf-link-field-groups-popup h3:before{-webkit-mask-image:url("../../images/icons/icon-fields.svg");mask-image:url("../../images/icons/icon-fields.svg")}.acf-create-options-page-popup h3:before{-webkit-mask-image:url("../../images/icons/icon-sliders.svg");mask-image:url("../../images/icons/icon-sliders.svg")}#acf-field-group-options .postbox-header h2:before{-webkit-mask-image:url("../../images/icons/icon-settings.svg");mask-image:url("../../images/icons/icon-settings.svg")}.acf-field-setting-fc_layout .acf-field-settings-fc_head label:before{-webkit-mask-image:url("../../images/icons/icon-layout.svg");mask-image:url("../../images/icons/icon-layout.svg")}.acf-admin-single-post-type #acf-advanced-settings .postbox-header h2:before,.acf-admin-single-taxonomy #acf-advanced-settings .postbox-header h2:before,.acf-admin-single-options-page #acf-advanced-settings .postbox-header h2:before{-webkit-mask-image:url("../../images/icons/icon-post-type.svg");mask-image:url("../../images/icons/icon-post-type.svg")}.acf-field-setting-fc_layout .acf-field-settings-fc_head .acf-fc_draggable:hover .reorder-layout:before{width:20px;height:11px;background-color:#475467 !important;-webkit-mask-image:url("../../images/icons/icon-draggable.svg");mask-image:url("../../images/icons/icon-draggable.svg")}.post-type-acf-field-group .postbox-header .handle-actions,.post-type-acf-field-group #acf-field-group-fields .postbox-header .handle-actions,.post-type-acf-field-group #acf-field-group-options .postbox-header .handle-actions,.post-type-acf-field-group .postbox .postbox-header .handle-actions,.acf-admin-single-post-type #acf-advanced-settings .postbox-header .handle-actions,.acf-admin-single-taxonomy #acf-advanced-settings .postbox-header .handle-actions,.acf-admin-single-options-page #acf-advanced-settings .postbox-header .handle-actions{display:flex}.post-type-acf-field-group .postbox-header .handle-actions .toggle-indicator:before,.post-type-acf-field-group #acf-field-group-fields .postbox-header .handle-actions .toggle-indicator:before,.post-type-acf-field-group #acf-field-group-options .postbox-header .handle-actions .toggle-indicator:before,.post-type-acf-field-group .postbox .postbox-header .handle-actions .toggle-indicator:before,.acf-admin-single-post-type #acf-advanced-settings .postbox-header .handle-actions .toggle-indicator:before,.acf-admin-single-taxonomy #acf-advanced-settings .postbox-header .handle-actions .toggle-indicator:before,.acf-admin-single-options-page #acf-advanced-settings .postbox-header .handle-actions .toggle-indicator:before{content:"";display:inline-flex;width:20px;height:20px;background-color:currentColor;border:none;border-radius:0;-webkit-mask-size:contain;mask-size:contain;-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;-webkit-mask-position:center;mask-position:center;-webkit-mask-image:url("../../images/icons/icon-chevron-up.svg");mask-image:url("../../images/icons/icon-chevron-up.svg")}.post-type-acf-field-group.closed .postbox-header .handle-actions .toggle-indicator:before,.post-type-acf-field-group #acf-field-group-fields.closed .postbox-header .handle-actions .toggle-indicator:before,.post-type-acf-field-group #acf-field-group-options.closed .postbox-header .handle-actions .toggle-indicator:before,.post-type-acf-field-group .postbox.closed .postbox-header .handle-actions .toggle-indicator:before,.acf-admin-single-post-type #acf-advanced-settings.closed .postbox-header .handle-actions .toggle-indicator:before,.acf-admin-single-taxonomy #acf-advanced-settings.closed .postbox-header .handle-actions .toggle-indicator:before,.acf-admin-single-options-page #acf-advanced-settings.closed .postbox-header .handle-actions .toggle-indicator:before{-webkit-mask-image:url("../../images/icons/icon-chevron-down.svg");mask-image:url("../../images/icons/icon-chevron-down.svg")}.post-type-acf-field-group #acf-admin-tool-export h2,.post-type-acf-field-group #acf-admin-tool-export h3,.post-type-acf-field-group #acf-admin-tool-import h2,.post-type-acf-field-group #acf-admin-tool-import h3,.post-type-acf-field-group #acf-license-information h2,.post-type-acf-field-group #acf-license-information h3,.post-type-acf-field-group #acf-update-information h2,.post-type-acf-field-group #acf-update-information h3{display:inline-flex;justify-content:flex-start;align-content:stretch;align-items:center}.post-type-acf-field-group #acf-admin-tool-export h2:before,.post-type-acf-field-group #acf-admin-tool-export h3:before,.post-type-acf-field-group #acf-admin-tool-import h2:before,.post-type-acf-field-group #acf-admin-tool-import h3:before,.post-type-acf-field-group #acf-license-information h2:before,.post-type-acf-field-group #acf-license-information h3:before,.post-type-acf-field-group #acf-update-information h2:before,.post-type-acf-field-group #acf-update-information h3:before{content:"";display:inline-block;width:20px;height:20px;margin-right:8px;background-color:#98a2b3;border:none;border-radius:0;-webkit-mask-size:contain;mask-size:contain;-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;-webkit-mask-position:center;mask-position:center}.post-type-acf-field-group.rtl #acf-admin-tool-export h2:before,.post-type-acf-field-group.rtl #acf-admin-tool-export h3:before,.post-type-acf-field-group.rtl #acf-admin-tool-import h2:before,.post-type-acf-field-group.rtl #acf-admin-tool-import h3:before,.post-type-acf-field-group.rtl #acf-license-information h2:before,.post-type-acf-field-group.rtl #acf-license-information h3:before,.post-type-acf-field-group.rtl #acf-update-information h2:before,.post-type-acf-field-group.rtl #acf-update-information h3:before{margin-right:0;margin-left:8px}.post-type-acf-field-group #acf-admin-tool-export h2:before{-webkit-mask-image:url("../../images/icons/icon-export.svg");mask-image:url("../../images/icons/icon-export.svg")}.post-type-acf-field-group #acf-admin-tool-import h2:before{-webkit-mask-image:url("../../images/icons/icon-import.svg");mask-image:url("../../images/icons/icon-import.svg")}.post-type-acf-field-group #acf-license-information h3:before{-webkit-mask-image:url("../../images/icons/icon-key.svg");mask-image:url("../../images/icons/icon-key.svg")}.post-type-acf-field-group #acf-update-information h3:before{-webkit-mask-image:url("../../images/icons/icon-info.svg");mask-image:url("../../images/icons/icon-info.svg")}.acf-admin-single-field-group .acf-input .acf-icon{width:18px;height:18px}.field-type-icon{box-sizing:border-box;display:inline-flex;align-content:center;align-items:center;justify-content:center;position:relative;width:24px;height:24px;top:-4px;background-color:#ebf5fa;border-width:1px;border-style:solid;border-color:#a5d2e7;border-radius:100%}.field-type-icon:before{content:"";width:14px;height:14px;position:relative;background-color:#0783be;-webkit-mask-size:cover;mask-size:cover;-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;-webkit-mask-position:center;mask-position:center;-webkit-mask-image:url("../../images/field-type-icons/icon-field-default.svg");mask-image:url("../../images/field-type-icons/icon-field-default.svg")}.field-type-icon.field-type-icon-text:before{-webkit-mask-image:url("../../images/field-type-icons/icon-field-text.svg");mask-image:url("../../images/field-type-icons/icon-field-text.svg")}.field-type-icon.field-type-icon-textarea:before{-webkit-mask-image:url("../../images/field-type-icons/icon-field-textarea.svg");mask-image:url("../../images/field-type-icons/icon-field-textarea.svg")}.field-type-icon.field-type-icon-textarea:before{-webkit-mask-image:url("../../images/field-type-icons/icon-field-textarea.svg");mask-image:url("../../images/field-type-icons/icon-field-textarea.svg")}.field-type-icon.field-type-icon-number:before{-webkit-mask-image:url("../../images/field-type-icons/icon-field-number.svg");mask-image:url("../../images/field-type-icons/icon-field-number.svg")}.field-type-icon.field-type-icon-range:before{-webkit-mask-image:url("../../images/field-type-icons/icon-field-range.svg");mask-image:url("../../images/field-type-icons/icon-field-range.svg")}.field-type-icon.field-type-icon-email:before{-webkit-mask-image:url("../../images/field-type-icons/icon-field-email.svg");mask-image:url("../../images/field-type-icons/icon-field-email.svg")}.field-type-icon.field-type-icon-url:before{-webkit-mask-image:url("../../images/field-type-icons/icon-field-url.svg");mask-image:url("../../images/field-type-icons/icon-field-url.svg")}.field-type-icon.field-type-icon-password:before{-webkit-mask-image:url("../../images/field-type-icons/icon-field-password.svg");mask-image:url("../../images/field-type-icons/icon-field-password.svg")}.field-type-icon.field-type-icon-image:before{-webkit-mask-image:url("../../images/field-type-icons/icon-field-image.svg");mask-image:url("../../images/field-type-icons/icon-field-image.svg")}.field-type-icon.field-type-icon-file:before{-webkit-mask-image:url("../../images/field-type-icons/icon-field-file.svg");mask-image:url("../../images/field-type-icons/icon-field-file.svg")}.field-type-icon.field-type-icon-wysiwyg:before{-webkit-mask-image:url("../../images/field-type-icons/icon-field-wysiwyg.svg");mask-image:url("../../images/field-type-icons/icon-field-wysiwyg.svg")}.field-type-icon.field-type-icon-oembed:before{-webkit-mask-image:url("../../images/field-type-icons/icon-field-oembed.svg");mask-image:url("../../images/field-type-icons/icon-field-oembed.svg")}.field-type-icon.field-type-icon-gallery:before{-webkit-mask-image:url("../../images/field-type-icons/icon-field-gallery.svg");mask-image:url("../../images/field-type-icons/icon-field-gallery.svg")}.field-type-icon.field-type-icon-select:before{-webkit-mask-image:url("../../images/field-type-icons/icon-field-select.svg");mask-image:url("../../images/field-type-icons/icon-field-select.svg")}.field-type-icon.field-type-icon-checkbox:before{-webkit-mask-image:url("../../images/field-type-icons/icon-field-checkbox.svg");mask-image:url("../../images/field-type-icons/icon-field-checkbox.svg")}.field-type-icon.field-type-icon-radio:before{-webkit-mask-image:url("../../images/field-type-icons/icon-field-radio.svg");mask-image:url("../../images/field-type-icons/icon-field-radio.svg")}.field-type-icon.field-type-icon-button-group:before{-webkit-mask-image:url("../../images/field-type-icons/icon-field-button-group.svg");mask-image:url("../../images/field-type-icons/icon-field-button-group.svg")}.field-type-icon.field-type-icon-true-false:before{-webkit-mask-image:url("../../images/field-type-icons/icon-field-true-false.svg");mask-image:url("../../images/field-type-icons/icon-field-true-false.svg")}.field-type-icon.field-type-icon-link:before{-webkit-mask-image:url("../../images/field-type-icons/icon-field-link.svg");mask-image:url("../../images/field-type-icons/icon-field-link.svg")}.field-type-icon.field-type-icon-post-object:before{-webkit-mask-image:url("../../images/field-type-icons/icon-field-post-object.svg");mask-image:url("../../images/field-type-icons/icon-field-post-object.svg")}.field-type-icon.field-type-icon-page-link:before{-webkit-mask-image:url("../../images/field-type-icons/icon-field-page-link.svg");mask-image:url("../../images/field-type-icons/icon-field-page-link.svg")}.field-type-icon.field-type-icon-relationship:before{-webkit-mask-image:url("../../images/field-type-icons/icon-field-relationship.svg");mask-image:url("../../images/field-type-icons/icon-field-relationship.svg")}.field-type-icon.field-type-icon-taxonomy:before{-webkit-mask-image:url("../../images/field-type-icons/icon-field-taxonomy.svg");mask-image:url("../../images/field-type-icons/icon-field-taxonomy.svg")}.field-type-icon.field-type-icon-user:before{-webkit-mask-image:url("../../images/field-type-icons/icon-field-user.svg");mask-image:url("../../images/field-type-icons/icon-field-user.svg")}.field-type-icon.field-type-icon-google-map:before{-webkit-mask-image:url("../../images/field-type-icons/icon-field-google-map.svg");mask-image:url("../../images/field-type-icons/icon-field-google-map.svg")}.field-type-icon.field-type-icon-date-picker:before{-webkit-mask-image:url("../../images/field-type-icons/icon-field-date-picker.svg");mask-image:url("../../images/field-type-icons/icon-field-date-picker.svg")}.field-type-icon.field-type-icon-date-time-picker:before{-webkit-mask-image:url("../../images/field-type-icons/icon-field-date-time-picker.svg");mask-image:url("../../images/field-type-icons/icon-field-date-time-picker.svg")}.field-type-icon.field-type-icon-time-picker:before{-webkit-mask-image:url("../../images/field-type-icons/icon-field-time-picker.svg");mask-image:url("../../images/field-type-icons/icon-field-time-picker.svg")}.field-type-icon.field-type-icon-color-picker:before{-webkit-mask-image:url("../../images/field-type-icons/icon-field-color-picker.svg");mask-image:url("../../images/field-type-icons/icon-field-color-picker.svg")}.field-type-icon.field-type-icon-message:before{-webkit-mask-image:url("../../images/field-type-icons/icon-field-message.svg");mask-image:url("../../images/field-type-icons/icon-field-message.svg")}.field-type-icon.field-type-icon-accordion:before{-webkit-mask-image:url("../../images/field-type-icons/icon-field-accordion.svg");mask-image:url("../../images/field-type-icons/icon-field-accordion.svg")}.field-type-icon.field-type-icon-tab:before{-webkit-mask-image:url("../../images/field-type-icons/icon-field-tab.svg");mask-image:url("../../images/field-type-icons/icon-field-tab.svg")}.field-type-icon.field-type-icon-group:before{-webkit-mask-image:url("../../images/field-type-icons/icon-field-group.svg");mask-image:url("../../images/field-type-icons/icon-field-group.svg")}.field-type-icon.field-type-icon-repeater:before{-webkit-mask-image:url("../../images/field-type-icons/icon-field-repeater.svg");mask-image:url("../../images/field-type-icons/icon-field-repeater.svg")}.field-type-icon.field-type-icon-flexible-content:before{-webkit-mask-image:url("../../images/field-type-icons/icon-field-flexible-content.svg");mask-image:url("../../images/field-type-icons/icon-field-flexible-content.svg")}.field-type-icon.field-type-icon-clone:before{-webkit-mask-image:url("../../images/field-type-icons/icon-field-clone.svg");mask-image:url("../../images/field-type-icons/icon-field-clone.svg")}#acf-admin-tools .postbox-header{display:none}#acf-admin-tools .acf-meta-box-wrap.-grid{margin-top:0;margin-right:0;margin-bottom:0;margin-left:0}#acf-admin-tools .acf-meta-box-wrap.-grid .postbox{width:100%;clear:none;float:none;margin-bottom:0}@media screen and (max-width: 880px){#acf-admin-tools .acf-meta-box-wrap.-grid .postbox{flex:1 1 100%}}#acf-admin-tools .acf-meta-box-wrap.-grid .postbox:nth-child(odd){margin-left:0}#acf-admin-tools .meta-box-sortables{display:grid;grid-template-columns:repeat(2, 1fr);grid-template-rows:repeat(1, 1fr);grid-column-gap:32px;grid-row-gap:32px}@media screen and (max-width: 880px){#acf-admin-tools .meta-box-sortables{display:flex;flex-wrap:wrap;justify-content:flex-start;align-content:flex-start;align-items:center;grid-column-gap:8px;grid-row-gap:8px}}#acf-admin-tools.tool-export .inside{margin:0}#acf-admin-tools.tool-export .acf-postbox-header{margin-bottom:24px}#acf-admin-tools.tool-export .acf-postbox-main{border:none;margin:0;padding-top:0;padding-right:24px;padding-bottom:0;padding-left:0}#acf-admin-tools.tool-export .acf-postbox-columns{margin-top:0;margin-right:280px;margin-bottom:0;margin-left:0;padding:0}#acf-admin-tools.tool-export .acf-postbox-columns .acf-postbox-side{padding:0}#acf-admin-tools.tool-export .acf-postbox-columns .acf-postbox-side .acf-panel{margin:0;padding:0}#acf-admin-tools.tool-export .acf-postbox-columns .acf-postbox-side:before{display:none}#acf-admin-tools.tool-export .acf-postbox-columns .acf-postbox-side .acf-btn{display:block;width:100%;text-align:center}#acf-admin-tools.tool-export .meta-box-sortables{display:block}#acf-admin-tools.tool-export .acf-panel{border:none}#acf-admin-tools.tool-export .acf-panel h3{margin:0;padding:0;color:#344054}#acf-admin-tools.tool-export .acf-panel h3:before{display:none}#acf-admin-tools.tool-export .acf-checkbox-list{margin-top:16px;border-width:1px;border-style:solid;border-color:#d0d5dd;border-radius:6px}#acf-admin-tools.tool-export .acf-checkbox-list li{display:inline-flex;box-sizing:border-box;width:100%;height:48px;align-items:center;margin:0;padding-right:12px;padding-left:12px;border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#eaecf0}#acf-admin-tools.tool-export .acf-checkbox-list li:last-child{border-bottom:none}.acf-settings-wrap.acf-updates{display:flex;flex-direction:row;flex-wrap:wrap;justify-content:flex-start;align-content:flex-start;align-items:flex-start}.custom-fields_page_acf-settings-updates .acf-admin-notice,.custom-fields_page_acf-settings-updates .acf-upgrade-notice,.custom-fields_page_acf-settings-updates .notice{flex:1 1 100%}.acf-settings-wrap.acf-updates .acf-box{margin-top:0;margin-right:0;margin-bottom:0;margin-left:0}.acf-settings-wrap.acf-updates .acf-box .inner{padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px}@media screen and (max-width: 880px){.acf-settings-wrap.acf-updates .acf-box{flex:1 1 100%}}.acf-settings-wrap.acf-updates .acf-admin-notice{flex:1 1 100%;margin-top:16px;margin-right:0;margin-left:0}#acf-license-information{flex:1 1 65%;margin-right:32px}#acf-license-information .inner{padding:0}#acf-license-information .inner .acf-license-defined{padding:24px;margin:0}#acf-license-information .inner .acf-activation-form,#acf-license-information .inner .acf-retry-activation{padding:24px}#acf-license-information .inner .acf-activation-form.acf-retry-activation,#acf-license-information .inner .acf-retry-activation.acf-retry-activation{padding-top:0;min-height:40px}#acf-license-information .inner .acf-activation-form.acf-retry-activation .acf-recheck-license.acf-btn,#acf-license-information .inner .acf-retry-activation.acf-retry-activation .acf-recheck-license.acf-btn{float:none;line-height:initial}#acf-license-information .inner .acf-activation-form.acf-retry-activation .acf-recheck-license.acf-btn i,#acf-license-information .inner .acf-retry-activation.acf-retry-activation .acf-recheck-license.acf-btn i{display:none}#acf-license-information .inner .acf-activation-form .acf-manage-license-btn,#acf-license-information .inner .acf-retry-activation .acf-manage-license-btn{float:right;line-height:40px;align-items:center;display:inline-flex}#acf-license-information .inner .acf-activation-form .acf-manage-license-btn.acf-renew-subscription,#acf-license-information .inner .acf-retry-activation .acf-manage-license-btn.acf-renew-subscription{float:none;line-height:initial}#acf-license-information .inner .acf-activation-form .acf-manage-license-btn i,#acf-license-information .inner .acf-retry-activation .acf-manage-license-btn i{margin:0 0 0 5px;width:19px;height:19px}#acf-license-information .inner .acf-activation-form .acf-recheck-license,#acf-license-information .inner .acf-retry-activation .acf-recheck-license{float:right;line-height:40px}#acf-license-information .inner .acf-activation-form .acf-recheck-license i,#acf-license-information .inner .acf-retry-activation .acf-recheck-license i{margin-right:8px;vertical-align:middle}#acf-license-information .inner .acf-license-status-wrap{background:#f9fafb;border-top:1px solid #eaecf0;border-bottom-left-radius:8px;border-bottom-right-radius:8px}#acf-license-information .inner .acf-license-status-wrap .acf-license-status-table{font-size:14px;padding:24px 24px 16px 24px}#acf-license-information .inner .acf-license-status-wrap .acf-license-status-table th{width:160px;font-weight:500;text-align:left;padding-bottom:16px}#acf-license-information .inner .acf-license-status-wrap .acf-license-status-table td{padding-bottom:16px}#acf-license-information .inner .acf-license-status-wrap .acf-license-status-table td .acf-license-status{display:inline-block;height:24px;line-height:24px;border-radius:100px;background:#eaecf0;padding:0 13px 1px 12px;border:1px solid rgba(0,0,0,.12);color:#667085}#acf-license-information .inner .acf-license-status-wrap .acf-license-status-table td .acf-license-status.active{background:rgba(18,183,106,.15);border:1px solid rgba(18,183,106,.24);color:#12b76a}#acf-license-information .inner .acf-license-status-wrap .acf-license-status-table td .acf-license-status.expired,#acf-license-information .inner .acf-license-status-wrap .acf-license-status-table td .acf-license-status.cancelled{background:rgba(209,55,55,.24);border:1px solid rgba(209,55,55,.24);color:#d13737}#acf-license-information .inner .acf-license-status-wrap .acf-no-license-view-pricing{padding:12px 24px;border-top:1px solid #eaecf0;color:#667085}@media screen and (max-width: 1024px){#acf-license-information{margin-right:0;margin-bottom:32px}}#acf-license-information label{font-weight:500}#acf-license-information .acf-input-wrap{margin-top:8px;margin-bottom:24px}#acf-license-information #acf_pro_license{width:100%}#acf-update-information{flex:1 1 35%;max-width:calc(35% - 32px)}#acf-update-information .form-table th,#acf-update-information .form-table td{padding-top:0;padding-right:0;padding-bottom:24px;padding-left:0;color:#344054}#acf-update-information .acf-update-changelog{margin-top:8px;margin-bottom:24px;padding-top:8px;border-top-width:1px;border-top-style:solid;border-top-color:#eaecf0;color:#344054}#acf-update-information .acf-update-changelog h4{margin-bottom:0}#acf-update-information .acf-update-changelog p{margin-top:0;margin-bottom:16px}#acf-update-information .acf-update-changelog p:last-of-type{margin-bottom:0}#acf-update-information .acf-update-changelog p em{color:#667085}#acf-update-information .acf-btn{display:inline-flex}.acf-admin-toolbar a.acf-admin-toolbar-upgrade-btn{display:inline-flex;align-items:center;align-self:stretch;padding-top:0;padding-right:16px;padding-bottom:0;padding-left:16px;background:linear-gradient(90.52deg, #3E8BFF 0.44%, #A45CFF 113.3%);box-shadow:inset 0 0 0 1px rgba(255,255,255,.16);background-size:180% 80%;background-position:100% 0;transition:background-position .5s;border-radius:6px;text-decoration:none}@media screen and (max-width: 768px){.acf-admin-toolbar a.acf-admin-toolbar-upgrade-btn{display:none}}.acf-admin-toolbar a.acf-admin-toolbar-upgrade-btn:hover{background-position:0 0}.acf-admin-toolbar a.acf-admin-toolbar-upgrade-btn:focus{border:none;outline:none;box-shadow:none}.acf-admin-toolbar a.acf-admin-toolbar-upgrade-btn p{margin:0;padding-top:8px;padding-bottom:8px;font-weight:normal;text-transform:none;color:#fff}.acf-admin-toolbar a.acf-admin-toolbar-upgrade-btn .acf-icon{width:18px;height:18px;margin-right:6px;margin-left:-2px;background-color:#f9fafb}.acf-admin-page #tmpl-acf-field-group-pro-features,.acf-admin-page #acf-field-group-pro-features{display:none;align-items:center;min-height:120px;background-color:#121833;background-image:url(../../images/pro-upgrade-grid-bg.svg),url(../../images/pro-upgrade-overlay.svg);background-repeat:repeat,no-repeat;background-size:1224px,1880px;background-position:left top,-520px -680px;color:#eaecf0;border-radius:8px;margin-top:24px;margin-bottom:24px}@media screen and (max-width: 768px){.acf-admin-page #tmpl-acf-field-group-pro-features,.acf-admin-page #acf-field-group-pro-features{background-size:1024px,980px;background-position:left top,-500px -200px}}@media screen and (max-width: 1200px){.acf-admin-page #tmpl-acf-field-group-pro-features,.acf-admin-page #acf-field-group-pro-features{background-size:1024px,1880px;background-position:left top,-520px -300px}}.acf-admin-page #tmpl-acf-field-group-pro-features .postbox-header,.acf-admin-page #acf-field-group-pro-features .postbox-header{display:none}.acf-admin-page #tmpl-acf-field-group-pro-features .inside,.acf-admin-page #acf-field-group-pro-features .inside{width:100%;border:none;padding:0}.acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-wrapper,.acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-wrapper{display:flex;justify-content:center;align-content:stretch;align-items:center;gap:96px;height:358px;max-width:950px;margin:0 auto;padding:0 35px}@media screen and (max-width: 1200px){.acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-wrapper,.acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-wrapper{gap:48px}}@media screen and (max-width: 768px){.acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-wrapper,.acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-wrapper{gap:0}}.acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-title,.acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-title-sm,.acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-title,.acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-title-sm{font-weight:590;line-height:150%}.acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-title .acf-pro-label,.acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-title-sm .acf-pro-label,.acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-title .acf-pro-label,.acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-title-sm .acf-pro-label{font-weight:normal;margin-top:-4px;margin-left:2px;vertical-align:middle;height:22px}.acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-title-sm,.acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-title-sm{display:none !important;font-size:18px}.acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-title-sm .acf-pro-label,.acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-title-sm .acf-pro-label{font-size:10px;height:20px}@media screen and (max-width: 768px){.acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-title-sm,.acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-title-sm{width:100%;text-align:center}}@media screen and (max-width: 768px){.acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-wrapper,.acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-wrapper{flex-direction:column;flex-wrap:wrap;justify-content:flex-start;align-content:flex-start;align-items:flex-start;padding:32px 32px 0 32px;height:unset}.acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-title-sm,.acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-title-sm{display:block !important;margin-bottom:24px}}.acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-content,.acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-content{display:flex;flex-direction:column;width:416px}.acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-content .acf-field-group-pro-features-desc,.acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-content .acf-field-group-pro-features-desc{margin-top:8px;margin-bottom:24px;font-size:15px;font-weight:300;color:#d0d5dd}@media screen and (max-width: 768px){.acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-content,.acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-content{width:100%;order:1;margin-right:0;margin-bottom:8px}.acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-content .acf-field-group-pro-features-title,.acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-content .acf-field-group-pro-features-desc,.acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-content .acf-field-group-pro-features-title,.acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-content .acf-field-group-pro-features-desc{display:none !important}}.acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-actions,.acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-actions{display:flex;flex-direction:row;align-items:flex-start;min-width:160px;gap:12px}@media screen and (max-width: 768px){.acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-actions,.acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-actions{justify-content:flex-start;flex-direction:column;margin-bottom:24px}.acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-actions a,.acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-actions a{justify-content:center;text-align:center;width:100%}}.acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-grid,.acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-grid{display:flex;flex-direction:row;flex-wrap:wrap;gap:16px;width:416px}.acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-grid .acf-field-group-pro-feature,.acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-grid .acf-field-group-pro-feature{display:flex;flex-direction:column;justify-content:center;align-items:center;width:128px;height:124px;background:rgba(255,255,255,.08);box-shadow:0px 0px 4px rgba(0,0,0,.04),0px 8px 16px rgba(0,0,0,.08),inset 0 0 0 1px rgba(255,255,255,.08);backdrop-filter:blur(6px);border-radius:8px}.acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-grid .acf-field-group-pro-feature .field-type-icon,.acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-grid .acf-field-group-pro-feature .field-type-icon{border:none;background:none;width:24px;opacity:.8}.acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-grid .acf-field-group-pro-feature .field-type-icon::before,.acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-grid .acf-field-group-pro-feature .field-type-icon::before{background-color:#fff;width:20px;height:20px}@media screen and (max-width: 1200px){.acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-grid .acf-field-group-pro-feature .field-type-icon::before,.acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-grid .acf-field-group-pro-feature .field-type-icon::before{width:18px;height:18px}}.acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-grid .acf-field-group-pro-feature .pro-feature-blocks::before,.acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-grid .acf-field-group-pro-feature .pro-feature-blocks::before{-webkit-mask-image:url("../../images/icons/icon-extended-menu.svg");mask-image:url("../../images/icons/icon-extended-menu.svg")}.acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-grid .acf-field-group-pro-feature .pro-feature-options-pages::before,.acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-grid .acf-field-group-pro-feature .pro-feature-options-pages::before{-webkit-mask-image:url("../../images/icons/icon-settings.svg");mask-image:url("../../images/icons/icon-settings.svg")}.acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-grid .acf-field-group-pro-feature .field-type-label,.acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-grid .acf-field-group-pro-feature .field-type-label{margin-top:4px;font-size:13px;font-weight:300;text-align:center;color:#fff}@media screen and (max-width: 1200px){.acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-grid,.acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-grid{flex-direction:column;gap:8px;width:288px}.acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-grid .acf-field-group-pro-feature,.acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-grid .acf-field-group-pro-feature{width:100%;height:40px;flex-direction:row;justify-content:unset;gap:8px}.acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-grid .acf-field-group-pro-feature .field-type-icon,.acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-grid .acf-field-group-pro-feature .field-type-icon{position:initial;margin-left:16px}.acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-grid .acf-field-group-pro-feature .field-type-label,.acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-grid .acf-field-group-pro-feature .field-type-label{margin-top:0}}@media screen and (max-width: 768px){.acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-grid,.acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-grid{gap:0;width:100%;height:auto;margin-bottom:16px;flex-direction:unset;flex-wrap:wrap}.acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-grid .acf-field-group-pro-feature,.acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-grid .acf-field-group-pro-feature{flex:1 0 50%;margin-bottom:8px;width:auto;height:auto;justify-content:center;background:none;box-shadow:none;backdrop-filter:none}.acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-grid .acf-field-group-pro-feature .field-type-label,.acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-grid .acf-field-group-pro-feature .field-type-label{margin-left:2px}.acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-grid .acf-field-group-pro-feature .field-type-icon,.acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-grid .acf-field-group-pro-feature .field-type-icon{position:initial;margin-left:0}.acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-grid .acf-field-group-pro-feature .field-type-icon:before,.acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-grid .acf-field-group-pro-feature .field-type-icon:before{height:16px;width:16px}.acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-grid .acf-field-group-pro-feature .field-type-label,.acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-grid .acf-field-group-pro-feature .field-type-label{font-size:12px;margin-top:0}}.acf-admin-page #tmpl-acf-field-group-pro-features h1,.acf-admin-page #acf-field-group-pro-features h1{margin-top:0;margin-bottom:4px;padding-top:0;padding-bottom:0;font-weight:bold;color:#f9fafb}.acf-admin-page #tmpl-acf-field-group-pro-features h1 .acf-icon,.acf-admin-page #acf-field-group-pro-features h1 .acf-icon{margin-right:8px}.acf-admin-page #tmpl-acf-field-group-pro-features .acf-btn,.acf-admin-page #acf-field-group-pro-features .acf-btn{display:inline-flex;background-color:rgba(255,255,255,.1);border:none;box-shadow:0px 0px 4px rgba(0,0,0,.04),0px 4px 8px rgba(0,0,0,.06),inset 0 0 0 1px rgba(255,255,255,.16);backdrop-filter:blur(6px);padding:8px 24px;height:48px}.acf-admin-page #tmpl-acf-field-group-pro-features .acf-btn:hover,.acf-admin-page #acf-field-group-pro-features .acf-btn:hover{background-color:rgba(255,255,255,.2)}.acf-admin-page #tmpl-acf-field-group-pro-features .acf-btn .acf-icon,.acf-admin-page #acf-field-group-pro-features .acf-btn .acf-icon{margin-right:-2px;margin-left:6px}.acf-admin-page #tmpl-acf-field-group-pro-features .acf-btn.acf-pro-features-upgrade,.acf-admin-page #acf-field-group-pro-features .acf-btn.acf-pro-features-upgrade{background:linear-gradient(90.52deg, #3E8BFF 0.44%, #A45CFF 113.3%);background-size:160% 80%;background-position:100% 0;box-shadow:0px 0px 4px rgba(0,0,0,.04),0px 4px 8px rgba(0,0,0,.06),inset 0 0 0 1px rgba(255,255,255,.16);border-radius:6px;transition:background-position .5s}.acf-admin-page #tmpl-acf-field-group-pro-features .acf-btn.acf-pro-features-upgrade:hover,.acf-admin-page #acf-field-group-pro-features .acf-btn.acf-pro-features-upgrade:hover{background-position:0 0}.acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-footer-wrap,.acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-footer-wrap{height:48px;background:rgba(16,24,40,.4);backdrop-filter:blur(6px);border-top:1px solid rgba(255,255,255,.08);border-bottom-left-radius:8px;border-bottom-right-radius:8px;color:#98a2b3;font-size:13px;font-weight:300;padding:0 35px}.acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-footer-wrap .acf-field-group-pro-features-footer,.acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-footer-wrap .acf-field-group-pro-features-footer{display:flex;align-items:center;justify-content:space-between;max-width:950px;height:48px;margin:0 auto}.acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-footer-wrap .acf-field-group-pro-features-wpengine-logo,.acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-footer-wrap .acf-field-group-pro-features-wpengine-logo{height:16px;vertical-align:middle;margin-top:-2px;margin-left:3px}.acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-footer-wrap a,.acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-footer-wrap a{color:#98a2b3;text-decoration:none}.acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-footer-wrap a:hover,.acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-footer-wrap a:hover{color:#d0d5dd}.acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-footer-wrap a .acf-icon,.acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-footer-wrap a .acf-icon{width:18px;height:18px;margin-left:4px}.acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-footer-wrap .acf-more-tools-from-wpengine a,.acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-footer-wrap .acf-more-tools-from-wpengine a{display:inline-flex;align-items:center}@media screen and (max-width: 768px){.acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-footer-wrap,.acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-footer-wrap{height:70px;font-size:12px}.acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-footer-wrap .acf-more-tools-from-wpengine,.acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-footer-wrap .acf-more-tools-from-wpengine{display:none}.acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-footer-wrap .acf-field-group-pro-features-footer,.acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-footer-wrap .acf-field-group-pro-features-footer{justify-content:center;height:70px}.acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-footer-wrap .acf-field-group-pro-features-footer .acf-field-group-pro-features-wpengine-logo,.acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-footer-wrap .acf-field-group-pro-features-footer .acf-field-group-pro-features-wpengine-logo{clear:both;margin:6px auto 0 auto;display:block}}.acf-no-field-groups #tmpl-acf-field-group-pro-features,.acf-no-post-types #tmpl-acf-field-group-pro-features,.acf-no-taxonomies #tmpl-acf-field-group-pro-features{margin-top:0}.acf-admin-single-post-type label[for=acf-basic-settings-hide],.acf-admin-single-taxonomy label[for=acf-basic-settings-hide],.acf-admin-single-options-page label[for=acf-basic-settings-hide]{display:none}.acf-admin-single-post-type fieldset.columns-prefs,.acf-admin-single-taxonomy fieldset.columns-prefs,.acf-admin-single-options-page fieldset.columns-prefs{display:none}.acf-admin-single-post-type #acf-basic-settings .postbox-header,.acf-admin-single-taxonomy #acf-basic-settings .postbox-header,.acf-admin-single-options-page #acf-basic-settings .postbox-header{display:none}.acf-admin-single-post-type .postbox-container,.acf-admin-single-post-type .notice,.acf-admin-single-taxonomy .postbox-container,.acf-admin-single-taxonomy .notice,.acf-admin-single-options-page .postbox-container,.acf-admin-single-options-page .notice{max-width:1440px;clear:left}.acf-admin-single-post-type #post-body-content,.acf-admin-single-taxonomy #post-body-content,.acf-admin-single-options-page #post-body-content{margin:0}.acf-admin-single-post-type .postbox .inside,.acf-admin-single-post-type .acf-box .inside,.acf-admin-single-taxonomy .postbox .inside,.acf-admin-single-taxonomy .acf-box .inside,.acf-admin-single-options-page .postbox .inside,.acf-admin-single-options-page .acf-box .inside{padding-top:48px;padding-right:48px;padding-bottom:48px;padding-left:48px}.acf-admin-single-post-type #acf-advanced-settings.postbox .inside,.acf-admin-single-taxonomy #acf-advanced-settings.postbox .inside,.acf-admin-single-options-page #acf-advanced-settings.postbox .inside{padding-bottom:24px}.acf-admin-single-post-type .postbox-container .meta-box-sortables #acf-basic-settings .inside,.acf-admin-single-taxonomy .postbox-container .meta-box-sortables #acf-basic-settings .inside,.acf-admin-single-options-page .postbox-container .meta-box-sortables #acf-basic-settings .inside{border:none}.acf-admin-single-post-type .acf-input-wrap,.acf-admin-single-taxonomy .acf-input-wrap,.acf-admin-single-options-page .acf-input-wrap{overflow:visible}.acf-admin-single-post-type .acf-field,.acf-admin-single-taxonomy .acf-field,.acf-admin-single-options-page .acf-field{margin-top:0;margin-right:0;margin-bottom:24px;margin-left:0}.acf-admin-single-post-type .acf-field .acf-label,.acf-admin-single-taxonomy .acf-field .acf-label,.acf-admin-single-options-page .acf-field .acf-label{margin-bottom:6px}.acf-admin-single-post-type .acf-field-text,.acf-admin-single-post-type .acf-field-textarea,.acf-admin-single-post-type .acf-field-select,.acf-admin-single-taxonomy .acf-field-text,.acf-admin-single-taxonomy .acf-field-textarea,.acf-admin-single-taxonomy .acf-field-select,.acf-admin-single-options-page .acf-field-text,.acf-admin-single-options-page .acf-field-textarea,.acf-admin-single-options-page .acf-field-select{max-width:600px}.acf-admin-single-post-type .acf-field-true-false,.acf-admin-single-taxonomy .acf-field-true-false,.acf-admin-single-options-page .acf-field-true-false{max-width:700px}.acf-admin-single-post-type .acf-field-supports,.acf-admin-single-taxonomy .acf-field-supports,.acf-admin-single-options-page .acf-field-supports{max-width:600px}.acf-admin-single-post-type .acf-field-supports .acf-label,.acf-admin-single-taxonomy .acf-field-supports .acf-label,.acf-admin-single-options-page .acf-field-supports .acf-label{display:block}.acf-admin-single-post-type .acf-field-supports .acf-label .description,.acf-admin-single-taxonomy .acf-field-supports .acf-label .description,.acf-admin-single-options-page .acf-field-supports .acf-label .description{margin-top:4px;margin-bottom:12px}.acf-admin-single-post-type .acf-field-supports .acf_post_type_supports,.acf-admin-single-taxonomy .acf-field-supports .acf_post_type_supports,.acf-admin-single-options-page .acf-field-supports .acf_post_type_supports{display:flex;flex-wrap:wrap;justify-content:flex-start;align-content:flex-start;align-items:flex-start}.acf-admin-single-post-type .acf-field-supports .acf_post_type_supports:focus-within,.acf-admin-single-taxonomy .acf-field-supports .acf_post_type_supports:focus-within,.acf-admin-single-options-page .acf-field-supports .acf_post_type_supports:focus-within{border-color:rgba(0,0,0,0)}.acf-admin-single-post-type .acf-field-supports .acf_post_type_supports li,.acf-admin-single-taxonomy .acf-field-supports .acf_post_type_supports li,.acf-admin-single-options-page .acf-field-supports .acf_post_type_supports li{flex:0 0 25%}.acf-admin-single-post-type .acf-field-supports .acf_post_type_supports li a.button,.acf-admin-single-taxonomy .acf-field-supports .acf_post_type_supports li a.button,.acf-admin-single-options-page .acf-field-supports .acf_post_type_supports li a.button{background-color:rgba(0,0,0,0);padding:0;border:0;height:auto;min-height:auto;margin-top:0;border-radius:0;line-height:22px}.acf-admin-single-post-type .acf-field-supports .acf_post_type_supports li a.button:before,.acf-admin-single-taxonomy .acf-field-supports .acf_post_type_supports li a.button:before,.acf-admin-single-options-page .acf-field-supports .acf_post_type_supports li a.button:before{content:"";margin-right:6px;display:inline-flex;width:16px;height:16px;background-color:currentColor;border:none;border-radius:0;-webkit-mask-size:contain;mask-size:contain;-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;-webkit-mask-position:center;mask-position:center;text-indent:500%;white-space:nowrap;overflow:hidden;-webkit-mask-image:url("../../images/icons/icon-add.svg");mask-image:url("../../images/icons/icon-add.svg")}.acf-admin-single-post-type .acf-field-supports .acf_post_type_supports li a.button:hover,.acf-admin-single-taxonomy .acf-field-supports .acf_post_type_supports li a.button:hover,.acf-admin-single-options-page .acf-field-supports .acf_post_type_supports li a.button:hover{color:#044e71}.acf-admin-single-post-type .acf-field-supports .acf_post_type_supports li input[type=text],.acf-admin-single-taxonomy .acf-field-supports .acf_post_type_supports li input[type=text],.acf-admin-single-options-page .acf-field-supports .acf_post_type_supports li input[type=text]{width:calc(100% - 36px);padding:0;box-shadow:none;border:none;border-bottom:1px solid #d0d5dd;border-radius:0;height:auto;margin:0;min-height:auto}.acf-admin-single-post-type .acf-field-supports .acf_post_type_supports li input[type=text]:focus,.acf-admin-single-taxonomy .acf-field-supports .acf_post_type_supports li input[type=text]:focus,.acf-admin-single-options-page .acf-field-supports .acf_post_type_supports li input[type=text]:focus{outline:none;border-bottom-color:#399ccb}.acf-admin-single-post-type .acf-field-seperator,.acf-admin-single-taxonomy .acf-field-seperator,.acf-admin-single-options-page .acf-field-seperator{margin-top:40px;margin-bottom:40px;border-top:1px solid #eaecf0;border-right:none;border-bottom:none;border-left:none}.acf-admin-single-post-type .acf-field-advanced-configuration,.acf-admin-single-taxonomy .acf-field-advanced-configuration,.acf-admin-single-options-page .acf-field-advanced-configuration{margin-bottom:0}.acf-admin-single-post-type .postbox-container .acf-tab-wrap,.acf-admin-single-post-type .acf-regenerate-labels-bar,.acf-admin-single-taxonomy .postbox-container .acf-tab-wrap,.acf-admin-single-taxonomy .acf-regenerate-labels-bar,.acf-admin-single-options-page .postbox-container .acf-tab-wrap,.acf-admin-single-options-page .acf-regenerate-labels-bar{position:relative;top:-48px;left:-48px;width:calc(100% + 96px)}.acf-admin-single-post-type .acf-regenerate-labels-bar,.acf-admin-single-taxonomy .acf-regenerate-labels-bar,.acf-admin-single-options-page .acf-regenerate-labels-bar{display:flex;align-items:center;justify-content:right;min-height:48px;margin-bottom:0;padding-right:16px;padding-left:16px;gap:8px;border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#f2f4f7}.acf-admin-single-post-type .acf-labels-tip,.acf-admin-single-taxonomy .acf-labels-tip,.acf-admin-single-options-page .acf-labels-tip{display:inline-flex;align-items:center;min-height:24px;margin-right:8px;padding-left:16px;border-left-width:1px;border-left-style:solid;border-left-color:#eaecf0}.acf-admin-single-post-type .acf-labels-tip .acf-icon,.acf-admin-single-taxonomy .acf-labels-tip .acf-icon,.acf-admin-single-options-page .acf-labels-tip .acf-icon{display:inline-flex;align-items:center;width:16px;height:16px;-webkit-mask-size:16px;mask-size:16px;background-color:#98a2b3}.acf-select2-default-pill{border-radius:100px;min-height:20px;padding-top:2px;padding-bottom:2px;padding-left:8px;padding-right:8px;font-size:11px;margin-left:6px;background-color:#eaecf0;color:#667085}.acf-menu-position-desc-child{display:none}.acf-modal.acf-browse-fields-modal{width:1120px;height:664px;top:50%;right:auto;bottom:auto;left:50%;transform:translate(-50%, -50%);display:flex;flex-direction:row;border-radius:12px;box-shadow:0px 0px 4px rgba(0,0,0,.04),0px 8px 16px rgba(0,0,0,.08);overflow:hidden}.acf-modal.acf-browse-fields-modal .acf-field-picker{display:flex;flex-direction:column;flex-grow:1;width:760px;background:#fff}.acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-title,.acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-content,.acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-toolbar{position:relative}.acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-title{display:flex;flex-direction:row;justify-content:space-between;align-items:center;background:#f9fafb;border:none;padding:35px 32px}.acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-title .acf-search-field-types-wrap{position:relative}.acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-title .acf-search-field-types-wrap:after{content:"";display:block;position:absolute;top:11px;left:10px;width:18px;height:18px;-webkit-mask-image:url("../../images/icons/icon-search.svg");mask-image:url("../../images/icons/icon-search.svg");background-color:#98a2b3;border:none;border-radius:0;-webkit-mask-size:contain;mask-size:contain;-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;-webkit-mask-position:center;mask-position:center;text-indent:500%;white-space:nowrap;overflow:hidden}.acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-title .acf-search-field-types-wrap input{width:280px;height:40px;margin:0;padding-left:32px;box-shadow:none}.acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-content{top:auto;bottom:auto;padding:0;height:100%}.acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-content .acf-tab-group{padding-left:32px}.acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-content .acf-field-types-tab{display:flex}.acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-content .acf-field-types-tab,.acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-content .acf-field-type-search-results{flex-direction:row;flex-wrap:wrap;gap:24px;padding:32px}.acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-content .acf-field-types-tab .acf-field-type,.acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-content .acf-field-type-search-results .acf-field-type{position:relative;display:flex;flex-direction:column;justify-content:center;align-items:center;isolation:isolate;width:120px;height:120px;background:#f9fafb;border:1px solid #eaecf0;border-radius:8px;box-sizing:border-box;color:#1d2939;text-decoration:none}.acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-content .acf-field-types-tab .acf-field-type:hover,.acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-content .acf-field-types-tab .acf-field-type:active,.acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-content .acf-field-types-tab .acf-field-type.selected,.acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-content .acf-field-type-search-results .acf-field-type:hover,.acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-content .acf-field-type-search-results .acf-field-type:active,.acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-content .acf-field-type-search-results .acf-field-type.selected{background:#ebf5fa;border:1px solid #399ccb;box-shadow:inset 0 0 0 1px #399ccb}.acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-content .acf-field-types-tab .acf-field-type .field-type-icon,.acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-content .acf-field-type-search-results .acf-field-type .field-type-icon{border:none;background:none;top:0}.acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-content .acf-field-types-tab .acf-field-type .field-type-icon:before,.acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-content .acf-field-type-search-results .acf-field-type .field-type-icon:before{width:22px;height:22px}.acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-content .acf-field-types-tab .acf-field-type .field-type-label,.acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-content .acf-field-type-search-results .acf-field-type .field-type-label{margin-top:12px}.acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-content .acf-field-types-tab .field-type-requires-pro,.acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-content .acf-field-type-search-results .field-type-requires-pro{display:flex;justify-content:center;align-items:center;position:absolute;top:-10px;right:-10px;height:21px;color:#fff;background:linear-gradient(90.52deg, #3E8BFF 0.44%, #A45CFF 113.3%);background-size:140% 20%;background-position:100% 0;border-radius:100px;font-size:11px;padding-right:6px;padding-left:6px}.acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-content .acf-field-types-tab .field-type-requires-pro i,.acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-content .acf-field-type-search-results .field-type-requires-pro i{width:12px;height:12px;margin-right:2px}.acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-toolbar{display:flex;align-items:flex-start;justify-content:space-between;height:auto;min-height:72px;padding-top:0;padding-right:32px;padding-bottom:0;padding-left:32px;margin:0;border:none}.acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-toolbar .acf-select-field,.acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-toolbar .acf-btn-pro{min-width:160px;justify-content:center}.acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-toolbar .acf-insert-field-label{min-width:280px;box-shadow:none}.acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-toolbar .acf-field-picker-actions{display:flex;gap:8px}.acf-modal.acf-browse-fields-modal .acf-field-type-preview{display:flex;flex-direction:column;width:360px;background-color:#f9fafb;background-image:url("../../images/field-preview-grid.png");background-size:740px;background-repeat:no-repeat;background-position:center bottom;border-left:1px solid #eaecf0;box-sizing:border-box;padding:32px}.acf-modal.acf-browse-fields-modal .acf-field-type-preview .field-type-desc{margin:0;padding:0;color:#667085}.acf-modal.acf-browse-fields-modal .acf-field-type-preview .field-type-preview-container{display:inline-flex;justify-content:center;width:100%;margin-top:24px;padding-top:32px;padding-bottom:32px;background-color:rgba(255,255,255,.64);border-radius:8px;box-shadow:0px 0px 0px 1px rgba(0,0,0,.04),0px 8px 24px rgba(0,0,0,.04)}.acf-modal.acf-browse-fields-modal .acf-field-type-preview .field-type-image{max-width:232px}.acf-modal.acf-browse-fields-modal .acf-field-type-preview .field-type-info{flex-grow:1}.acf-modal.acf-browse-fields-modal .acf-field-type-preview .field-type-info .field-type-name{font-size:21px;margin-top:0;margin-right:0;margin-bottom:16px;margin-left:0}.acf-modal.acf-browse-fields-modal .acf-field-type-preview .field-type-info .field-type-upgrade-to-unlock{display:inline-flex;justify-items:center;align-items:center;min-height:24px;margin-bottom:12px;padding-right:8px;padding-left:8px;background:linear-gradient(90.52deg, #3E8BFF 0.44%, #A45CFF 113.3%);background-size:140% 20%;background-position:100% 0;border-radius:100px;color:#fff;text-decoration:none;font-size:11px}.acf-modal.acf-browse-fields-modal .acf-field-type-preview .field-type-info .field-type-upgrade-to-unlock i.acf-icon{width:14px;height:14px;margin-right:4px}.acf-modal.acf-browse-fields-modal .acf-field-type-preview .field-type-links{display:flex;align-items:center;gap:24px;min-height:40px}.acf-modal.acf-browse-fields-modal .acf-field-type-preview .field-type-links .acf-icon{width:18px;height:18px}.acf-modal.acf-browse-fields-modal .acf-field-type-preview .field-type-links:before{display:none}.acf-modal.acf-browse-fields-modal .acf-field-type-preview .field-type-links a{display:flex;gap:6px;text-decoration:none}.acf-modal.acf-browse-fields-modal .acf-field-type-preview .field-type-links a:hover{text-decoration:underline}.acf-modal.acf-browse-fields-modal .acf-field-type-search-results,.acf-modal.acf-browse-fields-modal .acf-field-type-search-no-results{display:none}.acf-modal.acf-browse-fields-modal.is-searching .acf-tab-wrap,.acf-modal.acf-browse-fields-modal.is-searching .acf-field-types-tab,.acf-modal.acf-browse-fields-modal.is-searching .acf-field-type-search-no-results{display:none !important}.acf-modal.acf-browse-fields-modal.is-searching .acf-field-type-search-results{display:flex}.acf-modal.acf-browse-fields-modal.no-results-found .acf-tab-wrap,.acf-modal.acf-browse-fields-modal.no-results-found .acf-field-types-tab,.acf-modal.acf-browse-fields-modal.no-results-found .acf-field-type-search-results,.acf-modal.acf-browse-fields-modal.no-results-found .field-type-info,.acf-modal.acf-browse-fields-modal.no-results-found .field-type-links,.acf-modal.acf-browse-fields-modal.no-results-found .acf-field-picker-toolbar{display:none !important}.acf-modal.acf-browse-fields-modal.no-results-found .acf-modal-title{border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#eaecf0}.acf-modal.acf-browse-fields-modal.no-results-found .acf-field-type-search-no-results{display:flex;flex-direction:column;justify-content:center;align-items:center;height:100%;gap:6px}.acf-modal.acf-browse-fields-modal.no-results-found .acf-field-type-search-no-results img{margin-bottom:19px}.acf-modal.acf-browse-fields-modal.no-results-found .acf-field-type-search-no-results p{margin:0}.acf-modal.acf-browse-fields-modal.no-results-found .acf-field-type-search-no-results p.acf-no-results-text{display:flex}.acf-modal.acf-browse-fields-modal.no-results-found .acf-field-type-search-no-results .acf-invalid-search-term{max-width:200px;overflow:hidden;text-overflow:ellipsis;display:inline-block}@media only screen and (max-width: 1080px){.acf-btn.browse-fields{display:none}} +.acf-hl{padding:0;margin:0;list-style:none;display:block;position:relative}.acf-hl>li{float:left;display:block;margin:0;padding:0}.acf-hl>li.acf-fr{float:right}.acf-hl:before,.acf-hl:after,.acf-bl:before,.acf-bl:after,.acf-cf:before,.acf-cf:after{content:"";display:block;line-height:0}.acf-hl:after,.acf-bl:after,.acf-cf:after{clear:both}.acf-bl{padding:0;margin:0;list-style:none;display:block;position:relative}.acf-bl>li{display:block;margin:0;padding:0;float:none}.acf-hidden{display:none !important}.acf-empty{display:table-cell !important}.acf-empty *{display:none !important}.acf-fl{float:left}.acf-fr{float:right}.acf-fn{float:none}.acf-al{text-align:left}.acf-ar{text-align:right}.acf-ac{text-align:center}.acf-loading,.acf-spinner{display:inline-block;height:20px;width:20px;vertical-align:text-top;background:rgba(0,0,0,0) url(../../images/spinner.gif) no-repeat 50% 50%}.acf-spinner{display:none}.acf-spinner.is-active{display:inline-block}.spinner.is-active{display:inline-block}.acf-required{color:red}.acf-button,.acf-tab-button{pointer-events:auto !important}.acf-soh .acf-soh-target{-webkit-transition:opacity .25s 0s ease-in-out,visibility 0s linear .25s;-moz-transition:opacity .25s 0s ease-in-out,visibility 0s linear .25s;-o-transition:opacity .25s 0s ease-in-out,visibility 0s linear .25s;transition:opacity .25s 0s ease-in-out,visibility 0s linear .25s;visibility:hidden;opacity:0}.acf-soh:hover .acf-soh-target{-webkit-transition-delay:0s;-moz-transition-delay:0s;-o-transition-delay:0s;transition-delay:0s;visibility:visible;opacity:1}.show-if-value{display:none}.hide-if-value{display:block}.has-value .show-if-value{display:block}.has-value .hide-if-value{display:none}.select2-search-choice-close{-webkit-transition:none;-moz-transition:none;-o-transition:none;transition:none}.acf-tooltip{background:#1d2939;border-radius:6px;color:#d0d5dd;padding-top:8px;padding-right:12px;padding-bottom:10px;padding-left:12px;position:absolute;z-index:900000;max-width:280px;box-shadow:0px 12px 16px -4px rgba(16,24,40,.08),0px 4px 6px -2px rgba(16,24,40,.03)}.acf-tooltip:before{border:solid;border-color:rgba(0,0,0,0);border-width:6px;content:"";position:absolute}.acf-tooltip.top{margin-top:-8px}.acf-tooltip.top:before{top:100%;left:50%;margin-left:-6px;border-top-color:#2f353e;border-bottom-width:0}.acf-tooltip.right{margin-left:8px}.acf-tooltip.right:before{top:50%;margin-top:-6px;right:100%;border-right-color:#2f353e;border-left-width:0}.acf-tooltip.bottom{margin-top:8px}.acf-tooltip.bottom:before{bottom:100%;left:50%;margin-left:-6px;border-bottom-color:#2f353e;border-top-width:0}.acf-tooltip.left{margin-left:-8px}.acf-tooltip.left:before{top:50%;margin-top:-6px;left:100%;border-left-color:#2f353e;border-right-width:0}.acf-tooltip .acf-overlay{z-index:-1}.acf-tooltip.-confirm{z-index:900001}.acf-tooltip.-confirm a{text-decoration:none;color:#9ea3a8}.acf-tooltip.-confirm a:hover{text-decoration:underline}.acf-tooltip.-confirm a[data-event=confirm]{color:#f55e4f}.acf-overlay{position:fixed;top:0;bottom:0;left:0;right:0;cursor:default}.acf-tooltip-target{position:relative;z-index:900002}.acf-loading-overlay{position:absolute;top:0;bottom:0;left:0;right:0;cursor:default;z-index:99;background:rgba(249,249,249,.5)}.acf-loading-overlay i{position:absolute;top:50%;left:50%;transform:translate(-50%, -50%)}.acf-icon{display:inline-block;height:28px;width:28px;border:rgba(0,0,0,0) solid 1px;border-radius:100%;font-size:20px;line-height:21px;text-align:center;text-decoration:none;vertical-align:top;box-sizing:border-box}.acf-icon:before{font-family:dashicons;display:inline-block;line-height:1;font-weight:400;font-style:normal;speak:none;text-decoration:inherit;text-transform:none;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;width:1em;height:1em;vertical-align:middle;text-align:center}.acf-icon.-plus:before{content:""}.acf-icon.-minus:before{content:""}.acf-icon.-cancel:before{content:"";margin:-1px 0 0 -1px}.acf-icon.-pencil:before{content:""}.acf-icon.-location:before{content:""}.acf-icon.-up:before{content:"";margin-top:-0.1em}.acf-icon.-down:before{content:"";margin-top:.1em}.acf-icon.-left:before{content:"";margin-left:-0.1em}.acf-icon.-right:before{content:"";margin-left:.1em}.acf-icon.-sync:before{content:""}.acf-icon.-globe:before{content:"";margin-top:.1em;margin-left:.1em}.acf-icon.-picture:before{content:""}.acf-icon.-check:before{content:"";margin-left:-0.1em}.acf-icon.-dot-3:before{content:"";margin-top:-0.1em}.acf-icon.-arrow-combo:before{content:""}.acf-icon.-arrow-up:before{content:"";margin-left:-0.1em}.acf-icon.-arrow-down:before{content:"";margin-left:-0.1em}.acf-icon.-search:before{content:""}.acf-icon.-link-ext:before{content:""}.acf-icon.-duplicate{position:relative}.acf-icon.-duplicate:before,.acf-icon.-duplicate:after{content:"";display:block;box-sizing:border-box;width:46%;height:46%;position:absolute;top:33%;left:23%}.acf-icon.-duplicate:before{margin:-1px 0 0 1px;box-shadow:2px -2px 0px 0px currentColor}.acf-icon.-duplicate:after{border:solid 2px currentColor}.acf-icon.-trash{position:relative}.acf-icon.-trash:before,.acf-icon.-trash:after{content:"";display:block;box-sizing:border-box;width:46%;height:46%;position:absolute;top:33%;left:23%}.acf-icon.-trash:before{margin:-1px 0 0 1px;box-shadow:2px -2px 0px 0px currentColor}.acf-icon.-trash:after{border:solid 2px currentColor}.acf-icon.-collapse:before{content:"";margin-left:-0.1em}.-collapsed .acf-icon.-collapse:before{content:"";margin-left:-0.1em}span.acf-icon{color:#555d66;border-color:#b5bcc2;background-color:#fff}a.acf-icon{color:#555d66;border-color:#b5bcc2;background-color:#fff;position:relative;transition:none;cursor:pointer}a.acf-icon:hover{background:#f3f5f6;border-color:#0071a1;color:#0071a1}a.acf-icon.-minus:hover,a.acf-icon.-cancel:hover{background:#f7efef;border-color:#a10000;color:#dc3232}a.acf-icon:active,a.acf-icon:focus{outline:none;box-shadow:none}.acf-icon.-clear{border-color:rgba(0,0,0,0);background:rgba(0,0,0,0);color:#444}.acf-icon.light{border-color:rgba(0,0,0,0);background:#f5f5f5;color:#23282d}.acf-icon.dark{border-color:rgba(0,0,0,0) !important;background:#23282d;color:#eee}a.acf-icon.dark:hover{background:#191e23;color:#00b9eb}a.acf-icon.dark.-minus:hover,a.acf-icon.dark.-cancel:hover{color:#d54e21}.acf-icon.grey{border-color:rgba(0,0,0,0) !important;background:#b4b9be;color:#fff !important}.acf-icon.grey:hover{background:#00a0d2;color:#fff}.acf-icon.grey.-minus:hover,.acf-icon.grey.-cancel:hover{background:#32373c}.acf-icon.small,.acf-icon.-small{width:20px;height:20px;line-height:14px;font-size:14px}.acf-icon.small.-duplicate:before,.acf-icon.small.-duplicate:after,.acf-icon.-small.-duplicate:before,.acf-icon.-small.-duplicate:after{opacity:.8}.acf-box{background:#fff;border:1px solid #ccd0d4;position:relative;box-shadow:0 1px 1px rgba(0,0,0,.04)}.acf-box .title{border-bottom:1px solid #ccd0d4;margin:0;padding:15px}.acf-box .title h3{display:flex;align-items:center;font-size:14px;line-height:1em;margin:0;padding:0}.acf-box .inner{padding:15px}.acf-box h2{color:#333;font-size:26px;line-height:1.25em;margin:.25em 0 .75em;padding:0}.acf-box h3{margin:1.5em 0 0}.acf-box p{margin-top:.5em}.acf-box a{text-decoration:none}.acf-box i.dashicons-external{margin-top:-1px}.acf-box .footer{border-top:1px solid #ccd0d4;padding:12px;font-size:13px;line-height:1.5}.acf-box .footer p{margin:0}.acf-admin-3-8 .acf-box{border-color:#e5e5e5}.acf-admin-3-8 .acf-box .title,.acf-admin-3-8 .acf-box .footer{border-color:#e5e5e5}.acf-notice{position:relative;display:block;color:#fff;margin:5px 0 15px;padding:3px 12px;background:#2a9bd9;border-left:#1f7db1 solid 3px}.acf-notice p{font-size:13px;line-height:1.5;margin:.5em 0;text-shadow:none;color:inherit}.acf-notice .acf-notice-dismiss{position:absolute;top:9px;right:12px;background:rgba(0,0,0,0) !important;color:inherit !important;border-color:#fff !important;opacity:.75}.acf-notice .acf-notice-dismiss:hover{opacity:1}.acf-notice.-dismiss{padding-right:40px}.acf-notice.-error{background:#d94f4f;border-color:#c92c2c}.acf-notice.-success{background:#49ad52;border-color:#3a8941}.acf-notice.-warning{background:#fd8d3b;border-color:#fc7009}.acf-table{border:#ccd0d4 solid 1px;background:#fff;border-spacing:0;border-radius:0;table-layout:auto;padding:0;margin:0;width:100%;clear:both;box-sizing:content-box}.acf-table>tbody>tr>th,.acf-table>tbody>tr>td,.acf-table>thead>tr>th,.acf-table>thead>tr>td{padding:8px;vertical-align:top;background:#fff;text-align:left;border-style:solid;font-weight:normal}.acf-table>tbody>tr>th,.acf-table>thead>tr>th{position:relative;color:#333}.acf-table>thead>tr>th{border-color:#d5d9dd;border-width:0 0 1px 1px}.acf-table>thead>tr>th:first-child{border-left-width:0}.acf-table>tbody>tr{z-index:1}.acf-table>tbody>tr>td{border-color:#eee;border-width:1px 0 0 1px}.acf-table>tbody>tr>td:first-child{border-left-width:0}.acf-table>tbody>tr:first-child>td{border-top-width:0}.acf-table.-clear{border:0 none}.acf-table.-clear>tbody>tr>td,.acf-table.-clear>tbody>tr>th,.acf-table.-clear>thead>tr>td,.acf-table.-clear>thead>tr>th{border:0 none;padding:4px}.acf-remove-element{-webkit-transition:all .25s ease-out;-moz-transition:all .25s ease-out;-o-transition:all .25s ease-out;transition:all .25s ease-out;transform:translate(50px, 0);opacity:0}.acf-fade-up{-webkit-transition:all .25s ease-out;-moz-transition:all .25s ease-out;-o-transition:all .25s ease-out;transition:all .25s ease-out;transform:translate(0, -10px);opacity:0}.acf-thead,.acf-tbody,.acf-tfoot{width:100%;padding:0;margin:0}.acf-thead>li,.acf-tbody>li,.acf-tfoot>li{box-sizing:border-box;padding-top:14px;font-size:12px;line-height:14px}.acf-thead{border-bottom:#ccd0d4 solid 1px;color:#23282d}.acf-thead>li{font-size:14px;line-height:1.4;font-weight:bold}.acf-admin-3-8 .acf-thead{border-color:#dfdfdf}.acf-tfoot{background:#f5f5f5;border-top:#d5d9dd solid 1px}.acf-settings-wrap #poststuff{padding-top:15px}.acf-settings-wrap .acf-box{margin:20px 0}.acf-settings-wrap table{margin:0}.acf-settings-wrap table .button{vertical-align:middle}#acf-popup{position:fixed;z-index:900000;top:0;left:0;right:0;bottom:0;text-align:center}#acf-popup .bg{position:absolute;top:0;left:0;right:0;bottom:0;z-index:0;background:rgba(0,0,0,.25)}#acf-popup:before{content:"";display:inline-block;height:100%;vertical-align:middle}#acf-popup .acf-popup-box{display:inline-block;vertical-align:middle;z-index:1;min-width:300px;min-height:160px;border-color:#aaa;box-shadow:0 5px 30px -5px rgba(0,0,0,.25);text-align:left}html[dir=rtl] #acf-popup .acf-popup-box{text-align:right}#acf-popup .acf-popup-box .title{min-height:15px;line-height:15px}#acf-popup .acf-popup-box .title .acf-icon{position:absolute;top:10px;right:10px}html[dir=rtl] #acf-popup .acf-popup-box .title .acf-icon{right:auto;left:10px}#acf-popup .acf-popup-box .inner{min-height:50px;padding:0;margin:15px}#acf-popup .acf-popup-box .loading{position:absolute;top:45px;left:0;right:0;bottom:0;z-index:2;background:rgba(0,0,0,.1);display:none}#acf-popup .acf-popup-box .loading i{position:absolute;top:50%;left:50%;transform:translate(-50%, -50%)}.acf-submit{margin-bottom:0;line-height:28px}.acf-submit span{float:right;color:#999}.acf-submit span.-error{color:#dd4232}.acf-submit .button{margin-right:5px}#acf-upgrade-notice{position:relative;background:#fff;padding:20px}#acf-upgrade-notice:after{display:block;clear:both;content:""}#acf-upgrade-notice .col-content{float:left;width:55%;padding-left:90px}#acf-upgrade-notice .notice-container{display:flex;justify-content:space-between;align-items:flex-start;align-content:flex-start}#acf-upgrade-notice .col-actions{float:right;text-align:center}#acf-upgrade-notice img{float:left;width:64px;height:64px;margin:0 0 0 -90px}#acf-upgrade-notice h2{display:inline-block;font-size:16px;margin:2px 0 6.5px}#acf-upgrade-notice p{padding:0;margin:0}#acf-upgrade-notice .button:before{margin-top:11px}@media screen and (max-width: 640px){#acf-upgrade-notice .col-content,#acf-upgrade-notice .col-actions{float:none;padding-left:90px;width:auto;text-align:left}}#acf-upgrade-notice:has(.notice-container)::before,#acf-upgrade-notice:has(.notice-container)::after{display:none}#acf-upgrade-notice:has(.notice-container){padding-left:20px !important}.acf-wrap h1{margin-top:0;padding-top:20px}.acf-wrap .about-text{margin-top:.5em;min-height:50px}.acf-wrap .about-headline-callout{font-size:2.4em;font-weight:300;line-height:1.3;margin:1.1em 0 .2em;text-align:center}.acf-wrap .feature-section{padding:40px 0}.acf-wrap .feature-section h2{margin-top:20px}.acf-wrap .changelog{list-style:disc;padding-left:15px}.acf-wrap .changelog li{margin:0 0 .75em}.acf-wrap .acf-three-col{display:flex;flex-wrap:wrap;justify-content:space-between}.acf-wrap .acf-three-col>div{flex:1;align-self:flex-start;min-width:31%;max-width:31%}@media screen and (max-width: 880px){.acf-wrap .acf-three-col>div{min-width:48%}}@media screen and (max-width: 640px){.acf-wrap .acf-three-col>div{min-width:100%}}.acf-wrap .acf-three-col h3 .badge{display:inline-block;vertical-align:top;border-radius:5px;background:#fc9700;color:#fff;font-weight:normal;font-size:12px;padding:2px 5px}.acf-wrap .acf-three-col img+h3{margin-top:.5em}.acf-hl[data-cols]{margin-left:-10px;margin-right:-10px}.acf-hl[data-cols]>li{padding:0 6px 0 10px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.acf-hl[data-cols="2"]>li{width:50%}.acf-hl[data-cols="3"]>li{width:33.333%}.acf-hl[data-cols="4"]>li{width:25%}@media screen and (max-width: 640px){.acf-hl[data-cols]{flex-wrap:wrap;justify-content:flex-start;align-content:flex-start;align-items:flex-start;margin-left:0;margin-right:0;margin-top:-10px}.acf-hl[data-cols]>li{flex:1 1 100%;width:100% !important;padding:10px 0 0}}.acf-actions{text-align:right;z-index:1}.acf-actions.-hover{position:absolute;display:none;top:0;right:0;padding:5px;z-index:1050}html[dir=rtl] .acf-actions.-hover{right:auto;left:0}ul.acf-actions li{float:right;margin-left:4px}html[dir=rtl] .acf-fl{float:right}html[dir=rtl] .acf-fr{float:left}html[dir=rtl] .acf-hl>li{float:right}html[dir=rtl] .acf-hl>li.acf-fr{float:left}html[dir=rtl] .acf-icon.logo{left:0;right:auto}html[dir=rtl] .acf-table thead th{text-align:right;border-right-width:1px;border-left-width:0px}html[dir=rtl] .acf-table>tbody>tr>td{text-align:right;border-right-width:1px;border-left-width:0px}html[dir=rtl] .acf-table>thead>tr>th:first-child,html[dir=rtl] .acf-table>tbody>tr>td:first-child{border-right-width:0}html[dir=rtl] .acf-table>tbody>tr>td.order+td{border-right-color:#e1e1e1}.acf-postbox-columns{position:relative;margin-top:-11px;margin-bottom:-12px;margin-left:-12px;margin-right:268px}.acf-postbox-columns:after{display:block;clear:both;content:""}.acf-postbox-columns .acf-postbox-main,.acf-postbox-columns .acf-postbox-side{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:0 12px 12px}.acf-postbox-columns .acf-postbox-main{float:left;width:100%}.acf-postbox-columns .acf-postbox-side{float:right;width:280px;margin-right:-280px}.acf-postbox-columns .acf-postbox-side:before{content:"";display:block;position:absolute;width:1px;height:100%;top:0;right:0;background:#d5d9dd}.acf-admin-3-8 .acf-postbox-columns .acf-postbox-side:before{background:#dfdfdf}@media only screen and (max-width: 850px){.acf-postbox-columns{margin:0}.acf-postbox-columns .acf-postbox-main,.acf-postbox-columns .acf-postbox-side{float:none;width:auto;margin:0;padding:0}.acf-postbox-columns .acf-postbox-side{margin-top:1em}.acf-postbox-columns .acf-postbox-side:before{display:none}}.acf-panel{margin-top:-1px;border-top:1px solid #d5d9dd;border-bottom:1px solid #d5d9dd}.acf-panel .acf-panel-title{margin:0;padding:12px;font-weight:bold;cursor:pointer;font-size:inherit}.acf-panel .acf-panel-title i{float:right}.acf-panel .acf-panel-inside{margin:0;padding:0 12px 12px;display:none}.acf-panel.-open .acf-panel-inside{display:block}.postbox .acf-panel{margin-left:-12px;margin-right:-12px}.acf-panel .acf-field{margin:20px 0 0}.acf-panel .acf-field .acf-label label{color:#555d66;font-weight:normal}.acf-panel .acf-field:first-child{margin-top:0}.acf-admin-3-8 .acf-panel{border-color:#dfdfdf}#acf-admin-tools .notice{margin-top:10px}#acf-admin-tools .acf-meta-box-wrap .inside{border-top:none}#acf-admin-tools .acf-meta-box-wrap .acf-fields{margin-bottom:24px;border:none;background:#fff;border-radius:0}#acf-admin-tools .acf-meta-box-wrap .acf-fields .acf-field{padding:0;margin-bottom:19px;border-top:none}#acf-admin-tools .acf-meta-box-wrap .acf-fields .acf-label{margin-bottom:16px}#acf-admin-tools .acf-meta-box-wrap .acf-fields .acf-input{padding-top:16px;padding-right:16px;padding-bottom:16px;padding-left:16px;border-width:1px;border-style:solid;border-color:#d0d5dd;border-radius:6px}#acf-admin-tools .acf-meta-box-wrap .acf-fields.import-cptui{margin-top:19px}.acf-meta-box-wrap .postbox{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.acf-meta-box-wrap .postbox .inside{margin-bottom:0}.acf-meta-box-wrap .postbox .hndle{font-size:14px;padding:8px 12px;margin:0;line-height:1.4;position:relative;z-index:1;cursor:default}.acf-meta-box-wrap .postbox .handlediv,.acf-meta-box-wrap .postbox .handle-order-higher,.acf-meta-box-wrap .postbox .handle-order-lower{display:none}.acf-meta-box-wrap.-grid{margin-left:8px;margin-right:8px}.acf-meta-box-wrap.-grid .postbox{float:left;clear:left;width:50%;margin:0 0 16px}.acf-meta-box-wrap.-grid .postbox:nth-child(odd){margin-left:-8px}.acf-meta-box-wrap.-grid .postbox:nth-child(even){float:right;clear:right;margin-right:-8px}@media only screen and (max-width: 850px){.acf-meta-box-wrap.-grid{margin-left:0;margin-right:0}.acf-meta-box-wrap.-grid .postbox{margin-left:0 !important;margin-right:0 !important;width:100%}}#acf-admin-tool-export p{max-width:800px}#acf-admin-tool-export ul{display:flex;flex-wrap:wrap;width:100%}#acf-admin-tool-export ul li{flex:0 1 33.33%}@media screen and (max-width: 1600px){#acf-admin-tool-export ul li{flex:0 1 50%}}@media screen and (max-width: 1200px){#acf-admin-tool-export ul li{flex:0 1 100%}}#acf-admin-tool-export .acf-postbox-side ul{display:block}#acf-admin-tool-export .acf-postbox-side .button{margin:0;width:100%}#acf-admin-tool-export textarea{display:block;width:100%;min-height:500px;background:#f9fafb;border-color:#d0d5dd;box-shadow:none;padding:7px;border-radius:6px}#acf-admin-tool-export .acf-panel-selection .acf-label label{font-weight:bold;color:#344054}#acf-admin-tool-import ul{column-width:200px}.acf-css-tooltip{position:relative}.acf-css-tooltip:before{content:attr(aria-label);display:none;position:absolute;z-index:999;bottom:100%;left:50%;transform:translate(-50%, -8px);background:#191e23;border-radius:2px;padding:5px 10px;color:#fff;font-size:12px;line-height:1.4em;white-space:pre}.acf-css-tooltip:after{content:"";display:none;position:absolute;z-index:998;bottom:100%;left:50%;transform:translate(-50%, 4px);border:solid 6px rgba(0,0,0,0);border-top-color:#191e23}.acf-css-tooltip:hover:before,.acf-css-tooltip:hover:after,.acf-css-tooltip:focus:before,.acf-css-tooltip:focus:after{display:block}.acf-diff .acf-diff-title{position:absolute;top:0;left:0;right:0;height:40px;padding:14px 16px;background:#f3f3f3;border-bottom:#ddd solid 1px}.acf-diff .acf-diff-title strong{font-size:14px;display:block}.acf-diff .acf-diff-title .acf-diff-title-left,.acf-diff .acf-diff-title .acf-diff-title-right{width:50%;float:left}.acf-diff .acf-diff-content{position:absolute;top:70px;left:0;right:0;bottom:0;overflow:auto}.acf-diff table.diff{border-spacing:0}.acf-diff table.diff col.diffsplit.middle{width:0}.acf-diff table.diff td,.acf-diff table.diff th{padding-top:.25em;padding-bottom:.25em}.acf-diff table.diff tr td:nth-child(2){width:auto}.acf-diff table.diff td:nth-child(3){border-left:#ddd solid 1px}@media screen and (max-width: 600px){.acf-diff .acf-diff-title{height:70px}.acf-diff .acf-diff-content{top:100px}}.acf-modal{position:fixed;top:30px;left:30px;right:30px;bottom:30px;z-index:160000;box-shadow:0 5px 15px rgba(0,0,0,.7);background:#fcfcfc}.acf-modal .acf-modal-title,.acf-modal .acf-modal-content,.acf-modal .acf-modal-toolbar{box-sizing:border-box;position:absolute;left:0;right:0}.acf-modal .acf-modal-title{height:50px;top:0;border-bottom:1px solid #ddd}.acf-modal .acf-modal-title h2{margin:0;padding:0 16px;line-height:50px}.acf-modal .acf-modal-title .acf-modal-close{position:absolute;top:0;right:0;height:50px;width:50px;border:none;border-left:1px solid #ddd;background:rgba(0,0,0,0);cursor:pointer;color:#666}.acf-modal .acf-modal-title .acf-modal-close:hover{color:#00a0d2}.acf-modal .acf-modal-content{top:50px;bottom:60px;background:#fff;overflow:auto;padding:16px}.acf-modal .acf-modal-feedback{position:absolute;top:50%;margin:-10px 0;left:0;right:0;text-align:center;opacity:.75}.acf-modal .acf-modal-feedback.error{opacity:1;color:#b52727}.acf-modal .acf-modal-toolbar{height:60px;bottom:0;padding:15px 16px;border-top:1px solid #ddd}.acf-modal .acf-modal-toolbar .button{float:right}@media only screen and (max-width: 640px){.acf-modal{top:0;left:0;right:0;bottom:0}}.acf-modal-backdrop{position:fixed;top:0;left:0;right:0;bottom:0;background:#101828;opacity:.8;z-index:159900}@media only screen and (-webkit-min-device-pixel-ratio: 2),only screen and (min--moz-device-pixel-ratio: 2),only screen and (-o-min-device-pixel-ratio: 2/1),only screen and (min-device-pixel-ratio: 2),only screen and (min-resolution: 192dpi),only screen and (min-resolution: 2dppx){.acf-loading,.acf-spinner{background-image:url(../../images/spinner@2x.gif);background-size:20px 20px}}.acf-admin-page .wrap{margin-top:48px;margin-right:32px;margin-bottom:0;margin-left:12px}@media screen and (max-width: 768px){.acf-admin-page .wrap{margin-right:8px;margin-left:8px}}.acf-admin-page.rtl .wrap{margin-right:12px;margin-left:32px}@media screen and (max-width: 768px){.acf-admin-page.rtl .wrap{margin-right:8px;margin-left:8px}}@media screen and (max-width: 768px){.acf-admin-page #wpcontent{padding-left:0}}.acf-admin-page #wpfooter{font-style:italic}.acf-admin-page .postbox,.acf-admin-page .acf-box{border:none;border-radius:8px;box-shadow:0px 1px 2px rgba(16,24,40,.1)}.acf-admin-page .postbox .inside,.acf-admin-page .acf-box .inside{padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px}.acf-admin-page .postbox .acf-postbox-inner,.acf-admin-page .acf-box .acf-postbox-inner{margin-top:0;margin-right:0;margin-bottom:0;margin-left:0;padding-top:24px;padding-right:0;padding-bottom:0;padding-left:0}.acf-admin-page .postbox .inner,.acf-admin-page .postbox .inside,.acf-admin-page .acf-box .inner,.acf-admin-page .acf-box .inside{margin-top:0 !important;margin-right:0 !important;margin-bottom:0 !important;margin-left:0 !important;border-top-width:1px;border-top-style:solid;border-top-color:#eaecf0}.acf-admin-page .postbox .postbox-header,.acf-admin-page .postbox .title,.acf-admin-page .acf-box .postbox-header,.acf-admin-page .acf-box .title{display:flex;align-items:center;box-sizing:border-box;min-height:64px;margin-top:0;margin-right:0;margin-bottom:0;margin-left:0;padding-top:0;padding-right:24px;padding-bottom:0;padding-left:24px;border-bottom-width:0;border-bottom-style:none}.acf-admin-page .postbox .postbox-header h2,.acf-admin-page .postbox .postbox-header h3,.acf-admin-page .postbox .title h2,.acf-admin-page .postbox .title h3,.acf-admin-page .acf-box .postbox-header h2,.acf-admin-page .acf-box .postbox-header h3,.acf-admin-page .acf-box .title h2,.acf-admin-page .acf-box .title h3{margin-top:0;margin-right:0;margin-bottom:0;margin-left:0;padding-top:0;padding-right:0;padding-bottom:0;padding-left:0;color:#344054}.acf-admin-page .postbox .hndle,.acf-admin-page .acf-box .hndle{padding-top:0;padding-right:24px;padding-bottom:0;padding-left:24px}.acf-postbox-header{display:flex;align-items:center;justify-content:space-between;box-sizing:border-box;min-height:64px;margin-top:-24px;margin-right:-24px;margin-bottom:0;margin-left:-24px;padding-top:0;padding-right:24px;padding-bottom:0;padding-left:24px;border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#eaecf0}.acf-postbox-header h2.acf-postbox-title{margin-top:0;margin-right:0;margin-bottom:0;margin-left:0;padding-top:0;padding-right:24px;padding-bottom:0;padding-left:0;color:#344054}.rtl .acf-postbox-header h2.acf-postbox-title{padding-right:0;padding-left:24px}.acf-postbox-header .acf-icon{background-color:#98a2b3}.acf-admin-page #screen-meta-links{margin-right:32px}.acf-admin-page #screen-meta-links .show-settings{border-color:#d0d5dd}@media screen and (max-width: 768px){.acf-admin-page #screen-meta-links{margin-right:16px;margin-bottom:0}}.acf-admin-page.rtl #screen-meta-links{margin-right:0;margin-left:32px}@media screen and (max-width: 768px){.acf-admin-page.rtl #screen-meta-links{margin-right:0;margin-left:16px}}.acf-admin-page #screen-meta{border-color:#d0d5dd}.acf-admin-page #poststuff .postbox-header h2,.acf-admin-page #poststuff .postbox-header h3{justify-content:flex-start;margin-top:0;margin-right:0;margin-bottom:0;margin-left:0;padding-top:0;padding-right:0;padding-bottom:0;padding-left:0;color:#344054 !important}.acf-admin-page.is-dragging-metaboxes .metabox-holder .postbox-container .meta-box-sortables{box-sizing:border-box;padding:2px;outline:none;background-image:repeating-linear-gradient(0deg, #667085, #667085 5px, transparent 5px, transparent 10px, #667085 10px),repeating-linear-gradient(90deg, #667085, #667085 5px, transparent 5px, transparent 10px, #667085 10px),repeating-linear-gradient(180deg, #667085, #667085 5px, transparent 5px, transparent 10px, #667085 10px),repeating-linear-gradient(270deg, #667085, #667085 5px, transparent 5px, transparent 10px, #667085 10px);background-size:1.5px 100%,100% 1.5px,1.5px 100%,100% 1.5px;background-position:0 0,0 0,100% 0,0 100%;background-repeat:no-repeat;border-radius:8px}.acf-admin-page .ui-sortable-placeholder{border:none}.acf-admin-page .subtitle{display:inline-flex;align-items:center;height:24px;margin:0;padding-top:4px;padding-right:12px;padding-bottom:4px;padding-left:12px;background-color:#ebf5fa;border-width:1px;border-style:solid;border-color:#a5d2e7;border-radius:6px}.acf-admin-page .subtitle strong{margin-left:5px}.acf-actions-strip{display:flex}.acf-actions-strip .acf-btn{margin-right:8px}.acf-admin-page .acf-notice,.acf-admin-page .notice,.acf-admin-page #lost-connection-notice{position:relative;box-sizing:border-box;min-height:48px;margin-top:0 !important;margin-right:0 !important;margin-bottom:16px !important;margin-left:0 !important;padding-top:13px !important;padding-right:16px;padding-bottom:12px !important;padding-left:50px !important;background-color:#e7eff9;border-width:1px;border-style:solid;border-color:#9dbaee;border-radius:8px;box-shadow:0px 1px 2px rgba(16,24,40,.1);color:#344054}.acf-admin-page .acf-notice.update-nag,.acf-admin-page .notice.update-nag,.acf-admin-page #lost-connection-notice.update-nag{display:block;position:relative;width:calc(100% - 44px);margin-top:48px !important;margin-right:44px !important;margin-bottom:-32px !important;margin-left:12px !important}.acf-admin-page .acf-notice .button,.acf-admin-page .notice .button,.acf-admin-page #lost-connection-notice .button{height:auto;margin-left:8px;padding:0;border:none}.acf-admin-page .acf-notice>div,.acf-admin-page .notice>div,.acf-admin-page #lost-connection-notice>div{margin-top:0;margin-bottom:0}.acf-admin-page .acf-notice p,.acf-admin-page .notice p,.acf-admin-page #lost-connection-notice p{flex:1 0 auto;max-width:100%;line-height:18px;margin:0;padding:0}.acf-admin-page .acf-notice p.help,.acf-admin-page .notice p.help,.acf-admin-page #lost-connection-notice p.help{margin-top:0;padding-top:0;color:rgba(52,64,84,.7)}.acf-admin-page .acf-notice .acf-notice-dismiss,.acf-admin-page .acf-notice .notice-dismiss,.acf-admin-page .notice .acf-notice-dismiss,.acf-admin-page .notice .notice-dismiss,.acf-admin-page #lost-connection-notice .acf-notice-dismiss,.acf-admin-page #lost-connection-notice .notice-dismiss{position:absolute;top:4px;right:8px;padding:9px;border:none}.acf-admin-page .acf-notice .acf-notice-dismiss:before,.acf-admin-page .acf-notice .notice-dismiss:before,.acf-admin-page .notice .acf-notice-dismiss:before,.acf-admin-page .notice .notice-dismiss:before,.acf-admin-page #lost-connection-notice .acf-notice-dismiss:before,.acf-admin-page #lost-connection-notice .notice-dismiss:before{content:"";display:block;position:relative;z-index:600;width:20px;height:20px;background-color:#667085;border:none;border-radius:0;-webkit-mask-size:contain;mask-size:contain;-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;-webkit-mask-position:center;mask-position:center;-webkit-mask-image:url("../../images/icons/icon-close.svg");mask-image:url("../../images/icons/icon-close.svg")}.acf-admin-page .acf-notice .acf-notice-dismiss:hover::before,.acf-admin-page .acf-notice .notice-dismiss:hover::before,.acf-admin-page .notice .acf-notice-dismiss:hover::before,.acf-admin-page .notice .notice-dismiss:hover::before,.acf-admin-page #lost-connection-notice .acf-notice-dismiss:hover::before,.acf-admin-page #lost-connection-notice .notice-dismiss:hover::before{background-color:#344054}.acf-admin-page .acf-notice a.acf-notice-dismiss,.acf-admin-page .notice a.acf-notice-dismiss,.acf-admin-page #lost-connection-notice a.acf-notice-dismiss{position:absolute;top:5px;right:24px}.acf-admin-page .acf-notice a.acf-notice-dismiss:before,.acf-admin-page .notice a.acf-notice-dismiss:before,.acf-admin-page #lost-connection-notice a.acf-notice-dismiss:before{background-color:#475467}.acf-admin-page .acf-notice:before,.acf-admin-page .notice:before,.acf-admin-page #lost-connection-notice:before{content:"";display:block;position:absolute;top:15px;left:18px;z-index:600;width:16px;height:16px;margin-right:8px;background-color:#fff;border:none;border-radius:0;-webkit-mask-size:contain;mask-size:contain;-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;-webkit-mask-position:center;mask-position:center;-webkit-mask-image:url("../../images/icons/icon-info-solid.svg");mask-image:url("../../images/icons/icon-info-solid.svg")}.acf-admin-page .acf-notice:after,.acf-admin-page .notice:after,.acf-admin-page #lost-connection-notice:after{content:"";display:block;position:absolute;top:9px;left:12px;z-index:500;width:28px;height:28px;background-color:#2d69da;border-radius:6px;box-shadow:0px 1px 2px rgba(16,24,40,.1)}.acf-admin-page .acf-notice .local-restore,.acf-admin-page .notice .local-restore,.acf-admin-page #lost-connection-notice .local-restore{align-items:center;margin-top:-6px;margin-bottom:0}.acf-admin-page .notice[data-persisted=true]{display:none}.acf-admin-page .notice.is-dismissible{padding-right:56px}.acf-admin-page .notice.notice-success{background-color:#edf7ef;border-color:#b6deb9}.acf-admin-page .notice.notice-success:before{-webkit-mask-image:url("../../images/icons/icon-check-circle-solid.svg");mask-image:url("../../images/icons/icon-check-circle-solid.svg")}.acf-admin-page .notice.notice-success:after{background-color:#52aa59}.acf-admin-page .acf-notice.acf-error-message,.acf-admin-page .notice.notice-error,.acf-admin-page #lost-connection-notice{background-color:#f7eeeb;border-color:#f1b6b3}.acf-admin-page .acf-notice.acf-error-message:before,.acf-admin-page .notice.notice-error:before,.acf-admin-page #lost-connection-notice:before{-webkit-mask-image:url("../../images/icons/icon-warning.svg");mask-image:url("../../images/icons/icon-warning.svg")}.acf-admin-page .acf-notice.acf-error-message:after,.acf-admin-page .notice.notice-error:after,.acf-admin-page #lost-connection-notice:after{background-color:#d13737}.acf-admin-page .notice.notice-warning{background:linear-gradient(0deg, rgba(247, 144, 9, 0.08), rgba(247, 144, 9, 0.08)),#fff;border:1px solid rgba(247,144,9,.32);color:#344054}.acf-admin-page .notice.notice-warning:before{-webkit-mask-image:url("../../images/icons/icon-alert-triangle.svg");mask-image:url("../../images/icons/icon-alert-triangle.svg");background:#f56e28}.acf-admin-page .notice.notice-warning:after{content:none}.acf-admin-single-taxonomy .notice-success .acf-item-saved-text,.acf-admin-single-post-type .notice-success .acf-item-saved-text,.acf-admin-single-options-page .notice-success .acf-item-saved-text{font-weight:600}.acf-admin-single-taxonomy .notice-success .acf-item-saved-links,.acf-admin-single-post-type .notice-success .acf-item-saved-links,.acf-admin-single-options-page .notice-success .acf-item-saved-links{display:flex;gap:12px}.acf-admin-single-taxonomy .notice-success .acf-item-saved-links a,.acf-admin-single-post-type .notice-success .acf-item-saved-links a,.acf-admin-single-options-page .notice-success .acf-item-saved-links a{text-decoration:none;opacity:1}.acf-admin-single-taxonomy .notice-success .acf-item-saved-links a:after,.acf-admin-single-post-type .notice-success .acf-item-saved-links a:after,.acf-admin-single-options-page .notice-success .acf-item-saved-links a:after{content:"";width:1px;height:13px;display:inline-flex;position:relative;top:2px;left:6px;background-color:#475467;opacity:.3}.acf-admin-single-taxonomy .notice-success .acf-item-saved-links a:last-child:after,.acf-admin-single-post-type .notice-success .acf-item-saved-links a:last-child:after,.acf-admin-single-options-page .notice-success .acf-item-saved-links a:last-child:after{content:none}.rtl.acf-field-group .notice,.rtl.acf-internal-post-type .notice{padding-right:50px !important}.rtl.acf-field-group .notice .notice-dismiss,.rtl.acf-internal-post-type .notice .notice-dismiss{left:8px;right:unset}.rtl.acf-field-group .notice:before,.rtl.acf-internal-post-type .notice:before{left:unset;right:10px}.rtl.acf-field-group .notice:after,.rtl.acf-internal-post-type .notice:after{left:unset;right:12px}.rtl.acf-field-group.acf-admin-single-taxonomy .notice-success .acf-item-saved-links a:after,.rtl.acf-field-group.acf-admin-single-post-type .notice-success .acf-item-saved-links a:after,.rtl.acf-field-group.acf-admin-single-options-page .notice-success .acf-item-saved-links a:after,.rtl.acf-internal-post-type.acf-admin-single-taxonomy .notice-success .acf-item-saved-links a:after,.rtl.acf-internal-post-type.acf-admin-single-post-type .notice-success .acf-item-saved-links a:after,.rtl.acf-internal-post-type.acf-admin-single-options-page .notice-success .acf-item-saved-links a:after{left:unset;right:6px}.acf-pro-label{display:inline-flex;align-items:center;min-height:22px;padding-right:8px;padding-left:8px;background:linear-gradient(90.52deg, #3E8BFF 0.44%, #A45CFF 113.3%);box-shadow:inset 0 0 0 1px rgba(255,255,255,.16);border:none;border-radius:100px;font-size:11px;text-transform:uppercase;text-decoration:none;color:#fff}.acf-admin-page .acf-field .acf-notice{display:flex;align-items:center;min-height:40px !important;margin-bottom:6px !important;padding-top:6px !important;padding-left:40px !important;padding-bottom:6px !important;margin:0 0 15px;background:#edf2ff;color:#344054 !important;border-color:#2183b9;border-radius:6px}.acf-admin-page .acf-field .acf-notice:after{top:8px;left:8px;width:22px;height:22px}.acf-admin-page .acf-field .acf-notice:before{top:12px;left:12px;width:14px;height:14px}.acf-admin-page .acf-field .acf-notice.-error{background:#f7eeeb;border-color:#f1b6b3}.acf-admin-page .acf-field .acf-notice.-success{background:#edf7ef;border-color:#b6deb9}.acf-admin-page .acf-field .acf-notice.-warning{background:#fdf8eb;border-color:#f4dbb4}.acf-admin-page #wpcontent{line-height:140%}.acf-admin-page a{color:#0783be}.acf-h1,.acf-admin-page #tmpl-acf-field-group-pro-features h1,.acf-admin-page #acf-field-group-pro-features h1,.acf-admin-page h1,.acf-headerbar h1{font-size:21px;font-weight:400}.acf-h2,.acf-no-field-groups-wrapper .acf-no-field-groups-inner h2,.acf-no-field-groups-wrapper .acf-no-taxonomies-inner h2,.acf-no-field-groups-wrapper .acf-no-post-types-inner h2,.acf-no-field-groups-wrapper .acf-no-options-pages-inner h2,.acf-no-field-groups-wrapper .acf-options-preview-inner h2,.acf-no-taxonomies-wrapper .acf-no-field-groups-inner h2,.acf-no-taxonomies-wrapper .acf-no-taxonomies-inner h2,.acf-no-taxonomies-wrapper .acf-no-post-types-inner h2,.acf-no-taxonomies-wrapper .acf-no-options-pages-inner h2,.acf-no-taxonomies-wrapper .acf-options-preview-inner h2,.acf-no-post-types-wrapper .acf-no-field-groups-inner h2,.acf-no-post-types-wrapper .acf-no-taxonomies-inner h2,.acf-no-post-types-wrapper .acf-no-post-types-inner h2,.acf-no-post-types-wrapper .acf-no-options-pages-inner h2,.acf-no-post-types-wrapper .acf-options-preview-inner h2,.acf-no-options-pages-wrapper .acf-no-field-groups-inner h2,.acf-no-options-pages-wrapper .acf-no-taxonomies-inner h2,.acf-no-options-pages-wrapper .acf-no-post-types-inner h2,.acf-no-options-pages-wrapper .acf-no-options-pages-inner h2,.acf-no-options-pages-wrapper .acf-options-preview-inner h2,.acf-options-preview-wrapper .acf-no-field-groups-inner h2,.acf-options-preview-wrapper .acf-no-taxonomies-inner h2,.acf-options-preview-wrapper .acf-no-post-types-inner h2,.acf-options-preview-wrapper .acf-no-options-pages-inner h2,.acf-options-preview-wrapper .acf-options-preview-inner h2,.acf-page-title,.acf-admin-page h2,.acf-headerbar h2{font-size:18px;font-weight:400}.acf-h3,.acf-admin-page h3,.acf-headerbar h3,.acf-admin-page .postbox .postbox-header h2,.acf-admin-page .postbox .postbox-header h3,.acf-admin-page .postbox .title h2,.acf-admin-page .postbox .title h3,.acf-admin-page .acf-box .postbox-header h2,.acf-admin-page .acf-box .postbox-header h3,.acf-admin-page .acf-box .title h2,.acf-admin-page .acf-box .title h3,.acf-postbox-header h2.acf-postbox-title,.acf-admin-page #poststuff .postbox-header h2,.acf-admin-page #poststuff .postbox-header h3{font-size:16px;font-weight:400}.acf-admin-page .p1{font-size:15px}.acf-admin-page .p2,.acf-admin-page .acf-no-field-groups-wrapper .acf-no-field-groups-inner p,.acf-no-field-groups-wrapper .acf-no-field-groups-inner .acf-admin-page p,.acf-admin-page .acf-no-field-groups-wrapper .acf-no-taxonomies-inner p,.acf-no-field-groups-wrapper .acf-no-taxonomies-inner .acf-admin-page p,.acf-admin-page .acf-no-field-groups-wrapper .acf-no-post-types-inner p,.acf-no-field-groups-wrapper .acf-no-post-types-inner .acf-admin-page p,.acf-admin-page .acf-no-field-groups-wrapper .acf-no-options-pages-inner p,.acf-no-field-groups-wrapper .acf-no-options-pages-inner .acf-admin-page p,.acf-admin-page .acf-no-field-groups-wrapper .acf-options-preview-inner p,.acf-no-field-groups-wrapper .acf-options-preview-inner .acf-admin-page p,.acf-admin-page .acf-no-taxonomies-wrapper .acf-no-field-groups-inner p,.acf-no-taxonomies-wrapper .acf-no-field-groups-inner .acf-admin-page p,.acf-admin-page .acf-no-taxonomies-wrapper .acf-no-taxonomies-inner p,.acf-no-taxonomies-wrapper .acf-no-taxonomies-inner .acf-admin-page p,.acf-admin-page .acf-no-taxonomies-wrapper .acf-no-post-types-inner p,.acf-no-taxonomies-wrapper .acf-no-post-types-inner .acf-admin-page p,.acf-admin-page .acf-no-taxonomies-wrapper .acf-no-options-pages-inner p,.acf-no-taxonomies-wrapper .acf-no-options-pages-inner .acf-admin-page p,.acf-admin-page .acf-no-taxonomies-wrapper .acf-options-preview-inner p,.acf-no-taxonomies-wrapper .acf-options-preview-inner .acf-admin-page p,.acf-admin-page .acf-no-post-types-wrapper .acf-no-field-groups-inner p,.acf-no-post-types-wrapper .acf-no-field-groups-inner .acf-admin-page p,.acf-admin-page .acf-no-post-types-wrapper .acf-no-taxonomies-inner p,.acf-no-post-types-wrapper .acf-no-taxonomies-inner .acf-admin-page p,.acf-admin-page .acf-no-post-types-wrapper .acf-no-post-types-inner p,.acf-no-post-types-wrapper .acf-no-post-types-inner .acf-admin-page p,.acf-admin-page .acf-no-post-types-wrapper .acf-no-options-pages-inner p,.acf-no-post-types-wrapper .acf-no-options-pages-inner .acf-admin-page p,.acf-admin-page .acf-no-post-types-wrapper .acf-options-preview-inner p,.acf-no-post-types-wrapper .acf-options-preview-inner .acf-admin-page p,.acf-admin-page .acf-no-options-pages-wrapper .acf-no-field-groups-inner p,.acf-no-options-pages-wrapper .acf-no-field-groups-inner .acf-admin-page p,.acf-admin-page .acf-no-options-pages-wrapper .acf-no-taxonomies-inner p,.acf-no-options-pages-wrapper .acf-no-taxonomies-inner .acf-admin-page p,.acf-admin-page .acf-no-options-pages-wrapper .acf-no-post-types-inner p,.acf-no-options-pages-wrapper .acf-no-post-types-inner .acf-admin-page p,.acf-admin-page .acf-no-options-pages-wrapper .acf-no-options-pages-inner p,.acf-no-options-pages-wrapper .acf-no-options-pages-inner .acf-admin-page p,.acf-admin-page .acf-no-options-pages-wrapper .acf-options-preview-inner p,.acf-no-options-pages-wrapper .acf-options-preview-inner .acf-admin-page p,.acf-admin-page .acf-options-preview-wrapper .acf-no-field-groups-inner p,.acf-options-preview-wrapper .acf-no-field-groups-inner .acf-admin-page p,.acf-admin-page .acf-options-preview-wrapper .acf-no-taxonomies-inner p,.acf-options-preview-wrapper .acf-no-taxonomies-inner .acf-admin-page p,.acf-admin-page .acf-options-preview-wrapper .acf-no-post-types-inner p,.acf-options-preview-wrapper .acf-no-post-types-inner .acf-admin-page p,.acf-admin-page .acf-options-preview-wrapper .acf-no-options-pages-inner p,.acf-options-preview-wrapper .acf-no-options-pages-inner .acf-admin-page p,.acf-admin-page .acf-options-preview-wrapper .acf-options-preview-inner p,.acf-options-preview-wrapper .acf-options-preview-inner .acf-admin-page p,.acf-admin-page #acf-admin-tools .acf-meta-box-wrap .acf-fields .acf-label,#acf-admin-tools .acf-meta-box-wrap .acf-fields .acf-admin-page .acf-label{font-size:14px}.acf-admin-page .p3,.acf-admin-page .acf-internal-post-type .wp-list-table .post-state,.acf-internal-post-type .wp-list-table .acf-admin-page .post-state,.acf-admin-page .subtitle{font-size:13.5px}.acf-admin-page .p4,.acf-admin-page .acf-admin-toolbar a.acf-admin-toolbar-upgrade-btn p,.acf-admin-toolbar a.acf-admin-toolbar-upgrade-btn .acf-admin-page p,.acf-admin-page #acf-update-information .form-table th,#acf-update-information .form-table .acf-admin-page th,.acf-admin-page #acf-update-information .form-table td,#acf-update-information .form-table .acf-admin-page td,.acf-admin-page #acf-admin-tools.tool-export .acf-panel h3,#acf-admin-tools.tool-export .acf-panel .acf-admin-page h3,.acf-admin-page .acf-btn.acf-btn-sm,.acf-admin-page .acf-admin-toolbar .acf-tab,.acf-admin-toolbar .acf-admin-page .acf-tab,.acf-admin-page .acf-options-preview .acf-options-pages-preview-upgrade-button p,.acf-options-preview .acf-options-pages-preview-upgrade-button .acf-admin-page p,.acf-admin-page .acf-internal-post-type .subsubsub li,.acf-internal-post-type .subsubsub .acf-admin-page li,.acf-admin-page .acf-internal-post-type .wp-list-table tbody th,.acf-internal-post-type .wp-list-table tbody .acf-admin-page th,.acf-admin-page .acf-internal-post-type .wp-list-table tbody td,.acf-internal-post-type .wp-list-table tbody .acf-admin-page td,.acf-admin-page .acf-internal-post-type .wp-list-table thead th,.acf-internal-post-type .wp-list-table thead .acf-admin-page th,.acf-admin-page .acf-internal-post-type .wp-list-table thead td,.acf-internal-post-type .wp-list-table thead .acf-admin-page td,.acf-admin-page .acf-internal-post-type .wp-list-table tfoot th,.acf-internal-post-type .wp-list-table tfoot .acf-admin-page th,.acf-admin-page .acf-internal-post-type .wp-list-table tfoot td,.acf-internal-post-type .wp-list-table tfoot .acf-admin-page td,.acf-admin-page .acf-input .select2-container.-acf .select2-selection__rendered,.acf-admin-page .button,.acf-admin-page input[type=text],.acf-admin-page input[type=search],.acf-admin-page input[type=number],.acf-admin-page textarea,.acf-admin-page select{font-size:13px}.acf-admin-page .p5,.acf-admin-page .acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-content .acf-field-types-tab .acf-field-type .field-type-label,.acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-content .acf-field-types-tab .acf-field-type .acf-admin-page .field-type-label,.acf-admin-page .acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-content .acf-field-type-search-results .acf-field-type .field-type-label,.acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-content .acf-field-type-search-results .acf-field-type .acf-admin-page .field-type-label,.acf-admin-page .acf-internal-post-type .row-actions,.acf-internal-post-type .acf-admin-page .row-actions,.acf-admin-page .acf-notice .button,.acf-admin-page .notice .button,.acf-admin-page #lost-connection-notice .button{font-size:12.5px}.acf-admin-page .p6,.acf-admin-page #acf-update-information .acf-update-changelog p em,#acf-update-information .acf-update-changelog p .acf-admin-page em,.acf-admin-page .acf-no-field-groups-wrapper .acf-no-field-groups-inner p.acf-small,.acf-no-field-groups-wrapper .acf-no-field-groups-inner .acf-admin-page p.acf-small,.acf-admin-page .acf-no-field-groups-wrapper .acf-no-taxonomies-inner p.acf-small,.acf-no-field-groups-wrapper .acf-no-taxonomies-inner .acf-admin-page p.acf-small,.acf-admin-page .acf-no-field-groups-wrapper .acf-no-post-types-inner p.acf-small,.acf-no-field-groups-wrapper .acf-no-post-types-inner .acf-admin-page p.acf-small,.acf-admin-page .acf-no-field-groups-wrapper .acf-no-options-pages-inner p.acf-small,.acf-no-field-groups-wrapper .acf-no-options-pages-inner .acf-admin-page p.acf-small,.acf-admin-page .acf-no-field-groups-wrapper .acf-options-preview-inner p.acf-small,.acf-no-field-groups-wrapper .acf-options-preview-inner .acf-admin-page p.acf-small,.acf-admin-page .acf-no-taxonomies-wrapper .acf-no-field-groups-inner p.acf-small,.acf-no-taxonomies-wrapper .acf-no-field-groups-inner .acf-admin-page p.acf-small,.acf-admin-page .acf-no-taxonomies-wrapper .acf-no-taxonomies-inner p.acf-small,.acf-no-taxonomies-wrapper .acf-no-taxonomies-inner .acf-admin-page p.acf-small,.acf-admin-page .acf-no-taxonomies-wrapper .acf-no-post-types-inner p.acf-small,.acf-no-taxonomies-wrapper .acf-no-post-types-inner .acf-admin-page p.acf-small,.acf-admin-page .acf-no-taxonomies-wrapper .acf-no-options-pages-inner p.acf-small,.acf-no-taxonomies-wrapper .acf-no-options-pages-inner .acf-admin-page p.acf-small,.acf-admin-page .acf-no-taxonomies-wrapper .acf-options-preview-inner p.acf-small,.acf-no-taxonomies-wrapper .acf-options-preview-inner .acf-admin-page p.acf-small,.acf-admin-page .acf-no-post-types-wrapper .acf-no-field-groups-inner p.acf-small,.acf-no-post-types-wrapper .acf-no-field-groups-inner .acf-admin-page p.acf-small,.acf-admin-page .acf-no-post-types-wrapper .acf-no-taxonomies-inner p.acf-small,.acf-no-post-types-wrapper .acf-no-taxonomies-inner .acf-admin-page p.acf-small,.acf-admin-page .acf-no-post-types-wrapper .acf-no-post-types-inner p.acf-small,.acf-no-post-types-wrapper .acf-no-post-types-inner .acf-admin-page p.acf-small,.acf-admin-page .acf-no-post-types-wrapper .acf-no-options-pages-inner p.acf-small,.acf-no-post-types-wrapper .acf-no-options-pages-inner .acf-admin-page p.acf-small,.acf-admin-page .acf-no-post-types-wrapper .acf-options-preview-inner p.acf-small,.acf-no-post-types-wrapper .acf-options-preview-inner .acf-admin-page p.acf-small,.acf-admin-page .acf-no-options-pages-wrapper .acf-no-field-groups-inner p.acf-small,.acf-no-options-pages-wrapper .acf-no-field-groups-inner .acf-admin-page p.acf-small,.acf-admin-page .acf-no-options-pages-wrapper .acf-no-taxonomies-inner p.acf-small,.acf-no-options-pages-wrapper .acf-no-taxonomies-inner .acf-admin-page p.acf-small,.acf-admin-page .acf-no-options-pages-wrapper .acf-no-post-types-inner p.acf-small,.acf-no-options-pages-wrapper .acf-no-post-types-inner .acf-admin-page p.acf-small,.acf-admin-page .acf-no-options-pages-wrapper .acf-no-options-pages-inner p.acf-small,.acf-no-options-pages-wrapper .acf-no-options-pages-inner .acf-admin-page p.acf-small,.acf-admin-page .acf-no-options-pages-wrapper .acf-options-preview-inner p.acf-small,.acf-no-options-pages-wrapper .acf-options-preview-inner .acf-admin-page p.acf-small,.acf-admin-page .acf-options-preview-wrapper .acf-no-field-groups-inner p.acf-small,.acf-options-preview-wrapper .acf-no-field-groups-inner .acf-admin-page p.acf-small,.acf-admin-page .acf-options-preview-wrapper .acf-no-taxonomies-inner p.acf-small,.acf-options-preview-wrapper .acf-no-taxonomies-inner .acf-admin-page p.acf-small,.acf-admin-page .acf-options-preview-wrapper .acf-no-post-types-inner p.acf-small,.acf-options-preview-wrapper .acf-no-post-types-inner .acf-admin-page p.acf-small,.acf-admin-page .acf-options-preview-wrapper .acf-no-options-pages-inner p.acf-small,.acf-options-preview-wrapper .acf-no-options-pages-inner .acf-admin-page p.acf-small,.acf-admin-page .acf-options-preview-wrapper .acf-options-preview-inner p.acf-small,.acf-options-preview-wrapper .acf-options-preview-inner .acf-admin-page p.acf-small,.acf-admin-page .acf-internal-post-type .row-actions,.acf-internal-post-type .acf-admin-page .row-actions,.acf-admin-page .acf-small{font-size:12px}.acf-admin-page .p7,.acf-admin-page .acf-tooltip,.acf-admin-page .acf-notice p.help,.acf-admin-page .notice p.help,.acf-admin-page #lost-connection-notice p.help{font-size:11.5px}.acf-admin-page .p8{font-size:11px}.acf-page-title{color:#344054}.acf-admin-page .acf-settings-wrap h1{display:none !important}.acf-admin-page #acf-admin-tools h1:not(.acf-field-group-pro-features-title,.acf-field-group-pro-features-title-sm){display:none !important}.acf-admin-page a:focus{box-shadow:none;outline:none}.acf-admin-page a:focus-visible{box-shadow:0 0 0 1px #4f94d4,0 0 2px 1px rgba(79,148,212,.8);outline:1px solid rgba(0,0,0,0)}.acf-admin-page input[type=text],.acf-admin-page input[type=search],.acf-admin-page input[type=number],.acf-admin-page textarea,.acf-admin-page select{box-sizing:border-box;height:40px;padding-right:12px;padding-left:12px;background-color:#fff;border-color:#d0d5dd;box-shadow:0px 1px 2px rgba(16,24,40,.1);border-radius:6px;color:#344054}.acf-admin-page input[type=text]:focus,.acf-admin-page input[type=search]:focus,.acf-admin-page input[type=number]:focus,.acf-admin-page textarea:focus,.acf-admin-page select:focus{outline:3px solid #ebf5fa;border-color:#399ccb}.acf-admin-page input[type=text]:disabled,.acf-admin-page input[type=search]:disabled,.acf-admin-page input[type=number]:disabled,.acf-admin-page textarea:disabled,.acf-admin-page select:disabled{background-color:#f9fafb;color:#808a9e}.acf-admin-page input[type=text]::placeholder,.acf-admin-page input[type=search]::placeholder,.acf-admin-page input[type=number]::placeholder,.acf-admin-page textarea::placeholder,.acf-admin-page select::placeholder{color:#98a2b3}.acf-admin-page input[type=text]:read-only{background-color:#f9fafb;color:#98a2b3}.acf-admin-page .acf-field.acf-field-number .acf-label,.acf-admin-page .acf-field.acf-field-number .acf-input input[type=number]{max-width:180px}.acf-admin-page textarea{box-sizing:border-box;padding-top:10px;padding-bottom:10px;height:80px;min-height:56px}.acf-admin-page select{min-width:160px;max-width:100%;padding-right:40px;padding-left:12px;background-image:url("../../images/icons/icon-chevron-down.svg");background-position:right 10px top 50%;background-size:20px}.acf-admin-page select:hover,.acf-admin-page select:focus{color:#0783be}.acf-admin-page select::before{content:"";display:block;position:absolute;top:5px;left:5px;width:20px;height:20px}.acf-admin-page.rtl select{padding-right:12px;padding-left:40px;background-position:left 10px top 50%}.acf-admin-page input[type=radio],.acf-admin-page input[type=checkbox]{box-sizing:border-box;width:16px;height:16px;padding:0;border-width:1px;border-style:solid;border-color:#98a2b3;background:#fff;box-shadow:none}.acf-admin-page input[type=radio]:hover,.acf-admin-page input[type=checkbox]:hover{background-color:#ebf5fa;border-color:#0783be}.acf-admin-page input[type=radio]:checked,.acf-admin-page input[type=radio]:focus-visible,.acf-admin-page input[type=checkbox]:checked,.acf-admin-page input[type=checkbox]:focus-visible{background-color:#ebf5fa;border-color:#0783be}.acf-admin-page input[type=radio]:checked:before,.acf-admin-page input[type=radio]:focus-visible:before,.acf-admin-page input[type=checkbox]:checked:before,.acf-admin-page input[type=checkbox]:focus-visible:before{content:"";position:relative;top:-1px;left:-1px;width:16px;height:16px;margin:0;padding:0;background-color:rgba(0,0,0,0);background-size:cover;background-repeat:no-repeat;background-position:center}.acf-admin-page input[type=radio]:active,.acf-admin-page input[type=checkbox]:active{box-shadow:0px 0px 0px 3px #ebf5fa,0px 0px 0px rgba(255,54,54,.25)}.acf-admin-page input[type=radio]:disabled,.acf-admin-page input[type=checkbox]:disabled{background-color:#f9fafb;border-color:#d0d5dd}.acf-admin-page.rtl input[type=radio]:checked:before,.acf-admin-page.rtl input[type=radio]:focus-visible:before,.acf-admin-page.rtl input[type=checkbox]:checked:before,.acf-admin-page.rtl input[type=checkbox]:focus-visible:before{left:1px}.acf-admin-page input[type=radio]:checked:before,.acf-admin-page input[type=radio]:focus:before{background-image:url("../../images/field-states/radio-active.svg")}.acf-admin-page input[type=checkbox]:checked:before,.acf-admin-page input[type=checkbox]:focus:before{background-image:url("../../images/field-states/checkbox-active.svg")}.acf-admin-page .acf-radio-list li input[type=radio],.acf-admin-page .acf-radio-list li input[type=checkbox],.acf-admin-page .acf-checkbox-list li input[type=radio],.acf-admin-page .acf-checkbox-list li input[type=checkbox]{margin-right:6px}.acf-admin-page .acf-radio-list.acf-bl li,.acf-admin-page .acf-checkbox-list.acf-bl li{margin-bottom:8px}.acf-admin-page .acf-radio-list.acf-bl li:last-of-type,.acf-admin-page .acf-checkbox-list.acf-bl li:last-of-type{margin-bottom:0}.acf-admin-page .acf-radio-list label,.acf-admin-page .acf-checkbox-list label{display:flex;align-items:center;align-content:center}.acf-admin-page .acf-switch{width:42px;height:24px;border:none;background-color:#d0d5dd;border-radius:12px}.acf-admin-page .acf-switch:hover{background-color:#98a2b3}.acf-admin-page .acf-switch:active{box-shadow:0px 0px 0px 3px #ebf5fa,0px 0px 0px rgba(255,54,54,.25)}.acf-admin-page .acf-switch.-on{background-color:#0783be}.acf-admin-page .acf-switch.-on:hover{background-color:#066998}.acf-admin-page .acf-switch.-on .acf-switch-slider{left:20px}.acf-admin-page .acf-switch .acf-switch-off,.acf-admin-page .acf-switch .acf-switch-on{visibility:hidden}.acf-admin-page .acf-switch .acf-switch-slider{width:20px;height:20px;border:none;border-radius:100px;box-shadow:0px 1px 3px rgba(16,24,40,.1),0px 1px 2px rgba(16,24,40,.06)}.acf-admin-page .acf-field-true-false{display:flex;align-items:flex-start}.acf-admin-page .acf-field-true-false .acf-label{order:2;display:block;align-items:center;margin-top:2px;margin-bottom:0;margin-left:12px}.acf-admin-page .acf-field-true-false .acf-label label{margin-bottom:0}.acf-admin-page .acf-field-true-false .acf-label .acf-tip{margin-left:12px}.acf-admin-page .acf-field-true-false .acf-label .description{display:block;margin-top:2px;margin-left:0}.acf-admin-page.rtl .acf-field-true-false .acf-label{margin-right:12px;margin-left:0}.acf-admin-page.rtl .acf-field-true-false .acf-tip{margin-right:12px;margin-left:0}.acf-admin-page input::file-selector-button{box-sizing:border-box;min-height:40px;margin-right:16px;padding-top:8px;padding-right:16px;padding-bottom:8px;padding-left:16px;background-color:rgba(0,0,0,0);color:#0783be !important;border-radius:6px;border-width:1px;border-style:solid;border-color:#0783be;text-decoration:none}.acf-admin-page input::file-selector-button:hover{border-color:#066998;cursor:pointer;color:#066998 !important}.acf-admin-page .button{display:inline-flex;align-items:center;height:40px;padding-right:16px;padding-left:16px;background-color:rgba(0,0,0,0);border-width:1px;border-style:solid;border-color:#0783be;border-radius:6px;color:#0783be}.acf-admin-page .button:hover{background-color:#f3f9fc;border-color:#0783be;color:#0783be}.acf-admin-page .button:focus{background-color:#f3f9fc;outline:3px solid #ebf5fa;color:#0783be}.acf-admin-page .edit-field-group-header{display:block !important}.acf-admin-page .acf-input .select2-container.-acf .select2-selection{border:none;line-height:1}.acf-admin-page .acf-input .select2-container.-acf .select2-selection__rendered{box-sizing:border-box;padding-right:0;padding-left:0;background-color:#fff;border-width:1px;border-style:solid;border-color:#d0d5dd;box-shadow:0px 1px 2px rgba(16,24,40,.1);border-radius:6px;color:#344054}.acf-admin-page .acf-input .select2-container--focus{outline:3px solid #ebf5fa;border-color:#399ccb;border-radius:6px}.acf-admin-page .acf-input .select2-container--focus .select2-selection__rendered{border-color:#399ccb !important}.acf-admin-page .acf-input .select2-container--focus.select2-container--below.select2-container--open .select2-selection__rendered{border-bottom-right-radius:0 !important;border-bottom-left-radius:0 !important}.acf-admin-page .acf-input .select2-container--focus.select2-container--above.select2-container--open .select2-selection__rendered{border-top-right-radius:0 !important;border-top-left-radius:0 !important}.acf-admin-page .acf-input .select2-container .select2-search--inline .select2-search__field{margin:0;padding-left:6px}.acf-admin-page .acf-input .select2-container .select2-search--inline .select2-search__field:focus{outline:none;border:none}.acf-admin-page .acf-input .select2-container--default .select2-selection--multiple .select2-selection__rendered{padding-top:0;padding-right:6px;padding-bottom:0;padding-left:6px}.acf-admin-page .acf-input .select2-selection__clear{width:18px;height:18px;margin-top:12px;margin-right:1px;text-indent:100%;white-space:nowrap;overflow:hidden;color:#fff}.acf-admin-page .acf-input .select2-selection__clear:before{content:"";display:block;width:16px;height:16px;top:0;left:0;border:none;border-radius:0;-webkit-mask-size:contain;mask-size:contain;-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;-webkit-mask-position:center;mask-position:center;-webkit-mask-image:url("../../images/icons/icon-close.svg");mask-image:url("../../images/icons/icon-close.svg");background-color:#98a2b3}.acf-admin-page .acf-input .select2-selection__clear:hover::before{background-color:#0783be}.acf-admin-page .acf-label{display:flex;align-items:center;justify-content:space-between}.acf-admin-page .acf-label .acf-icon-help{width:18px;height:18px;background-color:#98a2b3}.acf-admin-page .acf-label label{margin-bottom:0}.acf-admin-page .acf-label .description{margin-top:2px}.acf-admin-page .acf-field-setting-name .acf-tip{position:absolute;top:0;left:654px;color:#98a2b3}.rtl.acf-admin-page .acf-field-setting-name .acf-tip{left:auto;right:654px}.acf-admin-page .acf-field-setting-name .acf-tip .acf-icon-help{width:18px;height:18px}.acf-admin-page .acf-field-setting-type .select2-container.-acf,.acf-admin-page .acf-field-permalink-rewrite .select2-container.-acf,.acf-admin-page .acf-field-query-var .select2-container.-acf,.acf-admin-page .acf-field-capability .select2-container.-acf,.acf-admin-page .acf-field-parent-slug .select2-container.-acf,.acf-admin-page .acf-field-data-storage .select2-container.-acf,.acf-admin-page .acf-field-manage-terms .select2-container.-acf,.acf-admin-page .acf-field-edit-terms .select2-container.-acf,.acf-admin-page .acf-field-delete-terms .select2-container.-acf,.acf-admin-page .acf-field-assign-terms .select2-container.-acf,.acf-admin-page .acf-field-meta-box .select2-container.-acf{min-height:40px}.acf-admin-page .acf-field-setting-type .select2-container--default .select2-selection--single .select2-selection__rendered,.acf-admin-page .acf-field-permalink-rewrite .select2-container--default .select2-selection--single .select2-selection__rendered,.acf-admin-page .acf-field-query-var .select2-container--default .select2-selection--single .select2-selection__rendered,.acf-admin-page .acf-field-capability .select2-container--default .select2-selection--single .select2-selection__rendered,.acf-admin-page .acf-field-parent-slug .select2-container--default .select2-selection--single .select2-selection__rendered,.acf-admin-page .acf-field-data-storage .select2-container--default .select2-selection--single .select2-selection__rendered,.acf-admin-page .acf-field-manage-terms .select2-container--default .select2-selection--single .select2-selection__rendered,.acf-admin-page .acf-field-edit-terms .select2-container--default .select2-selection--single .select2-selection__rendered,.acf-admin-page .acf-field-delete-terms .select2-container--default .select2-selection--single .select2-selection__rendered,.acf-admin-page .acf-field-assign-terms .select2-container--default .select2-selection--single .select2-selection__rendered,.acf-admin-page .acf-field-meta-box .select2-container--default .select2-selection--single .select2-selection__rendered{display:flex;align-items:center;position:relative;z-index:800;min-height:40px;padding-top:0;padding-right:12px;padding-bottom:0;padding-left:12px}.acf-admin-page .acf-field-setting-type .select2-container--default .select2-selection--single .field-type-icon,.acf-admin-page .acf-field-permalink-rewrite .select2-container--default .select2-selection--single .field-type-icon,.acf-admin-page .acf-field-query-var .select2-container--default .select2-selection--single .field-type-icon,.acf-admin-page .acf-field-capability .select2-container--default .select2-selection--single .field-type-icon,.acf-admin-page .acf-field-parent-slug .select2-container--default .select2-selection--single .field-type-icon,.acf-admin-page .acf-field-data-storage .select2-container--default .select2-selection--single .field-type-icon,.acf-admin-page .acf-field-manage-terms .select2-container--default .select2-selection--single .field-type-icon,.acf-admin-page .acf-field-edit-terms .select2-container--default .select2-selection--single .field-type-icon,.acf-admin-page .acf-field-delete-terms .select2-container--default .select2-selection--single .field-type-icon,.acf-admin-page .acf-field-assign-terms .select2-container--default .select2-selection--single .field-type-icon,.acf-admin-page .acf-field-meta-box .select2-container--default .select2-selection--single .field-type-icon{top:auto;width:18px;height:18px;margin-right:2px}.acf-admin-page .acf-field-setting-type .select2-container--default .select2-selection--single .field-type-icon:before,.acf-admin-page .acf-field-permalink-rewrite .select2-container--default .select2-selection--single .field-type-icon:before,.acf-admin-page .acf-field-query-var .select2-container--default .select2-selection--single .field-type-icon:before,.acf-admin-page .acf-field-capability .select2-container--default .select2-selection--single .field-type-icon:before,.acf-admin-page .acf-field-parent-slug .select2-container--default .select2-selection--single .field-type-icon:before,.acf-admin-page .acf-field-data-storage .select2-container--default .select2-selection--single .field-type-icon:before,.acf-admin-page .acf-field-manage-terms .select2-container--default .select2-selection--single .field-type-icon:before,.acf-admin-page .acf-field-edit-terms .select2-container--default .select2-selection--single .field-type-icon:before,.acf-admin-page .acf-field-delete-terms .select2-container--default .select2-selection--single .field-type-icon:before,.acf-admin-page .acf-field-assign-terms .select2-container--default .select2-selection--single .field-type-icon:before,.acf-admin-page .acf-field-meta-box .select2-container--default .select2-selection--single .field-type-icon:before{width:9px;height:9px}.acf-admin-page .acf-field-setting-type .select2-container--open .select2-selection__rendered,.acf-admin-page .acf-field-permalink-rewrite .select2-container--open .select2-selection__rendered,.acf-admin-page .acf-field-query-var .select2-container--open .select2-selection__rendered,.acf-admin-page .acf-field-capability .select2-container--open .select2-selection__rendered,.acf-admin-page .acf-field-parent-slug .select2-container--open .select2-selection__rendered,.acf-admin-page .acf-field-data-storage .select2-container--open .select2-selection__rendered,.acf-admin-page .acf-field-manage-terms .select2-container--open .select2-selection__rendered,.acf-admin-page .acf-field-edit-terms .select2-container--open .select2-selection__rendered,.acf-admin-page .acf-field-delete-terms .select2-container--open .select2-selection__rendered,.acf-admin-page .acf-field-assign-terms .select2-container--open .select2-selection__rendered,.acf-admin-page .acf-field-meta-box .select2-container--open .select2-selection__rendered{border-color:#6bb5d8 !important;border-bottom-color:#d0d5dd !important}.acf-admin-page .acf-field-setting-type .select2-container--open.select2-container--below .select2-selection__rendered,.acf-admin-page .acf-field-permalink-rewrite .select2-container--open.select2-container--below .select2-selection__rendered,.acf-admin-page .acf-field-query-var .select2-container--open.select2-container--below .select2-selection__rendered,.acf-admin-page .acf-field-capability .select2-container--open.select2-container--below .select2-selection__rendered,.acf-admin-page .acf-field-parent-slug .select2-container--open.select2-container--below .select2-selection__rendered,.acf-admin-page .acf-field-data-storage .select2-container--open.select2-container--below .select2-selection__rendered,.acf-admin-page .acf-field-manage-terms .select2-container--open.select2-container--below .select2-selection__rendered,.acf-admin-page .acf-field-edit-terms .select2-container--open.select2-container--below .select2-selection__rendered,.acf-admin-page .acf-field-delete-terms .select2-container--open.select2-container--below .select2-selection__rendered,.acf-admin-page .acf-field-assign-terms .select2-container--open.select2-container--below .select2-selection__rendered,.acf-admin-page .acf-field-meta-box .select2-container--open.select2-container--below .select2-selection__rendered{border-bottom-right-radius:0 !important;border-bottom-left-radius:0 !important}.acf-admin-page .acf-field-setting-type .select2-container--open.select2-container--above .select2-selection__rendered,.acf-admin-page .acf-field-permalink-rewrite .select2-container--open.select2-container--above .select2-selection__rendered,.acf-admin-page .acf-field-query-var .select2-container--open.select2-container--above .select2-selection__rendered,.acf-admin-page .acf-field-capability .select2-container--open.select2-container--above .select2-selection__rendered,.acf-admin-page .acf-field-parent-slug .select2-container--open.select2-container--above .select2-selection__rendered,.acf-admin-page .acf-field-data-storage .select2-container--open.select2-container--above .select2-selection__rendered,.acf-admin-page .acf-field-manage-terms .select2-container--open.select2-container--above .select2-selection__rendered,.acf-admin-page .acf-field-edit-terms .select2-container--open.select2-container--above .select2-selection__rendered,.acf-admin-page .acf-field-delete-terms .select2-container--open.select2-container--above .select2-selection__rendered,.acf-admin-page .acf-field-assign-terms .select2-container--open.select2-container--above .select2-selection__rendered,.acf-admin-page .acf-field-meta-box .select2-container--open.select2-container--above .select2-selection__rendered{border-top-right-radius:0 !important;border-top-left-radius:0 !important;border-bottom-color:#6bb5d8 !important;border-top-color:#d0d5dd !important}.acf-admin-page .acf-field-setting-type .acf-selection.has-icon,.acf-admin-page .acf-field-permalink-rewrite .acf-selection.has-icon,.acf-admin-page .acf-field-query-var .acf-selection.has-icon,.acf-admin-page .acf-field-capability .acf-selection.has-icon,.acf-admin-page .acf-field-parent-slug .acf-selection.has-icon,.acf-admin-page .acf-field-data-storage .acf-selection.has-icon,.acf-admin-page .acf-field-manage-terms .acf-selection.has-icon,.acf-admin-page .acf-field-edit-terms .acf-selection.has-icon,.acf-admin-page .acf-field-delete-terms .acf-selection.has-icon,.acf-admin-page .acf-field-assign-terms .acf-selection.has-icon,.acf-admin-page .acf-field-meta-box .acf-selection.has-icon{margin-left:6px}.rtl.acf-admin-page .acf-field-setting-type .acf-selection.has-icon,.acf-admin-page .acf-field-permalink-rewrite .acf-selection.has-icon,.acf-admin-page .acf-field-query-var .acf-selection.has-icon,.acf-admin-page .acf-field-capability .acf-selection.has-icon,.acf-admin-page .acf-field-parent-slug .acf-selection.has-icon,.acf-admin-page .acf-field-data-storage .acf-selection.has-icon,.acf-admin-page .acf-field-manage-terms .acf-selection.has-icon,.acf-admin-page .acf-field-edit-terms .acf-selection.has-icon,.acf-admin-page .acf-field-delete-terms .acf-selection.has-icon,.acf-admin-page .acf-field-assign-terms .acf-selection.has-icon,.acf-admin-page .acf-field-meta-box .acf-selection.has-icon{margin-right:6px}.acf-admin-page .acf-field-setting-type .select2-selection__arrow,.acf-admin-page .acf-field-permalink-rewrite .select2-selection__arrow,.acf-admin-page .acf-field-query-var .select2-selection__arrow,.acf-admin-page .acf-field-capability .select2-selection__arrow,.acf-admin-page .acf-field-parent-slug .select2-selection__arrow,.acf-admin-page .acf-field-data-storage .select2-selection__arrow,.acf-admin-page .acf-field-manage-terms .select2-selection__arrow,.acf-admin-page .acf-field-edit-terms .select2-selection__arrow,.acf-admin-page .acf-field-delete-terms .select2-selection__arrow,.acf-admin-page .acf-field-assign-terms .select2-selection__arrow,.acf-admin-page .acf-field-meta-box .select2-selection__arrow{width:20px;height:20px;top:calc(50% - 10px);right:12px;background-color:rgba(0,0,0,0)}.acf-admin-page .acf-field-setting-type .select2-selection__arrow:after,.acf-admin-page .acf-field-permalink-rewrite .select2-selection__arrow:after,.acf-admin-page .acf-field-query-var .select2-selection__arrow:after,.acf-admin-page .acf-field-capability .select2-selection__arrow:after,.acf-admin-page .acf-field-parent-slug .select2-selection__arrow:after,.acf-admin-page .acf-field-data-storage .select2-selection__arrow:after,.acf-admin-page .acf-field-manage-terms .select2-selection__arrow:after,.acf-admin-page .acf-field-edit-terms .select2-selection__arrow:after,.acf-admin-page .acf-field-delete-terms .select2-selection__arrow:after,.acf-admin-page .acf-field-assign-terms .select2-selection__arrow:after,.acf-admin-page .acf-field-meta-box .select2-selection__arrow:after{content:"";display:block;position:absolute;z-index:850;top:1px;left:0;width:20px;height:20px;-webkit-mask-image:url("../../images/icons/icon-chevron-down.svg");mask-image:url("../../images/icons/icon-chevron-down.svg");background-color:#667085;border:none;border-radius:0;-webkit-mask-size:contain;mask-size:contain;-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;-webkit-mask-position:center;mask-position:center;text-indent:500%;white-space:nowrap;overflow:hidden}.acf-admin-page .acf-field-setting-type .select2-selection__arrow b[role=presentation],.acf-admin-page .acf-field-permalink-rewrite .select2-selection__arrow b[role=presentation],.acf-admin-page .acf-field-query-var .select2-selection__arrow b[role=presentation],.acf-admin-page .acf-field-capability .select2-selection__arrow b[role=presentation],.acf-admin-page .acf-field-parent-slug .select2-selection__arrow b[role=presentation],.acf-admin-page .acf-field-data-storage .select2-selection__arrow b[role=presentation],.acf-admin-page .acf-field-manage-terms .select2-selection__arrow b[role=presentation],.acf-admin-page .acf-field-edit-terms .select2-selection__arrow b[role=presentation],.acf-admin-page .acf-field-delete-terms .select2-selection__arrow b[role=presentation],.acf-admin-page .acf-field-assign-terms .select2-selection__arrow b[role=presentation],.acf-admin-page .acf-field-meta-box .select2-selection__arrow b[role=presentation]{display:none}.acf-admin-page .acf-field-setting-type .select2-container--open .select2-selection__arrow:after,.acf-admin-page .acf-field-permalink-rewrite .select2-container--open .select2-selection__arrow:after,.acf-admin-page .acf-field-query-var .select2-container--open .select2-selection__arrow:after,.acf-admin-page .acf-field-capability .select2-container--open .select2-selection__arrow:after,.acf-admin-page .acf-field-parent-slug .select2-container--open .select2-selection__arrow:after,.acf-admin-page .acf-field-data-storage .select2-container--open .select2-selection__arrow:after,.acf-admin-page .acf-field-manage-terms .select2-container--open .select2-selection__arrow:after,.acf-admin-page .acf-field-edit-terms .select2-container--open .select2-selection__arrow:after,.acf-admin-page .acf-field-delete-terms .select2-container--open .select2-selection__arrow:after,.acf-admin-page .acf-field-assign-terms .select2-container--open .select2-selection__arrow:after,.acf-admin-page .acf-field-meta-box .select2-container--open .select2-selection__arrow:after{-webkit-mask-image:url("../../images/icons/icon-chevron-up.svg");mask-image:url("../../images/icons/icon-chevron-up.svg")}.acf-admin-page .field-type-select-results{position:relative;top:4px;z-index:1002;border-radius:0 0 6px 6px;box-shadow:0px 8px 24px 4px rgba(16,24,40,.12)}.acf-admin-page .field-type-select-results.select2-dropdown--above{display:flex;flex-direction:column-reverse;top:0;border-radius:6px 6px 0 0;z-index:99999}.select2-container.select2-container--open.acf-admin-page .field-type-select-results{box-shadow:0px 0px 0px 3px #ebf5fa,0px 8px 24px 4px rgba(16,24,40,.12)}.acf-admin-page .field-type-select-results .acf-selection.has-icon{margin-left:6px}.rtl.acf-admin-page .field-type-select-results .acf-selection.has-icon{margin-right:6px}.acf-admin-page .field-type-select-results .select2-search{position:relative;margin:0;padding:0}.acf-admin-page .field-type-select-results .select2-search--dropdown:after{content:"";display:block;position:absolute;top:12px;left:13px;width:16px;height:16px;-webkit-mask-image:url("../../images/icons/icon-search.svg");mask-image:url("../../images/icons/icon-search.svg");background-color:#98a2b3;border:none;border-radius:0;-webkit-mask-size:contain;mask-size:contain;-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;-webkit-mask-position:center;mask-position:center;text-indent:500%;white-space:nowrap;overflow:hidden}.rtl.acf-admin-page .field-type-select-results .select2-search--dropdown:after{right:12px;left:auto}.acf-admin-page .field-type-select-results .select2-search .select2-search__field{padding-left:38px;border-right:0;border-bottom:0;border-left:0;border-radius:0}.rtl.acf-admin-page .field-type-select-results .select2-search .select2-search__field{padding-right:38px;padding-left:0}.acf-admin-page .field-type-select-results .select2-search .select2-search__field:focus{border-top-color:#d0d5dd;outline:0}.acf-admin-page .field-type-select-results .select2-results__options{max-height:440px}.acf-admin-page .field-type-select-results .select2-results__option .select2-results__option--highlighted{background-color:#0783be !important;color:#f9fafb !important}.acf-admin-page .field-type-select-results .select2-results__option .select2-results__option{display:inline-flex;position:relative;width:calc(100% - 24px);min-height:32px;padding-top:0;padding-right:12px;padding-bottom:0;padding-left:12px;align-items:center}.acf-admin-page .field-type-select-results .select2-results__option .select2-results__option .field-type-icon{top:auto;width:18px;height:18px;margin-right:2px;box-shadow:0 0 0 1px #f9fafb}.acf-admin-page .field-type-select-results .select2-results__option .select2-results__option .field-type-icon:before{width:9px;height:9px}.acf-admin-page .field-type-select-results .select2-results__option[aria-selected=true]{background-color:#ebf5fa !important;color:#344054 !important}.acf-admin-page .field-type-select-results .select2-results__option[aria-selected=true]:after{content:"";right:13px;position:absolute;width:16px;height:16px;-webkit-mask-image:url("../../images/icons/icon-check.svg");mask-image:url("../../images/icons/icon-check.svg");background-color:#0783be;border:none;border-radius:0;-webkit-mask-size:contain;mask-size:contain;-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;-webkit-mask-position:center;mask-position:center;text-indent:500%;white-space:nowrap;overflow:hidden}.rtl.acf-admin-page .field-type-select-results .select2-results__option[aria-selected=true]:after{left:13px;right:auto}.acf-admin-page .field-type-select-results .select2-results__group{display:inline-flex;align-items:center;width:calc(100% - 24px);min-height:25px;background-color:#f9fafb;border-top-width:1px;border-top-style:solid;border-top-color:#eaecf0;border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#eaecf0;color:#98a2b3;font-size:11px;margin-bottom:0;padding-top:0;padding-right:12px;padding-bottom:0;padding-left:12px;font-weight:normal}.acf-admin-page.rtl .acf-field-setting-type .select2-selection__arrow:after,.acf-admin-page.rtl .acf-field-permalink-rewrite .select2-selection__arrow:after,.acf-admin-page.rtl .acf-field-query-var .select2-selection__arrow:after{right:auto;left:10px}.rtl.post-type-acf-field-group .acf-field-setting-name .acf-tip,.rtl.acf-internal-post-type .acf-field-setting-name .acf-tip{left:auto;right:654px}.acf-internal-post-type .tablenav.top{display:none}.acf-internal-post-type .subsubsub{margin-bottom:3px}.acf-internal-post-type .wp-list-table{margin-top:0;margin-right:0;margin-bottom:0;margin-left:0;border-radius:8px;border:none;overflow:hidden;box-shadow:0px 1px 2px rgba(16,24,40,.1)}.acf-internal-post-type .wp-list-table strong{color:#98a2b3;margin:0}.acf-internal-post-type .wp-list-table a.row-title{font-size:13px !important;font-weight:500}.acf-internal-post-type .wp-list-table th,.acf-internal-post-type .wp-list-table td{color:#344054}.acf-internal-post-type .wp-list-table th.sortable a,.acf-internal-post-type .wp-list-table td.sortable a{padding:0}.acf-internal-post-type .wp-list-table th.check-column,.acf-internal-post-type .wp-list-table td.check-column{padding-top:12px;padding-right:16px;padding-left:16px}@media screen and (max-width: 880px){.acf-internal-post-type .wp-list-table th.check-column,.acf-internal-post-type .wp-list-table td.check-column{vertical-align:top;padding-right:2px;padding-left:10px}}.acf-internal-post-type .wp-list-table th input,.acf-internal-post-type .wp-list-table td input{margin:0;padding:0}.acf-internal-post-type .wp-list-table th .acf-more-items,.acf-internal-post-type .wp-list-table td .acf-more-items{display:inline-flex;flex-direction:row;justify-content:center;align-items:center;padding:0px 6px 1px;gap:8px;width:25px;height:16px;background:#eaecf0;border-radius:100px;font-weight:400;font-size:10px;color:#475467}.acf-internal-post-type .wp-list-table th .acf-emdash,.acf-internal-post-type .wp-list-table td .acf-emdash{color:#d0d5dd}.acf-internal-post-type .wp-list-table thead th,.acf-internal-post-type .wp-list-table thead td,.acf-internal-post-type .wp-list-table tfoot th,.acf-internal-post-type .wp-list-table tfoot td{height:48px;padding-right:24px;padding-left:24px;box-sizing:border-box;background-color:#f9fafb;border-color:#eaecf0;font-weight:500}@media screen and (max-width: 880px){.acf-internal-post-type .wp-list-table thead th,.acf-internal-post-type .wp-list-table thead td,.acf-internal-post-type .wp-list-table tfoot th,.acf-internal-post-type .wp-list-table tfoot td{padding-right:16px;padding-left:8px}}@media screen and (max-width: 880px){.acf-internal-post-type .wp-list-table thead th.check-column,.acf-internal-post-type .wp-list-table thead td.check-column,.acf-internal-post-type .wp-list-table tfoot th.check-column,.acf-internal-post-type .wp-list-table tfoot td.check-column{vertical-align:middle}}.acf-internal-post-type .wp-list-table tbody th,.acf-internal-post-type .wp-list-table tbody td{box-sizing:border-box;height:60px;padding-top:10px;padding-right:24px;padding-bottom:10px;padding-left:24px;vertical-align:top;background-color:#fff;border-bottom-width:1px;border-bottom-color:#eaecf0;border-bottom-style:solid}@media screen and (max-width: 880px){.acf-internal-post-type .wp-list-table tbody th,.acf-internal-post-type .wp-list-table tbody td{padding-right:16px;padding-left:8px}}.acf-internal-post-type .wp-list-table .column-acf-key{white-space:nowrap}.acf-internal-post-type .wp-list-table .column-acf-key .acf-icon-key-solid{display:inline-block;position:relative;bottom:-2px;width:15px;height:15px;margin-right:4px;color:#98a2b3}.acf-internal-post-type .wp-list-table .acf-location .dashicons{position:relative;bottom:-2px;width:16px;height:16px;margin-right:6px;font-size:16px;color:#98a2b3}.acf-internal-post-type .wp-list-table .post-state{color:#667085}.acf-internal-post-type .wp-list-table tr:hover,.acf-internal-post-type .wp-list-table tr:focus-within{background:#f7f7f7}.acf-internal-post-type .wp-list-table tr:hover .row-actions,.acf-internal-post-type .wp-list-table tr:focus-within .row-actions{margin-bottom:0}@media screen and (min-width: 782px){.acf-internal-post-type .wp-list-table .column-acf-count{width:10%}}.acf-internal-post-type .wp-list-table .row-actions span.file{display:block;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.acf-internal-post-type.rtl .wp-list-table .column-acf-key .acf-icon-key-solid{margin-left:4px;margin-right:0}.acf-internal-post-type.rtl .wp-list-table .acf-location .dashicons{margin-left:6px;margin-right:0}.acf-internal-post-type .row-actions{margin-top:2px;padding-top:0;padding-right:0;padding-bottom:0;padding-left:0;line-height:14px;color:#d0d5dd}.acf-internal-post-type .row-actions .trash a{color:#d94f4f}.acf-internal-post-type .widefat thead td.check-column,.acf-internal-post-type .widefat tfoot td.check-column{padding-top:0}.acf-internal-post-type .row-actions a:hover{color:#044767}.acf-internal-post-type .row-actions .trash a{color:#a00}.acf-internal-post-type .row-actions .trash a:hover{color:red}.acf-internal-post-type .row-actions.visible{margin-bottom:0;opacity:1}.acf-internal-post-type #the-list tr:hover td,.acf-internal-post-type #the-list tr:hover th{background-color:#f7fbfd}.acf-internal-post-type .tablenav{margin-top:24px;margin-right:0;margin-bottom:0;margin-left:0;padding-top:0;padding-right:0;padding-bottom:0;padding-left:0;color:#667085}.acf-internal-post-type #posts-filter p.search-box{margin-top:5px;margin-right:0;margin-bottom:24px;margin-left:0}.acf-internal-post-type #posts-filter p.search-box #post-search-input{min-width:280px;margin-top:0;margin-right:8px;margin-bottom:0;margin-left:0}@media screen and (max-width: 768px){.acf-internal-post-type #posts-filter p.search-box{display:flex;box-sizing:border-box;padding-right:24px;margin-right:16px;position:inherit}.acf-internal-post-type #posts-filter p.search-box #post-search-input{min-width:auto}}.rtl.acf-internal-post-type #posts-filter p.search-box #post-search-input{margin-right:0;margin-left:8px}@media screen and (max-width: 768px){.rtl.acf-internal-post-type #posts-filter p.search-box{padding-left:24px;padding-right:0;margin-left:16px;margin-right:0}}.acf-internal-post-type .subsubsub{display:flex;align-items:flex-end;height:40px;margin-bottom:16px}.acf-internal-post-type .subsubsub li{margin-top:0;margin-right:4px;color:#98a2b3}.acf-internal-post-type .subsubsub li .count{color:#667085}.acf-internal-post-type .tablenav-pages{display:flex;align-items:center}.acf-internal-post-type .tablenav-pages.no-pages{display:none}.acf-internal-post-type .tablenav-pages .displaying-num{margin-top:0;margin-right:16px;margin-bottom:0;margin-left:0}.acf-internal-post-type .tablenav-pages .pagination-links{display:flex;align-items:center}.acf-internal-post-type .tablenav-pages .pagination-links #table-paging{margin-top:0;margin-right:4px;margin-bottom:0;margin-left:8px}.acf-internal-post-type .tablenav-pages .pagination-links #table-paging .total-pages{margin-right:0}.acf-internal-post-type .tablenav-pages.one-page .pagination-links{display:none}.acf-internal-post-type .tablenav-pages .pagination-links .button{display:inline-flex;align-items:center;align-content:center;justify-content:center;min-width:40px;margin-top:0;margin-right:0;margin-bottom:0;margin-left:0;padding-top:0;padding-right:0;padding-bottom:0;padding-left:0;background-color:rgba(0,0,0,0)}.acf-internal-post-type .tablenav-pages .pagination-links .button:nth-child(1),.acf-internal-post-type .tablenav-pages .pagination-links .button:nth-child(2),.acf-internal-post-type .tablenav-pages .pagination-links .button:last-child,.acf-internal-post-type .tablenav-pages .pagination-links .button:nth-last-child(2){display:inline-block;position:relative;text-indent:100%;white-space:nowrap;overflow:hidden;margin-left:4px}.acf-internal-post-type .tablenav-pages .pagination-links .button:nth-child(1):before,.acf-internal-post-type .tablenav-pages .pagination-links .button:nth-child(2):before,.acf-internal-post-type .tablenav-pages .pagination-links .button:last-child:before,.acf-internal-post-type .tablenav-pages .pagination-links .button:nth-last-child(2):before{content:"";display:block;position:absolute;width:100%;height:100%;top:0;left:0;background-color:#0783be;border-radius:0;-webkit-mask-size:20px;mask-size:20px;-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;-webkit-mask-position:center;mask-position:center}.acf-internal-post-type .tablenav-pages .pagination-links .button:nth-child(1):before{-webkit-mask-image:url("../../images/icons/icon-chevron-left-double.svg");mask-image:url("../../images/icons/icon-chevron-left-double.svg")}.acf-internal-post-type .tablenav-pages .pagination-links .button:nth-child(2):before{-webkit-mask-image:url("../../images/icons/icon-chevron-left.svg");mask-image:url("../../images/icons/icon-chevron-left.svg")}.acf-internal-post-type .tablenav-pages .pagination-links .button:nth-last-child(2):before{-webkit-mask-image:url("../../images/icons/icon-chevron-right.svg");mask-image:url("../../images/icons/icon-chevron-right.svg")}.acf-internal-post-type .tablenav-pages .pagination-links .button:last-child:before{-webkit-mask-image:url("../../images/icons/icon-chevron-right-double.svg");mask-image:url("../../images/icons/icon-chevron-right-double.svg")}.acf-internal-post-type .tablenav-pages .pagination-links .button:hover{border-color:#066998;background-color:rgba(7,131,190,.05)}.acf-internal-post-type .tablenav-pages .pagination-links .button:hover:before{background-color:#066998}.acf-internal-post-type .tablenav-pages .pagination-links .button.disabled{background-color:rgba(0,0,0,0) !important}.acf-internal-post-type .tablenav-pages .pagination-links .button.disabled.disabled:before{background-color:#d0d5dd}.acf-no-field-groups-wrapper,.acf-no-taxonomies-wrapper,.acf-no-post-types-wrapper,.acf-no-options-pages-wrapper,.acf-options-preview-wrapper{display:flex;justify-content:center;padding-top:48px;padding-bottom:48px}.acf-no-field-groups-wrapper .acf-no-field-groups-inner,.acf-no-field-groups-wrapper .acf-no-taxonomies-inner,.acf-no-field-groups-wrapper .acf-no-post-types-inner,.acf-no-field-groups-wrapper .acf-no-options-pages-inner,.acf-no-field-groups-wrapper .acf-options-preview-inner,.acf-no-taxonomies-wrapper .acf-no-field-groups-inner,.acf-no-taxonomies-wrapper .acf-no-taxonomies-inner,.acf-no-taxonomies-wrapper .acf-no-post-types-inner,.acf-no-taxonomies-wrapper .acf-no-options-pages-inner,.acf-no-taxonomies-wrapper .acf-options-preview-inner,.acf-no-post-types-wrapper .acf-no-field-groups-inner,.acf-no-post-types-wrapper .acf-no-taxonomies-inner,.acf-no-post-types-wrapper .acf-no-post-types-inner,.acf-no-post-types-wrapper .acf-no-options-pages-inner,.acf-no-post-types-wrapper .acf-options-preview-inner,.acf-no-options-pages-wrapper .acf-no-field-groups-inner,.acf-no-options-pages-wrapper .acf-no-taxonomies-inner,.acf-no-options-pages-wrapper .acf-no-post-types-inner,.acf-no-options-pages-wrapper .acf-no-options-pages-inner,.acf-no-options-pages-wrapper .acf-options-preview-inner,.acf-options-preview-wrapper .acf-no-field-groups-inner,.acf-options-preview-wrapper .acf-no-taxonomies-inner,.acf-options-preview-wrapper .acf-no-post-types-inner,.acf-options-preview-wrapper .acf-no-options-pages-inner,.acf-options-preview-wrapper .acf-options-preview-inner{display:flex;flex-wrap:wrap;justify-content:center;align-content:center;align-items:flex-start;text-align:center;max-width:420px;min-height:320px}.acf-no-field-groups-wrapper .acf-no-field-groups-inner img,.acf-no-field-groups-wrapper .acf-no-field-groups-inner h2,.acf-no-field-groups-wrapper .acf-no-field-groups-inner p,.acf-no-field-groups-wrapper .acf-no-taxonomies-inner img,.acf-no-field-groups-wrapper .acf-no-taxonomies-inner h2,.acf-no-field-groups-wrapper .acf-no-taxonomies-inner p,.acf-no-field-groups-wrapper .acf-no-post-types-inner img,.acf-no-field-groups-wrapper .acf-no-post-types-inner h2,.acf-no-field-groups-wrapper .acf-no-post-types-inner p,.acf-no-field-groups-wrapper .acf-no-options-pages-inner img,.acf-no-field-groups-wrapper .acf-no-options-pages-inner h2,.acf-no-field-groups-wrapper .acf-no-options-pages-inner p,.acf-no-field-groups-wrapper .acf-options-preview-inner img,.acf-no-field-groups-wrapper .acf-options-preview-inner h2,.acf-no-field-groups-wrapper .acf-options-preview-inner p,.acf-no-taxonomies-wrapper .acf-no-field-groups-inner img,.acf-no-taxonomies-wrapper .acf-no-field-groups-inner h2,.acf-no-taxonomies-wrapper .acf-no-field-groups-inner p,.acf-no-taxonomies-wrapper .acf-no-taxonomies-inner img,.acf-no-taxonomies-wrapper .acf-no-taxonomies-inner h2,.acf-no-taxonomies-wrapper .acf-no-taxonomies-inner p,.acf-no-taxonomies-wrapper .acf-no-post-types-inner img,.acf-no-taxonomies-wrapper .acf-no-post-types-inner h2,.acf-no-taxonomies-wrapper .acf-no-post-types-inner p,.acf-no-taxonomies-wrapper .acf-no-options-pages-inner img,.acf-no-taxonomies-wrapper .acf-no-options-pages-inner h2,.acf-no-taxonomies-wrapper .acf-no-options-pages-inner p,.acf-no-taxonomies-wrapper .acf-options-preview-inner img,.acf-no-taxonomies-wrapper .acf-options-preview-inner h2,.acf-no-taxonomies-wrapper .acf-options-preview-inner p,.acf-no-post-types-wrapper .acf-no-field-groups-inner img,.acf-no-post-types-wrapper .acf-no-field-groups-inner h2,.acf-no-post-types-wrapper .acf-no-field-groups-inner p,.acf-no-post-types-wrapper .acf-no-taxonomies-inner img,.acf-no-post-types-wrapper .acf-no-taxonomies-inner h2,.acf-no-post-types-wrapper .acf-no-taxonomies-inner p,.acf-no-post-types-wrapper .acf-no-post-types-inner img,.acf-no-post-types-wrapper .acf-no-post-types-inner h2,.acf-no-post-types-wrapper .acf-no-post-types-inner p,.acf-no-post-types-wrapper .acf-no-options-pages-inner img,.acf-no-post-types-wrapper .acf-no-options-pages-inner h2,.acf-no-post-types-wrapper .acf-no-options-pages-inner p,.acf-no-post-types-wrapper .acf-options-preview-inner img,.acf-no-post-types-wrapper .acf-options-preview-inner h2,.acf-no-post-types-wrapper .acf-options-preview-inner p,.acf-no-options-pages-wrapper .acf-no-field-groups-inner img,.acf-no-options-pages-wrapper .acf-no-field-groups-inner h2,.acf-no-options-pages-wrapper .acf-no-field-groups-inner p,.acf-no-options-pages-wrapper .acf-no-taxonomies-inner img,.acf-no-options-pages-wrapper .acf-no-taxonomies-inner h2,.acf-no-options-pages-wrapper .acf-no-taxonomies-inner p,.acf-no-options-pages-wrapper .acf-no-post-types-inner img,.acf-no-options-pages-wrapper .acf-no-post-types-inner h2,.acf-no-options-pages-wrapper .acf-no-post-types-inner p,.acf-no-options-pages-wrapper .acf-no-options-pages-inner img,.acf-no-options-pages-wrapper .acf-no-options-pages-inner h2,.acf-no-options-pages-wrapper .acf-no-options-pages-inner p,.acf-no-options-pages-wrapper .acf-options-preview-inner img,.acf-no-options-pages-wrapper .acf-options-preview-inner h2,.acf-no-options-pages-wrapper .acf-options-preview-inner p,.acf-options-preview-wrapper .acf-no-field-groups-inner img,.acf-options-preview-wrapper .acf-no-field-groups-inner h2,.acf-options-preview-wrapper .acf-no-field-groups-inner p,.acf-options-preview-wrapper .acf-no-taxonomies-inner img,.acf-options-preview-wrapper .acf-no-taxonomies-inner h2,.acf-options-preview-wrapper .acf-no-taxonomies-inner p,.acf-options-preview-wrapper .acf-no-post-types-inner img,.acf-options-preview-wrapper .acf-no-post-types-inner h2,.acf-options-preview-wrapper .acf-no-post-types-inner p,.acf-options-preview-wrapper .acf-no-options-pages-inner img,.acf-options-preview-wrapper .acf-no-options-pages-inner h2,.acf-options-preview-wrapper .acf-no-options-pages-inner p,.acf-options-preview-wrapper .acf-options-preview-inner img,.acf-options-preview-wrapper .acf-options-preview-inner h2,.acf-options-preview-wrapper .acf-options-preview-inner p{flex:1 0 100%}.acf-no-field-groups-wrapper .acf-no-field-groups-inner h2,.acf-no-field-groups-wrapper .acf-no-taxonomies-inner h2,.acf-no-field-groups-wrapper .acf-no-post-types-inner h2,.acf-no-field-groups-wrapper .acf-no-options-pages-inner h2,.acf-no-field-groups-wrapper .acf-options-preview-inner h2,.acf-no-taxonomies-wrapper .acf-no-field-groups-inner h2,.acf-no-taxonomies-wrapper .acf-no-taxonomies-inner h2,.acf-no-taxonomies-wrapper .acf-no-post-types-inner h2,.acf-no-taxonomies-wrapper .acf-no-options-pages-inner h2,.acf-no-taxonomies-wrapper .acf-options-preview-inner h2,.acf-no-post-types-wrapper .acf-no-field-groups-inner h2,.acf-no-post-types-wrapper .acf-no-taxonomies-inner h2,.acf-no-post-types-wrapper .acf-no-post-types-inner h2,.acf-no-post-types-wrapper .acf-no-options-pages-inner h2,.acf-no-post-types-wrapper .acf-options-preview-inner h2,.acf-no-options-pages-wrapper .acf-no-field-groups-inner h2,.acf-no-options-pages-wrapper .acf-no-taxonomies-inner h2,.acf-no-options-pages-wrapper .acf-no-post-types-inner h2,.acf-no-options-pages-wrapper .acf-no-options-pages-inner h2,.acf-no-options-pages-wrapper .acf-options-preview-inner h2,.acf-options-preview-wrapper .acf-no-field-groups-inner h2,.acf-options-preview-wrapper .acf-no-taxonomies-inner h2,.acf-options-preview-wrapper .acf-no-post-types-inner h2,.acf-options-preview-wrapper .acf-no-options-pages-inner h2,.acf-options-preview-wrapper .acf-options-preview-inner h2{margin-top:32px;margin-bottom:0;padding:0;color:#344054;line-height:1.6rem}.acf-no-field-groups-wrapper .acf-no-field-groups-inner p,.acf-no-field-groups-wrapper .acf-no-taxonomies-inner p,.acf-no-field-groups-wrapper .acf-no-post-types-inner p,.acf-no-field-groups-wrapper .acf-no-options-pages-inner p,.acf-no-field-groups-wrapper .acf-options-preview-inner p,.acf-no-taxonomies-wrapper .acf-no-field-groups-inner p,.acf-no-taxonomies-wrapper .acf-no-taxonomies-inner p,.acf-no-taxonomies-wrapper .acf-no-post-types-inner p,.acf-no-taxonomies-wrapper .acf-no-options-pages-inner p,.acf-no-taxonomies-wrapper .acf-options-preview-inner p,.acf-no-post-types-wrapper .acf-no-field-groups-inner p,.acf-no-post-types-wrapper .acf-no-taxonomies-inner p,.acf-no-post-types-wrapper .acf-no-post-types-inner p,.acf-no-post-types-wrapper .acf-no-options-pages-inner p,.acf-no-post-types-wrapper .acf-options-preview-inner p,.acf-no-options-pages-wrapper .acf-no-field-groups-inner p,.acf-no-options-pages-wrapper .acf-no-taxonomies-inner p,.acf-no-options-pages-wrapper .acf-no-post-types-inner p,.acf-no-options-pages-wrapper .acf-no-options-pages-inner p,.acf-no-options-pages-wrapper .acf-options-preview-inner p,.acf-options-preview-wrapper .acf-no-field-groups-inner p,.acf-options-preview-wrapper .acf-no-taxonomies-inner p,.acf-options-preview-wrapper .acf-no-post-types-inner p,.acf-options-preview-wrapper .acf-no-options-pages-inner p,.acf-options-preview-wrapper .acf-options-preview-inner p{margin-top:12px;margin-bottom:0;padding:0;color:#667085}.acf-no-field-groups-wrapper .acf-no-field-groups-inner p.acf-small,.acf-no-field-groups-wrapper .acf-no-taxonomies-inner p.acf-small,.acf-no-field-groups-wrapper .acf-no-post-types-inner p.acf-small,.acf-no-field-groups-wrapper .acf-no-options-pages-inner p.acf-small,.acf-no-field-groups-wrapper .acf-options-preview-inner p.acf-small,.acf-no-taxonomies-wrapper .acf-no-field-groups-inner p.acf-small,.acf-no-taxonomies-wrapper .acf-no-taxonomies-inner p.acf-small,.acf-no-taxonomies-wrapper .acf-no-post-types-inner p.acf-small,.acf-no-taxonomies-wrapper .acf-no-options-pages-inner p.acf-small,.acf-no-taxonomies-wrapper .acf-options-preview-inner p.acf-small,.acf-no-post-types-wrapper .acf-no-field-groups-inner p.acf-small,.acf-no-post-types-wrapper .acf-no-taxonomies-inner p.acf-small,.acf-no-post-types-wrapper .acf-no-post-types-inner p.acf-small,.acf-no-post-types-wrapper .acf-no-options-pages-inner p.acf-small,.acf-no-post-types-wrapper .acf-options-preview-inner p.acf-small,.acf-no-options-pages-wrapper .acf-no-field-groups-inner p.acf-small,.acf-no-options-pages-wrapper .acf-no-taxonomies-inner p.acf-small,.acf-no-options-pages-wrapper .acf-no-post-types-inner p.acf-small,.acf-no-options-pages-wrapper .acf-no-options-pages-inner p.acf-small,.acf-no-options-pages-wrapper .acf-options-preview-inner p.acf-small,.acf-options-preview-wrapper .acf-no-field-groups-inner p.acf-small,.acf-options-preview-wrapper .acf-no-taxonomies-inner p.acf-small,.acf-options-preview-wrapper .acf-no-post-types-inner p.acf-small,.acf-options-preview-wrapper .acf-no-options-pages-inner p.acf-small,.acf-options-preview-wrapper .acf-options-preview-inner p.acf-small{display:block;position:relative;margin-top:32px}.acf-no-field-groups-wrapper .acf-no-field-groups-inner img,.acf-no-field-groups-wrapper .acf-no-taxonomies-inner img,.acf-no-field-groups-wrapper .acf-no-post-types-inner img,.acf-no-field-groups-wrapper .acf-no-options-pages-inner img,.acf-no-field-groups-wrapper .acf-options-preview-inner img,.acf-no-taxonomies-wrapper .acf-no-field-groups-inner img,.acf-no-taxonomies-wrapper .acf-no-taxonomies-inner img,.acf-no-taxonomies-wrapper .acf-no-post-types-inner img,.acf-no-taxonomies-wrapper .acf-no-options-pages-inner img,.acf-no-taxonomies-wrapper .acf-options-preview-inner img,.acf-no-post-types-wrapper .acf-no-field-groups-inner img,.acf-no-post-types-wrapper .acf-no-taxonomies-inner img,.acf-no-post-types-wrapper .acf-no-post-types-inner img,.acf-no-post-types-wrapper .acf-no-options-pages-inner img,.acf-no-post-types-wrapper .acf-options-preview-inner img,.acf-no-options-pages-wrapper .acf-no-field-groups-inner img,.acf-no-options-pages-wrapper .acf-no-taxonomies-inner img,.acf-no-options-pages-wrapper .acf-no-post-types-inner img,.acf-no-options-pages-wrapper .acf-no-options-pages-inner img,.acf-no-options-pages-wrapper .acf-options-preview-inner img,.acf-options-preview-wrapper .acf-no-field-groups-inner img,.acf-options-preview-wrapper .acf-no-taxonomies-inner img,.acf-options-preview-wrapper .acf-no-post-types-inner img,.acf-options-preview-wrapper .acf-no-options-pages-inner img,.acf-options-preview-wrapper .acf-options-preview-inner img{max-width:284px;margin-bottom:0}.acf-no-field-groups-wrapper .acf-no-field-groups-inner .acf-btn,.acf-no-field-groups-wrapper .acf-no-taxonomies-inner .acf-btn,.acf-no-field-groups-wrapper .acf-no-post-types-inner .acf-btn,.acf-no-field-groups-wrapper .acf-no-options-pages-inner .acf-btn,.acf-no-field-groups-wrapper .acf-options-preview-inner .acf-btn,.acf-no-taxonomies-wrapper .acf-no-field-groups-inner .acf-btn,.acf-no-taxonomies-wrapper .acf-no-taxonomies-inner .acf-btn,.acf-no-taxonomies-wrapper .acf-no-post-types-inner .acf-btn,.acf-no-taxonomies-wrapper .acf-no-options-pages-inner .acf-btn,.acf-no-taxonomies-wrapper .acf-options-preview-inner .acf-btn,.acf-no-post-types-wrapper .acf-no-field-groups-inner .acf-btn,.acf-no-post-types-wrapper .acf-no-taxonomies-inner .acf-btn,.acf-no-post-types-wrapper .acf-no-post-types-inner .acf-btn,.acf-no-post-types-wrapper .acf-no-options-pages-inner .acf-btn,.acf-no-post-types-wrapper .acf-options-preview-inner .acf-btn,.acf-no-options-pages-wrapper .acf-no-field-groups-inner .acf-btn,.acf-no-options-pages-wrapper .acf-no-taxonomies-inner .acf-btn,.acf-no-options-pages-wrapper .acf-no-post-types-inner .acf-btn,.acf-no-options-pages-wrapper .acf-no-options-pages-inner .acf-btn,.acf-no-options-pages-wrapper .acf-options-preview-inner .acf-btn,.acf-options-preview-wrapper .acf-no-field-groups-inner .acf-btn,.acf-options-preview-wrapper .acf-no-taxonomies-inner .acf-btn,.acf-options-preview-wrapper .acf-no-post-types-inner .acf-btn,.acf-options-preview-wrapper .acf-no-options-pages-inner .acf-btn,.acf-options-preview-wrapper .acf-options-preview-inner .acf-btn{margin-top:32px}.acf-no-field-groups-wrapper .acf-no-post-types-inner img,.acf-no-field-groups-wrapper .acf-no-options-pages-inner img,.acf-no-taxonomies-wrapper .acf-no-post-types-inner img,.acf-no-taxonomies-wrapper .acf-no-options-pages-inner img,.acf-no-post-types-wrapper .acf-no-post-types-inner img,.acf-no-post-types-wrapper .acf-no-options-pages-inner img,.acf-no-options-pages-wrapper .acf-no-post-types-inner img,.acf-no-options-pages-wrapper .acf-no-options-pages-inner img,.acf-options-preview-wrapper .acf-no-post-types-inner img,.acf-options-preview-wrapper .acf-no-options-pages-inner img{width:106px;height:88px}.acf-no-field-groups-wrapper .acf-no-taxonomies-inner img,.acf-no-taxonomies-wrapper .acf-no-taxonomies-inner img,.acf-no-post-types-wrapper .acf-no-taxonomies-inner img,.acf-no-options-pages-wrapper .acf-no-taxonomies-inner img,.acf-options-preview-wrapper .acf-no-taxonomies-inner img{width:98px;height:88px}.acf-no-field-groups #the-list tr:hover td,.acf-no-field-groups #the-list tr:hover th,.acf-no-field-groups .acf-admin-field-groups .wp-list-table tr:hover,.acf-no-field-groups .striped>tbody>:nth-child(odd),.acf-no-field-groups ul.striped>:nth-child(odd),.acf-no-field-groups .alternate,.acf-no-post-types #the-list tr:hover td,.acf-no-post-types #the-list tr:hover th,.acf-no-post-types .acf-admin-field-groups .wp-list-table tr:hover,.acf-no-post-types .striped>tbody>:nth-child(odd),.acf-no-post-types ul.striped>:nth-child(odd),.acf-no-post-types .alternate,.acf-no-taxonomies #the-list tr:hover td,.acf-no-taxonomies #the-list tr:hover th,.acf-no-taxonomies .acf-admin-field-groups .wp-list-table tr:hover,.acf-no-taxonomies .striped>tbody>:nth-child(odd),.acf-no-taxonomies ul.striped>:nth-child(odd),.acf-no-taxonomies .alternate,.acf-no-options-pages #the-list tr:hover td,.acf-no-options-pages #the-list tr:hover th,.acf-no-options-pages .acf-admin-field-groups .wp-list-table tr:hover,.acf-no-options-pages .striped>tbody>:nth-child(odd),.acf-no-options-pages ul.striped>:nth-child(odd),.acf-no-options-pages .alternate{background-color:rgba(0,0,0,0) !important}.acf-no-field-groups .wp-list-table thead,.acf-no-field-groups .wp-list-table tfoot,.acf-no-post-types .wp-list-table thead,.acf-no-post-types .wp-list-table tfoot,.acf-no-taxonomies .wp-list-table thead,.acf-no-taxonomies .wp-list-table tfoot,.acf-no-options-pages .wp-list-table thead,.acf-no-options-pages .wp-list-table tfoot{display:none}.acf-no-field-groups .wp-list-table a.acf-btn,.acf-no-post-types .wp-list-table a.acf-btn,.acf-no-taxonomies .wp-list-table a.acf-btn,.acf-no-options-pages .wp-list-table a.acf-btn{border:1px solid rgba(0,0,0,.16);box-shadow:none}.acf-internal-post-type #the-list .no-items td{vertical-align:middle}.acf-options-preview .acf-btn{margin-left:8px}.acf-options-preview .disabled{background-color:#f2f4f7 !important;color:#98a2b3 !important;border:1px #d0d5dd solid;cursor:default !important}.acf-options-preview .acf-options-pages-preview-upgrade-button{height:48px;padding:8px 48px 8px 48px !important;border-radius:6px;border:1px;gap:6px;display:inline-flex;align-items:center;align-self:stretch;background:linear-gradient(90.52deg, #3E8BFF 0.44%, #A45CFF 113.3%);box-shadow:inset 0 0 0 1px rgba(255,255,255,.16);background-size:180% 80%;background-position:100% 0;transition:background-position .5s;border-radius:6px;text-decoration:none}.acf-options-preview .acf-options-pages-preview-upgrade-button:hover{background-position:0 0}.acf-options-preview .acf-options-pages-preview-upgrade-button:focus{border:none;outline:none;box-shadow:none}.acf-options-preview .acf-options-pages-preview-upgrade-button p{margin:0;padding-top:8px;padding-bottom:8px;font-weight:normal;text-transform:none;color:#fff}.acf-options-preview .acf-options-pages-preview-upgrade-button .acf-icon{width:20px;height:20px;margin-right:6px;margin-left:-2px;background-color:#f9fafb}.acf-options-preview .acf_options_preview_wrap a.acf-btn i{margin-right:-2px !important;margin-left:0px !important}.acf-options-preview .acf-pro-label{vertical-align:middle}.acf-options-preview .acf_options_preview_wrap img{max-height:88px}.acf-internal-post-type .wp-list-table .toggle-row:before{top:4px;left:16px;border-radius:0;content:"";display:block;position:absolute;width:16px;height:16px;background-color:#0783be;border-radius:0;-webkit-mask-size:20px;mask-size:20px;-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;-webkit-mask-position:center;mask-position:center;-webkit-mask-image:url("../../images/icons/icon-chevron-down.svg");mask-image:url("../../images/icons/icon-chevron-down.svg");text-indent:100%;white-space:nowrap;overflow:hidden}.acf-internal-post-type .wp-list-table .is-expanded .toggle-row:before{-webkit-mask-image:url("../../images/icons/icon-chevron-up.svg");mask-image:url("../../images/icons/icon-chevron-up.svg")}@media screen and (max-width: 880px){.acf-internal-post-type .widefat th input[type=checkbox],.acf-internal-post-type .widefat thead td input[type=checkbox],.acf-internal-post-type .widefat tfoot td input[type=checkbox]{margin-bottom:0}}.acf-admin-toolbar{position:unset;top:32px;height:72px;z-index:800;background:#344054;color:#98a2b3}.acf-admin-toolbar .acf-admin-toolbar-inner{display:flex;justify-content:space-between;align-content:center;align-items:center;max-width:100%}.acf-admin-toolbar .acf-admin-toolbar-inner .acf-nav-wrap{display:flex;align-items:center}@media screen and (max-width: 1250px){.acf-admin-toolbar .acf-admin-toolbar-inner .acf-nav-wrap .acf-header-tab-acf-post-type,.acf-admin-toolbar .acf-admin-toolbar-inner .acf-nav-wrap .acf-header-tab-acf-taxonomy{display:none}.acf-admin-toolbar .acf-admin-toolbar-inner .acf-nav-wrap .acf-more .acf-header-tab-acf-post-type,.acf-admin-toolbar .acf-admin-toolbar-inner .acf-nav-wrap .acf-more .acf-header-tab-acf-taxonomy{display:flex}}.acf-admin-toolbar .acf-admin-toolbar-inner .acf-nav-upgrade-wrap{display:flex;align-items:center}.acf-admin-toolbar .acf-admin-toolbar-inner .acf-nav-wpengine-logo{display:inline-flex;margin-left:24px}@media screen and (max-width: 1000px){.acf-admin-toolbar .acf-admin-toolbar-inner .acf-nav-wpengine-logo{display:none}}@media screen and (max-width: 880px){.acf-admin-toolbar{position:static}}.acf-admin-toolbar .acf-logo{display:flex;margin-right:24px;text-decoration:none}.acf-admin-toolbar .acf-logo .acf-pro-label{margin-left:8px}.acf-admin-toolbar .acf-logo img{display:block;max-width:55px;line-height:0%}.acf-admin-toolbar h2{display:none;color:#f9fafb}.acf-admin-toolbar .acf-tab{display:flex;align-items:center;box-sizing:border-box;min-height:40px;margin-right:8px;padding-top:8px;padding-right:16px;padding-bottom:8px;padding-left:16px;border-width:1px;border-style:solid;border-color:rgba(0,0,0,0);border-radius:6px;color:#98a2b3;text-decoration:none}.acf-admin-toolbar .acf-tab.is-active{background-color:#475467;color:#fff}.acf-admin-toolbar .acf-tab:hover{background-color:#475467;color:#f9fafb}.acf-admin-toolbar .acf-tab:focus-visible{border-width:1px;border-style:solid;border-color:#667085}.acf-admin-toolbar .acf-tab:focus{box-shadow:none}.acf-admin-toolbar .acf-more:hover .acf-tab.acf-more-tab{background-color:#475467;color:#f9fafb}.acf-admin-toolbar .acf-more ul{display:none;position:absolute;box-sizing:border-box;background:#fff;z-index:1051;overflow:hidden;min-width:280px;margin-top:0;margin-right:0;margin-bottom:0;margin-left:0;padding:0;border-radius:8px;box-shadow:0px 0px 0px 1px rgba(0,0,0,.04),0px 8px 23px rgba(0,0,0,.12)}.acf-admin-toolbar .acf-more ul .acf-wp-engine{display:flex;align-items:center;justify-content:space-between;min-height:48px;border-top:1px solid rgba(0,0,0,.08);background:#ecfbfc}.acf-admin-toolbar .acf-more ul .acf-wp-engine a{display:flex;width:100%;justify-content:space-between;border-top:none}.acf-admin-toolbar .acf-more ul li{margin:0;padding:0 16px}.acf-admin-toolbar .acf-more ul li .acf-header-tab-acf-post-type,.acf-admin-toolbar .acf-more ul li .acf-header-tab-acf-taxonomy{display:none}.acf-admin-toolbar .acf-more ul li.acf-more-section-header{background:#f9fafb;padding:1px 0 0 0;margin-top:-1px;border-top:1px solid #eaecf0;border-bottom:1px solid #eaecf0}.acf-admin-toolbar .acf-more ul li.acf-more-section-header span{color:#475467;font-size:12px;font-weight:bold}.acf-admin-toolbar .acf-more ul li.acf-more-section-header span:hover{background:#f9fafb}.acf-admin-toolbar .acf-more ul li a{margin:0;padding:0;color:#1d2939;border-radius:0;border-top-width:1px;border-top-style:solid;border-top-color:#f2f4f7}.acf-admin-toolbar .acf-more ul li a:hover,.acf-admin-toolbar .acf-more ul li a.acf-tab.is-active{background-color:unset;color:#0783be}.acf-admin-toolbar .acf-more ul li a i.acf-icon{display:none !important;width:16px;height:16px;-webkit-mask-size:16px;mask-size:16px;background-color:#98a2b3 !important}.acf-admin-toolbar .acf-more ul li a .acf-requires-pro{justify-content:center;align-items:center;color:#fff;background:linear-gradient(90.52deg, #3E8BFF 0.44%, #A45CFF 113.3%);background-size:140% 20%;background-position:100% 0;border-radius:100px;font-size:11px;position:absolute;right:16px;padding-right:6px;padding-left:6px}.acf-admin-toolbar .acf-more ul li a img.acf-wp-engine-pro{display:block;height:16px;width:auto}.acf-admin-toolbar .acf-more ul li a .acf-wp-engine-upsell-pill{display:inline-flex;justify-content:center;align-items:center;min-height:22px;border-radius:100px;font-size:11px;padding-right:8px;padding-left:8px;background:#0ecad4;color:#fff;text-shadow:0px 1px 0 rgba(0,0,0,.12);text-transform:uppercase}.acf-admin-toolbar .acf-more ul li:first-child a{border-bottom:none}.acf-admin-toolbar .acf-more ul:hover,.acf-admin-toolbar .acf-more ul:focus{display:block}.acf-admin-toolbar .acf-more:hover ul,.acf-admin-toolbar .acf-more:focus ul{display:block}#wpcontent .acf-admin-toolbar{box-sizing:border-box;margin-left:-20px;padding-top:16px;padding-right:32px;padding-bottom:16px;padding-left:32px}@media screen and (max-width: 600px){.acf-admin-toolbar{display:none}}.rtl #wpcontent .acf-admin-toolbar{margin-left:0;margin-right:-20px}.rtl #wpcontent .acf-admin-toolbar .acf-tab{margin-left:8px;margin-right:0}.rtl .acf-logo{margin-right:0;margin-left:32px}.acf-admin-toolbar .acf-tab i.acf-icon,.acf-admin-toolbar .acf-more i.acf-icon{display:none;margin-right:8px;margin-left:-2px}.acf-admin-toolbar .acf-tab i.acf-icon.acf-icon-dropdown,.acf-admin-toolbar .acf-more i.acf-icon.acf-icon-dropdown{-webkit-mask-image:url("../../images/icons/icon-chevron-down.svg");mask-image:url("../../images/icons/icon-chevron-down.svg");width:16px;height:16px;-webkit-mask-size:16px;mask-size:16px;margin-right:-6px;margin-left:6px}.acf-admin-toolbar .acf-tab.acf-header-tab-acf-field-group i.acf-icon,.acf-admin-toolbar .acf-tab.acf-header-tab-acf-post-type i.acf-icon,.acf-admin-toolbar .acf-tab.acf-header-tab-acf-taxonomy i.acf-icon,.acf-admin-toolbar .acf-tab.acf-header-tab-acf-tools i.acf-icon,.acf-admin-toolbar .acf-tab.acf-header-tab-acf-settings-updates i.acf-icon,.acf-admin-toolbar .acf-tab.acf-header-tab-acf-more i.acf-icon,.acf-admin-toolbar .acf-more.acf-header-tab-acf-field-group i.acf-icon,.acf-admin-toolbar .acf-more.acf-header-tab-acf-post-type i.acf-icon,.acf-admin-toolbar .acf-more.acf-header-tab-acf-taxonomy i.acf-icon,.acf-admin-toolbar .acf-more.acf-header-tab-acf-tools i.acf-icon,.acf-admin-toolbar .acf-more.acf-header-tab-acf-settings-updates i.acf-icon,.acf-admin-toolbar .acf-more.acf-header-tab-acf-more i.acf-icon{display:inline-flex}.acf-admin-toolbar .acf-tab.is-active i.acf-icon,.acf-admin-toolbar .acf-tab:hover i.acf-icon,.acf-admin-toolbar .acf-more.is-active i.acf-icon,.acf-admin-toolbar .acf-more:hover i.acf-icon{background-color:#eaecf0}.rtl .acf-admin-toolbar .acf-tab i.acf-icon{margin-right:-2px;margin-left:8px}.acf-admin-toolbar .acf-header-tab-acf-field-group i.acf-icon{-webkit-mask-image:url("../../images/icons/icon-field-groups.svg");mask-image:url("../../images/icons/icon-field-groups.svg")}.acf-admin-toolbar .acf-header-tab-acf-post-type i.acf-icon{-webkit-mask-image:url("../../images/icons/icon-post-type.svg");mask-image:url("../../images/icons/icon-post-type.svg")}.acf-admin-toolbar .acf-header-tab-acf-taxonomy i.acf-icon{-webkit-mask-image:url("../../images/icons/icon-taxonomies.svg");mask-image:url("../../images/icons/icon-taxonomies.svg")}.acf-admin-toolbar .acf-header-tab-acf-tools i.acf-icon{-webkit-mask-image:url("../../images/icons/icon-tools.svg");mask-image:url("../../images/icons/icon-tools.svg")}.acf-admin-toolbar .acf-header-tab-acf-settings-updates i.acf-icon{-webkit-mask-image:url("../../images/icons/icon-updates.svg");mask-image:url("../../images/icons/icon-updates.svg")}.acf-admin-toolbar .acf-header-tab-acf-more i.acf-icon-more{-webkit-mask-image:url("../../images/icons/icon-extended-menu.svg");mask-image:url("../../images/icons/icon-extended-menu.svg")}.acf-admin-page #wpbody-content>.notice:not(.inline,.below-h2){display:none}.acf-admin-page h1.wp-heading-inline{display:none}.acf-admin-page .wrap .wp-heading-inline+.page-title-action{display:none}.acf-headerbar{display:flex;align-items:center;position:sticky;top:32px;z-index:700;box-sizing:border-box;min-height:72px;margin-left:-20px;padding-top:8px;padding-right:32px;padding-bottom:8px;padding-left:32px;background-color:#fff;box-shadow:0px 1px 2px rgba(16,24,40,.1)}.acf-headerbar .acf-headerbar-inner{flex:1 1 auto;display:flex;align-items:center;justify-content:space-between;max-width:1440px;gap:8px}.acf-headerbar .acf-page-title{display:flex;align-items:center;gap:8px;margin-top:0;margin-right:16px;margin-bottom:0;margin-left:0;padding-top:0;padding-right:0;padding-bottom:0;padding-left:0}.acf-headerbar .acf-page-title .acf-duplicated-from{color:#98a2b3}.acf-headerbar .acf-page-title .acf-pro-label{box-shadow:none;border:1px solid rgba(0,0,0,.2)}@media screen and (max-width: 880px){.acf-headerbar{position:static}}@media screen and (max-width: 600px){.acf-headerbar{justify-content:space-between;position:relative;top:46px;min-height:64px;padding-right:12px}}.acf-headerbar .acf-headerbar-content{flex:1 1 auto;display:flex;align-items:center}@media screen and (max-width: 880px){.acf-headerbar .acf-headerbar-content{flex-wrap:wrap}.acf-headerbar .acf-headerbar-content .acf-headerbar-title,.acf-headerbar .acf-headerbar-content .acf-title-wrap{flex:1 1 100%}.acf-headerbar .acf-headerbar-content .acf-title-wrap{margin-top:8px}}.acf-headerbar .acf-input-error{border:1px rgba(209,55,55,.5) solid !important;box-shadow:0px 0px 0px 3px rgba(209,55,55,.12),0px 0px 0px rgba(255,54,54,.25) !important;background-image:url("../../images/icons/icon-warning-alt-red.svg");background-position:right 10px top 50%;background-size:20px;background-repeat:no-repeat}.acf-headerbar .acf-input-error:focus{outline:none !important;border:1px rgba(209,55,55,.8) solid !important;box-shadow:0px 0px 0px 3px rgba(209,55,55,.16),0px 0px 0px rgba(255,54,54,.25) !important}.acf-headerbar .acf-headerbar-title-field{min-width:320px}@media screen and (max-width: 880px){.acf-headerbar .acf-headerbar-title-field{min-width:100%}}.acf-headerbar .acf-headerbar-actions{display:flex}.acf-headerbar .acf-headerbar-actions .acf-btn{margin-left:8px}.acf-headerbar .acf-headerbar-actions .disabled{background-color:#f2f4f7;color:#98a2b3 !important;border:1px #d0d5dd solid;cursor:default}.acf-headerbar-field-editor{position:sticky;top:32px;z-index:1020;margin-left:-20px;width:calc(100% + 20px)}@media screen and (max-width: 880px){.acf-headerbar-field-editor{position:relative;top:0;width:100%;margin-left:0;padding-right:8px;padding-left:8px}}@media screen and (max-width: 640px){.acf-headerbar-field-editor{position:relative;top:46px}}@media screen and (max-width: 880px){.acf-headerbar-field-editor .acf-headerbar-inner{flex-wrap:wrap;justify-content:flex-start;align-content:flex-start;align-items:flex-start;width:100%}.acf-headerbar-field-editor .acf-headerbar-inner .acf-page-title{flex:1 1 auto}.acf-headerbar-field-editor .acf-headerbar-inner .acf-headerbar-actions{flex:1 1 100%;margin-top:8px;gap:8px}.acf-headerbar-field-editor .acf-headerbar-inner .acf-headerbar-actions .acf-btn{width:100%;display:inline-flex;justify-content:center;margin:0}}.acf-headerbar-field-editor .acf-page-title{margin-right:16px}.rtl .acf-headerbar,.rtl .acf-headerbar-field-editor{margin-left:0;margin-right:-20px}.rtl .acf-headerbar .acf-page-title,.rtl .acf-headerbar-field-editor .acf-page-title{margin-left:16px;margin-right:0}.rtl .acf-headerbar .acf-headerbar-actions .acf-btn,.rtl .acf-headerbar-field-editor .acf-headerbar-actions .acf-btn{margin-left:0;margin-right:8px}.acf-btn{display:inline-flex;align-items:center;box-sizing:border-box;min-height:40px;padding-top:8px;padding-right:16px;padding-bottom:8px;padding-left:16px;background-color:#0783be;border-radius:6px;border-width:1px;border-style:solid;border-color:rgba(16,24,40,.2);text-decoration:none;color:#fff !important;transition:all .2s ease-in-out;transition-property:background,border,box-shadow}.acf-btn:hover{background-color:#066998;color:#fff;cursor:pointer}.acf-btn:disabled,.acf-btn.disabled{background-color:#f2f4f7;border-color:#eaecf0;color:#98a2b3 !important;transition:none;pointer-events:none}.acf-btn.acf-btn-sm{min-height:32px;padding-top:4px;padding-right:12px;padding-bottom:4px;padding-left:12px}.acf-btn.acf-btn-secondary{background-color:rgba(0,0,0,0);color:#0783be !important;border-color:#0783be}.acf-btn.acf-btn-secondary:hover{background-color:#f3f9fc}.acf-btn.acf-btn-muted{background-color:#667085;color:#fff;height:48px;padding:8px 28px 8px 28px !important;border-radius:6px;border:1px;gap:6px}.acf-btn.acf-btn-muted:hover{background-color:#475467 !important}.acf-btn.acf-btn-tertiary{background-color:rgba(0,0,0,0);color:#667085 !important;border-color:#d0d5dd}.acf-btn.acf-btn-tertiary:hover{color:#667085 !important;border-color:#98a2b3}.acf-btn.acf-btn-clear{background-color:rgba(0,0,0,0);color:#667085 !important;border-color:rgba(0,0,0,0)}.acf-btn.acf-btn-clear:hover{color:#0783be !important}.acf-btn.acf-btn-pro{background:linear-gradient(90.52deg, #3E8BFF 0.44%, #A45CFF 113.3%);background-size:180% 80%;background-position:100% 0;transition:background-position .5s}.acf-btn.acf-btn-pro:hover{background-position:0 0}.acf-btn i.acf-icon{width:20px;height:20px;-webkit-mask-size:20px;mask-size:20px;margin-right:6px;margin-left:-4px}.acf-btn.acf-btn-sm i.acf-icon{width:16px;height:16px;-webkit-mask-size:16px;mask-size:16px;margin-right:6px;margin-left:-2px}.rtl .acf-btn i.acf-icon{margin-right:-4px;margin-left:6px}.rtl .acf-btn.acf-btn-sm i.acf-icon{margin-right:-4px;margin-left:2px}.acf-btn.acf-delete-field-group:hover{background-color:#fbeded;border-color:#d13737 !important;color:#d13737 !important}.acf-internal-post-type i.acf-icon,.post-type-acf-field-group i.acf-icon{display:inline-flex;width:20px;height:20px;background-color:currentColor;border:none;border-radius:0;-webkit-mask-size:contain;mask-size:contain;-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;-webkit-mask-position:center;mask-position:center;text-indent:500%;white-space:nowrap;overflow:hidden}.acf-admin-page i.acf-field-setting-fc-delete,.acf-admin-page i.acf-field-setting-fc-duplicate{box-sizing:border-box;display:flex;flex-direction:row;justify-content:center;align-items:center;padding:8px;cursor:pointer;width:32px;height:32px;background:#fff;border:1px solid #d0d5dd;box-shadow:0px 1px 2px rgba(16,24,40,.1);border-radius:6px;flex:none;order:0;flex-grow:0}.acf-admin-page i.acf-icon-plus{-webkit-mask-image:url("../../images/icons/icon-add.svg");mask-image:url("../../images/icons/icon-add.svg")}.acf-admin-page i.acf-icon-stars{-webkit-mask-image:url("../../images/icons/icon-stars.svg");mask-image:url("../../images/icons/icon-stars.svg")}.acf-admin-page i.acf-icon-help{-webkit-mask-image:url("../../images/icons/icon-help.svg");mask-image:url("../../images/icons/icon-help.svg")}.acf-admin-page i.acf-icon-key{-webkit-mask-image:url("../../images/icons/icon-key.svg");mask-image:url("../../images/icons/icon-key.svg")}.acf-admin-page i.acf-icon-regenerate{-webkit-mask-image:url("../../images/icons/icon-regenerate.svg");mask-image:url("../../images/icons/icon-regenerate.svg")}.acf-admin-page i.acf-icon-trash,.acf-admin-page button.acf-icon-trash{-webkit-mask-image:url("../../images/icons/icon-trash.svg");mask-image:url("../../images/icons/icon-trash.svg")}.acf-admin-page i.acf-icon-extended-menu,.acf-admin-page button.acf-icon-extended-menu{-webkit-mask-image:url("../../images/icons/icon-extended-menu.svg");mask-image:url("../../images/icons/icon-extended-menu.svg")}.acf-admin-page i.acf-icon.-duplicate,.acf-admin-page button.acf-icon-duplicate{-webkit-mask-image:url("../../images/field-type-icons/icon-field-clone.svg");mask-image:url("../../images/field-type-icons/icon-field-clone.svg")}.acf-admin-page i.acf-icon.-duplicate:before,.acf-admin-page i.acf-icon.-duplicate:after,.acf-admin-page button.acf-icon-duplicate:before,.acf-admin-page button.acf-icon-duplicate:after{content:none}.acf-admin-page i.acf-icon-arrow-right{-webkit-mask-image:url("../../images/icons/icon-arrow-right.svg");mask-image:url("../../images/icons/icon-arrow-right.svg")}.acf-admin-page i.acf-icon-arrow-up-right{-webkit-mask-image:url("../../images/icons/icon-arrow-up-right.svg");mask-image:url("../../images/icons/icon-arrow-up-right.svg")}.acf-admin-page i.acf-icon-arrow-left{-webkit-mask-image:url("../../images/icons/icon-arrow-left.svg");mask-image:url("../../images/icons/icon-arrow-left.svg")}.acf-admin-page i.acf-icon-chevron-right,.acf-admin-page .acf-icon.-right{-webkit-mask-image:url("../../images/icons/icon-chevron-right.svg");mask-image:url("../../images/icons/icon-chevron-right.svg")}.acf-admin-page i.acf-icon-chevron-left,.acf-admin-page .acf-icon.-left{-webkit-mask-image:url("../../images/icons/icon-chevron-left.svg");mask-image:url("../../images/icons/icon-chevron-left.svg")}.acf-admin-page i.acf-icon-key-solid{-webkit-mask-image:url("../../images/icons/icon-key-solid.svg");mask-image:url("../../images/icons/icon-key-solid.svg")}.acf-admin-page i.acf-icon-globe,.acf-admin-page .acf-icon.-globe{-webkit-mask-image:url("../../images/icons/icon-globe.svg");mask-image:url("../../images/icons/icon-globe.svg")}.acf-admin-page i.acf-icon-image,.acf-admin-page .acf-icon.-picture{-webkit-mask-image:url("../../images/field-type-icons/icon-field-image.svg");mask-image:url("../../images/field-type-icons/icon-field-image.svg")}.acf-admin-page i.acf-icon-warning{-webkit-mask-image:url("../../images/icons/icon-warning-alt.svg");mask-image:url("../../images/icons/icon-warning-alt.svg")}.acf-admin-page i.acf-icon-warning-red{-webkit-mask-image:url("../../images/icons/icon-warning-alt-red.svg");mask-image:url("../../images/icons/icon-warning-alt-red.svg")}.acf-admin-page i.acf-icon-dots-grid{-webkit-mask-image:url("../../images/icons/icon-dots-grid.svg");mask-image:url("../../images/icons/icon-dots-grid.svg")}.acf-admin-page i.acf-icon-play{-webkit-mask-image:url("../../images/icons/icon-play.svg");mask-image:url("../../images/icons/icon-play.svg")}.acf-admin-page i.acf-icon-lock{-webkit-mask-image:url("../../images/icons/icon-lock.svg");mask-image:url("../../images/icons/icon-lock.svg")}.acf-admin-page i.acf-icon-document{-webkit-mask-image:url("../../images/icons/icon-document.svg");mask-image:url("../../images/icons/icon-document.svg")}.acf-admin-page .post-type-acf-field-group .post-state,.acf-admin-page .acf-internal-post-type .post-state{font-weight:normal}.acf-admin-page .post-type-acf-field-group .post-state .dashicons.dashicons-hidden,.acf-admin-page .acf-internal-post-type .post-state .dashicons.dashicons-hidden{display:inline-flex;width:18px;height:18px;background-color:#98a2b3;border:none;border-radius:0;-webkit-mask-size:18px;mask-size:18px;-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;-webkit-mask-position:center;mask-position:center;-webkit-mask-image:url("../../images/icons/icon-hidden.svg");mask-image:url("../../images/icons/icon-hidden.svg")}.acf-admin-page .post-type-acf-field-group .post-state .dashicons.dashicons-hidden:before,.acf-admin-page .acf-internal-post-type .post-state .dashicons.dashicons-hidden:before{display:none}#acf-field-group-fields .postbox-header h2,#acf-field-group-fields .postbox-header h3,#acf-field-group-fields .acf-sub-field-list-header h2,#acf-field-group-fields .acf-sub-field-list-header h3,#acf-field-group-options .postbox-header h2,#acf-field-group-options .postbox-header h3,#acf-field-group-options .acf-sub-field-list-header h2,#acf-field-group-options .acf-sub-field-list-header h3,#acf-advanced-settings .postbox-header h2,#acf-advanced-settings .postbox-header h3,#acf-advanced-settings .acf-sub-field-list-header h2,#acf-advanced-settings .acf-sub-field-list-header h3{display:inline-flex;justify-content:flex-start;align-content:stretch;align-items:center}#acf-field-group-fields .postbox-header h2:before,#acf-field-group-fields .postbox-header h3:before,#acf-field-group-fields .acf-sub-field-list-header h2:before,#acf-field-group-fields .acf-sub-field-list-header h3:before,#acf-field-group-options .postbox-header h2:before,#acf-field-group-options .postbox-header h3:before,#acf-field-group-options .acf-sub-field-list-header h2:before,#acf-field-group-options .acf-sub-field-list-header h3:before,#acf-advanced-settings .postbox-header h2:before,#acf-advanced-settings .postbox-header h3:before,#acf-advanced-settings .acf-sub-field-list-header h2:before,#acf-advanced-settings .acf-sub-field-list-header h3:before{content:"";display:inline-block;width:20px;height:20px;margin-right:8px;background-color:#98a2b3;border:none;border-radius:0;-webkit-mask-size:contain;mask-size:contain;-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;-webkit-mask-position:center;mask-position:center}.rtl #acf-field-group-fields .postbox-header h2:before,.rtl #acf-field-group-fields .postbox-header h3:before,.rtl #acf-field-group-fields .acf-sub-field-list-header h2:before,.rtl #acf-field-group-fields .acf-sub-field-list-header h3:before,.rtl #acf-field-group-options .postbox-header h2:before,.rtl #acf-field-group-options .postbox-header h3:before,.rtl #acf-field-group-options .acf-sub-field-list-header h2:before,.rtl #acf-field-group-options .acf-sub-field-list-header h3:before{margin-right:0;margin-left:8px}#acf-field-group-fields .postbox-header h2:before,h3.acf-sub-field-list-title:before,.acf-link-field-groups-popup h3:before{-webkit-mask-image:url("../../images/icons/icon-fields.svg");mask-image:url("../../images/icons/icon-fields.svg")}.acf-create-options-page-popup h3:before{-webkit-mask-image:url("../../images/icons/icon-sliders.svg");mask-image:url("../../images/icons/icon-sliders.svg")}#acf-field-group-options .postbox-header h2:before{-webkit-mask-image:url("../../images/icons/icon-settings.svg");mask-image:url("../../images/icons/icon-settings.svg")}.acf-field-setting-fc_layout .acf-field-settings-fc_head label:before{-webkit-mask-image:url("../../images/icons/icon-layout.svg");mask-image:url("../../images/icons/icon-layout.svg")}.acf-admin-single-post-type #acf-advanced-settings .postbox-header h2:before,.acf-admin-single-taxonomy #acf-advanced-settings .postbox-header h2:before,.acf-admin-single-options-page #acf-advanced-settings .postbox-header h2:before{-webkit-mask-image:url("../../images/icons/icon-post-type.svg");mask-image:url("../../images/icons/icon-post-type.svg")}.acf-field-setting-fc_layout .acf-field-settings-fc_head .acf-fc_draggable:hover .reorder-layout:before{width:20px;height:11px;background-color:#475467 !important;-webkit-mask-image:url("../../images/icons/icon-draggable.svg");mask-image:url("../../images/icons/icon-draggable.svg")}.post-type-acf-field-group .postbox-header .handle-actions,.post-type-acf-field-group #acf-field-group-fields .postbox-header .handle-actions,.post-type-acf-field-group #acf-field-group-options .postbox-header .handle-actions,.post-type-acf-field-group .postbox .postbox-header .handle-actions,.acf-admin-single-post-type #acf-advanced-settings .postbox-header .handle-actions,.acf-admin-single-taxonomy #acf-advanced-settings .postbox-header .handle-actions,.acf-admin-single-options-page #acf-advanced-settings .postbox-header .handle-actions{display:flex}.post-type-acf-field-group .postbox-header .handle-actions .toggle-indicator:before,.post-type-acf-field-group #acf-field-group-fields .postbox-header .handle-actions .toggle-indicator:before,.post-type-acf-field-group #acf-field-group-options .postbox-header .handle-actions .toggle-indicator:before,.post-type-acf-field-group .postbox .postbox-header .handle-actions .toggle-indicator:before,.acf-admin-single-post-type #acf-advanced-settings .postbox-header .handle-actions .toggle-indicator:before,.acf-admin-single-taxonomy #acf-advanced-settings .postbox-header .handle-actions .toggle-indicator:before,.acf-admin-single-options-page #acf-advanced-settings .postbox-header .handle-actions .toggle-indicator:before{content:"";display:inline-flex;width:20px;height:20px;background-color:currentColor;border:none;border-radius:0;-webkit-mask-size:contain;mask-size:contain;-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;-webkit-mask-position:center;mask-position:center;-webkit-mask-image:url("../../images/icons/icon-chevron-up.svg");mask-image:url("../../images/icons/icon-chevron-up.svg")}.post-type-acf-field-group.closed .postbox-header .handle-actions .toggle-indicator:before,.post-type-acf-field-group #acf-field-group-fields.closed .postbox-header .handle-actions .toggle-indicator:before,.post-type-acf-field-group #acf-field-group-options.closed .postbox-header .handle-actions .toggle-indicator:before,.post-type-acf-field-group .postbox.closed .postbox-header .handle-actions .toggle-indicator:before,.acf-admin-single-post-type #acf-advanced-settings.closed .postbox-header .handle-actions .toggle-indicator:before,.acf-admin-single-taxonomy #acf-advanced-settings.closed .postbox-header .handle-actions .toggle-indicator:before,.acf-admin-single-options-page #acf-advanced-settings.closed .postbox-header .handle-actions .toggle-indicator:before{-webkit-mask-image:url("../../images/icons/icon-chevron-down.svg");mask-image:url("../../images/icons/icon-chevron-down.svg")}.post-type-acf-field-group #acf-admin-tool-export h2,.post-type-acf-field-group #acf-admin-tool-export h3,.post-type-acf-field-group #acf-admin-tool-import h2,.post-type-acf-field-group #acf-admin-tool-import h3,.post-type-acf-field-group #acf-license-information h2,.post-type-acf-field-group #acf-license-information h3,.post-type-acf-field-group #acf-update-information h2,.post-type-acf-field-group #acf-update-information h3{display:inline-flex;justify-content:flex-start;align-content:stretch;align-items:center}.post-type-acf-field-group #acf-admin-tool-export h2:before,.post-type-acf-field-group #acf-admin-tool-export h3:before,.post-type-acf-field-group #acf-admin-tool-import h2:before,.post-type-acf-field-group #acf-admin-tool-import h3:before,.post-type-acf-field-group #acf-license-information h2:before,.post-type-acf-field-group #acf-license-information h3:before,.post-type-acf-field-group #acf-update-information h2:before,.post-type-acf-field-group #acf-update-information h3:before{content:"";display:inline-block;width:20px;height:20px;margin-right:8px;background-color:#98a2b3;border:none;border-radius:0;-webkit-mask-size:contain;mask-size:contain;-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;-webkit-mask-position:center;mask-position:center}.post-type-acf-field-group.rtl #acf-admin-tool-export h2:before,.post-type-acf-field-group.rtl #acf-admin-tool-export h3:before,.post-type-acf-field-group.rtl #acf-admin-tool-import h2:before,.post-type-acf-field-group.rtl #acf-admin-tool-import h3:before,.post-type-acf-field-group.rtl #acf-license-information h2:before,.post-type-acf-field-group.rtl #acf-license-information h3:before,.post-type-acf-field-group.rtl #acf-update-information h2:before,.post-type-acf-field-group.rtl #acf-update-information h3:before{margin-right:0;margin-left:8px}.post-type-acf-field-group #acf-admin-tool-export h2:before{-webkit-mask-image:url("../../images/icons/icon-export.svg");mask-image:url("../../images/icons/icon-export.svg")}.post-type-acf-field-group #acf-admin-tool-import h2:before{-webkit-mask-image:url("../../images/icons/icon-import.svg");mask-image:url("../../images/icons/icon-import.svg")}.post-type-acf-field-group #acf-license-information h3:before{-webkit-mask-image:url("../../images/icons/icon-key.svg");mask-image:url("../../images/icons/icon-key.svg")}.post-type-acf-field-group #acf-update-information h3:before{-webkit-mask-image:url("../../images/icons/icon-info.svg");mask-image:url("../../images/icons/icon-info.svg")}.acf-admin-single-field-group .acf-input .acf-icon{width:18px;height:18px}.field-type-icon{box-sizing:border-box;display:inline-flex;align-content:center;align-items:center;justify-content:center;position:relative;width:24px;height:24px;top:-4px;background-color:#ebf5fa;border-width:1px;border-style:solid;border-color:#a5d2e7;border-radius:100%}.field-type-icon:before{content:"";width:14px;height:14px;position:relative;background-color:#0783be;-webkit-mask-size:cover;mask-size:cover;-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;-webkit-mask-position:center;mask-position:center;-webkit-mask-image:url("../../images/field-type-icons/icon-field-default.svg");mask-image:url("../../images/field-type-icons/icon-field-default.svg")}.field-type-icon.field-type-icon-text:before{-webkit-mask-image:url("../../images/field-type-icons/icon-field-text.svg");mask-image:url("../../images/field-type-icons/icon-field-text.svg")}.field-type-icon.field-type-icon-textarea:before{-webkit-mask-image:url("../../images/field-type-icons/icon-field-textarea.svg");mask-image:url("../../images/field-type-icons/icon-field-textarea.svg")}.field-type-icon.field-type-icon-textarea:before{-webkit-mask-image:url("../../images/field-type-icons/icon-field-textarea.svg");mask-image:url("../../images/field-type-icons/icon-field-textarea.svg")}.field-type-icon.field-type-icon-number:before{-webkit-mask-image:url("../../images/field-type-icons/icon-field-number.svg");mask-image:url("../../images/field-type-icons/icon-field-number.svg")}.field-type-icon.field-type-icon-range:before{-webkit-mask-image:url("../../images/field-type-icons/icon-field-range.svg");mask-image:url("../../images/field-type-icons/icon-field-range.svg")}.field-type-icon.field-type-icon-email:before{-webkit-mask-image:url("../../images/field-type-icons/icon-field-email.svg");mask-image:url("../../images/field-type-icons/icon-field-email.svg")}.field-type-icon.field-type-icon-url:before{-webkit-mask-image:url("../../images/field-type-icons/icon-field-url.svg");mask-image:url("../../images/field-type-icons/icon-field-url.svg")}.field-type-icon.field-type-icon-password:before{-webkit-mask-image:url("../../images/field-type-icons/icon-field-password.svg");mask-image:url("../../images/field-type-icons/icon-field-password.svg")}.field-type-icon.field-type-icon-image:before{-webkit-mask-image:url("../../images/field-type-icons/icon-field-image.svg");mask-image:url("../../images/field-type-icons/icon-field-image.svg")}.field-type-icon.field-type-icon-file:before{-webkit-mask-image:url("../../images/field-type-icons/icon-field-file.svg");mask-image:url("../../images/field-type-icons/icon-field-file.svg")}.field-type-icon.field-type-icon-wysiwyg:before{-webkit-mask-image:url("../../images/field-type-icons/icon-field-wysiwyg.svg");mask-image:url("../../images/field-type-icons/icon-field-wysiwyg.svg")}.field-type-icon.field-type-icon-oembed:before{-webkit-mask-image:url("../../images/field-type-icons/icon-field-oembed.svg");mask-image:url("../../images/field-type-icons/icon-field-oembed.svg")}.field-type-icon.field-type-icon-gallery:before{-webkit-mask-image:url("../../images/field-type-icons/icon-field-gallery.svg");mask-image:url("../../images/field-type-icons/icon-field-gallery.svg")}.field-type-icon.field-type-icon-select:before{-webkit-mask-image:url("../../images/field-type-icons/icon-field-select.svg");mask-image:url("../../images/field-type-icons/icon-field-select.svg")}.field-type-icon.field-type-icon-checkbox:before{-webkit-mask-image:url("../../images/field-type-icons/icon-field-checkbox.svg");mask-image:url("../../images/field-type-icons/icon-field-checkbox.svg")}.field-type-icon.field-type-icon-radio:before{-webkit-mask-image:url("../../images/field-type-icons/icon-field-radio.svg");mask-image:url("../../images/field-type-icons/icon-field-radio.svg")}.field-type-icon.field-type-icon-button-group:before{-webkit-mask-image:url("../../images/field-type-icons/icon-field-button-group.svg");mask-image:url("../../images/field-type-icons/icon-field-button-group.svg")}.field-type-icon.field-type-icon-true-false:before{-webkit-mask-image:url("../../images/field-type-icons/icon-field-true-false.svg");mask-image:url("../../images/field-type-icons/icon-field-true-false.svg")}.field-type-icon.field-type-icon-link:before{-webkit-mask-image:url("../../images/field-type-icons/icon-field-link.svg");mask-image:url("../../images/field-type-icons/icon-field-link.svg")}.field-type-icon.field-type-icon-post-object:before{-webkit-mask-image:url("../../images/field-type-icons/icon-field-post-object.svg");mask-image:url("../../images/field-type-icons/icon-field-post-object.svg")}.field-type-icon.field-type-icon-page-link:before{-webkit-mask-image:url("../../images/field-type-icons/icon-field-page-link.svg");mask-image:url("../../images/field-type-icons/icon-field-page-link.svg")}.field-type-icon.field-type-icon-relationship:before{-webkit-mask-image:url("../../images/field-type-icons/icon-field-relationship.svg");mask-image:url("../../images/field-type-icons/icon-field-relationship.svg")}.field-type-icon.field-type-icon-taxonomy:before{-webkit-mask-image:url("../../images/field-type-icons/icon-field-taxonomy.svg");mask-image:url("../../images/field-type-icons/icon-field-taxonomy.svg")}.field-type-icon.field-type-icon-user:before{-webkit-mask-image:url("../../images/field-type-icons/icon-field-user.svg");mask-image:url("../../images/field-type-icons/icon-field-user.svg")}.field-type-icon.field-type-icon-google-map:before{-webkit-mask-image:url("../../images/field-type-icons/icon-field-google-map.svg");mask-image:url("../../images/field-type-icons/icon-field-google-map.svg")}.field-type-icon.field-type-icon-date-picker:before{-webkit-mask-image:url("../../images/field-type-icons/icon-field-date-picker.svg");mask-image:url("../../images/field-type-icons/icon-field-date-picker.svg")}.field-type-icon.field-type-icon-date-time-picker:before{-webkit-mask-image:url("../../images/field-type-icons/icon-field-date-time-picker.svg");mask-image:url("../../images/field-type-icons/icon-field-date-time-picker.svg")}.field-type-icon.field-type-icon-time-picker:before{-webkit-mask-image:url("../../images/field-type-icons/icon-field-time-picker.svg");mask-image:url("../../images/field-type-icons/icon-field-time-picker.svg")}.field-type-icon.field-type-icon-color-picker:before{-webkit-mask-image:url("../../images/field-type-icons/icon-field-color-picker.svg");mask-image:url("../../images/field-type-icons/icon-field-color-picker.svg")}.field-type-icon.field-type-icon-message:before{-webkit-mask-image:url("../../images/field-type-icons/icon-field-message.svg");mask-image:url("../../images/field-type-icons/icon-field-message.svg")}.field-type-icon.field-type-icon-accordion:before{-webkit-mask-image:url("../../images/field-type-icons/icon-field-accordion.svg");mask-image:url("../../images/field-type-icons/icon-field-accordion.svg")}.field-type-icon.field-type-icon-tab:before{-webkit-mask-image:url("../../images/field-type-icons/icon-field-tab.svg");mask-image:url("../../images/field-type-icons/icon-field-tab.svg")}.field-type-icon.field-type-icon-group:before{-webkit-mask-image:url("../../images/field-type-icons/icon-field-group.svg");mask-image:url("../../images/field-type-icons/icon-field-group.svg")}.field-type-icon.field-type-icon-repeater:before{-webkit-mask-image:url("../../images/field-type-icons/icon-field-repeater.svg");mask-image:url("../../images/field-type-icons/icon-field-repeater.svg")}.field-type-icon.field-type-icon-flexible-content:before{-webkit-mask-image:url("../../images/field-type-icons/icon-field-flexible-content.svg");mask-image:url("../../images/field-type-icons/icon-field-flexible-content.svg")}.field-type-icon.field-type-icon-clone:before{-webkit-mask-image:url("../../images/field-type-icons/icon-field-clone.svg");mask-image:url("../../images/field-type-icons/icon-field-clone.svg")}#acf-admin-tools .postbox-header{display:none}#acf-admin-tools .acf-meta-box-wrap.-grid{margin-top:0;margin-right:0;margin-bottom:0;margin-left:0}#acf-admin-tools .acf-meta-box-wrap.-grid .postbox{width:100%;clear:none;float:none;margin-bottom:0}@media screen and (max-width: 880px){#acf-admin-tools .acf-meta-box-wrap.-grid .postbox{flex:1 1 100%}}#acf-admin-tools .acf-meta-box-wrap.-grid .postbox:nth-child(odd){margin-left:0}#acf-admin-tools .meta-box-sortables{display:grid;grid-template-columns:repeat(2, 1fr);grid-template-rows:repeat(1, 1fr);grid-column-gap:32px;grid-row-gap:32px}@media screen and (max-width: 880px){#acf-admin-tools .meta-box-sortables{display:flex;flex-wrap:wrap;justify-content:flex-start;align-content:flex-start;align-items:center;grid-column-gap:8px;grid-row-gap:8px}}#acf-admin-tools.tool-export .inside{margin:0}#acf-admin-tools.tool-export .acf-postbox-header{margin-bottom:24px}#acf-admin-tools.tool-export .acf-postbox-main{border:none;margin:0;padding-top:0;padding-right:24px;padding-bottom:0;padding-left:0}#acf-admin-tools.tool-export .acf-postbox-columns{margin-top:0;margin-right:280px;margin-bottom:0;margin-left:0;padding:0}#acf-admin-tools.tool-export .acf-postbox-columns .acf-postbox-side{padding:0}#acf-admin-tools.tool-export .acf-postbox-columns .acf-postbox-side .acf-panel{margin:0;padding:0}#acf-admin-tools.tool-export .acf-postbox-columns .acf-postbox-side:before{display:none}#acf-admin-tools.tool-export .acf-postbox-columns .acf-postbox-side .acf-btn{display:block;width:100%;text-align:center}#acf-admin-tools.tool-export .meta-box-sortables{display:block}#acf-admin-tools.tool-export .acf-panel{border:none}#acf-admin-tools.tool-export .acf-panel h3{margin:0;padding:0;color:#344054}#acf-admin-tools.tool-export .acf-panel h3:before{display:none}#acf-admin-tools.tool-export .acf-checkbox-list{margin-top:16px;border-width:1px;border-style:solid;border-color:#d0d5dd;border-radius:6px}#acf-admin-tools.tool-export .acf-checkbox-list li{display:inline-flex;box-sizing:border-box;width:100%;height:48px;align-items:center;margin:0;padding-right:12px;padding-left:12px;border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#eaecf0}#acf-admin-tools.tool-export .acf-checkbox-list li:last-child{border-bottom:none}.acf-settings-wrap.acf-updates{display:flex;flex-direction:row;flex-wrap:wrap;justify-content:flex-start;align-content:flex-start;align-items:flex-start}.custom-fields_page_acf-settings-updates .acf-admin-notice,.custom-fields_page_acf-settings-updates .acf-upgrade-notice,.custom-fields_page_acf-settings-updates .notice{flex:1 1 100%}.acf-settings-wrap.acf-updates .acf-box{margin-top:0;margin-right:0;margin-bottom:0;margin-left:0}.acf-settings-wrap.acf-updates .acf-box .inner{padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px}@media screen and (max-width: 880px){.acf-settings-wrap.acf-updates .acf-box{flex:1 1 100%}}.acf-settings-wrap.acf-updates .acf-admin-notice{flex:1 1 100%;margin-top:16px;margin-right:0;margin-left:0}#acf-license-information{flex:1 1 65%;margin-right:32px}#acf-license-information .inner{padding:0}#acf-license-information .inner .acf-license-defined{padding:24px;margin:0}#acf-license-information .inner .acf-activation-form,#acf-license-information .inner .acf-retry-activation{padding:24px}#acf-license-information .inner .acf-activation-form.acf-retry-activation,#acf-license-information .inner .acf-retry-activation.acf-retry-activation{padding-top:0;min-height:40px}#acf-license-information .inner .acf-activation-form.acf-retry-activation .acf-recheck-license.acf-btn,#acf-license-information .inner .acf-retry-activation.acf-retry-activation .acf-recheck-license.acf-btn{float:none;line-height:initial}#acf-license-information .inner .acf-activation-form.acf-retry-activation .acf-recheck-license.acf-btn i,#acf-license-information .inner .acf-retry-activation.acf-retry-activation .acf-recheck-license.acf-btn i{display:none}#acf-license-information .inner .acf-activation-form .acf-manage-license-btn,#acf-license-information .inner .acf-retry-activation .acf-manage-license-btn{float:right;line-height:40px;align-items:center;display:inline-flex}#acf-license-information .inner .acf-activation-form .acf-manage-license-btn.acf-renew-subscription,#acf-license-information .inner .acf-retry-activation .acf-manage-license-btn.acf-renew-subscription{float:none;line-height:initial}#acf-license-information .inner .acf-activation-form .acf-manage-license-btn i,#acf-license-information .inner .acf-retry-activation .acf-manage-license-btn i{margin:0 0 0 5px;width:19px;height:19px}#acf-license-information .inner .acf-activation-form .acf-recheck-license,#acf-license-information .inner .acf-retry-activation .acf-recheck-license{float:right;line-height:40px}#acf-license-information .inner .acf-activation-form .acf-recheck-license i,#acf-license-information .inner .acf-retry-activation .acf-recheck-license i{margin-right:8px;vertical-align:middle}#acf-license-information .inner .acf-license-status-wrap{background:#f9fafb;border-top:1px solid #eaecf0;border-bottom-left-radius:8px;border-bottom-right-radius:8px}#acf-license-information .inner .acf-license-status-wrap .acf-license-status-table{font-size:14px;padding:24px 24px 16px 24px}#acf-license-information .inner .acf-license-status-wrap .acf-license-status-table th{width:160px;font-weight:500;text-align:left;padding-bottom:16px}#acf-license-information .inner .acf-license-status-wrap .acf-license-status-table td{padding-bottom:16px}#acf-license-information .inner .acf-license-status-wrap .acf-license-status-table td .acf-license-status{display:inline-block;height:24px;line-height:24px;border-radius:100px;background:#eaecf0;padding:0 13px 1px 12px;border:1px solid rgba(0,0,0,.12);color:#667085}#acf-license-information .inner .acf-license-status-wrap .acf-license-status-table td .acf-license-status.active{background:rgba(18,183,106,.15);border:1px solid rgba(18,183,106,.24);color:#12b76a}#acf-license-information .inner .acf-license-status-wrap .acf-license-status-table td .acf-license-status.expired,#acf-license-information .inner .acf-license-status-wrap .acf-license-status-table td .acf-license-status.cancelled{background:rgba(209,55,55,.24);border:1px solid rgba(209,55,55,.24);color:#d13737}#acf-license-information .inner .acf-license-status-wrap .acf-no-license-view-pricing{padding:12px 24px;border-top:1px solid #eaecf0;color:#667085}@media screen and (max-width: 1024px){#acf-license-information{margin-right:0;margin-bottom:32px}}#acf-license-information label{font-weight:500}#acf-license-information .acf-input-wrap{margin-top:8px;margin-bottom:24px}#acf-license-information #acf_pro_license{width:100%}#acf-update-information{flex:1 1 35%;max-width:calc(35% - 32px)}#acf-update-information .form-table th,#acf-update-information .form-table td{padding-top:0;padding-right:0;padding-bottom:24px;padding-left:0;color:#344054}#acf-update-information .acf-update-changelog{margin-top:8px;margin-bottom:24px;padding-top:8px;border-top-width:1px;border-top-style:solid;border-top-color:#eaecf0;color:#344054}#acf-update-information .acf-update-changelog h4{margin-bottom:0}#acf-update-information .acf-update-changelog p{margin-top:0;margin-bottom:16px}#acf-update-information .acf-update-changelog p:last-of-type{margin-bottom:0}#acf-update-information .acf-update-changelog p em{color:#667085}#acf-update-information .acf-btn{display:inline-flex}.acf-admin-toolbar a.acf-admin-toolbar-upgrade-btn{display:inline-flex;align-items:center;align-self:stretch;padding-top:0;padding-right:16px;padding-bottom:0;padding-left:16px;background:linear-gradient(90.52deg, #3E8BFF 0.44%, #A45CFF 113.3%);box-shadow:inset 0 0 0 1px rgba(255,255,255,.16);background-size:180% 80%;background-position:100% 0;transition:background-position .5s;border-radius:6px;text-decoration:none}@media screen and (max-width: 768px){.acf-admin-toolbar a.acf-admin-toolbar-upgrade-btn{display:none}}.acf-admin-toolbar a.acf-admin-toolbar-upgrade-btn:hover{background-position:0 0}.acf-admin-toolbar a.acf-admin-toolbar-upgrade-btn:focus{border:none;outline:none;box-shadow:none}.acf-admin-toolbar a.acf-admin-toolbar-upgrade-btn p{margin:0;padding-top:8px;padding-bottom:8px;font-weight:normal;text-transform:none;color:#fff}.acf-admin-toolbar a.acf-admin-toolbar-upgrade-btn .acf-icon{width:18px;height:18px;margin-right:6px;margin-left:-2px;background-color:#f9fafb}.acf-admin-page #tmpl-acf-field-group-pro-features,.acf-admin-page #acf-field-group-pro-features{display:none;align-items:center;min-height:120px;background-color:#121833;background-image:url(../../images/pro-upgrade-grid-bg.svg),url(../../images/pro-upgrade-overlay.svg);background-repeat:repeat,no-repeat;background-size:1224px,1880px;background-position:left top,-520px -680px;color:#eaecf0;border-radius:8px;margin-top:24px;margin-bottom:24px}@media screen and (max-width: 768px){.acf-admin-page #tmpl-acf-field-group-pro-features,.acf-admin-page #acf-field-group-pro-features{background-size:1024px,980px;background-position:left top,-500px -200px}}@media screen and (max-width: 1200px){.acf-admin-page #tmpl-acf-field-group-pro-features,.acf-admin-page #acf-field-group-pro-features{background-size:1024px,1880px;background-position:left top,-520px -300px}}.acf-admin-page #tmpl-acf-field-group-pro-features .postbox-header,.acf-admin-page #acf-field-group-pro-features .postbox-header{display:none}.acf-admin-page #tmpl-acf-field-group-pro-features .inside,.acf-admin-page #acf-field-group-pro-features .inside{width:100%;border:none;padding:0}.acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-wrapper,.acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-wrapper{display:flex;justify-content:center;align-content:stretch;align-items:center;gap:96px;height:358px;max-width:950px;margin:0 auto;padding:0 35px}@media screen and (max-width: 1200px){.acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-wrapper,.acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-wrapper{gap:48px}}@media screen and (max-width: 768px){.acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-wrapper,.acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-wrapper{gap:0}}.acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-title,.acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-title-sm,.acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-title,.acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-title-sm{font-weight:590;line-height:150%}.acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-title .acf-pro-label,.acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-title-sm .acf-pro-label,.acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-title .acf-pro-label,.acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-title-sm .acf-pro-label{font-weight:normal;margin-top:-4px;margin-left:2px;vertical-align:middle;height:22px}.acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-title-sm,.acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-title-sm{display:none !important;font-size:18px}.acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-title-sm .acf-pro-label,.acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-title-sm .acf-pro-label{font-size:10px;height:20px}@media screen and (max-width: 768px){.acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-title-sm,.acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-title-sm{width:100%;text-align:center}}@media screen and (max-width: 768px){.acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-wrapper,.acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-wrapper{flex-direction:column;flex-wrap:wrap;justify-content:flex-start;align-content:flex-start;align-items:flex-start;padding:32px 32px 0 32px;height:unset}.acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-title-sm,.acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-title-sm{display:block !important;margin-bottom:24px}}.acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-content,.acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-content{display:flex;flex-direction:column;width:416px}.acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-content .acf-field-group-pro-features-desc,.acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-content .acf-field-group-pro-features-desc{margin-top:8px;margin-bottom:24px;font-size:15px;font-weight:300;color:#d0d5dd}@media screen and (max-width: 768px){.acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-content,.acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-content{width:100%;order:1;margin-right:0;margin-bottom:8px}.acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-content .acf-field-group-pro-features-title,.acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-content .acf-field-group-pro-features-desc,.acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-content .acf-field-group-pro-features-title,.acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-content .acf-field-group-pro-features-desc{display:none !important}}.acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-actions,.acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-actions{display:flex;flex-direction:row;align-items:flex-start;min-width:160px;gap:12px}@media screen and (max-width: 768px){.acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-actions,.acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-actions{justify-content:flex-start;flex-direction:column;margin-bottom:24px}.acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-actions a,.acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-actions a{justify-content:center;text-align:center;width:100%}}.acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-grid,.acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-grid{display:flex;flex-direction:row;flex-wrap:wrap;gap:16px;width:416px}.acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-grid .acf-field-group-pro-feature,.acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-grid .acf-field-group-pro-feature{display:flex;flex-direction:column;justify-content:center;align-items:center;width:128px;height:124px;background:rgba(255,255,255,.08);box-shadow:0px 0px 4px rgba(0,0,0,.04),0px 8px 16px rgba(0,0,0,.08),inset 0 0 0 1px rgba(255,255,255,.08);backdrop-filter:blur(6px);border-radius:8px}.acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-grid .acf-field-group-pro-feature .field-type-icon,.acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-grid .acf-field-group-pro-feature .field-type-icon{border:none;background:none;width:24px;opacity:.8}.acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-grid .acf-field-group-pro-feature .field-type-icon::before,.acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-grid .acf-field-group-pro-feature .field-type-icon::before{background-color:#fff;width:20px;height:20px}@media screen and (max-width: 1200px){.acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-grid .acf-field-group-pro-feature .field-type-icon::before,.acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-grid .acf-field-group-pro-feature .field-type-icon::before{width:18px;height:18px}}.acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-grid .acf-field-group-pro-feature .pro-feature-blocks::before,.acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-grid .acf-field-group-pro-feature .pro-feature-blocks::before{-webkit-mask-image:url("../../images/icons/icon-extended-menu.svg");mask-image:url("../../images/icons/icon-extended-menu.svg")}.acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-grid .acf-field-group-pro-feature .pro-feature-options-pages::before,.acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-grid .acf-field-group-pro-feature .pro-feature-options-pages::before{-webkit-mask-image:url("../../images/icons/icon-settings.svg");mask-image:url("../../images/icons/icon-settings.svg")}.acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-grid .acf-field-group-pro-feature .field-type-label,.acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-grid .acf-field-group-pro-feature .field-type-label{margin-top:4px;font-size:13px;font-weight:300;text-align:center;color:#fff}@media screen and (max-width: 1200px){.acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-grid,.acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-grid{flex-direction:column;gap:8px;width:288px}.acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-grid .acf-field-group-pro-feature,.acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-grid .acf-field-group-pro-feature{width:100%;height:40px;flex-direction:row;justify-content:unset;gap:8px}.acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-grid .acf-field-group-pro-feature .field-type-icon,.acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-grid .acf-field-group-pro-feature .field-type-icon{position:initial;margin-left:16px}.acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-grid .acf-field-group-pro-feature .field-type-label,.acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-grid .acf-field-group-pro-feature .field-type-label{margin-top:0}}@media screen and (max-width: 768px){.acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-grid,.acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-grid{gap:0;width:100%;height:auto;margin-bottom:16px;flex-direction:unset;flex-wrap:wrap}.acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-grid .acf-field-group-pro-feature,.acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-grid .acf-field-group-pro-feature{flex:1 0 50%;margin-bottom:8px;width:auto;height:auto;justify-content:center;background:none;box-shadow:none;backdrop-filter:none}.acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-grid .acf-field-group-pro-feature .field-type-label,.acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-grid .acf-field-group-pro-feature .field-type-label{margin-left:2px}.acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-grid .acf-field-group-pro-feature .field-type-icon,.acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-grid .acf-field-group-pro-feature .field-type-icon{position:initial;margin-left:0}.acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-grid .acf-field-group-pro-feature .field-type-icon:before,.acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-grid .acf-field-group-pro-feature .field-type-icon:before{height:16px;width:16px}.acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-grid .acf-field-group-pro-feature .field-type-label,.acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-grid .acf-field-group-pro-feature .field-type-label{font-size:12px;margin-top:0}}.acf-admin-page #tmpl-acf-field-group-pro-features h1,.acf-admin-page #acf-field-group-pro-features h1{margin-top:0;margin-bottom:4px;padding-top:0;padding-bottom:0;font-weight:bold;color:#f9fafb}.acf-admin-page #tmpl-acf-field-group-pro-features h1 .acf-icon,.acf-admin-page #acf-field-group-pro-features h1 .acf-icon{margin-right:8px}.acf-admin-page #tmpl-acf-field-group-pro-features .acf-btn,.acf-admin-page #acf-field-group-pro-features .acf-btn{display:inline-flex;background-color:rgba(255,255,255,.1);border:none;box-shadow:0px 0px 4px rgba(0,0,0,.04),0px 4px 8px rgba(0,0,0,.06),inset 0 0 0 1px rgba(255,255,255,.16);backdrop-filter:blur(6px);padding:8px 24px;height:48px}.acf-admin-page #tmpl-acf-field-group-pro-features .acf-btn:hover,.acf-admin-page #acf-field-group-pro-features .acf-btn:hover{background-color:rgba(255,255,255,.2)}.acf-admin-page #tmpl-acf-field-group-pro-features .acf-btn .acf-icon,.acf-admin-page #acf-field-group-pro-features .acf-btn .acf-icon{margin-right:-2px;margin-left:6px}.acf-admin-page #tmpl-acf-field-group-pro-features .acf-btn.acf-pro-features-upgrade,.acf-admin-page #acf-field-group-pro-features .acf-btn.acf-pro-features-upgrade{background:linear-gradient(90.52deg, #3E8BFF 0.44%, #A45CFF 113.3%);background-size:160% 80%;background-position:100% 0;box-shadow:0px 0px 4px rgba(0,0,0,.04),0px 4px 8px rgba(0,0,0,.06),inset 0 0 0 1px rgba(255,255,255,.16);border-radius:6px;transition:background-position .5s}.acf-admin-page #tmpl-acf-field-group-pro-features .acf-btn.acf-pro-features-upgrade:hover,.acf-admin-page #acf-field-group-pro-features .acf-btn.acf-pro-features-upgrade:hover{background-position:0 0}.acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-footer-wrap,.acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-footer-wrap{height:48px;background:rgba(16,24,40,.4);backdrop-filter:blur(6px);border-top:1px solid rgba(255,255,255,.08);border-bottom-left-radius:8px;border-bottom-right-radius:8px;color:#98a2b3;font-size:13px;font-weight:300;padding:0 35px}.acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-footer-wrap .acf-field-group-pro-features-footer,.acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-footer-wrap .acf-field-group-pro-features-footer{display:flex;align-items:center;justify-content:space-between;max-width:950px;height:48px;margin:0 auto}.acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-footer-wrap .acf-field-group-pro-features-wpengine-logo,.acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-footer-wrap .acf-field-group-pro-features-wpengine-logo{height:16px;vertical-align:middle;margin-top:-2px;margin-left:3px}.acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-footer-wrap a,.acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-footer-wrap a{color:#98a2b3;text-decoration:none}.acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-footer-wrap a:hover,.acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-footer-wrap a:hover{color:#d0d5dd}.acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-footer-wrap a .acf-icon,.acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-footer-wrap a .acf-icon{width:18px;height:18px;margin-left:4px}.acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-footer-wrap .acf-more-tools-from-wpengine a,.acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-footer-wrap .acf-more-tools-from-wpengine a{display:inline-flex;align-items:center}@media screen and (max-width: 768px){.acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-footer-wrap,.acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-footer-wrap{height:70px;font-size:12px}.acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-footer-wrap .acf-more-tools-from-wpengine,.acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-footer-wrap .acf-more-tools-from-wpengine{display:none}.acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-footer-wrap .acf-field-group-pro-features-footer,.acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-footer-wrap .acf-field-group-pro-features-footer{justify-content:center;height:70px}.acf-admin-page #tmpl-acf-field-group-pro-features .acf-field-group-pro-features-footer-wrap .acf-field-group-pro-features-footer .acf-field-group-pro-features-wpengine-logo,.acf-admin-page #acf-field-group-pro-features .acf-field-group-pro-features-footer-wrap .acf-field-group-pro-features-footer .acf-field-group-pro-features-wpengine-logo{clear:both;margin:6px auto 0 auto;display:block}}.acf-no-field-groups #tmpl-acf-field-group-pro-features,.acf-no-post-types #tmpl-acf-field-group-pro-features,.acf-no-taxonomies #tmpl-acf-field-group-pro-features{margin-top:0}.acf-admin-single-post-type label[for=acf-basic-settings-hide],.acf-admin-single-taxonomy label[for=acf-basic-settings-hide],.acf-admin-single-options-page label[for=acf-basic-settings-hide]{display:none}.acf-admin-single-post-type fieldset.columns-prefs,.acf-admin-single-taxonomy fieldset.columns-prefs,.acf-admin-single-options-page fieldset.columns-prefs{display:none}.acf-admin-single-post-type #acf-basic-settings .postbox-header,.acf-admin-single-taxonomy #acf-basic-settings .postbox-header,.acf-admin-single-options-page #acf-basic-settings .postbox-header{display:none}.acf-admin-single-post-type .postbox-container,.acf-admin-single-post-type .notice,.acf-admin-single-taxonomy .postbox-container,.acf-admin-single-taxonomy .notice,.acf-admin-single-options-page .postbox-container,.acf-admin-single-options-page .notice{max-width:1440px;clear:left}.acf-admin-single-post-type #post-body-content,.acf-admin-single-taxonomy #post-body-content,.acf-admin-single-options-page #post-body-content{margin:0}.acf-admin-single-post-type .postbox .inside,.acf-admin-single-post-type .acf-box .inside,.acf-admin-single-taxonomy .postbox .inside,.acf-admin-single-taxonomy .acf-box .inside,.acf-admin-single-options-page .postbox .inside,.acf-admin-single-options-page .acf-box .inside{padding-top:48px;padding-right:48px;padding-bottom:48px;padding-left:48px}.acf-admin-single-post-type #acf-advanced-settings.postbox .inside,.acf-admin-single-taxonomy #acf-advanced-settings.postbox .inside,.acf-admin-single-options-page #acf-advanced-settings.postbox .inside{padding-bottom:24px}.acf-admin-single-post-type .postbox-container .meta-box-sortables #acf-basic-settings .inside,.acf-admin-single-taxonomy .postbox-container .meta-box-sortables #acf-basic-settings .inside,.acf-admin-single-options-page .postbox-container .meta-box-sortables #acf-basic-settings .inside{border:none}.acf-admin-single-post-type .acf-input-wrap,.acf-admin-single-taxonomy .acf-input-wrap,.acf-admin-single-options-page .acf-input-wrap{overflow:visible}.acf-admin-single-post-type .acf-field,.acf-admin-single-taxonomy .acf-field,.acf-admin-single-options-page .acf-field{margin-top:0;margin-right:0;margin-bottom:24px;margin-left:0}.acf-admin-single-post-type .acf-field .acf-label,.acf-admin-single-taxonomy .acf-field .acf-label,.acf-admin-single-options-page .acf-field .acf-label{margin-bottom:6px}.acf-admin-single-post-type .acf-field-text,.acf-admin-single-post-type .acf-field-textarea,.acf-admin-single-post-type .acf-field-select,.acf-admin-single-taxonomy .acf-field-text,.acf-admin-single-taxonomy .acf-field-textarea,.acf-admin-single-taxonomy .acf-field-select,.acf-admin-single-options-page .acf-field-text,.acf-admin-single-options-page .acf-field-textarea,.acf-admin-single-options-page .acf-field-select{max-width:600px}.acf-admin-single-post-type .acf-field-true-false,.acf-admin-single-taxonomy .acf-field-true-false,.acf-admin-single-options-page .acf-field-true-false{max-width:700px}.acf-admin-single-post-type .acf-field-supports,.acf-admin-single-taxonomy .acf-field-supports,.acf-admin-single-options-page .acf-field-supports{max-width:600px}.acf-admin-single-post-type .acf-field-supports .acf-label,.acf-admin-single-taxonomy .acf-field-supports .acf-label,.acf-admin-single-options-page .acf-field-supports .acf-label{display:block}.acf-admin-single-post-type .acf-field-supports .acf-label .description,.acf-admin-single-taxonomy .acf-field-supports .acf-label .description,.acf-admin-single-options-page .acf-field-supports .acf-label .description{margin-top:4px;margin-bottom:12px}.acf-admin-single-post-type .acf-field-supports .acf_post_type_supports,.acf-admin-single-taxonomy .acf-field-supports .acf_post_type_supports,.acf-admin-single-options-page .acf-field-supports .acf_post_type_supports{display:flex;flex-wrap:wrap;justify-content:flex-start;align-content:flex-start;align-items:flex-start}.acf-admin-single-post-type .acf-field-supports .acf_post_type_supports:focus-within,.acf-admin-single-taxonomy .acf-field-supports .acf_post_type_supports:focus-within,.acf-admin-single-options-page .acf-field-supports .acf_post_type_supports:focus-within{border-color:rgba(0,0,0,0)}.acf-admin-single-post-type .acf-field-supports .acf_post_type_supports li,.acf-admin-single-taxonomy .acf-field-supports .acf_post_type_supports li,.acf-admin-single-options-page .acf-field-supports .acf_post_type_supports li{flex:0 0 25%}.acf-admin-single-post-type .acf-field-supports .acf_post_type_supports li a.button,.acf-admin-single-taxonomy .acf-field-supports .acf_post_type_supports li a.button,.acf-admin-single-options-page .acf-field-supports .acf_post_type_supports li a.button{background-color:rgba(0,0,0,0);padding:0;border:0;height:auto;min-height:auto;margin-top:0;border-radius:0;line-height:22px}.acf-admin-single-post-type .acf-field-supports .acf_post_type_supports li a.button:before,.acf-admin-single-taxonomy .acf-field-supports .acf_post_type_supports li a.button:before,.acf-admin-single-options-page .acf-field-supports .acf_post_type_supports li a.button:before{content:"";margin-right:6px;display:inline-flex;width:16px;height:16px;background-color:currentColor;border:none;border-radius:0;-webkit-mask-size:contain;mask-size:contain;-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;-webkit-mask-position:center;mask-position:center;text-indent:500%;white-space:nowrap;overflow:hidden;-webkit-mask-image:url("../../images/icons/icon-add.svg");mask-image:url("../../images/icons/icon-add.svg")}.acf-admin-single-post-type .acf-field-supports .acf_post_type_supports li a.button:hover,.acf-admin-single-taxonomy .acf-field-supports .acf_post_type_supports li a.button:hover,.acf-admin-single-options-page .acf-field-supports .acf_post_type_supports li a.button:hover{color:#044e71}.acf-admin-single-post-type .acf-field-supports .acf_post_type_supports li input[type=text],.acf-admin-single-taxonomy .acf-field-supports .acf_post_type_supports li input[type=text],.acf-admin-single-options-page .acf-field-supports .acf_post_type_supports li input[type=text]{width:calc(100% - 36px);padding:0;box-shadow:none;border:none;border-bottom:1px solid #d0d5dd;border-radius:0;height:auto;margin:0;min-height:auto}.acf-admin-single-post-type .acf-field-supports .acf_post_type_supports li input[type=text]:focus,.acf-admin-single-taxonomy .acf-field-supports .acf_post_type_supports li input[type=text]:focus,.acf-admin-single-options-page .acf-field-supports .acf_post_type_supports li input[type=text]:focus{outline:none;border-bottom-color:#399ccb}.acf-admin-single-post-type .acf-field-seperator,.acf-admin-single-taxonomy .acf-field-seperator,.acf-admin-single-options-page .acf-field-seperator{margin-top:40px;margin-bottom:40px;border-top:1px solid #eaecf0;border-right:none;border-bottom:none;border-left:none}.acf-admin-single-post-type .acf-field-advanced-configuration,.acf-admin-single-taxonomy .acf-field-advanced-configuration,.acf-admin-single-options-page .acf-field-advanced-configuration{margin-bottom:0}.acf-admin-single-post-type .postbox-container .acf-tab-wrap,.acf-admin-single-post-type .acf-regenerate-labels-bar,.acf-admin-single-taxonomy .postbox-container .acf-tab-wrap,.acf-admin-single-taxonomy .acf-regenerate-labels-bar,.acf-admin-single-options-page .postbox-container .acf-tab-wrap,.acf-admin-single-options-page .acf-regenerate-labels-bar{position:relative;top:-48px;left:-48px;width:calc(100% + 96px)}.acf-admin-single-post-type .acf-regenerate-labels-bar,.acf-admin-single-taxonomy .acf-regenerate-labels-bar,.acf-admin-single-options-page .acf-regenerate-labels-bar{display:flex;align-items:center;justify-content:right;min-height:48px;margin-bottom:0;padding-right:16px;padding-left:16px;gap:8px;border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#f2f4f7}.acf-admin-single-post-type .acf-labels-tip,.acf-admin-single-taxonomy .acf-labels-tip,.acf-admin-single-options-page .acf-labels-tip{display:inline-flex;align-items:center;min-height:24px;margin-right:8px;padding-left:16px;border-left-width:1px;border-left-style:solid;border-left-color:#eaecf0}.acf-admin-single-post-type .acf-labels-tip .acf-icon,.acf-admin-single-taxonomy .acf-labels-tip .acf-icon,.acf-admin-single-options-page .acf-labels-tip .acf-icon{display:inline-flex;align-items:center;width:16px;height:16px;-webkit-mask-size:16px;mask-size:16px;background-color:#98a2b3}.acf-select2-default-pill{border-radius:100px;min-height:20px;padding-top:2px;padding-bottom:2px;padding-left:8px;padding-right:8px;font-size:11px;margin-left:6px;background-color:#eaecf0;color:#667085}.acf-menu-position-desc-child{display:none}.acf-modal.acf-browse-fields-modal{width:1120px;height:664px;top:50%;right:auto;bottom:auto;left:50%;transform:translate(-50%, -50%);display:flex;flex-direction:row;border-radius:12px;box-shadow:0px 0px 4px rgba(0,0,0,.04),0px 8px 16px rgba(0,0,0,.08);overflow:hidden}.acf-modal.acf-browse-fields-modal .acf-field-picker{display:flex;flex-direction:column;flex-grow:1;width:760px;background:#fff}.acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-title,.acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-content,.acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-toolbar{position:relative}.acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-title{display:flex;flex-direction:row;justify-content:space-between;align-items:center;background:#f9fafb;border:none;padding:35px 32px}.acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-title .acf-search-field-types-wrap{position:relative}.acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-title .acf-search-field-types-wrap:after{content:"";display:block;position:absolute;top:11px;left:10px;width:18px;height:18px;-webkit-mask-image:url("../../images/icons/icon-search.svg");mask-image:url("../../images/icons/icon-search.svg");background-color:#98a2b3;border:none;border-radius:0;-webkit-mask-size:contain;mask-size:contain;-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;-webkit-mask-position:center;mask-position:center;text-indent:500%;white-space:nowrap;overflow:hidden}.acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-title .acf-search-field-types-wrap input{width:280px;height:40px;margin:0;padding-left:32px;box-shadow:none}.acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-content{top:auto;bottom:auto;padding:0;height:100%}.acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-content .acf-tab-group{padding-left:32px}.acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-content .acf-field-types-tab{display:flex}.acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-content .acf-field-types-tab,.acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-content .acf-field-type-search-results{flex-direction:row;flex-wrap:wrap;gap:24px;padding:32px}.acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-content .acf-field-types-tab .acf-field-type,.acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-content .acf-field-type-search-results .acf-field-type{position:relative;display:flex;flex-direction:column;justify-content:center;align-items:center;isolation:isolate;width:120px;height:120px;background:#f9fafb;border:1px solid #eaecf0;border-radius:8px;box-sizing:border-box;color:#1d2939;text-decoration:none}.acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-content .acf-field-types-tab .acf-field-type:hover,.acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-content .acf-field-types-tab .acf-field-type:active,.acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-content .acf-field-types-tab .acf-field-type.selected,.acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-content .acf-field-type-search-results .acf-field-type:hover,.acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-content .acf-field-type-search-results .acf-field-type:active,.acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-content .acf-field-type-search-results .acf-field-type.selected{background:#ebf5fa;border:1px solid #399ccb;box-shadow:inset 0 0 0 1px #399ccb}.acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-content .acf-field-types-tab .acf-field-type .field-type-icon,.acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-content .acf-field-type-search-results .acf-field-type .field-type-icon{border:none;background:none;top:0}.acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-content .acf-field-types-tab .acf-field-type .field-type-icon:before,.acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-content .acf-field-type-search-results .acf-field-type .field-type-icon:before{width:22px;height:22px}.acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-content .acf-field-types-tab .acf-field-type .field-type-label,.acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-content .acf-field-type-search-results .acf-field-type .field-type-label{margin-top:12px}.acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-content .acf-field-types-tab .field-type-requires-pro,.acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-content .acf-field-type-search-results .field-type-requires-pro{display:flex;justify-content:center;align-items:center;position:absolute;top:-10px;right:-10px;height:21px;color:#fff;background:linear-gradient(90.52deg, #3E8BFF 0.44%, #A45CFF 113.3%);background-size:140% 20%;background-position:100% 0;border-radius:100px;font-size:11px;padding-right:6px;padding-left:6px}.acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-content .acf-field-types-tab .field-type-requires-pro i,.acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-content .acf-field-type-search-results .field-type-requires-pro i{width:12px;height:12px;margin-right:2px}.acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-toolbar{display:flex;align-items:flex-start;justify-content:space-between;height:auto;min-height:72px;padding-top:0;padding-right:32px;padding-bottom:0;padding-left:32px;margin:0;border:none}.acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-toolbar .acf-select-field,.acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-toolbar .acf-btn-pro{min-width:160px;justify-content:center}.acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-toolbar .acf-insert-field-label{min-width:280px;box-shadow:none}.acf-modal.acf-browse-fields-modal .acf-field-picker .acf-modal-toolbar .acf-field-picker-actions{display:flex;gap:8px}.acf-modal.acf-browse-fields-modal .acf-field-type-preview{display:flex;flex-direction:column;width:360px;background-color:#f9fafb;background-image:url("../../images/field-preview-grid.png");background-size:740px;background-repeat:no-repeat;background-position:center bottom;border-left:1px solid #eaecf0;box-sizing:border-box;padding:32px}.acf-modal.acf-browse-fields-modal .acf-field-type-preview .field-type-desc{margin:0;padding:0;color:#667085}.acf-modal.acf-browse-fields-modal .acf-field-type-preview .field-type-preview-container{display:inline-flex;justify-content:center;width:100%;margin-top:24px;padding-top:32px;padding-bottom:32px;background-color:rgba(255,255,255,.64);border-radius:8px;box-shadow:0px 0px 0px 1px rgba(0,0,0,.04),0px 8px 24px rgba(0,0,0,.04)}.acf-modal.acf-browse-fields-modal .acf-field-type-preview .field-type-image{max-width:232px}.acf-modal.acf-browse-fields-modal .acf-field-type-preview .field-type-info{flex-grow:1}.acf-modal.acf-browse-fields-modal .acf-field-type-preview .field-type-info .field-type-name{font-size:21px;margin-top:0;margin-right:0;margin-bottom:16px;margin-left:0}.acf-modal.acf-browse-fields-modal .acf-field-type-preview .field-type-info .field-type-upgrade-to-unlock{display:inline-flex;justify-items:center;align-items:center;min-height:24px;margin-bottom:12px;padding-right:8px;padding-left:8px;background:linear-gradient(90.52deg, #3E8BFF 0.44%, #A45CFF 113.3%);background-size:140% 20%;background-position:100% 0;border-radius:100px;color:#fff;text-decoration:none;font-size:11px}.acf-modal.acf-browse-fields-modal .acf-field-type-preview .field-type-info .field-type-upgrade-to-unlock i.acf-icon{width:14px;height:14px;margin-right:4px}.acf-modal.acf-browse-fields-modal .acf-field-type-preview .field-type-links{display:flex;align-items:center;gap:24px;min-height:40px}.acf-modal.acf-browse-fields-modal .acf-field-type-preview .field-type-links .acf-icon{width:18px;height:18px}.acf-modal.acf-browse-fields-modal .acf-field-type-preview .field-type-links:before{display:none}.acf-modal.acf-browse-fields-modal .acf-field-type-preview .field-type-links a{display:flex;gap:6px;text-decoration:none}.acf-modal.acf-browse-fields-modal .acf-field-type-preview .field-type-links a:hover{text-decoration:underline}.acf-modal.acf-browse-fields-modal .acf-field-type-search-results,.acf-modal.acf-browse-fields-modal .acf-field-type-search-no-results{display:none}.acf-modal.acf-browse-fields-modal.is-searching .acf-tab-wrap,.acf-modal.acf-browse-fields-modal.is-searching .acf-field-types-tab,.acf-modal.acf-browse-fields-modal.is-searching .acf-field-type-search-no-results{display:none !important}.acf-modal.acf-browse-fields-modal.is-searching .acf-field-type-search-results{display:flex}.acf-modal.acf-browse-fields-modal.no-results-found .acf-tab-wrap,.acf-modal.acf-browse-fields-modal.no-results-found .acf-field-types-tab,.acf-modal.acf-browse-fields-modal.no-results-found .acf-field-type-search-results,.acf-modal.acf-browse-fields-modal.no-results-found .field-type-info,.acf-modal.acf-browse-fields-modal.no-results-found .field-type-links,.acf-modal.acf-browse-fields-modal.no-results-found .acf-field-picker-toolbar{display:none !important}.acf-modal.acf-browse-fields-modal.no-results-found .acf-modal-title{border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#eaecf0}.acf-modal.acf-browse-fields-modal.no-results-found .acf-field-type-search-no-results{display:flex;flex-direction:column;justify-content:center;align-items:center;height:100%;gap:6px}.acf-modal.acf-browse-fields-modal.no-results-found .acf-field-type-search-no-results img{margin-bottom:19px}.acf-modal.acf-browse-fields-modal.no-results-found .acf-field-type-search-no-results p{margin:0}.acf-modal.acf-browse-fields-modal.no-results-found .acf-field-type-search-no-results p.acf-no-results-text{display:flex}.acf-modal.acf-browse-fields-modal.no-results-found .acf-field-type-search-no-results .acf-invalid-search-term{max-width:200px;overflow:hidden;text-overflow:ellipsis;display:inline-block}@media only screen and (max-width: 1080px){.acf-btn.browse-fields{display:none}} diff --git a/assets/build/css/pro/acf-pro-input.css b/assets/build/css/pro/acf-pro-input.css index 8dd4fd8..1dffd39 100644 --- a/assets/build/css/pro/acf-pro-input.css +++ b/assets/build/css/pro/acf-pro-input.css @@ -738,16 +738,21 @@ html[dir=rtl] .acf-block-component .acf-block-fields { .acf-block-body .acf-fields > .acf-field.acf-accordion .acf-accordion-title { padding: 16px 20px; } -.acf-block-body .acf-button, .acf-block-body .acf-link a.button { +.acf-block-body .acf-button, .acf-block-body .acf-link a.button, .acf-block-body .acf-add-checkbox { color: #2271b1 !important; - border-color: #2271b1; - background: #f6f7f7; + border-color: #2271b1 !important; + background: #f6f7f7 !important; vertical-align: top; } -.acf-block-body .acf-button.button-primary:hover, .acf-block-body .acf-link a.button.button-primary:hover { +.acf-block-body .acf-button.button-primary:hover, .acf-block-body .acf-link a.button.button-primary:hover, .acf-block-body .acf-add-checkbox.button-primary:hover { color: white !important; + background: #2271b1 !important; } -.acf-block-body .acf-button:hover, .acf-block-body .acf-link a.button:hover { +.acf-block-body .acf-button:focus, .acf-block-body .acf-link a.button:focus, .acf-block-body .acf-add-checkbox:focus { + outline: none !important; + background: #f6f7f7 !important; +} +.acf-block-body .acf-button:hover, .acf-block-body .acf-link a.button:hover, .acf-block-body .acf-add-checkbox:hover { color: #0a4b78 !important; } .acf-block-body .acf-block-preview { diff --git a/assets/build/css/pro/acf-pro-input.css.map b/assets/build/css/pro/acf-pro-input.css.map index 3bbe241..c41a5bd 100644 --- a/assets/build/css/pro/acf-pro-input.css.map +++ b/assets/build/css/pro/acf-pro-input.css.map @@ -1 +1 @@ -{"version":3,"file":"acf-pro-input.css","mappings":"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","sources":["webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/sass/pro/acf-pro-input.scss","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/sass/_variables.scss","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/sass/_mixins.scss","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/sass/pro/_fields.scss","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/sass/pro/_blocks.scss"],"sourcesContent":["@charset \"UTF-8\";\n/*--------------------------------------------------------------------------------------------\n*\n*\tVars\n*\n*--------------------------------------------------------------------------------------------*/\n/* colors */\n/* acf-field */\n/* responsive */\n/*--------------------------------------------------------------------------------------------\n*\n*\tACF 6 ↓\n*\n*--------------------------------------------------------------------------------------------*/\n/*--------------------------------------------------------------------------------------------\n*\n* Mixins\n*\n*--------------------------------------------------------------------------------------------*/\n/*---------------------------------------------------------------------------------------------\n*\n* Repeater\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-repeater {\n /* table */\n /* row handle (add/remove) */\n /* add in spacer to th (force correct width) */\n /* row */\n /* sortable */\n /* layouts */\n /*\n \t&.-row > table > tbody > tr:before,\n \t&.-block > table > tbody > tr:before {\n \t\tcontent: \"\";\n \t\tdisplay: table-row;\n \t\theight: 2px;\n \t\tbackground: #f00;\n \t}\n */\n /* empty */\n /* collapsed */\n /* collapsed (block layout) */\n /* collapsed (table layout) */\n}\n.acf-repeater > table {\n margin: 0 0 8px;\n background: #F9F9F9;\n}\n.acf-repeater > table > tbody tr.acf-divider:not(:first-child) > td {\n border-top: 10px solid #EAECF0;\n}\n.acf-repeater .acf-row-handle {\n width: 16px;\n text-align: center !important;\n vertical-align: middle !important;\n position: relative;\n /* icons */\n /* .order */\n /* remove */\n}\n.acf-repeater .acf-row-handle .acf-order-input-wrap {\n width: 45px;\n}\n.acf-repeater .acf-row-handle .acf-order-input::-webkit-outer-spin-button,\n.acf-repeater .acf-row-handle .acf-order-input::-webkit-inner-spin-button {\n -webkit-appearance: none;\n margin: 0;\n}\n.acf-repeater .acf-row-handle .acf-order-input {\n -moz-appearance: textfield;\n text-align: center;\n}\n.acf-repeater .acf-row-handle .acf-icon {\n display: none;\n position: absolute;\n top: 0;\n margin: -8px 0 0 -2px;\n /* minus icon */\n}\n.acf-repeater .acf-row-handle .acf-icon.-minus {\n top: 50%;\n /* ie fix */\n}\nbody.browser-msie .acf-repeater .acf-row-handle .acf-icon.-minus {\n top: 25px;\n}\n.acf-repeater .acf-row-handle.order {\n background: #f4f4f4;\n cursor: move;\n color: #aaa;\n text-shadow: #fff 0 1px 0;\n}\n.acf-repeater .acf-row-handle.order:hover {\n color: #666;\n}\n.acf-repeater .acf-row-handle.order + td {\n border-left-color: #DFDFDF;\n}\n.acf-repeater .acf-row-handle.pagination {\n cursor: auto;\n}\n.acf-repeater .acf-row-handle.remove {\n background: #F9F9F9;\n border-left-color: #DFDFDF;\n}\n.acf-repeater th.acf-row-handle:before {\n content: \"\";\n width: 16px;\n display: block;\n height: 1px;\n}\n.acf-repeater .acf-row {\n /* hide clone */\n /* hover */\n}\n.acf-repeater .acf-row.acf-clone {\n display: none !important;\n}\n.acf-repeater .acf-row:hover, .acf-repeater .acf-row.-hover {\n /* icons */\n}\n.acf-repeater .acf-row:hover > .acf-row-handle .acf-icon, .acf-repeater .acf-row.-hover > .acf-row-handle .acf-icon {\n display: block;\n}\n.acf-repeater .acf-row:hover > .acf-row-handle .acf-icon.show-on-shift, .acf-repeater .acf-row.-hover > .acf-row-handle .acf-icon.show-on-shift {\n display: none;\n}\nbody.acf-keydown-shift .acf-repeater .acf-row:hover > .acf-row-handle .acf-icon.show-on-shift, body.acf-keydown-shift .acf-repeater .acf-row.-hover > .acf-row-handle .acf-icon.show-on-shift {\n display: block;\n}\nbody.acf-keydown-shift .acf-repeater .acf-row:hover > .acf-row-handle .acf-icon.hide-on-shift, body.acf-keydown-shift .acf-repeater .acf-row.-hover > .acf-row-handle .acf-icon.hide-on-shift {\n display: none;\n}\n.acf-repeater > table > tbody > tr.ui-sortable-helper {\n box-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);\n}\n.acf-repeater > table > tbody > tr.ui-sortable-placeholder {\n visibility: visible !important;\n}\n.acf-repeater > table > tbody > tr.ui-sortable-placeholder td {\n background: #F9F9F9;\n}\n.acf-repeater.-row > table > tbody > tr > td, .acf-repeater.-block > table > tbody > tr > td {\n border-top-color: #E1E1E1;\n}\n.acf-repeater.-empty > table > thead > tr > th {\n border-bottom: 0 none;\n}\n.acf-repeater.-empty.-row > table, .acf-repeater.-empty.-block > table {\n display: none;\n}\n.acf-repeater .acf-row.-collapsed > .acf-field {\n display: none !important;\n}\n.acf-repeater .acf-row.-collapsed > td.acf-field.-collapsed-target {\n display: table-cell !important;\n}\n.acf-repeater .acf-row.-collapsed > .acf-fields > * {\n display: none !important;\n}\n.acf-repeater .acf-row.-collapsed > .acf-fields > .acf-field.-collapsed-target {\n display: block !important;\n}\n.acf-repeater .acf-row.-collapsed > .acf-fields > .acf-field.-collapsed-target[data-width] {\n float: none !important;\n width: auto !important;\n}\n.acf-repeater.-table .acf-row.-collapsed .acf-field.-collapsed-target {\n border-left-color: #dfdfdf;\n}\n.acf-repeater.-max .acf-icon[data-event=add-row] {\n display: none !important;\n}\n.acf-repeater > .acf-actions .acf-button {\n float: right;\n pointer-events: auto !important;\n}\n.acf-repeater > .acf-actions .acf-tablenav {\n float: right;\n margin-right: 20px;\n}\n.acf-repeater > .acf-actions .acf-tablenav .current-page {\n width: auto !important;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Flexible Content\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-flexible-content {\n position: relative;\n}\n.acf-flexible-content > .clones {\n display: none;\n}\n.acf-flexible-content > .values {\n margin: 0 0 8px;\n}\n.acf-flexible-content > .values > .ui-sortable-placeholder {\n visibility: visible !important;\n border: 1px dashed #b4b9be;\n box-shadow: none;\n background: transparent;\n}\n.acf-flexible-content .layout {\n position: relative;\n margin: 20px 0 0;\n background: #fff;\n border: 1px solid #ccd0d4;\n}\n.acf-flexible-content .layout:first-child {\n margin-top: 0;\n}\n.acf-flexible-content .layout .acf-fc-layout-handle {\n display: block;\n position: relative;\n padding: 8px 10px;\n cursor: move;\n border-bottom: #ccd0d4 solid 1px;\n color: #444;\n font-size: 14px;\n line-height: 1.4em;\n}\n.acf-flexible-content .layout .acf-fc-layout-order {\n display: block;\n width: 20px;\n height: 20px;\n border-radius: 10px;\n display: inline-block;\n text-align: center;\n line-height: 20px;\n margin: 0 2px 0 0;\n background: #F1F1F1;\n font-size: 12px;\n color: #444;\n}\nhtml[dir=rtl] .acf-flexible-content .layout .acf-fc-layout-order {\n float: right;\n margin-right: 0;\n margin-left: 5px;\n}\n.acf-flexible-content .layout .acf-fc-layout-controls {\n position: absolute;\n top: 8px;\n right: 8px;\n}\n.acf-flexible-content .layout .acf-fc-layout-controls .acf-icon {\n display: block;\n float: left;\n margin: 0 0 0 5px;\n}\n.acf-flexible-content .layout .acf-fc-layout-controls .acf-icon.-plus, .acf-flexible-content .layout .acf-fc-layout-controls .acf-icon.-minus, .acf-flexible-content .layout .acf-fc-layout-controls .acf-icon.-duplicate {\n visibility: hidden;\n}\nhtml[dir=rtl] .acf-flexible-content .layout .acf-fc-layout-controls {\n right: auto;\n left: 9px;\n}\n.acf-flexible-content .layout.is-selected {\n border-color: #7e8993;\n}\n.acf-flexible-content .layout.is-selected .acf-fc-layout-handle {\n border-color: #7e8993;\n}\n.acf-flexible-content .layout:hover .acf-fc-layout-controls .acf-icon.-plus, .acf-flexible-content .layout:hover .acf-fc-layout-controls .acf-icon.-minus, .acf-flexible-content .layout:hover .acf-fc-layout-controls .acf-icon.-duplicate, .acf-flexible-content .layout.-hover .acf-fc-layout-controls .acf-icon.-plus, .acf-flexible-content .layout.-hover .acf-fc-layout-controls .acf-icon.-minus, .acf-flexible-content .layout.-hover .acf-fc-layout-controls .acf-icon.-duplicate {\n visibility: visible;\n}\n.acf-flexible-content .layout.-collapsed > .acf-fc-layout-handle {\n border-bottom-width: 0;\n}\n.acf-flexible-content .layout.-collapsed > .acf-fields,\n.acf-flexible-content .layout.-collapsed > .acf-table {\n display: none;\n}\n.acf-flexible-content .layout > .acf-table {\n border: 0 none;\n box-shadow: none;\n}\n.acf-flexible-content .layout > .acf-table > tbody > tr {\n background: #fff;\n}\n.acf-flexible-content .layout > .acf-table > thead > tr > th {\n background: #F9F9F9;\n}\n.acf-flexible-content .no-value-message {\n padding: 19px;\n border: #ccc dashed 2px;\n text-align: center;\n display: none;\n}\n.acf-flexible-content.-empty > .no-value-message {\n display: block;\n}\n\n.acf-fc-popup {\n padding: 5px 0;\n z-index: 900001;\n min-width: 135px;\n}\n.acf-fc-popup ul, .acf-fc-popup li {\n list-style: none;\n display: block;\n margin: 0;\n padding: 0;\n}\n.acf-fc-popup li {\n position: relative;\n float: none;\n white-space: nowrap;\n}\n.acf-fc-popup .badge {\n display: inline-block;\n border-radius: 8px;\n font-size: 9px;\n line-height: 15px;\n padding: 0 5px;\n background: #d54e21;\n text-align: center;\n color: #fff;\n vertical-align: top;\n margin: 0 0 0 5px;\n}\n.acf-fc-popup a {\n color: #eee;\n padding: 5px 10px;\n display: block;\n text-decoration: none;\n position: relative;\n}\n.acf-fc-popup a:hover {\n background: #0073aa;\n color: #fff;\n}\n.acf-fc-popup a.disabled {\n color: #888;\n background: transparent;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Galery\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-gallery {\n border: #ccd0d4 solid 1px;\n height: 400px;\n position: relative;\n /* main */\n /* attachments */\n /* attachment */\n /* toolbar */\n /* sidebar */\n /* side info */\n /* side data */\n /* column widths */\n /* resizable */\n}\n.acf-gallery .acf-gallery-main {\n position: absolute;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n background: #fff;\n z-index: 2;\n}\n.acf-gallery .acf-gallery-attachments {\n position: absolute;\n top: 0;\n right: 0;\n bottom: 48px;\n left: 0;\n padding: 5px;\n overflow: auto;\n overflow-x: hidden;\n}\n.acf-gallery .acf-gallery-attachment {\n width: 25%;\n float: left;\n cursor: pointer;\n position: relative;\n /* hover */\n /* sortable */\n /* active */\n /* icon */\n /* rtl */\n}\n.acf-gallery .acf-gallery-attachment .margin {\n margin: 5px;\n border: #d5d9dd solid 1px;\n position: relative;\n overflow: hidden;\n background: #eee;\n}\n.acf-gallery .acf-gallery-attachment .margin:before {\n content: \"\";\n display: block;\n padding-top: 100%;\n}\n.acf-gallery .acf-gallery-attachment .thumbnail {\n position: absolute;\n top: 0;\n left: 0;\n width: 100%;\n height: 100%;\n transform: translate(50%, 50%);\n}\nhtml[dir=rtl] .acf-gallery .acf-gallery-attachment .thumbnail {\n transform: translate(-50%, 50%);\n}\n.acf-gallery .acf-gallery-attachment .thumbnail img {\n display: block;\n height: auto;\n max-height: 100%;\n width: auto;\n transform: translate(-50%, -50%);\n}\nhtml[dir=rtl] .acf-gallery .acf-gallery-attachment .thumbnail img {\n transform: translate(50%, -50%);\n}\n.acf-gallery .acf-gallery-attachment .filename {\n position: absolute;\n bottom: 0;\n left: 0;\n right: 0;\n padding: 5%;\n background: #F4F4F4;\n background: rgba(255, 255, 255, 0.8);\n border-top: #DFDFDF solid 1px;\n font-weight: bold;\n text-align: center;\n word-wrap: break-word;\n max-height: 90%;\n overflow: hidden;\n}\n.acf-gallery .acf-gallery-attachment .actions {\n position: absolute;\n top: 0;\n right: 0;\n display: none;\n}\n.acf-gallery .acf-gallery-attachment:hover .actions {\n display: block;\n}\n.acf-gallery .acf-gallery-attachment.ui-sortable-helper .margin {\n border: none;\n box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);\n}\n.acf-gallery .acf-gallery-attachment.ui-sortable-placeholder .margin {\n background: #F1F1F1;\n border: none;\n}\n.acf-gallery .acf-gallery-attachment.ui-sortable-placeholder .margin * {\n display: none !important;\n}\n.acf-gallery .acf-gallery-attachment.active .margin {\n box-shadow: 0 0 0 1px #FFFFFF, 0 0 0 5px #0073aa;\n}\n.acf-gallery .acf-gallery-attachment.-icon .thumbnail img {\n transform: translate(-50%, -70%);\n}\nhtml[dir=rtl] .acf-gallery .acf-gallery-attachment {\n float: right;\n}\n.acf-gallery.sidebar-open {\n /* hide attachment actions when sidebar is open */\n /* allow sidebar to move over main for small widths (widget edit box) */\n}\n.acf-gallery.sidebar-open .acf-gallery-attachment .actions {\n display: none;\n}\n.acf-gallery.sidebar-open .acf-gallery-side {\n z-index: 2;\n}\n.acf-gallery .acf-gallery-toolbar {\n position: absolute;\n right: 0;\n bottom: 0;\n left: 0;\n padding: 10px;\n border-top: #d5d9dd solid 1px;\n background: #fff;\n min-height: 28px;\n}\n.acf-gallery .acf-gallery-toolbar .acf-hl li {\n line-height: 24px;\n}\n.acf-gallery .acf-gallery-toolbar .bulk-actions-select {\n width: auto;\n margin: 0 1px 0 0;\n}\n.acf-gallery .acf-gallery-side {\n position: absolute;\n top: 0;\n right: 0;\n bottom: 0;\n width: 0;\n background: #F9F9F9;\n border-left: #ccd0d4 solid 1px;\n z-index: 1;\n overflow: hidden;\n}\n.acf-gallery .acf-gallery-side .acf-gallery-side-inner {\n position: absolute;\n top: 0;\n left: 0;\n bottom: 0;\n width: 349px;\n}\n.acf-gallery .acf-gallery-side-info {\n position: relative;\n width: 100%;\n padding: 10px;\n margin: -10px 0 15px -10px;\n background: #F1F1F1;\n border-bottom: #DFDFDF solid 1px;\n}\n.acf-gallery .acf-gallery-side-info:after {\n display: block;\n clear: both;\n content: \"\";\n}\nhtml[dir=rtl] .acf-gallery .acf-gallery-side-info {\n margin-left: 0;\n margin-right: -10px;\n}\n.acf-gallery .acf-gallery-side-info img {\n float: left;\n width: auto;\n max-width: 65px;\n max-height: 65px;\n margin: 0 10px 1px 0;\n background: #FFFFFF;\n padding: 3px;\n border: #ccd0d4 solid 1px;\n border-radius: 1px;\n /* rtl */\n}\nhtml[dir=rtl] .acf-gallery .acf-gallery-side-info img {\n float: right;\n margin: 0 0 0 10px;\n}\n.acf-gallery .acf-gallery-side-info p {\n font-size: 13px;\n line-height: 15px;\n margin: 3px 0;\n word-break: break-all;\n color: #666;\n}\n.acf-gallery .acf-gallery-side-info p strong {\n color: #000;\n}\n.acf-gallery .acf-gallery-side-info a {\n text-decoration: none;\n}\n.acf-gallery .acf-gallery-side-info a.acf-gallery-edit {\n color: #21759b;\n}\n.acf-gallery .acf-gallery-side-info a.acf-gallery-remove {\n color: #bc0b0b;\n}\n.acf-gallery .acf-gallery-side-info a:hover {\n text-decoration: underline;\n}\n.acf-gallery .acf-gallery-side-data {\n position: absolute;\n top: 0;\n right: 0;\n bottom: 48px;\n left: 0;\n overflow: auto;\n overflow-x: inherit;\n padding: 10px;\n}\n.acf-gallery .acf-gallery-side-data .acf-label,\n.acf-gallery .acf-gallery-side-data th.label {\n color: #666666;\n font-size: 12px;\n line-height: 25px;\n padding: 0 4px 8px 0 !important;\n width: auto !important;\n vertical-align: top;\n}\nhtml[dir=rtl] .acf-gallery .acf-gallery-side-data .acf-label,\nhtml[dir=rtl] .acf-gallery .acf-gallery-side-data th.label {\n padding: 0 0 8px 4px !important;\n}\n.acf-gallery .acf-gallery-side-data .acf-label label,\n.acf-gallery .acf-gallery-side-data th.label label {\n font-weight: normal;\n}\n.acf-gallery .acf-gallery-side-data .acf-input,\n.acf-gallery .acf-gallery-side-data td.field {\n padding: 0 0 8px !important;\n}\n.acf-gallery .acf-gallery-side-data textarea {\n min-height: 0;\n height: 60px;\n}\n.acf-gallery .acf-gallery-side-data p.help {\n font-size: 12px;\n}\n.acf-gallery .acf-gallery-side-data p.help:hover {\n font-weight: normal;\n}\n.acf-gallery[data-columns=\"1\"] .acf-gallery-attachment {\n width: 100%;\n}\n.acf-gallery[data-columns=\"2\"] .acf-gallery-attachment {\n width: 50%;\n}\n.acf-gallery[data-columns=\"3\"] .acf-gallery-attachment {\n width: 33.333%;\n}\n.acf-gallery[data-columns=\"4\"] .acf-gallery-attachment {\n width: 25%;\n}\n.acf-gallery[data-columns=\"5\"] .acf-gallery-attachment {\n width: 20%;\n}\n.acf-gallery[data-columns=\"6\"] .acf-gallery-attachment {\n width: 16.666%;\n}\n.acf-gallery[data-columns=\"7\"] .acf-gallery-attachment {\n width: 14.285%;\n}\n.acf-gallery[data-columns=\"8\"] .acf-gallery-attachment {\n width: 12.5%;\n}\n.acf-gallery .ui-resizable-handle {\n display: block;\n position: absolute;\n}\n.acf-gallery .ui-resizable-s {\n bottom: -5px;\n cursor: ns-resize;\n height: 7px;\n left: 0;\n width: 100%;\n}\n\n/* media modal selected */\n.acf-media-modal .attachment.acf-selected {\n box-shadow: 0 0 0 3px #fff inset, 0 0 0 7px #0073aa inset !important;\n}\n.acf-media-modal .attachment.acf-selected .check {\n display: none !important;\n}\n.acf-media-modal .attachment.acf-selected .thumbnail {\n opacity: 0.25 !important;\n}\n.acf-media-modal .attachment.acf-selected .attachment-preview:before {\n background: rgba(0, 0, 0, 0.15);\n z-index: 1;\n position: relative;\n}\n\n.acf-admin-single-options-page .select2-dropdown {\n border-color: #6BB5D8 !important;\n margin-top: -5px;\n overflow: hidden;\n box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.1);\n}\n.acf-admin-single-options-page .select2-dropdown.select2-dropdown--above {\n margin-top: 0;\n}\n.acf-admin-single-options-page .select2-container--default .select2-results__option[aria-selected=true] {\n background-color: #F9FAFB !important;\n color: #667085;\n}\n.acf-admin-single-options-page .select2-container--default .select2-results__option[aria-selected=true]:hover {\n color: #399CCB;\n}\n.acf-admin-single-options-page .select2-container--default .select2-results__option--highlighted[aria-selected] {\n color: #fff !important;\n background-color: #0783BE !important;\n}\n.acf-admin-single-options-page .select2-dropdown .select2-results__option {\n margin-bottom: 0;\n}\n\n.acf-create-options-page-popup ~ .select2-container {\n z-index: 999999999;\n}\n\n/*-----------------------------------------------------------------------------\n*\n*\tACF Blocks\n*\n*----------------------------------------------------------------------------*/\n.acf-block-component .components-placeholder {\n margin: 0;\n}\n\n.acf-block-component .acf-block-fields {\n background: #fff;\n text-align: left;\n font-size: 13px;\n line-height: 1.4em;\n color: #444;\n font-family: -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Oxygen-Sans, Ubuntu, Cantarell, \"Helvetica Neue\", sans-serif;\n}\n.acf-block-component .acf-block-fields.acf-empty-block-fields {\n border: 1px solid #1e1e1e;\n padding: 12px;\n}\n.components-panel .acf-block-component .acf-block-fields.acf-empty-block-fields {\n border: none;\n border-top: 1px solid #ddd;\n border-bottom: 1px solid #ddd;\n}\nhtml[dir=rtl] .acf-block-component .acf-block-fields {\n text-align: right;\n}\n.acf-block-component .acf-block-fields p {\n font-size: 13px;\n line-height: 1.5;\n}\n\n.acf-block-body .acf-block-fields {\n border: #adb2ad solid 1px;\n}\n.acf-block-body .acf-block-fields .acf-tab-wrap .acf-tab-group {\n margin-left: 0;\n padding: 16px 20px 0;\n}\n.acf-block-body .acf-fields > .acf-field {\n padding: 16px 20px;\n}\n.acf-block-body .acf-fields > .acf-field.acf-accordion {\n border-color: #adb2ad;\n}\n.acf-block-body .acf-fields > .acf-field.acf-accordion .acf-accordion-title {\n padding: 16px 20px;\n}\n.acf-block-body .acf-button, .acf-block-body .acf-link a.button {\n color: #2271b1 !important;\n border-color: #2271b1;\n background: #f6f7f7;\n vertical-align: top;\n}\n.acf-block-body .acf-button.button-primary:hover, .acf-block-body .acf-link a.button.button-primary:hover {\n color: white !important;\n}\n.acf-block-body .acf-button:hover, .acf-block-body .acf-link a.button:hover {\n color: #0a4b78 !important;\n}\n.acf-block-body .acf-block-preview {\n min-height: 10px;\n}\n\n.acf-block-panel .acf-block-fields {\n border-top: #ddd solid 1px;\n border-bottom: #ddd solid 1px;\n min-height: 1px;\n}\n.acf-block-panel .acf-block-fields:empty {\n border-top: none;\n}\n.acf-block-panel .acf-block-fields .acf-tab-wrap {\n background: transparent;\n}\n\n.components-panel__body .acf-block-panel {\n margin: 16px -16px -16px;\n}","/*--------------------------------------------------------------------------------------------\n*\n*\tVars\n*\n*--------------------------------------------------------------------------------------------*/\n\n/* colors */\n$acf_blue: #2a9bd9;\n$acf_notice: #2a9bd9;\n$acf_error: #d94f4f;\n$acf_success: #49ad52;\n$acf_warning: #fd8d3b;\n\n/* acf-field */\n$field_padding: 15px 12px;\n$field_padding_x: 12px;\n$field_padding_y: 15px;\n$fp: 15px 12px;\n$fy: 15px;\n$fx: 12px;\n\n/* responsive */\n$md: 880px;\n$sm: 640px;\n\n// Admin.\n$wp-card-border: #ccd0d4;\t\t\t// Card border.\n$wp-card-border-1: #d5d9dd;\t\t // Card inner border 1: Structural (darker).\n$wp-card-border-2: #eeeeee;\t\t // Card inner border 2: Fields (lighter).\n$wp-input-border: #7e8993;\t\t // Input border.\n\n// Admin 3.8\n$wp38-card-border: #E5E5E5;\t\t // Card border.\n$wp38-card-border-1: #dfdfdf;\t\t// Card inner border 1: Structural (darker).\n$wp38-card-border-2: #eeeeee;\t\t// Card inner border 2: Fields (lighter).\n$wp38-input-border: #dddddd;\t\t // Input border.\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tACF 6 ↓\n*\n*--------------------------------------------------------------------------------------------*/\n\n// Grays\n$gray-50: #F9FAFB;\n$gray-100: #F2F4F7;\n$gray-200: #EAECF0;\n$gray-300: #D0D5DD;\n$gray-400: #98A2B3;\n$gray-500: #667085;\n$gray-600: #475467;\n$gray-700: #344054;\n$gray-800: #1D2939;\n$gray-900: #101828;\n\n// Blues\n$blue-50: #EBF5FA;\n$blue-100: #D8EBF5;\n$blue-200: #A5D2E7;\n$blue-300: #6BB5D8;\n$blue-400: #399CCB;\n$blue-500: #0783BE;\n$blue-600: #066998;\n$blue-700: #044E71;\n$blue-800: #033F5B;\n$blue-900: #032F45;\n\n// Utility\n$color-info:\t#2D69DA;\n$color-success:\t#52AA59;\n$color-warning:\t#F79009;\n$color-danger:\t#D13737;\n\n$color-primary: $blue-500;\n$color-primary-hover: $blue-600;\n$color-secondary: $gray-500;\n$color-secondary-hover: $gray-400;\n\n// Gradients\n$gradient-pro: linear-gradient(90.52deg, #3E8BFF 0.44%, #A45CFF 113.3%);\n\n// Border radius\n$radius-sm:\t4px;\n$radius-md: 6px;\n$radius-lg: 8px;\n$radius-xl: 12px;\n\n// Elevations / Box shadows\n$elevation-01: 0px 1px 2px rgba($gray-900, 0.10);\n\n// Input & button focus outline\n$outline: 3px solid $blue-50;\n\n// Link colours\n$link-color: $blue-500;\n\n// Responsive\n$max-width: 1440px;","/*--------------------------------------------------------------------------------------------\n*\n* Mixins\n*\n*--------------------------------------------------------------------------------------------*/\n@mixin clearfix() {\n\t&:after {\n\t\tdisplay: block;\n\t\tclear: both;\n\t\tcontent: \"\";\n\t}\n}\n\n@mixin border-box() {\n\t-webkit-box-sizing: border-box;\n\t-moz-box-sizing: border-box;\n\tbox-sizing: border-box;\n}\n\n@mixin centered() {\n\tposition: absolute;\n\ttop: 50%;\n\tleft: 50%;\n\ttransform: translate(-50%, -50%);\n}\n\n@mixin animate( $properties: 'all' ) {\n\t-webkit-transition: $properties 0.3s ease; // Safari 3.2+, Chrome\n -moz-transition: $properties 0.3s ease; \t// Firefox 4-15\n -o-transition: $properties 0.3s ease; \t\t// Opera 10.5–12.00\n transition: $properties 0.3s ease; \t\t// Firefox 16+, Opera 12.50+\n}\n\n@mixin rtl() {\n\thtml[dir=\"rtl\"] & {\n\t\ttext-align: right;\n\t\t@content;\n\t}\n}\n\n@mixin wp-admin( $version: '3-8' ) {\n\t.acf-admin-#{$version} & {\n\t\t@content;\n\t}\n}","/*---------------------------------------------------------------------------------------------\n*\n* Repeater\n*\n*---------------------------------------------------------------------------------------------*/\n\n.acf-repeater {\n\t\n\t/* table */\n\t> table {\n\t\tmargin: 0 0 8px;\n\t\tbackground: #F9F9F9;\n\n\t\t> tbody tr.acf-divider:not(:first-child) > td {\n\t\t\tborder-top: 10px solid $gray-200;\n\t\t}\n\t}\n\t\n\t/* row handle (add/remove) */\n\t.acf-row-handle {\n\t\twidth: 16px;\n\t\ttext-align: center !important;\n\t\tvertical-align: middle !important;\n\t\tposition: relative;\n\n\t\t.acf-order-input-wrap {\n\t\t\twidth: 45px;\n\t\t}\n\n\t\t.acf-order-input::-webkit-outer-spin-button,\n\t\t.acf-order-input::-webkit-inner-spin-button {\n\t\t\t-webkit-appearance: none;\n\t\t\tmargin: 0;\n\t\t}\n\n\t\t.acf-order-input {\n\t\t\t-moz-appearance: textfield;\n\t\t\ttext-align: center;\n\t\t}\n\n\t\t/* icons */\n\t\t.acf-icon {\n\t\t\tdisplay: none;\n\t\t\tposition: absolute;\n\t\t\ttop: 0;\n\t\t\tmargin: -8px 0 0 -2px;\n\t\t\t\n\t\t\t\n\t\t\t/* minus icon */\n\t\t\t&.-minus {\n\t\t\t\ttop: 50%;\n\t\t\t\t\n\t\t\t\t/* ie fix */\n\t\t\t\tbody.browser-msie & { top: 25px; }\n\t\t\t\t\n\t\t\t}\n\t\t}\n\t\t\n\t\t\n\t\t/* .order */\n\t\t&.order {\n\t\t\tbackground: #f4f4f4;\n\t\t\tcursor: move;\n\t\t\tcolor: #aaa;\n\t\t\ttext-shadow: #fff 0 1px 0;\n\t\t\t\n\t\t\t&:hover {\n\t\t\t\tcolor: #666;\n\t\t\t}\n\t\t\t\n\t\t\t+ td {\n\t\t\t\tborder-left-color: #DFDFDF;\n\t\t\t}\n\t\t}\n\n\t\t&.pagination {\n\t\t\tcursor: auto;\n\t\t}\n\t\t\n\t\t/* remove */\n\t\t&.remove {\n\t\t\tbackground: #F9F9F9;\n\t\t\tborder-left-color: #DFDFDF;\n\t\t}\n\t}\n\t\n\t\n\t/* add in spacer to th (force correct width) */\n\tth.acf-row-handle:before {\n\t\tcontent: \"\";\n\t\twidth: 16px;\n\t\tdisplay: block;\n\t\theight: 1px;\n\t}\n\t\n\t\n\t/* row */\n\t.acf-row {\n\t\t\n\t\t/* hide clone */\n\t\t&.acf-clone {\n\t\t\tdisplay: none !important;\n\t\t}\n\t\t\n\t\t\n\t\t/* hover */\n\t\t&:hover,\n\t\t&.-hover {\n\t\t\t\n\t\t\t/* icons */\n\t\t\t> .acf-row-handle .acf-icon {\n\t\t\t\tdisplay: block;\n\n\t\t\t\t// Show \"duplicate\" icon above \"add\" when holding \"shift\" key.\n\t\t\t\t&.show-on-shift {\n\t\t\t\t\tdisplay: none;\n\t\t\t\t\tbody.acf-keydown-shift & {\n\t\t\t\t\t\tdisplay: block;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\t&.hide-on-shift {\n\t\t\t\t\tbody.acf-keydown-shift & {\n\t\t\t\t\t\tdisplay: none;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\t/* sortable */\n\t> table > tbody > tr.ui-sortable-helper {\n\t\tbox-shadow: 0 1px 5px rgba(0,0,0,0.2);\n\t}\n\t\n\t> table > tbody > tr.ui-sortable-placeholder {\n\t\tvisibility: visible !important;\n\t\t\n\t\ttd {\n\t\t\tbackground: #F9F9F9;\n\t\t}\n\t}\n\t\n\t\n\t/* layouts */\n/*\n\t&.-row > table > tbody > tr:before,\n\t&.-block > table > tbody > tr:before {\n\t\tcontent: \"\";\n\t\tdisplay: table-row;\n\t\theight: 2px;\n\t\tbackground: #f00;\n\t}\n*/\n\t\n\t&.-row > table > tbody > tr > td,\n\t&.-block > table > tbody > tr > td {\n\t\tborder-top-color: #E1E1E1;\n\t}\n\t\n\t\n\t/* empty */\n\t&.-empty > table > thead > tr > th {\n\t\tborder-bottom: 0 none;\n\t}\n\t\n\t&.-empty.-row > table,\n\t&.-empty.-block > table {\n\t\tdisplay: none;\n\t}\n\t\n\t\n\t/* collapsed */\n\t.acf-row.-collapsed {\n\t\t\n\t\t> .acf-field {\n\t\t\tdisplay: none !important;\n\t\t}\n\t\t\n\t\t> td.acf-field.-collapsed-target {\n\t\t\tdisplay: table-cell !important;\n\t\t}\n\t}\n\t\n\t/* collapsed (block layout) */\n\t.acf-row.-collapsed > .acf-fields {\n\t\t\n\t\t> * {\n\t\t\tdisplay: none !important;\n\t\t}\n\t\t\n\t\t> .acf-field.-collapsed-target {\n\t\t\tdisplay: block !important;\n\t\t\t\n\t\t\t&[data-width] {\n\t\t\t\tfloat: none !important;\n\t\t\t\twidth: auto !important;\n\t\t\t}\n\t\t}\n\t}\n\t\n\t\n\t/* collapsed (table layout) */\n\t&.-table .acf-row.-collapsed .acf-field.-collapsed-target {\n\t\tborder-left-color: #dfdfdf;\n\t}\n\t\n\t// Reached maximum rows.\n\t&.-max {\n\t\t\n\t\t// Hide icons to add rows.\n\t\t.acf-icon[data-event=\"add-row\"] {\n\t\t\tdisplay: none !important;\n\t\t}\n\t}\n\n\t> .acf-actions {\n\t\t.acf-button {\n\t\t\tfloat: right;\n\t\t\tpointer-events: auto !important;\n\t\t}\n\n\t\t.acf-tablenav {\n\t\t\tfloat: right;\n\t\t\tmargin-right: 20px;\n\n\t\t\t.current-page {\n\t\t\t\twidth: auto !important;\n\t\t\t}\n\t\t}\n\t}\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Flexible Content\n*\n*---------------------------------------------------------------------------------------------*/\n\n.acf-flexible-content {\n\tposition: relative;\n\t\n\t// clones\n\t> .clones {\n\t\tdisplay: none;\n\t}\n\t\n\t// values\n\t> .values {\n\t\tmargin: 0 0 8px;\n\t\t\n\t\t// sortable\n\t\t> .ui-sortable-placeholder {\n\t\t\tvisibility: visible !important;\n\t\t\tborder: 1px dashed #b4b9be;\n\t\t\n\t\t\tbox-shadow: none;\n\t\t\tbackground: transparent;\n\t\t}\n\t}\n\t\n\t// layout\n\t.layout {\n\t\tposition: relative;\n\t\tmargin: 20px 0 0;\n\t background: #fff;\n\t border: 1px solid $wp-card-border;\n\t\t\n\t &:first-child {\n\t\t\tmargin-top: 0;\n\t\t}\n\t\t\t\n\t\t// handle\n\t\t.acf-fc-layout-handle {\n\t\t\tdisplay: block;\n\t\t\tposition: relative;\n\t\t\tpadding: 8px 10px;\n\t\t\tcursor: move;\n\t\t\tborder-bottom: $wp-card-border solid 1px;\n\t\t\tcolor: #444;\n\t\t\tfont-size: 14px;\n\t\t\tline-height: 1.4em;\n\t\t}\n\t\t\n\t\t// order\n\t\t.acf-fc-layout-order {\n\t\t\tdisplay: block;\n\t\t\twidth: 20px;\n\t\t\theight: 20px;\n\t\t\tborder-radius: 10px;\n\t\t\tdisplay: inline-block;\n\t\t\ttext-align: center;\n\t\t\tline-height: 20px;\n\t\t\tmargin: 0 2px 0 0;\n\t\t\tbackground: #F1F1F1;\n\t\t\tfont-size: 12px;\n\t\t\tcolor: #444;\n\t\t\t\n\t\t\thtml[dir=\"rtl\"] & {\n\t\t\t\tfloat: right;\n\t\t\t\tmargin-right: 0;\n\t\t\t\tmargin-left: 5px;\n\t\t\t}\n\t\t}\n\t\t\n\t\t// controlls\n\t\t.acf-fc-layout-controls {\n\t\t\tposition: absolute;\n\t\t\ttop: 8px;\n\t\t\tright: 8px;\n\t\t\t\n\t\t\t.acf-icon {\n\t\t\t\tdisplay: block;\n\t\t\t\tfloat: left;\n\t\t\t\tmargin: 0 0 0 5px;\n\t\t\t\t\n\t\t\t\t&.-plus, &.-minus, &.-duplicate { visibility: hidden; }\n\t\t\t}\n\t\t\t\n\t\t\thtml[dir=\"rtl\"] & {\n\t\t\t\tright: auto;\n\t\t\t\tleft: 9px;\n\t\t\t}\n\t\t\t\n\t\t}\n\n\t\t&.is-selected {\n\t\t\tborder-color: $wp-input-border;\n\t\t\t.acf-fc-layout-handle {\n\t\t\t\tborder-color: $wp-input-border;\n\t\t\t}\n\t\t}\n\t\t\n\t\t// open\n\t\t&:hover, \n\t\t&.-hover {\n\t\t\t\n\t\t\t// controls\n\t\t\t.acf-fc-layout-controls {\n\t\t\t\t\n\t\t\t\t.acf-icon {\n\t\t\t\t\t&.-plus, &.-minus, &.-duplicate { visibility: visible; }\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\t\n\t\t// collapsed\n\t\t&.-collapsed {\n\t\t\t> .acf-fc-layout-handle {\n\t\t\t\tborder-bottom-width: 0;\n\t\t\t}\n\t\t\t\n\t\t\t> .acf-fields,\n\t\t\t> .acf-table {\n\t\t\t\tdisplay: none;\n\t\t\t}\n\t\t}\n\t\t\n\t\t// table\n\t\t> .acf-table {\n\t\t\tborder: 0 none;\n\t\t\tbox-shadow: none;\n\t\t\t\n\t\t\t> tbody > tr {\n\t\t\t\tbackground: #fff;\n\t\t\t}\n\t\t\t\n\t\t\t> thead > tr > th {\n\t\t\t\tbackground: #F9F9F9;\n\t\t\t}\n\t\t}\n\t}\n\n\t// no value\n\t.no-value-message {\n\t\tpadding: 19px;\n\t\tborder: #ccc dashed 2px;\n\t\ttext-align: center;\n\t\tdisplay: none;\n\t}\n\n\t// empty\n\t&.-empty > .no-value-message {\n\t\tdisplay: block;\n\t}\n}\n\n// popup\n.acf-fc-popup {\n\tpadding: 5px 0;\n\tz-index: 900001; // +1 higher than .acf-tooltip\n\tmin-width: 135px;\n\t\n\tul, li {\n\t\tlist-style: none;\n\t\tdisplay: block;\n\t\tmargin: 0;\n\t\tpadding: 0;\n\t}\n\t\n\tli {\n\t\tposition: relative;\n\t\tfloat: none;\n\t\twhite-space: nowrap;\n\t}\n\t\n\t.badge {\n\t\tdisplay: inline-block;\n\t\tborder-radius: 8px;\n\t\tfont-size: 9px;\n\t\tline-height: 15px;\n\t\tpadding: 0 5px;\n\t\t\n\t\tbackground: #d54e21;\n\t\ttext-align: center;\n\t\tcolor: #fff;\n\t\tvertical-align: top;\n\t\tmargin: 0 0 0 5px;\n\t}\n\t\n\ta {\n\t\tcolor: #eee;\n\t\tpadding: 5px 10px;\n\t\tdisplay: block;\n\t\ttext-decoration: none;\n\t\tposition: relative;\n\t\t\n\t\t&:hover {\n\t\t\tbackground: #0073aa;\n\t\t\tcolor: #fff;\n\t\t}\n\t\t\n\t\t&.disabled {\n\t\t\tcolor: #888;\n\t\t\tbackground: transparent;\n\t\t}\n\t}\n}\n\n\n\n/*---------------------------------------------------------------------------------------------\n*\n* Galery\n*\n*---------------------------------------------------------------------------------------------*/\n\n.acf-gallery {\n\tborder: $wp-card-border solid 1px;\n\theight: 400px;\n\tposition: relative;\n\t\n\t/* main */\n\t.acf-gallery-main {\n\t\tposition: absolute;\n\t\ttop: 0;\n\t\tright: 0;\n\t\tbottom: 0;\n\t\tleft: 0;\n\t\tbackground: #fff;\n\t\tz-index: 2;\n\t}\n\t\n\t/* attachments */\n\t.acf-gallery-attachments {\n\t\tposition: absolute;\n\t\ttop: 0;\n\t\tright: 0;\n\t\tbottom: 48px;\n\t\tleft: 0;\n\t\tpadding: 5px;\n\t\toverflow: auto;\n\t\toverflow-x: hidden;\n\t}\n\t\n\t\n\t/* attachment */\n\t.acf-gallery-attachment {\n\t\twidth: 25%;\n\t\tfloat: left;\n\t\tcursor: pointer;\n\t\tposition: relative;\n\t\t\n\t\t.margin {\n\t\t\tmargin: 5px;\n\t\t\tborder: $wp-card-border-1 solid 1px;\n\t\t\tposition: relative;\n\t\t\toverflow: hidden;\n\t\t\tbackground: #eee;\n\t\t\t\n\t\t\t&:before {\n\t\t\t\tcontent: \"\";\n\t\t\t display: block;\n\t\t\t padding-top: 100%;\n\t\t\t}\n\t\t}\n\t\t\n\t\t.thumbnail {\n\t\t\tposition: absolute;\n\t\t\ttop: 0;\n\t\t\tleft: 0;\n\t\t\twidth: 100%;\n\t\t\theight: 100%;\n\t\t\ttransform: translate(50%, 50%);\n\t\t\t\n\t\t\thtml[dir=\"rtl\"] & { \n\t\t\t\ttransform: translate(-50%, 50%);\n\t\t\t}\n\t\t\t\n\t\t\timg {\n\t\t\t\tdisplay: block;\n\t\t\t\theight: auto;\n\t\t\t\tmax-height: 100%;\n\t\t\t\twidth: auto;\n\t\t\t\ttransform: translate(-50%, -50%);\n\t\t\t\t\n\t\t\t\thtml[dir=\"rtl\"] & { \n\t\t\t\t\ttransform: translate(50%, -50%);\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\t\n\t\t.filename {\n\t\t position: absolute;\n\t\t bottom: 0;\n\t\t left: 0;\n\t\t right: 0;\n\t\t padding: 5%;\n\t\t background: #F4F4F4;\n\t\t background: rgba(255, 255, 255, 0.8);\n\t\t border-top: #DFDFDF solid 1px;\n\t\t font-weight: bold;\n\t\t text-align: center;\n\t\t word-wrap: break-word;\n\t\t max-height: 90%;\n\t\t overflow: hidden;\n\t\t}\n\t\t\n\t\t.actions {\n\t\t\tposition: absolute;\n\t\t\ttop: 0;\n\t\t\tright: 0;\n\t\t\tdisplay: none;\n\t\t}\n\t\t\n\t\t\n\t\t/* hover */\n\t\t&:hover {\n\t\t\t\n\t\t\t.actions {\n\t\t\t\tdisplay: block;\n\t\t\t}\n\t\t\t\n\t\t}\n\t\t\n\t\t\n\t\t/* sortable */\n\t\t&.ui-sortable-helper {\n\t\t\t\n\t\t\t.margin {\n\t\t\t\tborder: none;\n\t\t\t\tbox-shadow: 0 1px 3px rgba(0,0,0,0.3);\n\t\t\t}\n\t\t}\n\t\t\n\t\t&.ui-sortable-placeholder {\n\t\t\t\n\t\t\t.margin {\n\t\t\t\tbackground: #F1F1F1;\n\t\t\t\tborder: none;\n\t\t\t\t\n\t\t\t\t* {\n\t\t\t\t\tdisplay: none !important;\n\t\t\t\t}\n\t\t\t}\n\t\t\t\n\t\t}\n\t\t\n\t\t\n\t\t/* active */\n\t\t&.active {\n\t\t\t\n\t\t\t.margin {\n\t\t\t\tbox-shadow: 0 0 0 1px #FFFFFF, 0 0 0 5px #0073aa;\n\t\t\t}\n\t\t\t\n\t\t}\n\t\t\n\t\t\n\t\t/* icon */\n\t\t&.-icon {\n\t\t\t\n\t\t\t.thumbnail img {\n\t\t\t\ttransform: translate(-50%, -70%);\n\t\t\t}\n\t\t\t\n\t\t}\n\t\t\n\t\t\n\t\t/* rtl */\n\t\thtml[dir=\"rtl\"] & {\n\t\t\tfloat: right;\n\t\t}\n\t\t\n\t}\n\t\n\t\n\t\n\t&.sidebar-open {\n\t\t\n\t\t/* hide attachment actions when sidebar is open */\n\t\t.acf-gallery-attachment .actions {\n\t\t\tdisplay: none;\n\t\t}\n\t\t\n\t\t\n\t\t/* allow sidebar to move over main for small widths (widget edit box) */\n\t\t.acf-gallery-side {\n\t\t\tz-index: 2;\n\t\t}\n\t\t\n\t}\n\t\n\t\n\t/* toolbar */\n\t.acf-gallery-toolbar {\n\t\tposition: absolute;\n\t\tright: 0;\n\t\tbottom: 0;\n\t\tleft: 0;\n\t\tpadding: 10px;\n\t\tborder-top: $wp-card-border-1 solid 1px;\n\t\tbackground: #fff;\n\t\tmin-height: 28px;\n\t\t\n\t\t.acf-hl li {\n\t\t\tline-height: 24px;\n\t\t}\n\t\t\n\t\t.bulk-actions-select {\n\t\t\twidth: auto;\n\t\t\tmargin: 0 1px 0 0;\n\t\t}\n\t\t\n\t}\n\t\n\t\n\t/* sidebar */\n\t.acf-gallery-side {\n\t\tposition: absolute;\n\t\ttop: 0;\n\t\tright: 0;\n\t\tbottom: 0;\n\t\twidth: 0;\n\t\t\n\t\tbackground: #F9F9F9;\n\t\tborder-left: $wp-card-border solid 1px;\n\t\t\n\t\tz-index: 1;\n\t\toverflow: hidden;\n\t\t\n\t\t.acf-gallery-side-inner {\n\t\t\tposition: absolute;\n\t\t\ttop: 0;\n\t\t\tleft: 0;\n\t\t\tbottom: 0;\n\t\t\twidth: 349px;\n\t\t}\n\t\t\n\t}\n\t\n\t\n\t/* side info */\n\t.acf-gallery-side-info {\n\t\t@include clearfix();\n\t\tposition: relative;\n\t\twidth: 100%;\n\t\tpadding: 10px;\n\t\tmargin: -10px 0 15px -10px;\n\t\tbackground: #F1F1F1;\n\t\tborder-bottom: #DFDFDF solid 1px;\n\t\t\n\t\thtml[dir=\"rtl\"] & {\n\t\t\tmargin-left: 0;\n\t\t\tmargin-right: -10px;\n\t\t}\n\t\n\t\timg {\n\t\t\tfloat: left;\n\t\t\twidth: auto;\n\t\t\tmax-width: 65px;\n\t\t\tmax-height: 65px;\n\t\t\tmargin: 0 10px 1px 0;\n\t\t\tbackground: #FFFFFF;\n\t\t\tpadding: 3px;\n\t\t\tborder: $wp-card-border solid 1px;\n\t\t\tborder-radius: 1px;\n\t\t\t\n\t\t\t/* rtl */\n\t\t\thtml[dir=\"rtl\"] & {\n\t\t\t\tfloat: right;\n\t\t\t\tmargin: 0 0 0 10px;\n\t\t\t}\n\t\t}\n\t\t\t\t\n\t\tp {\n\t\t\tfont-size: 13px;\n\t\t\tline-height: 15px;\n\t\t\tmargin: 3px 0;\n\t\t\tword-break: break-all;\n\t\t\tcolor: #666;\n\t\t\t\n\t\t\tstrong {\n\t\t\t\tcolor: #000;\n\t\t\t}\n\t\t}\n\t\t\n\t\ta {\n\t\t\ttext-decoration: none;\n\t\t\t\n\t\t\t&.acf-gallery-edit {\n\t\t\t\tcolor: #21759b;\n\t\t\t}\n\t\t\t\n\t\t\t&.acf-gallery-remove {\n\t\t\t\tcolor: #bc0b0b;\n\t\t\t}\n\t\t\t\n\t\t\t&:hover {\n\t\t\t\ttext-decoration: underline;\n\t\t\t}\n\t\t\n\t\t}\n\t\t\n\t}\n\t\n\t\n\t/* side data */\n\t.acf-gallery-side-data {\n\t\tposition: absolute;\n\t\ttop: 0;\n\t\tright: 0;\n\t\tbottom: 48px;\n\t\tleft: 0;\n\t\toverflow: auto;\n\t\toverflow-x: inherit;\n\t\tpadding: 10px;\n\t\n\t\t\n\t\t.acf-label,\n\t\tth.label {\n\t\t\tcolor: #666666;\n\t\t\tfont-size: 12px;\n\t\t\tline-height: 25px;\n\t\t\tpadding: 0 4px 8px 0 !important;\n\t\t\twidth: auto !important;\n\t\t\tvertical-align: top;\n\t\t\t\n\t\t\thtml[dir=\"rtl\"] & { \n\t\t\t\tpadding: 0 0 8px 4px !important;\n\t\t\t}\n\t\t\t\n\t\t\tlabel {\n\t\t\t\tfont-weight: normal;\n\t\t\t}\n\t\t}\n\t\t\t\t\n\t\t.acf-input,\n\t\ttd.field {\n\t\t\tpadding: 0 0 8px !important;\n\t\t}\n\t\t\n\t\ttextarea {\n\t\t\tmin-height: 0;\n\t\t\theight: 60px;\n\t\t}\n\t\t\n\t\tp.help {\n\t\t\tfont-size: 12px;\n\t\t\t\n\t\t\t&:hover {\n\t\t\t\tfont-weight: normal;\n\t\t\t}\n\t\t}\n\t\n\t}\n\t\n\t\n\t/* column widths */\n\t&[data-columns=\"1\"] .acf-gallery-attachment { width: 100%; }\n\t&[data-columns=\"2\"] .acf-gallery-attachment { width: 50%; }\n\t&[data-columns=\"3\"] .acf-gallery-attachment { width: 33.333%; }\n\t&[data-columns=\"4\"] .acf-gallery-attachment { width: 25%; }\n\t&[data-columns=\"5\"] .acf-gallery-attachment { width: 20%; }\n\t&[data-columns=\"6\"] .acf-gallery-attachment { width: 16.666%; }\n\t&[data-columns=\"7\"] .acf-gallery-attachment { width: 14.285%; }\n\t&[data-columns=\"8\"] .acf-gallery-attachment { width: 12.5%; }\n\t\n\t\n\t/* resizable */\n\t.ui-resizable-handle {\n\t\tdisplay: block;\n\t\tposition: absolute;\n\t}\n\t\n\t.ui-resizable-s {\n\t\tbottom: -5px;\n\t\tcursor: ns-resize;\n\t\theight: 7px;\n\t\tleft: 0;\n\t\twidth: 100%;\n\t}\n\n}\n\n\n\n/* media modal selected */\n.acf-media-modal .attachment.acf-selected {\n\tbox-shadow: 0 0 0 3px #fff inset, 0 0 0 7px #0073aa inset !important;\n\t\n\t.check {\n\t\tdisplay: none !important;\n\t}\n\t\n\t.thumbnail {\n\t\topacity: 0.25 !important;\n\t}\n\t\t\n\t.attachment-preview:before {\n\t\tbackground: rgba(0,0,0,0.15);\n\t\tz-index: 1;\n\t\tposition: relative;\n\t}\n\n}\n\n\n.acf-admin-single-options-page {\n\t.select2-dropdown {\n\t\tborder-color: $blue-300 !important;\n\t\tmargin-top: -5px;\n\t\toverflow: hidden;\n\t\tbox-shadow: $elevation-01;\n\t}\n\n\t.select2-dropdown.select2-dropdown--above {\n\t\tmargin-top: 0;\n\t}\n\n\t.select2-container--default .select2-results__option[aria-selected=\"true\"] {\n\t\tbackground-color: $gray-50 !important;\n\t\tcolor: $gray-500;\n\n\t\t&:hover {\n\t\t\tcolor: $blue-400;\n\t\t}\n\t}\n\n\t.select2-container--default\n\t\t.select2-results__option--highlighted[aria-selected] {\n\t\tcolor: #fff !important;\n\t\tbackground-color: $blue-500 !important;\n\t}\n\n\t// remove bottom margin on options\n\t.select2-dropdown .select2-results__option {\n\t\tmargin-bottom: 0;\n\t}\n}\n\n// z-index helper for the popup modal.\n.acf-create-options-page-popup ~ .select2-container {\n\tz-index: 999999999;\n}\n","/*-----------------------------------------------------------------------------\n*\n*\tACF Blocks\n*\n*----------------------------------------------------------------------------*/\n\n// All block components.\n.acf-block-component {\n\t.components-placeholder {\n\t\tmargin: 0;\n\t}\n}\n\n// Block fields\n.acf-block-component .acf-block-fields {\n\t// Ensure white background behind fields.\n\tbackground: #fff;\n\n\t// Generic body styles\n\ttext-align: left;\n\tfont-size: 13px;\n\tline-height: 1.4em;\n\tcolor: #444;\n\tfont-family: -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto,\n\t\tOxygen-Sans, Ubuntu, Cantarell, \"Helvetica Neue\", sans-serif;\n\n\t&.acf-empty-block-fields {\n\t\tborder: 1px solid #1e1e1e;\n\t\tpadding: 12px;\n\n\t\t.components-panel & {\n\t\t\tborder: none;\n\t\t\tborder-top: 1px solid #ddd;\n\t\t\tborder-bottom: 1px solid #ddd;\n\t\t}\n\t}\n\n\thtml[dir=\"rtl\"] & {\n\t\ttext-align: right;\n\t}\n\n\tp {\n\t\tfont-size: 13px;\n\t\tline-height: 1.5;\n\t}\n}\n\n// Block body.\n.acf-block-body {\n\t// Fields wrapper.\n\t.acf-block-fields {\n\t\tborder: #adb2ad solid 1px;\n\n\t\t// Tab\n\t\t.acf-tab-wrap {\n\t\t\t.acf-tab-group {\n\t\t\t\tmargin-left: 0;\n\t\t\t\tpadding: 16px 20px 0;\n\t\t\t}\n\t\t}\n\t}\n\n\t// Block fields (div).\n\t.acf-fields > .acf-field {\n\t\tpadding: 16px 20px;\n\n\t\t// Accordions.\n\t\t&.acf-accordion {\n\t\t\tborder-color: #adb2ad;\n\n\t\t\t.acf-accordion-title {\n\t\t\t\tpadding: 16px 20px;\n\t\t\t}\n\t\t}\n\t}\n\n\t// Ensure ACF buttons aren't changed by theme colors in the block editor.\n\t.acf-button, .acf-link a.button {\n\t\tcolor: #2271b1 !important;\n\t\tborder-color: #2271b1;\n\t\tbackground: #f6f7f7;\n\t\tvertical-align: top;\n\t\t&.button-primary:hover {\n\t\t\tcolor: white !important;\n\t\t}\n\t\t&:hover {\n\t\t\tcolor: #0a4b78 !important;\n\t\t}\n\t}\n\n\t// Preview.\n\t.acf-block-preview {\n\t\tmin-height: 10px;\n\t}\n}\n\n// Block panel.\n.acf-block-panel {\n\t// Fields wrapper.\n\t.acf-block-fields {\n\t\tborder-top: #ddd solid 1px;\n\t\tborder-bottom: #ddd solid 1px;\n\t\tmin-height: 1px;\n\n\t\t&:empty {\n\t\t\tborder-top: none;\n\t\t}\n\n\t\t// Tab\n\t\t.acf-tab-wrap {\n\t\t\tbackground: transparent;\n\t\t}\n\t}\n}\n\n// Add compatibility for WP 5.3 and older.\n// - Sidebar area is wrapped in a PanelBody element.\n.components-panel__body .acf-block-panel {\n\tmargin: 16px -16px -16px;\n}\n"],"names":[],"sourceRoot":""} \ No newline at end of file +{"version":3,"file":"acf-pro-input.css","mappings":";;;AAAA,gBAAgB;ACAhB;;;;8FAAA;AAMA;AAOA;AAQA;AAgBA;;;;8FAAA;ACrCA;;;;8FAAA;ACAA;;;;+FAAA;AAMA;EAEC;EAUA;EAqEA;EASA;EAiCA;EAcA;EACD;;;;;;;;GAAA;EAgBC;EAWA;EAYA;EAkBA;AH7JD;AGnCC;EACC;EACA;AHqCF;AGnCE;EACC;AHqCH;AGhCC;EACC;EACA;EACA;EACA;EAiBA;EAmBA;EAoBA;AHnBF;AGnCE;EACC;AHqCH;AGlCE;;EAEC;EACA;AHoCH;AGjCE;EACC;EACA;AHmCH;AG/BE;EACC;EACA;EACA;EACA;EAGA;AH+BH;AG9BG;EACC;EAEA;AH+BJ;AG9BI;EAAsB;AHiC1B;AG1BE;EACC;EACA;EACA;EACA;AH4BH;AG1BG;EACC;AH4BJ;AGzBG;EACC;AH2BJ;AGvBE;EACC;AHyBH;AGrBE;EACC;EACA;AHuBH;AGjBC;EACC;EACA;EACA;EACA;AHmBF;AGdC;EAEC;EAMA;AHUF;AGfE;EACC;AHiBH;AGZE;EAGC;AHYH;AGXG;EACC;AHaJ;AGVI;EACC;AHYL;AGXK;EACC;AHaN;AGTK;EACC;AHWN;AGHC;EACC;AHKF;AGFC;EACC;AHIF;AGFE;EACC;AHIH;AGYC;EAEC;AHXF;AGgBC;EACC;AHdF;AGiBC;EAEC;AHhBF;AGuBE;EACC;AHrBH;AGwBE;EACC;AHtBH;AG6BE;EACC;AH3BH;AG8BE;EACC;AH5BH;AG8BG;EACC;EACA;AH5BJ;AGmCC;EACC;AHjCF;AGwCE;EACC;AHtCH;AG2CE;EACC;EACA;AHzCH;AG4CE;EACC;EACA;AH1CH;AG4CG;EACC;AH1CJ;;AGgDA;;;;+FAAA;AAMA;EACC;AH9CD;AGiDC;EACC;AH/CF;AGmDC;EACC;AHjDF;AGoDE;EACC;EACA;EAEA;EACA;AHnDH;AGwDC;EACC;EACA;EACG;EACA;AHtDL;AGwDK;EACF;AHtDH;AG0DE;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;AHxDH;AG4DE;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;AH1DH;AG4DG;EACC;EACA;EACA;AH1DJ;AG+DE;EACC;EACA;EACA;AH7DH;AG+DG;EACC;EACA;EACA;AH7DJ;AG+DI;EAAkC;AH5DtC;AG+DG;EACC;EACA;AH7DJ;AGkEE;EACC,qBFzSe;ADyOlB;AGiEG;EACC,qBF3Sc;AD4OlB;AG2EK;EAAkC;AHxEvC;AG+EG;EACC;AH7EJ;AGgFG;;EAEC;AH9EJ;AGmFE;EACC;EACA;AHjFH;AGmFG;EACC;AHjFJ;AGoFG;EACC;AHlFJ;AGwFC;EACC;EACA;EACA;EACA;AHtFF;AG0FC;EACC;AHxFF;;AG6FA;EACC;EACA;EACA;AH1FD;AG4FC;EACC;EACA;EACA;EACA;AH1FF;AG6FC;EACC;EACA;EACA;AH3FF;AG8FC;EACC;EACA;EACA;EACA;EACA;EAEA;EACA;EACA;EACA;EACA;AH7FF;AGgGC;EACC;EACA;EACA;EACA;EACA;AH9FF;AGgGE;EACC;EACA;AH9FH;AGiGE;EACC;EACA;AH/FH;;AGsGA;;;;+FAAA;AAMA;EACC;EACA;EACA;EAEA;EAWA;EAaA;EAoJA;EAuBA;EAyBA;EAiEA;EAmDA;EAWA;AHxbD;AG8FC;EACC;EACA;EACA;EACA;EACA;EACA;EACA;AH5FF;AGgGC;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;AH9FF;AGmGC;EACC;EACA;EACA;EACA;EAiEA;EAUA;EAuBA;EAUA;EAUA;AHlNF;AG8FE;EACC;EACA;EACA;EACA;EACA;AH5FH;AG8FG;EACC;EACG;EACA;AH5FP;AGgGE;EACC;EACA;EACA;EACA;EACA;EACA;AH9FH;AGgGG;EACC;AH9FJ;AGiGG;EACC;EACA;EACA;EACA;EACA;AH/FJ;AGiGI;EACC;AH/FL;AGoGE;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;AHlGN;AGqGE;EACC;EACA;EACA;EACA;AHnGH;AG0GG;EACC;AHxGJ;AGiHG;EACC;EACA;AH/GJ;AGqHG;EACC;EACA;AHnHJ;AGqHI;EACC;AHnHL;AG6HG;EACC;AH3HJ;AGoIG;EACC;AHlIJ;AGyIE;EACC;AHvIH;AG8IC;EAEC;EAMA;AHlJF;AG6IE;EACC;AH3IH;AGgJE;EACC;AH9IH;AGqJC;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;AHnJF;AGqJE;EACC;AHnJH;AGsJE;EACC;EACA;AHpJH;AG2JC;EACC;EACA;EACA;EACA;EACA;EAEA;EACA;EAEA;EACA;AH3JF;AG6JE;EACC;EACA;EACA;EACA;EACA;AH3JH;AGkKC;EAEC;EACA;EACA;EACA;EACA;EACA;AHjKF;AEhgBC;EACC;EACA;EACA;AFkgBF;AG8JE;EACC;EACA;AH5JH;AG+JE;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EAEA;AH9JH;AG+JG;EACC;EACA;AH7JJ;AGiKE;EACC;EACA;EACA;EACA;EACA;AH/JH;AGiKG;EACC;AH/JJ;AGmKE;EACC;AHjKH;AGmKG;EACC;AHjKJ;AGoKG;EACC;AHlKJ;AGqKG;EACC;AHnKJ;AG4KC;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;AH1KF;AG6KE;;EAEC;EACA;EACA;EACA;EACA;EACA;AH3KH;AG6KG;;EACC;AH1KJ;AG6KG;;EACC;AH1KJ;AG8KE;;EAEC;AH5KH;AG+KE;EACC;EACA;AH7KH;AGgLE;EACC;AH9KH;AGgLG;EACC;AH9KJ;AGsLC;EAA8C;AHnL/C;AGoLC;EAA8C;AHjL/C;AGkLC;EAA8C;AH/K/C;AGgLC;EAA8C;AH7K/C;AG8KC;EAA8C;AH3K/C;AG4KC;EAA8C;AHzK/C;AG0KC;EAA8C;AHvK/C;AGwKC;EAA8C;AHrK/C;AGyKC;EACC;EACA;AHvKF;AG0KC;EACC;EACA;EACA;EACA;EACA;AHxKF;;AG+KA;AACA;EACC;AH5KD;AG8KC;EACC;AH5KF;AG+KC;EACC;AH7KF;AGgLC;EACC;EACA;EACA;AH9KF;;AGqLC;EACC;EACA;EACA;EACA,6CFlvBa;ADgkBf;AGqLC;EACC;AHnLF;AGsLC;EACC;EACA,cFlyBS;AD8mBX;AGsLE;EACC,cF1xBQ;ADsmBX;AGwLC;EAEC;EACA;AHvLF;AG2LC;EACC;AHzLF;;AG8LA;EACC;AH3LD;;AI7qBA;;;;8EAAA;AAQC;EACC;AJ6qBF;;AIxqBA;EAEC;EAGA;EACA;EACA;EACA;EACA;AJwqBD;AIrqBC;EACC;EACA;AJuqBF;AIrqBE;EACC;EACA;EACA;AJuqBH;AInqBC;EACC;AJqqBF;AIlqBC;EACC;EACA;AJoqBF;;AI7pBC;EACC;AJgqBF;AI5pBG;EACC;EACA;AJ8pBJ;AIxpBC;EACC;AJ0pBF;AIvpBE;EACC;AJypBH;AIvpBG;EACC;AJypBJ;AInpBC;EACC;EACA;EACA;EACA;AJqpBF;AInpBE;EACC;EACA;AJqpBH;AIlpBE;EACC;EACA;AJopBH;AIjpBE;EACC;AJmpBH;AI9oBC;EACC;AJgpBF;;AIzoBC;EACC;EACA;EACA;AJ4oBF;AI1oBE;EACC;AJ4oBH;AIxoBE;EACC;AJ0oBH;;AInoBA;EACC;AJsoBD,C","sources":["webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/sass/pro/acf-pro-input.scss","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/sass/_variables.scss","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/sass/_mixins.scss","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/sass/pro/_fields.scss","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/sass/pro/_blocks.scss"],"sourcesContent":["@charset \"UTF-8\";\n/*--------------------------------------------------------------------------------------------\n*\n*\tVars\n*\n*--------------------------------------------------------------------------------------------*/\n/* colors */\n/* acf-field */\n/* responsive */\n/*--------------------------------------------------------------------------------------------\n*\n*\tACF 6 ↓\n*\n*--------------------------------------------------------------------------------------------*/\n/*--------------------------------------------------------------------------------------------\n*\n* Mixins\n*\n*--------------------------------------------------------------------------------------------*/\n/*---------------------------------------------------------------------------------------------\n*\n* Repeater\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-repeater {\n /* table */\n /* row handle (add/remove) */\n /* add in spacer to th (force correct width) */\n /* row */\n /* sortable */\n /* layouts */\n /*\n \t&.-row > table > tbody > tr:before,\n \t&.-block > table > tbody > tr:before {\n \t\tcontent: \"\";\n \t\tdisplay: table-row;\n \t\theight: 2px;\n \t\tbackground: #f00;\n \t}\n */\n /* empty */\n /* collapsed */\n /* collapsed (block layout) */\n /* collapsed (table layout) */\n}\n.acf-repeater > table {\n margin: 0 0 8px;\n background: #F9F9F9;\n}\n.acf-repeater > table > tbody tr.acf-divider:not(:first-child) > td {\n border-top: 10px solid #EAECF0;\n}\n.acf-repeater .acf-row-handle {\n width: 16px;\n text-align: center !important;\n vertical-align: middle !important;\n position: relative;\n /* icons */\n /* .order */\n /* remove */\n}\n.acf-repeater .acf-row-handle .acf-order-input-wrap {\n width: 45px;\n}\n.acf-repeater .acf-row-handle .acf-order-input::-webkit-outer-spin-button,\n.acf-repeater .acf-row-handle .acf-order-input::-webkit-inner-spin-button {\n -webkit-appearance: none;\n margin: 0;\n}\n.acf-repeater .acf-row-handle .acf-order-input {\n -moz-appearance: textfield;\n text-align: center;\n}\n.acf-repeater .acf-row-handle .acf-icon {\n display: none;\n position: absolute;\n top: 0;\n margin: -8px 0 0 -2px;\n /* minus icon */\n}\n.acf-repeater .acf-row-handle .acf-icon.-minus {\n top: 50%;\n /* ie fix */\n}\nbody.browser-msie .acf-repeater .acf-row-handle .acf-icon.-minus {\n top: 25px;\n}\n.acf-repeater .acf-row-handle.order {\n background: #f4f4f4;\n cursor: move;\n color: #aaa;\n text-shadow: #fff 0 1px 0;\n}\n.acf-repeater .acf-row-handle.order:hover {\n color: #666;\n}\n.acf-repeater .acf-row-handle.order + td {\n border-left-color: #DFDFDF;\n}\n.acf-repeater .acf-row-handle.pagination {\n cursor: auto;\n}\n.acf-repeater .acf-row-handle.remove {\n background: #F9F9F9;\n border-left-color: #DFDFDF;\n}\n.acf-repeater th.acf-row-handle:before {\n content: \"\";\n width: 16px;\n display: block;\n height: 1px;\n}\n.acf-repeater .acf-row {\n /* hide clone */\n /* hover */\n}\n.acf-repeater .acf-row.acf-clone {\n display: none !important;\n}\n.acf-repeater .acf-row:hover, .acf-repeater .acf-row.-hover {\n /* icons */\n}\n.acf-repeater .acf-row:hover > .acf-row-handle .acf-icon, .acf-repeater .acf-row.-hover > .acf-row-handle .acf-icon {\n display: block;\n}\n.acf-repeater .acf-row:hover > .acf-row-handle .acf-icon.show-on-shift, .acf-repeater .acf-row.-hover > .acf-row-handle .acf-icon.show-on-shift {\n display: none;\n}\nbody.acf-keydown-shift .acf-repeater .acf-row:hover > .acf-row-handle .acf-icon.show-on-shift, body.acf-keydown-shift .acf-repeater .acf-row.-hover > .acf-row-handle .acf-icon.show-on-shift {\n display: block;\n}\nbody.acf-keydown-shift .acf-repeater .acf-row:hover > .acf-row-handle .acf-icon.hide-on-shift, body.acf-keydown-shift .acf-repeater .acf-row.-hover > .acf-row-handle .acf-icon.hide-on-shift {\n display: none;\n}\n.acf-repeater > table > tbody > tr.ui-sortable-helper {\n box-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);\n}\n.acf-repeater > table > tbody > tr.ui-sortable-placeholder {\n visibility: visible !important;\n}\n.acf-repeater > table > tbody > tr.ui-sortable-placeholder td {\n background: #F9F9F9;\n}\n.acf-repeater.-row > table > tbody > tr > td, .acf-repeater.-block > table > tbody > tr > td {\n border-top-color: #E1E1E1;\n}\n.acf-repeater.-empty > table > thead > tr > th {\n border-bottom: 0 none;\n}\n.acf-repeater.-empty.-row > table, .acf-repeater.-empty.-block > table {\n display: none;\n}\n.acf-repeater .acf-row.-collapsed > .acf-field {\n display: none !important;\n}\n.acf-repeater .acf-row.-collapsed > td.acf-field.-collapsed-target {\n display: table-cell !important;\n}\n.acf-repeater .acf-row.-collapsed > .acf-fields > * {\n display: none !important;\n}\n.acf-repeater .acf-row.-collapsed > .acf-fields > .acf-field.-collapsed-target {\n display: block !important;\n}\n.acf-repeater .acf-row.-collapsed > .acf-fields > .acf-field.-collapsed-target[data-width] {\n float: none !important;\n width: auto !important;\n}\n.acf-repeater.-table .acf-row.-collapsed .acf-field.-collapsed-target {\n border-left-color: #dfdfdf;\n}\n.acf-repeater.-max .acf-icon[data-event=add-row] {\n display: none !important;\n}\n.acf-repeater > .acf-actions .acf-button {\n float: right;\n pointer-events: auto !important;\n}\n.acf-repeater > .acf-actions .acf-tablenav {\n float: right;\n margin-right: 20px;\n}\n.acf-repeater > .acf-actions .acf-tablenav .current-page {\n width: auto !important;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Flexible Content\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-flexible-content {\n position: relative;\n}\n.acf-flexible-content > .clones {\n display: none;\n}\n.acf-flexible-content > .values {\n margin: 0 0 8px;\n}\n.acf-flexible-content > .values > .ui-sortable-placeholder {\n visibility: visible !important;\n border: 1px dashed #b4b9be;\n box-shadow: none;\n background: transparent;\n}\n.acf-flexible-content .layout {\n position: relative;\n margin: 20px 0 0;\n background: #fff;\n border: 1px solid #ccd0d4;\n}\n.acf-flexible-content .layout:first-child {\n margin-top: 0;\n}\n.acf-flexible-content .layout .acf-fc-layout-handle {\n display: block;\n position: relative;\n padding: 8px 10px;\n cursor: move;\n border-bottom: #ccd0d4 solid 1px;\n color: #444;\n font-size: 14px;\n line-height: 1.4em;\n}\n.acf-flexible-content .layout .acf-fc-layout-order {\n display: block;\n width: 20px;\n height: 20px;\n border-radius: 10px;\n display: inline-block;\n text-align: center;\n line-height: 20px;\n margin: 0 2px 0 0;\n background: #F1F1F1;\n font-size: 12px;\n color: #444;\n}\nhtml[dir=rtl] .acf-flexible-content .layout .acf-fc-layout-order {\n float: right;\n margin-right: 0;\n margin-left: 5px;\n}\n.acf-flexible-content .layout .acf-fc-layout-controls {\n position: absolute;\n top: 8px;\n right: 8px;\n}\n.acf-flexible-content .layout .acf-fc-layout-controls .acf-icon {\n display: block;\n float: left;\n margin: 0 0 0 5px;\n}\n.acf-flexible-content .layout .acf-fc-layout-controls .acf-icon.-plus, .acf-flexible-content .layout .acf-fc-layout-controls .acf-icon.-minus, .acf-flexible-content .layout .acf-fc-layout-controls .acf-icon.-duplicate {\n visibility: hidden;\n}\nhtml[dir=rtl] .acf-flexible-content .layout .acf-fc-layout-controls {\n right: auto;\n left: 9px;\n}\n.acf-flexible-content .layout.is-selected {\n border-color: #7e8993;\n}\n.acf-flexible-content .layout.is-selected .acf-fc-layout-handle {\n border-color: #7e8993;\n}\n.acf-flexible-content .layout:hover .acf-fc-layout-controls .acf-icon.-plus, .acf-flexible-content .layout:hover .acf-fc-layout-controls .acf-icon.-minus, .acf-flexible-content .layout:hover .acf-fc-layout-controls .acf-icon.-duplicate, .acf-flexible-content .layout.-hover .acf-fc-layout-controls .acf-icon.-plus, .acf-flexible-content .layout.-hover .acf-fc-layout-controls .acf-icon.-minus, .acf-flexible-content .layout.-hover .acf-fc-layout-controls .acf-icon.-duplicate {\n visibility: visible;\n}\n.acf-flexible-content .layout.-collapsed > .acf-fc-layout-handle {\n border-bottom-width: 0;\n}\n.acf-flexible-content .layout.-collapsed > .acf-fields,\n.acf-flexible-content .layout.-collapsed > .acf-table {\n display: none;\n}\n.acf-flexible-content .layout > .acf-table {\n border: 0 none;\n box-shadow: none;\n}\n.acf-flexible-content .layout > .acf-table > tbody > tr {\n background: #fff;\n}\n.acf-flexible-content .layout > .acf-table > thead > tr > th {\n background: #F9F9F9;\n}\n.acf-flexible-content .no-value-message {\n padding: 19px;\n border: #ccc dashed 2px;\n text-align: center;\n display: none;\n}\n.acf-flexible-content.-empty > .no-value-message {\n display: block;\n}\n\n.acf-fc-popup {\n padding: 5px 0;\n z-index: 900001;\n min-width: 135px;\n}\n.acf-fc-popup ul, .acf-fc-popup li {\n list-style: none;\n display: block;\n margin: 0;\n padding: 0;\n}\n.acf-fc-popup li {\n position: relative;\n float: none;\n white-space: nowrap;\n}\n.acf-fc-popup .badge {\n display: inline-block;\n border-radius: 8px;\n font-size: 9px;\n line-height: 15px;\n padding: 0 5px;\n background: #d54e21;\n text-align: center;\n color: #fff;\n vertical-align: top;\n margin: 0 0 0 5px;\n}\n.acf-fc-popup a {\n color: #eee;\n padding: 5px 10px;\n display: block;\n text-decoration: none;\n position: relative;\n}\n.acf-fc-popup a:hover {\n background: #0073aa;\n color: #fff;\n}\n.acf-fc-popup a.disabled {\n color: #888;\n background: transparent;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Galery\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-gallery {\n border: #ccd0d4 solid 1px;\n height: 400px;\n position: relative;\n /* main */\n /* attachments */\n /* attachment */\n /* toolbar */\n /* sidebar */\n /* side info */\n /* side data */\n /* column widths */\n /* resizable */\n}\n.acf-gallery .acf-gallery-main {\n position: absolute;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n background: #fff;\n z-index: 2;\n}\n.acf-gallery .acf-gallery-attachments {\n position: absolute;\n top: 0;\n right: 0;\n bottom: 48px;\n left: 0;\n padding: 5px;\n overflow: auto;\n overflow-x: hidden;\n}\n.acf-gallery .acf-gallery-attachment {\n width: 25%;\n float: left;\n cursor: pointer;\n position: relative;\n /* hover */\n /* sortable */\n /* active */\n /* icon */\n /* rtl */\n}\n.acf-gallery .acf-gallery-attachment .margin {\n margin: 5px;\n border: #d5d9dd solid 1px;\n position: relative;\n overflow: hidden;\n background: #eee;\n}\n.acf-gallery .acf-gallery-attachment .margin:before {\n content: \"\";\n display: block;\n padding-top: 100%;\n}\n.acf-gallery .acf-gallery-attachment .thumbnail {\n position: absolute;\n top: 0;\n left: 0;\n width: 100%;\n height: 100%;\n transform: translate(50%, 50%);\n}\nhtml[dir=rtl] .acf-gallery .acf-gallery-attachment .thumbnail {\n transform: translate(-50%, 50%);\n}\n.acf-gallery .acf-gallery-attachment .thumbnail img {\n display: block;\n height: auto;\n max-height: 100%;\n width: auto;\n transform: translate(-50%, -50%);\n}\nhtml[dir=rtl] .acf-gallery .acf-gallery-attachment .thumbnail img {\n transform: translate(50%, -50%);\n}\n.acf-gallery .acf-gallery-attachment .filename {\n position: absolute;\n bottom: 0;\n left: 0;\n right: 0;\n padding: 5%;\n background: #F4F4F4;\n background: rgba(255, 255, 255, 0.8);\n border-top: #DFDFDF solid 1px;\n font-weight: bold;\n text-align: center;\n word-wrap: break-word;\n max-height: 90%;\n overflow: hidden;\n}\n.acf-gallery .acf-gallery-attachment .actions {\n position: absolute;\n top: 0;\n right: 0;\n display: none;\n}\n.acf-gallery .acf-gallery-attachment:hover .actions {\n display: block;\n}\n.acf-gallery .acf-gallery-attachment.ui-sortable-helper .margin {\n border: none;\n box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);\n}\n.acf-gallery .acf-gallery-attachment.ui-sortable-placeholder .margin {\n background: #F1F1F1;\n border: none;\n}\n.acf-gallery .acf-gallery-attachment.ui-sortable-placeholder .margin * {\n display: none !important;\n}\n.acf-gallery .acf-gallery-attachment.active .margin {\n box-shadow: 0 0 0 1px #FFFFFF, 0 0 0 5px #0073aa;\n}\n.acf-gallery .acf-gallery-attachment.-icon .thumbnail img {\n transform: translate(-50%, -70%);\n}\nhtml[dir=rtl] .acf-gallery .acf-gallery-attachment {\n float: right;\n}\n.acf-gallery.sidebar-open {\n /* hide attachment actions when sidebar is open */\n /* allow sidebar to move over main for small widths (widget edit box) */\n}\n.acf-gallery.sidebar-open .acf-gallery-attachment .actions {\n display: none;\n}\n.acf-gallery.sidebar-open .acf-gallery-side {\n z-index: 2;\n}\n.acf-gallery .acf-gallery-toolbar {\n position: absolute;\n right: 0;\n bottom: 0;\n left: 0;\n padding: 10px;\n border-top: #d5d9dd solid 1px;\n background: #fff;\n min-height: 28px;\n}\n.acf-gallery .acf-gallery-toolbar .acf-hl li {\n line-height: 24px;\n}\n.acf-gallery .acf-gallery-toolbar .bulk-actions-select {\n width: auto;\n margin: 0 1px 0 0;\n}\n.acf-gallery .acf-gallery-side {\n position: absolute;\n top: 0;\n right: 0;\n bottom: 0;\n width: 0;\n background: #F9F9F9;\n border-left: #ccd0d4 solid 1px;\n z-index: 1;\n overflow: hidden;\n}\n.acf-gallery .acf-gallery-side .acf-gallery-side-inner {\n position: absolute;\n top: 0;\n left: 0;\n bottom: 0;\n width: 349px;\n}\n.acf-gallery .acf-gallery-side-info {\n position: relative;\n width: 100%;\n padding: 10px;\n margin: -10px 0 15px -10px;\n background: #F1F1F1;\n border-bottom: #DFDFDF solid 1px;\n}\n.acf-gallery .acf-gallery-side-info:after {\n display: block;\n clear: both;\n content: \"\";\n}\nhtml[dir=rtl] .acf-gallery .acf-gallery-side-info {\n margin-left: 0;\n margin-right: -10px;\n}\n.acf-gallery .acf-gallery-side-info img {\n float: left;\n width: auto;\n max-width: 65px;\n max-height: 65px;\n margin: 0 10px 1px 0;\n background: #FFFFFF;\n padding: 3px;\n border: #ccd0d4 solid 1px;\n border-radius: 1px;\n /* rtl */\n}\nhtml[dir=rtl] .acf-gallery .acf-gallery-side-info img {\n float: right;\n margin: 0 0 0 10px;\n}\n.acf-gallery .acf-gallery-side-info p {\n font-size: 13px;\n line-height: 15px;\n margin: 3px 0;\n word-break: break-all;\n color: #666;\n}\n.acf-gallery .acf-gallery-side-info p strong {\n color: #000;\n}\n.acf-gallery .acf-gallery-side-info a {\n text-decoration: none;\n}\n.acf-gallery .acf-gallery-side-info a.acf-gallery-edit {\n color: #21759b;\n}\n.acf-gallery .acf-gallery-side-info a.acf-gallery-remove {\n color: #bc0b0b;\n}\n.acf-gallery .acf-gallery-side-info a:hover {\n text-decoration: underline;\n}\n.acf-gallery .acf-gallery-side-data {\n position: absolute;\n top: 0;\n right: 0;\n bottom: 48px;\n left: 0;\n overflow: auto;\n overflow-x: inherit;\n padding: 10px;\n}\n.acf-gallery .acf-gallery-side-data .acf-label,\n.acf-gallery .acf-gallery-side-data th.label {\n color: #666666;\n font-size: 12px;\n line-height: 25px;\n padding: 0 4px 8px 0 !important;\n width: auto !important;\n vertical-align: top;\n}\nhtml[dir=rtl] .acf-gallery .acf-gallery-side-data .acf-label,\nhtml[dir=rtl] .acf-gallery .acf-gallery-side-data th.label {\n padding: 0 0 8px 4px !important;\n}\n.acf-gallery .acf-gallery-side-data .acf-label label,\n.acf-gallery .acf-gallery-side-data th.label label {\n font-weight: normal;\n}\n.acf-gallery .acf-gallery-side-data .acf-input,\n.acf-gallery .acf-gallery-side-data td.field {\n padding: 0 0 8px !important;\n}\n.acf-gallery .acf-gallery-side-data textarea {\n min-height: 0;\n height: 60px;\n}\n.acf-gallery .acf-gallery-side-data p.help {\n font-size: 12px;\n}\n.acf-gallery .acf-gallery-side-data p.help:hover {\n font-weight: normal;\n}\n.acf-gallery[data-columns=\"1\"] .acf-gallery-attachment {\n width: 100%;\n}\n.acf-gallery[data-columns=\"2\"] .acf-gallery-attachment {\n width: 50%;\n}\n.acf-gallery[data-columns=\"3\"] .acf-gallery-attachment {\n width: 33.333%;\n}\n.acf-gallery[data-columns=\"4\"] .acf-gallery-attachment {\n width: 25%;\n}\n.acf-gallery[data-columns=\"5\"] .acf-gallery-attachment {\n width: 20%;\n}\n.acf-gallery[data-columns=\"6\"] .acf-gallery-attachment {\n width: 16.666%;\n}\n.acf-gallery[data-columns=\"7\"] .acf-gallery-attachment {\n width: 14.285%;\n}\n.acf-gallery[data-columns=\"8\"] .acf-gallery-attachment {\n width: 12.5%;\n}\n.acf-gallery .ui-resizable-handle {\n display: block;\n position: absolute;\n}\n.acf-gallery .ui-resizable-s {\n bottom: -5px;\n cursor: ns-resize;\n height: 7px;\n left: 0;\n width: 100%;\n}\n\n/* media modal selected */\n.acf-media-modal .attachment.acf-selected {\n box-shadow: 0 0 0 3px #fff inset, 0 0 0 7px #0073aa inset !important;\n}\n.acf-media-modal .attachment.acf-selected .check {\n display: none !important;\n}\n.acf-media-modal .attachment.acf-selected .thumbnail {\n opacity: 0.25 !important;\n}\n.acf-media-modal .attachment.acf-selected .attachment-preview:before {\n background: rgba(0, 0, 0, 0.15);\n z-index: 1;\n position: relative;\n}\n\n.acf-admin-single-options-page .select2-dropdown {\n border-color: #6BB5D8 !important;\n margin-top: -5px;\n overflow: hidden;\n box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.1);\n}\n.acf-admin-single-options-page .select2-dropdown.select2-dropdown--above {\n margin-top: 0;\n}\n.acf-admin-single-options-page .select2-container--default .select2-results__option[aria-selected=true] {\n background-color: #F9FAFB !important;\n color: #667085;\n}\n.acf-admin-single-options-page .select2-container--default .select2-results__option[aria-selected=true]:hover {\n color: #399CCB;\n}\n.acf-admin-single-options-page .select2-container--default .select2-results__option--highlighted[aria-selected] {\n color: #fff !important;\n background-color: #0783BE !important;\n}\n.acf-admin-single-options-page .select2-dropdown .select2-results__option {\n margin-bottom: 0;\n}\n\n.acf-create-options-page-popup ~ .select2-container {\n z-index: 999999999;\n}\n\n/*-----------------------------------------------------------------------------\n*\n*\tACF Blocks\n*\n*----------------------------------------------------------------------------*/\n.acf-block-component .components-placeholder {\n margin: 0;\n}\n\n.acf-block-component .acf-block-fields {\n background: #fff;\n text-align: left;\n font-size: 13px;\n line-height: 1.4em;\n color: #444;\n font-family: -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Oxygen-Sans, Ubuntu, Cantarell, \"Helvetica Neue\", sans-serif;\n}\n.acf-block-component .acf-block-fields.acf-empty-block-fields {\n border: 1px solid #1e1e1e;\n padding: 12px;\n}\n.components-panel .acf-block-component .acf-block-fields.acf-empty-block-fields {\n border: none;\n border-top: 1px solid #ddd;\n border-bottom: 1px solid #ddd;\n}\nhtml[dir=rtl] .acf-block-component .acf-block-fields {\n text-align: right;\n}\n.acf-block-component .acf-block-fields p {\n font-size: 13px;\n line-height: 1.5;\n}\n\n.acf-block-body .acf-block-fields {\n border: #adb2ad solid 1px;\n}\n.acf-block-body .acf-block-fields .acf-tab-wrap .acf-tab-group {\n margin-left: 0;\n padding: 16px 20px 0;\n}\n.acf-block-body .acf-fields > .acf-field {\n padding: 16px 20px;\n}\n.acf-block-body .acf-fields > .acf-field.acf-accordion {\n border-color: #adb2ad;\n}\n.acf-block-body .acf-fields > .acf-field.acf-accordion .acf-accordion-title {\n padding: 16px 20px;\n}\n.acf-block-body .acf-button, .acf-block-body .acf-link a.button, .acf-block-body .acf-add-checkbox {\n color: #2271b1 !important;\n border-color: #2271b1 !important;\n background: #f6f7f7 !important;\n vertical-align: top;\n}\n.acf-block-body .acf-button.button-primary:hover, .acf-block-body .acf-link a.button.button-primary:hover, .acf-block-body .acf-add-checkbox.button-primary:hover {\n color: white !important;\n background: #2271b1 !important;\n}\n.acf-block-body .acf-button:focus, .acf-block-body .acf-link a.button:focus, .acf-block-body .acf-add-checkbox:focus {\n outline: none !important;\n background: #f6f7f7 !important;\n}\n.acf-block-body .acf-button:hover, .acf-block-body .acf-link a.button:hover, .acf-block-body .acf-add-checkbox:hover {\n color: #0a4b78 !important;\n}\n.acf-block-body .acf-block-preview {\n min-height: 10px;\n}\n\n.acf-block-panel .acf-block-fields {\n border-top: #ddd solid 1px;\n border-bottom: #ddd solid 1px;\n min-height: 1px;\n}\n.acf-block-panel .acf-block-fields:empty {\n border-top: none;\n}\n.acf-block-panel .acf-block-fields .acf-tab-wrap {\n background: transparent;\n}\n\n.components-panel__body .acf-block-panel {\n margin: 16px -16px -16px;\n}","/*--------------------------------------------------------------------------------------------\n*\n*\tVars\n*\n*--------------------------------------------------------------------------------------------*/\n\n/* colors */\n$acf_blue: #2a9bd9;\n$acf_notice: #2a9bd9;\n$acf_error: #d94f4f;\n$acf_success: #49ad52;\n$acf_warning: #fd8d3b;\n\n/* acf-field */\n$field_padding: 15px 12px;\n$field_padding_x: 12px;\n$field_padding_y: 15px;\n$fp: 15px 12px;\n$fy: 15px;\n$fx: 12px;\n\n/* responsive */\n$md: 880px;\n$sm: 640px;\n\n// Admin.\n$wp-card-border: #ccd0d4;\t\t\t// Card border.\n$wp-card-border-1: #d5d9dd;\t\t // Card inner border 1: Structural (darker).\n$wp-card-border-2: #eeeeee;\t\t // Card inner border 2: Fields (lighter).\n$wp-input-border: #7e8993;\t\t // Input border.\n\n// Admin 3.8\n$wp38-card-border: #E5E5E5;\t\t // Card border.\n$wp38-card-border-1: #dfdfdf;\t\t// Card inner border 1: Structural (darker).\n$wp38-card-border-2: #eeeeee;\t\t// Card inner border 2: Fields (lighter).\n$wp38-input-border: #dddddd;\t\t // Input border.\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tACF 6 ↓\n*\n*--------------------------------------------------------------------------------------------*/\n\n// Grays\n$gray-50: #F9FAFB;\n$gray-100: #F2F4F7;\n$gray-200: #EAECF0;\n$gray-300: #D0D5DD;\n$gray-400: #98A2B3;\n$gray-500: #667085;\n$gray-600: #475467;\n$gray-700: #344054;\n$gray-800: #1D2939;\n$gray-900: #101828;\n\n// Blues\n$blue-50: #EBF5FA;\n$blue-100: #D8EBF5;\n$blue-200: #A5D2E7;\n$blue-300: #6BB5D8;\n$blue-400: #399CCB;\n$blue-500: #0783BE;\n$blue-600: #066998;\n$blue-700: #044E71;\n$blue-800: #033F5B;\n$blue-900: #032F45;\n\n// Utility\n$color-info:\t#2D69DA;\n$color-success:\t#52AA59;\n$color-warning:\t#F79009;\n$color-danger:\t#D13737;\n\n$color-primary: $blue-500;\n$color-primary-hover: $blue-600;\n$color-secondary: $gray-500;\n$color-secondary-hover: $gray-400;\n\n// Gradients\n$gradient-pro: linear-gradient(90.52deg, #3E8BFF 0.44%, #A45CFF 113.3%);\n\n// Border radius\n$radius-sm:\t4px;\n$radius-md: 6px;\n$radius-lg: 8px;\n$radius-xl: 12px;\n\n// Elevations / Box shadows\n$elevation-01: 0px 1px 2px rgba($gray-900, 0.10);\n\n// Input & button focus outline\n$outline: 3px solid $blue-50;\n\n// Link colours\n$link-color: $blue-500;\n\n// Responsive\n$max-width: 1440px;","/*--------------------------------------------------------------------------------------------\n*\n* Mixins\n*\n*--------------------------------------------------------------------------------------------*/\n@mixin clearfix() {\n\t&:after {\n\t\tdisplay: block;\n\t\tclear: both;\n\t\tcontent: \"\";\n\t}\n}\n\n@mixin border-box() {\n\t-webkit-box-sizing: border-box;\n\t-moz-box-sizing: border-box;\n\tbox-sizing: border-box;\n}\n\n@mixin centered() {\n\tposition: absolute;\n\ttop: 50%;\n\tleft: 50%;\n\ttransform: translate(-50%, -50%);\n}\n\n@mixin animate( $properties: 'all' ) {\n\t-webkit-transition: $properties 0.3s ease; // Safari 3.2+, Chrome\n -moz-transition: $properties 0.3s ease; \t// Firefox 4-15\n -o-transition: $properties 0.3s ease; \t\t// Opera 10.5–12.00\n transition: $properties 0.3s ease; \t\t// Firefox 16+, Opera 12.50+\n}\n\n@mixin rtl() {\n\thtml[dir=\"rtl\"] & {\n\t\ttext-align: right;\n\t\t@content;\n\t}\n}\n\n@mixin wp-admin( $version: '3-8' ) {\n\t.acf-admin-#{$version} & {\n\t\t@content;\n\t}\n}","/*---------------------------------------------------------------------------------------------\n*\n* Repeater\n*\n*---------------------------------------------------------------------------------------------*/\n\n.acf-repeater {\n\t\n\t/* table */\n\t> table {\n\t\tmargin: 0 0 8px;\n\t\tbackground: #F9F9F9;\n\n\t\t> tbody tr.acf-divider:not(:first-child) > td {\n\t\t\tborder-top: 10px solid $gray-200;\n\t\t}\n\t}\n\t\n\t/* row handle (add/remove) */\n\t.acf-row-handle {\n\t\twidth: 16px;\n\t\ttext-align: center !important;\n\t\tvertical-align: middle !important;\n\t\tposition: relative;\n\n\t\t.acf-order-input-wrap {\n\t\t\twidth: 45px;\n\t\t}\n\n\t\t.acf-order-input::-webkit-outer-spin-button,\n\t\t.acf-order-input::-webkit-inner-spin-button {\n\t\t\t-webkit-appearance: none;\n\t\t\tmargin: 0;\n\t\t}\n\n\t\t.acf-order-input {\n\t\t\t-moz-appearance: textfield;\n\t\t\ttext-align: center;\n\t\t}\n\n\t\t/* icons */\n\t\t.acf-icon {\n\t\t\tdisplay: none;\n\t\t\tposition: absolute;\n\t\t\ttop: 0;\n\t\t\tmargin: -8px 0 0 -2px;\n\t\t\t\n\t\t\t\n\t\t\t/* minus icon */\n\t\t\t&.-minus {\n\t\t\t\ttop: 50%;\n\t\t\t\t\n\t\t\t\t/* ie fix */\n\t\t\t\tbody.browser-msie & { top: 25px; }\n\t\t\t\t\n\t\t\t}\n\t\t}\n\t\t\n\t\t\n\t\t/* .order */\n\t\t&.order {\n\t\t\tbackground: #f4f4f4;\n\t\t\tcursor: move;\n\t\t\tcolor: #aaa;\n\t\t\ttext-shadow: #fff 0 1px 0;\n\t\t\t\n\t\t\t&:hover {\n\t\t\t\tcolor: #666;\n\t\t\t}\n\t\t\t\n\t\t\t+ td {\n\t\t\t\tborder-left-color: #DFDFDF;\n\t\t\t}\n\t\t}\n\n\t\t&.pagination {\n\t\t\tcursor: auto;\n\t\t}\n\t\t\n\t\t/* remove */\n\t\t&.remove {\n\t\t\tbackground: #F9F9F9;\n\t\t\tborder-left-color: #DFDFDF;\n\t\t}\n\t}\n\t\n\t\n\t/* add in spacer to th (force correct width) */\n\tth.acf-row-handle:before {\n\t\tcontent: \"\";\n\t\twidth: 16px;\n\t\tdisplay: block;\n\t\theight: 1px;\n\t}\n\t\n\t\n\t/* row */\n\t.acf-row {\n\t\t\n\t\t/* hide clone */\n\t\t&.acf-clone {\n\t\t\tdisplay: none !important;\n\t\t}\n\t\t\n\t\t\n\t\t/* hover */\n\t\t&:hover,\n\t\t&.-hover {\n\t\t\t\n\t\t\t/* icons */\n\t\t\t> .acf-row-handle .acf-icon {\n\t\t\t\tdisplay: block;\n\n\t\t\t\t// Show \"duplicate\" icon above \"add\" when holding \"shift\" key.\n\t\t\t\t&.show-on-shift {\n\t\t\t\t\tdisplay: none;\n\t\t\t\t\tbody.acf-keydown-shift & {\n\t\t\t\t\t\tdisplay: block;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\t&.hide-on-shift {\n\t\t\t\t\tbody.acf-keydown-shift & {\n\t\t\t\t\t\tdisplay: none;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\t/* sortable */\n\t> table > tbody > tr.ui-sortable-helper {\n\t\tbox-shadow: 0 1px 5px rgba(0,0,0,0.2);\n\t}\n\t\n\t> table > tbody > tr.ui-sortable-placeholder {\n\t\tvisibility: visible !important;\n\t\t\n\t\ttd {\n\t\t\tbackground: #F9F9F9;\n\t\t}\n\t}\n\t\n\t\n\t/* layouts */\n/*\n\t&.-row > table > tbody > tr:before,\n\t&.-block > table > tbody > tr:before {\n\t\tcontent: \"\";\n\t\tdisplay: table-row;\n\t\theight: 2px;\n\t\tbackground: #f00;\n\t}\n*/\n\t\n\t&.-row > table > tbody > tr > td,\n\t&.-block > table > tbody > tr > td {\n\t\tborder-top-color: #E1E1E1;\n\t}\n\t\n\t\n\t/* empty */\n\t&.-empty > table > thead > tr > th {\n\t\tborder-bottom: 0 none;\n\t}\n\t\n\t&.-empty.-row > table,\n\t&.-empty.-block > table {\n\t\tdisplay: none;\n\t}\n\t\n\t\n\t/* collapsed */\n\t.acf-row.-collapsed {\n\t\t\n\t\t> .acf-field {\n\t\t\tdisplay: none !important;\n\t\t}\n\t\t\n\t\t> td.acf-field.-collapsed-target {\n\t\t\tdisplay: table-cell !important;\n\t\t}\n\t}\n\t\n\t/* collapsed (block layout) */\n\t.acf-row.-collapsed > .acf-fields {\n\t\t\n\t\t> * {\n\t\t\tdisplay: none !important;\n\t\t}\n\t\t\n\t\t> .acf-field.-collapsed-target {\n\t\t\tdisplay: block !important;\n\t\t\t\n\t\t\t&[data-width] {\n\t\t\t\tfloat: none !important;\n\t\t\t\twidth: auto !important;\n\t\t\t}\n\t\t}\n\t}\n\t\n\t\n\t/* collapsed (table layout) */\n\t&.-table .acf-row.-collapsed .acf-field.-collapsed-target {\n\t\tborder-left-color: #dfdfdf;\n\t}\n\t\n\t// Reached maximum rows.\n\t&.-max {\n\t\t\n\t\t// Hide icons to add rows.\n\t\t.acf-icon[data-event=\"add-row\"] {\n\t\t\tdisplay: none !important;\n\t\t}\n\t}\n\n\t> .acf-actions {\n\t\t.acf-button {\n\t\t\tfloat: right;\n\t\t\tpointer-events: auto !important;\n\t\t}\n\n\t\t.acf-tablenav {\n\t\t\tfloat: right;\n\t\t\tmargin-right: 20px;\n\n\t\t\t.current-page {\n\t\t\t\twidth: auto !important;\n\t\t\t}\n\t\t}\n\t}\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Flexible Content\n*\n*---------------------------------------------------------------------------------------------*/\n\n.acf-flexible-content {\n\tposition: relative;\n\t\n\t// clones\n\t> .clones {\n\t\tdisplay: none;\n\t}\n\t\n\t// values\n\t> .values {\n\t\tmargin: 0 0 8px;\n\t\t\n\t\t// sortable\n\t\t> .ui-sortable-placeholder {\n\t\t\tvisibility: visible !important;\n\t\t\tborder: 1px dashed #b4b9be;\n\t\t\n\t\t\tbox-shadow: none;\n\t\t\tbackground: transparent;\n\t\t}\n\t}\n\t\n\t// layout\n\t.layout {\n\t\tposition: relative;\n\t\tmargin: 20px 0 0;\n\t background: #fff;\n\t border: 1px solid $wp-card-border;\n\t\t\n\t &:first-child {\n\t\t\tmargin-top: 0;\n\t\t}\n\t\t\t\n\t\t// handle\n\t\t.acf-fc-layout-handle {\n\t\t\tdisplay: block;\n\t\t\tposition: relative;\n\t\t\tpadding: 8px 10px;\n\t\t\tcursor: move;\n\t\t\tborder-bottom: $wp-card-border solid 1px;\n\t\t\tcolor: #444;\n\t\t\tfont-size: 14px;\n\t\t\tline-height: 1.4em;\n\t\t}\n\t\t\n\t\t// order\n\t\t.acf-fc-layout-order {\n\t\t\tdisplay: block;\n\t\t\twidth: 20px;\n\t\t\theight: 20px;\n\t\t\tborder-radius: 10px;\n\t\t\tdisplay: inline-block;\n\t\t\ttext-align: center;\n\t\t\tline-height: 20px;\n\t\t\tmargin: 0 2px 0 0;\n\t\t\tbackground: #F1F1F1;\n\t\t\tfont-size: 12px;\n\t\t\tcolor: #444;\n\t\t\t\n\t\t\thtml[dir=\"rtl\"] & {\n\t\t\t\tfloat: right;\n\t\t\t\tmargin-right: 0;\n\t\t\t\tmargin-left: 5px;\n\t\t\t}\n\t\t}\n\t\t\n\t\t// controlls\n\t\t.acf-fc-layout-controls {\n\t\t\tposition: absolute;\n\t\t\ttop: 8px;\n\t\t\tright: 8px;\n\t\t\t\n\t\t\t.acf-icon {\n\t\t\t\tdisplay: block;\n\t\t\t\tfloat: left;\n\t\t\t\tmargin: 0 0 0 5px;\n\t\t\t\t\n\t\t\t\t&.-plus, &.-minus, &.-duplicate { visibility: hidden; }\n\t\t\t}\n\t\t\t\n\t\t\thtml[dir=\"rtl\"] & {\n\t\t\t\tright: auto;\n\t\t\t\tleft: 9px;\n\t\t\t}\n\t\t\t\n\t\t}\n\n\t\t&.is-selected {\n\t\t\tborder-color: $wp-input-border;\n\t\t\t.acf-fc-layout-handle {\n\t\t\t\tborder-color: $wp-input-border;\n\t\t\t}\n\t\t}\n\t\t\n\t\t// open\n\t\t&:hover, \n\t\t&.-hover {\n\t\t\t\n\t\t\t// controls\n\t\t\t.acf-fc-layout-controls {\n\t\t\t\t\n\t\t\t\t.acf-icon {\n\t\t\t\t\t&.-plus, &.-minus, &.-duplicate { visibility: visible; }\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\t\n\t\t// collapsed\n\t\t&.-collapsed {\n\t\t\t> .acf-fc-layout-handle {\n\t\t\t\tborder-bottom-width: 0;\n\t\t\t}\n\t\t\t\n\t\t\t> .acf-fields,\n\t\t\t> .acf-table {\n\t\t\t\tdisplay: none;\n\t\t\t}\n\t\t}\n\t\t\n\t\t// table\n\t\t> .acf-table {\n\t\t\tborder: 0 none;\n\t\t\tbox-shadow: none;\n\t\t\t\n\t\t\t> tbody > tr {\n\t\t\t\tbackground: #fff;\n\t\t\t}\n\t\t\t\n\t\t\t> thead > tr > th {\n\t\t\t\tbackground: #F9F9F9;\n\t\t\t}\n\t\t}\n\t}\n\n\t// no value\n\t.no-value-message {\n\t\tpadding: 19px;\n\t\tborder: #ccc dashed 2px;\n\t\ttext-align: center;\n\t\tdisplay: none;\n\t}\n\n\t// empty\n\t&.-empty > .no-value-message {\n\t\tdisplay: block;\n\t}\n}\n\n// popup\n.acf-fc-popup {\n\tpadding: 5px 0;\n\tz-index: 900001; // +1 higher than .acf-tooltip\n\tmin-width: 135px;\n\t\n\tul, li {\n\t\tlist-style: none;\n\t\tdisplay: block;\n\t\tmargin: 0;\n\t\tpadding: 0;\n\t}\n\t\n\tli {\n\t\tposition: relative;\n\t\tfloat: none;\n\t\twhite-space: nowrap;\n\t}\n\t\n\t.badge {\n\t\tdisplay: inline-block;\n\t\tborder-radius: 8px;\n\t\tfont-size: 9px;\n\t\tline-height: 15px;\n\t\tpadding: 0 5px;\n\t\t\n\t\tbackground: #d54e21;\n\t\ttext-align: center;\n\t\tcolor: #fff;\n\t\tvertical-align: top;\n\t\tmargin: 0 0 0 5px;\n\t}\n\t\n\ta {\n\t\tcolor: #eee;\n\t\tpadding: 5px 10px;\n\t\tdisplay: block;\n\t\ttext-decoration: none;\n\t\tposition: relative;\n\t\t\n\t\t&:hover {\n\t\t\tbackground: #0073aa;\n\t\t\tcolor: #fff;\n\t\t}\n\t\t\n\t\t&.disabled {\n\t\t\tcolor: #888;\n\t\t\tbackground: transparent;\n\t\t}\n\t}\n}\n\n\n\n/*---------------------------------------------------------------------------------------------\n*\n* Galery\n*\n*---------------------------------------------------------------------------------------------*/\n\n.acf-gallery {\n\tborder: $wp-card-border solid 1px;\n\theight: 400px;\n\tposition: relative;\n\t\n\t/* main */\n\t.acf-gallery-main {\n\t\tposition: absolute;\n\t\ttop: 0;\n\t\tright: 0;\n\t\tbottom: 0;\n\t\tleft: 0;\n\t\tbackground: #fff;\n\t\tz-index: 2;\n\t}\n\t\n\t/* attachments */\n\t.acf-gallery-attachments {\n\t\tposition: absolute;\n\t\ttop: 0;\n\t\tright: 0;\n\t\tbottom: 48px;\n\t\tleft: 0;\n\t\tpadding: 5px;\n\t\toverflow: auto;\n\t\toverflow-x: hidden;\n\t}\n\t\n\t\n\t/* attachment */\n\t.acf-gallery-attachment {\n\t\twidth: 25%;\n\t\tfloat: left;\n\t\tcursor: pointer;\n\t\tposition: relative;\n\t\t\n\t\t.margin {\n\t\t\tmargin: 5px;\n\t\t\tborder: $wp-card-border-1 solid 1px;\n\t\t\tposition: relative;\n\t\t\toverflow: hidden;\n\t\t\tbackground: #eee;\n\t\t\t\n\t\t\t&:before {\n\t\t\t\tcontent: \"\";\n\t\t\t display: block;\n\t\t\t padding-top: 100%;\n\t\t\t}\n\t\t}\n\t\t\n\t\t.thumbnail {\n\t\t\tposition: absolute;\n\t\t\ttop: 0;\n\t\t\tleft: 0;\n\t\t\twidth: 100%;\n\t\t\theight: 100%;\n\t\t\ttransform: translate(50%, 50%);\n\t\t\t\n\t\t\thtml[dir=\"rtl\"] & { \n\t\t\t\ttransform: translate(-50%, 50%);\n\t\t\t}\n\t\t\t\n\t\t\timg {\n\t\t\t\tdisplay: block;\n\t\t\t\theight: auto;\n\t\t\t\tmax-height: 100%;\n\t\t\t\twidth: auto;\n\t\t\t\ttransform: translate(-50%, -50%);\n\t\t\t\t\n\t\t\t\thtml[dir=\"rtl\"] & { \n\t\t\t\t\ttransform: translate(50%, -50%);\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\t\n\t\t.filename {\n\t\t position: absolute;\n\t\t bottom: 0;\n\t\t left: 0;\n\t\t right: 0;\n\t\t padding: 5%;\n\t\t background: #F4F4F4;\n\t\t background: rgba(255, 255, 255, 0.8);\n\t\t border-top: #DFDFDF solid 1px;\n\t\t font-weight: bold;\n\t\t text-align: center;\n\t\t word-wrap: break-word;\n\t\t max-height: 90%;\n\t\t overflow: hidden;\n\t\t}\n\t\t\n\t\t.actions {\n\t\t\tposition: absolute;\n\t\t\ttop: 0;\n\t\t\tright: 0;\n\t\t\tdisplay: none;\n\t\t}\n\t\t\n\t\t\n\t\t/* hover */\n\t\t&:hover {\n\t\t\t\n\t\t\t.actions {\n\t\t\t\tdisplay: block;\n\t\t\t}\n\t\t\t\n\t\t}\n\t\t\n\t\t\n\t\t/* sortable */\n\t\t&.ui-sortable-helper {\n\t\t\t\n\t\t\t.margin {\n\t\t\t\tborder: none;\n\t\t\t\tbox-shadow: 0 1px 3px rgba(0,0,0,0.3);\n\t\t\t}\n\t\t}\n\t\t\n\t\t&.ui-sortable-placeholder {\n\t\t\t\n\t\t\t.margin {\n\t\t\t\tbackground: #F1F1F1;\n\t\t\t\tborder: none;\n\t\t\t\t\n\t\t\t\t* {\n\t\t\t\t\tdisplay: none !important;\n\t\t\t\t}\n\t\t\t}\n\t\t\t\n\t\t}\n\t\t\n\t\t\n\t\t/* active */\n\t\t&.active {\n\t\t\t\n\t\t\t.margin {\n\t\t\t\tbox-shadow: 0 0 0 1px #FFFFFF, 0 0 0 5px #0073aa;\n\t\t\t}\n\t\t\t\n\t\t}\n\t\t\n\t\t\n\t\t/* icon */\n\t\t&.-icon {\n\t\t\t\n\t\t\t.thumbnail img {\n\t\t\t\ttransform: translate(-50%, -70%);\n\t\t\t}\n\t\t\t\n\t\t}\n\t\t\n\t\t\n\t\t/* rtl */\n\t\thtml[dir=\"rtl\"] & {\n\t\t\tfloat: right;\n\t\t}\n\t\t\n\t}\n\t\n\t\n\t\n\t&.sidebar-open {\n\t\t\n\t\t/* hide attachment actions when sidebar is open */\n\t\t.acf-gallery-attachment .actions {\n\t\t\tdisplay: none;\n\t\t}\n\t\t\n\t\t\n\t\t/* allow sidebar to move over main for small widths (widget edit box) */\n\t\t.acf-gallery-side {\n\t\t\tz-index: 2;\n\t\t}\n\t\t\n\t}\n\t\n\t\n\t/* toolbar */\n\t.acf-gallery-toolbar {\n\t\tposition: absolute;\n\t\tright: 0;\n\t\tbottom: 0;\n\t\tleft: 0;\n\t\tpadding: 10px;\n\t\tborder-top: $wp-card-border-1 solid 1px;\n\t\tbackground: #fff;\n\t\tmin-height: 28px;\n\t\t\n\t\t.acf-hl li {\n\t\t\tline-height: 24px;\n\t\t}\n\t\t\n\t\t.bulk-actions-select {\n\t\t\twidth: auto;\n\t\t\tmargin: 0 1px 0 0;\n\t\t}\n\t\t\n\t}\n\t\n\t\n\t/* sidebar */\n\t.acf-gallery-side {\n\t\tposition: absolute;\n\t\ttop: 0;\n\t\tright: 0;\n\t\tbottom: 0;\n\t\twidth: 0;\n\t\t\n\t\tbackground: #F9F9F9;\n\t\tborder-left: $wp-card-border solid 1px;\n\t\t\n\t\tz-index: 1;\n\t\toverflow: hidden;\n\t\t\n\t\t.acf-gallery-side-inner {\n\t\t\tposition: absolute;\n\t\t\ttop: 0;\n\t\t\tleft: 0;\n\t\t\tbottom: 0;\n\t\t\twidth: 349px;\n\t\t}\n\t\t\n\t}\n\t\n\t\n\t/* side info */\n\t.acf-gallery-side-info {\n\t\t@include clearfix();\n\t\tposition: relative;\n\t\twidth: 100%;\n\t\tpadding: 10px;\n\t\tmargin: -10px 0 15px -10px;\n\t\tbackground: #F1F1F1;\n\t\tborder-bottom: #DFDFDF solid 1px;\n\t\t\n\t\thtml[dir=\"rtl\"] & {\n\t\t\tmargin-left: 0;\n\t\t\tmargin-right: -10px;\n\t\t}\n\t\n\t\timg {\n\t\t\tfloat: left;\n\t\t\twidth: auto;\n\t\t\tmax-width: 65px;\n\t\t\tmax-height: 65px;\n\t\t\tmargin: 0 10px 1px 0;\n\t\t\tbackground: #FFFFFF;\n\t\t\tpadding: 3px;\n\t\t\tborder: $wp-card-border solid 1px;\n\t\t\tborder-radius: 1px;\n\t\t\t\n\t\t\t/* rtl */\n\t\t\thtml[dir=\"rtl\"] & {\n\t\t\t\tfloat: right;\n\t\t\t\tmargin: 0 0 0 10px;\n\t\t\t}\n\t\t}\n\t\t\t\t\n\t\tp {\n\t\t\tfont-size: 13px;\n\t\t\tline-height: 15px;\n\t\t\tmargin: 3px 0;\n\t\t\tword-break: break-all;\n\t\t\tcolor: #666;\n\t\t\t\n\t\t\tstrong {\n\t\t\t\tcolor: #000;\n\t\t\t}\n\t\t}\n\t\t\n\t\ta {\n\t\t\ttext-decoration: none;\n\t\t\t\n\t\t\t&.acf-gallery-edit {\n\t\t\t\tcolor: #21759b;\n\t\t\t}\n\t\t\t\n\t\t\t&.acf-gallery-remove {\n\t\t\t\tcolor: #bc0b0b;\n\t\t\t}\n\t\t\t\n\t\t\t&:hover {\n\t\t\t\ttext-decoration: underline;\n\t\t\t}\n\t\t\n\t\t}\n\t\t\n\t}\n\t\n\t\n\t/* side data */\n\t.acf-gallery-side-data {\n\t\tposition: absolute;\n\t\ttop: 0;\n\t\tright: 0;\n\t\tbottom: 48px;\n\t\tleft: 0;\n\t\toverflow: auto;\n\t\toverflow-x: inherit;\n\t\tpadding: 10px;\n\t\n\t\t\n\t\t.acf-label,\n\t\tth.label {\n\t\t\tcolor: #666666;\n\t\t\tfont-size: 12px;\n\t\t\tline-height: 25px;\n\t\t\tpadding: 0 4px 8px 0 !important;\n\t\t\twidth: auto !important;\n\t\t\tvertical-align: top;\n\t\t\t\n\t\t\thtml[dir=\"rtl\"] & { \n\t\t\t\tpadding: 0 0 8px 4px !important;\n\t\t\t}\n\t\t\t\n\t\t\tlabel {\n\t\t\t\tfont-weight: normal;\n\t\t\t}\n\t\t}\n\t\t\t\t\n\t\t.acf-input,\n\t\ttd.field {\n\t\t\tpadding: 0 0 8px !important;\n\t\t}\n\t\t\n\t\ttextarea {\n\t\t\tmin-height: 0;\n\t\t\theight: 60px;\n\t\t}\n\t\t\n\t\tp.help {\n\t\t\tfont-size: 12px;\n\t\t\t\n\t\t\t&:hover {\n\t\t\t\tfont-weight: normal;\n\t\t\t}\n\t\t}\n\t\n\t}\n\t\n\t\n\t/* column widths */\n\t&[data-columns=\"1\"] .acf-gallery-attachment { width: 100%; }\n\t&[data-columns=\"2\"] .acf-gallery-attachment { width: 50%; }\n\t&[data-columns=\"3\"] .acf-gallery-attachment { width: 33.333%; }\n\t&[data-columns=\"4\"] .acf-gallery-attachment { width: 25%; }\n\t&[data-columns=\"5\"] .acf-gallery-attachment { width: 20%; }\n\t&[data-columns=\"6\"] .acf-gallery-attachment { width: 16.666%; }\n\t&[data-columns=\"7\"] .acf-gallery-attachment { width: 14.285%; }\n\t&[data-columns=\"8\"] .acf-gallery-attachment { width: 12.5%; }\n\t\n\t\n\t/* resizable */\n\t.ui-resizable-handle {\n\t\tdisplay: block;\n\t\tposition: absolute;\n\t}\n\t\n\t.ui-resizable-s {\n\t\tbottom: -5px;\n\t\tcursor: ns-resize;\n\t\theight: 7px;\n\t\tleft: 0;\n\t\twidth: 100%;\n\t}\n\n}\n\n\n\n/* media modal selected */\n.acf-media-modal .attachment.acf-selected {\n\tbox-shadow: 0 0 0 3px #fff inset, 0 0 0 7px #0073aa inset !important;\n\t\n\t.check {\n\t\tdisplay: none !important;\n\t}\n\t\n\t.thumbnail {\n\t\topacity: 0.25 !important;\n\t}\n\t\t\n\t.attachment-preview:before {\n\t\tbackground: rgba(0,0,0,0.15);\n\t\tz-index: 1;\n\t\tposition: relative;\n\t}\n\n}\n\n\n.acf-admin-single-options-page {\n\t.select2-dropdown {\n\t\tborder-color: $blue-300 !important;\n\t\tmargin-top: -5px;\n\t\toverflow: hidden;\n\t\tbox-shadow: $elevation-01;\n\t}\n\n\t.select2-dropdown.select2-dropdown--above {\n\t\tmargin-top: 0;\n\t}\n\n\t.select2-container--default .select2-results__option[aria-selected=\"true\"] {\n\t\tbackground-color: $gray-50 !important;\n\t\tcolor: $gray-500;\n\n\t\t&:hover {\n\t\t\tcolor: $blue-400;\n\t\t}\n\t}\n\n\t.select2-container--default\n\t\t.select2-results__option--highlighted[aria-selected] {\n\t\tcolor: #fff !important;\n\t\tbackground-color: $blue-500 !important;\n\t}\n\n\t// remove bottom margin on options\n\t.select2-dropdown .select2-results__option {\n\t\tmargin-bottom: 0;\n\t}\n}\n\n// z-index helper for the popup modal.\n.acf-create-options-page-popup ~ .select2-container {\n\tz-index: 999999999;\n}\n","/*-----------------------------------------------------------------------------\n*\n*\tACF Blocks\n*\n*----------------------------------------------------------------------------*/\n\n// All block components.\n.acf-block-component {\n\t.components-placeholder {\n\t\tmargin: 0;\n\t}\n}\n\n// Block fields\n.acf-block-component .acf-block-fields {\n\t// Ensure white background behind fields.\n\tbackground: #fff;\n\n\t// Generic body styles\n\ttext-align: left;\n\tfont-size: 13px;\n\tline-height: 1.4em;\n\tcolor: #444;\n\tfont-family: -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto,\n\t\tOxygen-Sans, Ubuntu, Cantarell, \"Helvetica Neue\", sans-serif;\n\n\t&.acf-empty-block-fields {\n\t\tborder: 1px solid #1e1e1e;\n\t\tpadding: 12px;\n\n\t\t.components-panel & {\n\t\t\tborder: none;\n\t\t\tborder-top: 1px solid #ddd;\n\t\t\tborder-bottom: 1px solid #ddd;\n\t\t}\n\t}\n\n\thtml[dir=\"rtl\"] & {\n\t\ttext-align: right;\n\t}\n\n\tp {\n\t\tfont-size: 13px;\n\t\tline-height: 1.5;\n\t}\n}\n\n// Block body.\n.acf-block-body {\n\t// Fields wrapper.\n\t.acf-block-fields {\n\t\tborder: #adb2ad solid 1px;\n\n\t\t// Tab\n\t\t.acf-tab-wrap {\n\t\t\t.acf-tab-group {\n\t\t\t\tmargin-left: 0;\n\t\t\t\tpadding: 16px 20px 0;\n\t\t\t}\n\t\t}\n\t}\n\n\t// Block fields (div).\n\t.acf-fields > .acf-field {\n\t\tpadding: 16px 20px;\n\n\t\t// Accordions.\n\t\t&.acf-accordion {\n\t\t\tborder-color: #adb2ad;\n\n\t\t\t.acf-accordion-title {\n\t\t\t\tpadding: 16px 20px;\n\t\t\t}\n\t\t}\n\t}\n\n\t// Ensure ACF buttons aren't changed by theme colors in the block editor.\n\t.acf-button, .acf-link a.button, .acf-add-checkbox {\n\t\tcolor: #2271b1 !important;\n\t\tborder-color: #2271b1 !important;\n\t\tbackground: #f6f7f7 !important;\n\t\tvertical-align: top;\n\n\t\t&.button-primary:hover {\n\t\t\tcolor: white !important;\n\t\t\tbackground: #2271b1 !important;\n\t\t}\n\n\t\t&:focus {\n\t\t\toutline: none !important;\n\t\t\tbackground: #f6f7f7 !important;\n\t\t}\n\n\t\t&:hover {\n\t\t\tcolor: #0a4b78 !important;\n\t\t}\n\t}\n\n\t// Preview.\n\t.acf-block-preview {\n\t\tmin-height: 10px;\n\t}\n}\n\n// Block panel.\n.acf-block-panel {\n\t// Fields wrapper.\n\t.acf-block-fields {\n\t\tborder-top: #ddd solid 1px;\n\t\tborder-bottom: #ddd solid 1px;\n\t\tmin-height: 1px;\n\n\t\t&:empty {\n\t\t\tborder-top: none;\n\t\t}\n\n\t\t// Tab\n\t\t.acf-tab-wrap {\n\t\t\tbackground: transparent;\n\t\t}\n\t}\n}\n\n// Add compatibility for WP 5.3 and older.\n// - Sidebar area is wrapped in a PanelBody element.\n.components-panel__body .acf-block-panel {\n\tmargin: 16px -16px -16px;\n}\n"],"names":[],"sourceRoot":""} \ No newline at end of file diff --git a/assets/build/css/pro/acf-pro-input.min.css b/assets/build/css/pro/acf-pro-input.min.css index 19dbaba..d65a08a 100644 --- a/assets/build/css/pro/acf-pro-input.min.css +++ b/assets/build/css/pro/acf-pro-input.min.css @@ -1 +1 @@ -.acf-repeater>table{margin:0 0 8px;background:#f9f9f9}.acf-repeater>table>tbody tr.acf-divider:not(:first-child)>td{border-top:10px solid #eaecf0}.acf-repeater .acf-row-handle{width:16px;text-align:center !important;vertical-align:middle !important;position:relative}.acf-repeater .acf-row-handle .acf-order-input-wrap{width:45px}.acf-repeater .acf-row-handle .acf-order-input::-webkit-outer-spin-button,.acf-repeater .acf-row-handle .acf-order-input::-webkit-inner-spin-button{-webkit-appearance:none;margin:0}.acf-repeater .acf-row-handle .acf-order-input{-moz-appearance:textfield;text-align:center}.acf-repeater .acf-row-handle .acf-icon{display:none;position:absolute;top:0;margin:-8px 0 0 -2px}.acf-repeater .acf-row-handle .acf-icon.-minus{top:50%}body.browser-msie .acf-repeater .acf-row-handle .acf-icon.-minus{top:25px}.acf-repeater .acf-row-handle.order{background:#f4f4f4;cursor:move;color:#aaa;text-shadow:#fff 0 1px 0}.acf-repeater .acf-row-handle.order:hover{color:#666}.acf-repeater .acf-row-handle.order+td{border-left-color:#dfdfdf}.acf-repeater .acf-row-handle.pagination{cursor:auto}.acf-repeater .acf-row-handle.remove{background:#f9f9f9;border-left-color:#dfdfdf}.acf-repeater th.acf-row-handle:before{content:"";width:16px;display:block;height:1px}.acf-repeater .acf-row.acf-clone{display:none !important}.acf-repeater .acf-row:hover>.acf-row-handle .acf-icon,.acf-repeater .acf-row.-hover>.acf-row-handle .acf-icon{display:block}.acf-repeater .acf-row:hover>.acf-row-handle .acf-icon.show-on-shift,.acf-repeater .acf-row.-hover>.acf-row-handle .acf-icon.show-on-shift{display:none}body.acf-keydown-shift .acf-repeater .acf-row:hover>.acf-row-handle .acf-icon.show-on-shift,body.acf-keydown-shift .acf-repeater .acf-row.-hover>.acf-row-handle .acf-icon.show-on-shift{display:block}body.acf-keydown-shift .acf-repeater .acf-row:hover>.acf-row-handle .acf-icon.hide-on-shift,body.acf-keydown-shift .acf-repeater .acf-row.-hover>.acf-row-handle .acf-icon.hide-on-shift{display:none}.acf-repeater>table>tbody>tr.ui-sortable-helper{box-shadow:0 1px 5px rgba(0,0,0,.2)}.acf-repeater>table>tbody>tr.ui-sortable-placeholder{visibility:visible !important}.acf-repeater>table>tbody>tr.ui-sortable-placeholder td{background:#f9f9f9}.acf-repeater.-row>table>tbody>tr>td,.acf-repeater.-block>table>tbody>tr>td{border-top-color:#e1e1e1}.acf-repeater.-empty>table>thead>tr>th{border-bottom:0 none}.acf-repeater.-empty.-row>table,.acf-repeater.-empty.-block>table{display:none}.acf-repeater .acf-row.-collapsed>.acf-field{display:none !important}.acf-repeater .acf-row.-collapsed>td.acf-field.-collapsed-target{display:table-cell !important}.acf-repeater .acf-row.-collapsed>.acf-fields>*{display:none !important}.acf-repeater .acf-row.-collapsed>.acf-fields>.acf-field.-collapsed-target{display:block !important}.acf-repeater .acf-row.-collapsed>.acf-fields>.acf-field.-collapsed-target[data-width]{float:none !important;width:auto !important}.acf-repeater.-table .acf-row.-collapsed .acf-field.-collapsed-target{border-left-color:#dfdfdf}.acf-repeater.-max .acf-icon[data-event=add-row]{display:none !important}.acf-repeater>.acf-actions .acf-button{float:right;pointer-events:auto !important}.acf-repeater>.acf-actions .acf-tablenav{float:right;margin-right:20px}.acf-repeater>.acf-actions .acf-tablenav .current-page{width:auto !important}.acf-flexible-content{position:relative}.acf-flexible-content>.clones{display:none}.acf-flexible-content>.values{margin:0 0 8px}.acf-flexible-content>.values>.ui-sortable-placeholder{visibility:visible !important;border:1px dashed #b4b9be;box-shadow:none;background:rgba(0,0,0,0)}.acf-flexible-content .layout{position:relative;margin:20px 0 0;background:#fff;border:1px solid #ccd0d4}.acf-flexible-content .layout:first-child{margin-top:0}.acf-flexible-content .layout .acf-fc-layout-handle{display:block;position:relative;padding:8px 10px;cursor:move;border-bottom:#ccd0d4 solid 1px;color:#444;font-size:14px;line-height:1.4em}.acf-flexible-content .layout .acf-fc-layout-order{display:block;width:20px;height:20px;border-radius:10px;display:inline-block;text-align:center;line-height:20px;margin:0 2px 0 0;background:#f1f1f1;font-size:12px;color:#444}html[dir=rtl] .acf-flexible-content .layout .acf-fc-layout-order{float:right;margin-right:0;margin-left:5px}.acf-flexible-content .layout .acf-fc-layout-controls{position:absolute;top:8px;right:8px}.acf-flexible-content .layout .acf-fc-layout-controls .acf-icon{display:block;float:left;margin:0 0 0 5px}.acf-flexible-content .layout .acf-fc-layout-controls .acf-icon.-plus,.acf-flexible-content .layout .acf-fc-layout-controls .acf-icon.-minus,.acf-flexible-content .layout .acf-fc-layout-controls .acf-icon.-duplicate{visibility:hidden}html[dir=rtl] .acf-flexible-content .layout .acf-fc-layout-controls{right:auto;left:9px}.acf-flexible-content .layout.is-selected{border-color:#7e8993}.acf-flexible-content .layout.is-selected .acf-fc-layout-handle{border-color:#7e8993}.acf-flexible-content .layout:hover .acf-fc-layout-controls .acf-icon.-plus,.acf-flexible-content .layout:hover .acf-fc-layout-controls .acf-icon.-minus,.acf-flexible-content .layout:hover .acf-fc-layout-controls .acf-icon.-duplicate,.acf-flexible-content .layout.-hover .acf-fc-layout-controls .acf-icon.-plus,.acf-flexible-content .layout.-hover .acf-fc-layout-controls .acf-icon.-minus,.acf-flexible-content .layout.-hover .acf-fc-layout-controls .acf-icon.-duplicate{visibility:visible}.acf-flexible-content .layout.-collapsed>.acf-fc-layout-handle{border-bottom-width:0}.acf-flexible-content .layout.-collapsed>.acf-fields,.acf-flexible-content .layout.-collapsed>.acf-table{display:none}.acf-flexible-content .layout>.acf-table{border:0 none;box-shadow:none}.acf-flexible-content .layout>.acf-table>tbody>tr{background:#fff}.acf-flexible-content .layout>.acf-table>thead>tr>th{background:#f9f9f9}.acf-flexible-content .no-value-message{padding:19px;border:#ccc dashed 2px;text-align:center;display:none}.acf-flexible-content.-empty>.no-value-message{display:block}.acf-fc-popup{padding:5px 0;z-index:900001;min-width:135px}.acf-fc-popup ul,.acf-fc-popup li{list-style:none;display:block;margin:0;padding:0}.acf-fc-popup li{position:relative;float:none;white-space:nowrap}.acf-fc-popup .badge{display:inline-block;border-radius:8px;font-size:9px;line-height:15px;padding:0 5px;background:#d54e21;text-align:center;color:#fff;vertical-align:top;margin:0 0 0 5px}.acf-fc-popup a{color:#eee;padding:5px 10px;display:block;text-decoration:none;position:relative}.acf-fc-popup a:hover{background:#0073aa;color:#fff}.acf-fc-popup a.disabled{color:#888;background:rgba(0,0,0,0)}.acf-gallery{border:#ccd0d4 solid 1px;height:400px;position:relative}.acf-gallery .acf-gallery-main{position:absolute;top:0;right:0;bottom:0;left:0;background:#fff;z-index:2}.acf-gallery .acf-gallery-attachments{position:absolute;top:0;right:0;bottom:48px;left:0;padding:5px;overflow:auto;overflow-x:hidden}.acf-gallery .acf-gallery-attachment{width:25%;float:left;cursor:pointer;position:relative}.acf-gallery .acf-gallery-attachment .margin{margin:5px;border:#d5d9dd solid 1px;position:relative;overflow:hidden;background:#eee}.acf-gallery .acf-gallery-attachment .margin:before{content:"";display:block;padding-top:100%}.acf-gallery .acf-gallery-attachment .thumbnail{position:absolute;top:0;left:0;width:100%;height:100%;transform:translate(50%, 50%)}html[dir=rtl] .acf-gallery .acf-gallery-attachment .thumbnail{transform:translate(-50%, 50%)}.acf-gallery .acf-gallery-attachment .thumbnail img{display:block;height:auto;max-height:100%;width:auto;transform:translate(-50%, -50%)}html[dir=rtl] .acf-gallery .acf-gallery-attachment .thumbnail img{transform:translate(50%, -50%)}.acf-gallery .acf-gallery-attachment .filename{position:absolute;bottom:0;left:0;right:0;padding:5%;background:#f4f4f4;background:rgba(255,255,255,.8);border-top:#dfdfdf solid 1px;font-weight:bold;text-align:center;word-wrap:break-word;max-height:90%;overflow:hidden}.acf-gallery .acf-gallery-attachment .actions{position:absolute;top:0;right:0;display:none}.acf-gallery .acf-gallery-attachment:hover .actions{display:block}.acf-gallery .acf-gallery-attachment.ui-sortable-helper .margin{border:none;box-shadow:0 1px 3px rgba(0,0,0,.3)}.acf-gallery .acf-gallery-attachment.ui-sortable-placeholder .margin{background:#f1f1f1;border:none}.acf-gallery .acf-gallery-attachment.ui-sortable-placeholder .margin *{display:none !important}.acf-gallery .acf-gallery-attachment.active .margin{box-shadow:0 0 0 1px #fff,0 0 0 5px #0073aa}.acf-gallery .acf-gallery-attachment.-icon .thumbnail img{transform:translate(-50%, -70%)}html[dir=rtl] .acf-gallery .acf-gallery-attachment{float:right}.acf-gallery.sidebar-open .acf-gallery-attachment .actions{display:none}.acf-gallery.sidebar-open .acf-gallery-side{z-index:2}.acf-gallery .acf-gallery-toolbar{position:absolute;right:0;bottom:0;left:0;padding:10px;border-top:#d5d9dd solid 1px;background:#fff;min-height:28px}.acf-gallery .acf-gallery-toolbar .acf-hl li{line-height:24px}.acf-gallery .acf-gallery-toolbar .bulk-actions-select{width:auto;margin:0 1px 0 0}.acf-gallery .acf-gallery-side{position:absolute;top:0;right:0;bottom:0;width:0;background:#f9f9f9;border-left:#ccd0d4 solid 1px;z-index:1;overflow:hidden}.acf-gallery .acf-gallery-side .acf-gallery-side-inner{position:absolute;top:0;left:0;bottom:0;width:349px}.acf-gallery .acf-gallery-side-info{position:relative;width:100%;padding:10px;margin:-10px 0 15px -10px;background:#f1f1f1;border-bottom:#dfdfdf solid 1px}.acf-gallery .acf-gallery-side-info:after{display:block;clear:both;content:""}html[dir=rtl] .acf-gallery .acf-gallery-side-info{margin-left:0;margin-right:-10px}.acf-gallery .acf-gallery-side-info img{float:left;width:auto;max-width:65px;max-height:65px;margin:0 10px 1px 0;background:#fff;padding:3px;border:#ccd0d4 solid 1px;border-radius:1px}html[dir=rtl] .acf-gallery .acf-gallery-side-info img{float:right;margin:0 0 0 10px}.acf-gallery .acf-gallery-side-info p{font-size:13px;line-height:15px;margin:3px 0;word-break:break-all;color:#666}.acf-gallery .acf-gallery-side-info p strong{color:#000}.acf-gallery .acf-gallery-side-info a{text-decoration:none}.acf-gallery .acf-gallery-side-info a.acf-gallery-edit{color:#21759b}.acf-gallery .acf-gallery-side-info a.acf-gallery-remove{color:#bc0b0b}.acf-gallery .acf-gallery-side-info a:hover{text-decoration:underline}.acf-gallery .acf-gallery-side-data{position:absolute;top:0;right:0;bottom:48px;left:0;overflow:auto;overflow-x:inherit;padding:10px}.acf-gallery .acf-gallery-side-data .acf-label,.acf-gallery .acf-gallery-side-data th.label{color:#666;font-size:12px;line-height:25px;padding:0 4px 8px 0 !important;width:auto !important;vertical-align:top}html[dir=rtl] .acf-gallery .acf-gallery-side-data .acf-label,html[dir=rtl] .acf-gallery .acf-gallery-side-data th.label{padding:0 0 8px 4px !important}.acf-gallery .acf-gallery-side-data .acf-label label,.acf-gallery .acf-gallery-side-data th.label label{font-weight:normal}.acf-gallery .acf-gallery-side-data .acf-input,.acf-gallery .acf-gallery-side-data td.field{padding:0 0 8px !important}.acf-gallery .acf-gallery-side-data textarea{min-height:0;height:60px}.acf-gallery .acf-gallery-side-data p.help{font-size:12px}.acf-gallery .acf-gallery-side-data p.help:hover{font-weight:normal}.acf-gallery[data-columns="1"] .acf-gallery-attachment{width:100%}.acf-gallery[data-columns="2"] .acf-gallery-attachment{width:50%}.acf-gallery[data-columns="3"] .acf-gallery-attachment{width:33.333%}.acf-gallery[data-columns="4"] .acf-gallery-attachment{width:25%}.acf-gallery[data-columns="5"] .acf-gallery-attachment{width:20%}.acf-gallery[data-columns="6"] .acf-gallery-attachment{width:16.666%}.acf-gallery[data-columns="7"] .acf-gallery-attachment{width:14.285%}.acf-gallery[data-columns="8"] .acf-gallery-attachment{width:12.5%}.acf-gallery .ui-resizable-handle{display:block;position:absolute}.acf-gallery .ui-resizable-s{bottom:-5px;cursor:ns-resize;height:7px;left:0;width:100%}.acf-media-modal .attachment.acf-selected{box-shadow:0 0 0 3px #fff inset,0 0 0 7px #0073aa inset !important}.acf-media-modal .attachment.acf-selected .check{display:none !important}.acf-media-modal .attachment.acf-selected .thumbnail{opacity:.25 !important}.acf-media-modal .attachment.acf-selected .attachment-preview:before{background:rgba(0,0,0,.15);z-index:1;position:relative}.acf-admin-single-options-page .select2-dropdown{border-color:#6bb5d8 !important;margin-top:-5px;overflow:hidden;box-shadow:0px 1px 2px rgba(16,24,40,.1)}.acf-admin-single-options-page .select2-dropdown.select2-dropdown--above{margin-top:0}.acf-admin-single-options-page .select2-container--default .select2-results__option[aria-selected=true]{background-color:#f9fafb !important;color:#667085}.acf-admin-single-options-page .select2-container--default .select2-results__option[aria-selected=true]:hover{color:#399ccb}.acf-admin-single-options-page .select2-container--default .select2-results__option--highlighted[aria-selected]{color:#fff !important;background-color:#0783be !important}.acf-admin-single-options-page .select2-dropdown .select2-results__option{margin-bottom:0}.acf-create-options-page-popup~.select2-container{z-index:999999999}.acf-block-component .components-placeholder{margin:0}.acf-block-component .acf-block-fields{background:#fff;text-align:left;font-size:13px;line-height:1.4em;color:#444;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif}.acf-block-component .acf-block-fields.acf-empty-block-fields{border:1px solid #1e1e1e;padding:12px}.components-panel .acf-block-component .acf-block-fields.acf-empty-block-fields{border:none;border-top:1px solid #ddd;border-bottom:1px solid #ddd}html[dir=rtl] .acf-block-component .acf-block-fields{text-align:right}.acf-block-component .acf-block-fields p{font-size:13px;line-height:1.5}.acf-block-body .acf-block-fields{border:#adb2ad solid 1px}.acf-block-body .acf-block-fields .acf-tab-wrap .acf-tab-group{margin-left:0;padding:16px 20px 0}.acf-block-body .acf-fields>.acf-field{padding:16px 20px}.acf-block-body .acf-fields>.acf-field.acf-accordion{border-color:#adb2ad}.acf-block-body .acf-fields>.acf-field.acf-accordion .acf-accordion-title{padding:16px 20px}.acf-block-body .acf-button,.acf-block-body .acf-link a.button{color:#2271b1 !important;border-color:#2271b1;background:#f6f7f7;vertical-align:top}.acf-block-body .acf-button.button-primary:hover,.acf-block-body .acf-link a.button.button-primary:hover{color:#fff !important}.acf-block-body .acf-button:hover,.acf-block-body .acf-link a.button:hover{color:#0a4b78 !important}.acf-block-body .acf-block-preview{min-height:10px}.acf-block-panel .acf-block-fields{border-top:#ddd solid 1px;border-bottom:#ddd solid 1px;min-height:1px}.acf-block-panel .acf-block-fields:empty{border-top:none}.acf-block-panel .acf-block-fields .acf-tab-wrap{background:rgba(0,0,0,0)}.components-panel__body .acf-block-panel{margin:16px -16px -16px} +.acf-repeater>table{margin:0 0 8px;background:#f9f9f9}.acf-repeater>table>tbody tr.acf-divider:not(:first-child)>td{border-top:10px solid #eaecf0}.acf-repeater .acf-row-handle{width:16px;text-align:center !important;vertical-align:middle !important;position:relative}.acf-repeater .acf-row-handle .acf-order-input-wrap{width:45px}.acf-repeater .acf-row-handle .acf-order-input::-webkit-outer-spin-button,.acf-repeater .acf-row-handle .acf-order-input::-webkit-inner-spin-button{-webkit-appearance:none;margin:0}.acf-repeater .acf-row-handle .acf-order-input{-moz-appearance:textfield;text-align:center}.acf-repeater .acf-row-handle .acf-icon{display:none;position:absolute;top:0;margin:-8px 0 0 -2px}.acf-repeater .acf-row-handle .acf-icon.-minus{top:50%}body.browser-msie .acf-repeater .acf-row-handle .acf-icon.-minus{top:25px}.acf-repeater .acf-row-handle.order{background:#f4f4f4;cursor:move;color:#aaa;text-shadow:#fff 0 1px 0}.acf-repeater .acf-row-handle.order:hover{color:#666}.acf-repeater .acf-row-handle.order+td{border-left-color:#dfdfdf}.acf-repeater .acf-row-handle.pagination{cursor:auto}.acf-repeater .acf-row-handle.remove{background:#f9f9f9;border-left-color:#dfdfdf}.acf-repeater th.acf-row-handle:before{content:"";width:16px;display:block;height:1px}.acf-repeater .acf-row.acf-clone{display:none !important}.acf-repeater .acf-row:hover>.acf-row-handle .acf-icon,.acf-repeater .acf-row.-hover>.acf-row-handle .acf-icon{display:block}.acf-repeater .acf-row:hover>.acf-row-handle .acf-icon.show-on-shift,.acf-repeater .acf-row.-hover>.acf-row-handle .acf-icon.show-on-shift{display:none}body.acf-keydown-shift .acf-repeater .acf-row:hover>.acf-row-handle .acf-icon.show-on-shift,body.acf-keydown-shift .acf-repeater .acf-row.-hover>.acf-row-handle .acf-icon.show-on-shift{display:block}body.acf-keydown-shift .acf-repeater .acf-row:hover>.acf-row-handle .acf-icon.hide-on-shift,body.acf-keydown-shift .acf-repeater .acf-row.-hover>.acf-row-handle .acf-icon.hide-on-shift{display:none}.acf-repeater>table>tbody>tr.ui-sortable-helper{box-shadow:0 1px 5px rgba(0,0,0,.2)}.acf-repeater>table>tbody>tr.ui-sortable-placeholder{visibility:visible !important}.acf-repeater>table>tbody>tr.ui-sortable-placeholder td{background:#f9f9f9}.acf-repeater.-row>table>tbody>tr>td,.acf-repeater.-block>table>tbody>tr>td{border-top-color:#e1e1e1}.acf-repeater.-empty>table>thead>tr>th{border-bottom:0 none}.acf-repeater.-empty.-row>table,.acf-repeater.-empty.-block>table{display:none}.acf-repeater .acf-row.-collapsed>.acf-field{display:none !important}.acf-repeater .acf-row.-collapsed>td.acf-field.-collapsed-target{display:table-cell !important}.acf-repeater .acf-row.-collapsed>.acf-fields>*{display:none !important}.acf-repeater .acf-row.-collapsed>.acf-fields>.acf-field.-collapsed-target{display:block !important}.acf-repeater .acf-row.-collapsed>.acf-fields>.acf-field.-collapsed-target[data-width]{float:none !important;width:auto !important}.acf-repeater.-table .acf-row.-collapsed .acf-field.-collapsed-target{border-left-color:#dfdfdf}.acf-repeater.-max .acf-icon[data-event=add-row]{display:none !important}.acf-repeater>.acf-actions .acf-button{float:right;pointer-events:auto !important}.acf-repeater>.acf-actions .acf-tablenav{float:right;margin-right:20px}.acf-repeater>.acf-actions .acf-tablenav .current-page{width:auto !important}.acf-flexible-content{position:relative}.acf-flexible-content>.clones{display:none}.acf-flexible-content>.values{margin:0 0 8px}.acf-flexible-content>.values>.ui-sortable-placeholder{visibility:visible !important;border:1px dashed #b4b9be;box-shadow:none;background:rgba(0,0,0,0)}.acf-flexible-content .layout{position:relative;margin:20px 0 0;background:#fff;border:1px solid #ccd0d4}.acf-flexible-content .layout:first-child{margin-top:0}.acf-flexible-content .layout .acf-fc-layout-handle{display:block;position:relative;padding:8px 10px;cursor:move;border-bottom:#ccd0d4 solid 1px;color:#444;font-size:14px;line-height:1.4em}.acf-flexible-content .layout .acf-fc-layout-order{display:block;width:20px;height:20px;border-radius:10px;display:inline-block;text-align:center;line-height:20px;margin:0 2px 0 0;background:#f1f1f1;font-size:12px;color:#444}html[dir=rtl] .acf-flexible-content .layout .acf-fc-layout-order{float:right;margin-right:0;margin-left:5px}.acf-flexible-content .layout .acf-fc-layout-controls{position:absolute;top:8px;right:8px}.acf-flexible-content .layout .acf-fc-layout-controls .acf-icon{display:block;float:left;margin:0 0 0 5px}.acf-flexible-content .layout .acf-fc-layout-controls .acf-icon.-plus,.acf-flexible-content .layout .acf-fc-layout-controls .acf-icon.-minus,.acf-flexible-content .layout .acf-fc-layout-controls .acf-icon.-duplicate{visibility:hidden}html[dir=rtl] .acf-flexible-content .layout .acf-fc-layout-controls{right:auto;left:9px}.acf-flexible-content .layout.is-selected{border-color:#7e8993}.acf-flexible-content .layout.is-selected .acf-fc-layout-handle{border-color:#7e8993}.acf-flexible-content .layout:hover .acf-fc-layout-controls .acf-icon.-plus,.acf-flexible-content .layout:hover .acf-fc-layout-controls .acf-icon.-minus,.acf-flexible-content .layout:hover .acf-fc-layout-controls .acf-icon.-duplicate,.acf-flexible-content .layout.-hover .acf-fc-layout-controls .acf-icon.-plus,.acf-flexible-content .layout.-hover .acf-fc-layout-controls .acf-icon.-minus,.acf-flexible-content .layout.-hover .acf-fc-layout-controls .acf-icon.-duplicate{visibility:visible}.acf-flexible-content .layout.-collapsed>.acf-fc-layout-handle{border-bottom-width:0}.acf-flexible-content .layout.-collapsed>.acf-fields,.acf-flexible-content .layout.-collapsed>.acf-table{display:none}.acf-flexible-content .layout>.acf-table{border:0 none;box-shadow:none}.acf-flexible-content .layout>.acf-table>tbody>tr{background:#fff}.acf-flexible-content .layout>.acf-table>thead>tr>th{background:#f9f9f9}.acf-flexible-content .no-value-message{padding:19px;border:#ccc dashed 2px;text-align:center;display:none}.acf-flexible-content.-empty>.no-value-message{display:block}.acf-fc-popup{padding:5px 0;z-index:900001;min-width:135px}.acf-fc-popup ul,.acf-fc-popup li{list-style:none;display:block;margin:0;padding:0}.acf-fc-popup li{position:relative;float:none;white-space:nowrap}.acf-fc-popup .badge{display:inline-block;border-radius:8px;font-size:9px;line-height:15px;padding:0 5px;background:#d54e21;text-align:center;color:#fff;vertical-align:top;margin:0 0 0 5px}.acf-fc-popup a{color:#eee;padding:5px 10px;display:block;text-decoration:none;position:relative}.acf-fc-popup a:hover{background:#0073aa;color:#fff}.acf-fc-popup a.disabled{color:#888;background:rgba(0,0,0,0)}.acf-gallery{border:#ccd0d4 solid 1px;height:400px;position:relative}.acf-gallery .acf-gallery-main{position:absolute;top:0;right:0;bottom:0;left:0;background:#fff;z-index:2}.acf-gallery .acf-gallery-attachments{position:absolute;top:0;right:0;bottom:48px;left:0;padding:5px;overflow:auto;overflow-x:hidden}.acf-gallery .acf-gallery-attachment{width:25%;float:left;cursor:pointer;position:relative}.acf-gallery .acf-gallery-attachment .margin{margin:5px;border:#d5d9dd solid 1px;position:relative;overflow:hidden;background:#eee}.acf-gallery .acf-gallery-attachment .margin:before{content:"";display:block;padding-top:100%}.acf-gallery .acf-gallery-attachment .thumbnail{position:absolute;top:0;left:0;width:100%;height:100%;transform:translate(50%, 50%)}html[dir=rtl] .acf-gallery .acf-gallery-attachment .thumbnail{transform:translate(-50%, 50%)}.acf-gallery .acf-gallery-attachment .thumbnail img{display:block;height:auto;max-height:100%;width:auto;transform:translate(-50%, -50%)}html[dir=rtl] .acf-gallery .acf-gallery-attachment .thumbnail img{transform:translate(50%, -50%)}.acf-gallery .acf-gallery-attachment .filename{position:absolute;bottom:0;left:0;right:0;padding:5%;background:#f4f4f4;background:rgba(255,255,255,.8);border-top:#dfdfdf solid 1px;font-weight:bold;text-align:center;word-wrap:break-word;max-height:90%;overflow:hidden}.acf-gallery .acf-gallery-attachment .actions{position:absolute;top:0;right:0;display:none}.acf-gallery .acf-gallery-attachment:hover .actions{display:block}.acf-gallery .acf-gallery-attachment.ui-sortable-helper .margin{border:none;box-shadow:0 1px 3px rgba(0,0,0,.3)}.acf-gallery .acf-gallery-attachment.ui-sortable-placeholder .margin{background:#f1f1f1;border:none}.acf-gallery .acf-gallery-attachment.ui-sortable-placeholder .margin *{display:none !important}.acf-gallery .acf-gallery-attachment.active .margin{box-shadow:0 0 0 1px #fff,0 0 0 5px #0073aa}.acf-gallery .acf-gallery-attachment.-icon .thumbnail img{transform:translate(-50%, -70%)}html[dir=rtl] .acf-gallery .acf-gallery-attachment{float:right}.acf-gallery.sidebar-open .acf-gallery-attachment .actions{display:none}.acf-gallery.sidebar-open .acf-gallery-side{z-index:2}.acf-gallery .acf-gallery-toolbar{position:absolute;right:0;bottom:0;left:0;padding:10px;border-top:#d5d9dd solid 1px;background:#fff;min-height:28px}.acf-gallery .acf-gallery-toolbar .acf-hl li{line-height:24px}.acf-gallery .acf-gallery-toolbar .bulk-actions-select{width:auto;margin:0 1px 0 0}.acf-gallery .acf-gallery-side{position:absolute;top:0;right:0;bottom:0;width:0;background:#f9f9f9;border-left:#ccd0d4 solid 1px;z-index:1;overflow:hidden}.acf-gallery .acf-gallery-side .acf-gallery-side-inner{position:absolute;top:0;left:0;bottom:0;width:349px}.acf-gallery .acf-gallery-side-info{position:relative;width:100%;padding:10px;margin:-10px 0 15px -10px;background:#f1f1f1;border-bottom:#dfdfdf solid 1px}.acf-gallery .acf-gallery-side-info:after{display:block;clear:both;content:""}html[dir=rtl] .acf-gallery .acf-gallery-side-info{margin-left:0;margin-right:-10px}.acf-gallery .acf-gallery-side-info img{float:left;width:auto;max-width:65px;max-height:65px;margin:0 10px 1px 0;background:#fff;padding:3px;border:#ccd0d4 solid 1px;border-radius:1px}html[dir=rtl] .acf-gallery .acf-gallery-side-info img{float:right;margin:0 0 0 10px}.acf-gallery .acf-gallery-side-info p{font-size:13px;line-height:15px;margin:3px 0;word-break:break-all;color:#666}.acf-gallery .acf-gallery-side-info p strong{color:#000}.acf-gallery .acf-gallery-side-info a{text-decoration:none}.acf-gallery .acf-gallery-side-info a.acf-gallery-edit{color:#21759b}.acf-gallery .acf-gallery-side-info a.acf-gallery-remove{color:#bc0b0b}.acf-gallery .acf-gallery-side-info a:hover{text-decoration:underline}.acf-gallery .acf-gallery-side-data{position:absolute;top:0;right:0;bottom:48px;left:0;overflow:auto;overflow-x:inherit;padding:10px}.acf-gallery .acf-gallery-side-data .acf-label,.acf-gallery .acf-gallery-side-data th.label{color:#666;font-size:12px;line-height:25px;padding:0 4px 8px 0 !important;width:auto !important;vertical-align:top}html[dir=rtl] .acf-gallery .acf-gallery-side-data .acf-label,html[dir=rtl] .acf-gallery .acf-gallery-side-data th.label{padding:0 0 8px 4px !important}.acf-gallery .acf-gallery-side-data .acf-label label,.acf-gallery .acf-gallery-side-data th.label label{font-weight:normal}.acf-gallery .acf-gallery-side-data .acf-input,.acf-gallery .acf-gallery-side-data td.field{padding:0 0 8px !important}.acf-gallery .acf-gallery-side-data textarea{min-height:0;height:60px}.acf-gallery .acf-gallery-side-data p.help{font-size:12px}.acf-gallery .acf-gallery-side-data p.help:hover{font-weight:normal}.acf-gallery[data-columns="1"] .acf-gallery-attachment{width:100%}.acf-gallery[data-columns="2"] .acf-gallery-attachment{width:50%}.acf-gallery[data-columns="3"] .acf-gallery-attachment{width:33.333%}.acf-gallery[data-columns="4"] .acf-gallery-attachment{width:25%}.acf-gallery[data-columns="5"] .acf-gallery-attachment{width:20%}.acf-gallery[data-columns="6"] .acf-gallery-attachment{width:16.666%}.acf-gallery[data-columns="7"] .acf-gallery-attachment{width:14.285%}.acf-gallery[data-columns="8"] .acf-gallery-attachment{width:12.5%}.acf-gallery .ui-resizable-handle{display:block;position:absolute}.acf-gallery .ui-resizable-s{bottom:-5px;cursor:ns-resize;height:7px;left:0;width:100%}.acf-media-modal .attachment.acf-selected{box-shadow:0 0 0 3px #fff inset,0 0 0 7px #0073aa inset !important}.acf-media-modal .attachment.acf-selected .check{display:none !important}.acf-media-modal .attachment.acf-selected .thumbnail{opacity:.25 !important}.acf-media-modal .attachment.acf-selected .attachment-preview:before{background:rgba(0,0,0,.15);z-index:1;position:relative}.acf-admin-single-options-page .select2-dropdown{border-color:#6bb5d8 !important;margin-top:-5px;overflow:hidden;box-shadow:0px 1px 2px rgba(16,24,40,.1)}.acf-admin-single-options-page .select2-dropdown.select2-dropdown--above{margin-top:0}.acf-admin-single-options-page .select2-container--default .select2-results__option[aria-selected=true]{background-color:#f9fafb !important;color:#667085}.acf-admin-single-options-page .select2-container--default .select2-results__option[aria-selected=true]:hover{color:#399ccb}.acf-admin-single-options-page .select2-container--default .select2-results__option--highlighted[aria-selected]{color:#fff !important;background-color:#0783be !important}.acf-admin-single-options-page .select2-dropdown .select2-results__option{margin-bottom:0}.acf-create-options-page-popup~.select2-container{z-index:999999999}.acf-block-component .components-placeholder{margin:0}.acf-block-component .acf-block-fields{background:#fff;text-align:left;font-size:13px;line-height:1.4em;color:#444;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif}.acf-block-component .acf-block-fields.acf-empty-block-fields{border:1px solid #1e1e1e;padding:12px}.components-panel .acf-block-component .acf-block-fields.acf-empty-block-fields{border:none;border-top:1px solid #ddd;border-bottom:1px solid #ddd}html[dir=rtl] .acf-block-component .acf-block-fields{text-align:right}.acf-block-component .acf-block-fields p{font-size:13px;line-height:1.5}.acf-block-body .acf-block-fields{border:#adb2ad solid 1px}.acf-block-body .acf-block-fields .acf-tab-wrap .acf-tab-group{margin-left:0;padding:16px 20px 0}.acf-block-body .acf-fields>.acf-field{padding:16px 20px}.acf-block-body .acf-fields>.acf-field.acf-accordion{border-color:#adb2ad}.acf-block-body .acf-fields>.acf-field.acf-accordion .acf-accordion-title{padding:16px 20px}.acf-block-body .acf-button,.acf-block-body .acf-link a.button,.acf-block-body .acf-add-checkbox{color:#2271b1 !important;border-color:#2271b1 !important;background:#f6f7f7 !important;vertical-align:top}.acf-block-body .acf-button.button-primary:hover,.acf-block-body .acf-link a.button.button-primary:hover,.acf-block-body .acf-add-checkbox.button-primary:hover{color:#fff !important;background:#2271b1 !important}.acf-block-body .acf-button:focus,.acf-block-body .acf-link a.button:focus,.acf-block-body .acf-add-checkbox:focus{outline:none !important;background:#f6f7f7 !important}.acf-block-body .acf-button:hover,.acf-block-body .acf-link a.button:hover,.acf-block-body .acf-add-checkbox:hover{color:#0a4b78 !important}.acf-block-body .acf-block-preview{min-height:10px}.acf-block-panel .acf-block-fields{border-top:#ddd solid 1px;border-bottom:#ddd solid 1px;min-height:1px}.acf-block-panel .acf-block-fields:empty{border-top:none}.acf-block-panel .acf-block-fields .acf-tab-wrap{background:rgba(0,0,0,0)}.components-panel__body .acf-block-panel{margin:16px -16px -16px} diff --git a/assets/build/js/acf-escaped-html-notice.js b/assets/build/js/acf-escaped-html-notice.js new file mode 100644 index 0000000..5a2ade8 --- /dev/null +++ b/assets/build/js/acf-escaped-html-notice.js @@ -0,0 +1,39 @@ +/******/ (() => { // webpackBootstrap +var __webpack_exports__ = {}; +/*!*********************************************************************************!*\ + !*** ./src/advanced-custom-fields-pro/assets/src/js/acf-escaped-html-notice.js ***! + \*********************************************************************************/ +(function ($, undefined) { + const $notice = $('.acf-escaped-html-notice'); + $notice.on('click', '.notice-dismiss', function (e) { + const $target = $(e.target).closest('.acf-escaped-html-notice'); + let to_dismiss = 'escaped_html'; + if ($target.hasClass('acf-will-escape')) { + to_dismiss = 'to_be_escaped'; + } + $.ajax({ + url: ajaxurl, + data: { + 'action': 'acf/dismiss_escaped_html_notice', + 'nonce': acf_escaped_html_notice.nonce, + 'notice': to_dismiss + }, + type: 'post' + }); + }); + $notice.on('click', '.acf-show-more-details', function (e) { + e.preventDefault(); + const $link = $(e.target); + const $details = $link.closest('.acf-escaped-html-notice').find('.acf-error-details'); + if ($details.is(':hidden')) { + $details.slideDown(100); + $link.text(acf_escaped_html_notice.hide_details); + } else { + $details.slideUp(100); + $link.text(acf_escaped_html_notice.show_details); + } + }); +})(jQuery); +/******/ })() +; +//# sourceMappingURL=acf-escaped-html-notice.js.map \ No newline at end of file diff --git a/assets/build/js/acf-escaped-html-notice.js.map b/assets/build/js/acf-escaped-html-notice.js.map new file mode 100644 index 0000000..e4f262c --- /dev/null +++ b/assets/build/js/acf-escaped-html-notice.js.map @@ -0,0 +1 @@ +{"version":3,"file":"acf-escaped-html-notice.js","mappings":";;;;;AAAA,CAAE,UAAWA,CAAC,EAAEC,SAAS,EAAG;EAE3B,MAAMC,OAAO,GAAGF,CAAC,CAAE,0BAA2B,CAAC;EAE/CE,OAAO,CAACC,EAAE,CAAE,OAAO,EAAE,iBAAiB,EAAE,UAAUC,CAAC,EAAG;IACrD,MAAMC,OAAO,GAAGL,CAAC,CAAEI,CAAC,CAACE,MAAO,CAAC,CAACC,OAAO,CAAE,0BAA2B,CAAC;IAEnE,IAAIC,UAAU,GAAG,cAAc;IAC/B,IAAKH,OAAO,CAACI,QAAQ,CAAE,iBAAkB,CAAC,EAAG;MAC5CD,UAAU,GAAG,eAAe;IAC7B;IAEAR,CAAC,CAACU,IAAI,CAAE;MACPC,GAAG,EAAEC,OAAO;MACZC,IAAI,EAAE;QACL,QAAQ,EAAE,iCAAiC;QAC3C,OAAO,EAAEC,uBAAuB,CAACC,KAAK;QACtC,QAAQ,EAAEP;MACX,CAAC;MACDQ,IAAI,EAAE;IACP,CAAE,CAAC;EACJ,CAAE,CAAC;EAEHd,OAAO,CAACC,EAAE,CAAE,OAAO,EAAE,wBAAwB,EAAE,UAAUC,CAAC,EAAG;IAC5DA,CAAC,CAACa,cAAc,CAAC,CAAC;IAElB,MAAMC,KAAK,GAAGlB,CAAC,CAAEI,CAAC,CAACE,MAAO,CAAC;IAC3B,MAAMa,QAAQ,GAAGD,KAAK,CAACX,OAAO,CAAE,0BAA2B,CAAC,CAACa,IAAI,CAAE,oBAAqB,CAAC;IAEzF,IAAKD,QAAQ,CAACE,EAAE,CAAE,SAAU,CAAC,EAAG;MAC/BF,QAAQ,CAACG,SAAS,CAAE,GAAI,CAAC;MACzBJ,KAAK,CAACK,IAAI,CAAET,uBAAuB,CAACU,YAAa,CAAC;IACnD,CAAC,MAAM;MACNL,QAAQ,CAACM,OAAO,CAAE,GAAI,CAAC;MACvBP,KAAK,CAACK,IAAI,CAAET,uBAAuB,CAACY,YAAa,CAAC;IACnD;EACD,CAAE,CAAC;AAEJ,CAAC,EAAIC,MAAO,CAAC,C","sources":["webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/js/acf-escaped-html-notice.js"],"sourcesContent":["( function ( $, undefined ) {\n\n\tconst $notice = $( '.acf-escaped-html-notice' );\n\n\t$notice.on( 'click', '.notice-dismiss', function( e ) {\n\t\tconst $target = $( e.target ).closest( '.acf-escaped-html-notice' );\n\n\t\tlet to_dismiss = 'escaped_html';\n\t\tif ( $target.hasClass( 'acf-will-escape' ) ) {\n\t\t\tto_dismiss = 'to_be_escaped';\n\t\t}\n\n\t\t$.ajax( {\n\t\t\turl: ajaxurl,\n\t\t\tdata: {\n\t\t\t\t'action': 'acf/dismiss_escaped_html_notice',\n\t\t\t\t'nonce': acf_escaped_html_notice.nonce,\n\t\t\t\t'notice': to_dismiss,\n\t\t\t},\n\t\t\ttype: 'post'\n\t\t} );\n\t} );\n\n\t$notice.on( 'click', '.acf-show-more-details', function( e ) {\n\t\te.preventDefault();\n\n\t\tconst $link = $( e.target );\n\t\tconst $details = $link.closest( '.acf-escaped-html-notice' ).find( '.acf-error-details' );\n\n\t\tif ( $details.is( ':hidden' ) ) {\n\t\t\t$details.slideDown( 100 );\n\t\t\t$link.text( acf_escaped_html_notice.hide_details );\n\t\t} else {\n\t\t\t$details.slideUp( 100 );\n\t\t\t$link.text( acf_escaped_html_notice.show_details );\n\t\t}\n\t} );\n\n} )( jQuery );\n"],"names":["$","undefined","$notice","on","e","$target","target","closest","to_dismiss","hasClass","ajax","url","ajaxurl","data","acf_escaped_html_notice","nonce","type","preventDefault","$link","$details","find","is","slideDown","text","hide_details","slideUp","show_details","jQuery"],"sourceRoot":""} \ No newline at end of file diff --git a/assets/build/js/acf-escaped-html-notice.min.js b/assets/build/js/acf-escaped-html-notice.min.js new file mode 100644 index 0000000..2c0c157 --- /dev/null +++ b/assets/build/js/acf-escaped-html-notice.min.js @@ -0,0 +1 @@ +!function(e,t){const c=e(".acf-escaped-html-notice");c.on("click",".notice-dismiss",(function(t){let c="escaped_html";e(t.target).closest(".acf-escaped-html-notice").hasClass("acf-will-escape")&&(c="to_be_escaped"),e.ajax({url:ajaxurl,data:{action:"acf/dismiss_escaped_html_notice",nonce:acf_escaped_html_notice.nonce,notice:c},type:"post"})})),c.on("click",".acf-show-more-details",(function(t){t.preventDefault();const c=e(t.target),a=c.closest(".acf-escaped-html-notice").find(".acf-error-details");a.is(":hidden")?(a.slideDown(100),c.text(acf_escaped_html_notice.hide_details)):(a.slideUp(100),c.text(acf_escaped_html_notice.show_details))}))}(jQuery); \ No newline at end of file diff --git a/assets/build/js/acf-field-group.js b/assets/build/js/acf-field-group.js index c2d349a..b28c667 100644 --- a/assets/build/js/acf-field-group.js +++ b/assets/build/js/acf-field-group.js @@ -928,7 +928,6 @@ function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = // The menu order //menu_order: 0 }, - setup: function ($field) { // set $el this.$el = $field; @@ -1407,6 +1406,10 @@ function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = onChangeName: function (e, $el) { // set var name = $el.val(); + + // strip any invalid characters. + name = name.replace(/[^A-Za-zŽžÀ-ÿ0-9_-]+/g, '-'); + $el.val(name); this.set('name', name); // error @@ -3035,19 +3038,19 @@ function _defineProperty(obj, key, value) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { -/* harmony export */ "default": () => (/* binding */ _toPrimitive) +/* harmony export */ "default": () => (/* binding */ toPrimitive) /* harmony export */ }); /* harmony import */ var _typeof_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./typeof.js */ "./node_modules/@babel/runtime/helpers/esm/typeof.js"); -function _toPrimitive(input, hint) { - if ((0,_typeof_js__WEBPACK_IMPORTED_MODULE_0__["default"])(input) !== "object" || input === null) return input; - var prim = input[Symbol.toPrimitive]; - if (prim !== undefined) { - var res = prim.call(input, hint || "default"); - if ((0,_typeof_js__WEBPACK_IMPORTED_MODULE_0__["default"])(res) !== "object") return res; +function toPrimitive(t, r) { + if ("object" != (0,_typeof_js__WEBPACK_IMPORTED_MODULE_0__["default"])(t) || !t) return t; + var e = t[Symbol.toPrimitive]; + if (void 0 !== e) { + var i = e.call(t, r || "default"); + if ("object" != (0,_typeof_js__WEBPACK_IMPORTED_MODULE_0__["default"])(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } - return (hint === "string" ? String : Number)(input); + return ("string" === r ? String : Number)(t); } /***/ }), @@ -3061,15 +3064,15 @@ function _toPrimitive(input, hint) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { -/* harmony export */ "default": () => (/* binding */ _toPropertyKey) +/* harmony export */ "default": () => (/* binding */ toPropertyKey) /* harmony export */ }); /* harmony import */ var _typeof_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./typeof.js */ "./node_modules/@babel/runtime/helpers/esm/typeof.js"); /* harmony import */ var _toPrimitive_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./toPrimitive.js */ "./node_modules/@babel/runtime/helpers/esm/toPrimitive.js"); -function _toPropertyKey(arg) { - var key = (0,_toPrimitive_js__WEBPACK_IMPORTED_MODULE_1__["default"])(arg, "string"); - return (0,_typeof_js__WEBPACK_IMPORTED_MODULE_0__["default"])(key) === "symbol" ? key : String(key); +function toPropertyKey(t) { + var i = (0,_toPrimitive_js__WEBPACK_IMPORTED_MODULE_1__["default"])(t, "string"); + return "symbol" == (0,_typeof_js__WEBPACK_IMPORTED_MODULE_0__["default"])(i) ? i : String(i); } /***/ }), diff --git a/assets/build/js/acf-field-group.js.map b/assets/build/js/acf-field-group.js.map index bfb1b35..e0089e2 100644 --- a/assets/build/js/acf-field-group.js.map +++ b/assets/build/js/acf-field-group.js.map @@ -1 +1 @@ -{"version":3,"file":"acf-field-group.js","mappings":"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","sources":["webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/js/_browse-fields-modal.js","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/js/_field-group-compatibility.js","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/js/_field-group-conditions.js","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/js/_field-group-field.js","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/js/_field-group-fields.js","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/js/_field-group-locations.js","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/js/_field-group-settings.js","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/js/_field-group.js","webpack://advanced-custom-fields-pro/./node_modules/@babel/runtime/helpers/esm/defineProperty.js","webpack://advanced-custom-fields-pro/./node_modules/@babel/runtime/helpers/esm/toPrimitive.js","webpack://advanced-custom-fields-pro/./node_modules/@babel/runtime/helpers/esm/toPropertyKey.js","webpack://advanced-custom-fields-pro/./node_modules/@babel/runtime/helpers/esm/typeof.js","webpack://advanced-custom-fields-pro/webpack/bootstrap","webpack://advanced-custom-fields-pro/webpack/runtime/compat get default export","webpack://advanced-custom-fields-pro/webpack/runtime/define property getters","webpack://advanced-custom-fields-pro/webpack/runtime/hasOwnProperty shorthand","webpack://advanced-custom-fields-pro/webpack/runtime/make namespace object","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/js/acf-field-group.js"],"sourcesContent":["/**\n * Extends acf.models.Modal to create the field browser.\n *\n * @package Advanced Custom Fields\n */\n\n( function ( $, undefined, acf ) {\n\tconst browseFieldsModal = {\n\t\tdata: {\n\t\t\topenedBy: null,\n\t\t\tcurrentFieldType: null,\n\t\t\tpopularFieldTypes: [\n\t\t\t\t'text',\n\t\t\t\t'textarea',\n\t\t\t\t'email',\n\t\t\t\t'url',\n\t\t\t\t'file',\n\t\t\t\t'gallery',\n\t\t\t\t'select',\n\t\t\t\t'true_false',\n\t\t\t\t'link',\n\t\t\t\t'post_object',\n\t\t\t\t'relationship',\n\t\t\t\t'repeater',\n\t\t\t\t'flexible_content',\n\t\t\t\t'clone',\n\t\t\t],\n\t\t},\n\n\t\tevents: {\n\t\t\t'click .acf-modal-close': 'onClickClose',\n\t\t\t'keydown .acf-browse-fields-modal': 'onPressEscapeClose',\n\t\t\t'click .acf-select-field': 'onClickSelectField',\n\t\t\t'click .acf-field-type': 'onClickFieldType',\n\t\t\t'changed:currentFieldType': 'onChangeFieldType',\n\t\t\t'input .acf-search-field-types': 'onSearchFieldTypes',\n\t\t\t'click .acf-browse-popular-fields': 'onClickBrowsePopular',\n\t\t},\n\n\t\tsetup: function ( props ) {\n\t\t\t$.extend( this.data, props );\n\t\t\tthis.$el = $( this.tmpl() );\n\t\t\tthis.render();\n\t\t},\n\n\t\tinitialize: function () {\n\t\t\tthis.open();\n\t\t\tthis.lockFocusToModal( true );\n\t\t\tthis.$el.find( '.acf-modal-title' ).focus();\n\t\t\tacf.doAction( 'show', this.$el );\n\t\t},\n\n\t\ttmpl: function () {\n\t\t\treturn $( '#tmpl-acf-browse-fields-modal' ).html();\n\t\t},\n\n\t\tgetFieldTypes: function ( category, search ) {\n\t\t\tlet fieldTypes;\n\t\t\tif ( ! acf.get( 'is_pro' ) ) {\n\t\t\t\t// Add in the pro fields.\n\t\t\t\tfieldTypes = Object.values( {\n\t\t\t\t\t...acf.get( 'fieldTypes' ),\n\t\t\t\t\t...acf.get( 'PROFieldTypes' ),\n\t\t\t\t} );\n\t\t\t} else {\n\t\t\t\tfieldTypes = Object.values( acf.get( 'fieldTypes' ) );\n\t\t\t}\n\n\t\t\tif ( category ) {\n\t\t\t\tif ( 'popular' === category ) {\n\t\t\t\t\treturn fieldTypes.filter( ( fieldType ) =>\n\t\t\t\t\t\tthis.get( 'popularFieldTypes' ).includes(\n\t\t\t\t\t\t\tfieldType.name\n\t\t\t\t\t\t)\n\t\t\t\t\t);\n\t\t\t\t}\n\n\t\t\t\tif ( 'pro' === category ) {\n\t\t\t\t\treturn fieldTypes.filter( ( fieldType ) => fieldType.pro );\n\t\t\t\t}\n\n\t\t\t\tfieldTypes = fieldTypes.filter(\n\t\t\t\t\t( fieldType ) => fieldType.category === category\n\t\t\t\t);\n\t\t\t}\n\n\t\t\tif ( search ) {\n\t\t\t\tfieldTypes = fieldTypes.filter( ( fieldType ) => {\n\t\t\t\t\tconst label = fieldType.label.toLowerCase();\n\t\t\t\t\tconst labelParts = label.split( ' ' );\n\t\t\t\t\tlet match = false;\n\n\t\t\t\t\tif ( label.startsWith( search.toLowerCase() ) ) {\n\t\t\t\t\t\tmatch = true;\n\t\t\t\t\t} else if ( labelParts.length > 1 ) {\n\t\t\t\t\t\tlabelParts.forEach( ( part ) => {\n\t\t\t\t\t\t\tif ( part.startsWith( search.toLowerCase() ) ) {\n\t\t\t\t\t\t\t\tmatch = true;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t} );\n\t\t\t\t\t}\n\n\t\t\t\t\treturn match;\n\t\t\t\t} );\n\t\t\t}\n\n\t\t\treturn fieldTypes;\n\t\t},\n\n\t\trender: function () {\n\t\t\tacf.doAction( 'append', this.$el );\n\n\t\t\tconst $tabs = this.$el.find( '.acf-field-types-tab' );\n\t\t\tconst self = this;\n\n\t\t\t$tabs.each( function () {\n\t\t\t\tconst category = $( this ).data( 'category' );\n\t\t\t\tconst fieldTypes = self.getFieldTypes( category );\n\t\t\t\tfieldTypes.forEach( ( fieldType ) => {\n\t\t\t\t\t$( this ).append( self.getFieldTypeHTML( fieldType ) );\n\t\t\t\t} );\n\t\t\t} );\n\n\t\t\tthis.initializeFieldLabel();\n\t\t\tthis.initializeFieldType();\n\t\t\tthis.onChangeFieldType();\n\t\t},\n\n\t\tgetFieldTypeHTML: function ( fieldType ) {\n\t\t\tconst iconName = fieldType.name.replaceAll( '_', '-' );\n\n\t\t\treturn `\n\t\t\t\n\t\t\t\t${\n\t\t\t\t\tfieldType.pro && ! acf.get( 'is_pro' )\n\t\t\t\t\t\t? 'PRO'\n\t\t\t\t\t\t: fieldType.pro\n\t\t\t\t\t\t? 'PRO'\n\t\t\t\t\t\t: ''\n\t\t\t\t}\n\t\t\t\t\n\t\t\t\t${ fieldType.label }\n\t\t\t\n\t\t\t`;\n\t\t},\n\n\t\tdecodeFieldTypeURL: function ( url ) {\n\t\t\tif ( typeof url != 'string' ) return url;\n\t\t\treturn url.replaceAll( '&', '&' );\n\t\t},\n\n\t\trenderFieldTypeDesc: function ( fieldType ) {\n\t\t\tconst fieldTypeInfo =\n\t\t\t\tthis.getFieldTypes().filter(\n\t\t\t\t\t( fieldTypeFilter ) => fieldTypeFilter.name === fieldType\n\t\t\t\t)[ 0 ] || {};\n\n\t\t\tconst args = acf.parseArgs( fieldTypeInfo, {\n\t\t\t\tlabel: '',\n\t\t\t\tdescription: '',\n\t\t\t\tdoc_url: false,\n\t\t\t\ttutorial_url: false,\n\t\t\t\tpreview_image: false,\n\t\t\t\tpro: false,\n\t\t\t} );\n\n\t\t\tthis.$el.find( '.field-type-name' ).text( args.label );\n\t\t\tthis.$el.find( '.field-type-desc' ).text( args.description );\n\n\t\t\tif ( args.doc_url ) {\n\t\t\t\tthis.$el\n\t\t\t\t\t.find( '.field-type-doc' )\n\t\t\t\t\t.attr( 'href', this.decodeFieldTypeURL( args.doc_url ) )\n\t\t\t\t\t.show();\n\t\t\t} else {\n\t\t\t\tthis.$el.find( '.field-type-doc' ).hide();\n\t\t\t}\n\n\t\t\tif ( args.tutorial_url ) {\n\t\t\t\tthis.$el\n\t\t\t\t\t.find( '.field-type-tutorial' )\n\t\t\t\t\t.attr(\n\t\t\t\t\t\t'href',\n\t\t\t\t\t\tthis.decodeFieldTypeURL( args.tutorial_url )\n\t\t\t\t\t)\n\t\t\t\t\t.parent()\n\t\t\t\t\t.show();\n\t\t\t} else {\n\t\t\t\tthis.$el.find( '.field-type-tutorial' ).parent().hide();\n\t\t\t}\n\n\t\t\tif ( args.preview_image ) {\n\t\t\t\tthis.$el\n\t\t\t\t\t.find( '.field-type-image' )\n\t\t\t\t\t.attr( 'src', args.preview_image )\n\t\t\t\t\t.show();\n\t\t\t} else {\n\t\t\t\tthis.$el.find( '.field-type-image' ).hide();\n\t\t\t}\n\n\t\t\tconst isPro = acf.get( 'is_pro' );\n\t\t\tconst $upgateToProButton = this.$el.find( '.acf-btn-pro' );\n\t\t\tconst $upgradeToUnlockButton = this.$el.find(\n\t\t\t\t'.field-type-upgrade-to-unlock'\n\t\t\t);\n\n\t\t\tif ( args.pro && ! isPro ) {\n\t\t\t\t$upgateToProButton.show();\n\t\t\t\t$upgateToProButton.attr(\n\t\t\t\t\t'href',\n\t\t\t\t\t$upgateToProButton.data( 'urlBase' ) + fieldType\n\t\t\t\t);\n\n\t\t\t\t$upgradeToUnlockButton.show();\n\t\t\t\t$upgradeToUnlockButton.attr(\n\t\t\t\t\t'href',\n\t\t\t\t\t$upgradeToUnlockButton.data( 'urlBase' ) + fieldType\n\t\t\t\t);\n\t\t\t\tthis.$el\n\t\t\t\t\t.find( '.acf-insert-field-label' )\n\t\t\t\t\t.attr( 'disabled', true );\n\t\t\t\tthis.$el.find( '.acf-select-field' ).hide();\n\t\t\t} else {\n\t\t\t\t$upgateToProButton.hide();\n\t\t\t\t$upgradeToUnlockButton.hide();\n\t\t\t\tthis.$el\n\t\t\t\t\t.find( '.acf-insert-field-label' )\n\t\t\t\t\t.attr( 'disabled', false );\n\t\t\t\tthis.$el.find( '.acf-select-field' ).show();\n\t\t\t}\n\t\t},\n\n\t\tinitializeFieldType: function () {\n\t\t\tconst fieldObject = this.get( 'openedBy' );\n\t\t\tconst fieldType = fieldObject?.data?.type;\n\n\t\t\t// Select default field type\n\t\t\tif ( fieldType ) {\n\t\t\t\tthis.set( 'currentFieldType', fieldType );\n\t\t\t} else {\n\t\t\t\tthis.set( 'currentFieldType', 'text' );\n\t\t\t}\n\n\t\t\t// Select first tab with selected field type\n\t\t\t// If type selected is wthin Popular, select Popular Tab\n\t\t\t// Else select first tab the type belongs\n\t\t\tconst fieldTypes = this.getFieldTypes();\n\t\t\tconst isFieldTypePopular =\n\t\t\t\tthis.get( 'popularFieldTypes' ).includes( fieldType );\n\n\t\t\tlet category = '';\n\t\t\tif ( isFieldTypePopular ) {\n\t\t\t\tcategory = 'popular';\n\t\t\t} else {\n\t\t\t\tconst selectedFieldType = fieldTypes.find( ( x ) => {\n\t\t\t\t\treturn x.name === fieldType;\n\t\t\t\t} );\n\n\t\t\t\tcategory = selectedFieldType.category;\n\t\t\t}\n\n\t\t\tconst uppercaseCategory =\n\t\t\t\tcategory[ 0 ].toUpperCase() + category.slice( 1 );\n\t\t\tconst searchTabElement = `.acf-modal-content .acf-tab-wrap a:contains('${ uppercaseCategory }')`;\n\t\t\tsetTimeout( () => {\n\t\t\t\t$( searchTabElement ).click();\n\t\t\t}, 0 );\n\t\t},\n\n\t\tinitializeFieldLabel: function () {\n\t\t\tconst fieldObject = this.get( 'openedBy' );\n\t\t\tconst labelText = fieldObject.$fieldLabel().val();\n\t\t\tconst $fieldLabel = this.$el.find( '.acf-insert-field-label' );\n\t\t\tif ( labelText ) {\n\t\t\t\t$fieldLabel.val( labelText );\n\t\t\t} else {\n\t\t\t\t$fieldLabel.val( '' );\n\t\t\t}\n\t\t},\n\n\t\tupdateFieldObjectFieldLabel: function () {\n\t\t\tconst label = this.$el.find( '.acf-insert-field-label' ).val();\n\t\t\tconst fieldObject = this.get( 'openedBy' );\n\t\t\tfieldObject.$fieldLabel().val( label );\n\t\t\tfieldObject.$fieldLabel().trigger( 'blur' );\n\t\t},\n\n\t\tonChangeFieldType: function () {\n\t\t\tconst fieldType = this.get( 'currentFieldType' );\n\n\t\t\tthis.$el.find( '.selected' ).removeClass( 'selected' );\n\t\t\tthis.$el\n\t\t\t\t.find( '.acf-field-type[data-field-type=\"' + fieldType + '\"]' )\n\t\t\t\t.addClass( 'selected' );\n\n\t\t\tthis.renderFieldTypeDesc( fieldType );\n\t\t},\n\n\t\tonSearchFieldTypes: function ( e ) {\n\t\t\tconst $modal = this.$el.find( '.acf-browse-fields-modal' );\n\t\t\tconst inputVal = this.$el.find( '.acf-search-field-types' ).val();\n\t\t\tconst self = this;\n\t\t\tlet searchString,\n\t\t\t\tresultsHtml = '';\n\t\t\tlet matches = [];\n\n\t\t\tif ( 'string' === typeof inputVal ) {\n\t\t\t\tsearchString = inputVal.trim();\n\t\t\t\tmatches = this.getFieldTypes( false, searchString );\n\t\t\t}\n\n\t\t\tif ( searchString.length && matches.length ) {\n\t\t\t\t$modal.addClass( 'is-searching' );\n\t\t\t} else {\n\t\t\t\t$modal.removeClass( 'is-searching' );\n\t\t\t}\n\n\t\t\tif ( ! matches.length ) {\n\t\t\t\t$modal.addClass( 'no-results-found' );\n\t\t\t\tthis.$el\n\t\t\t\t\t.find( '.acf-invalid-search-term' )\n\t\t\t\t\t.text( searchString );\n\t\t\t\treturn;\n\t\t\t} else {\n\t\t\t\t$modal.removeClass( 'no-results-found' );\n\t\t\t}\n\n\t\t\tmatches.forEach( ( fieldType ) => {\n\t\t\t\tresultsHtml = resultsHtml + self.getFieldTypeHTML( fieldType );\n\t\t\t} );\n\n\t\t\t$( '.acf-field-type-search-results' ).html( resultsHtml );\n\n\t\t\tthis.set( 'currentFieldType', matches[ 0 ].name );\n\t\t\tthis.onChangeFieldType();\n\t\t},\n\n\t\tonClickBrowsePopular: function () {\n\t\t\tthis.$el\n\t\t\t\t.find( '.acf-search-field-types' )\n\t\t\t\t.val( '' )\n\t\t\t\t.trigger( 'input' );\n\t\t\tthis.$el.find( '.acf-tab-wrap a' ).first().trigger( 'click' );\n\t\t},\n\n\t\tonClickSelectField: function ( e ) {\n\t\t\tconst fieldObject = this.get( 'openedBy' );\n\n\t\t\tfieldObject\n\t\t\t\t.$fieldTypeSelect()\n\t\t\t\t.val( this.get( 'currentFieldType' ) );\n\t\t\tfieldObject.$fieldTypeSelect().trigger( 'change' );\n\n\t\t\tthis.updateFieldObjectFieldLabel();\n\n\t\t\tthis.close();\n\t\t},\n\n\t\tonClickFieldType: function ( e ) {\n\t\t\tconst $fieldType = $( e.currentTarget );\n\t\t\tthis.set( 'currentFieldType', $fieldType.data( 'field-type' ) );\n\t\t},\n\n\t\tonClickClose: function () {\n\t\t\tthis.close();\n\t\t},\n\n\t\tonPressEscapeClose: function ( e ) {\n\t\t\tif ( e.key === 'Escape' ) {\n\t\t\t\tthis.close();\n\t\t\t}\n\t\t},\n\n\t\tclose: function () {\n\t\t\tthis.lockFocusToModal( false );\n\t\t\tthis.returnFocusToOrigin();\n\t\t\tthis.remove();\n\t\t},\n\n\t\tfocus: function () {\n\t\t\tthis.$el.find( 'button' ).first().trigger( 'focus' );\n\t\t},\n\t};\n\n\tacf.models.browseFieldsModal = acf.models.Modal.extend( browseFieldsModal );\n\tacf.newBrowseFieldsModal = ( props ) =>\n\t\tnew acf.models.browseFieldsModal( props );\n} )( window.jQuery, undefined, window.acf );\n","( function ( $, undefined ) {\n\tvar _acf = acf.getCompatibility( acf );\n\n\t/**\n\t * fieldGroupCompatibility\n\t *\n\t * Compatibility layer for extinct acf.field_group\n\t *\n\t * @date\t15/12/17\n\t * @since\t5.7.0\n\t *\n\t * @param\tvoid\n\t * @return\tvoid\n\t */\n\n\t_acf.field_group = {\n\t\tsave_field: function ( $field, type ) {\n\t\t\ttype = type !== undefined ? type : 'settings';\n\t\t\tacf.getFieldObject( $field ).save( type );\n\t\t},\n\n\t\tdelete_field: function ( $field, animate ) {\n\t\t\tanimate = animate !== undefined ? animate : true;\n\t\t\tacf.getFieldObject( $field ).delete( {\n\t\t\t\tanimate: animate,\n\t\t\t} );\n\t\t},\n\n\t\tupdate_field_meta: function ( $field, name, value ) {\n\t\t\tacf.getFieldObject( $field ).prop( name, value );\n\t\t},\n\n\t\tdelete_field_meta: function ( $field, name ) {\n\t\t\tacf.getFieldObject( $field ).prop( name, null );\n\t\t},\n\t};\n\n\t/**\n\t * fieldGroupCompatibility.field_object\n\t *\n\t * Compatibility layer for extinct acf.field_group.field_object\n\t *\n\t * @date\t15/12/17\n\t * @since\t5.7.0\n\t *\n\t * @param\tvoid\n\t * @return\tvoid\n\t */\n\n\t_acf.field_group.field_object = acf.model.extend( {\n\t\t// vars\n\t\ttype: '',\n\t\to: {},\n\t\t$field: null,\n\t\t$settings: null,\n\n\t\ttag: function ( tag ) {\n\t\t\t// vars\n\t\t\tvar type = this.type;\n\n\t\t\t// explode, add 'field' and implode\n\t\t\t// - open \t\t\t=> open_field\n\t\t\t// - change_type\t=> change_field_type\n\t\t\tvar tags = tag.split( '_' );\n\t\t\ttags.splice( 1, 0, 'field' );\n\t\t\ttag = tags.join( '_' );\n\n\t\t\t// add type\n\t\t\tif ( type ) {\n\t\t\t\ttag += '/type=' + type;\n\t\t\t}\n\n\t\t\t// return\n\t\t\treturn tag;\n\t\t},\n\n\t\tselector: function () {\n\t\t\t// vars\n\t\t\tvar selector = '.acf-field-object';\n\t\t\tvar type = this.type;\n\n\t\t\t// add type\n\t\t\tif ( type ) {\n\t\t\t\tselector += '-' + type;\n\t\t\t\tselector = acf.str_replace( '_', '-', selector );\n\t\t\t}\n\n\t\t\t// return\n\t\t\treturn selector;\n\t\t},\n\n\t\t_add_action: function ( name, callback ) {\n\t\t\t// vars\n\t\t\tvar model = this;\n\n\t\t\t// add action\n\t\t\tacf.add_action( this.tag( name ), function ( $field ) {\n\t\t\t\t// focus\n\t\t\t\tmodel.set( '$field', $field );\n\n\t\t\t\t// callback\n\t\t\t\tmodel[ callback ].apply( model, arguments );\n\t\t\t} );\n\t\t},\n\n\t\t_add_filter: function ( name, callback ) {\n\t\t\t// vars\n\t\t\tvar model = this;\n\n\t\t\t// add action\n\t\t\tacf.add_filter( this.tag( name ), function ( $field ) {\n\t\t\t\t// focus\n\t\t\t\tmodel.set( '$field', $field );\n\n\t\t\t\t// callback\n\t\t\t\tmodel[ callback ].apply( model, arguments );\n\t\t\t} );\n\t\t},\n\n\t\t_add_event: function ( name, callback ) {\n\t\t\t// vars\n\t\t\tvar model = this;\n\t\t\tvar event = name.substr( 0, name.indexOf( ' ' ) );\n\t\t\tvar selector = name.substr( name.indexOf( ' ' ) + 1 );\n\t\t\tvar context = this.selector();\n\n\t\t\t// add event\n\t\t\t$( document ).on( event, context + ' ' + selector, function ( e ) {\n\t\t\t\t// append $el to event object\n\t\t\t\te.$el = $( this );\n\t\t\t\te.$field = e.$el.closest( '.acf-field-object' );\n\n\t\t\t\t// focus\n\t\t\t\tmodel.set( '$field', e.$field );\n\n\t\t\t\t// callback\n\t\t\t\tmodel[ callback ].apply( model, [ e ] );\n\t\t\t} );\n\t\t},\n\n\t\t_set_$field: function () {\n\t\t\t// vars\n\t\t\tthis.o = this.$field.data();\n\n\t\t\t// els\n\t\t\tthis.$settings = this.$field.find( '> .settings > table > tbody' );\n\n\t\t\t// focus\n\t\t\tthis.focus();\n\t\t},\n\n\t\tfocus: function () {\n\t\t\t// do nothing\n\t\t},\n\n\t\tsetting: function ( name ) {\n\t\t\treturn this.$settings.find( '> .acf-field-setting-' + name );\n\t\t},\n\t} );\n\n\t/*\n\t * field\n\t *\n\t * This model fires actions and filters for registered fields\n\t *\n\t * @type\tfunction\n\t * @date\t21/02/2014\n\t * @since\t3.5.1\n\t *\n\t * @param\tn/a\n\t * @return\tn/a\n\t */\n\n\tvar actionManager = new acf.Model( {\n\t\tactions: {\n\t\t\topen_field_object: 'onOpenFieldObject',\n\t\t\tclose_field_object: 'onCloseFieldObject',\n\t\t\tadd_field_object: 'onAddFieldObject',\n\t\t\tduplicate_field_object: 'onDuplicateFieldObject',\n\t\t\tdelete_field_object: 'onDeleteFieldObject',\n\t\t\tchange_field_object_type: 'onChangeFieldObjectType',\n\t\t\tchange_field_object_label: 'onChangeFieldObjectLabel',\n\t\t\tchange_field_object_name: 'onChangeFieldObjectName',\n\t\t\tchange_field_object_parent: 'onChangeFieldObjectParent',\n\t\t\tsortstop_field_object: 'onChangeFieldObjectParent',\n\t\t},\n\n\t\tonOpenFieldObject: function ( field ) {\n\t\t\tacf.doAction( 'open_field', field.$el );\n\t\t\tacf.doAction( 'open_field/type=' + field.get( 'type' ), field.$el );\n\n\t\t\tacf.doAction( 'render_field_settings', field.$el );\n\t\t\tacf.doAction(\n\t\t\t\t'render_field_settings/type=' + field.get( 'type' ),\n\t\t\t\tfield.$el\n\t\t\t);\n\t\t},\n\n\t\tonCloseFieldObject: function ( field ) {\n\t\t\tacf.doAction( 'close_field', field.$el );\n\t\t\tacf.doAction(\n\t\t\t\t'close_field/type=' + field.get( 'type' ),\n\t\t\t\tfield.$el\n\t\t\t);\n\t\t},\n\n\t\tonAddFieldObject: function ( field ) {\n\t\t\tacf.doAction( 'add_field', field.$el );\n\t\t\tacf.doAction( 'add_field/type=' + field.get( 'type' ), field.$el );\n\t\t},\n\n\t\tonDuplicateFieldObject: function ( field ) {\n\t\t\tacf.doAction( 'duplicate_field', field.$el );\n\t\t\tacf.doAction(\n\t\t\t\t'duplicate_field/type=' + field.get( 'type' ),\n\t\t\t\tfield.$el\n\t\t\t);\n\t\t},\n\n\t\tonDeleteFieldObject: function ( field ) {\n\t\t\tacf.doAction( 'delete_field', field.$el );\n\t\t\tacf.doAction(\n\t\t\t\t'delete_field/type=' + field.get( 'type' ),\n\t\t\t\tfield.$el\n\t\t\t);\n\t\t},\n\n\t\tonChangeFieldObjectType: function ( field ) {\n\t\t\tacf.doAction( 'change_field_type', field.$el );\n\t\t\tacf.doAction(\n\t\t\t\t'change_field_type/type=' + field.get( 'type' ),\n\t\t\t\tfield.$el\n\t\t\t);\n\n\t\t\tacf.doAction( 'render_field_settings', field.$el );\n\t\t\tacf.doAction(\n\t\t\t\t'render_field_settings/type=' + field.get( 'type' ),\n\t\t\t\tfield.$el\n\t\t\t);\n\t\t},\n\n\t\tonChangeFieldObjectLabel: function ( field ) {\n\t\t\tacf.doAction( 'change_field_label', field.$el );\n\t\t\tacf.doAction(\n\t\t\t\t'change_field_label/type=' + field.get( 'type' ),\n\t\t\t\tfield.$el\n\t\t\t);\n\t\t},\n\n\t\tonChangeFieldObjectName: function ( field ) {\n\t\t\tacf.doAction( 'change_field_name', field.$el );\n\t\t\tacf.doAction(\n\t\t\t\t'change_field_name/type=' + field.get( 'type' ),\n\t\t\t\tfield.$el\n\t\t\t);\n\t\t},\n\n\t\tonChangeFieldObjectParent: function ( field ) {\n\t\t\tacf.doAction( 'update_field_parent', field.$el );\n\t\t},\n\t} );\n} )( jQuery );\n","( function ( $, undefined ) {\n\t/**\n\t * ConditionalLogicFieldSetting\n\t *\n\t * description\n\t *\n\t * @date\t3/2/18\n\t * @since\t5.6.5\n\t *\n\t * @param\ttype $var Description. Default.\n\t * @return\ttype Description.\n\t */\n\n\tvar ConditionalLogicFieldSetting = acf.FieldSetting.extend( {\n\t\ttype: '',\n\t\tname: 'conditional_logic',\n\t\tevents: {\n\t\t\t'change .conditions-toggle': 'onChangeToggle',\n\t\t\t'click .add-conditional-group': 'onClickAddGroup',\n\t\t\t'focus .condition-rule-field': 'onFocusField',\n\t\t\t'change .condition-rule-field': 'onChangeField',\n\t\t\t'change .condition-rule-operator': 'onChangeOperator',\n\t\t\t'click .add-conditional-rule': 'onClickAdd',\n\t\t\t'click .remove-conditional-rule': 'onClickRemove',\n\t\t},\n\n\t\t$rule: false,\n\n\t\tscope: function ( $rule ) {\n\t\t\tthis.$rule = $rule;\n\t\t\treturn this;\n\t\t},\n\n\t\truleData: function ( name, value ) {\n\t\t\treturn this.$rule.data.apply( this.$rule, arguments );\n\t\t},\n\n\t\t$input: function ( name ) {\n\t\t\treturn this.$rule.find( '.condition-rule-' + name );\n\t\t},\n\n\t\t$td: function ( name ) {\n\t\t\treturn this.$rule.find( 'td.' + name );\n\t\t},\n\n\t\t$toggle: function () {\n\t\t\treturn this.$( '.conditions-toggle' );\n\t\t},\n\n\t\t$control: function () {\n\t\t\treturn this.$( '.rule-groups' );\n\t\t},\n\n\t\t$groups: function () {\n\t\t\treturn this.$( '.rule-group' );\n\t\t},\n\n\t\t$rules: function () {\n\t\t\treturn this.$( '.rule' );\n\t\t},\n\n\t\t$tabLabel: function () {\n\t\t\treturn this.fieldObject.$el.find('.conditional-logic-badge');\n\t\t},\n\n\t\topen: function () {\n\t\t\tvar $div = this.$control();\n\t\t\t$div.show();\n\t\t\tacf.enable( $div );\n\t\t},\n\n\t\tclose: function () {\n\t\t\tvar $div = this.$control();\n\t\t\t$div.hide();\n\t\t\tacf.disable( $div );\n\t\t},\n\n\t\trender: function () {\n\t\t\t// show\n\t\t\tif ( this.$toggle().prop( 'checked' ) ) {\n\t\t\t\tthis.$tabLabel().addClass('is-enabled');\n\t\t\t\tthis.renderRules();\n\t\t\t\tthis.open();\n\n\t\t\t\t// hide\n\t\t\t} else {\n\t\t\t\tthis.$tabLabel().removeClass('is-enabled');\n\t\t\t\tthis.close();\n\t\t\t}\n\t\t},\n\n\t\trenderRules: function () {\n\t\t\t// vars\n\t\t\tvar self = this;\n\n\t\t\t// loop\n\t\t\tthis.$rules().each( function () {\n\t\t\t\tself.renderRule( $( this ) );\n\t\t\t} );\n\t\t},\n\n\t\trenderRule: function ( $rule ) {\n\t\t\tthis.scope( $rule );\n\t\t\tthis.renderField();\n\t\t\tthis.renderOperator();\n\t\t\tthis.renderValue();\n\t\t},\n\n\t\trenderField: function () {\n\t\t\t// vars\n\t\t\tvar choices = [];\n\t\t\tvar validFieldTypes = [];\n\t\t\tvar cid = this.fieldObject.cid;\n\t\t\tvar $select = this.$input( 'field' );\n\n\t\t\t// loop\n\t\t\tacf.getFieldObjects().map( function ( fieldObject ) {\n\t\t\t\t// vars\n\t\t\t\tvar choice = {\n\t\t\t\t\tid: fieldObject.getKey(),\n\t\t\t\t\ttext: fieldObject.getLabel(),\n\t\t\t\t};\n\n\t\t\t\t// bail early if is self\n\t\t\t\tif ( fieldObject.cid === cid ) {\n\t\t\t\t\tchoice.text += ' ' + acf.__( '(this field)' );\n\t\t\t\t\tchoice.disabled = true;\n\t\t\t\t}\n\n\t\t\t\t// get selected field conditions\n\t\t\t\tvar conditionTypes = acf.getConditionTypes( {\n\t\t\t\t\tfieldType: fieldObject.getType(),\n\t\t\t\t} );\n\n\t\t\t\t// bail early if no types\n\t\t\t\tif ( ! conditionTypes.length ) {\n\t\t\t\t\tchoice.disabled = true;\n\t\t\t\t}\n\n\t\t\t\t// calulate indents\n\t\t\t\tvar indents = fieldObject.getParents().length;\n\t\t\t\tchoice.text = '- '.repeat( indents ) + choice.text;\n\n\t\t\t\t// append\n\t\t\t\tchoices.push( choice );\n\t\t\t} );\n\n\t\t\t// allow for scenario where only one field exists\n\t\t\tif ( ! choices.length ) {\n\t\t\t\tchoices.push( {\n\t\t\t\t\tid: '',\n\t\t\t\t\ttext: acf.__( 'No toggle fields available' ),\n\t\t\t\t} );\n\t\t\t}\n\n\t\t\t// render\n\t\t\tacf.renderSelect( $select, choices );\n\n\t\t\t// set\n\t\t\tthis.ruleData( 'field', $select.val() );\n\t\t},\n\n\t\trenderOperator: function () {\n\t\t\t// bail early if no field selected\n\t\t\tif ( ! this.ruleData( 'field' ) ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// vars\n\t\t\tvar $select = this.$input( 'operator' );\n\t\t\tvar val = $select.val();\n\t\t\tvar choices = [];\n\n\t\t\t// set saved value on first render\n\t\t\t// - this allows the 2nd render to correctly select an option\n\t\t\tif ( $select.val() === null ) {\n\t\t\t\tacf.renderSelect( $select, [\n\t\t\t\t\t{\n\t\t\t\t\t\tid: this.ruleData( 'operator' ),\n\t\t\t\t\t\ttext: '',\n\t\t\t\t\t},\n\t\t\t\t] );\n\t\t\t}\n\n\t\t\t// get selected field\n\t\t\tvar $field = acf.findFieldObject( this.ruleData( 'field' ) );\n\t\t\tvar field = acf.getFieldObject( $field );\n\n\t\t\t// get selected field conditions\n\t\t\tvar conditionTypes = acf.getConditionTypes( {\n\t\t\t\tfieldType: field.getType(),\n\t\t\t} );\n\n\t\t\t// html\n\t\t\tconditionTypes.map( function ( model ) {\n\t\t\t\tchoices.push( {\n\t\t\t\t\tid: model.prototype.operator,\n\t\t\t\t\ttext: model.prototype.label,\n\t\t\t\t} );\n\t\t\t} );\n\n\t\t\t// render\n\t\t\tacf.renderSelect( $select, choices );\n\n\t\t\t// set\n\t\t\tthis.ruleData( 'operator', $select.val() );\n\t\t},\n\n\t\trenderValue: function () {\n\t\t\t// bail early if no field selected\n\t\t\tif ( ! this.ruleData( 'field' ) || ! this.ruleData( 'operator' ) ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// vars\n\t\t\tvar $select = this.$input( 'value' );\n\t\t\tvar $td = this.$td( 'value' );\n\t\t\tvar val = $select.val();\n\n\t\t\t// get selected field\n\t\t\tvar $field = acf.findFieldObject( this.ruleData( 'field' ) );\n\t\t\tvar field = acf.getFieldObject( $field );\n\n\t\t\t// get selected field conditions\n\t\t\tvar conditionTypes = acf.getConditionTypes( {\n\t\t\t\tfieldType: field.getType(),\n\t\t\t\toperator: this.ruleData( 'operator' ),\n\t\t\t} );\n\n\t\t\t// html\n\t\t\tvar conditionType = conditionTypes[ 0 ].prototype;\n\t\t\tvar choices = conditionType.choices( field );\n\n\t\t\t// create html: array\n\t\t\tif ( choices instanceof Array ) {\n\t\t\t\tvar $newSelect = $( '' );\n\t\t\t\tacf.renderSelect( $newSelect, choices );\n\n\t\t\t\t// create html: string ()\n\t\t\t} else {\n\t\t\t\tvar $newSelect = $( choices );\n\t\t\t}\n\n\t\t\t// append\n\t\t\t$select.detach();\n\t\t\t$td.html( $newSelect );\n\n\t\t\t// copy attrs\n\t\t\t// timeout needed to avoid browser bug where \"disabled\" attribute is not applied\n\t\t\tsetTimeout( function () {\n\t\t\t\t[ 'class', 'name', 'id' ].map( function ( attr ) {\n\t\t\t\t\t$newSelect.attr( attr, $select.attr( attr ) );\n\t\t\t\t} );\n\t\t\t}, 0 );\n\n\t\t\t// select existing value (if not a disabled input)\n\t\t\tif ( ! $newSelect.prop( 'disabled' ) ) {\n\t\t\t\tacf.val( $newSelect, val, true );\n\t\t\t}\n\n\t\t\t// set\n\t\t\tthis.ruleData( 'value', $newSelect.val() );\n\t\t},\n\n\t\tonChangeToggle: function () {\n\t\t\tthis.render();\n\t\t},\n\n\t\tonClickAddGroup: function ( e, $el ) {\n\t\t\tthis.addGroup();\n\t\t},\n\n\t\taddGroup: function () {\n\t\t\t// vars\n\t\t\tvar $group = this.$( '.rule-group:last' );\n\n\t\t\t// duplicate\n\t\t\tvar $group2 = acf.duplicate( $group );\n\n\t\t\t// update h4\n\t\t\t$group2.find( 'h4' ).text( acf.__( 'or' ) );\n\n\t\t\t// remove all tr's except the first one\n\t\t\t$group2.find( 'tr' ).not( ':first' ).remove();\n\n\t\t\t// save field\n\t\t\tthis.fieldObject.save();\n\t\t},\n\n\t\tonFocusField: function ( e, $el ) {\n\t\t\tthis.renderField();\n\t\t},\n\n\t\tonChangeField: function ( e, $el ) {\n\t\t\t// scope\n\t\t\tthis.scope( $el.closest( '.rule' ) );\n\n\t\t\t// set data\n\t\t\tthis.ruleData( 'field', $el.val() );\n\n\t\t\t// render\n\t\t\tthis.renderOperator();\n\t\t\tthis.renderValue();\n\t\t},\n\n\t\tonChangeOperator: function ( e, $el ) {\n\t\t\t// scope\n\t\t\tthis.scope( $el.closest( '.rule' ) );\n\n\t\t\t// set data\n\t\t\tthis.ruleData( 'operator', $el.val() );\n\n\t\t\t// render\n\t\t\tthis.renderValue();\n\t\t},\n\n\t\tonClickAdd: function ( e, $el ) {\n\t\t\t// duplciate\n\t\t\tvar $rule = acf.duplicate( $el.closest( '.rule' ) );\n\n\t\t\t// render\n\t\t\tthis.renderRule( $rule );\n\t\t},\n\n\t\tonClickRemove: function ( e, $el ) {\n\t\t\t// vars\n\t\t\tvar $rule = $el.closest( '.rule' );\n\n\t\t\t// save field\n\t\t\tthis.fieldObject.save();\n\n\t\t\t// remove group\n\t\t\tif ( $rule.siblings( '.rule' ).length == 0 ) {\n\t\t\t\t$rule.closest( '.rule-group' ).remove();\n\t\t\t}\n\n\t\t\t// remove\n\t\t\t$rule.remove();\n\t\t},\n\t} );\n\n\tacf.registerFieldSetting( ConditionalLogicFieldSetting );\n\n\t/**\n\t * conditionalLogicHelper\n\t *\n\t * description\n\t *\n\t * @date\t20/4/18\n\t * @since\t5.6.9\n\t *\n\t * @param\ttype $var Description. Default.\n\t * @return\ttype Description.\n\t */\n\n\tvar conditionalLogicHelper = new acf.Model( {\n\t\tactions: {\n\t\t\tduplicate_field_objects: 'onDuplicateFieldObjects',\n\t\t},\n\n\t\tonDuplicateFieldObjects: function ( children, newField, prevField ) {\n\t\t\t// vars\n\t\t\tvar data = {};\n\t\t\tvar $selects = $();\n\n\t\t\t// reference change in key\n\t\t\tchildren.map( function ( child ) {\n\t\t\t\t// store reference of changed key\n\t\t\t\tdata[ child.get( 'prevKey' ) ] = child.get( 'key' );\n\n\t\t\t\t// append condition select\n\t\t\t\t$selects = $selects.add( child.$( '.condition-rule-field' ) );\n\t\t\t} );\n\n\t\t\t// loop\n\t\t\t$selects.each( function () {\n\t\t\t\t// vars\n\t\t\t\tvar $select = $( this );\n\t\t\t\tvar val = $select.val();\n\n\t\t\t\t// bail early if val is not a ref key\n\t\t\t\tif ( ! val || ! data[ val ] ) {\n\t\t\t\t\treturn;\n\t\t\t\t}\n\n\t\t\t\t// modify selected option\n\t\t\t\t$select.find( 'option:selected' ).attr( 'value', data[ val ] );\n\n\t\t\t\t// set new val\n\t\t\t\t$select.val( data[ val ] );\n\t\t\t} );\n\t\t},\n\t} );\n} )( jQuery );\n","( function ( $, undefined ) {\n\tacf.FieldObject = acf.Model.extend( {\n\t\t// class used to avoid nested event triggers\n\t\teventScope: '.acf-field-object',\n\n\t\t// variable for field type select2\n\t\tfieldTypeSelect2: false,\n\n\t\t// events\n\t\tevents: {\n\t\t\t'click .copyable': 'onClickCopy',\n\t\t\t'click .handle': 'onClickEdit',\n\t\t\t'click .close-field': 'onClickEdit',\n\t\t\t'click a[data-key=\"acf_field_settings_tabs\"]':\n\t\t\t\t'onChangeSettingsTab',\n\t\t\t'click .delete-field': 'onClickDelete',\n\t\t\t'click .duplicate-field': 'duplicate',\n\t\t\t'click .move-field': 'move',\n\t\t\t'click .browse-fields': 'browseFields',\n\n\t\t\t'focus .edit-field': 'onFocusEdit',\n\t\t\t'blur .edit-field, .row-options a': 'onBlurEdit',\n\n\t\t\t'change .field-type': 'onChangeType',\n\t\t\t'change .field-required': 'onChangeRequired',\n\t\t\t'blur .field-label': 'onChangeLabel',\n\t\t\t'blur .field-name': 'onChangeName',\n\n\t\t\tchange: 'onChange',\n\t\t\tchanged: 'onChanged',\n\t\t},\n\n\t\t// data\n\t\tdata: {\n\t\t\t// Similar to ID, but used for HTML puposes.\n\t\t\t// It is possbile for a new field to have an ID of 0, but an id of 'field_123' */\n\t\t\tid: 0,\n\n\t\t\t// The field key ('field_123')\n\t\t\tkey: '',\n\n\t\t\t// The field type (text, image, etc)\n\t\t\ttype: '',\n\n\t\t\t// The $post->ID of this field\n\t\t\t//ID: 0,\n\n\t\t\t// The field's parent\n\t\t\t//parent: 0,\n\n\t\t\t// The menu order\n\t\t\t//menu_order: 0\n\t\t},\n\n\t\tsetup: function ( $field ) {\n\t\t\t// set $el\n\t\t\tthis.$el = $field;\n\n\t\t\t// inherit $field data (id, key, type)\n\t\t\tthis.inherit( $field );\n\n\t\t\t// load additional props\n\t\t\t// - this won't trigger 'changed'\n\t\t\tthis.prop( 'ID' );\n\t\t\tthis.prop( 'parent' );\n\t\t\tthis.prop( 'menu_order' );\n\t\t},\n\n\t\t$input: function ( name ) {\n\t\t\treturn $( '#' + this.getInputId() + '-' + name );\n\t\t},\n\n\t\t$meta: function () {\n\t\t\treturn this.$( '.meta:first' );\n\t\t},\n\n\t\t$handle: function () {\n\t\t\treturn this.$( '.handle:first' );\n\t\t},\n\n\t\t$settings: function () {\n\t\t\treturn this.$( '.settings:first' );\n\t\t},\n\n\t\t$setting: function ( name ) {\n\t\t\treturn this.$(\n\t\t\t\t'.acf-field-settings:first .acf-field-setting-' + name\n\t\t\t);\n\t\t},\n\n\t\t$fieldTypeSelect: function () {\n\t\t\treturn this.$( '.field-type' );\n\t\t},\n\n\t\t$fieldLabel: function () {\n\t\t\treturn this.$( '.field-label' );\n\t\t},\n\n\t\tgetParent: function () {\n\t\t\treturn acf.getFieldObjects( { child: this.$el, limit: 1 } ).pop();\n\t\t},\n\n\t\tgetParents: function () {\n\t\t\treturn acf.getFieldObjects( { child: this.$el } );\n\t\t},\n\n\t\tgetFields: function () {\n\t\t\treturn acf.getFieldObjects( { parent: this.$el } );\n\t\t},\n\n\t\tgetInputName: function () {\n\t\t\treturn 'acf_fields[' + this.get( 'id' ) + ']';\n\t\t},\n\n\t\tgetInputId: function () {\n\t\t\treturn 'acf_fields-' + this.get( 'id' );\n\t\t},\n\n\t\tnewInput: function ( name, value ) {\n\t\t\t// vars\n\t\t\tvar inputId = this.getInputId();\n\t\t\tvar inputName = this.getInputName();\n\n\t\t\t// append name\n\t\t\tif ( name ) {\n\t\t\t\tinputId += '-' + name;\n\t\t\t\tinputName += '[' + name + ']';\n\t\t\t}\n\n\t\t\t// create input (avoid HTML + JSON value issues)\n\t\t\tvar $input = $( '' ).attr( {\n\t\t\t\tid: inputId,\n\t\t\t\tname: inputName,\n\t\t\t\tvalue: value,\n\t\t\t} );\n\t\t\tthis.$( '> .meta' ).append( $input );\n\n\t\t\t// return\n\t\t\treturn $input;\n\t\t},\n\n\t\tgetProp: function ( name ) {\n\t\t\t// check data\n\t\t\tif ( this.has( name ) ) {\n\t\t\t\treturn this.get( name );\n\t\t\t}\n\n\t\t\t// get input value\n\t\t\tvar $input = this.$input( name );\n\t\t\tvar value = $input.length ? $input.val() : null;\n\n\t\t\t// set data silently (cache)\n\t\t\tthis.set( name, value, true );\n\n\t\t\t// return\n\t\t\treturn value;\n\t\t},\n\n\t\tsetProp: function ( name, value ) {\n\t\t\t// get input\n\t\t\tvar $input = this.$input( name );\n\t\t\tvar prevVal = $input.val();\n\n\t\t\t// create if new\n\t\t\tif ( ! $input.length ) {\n\t\t\t\t$input = this.newInput( name, value );\n\t\t\t}\n\n\t\t\t// remove\n\t\t\tif ( value === null ) {\n\t\t\t\t$input.remove();\n\n\t\t\t\t// update\n\t\t\t} else {\n\t\t\t\t$input.val( value );\n\t\t\t}\n\n\t\t\t//console.log('setProp', name, value, this);\n\n\t\t\t// set data silently (cache)\n\t\t\tif ( ! this.has( name ) ) {\n\t\t\t\t//console.log('setting silently');\n\t\t\t\tthis.set( name, value, true );\n\n\t\t\t\t// set data allowing 'change' event to fire\n\t\t\t} else {\n\t\t\t\t//console.log('setting loudly!');\n\t\t\t\tthis.set( name, value );\n\t\t\t}\n\n\t\t\t// return\n\t\t\treturn this;\n\t\t},\n\n\t\tprop: function ( name, value ) {\n\t\t\tif ( value !== undefined ) {\n\t\t\t\treturn this.setProp( name, value );\n\t\t\t} else {\n\t\t\t\treturn this.getProp( name );\n\t\t\t}\n\t\t},\n\n\t\tprops: function ( props ) {\n\t\t\tObject.keys( props ).map( function ( key ) {\n\t\t\t\tthis.setProp( key, props[ key ] );\n\t\t\t}, this );\n\t\t},\n\n\t\tgetLabel: function () {\n\t\t\t// get label with empty default\n\t\t\tvar label = this.prop( 'label' );\n\t\t\tif ( label === '' ) {\n\t\t\t\tlabel = acf.__( '(no label)' );\n\t\t\t}\n\n\t\t\t// return\n\t\t\treturn label;\n\t\t},\n\n\t\tgetName: function () {\n\t\t\treturn this.prop( 'name' );\n\t\t},\n\n\t\tgetType: function () {\n\t\t\treturn this.prop( 'type' );\n\t\t},\n\n\t\tgetTypeLabel: function () {\n\t\t\tvar type = this.prop( 'type' );\n\t\t\tvar types = acf.get( 'fieldTypes' );\n\t\t\treturn types[ type ] ? types[ type ].label : type;\n\t\t},\n\n\t\tgetKey: function () {\n\t\t\treturn this.prop( 'key' );\n\t\t},\n\n\t\tinitialize: function () {\n\t\t\tthis.checkCopyable();\n\t\t},\n\n\t\tmakeCopyable: function ( text ) {\n\t\t\tif ( ! navigator.clipboard )\n\t\t\t\treturn (\n\t\t\t\t\t'' +\n\t\t\t\t\ttext +\n\t\t\t\t\t''\n\t\t\t\t);\n\t\t\treturn '' + text + '';\n\t\t},\n\n\t\tcheckCopyable: function () {\n\t\t\tif ( ! navigator.clipboard ) {\n\t\t\t\tthis.$el.find( '.copyable' ).addClass( 'copy-unsupported' );\n\t\t\t}\n\t\t},\n\n\t\tinitializeFieldTypeSelect2: function () {\n\t\t\tif ( this.fieldTypeSelect2 ) return;\n\n\t\t\t// Support disabling via filter.\n\t\t\tif ( this.$fieldTypeSelect().hasClass( 'disable-select2' ) ) return;\n\n\t\t\t// Check for a full modern version of select2, bail loading if not found with a console warning.\n\t\t\ttry {\n\t\t\t\t$.fn.select2.amd.require( 'select2/compat/dropdownCss' );\n\t\t\t} catch ( err ) {\n\t\t\t\tconsole.warn(\n\t\t\t\t\t'ACF was not able to load the full version of select2 due to a conflicting version provided by another plugin or theme taking precedence. Select2 fields may not work as expected.'\n\t\t\t\t);\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tthis.fieldTypeSelect2 = acf.newSelect2( this.$fieldTypeSelect(), {\n\t\t\t\tfield: false,\n\t\t\t\tajax: false,\n\t\t\t\tmultiple: false,\n\t\t\t\tallowNull: false,\n\t\t\t\tsuppressFilters: true,\n\t\t\t\tdropdownCssClass: 'field-type-select-results',\n\t\t\t\ttemplateResult: function ( selection ) {\n\t\t\t\t\tif (\n\t\t\t\t\t\tselection.loading ||\n\t\t\t\t\t\t( selection.element &&\n\t\t\t\t\t\t\tselection.element.nodeName === 'OPTGROUP' )\n\t\t\t\t\t) {\n\t\t\t\t\t\tvar $selection = $(\n\t\t\t\t\t\t\t''\n\t\t\t\t\t\t);\n\t\t\t\t\t\t$selection.html( acf.escHtml( selection.text ) );\n\t\t\t\t\t} else {\n\t\t\t\t\t\tvar $selection = $(\n\t\t\t\t\t\t\t'' +\n\t\t\t\t\t\t\t\tacf.escHtml( selection.text ) +\n\t\t\t\t\t\t\t\t''\n\t\t\t\t\t\t);\n\t\t\t\t\t}\n\t\t\t\t\t$selection.data( 'element', selection.element );\n\t\t\t\t\treturn $selection;\n\t\t\t\t},\n\t\t\t\ttemplateSelection: function ( selection ) {\n\t\t\t\t\tvar $selection = $(\n\t\t\t\t\t\t'' +\n\t\t\t\t\t\t\tacf.escHtml( selection.text ) +\n\t\t\t\t\t\t\t''\n\t\t\t\t\t);\n\t\t\t\t\t$selection.data( 'element', selection.element );\n\t\t\t\t\treturn $selection;\n\t\t\t\t},\n\t\t\t} );\n\n\t\t\tthis.fieldTypeSelect2.on( 'select2:open', function () {\n\t\t\t\t$(\n\t\t\t\t\t'.field-type-select-results input.select2-search__field'\n\t\t\t\t).attr( 'placeholder', acf.__( 'Type to search...' ) );\n\t\t\t} );\n\n\t\t\tthis.fieldTypeSelect2.on( 'change', function ( e ) {\n\t\t\t\t$( e.target )\n\t\t\t\t\t.parents( 'ul:first' )\n\t\t\t\t\t.find( 'button.browse-fields' )\n\t\t\t\t\t.prop( 'disabled', true );\n\t\t\t} );\n\n\t\t\t// When typing happens on the li element above the select2.\n\t\t\tthis.fieldTypeSelect2.$el\n\t\t\t\t.parent()\n\t\t\t\t.on(\n\t\t\t\t\t'keydown',\n\t\t\t\t\t'.select2-selection.select2-selection--single',\n\t\t\t\t\tthis.onKeyDownSelect\n\t\t\t\t);\n\t\t},\n\t\taddProFields: function () {\n\t\t\t// Make sure we're only running this on free version.\n\t\t\tif ( acf.get( 'is_pro' ) ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// Make sure we haven't appended these fields before.\n\t\t\tvar $fieldTypeSelect = this.$fieldTypeSelect();\n\t\t\tif ( $fieldTypeSelect.hasClass( 'acf-free-field-type' ) ) return;\n\n\t\t\t// Loop over each pro field type and append it to the select.\n\t\t\tconst PROFieldTypes = acf.get( 'PROFieldTypes' );\n\t\t\tif ( typeof PROFieldTypes !== 'object' ) return;\n\n\t\t\tconst $layoutGroup = $fieldTypeSelect\n\t\t\t\t.find( 'optgroup option[value=\"group\"]' )\n\t\t\t\t.parent();\n\n\t\t\tconst $contentGroup = $fieldTypeSelect\n\t\t\t\t.find( 'optgroup option[value=\"image\"]' )\n\t\t\t\t.parent();\n\n\t\t\tfor ( const [ name, field ] of Object.entries( PROFieldTypes ) ) {\n\t\t\t\tconst $useGroup =\n\t\t\t\t\tfield.category === 'content' ? $contentGroup : $layoutGroup;\n\t\t\t\t$useGroup.append(\n\t\t\t\t\t''\n\t\t\t\t);\n\t\t\t}\n\n\t\t\t$fieldTypeSelect.addClass( 'acf-free-field-type' );\n\t\t},\n\n\t\trender: function () {\n\t\t\t// vars\n\t\t\tvar $handle = this.$( '.handle:first' );\n\t\t\tvar menu_order = this.prop( 'menu_order' );\n\t\t\tvar label = this.getLabel();\n\t\t\tvar name = this.prop( 'name' );\n\t\t\tvar type = this.getTypeLabel();\n\t\t\tvar key = this.prop( 'key' );\n\t\t\tvar required = this.$input( 'required' ).prop( 'checked' );\n\n\t\t\t// update menu order\n\t\t\t$handle.find( '.acf-icon' ).html( parseInt( menu_order ) + 1 );\n\n\t\t\t// update required\n\t\t\tif ( required ) {\n\t\t\t\tlabel += ' *';\n\t\t\t}\n\n\t\t\t// update label\n\t\t\t$handle.find( '.li-field-label strong a' ).html( label );\n\n\t\t\t// update name\n\t\t\t$handle.find( '.li-field-name' ).html( this.makeCopyable( name ) );\n\n\t\t\t// update type\n\t\t\tconst iconName = acf.strSlugify( this.getType() );\n\t\t\t$handle.find( '.field-type-label' ).text( ' ' + type );\n\t\t\t$handle\n\t\t\t\t.find( '.field-type-icon' )\n\t\t\t\t.removeClass()\n\t\t\t\t.addClass( 'field-type-icon field-type-icon-' + iconName );\n\n\t\t\t// update key\n\t\t\t$handle.find( '.li-field-key' ).html( this.makeCopyable( key ) );\n\n\t\t\t// action for 3rd party customization\n\t\t\tacf.doAction( 'render_field_object', this );\n\t\t},\n\n\t\trefresh: function () {\n\t\t\tacf.doAction( 'refresh_field_object', this );\n\t\t},\n\n\t\tisOpen: function () {\n\t\t\treturn this.$el.hasClass( 'open' );\n\t\t},\n\n\t\tonClickCopy: function ( e ) {\n\t\t\te.stopPropagation();\n\t\t\tif ( ! navigator.clipboard || $( e.target ).is( 'input' ) ) return;\n\n\t\t\t// Find the value to copy depending on input or text elements.\n\t\t\tlet copyValue;\n\t\t\tif ( $( e.target ).hasClass( 'acf-input-wrap' ) ) {\n\t\t\t\tcopyValue = $( e.target ).find( 'input' ).first().val();\n\t\t\t} else {\n\t\t\t\tcopyValue = $( e.target ).text();\n\t\t\t}\n\n\t\t\tnavigator.clipboard.writeText( copyValue ).then( () => {\n\t\t\t\t$( e.target ).closest( '.copyable' ).addClass( 'copied' );\n\t\t\t\tsetTimeout( function () {\n\t\t\t\t\t$( e.target )\n\t\t\t\t\t\t.closest( '.copyable' )\n\t\t\t\t\t\t.removeClass( 'copied' );\n\t\t\t\t}, 2000 );\n\t\t\t} );\n\t\t},\n\n\t\tonClickEdit: function ( e ) {\n\t\t\t$target = $( e.target );\n\t\t\tif (\n\t\t\t\t$target.parent().hasClass( 'row-options' ) &&\n\t\t\t\t! $target.hasClass( 'edit-field' )\n\t\t\t)\n\t\t\t\treturn;\n\t\t\tthis.isOpen() ? this.close() : this.open();\n\t\t},\n\n\t\tonChangeSettingsTab: function () {\n\t\t\tconst $settings = this.$el.children( '.settings' );\n\t\t\tacf.doAction( 'show', $settings );\n\t\t},\n\n\t\t/**\n\t\t * Adds 'active' class to row options nearest to the target.\n\t\t */\n\t\tonFocusEdit: function ( e ) {\n\t\t\tvar $rowOptions = $( e.target )\n\t\t\t\t.closest( 'li' )\n\t\t\t\t.find( '.row-options' );\n\t\t\t$rowOptions.addClass( 'active' );\n\t\t},\n\n\t\t/**\n\t\t * Removes 'active' class from row options if links in same row options area are no longer in focus.\n\t\t */\n\t\tonBlurEdit: function ( e ) {\n\t\t\tvar focusDelayMilliseconds = 50;\n\t\t\tvar $rowOptionsBlurElement = $( e.target )\n\t\t\t\t.closest( 'li' )\n\t\t\t\t.find( '.row-options' );\n\n\t\t\t// Timeout so that `activeElement` gives the new element in focus instead of the body.\n\t\t\tsetTimeout( function () {\n\t\t\t\tvar $rowOptionsFocusElement = $( document.activeElement )\n\t\t\t\t\t.closest( 'li' )\n\t\t\t\t\t.find( '.row-options' );\n\t\t\t\tif ( ! $rowOptionsBlurElement.is( $rowOptionsFocusElement ) ) {\n\t\t\t\t\t$rowOptionsBlurElement.removeClass( 'active' );\n\t\t\t\t}\n\t\t\t}, focusDelayMilliseconds );\n\t\t},\n\n\t\topen: function () {\n\t\t\t// vars\n\t\t\tvar $settings = this.$el.children( '.settings' );\n\n\t\t\t// initialise field type select\n\t\t\tthis.addProFields();\n\t\t\tthis.initializeFieldTypeSelect2();\n\n\t\t\t// action (open)\n\t\t\tacf.doAction( 'open_field_object', this );\n\t\t\tthis.trigger( 'openFieldObject' );\n\n\t\t\t// action (show)\n\t\t\tacf.doAction( 'show', $settings );\n\n\t\t\tthis.hideEmptyTabs();\n\n\t\t\t// open\n\t\t\t$settings.slideDown();\n\t\t\tthis.$el.addClass( 'open' );\n\t\t},\n\n\t\tonKeyDownSelect: function ( e ) {\n\t\t\t// Omit events from special keys.\n\t\t\tif (\n\t\t\t\t! (\n\t\t\t\t\t( e.which >= 186 && e.which <= 222 ) || // punctuation and special characters\n\t\t\t\t\t[\n\t\t\t\t\t\t8, 9, 13, 16, 17, 18, 19, 20, 27, 32, 33, 34, 35, 36,\n\t\t\t\t\t\t37, 38, 39, 40, 45, 46, 91, 92, 93, 144, 145,\n\t\t\t\t\t].includes( e.which ) || // Special keys\n\t\t\t\t\t( e.which >= 112 && e.which <= 123 )\n\t\t\t\t)\n\t\t\t) {\n\t\t\t\t// Function keys\n\t\t\t\t$( this )\n\t\t\t\t\t.closest( '.select2-container' )\n\t\t\t\t\t.siblings( 'select:enabled' )\n\t\t\t\t\t.select2( 'open' );\n\t\t\t\treturn;\n\t\t\t}\n\t\t},\n\n\t\tclose: function () {\n\t\t\t// vars\n\t\t\tvar $settings = this.$el.children( '.settings' );\n\n\t\t\t// close\n\t\t\t$settings.slideUp();\n\t\t\tthis.$el.removeClass( 'open' );\n\n\t\t\t// action (close)\n\t\t\tacf.doAction( 'close_field_object', this );\n\t\t\tthis.trigger( 'closeFieldObject' );\n\n\t\t\t// action (hide)\n\t\t\tacf.doAction( 'hide', $settings );\n\t\t},\n\n\t\tserialize: function () {\n\t\t\treturn acf.serialize( this.$el, this.getInputName() );\n\t\t},\n\n\t\tsave: function ( type ) {\n\t\t\t// defaults\n\t\t\ttype = type || 'settings'; // meta, settings\n\n\t\t\t// vars\n\t\t\tvar save = this.getProp( 'save' );\n\n\t\t\t// bail if already saving settings\n\t\t\tif ( save === 'settings' ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// prop\n\t\t\tthis.setProp( 'save', type );\n\n\t\t\t// debug\n\t\t\tthis.$el.attr( 'data-save', type );\n\n\t\t\t// action\n\t\t\tacf.doAction( 'save_field_object', this, type );\n\t\t},\n\n\t\tsubmit: function () {\n\t\t\t// vars\n\t\t\tvar inputName = this.getInputName();\n\t\t\tvar save = this.get( 'save' );\n\n\t\t\t// close\n\t\t\tif ( this.isOpen() ) {\n\t\t\t\tthis.close();\n\t\t\t}\n\n\t\t\t// allow all inputs to save\n\t\t\tif ( save == 'settings' ) {\n\t\t\t\t// do nothing\n\t\t\t\t// allow only meta inputs to save\n\t\t\t} else if ( save == 'meta' ) {\n\t\t\t\tthis.$( '> .settings [name^=\"' + inputName + '\"]' ).remove();\n\n\t\t\t\t// prevent all inputs from saving\n\t\t\t} else {\n\t\t\t\tthis.$( '[name^=\"' + inputName + '\"]' ).remove();\n\t\t\t}\n\n\t\t\t// action\n\t\t\tacf.doAction( 'submit_field_object', this );\n\t\t},\n\n\t\tonChange: function ( e, $el ) {\n\t\t\t// save settings\n\t\t\tthis.save();\n\n\t\t\t// action for 3rd party customization\n\t\t\tacf.doAction( 'change_field_object', this );\n\t\t},\n\n\t\tonChanged: function ( e, $el, name, value ) {\n\t\t\tif ( this.getType() === $el.attr( 'data-type' ) ) {\n\t\t\t\t$( 'button.acf-btn.browse-fields' ).prop( 'disabled', false );\n\t\t\t}\n\n\t\t\t// ignore 'save'\n\t\t\tif ( name == 'save' ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// save meta\n\t\t\tif ( [ 'menu_order', 'parent' ].indexOf( name ) > -1 ) {\n\t\t\t\tthis.save( 'meta' );\n\n\t\t\t\t// save field\n\t\t\t} else {\n\t\t\t\tthis.save();\n\t\t\t}\n\n\t\t\t// render\n\t\t\tif (\n\t\t\t\t[\n\t\t\t\t\t'menu_order',\n\t\t\t\t\t'label',\n\t\t\t\t\t'required',\n\t\t\t\t\t'name',\n\t\t\t\t\t'type',\n\t\t\t\t\t'key',\n\t\t\t\t].indexOf( name ) > -1\n\t\t\t) {\n\t\t\t\tthis.render();\n\t\t\t}\n\n\t\t\t// action for 3rd party customization\n\t\t\tacf.doAction( 'change_field_object_' + name, this, value );\n\t\t},\n\n\t\tonChangeLabel: function ( e, $el ) {\n\t\t\t// set\n\t\t\tvar label = $el.val();\n\t\t\tthis.set( 'label', label );\n\n\t\t\t// render name\n\t\t\tif ( this.prop( 'name' ) == '' ) {\n\t\t\t\tvar name = acf.applyFilters(\n\t\t\t\t\t'generate_field_object_name',\n\t\t\t\t\tacf.strSanitize( label ),\n\t\t\t\t\tthis\n\t\t\t\t);\n\t\t\t\tthis.prop( 'name', name );\n\t\t\t}\n\t\t},\n\n\t\tonChangeName: function ( e, $el ) {\n\t\t\t// set\n\t\t\tvar name = $el.val();\n\t\t\tthis.set( 'name', name );\n\n\t\t\t// error\n\t\t\tif ( name.substr( 0, 6 ) === 'field_' ) {\n\t\t\t\talert(\n\t\t\t\t\tacf.__(\n\t\t\t\t\t\t'The string \"field_\" may not be used at the start of a field name'\n\t\t\t\t\t)\n\t\t\t\t);\n\t\t\t}\n\t\t},\n\n\t\tonChangeRequired: function ( e, $el ) {\n\t\t\t// set\n\t\t\tvar required = $el.prop( 'checked' ) ? 1 : 0;\n\t\t\tthis.set( 'required', required );\n\t\t},\n\n\t\tdelete: function ( args ) {\n\t\t\t// defaults\n\t\t\targs = acf.parseArgs( args, {\n\t\t\t\tanimate: true,\n\t\t\t} );\n\n\t\t\t// add to remove list\n\t\t\tvar id = this.prop( 'ID' );\n\n\t\t\tif ( id ) {\n\t\t\t\tvar $input = $( '#_acf_delete_fields' );\n\t\t\t\tvar newVal = $input.val() + '|' + id;\n\t\t\t\t$input.val( newVal );\n\t\t\t}\n\n\t\t\t// action\n\t\t\tacf.doAction( 'delete_field_object', this );\n\n\t\t\t// animate\n\t\t\tif ( args.animate ) {\n\t\t\t\tthis.removeAnimate();\n\t\t\t} else {\n\t\t\t\tthis.remove();\n\t\t\t}\n\t\t},\n\n\t\tonClickDelete: function ( e, $el ) {\n\t\t\t// Bypass confirmation when holding down \"shift\" key.\n\t\t\tif ( e.shiftKey ) {\n\t\t\t\treturn this.delete();\n\t\t\t}\n\n\t\t\t// add class\n\t\t\tthis.$el.addClass( '-hover' );\n\n\t\t\t// add tooltip\n\t\t\tvar tooltip = acf.newTooltip( {\n\t\t\t\tconfirmRemove: true,\n\t\t\t\ttarget: $el,\n\t\t\t\tcontext: this,\n\t\t\t\tconfirm: function () {\n\t\t\t\t\tthis.delete();\n\t\t\t\t},\n\t\t\t\tcancel: function () {\n\t\t\t\t\tthis.$el.removeClass( '-hover' );\n\t\t\t\t},\n\t\t\t} );\n\t\t},\n\n\t\tremoveAnimate: function () {\n\t\t\t// vars\n\t\t\tvar field = this;\n\t\t\tvar $list = this.$el.parent();\n\t\t\tvar $fields = acf.findFieldObjects( {\n\t\t\t\tsibling: this.$el,\n\t\t\t} );\n\n\t\t\t// remove\n\t\t\tacf.remove( {\n\t\t\t\ttarget: this.$el,\n\t\t\t\tendHeight: $fields.length ? 0 : 50,\n\t\t\t\tcomplete: function () {\n\t\t\t\t\tfield.remove();\n\t\t\t\t\tacf.doAction( 'removed_field_object', field, $list );\n\t\t\t\t},\n\t\t\t} );\n\n\t\t\t// action\n\t\t\tacf.doAction( 'remove_field_object', field, $list );\n\t\t},\n\n\t\tduplicate: function () {\n\t\t\t// vars\n\t\t\tvar newKey = acf.uniqid( 'field_' );\n\n\t\t\t// duplicate\n\t\t\tvar $newField = acf.duplicate( {\n\t\t\t\ttarget: this.$el,\n\t\t\t\tsearch: this.get( 'id' ),\n\t\t\t\treplace: newKey,\n\t\t\t} );\n\n\t\t\t// set new key\n\t\t\t$newField.attr( 'data-key', newKey );\n\n\t\t\t// get instance\n\t\t\tvar newField = acf.getFieldObject( $newField );\n\n\t\t\t// update newField label / name\n\t\t\tvar label = newField.prop( 'label' );\n\t\t\tvar name = newField.prop( 'name' );\n\t\t\tvar end = name.split( '_' ).pop();\n\t\t\tvar copy = acf.__( 'copy' );\n\n\t\t\t// increase suffix \"1\"\n\t\t\tif ( acf.isNumeric( end ) ) {\n\t\t\t\tvar i = end * 1 + 1;\n\t\t\t\tlabel = label.replace( end, i );\n\t\t\t\tname = name.replace( end, i );\n\n\t\t\t\t// increase suffix \"(copy1)\"\n\t\t\t} else if ( end.indexOf( copy ) === 0 ) {\n\t\t\t\tvar i = end.replace( copy, '' ) * 1;\n\t\t\t\ti = i ? i + 1 : 2;\n\n\t\t\t\t// replace\n\t\t\t\tlabel = label.replace( end, copy + i );\n\t\t\t\tname = name.replace( end, copy + i );\n\n\t\t\t\t// add default \"(copy)\"\n\t\t\t} else {\n\t\t\t\tlabel += ' (' + copy + ')';\n\t\t\t\tname += '_' + copy;\n\t\t\t}\n\n\t\t\tnewField.prop( 'ID', 0 );\n\t\t\tnewField.prop( 'label', label );\n\t\t\tnewField.prop( 'name', name );\n\t\t\tnewField.prop( 'key', newKey );\n\n\t\t\t// close the current field if it's open.\n\t\t\tif ( this.isOpen() ) {\n\t\t\t\tthis.close();\n\t\t\t}\n\n\t\t\t// open the new field and initialise correctly.\n\t\t\tnewField.open();\n\n\t\t\t// focus label\n\t\t\tvar $label = newField.$setting( 'label input' );\n\t\t\tsetTimeout( function () {\n\t\t\t\t$label.trigger( 'focus' );\n\t\t\t}, 251 );\n\n\t\t\t// action\n\t\t\tacf.doAction( 'duplicate_field_object', this, newField );\n\t\t\tacf.doAction( 'append_field_object', newField );\n\t\t},\n\n\t\twipe: function () {\n\t\t\t// vars\n\t\t\tvar prevId = this.get( 'id' );\n\t\t\tvar prevKey = this.get( 'key' );\n\t\t\tvar newKey = acf.uniqid( 'field_' );\n\n\t\t\t// rename\n\t\t\tacf.rename( {\n\t\t\t\ttarget: this.$el,\n\t\t\t\tsearch: prevId,\n\t\t\t\treplace: newKey,\n\t\t\t} );\n\n\t\t\t// data\n\t\t\tthis.set( 'id', newKey );\n\t\t\tthis.set( 'prevId', prevId );\n\t\t\tthis.set( 'prevKey', prevKey );\n\n\t\t\t// props\n\t\t\tthis.prop( 'key', newKey );\n\t\t\tthis.prop( 'ID', 0 );\n\n\t\t\t// attr\n\t\t\tthis.$el.attr( 'data-key', newKey );\n\t\t\tthis.$el.attr( 'data-id', newKey );\n\n\t\t\t// action\n\t\t\tacf.doAction( 'wipe_field_object', this );\n\t\t},\n\n\t\tmove: function () {\n\t\t\t// helper\n\t\t\tvar hasChanged = function ( field ) {\n\t\t\t\treturn field.get( 'save' ) == 'settings';\n\t\t\t};\n\n\t\t\t// vars\n\t\t\tvar changed = hasChanged( this );\n\n\t\t\t// has sub fields changed\n\t\t\tif ( ! changed ) {\n\t\t\t\tacf.getFieldObjects( {\n\t\t\t\t\tparent: this.$el,\n\t\t\t\t} ).map( function ( field ) {\n\t\t\t\t\tchanged = hasChanged( field ) || field.changed;\n\t\t\t\t} );\n\t\t\t}\n\n\t\t\t// bail early if changed\n\t\t\tif ( changed ) {\n\t\t\t\talert(\n\t\t\t\t\tacf.__(\n\t\t\t\t\t\t'This field cannot be moved until its changes have been saved'\n\t\t\t\t\t)\n\t\t\t\t);\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// step 1.\n\t\t\tvar id = this.prop( 'ID' );\n\t\t\tvar field = this;\n\t\t\tvar popup = false;\n\t\t\tvar step1 = function () {\n\t\t\t\t// popup\n\t\t\t\tpopup = acf.newPopup( {\n\t\t\t\t\ttitle: acf.__( 'Move Custom Field' ),\n\t\t\t\t\tloading: true,\n\t\t\t\t\twidth: '300px',\n\t\t\t\t\topenedBy: field.$el.find( '.move-field' ),\n\t\t\t\t} );\n\n\t\t\t\t// ajax\n\t\t\t\tvar ajaxData = {\n\t\t\t\t\taction: 'acf/field_group/move_field',\n\t\t\t\t\tfield_id: id,\n\t\t\t\t};\n\n\t\t\t\t// get HTML\n\t\t\t\t$.ajax( {\n\t\t\t\t\turl: acf.get( 'ajaxurl' ),\n\t\t\t\t\tdata: acf.prepareForAjax( ajaxData ),\n\t\t\t\t\ttype: 'post',\n\t\t\t\t\tdataType: 'html',\n\t\t\t\t\tsuccess: step2,\n\t\t\t\t} );\n\t\t\t};\n\n\t\t\tvar step2 = function ( html ) {\n\t\t\t\t// update popup\n\t\t\t\tpopup.loading( false );\n\t\t\t\tpopup.content( html );\n\n\t\t\t\t// submit form\n\t\t\t\tpopup.on( 'submit', 'form', step3 );\n\t\t\t};\n\n\t\t\tvar step3 = function ( e, $el ) {\n\t\t\t\t// prevent\n\t\t\t\te.preventDefault();\n\n\t\t\t\t// disable\n\t\t\t\tacf.startButtonLoading( popup.$( '.button' ) );\n\n\t\t\t\t// ajax\n\t\t\t\tvar ajaxData = {\n\t\t\t\t\taction: 'acf/field_group/move_field',\n\t\t\t\t\tfield_id: id,\n\t\t\t\t\tfield_group_id: popup.$( 'select' ).val(),\n\t\t\t\t};\n\n\t\t\t\t// get HTML\n\t\t\t\t$.ajax( {\n\t\t\t\t\turl: acf.get( 'ajaxurl' ),\n\t\t\t\t\tdata: acf.prepareForAjax( ajaxData ),\n\t\t\t\t\ttype: 'post',\n\t\t\t\t\tdataType: 'html',\n\t\t\t\t\tsuccess: step4,\n\t\t\t\t} );\n\t\t\t};\n\n\t\t\tvar step4 = function ( html ) {\n\t\t\t\tpopup.content( html );\n\n\t\t\t\tif ( wp.a11y && wp.a11y.speak && acf.__ ) {\n\t\t\t\t\twp.a11y.speak(\n\t\t\t\t\t\tacf.__( 'Field moved to other group' ),\n\t\t\t\t\t\t'polite'\n\t\t\t\t\t);\n\t\t\t\t}\n\n\t\t\t\tpopup.$( '.acf-close-popup' ).focus();\n\n\t\t\t\tfield.removeAnimate();\n\t\t\t};\n\n\t\t\t// start\n\t\t\tstep1();\n\t\t},\n\n\t\tbrowseFields: function ( e, $el ) {\n\t\t\te.preventDefault();\n\n\t\t\tconst modal = acf.newBrowseFieldsModal( {\n\t\t\t\topenedBy: this,\n\t\t\t} );\n\t\t},\n\n\t\tonChangeType: function ( e, $el ) {\n\t\t\t// clea previous timout\n\t\t\tif ( this.changeTimeout ) {\n\t\t\t\tclearTimeout( this.changeTimeout );\n\t\t\t}\n\n\t\t\t// set new timeout\n\t\t\t// - prevents changing type multiple times whilst user types in newType\n\t\t\tthis.changeTimeout = this.setTimeout( function () {\n\t\t\t\tthis.changeType( $el.val() );\n\t\t\t}, 300 );\n\t\t},\n\n\t\tchangeType: function ( newType ) {\n\t\t\tvar prevType = this.prop( 'type' );\n\t\t\tvar prevClass = acf.strSlugify( 'acf-field-object-' + prevType );\n\t\t\tvar newClass = acf.strSlugify( 'acf-field-object-' + newType );\n\n\t\t\t// Update props.\n\t\t\tthis.$el.removeClass( prevClass ).addClass( newClass );\n\t\t\tthis.$el.attr( 'data-type', newType );\n\t\t\tthis.$el.data( 'type', newType );\n\n\t\t\t// Abort XHR if this field is already loading AJAX data.\n\t\t\tif ( this.has( 'xhr' ) ) {\n\t\t\t\tthis.get( 'xhr' ).abort();\n\t\t\t}\n\n\t\t\t// Store old settings so they can be reused later.\n\t\t\tconst $oldSettings = {};\n\n\t\t\tthis.$el\n\t\t\t\t.find(\n\t\t\t\t\t'.acf-field-settings:first > .acf-field-settings-main > .acf-field-type-settings'\n\t\t\t\t)\n\t\t\t\t.each( function () {\n\t\t\t\t\tlet tab = $( this ).data( 'parent-tab' );\n\t\t\t\t\tlet $tabSettings = $( this ).children().removeData();\n\n\t\t\t\t\t$oldSettings[ tab ] = $tabSettings;\n\n\t\t\t\t\t$tabSettings.detach();\n\t\t\t\t} );\n\n\t\t\tthis.set( 'settings-' + prevType, $oldSettings );\n\n\t\t\t// Show the settings if we already have them cached.\n\t\t\tif ( this.has( 'settings-' + newType ) ) {\n\t\t\t\tlet $newSettings = this.get( 'settings-' + newType );\n\n\t\t\t\tthis.showFieldTypeSettings( $newSettings );\n\t\t\t\tthis.set( 'type', newType );\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// Add loading spinner.\n\t\t\tconst $loading = $(\n\t\t\t\t'
'\n\t\t\t);\n\t\t\tthis.$el\n\t\t\t\t.find(\n\t\t\t\t\t'.acf-field-settings-main-general .acf-field-type-settings'\n\t\t\t\t)\n\t\t\t\t.before( $loading );\n\n\t\t\tconst ajaxData = {\n\t\t\t\taction: 'acf/field_group/render_field_settings',\n\t\t\t\tfield: this.serialize(),\n\t\t\t\tprefix: this.getInputName(),\n\t\t\t};\n\n\t\t\t// Get the settings for this field type over AJAX.\n\t\t\tvar xhr = $.ajax( {\n\t\t\t\turl: acf.get( 'ajaxurl' ),\n\t\t\t\tdata: acf.prepareForAjax( ajaxData ),\n\t\t\t\ttype: 'post',\n\t\t\t\tdataType: 'json',\n\t\t\t\tcontext: this,\n\t\t\t\tsuccess: function ( response ) {\n\t\t\t\t\tif ( ! acf.isAjaxSuccess( response ) ) {\n\t\t\t\t\t\treturn;\n\t\t\t\t\t}\n\n\t\t\t\t\tthis.showFieldTypeSettings( response.data );\n\t\t\t\t},\n\t\t\t\tcomplete: function () {\n\t\t\t\t\t// also triggered by xhr.abort();\n\t\t\t\t\t$loading.remove();\n\t\t\t\t\tthis.set( 'type', newType );\n\t\t\t\t\t//this.refresh();\n\t\t\t\t},\n\t\t\t} );\n\n\t\t\t// set\n\t\t\tthis.set( 'xhr', xhr );\n\t\t},\n\n\t\tshowFieldTypeSettings: function ( settings ) {\n\t\t\tif ( 'object' !== typeof settings ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tconst self = this;\n\t\t\tconst tabs = Object.keys( settings );\n\n\t\t\ttabs.forEach( ( tab ) => {\n\t\t\t\tconst $tab = self.$el.find(\n\t\t\t\t\t'.acf-field-settings-main-' +\n\t\t\t\t\t\ttab.replace( '_', '-' ) +\n\t\t\t\t\t\t' .acf-field-type-settings'\n\t\t\t\t);\n\t\t\t\tlet tabContent = '';\n\n\t\t\t\tif (\n\t\t\t\t\t[ 'object', 'string' ].includes( typeof settings[ tab ] )\n\t\t\t\t) {\n\t\t\t\t\ttabContent = settings[ tab ];\n\t\t\t\t}\n\n\t\t\t\t$tab.prepend( tabContent );\n\t\t\t\tacf.doAction( 'append', $tab );\n\t\t\t} );\n\n\t\t\tthis.hideEmptyTabs();\n\t\t},\n\n\t\tupdateParent: function () {\n\t\t\t// vars\n\t\t\tvar ID = acf.get( 'post_id' );\n\n\t\t\t// check parent\n\t\t\tvar parent = this.getParent();\n\t\t\tif ( parent ) {\n\t\t\t\tID = parseInt( parent.prop( 'ID' ) ) || parent.prop( 'key' );\n\t\t\t}\n\n\t\t\t// update\n\t\t\tthis.prop( 'parent', ID );\n\t\t},\n\n\t\thideEmptyTabs: function () {\n\t\t\tconst $settings = this.$settings();\n\t\t\tconst $tabs = $settings.find(\n\t\t\t\t'.acf-field-settings:first > .acf-field-settings-main'\n\t\t\t);\n\n\t\t\t$tabs.each( function () {\n\t\t\t\tconst $tabContent = $( this );\n\t\t\t\tconst tabName = $tabContent\n\t\t\t\t\t.find( '.acf-field-type-settings:first' )\n\t\t\t\t\t.data( 'parentTab' );\n\t\t\t\tconst $tabLink = $settings\n\t\t\t\t\t.find( '.acf-settings-type-' + tabName )\n\t\t\t\t\t.first();\n\n\t\t\t\tif ( $.trim( $tabContent.text() ) === '' ) {\n\t\t\t\t\t$tabLink.hide();\n\t\t\t\t} else if ( $tabLink.is( ':hidden' ) ) {\n\t\t\t\t\t$tabLink.show();\n\t\t\t\t}\n\t\t\t} );\n\t\t},\n\t} );\n} )( jQuery );\n","( function ( $, undefined ) {\n\t/**\n\t * acf.findFieldObject\n\t *\n\t * Returns a single fieldObject $el for a given field key\n\t *\n\t * @date\t1/2/18\n\t * @since\t5.7.0\n\t *\n\t * @param\tstring key The field key\n\t * @return\tjQuery\n\t */\n\n\tacf.findFieldObject = function ( key ) {\n\t\treturn acf.findFieldObjects( {\n\t\t\tkey: key,\n\t\t\tlimit: 1,\n\t\t} );\n\t};\n\n\t/**\n\t * acf.findFieldObjects\n\t *\n\t * Returns an array of fieldObject $el for the given args\n\t *\n\t * @date\t1/2/18\n\t * @since\t5.7.0\n\t *\n\t * @param\tobject args\n\t * @return\tjQuery\n\t */\n\n\tacf.findFieldObjects = function ( args ) {\n\t\t// vars\n\t\targs = args || {};\n\t\tvar selector = '.acf-field-object';\n\t\tvar $fields = false;\n\n\t\t// args\n\t\targs = acf.parseArgs( args, {\n\t\t\tid: '',\n\t\t\tkey: '',\n\t\t\ttype: '',\n\t\t\tlimit: false,\n\t\t\tlist: null,\n\t\t\tparent: false,\n\t\t\tsibling: false,\n\t\t\tchild: false,\n\t\t} );\n\n\t\t// id\n\t\tif ( args.id ) {\n\t\t\tselector += '[data-id=\"' + args.id + '\"]';\n\t\t}\n\n\t\t// key\n\t\tif ( args.key ) {\n\t\t\tselector += '[data-key=\"' + args.key + '\"]';\n\t\t}\n\n\t\t// type\n\t\tif ( args.type ) {\n\t\t\tselector += '[data-type=\"' + args.type + '\"]';\n\t\t}\n\n\t\t// query\n\t\tif ( args.list ) {\n\t\t\t$fields = args.list.children( selector );\n\t\t} else if ( args.parent ) {\n\t\t\t$fields = args.parent.find( selector );\n\t\t} else if ( args.sibling ) {\n\t\t\t$fields = args.sibling.siblings( selector );\n\t\t} else if ( args.child ) {\n\t\t\t$fields = args.child.parents( selector );\n\t\t} else {\n\t\t\t$fields = $( selector );\n\t\t}\n\n\t\t// limit\n\t\tif ( args.limit ) {\n\t\t\t$fields = $fields.slice( 0, args.limit );\n\t\t}\n\n\t\t// return\n\t\treturn $fields;\n\t};\n\n\t/**\n\t * acf.getFieldObject\n\t *\n\t * Returns a single fieldObject instance for a given $el|key\n\t *\n\t * @date\t1/2/18\n\t * @since\t5.7.0\n\t *\n\t * @param\tstring|jQuery $field The field $el or key\n\t * @return\tjQuery\n\t */\n\n\tacf.getFieldObject = function ( $field ) {\n\t\t// allow key\n\t\tif ( typeof $field === 'string' ) {\n\t\t\t$field = acf.findFieldObject( $field );\n\t\t}\n\n\t\t// instantiate\n\t\tvar field = $field.data( 'acf' );\n\t\tif ( ! field ) {\n\t\t\tfield = acf.newFieldObject( $field );\n\t\t}\n\n\t\t// return\n\t\treturn field;\n\t};\n\n\t/**\n\t * acf.getFieldObjects\n\t *\n\t * Returns an array of fieldObject instances for the given args\n\t *\n\t * @date\t1/2/18\n\t * @since\t5.7.0\n\t *\n\t * @param\tobject args\n\t * @return\tarray\n\t */\n\n\tacf.getFieldObjects = function ( args ) {\n\t\t// query\n\t\tvar $fields = acf.findFieldObjects( args );\n\n\t\t// loop\n\t\tvar fields = [];\n\t\t$fields.each( function () {\n\t\t\tvar field = acf.getFieldObject( $( this ) );\n\t\t\tfields.push( field );\n\t\t} );\n\n\t\t// return\n\t\treturn fields;\n\t};\n\n\t/**\n\t * acf.newFieldObject\n\t *\n\t * Initializes and returns a new FieldObject instance\n\t *\n\t * @date\t1/2/18\n\t * @since\t5.7.0\n\t *\n\t * @param\tjQuery $field The field $el\n\t * @return\tobject\n\t */\n\n\tacf.newFieldObject = function ( $field ) {\n\t\t// instantiate\n\t\tvar field = new acf.FieldObject( $field );\n\n\t\t// action\n\t\tacf.doAction( 'new_field_object', field );\n\n\t\t// return\n\t\treturn field;\n\t};\n\n\t/**\n\t * actionManager\n\t *\n\t * description\n\t *\n\t * @date\t15/12/17\n\t * @since\t5.6.5\n\t *\n\t * @param\ttype $var Description. Default.\n\t * @return\ttype Description.\n\t */\n\n\tvar eventManager = new acf.Model( {\n\t\tpriority: 5,\n\n\t\tinitialize: function () {\n\t\t\t// actions\n\t\t\tvar actions = [ 'prepare', 'ready', 'append', 'remove' ];\n\n\t\t\t// loop\n\t\t\tactions.map( function ( action ) {\n\t\t\t\tthis.addFieldActions( action );\n\t\t\t}, this );\n\t\t},\n\n\t\taddFieldActions: function ( action ) {\n\t\t\t// vars\n\t\t\tvar pluralAction = action + '_field_objects'; // ready_field_objects\n\t\t\tvar singleAction = action + '_field_object'; // ready_field_object\n\t\t\tvar singleEvent = action + 'FieldObject'; // readyFieldObject\n\n\t\t\t// global action\n\t\t\tvar callback = function ( $el /*, arg1, arg2, etc*/ ) {\n\t\t\t\t// vars\n\t\t\t\tvar fieldObjects = acf.getFieldObjects( { parent: $el } );\n\n\t\t\t\t// call plural\n\t\t\t\tif ( fieldObjects.length ) {\n\t\t\t\t\t/// get args [$el, arg1]\n\t\t\t\t\tvar args = acf.arrayArgs( arguments );\n\n\t\t\t\t\t// modify args [pluralAction, fields, arg1]\n\t\t\t\t\targs.splice( 0, 1, pluralAction, fieldObjects );\n\t\t\t\t\tacf.doAction.apply( null, args );\n\t\t\t\t}\n\t\t\t};\n\n\t\t\t// plural action\n\t\t\tvar pluralCallback = function (\n\t\t\t\tfieldObjects /*, arg1, arg2, etc*/\n\t\t\t) {\n\t\t\t\t/// get args [fields, arg1]\n\t\t\t\tvar args = acf.arrayArgs( arguments );\n\n\t\t\t\t// modify args [singleAction, fields, arg1]\n\t\t\t\targs.unshift( singleAction );\n\n\t\t\t\t// loop\n\t\t\t\tfieldObjects.map( function ( fieldObject ) {\n\t\t\t\t\t// modify args [singleAction, field, arg1]\n\t\t\t\t\targs[ 1 ] = fieldObject;\n\t\t\t\t\tacf.doAction.apply( null, args );\n\t\t\t\t} );\n\t\t\t};\n\n\t\t\t// single action\n\t\t\tvar singleCallback = function (\n\t\t\t\tfieldObject /*, arg1, arg2, etc*/\n\t\t\t) {\n\t\t\t\t/// get args [$field, arg1]\n\t\t\t\tvar args = acf.arrayArgs( arguments );\n\n\t\t\t\t// modify args [singleAction, $field, arg1]\n\t\t\t\targs.unshift( singleAction );\n\n\t\t\t\t// action variations (ready_field/type=image)\n\t\t\t\tvar variations = [ 'type', 'name', 'key' ];\n\t\t\t\tvariations.map( function ( variation ) {\n\t\t\t\t\targs[ 0 ] =\n\t\t\t\t\t\tsingleAction +\n\t\t\t\t\t\t'/' +\n\t\t\t\t\t\tvariation +\n\t\t\t\t\t\t'=' +\n\t\t\t\t\t\tfieldObject.get( variation );\n\t\t\t\t\tacf.doAction.apply( null, args );\n\t\t\t\t} );\n\n\t\t\t\t// modify args [arg1]\n\t\t\t\targs.splice( 0, 2 );\n\n\t\t\t\t// event\n\t\t\t\tfieldObject.trigger( singleEvent, args );\n\t\t\t};\n\n\t\t\t// add actions\n\t\t\tacf.addAction( action, callback, 5 );\n\t\t\tacf.addAction( pluralAction, pluralCallback, 5 );\n\t\t\tacf.addAction( singleAction, singleCallback, 5 );\n\t\t},\n\t} );\n\n\t/**\n\t * fieldManager\n\t *\n\t * description\n\t *\n\t * @date\t4/1/18\n\t * @since\t5.6.5\n\t *\n\t * @param\ttype $var Description. Default.\n\t * @return\ttype Description.\n\t */\n\n\tvar fieldManager = new acf.Model( {\n\t\tid: 'fieldManager',\n\n\t\tevents: {\n\t\t\t'submit #post': 'onSubmit',\n\t\t\t'mouseenter .acf-field-list': 'onHoverSortable',\n\t\t\t'click .add-field': 'onClickAdd',\n\t\t},\n\n\t\tactions: {\n\t\t\tremoved_field_object: 'onRemovedField',\n\t\t\tsortstop_field_object: 'onReorderField',\n\t\t\tdelete_field_object: 'onDeleteField',\n\t\t\tchange_field_object_type: 'onChangeFieldType',\n\t\t\tduplicate_field_object: 'onDuplicateField',\n\t\t},\n\n\t\tonSubmit: function ( e, $el ) {\n\t\t\t// vars\n\t\t\tvar fields = acf.getFieldObjects();\n\n\t\t\t// loop\n\t\t\tfields.map( function ( field ) {\n\t\t\t\tfield.submit();\n\t\t\t} );\n\t\t},\n\n\t\tsetFieldMenuOrder: function ( field ) {\n\t\t\tthis.renderFields( field.$el.parent() );\n\t\t},\n\n\t\tonHoverSortable: function ( e, $el ) {\n\t\t\t// bail early if already sortable\n\t\t\tif ( $el.hasClass( 'ui-sortable' ) ) return;\n\n\t\t\t// sortable\n\t\t\t$el.sortable( {\n\t\t\t\thelper: function( event, element ) {\n\t\t\t\t\t// https://core.trac.wordpress.org/ticket/16972#comment:22\n\t\t\t\t\treturn element.clone()\n\t\t\t\t\t\t.find( ':input' )\n\t\t\t\t\t\t\t.attr( 'name', function( i, currentName ) {\n\t\t\t\t\t\t\t\t\treturn 'sort_' + parseInt( Math.random() * 100000, 10 ).toString() + '_' + currentName;\n\t\t\t\t\t\t\t} )\n\t\t\t\t\t\t.end();\n\t\t\t\t},\n\t\t\t\thandle: '.acf-sortable-handle',\n\t\t\t\tconnectWith: '.acf-field-list',\n\t\t\t\tstart: function ( e, ui ) {\n\t\t\t\t\tvar field = acf.getFieldObject( ui.item );\n\t\t\t\t\tui.placeholder.height( ui.item.height() );\n\t\t\t\t\tacf.doAction( 'sortstart_field_object', field, $el );\n\t\t\t\t},\n\t\t\t\tupdate: function ( e, ui ) {\n\t\t\t\t\tvar field = acf.getFieldObject( ui.item );\n\t\t\t\t\tacf.doAction( 'sortstop_field_object', field, $el );\n\t\t\t\t},\n\t\t\t} );\n\t\t},\n\n\t\tonRemovedField: function ( field, $list ) {\n\t\t\tthis.renderFields( $list );\n\t\t},\n\n\t\tonReorderField: function ( field, $list ) {\n\t\t\tfield.updateParent();\n\t\t\tthis.renderFields( $list );\n\t\t},\n\n\t\tonDeleteField: function ( field ) {\n\t\t\t// delete children\n\t\t\tfield.getFields().map( function ( child ) {\n\t\t\t\tchild.delete( { animate: false } );\n\t\t\t} );\n\t\t},\n\n\t\tonChangeFieldType: function ( field ) {\n\t\t\t// enable browse field modal button\n\t\t\tfield.$el.find( 'button.browse-fields' ).prop( 'disabled', false );\n\t\t},\n\n\t\tonDuplicateField: function ( field, newField ) {\n\t\t\t// check for children\n\t\t\tvar children = newField.getFields();\n\t\t\tif ( children.length ) {\n\t\t\t\t// loop\n\t\t\t\tchildren.map( function ( child ) {\n\t\t\t\t\t// wipe field\n\t\t\t\t\tchild.wipe();\n\n\t\t\t\t\t// if the child is open, re-fire the open method to ensure it's initialised correctly.\n\t\t\t\t\tif ( child.isOpen() ) {\n\t\t\t\t\t\tchild.open();\n\t\t\t\t\t}\n\n\t\t\t\t\t// update parent\n\t\t\t\t\tchild.updateParent();\n\t\t\t\t} );\n\n\t\t\t\t// action\n\t\t\t\tacf.doAction(\n\t\t\t\t\t'duplicate_field_objects',\n\t\t\t\t\tchildren,\n\t\t\t\t\tnewField,\n\t\t\t\t\tfield\n\t\t\t\t);\n\t\t\t}\n\n\t\t\t// set menu order\n\t\t\tthis.setFieldMenuOrder( newField );\n\t\t},\n\n\t\trenderFields: function ( $list ) {\n\t\t\t// vars\n\t\t\tvar fields = acf.getFieldObjects( {\n\t\t\t\tlist: $list,\n\t\t\t} );\n\n\t\t\t// no fields\n\t\t\tif ( ! fields.length ) {\n\t\t\t\t$list.addClass( '-empty' );\n\t\t\t\t$list\n\t\t\t\t\t.parents( '.acf-field-list-wrap' )\n\t\t\t\t\t.first()\n\t\t\t\t\t.addClass( '-empty' );\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// has fields\n\t\t\t$list.removeClass( '-empty' );\n\t\t\t$list\n\t\t\t\t.parents( '.acf-field-list-wrap' )\n\t\t\t\t.first()\n\t\t\t\t.removeClass( '-empty' );\n\n\t\t\t// prop\n\t\t\tfields.map( function ( field, i ) {\n\t\t\t\tfield.prop( 'menu_order', i );\n\t\t\t} );\n\t\t},\n\n\t\tonClickAdd: function ( e, $el ) {\n\t\t\tlet $list;\n\n\t\t\tif ( $el.hasClass( 'add-first-field' ) ) {\n\t\t\t\t$list = $el.parents( '.acf-field-list' ).eq( 0 );\n\t\t\t} else if (\n\t\t\t\t$el.parent().hasClass( 'acf-headerbar-actions' ) ||\n\t\t\t\t$el.parent().hasClass( 'no-fields-message-inner' )\n\t\t\t) {\n\t\t\t\t$list = $( '.acf-field-list:first' );\n\t\t\t} else if ( $el.parent().hasClass( 'acf-sub-field-list-header' ) ) {\n\t\t\t\t$list = $el\n\t\t\t\t\t.parents( '.acf-input:first' )\n\t\t\t\t\t.find( '.acf-field-list:first' );\n\t\t\t} else {\n\t\t\t\t$list = $el\n\t\t\t\t\t.closest( '.acf-tfoot' )\n\t\t\t\t\t.siblings( '.acf-field-list' );\n\t\t\t}\n\n\t\t\tthis.addField( $list );\n\t\t},\n\n\t\taddField: function ( $list ) {\n\t\t\t// vars\n\t\t\tvar html = $( '#tmpl-acf-field' ).html();\n\t\t\tvar $el = $( html );\n\t\t\tvar prevId = $el.data( 'id' );\n\t\t\tvar newKey = acf.uniqid( 'field_' );\n\n\t\t\t// duplicate\n\t\t\tvar $newField = acf.duplicate( {\n\t\t\t\ttarget: $el,\n\t\t\t\tsearch: prevId,\n\t\t\t\treplace: newKey,\n\t\t\t\tappend: function ( $el, $el2 ) {\n\t\t\t\t\t$list.append( $el2 );\n\t\t\t\t},\n\t\t\t} );\n\n\t\t\t// get instance\n\t\t\tvar newField = acf.getFieldObject( $newField );\n\n\t\t\t// props\n\t\t\tnewField.prop( 'key', newKey );\n\t\t\tnewField.prop( 'ID', 0 );\n\t\t\tnewField.prop( 'label', '' );\n\t\t\tnewField.prop( 'name', '' );\n\n\t\t\t// attr\n\t\t\t$newField.attr( 'data-key', newKey );\n\t\t\t$newField.attr( 'data-id', newKey );\n\n\t\t\t// update parent prop\n\t\t\tnewField.updateParent();\n\n\t\t\t// focus type\n\t\t\tvar $type = newField.$input( 'type' );\n\t\t\tsetTimeout( function () {\n\t\t\t\tif ( $list.hasClass( 'acf-auto-add-field' ) ) {\n\t\t\t\t\t$list.removeClass( 'acf-auto-add-field' );\n\t\t\t\t} else {\n\t\t\t\t\t$type.trigger( 'focus' );\n\t\t\t\t}\n\t\t\t}, 251 );\n\n\t\t\t// open\n\t\t\tnewField.open();\n\n\t\t\t// set menu order\n\t\t\tthis.renderFields( $list );\n\n\t\t\t// action\n\t\t\tacf.doAction( 'add_field_object', newField );\n\t\t\tacf.doAction( 'append_field_object', newField );\n\t\t},\n\t} );\n} )( jQuery );\n","( function ( $, undefined ) {\n\t/**\n\t * locationManager\n\t *\n\t * Field group location rules functionality\n\t *\n\t * @date\t15/12/17\n\t * @since\t5.7.0\n\t *\n\t * @param\tvoid\n\t * @return\tvoid\n\t */\n\n\tvar locationManager = new acf.Model( {\n\t\tid: 'locationManager',\n\t\twait: 'ready',\n\n\t\tevents: {\n\t\t\t'click .add-location-rule': 'onClickAddRule',\n\t\t\t'click .add-location-group': 'onClickAddGroup',\n\t\t\t'click .remove-location-rule': 'onClickRemoveRule',\n\t\t\t'change .refresh-location-rule': 'onChangeRemoveRule',\n\t\t},\n\n\t\tinitialize: function () {\n\t\t\tthis.$el = $( '#acf-field-group-options' );\n\t\t\tthis.addProLocations();\n\t\t\tthis.updateGroupsClass();\n\t\t},\n\n\t\taddProLocations: function () {\n\t\t\t// Make sure we're only running this on free version.\n\t\t\tif ( acf.get( 'is_pro' ) ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// Loop over each pro field type and append it to the select.\n\t\t\tconst PROLocationTypes = acf.get( 'PROLocationTypes' );\n\t\t\tif ( typeof PROLocationTypes !== 'object' ) return;\n\n\t\t\tconst $formsGroup = this.$el\n\t\t\t\t.find( 'select.refresh-location-rule' )\n\t\t\t\t.find( 'optgroup[label=\"Forms\"]' )\n\n\t\t\tfor ( const [ key, name ] of Object.entries( PROLocationTypes ) ) {\n\t\t\t\t$formsGroup.append(\n\t\t\t\t\t''\n\t\t\t\t);\n\t\t\t}\n\t\t},\n\n\t\tonClickAddRule: function ( e, $el ) {\n\t\t\tthis.addRule( $el.closest( 'tr' ) );\n\t\t},\n\n\t\tonClickRemoveRule: function ( e, $el ) {\n\t\t\tthis.removeRule( $el.closest( 'tr' ) );\n\t\t},\n\n\t\tonChangeRemoveRule: function ( e, $el ) {\n\t\t\tthis.changeRule( $el.closest( 'tr' ) );\n\t\t},\n\n\t\tonClickAddGroup: function ( e, $el ) {\n\t\t\tthis.addGroup();\n\t\t},\n\n\t\taddRule: function ( $tr ) {\n\t\t\tacf.duplicate( $tr );\n\t\t\tthis.updateGroupsClass();\n\t\t},\n\n\t\tremoveRule: function ( $tr ) {\n\t\t\tif ( $tr.siblings( 'tr' ).length == 0 ) {\n\t\t\t\t$tr.closest( '.rule-group' ).remove();\n\t\t\t} else {\n\t\t\t\t$tr.remove();\n\t\t\t}\n\n\t\t\t// Update h4\n\t\t\tvar $group = this.$( '.rule-group:first' );\n\t\t\t$group.find( 'h4' ).text( acf.__( 'Show this field group if' ) );\n\n\t\t\tthis.updateGroupsClass();\n\t\t},\n\n\t\tchangeRule: function ( $rule ) {\n\t\t\t// vars\n\t\t\tvar $group = $rule.closest( '.rule-group' );\n\t\t\tvar prefix = $rule\n\t\t\t\t.find( 'td.param select' )\n\t\t\t\t.attr( 'name' )\n\t\t\t\t.replace( '[param]', '' );\n\n\t\t\t// ajaxdata\n\t\t\tvar ajaxdata = {};\n\t\t\tajaxdata.action = 'acf/field_group/render_location_rule';\n\t\t\tajaxdata.rule = acf.serialize( $rule, prefix );\n\t\t\tajaxdata.rule.id = $rule.data( 'id' );\n\t\t\tajaxdata.rule.group = $group.data( 'id' );\n\n\t\t\t// temp disable\n\t\t\tacf.disable( $rule.find( 'td.value' ) );\n\n\t\t\t// ajax\n\t\t\t$.ajax( {\n\t\t\t\turl: acf.get( 'ajaxurl' ),\n\t\t\t\tdata: acf.prepareForAjax( ajaxdata ),\n\t\t\t\ttype: 'post',\n\t\t\t\tdataType: 'html',\n\t\t\t\tsuccess: function ( html ) {\n\t\t\t\t\tif ( ! html ) return;\n\t\t\t\t\t$rule.replaceWith( html );\n\t\t\t\t},\n\t\t\t} );\n\t\t},\n\n\t\taddGroup: function () {\n\t\t\t// vars\n\t\t\tvar $group = this.$( '.rule-group:last' );\n\n\t\t\t// duplicate\n\t\t\t$group2 = acf.duplicate( $group );\n\n\t\t\t// update h4\n\t\t\t$group2.find( 'h4' ).text( acf.__( 'or' ) );\n\n\t\t\t// remove all tr's except the first one\n\t\t\t$group2.find( 'tr' ).not( ':first' ).remove();\n\n\t\t\t// update the groups class\n\t\t\tthis.updateGroupsClass();\n\t\t},\n\n\t\tupdateGroupsClass: function () {\n\t\t\tvar $group = this.$( '.rule-group:last' );\n\n\t\t\tvar $ruleGroups = $group.closest( '.rule-groups' );\n\n\t\t\tvar rows_count = $ruleGroups.find( '.acf-table tr' ).length;\n\n\t\t\tif ( rows_count > 1 ) {\n\t\t\t\t$ruleGroups.addClass( 'rule-groups-multiple' );\n\t\t\t} else {\n\t\t\t\t$ruleGroups.removeClass( 'rule-groups-multiple' );\n\t\t\t}\n\t\t},\n\t} );\n} )( jQuery );\n","( function ( $, undefined ) {\n\t/**\n\t * mid\n\t *\n\t * Calculates the model ID for a field type\n\t *\n\t * @date\t15/12/17\n\t * @since\t5.6.5\n\t *\n\t * @param\tstring type\n\t * @return\tstring\n\t */\n\n\tvar modelId = function ( type ) {\n\t\treturn acf.strPascalCase( type || '' ) + 'FieldSetting';\n\t};\n\n\t/**\n\t * registerFieldType\n\t *\n\t * description\n\t *\n\t * @date\t14/12/17\n\t * @since\t5.6.5\n\t *\n\t * @param\ttype $var Description. Default.\n\t * @return\ttype Description.\n\t */\n\n\tacf.registerFieldSetting = function ( model ) {\n\t\tvar proto = model.prototype;\n\t\tvar mid = modelId( proto.type + ' ' + proto.name );\n\t\tthis.models[ mid ] = model;\n\t};\n\n\t/**\n\t * newField\n\t *\n\t * description\n\t *\n\t * @date\t14/12/17\n\t * @since\t5.6.5\n\t *\n\t * @param\ttype $var Description. Default.\n\t * @return\ttype Description.\n\t */\n\n\tacf.newFieldSetting = function ( field ) {\n\t\t// vars\n\t\tvar type = field.get( 'setting' ) || '';\n\t\tvar name = field.get( 'name' ) || '';\n\t\tvar mid = modelId( type + ' ' + name );\n\t\tvar model = acf.models[ mid ] || null;\n\n\t\t// bail early if no setting\n\t\tif ( model === null ) return false;\n\n\t\t// instantiate\n\t\tvar setting = new model( field );\n\n\t\t// return\n\t\treturn setting;\n\t};\n\n\t/**\n\t * acf.getFieldSetting\n\t *\n\t * description\n\t *\n\t * @date\t19/4/18\n\t * @since\t5.6.9\n\t *\n\t * @param\ttype $var Description. Default.\n\t * @return\ttype Description.\n\t */\n\n\tacf.getFieldSetting = function ( field ) {\n\t\t// allow jQuery\n\t\tif ( field instanceof jQuery ) {\n\t\t\tfield = acf.getField( field );\n\t\t}\n\n\t\t// return\n\t\treturn field.setting;\n\t};\n\n\t/**\n\t * settingsManager\n\t *\n\t * @since\t5.6.5\n\t *\n\t * @param\tobject The object containing the extended variables and methods.\n\t * @return\tvoid\n\t */\n\tvar settingsManager = new acf.Model( {\n\t\tactions: {\n\t\t\tnew_field: 'onNewField',\n\t\t},\n\t\tonNewField: function ( field ) {\n\t\t\tfield.setting = acf.newFieldSetting( field );\n\t\t},\n\t} );\n\n\t/**\n\t * acf.FieldSetting\n\t *\n\t * @since\t5.6.5\n\t *\n\t * @param\tobject The object containing the extended variables and methods.\n\t * @return\tvoid\n\t */\n\tacf.FieldSetting = acf.Model.extend( {\n\t\tfield: false,\n\t\ttype: '',\n\t\tname: '',\n\t\twait: 'ready',\n\t\teventScope: '.acf-field',\n\n\t\tevents: {\n\t\t\tchange: 'render',\n\t\t},\n\n\t\tsetup: function ( field ) {\n\t\t\t// vars\n\t\t\tvar $field = field.$el;\n\n\t\t\t// set props\n\t\t\tthis.$el = $field;\n\t\t\tthis.field = field;\n\t\t\tthis.$fieldObject = $field.closest( '.acf-field-object' );\n\t\t\tthis.fieldObject = acf.getFieldObject( this.$fieldObject );\n\n\t\t\t// inherit data\n\t\t\t$.extend( this.data, field.data );\n\t\t},\n\n\t\tinitialize: function () {\n\t\t\tthis.render();\n\t\t},\n\n\t\trender: function () {\n\t\t\t// do nothing\n\t\t},\n\t} );\n\n\t/**\n\t * Accordion and Tab Endpoint Settings\n\t *\n\t * The 'endpoint' setting on accordions and tabs requires an additional class on the\n\t * field object row when enabled.\n\t *\n\t * @since\t6.0.0\n\t *\n\t * @param\tobject The object containing the extended variables and methods.\n\t * @return\tvoid\n\t */\n\tvar EndpointFieldSetting = acf.FieldSetting.extend( {\n\t\ttype: '',\n\t\tname: '',\n\t\trender: function () {\n\t\t\tvar $endpoint_setting = this.fieldObject.$setting( 'endpoint' );\n\t\t\tvar $endpoint_field = $endpoint_setting.find(\n\t\t\t\t'input[type=\"checkbox\"]:first'\n\t\t\t);\n\t\t\tif ( $endpoint_field.is( ':checked' ) ) {\n\t\t\t\tthis.fieldObject.$el.addClass( 'acf-field-is-endpoint' );\n\t\t\t} else {\n\t\t\t\tthis.fieldObject.$el.removeClass( 'acf-field-is-endpoint' );\n\t\t\t}\n\t\t},\n\t} );\n\n\tvar AccordionEndpointFieldSetting = EndpointFieldSetting.extend( {\n\t\ttype: 'accordion',\n\t\tname: 'endpoint',\n\t} );\n\n\tvar TabEndpointFieldSetting = EndpointFieldSetting.extend( {\n\t\ttype: 'tab',\n\t\tname: 'endpoint',\n\t} );\n\n\tacf.registerFieldSetting( AccordionEndpointFieldSetting );\n\tacf.registerFieldSetting( TabEndpointFieldSetting );\n\n\t/**\n\t * Date Picker\n\t *\n\t * This field type requires some extra logic for its settings\n\t *\n\t * @since\t5.0.0\n\t *\n\t * @param\tobject The object containing the extended variables and methods.\n\t * @return\tvoid\n\t */\n\tvar DisplayFormatFieldSetting = acf.FieldSetting.extend( {\n\t\ttype: '',\n\t\tname: '',\n\t\trender: function () {\n\t\t\tvar $input = this.$( 'input[type=\"radio\"]:checked' );\n\t\t\tif ( $input.val() != 'other' ) {\n\t\t\t\tthis.$( 'input[type=\"text\"]' ).val( $input.val() );\n\t\t\t}\n\t\t},\n\t} );\n\n\tvar DatePickerDisplayFormatFieldSetting = DisplayFormatFieldSetting.extend(\n\t\t{\n\t\t\ttype: 'date_picker',\n\t\t\tname: 'display_format',\n\t\t}\n\t);\n\n\tvar DatePickerReturnFormatFieldSetting = DisplayFormatFieldSetting.extend( {\n\t\ttype: 'date_picker',\n\t\tname: 'return_format',\n\t} );\n\n\tacf.registerFieldSetting( DatePickerDisplayFormatFieldSetting );\n\tacf.registerFieldSetting( DatePickerReturnFormatFieldSetting );\n\n\t/**\n\t * Date Time Picker\n\t *\n\t * This field type requires some extra logic for its settings\n\t *\n\t * @since\t5.0.0\n\t *\n\t * @param\tobject The object containing the extended variables and methods.\n\t * @return\tvoid\n\t */\n\tvar DateTimePickerDisplayFormatFieldSetting =\n\t\tDisplayFormatFieldSetting.extend( {\n\t\t\ttype: 'date_time_picker',\n\t\t\tname: 'display_format',\n\t\t} );\n\n\tvar DateTimePickerReturnFormatFieldSetting =\n\t\tDisplayFormatFieldSetting.extend( {\n\t\t\ttype: 'date_time_picker',\n\t\t\tname: 'return_format',\n\t\t} );\n\n\tacf.registerFieldSetting( DateTimePickerDisplayFormatFieldSetting );\n\tacf.registerFieldSetting( DateTimePickerReturnFormatFieldSetting );\n\n\t/**\n\t * Time Picker\n\t *\n\t * This field type requires some extra logic for its settings\n\t *\n\t * @since\t5.0.0\n\t *\n\t * @param\tobject The object containing the extended variables and methods.\n\t * @return\tvoid\n\t */\n\tvar TimePickerDisplayFormatFieldSetting = DisplayFormatFieldSetting.extend(\n\t\t{\n\t\t\ttype: 'time_picker',\n\t\t\tname: 'display_format',\n\t\t}\n\t);\n\n\tvar TimePickerReturnFormatFieldSetting = DisplayFormatFieldSetting.extend( {\n\t\ttype: 'time_picker',\n\t\tname: 'return_format',\n\t} );\n\n\tacf.registerFieldSetting( TimePickerDisplayFormatFieldSetting );\n\tacf.registerFieldSetting( TimePickerReturnFormatFieldSetting );\n\n\t/**\n\t * Color Picker Settings.\n\t *\n\t * @date\t16/12/20\n\t * @since\t5.9.4\n\t *\n\t * @param\tobject The object containing the extended variables and methods.\n\t * @return\tvoid\n\t */\n\tvar ColorPickerReturnFormat = acf.FieldSetting.extend( {\n\t\ttype: 'color_picker',\n\t\tname: 'enable_opacity',\n\t\trender: function () {\n\t\t\tvar $return_format_setting =\n\t\t\t\tthis.fieldObject.$setting( 'return_format' );\n\t\t\tvar $default_value_setting =\n\t\t\t\tthis.fieldObject.$setting( 'default_value' );\n\t\t\tvar $labelText = $return_format_setting\n\t\t\t\t.find( 'input[type=\"radio\"][value=\"string\"]' )\n\t\t\t\t.parent( 'label' )\n\t\t\t\t.contents()\n\t\t\t\t.last();\n\t\t\tvar $defaultPlaceholder =\n\t\t\t\t$default_value_setting.find( 'input[type=\"text\"]' );\n\t\t\tvar l10n = acf.get( 'colorPickerL10n' );\n\n\t\t\tif ( this.field.val() ) {\n\t\t\t\t$labelText.replaceWith( l10n.rgba_string );\n\t\t\t\t$defaultPlaceholder.attr(\n\t\t\t\t\t'placeholder',\n\t\t\t\t\t'rgba(255,255,255,0.8)'\n\t\t\t\t);\n\t\t\t} else {\n\t\t\t\t$labelText.replaceWith( l10n.hex_string );\n\t\t\t\t$defaultPlaceholder.attr( 'placeholder', '#FFFFFF' );\n\t\t\t}\n\t\t},\n\t} );\n\tacf.registerFieldSetting( ColorPickerReturnFormat );\n} )( jQuery );\n","( function ( $, undefined ) {\n\t/**\n\t * fieldGroupManager\n\t *\n\t * Generic field group functionality\n\t *\n\t * @date\t15/12/17\n\t * @since\t5.7.0\n\t *\n\t * @param\tvoid\n\t * @return\tvoid\n\t */\n\n\tvar fieldGroupManager = new acf.Model( {\n\t\tid: 'fieldGroupManager',\n\n\t\tevents: {\n\t\t\t'submit #post': 'onSubmit',\n\t\t\t'click a[href=\"#\"]': 'onClick',\n\t\t\t'click .acf-delete-field-group': 'onClickDeleteFieldGroup',\n\t\t\t'blur input#title': 'validateTitle',\n\t\t\t'input input#title': 'validateTitle',\n\t\t},\n\n\t\tfilters: {\n\t\t\tfind_fields_args: 'filterFindFieldArgs',\n\t\t\tfind_fields_selector: 'filterFindFieldsSelector',\n\t\t},\n\n\t\tinitialize: function () {\n\t\t\tacf.addAction( 'prepare', this.maybeInitNewFieldGroup );\n\t\t\tacf.add_filter( 'select2_args', this.setBidirectionalSelect2Args );\n\t\t\tacf.add_filter(\n\t\t\t\t'select2_ajax_data',\n\t\t\t\tthis.setBidirectionalSelect2AjaxDataArgs\n\t\t\t);\n\t\t},\n\n\t\tsetBidirectionalSelect2Args: function (\n\t\t\targs,\n\t\t\t$select,\n\t\t\tsettings,\n\t\t\tfield,\n\t\t\tinstance\n\t\t) {\n\t\t\tif ( field?.data?.( 'key' ) !== 'bidirectional_target' ) return args;\n\n\t\t\targs.dropdownCssClass = 'field-type-select-results';\n\n\t\t\targs.templateResult = function ( selection ) {\n\t\t\t\tif ( 'undefined' !== typeof selection.element ) {\n\t\t\t\t\treturn selection;\n\t\t\t\t}\n\n\t\t\t\tif ( selection.children ) {\n\t\t\t\t\treturn selection.text;\n\t\t\t\t}\n\n\t\t\t\tif (\n\t\t\t\t\tselection.loading ||\n\t\t\t\t\t( selection.element &&\n\t\t\t\t\t\tselection.element.nodeName === 'OPTGROUP' )\n\t\t\t\t) {\n\t\t\t\t\tvar $selection = $( '' );\n\t\t\t\t\t$selection.html( acf.escHtml( selection.text ) );\n\t\t\t\t\treturn $selection;\n\t\t\t\t}\n\n\t\t\t\tif (\n\t\t\t\t\t'undefined' === typeof selection.human_field_type ||\n\t\t\t\t\t'undefined' === typeof selection.field_type ||\n\t\t\t\t\t'undefined' === typeof selection.this_field\n\t\t\t\t) {\n\t\t\t\t\treturn selection.text;\n\t\t\t\t}\n\n\t\t\t\tvar $selection = $(\n\t\t\t\t\t'' +\n\t\t\t\t\t\tacf.escHtml( selection.text ) +\n\t\t\t\t\t\t''\n\t\t\t\t);\n\t\t\t\tif ( selection.this_field ) {\n\t\t\t\t\t$selection\n\t\t\t\t\t\t.last()\n\t\t\t\t\t\t.append(\n\t\t\t\t\t\t\t'' +\n\t\t\t\t\t\t\t\tacf.__( 'This Field' ) +\n\t\t\t\t\t\t\t\t''\n\t\t\t\t\t\t);\n\t\t\t\t}\n\t\t\t\t$selection.data( 'element', selection.element );\n\t\t\t\treturn $selection;\n\t\t\t};\n\n\t\t\treturn args;\n\t\t},\n\n\t\tsetBidirectionalSelect2AjaxDataArgs: function (\n\t\t\tdata,\n\t\t\targs,\n\t\t\t$input,\n\t\t\tfield,\n\t\t\tinstance\n\t\t) {\n\t\t\tif ( data.field_key !== 'bidirectional_target' ) return data;\n\n\t\t\tconst $fieldObject = acf.findFieldObjects( { child: field } );\n\t\t\tconst fieldObject = acf.getFieldObject( $fieldObject );\n\t\t\tdata.field_key = '_acf_bidirectional_target';\n\t\t\tdata.parent_key = fieldObject.get( 'key' );\n\t\t\tdata.field_type = fieldObject.get( 'type' );\n\n\t\t\t// This might not be needed, but I wanted to figure out how to get a field setting in the JS API when the key isn't unique.\n\t\t\tdata.post_type = acf\n\t\t\t\t.getField(\n\t\t\t\t\tacf.findFields( { parent: $fieldObject, key: 'post_type' } )\n\t\t\t\t)\n\t\t\t\t.val();\n\n\t\t\treturn data;\n\t\t},\n\n\t\tmaybeInitNewFieldGroup: function () {\n\t\t\tlet $field_list_wrapper = $(\n\t\t\t\t'#acf-field-group-fields > .inside > .acf-field-list-wrap.acf-auto-add-field'\n\t\t\t);\n\n\t\t\tif ( $field_list_wrapper.length ) {\n\t\t\t\t$( '.acf-headerbar-actions .add-field' ).trigger( 'click' );\n\t\t\t\t$( '.acf-title-wrap #title' ).trigger( 'focus' );\n\t\t\t}\n\t\t},\n\n\t\tonSubmit: function ( e, $el ) {\n\t\t\t// vars\n\t\t\tvar $title = $( '.acf-title-wrap #title' );\n\n\t\t\t// empty\n\t\t\tif ( ! $title.val() ) {\n\t\t\t\t// prevent default\n\t\t\t\te.preventDefault();\n\n\t\t\t\t// unlock form\n\t\t\t\tacf.unlockForm( $el );\n\n\t\t\t\t// focus\n\t\t\t\t$title.trigger( 'focus' );\n\t\t\t}\n\t\t},\n\n\t\tonClick: function ( e ) {\n\t\t\te.preventDefault();\n\t\t},\n\n\t\tonClickDeleteFieldGroup: function ( e, $el ) {\n\t\t\te.preventDefault();\n\t\t\t$el.addClass( '-hover' );\n\n\t\t\t// Add confirmation tooltip.\n\t\t\tacf.newTooltip( {\n\t\t\t\tconfirm: true,\n\t\t\t\ttarget: $el,\n\t\t\t\tcontext: this,\n\t\t\t\ttext: acf.__( 'Move field group to trash?' ),\n\t\t\t\tconfirm: function () {\n\t\t\t\t\twindow.location.href = $el.attr( 'href' );\n\t\t\t\t},\n\t\t\t\tcancel: function () {\n\t\t\t\t\t$el.removeClass( '-hover' );\n\t\t\t\t},\n\t\t\t} );\n\t\t},\n\n\t\tvalidateTitle: function ( e, $el ) {\n\t\t\tlet $submitButton = $( '.acf-publish' );\n\n\t\t\tif ( ! $el.val() ) {\n\t\t\t\t$el.addClass( 'acf-input-error' );\n\t\t\t\t$submitButton.addClass( 'disabled' );\n\t\t\t\t$( '.acf-publish' ).addClass( 'disabled' );\n\t\t\t} else {\n\t\t\t\t$el.removeClass( 'acf-input-error' );\n\t\t\t\t$submitButton.removeClass( 'disabled' );\n\t\t\t\t$( '.acf-publish' ).removeClass( 'disabled' );\n\t\t\t}\n\t\t},\n\n\t\tfilterFindFieldArgs: function ( args ) {\n\t\t\targs.visible = true;\n\n\t\t\tif (\n\t\t\t\targs.parent &&\n\t\t\t\t( args.parent.hasClass( 'acf-field-object' ) ||\n\t\t\t\t\targs.parent.hasClass( 'acf-browse-fields-modal-wrap' ) ||\n\t\t\t\t\targs.parent.parents( '.acf-field-object' ).length )\n\t\t\t) {\n\t\t\t\targs.visible = false;\n\t\t\t\targs.excludeSubFields = true;\n\t\t\t}\n\n\t\t\t// If the field has any open subfields, don't exclude subfields as they're already being displayed.\n\t\t\tif (\n\t\t\t\targs.parent &&\n\t\t\t\targs.parent.find( '.acf-field-object.open' ).length\n\t\t\t) {\n\t\t\t\targs.excludeSubFields = false;\n\t\t\t}\n\n\t\t\treturn args;\n\t\t},\n\n\t\tfilterFindFieldsSelector: function ( selector ) {\n\t\t\treturn selector + ', .acf-field-acf-field-group-settings-tabs';\n\t\t},\n\t} );\n\n\t/**\n\t * screenOptionsManager\n\t *\n\t * Screen options functionality\n\t *\n\t * @date\t15/12/17\n\t * @since\t5.7.0\n\t *\n\t * @param\tvoid\n\t * @return\tvoid\n\t */\n\n\tvar screenOptionsManager = new acf.Model( {\n\t\tid: 'screenOptionsManager',\n\t\twait: 'prepare',\n\n\t\tevents: {\n\t\t\t'change #acf-field-key-hide': 'onFieldKeysChange',\n\t\t\t'change #acf-field-settings-tabs': 'onFieldSettingsTabsChange',\n\t\t\t'change [name=\"screen_columns\"]': 'render',\n\t\t},\n\n\t\tinitialize: function () {\n\t\t\t// vars\n\t\t\tvar $div = $( '#adv-settings' );\n\t\t\tvar $append = $( '#acf-append-show-on-screen' );\n\n\t\t\t// append\n\t\t\t$div.find( '.metabox-prefs' ).append( $append.html() );\n\t\t\t$div.find( '.metabox-prefs br' ).remove();\n\n\t\t\t// clean up\n\t\t\t$append.remove();\n\n\t\t\t// initialize\n\t\t\tthis.$el = $( '#screen-options-wrap' );\n\n\t\t\t// render\n\t\t\tthis.render();\n\t\t},\n\n\t\tisFieldKeysChecked: function () {\n\t\t\treturn this.$el.find( '#acf-field-key-hide' ).prop( 'checked' );\n\t\t},\n\n\t\tisFieldSettingsTabsChecked: function () {\n\t\t\tconst $input = this.$el.find( '#acf-field-settings-tabs' );\n\n\t\t\t// Screen option is hidden by filter.\n\t\t\tif ( ! $input.length ) {\n\t\t\t\treturn false;\n\t\t\t}\n\n\t\t\treturn $input.prop( 'checked' );\n\t\t},\n\n\t\tgetSelectedColumnCount: function () {\n\t\t\treturn this.$el\n\t\t\t\t.find( 'input[name=\"screen_columns\"]:checked' )\n\t\t\t\t.val();\n\t\t},\n\n\t\tonFieldKeysChange: function ( e, $el ) {\n\t\t\tvar val = this.isFieldKeysChecked() ? 1 : 0;\n\t\t\tacf.updateUserSetting( 'show_field_keys', val );\n\t\t\tthis.render();\n\t\t},\n\n\t\tonFieldSettingsTabsChange: function () {\n\t\t\tconst val = this.isFieldSettingsTabsChecked() ? 1 : 0;\n\t\t\tacf.updateUserSetting( 'show_field_settings_tabs', val );\n\t\t\tthis.render();\n\t\t},\n\n\t\trender: function () {\n\t\t\tif ( this.isFieldKeysChecked() ) {\n\t\t\t\t$( '#acf-field-group-fields' ).addClass( 'show-field-keys' );\n\t\t\t} else {\n\t\t\t\t$( '#acf-field-group-fields' ).removeClass( 'show-field-keys' );\n\t\t\t}\n\n\t\t\tif ( ! this.isFieldSettingsTabsChecked() ) {\n\t\t\t\t$( '#acf-field-group-fields' ).addClass( 'hide-tabs' );\n\t\t\t\t$( '.acf-field-settings-main' )\n\t\t\t\t\t.removeClass( 'acf-hidden' )\n\t\t\t\t\t.prop( 'hidden', false );\n\t\t\t} else {\n\t\t\t\t$( '#acf-field-group-fields' ).removeClass( 'hide-tabs' );\n\n\t\t\t\t$( '.acf-field-object' ).each( function () {\n\t\t\t\t\tconst tabFields = acf.getFields( {\n\t\t\t\t\t\ttype: 'tab',\n\t\t\t\t\t\tparent: $( this ),\n\t\t\t\t\t\texcludeSubFields: true,\n\t\t\t\t\t\tlimit: 1,\n\t\t\t\t\t} );\n\n\t\t\t\t\tif ( tabFields.length ) {\n\t\t\t\t\t\ttabFields[ 0 ].tabs.set( 'initialized', false );\n\t\t\t\t\t}\n\n\t\t\t\t\tacf.doAction( 'show', $( this ) );\n\t\t\t\t} );\n\t\t\t}\n\n\t\t\tif ( this.getSelectedColumnCount() == 1 ) {\n\t\t\t\t$( 'body' ).removeClass( 'columns-2' );\n\t\t\t\t$( 'body' ).addClass( 'columns-1' );\n\t\t\t} else {\n\t\t\t\t$( 'body' ).removeClass( 'columns-1' );\n\t\t\t\t$( 'body' ).addClass( 'columns-2' );\n\t\t\t}\n\t\t},\n\t} );\n\n\t/**\n\t * appendFieldManager\n\t *\n\t * Appends fields together\n\t *\n\t * @date\t15/12/17\n\t * @since\t5.7.0\n\t *\n\t * @param\tvoid\n\t * @return\tvoid\n\t */\n\n\tvar appendFieldManager = new acf.Model( {\n\t\tactions: {\n\t\t\tnew_field: 'onNewField',\n\t\t},\n\n\t\tonNewField: function ( field ) {\n\t\t\t// bail early if not append\n\t\t\tif ( ! field.has( 'append' ) ) return;\n\n\t\t\t// vars\n\t\t\tvar append = field.get( 'append' );\n\t\t\tvar $sibling = field.$el\n\t\t\t\t.siblings( '[data-name=\"' + append + '\"]' )\n\t\t\t\t.first();\n\n\t\t\t// bail early if no sibling\n\t\t\tif ( ! $sibling.length ) return;\n\n\t\t\t// ul\n\t\t\tvar $div = $sibling.children( '.acf-input' );\n\t\t\tvar $ul = $div.children( 'ul' );\n\n\t\t\t// create ul\n\t\t\tif ( ! $ul.length ) {\n\t\t\t\t$div.wrapInner( '' );\n\t\t\t\t$ul = $div.children( 'ul' );\n\t\t\t}\n\n\t\t\t// li\n\t\t\tvar html = field.$( '.acf-input' ).html();\n\t\t\tvar $li = $( '
  • ' + html + '
  • ' );\n\t\t\t$ul.append( $li );\n\t\t\t$ul.attr( 'data-cols', $ul.children().length );\n\n\t\t\t// clean up\n\t\t\tfield.remove();\n\t\t},\n\t} );\n} )( jQuery );\n","import toPropertyKey from \"./toPropertyKey.js\";\nexport default function _defineProperty(obj, key, value) {\n key = toPropertyKey(key);\n if (key in obj) {\n Object.defineProperty(obj, key, {\n value: value,\n enumerable: true,\n configurable: true,\n writable: true\n });\n } else {\n obj[key] = value;\n }\n return obj;\n}","import _typeof from \"./typeof.js\";\nexport default function _toPrimitive(input, hint) {\n if (_typeof(input) !== \"object\" || input === null) return input;\n var prim = input[Symbol.toPrimitive];\n if (prim !== undefined) {\n var res = prim.call(input, hint || \"default\");\n if (_typeof(res) !== \"object\") return res;\n throw new TypeError(\"@@toPrimitive must return a primitive value.\");\n }\n return (hint === \"string\" ? String : Number)(input);\n}","import _typeof from \"./typeof.js\";\nimport toPrimitive from \"./toPrimitive.js\";\nexport default function _toPropertyKey(arg) {\n var key = toPrimitive(arg, \"string\");\n return _typeof(key) === \"symbol\" ? key : String(key);\n}","export default function _typeof(o) {\n \"@babel/helpers - typeof\";\n\n return _typeof = \"function\" == typeof Symbol && \"symbol\" == typeof Symbol.iterator ? function (o) {\n return typeof o;\n } : function (o) {\n return o && \"function\" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? \"symbol\" : typeof o;\n }, _typeof(o);\n}","// The module cache\nvar __webpack_module_cache__ = {};\n\n// The require function\nfunction __webpack_require__(moduleId) {\n\t// Check if module is in cache\n\tvar cachedModule = __webpack_module_cache__[moduleId];\n\tif (cachedModule !== undefined) {\n\t\treturn cachedModule.exports;\n\t}\n\t// Create a new module (and put it into the cache)\n\tvar module = __webpack_module_cache__[moduleId] = {\n\t\t// no module.id needed\n\t\t// no module.loaded needed\n\t\texports: {}\n\t};\n\n\t// Execute the module function\n\t__webpack_modules__[moduleId](module, module.exports, __webpack_require__);\n\n\t// Return the exports of the module\n\treturn module.exports;\n}\n\n","// getDefaultExport function for compatibility with non-harmony modules\n__webpack_require__.n = (module) => {\n\tvar getter = module && module.__esModule ?\n\t\t() => (module['default']) :\n\t\t() => (module);\n\t__webpack_require__.d(getter, { a: getter });\n\treturn getter;\n};","// define getter functions for harmony exports\n__webpack_require__.d = (exports, definition) => {\n\tfor(var key in definition) {\n\t\tif(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {\n\t\t\tObject.defineProperty(exports, key, { enumerable: true, get: definition[key] });\n\t\t}\n\t}\n};","__webpack_require__.o = (obj, prop) => (Object.prototype.hasOwnProperty.call(obj, prop))","// define __esModule on exports\n__webpack_require__.r = (exports) => {\n\tif(typeof Symbol !== 'undefined' && Symbol.toStringTag) {\n\t\tObject.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });\n\t}\n\tObject.defineProperty(exports, '__esModule', { value: true });\n};","import './_field-group.js';\nimport './_field-group-field.js';\nimport './_field-group-settings.js';\nimport './_field-group-conditions.js';\nimport './_field-group-fields.js';\nimport './_field-group-locations.js';\nimport './_field-group-compatibility.js';\nimport './_browse-fields-modal.js';\n"],"names":["$","undefined","acf","browseFieldsModal","data","openedBy","currentFieldType","popularFieldTypes","events","setup","props","extend","$el","tmpl","render","initialize","open","lockFocusToModal","find","focus","doAction","html","getFieldTypes","category","search","fieldTypes","get","Object","values","_objectSpread","filter","fieldType","includes","name","pro","label","toLowerCase","labelParts","split","match","startsWith","length","forEach","part","$tabs","self","each","append","getFieldTypeHTML","initializeFieldLabel","initializeFieldType","onChangeFieldType","iconName","replaceAll","decodeFieldTypeURL","url","renderFieldTypeDesc","fieldTypeInfo","fieldTypeFilter","args","parseArgs","description","doc_url","tutorial_url","preview_image","text","attr","show","hide","parent","isPro","$upgateToProButton","$upgradeToUnlockButton","_fieldObject$data","fieldObject","type","set","isFieldTypePopular","selectedFieldType","x","uppercaseCategory","toUpperCase","slice","searchTabElement","setTimeout","click","labelText","$fieldLabel","val","updateFieldObjectFieldLabel","trigger","removeClass","addClass","onSearchFieldTypes","e","$modal","inputVal","searchString","resultsHtml","matches","trim","onClickBrowsePopular","first","onClickSelectField","$fieldTypeSelect","close","onClickFieldType","$fieldType","currentTarget","onClickClose","onPressEscapeClose","key","returnFocusToOrigin","remove","models","Modal","newBrowseFieldsModal","window","jQuery","_acf","getCompatibility","field_group","save_field","$field","getFieldObject","save","delete_field","animate","delete","update_field_meta","value","prop","delete_field_meta","field_object","model","o","$settings","tag","tags","splice","join","selector","str_replace","_add_action","callback","add_action","apply","arguments","_add_filter","add_filter","_add_event","event","substr","indexOf","context","document","on","closest","_set_$field","setting","actionManager","Model","actions","open_field_object","close_field_object","add_field_object","duplicate_field_object","delete_field_object","change_field_object_type","change_field_object_label","change_field_object_name","change_field_object_parent","sortstop_field_object","onOpenFieldObject","field","onCloseFieldObject","onAddFieldObject","onDuplicateFieldObject","onDeleteFieldObject","onChangeFieldObjectType","onChangeFieldObjectLabel","onChangeFieldObjectName","onChangeFieldObjectParent","ConditionalLogicFieldSetting","FieldSetting","$rule","scope","ruleData","$input","$td","$toggle","$control","$groups","$rules","$tabLabel","$div","enable","disable","renderRules","renderRule","renderField","renderOperator","renderValue","choices","validFieldTypes","cid","$select","getFieldObjects","map","choice","id","getKey","getLabel","__","disabled","conditionTypes","getConditionTypes","getType","indents","getParents","repeat","push","renderSelect","findFieldObject","prototype","operator","conditionType","Array","$newSelect","detach","onChangeToggle","onClickAddGroup","addGroup","$group","$group2","duplicate","not","onFocusField","onChangeField","onChangeOperator","onClickAdd","onClickRemove","siblings","registerFieldSetting","conditionalLogicHelper","duplicate_field_objects","onDuplicateFieldObjects","children","newField","prevField","$selects","child","add","FieldObject","eventScope","fieldTypeSelect2","change","changed","inherit","getInputId","$meta","$handle","$setting","getParent","limit","pop","getFields","getInputName","newInput","inputId","inputName","getProp","has","setProp","prevVal","keys","getName","getTypeLabel","types","checkCopyable","makeCopyable","navigator","clipboard","initializeFieldTypeSelect2","hasClass","fn","select2","amd","require","err","console","warn","newSelect2","ajax","multiple","allowNull","suppressFilters","dropdownCssClass","templateResult","selection","loading","element","nodeName","$selection","escHtml","templateSelection","target","parents","onKeyDownSelect","addProFields","PROFieldTypes","$layoutGroup","$contentGroup","entries","$useGroup","menu_order","required","parseInt","strSlugify","refresh","isOpen","onClickCopy","stopPropagation","is","copyValue","writeText","then","onClickEdit","$target","onChangeSettingsTab","onFocusEdit","$rowOptions","onBlurEdit","focusDelayMilliseconds","$rowOptionsBlurElement","$rowOptionsFocusElement","activeElement","hideEmptyTabs","slideDown","which","slideUp","serialize","submit","onChange","onChanged","onChangeLabel","applyFilters","strSanitize","onChangeName","alert","onChangeRequired","newVal","removeAnimate","onClickDelete","shiftKey","tooltip","newTooltip","confirmRemove","confirm","cancel","$list","$fields","findFieldObjects","sibling","endHeight","complete","newKey","uniqid","$newField","replace","end","copy","isNumeric","i","$label","wipe","prevId","prevKey","rename","move","hasChanged","popup","step1","newPopup","title","width","ajaxData","action","field_id","prepareForAjax","dataType","success","step2","content","step3","preventDefault","startButtonLoading","field_group_id","step4","wp","a11y","speak","browseFields","modal","onChangeType","changeTimeout","clearTimeout","changeType","newType","prevType","prevClass","newClass","abort","$oldSettings","tab","$tabSettings","removeData","$newSettings","showFieldTypeSettings","$loading","before","prefix","xhr","response","isAjaxSuccess","settings","tabs","$tab","tabContent","prepend","updateParent","ID","$tabContent","tabName","$tabLink","list","newFieldObject","fields","eventManager","priority","addFieldActions","pluralAction","singleAction","singleEvent","fieldObjects","arrayArgs","pluralCallback","unshift","singleCallback","variations","variation","addAction","fieldManager","removed_field_object","onSubmit","setFieldMenuOrder","renderFields","onHoverSortable","sortable","helper","clone","currentName","Math","random","toString","handle","connectWith","start","ui","item","placeholder","height","update","onRemovedField","onReorderField","onDeleteField","onDuplicateField","eq","addField","$el2","$type","locationManager","wait","addProLocations","updateGroupsClass","PROLocationTypes","$formsGroup","onClickAddRule","addRule","onClickRemoveRule","removeRule","onChangeRemoveRule","changeRule","$tr","ajaxdata","rule","group","replaceWith","$ruleGroups","rows_count","modelId","strPascalCase","proto","mid","newFieldSetting","getFieldSetting","getField","settingsManager","new_field","onNewField","$fieldObject","EndpointFieldSetting","$endpoint_setting","$endpoint_field","AccordionEndpointFieldSetting","TabEndpointFieldSetting","DisplayFormatFieldSetting","DatePickerDisplayFormatFieldSetting","DatePickerReturnFormatFieldSetting","DateTimePickerDisplayFormatFieldSetting","DateTimePickerReturnFormatFieldSetting","TimePickerDisplayFormatFieldSetting","TimePickerReturnFormatFieldSetting","ColorPickerReturnFormat","$return_format_setting","$default_value_setting","$labelText","contents","last","$defaultPlaceholder","l10n","rgba_string","hex_string","fieldGroupManager","filters","find_fields_args","find_fields_selector","maybeInitNewFieldGroup","setBidirectionalSelect2Args","setBidirectionalSelect2AjaxDataArgs","instance","_field$data","call","human_field_type","field_type","this_field","field_key","parent_key","post_type","findFields","$field_list_wrapper","$title","unlockForm","onClick","onClickDeleteFieldGroup","location","href","validateTitle","$submitButton","filterFindFieldArgs","visible","excludeSubFields","filterFindFieldsSelector","screenOptionsManager","$append","isFieldKeysChecked","isFieldSettingsTabsChecked","getSelectedColumnCount","onFieldKeysChange","updateUserSetting","onFieldSettingsTabsChange","tabFields","appendFieldManager","$sibling","$ul","wrapInner","$li"],"sourceRoot":""} \ No newline at end of file +{"version":3,"file":"acf-field-group.js","mappings":"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","sources":["webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/js/_browse-fields-modal.js","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/js/_field-group-compatibility.js","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/js/_field-group-conditions.js","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/js/_field-group-field.js","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/js/_field-group-fields.js","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/js/_field-group-locations.js","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/js/_field-group-settings.js","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/js/_field-group.js","webpack://advanced-custom-fields-pro/./node_modules/@babel/runtime/helpers/esm/defineProperty.js","webpack://advanced-custom-fields-pro/./node_modules/@babel/runtime/helpers/esm/toPrimitive.js","webpack://advanced-custom-fields-pro/./node_modules/@babel/runtime/helpers/esm/toPropertyKey.js","webpack://advanced-custom-fields-pro/./node_modules/@babel/runtime/helpers/esm/typeof.js","webpack://advanced-custom-fields-pro/webpack/bootstrap","webpack://advanced-custom-fields-pro/webpack/runtime/compat get default export","webpack://advanced-custom-fields-pro/webpack/runtime/define property getters","webpack://advanced-custom-fields-pro/webpack/runtime/hasOwnProperty shorthand","webpack://advanced-custom-fields-pro/webpack/runtime/make namespace object","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/js/acf-field-group.js"],"sourcesContent":["/**\n * Extends acf.models.Modal to create the field browser.\n *\n * @package Advanced Custom Fields\n */\n\n( function ( $, undefined, acf ) {\n\tconst browseFieldsModal = {\n\t\tdata: {\n\t\t\topenedBy: null,\n\t\t\tcurrentFieldType: null,\n\t\t\tpopularFieldTypes: [\n\t\t\t\t'text',\n\t\t\t\t'textarea',\n\t\t\t\t'email',\n\t\t\t\t'url',\n\t\t\t\t'file',\n\t\t\t\t'gallery',\n\t\t\t\t'select',\n\t\t\t\t'true_false',\n\t\t\t\t'link',\n\t\t\t\t'post_object',\n\t\t\t\t'relationship',\n\t\t\t\t'repeater',\n\t\t\t\t'flexible_content',\n\t\t\t\t'clone',\n\t\t\t],\n\t\t},\n\n\t\tevents: {\n\t\t\t'click .acf-modal-close': 'onClickClose',\n\t\t\t'keydown .acf-browse-fields-modal': 'onPressEscapeClose',\n\t\t\t'click .acf-select-field': 'onClickSelectField',\n\t\t\t'click .acf-field-type': 'onClickFieldType',\n\t\t\t'changed:currentFieldType': 'onChangeFieldType',\n\t\t\t'input .acf-search-field-types': 'onSearchFieldTypes',\n\t\t\t'click .acf-browse-popular-fields': 'onClickBrowsePopular',\n\t\t},\n\n\t\tsetup: function ( props ) {\n\t\t\t$.extend( this.data, props );\n\t\t\tthis.$el = $( this.tmpl() );\n\t\t\tthis.render();\n\t\t},\n\n\t\tinitialize: function () {\n\t\t\tthis.open();\n\t\t\tthis.lockFocusToModal( true );\n\t\t\tthis.$el.find( '.acf-modal-title' ).focus();\n\t\t\tacf.doAction( 'show', this.$el );\n\t\t},\n\n\t\ttmpl: function () {\n\t\t\treturn $( '#tmpl-acf-browse-fields-modal' ).html();\n\t\t},\n\n\t\tgetFieldTypes: function ( category, search ) {\n\t\t\tlet fieldTypes;\n\t\t\tif ( ! acf.get( 'is_pro' ) ) {\n\t\t\t\t// Add in the pro fields.\n\t\t\t\tfieldTypes = Object.values( {\n\t\t\t\t\t...acf.get( 'fieldTypes' ),\n\t\t\t\t\t...acf.get( 'PROFieldTypes' ),\n\t\t\t\t} );\n\t\t\t} else {\n\t\t\t\tfieldTypes = Object.values( acf.get( 'fieldTypes' ) );\n\t\t\t}\n\n\t\t\tif ( category ) {\n\t\t\t\tif ( 'popular' === category ) {\n\t\t\t\t\treturn fieldTypes.filter( ( fieldType ) =>\n\t\t\t\t\t\tthis.get( 'popularFieldTypes' ).includes(\n\t\t\t\t\t\t\tfieldType.name\n\t\t\t\t\t\t)\n\t\t\t\t\t);\n\t\t\t\t}\n\n\t\t\t\tif ( 'pro' === category ) {\n\t\t\t\t\treturn fieldTypes.filter( ( fieldType ) => fieldType.pro );\n\t\t\t\t}\n\n\t\t\t\tfieldTypes = fieldTypes.filter(\n\t\t\t\t\t( fieldType ) => fieldType.category === category\n\t\t\t\t);\n\t\t\t}\n\n\t\t\tif ( search ) {\n\t\t\t\tfieldTypes = fieldTypes.filter( ( fieldType ) => {\n\t\t\t\t\tconst label = fieldType.label.toLowerCase();\n\t\t\t\t\tconst labelParts = label.split( ' ' );\n\t\t\t\t\tlet match = false;\n\n\t\t\t\t\tif ( label.startsWith( search.toLowerCase() ) ) {\n\t\t\t\t\t\tmatch = true;\n\t\t\t\t\t} else if ( labelParts.length > 1 ) {\n\t\t\t\t\t\tlabelParts.forEach( ( part ) => {\n\t\t\t\t\t\t\tif ( part.startsWith( search.toLowerCase() ) ) {\n\t\t\t\t\t\t\t\tmatch = true;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t} );\n\t\t\t\t\t}\n\n\t\t\t\t\treturn match;\n\t\t\t\t} );\n\t\t\t}\n\n\t\t\treturn fieldTypes;\n\t\t},\n\n\t\trender: function () {\n\t\t\tacf.doAction( 'append', this.$el );\n\n\t\t\tconst $tabs = this.$el.find( '.acf-field-types-tab' );\n\t\t\tconst self = this;\n\n\t\t\t$tabs.each( function () {\n\t\t\t\tconst category = $( this ).data( 'category' );\n\t\t\t\tconst fieldTypes = self.getFieldTypes( category );\n\t\t\t\tfieldTypes.forEach( ( fieldType ) => {\n\t\t\t\t\t$( this ).append( self.getFieldTypeHTML( fieldType ) );\n\t\t\t\t} );\n\t\t\t} );\n\n\t\t\tthis.initializeFieldLabel();\n\t\t\tthis.initializeFieldType();\n\t\t\tthis.onChangeFieldType();\n\t\t},\n\n\t\tgetFieldTypeHTML: function ( fieldType ) {\n\t\t\tconst iconName = fieldType.name.replaceAll( '_', '-' );\n\n\t\t\treturn `\n\t\t\t\n\t\t\t\t${\n\t\t\t\t\tfieldType.pro && ! acf.get( 'is_pro' )\n\t\t\t\t\t\t? 'PRO'\n\t\t\t\t\t\t: fieldType.pro\n\t\t\t\t\t\t? 'PRO'\n\t\t\t\t\t\t: ''\n\t\t\t\t}\n\t\t\t\t\n\t\t\t\t${ fieldType.label }\n\t\t\t\n\t\t\t`;\n\t\t},\n\n\t\tdecodeFieldTypeURL: function ( url ) {\n\t\t\tif ( typeof url != 'string' ) return url;\n\t\t\treturn url.replaceAll( '&', '&' );\n\t\t},\n\n\t\trenderFieldTypeDesc: function ( fieldType ) {\n\t\t\tconst fieldTypeInfo =\n\t\t\t\tthis.getFieldTypes().filter(\n\t\t\t\t\t( fieldTypeFilter ) => fieldTypeFilter.name === fieldType\n\t\t\t\t)[ 0 ] || {};\n\n\t\t\tconst args = acf.parseArgs( fieldTypeInfo, {\n\t\t\t\tlabel: '',\n\t\t\t\tdescription: '',\n\t\t\t\tdoc_url: false,\n\t\t\t\ttutorial_url: false,\n\t\t\t\tpreview_image: false,\n\t\t\t\tpro: false,\n\t\t\t} );\n\n\t\t\tthis.$el.find( '.field-type-name' ).text( args.label );\n\t\t\tthis.$el.find( '.field-type-desc' ).text( args.description );\n\n\t\t\tif ( args.doc_url ) {\n\t\t\t\tthis.$el\n\t\t\t\t\t.find( '.field-type-doc' )\n\t\t\t\t\t.attr( 'href', this.decodeFieldTypeURL( args.doc_url ) )\n\t\t\t\t\t.show();\n\t\t\t} else {\n\t\t\t\tthis.$el.find( '.field-type-doc' ).hide();\n\t\t\t}\n\n\t\t\tif ( args.tutorial_url ) {\n\t\t\t\tthis.$el\n\t\t\t\t\t.find( '.field-type-tutorial' )\n\t\t\t\t\t.attr(\n\t\t\t\t\t\t'href',\n\t\t\t\t\t\tthis.decodeFieldTypeURL( args.tutorial_url )\n\t\t\t\t\t)\n\t\t\t\t\t.parent()\n\t\t\t\t\t.show();\n\t\t\t} else {\n\t\t\t\tthis.$el.find( '.field-type-tutorial' ).parent().hide();\n\t\t\t}\n\n\t\t\tif ( args.preview_image ) {\n\t\t\t\tthis.$el\n\t\t\t\t\t.find( '.field-type-image' )\n\t\t\t\t\t.attr( 'src', args.preview_image )\n\t\t\t\t\t.show();\n\t\t\t} else {\n\t\t\t\tthis.$el.find( '.field-type-image' ).hide();\n\t\t\t}\n\n\t\t\tconst isPro = acf.get( 'is_pro' );\n\t\t\tconst $upgateToProButton = this.$el.find( '.acf-btn-pro' );\n\t\t\tconst $upgradeToUnlockButton = this.$el.find(\n\t\t\t\t'.field-type-upgrade-to-unlock'\n\t\t\t);\n\n\t\t\tif ( args.pro && ! isPro ) {\n\t\t\t\t$upgateToProButton.show();\n\t\t\t\t$upgateToProButton.attr(\n\t\t\t\t\t'href',\n\t\t\t\t\t$upgateToProButton.data( 'urlBase' ) + fieldType\n\t\t\t\t);\n\n\t\t\t\t$upgradeToUnlockButton.show();\n\t\t\t\t$upgradeToUnlockButton.attr(\n\t\t\t\t\t'href',\n\t\t\t\t\t$upgradeToUnlockButton.data( 'urlBase' ) + fieldType\n\t\t\t\t);\n\t\t\t\tthis.$el\n\t\t\t\t\t.find( '.acf-insert-field-label' )\n\t\t\t\t\t.attr( 'disabled', true );\n\t\t\t\tthis.$el.find( '.acf-select-field' ).hide();\n\t\t\t} else {\n\t\t\t\t$upgateToProButton.hide();\n\t\t\t\t$upgradeToUnlockButton.hide();\n\t\t\t\tthis.$el\n\t\t\t\t\t.find( '.acf-insert-field-label' )\n\t\t\t\t\t.attr( 'disabled', false );\n\t\t\t\tthis.$el.find( '.acf-select-field' ).show();\n\t\t\t}\n\t\t},\n\n\t\tinitializeFieldType: function () {\n\t\t\tconst fieldObject = this.get( 'openedBy' );\n\t\t\tconst fieldType = fieldObject?.data?.type;\n\n\t\t\t// Select default field type\n\t\t\tif ( fieldType ) {\n\t\t\t\tthis.set( 'currentFieldType', fieldType );\n\t\t\t} else {\n\t\t\t\tthis.set( 'currentFieldType', 'text' );\n\t\t\t}\n\n\t\t\t// Select first tab with selected field type\n\t\t\t// If type selected is wthin Popular, select Popular Tab\n\t\t\t// Else select first tab the type belongs\n\t\t\tconst fieldTypes = this.getFieldTypes();\n\t\t\tconst isFieldTypePopular =\n\t\t\t\tthis.get( 'popularFieldTypes' ).includes( fieldType );\n\n\t\t\tlet category = '';\n\t\t\tif ( isFieldTypePopular ) {\n\t\t\t\tcategory = 'popular';\n\t\t\t} else {\n\t\t\t\tconst selectedFieldType = fieldTypes.find( ( x ) => {\n\t\t\t\t\treturn x.name === fieldType;\n\t\t\t\t} );\n\n\t\t\t\tcategory = selectedFieldType.category;\n\t\t\t}\n\n\t\t\tconst uppercaseCategory =\n\t\t\t\tcategory[ 0 ].toUpperCase() + category.slice( 1 );\n\t\t\tconst searchTabElement = `.acf-modal-content .acf-tab-wrap a:contains('${ uppercaseCategory }')`;\n\t\t\tsetTimeout( () => {\n\t\t\t\t$( searchTabElement ).click();\n\t\t\t}, 0 );\n\t\t},\n\n\t\tinitializeFieldLabel: function () {\n\t\t\tconst fieldObject = this.get( 'openedBy' );\n\t\t\tconst labelText = fieldObject.$fieldLabel().val();\n\t\t\tconst $fieldLabel = this.$el.find( '.acf-insert-field-label' );\n\t\t\tif ( labelText ) {\n\t\t\t\t$fieldLabel.val( labelText );\n\t\t\t} else {\n\t\t\t\t$fieldLabel.val( '' );\n\t\t\t}\n\t\t},\n\n\t\tupdateFieldObjectFieldLabel: function () {\n\t\t\tconst label = this.$el.find( '.acf-insert-field-label' ).val();\n\t\t\tconst fieldObject = this.get( 'openedBy' );\n\t\t\tfieldObject.$fieldLabel().val( label );\n\t\t\tfieldObject.$fieldLabel().trigger( 'blur' );\n\t\t},\n\n\t\tonChangeFieldType: function () {\n\t\t\tconst fieldType = this.get( 'currentFieldType' );\n\n\t\t\tthis.$el.find( '.selected' ).removeClass( 'selected' );\n\t\t\tthis.$el\n\t\t\t\t.find( '.acf-field-type[data-field-type=\"' + fieldType + '\"]' )\n\t\t\t\t.addClass( 'selected' );\n\n\t\t\tthis.renderFieldTypeDesc( fieldType );\n\t\t},\n\n\t\tonSearchFieldTypes: function ( e ) {\n\t\t\tconst $modal = this.$el.find( '.acf-browse-fields-modal' );\n\t\t\tconst inputVal = this.$el.find( '.acf-search-field-types' ).val();\n\t\t\tconst self = this;\n\t\t\tlet searchString,\n\t\t\t\tresultsHtml = '';\n\t\t\tlet matches = [];\n\n\t\t\tif ( 'string' === typeof inputVal ) {\n\t\t\t\tsearchString = inputVal.trim();\n\t\t\t\tmatches = this.getFieldTypes( false, searchString );\n\t\t\t}\n\n\t\t\tif ( searchString.length && matches.length ) {\n\t\t\t\t$modal.addClass( 'is-searching' );\n\t\t\t} else {\n\t\t\t\t$modal.removeClass( 'is-searching' );\n\t\t\t}\n\n\t\t\tif ( ! matches.length ) {\n\t\t\t\t$modal.addClass( 'no-results-found' );\n\t\t\t\tthis.$el\n\t\t\t\t\t.find( '.acf-invalid-search-term' )\n\t\t\t\t\t.text( searchString );\n\t\t\t\treturn;\n\t\t\t} else {\n\t\t\t\t$modal.removeClass( 'no-results-found' );\n\t\t\t}\n\n\t\t\tmatches.forEach( ( fieldType ) => {\n\t\t\t\tresultsHtml = resultsHtml + self.getFieldTypeHTML( fieldType );\n\t\t\t} );\n\n\t\t\t$( '.acf-field-type-search-results' ).html( resultsHtml );\n\n\t\t\tthis.set( 'currentFieldType', matches[ 0 ].name );\n\t\t\tthis.onChangeFieldType();\n\t\t},\n\n\t\tonClickBrowsePopular: function () {\n\t\t\tthis.$el\n\t\t\t\t.find( '.acf-search-field-types' )\n\t\t\t\t.val( '' )\n\t\t\t\t.trigger( 'input' );\n\t\t\tthis.$el.find( '.acf-tab-wrap a' ).first().trigger( 'click' );\n\t\t},\n\n\t\tonClickSelectField: function ( e ) {\n\t\t\tconst fieldObject = this.get( 'openedBy' );\n\n\t\t\tfieldObject\n\t\t\t\t.$fieldTypeSelect()\n\t\t\t\t.val( this.get( 'currentFieldType' ) );\n\t\t\tfieldObject.$fieldTypeSelect().trigger( 'change' );\n\n\t\t\tthis.updateFieldObjectFieldLabel();\n\n\t\t\tthis.close();\n\t\t},\n\n\t\tonClickFieldType: function ( e ) {\n\t\t\tconst $fieldType = $( e.currentTarget );\n\t\t\tthis.set( 'currentFieldType', $fieldType.data( 'field-type' ) );\n\t\t},\n\n\t\tonClickClose: function () {\n\t\t\tthis.close();\n\t\t},\n\n\t\tonPressEscapeClose: function ( e ) {\n\t\t\tif ( e.key === 'Escape' ) {\n\t\t\t\tthis.close();\n\t\t\t}\n\t\t},\n\n\t\tclose: function () {\n\t\t\tthis.lockFocusToModal( false );\n\t\t\tthis.returnFocusToOrigin();\n\t\t\tthis.remove();\n\t\t},\n\n\t\tfocus: function () {\n\t\t\tthis.$el.find( 'button' ).first().trigger( 'focus' );\n\t\t},\n\t};\n\n\tacf.models.browseFieldsModal = acf.models.Modal.extend( browseFieldsModal );\n\tacf.newBrowseFieldsModal = ( props ) =>\n\t\tnew acf.models.browseFieldsModal( props );\n} )( window.jQuery, undefined, window.acf );\n","( function ( $, undefined ) {\n\tvar _acf = acf.getCompatibility( acf );\n\n\t/**\n\t * fieldGroupCompatibility\n\t *\n\t * Compatibility layer for extinct acf.field_group\n\t *\n\t * @date\t15/12/17\n\t * @since\t5.7.0\n\t *\n\t * @param\tvoid\n\t * @return\tvoid\n\t */\n\n\t_acf.field_group = {\n\t\tsave_field: function ( $field, type ) {\n\t\t\ttype = type !== undefined ? type : 'settings';\n\t\t\tacf.getFieldObject( $field ).save( type );\n\t\t},\n\n\t\tdelete_field: function ( $field, animate ) {\n\t\t\tanimate = animate !== undefined ? animate : true;\n\t\t\tacf.getFieldObject( $field ).delete( {\n\t\t\t\tanimate: animate,\n\t\t\t} );\n\t\t},\n\n\t\tupdate_field_meta: function ( $field, name, value ) {\n\t\t\tacf.getFieldObject( $field ).prop( name, value );\n\t\t},\n\n\t\tdelete_field_meta: function ( $field, name ) {\n\t\t\tacf.getFieldObject( $field ).prop( name, null );\n\t\t},\n\t};\n\n\t/**\n\t * fieldGroupCompatibility.field_object\n\t *\n\t * Compatibility layer for extinct acf.field_group.field_object\n\t *\n\t * @date\t15/12/17\n\t * @since\t5.7.0\n\t *\n\t * @param\tvoid\n\t * @return\tvoid\n\t */\n\n\t_acf.field_group.field_object = acf.model.extend( {\n\t\t// vars\n\t\ttype: '',\n\t\to: {},\n\t\t$field: null,\n\t\t$settings: null,\n\n\t\ttag: function ( tag ) {\n\t\t\t// vars\n\t\t\tvar type = this.type;\n\n\t\t\t// explode, add 'field' and implode\n\t\t\t// - open \t\t\t=> open_field\n\t\t\t// - change_type\t=> change_field_type\n\t\t\tvar tags = tag.split( '_' );\n\t\t\ttags.splice( 1, 0, 'field' );\n\t\t\ttag = tags.join( '_' );\n\n\t\t\t// add type\n\t\t\tif ( type ) {\n\t\t\t\ttag += '/type=' + type;\n\t\t\t}\n\n\t\t\t// return\n\t\t\treturn tag;\n\t\t},\n\n\t\tselector: function () {\n\t\t\t// vars\n\t\t\tvar selector = '.acf-field-object';\n\t\t\tvar type = this.type;\n\n\t\t\t// add type\n\t\t\tif ( type ) {\n\t\t\t\tselector += '-' + type;\n\t\t\t\tselector = acf.str_replace( '_', '-', selector );\n\t\t\t}\n\n\t\t\t// return\n\t\t\treturn selector;\n\t\t},\n\n\t\t_add_action: function ( name, callback ) {\n\t\t\t// vars\n\t\t\tvar model = this;\n\n\t\t\t// add action\n\t\t\tacf.add_action( this.tag( name ), function ( $field ) {\n\t\t\t\t// focus\n\t\t\t\tmodel.set( '$field', $field );\n\n\t\t\t\t// callback\n\t\t\t\tmodel[ callback ].apply( model, arguments );\n\t\t\t} );\n\t\t},\n\n\t\t_add_filter: function ( name, callback ) {\n\t\t\t// vars\n\t\t\tvar model = this;\n\n\t\t\t// add action\n\t\t\tacf.add_filter( this.tag( name ), function ( $field ) {\n\t\t\t\t// focus\n\t\t\t\tmodel.set( '$field', $field );\n\n\t\t\t\t// callback\n\t\t\t\tmodel[ callback ].apply( model, arguments );\n\t\t\t} );\n\t\t},\n\n\t\t_add_event: function ( name, callback ) {\n\t\t\t// vars\n\t\t\tvar model = this;\n\t\t\tvar event = name.substr( 0, name.indexOf( ' ' ) );\n\t\t\tvar selector = name.substr( name.indexOf( ' ' ) + 1 );\n\t\t\tvar context = this.selector();\n\n\t\t\t// add event\n\t\t\t$( document ).on( event, context + ' ' + selector, function ( e ) {\n\t\t\t\t// append $el to event object\n\t\t\t\te.$el = $( this );\n\t\t\t\te.$field = e.$el.closest( '.acf-field-object' );\n\n\t\t\t\t// focus\n\t\t\t\tmodel.set( '$field', e.$field );\n\n\t\t\t\t// callback\n\t\t\t\tmodel[ callback ].apply( model, [ e ] );\n\t\t\t} );\n\t\t},\n\n\t\t_set_$field: function () {\n\t\t\t// vars\n\t\t\tthis.o = this.$field.data();\n\n\t\t\t// els\n\t\t\tthis.$settings = this.$field.find( '> .settings > table > tbody' );\n\n\t\t\t// focus\n\t\t\tthis.focus();\n\t\t},\n\n\t\tfocus: function () {\n\t\t\t// do nothing\n\t\t},\n\n\t\tsetting: function ( name ) {\n\t\t\treturn this.$settings.find( '> .acf-field-setting-' + name );\n\t\t},\n\t} );\n\n\t/*\n\t * field\n\t *\n\t * This model fires actions and filters for registered fields\n\t *\n\t * @type\tfunction\n\t * @date\t21/02/2014\n\t * @since\t3.5.1\n\t *\n\t * @param\tn/a\n\t * @return\tn/a\n\t */\n\n\tvar actionManager = new acf.Model( {\n\t\tactions: {\n\t\t\topen_field_object: 'onOpenFieldObject',\n\t\t\tclose_field_object: 'onCloseFieldObject',\n\t\t\tadd_field_object: 'onAddFieldObject',\n\t\t\tduplicate_field_object: 'onDuplicateFieldObject',\n\t\t\tdelete_field_object: 'onDeleteFieldObject',\n\t\t\tchange_field_object_type: 'onChangeFieldObjectType',\n\t\t\tchange_field_object_label: 'onChangeFieldObjectLabel',\n\t\t\tchange_field_object_name: 'onChangeFieldObjectName',\n\t\t\tchange_field_object_parent: 'onChangeFieldObjectParent',\n\t\t\tsortstop_field_object: 'onChangeFieldObjectParent',\n\t\t},\n\n\t\tonOpenFieldObject: function ( field ) {\n\t\t\tacf.doAction( 'open_field', field.$el );\n\t\t\tacf.doAction( 'open_field/type=' + field.get( 'type' ), field.$el );\n\n\t\t\tacf.doAction( 'render_field_settings', field.$el );\n\t\t\tacf.doAction(\n\t\t\t\t'render_field_settings/type=' + field.get( 'type' ),\n\t\t\t\tfield.$el\n\t\t\t);\n\t\t},\n\n\t\tonCloseFieldObject: function ( field ) {\n\t\t\tacf.doAction( 'close_field', field.$el );\n\t\t\tacf.doAction(\n\t\t\t\t'close_field/type=' + field.get( 'type' ),\n\t\t\t\tfield.$el\n\t\t\t);\n\t\t},\n\n\t\tonAddFieldObject: function ( field ) {\n\t\t\tacf.doAction( 'add_field', field.$el );\n\t\t\tacf.doAction( 'add_field/type=' + field.get( 'type' ), field.$el );\n\t\t},\n\n\t\tonDuplicateFieldObject: function ( field ) {\n\t\t\tacf.doAction( 'duplicate_field', field.$el );\n\t\t\tacf.doAction(\n\t\t\t\t'duplicate_field/type=' + field.get( 'type' ),\n\t\t\t\tfield.$el\n\t\t\t);\n\t\t},\n\n\t\tonDeleteFieldObject: function ( field ) {\n\t\t\tacf.doAction( 'delete_field', field.$el );\n\t\t\tacf.doAction(\n\t\t\t\t'delete_field/type=' + field.get( 'type' ),\n\t\t\t\tfield.$el\n\t\t\t);\n\t\t},\n\n\t\tonChangeFieldObjectType: function ( field ) {\n\t\t\tacf.doAction( 'change_field_type', field.$el );\n\t\t\tacf.doAction(\n\t\t\t\t'change_field_type/type=' + field.get( 'type' ),\n\t\t\t\tfield.$el\n\t\t\t);\n\n\t\t\tacf.doAction( 'render_field_settings', field.$el );\n\t\t\tacf.doAction(\n\t\t\t\t'render_field_settings/type=' + field.get( 'type' ),\n\t\t\t\tfield.$el\n\t\t\t);\n\t\t},\n\n\t\tonChangeFieldObjectLabel: function ( field ) {\n\t\t\tacf.doAction( 'change_field_label', field.$el );\n\t\t\tacf.doAction(\n\t\t\t\t'change_field_label/type=' + field.get( 'type' ),\n\t\t\t\tfield.$el\n\t\t\t);\n\t\t},\n\n\t\tonChangeFieldObjectName: function ( field ) {\n\t\t\tacf.doAction( 'change_field_name', field.$el );\n\t\t\tacf.doAction(\n\t\t\t\t'change_field_name/type=' + field.get( 'type' ),\n\t\t\t\tfield.$el\n\t\t\t);\n\t\t},\n\n\t\tonChangeFieldObjectParent: function ( field ) {\n\t\t\tacf.doAction( 'update_field_parent', field.$el );\n\t\t},\n\t} );\n} )( jQuery );\n","( function ( $, undefined ) {\n\t/**\n\t * ConditionalLogicFieldSetting\n\t *\n\t * description\n\t *\n\t * @date\t3/2/18\n\t * @since\t5.6.5\n\t *\n\t * @param\ttype $var Description. Default.\n\t * @return\ttype Description.\n\t */\n\n\tvar ConditionalLogicFieldSetting = acf.FieldSetting.extend( {\n\t\ttype: '',\n\t\tname: 'conditional_logic',\n\t\tevents: {\n\t\t\t'change .conditions-toggle': 'onChangeToggle',\n\t\t\t'click .add-conditional-group': 'onClickAddGroup',\n\t\t\t'focus .condition-rule-field': 'onFocusField',\n\t\t\t'change .condition-rule-field': 'onChangeField',\n\t\t\t'change .condition-rule-operator': 'onChangeOperator',\n\t\t\t'click .add-conditional-rule': 'onClickAdd',\n\t\t\t'click .remove-conditional-rule': 'onClickRemove',\n\t\t},\n\n\t\t$rule: false,\n\n\t\tscope: function ( $rule ) {\n\t\t\tthis.$rule = $rule;\n\t\t\treturn this;\n\t\t},\n\n\t\truleData: function ( name, value ) {\n\t\t\treturn this.$rule.data.apply( this.$rule, arguments );\n\t\t},\n\n\t\t$input: function ( name ) {\n\t\t\treturn this.$rule.find( '.condition-rule-' + name );\n\t\t},\n\n\t\t$td: function ( name ) {\n\t\t\treturn this.$rule.find( 'td.' + name );\n\t\t},\n\n\t\t$toggle: function () {\n\t\t\treturn this.$( '.conditions-toggle' );\n\t\t},\n\n\t\t$control: function () {\n\t\t\treturn this.$( '.rule-groups' );\n\t\t},\n\n\t\t$groups: function () {\n\t\t\treturn this.$( '.rule-group' );\n\t\t},\n\n\t\t$rules: function () {\n\t\t\treturn this.$( '.rule' );\n\t\t},\n\n\t\t$tabLabel: function () {\n\t\t\treturn this.fieldObject.$el.find('.conditional-logic-badge');\n\t\t},\n\n\t\topen: function () {\n\t\t\tvar $div = this.$control();\n\t\t\t$div.show();\n\t\t\tacf.enable( $div );\n\t\t},\n\n\t\tclose: function () {\n\t\t\tvar $div = this.$control();\n\t\t\t$div.hide();\n\t\t\tacf.disable( $div );\n\t\t},\n\n\t\trender: function () {\n\t\t\t// show\n\t\t\tif ( this.$toggle().prop( 'checked' ) ) {\n\t\t\t\tthis.$tabLabel().addClass('is-enabled');\n\t\t\t\tthis.renderRules();\n\t\t\t\tthis.open();\n\n\t\t\t\t// hide\n\t\t\t} else {\n\t\t\t\tthis.$tabLabel().removeClass('is-enabled');\n\t\t\t\tthis.close();\n\t\t\t}\n\t\t},\n\n\t\trenderRules: function () {\n\t\t\t// vars\n\t\t\tvar self = this;\n\n\t\t\t// loop\n\t\t\tthis.$rules().each( function () {\n\t\t\t\tself.renderRule( $( this ) );\n\t\t\t} );\n\t\t},\n\n\t\trenderRule: function ( $rule ) {\n\t\t\tthis.scope( $rule );\n\t\t\tthis.renderField();\n\t\t\tthis.renderOperator();\n\t\t\tthis.renderValue();\n\t\t},\n\n\t\trenderField: function () {\n\t\t\t// vars\n\t\t\tvar choices = [];\n\t\t\tvar validFieldTypes = [];\n\t\t\tvar cid = this.fieldObject.cid;\n\t\t\tvar $select = this.$input( 'field' );\n\n\t\t\t// loop\n\t\t\tacf.getFieldObjects().map( function ( fieldObject ) {\n\t\t\t\t// vars\n\t\t\t\tvar choice = {\n\t\t\t\t\tid: fieldObject.getKey(),\n\t\t\t\t\ttext: fieldObject.getLabel(),\n\t\t\t\t};\n\n\t\t\t\t// bail early if is self\n\t\t\t\tif ( fieldObject.cid === cid ) {\n\t\t\t\t\tchoice.text += ' ' + acf.__( '(this field)' );\n\t\t\t\t\tchoice.disabled = true;\n\t\t\t\t}\n\n\t\t\t\t// get selected field conditions\n\t\t\t\tvar conditionTypes = acf.getConditionTypes( {\n\t\t\t\t\tfieldType: fieldObject.getType(),\n\t\t\t\t} );\n\n\t\t\t\t// bail early if no types\n\t\t\t\tif ( ! conditionTypes.length ) {\n\t\t\t\t\tchoice.disabled = true;\n\t\t\t\t}\n\n\t\t\t\t// calulate indents\n\t\t\t\tvar indents = fieldObject.getParents().length;\n\t\t\t\tchoice.text = '- '.repeat( indents ) + choice.text;\n\n\t\t\t\t// append\n\t\t\t\tchoices.push( choice );\n\t\t\t} );\n\n\t\t\t// allow for scenario where only one field exists\n\t\t\tif ( ! choices.length ) {\n\t\t\t\tchoices.push( {\n\t\t\t\t\tid: '',\n\t\t\t\t\ttext: acf.__( 'No toggle fields available' ),\n\t\t\t\t} );\n\t\t\t}\n\n\t\t\t// render\n\t\t\tacf.renderSelect( $select, choices );\n\n\t\t\t// set\n\t\t\tthis.ruleData( 'field', $select.val() );\n\t\t},\n\n\t\trenderOperator: function () {\n\t\t\t// bail early if no field selected\n\t\t\tif ( ! this.ruleData( 'field' ) ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// vars\n\t\t\tvar $select = this.$input( 'operator' );\n\t\t\tvar val = $select.val();\n\t\t\tvar choices = [];\n\n\t\t\t// set saved value on first render\n\t\t\t// - this allows the 2nd render to correctly select an option\n\t\t\tif ( $select.val() === null ) {\n\t\t\t\tacf.renderSelect( $select, [\n\t\t\t\t\t{\n\t\t\t\t\t\tid: this.ruleData( 'operator' ),\n\t\t\t\t\t\ttext: '',\n\t\t\t\t\t},\n\t\t\t\t] );\n\t\t\t}\n\n\t\t\t// get selected field\n\t\t\tvar $field = acf.findFieldObject( this.ruleData( 'field' ) );\n\t\t\tvar field = acf.getFieldObject( $field );\n\n\t\t\t// get selected field conditions\n\t\t\tvar conditionTypes = acf.getConditionTypes( {\n\t\t\t\tfieldType: field.getType(),\n\t\t\t} );\n\n\t\t\t// html\n\t\t\tconditionTypes.map( function ( model ) {\n\t\t\t\tchoices.push( {\n\t\t\t\t\tid: model.prototype.operator,\n\t\t\t\t\ttext: model.prototype.label,\n\t\t\t\t} );\n\t\t\t} );\n\n\t\t\t// render\n\t\t\tacf.renderSelect( $select, choices );\n\n\t\t\t// set\n\t\t\tthis.ruleData( 'operator', $select.val() );\n\t\t},\n\n\t\trenderValue: function () {\n\t\t\t// bail early if no field selected\n\t\t\tif ( ! this.ruleData( 'field' ) || ! this.ruleData( 'operator' ) ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// vars\n\t\t\tvar $select = this.$input( 'value' );\n\t\t\tvar $td = this.$td( 'value' );\n\t\t\tvar val = $select.val();\n\n\t\t\t// get selected field\n\t\t\tvar $field = acf.findFieldObject( this.ruleData( 'field' ) );\n\t\t\tvar field = acf.getFieldObject( $field );\n\n\t\t\t// get selected field conditions\n\t\t\tvar conditionTypes = acf.getConditionTypes( {\n\t\t\t\tfieldType: field.getType(),\n\t\t\t\toperator: this.ruleData( 'operator' ),\n\t\t\t} );\n\n\t\t\t// html\n\t\t\tvar conditionType = conditionTypes[ 0 ].prototype;\n\t\t\tvar choices = conditionType.choices( field );\n\n\t\t\t// create html: array\n\t\t\tif ( choices instanceof Array ) {\n\t\t\t\tvar $newSelect = $( '' );\n\t\t\t\tacf.renderSelect( $newSelect, choices );\n\n\t\t\t\t// create html: string ()\n\t\t\t} else {\n\t\t\t\tvar $newSelect = $( choices );\n\t\t\t}\n\n\t\t\t// append\n\t\t\t$select.detach();\n\t\t\t$td.html( $newSelect );\n\n\t\t\t// copy attrs\n\t\t\t// timeout needed to avoid browser bug where \"disabled\" attribute is not applied\n\t\t\tsetTimeout( function () {\n\t\t\t\t[ 'class', 'name', 'id' ].map( function ( attr ) {\n\t\t\t\t\t$newSelect.attr( attr, $select.attr( attr ) );\n\t\t\t\t} );\n\t\t\t}, 0 );\n\n\t\t\t// select existing value (if not a disabled input)\n\t\t\tif ( ! $newSelect.prop( 'disabled' ) ) {\n\t\t\t\tacf.val( $newSelect, val, true );\n\t\t\t}\n\n\t\t\t// set\n\t\t\tthis.ruleData( 'value', $newSelect.val() );\n\t\t},\n\n\t\tonChangeToggle: function () {\n\t\t\tthis.render();\n\t\t},\n\n\t\tonClickAddGroup: function ( e, $el ) {\n\t\t\tthis.addGroup();\n\t\t},\n\n\t\taddGroup: function () {\n\t\t\t// vars\n\t\t\tvar $group = this.$( '.rule-group:last' );\n\n\t\t\t// duplicate\n\t\t\tvar $group2 = acf.duplicate( $group );\n\n\t\t\t// update h4\n\t\t\t$group2.find( 'h4' ).text( acf.__( 'or' ) );\n\n\t\t\t// remove all tr's except the first one\n\t\t\t$group2.find( 'tr' ).not( ':first' ).remove();\n\n\t\t\t// save field\n\t\t\tthis.fieldObject.save();\n\t\t},\n\n\t\tonFocusField: function ( e, $el ) {\n\t\t\tthis.renderField();\n\t\t},\n\n\t\tonChangeField: function ( e, $el ) {\n\t\t\t// scope\n\t\t\tthis.scope( $el.closest( '.rule' ) );\n\n\t\t\t// set data\n\t\t\tthis.ruleData( 'field', $el.val() );\n\n\t\t\t// render\n\t\t\tthis.renderOperator();\n\t\t\tthis.renderValue();\n\t\t},\n\n\t\tonChangeOperator: function ( e, $el ) {\n\t\t\t// scope\n\t\t\tthis.scope( $el.closest( '.rule' ) );\n\n\t\t\t// set data\n\t\t\tthis.ruleData( 'operator', $el.val() );\n\n\t\t\t// render\n\t\t\tthis.renderValue();\n\t\t},\n\n\t\tonClickAdd: function ( e, $el ) {\n\t\t\t// duplciate\n\t\t\tvar $rule = acf.duplicate( $el.closest( '.rule' ) );\n\n\t\t\t// render\n\t\t\tthis.renderRule( $rule );\n\t\t},\n\n\t\tonClickRemove: function ( e, $el ) {\n\t\t\t// vars\n\t\t\tvar $rule = $el.closest( '.rule' );\n\n\t\t\t// save field\n\t\t\tthis.fieldObject.save();\n\n\t\t\t// remove group\n\t\t\tif ( $rule.siblings( '.rule' ).length == 0 ) {\n\t\t\t\t$rule.closest( '.rule-group' ).remove();\n\t\t\t}\n\n\t\t\t// remove\n\t\t\t$rule.remove();\n\t\t},\n\t} );\n\n\tacf.registerFieldSetting( ConditionalLogicFieldSetting );\n\n\t/**\n\t * conditionalLogicHelper\n\t *\n\t * description\n\t *\n\t * @date\t20/4/18\n\t * @since\t5.6.9\n\t *\n\t * @param\ttype $var Description. Default.\n\t * @return\ttype Description.\n\t */\n\n\tvar conditionalLogicHelper = new acf.Model( {\n\t\tactions: {\n\t\t\tduplicate_field_objects: 'onDuplicateFieldObjects',\n\t\t},\n\n\t\tonDuplicateFieldObjects: function ( children, newField, prevField ) {\n\t\t\t// vars\n\t\t\tvar data = {};\n\t\t\tvar $selects = $();\n\n\t\t\t// reference change in key\n\t\t\tchildren.map( function ( child ) {\n\t\t\t\t// store reference of changed key\n\t\t\t\tdata[ child.get( 'prevKey' ) ] = child.get( 'key' );\n\n\t\t\t\t// append condition select\n\t\t\t\t$selects = $selects.add( child.$( '.condition-rule-field' ) );\n\t\t\t} );\n\n\t\t\t// loop\n\t\t\t$selects.each( function () {\n\t\t\t\t// vars\n\t\t\t\tvar $select = $( this );\n\t\t\t\tvar val = $select.val();\n\n\t\t\t\t// bail early if val is not a ref key\n\t\t\t\tif ( ! val || ! data[ val ] ) {\n\t\t\t\t\treturn;\n\t\t\t\t}\n\n\t\t\t\t// modify selected option\n\t\t\t\t$select.find( 'option:selected' ).attr( 'value', data[ val ] );\n\n\t\t\t\t// set new val\n\t\t\t\t$select.val( data[ val ] );\n\t\t\t} );\n\t\t},\n\t} );\n} )( jQuery );\n","( function ( $, undefined ) {\n\tacf.FieldObject = acf.Model.extend( {\n\t\t// class used to avoid nested event triggers\n\t\teventScope: '.acf-field-object',\n\n\t\t// variable for field type select2\n\t\tfieldTypeSelect2: false,\n\n\t\t// events\n\t\tevents: {\n\t\t\t'click .copyable': 'onClickCopy',\n\t\t\t'click .handle': 'onClickEdit',\n\t\t\t'click .close-field': 'onClickEdit',\n\t\t\t'click a[data-key=\"acf_field_settings_tabs\"]':\n\t\t\t\t'onChangeSettingsTab',\n\t\t\t'click .delete-field': 'onClickDelete',\n\t\t\t'click .duplicate-field': 'duplicate',\n\t\t\t'click .move-field': 'move',\n\t\t\t'click .browse-fields': 'browseFields',\n\n\t\t\t'focus .edit-field': 'onFocusEdit',\n\t\t\t'blur .edit-field, .row-options a': 'onBlurEdit',\n\n\t\t\t'change .field-type': 'onChangeType',\n\t\t\t'change .field-required': 'onChangeRequired',\n\t\t\t'blur .field-label': 'onChangeLabel',\n\t\t\t'blur .field-name': 'onChangeName',\n\n\t\t\tchange: 'onChange',\n\t\t\tchanged: 'onChanged',\n\t\t},\n\n\t\t// data\n\t\tdata: {\n\t\t\t// Similar to ID, but used for HTML puposes.\n\t\t\t// It is possbile for a new field to have an ID of 0, but an id of 'field_123' */\n\t\t\tid: 0,\n\n\t\t\t// The field key ('field_123')\n\t\t\tkey: '',\n\n\t\t\t// The field type (text, image, etc)\n\t\t\ttype: '',\n\n\t\t\t// The $post->ID of this field\n\t\t\t//ID: 0,\n\n\t\t\t// The field's parent\n\t\t\t//parent: 0,\n\n\t\t\t// The menu order\n\t\t\t//menu_order: 0\n\t\t},\n\n\t\tsetup: function ( $field ) {\n\t\t\t// set $el\n\t\t\tthis.$el = $field;\n\n\t\t\t// inherit $field data (id, key, type)\n\t\t\tthis.inherit( $field );\n\n\t\t\t// load additional props\n\t\t\t// - this won't trigger 'changed'\n\t\t\tthis.prop( 'ID' );\n\t\t\tthis.prop( 'parent' );\n\t\t\tthis.prop( 'menu_order' );\n\t\t},\n\n\t\t$input: function ( name ) {\n\t\t\treturn $( '#' + this.getInputId() + '-' + name );\n\t\t},\n\n\t\t$meta: function () {\n\t\t\treturn this.$( '.meta:first' );\n\t\t},\n\n\t\t$handle: function () {\n\t\t\treturn this.$( '.handle:first' );\n\t\t},\n\n\t\t$settings: function () {\n\t\t\treturn this.$( '.settings:first' );\n\t\t},\n\n\t\t$setting: function ( name ) {\n\t\t\treturn this.$(\n\t\t\t\t'.acf-field-settings:first .acf-field-setting-' + name\n\t\t\t);\n\t\t},\n\n\t\t$fieldTypeSelect: function () {\n\t\t\treturn this.$( '.field-type' );\n\t\t},\n\n\t\t$fieldLabel: function () {\n\t\t\treturn this.$( '.field-label' );\n\t\t},\n\n\t\tgetParent: function () {\n\t\t\treturn acf.getFieldObjects( { child: this.$el, limit: 1 } ).pop();\n\t\t},\n\n\t\tgetParents: function () {\n\t\t\treturn acf.getFieldObjects( { child: this.$el } );\n\t\t},\n\n\t\tgetFields: function () {\n\t\t\treturn acf.getFieldObjects( { parent: this.$el } );\n\t\t},\n\n\t\tgetInputName: function () {\n\t\t\treturn 'acf_fields[' + this.get( 'id' ) + ']';\n\t\t},\n\n\t\tgetInputId: function () {\n\t\t\treturn 'acf_fields-' + this.get( 'id' );\n\t\t},\n\n\t\tnewInput: function ( name, value ) {\n\t\t\t// vars\n\t\t\tvar inputId = this.getInputId();\n\t\t\tvar inputName = this.getInputName();\n\n\t\t\t// append name\n\t\t\tif ( name ) {\n\t\t\t\tinputId += '-' + name;\n\t\t\t\tinputName += '[' + name + ']';\n\t\t\t}\n\n\t\t\t// create input (avoid HTML + JSON value issues)\n\t\t\tvar $input = $( '' ).attr( {\n\t\t\t\tid: inputId,\n\t\t\t\tname: inputName,\n\t\t\t\tvalue: value,\n\t\t\t} );\n\t\t\tthis.$( '> .meta' ).append( $input );\n\n\t\t\t// return\n\t\t\treturn $input;\n\t\t},\n\n\t\tgetProp: function ( name ) {\n\t\t\t// check data\n\t\t\tif ( this.has( name ) ) {\n\t\t\t\treturn this.get( name );\n\t\t\t}\n\n\t\t\t// get input value\n\t\t\tvar $input = this.$input( name );\n\t\t\tvar value = $input.length ? $input.val() : null;\n\n\t\t\t// set data silently (cache)\n\t\t\tthis.set( name, value, true );\n\n\t\t\t// return\n\t\t\treturn value;\n\t\t},\n\n\t\tsetProp: function ( name, value ) {\n\t\t\t// get input\n\t\t\tvar $input = this.$input( name );\n\t\t\tvar prevVal = $input.val();\n\n\t\t\t// create if new\n\t\t\tif ( ! $input.length ) {\n\t\t\t\t$input = this.newInput( name, value );\n\t\t\t}\n\n\t\t\t// remove\n\t\t\tif ( value === null ) {\n\t\t\t\t$input.remove();\n\n\t\t\t\t// update\n\t\t\t} else {\n\t\t\t\t$input.val( value );\n\t\t\t}\n\n\t\t\t//console.log('setProp', name, value, this);\n\n\t\t\t// set data silently (cache)\n\t\t\tif ( ! this.has( name ) ) {\n\t\t\t\t//console.log('setting silently');\n\t\t\t\tthis.set( name, value, true );\n\n\t\t\t\t// set data allowing 'change' event to fire\n\t\t\t} else {\n\t\t\t\t//console.log('setting loudly!');\n\t\t\t\tthis.set( name, value );\n\t\t\t}\n\n\t\t\t// return\n\t\t\treturn this;\n\t\t},\n\n\t\tprop: function ( name, value ) {\n\t\t\tif ( value !== undefined ) {\n\t\t\t\treturn this.setProp( name, value );\n\t\t\t} else {\n\t\t\t\treturn this.getProp( name );\n\t\t\t}\n\t\t},\n\n\t\tprops: function ( props ) {\n\t\t\tObject.keys( props ).map( function ( key ) {\n\t\t\t\tthis.setProp( key, props[ key ] );\n\t\t\t}, this );\n\t\t},\n\n\t\tgetLabel: function () {\n\t\t\t// get label with empty default\n\t\t\tvar label = this.prop( 'label' );\n\t\t\tif ( label === '' ) {\n\t\t\t\tlabel = acf.__( '(no label)' );\n\t\t\t}\n\n\t\t\t// return\n\t\t\treturn label;\n\t\t},\n\n\t\tgetName: function () {\n\t\t\treturn this.prop( 'name' );\n\t\t},\n\n\t\tgetType: function () {\n\t\t\treturn this.prop( 'type' );\n\t\t},\n\n\t\tgetTypeLabel: function () {\n\t\t\tvar type = this.prop( 'type' );\n\t\t\tvar types = acf.get( 'fieldTypes' );\n\t\t\treturn types[ type ] ? types[ type ].label : type;\n\t\t},\n\n\t\tgetKey: function () {\n\t\t\treturn this.prop( 'key' );\n\t\t},\n\n\t\tinitialize: function () {\n\t\t\tthis.checkCopyable();\n\t\t},\n\n\t\tmakeCopyable: function ( text ) {\n\t\t\tif ( ! navigator.clipboard )\n\t\t\t\treturn (\n\t\t\t\t\t'' +\n\t\t\t\t\ttext +\n\t\t\t\t\t''\n\t\t\t\t);\n\t\t\treturn '' + text + '';\n\t\t},\n\n\t\tcheckCopyable: function () {\n\t\t\tif ( ! navigator.clipboard ) {\n\t\t\t\tthis.$el.find( '.copyable' ).addClass( 'copy-unsupported' );\n\t\t\t}\n\t\t},\n\n\t\tinitializeFieldTypeSelect2: function () {\n\t\t\tif ( this.fieldTypeSelect2 ) return;\n\n\t\t\t// Support disabling via filter.\n\t\t\tif ( this.$fieldTypeSelect().hasClass( 'disable-select2' ) ) return;\n\n\t\t\t// Check for a full modern version of select2, bail loading if not found with a console warning.\n\t\t\ttry {\n\t\t\t\t$.fn.select2.amd.require( 'select2/compat/dropdownCss' );\n\t\t\t} catch ( err ) {\n\t\t\t\tconsole.warn(\n\t\t\t\t\t'ACF was not able to load the full version of select2 due to a conflicting version provided by another plugin or theme taking precedence. Select2 fields may not work as expected.'\n\t\t\t\t);\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tthis.fieldTypeSelect2 = acf.newSelect2( this.$fieldTypeSelect(), {\n\t\t\t\tfield: false,\n\t\t\t\tajax: false,\n\t\t\t\tmultiple: false,\n\t\t\t\tallowNull: false,\n\t\t\t\tsuppressFilters: true,\n\t\t\t\tdropdownCssClass: 'field-type-select-results',\n\t\t\t\ttemplateResult: function ( selection ) {\n\t\t\t\t\tif (\n\t\t\t\t\t\tselection.loading ||\n\t\t\t\t\t\t( selection.element &&\n\t\t\t\t\t\t\tselection.element.nodeName === 'OPTGROUP' )\n\t\t\t\t\t) {\n\t\t\t\t\t\tvar $selection = $(\n\t\t\t\t\t\t\t''\n\t\t\t\t\t\t);\n\t\t\t\t\t\t$selection.html( acf.escHtml( selection.text ) );\n\t\t\t\t\t} else {\n\t\t\t\t\t\tvar $selection = $(\n\t\t\t\t\t\t\t'' +\n\t\t\t\t\t\t\t\tacf.escHtml( selection.text ) +\n\t\t\t\t\t\t\t\t''\n\t\t\t\t\t\t);\n\t\t\t\t\t}\n\t\t\t\t\t$selection.data( 'element', selection.element );\n\t\t\t\t\treturn $selection;\n\t\t\t\t},\n\t\t\t\ttemplateSelection: function ( selection ) {\n\t\t\t\t\tvar $selection = $(\n\t\t\t\t\t\t'' +\n\t\t\t\t\t\t\tacf.escHtml( selection.text ) +\n\t\t\t\t\t\t\t''\n\t\t\t\t\t);\n\t\t\t\t\t$selection.data( 'element', selection.element );\n\t\t\t\t\treturn $selection;\n\t\t\t\t},\n\t\t\t} );\n\n\t\t\tthis.fieldTypeSelect2.on( 'select2:open', function () {\n\t\t\t\t$(\n\t\t\t\t\t'.field-type-select-results input.select2-search__field'\n\t\t\t\t).attr( 'placeholder', acf.__( 'Type to search...' ) );\n\t\t\t} );\n\n\t\t\tthis.fieldTypeSelect2.on( 'change', function ( e ) {\n\t\t\t\t$( e.target )\n\t\t\t\t\t.parents( 'ul:first' )\n\t\t\t\t\t.find( 'button.browse-fields' )\n\t\t\t\t\t.prop( 'disabled', true );\n\t\t\t} );\n\n\t\t\t// When typing happens on the li element above the select2.\n\t\t\tthis.fieldTypeSelect2.$el\n\t\t\t\t.parent()\n\t\t\t\t.on(\n\t\t\t\t\t'keydown',\n\t\t\t\t\t'.select2-selection.select2-selection--single',\n\t\t\t\t\tthis.onKeyDownSelect\n\t\t\t\t);\n\t\t},\n\n\t\taddProFields: function () {\n\t\t\t// Make sure we're only running this on free version.\n\t\t\tif ( acf.get( 'is_pro' ) ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// Make sure we haven't appended these fields before.\n\t\t\tvar $fieldTypeSelect = this.$fieldTypeSelect();\n\t\t\tif ( $fieldTypeSelect.hasClass( 'acf-free-field-type' ) ) return;\n\n\t\t\t// Loop over each pro field type and append it to the select.\n\t\t\tconst PROFieldTypes = acf.get( 'PROFieldTypes' );\n\t\t\tif ( typeof PROFieldTypes !== 'object' ) return;\n\n\t\t\tconst $layoutGroup = $fieldTypeSelect\n\t\t\t\t.find( 'optgroup option[value=\"group\"]' )\n\t\t\t\t.parent();\n\n\t\t\tconst $contentGroup = $fieldTypeSelect\n\t\t\t\t.find( 'optgroup option[value=\"image\"]' )\n\t\t\t\t.parent();\n\n\t\t\tfor ( const [ name, field ] of Object.entries( PROFieldTypes ) ) {\n\t\t\t\tconst $useGroup =\n\t\t\t\t\tfield.category === 'content' ? $contentGroup : $layoutGroup;\n\t\t\t\t$useGroup.append(\n\t\t\t\t\t''\n\t\t\t\t);\n\t\t\t}\n\n\t\t\t$fieldTypeSelect.addClass( 'acf-free-field-type' );\n\t\t},\n\n\t\trender: function () {\n\t\t\t// vars\n\t\t\tvar $handle = this.$( '.handle:first' );\n\t\t\tvar menu_order = this.prop( 'menu_order' );\n\t\t\tvar label = this.getLabel();\n\t\t\tvar name = this.prop( 'name' );\n\t\t\tvar type = this.getTypeLabel();\n\t\t\tvar key = this.prop( 'key' );\n\t\t\tvar required = this.$input( 'required' ).prop( 'checked' );\n\n\t\t\t// update menu order\n\t\t\t$handle.find( '.acf-icon' ).html( parseInt( menu_order ) + 1 );\n\n\t\t\t// update required\n\t\t\tif ( required ) {\n\t\t\t\tlabel += ' *';\n\t\t\t}\n\n\t\t\t// update label\n\t\t\t$handle.find( '.li-field-label strong a' ).html( label );\n\n\t\t\t// update name\n\t\t\t$handle.find( '.li-field-name' ).html( this.makeCopyable( name ) );\n\n\t\t\t// update type\n\t\t\tconst iconName = acf.strSlugify( this.getType() );\n\t\t\t$handle.find( '.field-type-label' ).text( ' ' + type );\n\t\t\t$handle\n\t\t\t\t.find( '.field-type-icon' )\n\t\t\t\t.removeClass()\n\t\t\t\t.addClass( 'field-type-icon field-type-icon-' + iconName );\n\n\t\t\t// update key\n\t\t\t$handle.find( '.li-field-key' ).html( this.makeCopyable( key ) );\n\n\t\t\t// action for 3rd party customization\n\t\t\tacf.doAction( 'render_field_object', this );\n\t\t},\n\n\t\trefresh: function () {\n\t\t\tacf.doAction( 'refresh_field_object', this );\n\t\t},\n\n\t\tisOpen: function () {\n\t\t\treturn this.$el.hasClass( 'open' );\n\t\t},\n\n\t\tonClickCopy: function ( e ) {\n\t\t\te.stopPropagation();\n\t\t\tif ( ! navigator.clipboard || $( e.target ).is( 'input' ) ) return;\n\n\t\t\t// Find the value to copy depending on input or text elements.\n\t\t\tlet copyValue;\n\t\t\tif ( $( e.target ).hasClass( 'acf-input-wrap' ) ) {\n\t\t\t\tcopyValue = $( e.target ).find( 'input' ).first().val();\n\t\t\t} else {\n\t\t\t\tcopyValue = $( e.target ).text();\n\t\t\t}\n\n\t\t\tnavigator.clipboard.writeText( copyValue ).then( () => {\n\t\t\t\t$( e.target ).closest( '.copyable' ).addClass( 'copied' );\n\t\t\t\tsetTimeout( function () {\n\t\t\t\t\t$( e.target )\n\t\t\t\t\t\t.closest( '.copyable' )\n\t\t\t\t\t\t.removeClass( 'copied' );\n\t\t\t\t}, 2000 );\n\t\t\t} );\n\t\t},\n\n\t\tonClickEdit: function ( e ) {\n\t\t\t$target = $( e.target );\n\t\t\tif (\n\t\t\t\t$target.parent().hasClass( 'row-options' ) &&\n\t\t\t\t! $target.hasClass( 'edit-field' )\n\t\t\t)\n\t\t\t\treturn;\n\t\t\tthis.isOpen() ? this.close() : this.open();\n\t\t},\n\n\t\tonChangeSettingsTab: function () {\n\t\t\tconst $settings = this.$el.children( '.settings' );\n\t\t\tacf.doAction( 'show', $settings );\n\t\t},\n\n\t\t/**\n\t\t * Adds 'active' class to row options nearest to the target.\n\t\t */\n\t\tonFocusEdit: function ( e ) {\n\t\t\tvar $rowOptions = $( e.target )\n\t\t\t\t.closest( 'li' )\n\t\t\t\t.find( '.row-options' );\n\t\t\t$rowOptions.addClass( 'active' );\n\t\t},\n\n\t\t/**\n\t\t * Removes 'active' class from row options if links in same row options area are no longer in focus.\n\t\t */\n\t\tonBlurEdit: function ( e ) {\n\t\t\tvar focusDelayMilliseconds = 50;\n\t\t\tvar $rowOptionsBlurElement = $( e.target )\n\t\t\t\t.closest( 'li' )\n\t\t\t\t.find( '.row-options' );\n\n\t\t\t// Timeout so that `activeElement` gives the new element in focus instead of the body.\n\t\t\tsetTimeout( function () {\n\t\t\t\tvar $rowOptionsFocusElement = $( document.activeElement )\n\t\t\t\t\t.closest( 'li' )\n\t\t\t\t\t.find( '.row-options' );\n\t\t\t\tif ( ! $rowOptionsBlurElement.is( $rowOptionsFocusElement ) ) {\n\t\t\t\t\t$rowOptionsBlurElement.removeClass( 'active' );\n\t\t\t\t}\n\t\t\t}, focusDelayMilliseconds );\n\t\t},\n\n\t\topen: function () {\n\t\t\t// vars\n\t\t\tvar $settings = this.$el.children( '.settings' );\n\n\t\t\t// initialise field type select\n\t\t\tthis.addProFields();\n\t\t\tthis.initializeFieldTypeSelect2();\n\n\t\t\t// action (open)\n\t\t\tacf.doAction( 'open_field_object', this );\n\t\t\tthis.trigger( 'openFieldObject' );\n\n\t\t\t// action (show)\n\t\t\tacf.doAction( 'show', $settings );\n\n\t\t\tthis.hideEmptyTabs();\n\n\t\t\t// open\n\t\t\t$settings.slideDown();\n\t\t\tthis.$el.addClass( 'open' );\n\t\t},\n\n\t\tonKeyDownSelect: function ( e ) {\n\t\t\t// Omit events from special keys.\n\t\t\tif (\n\t\t\t\t! (\n\t\t\t\t\t( e.which >= 186 && e.which <= 222 ) || // punctuation and special characters\n\t\t\t\t\t[\n\t\t\t\t\t\t8, 9, 13, 16, 17, 18, 19, 20, 27, 32, 33, 34, 35, 36,\n\t\t\t\t\t\t37, 38, 39, 40, 45, 46, 91, 92, 93, 144, 145,\n\t\t\t\t\t].includes( e.which ) || // Special keys\n\t\t\t\t\t( e.which >= 112 && e.which <= 123 )\n\t\t\t\t)\n\t\t\t) {\n\t\t\t\t// Function keys\n\t\t\t\t$( this )\n\t\t\t\t\t.closest( '.select2-container' )\n\t\t\t\t\t.siblings( 'select:enabled' )\n\t\t\t\t\t.select2( 'open' );\n\t\t\t\treturn;\n\t\t\t}\n\t\t},\n\n\t\tclose: function () {\n\t\t\t// vars\n\t\t\tvar $settings = this.$el.children( '.settings' );\n\n\t\t\t// close\n\t\t\t$settings.slideUp();\n\t\t\tthis.$el.removeClass( 'open' );\n\n\t\t\t// action (close)\n\t\t\tacf.doAction( 'close_field_object', this );\n\t\t\tthis.trigger( 'closeFieldObject' );\n\n\t\t\t// action (hide)\n\t\t\tacf.doAction( 'hide', $settings );\n\t\t},\n\n\t\tserialize: function () {\n\t\t\treturn acf.serialize( this.$el, this.getInputName() );\n\t\t},\n\n\t\tsave: function ( type ) {\n\t\t\t// defaults\n\t\t\ttype = type || 'settings'; // meta, settings\n\n\t\t\t// vars\n\t\t\tvar save = this.getProp( 'save' );\n\n\t\t\t// bail if already saving settings\n\t\t\tif ( save === 'settings' ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// prop\n\t\t\tthis.setProp( 'save', type );\n\n\t\t\t// debug\n\t\t\tthis.$el.attr( 'data-save', type );\n\n\t\t\t// action\n\t\t\tacf.doAction( 'save_field_object', this, type );\n\t\t},\n\n\t\tsubmit: function () {\n\t\t\t// vars\n\t\t\tvar inputName = this.getInputName();\n\t\t\tvar save = this.get( 'save' );\n\n\t\t\t// close\n\t\t\tif ( this.isOpen() ) {\n\t\t\t\tthis.close();\n\t\t\t}\n\n\t\t\t// allow all inputs to save\n\t\t\tif ( save == 'settings' ) {\n\t\t\t\t// do nothing\n\t\t\t\t// allow only meta inputs to save\n\t\t\t} else if ( save == 'meta' ) {\n\t\t\t\tthis.$( '> .settings [name^=\"' + inputName + '\"]' ).remove();\n\n\t\t\t\t// prevent all inputs from saving\n\t\t\t} else {\n\t\t\t\tthis.$( '[name^=\"' + inputName + '\"]' ).remove();\n\t\t\t}\n\n\t\t\t// action\n\t\t\tacf.doAction( 'submit_field_object', this );\n\t\t},\n\n\t\tonChange: function ( e, $el ) {\n\t\t\t// save settings\n\t\t\tthis.save();\n\n\t\t\t// action for 3rd party customization\n\t\t\tacf.doAction( 'change_field_object', this );\n\t\t},\n\n\t\tonChanged: function ( e, $el, name, value ) {\n\t\t\tif ( this.getType() === $el.attr( 'data-type' ) ) {\n\t\t\t\t$( 'button.acf-btn.browse-fields' ).prop( 'disabled', false );\n\t\t\t}\n\n\t\t\t// ignore 'save'\n\t\t\tif ( name == 'save' ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// save meta\n\t\t\tif ( [ 'menu_order', 'parent' ].indexOf( name ) > -1 ) {\n\t\t\t\tthis.save( 'meta' );\n\n\t\t\t\t// save field\n\t\t\t} else {\n\t\t\t\tthis.save();\n\t\t\t}\n\n\t\t\t// render\n\t\t\tif (\n\t\t\t\t[\n\t\t\t\t\t'menu_order',\n\t\t\t\t\t'label',\n\t\t\t\t\t'required',\n\t\t\t\t\t'name',\n\t\t\t\t\t'type',\n\t\t\t\t\t'key',\n\t\t\t\t].indexOf( name ) > -1\n\t\t\t) {\n\t\t\t\tthis.render();\n\t\t\t}\n\n\t\t\t// action for 3rd party customization\n\t\t\tacf.doAction( 'change_field_object_' + name, this, value );\n\t\t},\n\n\t\tonChangeLabel: function ( e, $el ) {\n\t\t\t// set\n\t\t\tvar label = $el.val();\n\t\t\tthis.set( 'label', label );\n\n\t\t\t// render name\n\t\t\tif ( this.prop( 'name' ) == '' ) {\n\t\t\t\tvar name = acf.applyFilters(\n\t\t\t\t\t'generate_field_object_name',\n\t\t\t\t\tacf.strSanitize( label ),\n\t\t\t\t\tthis\n\t\t\t\t);\n\t\t\t\tthis.prop( 'name', name );\n\t\t\t}\n\t\t},\n\n\t\tonChangeName: function ( e, $el ) {\n\t\t\t// set\n\t\t\tvar name = $el.val();\n\n\t\t\t// strip any invalid characters.\n\t\t\tname = name.replace( /[^A-Za-zŽžÀ-ÿ0-9_-]+/g, '-' );\n\t\t\t$el.val( name );\n\n\t\t\tthis.set( 'name', name );\n\n\t\t\t// error\n\t\t\tif ( name.substr( 0, 6 ) === 'field_' ) {\n\t\t\t\talert(\n\t\t\t\t\tacf.__(\n\t\t\t\t\t\t'The string \"field_\" may not be used at the start of a field name'\n\t\t\t\t\t)\n\t\t\t\t);\n\t\t\t}\n\t\t},\n\n\t\tonChangeRequired: function ( e, $el ) {\n\t\t\t// set\n\t\t\tvar required = $el.prop( 'checked' ) ? 1 : 0;\n\t\t\tthis.set( 'required', required );\n\t\t},\n\n\t\tdelete: function ( args ) {\n\t\t\t// defaults\n\t\t\targs = acf.parseArgs( args, {\n\t\t\t\tanimate: true,\n\t\t\t} );\n\n\t\t\t// add to remove list\n\t\t\tvar id = this.prop( 'ID' );\n\n\t\t\tif ( id ) {\n\t\t\t\tvar $input = $( '#_acf_delete_fields' );\n\t\t\t\tvar newVal = $input.val() + '|' + id;\n\t\t\t\t$input.val( newVal );\n\t\t\t}\n\n\t\t\t// action\n\t\t\tacf.doAction( 'delete_field_object', this );\n\n\t\t\t// animate\n\t\t\tif ( args.animate ) {\n\t\t\t\tthis.removeAnimate();\n\t\t\t} else {\n\t\t\t\tthis.remove();\n\t\t\t}\n\t\t},\n\n\t\tonClickDelete: function ( e, $el ) {\n\t\t\t// Bypass confirmation when holding down \"shift\" key.\n\t\t\tif ( e.shiftKey ) {\n\t\t\t\treturn this.delete();\n\t\t\t}\n\n\t\t\t// add class\n\t\t\tthis.$el.addClass( '-hover' );\n\n\t\t\t// add tooltip\n\t\t\tvar tooltip = acf.newTooltip( {\n\t\t\t\tconfirmRemove: true,\n\t\t\t\ttarget: $el,\n\t\t\t\tcontext: this,\n\t\t\t\tconfirm: function () {\n\t\t\t\t\tthis.delete();\n\t\t\t\t},\n\t\t\t\tcancel: function () {\n\t\t\t\t\tthis.$el.removeClass( '-hover' );\n\t\t\t\t},\n\t\t\t} );\n\t\t},\n\n\t\tremoveAnimate: function () {\n\t\t\t// vars\n\t\t\tvar field = this;\n\t\t\tvar $list = this.$el.parent();\n\t\t\tvar $fields = acf.findFieldObjects( {\n\t\t\t\tsibling: this.$el,\n\t\t\t} );\n\n\t\t\t// remove\n\t\t\tacf.remove( {\n\t\t\t\ttarget: this.$el,\n\t\t\t\tendHeight: $fields.length ? 0 : 50,\n\t\t\t\tcomplete: function () {\n\t\t\t\t\tfield.remove();\n\t\t\t\t\tacf.doAction( 'removed_field_object', field, $list );\n\t\t\t\t},\n\t\t\t} );\n\n\t\t\t// action\n\t\t\tacf.doAction( 'remove_field_object', field, $list );\n\t\t},\n\n\t\tduplicate: function () {\n\t\t\t// vars\n\t\t\tvar newKey = acf.uniqid( 'field_' );\n\n\t\t\t// duplicate\n\t\t\tvar $newField = acf.duplicate( {\n\t\t\t\ttarget: this.$el,\n\t\t\t\tsearch: this.get( 'id' ),\n\t\t\t\treplace: newKey,\n\t\t\t} );\n\n\t\t\t// set new key\n\t\t\t$newField.attr( 'data-key', newKey );\n\n\t\t\t// get instance\n\t\t\tvar newField = acf.getFieldObject( $newField );\n\n\t\t\t// update newField label / name\n\t\t\tvar label = newField.prop( 'label' );\n\t\t\tvar name = newField.prop( 'name' );\n\t\t\tvar end = name.split( '_' ).pop();\n\t\t\tvar copy = acf.__( 'copy' );\n\n\t\t\t// increase suffix \"1\"\n\t\t\tif ( acf.isNumeric( end ) ) {\n\t\t\t\tvar i = end * 1 + 1;\n\t\t\t\tlabel = label.replace( end, i );\n\t\t\t\tname = name.replace( end, i );\n\n\t\t\t\t// increase suffix \"(copy1)\"\n\t\t\t} else if ( end.indexOf( copy ) === 0 ) {\n\t\t\t\tvar i = end.replace( copy, '' ) * 1;\n\t\t\t\ti = i ? i + 1 : 2;\n\n\t\t\t\t// replace\n\t\t\t\tlabel = label.replace( end, copy + i );\n\t\t\t\tname = name.replace( end, copy + i );\n\n\t\t\t\t// add default \"(copy)\"\n\t\t\t} else {\n\t\t\t\tlabel += ' (' + copy + ')';\n\t\t\t\tname += '_' + copy;\n\t\t\t}\n\n\t\t\tnewField.prop( 'ID', 0 );\n\t\t\tnewField.prop( 'label', label );\n\t\t\tnewField.prop( 'name', name );\n\t\t\tnewField.prop( 'key', newKey );\n\n\t\t\t// close the current field if it's open.\n\t\t\tif ( this.isOpen() ) {\n\t\t\t\tthis.close();\n\t\t\t}\n\n\t\t\t// open the new field and initialise correctly.\n\t\t\tnewField.open();\n\n\t\t\t// focus label\n\t\t\tvar $label = newField.$setting( 'label input' );\n\t\t\tsetTimeout( function () {\n\t\t\t\t$label.trigger( 'focus' );\n\t\t\t}, 251 );\n\n\t\t\t// action\n\t\t\tacf.doAction( 'duplicate_field_object', this, newField );\n\t\t\tacf.doAction( 'append_field_object', newField );\n\t\t},\n\n\t\twipe: function () {\n\t\t\t// vars\n\t\t\tvar prevId = this.get( 'id' );\n\t\t\tvar prevKey = this.get( 'key' );\n\t\t\tvar newKey = acf.uniqid( 'field_' );\n\n\t\t\t// rename\n\t\t\tacf.rename( {\n\t\t\t\ttarget: this.$el,\n\t\t\t\tsearch: prevId,\n\t\t\t\treplace: newKey,\n\t\t\t} );\n\n\t\t\t// data\n\t\t\tthis.set( 'id', newKey );\n\t\t\tthis.set( 'prevId', prevId );\n\t\t\tthis.set( 'prevKey', prevKey );\n\n\t\t\t// props\n\t\t\tthis.prop( 'key', newKey );\n\t\t\tthis.prop( 'ID', 0 );\n\n\t\t\t// attr\n\t\t\tthis.$el.attr( 'data-key', newKey );\n\t\t\tthis.$el.attr( 'data-id', newKey );\n\n\t\t\t// action\n\t\t\tacf.doAction( 'wipe_field_object', this );\n\t\t},\n\n\t\tmove: function () {\n\t\t\t// helper\n\t\t\tvar hasChanged = function ( field ) {\n\t\t\t\treturn field.get( 'save' ) == 'settings';\n\t\t\t};\n\n\t\t\t// vars\n\t\t\tvar changed = hasChanged( this );\n\n\t\t\t// has sub fields changed\n\t\t\tif ( ! changed ) {\n\t\t\t\tacf.getFieldObjects( {\n\t\t\t\t\tparent: this.$el,\n\t\t\t\t} ).map( function ( field ) {\n\t\t\t\t\tchanged = hasChanged( field ) || field.changed;\n\t\t\t\t} );\n\t\t\t}\n\n\t\t\t// bail early if changed\n\t\t\tif ( changed ) {\n\t\t\t\talert(\n\t\t\t\t\tacf.__(\n\t\t\t\t\t\t'This field cannot be moved until its changes have been saved'\n\t\t\t\t\t)\n\t\t\t\t);\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// step 1.\n\t\t\tvar id = this.prop( 'ID' );\n\t\t\tvar field = this;\n\t\t\tvar popup = false;\n\t\t\tvar step1 = function () {\n\t\t\t\t// popup\n\t\t\t\tpopup = acf.newPopup( {\n\t\t\t\t\ttitle: acf.__( 'Move Custom Field' ),\n\t\t\t\t\tloading: true,\n\t\t\t\t\twidth: '300px',\n\t\t\t\t\topenedBy: field.$el.find( '.move-field' ),\n\t\t\t\t} );\n\n\t\t\t\t// ajax\n\t\t\t\tvar ajaxData = {\n\t\t\t\t\taction: 'acf/field_group/move_field',\n\t\t\t\t\tfield_id: id,\n\t\t\t\t};\n\n\t\t\t\t// get HTML\n\t\t\t\t$.ajax( {\n\t\t\t\t\turl: acf.get( 'ajaxurl' ),\n\t\t\t\t\tdata: acf.prepareForAjax( ajaxData ),\n\t\t\t\t\ttype: 'post',\n\t\t\t\t\tdataType: 'html',\n\t\t\t\t\tsuccess: step2,\n\t\t\t\t} );\n\t\t\t};\n\n\t\t\tvar step2 = function ( html ) {\n\t\t\t\t// update popup\n\t\t\t\tpopup.loading( false );\n\t\t\t\tpopup.content( html );\n\n\t\t\t\t// submit form\n\t\t\t\tpopup.on( 'submit', 'form', step3 );\n\t\t\t};\n\n\t\t\tvar step3 = function ( e, $el ) {\n\t\t\t\t// prevent\n\t\t\t\te.preventDefault();\n\n\t\t\t\t// disable\n\t\t\t\tacf.startButtonLoading( popup.$( '.button' ) );\n\n\t\t\t\t// ajax\n\t\t\t\tvar ajaxData = {\n\t\t\t\t\taction: 'acf/field_group/move_field',\n\t\t\t\t\tfield_id: id,\n\t\t\t\t\tfield_group_id: popup.$( 'select' ).val(),\n\t\t\t\t};\n\n\t\t\t\t// get HTML\n\t\t\t\t$.ajax( {\n\t\t\t\t\turl: acf.get( 'ajaxurl' ),\n\t\t\t\t\tdata: acf.prepareForAjax( ajaxData ),\n\t\t\t\t\ttype: 'post',\n\t\t\t\t\tdataType: 'html',\n\t\t\t\t\tsuccess: step4,\n\t\t\t\t} );\n\t\t\t};\n\n\t\t\tvar step4 = function ( html ) {\n\t\t\t\tpopup.content( html );\n\n\t\t\t\tif ( wp.a11y && wp.a11y.speak && acf.__ ) {\n\t\t\t\t\twp.a11y.speak(\n\t\t\t\t\t\tacf.__( 'Field moved to other group' ),\n\t\t\t\t\t\t'polite'\n\t\t\t\t\t);\n\t\t\t\t}\n\n\t\t\t\tpopup.$( '.acf-close-popup' ).focus();\n\n\t\t\t\tfield.removeAnimate();\n\t\t\t};\n\n\t\t\t// start\n\t\t\tstep1();\n\t\t},\n\n\t\tbrowseFields: function ( e, $el ) {\n\t\t\te.preventDefault();\n\n\t\t\tconst modal = acf.newBrowseFieldsModal( {\n\t\t\t\topenedBy: this,\n\t\t\t} );\n\t\t},\n\n\t\tonChangeType: function ( e, $el ) {\n\t\t\t// clea previous timout\n\t\t\tif ( this.changeTimeout ) {\n\t\t\t\tclearTimeout( this.changeTimeout );\n\t\t\t}\n\n\t\t\t// set new timeout\n\t\t\t// - prevents changing type multiple times whilst user types in newType\n\t\t\tthis.changeTimeout = this.setTimeout( function () {\n\t\t\t\tthis.changeType( $el.val() );\n\t\t\t}, 300 );\n\t\t},\n\n\t\tchangeType: function ( newType ) {\n\t\t\tvar prevType = this.prop( 'type' );\n\t\t\tvar prevClass = acf.strSlugify( 'acf-field-object-' + prevType );\n\t\t\tvar newClass = acf.strSlugify( 'acf-field-object-' + newType );\n\n\t\t\t// Update props.\n\t\t\tthis.$el.removeClass( prevClass ).addClass( newClass );\n\t\t\tthis.$el.attr( 'data-type', newType );\n\t\t\tthis.$el.data( 'type', newType );\n\n\t\t\t// Abort XHR if this field is already loading AJAX data.\n\t\t\tif ( this.has( 'xhr' ) ) {\n\t\t\t\tthis.get( 'xhr' ).abort();\n\t\t\t}\n\n\t\t\t// Store old settings so they can be reused later.\n\t\t\tconst $oldSettings = {};\n\n\t\t\tthis.$el\n\t\t\t\t.find(\n\t\t\t\t\t'.acf-field-settings:first > .acf-field-settings-main > .acf-field-type-settings'\n\t\t\t\t)\n\t\t\t\t.each( function () {\n\t\t\t\t\tlet tab = $( this ).data( 'parent-tab' );\n\t\t\t\t\tlet $tabSettings = $( this ).children().removeData();\n\n\t\t\t\t\t$oldSettings[ tab ] = $tabSettings;\n\n\t\t\t\t\t$tabSettings.detach();\n\t\t\t\t} );\n\n\t\t\tthis.set( 'settings-' + prevType, $oldSettings );\n\n\t\t\t// Show the settings if we already have them cached.\n\t\t\tif ( this.has( 'settings-' + newType ) ) {\n\t\t\t\tlet $newSettings = this.get( 'settings-' + newType );\n\n\t\t\t\tthis.showFieldTypeSettings( $newSettings );\n\t\t\t\tthis.set( 'type', newType );\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// Add loading spinner.\n\t\t\tconst $loading = $(\n\t\t\t\t'
    '\n\t\t\t);\n\t\t\tthis.$el\n\t\t\t\t.find(\n\t\t\t\t\t'.acf-field-settings-main-general .acf-field-type-settings'\n\t\t\t\t)\n\t\t\t\t.before( $loading );\n\n\t\t\tconst ajaxData = {\n\t\t\t\taction: 'acf/field_group/render_field_settings',\n\t\t\t\tfield: this.serialize(),\n\t\t\t\tprefix: this.getInputName(),\n\t\t\t};\n\n\t\t\t// Get the settings for this field type over AJAX.\n\t\t\tvar xhr = $.ajax( {\n\t\t\t\turl: acf.get( 'ajaxurl' ),\n\t\t\t\tdata: acf.prepareForAjax( ajaxData ),\n\t\t\t\ttype: 'post',\n\t\t\t\tdataType: 'json',\n\t\t\t\tcontext: this,\n\t\t\t\tsuccess: function ( response ) {\n\t\t\t\t\tif ( ! acf.isAjaxSuccess( response ) ) {\n\t\t\t\t\t\treturn;\n\t\t\t\t\t}\n\n\t\t\t\t\tthis.showFieldTypeSettings( response.data );\n\t\t\t\t},\n\t\t\t\tcomplete: function () {\n\t\t\t\t\t// also triggered by xhr.abort();\n\t\t\t\t\t$loading.remove();\n\t\t\t\t\tthis.set( 'type', newType );\n\t\t\t\t\t//this.refresh();\n\t\t\t\t},\n\t\t\t} );\n\n\t\t\t// set\n\t\t\tthis.set( 'xhr', xhr );\n\t\t},\n\n\t\tshowFieldTypeSettings: function ( settings ) {\n\t\t\tif ( 'object' !== typeof settings ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tconst self = this;\n\t\t\tconst tabs = Object.keys( settings );\n\n\t\t\ttabs.forEach( ( tab ) => {\n\t\t\t\tconst $tab = self.$el.find(\n\t\t\t\t\t'.acf-field-settings-main-' +\n\t\t\t\t\t\ttab.replace( '_', '-' ) +\n\t\t\t\t\t\t' .acf-field-type-settings'\n\t\t\t\t);\n\t\t\t\tlet tabContent = '';\n\n\t\t\t\tif (\n\t\t\t\t\t[ 'object', 'string' ].includes( typeof settings[ tab ] )\n\t\t\t\t) {\n\t\t\t\t\ttabContent = settings[ tab ];\n\t\t\t\t}\n\n\t\t\t\t$tab.prepend( tabContent );\n\t\t\t\tacf.doAction( 'append', $tab );\n\t\t\t} );\n\n\t\t\tthis.hideEmptyTabs();\n\t\t},\n\n\t\tupdateParent: function () {\n\t\t\t// vars\n\t\t\tvar ID = acf.get( 'post_id' );\n\n\t\t\t// check parent\n\t\t\tvar parent = this.getParent();\n\t\t\tif ( parent ) {\n\t\t\t\tID = parseInt( parent.prop( 'ID' ) ) || parent.prop( 'key' );\n\t\t\t}\n\n\t\t\t// update\n\t\t\tthis.prop( 'parent', ID );\n\t\t},\n\n\t\thideEmptyTabs: function () {\n\t\t\tconst $settings = this.$settings();\n\t\t\tconst $tabs = $settings.find(\n\t\t\t\t'.acf-field-settings:first > .acf-field-settings-main'\n\t\t\t);\n\n\t\t\t$tabs.each( function () {\n\t\t\t\tconst $tabContent = $( this );\n\t\t\t\tconst tabName = $tabContent\n\t\t\t\t\t.find( '.acf-field-type-settings:first' )\n\t\t\t\t\t.data( 'parentTab' );\n\t\t\t\tconst $tabLink = $settings\n\t\t\t\t\t.find( '.acf-settings-type-' + tabName )\n\t\t\t\t\t.first();\n\n\t\t\t\tif ( $.trim( $tabContent.text() ) === '' ) {\n\t\t\t\t\t$tabLink.hide();\n\t\t\t\t} else if ( $tabLink.is( ':hidden' ) ) {\n\t\t\t\t\t$tabLink.show();\n\t\t\t\t}\n\t\t\t} );\n\t\t},\n\t} );\n} )( jQuery );\n","( function ( $, undefined ) {\n\t/**\n\t * acf.findFieldObject\n\t *\n\t * Returns a single fieldObject $el for a given field key\n\t *\n\t * @date\t1/2/18\n\t * @since\t5.7.0\n\t *\n\t * @param\tstring key The field key\n\t * @return\tjQuery\n\t */\n\n\tacf.findFieldObject = function ( key ) {\n\t\treturn acf.findFieldObjects( {\n\t\t\tkey: key,\n\t\t\tlimit: 1,\n\t\t} );\n\t};\n\n\t/**\n\t * acf.findFieldObjects\n\t *\n\t * Returns an array of fieldObject $el for the given args\n\t *\n\t * @date\t1/2/18\n\t * @since\t5.7.0\n\t *\n\t * @param\tobject args\n\t * @return\tjQuery\n\t */\n\n\tacf.findFieldObjects = function ( args ) {\n\t\t// vars\n\t\targs = args || {};\n\t\tvar selector = '.acf-field-object';\n\t\tvar $fields = false;\n\n\t\t// args\n\t\targs = acf.parseArgs( args, {\n\t\t\tid: '',\n\t\t\tkey: '',\n\t\t\ttype: '',\n\t\t\tlimit: false,\n\t\t\tlist: null,\n\t\t\tparent: false,\n\t\t\tsibling: false,\n\t\t\tchild: false,\n\t\t} );\n\n\t\t// id\n\t\tif ( args.id ) {\n\t\t\tselector += '[data-id=\"' + args.id + '\"]';\n\t\t}\n\n\t\t// key\n\t\tif ( args.key ) {\n\t\t\tselector += '[data-key=\"' + args.key + '\"]';\n\t\t}\n\n\t\t// type\n\t\tif ( args.type ) {\n\t\t\tselector += '[data-type=\"' + args.type + '\"]';\n\t\t}\n\n\t\t// query\n\t\tif ( args.list ) {\n\t\t\t$fields = args.list.children( selector );\n\t\t} else if ( args.parent ) {\n\t\t\t$fields = args.parent.find( selector );\n\t\t} else if ( args.sibling ) {\n\t\t\t$fields = args.sibling.siblings( selector );\n\t\t} else if ( args.child ) {\n\t\t\t$fields = args.child.parents( selector );\n\t\t} else {\n\t\t\t$fields = $( selector );\n\t\t}\n\n\t\t// limit\n\t\tif ( args.limit ) {\n\t\t\t$fields = $fields.slice( 0, args.limit );\n\t\t}\n\n\t\t// return\n\t\treturn $fields;\n\t};\n\n\t/**\n\t * acf.getFieldObject\n\t *\n\t * Returns a single fieldObject instance for a given $el|key\n\t *\n\t * @date\t1/2/18\n\t * @since\t5.7.0\n\t *\n\t * @param\tstring|jQuery $field The field $el or key\n\t * @return\tjQuery\n\t */\n\n\tacf.getFieldObject = function ( $field ) {\n\t\t// allow key\n\t\tif ( typeof $field === 'string' ) {\n\t\t\t$field = acf.findFieldObject( $field );\n\t\t}\n\n\t\t// instantiate\n\t\tvar field = $field.data( 'acf' );\n\t\tif ( ! field ) {\n\t\t\tfield = acf.newFieldObject( $field );\n\t\t}\n\n\t\t// return\n\t\treturn field;\n\t};\n\n\t/**\n\t * acf.getFieldObjects\n\t *\n\t * Returns an array of fieldObject instances for the given args\n\t *\n\t * @date\t1/2/18\n\t * @since\t5.7.0\n\t *\n\t * @param\tobject args\n\t * @return\tarray\n\t */\n\n\tacf.getFieldObjects = function ( args ) {\n\t\t// query\n\t\tvar $fields = acf.findFieldObjects( args );\n\n\t\t// loop\n\t\tvar fields = [];\n\t\t$fields.each( function () {\n\t\t\tvar field = acf.getFieldObject( $( this ) );\n\t\t\tfields.push( field );\n\t\t} );\n\n\t\t// return\n\t\treturn fields;\n\t};\n\n\t/**\n\t * acf.newFieldObject\n\t *\n\t * Initializes and returns a new FieldObject instance\n\t *\n\t * @date\t1/2/18\n\t * @since\t5.7.0\n\t *\n\t * @param\tjQuery $field The field $el\n\t * @return\tobject\n\t */\n\n\tacf.newFieldObject = function ( $field ) {\n\t\t// instantiate\n\t\tvar field = new acf.FieldObject( $field );\n\n\t\t// action\n\t\tacf.doAction( 'new_field_object', field );\n\n\t\t// return\n\t\treturn field;\n\t};\n\n\t/**\n\t * actionManager\n\t *\n\t * description\n\t *\n\t * @date\t15/12/17\n\t * @since\t5.6.5\n\t *\n\t * @param\ttype $var Description. Default.\n\t * @return\ttype Description.\n\t */\n\n\tvar eventManager = new acf.Model( {\n\t\tpriority: 5,\n\n\t\tinitialize: function () {\n\t\t\t// actions\n\t\t\tvar actions = [ 'prepare', 'ready', 'append', 'remove' ];\n\n\t\t\t// loop\n\t\t\tactions.map( function ( action ) {\n\t\t\t\tthis.addFieldActions( action );\n\t\t\t}, this );\n\t\t},\n\n\t\taddFieldActions: function ( action ) {\n\t\t\t// vars\n\t\t\tvar pluralAction = action + '_field_objects'; // ready_field_objects\n\t\t\tvar singleAction = action + '_field_object'; // ready_field_object\n\t\t\tvar singleEvent = action + 'FieldObject'; // readyFieldObject\n\n\t\t\t// global action\n\t\t\tvar callback = function ( $el /*, arg1, arg2, etc*/ ) {\n\t\t\t\t// vars\n\t\t\t\tvar fieldObjects = acf.getFieldObjects( { parent: $el } );\n\n\t\t\t\t// call plural\n\t\t\t\tif ( fieldObjects.length ) {\n\t\t\t\t\t/// get args [$el, arg1]\n\t\t\t\t\tvar args = acf.arrayArgs( arguments );\n\n\t\t\t\t\t// modify args [pluralAction, fields, arg1]\n\t\t\t\t\targs.splice( 0, 1, pluralAction, fieldObjects );\n\t\t\t\t\tacf.doAction.apply( null, args );\n\t\t\t\t}\n\t\t\t};\n\n\t\t\t// plural action\n\t\t\tvar pluralCallback = function (\n\t\t\t\tfieldObjects /*, arg1, arg2, etc*/\n\t\t\t) {\n\t\t\t\t/// get args [fields, arg1]\n\t\t\t\tvar args = acf.arrayArgs( arguments );\n\n\t\t\t\t// modify args [singleAction, fields, arg1]\n\t\t\t\targs.unshift( singleAction );\n\n\t\t\t\t// loop\n\t\t\t\tfieldObjects.map( function ( fieldObject ) {\n\t\t\t\t\t// modify args [singleAction, field, arg1]\n\t\t\t\t\targs[ 1 ] = fieldObject;\n\t\t\t\t\tacf.doAction.apply( null, args );\n\t\t\t\t} );\n\t\t\t};\n\n\t\t\t// single action\n\t\t\tvar singleCallback = function (\n\t\t\t\tfieldObject /*, arg1, arg2, etc*/\n\t\t\t) {\n\t\t\t\t/// get args [$field, arg1]\n\t\t\t\tvar args = acf.arrayArgs( arguments );\n\n\t\t\t\t// modify args [singleAction, $field, arg1]\n\t\t\t\targs.unshift( singleAction );\n\n\t\t\t\t// action variations (ready_field/type=image)\n\t\t\t\tvar variations = [ 'type', 'name', 'key' ];\n\t\t\t\tvariations.map( function ( variation ) {\n\t\t\t\t\targs[ 0 ] =\n\t\t\t\t\t\tsingleAction +\n\t\t\t\t\t\t'/' +\n\t\t\t\t\t\tvariation +\n\t\t\t\t\t\t'=' +\n\t\t\t\t\t\tfieldObject.get( variation );\n\t\t\t\t\tacf.doAction.apply( null, args );\n\t\t\t\t} );\n\n\t\t\t\t// modify args [arg1]\n\t\t\t\targs.splice( 0, 2 );\n\n\t\t\t\t// event\n\t\t\t\tfieldObject.trigger( singleEvent, args );\n\t\t\t};\n\n\t\t\t// add actions\n\t\t\tacf.addAction( action, callback, 5 );\n\t\t\tacf.addAction( pluralAction, pluralCallback, 5 );\n\t\t\tacf.addAction( singleAction, singleCallback, 5 );\n\t\t},\n\t} );\n\n\t/**\n\t * fieldManager\n\t *\n\t * description\n\t *\n\t * @date\t4/1/18\n\t * @since\t5.6.5\n\t *\n\t * @param\ttype $var Description. Default.\n\t * @return\ttype Description.\n\t */\n\n\tvar fieldManager = new acf.Model( {\n\t\tid: 'fieldManager',\n\n\t\tevents: {\n\t\t\t'submit #post': 'onSubmit',\n\t\t\t'mouseenter .acf-field-list': 'onHoverSortable',\n\t\t\t'click .add-field': 'onClickAdd',\n\t\t},\n\n\t\tactions: {\n\t\t\tremoved_field_object: 'onRemovedField',\n\t\t\tsortstop_field_object: 'onReorderField',\n\t\t\tdelete_field_object: 'onDeleteField',\n\t\t\tchange_field_object_type: 'onChangeFieldType',\n\t\t\tduplicate_field_object: 'onDuplicateField',\n\t\t},\n\n\t\tonSubmit: function ( e, $el ) {\n\t\t\t// vars\n\t\t\tvar fields = acf.getFieldObjects();\n\n\t\t\t// loop\n\t\t\tfields.map( function ( field ) {\n\t\t\t\tfield.submit();\n\t\t\t} );\n\t\t},\n\n\t\tsetFieldMenuOrder: function ( field ) {\n\t\t\tthis.renderFields( field.$el.parent() );\n\t\t},\n\n\t\tonHoverSortable: function ( e, $el ) {\n\t\t\t// bail early if already sortable\n\t\t\tif ( $el.hasClass( 'ui-sortable' ) ) return;\n\n\t\t\t// sortable\n\t\t\t$el.sortable( {\n\t\t\t\thelper: function( event, element ) {\n\t\t\t\t\t// https://core.trac.wordpress.org/ticket/16972#comment:22\n\t\t\t\t\treturn element.clone()\n\t\t\t\t\t\t.find( ':input' )\n\t\t\t\t\t\t\t.attr( 'name', function( i, currentName ) {\n\t\t\t\t\t\t\t\t\treturn 'sort_' + parseInt( Math.random() * 100000, 10 ).toString() + '_' + currentName;\n\t\t\t\t\t\t\t} )\n\t\t\t\t\t\t.end();\n\t\t\t\t},\n\t\t\t\thandle: '.acf-sortable-handle',\n\t\t\t\tconnectWith: '.acf-field-list',\n\t\t\t\tstart: function ( e, ui ) {\n\t\t\t\t\tvar field = acf.getFieldObject( ui.item );\n\t\t\t\t\tui.placeholder.height( ui.item.height() );\n\t\t\t\t\tacf.doAction( 'sortstart_field_object', field, $el );\n\t\t\t\t},\n\t\t\t\tupdate: function ( e, ui ) {\n\t\t\t\t\tvar field = acf.getFieldObject( ui.item );\n\t\t\t\t\tacf.doAction( 'sortstop_field_object', field, $el );\n\t\t\t\t},\n\t\t\t} );\n\t\t},\n\n\t\tonRemovedField: function ( field, $list ) {\n\t\t\tthis.renderFields( $list );\n\t\t},\n\n\t\tonReorderField: function ( field, $list ) {\n\t\t\tfield.updateParent();\n\t\t\tthis.renderFields( $list );\n\t\t},\n\n\t\tonDeleteField: function ( field ) {\n\t\t\t// delete children\n\t\t\tfield.getFields().map( function ( child ) {\n\t\t\t\tchild.delete( { animate: false } );\n\t\t\t} );\n\t\t},\n\n\t\tonChangeFieldType: function ( field ) {\n\t\t\t// enable browse field modal button\n\t\t\tfield.$el.find( 'button.browse-fields' ).prop( 'disabled', false );\n\t\t},\n\n\t\tonDuplicateField: function ( field, newField ) {\n\t\t\t// check for children\n\t\t\tvar children = newField.getFields();\n\t\t\tif ( children.length ) {\n\t\t\t\t// loop\n\t\t\t\tchildren.map( function ( child ) {\n\t\t\t\t\t// wipe field\n\t\t\t\t\tchild.wipe();\n\n\t\t\t\t\t// if the child is open, re-fire the open method to ensure it's initialised correctly.\n\t\t\t\t\tif ( child.isOpen() ) {\n\t\t\t\t\t\tchild.open();\n\t\t\t\t\t}\n\n\t\t\t\t\t// update parent\n\t\t\t\t\tchild.updateParent();\n\t\t\t\t} );\n\n\t\t\t\t// action\n\t\t\t\tacf.doAction(\n\t\t\t\t\t'duplicate_field_objects',\n\t\t\t\t\tchildren,\n\t\t\t\t\tnewField,\n\t\t\t\t\tfield\n\t\t\t\t);\n\t\t\t}\n\n\t\t\t// set menu order\n\t\t\tthis.setFieldMenuOrder( newField );\n\t\t},\n\n\t\trenderFields: function ( $list ) {\n\t\t\t// vars\n\t\t\tvar fields = acf.getFieldObjects( {\n\t\t\t\tlist: $list,\n\t\t\t} );\n\n\t\t\t// no fields\n\t\t\tif ( ! fields.length ) {\n\t\t\t\t$list.addClass( '-empty' );\n\t\t\t\t$list\n\t\t\t\t\t.parents( '.acf-field-list-wrap' )\n\t\t\t\t\t.first()\n\t\t\t\t\t.addClass( '-empty' );\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// has fields\n\t\t\t$list.removeClass( '-empty' );\n\t\t\t$list\n\t\t\t\t.parents( '.acf-field-list-wrap' )\n\t\t\t\t.first()\n\t\t\t\t.removeClass( '-empty' );\n\n\t\t\t// prop\n\t\t\tfields.map( function ( field, i ) {\n\t\t\t\tfield.prop( 'menu_order', i );\n\t\t\t} );\n\t\t},\n\n\t\tonClickAdd: function ( e, $el ) {\n\t\t\tlet $list;\n\n\t\t\tif ( $el.hasClass( 'add-first-field' ) ) {\n\t\t\t\t$list = $el.parents( '.acf-field-list' ).eq( 0 );\n\t\t\t} else if (\n\t\t\t\t$el.parent().hasClass( 'acf-headerbar-actions' ) ||\n\t\t\t\t$el.parent().hasClass( 'no-fields-message-inner' )\n\t\t\t) {\n\t\t\t\t$list = $( '.acf-field-list:first' );\n\t\t\t} else if ( $el.parent().hasClass( 'acf-sub-field-list-header' ) ) {\n\t\t\t\t$list = $el\n\t\t\t\t\t.parents( '.acf-input:first' )\n\t\t\t\t\t.find( '.acf-field-list:first' );\n\t\t\t} else {\n\t\t\t\t$list = $el\n\t\t\t\t\t.closest( '.acf-tfoot' )\n\t\t\t\t\t.siblings( '.acf-field-list' );\n\t\t\t}\n\n\t\t\tthis.addField( $list );\n\t\t},\n\n\t\taddField: function ( $list ) {\n\t\t\t// vars\n\t\t\tvar html = $( '#tmpl-acf-field' ).html();\n\t\t\tvar $el = $( html );\n\t\t\tvar prevId = $el.data( 'id' );\n\t\t\tvar newKey = acf.uniqid( 'field_' );\n\n\t\t\t// duplicate\n\t\t\tvar $newField = acf.duplicate( {\n\t\t\t\ttarget: $el,\n\t\t\t\tsearch: prevId,\n\t\t\t\treplace: newKey,\n\t\t\t\tappend: function ( $el, $el2 ) {\n\t\t\t\t\t$list.append( $el2 );\n\t\t\t\t},\n\t\t\t} );\n\n\t\t\t// get instance\n\t\t\tvar newField = acf.getFieldObject( $newField );\n\n\t\t\t// props\n\t\t\tnewField.prop( 'key', newKey );\n\t\t\tnewField.prop( 'ID', 0 );\n\t\t\tnewField.prop( 'label', '' );\n\t\t\tnewField.prop( 'name', '' );\n\n\t\t\t// attr\n\t\t\t$newField.attr( 'data-key', newKey );\n\t\t\t$newField.attr( 'data-id', newKey );\n\n\t\t\t// update parent prop\n\t\t\tnewField.updateParent();\n\n\t\t\t// focus type\n\t\t\tvar $type = newField.$input( 'type' );\n\t\t\tsetTimeout( function () {\n\t\t\t\tif ( $list.hasClass( 'acf-auto-add-field' ) ) {\n\t\t\t\t\t$list.removeClass( 'acf-auto-add-field' );\n\t\t\t\t} else {\n\t\t\t\t\t$type.trigger( 'focus' );\n\t\t\t\t}\n\t\t\t}, 251 );\n\n\t\t\t// open\n\t\t\tnewField.open();\n\n\t\t\t// set menu order\n\t\t\tthis.renderFields( $list );\n\n\t\t\t// action\n\t\t\tacf.doAction( 'add_field_object', newField );\n\t\t\tacf.doAction( 'append_field_object', newField );\n\t\t},\n\t} );\n} )( jQuery );\n","( function ( $, undefined ) {\n\t/**\n\t * locationManager\n\t *\n\t * Field group location rules functionality\n\t *\n\t * @date\t15/12/17\n\t * @since\t5.7.0\n\t *\n\t * @param\tvoid\n\t * @return\tvoid\n\t */\n\n\tvar locationManager = new acf.Model( {\n\t\tid: 'locationManager',\n\t\twait: 'ready',\n\n\t\tevents: {\n\t\t\t'click .add-location-rule': 'onClickAddRule',\n\t\t\t'click .add-location-group': 'onClickAddGroup',\n\t\t\t'click .remove-location-rule': 'onClickRemoveRule',\n\t\t\t'change .refresh-location-rule': 'onChangeRemoveRule',\n\t\t},\n\n\t\tinitialize: function () {\n\t\t\tthis.$el = $( '#acf-field-group-options' );\n\t\t\tthis.addProLocations();\n\t\t\tthis.updateGroupsClass();\n\t\t},\n\n\t\taddProLocations: function () {\n\t\t\t// Make sure we're only running this on free version.\n\t\t\tif ( acf.get( 'is_pro' ) ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// Loop over each pro field type and append it to the select.\n\t\t\tconst PROLocationTypes = acf.get( 'PROLocationTypes' );\n\t\t\tif ( typeof PROLocationTypes !== 'object' ) return;\n\n\t\t\tconst $formsGroup = this.$el\n\t\t\t\t.find( 'select.refresh-location-rule' )\n\t\t\t\t.find( 'optgroup[label=\"Forms\"]' )\n\n\t\t\tfor ( const [ key, name ] of Object.entries( PROLocationTypes ) ) {\n\t\t\t\t$formsGroup.append(\n\t\t\t\t\t''\n\t\t\t\t);\n\t\t\t}\n\t\t},\n\n\t\tonClickAddRule: function ( e, $el ) {\n\t\t\tthis.addRule( $el.closest( 'tr' ) );\n\t\t},\n\n\t\tonClickRemoveRule: function ( e, $el ) {\n\t\t\tthis.removeRule( $el.closest( 'tr' ) );\n\t\t},\n\n\t\tonChangeRemoveRule: function ( e, $el ) {\n\t\t\tthis.changeRule( $el.closest( 'tr' ) );\n\t\t},\n\n\t\tonClickAddGroup: function ( e, $el ) {\n\t\t\tthis.addGroup();\n\t\t},\n\n\t\taddRule: function ( $tr ) {\n\t\t\tacf.duplicate( $tr );\n\t\t\tthis.updateGroupsClass();\n\t\t},\n\n\t\tremoveRule: function ( $tr ) {\n\t\t\tif ( $tr.siblings( 'tr' ).length == 0 ) {\n\t\t\t\t$tr.closest( '.rule-group' ).remove();\n\t\t\t} else {\n\t\t\t\t$tr.remove();\n\t\t\t}\n\n\t\t\t// Update h4\n\t\t\tvar $group = this.$( '.rule-group:first' );\n\t\t\t$group.find( 'h4' ).text( acf.__( 'Show this field group if' ) );\n\n\t\t\tthis.updateGroupsClass();\n\t\t},\n\n\t\tchangeRule: function ( $rule ) {\n\t\t\t// vars\n\t\t\tvar $group = $rule.closest( '.rule-group' );\n\t\t\tvar prefix = $rule\n\t\t\t\t.find( 'td.param select' )\n\t\t\t\t.attr( 'name' )\n\t\t\t\t.replace( '[param]', '' );\n\n\t\t\t// ajaxdata\n\t\t\tvar ajaxdata = {};\n\t\t\tajaxdata.action = 'acf/field_group/render_location_rule';\n\t\t\tajaxdata.rule = acf.serialize( $rule, prefix );\n\t\t\tajaxdata.rule.id = $rule.data( 'id' );\n\t\t\tajaxdata.rule.group = $group.data( 'id' );\n\n\t\t\t// temp disable\n\t\t\tacf.disable( $rule.find( 'td.value' ) );\n\n\t\t\t// ajax\n\t\t\t$.ajax( {\n\t\t\t\turl: acf.get( 'ajaxurl' ),\n\t\t\t\tdata: acf.prepareForAjax( ajaxdata ),\n\t\t\t\ttype: 'post',\n\t\t\t\tdataType: 'html',\n\t\t\t\tsuccess: function ( html ) {\n\t\t\t\t\tif ( ! html ) return;\n\t\t\t\t\t$rule.replaceWith( html );\n\t\t\t\t},\n\t\t\t} );\n\t\t},\n\n\t\taddGroup: function () {\n\t\t\t// vars\n\t\t\tvar $group = this.$( '.rule-group:last' );\n\n\t\t\t// duplicate\n\t\t\t$group2 = acf.duplicate( $group );\n\n\t\t\t// update h4\n\t\t\t$group2.find( 'h4' ).text( acf.__( 'or' ) );\n\n\t\t\t// remove all tr's except the first one\n\t\t\t$group2.find( 'tr' ).not( ':first' ).remove();\n\n\t\t\t// update the groups class\n\t\t\tthis.updateGroupsClass();\n\t\t},\n\n\t\tupdateGroupsClass: function () {\n\t\t\tvar $group = this.$( '.rule-group:last' );\n\n\t\t\tvar $ruleGroups = $group.closest( '.rule-groups' );\n\n\t\t\tvar rows_count = $ruleGroups.find( '.acf-table tr' ).length;\n\n\t\t\tif ( rows_count > 1 ) {\n\t\t\t\t$ruleGroups.addClass( 'rule-groups-multiple' );\n\t\t\t} else {\n\t\t\t\t$ruleGroups.removeClass( 'rule-groups-multiple' );\n\t\t\t}\n\t\t},\n\t} );\n} )( jQuery );\n","( function ( $, undefined ) {\n\t/**\n\t * mid\n\t *\n\t * Calculates the model ID for a field type\n\t *\n\t * @date\t15/12/17\n\t * @since\t5.6.5\n\t *\n\t * @param\tstring type\n\t * @return\tstring\n\t */\n\n\tvar modelId = function ( type ) {\n\t\treturn acf.strPascalCase( type || '' ) + 'FieldSetting';\n\t};\n\n\t/**\n\t * registerFieldType\n\t *\n\t * description\n\t *\n\t * @date\t14/12/17\n\t * @since\t5.6.5\n\t *\n\t * @param\ttype $var Description. Default.\n\t * @return\ttype Description.\n\t */\n\n\tacf.registerFieldSetting = function ( model ) {\n\t\tvar proto = model.prototype;\n\t\tvar mid = modelId( proto.type + ' ' + proto.name );\n\t\tthis.models[ mid ] = model;\n\t};\n\n\t/**\n\t * newField\n\t *\n\t * description\n\t *\n\t * @date\t14/12/17\n\t * @since\t5.6.5\n\t *\n\t * @param\ttype $var Description. Default.\n\t * @return\ttype Description.\n\t */\n\n\tacf.newFieldSetting = function ( field ) {\n\t\t// vars\n\t\tvar type = field.get( 'setting' ) || '';\n\t\tvar name = field.get( 'name' ) || '';\n\t\tvar mid = modelId( type + ' ' + name );\n\t\tvar model = acf.models[ mid ] || null;\n\n\t\t// bail early if no setting\n\t\tif ( model === null ) return false;\n\n\t\t// instantiate\n\t\tvar setting = new model( field );\n\n\t\t// return\n\t\treturn setting;\n\t};\n\n\t/**\n\t * acf.getFieldSetting\n\t *\n\t * description\n\t *\n\t * @date\t19/4/18\n\t * @since\t5.6.9\n\t *\n\t * @param\ttype $var Description. Default.\n\t * @return\ttype Description.\n\t */\n\n\tacf.getFieldSetting = function ( field ) {\n\t\t// allow jQuery\n\t\tif ( field instanceof jQuery ) {\n\t\t\tfield = acf.getField( field );\n\t\t}\n\n\t\t// return\n\t\treturn field.setting;\n\t};\n\n\t/**\n\t * settingsManager\n\t *\n\t * @since\t5.6.5\n\t *\n\t * @param\tobject The object containing the extended variables and methods.\n\t * @return\tvoid\n\t */\n\tvar settingsManager = new acf.Model( {\n\t\tactions: {\n\t\t\tnew_field: 'onNewField',\n\t\t},\n\t\tonNewField: function ( field ) {\n\t\t\tfield.setting = acf.newFieldSetting( field );\n\t\t},\n\t} );\n\n\t/**\n\t * acf.FieldSetting\n\t *\n\t * @since\t5.6.5\n\t *\n\t * @param\tobject The object containing the extended variables and methods.\n\t * @return\tvoid\n\t */\n\tacf.FieldSetting = acf.Model.extend( {\n\t\tfield: false,\n\t\ttype: '',\n\t\tname: '',\n\t\twait: 'ready',\n\t\teventScope: '.acf-field',\n\n\t\tevents: {\n\t\t\tchange: 'render',\n\t\t},\n\n\t\tsetup: function ( field ) {\n\t\t\t// vars\n\t\t\tvar $field = field.$el;\n\n\t\t\t// set props\n\t\t\tthis.$el = $field;\n\t\t\tthis.field = field;\n\t\t\tthis.$fieldObject = $field.closest( '.acf-field-object' );\n\t\t\tthis.fieldObject = acf.getFieldObject( this.$fieldObject );\n\n\t\t\t// inherit data\n\t\t\t$.extend( this.data, field.data );\n\t\t},\n\n\t\tinitialize: function () {\n\t\t\tthis.render();\n\t\t},\n\n\t\trender: function () {\n\t\t\t// do nothing\n\t\t},\n\t} );\n\n\t/**\n\t * Accordion and Tab Endpoint Settings\n\t *\n\t * The 'endpoint' setting on accordions and tabs requires an additional class on the\n\t * field object row when enabled.\n\t *\n\t * @since\t6.0.0\n\t *\n\t * @param\tobject The object containing the extended variables and methods.\n\t * @return\tvoid\n\t */\n\tvar EndpointFieldSetting = acf.FieldSetting.extend( {\n\t\ttype: '',\n\t\tname: '',\n\t\trender: function () {\n\t\t\tvar $endpoint_setting = this.fieldObject.$setting( 'endpoint' );\n\t\t\tvar $endpoint_field = $endpoint_setting.find(\n\t\t\t\t'input[type=\"checkbox\"]:first'\n\t\t\t);\n\t\t\tif ( $endpoint_field.is( ':checked' ) ) {\n\t\t\t\tthis.fieldObject.$el.addClass( 'acf-field-is-endpoint' );\n\t\t\t} else {\n\t\t\t\tthis.fieldObject.$el.removeClass( 'acf-field-is-endpoint' );\n\t\t\t}\n\t\t},\n\t} );\n\n\tvar AccordionEndpointFieldSetting = EndpointFieldSetting.extend( {\n\t\ttype: 'accordion',\n\t\tname: 'endpoint',\n\t} );\n\n\tvar TabEndpointFieldSetting = EndpointFieldSetting.extend( {\n\t\ttype: 'tab',\n\t\tname: 'endpoint',\n\t} );\n\n\tacf.registerFieldSetting( AccordionEndpointFieldSetting );\n\tacf.registerFieldSetting( TabEndpointFieldSetting );\n\n\t/**\n\t * Date Picker\n\t *\n\t * This field type requires some extra logic for its settings\n\t *\n\t * @since\t5.0.0\n\t *\n\t * @param\tobject The object containing the extended variables and methods.\n\t * @return\tvoid\n\t */\n\tvar DisplayFormatFieldSetting = acf.FieldSetting.extend( {\n\t\ttype: '',\n\t\tname: '',\n\t\trender: function () {\n\t\t\tvar $input = this.$( 'input[type=\"radio\"]:checked' );\n\t\t\tif ( $input.val() != 'other' ) {\n\t\t\t\tthis.$( 'input[type=\"text\"]' ).val( $input.val() );\n\t\t\t}\n\t\t},\n\t} );\n\n\tvar DatePickerDisplayFormatFieldSetting = DisplayFormatFieldSetting.extend(\n\t\t{\n\t\t\ttype: 'date_picker',\n\t\t\tname: 'display_format',\n\t\t}\n\t);\n\n\tvar DatePickerReturnFormatFieldSetting = DisplayFormatFieldSetting.extend( {\n\t\ttype: 'date_picker',\n\t\tname: 'return_format',\n\t} );\n\n\tacf.registerFieldSetting( DatePickerDisplayFormatFieldSetting );\n\tacf.registerFieldSetting( DatePickerReturnFormatFieldSetting );\n\n\t/**\n\t * Date Time Picker\n\t *\n\t * This field type requires some extra logic for its settings\n\t *\n\t * @since\t5.0.0\n\t *\n\t * @param\tobject The object containing the extended variables and methods.\n\t * @return\tvoid\n\t */\n\tvar DateTimePickerDisplayFormatFieldSetting =\n\t\tDisplayFormatFieldSetting.extend( {\n\t\t\ttype: 'date_time_picker',\n\t\t\tname: 'display_format',\n\t\t} );\n\n\tvar DateTimePickerReturnFormatFieldSetting =\n\t\tDisplayFormatFieldSetting.extend( {\n\t\t\ttype: 'date_time_picker',\n\t\t\tname: 'return_format',\n\t\t} );\n\n\tacf.registerFieldSetting( DateTimePickerDisplayFormatFieldSetting );\n\tacf.registerFieldSetting( DateTimePickerReturnFormatFieldSetting );\n\n\t/**\n\t * Time Picker\n\t *\n\t * This field type requires some extra logic for its settings\n\t *\n\t * @since\t5.0.0\n\t *\n\t * @param\tobject The object containing the extended variables and methods.\n\t * @return\tvoid\n\t */\n\tvar TimePickerDisplayFormatFieldSetting = DisplayFormatFieldSetting.extend(\n\t\t{\n\t\t\ttype: 'time_picker',\n\t\t\tname: 'display_format',\n\t\t}\n\t);\n\n\tvar TimePickerReturnFormatFieldSetting = DisplayFormatFieldSetting.extend( {\n\t\ttype: 'time_picker',\n\t\tname: 'return_format',\n\t} );\n\n\tacf.registerFieldSetting( TimePickerDisplayFormatFieldSetting );\n\tacf.registerFieldSetting( TimePickerReturnFormatFieldSetting );\n\n\t/**\n\t * Color Picker Settings.\n\t *\n\t * @date\t16/12/20\n\t * @since\t5.9.4\n\t *\n\t * @param\tobject The object containing the extended variables and methods.\n\t * @return\tvoid\n\t */\n\tvar ColorPickerReturnFormat = acf.FieldSetting.extend( {\n\t\ttype: 'color_picker',\n\t\tname: 'enable_opacity',\n\t\trender: function () {\n\t\t\tvar $return_format_setting =\n\t\t\t\tthis.fieldObject.$setting( 'return_format' );\n\t\t\tvar $default_value_setting =\n\t\t\t\tthis.fieldObject.$setting( 'default_value' );\n\t\t\tvar $labelText = $return_format_setting\n\t\t\t\t.find( 'input[type=\"radio\"][value=\"string\"]' )\n\t\t\t\t.parent( 'label' )\n\t\t\t\t.contents()\n\t\t\t\t.last();\n\t\t\tvar $defaultPlaceholder =\n\t\t\t\t$default_value_setting.find( 'input[type=\"text\"]' );\n\t\t\tvar l10n = acf.get( 'colorPickerL10n' );\n\n\t\t\tif ( this.field.val() ) {\n\t\t\t\t$labelText.replaceWith( l10n.rgba_string );\n\t\t\t\t$defaultPlaceholder.attr(\n\t\t\t\t\t'placeholder',\n\t\t\t\t\t'rgba(255,255,255,0.8)'\n\t\t\t\t);\n\t\t\t} else {\n\t\t\t\t$labelText.replaceWith( l10n.hex_string );\n\t\t\t\t$defaultPlaceholder.attr( 'placeholder', '#FFFFFF' );\n\t\t\t}\n\t\t},\n\t} );\n\tacf.registerFieldSetting( ColorPickerReturnFormat );\n} )( jQuery );\n","( function ( $, undefined ) {\n\t/**\n\t * fieldGroupManager\n\t *\n\t * Generic field group functionality\n\t *\n\t * @date\t15/12/17\n\t * @since\t5.7.0\n\t *\n\t * @param\tvoid\n\t * @return\tvoid\n\t */\n\n\tvar fieldGroupManager = new acf.Model( {\n\t\tid: 'fieldGroupManager',\n\n\t\tevents: {\n\t\t\t'submit #post': 'onSubmit',\n\t\t\t'click a[href=\"#\"]': 'onClick',\n\t\t\t'click .acf-delete-field-group': 'onClickDeleteFieldGroup',\n\t\t\t'blur input#title': 'validateTitle',\n\t\t\t'input input#title': 'validateTitle',\n\t\t},\n\n\t\tfilters: {\n\t\t\tfind_fields_args: 'filterFindFieldArgs',\n\t\t\tfind_fields_selector: 'filterFindFieldsSelector',\n\t\t},\n\n\t\tinitialize: function () {\n\t\t\tacf.addAction( 'prepare', this.maybeInitNewFieldGroup );\n\t\t\tacf.add_filter( 'select2_args', this.setBidirectionalSelect2Args );\n\t\t\tacf.add_filter(\n\t\t\t\t'select2_ajax_data',\n\t\t\t\tthis.setBidirectionalSelect2AjaxDataArgs\n\t\t\t);\n\t\t},\n\n\t\tsetBidirectionalSelect2Args: function (\n\t\t\targs,\n\t\t\t$select,\n\t\t\tsettings,\n\t\t\tfield,\n\t\t\tinstance\n\t\t) {\n\t\t\tif ( field?.data?.( 'key' ) !== 'bidirectional_target' ) return args;\n\n\t\t\targs.dropdownCssClass = 'field-type-select-results';\n\n\t\t\targs.templateResult = function ( selection ) {\n\t\t\t\tif ( 'undefined' !== typeof selection.element ) {\n\t\t\t\t\treturn selection;\n\t\t\t\t}\n\n\t\t\t\tif ( selection.children ) {\n\t\t\t\t\treturn selection.text;\n\t\t\t\t}\n\n\t\t\t\tif (\n\t\t\t\t\tselection.loading ||\n\t\t\t\t\t( selection.element &&\n\t\t\t\t\t\tselection.element.nodeName === 'OPTGROUP' )\n\t\t\t\t) {\n\t\t\t\t\tvar $selection = $( '' );\n\t\t\t\t\t$selection.html( acf.escHtml( selection.text ) );\n\t\t\t\t\treturn $selection;\n\t\t\t\t}\n\n\t\t\t\tif (\n\t\t\t\t\t'undefined' === typeof selection.human_field_type ||\n\t\t\t\t\t'undefined' === typeof selection.field_type ||\n\t\t\t\t\t'undefined' === typeof selection.this_field\n\t\t\t\t) {\n\t\t\t\t\treturn selection.text;\n\t\t\t\t}\n\n\t\t\t\tvar $selection = $(\n\t\t\t\t\t'' +\n\t\t\t\t\t\tacf.escHtml( selection.text ) +\n\t\t\t\t\t\t''\n\t\t\t\t);\n\t\t\t\tif ( selection.this_field ) {\n\t\t\t\t\t$selection\n\t\t\t\t\t\t.last()\n\t\t\t\t\t\t.append(\n\t\t\t\t\t\t\t'' +\n\t\t\t\t\t\t\t\tacf.__( 'This Field' ) +\n\t\t\t\t\t\t\t\t''\n\t\t\t\t\t\t);\n\t\t\t\t}\n\t\t\t\t$selection.data( 'element', selection.element );\n\t\t\t\treturn $selection;\n\t\t\t};\n\n\t\t\treturn args;\n\t\t},\n\n\t\tsetBidirectionalSelect2AjaxDataArgs: function (\n\t\t\tdata,\n\t\t\targs,\n\t\t\t$input,\n\t\t\tfield,\n\t\t\tinstance\n\t\t) {\n\t\t\tif ( data.field_key !== 'bidirectional_target' ) return data;\n\n\t\t\tconst $fieldObject = acf.findFieldObjects( { child: field } );\n\t\t\tconst fieldObject = acf.getFieldObject( $fieldObject );\n\t\t\tdata.field_key = '_acf_bidirectional_target';\n\t\t\tdata.parent_key = fieldObject.get( 'key' );\n\t\t\tdata.field_type = fieldObject.get( 'type' );\n\n\t\t\t// This might not be needed, but I wanted to figure out how to get a field setting in the JS API when the key isn't unique.\n\t\t\tdata.post_type = acf\n\t\t\t\t.getField(\n\t\t\t\t\tacf.findFields( { parent: $fieldObject, key: 'post_type' } )\n\t\t\t\t)\n\t\t\t\t.val();\n\n\t\t\treturn data;\n\t\t},\n\n\t\tmaybeInitNewFieldGroup: function () {\n\t\t\tlet $field_list_wrapper = $(\n\t\t\t\t'#acf-field-group-fields > .inside > .acf-field-list-wrap.acf-auto-add-field'\n\t\t\t);\n\n\t\t\tif ( $field_list_wrapper.length ) {\n\t\t\t\t$( '.acf-headerbar-actions .add-field' ).trigger( 'click' );\n\t\t\t\t$( '.acf-title-wrap #title' ).trigger( 'focus' );\n\t\t\t}\n\t\t},\n\n\t\tonSubmit: function ( e, $el ) {\n\t\t\t// vars\n\t\t\tvar $title = $( '.acf-title-wrap #title' );\n\n\t\t\t// empty\n\t\t\tif ( ! $title.val() ) {\n\t\t\t\t// prevent default\n\t\t\t\te.preventDefault();\n\n\t\t\t\t// unlock form\n\t\t\t\tacf.unlockForm( $el );\n\n\t\t\t\t// focus\n\t\t\t\t$title.trigger( 'focus' );\n\t\t\t}\n\t\t},\n\n\t\tonClick: function ( e ) {\n\t\t\te.preventDefault();\n\t\t},\n\n\t\tonClickDeleteFieldGroup: function ( e, $el ) {\n\t\t\te.preventDefault();\n\t\t\t$el.addClass( '-hover' );\n\n\t\t\t// Add confirmation tooltip.\n\t\t\tacf.newTooltip( {\n\t\t\t\tconfirm: true,\n\t\t\t\ttarget: $el,\n\t\t\t\tcontext: this,\n\t\t\t\ttext: acf.__( 'Move field group to trash?' ),\n\t\t\t\tconfirm: function () {\n\t\t\t\t\twindow.location.href = $el.attr( 'href' );\n\t\t\t\t},\n\t\t\t\tcancel: function () {\n\t\t\t\t\t$el.removeClass( '-hover' );\n\t\t\t\t},\n\t\t\t} );\n\t\t},\n\n\t\tvalidateTitle: function ( e, $el ) {\n\t\t\tlet $submitButton = $( '.acf-publish' );\n\n\t\t\tif ( ! $el.val() ) {\n\t\t\t\t$el.addClass( 'acf-input-error' );\n\t\t\t\t$submitButton.addClass( 'disabled' );\n\t\t\t\t$( '.acf-publish' ).addClass( 'disabled' );\n\t\t\t} else {\n\t\t\t\t$el.removeClass( 'acf-input-error' );\n\t\t\t\t$submitButton.removeClass( 'disabled' );\n\t\t\t\t$( '.acf-publish' ).removeClass( 'disabled' );\n\t\t\t}\n\t\t},\n\n\t\tfilterFindFieldArgs: function ( args ) {\n\t\t\targs.visible = true;\n\n\t\t\tif (\n\t\t\t\targs.parent &&\n\t\t\t\t( args.parent.hasClass( 'acf-field-object' ) ||\n\t\t\t\t\targs.parent.hasClass( 'acf-browse-fields-modal-wrap' ) ||\n\t\t\t\t\targs.parent.parents( '.acf-field-object' ).length )\n\t\t\t) {\n\t\t\t\targs.visible = false;\n\t\t\t\targs.excludeSubFields = true;\n\t\t\t}\n\n\t\t\t// If the field has any open subfields, don't exclude subfields as they're already being displayed.\n\t\t\tif (\n\t\t\t\targs.parent &&\n\t\t\t\targs.parent.find( '.acf-field-object.open' ).length\n\t\t\t) {\n\t\t\t\targs.excludeSubFields = false;\n\t\t\t}\n\n\t\t\treturn args;\n\t\t},\n\n\t\tfilterFindFieldsSelector: function ( selector ) {\n\t\t\treturn selector + ', .acf-field-acf-field-group-settings-tabs';\n\t\t},\n\t} );\n\n\t/**\n\t * screenOptionsManager\n\t *\n\t * Screen options functionality\n\t *\n\t * @date\t15/12/17\n\t * @since\t5.7.0\n\t *\n\t * @param\tvoid\n\t * @return\tvoid\n\t */\n\n\tvar screenOptionsManager = new acf.Model( {\n\t\tid: 'screenOptionsManager',\n\t\twait: 'prepare',\n\n\t\tevents: {\n\t\t\t'change #acf-field-key-hide': 'onFieldKeysChange',\n\t\t\t'change #acf-field-settings-tabs': 'onFieldSettingsTabsChange',\n\t\t\t'change [name=\"screen_columns\"]': 'render',\n\t\t},\n\n\t\tinitialize: function () {\n\t\t\t// vars\n\t\t\tvar $div = $( '#adv-settings' );\n\t\t\tvar $append = $( '#acf-append-show-on-screen' );\n\n\t\t\t// append\n\t\t\t$div.find( '.metabox-prefs' ).append( $append.html() );\n\t\t\t$div.find( '.metabox-prefs br' ).remove();\n\n\t\t\t// clean up\n\t\t\t$append.remove();\n\n\t\t\t// initialize\n\t\t\tthis.$el = $( '#screen-options-wrap' );\n\n\t\t\t// render\n\t\t\tthis.render();\n\t\t},\n\n\t\tisFieldKeysChecked: function () {\n\t\t\treturn this.$el.find( '#acf-field-key-hide' ).prop( 'checked' );\n\t\t},\n\n\t\tisFieldSettingsTabsChecked: function () {\n\t\t\tconst $input = this.$el.find( '#acf-field-settings-tabs' );\n\n\t\t\t// Screen option is hidden by filter.\n\t\t\tif ( ! $input.length ) {\n\t\t\t\treturn false;\n\t\t\t}\n\n\t\t\treturn $input.prop( 'checked' );\n\t\t},\n\n\t\tgetSelectedColumnCount: function () {\n\t\t\treturn this.$el\n\t\t\t\t.find( 'input[name=\"screen_columns\"]:checked' )\n\t\t\t\t.val();\n\t\t},\n\n\t\tonFieldKeysChange: function ( e, $el ) {\n\t\t\tvar val = this.isFieldKeysChecked() ? 1 : 0;\n\t\t\tacf.updateUserSetting( 'show_field_keys', val );\n\t\t\tthis.render();\n\t\t},\n\n\t\tonFieldSettingsTabsChange: function () {\n\t\t\tconst val = this.isFieldSettingsTabsChecked() ? 1 : 0;\n\t\t\tacf.updateUserSetting( 'show_field_settings_tabs', val );\n\t\t\tthis.render();\n\t\t},\n\n\t\trender: function () {\n\t\t\tif ( this.isFieldKeysChecked() ) {\n\t\t\t\t$( '#acf-field-group-fields' ).addClass( 'show-field-keys' );\n\t\t\t} else {\n\t\t\t\t$( '#acf-field-group-fields' ).removeClass( 'show-field-keys' );\n\t\t\t}\n\n\t\t\tif ( ! this.isFieldSettingsTabsChecked() ) {\n\t\t\t\t$( '#acf-field-group-fields' ).addClass( 'hide-tabs' );\n\t\t\t\t$( '.acf-field-settings-main' )\n\t\t\t\t\t.removeClass( 'acf-hidden' )\n\t\t\t\t\t.prop( 'hidden', false );\n\t\t\t} else {\n\t\t\t\t$( '#acf-field-group-fields' ).removeClass( 'hide-tabs' );\n\n\t\t\t\t$( '.acf-field-object' ).each( function () {\n\t\t\t\t\tconst tabFields = acf.getFields( {\n\t\t\t\t\t\ttype: 'tab',\n\t\t\t\t\t\tparent: $( this ),\n\t\t\t\t\t\texcludeSubFields: true,\n\t\t\t\t\t\tlimit: 1,\n\t\t\t\t\t} );\n\n\t\t\t\t\tif ( tabFields.length ) {\n\t\t\t\t\t\ttabFields[ 0 ].tabs.set( 'initialized', false );\n\t\t\t\t\t}\n\n\t\t\t\t\tacf.doAction( 'show', $( this ) );\n\t\t\t\t} );\n\t\t\t}\n\n\t\t\tif ( this.getSelectedColumnCount() == 1 ) {\n\t\t\t\t$( 'body' ).removeClass( 'columns-2' );\n\t\t\t\t$( 'body' ).addClass( 'columns-1' );\n\t\t\t} else {\n\t\t\t\t$( 'body' ).removeClass( 'columns-1' );\n\t\t\t\t$( 'body' ).addClass( 'columns-2' );\n\t\t\t}\n\t\t},\n\t} );\n\n\t/**\n\t * appendFieldManager\n\t *\n\t * Appends fields together\n\t *\n\t * @date\t15/12/17\n\t * @since\t5.7.0\n\t *\n\t * @param\tvoid\n\t * @return\tvoid\n\t */\n\n\tvar appendFieldManager = new acf.Model( {\n\t\tactions: {\n\t\t\tnew_field: 'onNewField',\n\t\t},\n\n\t\tonNewField: function ( field ) {\n\t\t\t// bail early if not append\n\t\t\tif ( ! field.has( 'append' ) ) return;\n\n\t\t\t// vars\n\t\t\tvar append = field.get( 'append' );\n\t\t\tvar $sibling = field.$el\n\t\t\t\t.siblings( '[data-name=\"' + append + '\"]' )\n\t\t\t\t.first();\n\n\t\t\t// bail early if no sibling\n\t\t\tif ( ! $sibling.length ) return;\n\n\t\t\t// ul\n\t\t\tvar $div = $sibling.children( '.acf-input' );\n\t\t\tvar $ul = $div.children( 'ul' );\n\n\t\t\t// create ul\n\t\t\tif ( ! $ul.length ) {\n\t\t\t\t$div.wrapInner( '' );\n\t\t\t\t$ul = $div.children( 'ul' );\n\t\t\t}\n\n\t\t\t// li\n\t\t\tvar html = field.$( '.acf-input' ).html();\n\t\t\tvar $li = $( '
  • ' + html + '
  • ' );\n\t\t\t$ul.append( $li );\n\t\t\t$ul.attr( 'data-cols', $ul.children().length );\n\n\t\t\t// clean up\n\t\t\tfield.remove();\n\t\t},\n\t} );\n} )( jQuery );\n","import toPropertyKey from \"./toPropertyKey.js\";\nexport default function _defineProperty(obj, key, value) {\n key = toPropertyKey(key);\n if (key in obj) {\n Object.defineProperty(obj, key, {\n value: value,\n enumerable: true,\n configurable: true,\n writable: true\n });\n } else {\n obj[key] = value;\n }\n return obj;\n}","import _typeof from \"./typeof.js\";\nexport default function toPrimitive(t, r) {\n if (\"object\" != _typeof(t) || !t) return t;\n var e = t[Symbol.toPrimitive];\n if (void 0 !== e) {\n var i = e.call(t, r || \"default\");\n if (\"object\" != _typeof(i)) return i;\n throw new TypeError(\"@@toPrimitive must return a primitive value.\");\n }\n return (\"string\" === r ? String : Number)(t);\n}","import _typeof from \"./typeof.js\";\nimport toPrimitive from \"./toPrimitive.js\";\nexport default function toPropertyKey(t) {\n var i = toPrimitive(t, \"string\");\n return \"symbol\" == _typeof(i) ? i : String(i);\n}","export default function _typeof(o) {\n \"@babel/helpers - typeof\";\n\n return _typeof = \"function\" == typeof Symbol && \"symbol\" == typeof Symbol.iterator ? function (o) {\n return typeof o;\n } : function (o) {\n return o && \"function\" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? \"symbol\" : typeof o;\n }, _typeof(o);\n}","// The module cache\nvar __webpack_module_cache__ = {};\n\n// The require function\nfunction __webpack_require__(moduleId) {\n\t// Check if module is in cache\n\tvar cachedModule = __webpack_module_cache__[moduleId];\n\tif (cachedModule !== undefined) {\n\t\treturn cachedModule.exports;\n\t}\n\t// Create a new module (and put it into the cache)\n\tvar module = __webpack_module_cache__[moduleId] = {\n\t\t// no module.id needed\n\t\t// no module.loaded needed\n\t\texports: {}\n\t};\n\n\t// Execute the module function\n\t__webpack_modules__[moduleId](module, module.exports, __webpack_require__);\n\n\t// Return the exports of the module\n\treturn module.exports;\n}\n\n","// getDefaultExport function for compatibility with non-harmony modules\n__webpack_require__.n = (module) => {\n\tvar getter = module && module.__esModule ?\n\t\t() => (module['default']) :\n\t\t() => (module);\n\t__webpack_require__.d(getter, { a: getter });\n\treturn getter;\n};","// define getter functions for harmony exports\n__webpack_require__.d = (exports, definition) => {\n\tfor(var key in definition) {\n\t\tif(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {\n\t\t\tObject.defineProperty(exports, key, { enumerable: true, get: definition[key] });\n\t\t}\n\t}\n};","__webpack_require__.o = (obj, prop) => (Object.prototype.hasOwnProperty.call(obj, prop))","// define __esModule on exports\n__webpack_require__.r = (exports) => {\n\tif(typeof Symbol !== 'undefined' && Symbol.toStringTag) {\n\t\tObject.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });\n\t}\n\tObject.defineProperty(exports, '__esModule', { value: true });\n};","import './_field-group.js';\nimport './_field-group-field.js';\nimport './_field-group-settings.js';\nimport './_field-group-conditions.js';\nimport './_field-group-fields.js';\nimport './_field-group-locations.js';\nimport './_field-group-compatibility.js';\nimport './_browse-fields-modal.js';\n"],"names":["$","undefined","acf","browseFieldsModal","data","openedBy","currentFieldType","popularFieldTypes","events","setup","props","extend","$el","tmpl","render","initialize","open","lockFocusToModal","find","focus","doAction","html","getFieldTypes","category","search","fieldTypes","get","Object","values","_objectSpread","filter","fieldType","includes","name","pro","label","toLowerCase","labelParts","split","match","startsWith","length","forEach","part","$tabs","self","each","append","getFieldTypeHTML","initializeFieldLabel","initializeFieldType","onChangeFieldType","iconName","replaceAll","decodeFieldTypeURL","url","renderFieldTypeDesc","fieldTypeInfo","fieldTypeFilter","args","parseArgs","description","doc_url","tutorial_url","preview_image","text","attr","show","hide","parent","isPro","$upgateToProButton","$upgradeToUnlockButton","_fieldObject$data","fieldObject","type","set","isFieldTypePopular","selectedFieldType","x","uppercaseCategory","toUpperCase","slice","searchTabElement","setTimeout","click","labelText","$fieldLabel","val","updateFieldObjectFieldLabel","trigger","removeClass","addClass","onSearchFieldTypes","e","$modal","inputVal","searchString","resultsHtml","matches","trim","onClickBrowsePopular","first","onClickSelectField","$fieldTypeSelect","close","onClickFieldType","$fieldType","currentTarget","onClickClose","onPressEscapeClose","key","returnFocusToOrigin","remove","models","Modal","newBrowseFieldsModal","window","jQuery","_acf","getCompatibility","field_group","save_field","$field","getFieldObject","save","delete_field","animate","delete","update_field_meta","value","prop","delete_field_meta","field_object","model","o","$settings","tag","tags","splice","join","selector","str_replace","_add_action","callback","add_action","apply","arguments","_add_filter","add_filter","_add_event","event","substr","indexOf","context","document","on","closest","_set_$field","setting","actionManager","Model","actions","open_field_object","close_field_object","add_field_object","duplicate_field_object","delete_field_object","change_field_object_type","change_field_object_label","change_field_object_name","change_field_object_parent","sortstop_field_object","onOpenFieldObject","field","onCloseFieldObject","onAddFieldObject","onDuplicateFieldObject","onDeleteFieldObject","onChangeFieldObjectType","onChangeFieldObjectLabel","onChangeFieldObjectName","onChangeFieldObjectParent","ConditionalLogicFieldSetting","FieldSetting","$rule","scope","ruleData","$input","$td","$toggle","$control","$groups","$rules","$tabLabel","$div","enable","disable","renderRules","renderRule","renderField","renderOperator","renderValue","choices","validFieldTypes","cid","$select","getFieldObjects","map","choice","id","getKey","getLabel","__","disabled","conditionTypes","getConditionTypes","getType","indents","getParents","repeat","push","renderSelect","findFieldObject","prototype","operator","conditionType","Array","$newSelect","detach","onChangeToggle","onClickAddGroup","addGroup","$group","$group2","duplicate","not","onFocusField","onChangeField","onChangeOperator","onClickAdd","onClickRemove","siblings","registerFieldSetting","conditionalLogicHelper","duplicate_field_objects","onDuplicateFieldObjects","children","newField","prevField","$selects","child","add","FieldObject","eventScope","fieldTypeSelect2","change","changed","inherit","getInputId","$meta","$handle","$setting","getParent","limit","pop","getFields","getInputName","newInput","inputId","inputName","getProp","has","setProp","prevVal","keys","getName","getTypeLabel","types","checkCopyable","makeCopyable","navigator","clipboard","initializeFieldTypeSelect2","hasClass","fn","select2","amd","require","err","console","warn","newSelect2","ajax","multiple","allowNull","suppressFilters","dropdownCssClass","templateResult","selection","loading","element","nodeName","$selection","escHtml","templateSelection","target","parents","onKeyDownSelect","addProFields","PROFieldTypes","$layoutGroup","$contentGroup","entries","$useGroup","menu_order","required","parseInt","strSlugify","refresh","isOpen","onClickCopy","stopPropagation","is","copyValue","writeText","then","onClickEdit","$target","onChangeSettingsTab","onFocusEdit","$rowOptions","onBlurEdit","focusDelayMilliseconds","$rowOptionsBlurElement","$rowOptionsFocusElement","activeElement","hideEmptyTabs","slideDown","which","slideUp","serialize","submit","onChange","onChanged","onChangeLabel","applyFilters","strSanitize","onChangeName","replace","alert","onChangeRequired","newVal","removeAnimate","onClickDelete","shiftKey","tooltip","newTooltip","confirmRemove","confirm","cancel","$list","$fields","findFieldObjects","sibling","endHeight","complete","newKey","uniqid","$newField","end","copy","isNumeric","i","$label","wipe","prevId","prevKey","rename","move","hasChanged","popup","step1","newPopup","title","width","ajaxData","action","field_id","prepareForAjax","dataType","success","step2","content","step3","preventDefault","startButtonLoading","field_group_id","step4","wp","a11y","speak","browseFields","modal","onChangeType","changeTimeout","clearTimeout","changeType","newType","prevType","prevClass","newClass","abort","$oldSettings","tab","$tabSettings","removeData","$newSettings","showFieldTypeSettings","$loading","before","prefix","xhr","response","isAjaxSuccess","settings","tabs","$tab","tabContent","prepend","updateParent","ID","$tabContent","tabName","$tabLink","list","newFieldObject","fields","eventManager","priority","addFieldActions","pluralAction","singleAction","singleEvent","fieldObjects","arrayArgs","pluralCallback","unshift","singleCallback","variations","variation","addAction","fieldManager","removed_field_object","onSubmit","setFieldMenuOrder","renderFields","onHoverSortable","sortable","helper","clone","currentName","Math","random","toString","handle","connectWith","start","ui","item","placeholder","height","update","onRemovedField","onReorderField","onDeleteField","onDuplicateField","eq","addField","$el2","$type","locationManager","wait","addProLocations","updateGroupsClass","PROLocationTypes","$formsGroup","onClickAddRule","addRule","onClickRemoveRule","removeRule","onChangeRemoveRule","changeRule","$tr","ajaxdata","rule","group","replaceWith","$ruleGroups","rows_count","modelId","strPascalCase","proto","mid","newFieldSetting","getFieldSetting","getField","settingsManager","new_field","onNewField","$fieldObject","EndpointFieldSetting","$endpoint_setting","$endpoint_field","AccordionEndpointFieldSetting","TabEndpointFieldSetting","DisplayFormatFieldSetting","DatePickerDisplayFormatFieldSetting","DatePickerReturnFormatFieldSetting","DateTimePickerDisplayFormatFieldSetting","DateTimePickerReturnFormatFieldSetting","TimePickerDisplayFormatFieldSetting","TimePickerReturnFormatFieldSetting","ColorPickerReturnFormat","$return_format_setting","$default_value_setting","$labelText","contents","last","$defaultPlaceholder","l10n","rgba_string","hex_string","fieldGroupManager","filters","find_fields_args","find_fields_selector","maybeInitNewFieldGroup","setBidirectionalSelect2Args","setBidirectionalSelect2AjaxDataArgs","instance","_field$data","call","human_field_type","field_type","this_field","field_key","parent_key","post_type","findFields","$field_list_wrapper","$title","unlockForm","onClick","onClickDeleteFieldGroup","location","href","validateTitle","$submitButton","filterFindFieldArgs","visible","excludeSubFields","filterFindFieldsSelector","screenOptionsManager","$append","isFieldKeysChecked","isFieldSettingsTabsChecked","getSelectedColumnCount","onFieldKeysChange","updateUserSetting","onFieldSettingsTabsChange","tabFields","appendFieldManager","$sibling","$ul","wrapInner","$li"],"sourceRoot":""} \ No newline at end of file diff --git a/assets/build/js/acf-field-group.min.js b/assets/build/js/acf-field-group.min.js index dd16548..0eec0c6 100644 --- a/assets/build/js/acf-field-group.min.js +++ b/assets/build/js/acf-field-group.min.js @@ -1 +1 @@ -(()=>{var e={2961:()=>{!function(e,t){var i=acf.getCompatibility(acf);i.field_group={save_field:function(e,i){i=i!==t?i:"settings",acf.getFieldObject(e).save(i)},delete_field:function(e,i){i=i===t||i,acf.getFieldObject(e).delete({animate:i})},update_field_meta:function(e,t,i){acf.getFieldObject(e).prop(t,i)},delete_field_meta:function(e,t){acf.getFieldObject(e).prop(t,null)}},i.field_group.field_object=acf.model.extend({type:"",o:{},$field:null,$settings:null,tag:function(e){var t=this.type,i=e.split("_");return i.splice(1,0,"field"),e=i.join("_"),t&&(e+="/type="+t),e},selector:function(){var e=".acf-field-object",t=this.type;return t&&(e+="-"+t,e=acf.str_replace("_","-",e)),e},_add_action:function(e,t){var i=this;acf.add_action(this.tag(e),(function(e){i.set("$field",e),i[t].apply(i,arguments)}))},_add_filter:function(e,t){var i=this;acf.add_filter(this.tag(e),(function(e){i.set("$field",e),i[t].apply(i,arguments)}))},_add_event:function(t,i){var n=this,a=t.substr(0,t.indexOf(" ")),l=t.substr(t.indexOf(" ")+1),s=this.selector();e(document).on(a,s+" "+l,(function(t){t.$el=e(this),t.$field=t.$el.closest(".acf-field-object"),n.set("$field",t.$field),n[i].apply(n,[t])}))},_set_$field:function(){this.o=this.$field.data(),this.$settings=this.$field.find("> .settings > table > tbody"),this.focus()},focus:function(){},setting:function(e){return this.$settings.find("> .acf-field-setting-"+e)}}),new acf.Model({actions:{open_field_object:"onOpenFieldObject",close_field_object:"onCloseFieldObject",add_field_object:"onAddFieldObject",duplicate_field_object:"onDuplicateFieldObject",delete_field_object:"onDeleteFieldObject",change_field_object_type:"onChangeFieldObjectType",change_field_object_label:"onChangeFieldObjectLabel",change_field_object_name:"onChangeFieldObjectName",change_field_object_parent:"onChangeFieldObjectParent",sortstop_field_object:"onChangeFieldObjectParent"},onOpenFieldObject:function(e){acf.doAction("open_field",e.$el),acf.doAction("open_field/type="+e.get("type"),e.$el),acf.doAction("render_field_settings",e.$el),acf.doAction("render_field_settings/type="+e.get("type"),e.$el)},onCloseFieldObject:function(e){acf.doAction("close_field",e.$el),acf.doAction("close_field/type="+e.get("type"),e.$el)},onAddFieldObject:function(e){acf.doAction("add_field",e.$el),acf.doAction("add_field/type="+e.get("type"),e.$el)},onDuplicateFieldObject:function(e){acf.doAction("duplicate_field",e.$el),acf.doAction("duplicate_field/type="+e.get("type"),e.$el)},onDeleteFieldObject:function(e){acf.doAction("delete_field",e.$el),acf.doAction("delete_field/type="+e.get("type"),e.$el)},onChangeFieldObjectType:function(e){acf.doAction("change_field_type",e.$el),acf.doAction("change_field_type/type="+e.get("type"),e.$el),acf.doAction("render_field_settings",e.$el),acf.doAction("render_field_settings/type="+e.get("type"),e.$el)},onChangeFieldObjectLabel:function(e){acf.doAction("change_field_label",e.$el),acf.doAction("change_field_label/type="+e.get("type"),e.$el)},onChangeFieldObjectName:function(e){acf.doAction("change_field_name",e.$el),acf.doAction("change_field_name/type="+e.get("type"),e.$el)},onChangeFieldObjectParent:function(e){acf.doAction("update_field_parent",e.$el)}})}(jQuery)},8931:()=>{var e,t;e=jQuery,t=acf.FieldSetting.extend({type:"",name:"conditional_logic",events:{"change .conditions-toggle":"onChangeToggle","click .add-conditional-group":"onClickAddGroup","focus .condition-rule-field":"onFocusField","change .condition-rule-field":"onChangeField","change .condition-rule-operator":"onChangeOperator","click .add-conditional-rule":"onClickAdd","click .remove-conditional-rule":"onClickRemove"},$rule:!1,scope:function(e){return this.$rule=e,this},ruleData:function(e,t){return this.$rule.data.apply(this.$rule,arguments)},$input:function(e){return this.$rule.find(".condition-rule-"+e)},$td:function(e){return this.$rule.find("td."+e)},$toggle:function(){return this.$(".conditions-toggle")},$control:function(){return this.$(".rule-groups")},$groups:function(){return this.$(".rule-group")},$rules:function(){return this.$(".rule")},$tabLabel:function(){return this.fieldObject.$el.find(".conditional-logic-badge")},open:function(){var e=this.$control();e.show(),acf.enable(e)},close:function(){var e=this.$control();e.hide(),acf.disable(e)},render:function(){this.$toggle().prop("checked")?(this.$tabLabel().addClass("is-enabled"),this.renderRules(),this.open()):(this.$tabLabel().removeClass("is-enabled"),this.close())},renderRules:function(){var t=this;this.$rules().each((function(){t.renderRule(e(this))}))},renderRule:function(e){this.scope(e),this.renderField(),this.renderOperator(),this.renderValue()},renderField:function(){var e=[],t=this.fieldObject.cid,i=this.$input("field");acf.getFieldObjects().map((function(i){var n={id:i.getKey(),text:i.getLabel()};i.cid===t&&(n.text+=" "+acf.__("(this field)"),n.disabled=!0),acf.getConditionTypes({fieldType:i.getType()}).length||(n.disabled=!0);var a=i.getParents().length;n.text="- ".repeat(a)+n.text,e.push(n)})),e.length||e.push({id:"",text:acf.__("No toggle fields available")}),acf.renderSelect(i,e),this.ruleData("field",i.val())},renderOperator:function(){if(this.ruleData("field")){var e=this.$input("operator"),t=(e.val(),[]);null===e.val()&&acf.renderSelect(e,[{id:this.ruleData("operator"),text:""}]);var i=acf.findFieldObject(this.ruleData("field")),n=acf.getFieldObject(i);acf.getConditionTypes({fieldType:n.getType()}).map((function(e){t.push({id:e.prototype.operator,text:e.prototype.label})})),acf.renderSelect(e,t),this.ruleData("operator",e.val())}},renderValue:function(){if(this.ruleData("field")&&this.ruleData("operator")){var t=this.$input("value"),i=this.$td("value"),n=t.val(),a=acf.findFieldObject(this.ruleData("field")),l=acf.getFieldObject(a),s=acf.getConditionTypes({fieldType:l.getType(),operator:this.ruleData("operator")})[0].prototype.choices(l);if(s instanceof Array){var o=e("");acf.renderSelect(o,s)}else o=e(s);t.detach(),i.html(o),setTimeout((function(){["class","name","id"].map((function(e){o.attr(e,t.attr(e))}))}),0),o.prop("disabled")||acf.val(o,n,!0),this.ruleData("value",o.val())}},onChangeToggle:function(){this.render()},onClickAddGroup:function(e,t){this.addGroup()},addGroup:function(){var e=this.$(".rule-group:last"),t=acf.duplicate(e);t.find("h4").text(acf.__("or")),t.find("tr").not(":first").remove(),this.fieldObject.save()},onFocusField:function(e,t){this.renderField()},onChangeField:function(e,t){this.scope(t.closest(".rule")),this.ruleData("field",t.val()),this.renderOperator(),this.renderValue()},onChangeOperator:function(e,t){this.scope(t.closest(".rule")),this.ruleData("operator",t.val()),this.renderValue()},onClickAdd:function(e,t){var i=acf.duplicate(t.closest(".rule"));this.renderRule(i)},onClickRemove:function(e,t){var i=t.closest(".rule");this.fieldObject.save(),0==i.siblings(".rule").length&&i.closest(".rule-group").remove(),i.remove()}}),acf.registerFieldSetting(t),new acf.Model({actions:{duplicate_field_objects:"onDuplicateFieldObjects"},onDuplicateFieldObjects:function(t,i,n){var a={},l=e();t.map((function(e){a[e.get("prevKey")]=e.get("key"),l=l.add(e.$(".condition-rule-field"))})),l.each((function(){var t=e(this),i=t.val();i&&a[i]&&(t.find("option:selected").attr("value",a[i]),t.val(a[i]))}))}})},5358:()=>{var e;e=jQuery,acf.FieldObject=acf.Model.extend({eventScope:".acf-field-object",fieldTypeSelect2:!1,events:{"click .copyable":"onClickCopy","click .handle":"onClickEdit","click .close-field":"onClickEdit",'click a[data-key="acf_field_settings_tabs"]':"onChangeSettingsTab","click .delete-field":"onClickDelete","click .duplicate-field":"duplicate","click .move-field":"move","click .browse-fields":"browseFields","focus .edit-field":"onFocusEdit","blur .edit-field, .row-options a":"onBlurEdit","change .field-type":"onChangeType","change .field-required":"onChangeRequired","blur .field-label":"onChangeLabel","blur .field-name":"onChangeName",change:"onChange",changed:"onChanged"},data:{id:0,key:"",type:""},setup:function(e){this.$el=e,this.inherit(e),this.prop("ID"),this.prop("parent"),this.prop("menu_order")},$input:function(t){return e("#"+this.getInputId()+"-"+t)},$meta:function(){return this.$(".meta:first")},$handle:function(){return this.$(".handle:first")},$settings:function(){return this.$(".settings:first")},$setting:function(e){return this.$(".acf-field-settings:first .acf-field-setting-"+e)},$fieldTypeSelect:function(){return this.$(".field-type")},$fieldLabel:function(){return this.$(".field-label")},getParent:function(){return acf.getFieldObjects({child:this.$el,limit:1}).pop()},getParents:function(){return acf.getFieldObjects({child:this.$el})},getFields:function(){return acf.getFieldObjects({parent:this.$el})},getInputName:function(){return"acf_fields["+this.get("id")+"]"},getInputId:function(){return"acf_fields-"+this.get("id")},newInput:function(t,i){var n=this.getInputId(),a=this.getInputName();t&&(n+="-"+t,a+="["+t+"]");var l=e("").attr({id:n,name:a,value:i});return this.$("> .meta").append(l),l},getProp:function(e){if(this.has(e))return this.get(e);var t=this.$input(e),i=t.length?t.val():null;return this.set(e,i,!0),i},setProp:function(e,t){var i=this.$input(e);return i.val(),i.length||(i=this.newInput(e,t)),null===t?i.remove():i.val(t),this.has(e)?this.set(e,t):this.set(e,t,!0),this},prop:function(e,t){return void 0!==t?this.setProp(e,t):this.getProp(e)},props:function(e){Object.keys(e).map((function(t){this.setProp(t,e[t])}),this)},getLabel:function(){var e=this.prop("label");return""===e&&(e=acf.__("(no label)")),e},getName:function(){return this.prop("name")},getType:function(){return this.prop("type")},getTypeLabel:function(){var e=this.prop("type"),t=acf.get("fieldTypes");return t[e]?t[e].label:e},getKey:function(){return this.prop("key")},initialize:function(){this.checkCopyable()},makeCopyable:function(e){return navigator.clipboard?''+e+"":''+e+""},checkCopyable:function(){navigator.clipboard||this.$el.find(".copyable").addClass("copy-unsupported")},initializeFieldTypeSelect2:function(){if(!this.fieldTypeSelect2&&!this.$fieldTypeSelect().hasClass("disable-select2")){try{e.fn.select2.amd.require("select2/compat/dropdownCss")}catch(e){return void console.warn("ACF was not able to load the full version of select2 due to a conflicting version provided by another plugin or theme taking precedence. Select2 fields may not work as expected.")}this.fieldTypeSelect2=acf.newSelect2(this.$fieldTypeSelect(),{field:!1,ajax:!1,multiple:!1,allowNull:!1,suppressFilters:!0,dropdownCssClass:"field-type-select-results",templateResult:function(t){if(t.loading||t.element&&"OPTGROUP"===t.element.nodeName)(i=e('')).html(acf.escHtml(t.text));else var i=e(''+acf.escHtml(t.text)+"");return i.data("element",t.element),i},templateSelection:function(t){var i=e(''+acf.escHtml(t.text)+"");return i.data("element",t.element),i}}),this.fieldTypeSelect2.on("select2:open",(function(){e(".field-type-select-results input.select2-search__field").attr("placeholder",acf.__("Type to search..."))})),this.fieldTypeSelect2.on("change",(function(t){e(t.target).parents("ul:first").find("button.browse-fields").prop("disabled",!0)})),this.fieldTypeSelect2.$el.parent().on("keydown",".select2-selection.select2-selection--single",this.onKeyDownSelect)}},addProFields:function(){if(acf.get("is_pro"))return;var e=this.$fieldTypeSelect();if(e.hasClass("acf-free-field-type"))return;const t=acf.get("PROFieldTypes");if("object"!=typeof t)return;const i=e.find('optgroup option[value="group"]').parent(),n=e.find('optgroup option[value="image"]').parent();for(const[e,a]of Object.entries(t))("content"===a.category?n:i).append('");e.addClass("acf-free-field-type")},render:function(){var e=this.$(".handle:first"),t=this.prop("menu_order"),i=this.getLabel(),n=this.prop("name"),a=this.getTypeLabel(),l=this.prop("key"),s=this.$input("required").prop("checked");e.find(".acf-icon").html(parseInt(t)+1),s&&(i+=' *'),e.find(".li-field-label strong a").html(i),e.find(".li-field-name").html(this.makeCopyable(n));const o=acf.strSlugify(this.getType());e.find(".field-type-label").text(" "+a),e.find(".field-type-icon").removeClass().addClass("field-type-icon field-type-icon-"+o),e.find(".li-field-key").html(this.makeCopyable(l)),acf.doAction("render_field_object",this)},refresh:function(){acf.doAction("refresh_field_object",this)},isOpen:function(){return this.$el.hasClass("open")},onClickCopy:function(t){if(t.stopPropagation(),!navigator.clipboard||e(t.target).is("input"))return;let i;i=e(t.target).hasClass("acf-input-wrap")?e(t.target).find("input").first().val():e(t.target).text(),navigator.clipboard.writeText(i).then((()=>{e(t.target).closest(".copyable").addClass("copied"),setTimeout((function(){e(t.target).closest(".copyable").removeClass("copied")}),2e3)}))},onClickEdit:function(t){$target=e(t.target),$target.parent().hasClass("row-options")&&!$target.hasClass("edit-field")||(this.isOpen()?this.close():this.open())},onChangeSettingsTab:function(){const e=this.$el.children(".settings");acf.doAction("show",e)},onFocusEdit:function(t){e(t.target).closest("li").find(".row-options").addClass("active")},onBlurEdit:function(t){var i=e(t.target).closest("li").find(".row-options");setTimeout((function(){var t=e(document.activeElement).closest("li").find(".row-options");i.is(t)||i.removeClass("active")}),50)},open:function(){var e=this.$el.children(".settings");this.addProFields(),this.initializeFieldTypeSelect2(),acf.doAction("open_field_object",this),this.trigger("openFieldObject"),acf.doAction("show",e),this.hideEmptyTabs(),e.slideDown(),this.$el.addClass("open")},onKeyDownSelect:function(t){t.which>=186&&t.which<=222||[8,9,13,16,17,18,19,20,27,32,33,34,35,36,37,38,39,40,45,46,91,92,93,144,145].includes(t.which)||t.which>=112&&t.which<=123||e(this).closest(".select2-container").siblings("select:enabled").select2("open")},close:function(){var e=this.$el.children(".settings");e.slideUp(),this.$el.removeClass("open"),acf.doAction("close_field_object",this),this.trigger("closeFieldObject"),acf.doAction("hide",e)},serialize:function(){return acf.serialize(this.$el,this.getInputName())},save:function(e){e=e||"settings","settings"!==this.getProp("save")&&(this.setProp("save",e),this.$el.attr("data-save",e),acf.doAction("save_field_object",this,e))},submit:function(){var e=this.getInputName(),t=this.get("save");this.isOpen()&&this.close(),"settings"==t||("meta"==t?this.$('> .settings [name^="'+e+'"]').remove():this.$('[name^="'+e+'"]').remove()),acf.doAction("submit_field_object",this)},onChange:function(e,t){this.save(),acf.doAction("change_field_object",this)},onChanged:function(t,i,n,a){this.getType()===i.attr("data-type")&&e("button.acf-btn.browse-fields").prop("disabled",!1),"save"!=n&&(["menu_order","parent"].indexOf(n)>-1?this.save("meta"):this.save(),["menu_order","label","required","name","type","key"].indexOf(n)>-1&&this.render(),acf.doAction("change_field_object_"+n,this,a))},onChangeLabel:function(e,t){var i=t.val();if(this.set("label",i),""==this.prop("name")){var n=acf.applyFilters("generate_field_object_name",acf.strSanitize(i),this);this.prop("name",n)}},onChangeName:function(e,t){var i=t.val();this.set("name",i),"field_"===i.substr(0,6)&&alert(acf.__('The string "field_" may not be used at the start of a field name'))},onChangeRequired:function(e,t){var i=t.prop("checked")?1:0;this.set("required",i)},delete:function(t){t=acf.parseArgs(t,{animate:!0});var i=this.prop("ID");if(i){var n=e("#_acf_delete_fields"),a=n.val()+"|"+i;n.val(a)}acf.doAction("delete_field_object",this),t.animate?this.removeAnimate():this.remove()},onClickDelete:function(e,t){if(e.shiftKey)return this.delete();this.$el.addClass("-hover"),acf.newTooltip({confirmRemove:!0,target:t,context:this,confirm:function(){this.delete()},cancel:function(){this.$el.removeClass("-hover")}})},removeAnimate:function(){var e=this,t=this.$el.parent(),i=acf.findFieldObjects({sibling:this.$el});acf.remove({target:this.$el,endHeight:i.length?0:50,complete:function(){e.remove(),acf.doAction("removed_field_object",e,t)}}),acf.doAction("remove_field_object",e,t)},duplicate:function(){var e=acf.uniqid("field_"),t=acf.duplicate({target:this.$el,search:this.get("id"),replace:e});t.attr("data-key",e);var i=acf.getFieldObject(t),n=i.prop("label"),a=i.prop("name"),l=a.split("_").pop(),s=acf.__("copy");if(acf.isNumeric(l)){var o=1*l+1;n=n.replace(l,o),a=a.replace(l,o)}else 0===l.indexOf(s)?(o=(o=1*l.replace(s,""))?o+1:2,n=n.replace(l,s+o),a=a.replace(l,s+o)):(n+=" ("+s+")",a+="_"+s);i.prop("ID",0),i.prop("label",n),i.prop("name",a),i.prop("key",e),this.isOpen()&&this.close(),i.open();var c=i.$setting("label input");setTimeout((function(){c.trigger("focus")}),251),acf.doAction("duplicate_field_object",this,i),acf.doAction("append_field_object",i)},wipe:function(){var e=this.get("id"),t=this.get("key"),i=acf.uniqid("field_");acf.rename({target:this.$el,search:e,replace:i}),this.set("id",i),this.set("prevId",e),this.set("prevKey",t),this.prop("key",i),this.prop("ID",0),this.$el.attr("data-key",i),this.$el.attr("data-id",i),acf.doAction("wipe_field_object",this)},move:function(){var t=function(e){return"settings"==e.get("save")},i=t(this);if(i||acf.getFieldObjects({parent:this.$el}).map((function(e){i=t(e)||e.changed})),i)alert(acf.__("This field cannot be moved until its changes have been saved"));else{var n=this.prop("ID"),a=this,l=!1,s=function(e){l.loading(!1),l.content(e),l.on("submit","form",o)},o=function(t,i){t.preventDefault(),acf.startButtonLoading(l.$(".button"));var a={action:"acf/field_group/move_field",field_id:n,field_group_id:l.$("select").val()};e.ajax({url:acf.get("ajaxurl"),data:acf.prepareForAjax(a),type:"post",dataType:"html",success:c})},c=function(e){l.content(e),wp.a11y&&wp.a11y.speak&&acf.__&&wp.a11y.speak(acf.__("Field moved to other group"),"polite"),l.$(".acf-close-popup").focus(),a.removeAnimate()};!function(){l=acf.newPopup({title:acf.__("Move Custom Field"),loading:!0,width:"300px",openedBy:a.$el.find(".move-field")});var t={action:"acf/field_group/move_field",field_id:n};e.ajax({url:acf.get("ajaxurl"),data:acf.prepareForAjax(t),type:"post",dataType:"html",success:s})}()}},browseFields:function(e,t){e.preventDefault(),acf.newBrowseFieldsModal({openedBy:this})},onChangeType:function(e,t){this.changeTimeout&&clearTimeout(this.changeTimeout),this.changeTimeout=this.setTimeout((function(){this.changeType(t.val())}),300)},changeType:function(t){var i=this.prop("type"),n=acf.strSlugify("acf-field-object-"+i),a=acf.strSlugify("acf-field-object-"+t);this.$el.removeClass(n).addClass(a),this.$el.attr("data-type",t),this.$el.data("type",t),this.has("xhr")&&this.get("xhr").abort();const l={};if(this.$el.find(".acf-field-settings:first > .acf-field-settings-main > .acf-field-type-settings").each((function(){let t=e(this).data("parent-tab"),i=e(this).children().removeData();l[t]=i,i.detach()})),this.set("settings-"+i,l),this.has("settings-"+t)){let e=this.get("settings-"+t);return this.showFieldTypeSettings(e),void this.set("type",t)}const s=e('
    ');this.$el.find(".acf-field-settings-main-general .acf-field-type-settings").before(s);const o={action:"acf/field_group/render_field_settings",field:this.serialize(),prefix:this.getInputName()};var c=e.ajax({url:acf.get("ajaxurl"),data:acf.prepareForAjax(o),type:"post",dataType:"json",context:this,success:function(e){acf.isAjaxSuccess(e)&&this.showFieldTypeSettings(e.data)},complete:function(){s.remove(),this.set("type",t)}});this.set("xhr",c)},showFieldTypeSettings:function(e){if("object"!=typeof e)return;const t=this;Object.keys(e).forEach((i=>{const n=t.$el.find(".acf-field-settings-main-"+i.replace("_","-")+" .acf-field-type-settings");let a="";["object","string"].includes(typeof e[i])&&(a=e[i]),n.prepend(a),acf.doAction("append",n)})),this.hideEmptyTabs()},updateParent:function(){var e=acf.get("post_id"),t=this.getParent();t&&(e=parseInt(t.prop("ID"))||t.prop("key")),this.prop("parent",e)},hideEmptyTabs:function(){const t=this.$settings();t.find(".acf-field-settings:first > .acf-field-settings-main").each((function(){const i=e(this),n=i.find(".acf-field-type-settings:first").data("parentTab"),a=t.find(".acf-settings-type-"+n).first();""===e.trim(i.text())?a.hide():a.is(":hidden")&&a.show()}))}})},3523:()=>{var e;e=jQuery,acf.findFieldObject=function(e){return acf.findFieldObjects({key:e,limit:1})},acf.findFieldObjects=function(t){t=t||{};var i=".acf-field-object",n=!1;return(t=acf.parseArgs(t,{id:"",key:"",type:"",limit:!1,list:null,parent:!1,sibling:!1,child:!1})).id&&(i+='[data-id="'+t.id+'"]'),t.key&&(i+='[data-key="'+t.key+'"]'),t.type&&(i+='[data-type="'+t.type+'"]'),n=t.list?t.list.children(i):t.parent?t.parent.find(i):t.sibling?t.sibling.siblings(i):t.child?t.child.parents(i):e(i),t.limit&&(n=n.slice(0,t.limit)),n},acf.getFieldObject=function(e){"string"==typeof e&&(e=acf.findFieldObject(e));var t=e.data("acf");return t||(t=acf.newFieldObject(e)),t},acf.getFieldObjects=function(t){var i=acf.findFieldObjects(t),n=[];return i.each((function(){var t=acf.getFieldObject(e(this));n.push(t)})),n},acf.newFieldObject=function(e){var t=new acf.FieldObject(e);return acf.doAction("new_field_object",t),t},new acf.Model({priority:5,initialize:function(){["prepare","ready","append","remove"].map((function(e){this.addFieldActions(e)}),this)},addFieldActions:function(e){var t=e+"_field_objects",i=e+"_field_object",n=e+"FieldObject";acf.addAction(e,(function(e){var i=acf.getFieldObjects({parent:e});if(i.length){var n=acf.arrayArgs(arguments);n.splice(0,1,t,i),acf.doAction.apply(null,n)}}),5),acf.addAction(t,(function(e){var t=acf.arrayArgs(arguments);t.unshift(i),e.map((function(e){t[1]=e,acf.doAction.apply(null,t)}))}),5),acf.addAction(i,(function(e){var t=acf.arrayArgs(arguments);t.unshift(i),["type","name","key"].map((function(n){t[0]=i+"/"+n+"="+e.get(n),acf.doAction.apply(null,t)})),t.splice(0,2),e.trigger(n,t)}),5)}}),new acf.Model({id:"fieldManager",events:{"submit #post":"onSubmit","mouseenter .acf-field-list":"onHoverSortable","click .add-field":"onClickAdd"},actions:{removed_field_object:"onRemovedField",sortstop_field_object:"onReorderField",delete_field_object:"onDeleteField",change_field_object_type:"onChangeFieldType",duplicate_field_object:"onDuplicateField"},onSubmit:function(e,t){acf.getFieldObjects().map((function(e){e.submit()}))},setFieldMenuOrder:function(e){this.renderFields(e.$el.parent())},onHoverSortable:function(e,t){t.hasClass("ui-sortable")||t.sortable({helper:function(e,t){return t.clone().find(":input").attr("name",(function(e,t){return"sort_"+parseInt(1e5*Math.random(),10).toString()+"_"+t})).end()},handle:".acf-sortable-handle",connectWith:".acf-field-list",start:function(e,i){var n=acf.getFieldObject(i.item);i.placeholder.height(i.item.height()),acf.doAction("sortstart_field_object",n,t)},update:function(e,i){var n=acf.getFieldObject(i.item);acf.doAction("sortstop_field_object",n,t)}})},onRemovedField:function(e,t){this.renderFields(t)},onReorderField:function(e,t){e.updateParent(),this.renderFields(t)},onDeleteField:function(e){e.getFields().map((function(e){e.delete({animate:!1})}))},onChangeFieldType:function(e){e.$el.find("button.browse-fields").prop("disabled",!1)},onDuplicateField:function(e,t){var i=t.getFields();i.length&&(i.map((function(e){e.wipe(),e.isOpen()&&e.open(),e.updateParent()})),acf.doAction("duplicate_field_objects",i,t,e)),this.setFieldMenuOrder(t)},renderFields:function(e){var t=acf.getFieldObjects({list:e});if(!t.length)return e.addClass("-empty"),void e.parents(".acf-field-list-wrap").first().addClass("-empty");e.removeClass("-empty"),e.parents(".acf-field-list-wrap").first().removeClass("-empty"),t.map((function(e,t){e.prop("menu_order",t)}))},onClickAdd:function(t,i){let n;n=i.hasClass("add-first-field")?i.parents(".acf-field-list").eq(0):i.parent().hasClass("acf-headerbar-actions")||i.parent().hasClass("no-fields-message-inner")?e(".acf-field-list:first"):i.parent().hasClass("acf-sub-field-list-header")?i.parents(".acf-input:first").find(".acf-field-list:first"):i.closest(".acf-tfoot").siblings(".acf-field-list"),this.addField(n)},addField:function(t){var i=e("#tmpl-acf-field").html(),n=e(i),a=n.data("id"),l=acf.uniqid("field_"),s=acf.duplicate({target:n,search:a,replace:l,append:function(e,i){t.append(i)}}),o=acf.getFieldObject(s);o.prop("key",l),o.prop("ID",0),o.prop("label",""),o.prop("name",""),s.attr("data-key",l),s.attr("data-id",l),o.updateParent();var c=o.$input("type");setTimeout((function(){t.hasClass("acf-auto-add-field")?t.removeClass("acf-auto-add-field"):c.trigger("focus")}),251),o.open(),this.renderFields(t),acf.doAction("add_field_object",o),acf.doAction("append_field_object",o)}})},8687:()=>{var e;e=jQuery,new acf.Model({id:"locationManager",wait:"ready",events:{"click .add-location-rule":"onClickAddRule","click .add-location-group":"onClickAddGroup","click .remove-location-rule":"onClickRemoveRule","change .refresh-location-rule":"onChangeRemoveRule"},initialize:function(){this.$el=e("#acf-field-group-options"),this.addProLocations(),this.updateGroupsClass()},addProLocations:function(){if(acf.get("is_pro"))return;const e=acf.get("PROLocationTypes");if("object"!=typeof e)return;const t=this.$el.find("select.refresh-location-rule").find('optgroup[label="Forms"]');for(const[i,n]of Object.entries(e))t.append('")},onClickAddRule:function(e,t){this.addRule(t.closest("tr"))},onClickRemoveRule:function(e,t){this.removeRule(t.closest("tr"))},onChangeRemoveRule:function(e,t){this.changeRule(t.closest("tr"))},onClickAddGroup:function(e,t){this.addGroup()},addRule:function(e){acf.duplicate(e),this.updateGroupsClass()},removeRule:function(e){0==e.siblings("tr").length?e.closest(".rule-group").remove():e.remove(),this.$(".rule-group:first").find("h4").text(acf.__("Show this field group if")),this.updateGroupsClass()},changeRule:function(t){var i=t.closest(".rule-group"),n=t.find("td.param select").attr("name").replace("[param]",""),a={action:"acf/field_group/render_location_rule"};a.rule=acf.serialize(t,n),a.rule.id=t.data("id"),a.rule.group=i.data("id"),acf.disable(t.find("td.value")),e.ajax({url:acf.get("ajaxurl"),data:acf.prepareForAjax(a),type:"post",dataType:"html",success:function(e){e&&t.replaceWith(e)}})},addGroup:function(){var e=this.$(".rule-group:last");$group2=acf.duplicate(e),$group2.find("h4").text(acf.__("or")),$group2.find("tr").not(":first").remove(),this.updateGroupsClass()},updateGroupsClass:function(){var e=this.$(".rule-group:last").closest(".rule-groups");e.find(".acf-table tr").length>1?e.addClass("rule-groups-multiple"):e.removeClass("rule-groups-multiple")}})},6125:()=>{!function(e,t){var i=function(e){return acf.strPascalCase(e||"")+"FieldSetting"};acf.registerFieldSetting=function(e){var t=e.prototype,n=i(t.type+" "+t.name);this.models[n]=e},acf.newFieldSetting=function(e){var t=e.get("setting")||"",n=e.get("name")||"",a=i(t+" "+n),l=acf.models[a]||null;return null!==l&&new l(e)},acf.getFieldSetting=function(e){return e instanceof jQuery&&(e=acf.getField(e)),e.setting},new acf.Model({actions:{new_field:"onNewField"},onNewField:function(e){e.setting=acf.newFieldSetting(e)}}),acf.FieldSetting=acf.Model.extend({field:!1,type:"",name:"",wait:"ready",eventScope:".acf-field",events:{change:"render"},setup:function(t){var i=t.$el;this.$el=i,this.field=t,this.$fieldObject=i.closest(".acf-field-object"),this.fieldObject=acf.getFieldObject(this.$fieldObject),e.extend(this.data,t.data)},initialize:function(){this.render()},render:function(){}});var n=acf.FieldSetting.extend({type:"",name:"",render:function(){this.fieldObject.$setting("endpoint").find('input[type="checkbox"]:first').is(":checked")?this.fieldObject.$el.addClass("acf-field-is-endpoint"):this.fieldObject.$el.removeClass("acf-field-is-endpoint")}}),a=n.extend({type:"accordion",name:"endpoint"}),l=n.extend({type:"tab",name:"endpoint"});acf.registerFieldSetting(a),acf.registerFieldSetting(l);var s=acf.FieldSetting.extend({type:"",name:"",render:function(){var e=this.$('input[type="radio"]:checked');"other"!=e.val()&&this.$('input[type="text"]').val(e.val())}}),o=s.extend({type:"date_picker",name:"display_format"}),c=s.extend({type:"date_picker",name:"return_format"});acf.registerFieldSetting(o),acf.registerFieldSetting(c);var r=s.extend({type:"date_time_picker",name:"display_format"}),d=s.extend({type:"date_time_picker",name:"return_format"});acf.registerFieldSetting(r),acf.registerFieldSetting(d);var f=s.extend({type:"time_picker",name:"display_format"}),p=s.extend({type:"time_picker",name:"return_format"});acf.registerFieldSetting(f),acf.registerFieldSetting(p);var u=acf.FieldSetting.extend({type:"color_picker",name:"enable_opacity",render:function(){var e=this.fieldObject.$setting("return_format"),t=this.fieldObject.$setting("default_value"),i=e.find('input[type="radio"][value="string"]').parent("label").contents().last(),n=t.find('input[type="text"]'),a=acf.get("colorPickerL10n");this.field.val()?(i.replaceWith(a.rgba_string),n.attr("placeholder","rgba(255,255,255,0.8)")):(i.replaceWith(a.hex_string),n.attr("placeholder","#FFFFFF"))}});acf.registerFieldSetting(u)}(jQuery)},3791:()=>{var e;e=jQuery,new acf.Model({id:"fieldGroupManager",events:{"submit #post":"onSubmit",'click a[href="#"]':"onClick","click .acf-delete-field-group":"onClickDeleteFieldGroup","blur input#title":"validateTitle","input input#title":"validateTitle"},filters:{find_fields_args:"filterFindFieldArgs",find_fields_selector:"filterFindFieldsSelector"},initialize:function(){acf.addAction("prepare",this.maybeInitNewFieldGroup),acf.add_filter("select2_args",this.setBidirectionalSelect2Args),acf.add_filter("select2_ajax_data",this.setBidirectionalSelect2AjaxDataArgs)},setBidirectionalSelect2Args:function(t,i,n,a,l){var s;return"bidirectional_target"!==(null==a||null===(s=a.data)||void 0===s?void 0:s.call(a,"key"))||(t.dropdownCssClass="field-type-select-results",t.templateResult=function(t){if(void 0!==t.element)return t;if(t.children)return t.text;if(t.loading||t.element&&"OPTGROUP"===t.element.nodeName)return(i=e('')).html(acf.escHtml(t.text)),i;if(void 0===t.human_field_type||void 0===t.field_type||void 0===t.this_field)return t.text;var i=e(''+acf.escHtml(t.text)+"");return t.this_field&&i.last().append(''+acf.__("This Field")+""),i.data("element",t.element),i}),t},setBidirectionalSelect2AjaxDataArgs:function(e,t,i,n,a){if("bidirectional_target"!==e.field_key)return e;const l=acf.findFieldObjects({child:n}),s=acf.getFieldObject(l);return e.field_key="_acf_bidirectional_target",e.parent_key=s.get("key"),e.field_type=s.get("type"),e.post_type=acf.getField(acf.findFields({parent:l,key:"post_type"})).val(),e},maybeInitNewFieldGroup:function(){e("#acf-field-group-fields > .inside > .acf-field-list-wrap.acf-auto-add-field").length&&(e(".acf-headerbar-actions .add-field").trigger("click"),e(".acf-title-wrap #title").trigger("focus"))},onSubmit:function(t,i){var n=e(".acf-title-wrap #title");n.val()||(t.preventDefault(),acf.unlockForm(i),n.trigger("focus"))},onClick:function(e){e.preventDefault()},onClickDeleteFieldGroup:function(e,t){e.preventDefault(),t.addClass("-hover"),acf.newTooltip({confirm:!0,target:t,context:this,text:acf.__("Move field group to trash?"),confirm:function(){window.location.href=t.attr("href")},cancel:function(){t.removeClass("-hover")}})},validateTitle:function(t,i){let n=e(".acf-publish");i.val()?(i.removeClass("acf-input-error"),n.removeClass("disabled"),e(".acf-publish").removeClass("disabled")):(i.addClass("acf-input-error"),n.addClass("disabled"),e(".acf-publish").addClass("disabled"))},filterFindFieldArgs:function(e){return e.visible=!0,e.parent&&(e.parent.hasClass("acf-field-object")||e.parent.hasClass("acf-browse-fields-modal-wrap")||e.parent.parents(".acf-field-object").length)&&(e.visible=!1,e.excludeSubFields=!0),e.parent&&e.parent.find(".acf-field-object.open").length&&(e.excludeSubFields=!1),e},filterFindFieldsSelector:function(e){return e+", .acf-field-acf-field-group-settings-tabs"}}),new acf.Model({id:"screenOptionsManager",wait:"prepare",events:{"change #acf-field-key-hide":"onFieldKeysChange","change #acf-field-settings-tabs":"onFieldSettingsTabsChange",'change [name="screen_columns"]':"render"},initialize:function(){var t=e("#adv-settings"),i=e("#acf-append-show-on-screen");t.find(".metabox-prefs").append(i.html()),t.find(".metabox-prefs br").remove(),i.remove(),this.$el=e("#screen-options-wrap"),this.render()},isFieldKeysChecked:function(){return this.$el.find("#acf-field-key-hide").prop("checked")},isFieldSettingsTabsChecked:function(){const e=this.$el.find("#acf-field-settings-tabs");return!!e.length&&e.prop("checked")},getSelectedColumnCount:function(){return this.$el.find('input[name="screen_columns"]:checked').val()},onFieldKeysChange:function(e,t){var i=this.isFieldKeysChecked()?1:0;acf.updateUserSetting("show_field_keys",i),this.render()},onFieldSettingsTabsChange:function(){const e=this.isFieldSettingsTabsChecked()?1:0;acf.updateUserSetting("show_field_settings_tabs",e),this.render()},render:function(){this.isFieldKeysChecked()?e("#acf-field-group-fields").addClass("show-field-keys"):e("#acf-field-group-fields").removeClass("show-field-keys"),this.isFieldSettingsTabsChecked()?(e("#acf-field-group-fields").removeClass("hide-tabs"),e(".acf-field-object").each((function(){const t=acf.getFields({type:"tab",parent:e(this),excludeSubFields:!0,limit:1});t.length&&t[0].tabs.set("initialized",!1),acf.doAction("show",e(this))}))):(e("#acf-field-group-fields").addClass("hide-tabs"),e(".acf-field-settings-main").removeClass("acf-hidden").prop("hidden",!1)),1==this.getSelectedColumnCount()?(e("body").removeClass("columns-2"),e("body").addClass("columns-1")):(e("body").removeClass("columns-1"),e("body").addClass("columns-2"))}}),new acf.Model({actions:{new_field:"onNewField"},onNewField:function(t){if(t.has("append")){var i=t.get("append"),n=t.$el.siblings('[data-name="'+i+'"]').first();if(n.length){var a=n.children(".acf-input"),l=a.children("ul");l.length||(a.wrapInner(''),l=a.children("ul"));var s=t.$(".acf-input").html(),o=e("
  • "+s+"
  • ");l.append(o),l.attr("data-cols",l.children().length),t.remove()}}}})}},t={};function i(n){var a=t[n];if(void 0!==a)return a.exports;var l=t[n]={exports:{}};return e[n](l,l.exports,i),l.exports}(()=>{"use strict";function e(t){return e="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},e(t)}function t(t){var i=function(t,i){if("object"!==e(t)||null===t)return t;var n=t[Symbol.toPrimitive];if(void 0!==n){var a=n.call(t,"string");if("object"!==e(a))return a;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"===e(i)?i:String(i)}function n(e,t){var i=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),i.push.apply(i,n)}return i}function a(e){for(var i=1;ithis.get("popularFieldTypes").includes(e.name)));if("pro"===e)return n.filter((e=>e.pro));n=n.filter((t=>t.category===e))}return t&&(n=n.filter((e=>{const i=e.label.toLowerCase(),n=i.split(" ");let a=!1;return i.startsWith(t.toLowerCase())?a=!0:n.length>1&&n.forEach((e=>{e.startsWith(t.toLowerCase())&&(a=!0)})),a}))),n},render:function(){i.doAction("append",this.$el);const t=this.$el.find(".acf-field-types-tab"),n=this;t.each((function(){const t=e(this).data("category");n.getFieldTypes(t).forEach((t=>{e(this).append(n.getFieldTypeHTML(t))}))})),this.initializeFieldLabel(),this.initializeFieldType(),this.onChangeFieldType()},getFieldTypeHTML:function(e){const t=e.name.replaceAll("_","-");return`\n\t\t\t\n\t\t\t\t${e.pro&&!i.get("is_pro")?'PRO':e.pro?'PRO':""}\n\t\t\t\t\n\t\t\t\t${e.label}\n\t\t\t\n\t\t\t`},decodeFieldTypeURL:function(e){return"string"!=typeof e?e:e.replaceAll("&","&")},renderFieldTypeDesc:function(e){const t=this.getFieldTypes().filter((t=>t.name===e))[0]||{},n=i.parseArgs(t,{label:"",description:"",doc_url:!1,tutorial_url:!1,preview_image:!1,pro:!1});this.$el.find(".field-type-name").text(n.label),this.$el.find(".field-type-desc").text(n.description),n.doc_url?this.$el.find(".field-type-doc").attr("href",this.decodeFieldTypeURL(n.doc_url)).show():this.$el.find(".field-type-doc").hide(),n.tutorial_url?this.$el.find(".field-type-tutorial").attr("href",this.decodeFieldTypeURL(n.tutorial_url)).parent().show():this.$el.find(".field-type-tutorial").parent().hide(),n.preview_image?this.$el.find(".field-type-image").attr("src",n.preview_image).show():this.$el.find(".field-type-image").hide();const a=i.get("is_pro"),l=this.$el.find(".acf-btn-pro"),s=this.$el.find(".field-type-upgrade-to-unlock");n.pro&&!a?(l.show(),l.attr("href",l.data("urlBase")+e),s.show(),s.attr("href",s.data("urlBase")+e),this.$el.find(".acf-insert-field-label").attr("disabled",!0),this.$el.find(".acf-select-field").hide()):(l.hide(),s.hide(),this.$el.find(".acf-insert-field-label").attr("disabled",!1),this.$el.find(".acf-select-field").show())},initializeFieldType:function(){var t;const i=this.get("openedBy"),n=null==i||null===(t=i.data)||void 0===t?void 0:t.type;n?this.set("currentFieldType",n):this.set("currentFieldType","text");const a=this.getFieldTypes();let l="";l=this.get("popularFieldTypes").includes(n)?"popular":a.find((e=>e.name===n)).category;const s=`.acf-modal-content .acf-tab-wrap a:contains('${l[0].toUpperCase()+l.slice(1)}')`;setTimeout((()=>{e(s).click()}),0)},initializeFieldLabel:function(){const e=this.get("openedBy").$fieldLabel().val(),t=this.$el.find(".acf-insert-field-label");e?t.val(e):t.val("")},updateFieldObjectFieldLabel:function(){const e=this.$el.find(".acf-insert-field-label").val(),t=this.get("openedBy");t.$fieldLabel().val(e),t.$fieldLabel().trigger("blur")},onChangeFieldType:function(){const e=this.get("currentFieldType");this.$el.find(".selected").removeClass("selected"),this.$el.find('.acf-field-type[data-field-type="'+e+'"]').addClass("selected"),this.renderFieldTypeDesc(e)},onSearchFieldTypes:function(t){const i=this.$el.find(".acf-browse-fields-modal"),n=this.$el.find(".acf-search-field-types").val(),a=this;let l,s="",o=[];if("string"==typeof n&&(l=n.trim(),o=this.getFieldTypes(!1,l)),l.length&&o.length?i.addClass("is-searching"):i.removeClass("is-searching"),!o.length)return i.addClass("no-results-found"),void this.$el.find(".acf-invalid-search-term").text(l);i.removeClass("no-results-found"),o.forEach((e=>{s+=a.getFieldTypeHTML(e)})),e(".acf-field-type-search-results").html(s),this.set("currentFieldType",o[0].name),this.onChangeFieldType()},onClickBrowsePopular:function(){this.$el.find(".acf-search-field-types").val("").trigger("input"),this.$el.find(".acf-tab-wrap a").first().trigger("click")},onClickSelectField:function(e){const t=this.get("openedBy");t.$fieldTypeSelect().val(this.get("currentFieldType")),t.$fieldTypeSelect().trigger("change"),this.updateFieldObjectFieldLabel(),this.close()},onClickFieldType:function(t){const i=e(t.currentTarget);this.set("currentFieldType",i.data("field-type"))},onClickClose:function(){this.close()},onPressEscapeClose:function(e){"Escape"===e.key&&this.close()},close:function(){this.lockFocusToModal(!1),this.returnFocusToOrigin(),this.remove()},focus:function(){this.$el.find("button").first().trigger("focus")}};i.models.browseFieldsModal=i.models.Modal.extend(n),i.newBrowseFieldsModal=e=>new i.models.browseFieldsModal(e)}(window.jQuery,0,window.acf)})()})(); \ No newline at end of file +(()=>{var e={7942:()=>{!function(e,t){var i=acf.getCompatibility(acf);i.field_group={save_field:function(e,i){i=i!==t?i:"settings",acf.getFieldObject(e).save(i)},delete_field:function(e,i){i=i===t||i,acf.getFieldObject(e).delete({animate:i})},update_field_meta:function(e,t,i){acf.getFieldObject(e).prop(t,i)},delete_field_meta:function(e,t){acf.getFieldObject(e).prop(t,null)}},i.field_group.field_object=acf.model.extend({type:"",o:{},$field:null,$settings:null,tag:function(e){var t=this.type,i=e.split("_");return i.splice(1,0,"field"),e=i.join("_"),t&&(e+="/type="+t),e},selector:function(){var e=".acf-field-object",t=this.type;return t&&(e+="-"+t,e=acf.str_replace("_","-",e)),e},_add_action:function(e,t){var i=this;acf.add_action(this.tag(e),(function(e){i.set("$field",e),i[t].apply(i,arguments)}))},_add_filter:function(e,t){var i=this;acf.add_filter(this.tag(e),(function(e){i.set("$field",e),i[t].apply(i,arguments)}))},_add_event:function(t,i){var n=this,a=t.substr(0,t.indexOf(" ")),l=t.substr(t.indexOf(" ")+1),s=this.selector();e(document).on(a,s+" "+l,(function(t){t.$el=e(this),t.$field=t.$el.closest(".acf-field-object"),n.set("$field",t.$field),n[i].apply(n,[t])}))},_set_$field:function(){this.o=this.$field.data(),this.$settings=this.$field.find("> .settings > table > tbody"),this.focus()},focus:function(){},setting:function(e){return this.$settings.find("> .acf-field-setting-"+e)}}),new acf.Model({actions:{open_field_object:"onOpenFieldObject",close_field_object:"onCloseFieldObject",add_field_object:"onAddFieldObject",duplicate_field_object:"onDuplicateFieldObject",delete_field_object:"onDeleteFieldObject",change_field_object_type:"onChangeFieldObjectType",change_field_object_label:"onChangeFieldObjectLabel",change_field_object_name:"onChangeFieldObjectName",change_field_object_parent:"onChangeFieldObjectParent",sortstop_field_object:"onChangeFieldObjectParent"},onOpenFieldObject:function(e){acf.doAction("open_field",e.$el),acf.doAction("open_field/type="+e.get("type"),e.$el),acf.doAction("render_field_settings",e.$el),acf.doAction("render_field_settings/type="+e.get("type"),e.$el)},onCloseFieldObject:function(e){acf.doAction("close_field",e.$el),acf.doAction("close_field/type="+e.get("type"),e.$el)},onAddFieldObject:function(e){acf.doAction("add_field",e.$el),acf.doAction("add_field/type="+e.get("type"),e.$el)},onDuplicateFieldObject:function(e){acf.doAction("duplicate_field",e.$el),acf.doAction("duplicate_field/type="+e.get("type"),e.$el)},onDeleteFieldObject:function(e){acf.doAction("delete_field",e.$el),acf.doAction("delete_field/type="+e.get("type"),e.$el)},onChangeFieldObjectType:function(e){acf.doAction("change_field_type",e.$el),acf.doAction("change_field_type/type="+e.get("type"),e.$el),acf.doAction("render_field_settings",e.$el),acf.doAction("render_field_settings/type="+e.get("type"),e.$el)},onChangeFieldObjectLabel:function(e){acf.doAction("change_field_label",e.$el),acf.doAction("change_field_label/type="+e.get("type"),e.$el)},onChangeFieldObjectName:function(e){acf.doAction("change_field_name",e.$el),acf.doAction("change_field_name/type="+e.get("type"),e.$el)},onChangeFieldObjectParent:function(e){acf.doAction("update_field_parent",e.$el)}})}(jQuery)},6298:()=>{var e,t;e=jQuery,t=acf.FieldSetting.extend({type:"",name:"conditional_logic",events:{"change .conditions-toggle":"onChangeToggle","click .add-conditional-group":"onClickAddGroup","focus .condition-rule-field":"onFocusField","change .condition-rule-field":"onChangeField","change .condition-rule-operator":"onChangeOperator","click .add-conditional-rule":"onClickAdd","click .remove-conditional-rule":"onClickRemove"},$rule:!1,scope:function(e){return this.$rule=e,this},ruleData:function(e,t){return this.$rule.data.apply(this.$rule,arguments)},$input:function(e){return this.$rule.find(".condition-rule-"+e)},$td:function(e){return this.$rule.find("td."+e)},$toggle:function(){return this.$(".conditions-toggle")},$control:function(){return this.$(".rule-groups")},$groups:function(){return this.$(".rule-group")},$rules:function(){return this.$(".rule")},$tabLabel:function(){return this.fieldObject.$el.find(".conditional-logic-badge")},open:function(){var e=this.$control();e.show(),acf.enable(e)},close:function(){var e=this.$control();e.hide(),acf.disable(e)},render:function(){this.$toggle().prop("checked")?(this.$tabLabel().addClass("is-enabled"),this.renderRules(),this.open()):(this.$tabLabel().removeClass("is-enabled"),this.close())},renderRules:function(){var t=this;this.$rules().each((function(){t.renderRule(e(this))}))},renderRule:function(e){this.scope(e),this.renderField(),this.renderOperator(),this.renderValue()},renderField:function(){var e=[],t=this.fieldObject.cid,i=this.$input("field");acf.getFieldObjects().map((function(i){var n={id:i.getKey(),text:i.getLabel()};i.cid===t&&(n.text+=" "+acf.__("(this field)"),n.disabled=!0),acf.getConditionTypes({fieldType:i.getType()}).length||(n.disabled=!0);var a=i.getParents().length;n.text="- ".repeat(a)+n.text,e.push(n)})),e.length||e.push({id:"",text:acf.__("No toggle fields available")}),acf.renderSelect(i,e),this.ruleData("field",i.val())},renderOperator:function(){if(this.ruleData("field")){var e=this.$input("operator"),t=(e.val(),[]);null===e.val()&&acf.renderSelect(e,[{id:this.ruleData("operator"),text:""}]);var i=acf.findFieldObject(this.ruleData("field")),n=acf.getFieldObject(i);acf.getConditionTypes({fieldType:n.getType()}).map((function(e){t.push({id:e.prototype.operator,text:e.prototype.label})})),acf.renderSelect(e,t),this.ruleData("operator",e.val())}},renderValue:function(){if(this.ruleData("field")&&this.ruleData("operator")){var t=this.$input("value"),i=this.$td("value"),n=t.val(),a=acf.findFieldObject(this.ruleData("field")),l=acf.getFieldObject(a),s=acf.getConditionTypes({fieldType:l.getType(),operator:this.ruleData("operator")})[0].prototype.choices(l);if(s instanceof Array){var o=e("");acf.renderSelect(o,s)}else o=e(s);t.detach(),i.html(o),setTimeout((function(){["class","name","id"].map((function(e){o.attr(e,t.attr(e))}))}),0),o.prop("disabled")||acf.val(o,n,!0),this.ruleData("value",o.val())}},onChangeToggle:function(){this.render()},onClickAddGroup:function(e,t){this.addGroup()},addGroup:function(){var e=this.$(".rule-group:last"),t=acf.duplicate(e);t.find("h4").text(acf.__("or")),t.find("tr").not(":first").remove(),this.fieldObject.save()},onFocusField:function(e,t){this.renderField()},onChangeField:function(e,t){this.scope(t.closest(".rule")),this.ruleData("field",t.val()),this.renderOperator(),this.renderValue()},onChangeOperator:function(e,t){this.scope(t.closest(".rule")),this.ruleData("operator",t.val()),this.renderValue()},onClickAdd:function(e,t){var i=acf.duplicate(t.closest(".rule"));this.renderRule(i)},onClickRemove:function(e,t){var i=t.closest(".rule");this.fieldObject.save(),0==i.siblings(".rule").length&&i.closest(".rule-group").remove(),i.remove()}}),acf.registerFieldSetting(t),new acf.Model({actions:{duplicate_field_objects:"onDuplicateFieldObjects"},onDuplicateFieldObjects:function(t,i,n){var a={},l=e();t.map((function(e){a[e.get("prevKey")]=e.get("key"),l=l.add(e.$(".condition-rule-field"))})),l.each((function(){var t=e(this),i=t.val();i&&a[i]&&(t.find("option:selected").attr("value",a[i]),t.val(a[i]))}))}})},4770:()=>{var e;e=jQuery,acf.FieldObject=acf.Model.extend({eventScope:".acf-field-object",fieldTypeSelect2:!1,events:{"click .copyable":"onClickCopy","click .handle":"onClickEdit","click .close-field":"onClickEdit",'click a[data-key="acf_field_settings_tabs"]':"onChangeSettingsTab","click .delete-field":"onClickDelete","click .duplicate-field":"duplicate","click .move-field":"move","click .browse-fields":"browseFields","focus .edit-field":"onFocusEdit","blur .edit-field, .row-options a":"onBlurEdit","change .field-type":"onChangeType","change .field-required":"onChangeRequired","blur .field-label":"onChangeLabel","blur .field-name":"onChangeName",change:"onChange",changed:"onChanged"},data:{id:0,key:"",type:""},setup:function(e){this.$el=e,this.inherit(e),this.prop("ID"),this.prop("parent"),this.prop("menu_order")},$input:function(t){return e("#"+this.getInputId()+"-"+t)},$meta:function(){return this.$(".meta:first")},$handle:function(){return this.$(".handle:first")},$settings:function(){return this.$(".settings:first")},$setting:function(e){return this.$(".acf-field-settings:first .acf-field-setting-"+e)},$fieldTypeSelect:function(){return this.$(".field-type")},$fieldLabel:function(){return this.$(".field-label")},getParent:function(){return acf.getFieldObjects({child:this.$el,limit:1}).pop()},getParents:function(){return acf.getFieldObjects({child:this.$el})},getFields:function(){return acf.getFieldObjects({parent:this.$el})},getInputName:function(){return"acf_fields["+this.get("id")+"]"},getInputId:function(){return"acf_fields-"+this.get("id")},newInput:function(t,i){var n=this.getInputId(),a=this.getInputName();t&&(n+="-"+t,a+="["+t+"]");var l=e("").attr({id:n,name:a,value:i});return this.$("> .meta").append(l),l},getProp:function(e){if(this.has(e))return this.get(e);var t=this.$input(e),i=t.length?t.val():null;return this.set(e,i,!0),i},setProp:function(e,t){var i=this.$input(e);return i.val(),i.length||(i=this.newInput(e,t)),null===t?i.remove():i.val(t),this.has(e)?this.set(e,t):this.set(e,t,!0),this},prop:function(e,t){return void 0!==t?this.setProp(e,t):this.getProp(e)},props:function(e){Object.keys(e).map((function(t){this.setProp(t,e[t])}),this)},getLabel:function(){var e=this.prop("label");return""===e&&(e=acf.__("(no label)")),e},getName:function(){return this.prop("name")},getType:function(){return this.prop("type")},getTypeLabel:function(){var e=this.prop("type"),t=acf.get("fieldTypes");return t[e]?t[e].label:e},getKey:function(){return this.prop("key")},initialize:function(){this.checkCopyable()},makeCopyable:function(e){return navigator.clipboard?''+e+"":''+e+""},checkCopyable:function(){navigator.clipboard||this.$el.find(".copyable").addClass("copy-unsupported")},initializeFieldTypeSelect2:function(){if(!this.fieldTypeSelect2&&!this.$fieldTypeSelect().hasClass("disable-select2")){try{e.fn.select2.amd.require("select2/compat/dropdownCss")}catch(e){return void console.warn("ACF was not able to load the full version of select2 due to a conflicting version provided by another plugin or theme taking precedence. Select2 fields may not work as expected.")}this.fieldTypeSelect2=acf.newSelect2(this.$fieldTypeSelect(),{field:!1,ajax:!1,multiple:!1,allowNull:!1,suppressFilters:!0,dropdownCssClass:"field-type-select-results",templateResult:function(t){if(t.loading||t.element&&"OPTGROUP"===t.element.nodeName)(i=e('')).html(acf.escHtml(t.text));else var i=e(''+acf.escHtml(t.text)+"");return i.data("element",t.element),i},templateSelection:function(t){var i=e(''+acf.escHtml(t.text)+"");return i.data("element",t.element),i}}),this.fieldTypeSelect2.on("select2:open",(function(){e(".field-type-select-results input.select2-search__field").attr("placeholder",acf.__("Type to search..."))})),this.fieldTypeSelect2.on("change",(function(t){e(t.target).parents("ul:first").find("button.browse-fields").prop("disabled",!0)})),this.fieldTypeSelect2.$el.parent().on("keydown",".select2-selection.select2-selection--single",this.onKeyDownSelect)}},addProFields:function(){if(acf.get("is_pro"))return;var e=this.$fieldTypeSelect();if(e.hasClass("acf-free-field-type"))return;const t=acf.get("PROFieldTypes");if("object"!=typeof t)return;const i=e.find('optgroup option[value="group"]').parent(),n=e.find('optgroup option[value="image"]').parent();for(const[e,a]of Object.entries(t))("content"===a.category?n:i).append('");e.addClass("acf-free-field-type")},render:function(){var e=this.$(".handle:first"),t=this.prop("menu_order"),i=this.getLabel(),n=this.prop("name"),a=this.getTypeLabel(),l=this.prop("key"),s=this.$input("required").prop("checked");e.find(".acf-icon").html(parseInt(t)+1),s&&(i+=' *'),e.find(".li-field-label strong a").html(i),e.find(".li-field-name").html(this.makeCopyable(n));const o=acf.strSlugify(this.getType());e.find(".field-type-label").text(" "+a),e.find(".field-type-icon").removeClass().addClass("field-type-icon field-type-icon-"+o),e.find(".li-field-key").html(this.makeCopyable(l)),acf.doAction("render_field_object",this)},refresh:function(){acf.doAction("refresh_field_object",this)},isOpen:function(){return this.$el.hasClass("open")},onClickCopy:function(t){if(t.stopPropagation(),!navigator.clipboard||e(t.target).is("input"))return;let i;i=e(t.target).hasClass("acf-input-wrap")?e(t.target).find("input").first().val():e(t.target).text(),navigator.clipboard.writeText(i).then((()=>{e(t.target).closest(".copyable").addClass("copied"),setTimeout((function(){e(t.target).closest(".copyable").removeClass("copied")}),2e3)}))},onClickEdit:function(t){$target=e(t.target),$target.parent().hasClass("row-options")&&!$target.hasClass("edit-field")||(this.isOpen()?this.close():this.open())},onChangeSettingsTab:function(){const e=this.$el.children(".settings");acf.doAction("show",e)},onFocusEdit:function(t){e(t.target).closest("li").find(".row-options").addClass("active")},onBlurEdit:function(t){var i=e(t.target).closest("li").find(".row-options");setTimeout((function(){var t=e(document.activeElement).closest("li").find(".row-options");i.is(t)||i.removeClass("active")}),50)},open:function(){var e=this.$el.children(".settings");this.addProFields(),this.initializeFieldTypeSelect2(),acf.doAction("open_field_object",this),this.trigger("openFieldObject"),acf.doAction("show",e),this.hideEmptyTabs(),e.slideDown(),this.$el.addClass("open")},onKeyDownSelect:function(t){t.which>=186&&t.which<=222||[8,9,13,16,17,18,19,20,27,32,33,34,35,36,37,38,39,40,45,46,91,92,93,144,145].includes(t.which)||t.which>=112&&t.which<=123||e(this).closest(".select2-container").siblings("select:enabled").select2("open")},close:function(){var e=this.$el.children(".settings");e.slideUp(),this.$el.removeClass("open"),acf.doAction("close_field_object",this),this.trigger("closeFieldObject"),acf.doAction("hide",e)},serialize:function(){return acf.serialize(this.$el,this.getInputName())},save:function(e){e=e||"settings","settings"!==this.getProp("save")&&(this.setProp("save",e),this.$el.attr("data-save",e),acf.doAction("save_field_object",this,e))},submit:function(){var e=this.getInputName(),t=this.get("save");this.isOpen()&&this.close(),"settings"==t||("meta"==t?this.$('> .settings [name^="'+e+'"]').remove():this.$('[name^="'+e+'"]').remove()),acf.doAction("submit_field_object",this)},onChange:function(e,t){this.save(),acf.doAction("change_field_object",this)},onChanged:function(t,i,n,a){this.getType()===i.attr("data-type")&&e("button.acf-btn.browse-fields").prop("disabled",!1),"save"!=n&&(["menu_order","parent"].indexOf(n)>-1?this.save("meta"):this.save(),["menu_order","label","required","name","type","key"].indexOf(n)>-1&&this.render(),acf.doAction("change_field_object_"+n,this,a))},onChangeLabel:function(e,t){var i=t.val();if(this.set("label",i),""==this.prop("name")){var n=acf.applyFilters("generate_field_object_name",acf.strSanitize(i),this);this.prop("name",n)}},onChangeName:function(e,t){var i=t.val();i=i.replace(/[^A-Za-zŽžÀ-ÿ0-9_-]+/g,"-"),t.val(i),this.set("name",i),"field_"===i.substr(0,6)&&alert(acf.__('The string "field_" may not be used at the start of a field name'))},onChangeRequired:function(e,t){var i=t.prop("checked")?1:0;this.set("required",i)},delete:function(t){t=acf.parseArgs(t,{animate:!0});var i=this.prop("ID");if(i){var n=e("#_acf_delete_fields"),a=n.val()+"|"+i;n.val(a)}acf.doAction("delete_field_object",this),t.animate?this.removeAnimate():this.remove()},onClickDelete:function(e,t){if(e.shiftKey)return this.delete();this.$el.addClass("-hover"),acf.newTooltip({confirmRemove:!0,target:t,context:this,confirm:function(){this.delete()},cancel:function(){this.$el.removeClass("-hover")}})},removeAnimate:function(){var e=this,t=this.$el.parent(),i=acf.findFieldObjects({sibling:this.$el});acf.remove({target:this.$el,endHeight:i.length?0:50,complete:function(){e.remove(),acf.doAction("removed_field_object",e,t)}}),acf.doAction("remove_field_object",e,t)},duplicate:function(){var e=acf.uniqid("field_"),t=acf.duplicate({target:this.$el,search:this.get("id"),replace:e});t.attr("data-key",e);var i=acf.getFieldObject(t),n=i.prop("label"),a=i.prop("name"),l=a.split("_").pop(),s=acf.__("copy");if(acf.isNumeric(l)){var o=1*l+1;n=n.replace(l,o),a=a.replace(l,o)}else 0===l.indexOf(s)?(o=(o=1*l.replace(s,""))?o+1:2,n=n.replace(l,s+o),a=a.replace(l,s+o)):(n+=" ("+s+")",a+="_"+s);i.prop("ID",0),i.prop("label",n),i.prop("name",a),i.prop("key",e),this.isOpen()&&this.close(),i.open();var c=i.$setting("label input");setTimeout((function(){c.trigger("focus")}),251),acf.doAction("duplicate_field_object",this,i),acf.doAction("append_field_object",i)},wipe:function(){var e=this.get("id"),t=this.get("key"),i=acf.uniqid("field_");acf.rename({target:this.$el,search:e,replace:i}),this.set("id",i),this.set("prevId",e),this.set("prevKey",t),this.prop("key",i),this.prop("ID",0),this.$el.attr("data-key",i),this.$el.attr("data-id",i),acf.doAction("wipe_field_object",this)},move:function(){var t=function(e){return"settings"==e.get("save")},i=t(this);if(i||acf.getFieldObjects({parent:this.$el}).map((function(e){i=t(e)||e.changed})),i)alert(acf.__("This field cannot be moved until its changes have been saved"));else{var n=this.prop("ID"),a=this,l=!1,s=function(e){l.loading(!1),l.content(e),l.on("submit","form",o)},o=function(t,i){t.preventDefault(),acf.startButtonLoading(l.$(".button"));var a={action:"acf/field_group/move_field",field_id:n,field_group_id:l.$("select").val()};e.ajax({url:acf.get("ajaxurl"),data:acf.prepareForAjax(a),type:"post",dataType:"html",success:c})},c=function(e){l.content(e),wp.a11y&&wp.a11y.speak&&acf.__&&wp.a11y.speak(acf.__("Field moved to other group"),"polite"),l.$(".acf-close-popup").focus(),a.removeAnimate()};!function(){l=acf.newPopup({title:acf.__("Move Custom Field"),loading:!0,width:"300px",openedBy:a.$el.find(".move-field")});var t={action:"acf/field_group/move_field",field_id:n};e.ajax({url:acf.get("ajaxurl"),data:acf.prepareForAjax(t),type:"post",dataType:"html",success:s})}()}},browseFields:function(e,t){e.preventDefault(),acf.newBrowseFieldsModal({openedBy:this})},onChangeType:function(e,t){this.changeTimeout&&clearTimeout(this.changeTimeout),this.changeTimeout=this.setTimeout((function(){this.changeType(t.val())}),300)},changeType:function(t){var i=this.prop("type"),n=acf.strSlugify("acf-field-object-"+i),a=acf.strSlugify("acf-field-object-"+t);this.$el.removeClass(n).addClass(a),this.$el.attr("data-type",t),this.$el.data("type",t),this.has("xhr")&&this.get("xhr").abort();const l={};if(this.$el.find(".acf-field-settings:first > .acf-field-settings-main > .acf-field-type-settings").each((function(){let t=e(this).data("parent-tab"),i=e(this).children().removeData();l[t]=i,i.detach()})),this.set("settings-"+i,l),this.has("settings-"+t)){let e=this.get("settings-"+t);return this.showFieldTypeSettings(e),void this.set("type",t)}const s=e('
    ');this.$el.find(".acf-field-settings-main-general .acf-field-type-settings").before(s);const o={action:"acf/field_group/render_field_settings",field:this.serialize(),prefix:this.getInputName()};var c=e.ajax({url:acf.get("ajaxurl"),data:acf.prepareForAjax(o),type:"post",dataType:"json",context:this,success:function(e){acf.isAjaxSuccess(e)&&this.showFieldTypeSettings(e.data)},complete:function(){s.remove(),this.set("type",t)}});this.set("xhr",c)},showFieldTypeSettings:function(e){if("object"!=typeof e)return;const t=this;Object.keys(e).forEach((i=>{const n=t.$el.find(".acf-field-settings-main-"+i.replace("_","-")+" .acf-field-type-settings");let a="";["object","string"].includes(typeof e[i])&&(a=e[i]),n.prepend(a),acf.doAction("append",n)})),this.hideEmptyTabs()},updateParent:function(){var e=acf.get("post_id"),t=this.getParent();t&&(e=parseInt(t.prop("ID"))||t.prop("key")),this.prop("parent",e)},hideEmptyTabs:function(){const t=this.$settings();t.find(".acf-field-settings:first > .acf-field-settings-main").each((function(){const i=e(this),n=i.find(".acf-field-type-settings:first").data("parentTab"),a=t.find(".acf-settings-type-"+n).first();""===e.trim(i.text())?a.hide():a.is(":hidden")&&a.show()}))}})},7297:()=>{var e;e=jQuery,acf.findFieldObject=function(e){return acf.findFieldObjects({key:e,limit:1})},acf.findFieldObjects=function(t){t=t||{};var i=".acf-field-object",n=!1;return(t=acf.parseArgs(t,{id:"",key:"",type:"",limit:!1,list:null,parent:!1,sibling:!1,child:!1})).id&&(i+='[data-id="'+t.id+'"]'),t.key&&(i+='[data-key="'+t.key+'"]'),t.type&&(i+='[data-type="'+t.type+'"]'),n=t.list?t.list.children(i):t.parent?t.parent.find(i):t.sibling?t.sibling.siblings(i):t.child?t.child.parents(i):e(i),t.limit&&(n=n.slice(0,t.limit)),n},acf.getFieldObject=function(e){"string"==typeof e&&(e=acf.findFieldObject(e));var t=e.data("acf");return t||(t=acf.newFieldObject(e)),t},acf.getFieldObjects=function(t){var i=acf.findFieldObjects(t),n=[];return i.each((function(){var t=acf.getFieldObject(e(this));n.push(t)})),n},acf.newFieldObject=function(e){var t=new acf.FieldObject(e);return acf.doAction("new_field_object",t),t},new acf.Model({priority:5,initialize:function(){["prepare","ready","append","remove"].map((function(e){this.addFieldActions(e)}),this)},addFieldActions:function(e){var t=e+"_field_objects",i=e+"_field_object",n=e+"FieldObject";acf.addAction(e,(function(e){var i=acf.getFieldObjects({parent:e});if(i.length){var n=acf.arrayArgs(arguments);n.splice(0,1,t,i),acf.doAction.apply(null,n)}}),5),acf.addAction(t,(function(e){var t=acf.arrayArgs(arguments);t.unshift(i),e.map((function(e){t[1]=e,acf.doAction.apply(null,t)}))}),5),acf.addAction(i,(function(e){var t=acf.arrayArgs(arguments);t.unshift(i),["type","name","key"].map((function(n){t[0]=i+"/"+n+"="+e.get(n),acf.doAction.apply(null,t)})),t.splice(0,2),e.trigger(n,t)}),5)}}),new acf.Model({id:"fieldManager",events:{"submit #post":"onSubmit","mouseenter .acf-field-list":"onHoverSortable","click .add-field":"onClickAdd"},actions:{removed_field_object:"onRemovedField",sortstop_field_object:"onReorderField",delete_field_object:"onDeleteField",change_field_object_type:"onChangeFieldType",duplicate_field_object:"onDuplicateField"},onSubmit:function(e,t){acf.getFieldObjects().map((function(e){e.submit()}))},setFieldMenuOrder:function(e){this.renderFields(e.$el.parent())},onHoverSortable:function(e,t){t.hasClass("ui-sortable")||t.sortable({helper:function(e,t){return t.clone().find(":input").attr("name",(function(e,t){return"sort_"+parseInt(1e5*Math.random(),10).toString()+"_"+t})).end()},handle:".acf-sortable-handle",connectWith:".acf-field-list",start:function(e,i){var n=acf.getFieldObject(i.item);i.placeholder.height(i.item.height()),acf.doAction("sortstart_field_object",n,t)},update:function(e,i){var n=acf.getFieldObject(i.item);acf.doAction("sortstop_field_object",n,t)}})},onRemovedField:function(e,t){this.renderFields(t)},onReorderField:function(e,t){e.updateParent(),this.renderFields(t)},onDeleteField:function(e){e.getFields().map((function(e){e.delete({animate:!1})}))},onChangeFieldType:function(e){e.$el.find("button.browse-fields").prop("disabled",!1)},onDuplicateField:function(e,t){var i=t.getFields();i.length&&(i.map((function(e){e.wipe(),e.isOpen()&&e.open(),e.updateParent()})),acf.doAction("duplicate_field_objects",i,t,e)),this.setFieldMenuOrder(t)},renderFields:function(e){var t=acf.getFieldObjects({list:e});if(!t.length)return e.addClass("-empty"),void e.parents(".acf-field-list-wrap").first().addClass("-empty");e.removeClass("-empty"),e.parents(".acf-field-list-wrap").first().removeClass("-empty"),t.map((function(e,t){e.prop("menu_order",t)}))},onClickAdd:function(t,i){let n;n=i.hasClass("add-first-field")?i.parents(".acf-field-list").eq(0):i.parent().hasClass("acf-headerbar-actions")||i.parent().hasClass("no-fields-message-inner")?e(".acf-field-list:first"):i.parent().hasClass("acf-sub-field-list-header")?i.parents(".acf-input:first").find(".acf-field-list:first"):i.closest(".acf-tfoot").siblings(".acf-field-list"),this.addField(n)},addField:function(t){var i=e("#tmpl-acf-field").html(),n=e(i),a=n.data("id"),l=acf.uniqid("field_"),s=acf.duplicate({target:n,search:a,replace:l,append:function(e,i){t.append(i)}}),o=acf.getFieldObject(s);o.prop("key",l),o.prop("ID",0),o.prop("label",""),o.prop("name",""),s.attr("data-key",l),s.attr("data-id",l),o.updateParent();var c=o.$input("type");setTimeout((function(){t.hasClass("acf-auto-add-field")?t.removeClass("acf-auto-add-field"):c.trigger("focus")}),251),o.open(),this.renderFields(t),acf.doAction("add_field_object",o),acf.doAction("append_field_object",o)}})},2522:()=>{var e;e=jQuery,new acf.Model({id:"locationManager",wait:"ready",events:{"click .add-location-rule":"onClickAddRule","click .add-location-group":"onClickAddGroup","click .remove-location-rule":"onClickRemoveRule","change .refresh-location-rule":"onChangeRemoveRule"},initialize:function(){this.$el=e("#acf-field-group-options"),this.addProLocations(),this.updateGroupsClass()},addProLocations:function(){if(acf.get("is_pro"))return;const e=acf.get("PROLocationTypes");if("object"!=typeof e)return;const t=this.$el.find("select.refresh-location-rule").find('optgroup[label="Forms"]');for(const[i,n]of Object.entries(e))t.append('")},onClickAddRule:function(e,t){this.addRule(t.closest("tr"))},onClickRemoveRule:function(e,t){this.removeRule(t.closest("tr"))},onChangeRemoveRule:function(e,t){this.changeRule(t.closest("tr"))},onClickAddGroup:function(e,t){this.addGroup()},addRule:function(e){acf.duplicate(e),this.updateGroupsClass()},removeRule:function(e){0==e.siblings("tr").length?e.closest(".rule-group").remove():e.remove(),this.$(".rule-group:first").find("h4").text(acf.__("Show this field group if")),this.updateGroupsClass()},changeRule:function(t){var i=t.closest(".rule-group"),n=t.find("td.param select").attr("name").replace("[param]",""),a={action:"acf/field_group/render_location_rule"};a.rule=acf.serialize(t,n),a.rule.id=t.data("id"),a.rule.group=i.data("id"),acf.disable(t.find("td.value")),e.ajax({url:acf.get("ajaxurl"),data:acf.prepareForAjax(a),type:"post",dataType:"html",success:function(e){e&&t.replaceWith(e)}})},addGroup:function(){var e=this.$(".rule-group:last");$group2=acf.duplicate(e),$group2.find("h4").text(acf.__("or")),$group2.find("tr").not(":first").remove(),this.updateGroupsClass()},updateGroupsClass:function(){var e=this.$(".rule-group:last").closest(".rule-groups");e.find(".acf-table tr").length>1?e.addClass("rule-groups-multiple"):e.removeClass("rule-groups-multiple")}})},749:()=>{!function(e,t){var i=function(e){return acf.strPascalCase(e||"")+"FieldSetting"};acf.registerFieldSetting=function(e){var t=e.prototype,n=i(t.type+" "+t.name);this.models[n]=e},acf.newFieldSetting=function(e){var t=e.get("setting")||"",n=e.get("name")||"",a=i(t+" "+n),l=acf.models[a]||null;return null!==l&&new l(e)},acf.getFieldSetting=function(e){return e instanceof jQuery&&(e=acf.getField(e)),e.setting},new acf.Model({actions:{new_field:"onNewField"},onNewField:function(e){e.setting=acf.newFieldSetting(e)}}),acf.FieldSetting=acf.Model.extend({field:!1,type:"",name:"",wait:"ready",eventScope:".acf-field",events:{change:"render"},setup:function(t){var i=t.$el;this.$el=i,this.field=t,this.$fieldObject=i.closest(".acf-field-object"),this.fieldObject=acf.getFieldObject(this.$fieldObject),e.extend(this.data,t.data)},initialize:function(){this.render()},render:function(){}});var n=acf.FieldSetting.extend({type:"",name:"",render:function(){this.fieldObject.$setting("endpoint").find('input[type="checkbox"]:first').is(":checked")?this.fieldObject.$el.addClass("acf-field-is-endpoint"):this.fieldObject.$el.removeClass("acf-field-is-endpoint")}}),a=n.extend({type:"accordion",name:"endpoint"}),l=n.extend({type:"tab",name:"endpoint"});acf.registerFieldSetting(a),acf.registerFieldSetting(l);var s=acf.FieldSetting.extend({type:"",name:"",render:function(){var e=this.$('input[type="radio"]:checked');"other"!=e.val()&&this.$('input[type="text"]').val(e.val())}}),o=s.extend({type:"date_picker",name:"display_format"}),c=s.extend({type:"date_picker",name:"return_format"});acf.registerFieldSetting(o),acf.registerFieldSetting(c);var r=s.extend({type:"date_time_picker",name:"display_format"}),d=s.extend({type:"date_time_picker",name:"return_format"});acf.registerFieldSetting(r),acf.registerFieldSetting(d);var f=s.extend({type:"time_picker",name:"display_format"}),p=s.extend({type:"time_picker",name:"return_format"});acf.registerFieldSetting(f),acf.registerFieldSetting(p);var u=acf.FieldSetting.extend({type:"color_picker",name:"enable_opacity",render:function(){var e=this.fieldObject.$setting("return_format"),t=this.fieldObject.$setting("default_value"),i=e.find('input[type="radio"][value="string"]').parent("label").contents().last(),n=t.find('input[type="text"]'),a=acf.get("colorPickerL10n");this.field.val()?(i.replaceWith(a.rgba_string),n.attr("placeholder","rgba(255,255,255,0.8)")):(i.replaceWith(a.hex_string),n.attr("placeholder","#FFFFFF"))}});acf.registerFieldSetting(u)}(jQuery)},3319:()=>{var e;e=jQuery,new acf.Model({id:"fieldGroupManager",events:{"submit #post":"onSubmit",'click a[href="#"]':"onClick","click .acf-delete-field-group":"onClickDeleteFieldGroup","blur input#title":"validateTitle","input input#title":"validateTitle"},filters:{find_fields_args:"filterFindFieldArgs",find_fields_selector:"filterFindFieldsSelector"},initialize:function(){acf.addAction("prepare",this.maybeInitNewFieldGroup),acf.add_filter("select2_args",this.setBidirectionalSelect2Args),acf.add_filter("select2_ajax_data",this.setBidirectionalSelect2AjaxDataArgs)},setBidirectionalSelect2Args:function(t,i,n,a,l){var s;return"bidirectional_target"!==(null==a||null===(s=a.data)||void 0===s?void 0:s.call(a,"key"))||(t.dropdownCssClass="field-type-select-results",t.templateResult=function(t){if(void 0!==t.element)return t;if(t.children)return t.text;if(t.loading||t.element&&"OPTGROUP"===t.element.nodeName)return(i=e('')).html(acf.escHtml(t.text)),i;if(void 0===t.human_field_type||void 0===t.field_type||void 0===t.this_field)return t.text;var i=e(''+acf.escHtml(t.text)+"");return t.this_field&&i.last().append(''+acf.__("This Field")+""),i.data("element",t.element),i}),t},setBidirectionalSelect2AjaxDataArgs:function(e,t,i,n,a){if("bidirectional_target"!==e.field_key)return e;const l=acf.findFieldObjects({child:n}),s=acf.getFieldObject(l);return e.field_key="_acf_bidirectional_target",e.parent_key=s.get("key"),e.field_type=s.get("type"),e.post_type=acf.getField(acf.findFields({parent:l,key:"post_type"})).val(),e},maybeInitNewFieldGroup:function(){e("#acf-field-group-fields > .inside > .acf-field-list-wrap.acf-auto-add-field").length&&(e(".acf-headerbar-actions .add-field").trigger("click"),e(".acf-title-wrap #title").trigger("focus"))},onSubmit:function(t,i){var n=e(".acf-title-wrap #title");n.val()||(t.preventDefault(),acf.unlockForm(i),n.trigger("focus"))},onClick:function(e){e.preventDefault()},onClickDeleteFieldGroup:function(e,t){e.preventDefault(),t.addClass("-hover"),acf.newTooltip({confirm:!0,target:t,context:this,text:acf.__("Move field group to trash?"),confirm:function(){window.location.href=t.attr("href")},cancel:function(){t.removeClass("-hover")}})},validateTitle:function(t,i){let n=e(".acf-publish");i.val()?(i.removeClass("acf-input-error"),n.removeClass("disabled"),e(".acf-publish").removeClass("disabled")):(i.addClass("acf-input-error"),n.addClass("disabled"),e(".acf-publish").addClass("disabled"))},filterFindFieldArgs:function(e){return e.visible=!0,e.parent&&(e.parent.hasClass("acf-field-object")||e.parent.hasClass("acf-browse-fields-modal-wrap")||e.parent.parents(".acf-field-object").length)&&(e.visible=!1,e.excludeSubFields=!0),e.parent&&e.parent.find(".acf-field-object.open").length&&(e.excludeSubFields=!1),e},filterFindFieldsSelector:function(e){return e+", .acf-field-acf-field-group-settings-tabs"}}),new acf.Model({id:"screenOptionsManager",wait:"prepare",events:{"change #acf-field-key-hide":"onFieldKeysChange","change #acf-field-settings-tabs":"onFieldSettingsTabsChange",'change [name="screen_columns"]':"render"},initialize:function(){var t=e("#adv-settings"),i=e("#acf-append-show-on-screen");t.find(".metabox-prefs").append(i.html()),t.find(".metabox-prefs br").remove(),i.remove(),this.$el=e("#screen-options-wrap"),this.render()},isFieldKeysChecked:function(){return this.$el.find("#acf-field-key-hide").prop("checked")},isFieldSettingsTabsChecked:function(){const e=this.$el.find("#acf-field-settings-tabs");return!!e.length&&e.prop("checked")},getSelectedColumnCount:function(){return this.$el.find('input[name="screen_columns"]:checked').val()},onFieldKeysChange:function(e,t){var i=this.isFieldKeysChecked()?1:0;acf.updateUserSetting("show_field_keys",i),this.render()},onFieldSettingsTabsChange:function(){const e=this.isFieldSettingsTabsChecked()?1:0;acf.updateUserSetting("show_field_settings_tabs",e),this.render()},render:function(){this.isFieldKeysChecked()?e("#acf-field-group-fields").addClass("show-field-keys"):e("#acf-field-group-fields").removeClass("show-field-keys"),this.isFieldSettingsTabsChecked()?(e("#acf-field-group-fields").removeClass("hide-tabs"),e(".acf-field-object").each((function(){const t=acf.getFields({type:"tab",parent:e(this),excludeSubFields:!0,limit:1});t.length&&t[0].tabs.set("initialized",!1),acf.doAction("show",e(this))}))):(e("#acf-field-group-fields").addClass("hide-tabs"),e(".acf-field-settings-main").removeClass("acf-hidden").prop("hidden",!1)),1==this.getSelectedColumnCount()?(e("body").removeClass("columns-2"),e("body").addClass("columns-1")):(e("body").removeClass("columns-1"),e("body").addClass("columns-2"))}}),new acf.Model({actions:{new_field:"onNewField"},onNewField:function(t){if(t.has("append")){var i=t.get("append"),n=t.$el.siblings('[data-name="'+i+'"]').first();if(n.length){var a=n.children(".acf-input"),l=a.children("ul");l.length||(a.wrapInner(''),l=a.children("ul"));var s=t.$(".acf-input").html(),o=e("
  • "+s+"
  • ");l.append(o),l.attr("data-cols",l.children().length),t.remove()}}}})}},t={};function i(n){var a=t[n];if(void 0!==a)return a.exports;var l=t[n]={exports:{}};return e[n](l,l.exports,i),l.exports}(()=>{"use strict";function e(t){return e="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},e(t)}function t(t){var i=function(t,i){if("object"!=e(t)||!t)return t;var n=t[Symbol.toPrimitive];if(void 0!==n){var a=n.call(t,"string");if("object"!=e(a))return a;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==e(i)?i:String(i)}function n(e,t){var i=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),i.push.apply(i,n)}return i}function a(e){for(var i=1;ithis.get("popularFieldTypes").includes(e.name)));if("pro"===e)return n.filter((e=>e.pro));n=n.filter((t=>t.category===e))}return t&&(n=n.filter((e=>{const i=e.label.toLowerCase(),n=i.split(" ");let a=!1;return i.startsWith(t.toLowerCase())?a=!0:n.length>1&&n.forEach((e=>{e.startsWith(t.toLowerCase())&&(a=!0)})),a}))),n},render:function(){i.doAction("append",this.$el);const t=this.$el.find(".acf-field-types-tab"),n=this;t.each((function(){const t=e(this).data("category");n.getFieldTypes(t).forEach((t=>{e(this).append(n.getFieldTypeHTML(t))}))})),this.initializeFieldLabel(),this.initializeFieldType(),this.onChangeFieldType()},getFieldTypeHTML:function(e){const t=e.name.replaceAll("_","-");return`\n\t\t\t\n\t\t\t\t${e.pro&&!i.get("is_pro")?'PRO':e.pro?'PRO':""}\n\t\t\t\t\n\t\t\t\t${e.label}\n\t\t\t\n\t\t\t`},decodeFieldTypeURL:function(e){return"string"!=typeof e?e:e.replaceAll("&","&")},renderFieldTypeDesc:function(e){const t=this.getFieldTypes().filter((t=>t.name===e))[0]||{},n=i.parseArgs(t,{label:"",description:"",doc_url:!1,tutorial_url:!1,preview_image:!1,pro:!1});this.$el.find(".field-type-name").text(n.label),this.$el.find(".field-type-desc").text(n.description),n.doc_url?this.$el.find(".field-type-doc").attr("href",this.decodeFieldTypeURL(n.doc_url)).show():this.$el.find(".field-type-doc").hide(),n.tutorial_url?this.$el.find(".field-type-tutorial").attr("href",this.decodeFieldTypeURL(n.tutorial_url)).parent().show():this.$el.find(".field-type-tutorial").parent().hide(),n.preview_image?this.$el.find(".field-type-image").attr("src",n.preview_image).show():this.$el.find(".field-type-image").hide();const a=i.get("is_pro"),l=this.$el.find(".acf-btn-pro"),s=this.$el.find(".field-type-upgrade-to-unlock");n.pro&&!a?(l.show(),l.attr("href",l.data("urlBase")+e),s.show(),s.attr("href",s.data("urlBase")+e),this.$el.find(".acf-insert-field-label").attr("disabled",!0),this.$el.find(".acf-select-field").hide()):(l.hide(),s.hide(),this.$el.find(".acf-insert-field-label").attr("disabled",!1),this.$el.find(".acf-select-field").show())},initializeFieldType:function(){var t;const i=this.get("openedBy"),n=null==i||null===(t=i.data)||void 0===t?void 0:t.type;n?this.set("currentFieldType",n):this.set("currentFieldType","text");const a=this.getFieldTypes();let l="";l=this.get("popularFieldTypes").includes(n)?"popular":a.find((e=>e.name===n)).category;const s=`.acf-modal-content .acf-tab-wrap a:contains('${l[0].toUpperCase()+l.slice(1)}')`;setTimeout((()=>{e(s).click()}),0)},initializeFieldLabel:function(){const e=this.get("openedBy").$fieldLabel().val(),t=this.$el.find(".acf-insert-field-label");e?t.val(e):t.val("")},updateFieldObjectFieldLabel:function(){const e=this.$el.find(".acf-insert-field-label").val(),t=this.get("openedBy");t.$fieldLabel().val(e),t.$fieldLabel().trigger("blur")},onChangeFieldType:function(){const e=this.get("currentFieldType");this.$el.find(".selected").removeClass("selected"),this.$el.find('.acf-field-type[data-field-type="'+e+'"]').addClass("selected"),this.renderFieldTypeDesc(e)},onSearchFieldTypes:function(t){const i=this.$el.find(".acf-browse-fields-modal"),n=this.$el.find(".acf-search-field-types").val(),a=this;let l,s="",o=[];if("string"==typeof n&&(l=n.trim(),o=this.getFieldTypes(!1,l)),l.length&&o.length?i.addClass("is-searching"):i.removeClass("is-searching"),!o.length)return i.addClass("no-results-found"),void this.$el.find(".acf-invalid-search-term").text(l);i.removeClass("no-results-found"),o.forEach((e=>{s+=a.getFieldTypeHTML(e)})),e(".acf-field-type-search-results").html(s),this.set("currentFieldType",o[0].name),this.onChangeFieldType()},onClickBrowsePopular:function(){this.$el.find(".acf-search-field-types").val("").trigger("input"),this.$el.find(".acf-tab-wrap a").first().trigger("click")},onClickSelectField:function(e){const t=this.get("openedBy");t.$fieldTypeSelect().val(this.get("currentFieldType")),t.$fieldTypeSelect().trigger("change"),this.updateFieldObjectFieldLabel(),this.close()},onClickFieldType:function(t){const i=e(t.currentTarget);this.set("currentFieldType",i.data("field-type"))},onClickClose:function(){this.close()},onPressEscapeClose:function(e){"Escape"===e.key&&this.close()},close:function(){this.lockFocusToModal(!1),this.returnFocusToOrigin(),this.remove()},focus:function(){this.$el.find("button").first().trigger("focus")}};i.models.browseFieldsModal=i.models.Modal.extend(n),i.newBrowseFieldsModal=e=>new i.models.browseFieldsModal(e)}(window.jQuery,0,window.acf)})()})(); \ No newline at end of file diff --git a/assets/build/js/acf-input.js b/assets/build/js/acf-input.js index 5eecdec..61b11b1 100644 --- a/assets/build/js/acf-input.js +++ b/assets/build/js/acf-input.js @@ -1171,7 +1171,6 @@ // the field which we query against rule: {} // the rule [field, operator, value] }, - events: { change: 'change', keyup: 'change', @@ -1538,7 +1537,6 @@ // Reference used during "change" event. groups: [] // The groups of condition instances. }, - setup: function (field) { // data this.data.field = field; @@ -1592,7 +1590,7 @@ // loop this.getGroups().map(function (group) { - // igrnore this group if another group passed + // ignore this group if another group passed if (pass) return; // find passed @@ -5438,6 +5436,9 @@ if (changed) { this.prop('hidden', false); acf.doAction('show_field', this, context); + if (context === 'conditional_logic') { + this.setFieldSettingsLastVisible(); + } } // return @@ -5451,11 +5452,22 @@ if (changed) { this.prop('hidden', true); acf.doAction('hide_field', this, context); + if (context === 'conditional_logic') { + this.setFieldSettingsLastVisible(); + } } // return return changed; }, + setFieldSettingsLastVisible: function () { + // Ensure this conditional logic trigger has happened inside a field settings tab. + var $parents = this.$el.parents('.acf-field-settings-main'); + if (!$parents.length) return; + var $fields = $parents.find('.acf-field'); + $fields.removeClass('acf-last-visible'); + $fields.not('.acf-hidden').last().addClass('acf-last-visible'); + }, enable: function (lockKey, context) { // enable field and store result var changed = acf.enable(this.$el, lockKey); @@ -6060,6 +6072,17 @@ onChange: function () { // preview hack allows post to save with no title or content $('#_acf_changed').val(1); + if (acf.isGutenbergPostEditor()) { + try { + wp.data.dispatch('core/editor').editPost({ + meta: { + _acf_changed: 1 + } + }); + } catch (error) { + console.log('ACF: Failed to update _acf_changed meta', error); + } + } } }); var duplicateFieldsManager = new acf.Model({ @@ -8307,7 +8330,7 @@ if (!options.templateSelection) { options.templateSelection = function (selection) { var $selection = $(''); - $selection.html(acf.escHtml(selection.text)); + $selection.html(acf.strEscape(selection.text)); $selection.data('element', selection.element); return $selection; }; diff --git a/assets/build/js/acf-input.js.map b/assets/build/js/acf-input.js.map index 1cad765..debfffa 100644 --- a/assets/build/js/acf-input.js.map +++ b/assets/build/js/acf-input.js.map @@ -1 +1 @@ -{"version":3,"file":"acf-input.js","mappings":"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AOhB,QAAQ,CAACtmC,KAAK,CAAE0mC,KAAK,EAAEC,KAAM,CAAC;QACtC,CAAC,EACCY,GAAG,IAAM;UACV;QAAA,CACC,CAAC;MACL,CAAC;IACF;EACD,CAAE,CAAC;AACJ,CAAC,EAAIhgC,MAAO,CAAC;;;;;;UCzpCb;UACA;;UAEA;UACA;UACA;UACA;UACA;UACA;UACA;UACA;UACA;UACA;UACA;UACA;UACA;;UAEA;UACA;;UAEA;UACA;UACA;;;;;WCtBA;WACA;WACA;WACA;WACA;WACA,iCAAiC,WAAW;WAC5C;WACA;;;;;WCPA;WACA;WACA;WACA;WACA,yCAAyC,wCAAwC;WACjF;WACA;WACA;;;;;WCPA;;;;;WCAA;WACA;WACA;WACA,uDAAuD,iBAAiB;WACxE;WACA,gDAAgD,aAAa;WAC7D;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;ACNyB;AACC;AACS;AACG;AACJ;AACI;AACD;AACK;AACN;AACL;AACD;AACA;AACE;AACD;AACA;AACO;AACN;AACH;AACQ;AACF;AACL;AACI;AACG;AACD;AACP;AACI;AACJ;AACC;AACK;AACT;AACC;AACF;AACC;AACC;AACA;AACG;AACH","sources":["webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/js/_acf-compatibility.js","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/js/_acf-condition-types.js","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/js/_acf-condition.js","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/js/_acf-conditions.js","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/js/_acf-field-accordion.js","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/js/_acf-field-button-group.js","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/js/_acf-field-checkbox.js","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/js/_acf-field-color-picker.js","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/js/_acf-field-date-picker.js","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/js/_acf-field-date-time-picker.js","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/js/_acf-field-file.js","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/js/_acf-field-google-map.js","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/js/_acf-field-image.js","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/js/_acf-field-link.js","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/js/_acf-field-oembed.js","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/js/_acf-field-page-link.js","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/js/_acf-field-post-object.js","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/js/_acf-field-radio.js","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/js/_acf-field-range.js","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/js/_acf-field-relationship.js","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/js/_acf-field-select.js","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/js/_acf-field-tab.js","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/js/_acf-field-taxonomy.js","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/js/_acf-field-time-picker.js","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/js/_acf-field-true-false.js","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/js/_acf-field-url.js","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/js/_acf-field-user.js","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/js/_acf-field-wysiwyg.js","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/js/_acf-field.js","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/js/_acf-fields.js","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/js/_acf-helpers.js","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/js/_acf-media.js","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/js/_acf-postbox.js","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/js/_acf-screen.js","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/js/_acf-select2.js","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/js/_acf-tinymce.js","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/js/_acf-unload.js","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/js/_acf-validation.js","webpack://advanced-custom-fields-pro/webpack/bootstrap","webpack://advanced-custom-fields-pro/webpack/runtime/compat get default export","webpack://advanced-custom-fields-pro/webpack/runtime/define property getters","webpack://advanced-custom-fields-pro/webpack/runtime/hasOwnProperty shorthand","webpack://advanced-custom-fields-pro/webpack/runtime/make namespace object","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/js/acf-input.js"],"sourcesContent":["( function ( $, undefined ) {\n\t/**\n\t * acf.newCompatibility\n\t *\n\t * Inserts a new __proto__ object compatibility layer\n\t *\n\t * @date\t15/2/18\n\t * @since\t5.6.9\n\t *\n\t * @param\tobject instance The object to modify.\n\t * @param\tobject compatibilty Optional. The compatibilty layer.\n\t * @return\tobject compatibilty\n\t */\n\n\tacf.newCompatibility = function ( instance, compatibilty ) {\n\t\t// defaults\n\t\tcompatibilty = compatibilty || {};\n\n\t\t// inherit __proto_-\n\t\tcompatibilty.__proto__ = instance.__proto__;\n\n\t\t// inject\n\t\tinstance.__proto__ = compatibilty;\n\n\t\t// reference\n\t\tinstance.compatibility = compatibilty;\n\n\t\t// return\n\t\treturn compatibilty;\n\t};\n\n\t/**\n\t * acf.getCompatibility\n\t *\n\t * Returns the compatibility layer for a given instance\n\t *\n\t * @date\t13/3/18\n\t * @since\t5.6.9\n\t *\n\t * @param\tobject\t\tinstance\t\tThe object to look in.\n\t * @return\tobject|null\tcompatibility\tThe compatibility object or null on failure.\n\t */\n\n\tacf.getCompatibility = function ( instance ) {\n\t\treturn instance.compatibility || null;\n\t};\n\n\t/**\n\t * acf (compatibility)\n\t *\n\t * Compatibility layer for the acf object\n\t *\n\t * @date\t15/2/18\n\t * @since\t5.6.9\n\t *\n\t * @param\tvoid\n\t * @return\tvoid\n\t */\n\n\tvar _acf = acf.newCompatibility( acf, {\n\t\t// storage\n\t\tl10n: {},\n\t\to: {},\n\t\tfields: {},\n\n\t\t// changed function names\n\t\tupdate: acf.set,\n\t\tadd_action: acf.addAction,\n\t\tremove_action: acf.removeAction,\n\t\tdo_action: acf.doAction,\n\t\tadd_filter: acf.addFilter,\n\t\tremove_filter: acf.removeFilter,\n\t\tapply_filters: acf.applyFilters,\n\t\tparse_args: acf.parseArgs,\n\t\tdisable_el: acf.disable,\n\t\tdisable_form: acf.disable,\n\t\tenable_el: acf.enable,\n\t\tenable_form: acf.enable,\n\t\tupdate_user_setting: acf.updateUserSetting,\n\t\tprepare_for_ajax: acf.prepareForAjax,\n\t\tis_ajax_success: acf.isAjaxSuccess,\n\t\tremove_el: acf.remove,\n\t\tremove_tr: acf.remove,\n\t\tstr_replace: acf.strReplace,\n\t\trender_select: acf.renderSelect,\n\t\tget_uniqid: acf.uniqid,\n\t\tserialize_form: acf.serialize,\n\t\tesc_html: acf.strEscape,\n\t\tstr_sanitize: acf.strSanitize,\n\t} );\n\n\t_acf._e = function ( k1, k2 ) {\n\t\t// defaults\n\t\tk1 = k1 || '';\n\t\tk2 = k2 || '';\n\n\t\t// compability\n\t\tvar compatKey = k2 ? k1 + '.' + k2 : k1;\n\t\tvar compats = {\n\t\t\t'image.select': 'Select Image',\n\t\t\t'image.edit': 'Edit Image',\n\t\t\t'image.update': 'Update Image',\n\t\t};\n\t\tif ( compats[ compatKey ] ) {\n\t\t\treturn acf.__( compats[ compatKey ] );\n\t\t}\n\n\t\t// try k1\n\t\tvar string = this.l10n[ k1 ] || '';\n\n\t\t// try k2\n\t\tif ( k2 ) {\n\t\t\tstring = string[ k2 ] || '';\n\t\t}\n\n\t\t// return\n\t\treturn string;\n\t};\n\n\t_acf.get_selector = function ( s ) {\n\t\t// vars\n\t\tvar selector = '.acf-field';\n\n\t\t// bail early if no search\n\t\tif ( ! s ) {\n\t\t\treturn selector;\n\t\t}\n\n\t\t// compatibility with object\n\t\tif ( $.isPlainObject( s ) ) {\n\t\t\tif ( $.isEmptyObject( s ) ) {\n\t\t\t\treturn selector;\n\t\t\t} else {\n\t\t\t\tfor ( var k in s ) {\n\t\t\t\t\ts = s[ k ];\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// append\n\t\tselector += '-' + s;\n\n\t\t// replace underscores (split/join replaces all and is faster than regex!)\n\t\tselector = acf.strReplace( '_', '-', selector );\n\n\t\t// remove potential double up\n\t\tselector = acf.strReplace( 'field-field-', 'field-', selector );\n\n\t\t// return\n\t\treturn selector;\n\t};\n\n\t_acf.get_fields = function ( s, $el, all ) {\n\t\t// args\n\t\tvar args = {\n\t\t\tis: s || '',\n\t\t\tparent: $el || false,\n\t\t\tsuppressFilters: all || false,\n\t\t};\n\n\t\t// change 'field_123' to '.acf-field-123'\n\t\tif ( args.is ) {\n\t\t\targs.is = this.get_selector( args.is );\n\t\t}\n\n\t\t// return\n\t\treturn acf.findFields( args );\n\t};\n\n\t_acf.get_field = function ( s, $el ) {\n\t\t// get fields\n\t\tvar $fields = this.get_fields.apply( this, arguments );\n\n\t\t// return\n\t\tif ( $fields.length ) {\n\t\t\treturn $fields.first();\n\t\t} else {\n\t\t\treturn false;\n\t\t}\n\t};\n\n\t_acf.get_closest_field = function ( $el, s ) {\n\t\treturn $el.closest( this.get_selector( s ) );\n\t};\n\n\t_acf.get_field_wrap = function ( $el ) {\n\t\treturn $el.closest( this.get_selector() );\n\t};\n\n\t_acf.get_field_key = function ( $field ) {\n\t\treturn $field.data( 'key' );\n\t};\n\n\t_acf.get_field_type = function ( $field ) {\n\t\treturn $field.data( 'type' );\n\t};\n\n\t_acf.get_data = function ( $el, defaults ) {\n\t\treturn acf.parseArgs( $el.data(), defaults );\n\t};\n\n\t_acf.maybe_get = function ( obj, key, value ) {\n\t\t// default\n\t\tif ( value === undefined ) {\n\t\t\tvalue = null;\n\t\t}\n\n\t\t// get keys\n\t\tkeys = String( key ).split( '.' );\n\n\t\t// acf.isget\n\t\tfor ( var i = 0; i < keys.length; i++ ) {\n\t\t\tif ( ! obj.hasOwnProperty( keys[ i ] ) ) {\n\t\t\t\treturn value;\n\t\t\t}\n\t\t\tobj = obj[ keys[ i ] ];\n\t\t}\n\t\treturn obj;\n\t};\n\n\t/**\n\t * hooks\n\t *\n\t * Modify add_action and add_filter functions to add compatibility with changed $field parameter\n\t * Using the acf.add_action() or acf.add_filter() functions will interpret new field parameters as jQuery $field\n\t *\n\t * @date\t12/5/18\n\t * @since\t5.6.9\n\t *\n\t * @param\tvoid\n\t * @return\tvoid\n\t */\n\n\tvar compatibleArgument = function ( arg ) {\n\t\treturn arg instanceof acf.Field ? arg.$el : arg;\n\t};\n\n\tvar compatibleArguments = function ( args ) {\n\t\treturn acf.arrayArgs( args ).map( compatibleArgument );\n\t};\n\n\tvar compatibleCallback = function ( origCallback ) {\n\t\treturn function () {\n\t\t\t// convert to compatible arguments\n\t\t\tif ( arguments.length ) {\n\t\t\t\tvar args = compatibleArguments( arguments );\n\n\t\t\t\t// add default argument for 'ready', 'append' and 'load' events\n\t\t\t} else {\n\t\t\t\tvar args = [ $( document ) ];\n\t\t\t}\n\n\t\t\t// return\n\t\t\treturn origCallback.apply( this, args );\n\t\t};\n\t};\n\n\t_acf.add_action = function ( action, callback, priority, context ) {\n\t\t// handle multiple actions\n\t\tvar actions = action.split( ' ' );\n\t\tvar length = actions.length;\n\t\tif ( length > 1 ) {\n\t\t\tfor ( var i = 0; i < length; i++ ) {\n\t\t\t\taction = actions[ i ];\n\t\t\t\t_acf.add_action.apply( this, arguments );\n\t\t\t}\n\t\t\treturn this;\n\t\t}\n\n\t\t// single\n\t\tvar callback = compatibleCallback( callback );\n\t\treturn acf.addAction.apply( this, arguments );\n\t};\n\n\t_acf.add_filter = function ( action, callback, priority, context ) {\n\t\tvar callback = compatibleCallback( callback );\n\t\treturn acf.addFilter.apply( this, arguments );\n\t};\n\n\t/*\n\t * acf.model\n\t *\n\t * This model acts as a scafold for action.event driven modules\n\t *\n\t * @type\tobject\n\t * @date\t8/09/2014\n\t * @since\t5.0.0\n\t *\n\t * @param\t(object)\n\t * @return\t(object)\n\t */\n\n\t_acf.model = {\n\t\tactions: {},\n\t\tfilters: {},\n\t\tevents: {},\n\t\textend: function ( args ) {\n\t\t\t// extend\n\t\t\tvar model = $.extend( {}, this, args );\n\n\t\t\t// setup actions\n\t\t\t$.each( model.actions, function ( name, callback ) {\n\t\t\t\tmodel._add_action( name, callback );\n\t\t\t} );\n\n\t\t\t// setup filters\n\t\t\t$.each( model.filters, function ( name, callback ) {\n\t\t\t\tmodel._add_filter( name, callback );\n\t\t\t} );\n\n\t\t\t// setup events\n\t\t\t$.each( model.events, function ( name, callback ) {\n\t\t\t\tmodel._add_event( name, callback );\n\t\t\t} );\n\n\t\t\t// return\n\t\t\treturn model;\n\t\t},\n\n\t\t_add_action: function ( name, callback ) {\n\t\t\t// split\n\t\t\tvar model = this,\n\t\t\t\tdata = name.split( ' ' );\n\n\t\t\t// add missing priority\n\t\t\tvar name = data[ 0 ] || '',\n\t\t\t\tpriority = data[ 1 ] || 10;\n\n\t\t\t// add action\n\t\t\tacf.add_action( name, model[ callback ], priority, model );\n\t\t},\n\n\t\t_add_filter: function ( name, callback ) {\n\t\t\t// split\n\t\t\tvar model = this,\n\t\t\t\tdata = name.split( ' ' );\n\n\t\t\t// add missing priority\n\t\t\tvar name = data[ 0 ] || '',\n\t\t\t\tpriority = data[ 1 ] || 10;\n\n\t\t\t// add action\n\t\t\tacf.add_filter( name, model[ callback ], priority, model );\n\t\t},\n\n\t\t_add_event: function ( name, callback ) {\n\t\t\t// vars\n\t\t\tvar model = this,\n\t\t\t\ti = name.indexOf( ' ' ),\n\t\t\t\tevent = i > 0 ? name.substr( 0, i ) : name,\n\t\t\t\tselector = i > 0 ? name.substr( i + 1 ) : '';\n\n\t\t\t// event\n\t\t\tvar fn = function ( e ) {\n\t\t\t\t// append $el to event object\n\t\t\t\te.$el = $( this );\n\n\t\t\t\t// append $field to event object (used in field group)\n\t\t\t\tif ( acf.field_group ) {\n\t\t\t\t\te.$field = e.$el.closest( '.acf-field-object' );\n\t\t\t\t}\n\n\t\t\t\t// event\n\t\t\t\tif ( typeof model.event === 'function' ) {\n\t\t\t\t\te = model.event( e );\n\t\t\t\t}\n\n\t\t\t\t// callback\n\t\t\t\tmodel[ callback ].apply( model, arguments );\n\t\t\t};\n\n\t\t\t// add event\n\t\t\tif ( selector ) {\n\t\t\t\t$( document ).on( event, selector, fn );\n\t\t\t} else {\n\t\t\t\t$( document ).on( event, fn );\n\t\t\t}\n\t\t},\n\n\t\tget: function ( name, value ) {\n\t\t\t// defaults\n\t\t\tvalue = value || null;\n\n\t\t\t// get\n\t\t\tif ( typeof this[ name ] !== 'undefined' ) {\n\t\t\t\tvalue = this[ name ];\n\t\t\t}\n\n\t\t\t// return\n\t\t\treturn value;\n\t\t},\n\n\t\tset: function ( name, value ) {\n\t\t\t// set\n\t\t\tthis[ name ] = value;\n\n\t\t\t// function for 3rd party\n\t\t\tif ( typeof this[ '_set_' + name ] === 'function' ) {\n\t\t\t\tthis[ '_set_' + name ].apply( this );\n\t\t\t}\n\n\t\t\t// return for chaining\n\t\t\treturn this;\n\t\t},\n\t};\n\n\t/*\n\t * field\n\t *\n\t * This model sets up many of the field's interactions\n\t *\n\t * @type\tfunction\n\t * @date\t21/02/2014\n\t * @since\t3.5.1\n\t *\n\t * @param\tn/a\n\t * @return\tn/a\n\t */\n\n\t_acf.field = acf.model.extend( {\n\t\ttype: '',\n\t\to: {},\n\t\t$field: null,\n\t\t_add_action: function ( name, callback ) {\n\t\t\t// vars\n\t\t\tvar model = this;\n\n\t\t\t// update name\n\t\t\tname = name + '_field/type=' + model.type;\n\n\t\t\t// add action\n\t\t\tacf.add_action( name, function ( $field ) {\n\t\t\t\t// focus\n\t\t\t\tmodel.set( '$field', $field );\n\n\t\t\t\t// callback\n\t\t\t\tmodel[ callback ].apply( model, arguments );\n\t\t\t} );\n\t\t},\n\n\t\t_add_filter: function ( name, callback ) {\n\t\t\t// vars\n\t\t\tvar model = this;\n\n\t\t\t// update name\n\t\t\tname = name + '_field/type=' + model.type;\n\n\t\t\t// add action\n\t\t\tacf.add_filter( name, function ( $field ) {\n\t\t\t\t// focus\n\t\t\t\tmodel.set( '$field', $field );\n\n\t\t\t\t// callback\n\t\t\t\tmodel[ callback ].apply( model, arguments );\n\t\t\t} );\n\t\t},\n\n\t\t_add_event: function ( name, callback ) {\n\t\t\t// vars\n\t\t\tvar model = this,\n\t\t\t\tevent = name.substr( 0, name.indexOf( ' ' ) ),\n\t\t\t\tselector = name.substr( name.indexOf( ' ' ) + 1 ),\n\t\t\t\tcontext = acf.get_selector( model.type );\n\n\t\t\t// add event\n\t\t\t$( document ).on( event, context + ' ' + selector, function ( e ) {\n\t\t\t\t// vars\n\t\t\t\tvar $el = $( this );\n\t\t\t\tvar $field = acf.get_closest_field( $el, model.type );\n\n\t\t\t\t// bail early if no field\n\t\t\t\tif ( ! $field.length ) return;\n\n\t\t\t\t// focus\n\t\t\t\tif ( ! $field.is( model.$field ) ) {\n\t\t\t\t\tmodel.set( '$field', $field );\n\t\t\t\t}\n\n\t\t\t\t// append to event\n\t\t\t\te.$el = $el;\n\t\t\t\te.$field = $field;\n\n\t\t\t\t// callback\n\t\t\t\tmodel[ callback ].apply( model, [ e ] );\n\t\t\t} );\n\t\t},\n\n\t\t_set_$field: function () {\n\t\t\t// callback\n\t\t\tif ( typeof this.focus === 'function' ) {\n\t\t\t\tthis.focus();\n\t\t\t}\n\t\t},\n\n\t\t// depreciated\n\t\tdoFocus: function ( $field ) {\n\t\t\treturn this.set( '$field', $field );\n\t\t},\n\t} );\n\n\t/**\n\t * validation\n\t *\n\t * description\n\t *\n\t * @date\t15/2/18\n\t * @since\t5.6.9\n\t *\n\t * @param\ttype $var Description. Default.\n\t * @return\ttype Description.\n\t */\n\n\tvar _validation = acf.newCompatibility( acf.validation, {\n\t\tremove_error: function ( $field ) {\n\t\t\tacf.getField( $field ).removeError();\n\t\t},\n\t\tadd_warning: function ( $field, message ) {\n\t\t\tacf.getField( $field ).showNotice( {\n\t\t\t\ttext: message,\n\t\t\t\ttype: 'warning',\n\t\t\t\ttimeout: 1000,\n\t\t\t} );\n\t\t},\n\t\tfetch: acf.validateForm,\n\t\tenableSubmit: acf.enableSubmit,\n\t\tdisableSubmit: acf.disableSubmit,\n\t\tshowSpinner: acf.showSpinner,\n\t\thideSpinner: acf.hideSpinner,\n\t\tunlockForm: acf.unlockForm,\n\t\tlockForm: acf.lockForm,\n\t} );\n\n\t/**\n\t * tooltip\n\t *\n\t * description\n\t *\n\t * @date\t15/2/18\n\t * @since\t5.6.9\n\t *\n\t * @param\ttype $var Description. Default.\n\t * @return\ttype Description.\n\t */\n\n\t_acf.tooltip = {\n\t\ttooltip: function ( text, $el ) {\n\t\t\tvar tooltip = acf.newTooltip( {\n\t\t\t\ttext: text,\n\t\t\t\ttarget: $el,\n\t\t\t} );\n\n\t\t\t// return\n\t\t\treturn tooltip.$el;\n\t\t},\n\n\t\ttemp: function ( text, $el ) {\n\t\t\tvar tooltip = acf.newTooltip( {\n\t\t\t\ttext: text,\n\t\t\t\ttarget: $el,\n\t\t\t\ttimeout: 250,\n\t\t\t} );\n\t\t},\n\n\t\tconfirm: function ( $el, callback, text, button_y, button_n ) {\n\t\t\tvar tooltip = acf.newTooltip( {\n\t\t\t\tconfirm: true,\n\t\t\t\ttext: text,\n\t\t\t\ttarget: $el,\n\t\t\t\tconfirm: function () {\n\t\t\t\t\tcallback( true );\n\t\t\t\t},\n\t\t\t\tcancel: function () {\n\t\t\t\t\tcallback( false );\n\t\t\t\t},\n\t\t\t} );\n\t\t},\n\n\t\tconfirm_remove: function ( $el, callback ) {\n\t\t\tvar tooltip = acf.newTooltip( {\n\t\t\t\tconfirmRemove: true,\n\t\t\t\ttarget: $el,\n\t\t\t\tconfirm: function () {\n\t\t\t\t\tcallback( true );\n\t\t\t\t},\n\t\t\t\tcancel: function () {\n\t\t\t\t\tcallback( false );\n\t\t\t\t},\n\t\t\t} );\n\t\t},\n\t};\n\n\t/**\n\t * tooltip\n\t *\n\t * description\n\t *\n\t * @date\t15/2/18\n\t * @since\t5.6.9\n\t *\n\t * @param\ttype $var Description. Default.\n\t * @return\ttype Description.\n\t */\n\n\t_acf.media = new acf.Model( {\n\t\tactiveFrame: false,\n\t\tactions: {\n\t\t\tnew_media_popup: 'onNewMediaPopup',\n\t\t},\n\n\t\tframe: function () {\n\t\t\treturn this.activeFrame;\n\t\t},\n\n\t\tonNewMediaPopup: function ( popup ) {\n\t\t\tthis.activeFrame = popup.frame;\n\t\t},\n\n\t\tpopup: function ( props ) {\n\t\t\t// update props\n\t\t\tif ( props.mime_types ) {\n\t\t\t\tprops.allowedTypes = props.mime_types;\n\t\t\t}\n\t\t\tif ( props.id ) {\n\t\t\t\tprops.attachment = props.id;\n\t\t\t}\n\n\t\t\t// new\n\t\t\tvar popup = acf.newMediaPopup( props );\n\n\t\t\t// append\n\t\t\t/*\n\t\t\tif( props.selected ) {\n\t\t\t\tpopup.selected = props.selected;\n\t\t\t}\n*/\n\n\t\t\t// return\n\t\t\treturn popup.frame;\n\t\t},\n\t} );\n\n\t/**\n\t * Select2\n\t *\n\t * description\n\t *\n\t * @date\t11/6/18\n\t * @since\t5.6.9\n\t *\n\t * @param\ttype $var Description. Default.\n\t * @return\ttype Description.\n\t */\n\n\t_acf.select2 = {\n\t\tinit: function ( $select, args, $field ) {\n\t\t\t// compatible args\n\t\t\tif ( args.allow_null ) {\n\t\t\t\targs.allowNull = args.allow_null;\n\t\t\t}\n\t\t\tif ( args.ajax_action ) {\n\t\t\t\targs.ajaxAction = args.ajax_action;\n\t\t\t}\n\t\t\tif ( $field ) {\n\t\t\t\targs.field = acf.getField( $field );\n\t\t\t}\n\n\t\t\t// return\n\t\t\treturn acf.newSelect2( $select, args );\n\t\t},\n\n\t\tdestroy: function ( $select ) {\n\t\t\treturn acf.getInstance( $select ).destroy();\n\t\t},\n\t};\n\n\t/**\n\t * postbox\n\t *\n\t * description\n\t *\n\t * @date\t11/6/18\n\t * @since\t5.6.9\n\t *\n\t * @param\ttype $var Description. Default.\n\t * @return\ttype Description.\n\t */\n\n\t_acf.postbox = {\n\t\trender: function ( args ) {\n\t\t\t// compatible args\n\t\t\tif ( args.edit_url ) {\n\t\t\t\targs.editLink = args.edit_url;\n\t\t\t}\n\t\t\tif ( args.edit_title ) {\n\t\t\t\targs.editTitle = args.edit_title;\n\t\t\t}\n\n\t\t\t// return\n\t\t\treturn acf.newPostbox( args );\n\t\t},\n\t};\n\n\t/**\n\t * acf.screen\n\t *\n\t * description\n\t *\n\t * @date\t11/6/18\n\t * @since\t5.6.9\n\t *\n\t * @param\ttype $var Description. Default.\n\t * @return\ttype Description.\n\t */\n\n\tacf.newCompatibility( acf.screen, {\n\t\tupdate: function () {\n\t\t\treturn this.set.apply( this, arguments );\n\t\t},\n\t\tfetch: acf.screen.check,\n\t} );\n\t_acf.ajax = acf.screen;\n} )( jQuery );\n","( function ( $, undefined ) {\n\tvar __ = acf.__;\n\n\tvar parseString = function ( val ) {\n\t\treturn val ? '' + val : '';\n\t};\n\n\tvar isEqualTo = function ( v1, v2 ) {\n\t\treturn (\n\t\t\tparseString( v1 ).toLowerCase() === parseString( v2 ).toLowerCase()\n\t\t);\n\t};\n\n\tvar isEqualToNumber = function ( v1, v2 ) {\n\t\treturn parseFloat( v1 ) === parseFloat( v2 );\n\t};\n\n\tvar isGreaterThan = function ( v1, v2 ) {\n\t\treturn parseFloat( v1 ) > parseFloat( v2 );\n\t};\n\n\tvar isLessThan = function ( v1, v2 ) {\n\t\treturn parseFloat( v1 ) < parseFloat( v2 );\n\t};\n\n\tvar inArray = function ( v1, array ) {\n\t\t// cast all values as string\n\t\tarray = array.map( function ( v2 ) {\n\t\t\treturn parseString( v2 );\n\t\t} );\n\n\t\treturn array.indexOf( v1 ) > -1;\n\t};\n\n\tvar containsString = function ( haystack, needle ) {\n\t\treturn parseString( haystack ).indexOf( parseString( needle ) ) > -1;\n\t};\n\n\tvar matchesPattern = function ( v1, pattern ) {\n\t\tvar regexp = new RegExp( parseString( pattern ), 'gi' );\n\t\treturn parseString( v1 ).match( regexp );\n\t};\n\n\t/**\n\t * hasValue\n\t *\n\t * description\n\t *\n\t * @date\t1/2/18\n\t * @since\t5.6.5\n\t *\n\t * @param\tvoid\n\t * @return\tvoid\n\t */\n\n\tvar HasValue = acf.Condition.extend( {\n\t\ttype: 'hasValue',\n\t\toperator: '!=empty',\n\t\tlabel: __( 'Has any value' ),\n\t\tfieldTypes: [\n\t\t\t'text',\n\t\t\t'textarea',\n\t\t\t'number',\n\t\t\t'range',\n\t\t\t'email',\n\t\t\t'url',\n\t\t\t'password',\n\t\t\t'image',\n\t\t\t'file',\n\t\t\t'wysiwyg',\n\t\t\t'oembed',\n\t\t\t'select',\n\t\t\t'checkbox',\n\t\t\t'radio',\n\t\t\t'button_group',\n\t\t\t'link',\n\t\t\t'post_object',\n\t\t\t'page_link',\n\t\t\t'relationship',\n\t\t\t'taxonomy',\n\t\t\t'user',\n\t\t\t'google_map',\n\t\t\t'date_picker',\n\t\t\t'date_time_picker',\n\t\t\t'time_picker',\n\t\t\t'color_picker',\n\t\t],\n\t\tmatch: function ( rule, field ) {\n\t\t\tlet val = field.val();\n\t\t\tif ( val instanceof Array ) {\n\t\t\t\tval = val.length;\n\t\t\t}\n\t\t\treturn val ? true : false;\n\t\t},\n\t\tchoices: function ( fieldObject ) {\n\t\t\treturn '';\n\t\t},\n\t} );\n\n\tacf.registerConditionType( HasValue );\n\n\t/**\n\t * hasValue\n\t *\n\t * description\n\t *\n\t * @date\t1/2/18\n\t * @since\t5.6.5\n\t *\n\t * @param\tvoid\n\t * @return\tvoid\n\t */\n\n\tvar HasNoValue = HasValue.extend( {\n\t\ttype: 'hasNoValue',\n\t\toperator: '==empty',\n\t\tlabel: __( 'Has no value' ),\n\t\tmatch: function ( rule, field ) {\n\t\t\treturn ! HasValue.prototype.match.apply( this, arguments );\n\t\t},\n\t} );\n\n\tacf.registerConditionType( HasNoValue );\n\n\t/**\n\t * EqualTo\n\t *\n\t * description\n\t *\n\t * @date\t1/2/18\n\t * @since\t5.6.5\n\t *\n\t * @param\tvoid\n\t * @return\tvoid\n\t */\n\n\tvar EqualTo = acf.Condition.extend( {\n\t\ttype: 'equalTo',\n\t\toperator: '==',\n\t\tlabel: __( 'Value is equal to' ),\n\t\tfieldTypes: [\n\t\t\t'text',\n\t\t\t'textarea',\n\t\t\t'number',\n\t\t\t'range',\n\t\t\t'email',\n\t\t\t'url',\n\t\t\t'password',\n\t\t],\n\t\tmatch: function ( rule, field ) {\n\t\t\tif ( acf.isNumeric( rule.value ) ) {\n\t\t\t\treturn isEqualToNumber( rule.value, field.val() );\n\t\t\t} else {\n\t\t\t\treturn isEqualTo( rule.value, field.val() );\n\t\t\t}\n\t\t},\n\t\tchoices: function ( fieldObject ) {\n\t\t\treturn '';\n\t\t},\n\t} );\n\n\tacf.registerConditionType( EqualTo );\n\n\t/**\n\t * NotEqualTo\n\t *\n\t * description\n\t *\n\t * @date\t1/2/18\n\t * @since\t5.6.5\n\t *\n\t * @param\tvoid\n\t * @return\tvoid\n\t */\n\n\tvar NotEqualTo = EqualTo.extend( {\n\t\ttype: 'notEqualTo',\n\t\toperator: '!=',\n\t\tlabel: __( 'Value is not equal to' ),\n\t\tmatch: function ( rule, field ) {\n\t\t\treturn ! EqualTo.prototype.match.apply( this, arguments );\n\t\t},\n\t} );\n\n\tacf.registerConditionType( NotEqualTo );\n\n\t/**\n\t * PatternMatch\n\t *\n\t * description\n\t *\n\t * @date\t1/2/18\n\t * @since\t5.6.5\n\t *\n\t * @param\tvoid\n\t * @return\tvoid\n\t */\n\n\tvar PatternMatch = acf.Condition.extend( {\n\t\ttype: 'patternMatch',\n\t\toperator: '==pattern',\n\t\tlabel: __( 'Value matches pattern' ),\n\t\tfieldTypes: [\n\t\t\t'text',\n\t\t\t'textarea',\n\t\t\t'email',\n\t\t\t'url',\n\t\t\t'password',\n\t\t\t'wysiwyg',\n\t\t],\n\t\tmatch: function ( rule, field ) {\n\t\t\treturn matchesPattern( field.val(), rule.value );\n\t\t},\n\t\tchoices: function ( fieldObject ) {\n\t\t\treturn '';\n\t\t},\n\t} );\n\n\tacf.registerConditionType( PatternMatch );\n\n\t/**\n\t * Contains\n\t *\n\t * description\n\t *\n\t * @date\t1/2/18\n\t * @since\t5.6.5\n\t *\n\t * @param\tvoid\n\t * @return\tvoid\n\t */\n\n\tvar Contains = acf.Condition.extend( {\n\t\ttype: 'contains',\n\t\toperator: '==contains',\n\t\tlabel: __( 'Value contains' ),\n\t\tfieldTypes: [\n\t\t\t'text',\n\t\t\t'textarea',\n\t\t\t'number',\n\t\t\t'email',\n\t\t\t'url',\n\t\t\t'password',\n\t\t\t'wysiwyg',\n\t\t\t'oembed',\n\t\t\t'select',\n\t\t],\n\t\tmatch: function ( rule, field ) {\n\t\t\treturn containsString( field.val(), rule.value );\n\t\t},\n\t\tchoices: function ( fieldObject ) {\n\t\t\treturn '';\n\t\t},\n\t} );\n\n\tacf.registerConditionType( Contains );\n\n\t/**\n\t * TrueFalseEqualTo\n\t *\n\t * description\n\t *\n\t * @date\t1/2/18\n\t * @since\t5.6.5\n\t *\n\t * @param\tvoid\n\t * @return\tvoid\n\t */\n\n\tvar TrueFalseEqualTo = EqualTo.extend( {\n\t\ttype: 'trueFalseEqualTo',\n\t\tchoiceType: 'select',\n\t\tfieldTypes: [ 'true_false' ],\n\t\tchoices: function ( field ) {\n\t\t\treturn [\n\t\t\t\t{\n\t\t\t\t\tid: 1,\n\t\t\t\t\ttext: __( 'Checked' ),\n\t\t\t\t},\n\t\t\t];\n\t\t},\n\t} );\n\n\tacf.registerConditionType( TrueFalseEqualTo );\n\n\t/**\n\t * TrueFalseNotEqualTo\n\t *\n\t * description\n\t *\n\t * @date\t1/2/18\n\t * @since\t5.6.5\n\t *\n\t * @param\tvoid\n\t * @return\tvoid\n\t */\n\n\tvar TrueFalseNotEqualTo = NotEqualTo.extend( {\n\t\ttype: 'trueFalseNotEqualTo',\n\t\tchoiceType: 'select',\n\t\tfieldTypes: [ 'true_false' ],\n\t\tchoices: function ( field ) {\n\t\t\treturn [\n\t\t\t\t{\n\t\t\t\t\tid: 1,\n\t\t\t\t\ttext: __( 'Checked' ),\n\t\t\t\t},\n\t\t\t];\n\t\t},\n\t} );\n\n\tacf.registerConditionType( TrueFalseNotEqualTo );\n\n\t/**\n\t * SelectEqualTo\n\t *\n\t * description\n\t *\n\t * @date\t1/2/18\n\t * @since\t5.6.5\n\t *\n\t * @param\tvoid\n\t * @return\tvoid\n\t */\n\n\tvar SelectEqualTo = acf.Condition.extend( {\n\t\ttype: 'selectEqualTo',\n\t\toperator: '==',\n\t\tlabel: __( 'Value is equal to' ),\n\t\tfieldTypes: [ 'select', 'checkbox', 'radio', 'button_group' ],\n\t\tmatch: function ( rule, field ) {\n\t\t\tvar val = field.val();\n\t\t\tif ( val instanceof Array ) {\n\t\t\t\treturn inArray( rule.value, val );\n\t\t\t} else {\n\t\t\t\treturn isEqualTo( rule.value, val );\n\t\t\t}\n\t\t},\n\t\tchoices: function ( fieldObject ) {\n\t\t\t// vars\n\t\t\tvar choices = [];\n\t\t\tvar lines = fieldObject\n\t\t\t\t.$setting( 'choices textarea' )\n\t\t\t\t.val()\n\t\t\t\t.split( '\\n' );\n\n\t\t\t// allow null\n\t\t\tif ( fieldObject.$input( 'allow_null' ).prop( 'checked' ) ) {\n\t\t\t\tchoices.push( {\n\t\t\t\t\tid: '',\n\t\t\t\t\ttext: __( 'Null' ),\n\t\t\t\t} );\n\t\t\t}\n\n\t\t\t// loop\n\t\t\tlines.map( function ( line ) {\n\t\t\t\t// split\n\t\t\t\tline = line.split( ':' );\n\n\t\t\t\t// default label to value\n\t\t\t\tline[ 1 ] = line[ 1 ] || line[ 0 ];\n\n\t\t\t\t// append\n\t\t\t\tchoices.push( {\n\t\t\t\t\tid: line[ 0 ].trim(),\n\t\t\t\t\ttext: line[ 1 ].trim(),\n\t\t\t\t} );\n\t\t\t} );\n\n\t\t\t// return\n\t\t\treturn choices;\n\t\t},\n\t} );\n\n\tacf.registerConditionType( SelectEqualTo );\n\n\t/**\n\t * SelectNotEqualTo\n\t *\n\t * description\n\t *\n\t * @date\t1/2/18\n\t * @since\t5.6.5\n\t *\n\t * @param\tvoid\n\t * @return\tvoid\n\t */\n\n\tvar SelectNotEqualTo = SelectEqualTo.extend( {\n\t\ttype: 'selectNotEqualTo',\n\t\toperator: '!=',\n\t\tlabel: __( 'Value is not equal to' ),\n\t\tmatch: function ( rule, field ) {\n\t\t\treturn ! SelectEqualTo.prototype.match.apply( this, arguments );\n\t\t},\n\t} );\n\n\tacf.registerConditionType( SelectNotEqualTo );\n\n\t/**\n\t * GreaterThan\n\t *\n\t * description\n\t *\n\t * @date\t1/2/18\n\t * @since\t5.6.5\n\t *\n\t * @param\tvoid\n\t * @return\tvoid\n\t */\n\n\tvar GreaterThan = acf.Condition.extend( {\n\t\ttype: 'greaterThan',\n\t\toperator: '>',\n\t\tlabel: __( 'Value is greater than' ),\n\t\tfieldTypes: [ 'number', 'range' ],\n\t\tmatch: function ( rule, field ) {\n\t\t\tvar val = field.val();\n\t\t\tif ( val instanceof Array ) {\n\t\t\t\tval = val.length;\n\t\t\t}\n\t\t\treturn isGreaterThan( val, rule.value );\n\t\t},\n\t\tchoices: function ( fieldObject ) {\n\t\t\treturn '';\n\t\t},\n\t} );\n\n\tacf.registerConditionType( GreaterThan );\n\n\t/**\n\t * LessThan\n\t *\n\t * description\n\t *\n\t * @date\t1/2/18\n\t * @since\t5.6.5\n\t *\n\t * @param\tvoid\n\t * @return\tvoid\n\t */\n\n\tvar LessThan = GreaterThan.extend( {\n\t\ttype: 'lessThan',\n\t\toperator: '<',\n\t\tlabel: __( 'Value is less than' ),\n\t\tmatch: function ( rule, field ) {\n\t\t\tvar val = field.val();\n\t\t\tif ( val instanceof Array ) {\n\t\t\t\tval = val.length;\n\t\t\t}\n\t\t\tif ( val === undefined || val === null || val === false ) {\n\t\t\t\treturn true;\n\t\t\t}\n\t\t\treturn isLessThan( val, rule.value );\n\t\t},\n\t\tchoices: function ( fieldObject ) {\n\t\t\treturn '';\n\t\t},\n\t} );\n\n\tacf.registerConditionType( LessThan );\n\n\t/**\n\t * SelectedGreaterThan\n\t *\n\t * description\n\t *\n\t * @date\t1/2/18\n\t * @since\t5.6.5\n\t *\n\t * @param\tvoid\n\t * @return\tvoid\n\t */\n\n\tvar SelectionGreaterThan = GreaterThan.extend( {\n\t\ttype: 'selectionGreaterThan',\n\t\tlabel: __( 'Selection is greater than' ),\n\t\tfieldTypes: [\n\t\t\t'checkbox',\n\t\t\t'select',\n\t\t\t'post_object',\n\t\t\t'page_link',\n\t\t\t'relationship',\n\t\t\t'taxonomy',\n\t\t\t'user',\n\t\t],\n\t} );\n\n\tacf.registerConditionType( SelectionGreaterThan );\n\n\t/**\n\t * SelectedGreaterThan\n\t *\n\t * description\n\t *\n\t * @date\t1/2/18\n\t * @since\t5.6.5\n\t *\n\t * @param\tvoid\n\t * @return\tvoid\n\t */\n\n\tvar SelectionLessThan = LessThan.extend( {\n\t\ttype: 'selectionLessThan',\n\t\tlabel: __( 'Selection is less than' ),\n\t\tfieldTypes: [\n\t\t\t'checkbox',\n\t\t\t'select',\n\t\t\t'post_object',\n\t\t\t'page_link',\n\t\t\t'relationship',\n\t\t\t'taxonomy',\n\t\t\t'user',\n\t\t],\n\t} );\n\n\tacf.registerConditionType( SelectionLessThan );\n} )( jQuery );\n","( function ( $, undefined ) {\n\t// vars\n\tvar storage = [];\n\n\t/**\n\t * acf.Condition\n\t *\n\t * description\n\t *\n\t * @date\t23/3/18\n\t * @since\t5.6.9\n\t *\n\t * @param\ttype $var Description. Default.\n\t * @return\ttype Description.\n\t */\n\n\tacf.Condition = acf.Model.extend( {\n\t\ttype: '', // used for model name\n\t\toperator: '==', // rule operator\n\t\tlabel: '', // label shown when editing fields\n\t\tchoiceType: 'input', // input, select\n\t\tfieldTypes: [], // auto connect this conditions with these field types\n\n\t\tdata: {\n\t\t\tconditions: false, // the parent instance\n\t\t\tfield: false, // the field which we query against\n\t\t\trule: {}, // the rule [field, operator, value]\n\t\t},\n\n\t\tevents: {\n\t\t\tchange: 'change',\n\t\t\tkeyup: 'change',\n\t\t\tenableField: 'change',\n\t\t\tdisableField: 'change',\n\t\t},\n\n\t\tsetup: function ( props ) {\n\t\t\t$.extend( this.data, props );\n\t\t},\n\n\t\tgetEventTarget: function ( $el, event ) {\n\t\t\treturn $el || this.get( 'field' ).$el;\n\t\t},\n\n\t\tchange: function ( e, $el ) {\n\t\t\tthis.get( 'conditions' ).change( e );\n\t\t},\n\n\t\tmatch: function ( rule, field ) {\n\t\t\treturn false;\n\t\t},\n\n\t\tcalculate: function () {\n\t\t\treturn this.match( this.get( 'rule' ), this.get( 'field' ) );\n\t\t},\n\n\t\tchoices: function ( field ) {\n\t\t\treturn '';\n\t\t},\n\t} );\n\n\t/**\n\t * acf.newCondition\n\t *\n\t * description\n\t *\n\t * @date\t1/2/18\n\t * @since\t5.6.5\n\t *\n\t * @param\ttype $var Description. Default.\n\t * @return\ttype Description.\n\t */\n\n\tacf.newCondition = function ( rule, conditions ) {\n\t\t// currently setting up conditions for fieldX, this field is the 'target'\n\t\tvar target = conditions.get( 'field' );\n\n\t\t// use the 'target' to find the 'trigger' field.\n\t\t// - this field is used to setup the conditional logic events\n\t\tvar field = target.getField( rule.field );\n\n\t\t// bail early if no target or no field (possible if field doesn't exist due to HTML error)\n\t\tif ( ! target || ! field ) {\n\t\t\treturn false;\n\t\t}\n\n\t\t// vars\n\t\tvar args = {\n\t\t\trule: rule,\n\t\t\ttarget: target,\n\t\t\tconditions: conditions,\n\t\t\tfield: field,\n\t\t};\n\n\t\t// vars\n\t\tvar fieldType = field.get( 'type' );\n\t\tvar operator = rule.operator;\n\n\t\t// get avaibale conditions\n\t\tvar conditionTypes = acf.getConditionTypes( {\n\t\t\tfieldType: fieldType,\n\t\t\toperator: operator,\n\t\t} );\n\n\t\t// instantiate\n\t\tvar model = conditionTypes[ 0 ] || acf.Condition;\n\n\t\t// instantiate\n\t\tvar condition = new model( args );\n\n\t\t// return\n\t\treturn condition;\n\t};\n\n\t/**\n\t * mid\n\t *\n\t * Calculates the model ID for a field type\n\t *\n\t * @date\t15/12/17\n\t * @since\t5.6.5\n\t *\n\t * @param\tstring type\n\t * @return\tstring\n\t */\n\n\tvar modelId = function ( type ) {\n\t\treturn acf.strPascalCase( type || '' ) + 'Condition';\n\t};\n\n\t/**\n\t * acf.registerConditionType\n\t *\n\t * description\n\t *\n\t * @date\t1/2/18\n\t * @since\t5.6.5\n\t *\n\t * @param\ttype $var Description. Default.\n\t * @return\ttype Description.\n\t */\n\n\tacf.registerConditionType = function ( model ) {\n\t\t// vars\n\t\tvar proto = model.prototype;\n\t\tvar type = proto.type;\n\t\tvar mid = modelId( type );\n\n\t\t// store model\n\t\tacf.models[ mid ] = model;\n\n\t\t// store reference\n\t\tstorage.push( type );\n\t};\n\n\t/**\n\t * acf.getConditionType\n\t *\n\t * description\n\t *\n\t * @date\t1/2/18\n\t * @since\t5.6.5\n\t *\n\t * @param\ttype $var Description. Default.\n\t * @return\ttype Description.\n\t */\n\n\tacf.getConditionType = function ( type ) {\n\t\tvar mid = modelId( type );\n\t\treturn acf.models[ mid ] || false;\n\t};\n\n\t/**\n\t * acf.registerConditionForFieldType\n\t *\n\t * description\n\t *\n\t * @date\t1/2/18\n\t * @since\t5.6.5\n\t *\n\t * @param\ttype $var Description. Default.\n\t * @return\ttype Description.\n\t */\n\n\tacf.registerConditionForFieldType = function ( conditionType, fieldType ) {\n\t\t// get model\n\t\tvar model = acf.getConditionType( conditionType );\n\n\t\t// append\n\t\tif ( model ) {\n\t\t\tmodel.prototype.fieldTypes.push( fieldType );\n\t\t}\n\t};\n\n\t/**\n\t * acf.getConditionTypes\n\t *\n\t * description\n\t *\n\t * @date\t1/2/18\n\t * @since\t5.6.5\n\t *\n\t * @param\ttype $var Description. Default.\n\t * @return\ttype Description.\n\t */\n\n\tacf.getConditionTypes = function ( args ) {\n\t\t// defaults\n\t\targs = acf.parseArgs( args, {\n\t\t\tfieldType: '',\n\t\t\toperator: '',\n\t\t} );\n\n\t\t// clonse available types\n\t\tvar types = [];\n\n\t\t// loop\n\t\tstorage.map( function ( type ) {\n\t\t\t// vars\n\t\t\tvar model = acf.getConditionType( type );\n\t\t\tvar ProtoFieldTypes = model.prototype.fieldTypes;\n\t\t\tvar ProtoOperator = model.prototype.operator;\n\n\t\t\t// check fieldType\n\t\t\tif (\n\t\t\t\targs.fieldType &&\n\t\t\t\tProtoFieldTypes.indexOf( args.fieldType ) === -1\n\t\t\t) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// check operator\n\t\t\tif ( args.operator && ProtoOperator !== args.operator ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// append\n\t\t\ttypes.push( model );\n\t\t} );\n\n\t\t// return\n\t\treturn types;\n\t};\n} )( jQuery );\n","( function ( $, undefined ) {\n\t// vars\n\tvar CONTEXT = 'conditional_logic';\n\n\t/**\n\t * conditionsManager\n\t *\n\t * description\n\t *\n\t * @date\t1/2/18\n\t * @since\t5.6.5\n\t *\n\t * @param\ttype $var Description. Default.\n\t * @return\ttype Description.\n\t */\n\n\tvar conditionsManager = new acf.Model( {\n\t\tid: 'conditionsManager',\n\n\t\tpriority: 20, // run actions later\n\n\t\tactions: {\n\t\t\tnew_field: 'onNewField',\n\t\t},\n\n\t\tonNewField: function ( field ) {\n\t\t\tif ( field.has( 'conditions' ) ) {\n\t\t\t\tfield.getConditions().render();\n\t\t\t}\n\t\t},\n\t} );\n\n\t/**\n\t * acf.Field.prototype.getField\n\t *\n\t * Finds a field that is related to another field\n\t *\n\t * @date\t1/2/18\n\t * @since\t5.6.5\n\t *\n\t * @param\ttype $var Description. Default.\n\t * @return\ttype Description.\n\t */\n\n\tvar getSiblingField = function ( field, key ) {\n\t\t// find sibling (very fast)\n\t\tvar fields = acf.getFields( {\n\t\t\tkey: key,\n\t\t\tsibling: field.$el,\n\t\t\tsuppressFilters: true,\n\t\t} );\n\n\t\t// find sibling-children (fast)\n\t\t// needed for group fields, accordions, etc\n\t\tif ( ! fields.length ) {\n\t\t\tfields = acf.getFields( {\n\t\t\t\tkey: key,\n\t\t\t\tparent: field.$el.parent(),\n\t\t\t\tsuppressFilters: true,\n\t\t\t} );\n\t\t}\n\n\t\t// Check for fields on other settings tabs (probably less fast).\n\t\tif ( ! fields.length && $( '.acf-field-settings' ).length ) {\n\t\t\tfields = acf.getFields( {\n\t\t\t\tkey: key,\n\t\t\t\tparent: field.$el.parents( '.acf-field-settings:first' ),\n\t\t\t\tsuppressFilters: true,\n\t\t\t} );\n\t\t}\n\n\t\tif ( ! fields.length && $( '#acf-basic-settings' ).length ) {\n\t\t\tfields = acf.getFields( {\n\t\t\t\tkey: key,\n\t\t\t\tparent: $( '#acf-basic-settings'),\n\t\t\t\tsuppressFilters: true,\n\t\t\t} );\n\t\t}\n\n\t\t// return\n\t\tif ( fields.length ) {\n\t\t\treturn fields[ 0 ];\n\t\t}\n\t\treturn false;\n\t};\n\n\tacf.Field.prototype.getField = function ( key ) {\n\t\t// get sibling field\n\t\tvar field = getSiblingField( this, key );\n\n\t\t// return early\n\t\tif ( field ) {\n\t\t\treturn field;\n\t\t}\n\n\t\t// move up through each parent and try again\n\t\tvar parents = this.parents();\n\t\tfor ( var i = 0; i < parents.length; i++ ) {\n\t\t\t// get sibling field\n\t\t\tfield = getSiblingField( parents[ i ], key );\n\n\t\t\t// return early\n\t\t\tif ( field ) {\n\t\t\t\treturn field;\n\t\t\t}\n\t\t}\n\n\t\t// return\n\t\treturn false;\n\t};\n\n\t/**\n\t * acf.Field.prototype.getConditions\n\t *\n\t * Returns the field's conditions instance\n\t *\n\t * @date\t1/2/18\n\t * @since\t5.6.5\n\t *\n\t * @param\ttype $var Description. Default.\n\t * @return\ttype Description.\n\t */\n\n\tacf.Field.prototype.getConditions = function () {\n\t\t// instantiate\n\t\tif ( ! this.conditions ) {\n\t\t\tthis.conditions = new Conditions( this );\n\t\t}\n\n\t\t// return\n\t\treturn this.conditions;\n\t};\n\n\t/**\n\t * Conditions\n\t *\n\t * description\n\t *\n\t * @date\t1/2/18\n\t * @since\t5.6.5\n\t *\n\t * @param\ttype $var Description. Default.\n\t * @return\ttype Description.\n\t */\n\tvar timeout = false;\n\tvar Conditions = acf.Model.extend( {\n\t\tid: 'Conditions',\n\n\t\tdata: {\n\t\t\tfield: false, // The field with \"data-conditions\" (target).\n\t\t\ttimeStamp: false, // Reference used during \"change\" event.\n\t\t\tgroups: [], // The groups of condition instances.\n\t\t},\n\n\t\tsetup: function ( field ) {\n\t\t\t// data\n\t\t\tthis.data.field = field;\n\n\t\t\t// vars\n\t\t\tvar conditions = field.get( 'conditions' );\n\n\t\t\t// detect groups\n\t\t\tif ( conditions instanceof Array ) {\n\t\t\t\t// detect groups\n\t\t\t\tif ( conditions[ 0 ] instanceof Array ) {\n\t\t\t\t\t// loop\n\t\t\t\t\tconditions.map( function ( rules, i ) {\n\t\t\t\t\t\tthis.addRules( rules, i );\n\t\t\t\t\t}, this );\n\n\t\t\t\t\t// detect rules\n\t\t\t\t} else {\n\t\t\t\t\tthis.addRules( conditions );\n\t\t\t\t}\n\n\t\t\t\t// detect rule\n\t\t\t} else {\n\t\t\t\tthis.addRule( conditions );\n\t\t\t}\n\t\t},\n\n\t\tchange: function ( e ) {\n\t\t\t// this function may be triggered multiple times per event due to multiple condition classes\n\t\t\t// compare timestamp to allow only 1 trigger per event\n\t\t\tif ( this.get( 'timeStamp' ) === e.timeStamp ) {\n\t\t\t\treturn false;\n\t\t\t} else {\n\t\t\t\tthis.set( 'timeStamp', e.timeStamp, true );\n\t\t\t}\n\n\t\t\t// render condition and store result\n\t\t\tvar changed = this.render();\n\t\t},\n\n\t\trender: function () {\n\t\t\treturn this.calculate() ? this.show() : this.hide();\n\t\t},\n\n\t\tshow: function () {\n\t\t\treturn this.get( 'field' ).showEnable( this.cid, CONTEXT );\n\t\t},\n\n\t\thide: function () {\n\t\t\treturn this.get( 'field' ).hideDisable( this.cid, CONTEXT );\n\t\t},\n\n\t\tcalculate: function () {\n\t\t\t// vars\n\t\t\tvar pass = false;\n\n\t\t\t// loop\n\t\t\tthis.getGroups().map( function ( group ) {\n\t\t\t\t// igrnore this group if another group passed\n\t\t\t\tif ( pass ) return;\n\n\t\t\t\t// find passed\n\t\t\t\tvar passed = group.filter( function ( condition ) {\n\t\t\t\t\treturn condition.calculate();\n\t\t\t\t} );\n\n\t\t\t\t// if all conditions passed, update the global var\n\t\t\t\tif ( passed.length == group.length ) {\n\t\t\t\t\tpass = true;\n\t\t\t\t}\n\t\t\t} );\n\n\t\t\treturn pass;\n\t\t},\n\n\t\thasGroups: function () {\n\t\t\treturn this.data.groups != null;\n\t\t},\n\n\t\tgetGroups: function () {\n\t\t\treturn this.data.groups;\n\t\t},\n\n\t\taddGroup: function () {\n\t\t\tvar group = [];\n\t\t\tthis.data.groups.push( group );\n\t\t\treturn group;\n\t\t},\n\n\t\thasGroup: function ( i ) {\n\t\t\treturn this.data.groups[ i ] != null;\n\t\t},\n\n\t\tgetGroup: function ( i ) {\n\t\t\treturn this.data.groups[ i ];\n\t\t},\n\n\t\tremoveGroup: function ( i ) {\n\t\t\tthis.data.groups[ i ].delete;\n\t\t\treturn this;\n\t\t},\n\n\t\taddRules: function ( rules, group ) {\n\t\t\trules.map( function ( rule ) {\n\t\t\t\tthis.addRule( rule, group );\n\t\t\t}, this );\n\t\t},\n\n\t\taddRule: function ( rule, group ) {\n\t\t\t// defaults\n\t\t\tgroup = group || 0;\n\n\t\t\t// vars\n\t\t\tvar groupArray;\n\n\t\t\t// get group\n\t\t\tif ( this.hasGroup( group ) ) {\n\t\t\t\tgroupArray = this.getGroup( group );\n\t\t\t} else {\n\t\t\t\tgroupArray = this.addGroup();\n\t\t\t}\n\n\t\t\t// instantiate\n\t\t\tvar condition = acf.newCondition( rule, this );\n\n\t\t\t// bail early if condition failed (field did not exist)\n\t\t\tif ( ! condition ) {\n\t\t\t\treturn false;\n\t\t\t}\n\n\t\t\t// add rule\n\t\t\tgroupArray.push( condition );\n\t\t},\n\n\t\thasRule: function () {},\n\n\t\tgetRule: function ( rule, group ) {\n\t\t\t// defaults\n\t\t\trule = rule || 0;\n\t\t\tgroup = group || 0;\n\n\t\t\treturn this.data.groups[ group ][ rule ];\n\t\t},\n\n\t\tremoveRule: function () {},\n\t} );\n} )( jQuery );\n","( function ( $, undefined ) {\n\tvar i = 0;\n\n\tvar Field = acf.Field.extend( {\n\t\ttype: 'accordion',\n\n\t\twait: '',\n\n\t\t$control: function () {\n\t\t\treturn this.$( '.acf-fields:first' );\n\t\t},\n\n\t\tinitialize: function () {\n\t\t\t// Bail early if this is a duplicate of an existing initialized accordion.\n\t\t\tif ( this.$el.hasClass( 'acf-accordion' ) ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// bail early if is cell\n\t\t\tif ( this.$el.is( 'td' ) ) return;\n\n\t\t\t// enpoint\n\t\t\tif ( this.get( 'endpoint' ) ) {\n\t\t\t\treturn this.remove();\n\t\t\t}\n\n\t\t\t// vars\n\t\t\tvar $field = this.$el;\n\t\t\tvar $label = this.$labelWrap();\n\t\t\tvar $input = this.$inputWrap();\n\t\t\tvar $wrap = this.$control();\n\t\t\tvar $instructions = $input.children( '.description' );\n\n\t\t\t// force description into label\n\t\t\tif ( $instructions.length ) {\n\t\t\t\t$label.append( $instructions );\n\t\t\t}\n\n\t\t\t// table\n\t\t\tif ( this.$el.is( 'tr' ) ) {\n\t\t\t\t// vars\n\t\t\t\tvar $table = this.$el.closest( 'table' );\n\t\t\t\tvar $newLabel = $( '
    ' );\n\t\t\t\tvar $newInput = $( '
    ' );\n\t\t\t\tvar $newTable = $(\n\t\t\t\t\t''\n\t\t\t\t);\n\t\t\t\tvar $newWrap = $( '' );\n\n\t\t\t\t// dom\n\t\t\t\t$newLabel.append( $label.html() );\n\t\t\t\t$newTable.append( $newWrap );\n\t\t\t\t$newInput.append( $newTable );\n\t\t\t\t$input.append( $newLabel );\n\t\t\t\t$input.append( $newInput );\n\n\t\t\t\t// modify\n\t\t\t\t$label.remove();\n\t\t\t\t$wrap.remove();\n\t\t\t\t$input.attr( 'colspan', 2 );\n\n\t\t\t\t// update vars\n\t\t\t\t$label = $newLabel;\n\t\t\t\t$input = $newInput;\n\t\t\t\t$wrap = $newWrap;\n\t\t\t}\n\n\t\t\t// add classes\n\t\t\t$field.addClass( 'acf-accordion' );\n\t\t\t$label.addClass( 'acf-accordion-title' );\n\t\t\t$input.addClass( 'acf-accordion-content' );\n\n\t\t\t// index\n\t\t\ti++;\n\n\t\t\t// multi-expand\n\t\t\tif ( this.get( 'multi_expand' ) ) {\n\t\t\t\t$field.attr( 'multi-expand', 1 );\n\t\t\t}\n\n\t\t\t// open\n\t\t\tvar order = acf.getPreference( 'this.accordions' ) || [];\n\t\t\tif ( order[ i - 1 ] !== undefined ) {\n\t\t\t\tthis.set( 'open', order[ i - 1 ] );\n\t\t\t}\n\n\t\t\tif ( this.get( 'open' ) ) {\n\t\t\t\t$field.addClass( '-open' );\n\t\t\t\t$input.css( 'display', 'block' ); // needed for accordion to close smoothly\n\t\t\t}\n\n\t\t\t// add icon\n\t\t\t$label.prepend(\n\t\t\t\taccordionManager.iconHtml( { open: this.get( 'open' ) } )\n\t\t\t);\n\n\t\t\t// classes\n\t\t\t// - remove 'inside' which is a #poststuff WP class\n\t\t\tvar $parent = $field.parent();\n\t\t\t$wrap.addClass( $parent.hasClass( '-left' ) ? '-left' : '' );\n\t\t\t$wrap.addClass( $parent.hasClass( '-clear' ) ? '-clear' : '' );\n\n\t\t\t// append\n\t\t\t$wrap.append(\n\t\t\t\t$field.nextUntil( '.acf-field-accordion', '.acf-field' )\n\t\t\t);\n\n\t\t\t// clean up\n\t\t\t$wrap.removeAttr( 'data-open data-multi_expand data-endpoint' );\n\t\t},\n\t} );\n\n\tacf.registerFieldType( Field );\n\n\t/**\n\t * accordionManager\n\t *\n\t * Events manager for the acf accordion\n\t *\n\t * @date\t14/2/18\n\t * @since\t5.6.9\n\t *\n\t * @param\tvoid\n\t * @return\tvoid\n\t */\n\n\tvar accordionManager = new acf.Model( {\n\t\tactions: {\n\t\t\tunload: 'onUnload',\n\t\t},\n\n\t\tevents: {\n\t\t\t'click .acf-accordion-title': 'onClick',\n\t\t\t'invalidField .acf-accordion': 'onInvalidField',\n\t\t},\n\n\t\tisOpen: function ( $el ) {\n\t\t\treturn $el.hasClass( '-open' );\n\t\t},\n\n\t\ttoggle: function ( $el ) {\n\t\t\tif ( this.isOpen( $el ) ) {\n\t\t\t\tthis.close( $el );\n\t\t\t} else {\n\t\t\t\tthis.open( $el );\n\t\t\t}\n\t\t},\n\n\t\ticonHtml: function ( props ) {\n\t\t\t// Use SVG inside Gutenberg editor.\n\t\t\tif ( acf.isGutenberg() ) {\n\t\t\t\tif ( props.open ) {\n\t\t\t\t\treturn '';\n\t\t\t\t} else {\n\t\t\t\t\treturn '';\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tif ( props.open ) {\n\t\t\t\t\treturn '';\n\t\t\t\t} else {\n\t\t\t\t\treturn '';\n\t\t\t\t}\n\t\t\t}\n\t\t},\n\n\t\topen: function ( $el ) {\n\t\t\tvar duration = acf.isGutenberg() ? 0 : 300;\n\n\t\t\t// open\n\t\t\t$el.find( '.acf-accordion-content:first' )\n\t\t\t\t.slideDown( duration )\n\t\t\t\t.css( 'display', 'block' );\n\t\t\t$el.find( '.acf-accordion-icon:first' ).replaceWith(\n\t\t\t\tthis.iconHtml( { open: true } )\n\t\t\t);\n\t\t\t$el.addClass( '-open' );\n\n\t\t\t// action\n\t\t\tacf.doAction( 'show', $el );\n\n\t\t\t// close siblings\n\t\t\tif ( ! $el.attr( 'multi-expand' ) ) {\n\t\t\t\t$el.siblings( '.acf-accordion.-open' ).each( function () {\n\t\t\t\t\taccordionManager.close( $( this ) );\n\t\t\t\t} );\n\t\t\t}\n\t\t},\n\n\t\tclose: function ( $el ) {\n\t\t\tvar duration = acf.isGutenberg() ? 0 : 300;\n\n\t\t\t// close\n\t\t\t$el.find( '.acf-accordion-content:first' ).slideUp( duration );\n\t\t\t$el.find( '.acf-accordion-icon:first' ).replaceWith(\n\t\t\t\tthis.iconHtml( { open: false } )\n\t\t\t);\n\t\t\t$el.removeClass( '-open' );\n\n\t\t\t// action\n\t\t\tacf.doAction( 'hide', $el );\n\t\t},\n\n\t\tonClick: function ( e, $el ) {\n\t\t\t// prevent Defailt\n\t\t\te.preventDefault();\n\n\t\t\t// open close\n\t\t\tthis.toggle( $el.parent() );\n\t\t},\n\n\t\tonInvalidField: function ( e, $el ) {\n\t\t\t// bail early if already focused\n\t\t\tif ( this.busy ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// disable functionality for 1sec (allow next validation to work)\n\t\t\tthis.busy = true;\n\t\t\tthis.setTimeout( function () {\n\t\t\t\tthis.busy = false;\n\t\t\t}, 1000 );\n\n\t\t\t// open accordion\n\t\t\tthis.open( $el );\n\t\t},\n\n\t\tonUnload: function ( e ) {\n\t\t\t// vars\n\t\t\tvar order = [];\n\n\t\t\t// loop\n\t\t\t$( '.acf-accordion' ).each( function () {\n\t\t\t\tvar open = $( this ).hasClass( '-open' ) ? 1 : 0;\n\t\t\t\torder.push( open );\n\t\t\t} );\n\n\t\t\t// set\n\t\t\tif ( order.length ) {\n\t\t\t\tacf.setPreference( 'this.accordions', order );\n\t\t\t}\n\t\t},\n\t} );\n} )( jQuery );\n","( function ( $, undefined ) {\n\tvar Field = acf.Field.extend( {\n\t\ttype: 'button_group',\n\n\t\tevents: {\n\t\t\t'click input[type=\"radio\"]': 'onClick',\n\t\t},\n\n\t\t$control: function () {\n\t\t\treturn this.$( '.acf-button-group' );\n\t\t},\n\n\t\t$input: function () {\n\t\t\treturn this.$( 'input:checked' );\n\t\t},\n\n\t\tsetValue: function ( val ) {\n\t\t\tthis.$( 'input[value=\"' + val + '\"]' )\n\t\t\t\t.prop( 'checked', true )\n\t\t\t\t.trigger( 'change' );\n\t\t},\n\n\t\tonClick: function ( e, $el ) {\n\t\t\t// vars\n\t\t\tvar $label = $el.parent( 'label' );\n\t\t\tvar selected = $label.hasClass( 'selected' );\n\n\t\t\t// remove previous selected\n\t\t\tthis.$( '.selected' ).removeClass( 'selected' );\n\n\t\t\t// add active class\n\t\t\t$label.addClass( 'selected' );\n\n\t\t\t// allow null\n\t\t\tif ( this.get( 'allow_null' ) && selected ) {\n\t\t\t\t$label.removeClass( 'selected' );\n\t\t\t\t$el.prop( 'checked', false ).trigger( 'change' );\n\t\t\t}\n\t\t},\n\t} );\n\n\tacf.registerFieldType( Field );\n} )( jQuery );\n","( function ( $, undefined ) {\n\tvar Field = acf.Field.extend( {\n\t\ttype: 'checkbox',\n\n\t\tevents: {\n\t\t\t'change input': 'onChange',\n\t\t\t'click .acf-add-checkbox': 'onClickAdd',\n\t\t\t'click .acf-checkbox-toggle': 'onClickToggle',\n\t\t\t'click .acf-checkbox-custom': 'onClickCustom',\n\t\t},\n\n\t\t$control: function () {\n\t\t\treturn this.$( '.acf-checkbox-list' );\n\t\t},\n\n\t\t$toggle: function () {\n\t\t\treturn this.$( '.acf-checkbox-toggle' );\n\t\t},\n\n\t\t$input: function () {\n\t\t\treturn this.$( 'input[type=\"hidden\"]' );\n\t\t},\n\n\t\t$inputs: function () {\n\t\t\treturn this.$( 'input[type=\"checkbox\"]' ).not(\n\t\t\t\t'.acf-checkbox-toggle'\n\t\t\t);\n\t\t},\n\n\t\tgetValue: function () {\n\t\t\tvar val = [];\n\t\t\tthis.$( ':checked' ).each( function () {\n\t\t\t\tval.push( $( this ).val() );\n\t\t\t} );\n\t\t\treturn val.length ? val : false;\n\t\t},\n\n\t\tonChange: function ( e, $el ) {\n\t\t\t// Vars.\n\t\t\tvar checked = $el.prop( 'checked' );\n\t\t\tvar $label = $el.parent( 'label' );\n\t\t\tvar $toggle = this.$toggle();\n\n\t\t\t// Add or remove \"selected\" class.\n\t\t\tif ( checked ) {\n\t\t\t\t$label.addClass( 'selected' );\n\t\t\t} else {\n\t\t\t\t$label.removeClass( 'selected' );\n\t\t\t}\n\n\t\t\t// Update toggle state if all inputs are checked.\n\t\t\tif ( $toggle.length ) {\n\t\t\t\tvar $inputs = this.$inputs();\n\n\t\t\t\t// all checked\n\t\t\t\tif ( $inputs.not( ':checked' ).length == 0 ) {\n\t\t\t\t\t$toggle.prop( 'checked', true );\n\t\t\t\t} else {\n\t\t\t\t\t$toggle.prop( 'checked', false );\n\t\t\t\t}\n\t\t\t}\n\t\t},\n\n\t\tonClickAdd: function ( e, $el ) {\n\t\t\tvar html =\n\t\t\t\t'
  • ';\n\t\t\t$el.parent( 'li' ).before( html );\n\t\t\t$el.parent( 'li' )\n\t\t\t\t.parent()\n\t\t\t\t.find( 'input[type=\"text\"]' )\n\t\t\t\t.last()\n\t\t\t\t.focus();\n\t\t},\n\n\t\tonClickToggle: function ( e, $el ) {\n\t\t\t// Vars.\n\t\t\tvar checked = $el.prop( 'checked' );\n\t\t\tvar $inputs = this.$( 'input[type=\"checkbox\"]' );\n\t\t\tvar $labels = this.$( 'label' );\n\n\t\t\t// Update \"checked\" state.\n\t\t\t$inputs.prop( 'checked', checked );\n\n\t\t\t// Add or remove \"selected\" class.\n\t\t\tif ( checked ) {\n\t\t\t\t$labels.addClass( 'selected' );\n\t\t\t} else {\n\t\t\t\t$labels.removeClass( 'selected' );\n\t\t\t}\n\t\t},\n\n\t\tonClickCustom: function ( e, $el ) {\n\t\t\tvar checked = $el.prop( 'checked' );\n\t\t\tvar $text = $el.next( 'input[type=\"text\"]' );\n\n\t\t\t// checked\n\t\t\tif ( checked ) {\n\t\t\t\t$text.prop( 'disabled', false );\n\n\t\t\t\t// not checked\n\t\t\t} else {\n\t\t\t\t$text.prop( 'disabled', true );\n\n\t\t\t\t// remove\n\t\t\t\tif ( $text.val() == '' ) {\n\t\t\t\t\t$el.parent( 'li' ).remove();\n\t\t\t\t}\n\t\t\t}\n\t\t},\n\t} );\n\n\tacf.registerFieldType( Field );\n} )( jQuery );\n","( function ( $, undefined ) {\n\tvar Field = acf.Field.extend( {\n\t\ttype: 'color_picker',\n\n\t\twait: 'load',\n\n\t\tevents: {\n\t\t\tduplicateField: 'onDuplicate',\n\t\t},\n\n\t\t$control: function () {\n\t\t\treturn this.$( '.acf-color-picker' );\n\t\t},\n\n\t\t$input: function () {\n\t\t\treturn this.$( 'input[type=\"hidden\"]' );\n\t\t},\n\n\t\t$inputText: function () {\n\t\t\treturn this.$( 'input[type=\"text\"]' );\n\t\t},\n\n\t\tsetValue: function ( val ) {\n\t\t\t// update input (with change)\n\t\t\tacf.val( this.$input(), val );\n\n\t\t\t// update iris\n\t\t\tthis.$inputText().iris( 'color', val );\n\t\t},\n\n\t\tinitialize: function () {\n\t\t\t// vars\n\t\t\tvar $input = this.$input();\n\t\t\tvar $inputText = this.$inputText();\n\n\t\t\t// event\n\t\t\tvar onChange = function ( e ) {\n\t\t\t\t// timeout is required to ensure the $input val is correct\n\t\t\t\tsetTimeout( function () {\n\t\t\t\t\tacf.val( $input, $inputText.val() );\n\t\t\t\t}, 1 );\n\t\t\t};\n\n\t\t\t// args\n\t\t\tvar args = {\n\t\t\t\tdefaultColor: false,\n\t\t\t\tpalettes: true,\n\t\t\t\thide: true,\n\t\t\t\tchange: onChange,\n\t\t\t\tclear: onChange,\n\t\t\t};\n\n\t\t\t// filter\n\t\t\tvar args = acf.applyFilters( 'color_picker_args', args, this );\n\n\t\t\t// initialize\n\t\t\t$inputText.wpColorPicker( args );\n\t\t},\n\n\t\tonDuplicate: function ( e, $el, $duplicate ) {\n\t\t\t// The wpColorPicker library does not provide a destroy method.\n\t\t\t// Manually reset DOM by replacing elements back to their original state.\n\t\t\t$colorPicker = $duplicate.find( '.wp-picker-container' );\n\t\t\t$inputText = $duplicate.find( 'input[type=\"text\"]' );\n\t\t\t$colorPicker.replaceWith( $inputText );\n\t\t},\n\t} );\n\n\tacf.registerFieldType( Field );\n} )( jQuery );\n","( function ( $, undefined ) {\n\tvar Field = acf.Field.extend( {\n\t\ttype: 'date_picker',\n\n\t\tevents: {\n\t\t\t'blur input[type=\"text\"]': 'onBlur',\n\t\t\tduplicateField: 'onDuplicate',\n\t\t},\n\n\t\t$control: function () {\n\t\t\treturn this.$( '.acf-date-picker' );\n\t\t},\n\n\t\t$input: function () {\n\t\t\treturn this.$( 'input[type=\"hidden\"]' );\n\t\t},\n\n\t\t$inputText: function () {\n\t\t\treturn this.$( 'input[type=\"text\"]' );\n\t\t},\n\n\t\tinitialize: function () {\n\t\t\t// save_format: compatibility with ACF < 5.0.0\n\t\t\tif ( this.has( 'save_format' ) ) {\n\t\t\t\treturn this.initializeCompatibility();\n\t\t\t}\n\n\t\t\t// vars\n\t\t\tvar $input = this.$input();\n\t\t\tvar $inputText = this.$inputText();\n\n\t\t\t// args\n\t\t\tvar args = {\n\t\t\t\tdateFormat: this.get( 'date_format' ),\n\t\t\t\taltField: $input,\n\t\t\t\taltFormat: 'yymmdd',\n\t\t\t\tchangeYear: true,\n\t\t\t\tyearRange: '-100:+100',\n\t\t\t\tchangeMonth: true,\n\t\t\t\tshowButtonPanel: true,\n\t\t\t\tfirstDay: this.get( 'first_day' ),\n\t\t\t};\n\n\t\t\t// filter\n\t\t\targs = acf.applyFilters( 'date_picker_args', args, this );\n\n\t\t\t// add date picker\n\t\t\tacf.newDatePicker( $inputText, args );\n\n\t\t\t// action\n\t\t\tacf.doAction( 'date_picker_init', $inputText, args, this );\n\t\t},\n\n\t\tinitializeCompatibility: function () {\n\t\t\t// vars\n\t\t\tvar $input = this.$input();\n\t\t\tvar $inputText = this.$inputText();\n\n\t\t\t// get and set value from alt field\n\t\t\t$inputText.val( $input.val() );\n\n\t\t\t// args\n\t\t\tvar args = {\n\t\t\t\tdateFormat: this.get( 'date_format' ),\n\t\t\t\taltField: $input,\n\t\t\t\taltFormat: this.get( 'save_format' ),\n\t\t\t\tchangeYear: true,\n\t\t\t\tyearRange: '-100:+100',\n\t\t\t\tchangeMonth: true,\n\t\t\t\tshowButtonPanel: true,\n\t\t\t\tfirstDay: this.get( 'first_day' ),\n\t\t\t};\n\n\t\t\t// filter for 3rd party customization\n\t\t\targs = acf.applyFilters( 'date_picker_args', args, this );\n\n\t\t\t// backup\n\t\t\tvar dateFormat = args.dateFormat;\n\n\t\t\t// change args.dateFormat\n\t\t\targs.dateFormat = this.get( 'save_format' );\n\n\t\t\t// add date picker\n\t\t\tacf.newDatePicker( $inputText, args );\n\n\t\t\t// now change the format back to how it should be.\n\t\t\t$inputText.datepicker( 'option', 'dateFormat', dateFormat );\n\n\t\t\t// action for 3rd party customization\n\t\t\tacf.doAction( 'date_picker_init', $inputText, args, this );\n\t\t},\n\n\t\tonBlur: function () {\n\t\t\tif ( ! this.$inputText().val() ) {\n\t\t\t\tacf.val( this.$input(), '' );\n\t\t\t}\n\t\t},\n\n\t\tonDuplicate: function ( e, $el, $duplicate ) {\n\t\t\t$duplicate\n\t\t\t\t.find( 'input[type=\"text\"]' )\n\t\t\t\t.removeClass( 'hasDatepicker' )\n\t\t\t\t.removeAttr( 'id' );\n\t\t},\n\t} );\n\n\tacf.registerFieldType( Field );\n\n\t// manager\n\tvar datePickerManager = new acf.Model( {\n\t\tpriority: 5,\n\t\twait: 'ready',\n\t\tinitialize: function () {\n\t\t\t// vars\n\t\t\tvar locale = acf.get( 'locale' );\n\t\t\tvar rtl = acf.get( 'rtl' );\n\t\t\tvar l10n = acf.get( 'datePickerL10n' );\n\n\t\t\t// bail early if no l10n\n\t\t\tif ( ! l10n ) {\n\t\t\t\treturn false;\n\t\t\t}\n\n\t\t\t// bail early if no datepicker library\n\t\t\tif ( typeof $.datepicker === 'undefined' ) {\n\t\t\t\treturn false;\n\t\t\t}\n\n\t\t\t// rtl\n\t\t\tl10n.isRTL = rtl;\n\n\t\t\t// append\n\t\t\t$.datepicker.regional[ locale ] = l10n;\n\t\t\t$.datepicker.setDefaults( l10n );\n\t\t},\n\t} );\n\n\t// add\n\tacf.newDatePicker = function ( $input, args ) {\n\t\t// bail early if no datepicker library\n\t\tif ( typeof $.datepicker === 'undefined' ) {\n\t\t\treturn false;\n\t\t}\n\n\t\t// defaults\n\t\targs = args || {};\n\n\t\t// initialize\n\t\t$input.datepicker( args );\n\n\t\t// wrap the datepicker (only if it hasn't already been wrapped)\n\t\tif ( $( 'body > #ui-datepicker-div' ).exists() ) {\n\t\t\t$( 'body > #ui-datepicker-div' ).wrap(\n\t\t\t\t'
    '\n\t\t\t);\n\t\t}\n\t};\n} )( jQuery );\n","( function ( $, undefined ) {\n\tvar Field = acf.models.DatePickerField.extend( {\n\t\ttype: 'date_time_picker',\n\n\t\t$control: function () {\n\t\t\treturn this.$( '.acf-date-time-picker' );\n\t\t},\n\n\t\tinitialize: function () {\n\t\t\t// vars\n\t\t\tvar $input = this.$input();\n\t\t\tvar $inputText = this.$inputText();\n\n\t\t\t// args\n\t\t\tvar args = {\n\t\t\t\tdateFormat: this.get( 'date_format' ),\n\t\t\t\ttimeFormat: this.get( 'time_format' ),\n\t\t\t\taltField: $input,\n\t\t\t\taltFieldTimeOnly: false,\n\t\t\t\taltFormat: 'yy-mm-dd',\n\t\t\t\taltTimeFormat: 'HH:mm:ss',\n\t\t\t\tchangeYear: true,\n\t\t\t\tyearRange: '-100:+100',\n\t\t\t\tchangeMonth: true,\n\t\t\t\tshowButtonPanel: true,\n\t\t\t\tfirstDay: this.get( 'first_day' ),\n\t\t\t\tcontrolType: 'select',\n\t\t\t\toneLine: true,\n\t\t\t};\n\n\t\t\t// filter\n\t\t\targs = acf.applyFilters( 'date_time_picker_args', args, this );\n\n\t\t\t// add date time picker\n\t\t\tacf.newDateTimePicker( $inputText, args );\n\n\t\t\t// action\n\t\t\tacf.doAction( 'date_time_picker_init', $inputText, args, this );\n\t\t},\n\t} );\n\n\tacf.registerFieldType( Field );\n\n\t// manager\n\tvar dateTimePickerManager = new acf.Model( {\n\t\tpriority: 5,\n\t\twait: 'ready',\n\t\tinitialize: function () {\n\t\t\t// vars\n\t\t\tvar locale = acf.get( 'locale' );\n\t\t\tvar rtl = acf.get( 'rtl' );\n\t\t\tvar l10n = acf.get( 'dateTimePickerL10n' );\n\n\t\t\t// bail early if no l10n\n\t\t\tif ( ! l10n ) {\n\t\t\t\treturn false;\n\t\t\t}\n\n\t\t\t// bail early if no datepicker library\n\t\t\tif ( typeof $.timepicker === 'undefined' ) {\n\t\t\t\treturn false;\n\t\t\t}\n\n\t\t\t// rtl\n\t\t\tl10n.isRTL = rtl;\n\n\t\t\t// append\n\t\t\t$.timepicker.regional[ locale ] = l10n;\n\t\t\t$.timepicker.setDefaults( l10n );\n\t\t},\n\t} );\n\n\t// add\n\tacf.newDateTimePicker = function ( $input, args ) {\n\t\t// bail early if no datepicker library\n\t\tif ( typeof $.timepicker === 'undefined' ) {\n\t\t\treturn false;\n\t\t}\n\n\t\t// defaults\n\t\targs = args || {};\n\n\t\t// initialize\n\t\t$input.datetimepicker( args );\n\n\t\t// wrap the datepicker (only if it hasn't already been wrapped)\n\t\tif ( $( 'body > #ui-datepicker-div' ).exists() ) {\n\t\t\t$( 'body > #ui-datepicker-div' ).wrap(\n\t\t\t\t'
    '\n\t\t\t);\n\t\t}\n\t};\n} )( jQuery );\n","( function ( $, undefined ) {\n\tvar Field = acf.models.ImageField.extend( {\n\t\ttype: 'file',\n\n\t\t$control: function () {\n\t\t\treturn this.$( '.acf-file-uploader' );\n\t\t},\n\n\t\t$input: function () {\n\t\t\treturn this.$( 'input[type=\"hidden\"]:first' );\n\t\t},\n\n\t\tvalidateAttachment: function ( attachment ) {\n\t\t\t// defaults\n\t\t\tattachment = attachment || {};\n\n\t\t\t// WP attachment\n\t\t\tif ( attachment.id !== undefined ) {\n\t\t\t\tattachment = attachment.attributes;\n\t\t\t}\n\n\t\t\t// args\n\t\t\tattachment = acf.parseArgs( attachment, {\n\t\t\t\turl: '',\n\t\t\t\talt: '',\n\t\t\t\ttitle: '',\n\t\t\t\tfilename: '',\n\t\t\t\tfilesizeHumanReadable: '',\n\t\t\t\ticon: '/wp-includes/images/media/default.png',\n\t\t\t} );\n\n\t\t\t// return\n\t\t\treturn attachment;\n\t\t},\n\n\t\trender: function ( attachment ) {\n\t\t\t// vars\n\t\t\tattachment = this.validateAttachment( attachment );\n\n\t\t\t// update image\n\t\t\tthis.$( 'img' ).attr( {\n\t\t\t\tsrc: attachment.icon,\n\t\t\t\talt: attachment.alt,\n\t\t\t\ttitle: attachment.title,\n\t\t\t} );\n\n\t\t\t// update elements\n\t\t\tthis.$( '[data-name=\"title\"]' ).text( attachment.title );\n\t\t\tthis.$( '[data-name=\"filename\"]' )\n\t\t\t\t.text( attachment.filename )\n\t\t\t\t.attr( 'href', attachment.url );\n\t\t\tthis.$( '[data-name=\"filesize\"]' ).text(\n\t\t\t\tattachment.filesizeHumanReadable\n\t\t\t);\n\n\t\t\t// vars\n\t\t\tvar val = attachment.id || '';\n\n\t\t\t// update val\n\t\t\tacf.val( this.$input(), val );\n\n\t\t\t// update class\n\t\t\tif ( val ) {\n\t\t\t\tthis.$control().addClass( 'has-value' );\n\t\t\t} else {\n\t\t\t\tthis.$control().removeClass( 'has-value' );\n\t\t\t}\n\t\t},\n\n\t\tselectAttachment: function () {\n\t\t\t// vars\n\t\t\tvar parent = this.parent();\n\t\t\tvar multiple = parent && parent.get( 'type' ) === 'repeater';\n\n\t\t\t// new frame\n\t\t\tvar frame = acf.newMediaPopup( {\n\t\t\t\tmode: 'select',\n\t\t\t\ttitle: acf.__( 'Select File' ),\n\t\t\t\tfield: this.get( 'key' ),\n\t\t\t\tmultiple: multiple,\n\t\t\t\tlibrary: this.get( 'library' ),\n\t\t\t\tallowedTypes: this.get( 'mime_types' ),\n\t\t\t\tselect: $.proxy( function ( attachment, i ) {\n\t\t\t\t\tif ( i > 0 ) {\n\t\t\t\t\t\tthis.append( attachment, parent );\n\t\t\t\t\t} else {\n\t\t\t\t\t\tthis.render( attachment );\n\t\t\t\t\t}\n\t\t\t\t}, this ),\n\t\t\t} );\n\t\t},\n\n\t\teditAttachment: function () {\n\t\t\t// vars\n\t\t\tvar val = this.val();\n\n\t\t\t// bail early if no val\n\t\t\tif ( ! val ) {\n\t\t\t\treturn false;\n\t\t\t}\n\n\t\t\t// popup\n\t\t\tvar frame = acf.newMediaPopup( {\n\t\t\t\tmode: 'edit',\n\t\t\t\ttitle: acf.__( 'Edit File' ),\n\t\t\t\tbutton: acf.__( 'Update File' ),\n\t\t\t\tattachment: val,\n\t\t\t\tfield: this.get( 'key' ),\n\t\t\t\tselect: $.proxy( function ( attachment, i ) {\n\t\t\t\t\tthis.render( attachment );\n\t\t\t\t}, this ),\n\t\t\t} );\n\t\t},\n\t} );\n\n\tacf.registerFieldType( Field );\n} )( jQuery );\n","( function ( $, undefined ) {\n\tvar Field = acf.Field.extend( {\n\t\ttype: 'google_map',\n\n\t\tmap: false,\n\n\t\twait: 'load',\n\n\t\tevents: {\n\t\t\t'click a[data-name=\"clear\"]': 'onClickClear',\n\t\t\t'click a[data-name=\"locate\"]': 'onClickLocate',\n\t\t\t'click a[data-name=\"search\"]': 'onClickSearch',\n\t\t\t'keydown .search': 'onKeydownSearch',\n\t\t\t'keyup .search': 'onKeyupSearch',\n\t\t\t'focus .search': 'onFocusSearch',\n\t\t\t'blur .search': 'onBlurSearch',\n\t\t\tshowField: 'onShow',\n\t\t},\n\n\t\t$control: function () {\n\t\t\treturn this.$( '.acf-google-map' );\n\t\t},\n\n\t\t$search: function () {\n\t\t\treturn this.$( '.search' );\n\t\t},\n\n\t\t$canvas: function () {\n\t\t\treturn this.$( '.canvas' );\n\t\t},\n\n\t\tsetState: function ( state ) {\n\t\t\t// Remove previous state classes.\n\t\t\tthis.$control().removeClass( '-value -loading -searching' );\n\n\t\t\t// Determine auto state based of current value.\n\t\t\tif ( state === 'default' ) {\n\t\t\t\tstate = this.val() ? 'value' : '';\n\t\t\t}\n\n\t\t\t// Update state class.\n\t\t\tif ( state ) {\n\t\t\t\tthis.$control().addClass( '-' + state );\n\t\t\t}\n\t\t},\n\n\t\tgetValue: function () {\n\t\t\tvar val = this.$input().val();\n\t\t\tif ( val ) {\n\t\t\t\treturn JSON.parse( val );\n\t\t\t} else {\n\t\t\t\treturn false;\n\t\t\t}\n\t\t},\n\n\t\tsetValue: function ( val, silent ) {\n\t\t\t// Convert input value.\n\t\t\tvar valAttr = '';\n\t\t\tif ( val ) {\n\t\t\t\tvalAttr = JSON.stringify( val );\n\t\t\t}\n\n\t\t\t// Update input (with change).\n\t\t\tacf.val( this.$input(), valAttr );\n\n\t\t\t// Bail early if silent update.\n\t\t\tif ( silent ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// Render.\n\t\t\tthis.renderVal( val );\n\n\t\t\t/**\n\t\t\t * Fires immediately after the value has changed.\n\t\t\t *\n\t\t\t * @date\t12/02/2014\n\t\t\t * @since\t5.0.0\n\t\t\t *\n\t\t\t * @param\tobject|string val The new value.\n\t\t\t * @param\tobject map The Google Map isntance.\n\t\t\t * @param\tobject field The field instance.\n\t\t\t */\n\t\t\tacf.doAction( 'google_map_change', val, this.map, this );\n\t\t},\n\n\t\trenderVal: function ( val ) {\n\t\t\t// Value.\n\t\t\tif ( val ) {\n\t\t\t\tthis.setState( 'value' );\n\t\t\t\tthis.$search().val( val.address );\n\t\t\t\tthis.setPosition( val.lat, val.lng );\n\n\t\t\t\t// No value.\n\t\t\t} else {\n\t\t\t\tthis.setState( '' );\n\t\t\t\tthis.$search().val( '' );\n\t\t\t\tthis.map.marker.setVisible( false );\n\t\t\t}\n\t\t},\n\n\t\tnewLatLng: function ( lat, lng ) {\n\t\t\treturn new google.maps.LatLng(\n\t\t\t\tparseFloat( lat ),\n\t\t\t\tparseFloat( lng )\n\t\t\t);\n\t\t},\n\n\t\tsetPosition: function ( lat, lng ) {\n\t\t\t// Update marker position.\n\t\t\tthis.map.marker.setPosition( {\n\t\t\t\tlat: parseFloat( lat ),\n\t\t\t\tlng: parseFloat( lng ),\n\t\t\t} );\n\n\t\t\t// Show marker.\n\t\t\tthis.map.marker.setVisible( true );\n\n\t\t\t// Center map.\n\t\t\tthis.center();\n\t\t},\n\n\t\tcenter: function () {\n\t\t\t// Find marker position.\n\t\t\tvar position = this.map.marker.getPosition();\n\t\t\tif ( position ) {\n\t\t\t\tvar lat = position.lat();\n\t\t\t\tvar lng = position.lng();\n\n\t\t\t\t// Or find default settings.\n\t\t\t} else {\n\t\t\t\tvar lat = this.get( 'lat' );\n\t\t\t\tvar lng = this.get( 'lng' );\n\t\t\t}\n\n\t\t\t// Center map.\n\t\t\tthis.map.setCenter( {\n\t\t\t\tlat: parseFloat( lat ),\n\t\t\t\tlng: parseFloat( lng ),\n\t\t\t} );\n\t\t},\n\n\t\tinitialize: function () {\n\t\t\t// Ensure Google API is loaded and then initialize map.\n\t\t\twithAPI( this.initializeMap.bind( this ) );\n\t\t},\n\n\t\tinitializeMap: function () {\n\t\t\t// Get value ignoring conditional logic status.\n\t\t\tvar val = this.getValue();\n\n\t\t\t// Construct default args.\n\t\t\tvar args = acf.parseArgs( val, {\n\t\t\t\tzoom: this.get( 'zoom' ),\n\t\t\t\tlat: this.get( 'lat' ),\n\t\t\t\tlng: this.get( 'lng' ),\n\t\t\t} );\n\n\t\t\t// Create Map.\n\t\t\tvar mapArgs = {\n\t\t\t\tscrollwheel: false,\n\t\t\t\tzoom: parseInt( args.zoom ),\n\t\t\t\tcenter: {\n\t\t\t\t\tlat: parseFloat( args.lat ),\n\t\t\t\t\tlng: parseFloat( args.lng ),\n\t\t\t\t},\n\t\t\t\tmapTypeId: google.maps.MapTypeId.ROADMAP,\n\t\t\t\tmarker: {\n\t\t\t\t\tdraggable: true,\n\t\t\t\t\traiseOnDrag: true,\n\t\t\t\t},\n\t\t\t\tautocomplete: {},\n\t\t\t};\n\t\t\tmapArgs = acf.applyFilters( 'google_map_args', mapArgs, this );\n\t\t\tvar map = new google.maps.Map( this.$canvas()[ 0 ], mapArgs );\n\n\t\t\t// Create Marker.\n\t\t\tvar markerArgs = acf.parseArgs( mapArgs.marker, {\n\t\t\t\tdraggable: true,\n\t\t\t\traiseOnDrag: true,\n\t\t\t\tmap: map,\n\t\t\t} );\n\t\t\tmarkerArgs = acf.applyFilters(\n\t\t\t\t'google_map_marker_args',\n\t\t\t\tmarkerArgs,\n\t\t\t\tthis\n\t\t\t);\n\t\t\tvar marker = new google.maps.Marker( markerArgs );\n\n\t\t\t// Maybe Create Autocomplete.\n\t\t\tvar autocomplete = false;\n\t\t\tif ( acf.isset( google, 'maps', 'places', 'Autocomplete' ) ) {\n\t\t\t\tvar autocompleteArgs = mapArgs.autocomplete || {};\n\t\t\t\tautocompleteArgs = acf.applyFilters(\n\t\t\t\t\t'google_map_autocomplete_args',\n\t\t\t\t\tautocompleteArgs,\n\t\t\t\t\tthis\n\t\t\t\t);\n\t\t\t\tautocomplete = new google.maps.places.Autocomplete(\n\t\t\t\t\tthis.$search()[ 0 ],\n\t\t\t\t\tautocompleteArgs\n\t\t\t\t);\n\t\t\t\tautocomplete.bindTo( 'bounds', map );\n\t\t\t}\n\n\t\t\t// Add map events.\n\t\t\tthis.addMapEvents( this, map, marker, autocomplete );\n\n\t\t\t// Append references.\n\t\t\tmap.acf = this;\n\t\t\tmap.marker = marker;\n\t\t\tmap.autocomplete = autocomplete;\n\t\t\tthis.map = map;\n\n\t\t\t// Set position.\n\t\t\tif ( val ) {\n\t\t\t\tthis.setPosition( val.lat, val.lng );\n\t\t\t}\n\n\t\t\t/**\n\t\t\t * Fires immediately after the Google Map has been initialized.\n\t\t\t *\n\t\t\t * @date\t12/02/2014\n\t\t\t * @since\t5.0.0\n\t\t\t *\n\t\t\t * @param\tobject map The Google Map isntance.\n\t\t\t * @param\tobject marker The Google Map marker isntance.\n\t\t\t * @param\tobject field The field instance.\n\t\t\t */\n\t\t\tacf.doAction( 'google_map_init', map, marker, this );\n\t\t},\n\n\t\taddMapEvents: function ( field, map, marker, autocomplete ) {\n\t\t\t// Click map.\n\t\t\tgoogle.maps.event.addListener( map, 'click', function ( e ) {\n\t\t\t\tvar lat = e.latLng.lat();\n\t\t\t\tvar lng = e.latLng.lng();\n\t\t\t\tfield.searchPosition( lat, lng );\n\t\t\t} );\n\n\t\t\t// Drag marker.\n\t\t\tgoogle.maps.event.addListener( marker, 'dragend', function () {\n\t\t\t\tvar lat = this.getPosition().lat();\n\t\t\t\tvar lng = this.getPosition().lng();\n\t\t\t\tfield.searchPosition( lat, lng );\n\t\t\t} );\n\n\t\t\t// Autocomplete search.\n\t\t\tif ( autocomplete ) {\n\t\t\t\tgoogle.maps.event.addListener(\n\t\t\t\t\tautocomplete,\n\t\t\t\t\t'place_changed',\n\t\t\t\t\tfunction () {\n\t\t\t\t\t\tvar place = this.getPlace();\n\t\t\t\t\t\tfield.searchPlace( place );\n\t\t\t\t\t}\n\t\t\t\t);\n\t\t\t}\n\n\t\t\t// Detect zoom change.\n\t\t\tgoogle.maps.event.addListener( map, 'zoom_changed', function () {\n\t\t\t\tvar val = field.val();\n\t\t\t\tif ( val ) {\n\t\t\t\t\tval.zoom = map.getZoom();\n\t\t\t\t\tfield.setValue( val, true );\n\t\t\t\t}\n\t\t\t} );\n\t\t},\n\n\t\tsearchPosition: function ( lat, lng ) {\n\t\t\t//console.log('searchPosition', lat, lng );\n\n\t\t\t// Start Loading.\n\t\t\tthis.setState( 'loading' );\n\n\t\t\t// Query Geocoder.\n\t\t\tvar latLng = { lat: lat, lng: lng };\n\t\t\tgeocoder.geocode(\n\t\t\t\t{ location: latLng },\n\t\t\t\tfunction ( results, status ) {\n\t\t\t\t\t//console.log('searchPosition', arguments );\n\n\t\t\t\t\t// End Loading.\n\t\t\t\t\tthis.setState( '' );\n\n\t\t\t\t\t// Status failure.\n\t\t\t\t\tif ( status !== 'OK' ) {\n\t\t\t\t\t\tthis.showNotice( {\n\t\t\t\t\t\t\ttext: acf\n\t\t\t\t\t\t\t\t.__( 'Location not found: %s' )\n\t\t\t\t\t\t\t\t.replace( '%s', status ),\n\t\t\t\t\t\t\ttype: 'warning',\n\t\t\t\t\t\t} );\n\n\t\t\t\t\t\t// Success.\n\t\t\t\t\t} else {\n\t\t\t\t\t\tvar val = this.parseResult( results[ 0 ] );\n\n\t\t\t\t\t\t// Override lat/lng to match user defined marker location.\n\t\t\t\t\t\t// Avoids issue where marker \"snaps\" to nearest result.\n\t\t\t\t\t\tval.lat = lat;\n\t\t\t\t\t\tval.lng = lng;\n\t\t\t\t\t\tthis.val( val );\n\t\t\t\t\t}\n\t\t\t\t}.bind( this )\n\t\t\t);\n\t\t},\n\n\t\tsearchPlace: function ( place ) {\n\t\t\t//console.log('searchPlace', place );\n\n\t\t\t// Bail early if no place.\n\t\t\tif ( ! place ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// Selecting from the autocomplete dropdown will return a rich PlaceResult object.\n\t\t\t// Be sure to over-write the \"formatted_address\" value with the one displayed to the user for best UX.\n\t\t\tif ( place.geometry ) {\n\t\t\t\tplace.formatted_address = this.$search().val();\n\t\t\t\tvar val = this.parseResult( place );\n\t\t\t\tthis.val( val );\n\n\t\t\t\t// Searching a custom address will return an empty PlaceResult object.\n\t\t\t} else if ( place.name ) {\n\t\t\t\tthis.searchAddress( place.name );\n\t\t\t}\n\t\t},\n\n\t\tsearchAddress: function ( address ) {\n\t\t\t//console.log('searchAddress', address );\n\n\t\t\t// Bail early if no address.\n\t\t\tif ( ! address ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// Allow \"lat,lng\" search.\n\t\t\tvar latLng = address.split( ',' );\n\t\t\tif ( latLng.length == 2 ) {\n\t\t\t\tvar lat = parseFloat( latLng[ 0 ] );\n\t\t\t\tvar lng = parseFloat( latLng[ 1 ] );\n\t\t\t\tif ( lat && lng ) {\n\t\t\t\t\treturn this.searchPosition( lat, lng );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Start Loading.\n\t\t\tthis.setState( 'loading' );\n\n\t\t\t// Query Geocoder.\n\t\t\tgeocoder.geocode(\n\t\t\t\t{ address: address },\n\t\t\t\tfunction ( results, status ) {\n\t\t\t\t\t//console.log('searchPosition', arguments );\n\n\t\t\t\t\t// End Loading.\n\t\t\t\t\tthis.setState( '' );\n\n\t\t\t\t\t// Status failure.\n\t\t\t\t\tif ( status !== 'OK' ) {\n\t\t\t\t\t\tthis.showNotice( {\n\t\t\t\t\t\t\ttext: acf\n\t\t\t\t\t\t\t\t.__( 'Location not found: %s' )\n\t\t\t\t\t\t\t\t.replace( '%s', status ),\n\t\t\t\t\t\t\ttype: 'warning',\n\t\t\t\t\t\t} );\n\n\t\t\t\t\t\t// Success.\n\t\t\t\t\t} else {\n\t\t\t\t\t\tvar val = this.parseResult( results[ 0 ] );\n\n\t\t\t\t\t\t// Override address data with parameter allowing custom address to be defined in search.\n\t\t\t\t\t\tval.address = address;\n\n\t\t\t\t\t\t// Update value.\n\t\t\t\t\t\tthis.val( val );\n\t\t\t\t\t}\n\t\t\t\t}.bind( this )\n\t\t\t);\n\t\t},\n\n\t\tsearchLocation: function () {\n\t\t\t//console.log('searchLocation' );\n\n\t\t\t// Check HTML5 geolocation.\n\t\t\tif ( ! navigator.geolocation ) {\n\t\t\t\treturn alert(\n\t\t\t\t\tacf.__( 'Sorry, this browser does not support geolocation' )\n\t\t\t\t);\n\t\t\t}\n\n\t\t\t// Start Loading.\n\t\t\tthis.setState( 'loading' );\n\n\t\t\t// Query Geolocation.\n\t\t\tnavigator.geolocation.getCurrentPosition(\n\t\t\t\t// Success.\n\t\t\t\tfunction ( results ) {\n\t\t\t\t\t// End Loading.\n\t\t\t\t\tthis.setState( '' );\n\n\t\t\t\t\t// Search position.\n\t\t\t\t\tvar lat = results.coords.latitude;\n\t\t\t\t\tvar lng = results.coords.longitude;\n\t\t\t\t\tthis.searchPosition( lat, lng );\n\t\t\t\t}.bind( this ),\n\n\t\t\t\t// Failure.\n\t\t\t\tfunction ( error ) {\n\t\t\t\t\tthis.setState( '' );\n\t\t\t\t}.bind( this )\n\t\t\t);\n\t\t},\n\n\t\t/**\n\t\t * parseResult\n\t\t *\n\t\t * Returns location data for the given GeocoderResult object.\n\t\t *\n\t\t * @date\t15/10/19\n\t\t * @since\t5.8.6\n\t\t *\n\t\t * @param\tobject obj A GeocoderResult object.\n\t\t * @return\tobject\n\t\t */\n\t\tparseResult: function ( obj ) {\n\t\t\t// Construct basic data.\n\t\t\tvar result = {\n\t\t\t\taddress: obj.formatted_address,\n\t\t\t\tlat: obj.geometry.location.lat(),\n\t\t\t\tlng: obj.geometry.location.lng(),\n\t\t\t};\n\n\t\t\t// Add zoom level.\n\t\t\tresult.zoom = this.map.getZoom();\n\n\t\t\t// Add place ID.\n\t\t\tif ( obj.place_id ) {\n\t\t\t\tresult.place_id = obj.place_id;\n\t\t\t}\n\n\t\t\t// Add place name.\n\t\t\tif ( obj.name ) {\n\t\t\t\tresult.name = obj.name;\n\t\t\t}\n\n\t\t\t// Create search map for address component data.\n\t\t\tvar map = {\n\t\t\t\tstreet_number: [ 'street_number' ],\n\t\t\t\tstreet_name: [ 'street_address', 'route' ],\n\t\t\t\tcity: [ 'locality', 'postal_town' ],\n\t\t\t\tstate: [\n\t\t\t\t\t'administrative_area_level_1',\n\t\t\t\t\t'administrative_area_level_2',\n\t\t\t\t\t'administrative_area_level_3',\n\t\t\t\t\t'administrative_area_level_4',\n\t\t\t\t\t'administrative_area_level_5',\n\t\t\t\t],\n\t\t\t\tpost_code: [ 'postal_code' ],\n\t\t\t\tcountry: [ 'country' ],\n\t\t\t};\n\n\t\t\t// Loop over map.\n\t\t\tfor ( var k in map ) {\n\t\t\t\tvar keywords = map[ k ];\n\n\t\t\t\t// Loop over address components.\n\t\t\t\tfor ( var i = 0; i < obj.address_components.length; i++ ) {\n\t\t\t\t\tvar component = obj.address_components[ i ];\n\t\t\t\t\tvar component_type = component.types[ 0 ];\n\n\t\t\t\t\t// Look for matching component type.\n\t\t\t\t\tif ( keywords.indexOf( component_type ) !== -1 ) {\n\t\t\t\t\t\t// Append to result.\n\t\t\t\t\t\tresult[ k ] = component.long_name;\n\n\t\t\t\t\t\t// Append short version.\n\t\t\t\t\t\tif ( component.long_name !== component.short_name ) {\n\t\t\t\t\t\t\tresult[ k + '_short' ] = component.short_name;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t/**\n\t\t\t * Filters the parsed result.\n\t\t\t *\n\t\t\t * @date\t18/10/19\n\t\t\t * @since\t5.8.6\n\t\t\t *\n\t\t\t * @param\tobject result The parsed result value.\n\t\t\t * @param\tobject obj The GeocoderResult object.\n\t\t\t */\n\t\t\treturn acf.applyFilters(\n\t\t\t\t'google_map_result',\n\t\t\t\tresult,\n\t\t\t\tobj,\n\t\t\t\tthis.map,\n\t\t\t\tthis\n\t\t\t);\n\t\t},\n\n\t\tonClickClear: function () {\n\t\t\tthis.val( false );\n\t\t},\n\n\t\tonClickLocate: function () {\n\t\t\tthis.searchLocation();\n\t\t},\n\n\t\tonClickSearch: function () {\n\t\t\tthis.searchAddress( this.$search().val() );\n\t\t},\n\n\t\tonFocusSearch: function ( e, $el ) {\n\t\t\tthis.setState( 'searching' );\n\t\t},\n\n\t\tonBlurSearch: function ( e, $el ) {\n\t\t\t// Get saved address value.\n\t\t\tvar val = this.val();\n\t\t\tvar address = val ? val.address : '';\n\n\t\t\t// Remove 'is-searching' if value has not changed.\n\t\t\tif ( $el.val() === address ) {\n\t\t\t\tthis.setState( 'default' );\n\t\t\t}\n\t\t},\n\n\t\tonKeyupSearch: function ( e, $el ) {\n\t\t\t// Clear empty value.\n\t\t\tif ( ! $el.val() ) {\n\t\t\t\tthis.val( false );\n\t\t\t}\n\t\t},\n\n\t\t// Prevent form from submitting.\n\t\tonKeydownSearch: function ( e, $el ) {\n\t\t\tif ( e.which == 13 ) {\n\t\t\t\te.preventDefault();\n\t\t\t\t$el.blur();\n\t\t\t}\n\t\t},\n\n\t\t// Center map once made visible.\n\t\tonShow: function () {\n\t\t\tif ( this.map ) {\n\t\t\t\tthis.setTimeout( this.center );\n\t\t\t}\n\t\t},\n\t} );\n\n\tacf.registerFieldType( Field );\n\n\t// Vars.\n\tvar loading = false;\n\tvar geocoder = false;\n\n\t/**\n\t * withAPI\n\t *\n\t * Loads the Google Maps API library and troggers callback.\n\t *\n\t * @date\t28/3/19\n\t * @since\t5.7.14\n\t *\n\t * @param\tfunction callback The callback to excecute.\n\t * @return\tvoid\n\t */\n\n\tfunction withAPI( callback ) {\n\t\t// Check if geocoder exists.\n\t\tif ( geocoder ) {\n\t\t\treturn callback();\n\t\t}\n\n\t\t// Check if geocoder API exists.\n\t\tif ( acf.isset( window, 'google', 'maps', 'Geocoder' ) ) {\n\t\t\tgeocoder = new google.maps.Geocoder();\n\t\t\treturn callback();\n\t\t}\n\n\t\t// Geocoder will need to be loaded. Hook callback to action.\n\t\tacf.addAction( 'google_map_api_loaded', callback );\n\n\t\t// Bail early if already loading API.\n\t\tif ( loading ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// load api\n\t\tvar url = acf.get( 'google_map_api' );\n\t\tif ( url ) {\n\t\t\t// Set loading status.\n\t\t\tloading = true;\n\n\t\t\t// Load API\n\t\t\t$.ajax( {\n\t\t\t\turl: url,\n\t\t\t\tdataType: 'script',\n\t\t\t\tcache: true,\n\t\t\t\tsuccess: function () {\n\t\t\t\t\tgeocoder = new google.maps.Geocoder();\n\t\t\t\t\tacf.doAction( 'google_map_api_loaded' );\n\t\t\t\t},\n\t\t\t} );\n\t\t}\n\t}\n} )( jQuery );\n","( function ( $, undefined ) {\n\tvar Field = acf.Field.extend( {\n\t\ttype: 'image',\n\n\t\t$control: function () {\n\t\t\treturn this.$( '.acf-image-uploader' );\n\t\t},\n\n\t\t$input: function () {\n\t\t\treturn this.$( 'input[type=\"hidden\"]:first' );\n\t\t},\n\n\t\tevents: {\n\t\t\t'click a[data-name=\"add\"]': 'onClickAdd',\n\t\t\t'click a[data-name=\"edit\"]': 'onClickEdit',\n\t\t\t'click a[data-name=\"remove\"]': 'onClickRemove',\n\t\t\t'change input[type=\"file\"]': 'onChange',\n\t\t},\n\n\t\tinitialize: function () {\n\t\t\t// add attribute to form\n\t\t\tif ( this.get( 'uploader' ) === 'basic' ) {\n\t\t\t\tthis.$el\n\t\t\t\t\t.closest( 'form' )\n\t\t\t\t\t.attr( 'enctype', 'multipart/form-data' );\n\t\t\t}\n\t\t},\n\n\t\tvalidateAttachment: function ( attachment ) {\n\t\t\t// Use WP attachment attributes when available.\n\t\t\tif ( attachment && attachment.attributes ) {\n\t\t\t\tattachment = attachment.attributes;\n\t\t\t}\n\n\t\t\t// Apply defaults.\n\t\t\tattachment = acf.parseArgs( attachment, {\n\t\t\t\tid: 0,\n\t\t\t\turl: '',\n\t\t\t\talt: '',\n\t\t\t\ttitle: '',\n\t\t\t\tcaption: '',\n\t\t\t\tdescription: '',\n\t\t\t\twidth: 0,\n\t\t\t\theight: 0,\n\t\t\t} );\n\n\t\t\t// Override with \"preview size\".\n\t\t\tvar size = acf.isget(\n\t\t\t\tattachment,\n\t\t\t\t'sizes',\n\t\t\t\tthis.get( 'preview_size' )\n\t\t\t);\n\t\t\tif ( size ) {\n\t\t\t\tattachment.url = size.url;\n\t\t\t\tattachment.width = size.width;\n\t\t\t\tattachment.height = size.height;\n\t\t\t}\n\n\t\t\t// Return.\n\t\t\treturn attachment;\n\t\t},\n\n\t\trender: function ( attachment ) {\n\t\t\tattachment = this.validateAttachment( attachment );\n\n\t\t\t// Update DOM.\n\t\t\tthis.$( 'img' ).attr( {\n\t\t\t\tsrc: attachment.url,\n\t\t\t\talt: attachment.alt,\n\t\t\t} );\n\t\t\tif ( attachment.id ) {\n\t\t\t\tthis.val( attachment.id );\n\t\t\t\tthis.$control().addClass( 'has-value' );\n\t\t\t} else {\n\t\t\t\tthis.val( '' );\n\t\t\t\tthis.$control().removeClass( 'has-value' );\n\t\t\t}\n\t\t},\n\n\t\t// create a new repeater row and render value\n\t\tappend: function ( attachment, parent ) {\n\t\t\t// create function to find next available field within parent\n\t\t\tvar getNext = function ( field, parent ) {\n\t\t\t\t// find existing file fields within parent\n\t\t\t\tvar fields = acf.getFields( {\n\t\t\t\t\tkey: field.get( 'key' ),\n\t\t\t\t\tparent: parent.$el,\n\t\t\t\t} );\n\n\t\t\t\t// find the first field with no value\n\t\t\t\tfor ( var i = 0; i < fields.length; i++ ) {\n\t\t\t\t\tif ( ! fields[ i ].val() ) {\n\t\t\t\t\t\treturn fields[ i ];\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// return\n\t\t\t\treturn false;\n\t\t\t};\n\n\t\t\t// find existing file fields within parent\n\t\t\tvar field = getNext( this, parent );\n\n\t\t\t// add new row if no available field\n\t\t\tif ( ! field ) {\n\t\t\t\tparent.$( '.acf-button:last' ).trigger( 'click' );\n\t\t\t\tfield = getNext( this, parent );\n\t\t\t}\n\n\t\t\t// render\n\t\t\tif ( field ) {\n\t\t\t\tfield.render( attachment );\n\t\t\t}\n\t\t},\n\n\t\tselectAttachment: function () {\n\t\t\t// vars\n\t\t\tvar parent = this.parent();\n\t\t\tvar multiple = parent && parent.get( 'type' ) === 'repeater';\n\n\t\t\t// new frame\n\t\t\tvar frame = acf.newMediaPopup( {\n\t\t\t\tmode: 'select',\n\t\t\t\ttype: 'image',\n\t\t\t\ttitle: acf.__( 'Select Image' ),\n\t\t\t\tfield: this.get( 'key' ),\n\t\t\t\tmultiple: multiple,\n\t\t\t\tlibrary: this.get( 'library' ),\n\t\t\t\tallowedTypes: this.get( 'mime_types' ),\n\t\t\t\tselect: $.proxy( function ( attachment, i ) {\n\t\t\t\t\tif ( i > 0 ) {\n\t\t\t\t\t\tthis.append( attachment, parent );\n\t\t\t\t\t} else {\n\t\t\t\t\t\tthis.render( attachment );\n\t\t\t\t\t}\n\t\t\t\t}, this ),\n\t\t\t} );\n\t\t},\n\n\t\teditAttachment: function () {\n\t\t\t// vars\n\t\t\tvar val = this.val();\n\n\t\t\t// bail early if no val\n\t\t\tif ( ! val ) return;\n\n\t\t\t// popup\n\t\t\tvar frame = acf.newMediaPopup( {\n\t\t\t\tmode: 'edit',\n\t\t\t\ttitle: acf.__( 'Edit Image' ),\n\t\t\t\tbutton: acf.__( 'Update Image' ),\n\t\t\t\tattachment: val,\n\t\t\t\tfield: this.get( 'key' ),\n\t\t\t\tselect: $.proxy( function ( attachment, i ) {\n\t\t\t\t\tthis.render( attachment );\n\t\t\t\t}, this ),\n\t\t\t} );\n\t\t},\n\n\t\tremoveAttachment: function () {\n\t\t\tthis.render( false );\n\t\t},\n\n\t\tonClickAdd: function ( e, $el ) {\n\t\t\tthis.selectAttachment();\n\t\t},\n\n\t\tonClickEdit: function ( e, $el ) {\n\t\t\tthis.editAttachment();\n\t\t},\n\n\t\tonClickRemove: function ( e, $el ) {\n\t\t\tthis.removeAttachment();\n\t\t},\n\n\t\tonChange: function ( e, $el ) {\n\t\t\tvar $hiddenInput = this.$input();\n\n\t\t\tif ( ! $el.val() ) {\n\t\t\t\t$hiddenInput.val( '' );\n\t\t\t}\n\n\t\t\tacf.getFileInputData( $el, function ( data ) {\n\t\t\t\t$hiddenInput.val( $.param( data ) );\n\t\t\t} );\n\t\t},\n\t} );\n\n\tacf.registerFieldType( Field );\n} )( jQuery );\n","( function ( $, undefined ) {\n\tvar Field = acf.Field.extend( {\n\t\ttype: 'link',\n\n\t\tevents: {\n\t\t\t'click a[data-name=\"add\"]': 'onClickEdit',\n\t\t\t'click a[data-name=\"edit\"]': 'onClickEdit',\n\t\t\t'click a[data-name=\"remove\"]': 'onClickRemove',\n\t\t\t'change .link-node': 'onChange',\n\t\t},\n\n\t\t$control: function () {\n\t\t\treturn this.$( '.acf-link' );\n\t\t},\n\n\t\t$node: function () {\n\t\t\treturn this.$( '.link-node' );\n\t\t},\n\n\t\tgetValue: function () {\n\t\t\t// vars\n\t\t\tvar $node = this.$node();\n\n\t\t\t// return false if empty\n\t\t\tif ( ! $node.attr( 'href' ) ) {\n\t\t\t\treturn false;\n\t\t\t}\n\n\t\t\t// return\n\t\t\treturn {\n\t\t\t\ttitle: $node.html(),\n\t\t\t\turl: $node.attr( 'href' ),\n\t\t\t\ttarget: $node.attr( 'target' ),\n\t\t\t};\n\t\t},\n\n\t\tsetValue: function ( val ) {\n\t\t\t// default\n\t\t\tval = acf.parseArgs( val, {\n\t\t\t\ttitle: '',\n\t\t\t\turl: '',\n\t\t\t\ttarget: '',\n\t\t\t} );\n\n\t\t\t// vars\n\t\t\tvar $div = this.$control();\n\t\t\tvar $node = this.$node();\n\n\t\t\t// remove class\n\t\t\t$div.removeClass( '-value -external' );\n\n\t\t\t// add class\n\t\t\tif ( val.url ) $div.addClass( '-value' );\n\t\t\tif ( val.target === '_blank' ) $div.addClass( '-external' );\n\n\t\t\t// update text\n\t\t\tthis.$( '.link-title' ).html( val.title );\n\t\t\tthis.$( '.link-url' ).attr( 'href', val.url ).html( val.url );\n\n\t\t\t// update node\n\t\t\t$node.html( val.title );\n\t\t\t$node.attr( 'href', val.url );\n\t\t\t$node.attr( 'target', val.target );\n\n\t\t\t// update inputs\n\t\t\tthis.$( '.input-title' ).val( val.title );\n\t\t\tthis.$( '.input-target' ).val( val.target );\n\t\t\tthis.$( '.input-url' ).val( val.url ).trigger( 'change' );\n\t\t},\n\n\t\tonClickEdit: function ( e, $el ) {\n\t\t\tacf.wpLink.open( this.$node() );\n\t\t},\n\n\t\tonClickRemove: function ( e, $el ) {\n\t\t\tthis.setValue( false );\n\t\t},\n\n\t\tonChange: function ( e, $el ) {\n\t\t\t// get the changed value\n\t\t\tvar val = this.getValue();\n\n\t\t\t// update inputs\n\t\t\tthis.setValue( val );\n\t\t},\n\t} );\n\n\tacf.registerFieldType( Field );\n\n\t// manager\n\tacf.wpLink = new acf.Model( {\n\t\tgetNodeValue: function () {\n\t\t\tvar $node = this.get( 'node' );\n\t\t\treturn {\n\t\t\t\ttitle: acf.decode( $node.html() ),\n\t\t\t\turl: $node.attr( 'href' ),\n\t\t\t\ttarget: $node.attr( 'target' ),\n\t\t\t};\n\t\t},\n\n\t\tsetNodeValue: function ( val ) {\n\t\t\tvar $node = this.get( 'node' );\n\t\t\t$node.text( val.title );\n\t\t\t$node.attr( 'href', val.url );\n\t\t\t$node.attr( 'target', val.target );\n\t\t\t$node.trigger( 'change' );\n\t\t},\n\n\t\tgetInputValue: function () {\n\t\t\treturn {\n\t\t\t\ttitle: $( '#wp-link-text' ).val(),\n\t\t\t\turl: $( '#wp-link-url' ).val(),\n\t\t\t\ttarget: $( '#wp-link-target' ).prop( 'checked' )\n\t\t\t\t\t? '_blank'\n\t\t\t\t\t: '',\n\t\t\t};\n\t\t},\n\n\t\tsetInputValue: function ( val ) {\n\t\t\t$( '#wp-link-text' ).val( val.title );\n\t\t\t$( '#wp-link-url' ).val( val.url );\n\t\t\t$( '#wp-link-target' ).prop( 'checked', val.target === '_blank' );\n\t\t},\n\n\t\topen: function ( $node ) {\n\t\t\t// add events\n\t\t\tthis.on( 'wplink-open', 'onOpen' );\n\t\t\tthis.on( 'wplink-close', 'onClose' );\n\n\t\t\t// set node\n\t\t\tthis.set( 'node', $node );\n\n\t\t\t// create textarea\n\t\t\tvar $textarea = $(\n\t\t\t\t''\n\t\t\t);\n\t\t\t$( 'body' ).append( $textarea );\n\n\t\t\t// vars\n\t\t\tvar val = this.getNodeValue();\n\n\t\t\t// open popup\n\t\t\twpLink.open( 'acf-link-textarea', val.url, val.title, null );\n\t\t},\n\n\t\tonOpen: function () {\n\t\t\t// always show title (WP will hide title if empty)\n\t\t\t$( '#wp-link-wrap' ).addClass( 'has-text-field' );\n\n\t\t\t// set inputs\n\t\t\tvar val = this.getNodeValue();\n\t\t\tthis.setInputValue( val );\n\n\t\t\t// Update button text.\n\t\t\tif ( val.url && wpLinkL10n ) {\n\t\t\t\t$( '#wp-link-submit' ).val( wpLinkL10n.update );\n\t\t\t}\n\t\t},\n\n\t\tclose: function () {\n\t\t\twpLink.close();\n\t\t},\n\n\t\tonClose: function () {\n\t\t\t// Bail early if no node.\n\t\t\t// Needed due to WP triggering this event twice.\n\t\t\tif ( ! this.has( 'node' ) ) {\n\t\t\t\treturn false;\n\t\t\t}\n\n\t\t\t// Determine context.\n\t\t\tvar $submit = $( '#wp-link-submit' );\n\t\t\tvar isSubmit = $submit.is( ':hover' ) || $submit.is( ':focus' );\n\n\t\t\t// Set value\n\t\t\tif ( isSubmit ) {\n\t\t\t\tvar val = this.getInputValue();\n\t\t\t\tthis.setNodeValue( val );\n\t\t\t}\n\n\t\t\t// Cleanup.\n\t\t\tthis.off( 'wplink-open' );\n\t\t\tthis.off( 'wplink-close' );\n\t\t\t$( '#acf-link-textarea' ).remove();\n\t\t\tthis.set( 'node', null );\n\t\t},\n\t} );\n} )( jQuery );\n","( function ( $, undefined ) {\n\tvar Field = acf.Field.extend( {\n\t\ttype: 'oembed',\n\n\t\tevents: {\n\t\t\t'click [data-name=\"clear-button\"]': 'onClickClear',\n\t\t\t'keypress .input-search': 'onKeypressSearch',\n\t\t\t'keyup .input-search': 'onKeyupSearch',\n\t\t\t'change .input-search': 'onChangeSearch',\n\t\t},\n\n\t\t$control: function () {\n\t\t\treturn this.$( '.acf-oembed' );\n\t\t},\n\n\t\t$input: function () {\n\t\t\treturn this.$( '.input-value' );\n\t\t},\n\n\t\t$search: function () {\n\t\t\treturn this.$( '.input-search' );\n\t\t},\n\n\t\tgetValue: function () {\n\t\t\treturn this.$input().val();\n\t\t},\n\n\t\tgetSearchVal: function () {\n\t\t\treturn this.$search().val();\n\t\t},\n\n\t\tsetValue: function ( val ) {\n\t\t\t// class\n\t\t\tif ( val ) {\n\t\t\t\tthis.$control().addClass( 'has-value' );\n\t\t\t} else {\n\t\t\t\tthis.$control().removeClass( 'has-value' );\n\t\t\t}\n\n\t\t\tacf.val( this.$input(), val );\n\t\t},\n\n\t\tshowLoading: function ( show ) {\n\t\t\tacf.showLoading( this.$( '.canvas' ) );\n\t\t},\n\n\t\thideLoading: function () {\n\t\t\tacf.hideLoading( this.$( '.canvas' ) );\n\t\t},\n\n\t\tmaybeSearch: function () {\n\t\t\t// vars\n\t\t\tvar prevUrl = this.val();\n\t\t\tvar url = this.getSearchVal();\n\n\t\t\t// no value\n\t\t\tif ( ! url ) {\n\t\t\t\treturn this.clear();\n\t\t\t}\n\n\t\t\t// fix missing 'http://' - causes the oembed code to error and fail\n\t\t\tif ( url.substr( 0, 4 ) != 'http' ) {\n\t\t\t\turl = 'http://' + url;\n\t\t\t}\n\n\t\t\t// bail early if no change\n\t\t\tif ( url === prevUrl ) return;\n\n\t\t\t// clear existing timeout\n\t\t\tvar timeout = this.get( 'timeout' );\n\t\t\tif ( timeout ) {\n\t\t\t\tclearTimeout( timeout );\n\t\t\t}\n\n\t\t\t// set new timeout\n\t\t\tvar callback = $.proxy( this.search, this, url );\n\t\t\tthis.set( 'timeout', setTimeout( callback, 300 ) );\n\t\t},\n\n\t\tsearch: function ( url ) {\n\t\t\t// ajax\n\t\t\tvar ajaxData = {\n\t\t\t\taction: 'acf/fields/oembed/search',\n\t\t\t\ts: url,\n\t\t\t\tfield_key: this.get( 'key' ),\n\t\t\t};\n\n\t\t\t// clear existing timeout\n\t\t\tvar xhr = this.get( 'xhr' );\n\t\t\tif ( xhr ) {\n\t\t\t\txhr.abort();\n\t\t\t}\n\n\t\t\t// loading\n\t\t\tthis.showLoading();\n\n\t\t\t// query\n\t\t\tvar xhr = $.ajax( {\n\t\t\t\turl: acf.get( 'ajaxurl' ),\n\t\t\t\tdata: acf.prepareForAjax( ajaxData ),\n\t\t\t\ttype: 'post',\n\t\t\t\tdataType: 'json',\n\t\t\t\tcontext: this,\n\t\t\t\tsuccess: function ( json ) {\n\t\t\t\t\t// error\n\t\t\t\t\tif ( ! json || ! json.html ) {\n\t\t\t\t\t\tjson = {\n\t\t\t\t\t\t\turl: false,\n\t\t\t\t\t\t\thtml: '',\n\t\t\t\t\t\t};\n\t\t\t\t\t}\n\n\t\t\t\t\t// update vars\n\t\t\t\t\tthis.val( json.url );\n\t\t\t\t\tthis.$( '.canvas-media' ).html( json.html );\n\t\t\t\t},\n\t\t\t\tcomplete: function () {\n\t\t\t\t\tthis.hideLoading();\n\t\t\t\t},\n\t\t\t} );\n\n\t\t\tthis.set( 'xhr', xhr );\n\t\t},\n\n\t\tclear: function () {\n\t\t\tthis.val( '' );\n\t\t\tthis.$search().val( '' );\n\t\t\tthis.$( '.canvas-media' ).html( '' );\n\t\t},\n\n\t\tonClickClear: function ( e, $el ) {\n\t\t\tthis.clear();\n\t\t},\n\n\t\tonKeypressSearch: function ( e, $el ) {\n\t\t\tif ( e.which == 13 ) {\n\t\t\t\te.preventDefault();\n\t\t\t\tthis.maybeSearch();\n\t\t\t}\n\t\t},\n\n\t\tonKeyupSearch: function ( e, $el ) {\n\t\t\tif ( $el.val() ) {\n\t\t\t\tthis.maybeSearch();\n\t\t\t}\n\t\t},\n\n\t\tonChangeSearch: function ( e, $el ) {\n\t\t\tthis.maybeSearch();\n\t\t},\n\t} );\n\n\tacf.registerFieldType( Field );\n} )( jQuery );\n","( function ( $, undefined ) {\n\tvar Field = acf.models.SelectField.extend( {\n\t\ttype: 'page_link',\n\t} );\n\n\tacf.registerFieldType( Field );\n} )( jQuery );\n","( function ( $, undefined ) {\n\tvar Field = acf.models.SelectField.extend( {\n\t\ttype: 'post_object',\n\t} );\n\n\tacf.registerFieldType( Field );\n} )( jQuery );\n","( function ( $, undefined ) {\n\tvar Field = acf.Field.extend( {\n\t\ttype: 'radio',\n\n\t\tevents: {\n\t\t\t'click input[type=\"radio\"]': 'onClick',\n\t\t},\n\n\t\t$control: function () {\n\t\t\treturn this.$( '.acf-radio-list' );\n\t\t},\n\n\t\t$input: function () {\n\t\t\treturn this.$( 'input:checked' );\n\t\t},\n\n\t\t$inputText: function () {\n\t\t\treturn this.$( 'input[type=\"text\"]' );\n\t\t},\n\n\t\tgetValue: function () {\n\t\t\tvar val = this.$input().val();\n\t\t\tif ( val === 'other' && this.get( 'other_choice' ) ) {\n\t\t\t\tval = this.$inputText().val();\n\t\t\t}\n\t\t\treturn val;\n\t\t},\n\n\t\tonClick: function ( e, $el ) {\n\t\t\t// vars\n\t\t\tvar $label = $el.parent( 'label' );\n\t\t\tvar selected = $label.hasClass( 'selected' );\n\t\t\tvar val = $el.val();\n\n\t\t\t// remove previous selected\n\t\t\tthis.$( '.selected' ).removeClass( 'selected' );\n\n\t\t\t// add active class\n\t\t\t$label.addClass( 'selected' );\n\n\t\t\t// allow null\n\t\t\tif ( this.get( 'allow_null' ) && selected ) {\n\t\t\t\t$label.removeClass( 'selected' );\n\t\t\t\t$el.prop( 'checked', false ).trigger( 'change' );\n\t\t\t\tval = false;\n\t\t\t}\n\n\t\t\t// other\n\t\t\tif ( this.get( 'other_choice' ) ) {\n\t\t\t\t// enable\n\t\t\t\tif ( val === 'other' ) {\n\t\t\t\t\tthis.$inputText().prop( 'disabled', false );\n\n\t\t\t\t\t// disable\n\t\t\t\t} else {\n\t\t\t\t\tthis.$inputText().prop( 'disabled', true );\n\t\t\t\t}\n\t\t\t}\n\t\t},\n\t} );\n\n\tacf.registerFieldType( Field );\n} )( jQuery );\n","( function ( $, undefined ) {\n\tvar Field = acf.Field.extend( {\n\t\ttype: 'range',\n\n\t\tevents: {\n\t\t\t'input input[type=\"range\"]': 'onChange',\n\t\t\t'change input': 'onChange',\n\t\t},\n\n\t\t$input: function () {\n\t\t\treturn this.$( 'input[type=\"range\"]' );\n\t\t},\n\n\t\t$inputAlt: function () {\n\t\t\treturn this.$( 'input[type=\"number\"]' );\n\t\t},\n\n\t\tsetValue: function ( val ) {\n\t\t\tthis.busy = true;\n\n\t\t\t// Update range input (with change).\n\t\t\tacf.val( this.$input(), val );\n\n\t\t\t// Update alt input (without change).\n\t\t\t// Read in input value to inherit min/max validation.\n\t\t\tacf.val( this.$inputAlt(), this.$input().val(), true );\n\n\t\t\tthis.busy = false;\n\t\t},\n\n\t\tonChange: function ( e, $el ) {\n\t\t\tif ( ! this.busy ) {\n\t\t\t\tthis.setValue( $el.val() );\n\t\t\t}\n\t\t},\n\t} );\n\n\tacf.registerFieldType( Field );\n} )( jQuery );\n","( function ( $, undefined ) {\n\tvar Field = acf.Field.extend( {\n\t\ttype: 'relationship',\n\n\t\tevents: {\n\t\t\t'keypress [data-filter]': 'onKeypressFilter',\n\t\t\t'change [data-filter]': 'onChangeFilter',\n\t\t\t'keyup [data-filter]': 'onChangeFilter',\n\t\t\t'click .choices-list .acf-rel-item': 'onClickAdd',\n\t\t\t'keypress .choices-list .acf-rel-item': 'onKeypressFilter',\n\t\t\t'keypress .values-list .acf-rel-item': 'onKeypressFilter',\n\t\t\t'click [data-name=\"remove_item\"]': 'onClickRemove',\n\t\t\t'touchstart .values-list .acf-rel-item': 'onTouchStartValues',\n\t\t},\n\n\t\t$control: function () {\n\t\t\treturn this.$( '.acf-relationship' );\n\t\t},\n\n\t\t$list: function ( list ) {\n\t\t\treturn this.$( '.' + list + '-list' );\n\t\t},\n\n\t\t$listItems: function ( list ) {\n\t\t\treturn this.$list( list ).find( '.acf-rel-item' );\n\t\t},\n\n\t\t$listItem: function ( list, id ) {\n\t\t\treturn this.$list( list ).find(\n\t\t\t\t'.acf-rel-item[data-id=\"' + id + '\"]'\n\t\t\t);\n\t\t},\n\n\t\tgetValue: function () {\n\t\t\tvar val = [];\n\t\t\tthis.$listItems( 'values' ).each( function () {\n\t\t\t\tval.push( $( this ).data( 'id' ) );\n\t\t\t} );\n\t\t\treturn val.length ? val : false;\n\t\t},\n\n\t\tnewChoice: function ( props ) {\n\t\t\treturn [\n\t\t\t\t'
  • ',\n\t\t\t\t'' +\n\t\t\t\t\tprops.text +\n\t\t\t\t\t'',\n\t\t\t\t'
  • ',\n\t\t\t].join( '' );\n\t\t},\n\n\t\tnewValue: function ( props ) {\n\t\t\treturn [\n\t\t\t\t'
  • ',\n\t\t\t\t'',\n\t\t\t\t'' +\n\t\t\t\t\tprops.text,\n\t\t\t\t'',\n\t\t\t\t'',\n\t\t\t\t'
  • ',\n\t\t\t].join( '' );\n\t\t},\n\n\t\tinitialize: function () {\n\t\t\t// Delay initialization until \"interacted with\" or \"in view\".\n\t\t\tvar delayed = this.proxy(\n\t\t\t\tacf.once( function () {\n\t\t\t\t\t// Add sortable.\n\t\t\t\t\tthis.$list( 'values' ).sortable( {\n\t\t\t\t\t\titems: 'li',\n\t\t\t\t\t\tforceHelperSize: true,\n\t\t\t\t\t\tforcePlaceholderSize: true,\n\t\t\t\t\t\tscroll: true,\n\t\t\t\t\t\tupdate: this.proxy( function () {\n\t\t\t\t\t\t\tthis.$input().trigger( 'change' );\n\t\t\t\t\t\t} ),\n\t\t\t\t\t} );\n\n\t\t\t\t\t// Avoid browser remembering old scroll position and add event.\n\t\t\t\t\tthis.$list( 'choices' )\n\t\t\t\t\t\t.scrollTop( 0 )\n\t\t\t\t\t\t.on( 'scroll', this.proxy( this.onScrollChoices ) );\n\n\t\t\t\t\t// Fetch choices.\n\t\t\t\t\tthis.fetch();\n\t\t\t\t} )\n\t\t\t);\n\n\t\t\t// Bind \"interacted with\".\n\t\t\tthis.$el.one( 'mouseover', delayed );\n\t\t\tthis.$el.one( 'focus', 'input', delayed );\n\n\t\t\t// Bind \"in view\".\n\t\t\tacf.onceInView( this.$el, delayed );\n\t\t},\n\n\t\tonScrollChoices: function ( e ) {\n\t\t\t// bail early if no more results\n\t\t\tif ( this.get( 'loading' ) || ! this.get( 'more' ) ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// Scrolled to bottom\n\t\t\tvar $list = this.$list( 'choices' );\n\t\t\tvar scrollTop = Math.ceil( $list.scrollTop() );\n\t\t\tvar scrollHeight = Math.ceil( $list[ 0 ].scrollHeight );\n\t\t\tvar innerHeight = Math.ceil( $list.innerHeight() );\n\t\t\tvar paged = this.get( 'paged' ) || 1;\n\t\t\tif ( scrollTop + innerHeight >= scrollHeight ) {\n\t\t\t\t// update paged\n\t\t\t\tthis.set( 'paged', paged + 1 );\n\n\t\t\t\t// fetch\n\t\t\t\tthis.fetch();\n\t\t\t}\n\t\t},\n\n\t\tonKeypressFilter: function ( e, $el ) {\n\t\t\t// Receive enter key when selecting relationship items.\n\t\t\tif ( $el.hasClass( 'acf-rel-item-add' ) && e.which == 13 ) {\n\t\t\t\tthis.onClickAdd(e, $el);\n\t\t\t}\n\t\t\t// Receive enter key when removing relationship items.\n\t\t\tif ( $el.hasClass( 'acf-rel-item-remove' ) && e.which == 13 ) {\n\t\t\t\tthis.onClickRemove(e, $el);\n\t\t\t}\n\t\t\t// don't submit form\n\t\t\tif ( e.which == 13 ) {\n\t\t\t\te.preventDefault();\n\t\t\t}\n\t\t},\n\n\t\tonChangeFilter: function ( e, $el ) {\n\t\t\t// vars\n\t\t\tvar val = $el.val();\n\t\t\tvar filter = $el.data( 'filter' );\n\n\t\t\t// Bail early if filter has not changed\n\t\t\tif ( this.get( filter ) === val ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// update attr\n\t\t\tthis.set( filter, val );\n\n\t\t\t// reset paged\n\t\t\tthis.set( 'paged', 1 );\n\n\t\t\t// fetch\n\t\t\tif ( $el.is( 'select' ) ) {\n\t\t\t\tthis.fetch();\n\n\t\t\t\t// search must go through timeout\n\t\t\t} else {\n\t\t\t\tthis.maybeFetch();\n\t\t\t}\n\t\t},\n\n\t\tonClickAdd: function ( e, $el ) {\n\t\t\t// vars\n\t\t\tvar val = this.val();\n\t\t\tvar max = parseInt( this.get( 'max' ) );\n\n\t\t\t// can be added?\n\t\t\tif ( $el.hasClass( 'disabled' ) ) {\n\t\t\t\treturn false;\n\t\t\t}\n\n\t\t\t// validate\n\t\t\tif ( max > 0 && val && val.length >= max ) {\n\t\t\t\t// add notice\n\t\t\t\tthis.showNotice( {\n\t\t\t\t\ttext: acf\n\t\t\t\t\t\t.__( 'Maximum values reached ( {max} values )' )\n\t\t\t\t\t\t.replace( '{max}', max ),\n\t\t\t\t\ttype: 'warning',\n\t\t\t\t} );\n\t\t\t\treturn false;\n\t\t\t}\n\n\t\t\t// disable\n\t\t\t$el.addClass( 'disabled' );\n\n\t\t\t// add\n\t\t\tvar html = this.newValue( {\n\t\t\t\tid: $el.data( 'id' ),\n\t\t\t\ttext: $el.html(),\n\t\t\t} );\n\t\t\tthis.$list( 'values' ).append( html );\n\n\t\t\t// trigger change\n\t\t\tthis.$input().trigger( 'change' );\n\t\t},\n\n\t\tonClickRemove: function ( e, $el ) {\n\t\t\t// Prevent default here because generic handler wont be triggered.\n\t\t\te.preventDefault();\n\n\t\t\tlet $span;\n\t\t\t// Behavior if triggered from tabbed event.\n\t\t\tif ( $el.hasClass( 'acf-rel-item-remove' )) {\n\t\t\t\t$span = $el;\n\t\t\t} else {\n\t\t\t\t// Behavior if triggered through click event.\n\t\t\t\t$span = $el.parent();\n\t\t\t}\n\n\t\t\t// vars\n\t\t\tconst $li = $span.parent();\n\t\t\tconst id = $span.data( 'id' );\n\n\t\t\t// remove value\n\t\t\t$li.remove();\n\n\t\t\t// show choice\n\t\t\tthis.$listItem( 'choices', id ).removeClass( 'disabled' );\n\n\t\t\t// trigger change\n\t\t\tthis.$input().trigger( 'change' );\n\t\t},\n\n\t\tonTouchStartValues: function( e, $el ) {\n\t\t\t$( this.$listItems( 'values' ) ).removeClass( 'relationship-hover' );\n\t\t\t$el.addClass( 'relationship-hover' );\n\t\t},\n\n\t\tmaybeFetch: function () {\n\t\t\t// vars\n\t\t\tvar timeout = this.get( 'timeout' );\n\n\t\t\t// abort timeout\n\t\t\tif ( timeout ) {\n\t\t\t\tclearTimeout( timeout );\n\t\t\t}\n\n\t\t\t// fetch\n\t\t\ttimeout = this.setTimeout( this.fetch, 300 );\n\t\t\tthis.set( 'timeout', timeout );\n\t\t},\n\n\t\tgetAjaxData: function () {\n\t\t\t// load data based on element attributes\n\t\t\tvar ajaxData = this.$control().data();\n\t\t\tfor ( var name in ajaxData ) {\n\t\t\t\tajaxData[ name ] = this.get( name );\n\t\t\t}\n\n\t\t\t// extra\n\t\t\tajaxData.action = 'acf/fields/relationship/query';\n\t\t\tajaxData.field_key = this.get( 'key' );\n\n\t\t\t// Filter.\n\t\t\tajaxData = acf.applyFilters(\n\t\t\t\t'relationship_ajax_data',\n\t\t\t\tajaxData,\n\t\t\t\tthis\n\t\t\t);\n\n\t\t\t// return\n\t\t\treturn ajaxData;\n\t\t},\n\n\t\tfetch: function () {\n\t\t\t// abort XHR if this field is already loading AJAX data\n\t\t\tvar xhr = this.get( 'xhr' );\n\t\t\tif ( xhr ) {\n\t\t\t\txhr.abort();\n\t\t\t}\n\n\t\t\t// add to this.o\n\t\t\tvar ajaxData = this.getAjaxData();\n\n\t\t\t// clear html if is new query\n\t\t\tvar $choiceslist = this.$list( 'choices' );\n\t\t\tif ( ajaxData.paged == 1 ) {\n\t\t\t\t$choiceslist.html( '' );\n\t\t\t}\n\n\t\t\t// loading\n\t\t\tvar $loading = $(\n\t\t\t\t'
  • ' +\n\t\t\t\t\tacf.__( 'Loading' ) +\n\t\t\t\t\t'
  • '\n\t\t\t);\n\t\t\t$choiceslist.append( $loading );\n\t\t\tthis.set( 'loading', true );\n\n\t\t\t// callback\n\t\t\tvar onComplete = function () {\n\t\t\t\tthis.set( 'loading', false );\n\t\t\t\t$loading.remove();\n\t\t\t};\n\n\t\t\tvar onSuccess = function ( json ) {\n\t\t\t\t// no results\n\t\t\t\tif ( ! json || ! json.results || ! json.results.length ) {\n\t\t\t\t\t// prevent pagination\n\t\t\t\t\tthis.set( 'more', false );\n\n\t\t\t\t\t// add message\n\t\t\t\t\tif ( this.get( 'paged' ) == 1 ) {\n\t\t\t\t\t\tthis.$list( 'choices' ).append(\n\t\t\t\t\t\t\t'
  • ' + acf.__( 'No matches found' ) + '
  • '\n\t\t\t\t\t\t);\n\t\t\t\t\t}\n\n\t\t\t\t\t// return\n\t\t\t\t\treturn;\n\t\t\t\t}\n\n\t\t\t\t// set more (allows pagination scroll)\n\t\t\t\tthis.set( 'more', json.more );\n\n\t\t\t\t// get new results\n\t\t\t\tvar html = this.walkChoices( json.results );\n\t\t\t\tvar $html = $( html );\n\n\t\t\t\t// apply .disabled to left li's\n\t\t\t\tvar val = this.val();\n\t\t\t\tif ( val && val.length ) {\n\t\t\t\t\tval.map( function ( id ) {\n\t\t\t\t\t\t$html\n\t\t\t\t\t\t\t.find( '.acf-rel-item[data-id=\"' + id + '\"]' )\n\t\t\t\t\t\t\t.addClass( 'disabled' );\n\t\t\t\t\t} );\n\t\t\t\t}\n\n\t\t\t\t// append\n\t\t\t\t$choiceslist.append( $html );\n\n\t\t\t\t// merge together groups\n\t\t\t\tvar $prevLabel = false;\n\t\t\t\tvar $prevList = false;\n\n\t\t\t\t$choiceslist.find( '.acf-rel-label' ).each( function () {\n\t\t\t\t\tvar $label = $( this );\n\t\t\t\t\tvar $list = $label.siblings( 'ul' );\n\n\t\t\t\t\tif ( $prevLabel && $prevLabel.text() == $label.text() ) {\n\t\t\t\t\t\t$prevList.append( $list.children() );\n\t\t\t\t\t\t$( this ).parent().remove();\n\t\t\t\t\t\treturn;\n\t\t\t\t\t}\n\n\t\t\t\t\t// update vars\n\t\t\t\t\t$prevLabel = $label;\n\t\t\t\t\t$prevList = $list;\n\t\t\t\t} );\n\t\t\t};\n\n\t\t\t// get results\n\t\t\tvar xhr = $.ajax( {\n\t\t\t\turl: acf.get( 'ajaxurl' ),\n\t\t\t\tdataType: 'json',\n\t\t\t\ttype: 'post',\n\t\t\t\tdata: acf.prepareForAjax( ajaxData ),\n\t\t\t\tcontext: this,\n\t\t\t\tsuccess: onSuccess,\n\t\t\t\tcomplete: onComplete,\n\t\t\t} );\n\n\t\t\t// set\n\t\t\tthis.set( 'xhr', xhr );\n\t\t},\n\n\t\twalkChoices: function ( data ) {\n\t\t\t// walker\n\t\t\tvar walk = function ( data ) {\n\t\t\t\t// vars\n\t\t\t\tvar html = '';\n\n\t\t\t\t// is array\n\t\t\t\tif ( $.isArray( data ) ) {\n\t\t\t\t\tdata.map( function ( item ) {\n\t\t\t\t\t\thtml += walk( item );\n\t\t\t\t\t} );\n\n\t\t\t\t\t// is item\n\t\t\t\t} else if ( $.isPlainObject( data ) ) {\n\t\t\t\t\t// group\n\t\t\t\t\tif ( data.children !== undefined ) {\n\t\t\t\t\t\thtml +=\n\t\t\t\t\t\t\t'
  • ' +\n\t\t\t\t\t\t\tacf.escHtml( data.text ) +\n\t\t\t\t\t\t\t'
      ';\n\t\t\t\t\t\thtml += walk( data.children );\n\t\t\t\t\t\thtml += '
  • ';\n\n\t\t\t\t\t\t// single\n\t\t\t\t\t} else {\n\t\t\t\t\t\thtml +=\n\t\t\t\t\t\t\t'
  • ' +\n\t\t\t\t\t\t\tacf.escHtml( data.text ) +\n\t\t\t\t\t\t\t'
  • ';\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// return\n\t\t\t\treturn html;\n\t\t\t};\n\n\t\t\treturn walk( data );\n\t\t},\n\t} );\n\n\tacf.registerFieldType( Field );\n} )( jQuery );\n","( function ( $, undefined ) {\n\tvar Field = acf.Field.extend( {\n\t\ttype: 'select',\n\n\t\tselect2: false,\n\n\t\twait: 'load',\n\n\t\tevents: {\n\t\t\tremoveField: 'onRemove',\n\t\t\tduplicateField: 'onDuplicate',\n\t\t},\n\n\t\t$input: function () {\n\t\t\treturn this.$( 'select' );\n\t\t},\n\n\t\tinitialize: function () {\n\t\t\t// vars\n\t\t\tvar $select = this.$input();\n\n\t\t\t// inherit data\n\t\t\tthis.inherit( $select );\n\n\t\t\t// select2\n\t\t\tif ( this.get( 'ui' ) ) {\n\t\t\t\t// populate ajax_data (allowing custom attribute to already exist)\n\t\t\t\tvar ajaxAction = this.get( 'ajax_action' );\n\t\t\t\tif ( ! ajaxAction ) {\n\t\t\t\t\tajaxAction = 'acf/fields/' + this.get( 'type' ) + '/query';\n\t\t\t\t}\n\n\t\t\t\t// select2\n\t\t\t\tthis.select2 = acf.newSelect2( $select, {\n\t\t\t\t\tfield: this,\n\t\t\t\t\tajax: this.get( 'ajax' ),\n\t\t\t\t\tmultiple: this.get( 'multiple' ),\n\t\t\t\t\tplaceholder: this.get( 'placeholder' ),\n\t\t\t\t\tallowNull: this.get( 'allow_null' ),\n\t\t\t\t\tajaxAction: ajaxAction,\n\t\t\t\t} );\n\t\t\t}\n\t\t},\n\n\t\tonRemove: function () {\n\t\t\tif ( this.select2 ) {\n\t\t\t\tthis.select2.destroy();\n\t\t\t}\n\t\t},\n\n\t\tonDuplicate: function ( e, $el, $duplicate ) {\n\t\t\tif ( this.select2 ) {\n\t\t\t\t$duplicate.find( '.select2-container' ).remove();\n\t\t\t\t$duplicate\n\t\t\t\t\t.find( 'select' )\n\t\t\t\t\t.removeClass( 'select2-hidden-accessible' );\n\t\t\t}\n\t\t},\n\t} );\n\n\tacf.registerFieldType( Field );\n} )( jQuery );\n","( function ( $, undefined ) {\n\t// vars\n\tvar CONTEXT = 'tab';\n\n\tvar Field = acf.Field.extend( {\n\t\ttype: 'tab',\n\n\t\twait: '',\n\n\t\ttabs: false,\n\n\t\ttab: false,\n\n\t\tevents: {\n\t\t\tduplicateField: 'onDuplicate',\n\t\t},\n\n\t\tfindFields: function () {\n\t\t\tlet filter;\n\n\t\t\t/**\n\t\t\t * Tabs in the admin UI that can be extended by third\n\t\t\t * parties have the child settings wrapped inside an extra div,\n\t\t\t * so we need to look for that instead of an adjacent .acf-field.\n\t\t\t */\n\t\t\tswitch ( this.get( 'key' ) ) {\n\t\t\t\tcase 'acf_field_settings_tabs':\n\t\t\t\t\tfilter = '.acf-field-settings-main';\n\t\t\t\t\tbreak;\n\t\t\t\tcase 'acf_field_group_settings_tabs':\n\t\t\t\t\tfilter = '.field-group-settings-tab';\n\t\t\t\t\tbreak;\n\t\t\t\tcase 'acf_browse_fields_tabs':\n\t\t\t\t\tfilter = '.acf-field-types-tab';\n\t\t\t\t\tbreak;\n\t\t\t\tcase 'acf_post_type_tabs':\n\t\t\t\t\tfilter = '.acf-post-type-advanced-settings';\n\t\t\t\t\tbreak;\n\t\t\t\tcase 'acf_taxonomy_tabs':\n\t\t\t\t\tfilter = '.acf-taxonomy-advanced-settings';\n\t\t\t\t\tbreak;\n\t\t\t\tcase 'acf_ui_options_page_tabs':\n\t\t\t\t\tfilter = '.acf-ui-options-page-advanced-settings';\n\t\t\t\t\tbreak;\n\t\t\t\tdefault:\n\t\t\t\t\tfilter = '.acf-field';\n\t\t\t}\n\n\t\t\treturn this.$el.nextUntil( '.acf-field-tab', filter );\n\t\t},\n\n\t\tgetFields: function () {\n\t\t\treturn acf.getFields( this.findFields() );\n\t\t},\n\n\t\tfindTabs: function () {\n\t\t\treturn this.$el.prevAll( '.acf-tab-wrap:first' );\n\t\t},\n\n\t\tfindTab: function () {\n\t\t\treturn this.$( '.acf-tab-button' );\n\t\t},\n\n\t\tinitialize: function () {\n\t\t\t// bail early if is td\n\t\t\tif ( this.$el.is( 'td' ) ) {\n\t\t\t\tthis.events = {};\n\t\t\t\treturn false;\n\t\t\t}\n\n\t\t\t// vars\n\t\t\tvar $tabs = this.findTabs();\n\t\t\tvar $tab = this.findTab();\n\t\t\tvar settings = acf.parseArgs( $tab.data(), {\n\t\t\t\tendpoint: false,\n\t\t\t\tplacement: '',\n\t\t\t\tbefore: this.$el,\n\t\t\t} );\n\n\t\t\t// create wrap\n\t\t\tif ( ! $tabs.length || settings.endpoint ) {\n\t\t\t\tthis.tabs = new Tabs( settings );\n\t\t\t} else {\n\t\t\t\tthis.tabs = $tabs.data( 'acf' );\n\t\t\t}\n\n\t\t\t// add tab\n\t\t\tthis.tab = this.tabs.addTab( $tab, this );\n\t\t},\n\n\t\tisActive: function () {\n\t\t\treturn this.tab.isActive();\n\t\t},\n\n\t\tshowFields: function () {\n\t\t\t// show fields\n\t\t\tthis.getFields().map( function ( field ) {\n\t\t\t\tfield.show( this.cid, CONTEXT );\n\t\t\t\tfield.hiddenByTab = false;\n\t\t\t}, this );\n\t\t},\n\n\t\thideFields: function () {\n\t\t\t// hide fields\n\t\t\tthis.getFields().map( function ( field ) {\n\t\t\t\tfield.hide( this.cid, CONTEXT );\n\t\t\t\tfield.hiddenByTab = this.tab;\n\t\t\t}, this );\n\t\t},\n\n\t\tshow: function ( lockKey ) {\n\t\t\t// show field and store result\n\t\t\tvar visible = acf.Field.prototype.show.apply( this, arguments );\n\n\t\t\t// check if now visible\n\t\t\tif ( visible ) {\n\t\t\t\t// show tab\n\t\t\t\tthis.tab.show();\n\n\t\t\t\t// check active tabs\n\t\t\t\tthis.tabs.refresh();\n\t\t\t}\n\n\t\t\t// return\n\t\t\treturn visible;\n\t\t},\n\n\t\thide: function ( lockKey ) {\n\t\t\t// hide field and store result\n\t\t\tvar hidden = acf.Field.prototype.hide.apply( this, arguments );\n\n\t\t\t// check if now hidden\n\t\t\tif ( hidden ) {\n\t\t\t\t// hide tab\n\t\t\t\tthis.tab.hide();\n\n\t\t\t\t// reset tabs if this was active\n\t\t\t\tif ( this.isActive() ) {\n\t\t\t\t\tthis.tabs.reset();\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// return\n\t\t\treturn hidden;\n\t\t},\n\n\t\tenable: function ( lockKey ) {\n\t\t\t// enable fields\n\t\t\tthis.getFields().map( function ( field ) {\n\t\t\t\tfield.enable( CONTEXT );\n\t\t\t} );\n\t\t},\n\n\t\tdisable: function ( lockKey ) {\n\t\t\t// disable fields\n\t\t\tthis.getFields().map( function ( field ) {\n\t\t\t\tfield.disable( CONTEXT );\n\t\t\t} );\n\t\t},\n\n\t\tonDuplicate: function ( e, $el, $duplicate ) {\n\t\t\tif ( this.isActive() ) {\n\t\t\t\t$duplicate.prevAll( '.acf-tab-wrap:first' ).remove();\n\t\t\t}\n\t\t},\n\t} );\n\n\tacf.registerFieldType( Field );\n\n\t/**\n\t * tabs\n\t *\n\t * description\n\t *\n\t * @date\t8/2/18\n\t * @since\t5.6.5\n\t *\n\t * @param\ttype $var Description. Default.\n\t * @return\ttype Description.\n\t */\n\n\tvar i = 0;\n\tvar Tabs = acf.Model.extend( {\n\t\ttabs: [],\n\n\t\tactive: false,\n\n\t\tactions: {\n\t\t\trefresh: 'onRefresh',\n\t\t\tclose_field_object: 'onCloseFieldObject',\n\t\t},\n\n\t\tdata: {\n\t\t\tbefore: false,\n\t\t\tplacement: 'top',\n\t\t\tindex: 0,\n\t\t\tinitialized: false,\n\t\t},\n\n\t\tsetup: function ( settings ) {\n\t\t\t// data\n\t\t\t$.extend( this.data, settings );\n\n\t\t\t// define this prop to avoid scope issues\n\t\t\tthis.tabs = [];\n\t\t\tthis.active = false;\n\n\t\t\t// vars\n\t\t\tvar placement = this.get( 'placement' );\n\t\t\tvar $before = this.get( 'before' );\n\t\t\tvar $parent = $before.parent();\n\n\t\t\t// add sidebar for left placement\n\t\t\tif ( placement == 'left' && $parent.hasClass( 'acf-fields' ) ) {\n\t\t\t\t$parent.addClass( '-sidebar' );\n\t\t\t}\n\n\t\t\t// create wrap\n\t\t\tif ( $before.is( 'tr' ) ) {\n\t\t\t\tthis.$el = $(\n\t\t\t\t\t'
    '\n\t\t\t\t);\n\t\t\t} else {\n\t\t\t\tlet ulClass = 'acf-hl acf-tab-group';\n\n\t\t\t\tif ( this.get( 'key' ) === 'acf_field_settings_tabs' ) {\n\t\t\t\t\tulClass = 'acf-field-settings-tab-bar';\n\t\t\t\t}\n\n\t\t\t\tthis.$el = $(\n\t\t\t\t\t'
      '\n\t\t\t\t);\n\t\t\t}\n\n\t\t\t// append\n\t\t\t$before.before( this.$el );\n\n\t\t\t// set index\n\t\t\tthis.set( 'index', i, true );\n\t\t\ti++;\n\t\t},\n\n\t\tinitializeTabs: function () {\n\t\t\t// Bail if tabs are disabled.\n\t\t\tif (\n\t\t\t\t'acf_field_settings_tabs' === this.get( 'key' ) &&\n\t\t\t\t$( '#acf-field-group-fields' ).hasClass( 'hide-tabs' )\n\t\t\t) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// find first visible tab\n\t\t\tvar tab = this.getVisible().shift();\n\n\t\t\t// remember previous tab state\n\t\t\tvar order = acf.getPreference( 'this.tabs' ) || [];\n\t\t\tvar groupIndex = this.get( 'index' );\n\t\t\tvar tabIndex = order[ groupIndex ];\n\n\t\t\tif ( this.tabs[ tabIndex ] && this.tabs[ tabIndex ].isVisible() ) {\n\t\t\t\ttab = this.tabs[ tabIndex ];\n\t\t\t}\n\n\t\t\t// select\n\t\t\tif ( tab ) {\n\t\t\t\tthis.selectTab( tab );\n\t\t\t} else {\n\t\t\t\tthis.closeTabs();\n\t\t\t}\n\n\t\t\t// set local variable used by tabsManager\n\t\t\tthis.set( 'initialized', true );\n\t\t},\n\n\t\tgetVisible: function () {\n\t\t\treturn this.tabs.filter( function ( tab ) {\n\t\t\t\treturn tab.isVisible();\n\t\t\t} );\n\t\t},\n\n\t\tgetActive: function () {\n\t\t\treturn this.active;\n\t\t},\n\n\t\tsetActive: function ( tab ) {\n\t\t\treturn ( this.active = tab );\n\t\t},\n\n\t\thasActive: function () {\n\t\t\treturn this.active !== false;\n\t\t},\n\n\t\tisActive: function ( tab ) {\n\t\t\tvar active = this.getActive();\n\t\t\treturn active && active.cid === tab.cid;\n\t\t},\n\n\t\tcloseActive: function () {\n\t\t\tif ( this.hasActive() ) {\n\t\t\t\tthis.closeTab( this.getActive() );\n\t\t\t}\n\t\t},\n\n\t\topenTab: function ( tab ) {\n\t\t\t// close existing tab\n\t\t\tthis.closeActive();\n\n\t\t\t// open\n\t\t\ttab.open();\n\n\t\t\t// set active\n\t\t\tthis.setActive( tab );\n\t\t},\n\n\t\tcloseTab: function ( tab ) {\n\t\t\t// close\n\t\t\ttab.close();\n\n\t\t\t// set active\n\t\t\tthis.setActive( false );\n\t\t},\n\n\t\tcloseTabs: function () {\n\t\t\tthis.tabs.map( this.closeTab, this );\n\t\t},\n\n\t\tselectTab: function ( tab ) {\n\t\t\t// close other tabs\n\t\t\tthis.tabs.map( function ( t ) {\n\t\t\t\tif ( tab.cid !== t.cid ) {\n\t\t\t\t\tthis.closeTab( t );\n\t\t\t\t}\n\t\t\t}, this );\n\n\t\t\t// open\n\t\t\tthis.openTab( tab );\n\t\t},\n\n\t\taddTab: function ( $a, field ) {\n\t\t\t// create
    • \n\t\t\tvar $li = $( '
    • ' + $a.outerHTML() + '
    • ' );\n\n\t\t\t// add settings type class.\n\t\t\tvar classes = $a.attr( 'class' ).replace( 'acf-tab-button', '' );\n\t\t\t$li.addClass( classes );\n\n\t\t\t// append\n\t\t\tthis.$( 'ul' ).append( $li );\n\n\t\t\t// initialize\n\t\t\tvar tab = new Tab( {\n\t\t\t\t$el: $li,\n\t\t\t\tfield: field,\n\t\t\t\tgroup: this,\n\t\t\t} );\n\n\t\t\t// store\n\t\t\tthis.tabs.push( tab );\n\n\t\t\t// return\n\t\t\treturn tab;\n\t\t},\n\n\t\treset: function () {\n\t\t\t// close existing tab\n\t\t\tthis.closeActive();\n\n\t\t\t// find and active a tab\n\t\t\treturn this.refresh();\n\t\t},\n\n\t\trefresh: function () {\n\t\t\t// bail early if active already exists\n\t\t\tif ( this.hasActive() ) {\n\t\t\t\treturn false;\n\t\t\t}\n\t\t\t// find next active tab\n\t\t\tvar tab = this.getVisible().shift();\n\t\t\t// open tab\n\t\t\tif ( tab ) {\n\t\t\t\tthis.openTab( tab );\n\t\t\t}\n\n\t\t\t// return\n\t\t\treturn tab;\n\t\t},\n\n\t\tonRefresh: function () {\n\t\t\t// only for left placements\n\t\t\tif ( this.get( 'placement' ) !== 'left' ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// vars\n\t\t\tvar $parent = this.$el.parent();\n\t\t\tvar $list = this.$el.children( 'ul' );\n\t\t\tvar attribute = $parent.is( 'td' ) ? 'height' : 'min-height';\n\n\t\t\t// find height (minus 1 for border-bottom)\n\t\t\tvar height = $list.position().top + $list.outerHeight( true ) - 1;\n\n\t\t\t// add css\n\t\t\t$parent.css( attribute, height );\n\t\t},\n\n\t\tonCloseFieldObject: function ( fieldObject ) {\n\t\t\tconst tab = this.getVisible().find( ( item ) => {\n\t\t\t\tconst id = item.$el.closest( 'div[data-id]' ).data( 'id' );\n\t\t\t\tif ( fieldObject.data.id === id ) {\n\t\t\t\t\treturn item;\n\t\t\t\t}\n\t\t\t} );\n\n\t\t\tif ( tab ) {\n\t\t\t\t// Wait for field group drawer to close\n\t\t\t\tsetTimeout( () => {\n\t\t\t\t\tthis.openTab( tab );\n\t\t\t\t}, 300 );\n\t\t\t}\n\t\t},\n\t} );\n\n\tvar Tab = acf.Model.extend( {\n\t\tgroup: false,\n\n\t\tfield: false,\n\n\t\tevents: {\n\t\t\t'click a': 'onClick',\n\t\t},\n\n\t\tindex: function () {\n\t\t\treturn this.$el.index();\n\t\t},\n\n\t\tisVisible: function () {\n\t\t\treturn acf.isVisible( this.$el );\n\t\t},\n\n\t\tisActive: function () {\n\t\t\treturn this.$el.hasClass( 'active' );\n\t\t},\n\n\t\topen: function () {\n\t\t\t// add class\n\t\t\tthis.$el.addClass( 'active' );\n\n\t\t\t// show field\n\t\t\tthis.field.showFields();\n\t\t},\n\n\t\tclose: function () {\n\t\t\t// remove class\n\t\t\tthis.$el.removeClass( 'active' );\n\n\t\t\t// hide field\n\t\t\tthis.field.hideFields();\n\t\t},\n\n\t\tonClick: function ( e, $el ) {\n\t\t\t// prevent default\n\t\t\te.preventDefault();\n\n\t\t\t// toggle\n\t\t\tthis.toggle();\n\t\t},\n\n\t\ttoggle: function () {\n\t\t\t// bail early if already active\n\t\t\tif ( this.isActive() ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// toggle this tab\n\t\t\tthis.group.openTab( this );\n\t\t},\n\t} );\n\n\tvar tabsManager = new acf.Model( {\n\t\tpriority: 50,\n\n\t\tactions: {\n\t\t\tprepare: 'render',\n\t\t\tappend: 'render',\n\t\t\tunload: 'onUnload',\n\t\t\tshow: 'render',\n\t\t\tinvalid_field: 'onInvalidField',\n\t\t},\n\n\t\tfindTabs: function () {\n\t\t\treturn $( '.acf-tab-wrap' );\n\t\t},\n\n\t\tgetTabs: function () {\n\t\t\treturn acf.getInstances( this.findTabs() );\n\t\t},\n\n\t\trender: function ( $el ) {\n\t\t\tthis.getTabs().map( function ( tabs ) {\n\t\t\t\tif ( ! tabs.get( 'initialized' ) ) {\n\t\t\t\t\ttabs.initializeTabs();\n\t\t\t\t}\n\t\t\t} );\n\t\t},\n\n\t\tonInvalidField: function ( field ) {\n\t\t\t// bail early if busy\n\t\t\tif ( this.busy ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// ignore if not hidden by tab\n\t\t\tif ( ! field.hiddenByTab ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// toggle tab\n\t\t\tfield.hiddenByTab.toggle();\n\n\t\t\t// ignore other invalid fields\n\t\t\tthis.busy = true;\n\t\t\tthis.setTimeout( function () {\n\t\t\t\tthis.busy = false;\n\t\t\t}, 100 );\n\t\t},\n\n\t\tonUnload: function () {\n\t\t\t// vars\n\t\t\tvar order = [];\n\n\t\t\t// loop\n\t\t\tthis.getTabs().map( function ( group ) {\n\t\t\t\t// Do not save selected tab on field settings, or an acf-advanced-settings when unloading\n\t\t\t\tif (\n\t\t\t\t\tgroup.$el.children( '.acf-field-settings-tab-bar' )\n\t\t\t\t\t\t.length ||\n\t\t\t\t\tgroup.$el.parents( '#acf-advanced-settings.postbox' ).length\n\t\t\t\t) {\n\t\t\t\t\treturn true;\n\t\t\t\t}\n\n\t\t\t\tvar active = group.hasActive() ? group.getActive().index() : 0;\n\t\t\t\torder.push( active );\n\t\t\t} );\n\n\t\t\t// bail if no tabs\n\t\t\tif ( ! order.length ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// update\n\t\t\tacf.setPreference( 'this.tabs', order );\n\t\t},\n\t} );\n} )( jQuery );\n","( function ( $, undefined ) {\n\tvar Field = acf.Field.extend( {\n\t\ttype: 'taxonomy',\n\n\t\tdata: {\n\t\t\tftype: 'select',\n\t\t},\n\n\t\tselect2: false,\n\n\t\twait: 'load',\n\n\t\tevents: {\n\t\t\t'click a[data-name=\"add\"]': 'onClickAdd',\n\t\t\t'click input[type=\"radio\"]': 'onClickRadio',\n\t\t\tremoveField: 'onRemove',\n\t\t},\n\n\t\t$control: function () {\n\t\t\treturn this.$( '.acf-taxonomy-field' );\n\t\t},\n\n\t\t$input: function () {\n\t\t\treturn this.getRelatedPrototype().$input.apply( this, arguments );\n\t\t},\n\n\t\tgetRelatedType: function () {\n\t\t\t// vars\n\t\t\tvar fieldType = this.get( 'ftype' );\n\n\t\t\t// normalize\n\t\t\tif ( fieldType == 'multi_select' ) {\n\t\t\t\tfieldType = 'select';\n\t\t\t}\n\n\t\t\t// return\n\t\t\treturn fieldType;\n\t\t},\n\n\t\tgetRelatedPrototype: function () {\n\t\t\treturn acf.getFieldType( this.getRelatedType() ).prototype;\n\t\t},\n\n\t\tgetValue: function () {\n\t\t\treturn this.getRelatedPrototype().getValue.apply( this, arguments );\n\t\t},\n\n\t\tsetValue: function () {\n\t\t\treturn this.getRelatedPrototype().setValue.apply( this, arguments );\n\t\t},\n\n\t\tinitialize: function () {\n\t\t\tthis.getRelatedPrototype().initialize.apply( this, arguments );\n\t\t},\n\n\t\tonRemove: function () {\n\t\t\tvar proto = this.getRelatedPrototype();\n\t\t\tif ( proto.onRemove ) {\n\t\t\t\tproto.onRemove.apply( this, arguments );\n\t\t\t}\n\t\t},\n\n\t\tonClickAdd: function ( e, $el ) {\n\t\t\t// vars\n\t\t\tvar field = this;\n\t\t\tvar popup = false;\n\t\t\tvar $form = false;\n\t\t\tvar $name = false;\n\t\t\tvar $parent = false;\n\t\t\tvar $button = false;\n\t\t\tvar $message = false;\n\t\t\tvar notice = false;\n\n\t\t\t// step 1.\n\t\t\tvar step1 = function () {\n\t\t\t\t// popup\n\t\t\t\tpopup = acf.newPopup( {\n\t\t\t\t\ttitle: $el.attr( 'title' ),\n\t\t\t\t\tloading: true,\n\t\t\t\t\twidth: '300px',\n\t\t\t\t} );\n\n\t\t\t\t// ajax\n\t\t\t\tvar ajaxData = {\n\t\t\t\t\taction: 'acf/fields/taxonomy/add_term',\n\t\t\t\t\tfield_key: field.get( 'key' ),\n\t\t\t\t};\n\n\t\t\t\t// get HTML\n\t\t\t\t$.ajax( {\n\t\t\t\t\turl: acf.get( 'ajaxurl' ),\n\t\t\t\t\tdata: acf.prepareForAjax( ajaxData ),\n\t\t\t\t\ttype: 'post',\n\t\t\t\t\tdataType: 'html',\n\t\t\t\t\tsuccess: step2,\n\t\t\t\t} );\n\t\t\t};\n\n\t\t\t// step 2.\n\t\t\tvar step2 = function ( html ) {\n\t\t\t\t// update popup\n\t\t\t\tpopup.loading( false );\n\t\t\t\tpopup.content( html );\n\n\t\t\t\t// vars\n\t\t\t\t$form = popup.$( 'form' );\n\t\t\t\t$name = popup.$( 'input[name=\"term_name\"]' );\n\t\t\t\t$parent = popup.$( 'select[name=\"term_parent\"]' );\n\t\t\t\t$button = popup.$( '.acf-submit-button' );\n\n\t\t\t\t// focus\n\t\t\t\t$name.trigger( 'focus' );\n\n\t\t\t\t// submit form\n\t\t\t\tpopup.on( 'submit', 'form', step3 );\n\t\t\t};\n\n\t\t\t// step 3.\n\t\t\tvar step3 = function ( e, $el ) {\n\t\t\t\t// prevent\n\t\t\t\te.preventDefault();\n\t\t\t\te.stopImmediatePropagation();\n\n\t\t\t\t// basic validation\n\t\t\t\tif ( $name.val() === '' ) {\n\t\t\t\t\t$name.trigger( 'focus' );\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\n\t\t\t\t// disable\n\t\t\t\tacf.startButtonLoading( $button );\n\n\t\t\t\t// ajax\n\t\t\t\tvar ajaxData = {\n\t\t\t\t\taction: 'acf/fields/taxonomy/add_term',\n\t\t\t\t\tfield_key: field.get( 'key' ),\n\t\t\t\t\tterm_name: $name.val(),\n\t\t\t\t\tterm_parent: $parent.length ? $parent.val() : 0,\n\t\t\t\t};\n\n\t\t\t\t$.ajax( {\n\t\t\t\t\turl: acf.get( 'ajaxurl' ),\n\t\t\t\t\tdata: acf.prepareForAjax( ajaxData ),\n\t\t\t\t\ttype: 'post',\n\t\t\t\t\tdataType: 'json',\n\t\t\t\t\tsuccess: step4,\n\t\t\t\t} );\n\t\t\t};\n\n\t\t\t// step 4.\n\t\t\tvar step4 = function ( json ) {\n\t\t\t\t// enable\n\t\t\t\tacf.stopButtonLoading( $button );\n\n\t\t\t\t// remove prev notice\n\t\t\t\tif ( notice ) {\n\t\t\t\t\tnotice.remove();\n\t\t\t\t}\n\n\t\t\t\t// success\n\t\t\t\tif ( acf.isAjaxSuccess( json ) ) {\n\t\t\t\t\t// clear name\n\t\t\t\t\t$name.val( '' );\n\n\t\t\t\t\t// update term lists\n\t\t\t\t\tstep5( json.data );\n\n\t\t\t\t\t// notice\n\t\t\t\t\tnotice = acf.newNotice( {\n\t\t\t\t\t\ttype: 'success',\n\t\t\t\t\t\ttext: acf.getAjaxMessage( json ),\n\t\t\t\t\t\ttarget: $form,\n\t\t\t\t\t\ttimeout: 2000,\n\t\t\t\t\t\tdismiss: false,\n\t\t\t\t\t} );\n\t\t\t\t} else {\n\t\t\t\t\t// notice\n\t\t\t\t\tnotice = acf.newNotice( {\n\t\t\t\t\t\ttype: 'error',\n\t\t\t\t\t\ttext: acf.getAjaxError( json ),\n\t\t\t\t\t\ttarget: $form,\n\t\t\t\t\t\ttimeout: 2000,\n\t\t\t\t\t\tdismiss: false,\n\t\t\t\t\t} );\n\t\t\t\t}\n\n\t\t\t\t// focus\n\t\t\t\t$name.trigger( 'focus' );\n\t\t\t};\n\n\t\t\t// step 5.\n\t\t\tvar step5 = function ( term ) {\n\t\t\t\t// update parent dropdown\n\t\t\t\tvar $option = $(\n\t\t\t\t\t''\n\t\t\t\t);\n\t\t\t\tif ( term.term_parent ) {\n\t\t\t\t\t$parent\n\t\t\t\t\t\t.children( 'option[value=\"' + term.term_parent + '\"]' )\n\t\t\t\t\t\t.after( $option );\n\t\t\t\t} else {\n\t\t\t\t\t$parent.append( $option );\n\t\t\t\t}\n\n\t\t\t\t// add this new term to all taxonomy field\n\t\t\t\tvar fields = acf.getFields( {\n\t\t\t\t\ttype: 'taxonomy',\n\t\t\t\t} );\n\n\t\t\t\tfields.map( function ( otherField ) {\n\t\t\t\t\tif (\n\t\t\t\t\t\totherField.get( 'taxonomy' ) == field.get( 'taxonomy' )\n\t\t\t\t\t) {\n\t\t\t\t\t\totherField.appendTerm( term );\n\t\t\t\t\t}\n\t\t\t\t} );\n\n\t\t\t\t// select\n\t\t\t\tfield.selectTerm( term.term_id );\n\t\t\t};\n\n\t\t\t// run\n\t\t\tstep1();\n\t\t},\n\n\t\tappendTerm: function ( term ) {\n\t\t\tif ( this.getRelatedType() == 'select' ) {\n\t\t\t\tthis.appendTermSelect( term );\n\t\t\t} else {\n\t\t\t\tthis.appendTermCheckbox( term );\n\t\t\t}\n\t\t},\n\n\t\tappendTermSelect: function ( term ) {\n\t\t\tthis.select2.addOption( {\n\t\t\t\tid: term.term_id,\n\t\t\t\ttext: term.term_label,\n\t\t\t} );\n\t\t},\n\n\t\tappendTermCheckbox: function ( term ) {\n\t\t\t// vars\n\t\t\tvar name = this.$( '[name]:first' ).attr( 'name' );\n\t\t\tvar $ul = this.$( 'ul:first' );\n\n\t\t\t// allow multiple selection\n\t\t\tif ( this.getRelatedType() == 'checkbox' ) {\n\t\t\t\tname += '[]';\n\t\t\t}\n\n\t\t\t// create new li\n\t\t\tvar $li = $(\n\t\t\t\t[\n\t\t\t\t\t'
    • ',\n\t\t\t\t\t'',\n\t\t\t\t\t'
    • ',\n\t\t\t\t].join( '' )\n\t\t\t);\n\n\t\t\t// find parent\n\t\t\tif ( term.term_parent ) {\n\t\t\t\t// vars\n\t\t\t\tvar $parent = $ul.find(\n\t\t\t\t\t'li[data-id=\"' + term.term_parent + '\"]'\n\t\t\t\t);\n\n\t\t\t\t// update vars\n\t\t\t\t$ul = $parent.children( 'ul' );\n\n\t\t\t\t// create ul\n\t\t\t\tif ( ! $ul.exists() ) {\n\t\t\t\t\t$ul = $( '
        ' );\n\t\t\t\t\t$parent.append( $ul );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// append\n\t\t\t$ul.append( $li );\n\t\t},\n\n\t\tselectTerm: function ( id ) {\n\t\t\tif ( this.getRelatedType() == 'select' ) {\n\t\t\t\tthis.select2.selectOption( id );\n\t\t\t} else {\n\t\t\t\tvar $input = this.$( 'input[value=\"' + id + '\"]' );\n\t\t\t\t$input.prop( 'checked', true ).trigger( 'change' );\n\t\t\t}\n\t\t},\n\n\t\tonClickRadio: function ( e, $el ) {\n\t\t\t// vars\n\t\t\tvar $label = $el.parent( 'label' );\n\t\t\tvar selected = $label.hasClass( 'selected' );\n\n\t\t\t// remove previous selected\n\t\t\tthis.$( '.selected' ).removeClass( 'selected' );\n\n\t\t\t// add active class\n\t\t\t$label.addClass( 'selected' );\n\n\t\t\t// allow null\n\t\t\tif ( this.get( 'allow_null' ) && selected ) {\n\t\t\t\t$label.removeClass( 'selected' );\n\t\t\t\t$el.prop( 'checked', false ).trigger( 'change' );\n\t\t\t}\n\t\t},\n\t} );\n\n\tacf.registerFieldType( Field );\n} )( jQuery );\n","( function ( $, undefined ) {\n\tvar Field = acf.models.DatePickerField.extend( {\n\t\ttype: 'time_picker',\n\n\t\t$control: function () {\n\t\t\treturn this.$( '.acf-time-picker' );\n\t\t},\n\n\t\tinitialize: function () {\n\t\t\t// vars\n\t\t\tvar $input = this.$input();\n\t\t\tvar $inputText = this.$inputText();\n\n\t\t\t// args\n\t\t\tvar args = {\n\t\t\t\ttimeFormat: this.get( 'time_format' ),\n\t\t\t\taltField: $input,\n\t\t\t\taltFieldTimeOnly: false,\n\t\t\t\taltTimeFormat: 'HH:mm:ss',\n\t\t\t\tshowButtonPanel: true,\n\t\t\t\tcontrolType: 'select',\n\t\t\t\toneLine: true,\n\t\t\t\tcloseText: acf.get( 'dateTimePickerL10n' ).selectText,\n\t\t\t\ttimeOnly: true,\n\t\t\t};\n\n\t\t\t// add custom 'Close = Select' functionality\n\t\t\targs.onClose = function ( value, dp_instance, t_instance ) {\n\t\t\t\t// vars\n\t\t\t\tvar $close = dp_instance.dpDiv.find( '.ui-datepicker-close' );\n\n\t\t\t\t// if clicking close button\n\t\t\t\tif ( ! value && $close.is( ':hover' ) ) {\n\t\t\t\t\tt_instance._updateDateTime();\n\t\t\t\t}\n\t\t\t};\n\n\t\t\t// filter\n\t\t\targs = acf.applyFilters( 'time_picker_args', args, this );\n\n\t\t\t// add date time picker\n\t\t\tacf.newTimePicker( $inputText, args );\n\n\t\t\t// action\n\t\t\tacf.doAction( 'time_picker_init', $inputText, args, this );\n\t\t},\n\t} );\n\n\tacf.registerFieldType( Field );\n\n\t// add\n\tacf.newTimePicker = function ( $input, args ) {\n\t\t// bail early if no datepicker library\n\t\tif ( typeof $.timepicker === 'undefined' ) {\n\t\t\treturn false;\n\t\t}\n\n\t\t// defaults\n\t\targs = args || {};\n\n\t\t// initialize\n\t\t$input.timepicker( args );\n\n\t\t// wrap the datepicker (only if it hasn't already been wrapped)\n\t\tif ( $( 'body > #ui-datepicker-div' ).exists() ) {\n\t\t\t$( 'body > #ui-datepicker-div' ).wrap(\n\t\t\t\t'
        '\n\t\t\t);\n\t\t}\n\t};\n} )( jQuery );\n","( function ( $, undefined ) {\n\tvar Field = acf.Field.extend( {\n\t\ttype: 'true_false',\n\n\t\tevents: {\n\t\t\t'change .acf-switch-input': 'onChange',\n\t\t\t'focus .acf-switch-input': 'onFocus',\n\t\t\t'blur .acf-switch-input': 'onBlur',\n\t\t\t'keypress .acf-switch-input': 'onKeypress',\n\t\t},\n\n\t\t$input: function () {\n\t\t\treturn this.$( 'input[type=\"checkbox\"]' );\n\t\t},\n\n\t\t$switch: function () {\n\t\t\treturn this.$( '.acf-switch' );\n\t\t},\n\n\t\tgetValue: function () {\n\t\t\treturn this.$input().prop( 'checked' ) ? 1 : 0;\n\t\t},\n\n\t\tinitialize: function () {\n\t\t\tthis.render();\n\t\t},\n\n\t\trender: function () {\n\t\t\t// vars\n\t\t\tvar $switch = this.$switch();\n\n\t\t\t// bail early if no $switch\n\t\t\tif ( ! $switch.length ) return;\n\n\t\t\t// vars\n\t\t\tvar $on = $switch.children( '.acf-switch-on' );\n\t\t\tvar $off = $switch.children( '.acf-switch-off' );\n\t\t\tvar width = Math.max( $on.width(), $off.width() );\n\n\t\t\t// bail early if no width\n\t\t\tif ( ! width ) return;\n\n\t\t\t// set widths\n\t\t\t$on.css( 'min-width', width );\n\t\t\t$off.css( 'min-width', width );\n\t\t},\n\n\t\tswitchOn: function () {\n\t\t\tthis.$input().prop( 'checked', true );\n\t\t\tthis.$switch().addClass( '-on' );\n\t\t},\n\n\t\tswitchOff: function () {\n\t\t\tthis.$input().prop( 'checked', false );\n\t\t\tthis.$switch().removeClass( '-on' );\n\t\t},\n\n\t\tonChange: function ( e, $el ) {\n\t\t\tif ( $el.prop( 'checked' ) ) {\n\t\t\t\tthis.switchOn();\n\t\t\t} else {\n\t\t\t\tthis.switchOff();\n\t\t\t}\n\t\t},\n\n\t\tonFocus: function ( e, $el ) {\n\t\t\tthis.$switch().addClass( '-focus' );\n\t\t},\n\n\t\tonBlur: function ( e, $el ) {\n\t\t\tthis.$switch().removeClass( '-focus' );\n\t\t},\n\n\t\tonKeypress: function ( e, $el ) {\n\t\t\t// left\n\t\t\tif ( e.keyCode === 37 ) {\n\t\t\t\treturn this.switchOff();\n\t\t\t}\n\n\t\t\t// right\n\t\t\tif ( e.keyCode === 39 ) {\n\t\t\t\treturn this.switchOn();\n\t\t\t}\n\t\t},\n\t} );\n\n\tacf.registerFieldType( Field );\n} )( jQuery );\n","( function ( $, undefined ) {\n\tvar Field = acf.Field.extend( {\n\t\ttype: 'url',\n\n\t\tevents: {\n\t\t\t'keyup input[type=\"url\"]': 'onkeyup',\n\t\t},\n\n\t\t$control: function () {\n\t\t\treturn this.$( '.acf-input-wrap' );\n\t\t},\n\n\t\t$input: function () {\n\t\t\treturn this.$( 'input[type=\"url\"]' );\n\t\t},\n\n\t\tinitialize: function () {\n\t\t\tthis.render();\n\t\t},\n\n\t\tisValid: function () {\n\t\t\t// vars\n\t\t\tvar val = this.val();\n\n\t\t\t// bail early if no val\n\t\t\tif ( ! val ) {\n\t\t\t\treturn false;\n\t\t\t}\n\n\t\t\t// url\n\t\t\tif ( val.indexOf( '://' ) !== -1 ) {\n\t\t\t\treturn true;\n\t\t\t}\n\n\t\t\t// protocol relative url\n\t\t\tif ( val.indexOf( '//' ) === 0 ) {\n\t\t\t\treturn true;\n\t\t\t}\n\n\t\t\t// return\n\t\t\treturn false;\n\t\t},\n\n\t\trender: function () {\n\t\t\t// add class\n\t\t\tif ( this.isValid() ) {\n\t\t\t\tthis.$control().addClass( '-valid' );\n\t\t\t} else {\n\t\t\t\tthis.$control().removeClass( '-valid' );\n\t\t\t}\n\t\t},\n\n\t\tonkeyup: function ( e, $el ) {\n\t\t\tthis.render();\n\t\t},\n\t} );\n\n\tacf.registerFieldType( Field );\n} )( jQuery );\n","( function ( $, undefined ) {\n\tvar Field = acf.models.SelectField.extend( {\n\t\ttype: 'user',\n\t} );\n\n\tacf.registerFieldType( Field );\n\n\tacf.addFilter(\n\t\t'select2_ajax_data',\n\t\tfunction ( data, args, $input, field, select2 ) {\n\t\t\tif ( ! field ) {\n\t\t\t\treturn data;\n\t\t\t}\n\n\t\t\tconst query_nonce = field.get( 'queryNonce' );\n\t\t\tif ( query_nonce && query_nonce.length ) {\n\t\t\t\tdata.user_query_nonce = query_nonce;\n\t\t\t}\n\n\t\t\treturn data;\n\t\t}\n\t);\n} )( jQuery );\n","( function ( $, undefined ) {\n\tvar Field = acf.Field.extend( {\n\t\ttype: 'wysiwyg',\n\n\t\twait: 'load',\n\n\t\tevents: {\n\t\t\t'mousedown .acf-editor-wrap.delay': 'onMousedown',\n\t\t\tunmountField: 'disableEditor',\n\t\t\tremountField: 'enableEditor',\n\t\t\tremoveField: 'disableEditor',\n\t\t},\n\n\t\t$control: function () {\n\t\t\treturn this.$( '.acf-editor-wrap' );\n\t\t},\n\n\t\t$input: function () {\n\t\t\treturn this.$( 'textarea' );\n\t\t},\n\n\t\tgetMode: function () {\n\t\t\treturn this.$control().hasClass( 'tmce-active' )\n\t\t\t\t? 'visual'\n\t\t\t\t: 'text';\n\t\t},\n\n\t\tinitialize: function () {\n\t\t\t// initializeEditor if no delay\n\t\t\tif ( ! this.$control().hasClass( 'delay' ) ) {\n\t\t\t\tthis.initializeEditor();\n\t\t\t}\n\t\t},\n\n\t\tinitializeEditor: function () {\n\t\t\t// vars\n\t\t\tvar $wrap = this.$control();\n\t\t\tvar $textarea = this.$input();\n\t\t\tvar args = {\n\t\t\t\ttinymce: true,\n\t\t\t\tquicktags: true,\n\t\t\t\ttoolbar: this.get( 'toolbar' ),\n\t\t\t\tmode: this.getMode(),\n\t\t\t\tfield: this,\n\t\t\t};\n\n\t\t\t// generate new id\n\t\t\tvar oldId = $textarea.attr( 'id' );\n\t\t\tvar newId = acf.uniqueId( 'acf-editor-' );\n\n\t\t\t// Backup textarea data.\n\t\t\tvar inputData = $textarea.data();\n\t\t\tvar inputVal = $textarea.val();\n\n\t\t\t// rename\n\t\t\tacf.rename( {\n\t\t\t\ttarget: $wrap,\n\t\t\t\tsearch: oldId,\n\t\t\t\treplace: newId,\n\t\t\t\tdestructive: true,\n\t\t\t} );\n\n\t\t\t// update id\n\t\t\tthis.set( 'id', newId, true );\n\n\t\t\t// apply data to new textarea (acf.rename creates a new textarea element due to destructive mode)\n\t\t\t// fixes bug where conditional logic \"disabled\" is lost during \"screen_check\"\n\t\t\tthis.$input().data( inputData ).val( inputVal );\n\n\t\t\t// initialize\n\t\t\tacf.tinymce.initialize( newId, args );\n\t\t},\n\n\t\tonMousedown: function ( e ) {\n\t\t\t// prevent default\n\t\t\te.preventDefault();\n\n\t\t\t// remove delay class\n\t\t\tvar $wrap = this.$control();\n\t\t\t$wrap.removeClass( 'delay' );\n\t\t\t$wrap.find( '.acf-editor-toolbar' ).remove();\n\n\t\t\t// initialize\n\t\t\tthis.initializeEditor();\n\t\t},\n\n\t\tenableEditor: function () {\n\t\t\tif ( this.getMode() == 'visual' ) {\n\t\t\t\tacf.tinymce.enable( this.get( 'id' ) );\n\t\t\t}\n\t\t},\n\n\t\tdisableEditor: function () {\n\t\t\tacf.tinymce.destroy( this.get( 'id' ) );\n\t\t},\n\t} );\n\n\tacf.registerFieldType( Field );\n} )( jQuery );\n","( function ( $, undefined ) {\n\t// vars\n\tvar storage = [];\n\n\t/**\n\t * acf.Field\n\t *\n\t * description\n\t *\n\t * @date\t23/3/18\n\t * @since\t5.6.9\n\t *\n\t * @param\ttype $var Description. Default.\n\t * @return\ttype Description.\n\t */\n\n\tacf.Field = acf.Model.extend( {\n\t\t// field type\n\t\ttype: '',\n\n\t\t// class used to avoid nested event triggers\n\t\teventScope: '.acf-field',\n\n\t\t// initialize events on 'ready'\n\t\twait: 'ready',\n\n\t\t/**\n\t\t * setup\n\t\t *\n\t\t * Called during the constructor function to setup this field ready for initialization\n\t\t *\n\t\t * @date\t8/5/18\n\t\t * @since\t5.6.9\n\t\t *\n\t\t * @param\tjQuery $field The field element.\n\t\t * @return\tvoid\n\t\t */\n\n\t\tsetup: function ( $field ) {\n\t\t\t// set $el\n\t\t\tthis.$el = $field;\n\n\t\t\t// inherit $field data\n\t\t\tthis.inherit( $field );\n\n\t\t\t// inherit controll data\n\t\t\tthis.inherit( this.$control() );\n\t\t},\n\n\t\t/**\n\t\t * val\n\t\t *\n\t\t * Sets or returns the field's value\n\t\t *\n\t\t * @date\t8/5/18\n\t\t * @since\t5.6.9\n\t\t *\n\t\t * @param\tmixed val Optional. The value to set\n\t\t * @return\tmixed\n\t\t */\n\n\t\tval: function ( val ) {\n\t\t\t// Set.\n\t\t\tif ( val !== undefined ) {\n\t\t\t\treturn this.setValue( val );\n\n\t\t\t\t// Get.\n\t\t\t} else {\n\t\t\t\treturn this.prop( 'disabled' ) ? null : this.getValue();\n\t\t\t}\n\t\t},\n\n\t\t/**\n\t\t * getValue\n\t\t *\n\t\t * returns the field's value\n\t\t *\n\t\t * @date\t8/5/18\n\t\t * @since\t5.6.9\n\t\t *\n\t\t * @param\tvoid\n\t\t * @return\tmixed\n\t\t */\n\n\t\tgetValue: function () {\n\t\t\treturn this.$input().val();\n\t\t},\n\n\t\t/**\n\t\t * setValue\n\t\t *\n\t\t * sets the field's value and returns true if changed\n\t\t *\n\t\t * @date\t8/5/18\n\t\t * @since\t5.6.9\n\t\t *\n\t\t * @param\tmixed val\n\t\t * @return\tboolean. True if changed.\n\t\t */\n\n\t\tsetValue: function ( val ) {\n\t\t\treturn acf.val( this.$input(), val );\n\t\t},\n\n\t\t/**\n\t\t * __\n\t\t *\n\t\t * i18n helper to be removed\n\t\t *\n\t\t * @date\t8/5/18\n\t\t * @since\t5.6.9\n\t\t *\n\t\t * @param\ttype $var Description. Default.\n\t\t * @return\ttype Description.\n\t\t */\n\n\t\t__: function ( string ) {\n\t\t\treturn acf._e( this.type, string );\n\t\t},\n\n\t\t/**\n\t\t * $control\n\t\t *\n\t\t * returns the control jQuery element used for inheriting data. Uses this.control setting.\n\t\t *\n\t\t * @date\t8/5/18\n\t\t * @since\t5.6.9\n\t\t *\n\t\t * @param\tvoid\n\t\t * @return\tjQuery\n\t\t */\n\n\t\t$control: function () {\n\t\t\treturn false;\n\t\t},\n\n\t\t/**\n\t\t * $input\n\t\t *\n\t\t * returns the input jQuery element used for saving values. Uses this.input setting.\n\t\t *\n\t\t * @date\t8/5/18\n\t\t * @since\t5.6.9\n\t\t *\n\t\t * @param\tvoid\n\t\t * @return\tjQuery\n\t\t */\n\n\t\t$input: function () {\n\t\t\treturn this.$( '[name]:first' );\n\t\t},\n\n\t\t/**\n\t\t * $inputWrap\n\t\t *\n\t\t * description\n\t\t *\n\t\t * @date\t12/5/18\n\t\t * @since\t5.6.9\n\t\t *\n\t\t * @param\ttype $var Description. Default.\n\t\t * @return\ttype Description.\n\t\t */\n\n\t\t$inputWrap: function () {\n\t\t\treturn this.$( '.acf-input:first' );\n\t\t},\n\n\t\t/**\n\t\t * $inputWrap\n\t\t *\n\t\t * description\n\t\t *\n\t\t * @date\t12/5/18\n\t\t * @since\t5.6.9\n\t\t *\n\t\t * @param\ttype $var Description. Default.\n\t\t * @return\ttype Description.\n\t\t */\n\n\t\t$labelWrap: function () {\n\t\t\treturn this.$( '.acf-label:first' );\n\t\t},\n\n\t\t/**\n\t\t * getInputName\n\t\t *\n\t\t * Returns the field's input name\n\t\t *\n\t\t * @date\t8/5/18\n\t\t * @since\t5.6.9\n\t\t *\n\t\t * @param\tvoid\n\t\t * @return\tstring\n\t\t */\n\n\t\tgetInputName: function () {\n\t\t\treturn this.$input().attr( 'name' ) || '';\n\t\t},\n\n\t\t/**\n\t\t * parent\n\t\t *\n\t\t * returns the field's parent field or false on failure.\n\t\t *\n\t\t * @date\t8/5/18\n\t\t * @since\t5.6.9\n\t\t *\n\t\t * @param\tvoid\n\t\t * @return\tobject|false\n\t\t */\n\n\t\tparent: function () {\n\t\t\t// vars\n\t\t\tvar parents = this.parents();\n\n\t\t\t// return\n\t\t\treturn parents.length ? parents[ 0 ] : false;\n\t\t},\n\n\t\t/**\n\t\t * parents\n\t\t *\n\t\t * description\n\t\t *\n\t\t * @date\t9/7/18\n\t\t * @since\t5.6.9\n\t\t *\n\t\t * @param\ttype $var Description. Default.\n\t\t * @return\ttype Description.\n\t\t */\n\n\t\tparents: function () {\n\t\t\t// vars\n\t\t\tvar $parents = this.$el.parents( '.acf-field' );\n\n\t\t\t// convert\n\t\t\tvar parents = acf.getFields( $parents );\n\n\t\t\t// return\n\t\t\treturn parents;\n\t\t},\n\n\t\tshow: function ( lockKey, context ) {\n\t\t\t// show field and store result\n\t\t\tvar changed = acf.show( this.$el, lockKey );\n\n\t\t\t// do action if visibility has changed\n\t\t\tif ( changed ) {\n\t\t\t\tthis.prop( 'hidden', false );\n\t\t\t\tacf.doAction( 'show_field', this, context );\n\t\t\t}\n\n\t\t\t// return\n\t\t\treturn changed;\n\t\t},\n\n\t\thide: function ( lockKey, context ) {\n\t\t\t// hide field and store result\n\t\t\tvar changed = acf.hide( this.$el, lockKey );\n\n\t\t\t// do action if visibility has changed\n\t\t\tif ( changed ) {\n\t\t\t\tthis.prop( 'hidden', true );\n\t\t\t\tacf.doAction( 'hide_field', this, context );\n\t\t\t}\n\n\t\t\t// return\n\t\t\treturn changed;\n\t\t},\n\n\t\tenable: function ( lockKey, context ) {\n\t\t\t// enable field and store result\n\t\t\tvar changed = acf.enable( this.$el, lockKey );\n\n\t\t\t// do action if disabled has changed\n\t\t\tif ( changed ) {\n\t\t\t\tthis.prop( 'disabled', false );\n\t\t\t\tacf.doAction( 'enable_field', this, context );\n\t\t\t}\n\n\t\t\t// return\n\t\t\treturn changed;\n\t\t},\n\n\t\tdisable: function ( lockKey, context ) {\n\t\t\t// disabled field and store result\n\t\t\tvar changed = acf.disable( this.$el, lockKey );\n\n\t\t\t// do action if disabled has changed\n\t\t\tif ( changed ) {\n\t\t\t\tthis.prop( 'disabled', true );\n\t\t\t\tacf.doAction( 'disable_field', this, context );\n\t\t\t}\n\n\t\t\t// return\n\t\t\treturn changed;\n\t\t},\n\n\t\tshowEnable: function ( lockKey, context ) {\n\t\t\t// enable\n\t\t\tthis.enable.apply( this, arguments );\n\n\t\t\t// show and return true if changed\n\t\t\treturn this.show.apply( this, arguments );\n\t\t},\n\n\t\thideDisable: function ( lockKey, context ) {\n\t\t\t// disable\n\t\t\tthis.disable.apply( this, arguments );\n\n\t\t\t// hide and return true if changed\n\t\t\treturn this.hide.apply( this, arguments );\n\t\t},\n\n\t\tshowNotice: function ( props ) {\n\t\t\t// ensure object\n\t\t\tif ( typeof props !== 'object' ) {\n\t\t\t\tprops = { text: props };\n\t\t\t}\n\n\t\t\t// remove old notice\n\t\t\tif ( this.notice ) {\n\t\t\t\tthis.notice.remove();\n\t\t\t}\n\n\t\t\t// create new notice\n\t\t\tprops.target = this.$inputWrap();\n\t\t\tthis.notice = acf.newNotice( props );\n\t\t},\n\n\t\tremoveNotice: function ( timeout ) {\n\t\t\tif ( this.notice ) {\n\t\t\t\tthis.notice.away( timeout || 0 );\n\t\t\t\tthis.notice = false;\n\t\t\t}\n\t\t},\n\n\t\tshowError: function ( message ) {\n\t\t\t// add class\n\t\t\tthis.$el.addClass( 'acf-error' );\n\n\t\t\t// add message\n\t\t\tif ( message !== undefined ) {\n\t\t\t\tthis.showNotice( {\n\t\t\t\t\ttext: message,\n\t\t\t\t\ttype: 'error',\n\t\t\t\t\tdismiss: false,\n\t\t\t\t} );\n\t\t\t}\n\n\t\t\t// action\n\t\t\tacf.doAction( 'invalid_field', this );\n\n\t\t\t// add event\n\t\t\tthis.$el.one(\n\t\t\t\t'focus change',\n\t\t\t\t'input, select, textarea',\n\t\t\t\t$.proxy( this.removeError, this )\n\t\t\t);\n\t\t},\n\n\t\tremoveError: function () {\n\t\t\t// remove class\n\t\t\tthis.$el.removeClass( 'acf-error' );\n\n\t\t\t// remove notice\n\t\t\tthis.removeNotice( 250 );\n\n\t\t\t// action\n\t\t\tacf.doAction( 'valid_field', this );\n\t\t},\n\n\t\ttrigger: function ( name, args, bubbles ) {\n\t\t\t// allow some events to bubble\n\t\t\tif ( name == 'invalidField' ) {\n\t\t\t\tbubbles = true;\n\t\t\t}\n\n\t\t\t// return\n\t\t\treturn acf.Model.prototype.trigger.apply( this, [\n\t\t\t\tname,\n\t\t\t\targs,\n\t\t\t\tbubbles,\n\t\t\t] );\n\t\t},\n\t} );\n\n\t/**\n\t * newField\n\t *\n\t * description\n\t *\n\t * @date\t14/12/17\n\t * @since\t5.6.5\n\t *\n\t * @param\ttype $var Description. Default.\n\t * @return\ttype Description.\n\t */\n\n\tacf.newField = function ( $field ) {\n\t\t// vars\n\t\tvar type = $field.data( 'type' );\n\t\tvar mid = modelId( type );\n\t\tvar model = acf.models[ mid ] || acf.Field;\n\n\t\t// instantiate\n\t\tvar field = new model( $field );\n\n\t\t// actions\n\t\tacf.doAction( 'new_field', field );\n\n\t\t// return\n\t\treturn field;\n\t};\n\n\t/**\n\t * mid\n\t *\n\t * Calculates the model ID for a field type\n\t *\n\t * @date\t15/12/17\n\t * @since\t5.6.5\n\t *\n\t * @param\tstring type\n\t * @return\tstring\n\t */\n\n\tvar modelId = function ( type ) {\n\t\treturn acf.strPascalCase( type || '' ) + 'Field';\n\t};\n\n\t/**\n\t * registerFieldType\n\t *\n\t * description\n\t *\n\t * @date\t14/12/17\n\t * @since\t5.6.5\n\t *\n\t * @param\ttype $var Description. Default.\n\t * @return\ttype Description.\n\t */\n\n\tacf.registerFieldType = function ( model ) {\n\t\t// vars\n\t\tvar proto = model.prototype;\n\t\tvar type = proto.type;\n\t\tvar mid = modelId( type );\n\n\t\t// store model\n\t\tacf.models[ mid ] = model;\n\n\t\t// store reference\n\t\tstorage.push( type );\n\t};\n\n\t/**\n\t * acf.getFieldType\n\t *\n\t * description\n\t *\n\t * @date\t1/2/18\n\t * @since\t5.6.5\n\t *\n\t * @param\ttype $var Description. Default.\n\t * @return\ttype Description.\n\t */\n\n\tacf.getFieldType = function ( type ) {\n\t\tvar mid = modelId( type );\n\t\treturn acf.models[ mid ] || false;\n\t};\n\n\t/**\n\t * acf.getFieldTypes\n\t *\n\t * description\n\t *\n\t * @date\t1/2/18\n\t * @since\t5.6.5\n\t *\n\t * @param\ttype $var Description. Default.\n\t * @return\ttype Description.\n\t */\n\n\tacf.getFieldTypes = function ( args ) {\n\t\t// defaults\n\t\targs = acf.parseArgs( args, {\n\t\t\tcategory: '',\n\t\t\t// hasValue: true\n\t\t} );\n\n\t\t// clonse available types\n\t\tvar types = [];\n\n\t\t// loop\n\t\tstorage.map( function ( type ) {\n\t\t\t// vars\n\t\t\tvar model = acf.getFieldType( type );\n\t\t\tvar proto = model.prototype;\n\n\t\t\t// check operator\n\t\t\tif ( args.category && proto.category !== args.category ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// append\n\t\t\ttypes.push( model );\n\t\t} );\n\n\t\t// return\n\t\treturn types;\n\t};\n} )( jQuery );\n","( function ( $, undefined ) {\n\t/**\n\t * findFields\n\t *\n\t * Returns a jQuery selection object of acf fields.\n\t *\n\t * @date\t14/12/17\n\t * @since\t5.6.5\n\t *\n\t * @param\tobject $args {\n\t *\t\tOptional. Arguments to find fields.\n\t *\n\t *\t\t@type string\t\t\tkey\t\t\tThe field's key (data-attribute).\n\t *\t\t@type string\t\t\tname\t\tThe field's name (data-attribute).\n\t *\t\t@type string\t\t\ttype\t\tThe field's type (data-attribute).\n\t *\t\t@type string\t\t\tis\t\t\tjQuery selector to compare against.\n\t *\t\t@type jQuery\t\t\tparent\t\tjQuery element to search within.\n\t *\t\t@type jQuery\t\t\tsibling\t\tjQuery element to search alongside.\n\t *\t\t@type limit\t\t\t\tint\t\t\tThe number of fields to find.\n\t *\t\t@type suppressFilters\tbool\t\tWhether to allow filters to add/remove results. Default behaviour will ignore clone fields.\n\t * }\n\t * @return\tjQuery\n\t */\n\n\tacf.findFields = function ( args ) {\n\t\t// vars\n\t\tvar selector = '.acf-field';\n\t\tvar $fields = false;\n\n\t\t// args\n\t\targs = acf.parseArgs( args, {\n\t\t\tkey: '',\n\t\t\tname: '',\n\t\t\ttype: '',\n\t\t\tis: '',\n\t\t\tparent: false,\n\t\t\tsibling: false,\n\t\t\tlimit: false,\n\t\t\tvisible: false,\n\t\t\tsuppressFilters: false,\n\t\t\texcludeSubFields: false,\n\t\t} );\n\n\t\t// filter args\n\t\tif ( ! args.suppressFilters ) {\n\t\t\targs = acf.applyFilters( 'find_fields_args', args );\n\t\t}\n\n\t\t// key\n\t\tif ( args.key ) {\n\t\t\tselector += '[data-key=\"' + args.key + '\"]';\n\t\t}\n\n\t\t// type\n\t\tif ( args.type ) {\n\t\t\tselector += '[data-type=\"' + args.type + '\"]';\n\t\t}\n\n\t\t// name\n\t\tif ( args.name ) {\n\t\t\tselector += '[data-name=\"' + args.name + '\"]';\n\t\t}\n\n\t\t// is\n\t\tif ( args.is ) {\n\t\t\tselector += args.is;\n\t\t}\n\n\t\t// visibility\n\t\tif ( args.visible ) {\n\t\t\tselector += ':visible';\n\t\t}\n\n\t\tif ( ! args.suppressFilters ) {\n\t\t\tselector = acf.applyFilters(\n\t\t\t\t'find_fields_selector',\n\t\t\t\tselector,\n\t\t\t\targs\n\t\t\t);\n\t\t}\n\n\t\t// query\n\t\tif ( args.parent ) {\n\t\t\t$fields = args.parent.find( selector );\n\t\t\t// exclude sub fields if required (only if a parent is provided)\n\t\t\tif ( args.excludeSubFields ) {\n\t\t\t\t$fields = $fields.not( args.parent.find( '.acf-is-subfields .acf-field' ) );\n\t\t\t}\n\t\t} else if ( args.sibling ) {\n\t\t\t$fields = args.sibling.siblings( selector );\n\t\t} else {\n\t\t\t$fields = $( selector );\n\t\t}\n\n\t\t// filter\n\t\tif ( ! args.suppressFilters ) {\n\t\t\t$fields = $fields.not( '.acf-clone .acf-field' );\n\t\t\t$fields = acf.applyFilters( 'find_fields', $fields );\n\t\t}\n\n\t\t// limit\n\t\tif ( args.limit ) {\n\t\t\t$fields = $fields.slice( 0, args.limit );\n\t\t}\n\n\t\t// return\n\t\treturn $fields;\n\t};\n\n\t/**\n\t * findField\n\t *\n\t * Finds a specific field with jQuery\n\t *\n\t * @date\t14/12/17\n\t * @since\t5.6.5\n\t *\n\t * @param\tstring key \t\tThe field's key.\n\t * @param\tjQuery $parent\tjQuery element to search within.\n\t * @return\tjQuery\n\t */\n\n\tacf.findField = function ( key, $parent ) {\n\t\treturn acf.findFields( {\n\t\t\tkey: key,\n\t\t\tlimit: 1,\n\t\t\tparent: $parent,\n\t\t\tsuppressFilters: true,\n\t\t} );\n\t};\n\n\t/**\n\t * getField\n\t *\n\t * Returns a field instance\n\t *\n\t * @date\t14/12/17\n\t * @since\t5.6.5\n\t *\n\t * @param\tjQuery|string $field\tjQuery element or field key.\n\t * @return\tobject\n\t */\n\n\tacf.getField = function ( $field ) {\n\t\t// allow jQuery\n\t\tif ( $field instanceof jQuery ) {\n\t\t\t// find fields\n\t\t} else {\n\t\t\t$field = acf.findField( $field );\n\t\t}\n\n\t\t// instantiate\n\t\tvar field = $field.data( 'acf' );\n\t\tif ( ! field ) {\n\t\t\tfield = acf.newField( $field );\n\t\t}\n\n\t\t// return\n\t\treturn field;\n\t};\n\n\t/**\n\t * getFields\n\t *\n\t * Returns multiple field instances\n\t *\n\t * @date\t14/12/17\n\t * @since\t5.6.5\n\t *\n\t * @param\tjQuery|object $fields\tjQuery elements or query args.\n\t * @return\tarray\n\t */\n\n\tacf.getFields = function ( $fields ) {\n\t\t// allow jQuery\n\t\tif ( $fields instanceof jQuery ) {\n\t\t\t// find fields\n\t\t} else {\n\t\t\t$fields = acf.findFields( $fields );\n\t\t}\n\n\t\t// loop\n\t\tvar fields = [];\n\t\t$fields.each( function () {\n\t\t\tvar field = acf.getField( $( this ) );\n\t\t\tfields.push( field );\n\t\t} );\n\n\t\t// return\n\t\treturn fields;\n\t};\n\n\t/**\n\t * findClosestField\n\t *\n\t * Returns the closest jQuery field element\n\t *\n\t * @date\t9/4/18\n\t * @since\t5.6.9\n\t *\n\t * @param\tjQuery $el\n\t * @return\tjQuery\n\t */\n\n\tacf.findClosestField = function ( $el ) {\n\t\treturn $el.closest( '.acf-field' );\n\t};\n\n\t/**\n\t * getClosestField\n\t *\n\t * Returns the closest field instance\n\t *\n\t * @date\t22/1/18\n\t * @since\t5.6.5\n\t *\n\t * @param\tjQuery $el\n\t * @return\tobject\n\t */\n\n\tacf.getClosestField = function ( $el ) {\n\t\tvar $field = acf.findClosestField( $el );\n\t\treturn this.getField( $field );\n\t};\n\n\t/**\n\t * addGlobalFieldAction\n\t *\n\t * Sets up callback logic for global field actions\n\t *\n\t * @date\t15/6/18\n\t * @since\t5.6.9\n\t *\n\t * @param\tstring action\n\t * @return\tvoid\n\t */\n\n\tvar addGlobalFieldAction = function ( action ) {\n\t\t// vars\n\t\tvar globalAction = action;\n\t\tvar pluralAction = action + '_fields'; // ready_fields\n\t\tvar singleAction = action + '_field'; // ready_field\n\n\t\t// global action\n\t\tvar globalCallback = function ( $el /*, arg1, arg2, etc*/ ) {\n\t\t\t//console.log( action, arguments );\n\n\t\t\t// get args [$el, ...]\n\t\t\tvar args = acf.arrayArgs( arguments );\n\t\t\tvar extraArgs = args.slice( 1 );\n\n\t\t\t// find fields\n\t\t\tvar fields = acf.getFields( { parent: $el } );\n\n\t\t\t// check\n\t\t\tif ( fields.length ) {\n\t\t\t\t// pluralAction\n\t\t\t\tvar pluralArgs = [ pluralAction, fields ].concat( extraArgs );\n\t\t\t\tacf.doAction.apply( null, pluralArgs );\n\t\t\t}\n\t\t};\n\n\t\t// plural action\n\t\tvar pluralCallback = function ( fields /*, arg1, arg2, etc*/ ) {\n\t\t\t//console.log( pluralAction, arguments );\n\n\t\t\t// get args [fields, ...]\n\t\t\tvar args = acf.arrayArgs( arguments );\n\t\t\tvar extraArgs = args.slice( 1 );\n\n\t\t\t// loop\n\t\t\tfields.map( function ( field, i ) {\n\t\t\t\t//setTimeout(function(){\n\t\t\t\t// singleAction\n\t\t\t\tvar singleArgs = [ singleAction, field ].concat( extraArgs );\n\t\t\t\tacf.doAction.apply( null, singleArgs );\n\t\t\t\t//}, i * 100);\n\t\t\t} );\n\t\t};\n\n\t\t// add actions\n\t\tacf.addAction( globalAction, globalCallback );\n\t\tacf.addAction( pluralAction, pluralCallback );\n\n\t\t// also add single action\n\t\taddSingleFieldAction( action );\n\t};\n\n\t/**\n\t * addSingleFieldAction\n\t *\n\t * Sets up callback logic for single field actions\n\t *\n\t * @date\t15/6/18\n\t * @since\t5.6.9\n\t *\n\t * @param\tstring action\n\t * @return\tvoid\n\t */\n\n\tvar addSingleFieldAction = function ( action ) {\n\t\t// vars\n\t\tvar singleAction = action + '_field'; // ready_field\n\t\tvar singleEvent = action + 'Field'; // readyField\n\n\t\t// single action\n\t\tvar singleCallback = function ( field /*, arg1, arg2, etc*/ ) {\n\t\t\t//console.log( singleAction, arguments );\n\n\t\t\t// get args [field, ...]\n\t\t\tvar args = acf.arrayArgs( arguments );\n\t\t\tvar extraArgs = args.slice( 1 );\n\n\t\t\t// action variations (ready_field/type=image)\n\t\t\tvar variations = [ 'type', 'name', 'key' ];\n\t\t\tvariations.map( function ( variation ) {\n\t\t\t\t// vars\n\t\t\t\tvar prefix = '/' + variation + '=' + field.get( variation );\n\n\t\t\t\t// singleAction\n\t\t\t\targs = [ singleAction + prefix, field ].concat( extraArgs );\n\t\t\t\tacf.doAction.apply( null, args );\n\t\t\t} );\n\n\t\t\t// event\n\t\t\tif ( singleFieldEvents.indexOf( action ) > -1 ) {\n\t\t\t\tfield.trigger( singleEvent, extraArgs );\n\t\t\t}\n\t\t};\n\n\t\t// add actions\n\t\tacf.addAction( singleAction, singleCallback );\n\t};\n\n\t// vars\n\tvar globalFieldActions = [\n\t\t'prepare',\n\t\t'ready',\n\t\t'load',\n\t\t'append',\n\t\t'remove',\n\t\t'unmount',\n\t\t'remount',\n\t\t'sortstart',\n\t\t'sortstop',\n\t\t'show',\n\t\t'hide',\n\t\t'unload',\n\t];\n\tvar singleFieldActions = [\n\t\t'valid',\n\t\t'invalid',\n\t\t'enable',\n\t\t'disable',\n\t\t'new',\n\t\t'duplicate',\n\t];\n\tvar singleFieldEvents = [\n\t\t'remove',\n\t\t'unmount',\n\t\t'remount',\n\t\t'sortstart',\n\t\t'sortstop',\n\t\t'show',\n\t\t'hide',\n\t\t'unload',\n\t\t'valid',\n\t\t'invalid',\n\t\t'enable',\n\t\t'disable',\n\t\t'duplicate',\n\t];\n\n\t// add\n\tglobalFieldActions.map( addGlobalFieldAction );\n\tsingleFieldActions.map( addSingleFieldAction );\n\n\t/**\n\t * fieldsEventManager\n\t *\n\t * Manages field actions and events\n\t *\n\t * @date\t15/12/17\n\t * @since\t5.6.5\n\t *\n\t * @param\tvoid\n\t * @param\tvoid\n\t */\n\n\tvar fieldsEventManager = new acf.Model( {\n\t\tid: 'fieldsEventManager',\n\t\tevents: {\n\t\t\t'click .acf-field a[href=\"#\"]': 'onClick',\n\t\t\t'change .acf-field': 'onChange',\n\t\t},\n\t\tonClick: function ( e ) {\n\t\t\t// prevent default of any link with an href of #\n\t\t\te.preventDefault();\n\t\t},\n\t\tonChange: function () {\n\t\t\t// preview hack allows post to save with no title or content\n\t\t\t$( '#_acf_changed' ).val( 1 );\n\t\t},\n\t} );\n\n\tvar duplicateFieldsManager = new acf.Model( {\n\t\tid: 'duplicateFieldsManager',\n\t\tactions: {\n\t\t\tduplicate: 'onDuplicate',\n\t\t\tduplicate_fields: 'onDuplicateFields',\n\t\t},\n\t\tonDuplicate: function ( $el, $el2 ) {\n\t\t\tvar fields = acf.getFields( { parent: $el } );\n\t\t\tif ( fields.length ) {\n\t\t\t\tvar $fields = acf.findFields( { parent: $el2 } );\n\t\t\t\tacf.doAction( 'duplicate_fields', fields, $fields );\n\t\t\t}\n\t\t},\n\t\tonDuplicateFields: function ( fields, duplicates ) {\n\t\t\tfields.map( function ( field, i ) {\n\t\t\t\tacf.doAction( 'duplicate_field', field, $( duplicates[ i ] ) );\n\t\t\t} );\n\t\t},\n\t} );\n} )( jQuery );\n","( function ( $, undefined ) {\n\t/**\n\t * refreshHelper\n\t *\n\t * description\n\t *\n\t * @date\t1/7/18\n\t * @since\t5.6.9\n\t *\n\t * @param\ttype $var Description. Default.\n\t * @return\ttype Description.\n\t */\n\n\tvar refreshHelper = new acf.Model( {\n\t\tpriority: 90,\n\t\tactions: {\n\t\t\tnew_field: 'refresh',\n\t\t\tshow_field: 'refresh',\n\t\t\thide_field: 'refresh',\n\t\t\tremove_field: 'refresh',\n\t\t\tunmount_field: 'refresh',\n\t\t\tremount_field: 'refresh',\n\t\t},\n\t\trefresh: function () {\n\t\t\tacf.refresh();\n\t\t},\n\t} );\n\n\t/**\n\t * mountHelper\n\t *\n\t * Adds compatiblity for the 'unmount' and 'remount' actions added in 5.8.0\n\t *\n\t * @date\t7/3/19\n\t * @since\t5.7.14\n\t *\n\t * @param\tvoid\n\t * @return\tvoid\n\t */\n\tvar mountHelper = new acf.Model( {\n\t\tpriority: 1,\n\t\tactions: {\n\t\t\tsortstart: 'onSortstart',\n\t\t\tsortstop: 'onSortstop',\n\t\t},\n\t\tonSortstart: function ( $item ) {\n\t\t\tacf.doAction( 'unmount', $item );\n\t\t},\n\t\tonSortstop: function ( $item ) {\n\t\t\tacf.doAction( 'remount', $item );\n\t\t},\n\t} );\n\n\t/**\n\t * sortableHelper\n\t *\n\t * Adds compatibility for sorting a
        element\n\t *\n\t * @date\t6/3/18\n\t * @since\t5.6.9\n\t *\n\t * @param\tvoid\n\t * @return\tvoid\n\t */\n\n\tvar sortableHelper = new acf.Model( {\n\t\tactions: {\n\t\t\tsortstart: 'onSortstart',\n\t\t},\n\t\tonSortstart: function ( $item, $placeholder ) {\n\t\t\t// if $item is a tr, apply some css to the elements\n\t\t\tif ( $item.is( 'tr' ) ) {\n\t\t\t\t// replace $placeholder children with a single td\n\t\t\t\t// fixes \"width calculation issues\" due to conditional logic hiding some children\n\t\t\t\t$placeholder.html(\n\t\t\t\t\t''\n\t\t\t\t);\n\n\t\t\t\t// add helper class to remove absolute positioning\n\t\t\t\t$item.addClass( 'acf-sortable-tr-helper' );\n\n\t\t\t\t// set fixed widths for children\n\t\t\t\t$item.children().each( function () {\n\t\t\t\t\t$( this ).width( $( this ).width() );\n\t\t\t\t} );\n\n\t\t\t\t// mimic height\n\t\t\t\t$placeholder.height( $item.height() + 'px' );\n\n\t\t\t\t// remove class\n\t\t\t\t$item.removeClass( 'acf-sortable-tr-helper' );\n\t\t\t}\n\t\t},\n\t} );\n\n\t/**\n\t * duplicateHelper\n\t *\n\t * Fixes browser bugs when duplicating an element\n\t *\n\t * @date\t6/3/18\n\t * @since\t5.6.9\n\t *\n\t * @param\tvoid\n\t * @return\tvoid\n\t */\n\n\tvar duplicateHelper = new acf.Model( {\n\t\tactions: {\n\t\t\tafter_duplicate: 'onAfterDuplicate',\n\t\t},\n\t\tonAfterDuplicate: function ( $el, $el2 ) {\n\t\t\t// get original values\n\t\t\tvar vals = [];\n\t\t\t$el.find( 'select' ).each( function ( i ) {\n\t\t\t\tvals.push( $( this ).val() );\n\t\t\t} );\n\n\t\t\t// set duplicate values\n\t\t\t$el2.find( 'select' ).each( function ( i ) {\n\t\t\t\t$( this ).val( vals[ i ] );\n\t\t\t} );\n\t\t},\n\t} );\n\n\t/**\n\t * tableHelper\n\t *\n\t * description\n\t *\n\t * @date\t6/3/18\n\t * @since\t5.6.9\n\t *\n\t * @param\ttype $var Description. Default.\n\t * @return\ttype Description.\n\t */\n\n\tvar tableHelper = new acf.Model( {\n\t\tid: 'tableHelper',\n\n\t\tpriority: 20,\n\n\t\tactions: {\n\t\t\trefresh: 'renderTables',\n\t\t},\n\n\t\trenderTables: function ( $el ) {\n\t\t\t// loop\n\t\t\tvar self = this;\n\t\t\t$( '.acf-table:visible' ).each( function () {\n\t\t\t\tself.renderTable( $( this ) );\n\t\t\t} );\n\t\t},\n\n\t\trenderTable: function ( $table ) {\n\t\t\t// vars\n\t\t\tvar $ths = $table.find( '> thead > tr:visible > th[data-key]' );\n\t\t\tvar $tds = $table.find( '> tbody > tr:visible > td[data-key]' );\n\n\t\t\t// bail early if no thead\n\t\t\tif ( ! $ths.length || ! $tds.length ) {\n\t\t\t\treturn false;\n\t\t\t}\n\n\t\t\t// visiblity\n\t\t\t$ths.each( function ( i ) {\n\t\t\t\t// vars\n\t\t\t\tvar $th = $( this );\n\t\t\t\tvar key = $th.data( 'key' );\n\t\t\t\tvar $cells = $tds.filter( '[data-key=\"' + key + '\"]' );\n\t\t\t\tvar $hidden = $cells.filter( '.acf-hidden' );\n\n\t\t\t\t// always remove empty and allow cells to be hidden\n\t\t\t\t$cells.removeClass( 'acf-empty' );\n\n\t\t\t\t// hide $th if all cells are hidden\n\t\t\t\tif ( $cells.length === $hidden.length ) {\n\t\t\t\t\tacf.hide( $th );\n\n\t\t\t\t\t// force all hidden cells to appear empty\n\t\t\t\t} else {\n\t\t\t\t\tacf.show( $th );\n\t\t\t\t\t$hidden.addClass( 'acf-empty' );\n\t\t\t\t}\n\t\t\t} );\n\n\t\t\t// clear width\n\t\t\t$ths.css( 'width', 'auto' );\n\n\t\t\t// get visible\n\t\t\t$ths = $ths.not( '.acf-hidden' );\n\n\t\t\t// vars\n\t\t\tvar availableWidth = 100;\n\t\t\tvar colspan = $ths.length;\n\n\t\t\t// set custom widths first\n\t\t\tvar $fixedWidths = $ths.filter( '[data-width]' );\n\t\t\t$fixedWidths.each( function () {\n\t\t\t\tvar width = $( this ).data( 'width' );\n\t\t\t\t$( this ).css( 'width', width + '%' );\n\t\t\t\tavailableWidth -= width;\n\t\t\t} );\n\n\t\t\t// set auto widths\n\t\t\tvar $auoWidths = $ths.not( '[data-width]' );\n\t\t\tif ( $auoWidths.length ) {\n\t\t\t\tvar width = availableWidth / $auoWidths.length;\n\t\t\t\t$auoWidths.css( 'width', width + '%' );\n\t\t\t\tavailableWidth = 0;\n\t\t\t}\n\n\t\t\t// avoid stretching issue\n\t\t\tif ( availableWidth > 0 ) {\n\t\t\t\t$ths.last().css( 'width', 'auto' );\n\t\t\t}\n\n\t\t\t// update colspan on collapsed\n\t\t\t$tds.filter( '.-collapsed-target' ).each( function () {\n\t\t\t\t// vars\n\t\t\t\tvar $td = $( this );\n\n\t\t\t\t// check if collapsed\n\t\t\t\tif ( $td.parent().hasClass( '-collapsed' ) ) {\n\t\t\t\t\t$td.attr( 'colspan', $ths.length );\n\t\t\t\t} else {\n\t\t\t\t\t$td.removeAttr( 'colspan' );\n\t\t\t\t}\n\t\t\t} );\n\t\t},\n\t} );\n\n\t/**\n\t * fieldsHelper\n\t *\n\t * description\n\t *\n\t * @date\t6/3/18\n\t * @since\t5.6.9\n\t *\n\t * @param\ttype $var Description. Default.\n\t * @return\ttype Description.\n\t */\n\n\tvar fieldsHelper = new acf.Model( {\n\t\tid: 'fieldsHelper',\n\n\t\tpriority: 30,\n\n\t\tactions: {\n\t\t\trefresh: 'renderGroups',\n\t\t},\n\n\t\trenderGroups: function () {\n\t\t\t// loop\n\t\t\tvar self = this;\n\t\t\t$( '.acf-fields:visible' ).each( function () {\n\t\t\t\tself.renderGroup( $( this ) );\n\t\t\t} );\n\t\t},\n\n\t\trenderGroup: function ( $el ) {\n\t\t\t// vars\n\t\t\tvar top = 0;\n\t\t\tvar height = 0;\n\t\t\tvar $row = $();\n\n\t\t\t// get fields\n\t\t\tvar $fields = $el.children( '.acf-field[data-width]:visible' );\n\n\t\t\t// bail early if no fields\n\t\t\tif ( ! $fields.length ) {\n\t\t\t\treturn false;\n\t\t\t}\n\n\t\t\t// bail early if is .-left\n\t\t\tif ( $el.hasClass( '-left' ) ) {\n\t\t\t\t$fields.removeAttr( 'data-width' );\n\t\t\t\t$fields.css( 'width', 'auto' );\n\t\t\t\treturn false;\n\t\t\t}\n\n\t\t\t// reset fields\n\t\t\t$fields.removeClass( '-r0 -c0' ).css( { 'min-height': 0 } );\n\n\t\t\t// loop\n\t\t\t$fields.each( function ( i ) {\n\t\t\t\t// vars\n\t\t\t\tvar $field = $( this );\n\t\t\t\tvar position = $field.position();\n\t\t\t\tvar thisTop = Math.ceil( position.top );\n\t\t\t\tvar thisLeft = Math.ceil( position.left );\n\n\t\t\t\t// detect change in row\n\t\t\t\tif ( $row.length && thisTop > top ) {\n\t\t\t\t\t// set previous heights\n\t\t\t\t\t$row.css( { 'min-height': height + 'px' } );\n\n\t\t\t\t\t// update position due to change in row above\n\t\t\t\t\tposition = $field.position();\n\t\t\t\t\tthisTop = Math.ceil( position.top );\n\t\t\t\t\tthisLeft = Math.ceil( position.left );\n\n\t\t\t\t\t// reset vars\n\t\t\t\t\ttop = 0;\n\t\t\t\t\theight = 0;\n\t\t\t\t\t$row = $();\n\t\t\t\t}\n\n\t\t\t\t// rtl\n\t\t\t\tif ( acf.get( 'rtl' ) ) {\n\t\t\t\t\tthisLeft = Math.ceil(\n\t\t\t\t\t\t$field.parent().width() -\n\t\t\t\t\t\t\t( position.left + $field.outerWidth() )\n\t\t\t\t\t);\n\t\t\t\t}\n\n\t\t\t\t// add classes\n\t\t\t\tif ( thisTop == 0 ) {\n\t\t\t\t\t$field.addClass( '-r0' );\n\t\t\t\t} else if ( thisLeft == 0 ) {\n\t\t\t\t\t$field.addClass( '-c0' );\n\t\t\t\t}\n\n\t\t\t\t// get height after class change\n\t\t\t\t// - add 1 for subpixel rendering\n\t\t\t\tvar thisHeight = Math.ceil( $field.outerHeight() ) + 1;\n\n\t\t\t\t// set height\n\t\t\t\theight = Math.max( height, thisHeight );\n\n\t\t\t\t// set y\n\t\t\t\ttop = Math.max( top, thisTop );\n\n\t\t\t\t// append\n\t\t\t\t$row = $row.add( $field );\n\t\t\t} );\n\n\t\t\t// clean up\n\t\t\tif ( $row.length ) {\n\t\t\t\t$row.css( { 'min-height': height + 'px' } );\n\t\t\t}\n\t\t},\n\t} );\n\n\t/**\n\t * Adds a body class when holding down the \"shift\" key.\n\t *\n\t * @date\t06/05/2020\n\t * @since\t5.9.0\n\t */\n\tvar bodyClassShiftHelper = new acf.Model( {\n\t\tid: 'bodyClassShiftHelper',\n\t\tevents: {\n\t\t\tkeydown: 'onKeyDown',\n\t\t\tkeyup: 'onKeyUp',\n\t\t},\n\t\tisShiftKey: function ( e ) {\n\t\t\treturn e.keyCode === 16;\n\t\t},\n\t\tonKeyDown: function ( e ) {\n\t\t\tif ( this.isShiftKey( e ) ) {\n\t\t\t\t$( 'body' ).addClass( 'acf-keydown-shift' );\n\t\t\t}\n\t\t},\n\t\tonKeyUp: function ( e ) {\n\t\t\tif ( this.isShiftKey( e ) ) {\n\t\t\t\t$( 'body' ).removeClass( 'acf-keydown-shift' );\n\t\t\t}\n\t\t},\n\t} );\n} )( jQuery );\n","( function ( $, undefined ) {\n\t/**\n\t * acf.newMediaPopup\n\t *\n\t * description\n\t *\n\t * @date\t10/1/18\n\t * @since\t5.6.5\n\t *\n\t * @param\ttype $var Description. Default.\n\t * @return\ttype Description.\n\t */\n\n\tacf.newMediaPopup = function ( args ) {\n\t\t// args\n\t\tvar popup = null;\n\t\tvar args = acf.parseArgs( args, {\n\t\t\tmode: 'select', // 'select', 'edit'\n\t\t\ttitle: '', // 'Upload Image'\n\t\t\tbutton: '', // 'Select Image'\n\t\t\ttype: '', // 'image', ''\n\t\t\tfield: false, // field instance\n\t\t\tallowedTypes: '', // '.jpg, .png, etc'\n\t\t\tlibrary: 'all', // 'all', 'uploadedTo'\n\t\t\tmultiple: false, // false, true, 'add'\n\t\t\tattachment: 0, // the attachment to edit\n\t\t\tautoOpen: true, // open the popup automatically\n\t\t\topen: function () {}, // callback after close\n\t\t\tselect: function () {}, // callback after select\n\t\t\tclose: function () {}, // callback after close\n\t\t} );\n\n\t\t// initialize\n\t\tif ( args.mode == 'edit' ) {\n\t\t\tpopup = new acf.models.EditMediaPopup( args );\n\t\t} else {\n\t\t\tpopup = new acf.models.SelectMediaPopup( args );\n\t\t}\n\n\t\t// open popup (allow frame customization before opening)\n\t\tif ( args.autoOpen ) {\n\t\t\tsetTimeout( function () {\n\t\t\t\tpopup.open();\n\t\t\t}, 1 );\n\t\t}\n\n\t\t// action\n\t\tacf.doAction( 'new_media_popup', popup );\n\n\t\t// return\n\t\treturn popup;\n\t};\n\n\t/**\n\t * getPostID\n\t *\n\t * description\n\t *\n\t * @date\t10/1/18\n\t * @since\t5.6.5\n\t *\n\t * @param\ttype $var Description. Default.\n\t * @return\ttype Description.\n\t */\n\n\tvar getPostID = function () {\n\t\tvar postID = acf.get( 'post_id' );\n\t\treturn acf.isNumeric( postID ) ? postID : 0;\n\t};\n\n\t/**\n\t * acf.getMimeTypes\n\t *\n\t * description\n\t *\n\t * @date\t11/1/18\n\t * @since\t5.6.5\n\t *\n\t * @param\ttype $var Description. Default.\n\t * @return\ttype Description.\n\t */\n\n\tacf.getMimeTypes = function () {\n\t\treturn this.get( 'mimeTypes' );\n\t};\n\n\tacf.getMimeType = function ( name ) {\n\t\t// vars\n\t\tvar allTypes = acf.getMimeTypes();\n\n\t\t// search\n\t\tif ( allTypes[ name ] !== undefined ) {\n\t\t\treturn allTypes[ name ];\n\t\t}\n\n\t\t// some types contain a mixed key such as \"jpg|jpeg|jpe\"\n\t\tfor ( var key in allTypes ) {\n\t\t\tif ( key.indexOf( name ) !== -1 ) {\n\t\t\t\treturn allTypes[ key ];\n\t\t\t}\n\t\t}\n\n\t\t// return\n\t\treturn false;\n\t};\n\n\t/**\n\t * MediaPopup\n\t *\n\t * description\n\t *\n\t * @date\t10/1/18\n\t * @since\t5.6.5\n\t *\n\t * @param\ttype $var Description. Default.\n\t * @return\ttype Description.\n\t */\n\n\tvar MediaPopup = acf.Model.extend( {\n\t\tid: 'MediaPopup',\n\t\tdata: {},\n\t\tdefaults: {},\n\t\tframe: false,\n\n\t\tsetup: function ( props ) {\n\t\t\t$.extend( this.data, props );\n\t\t},\n\n\t\tinitialize: function () {\n\t\t\t// vars\n\t\t\tvar options = this.getFrameOptions();\n\n\t\t\t// add states\n\t\t\tthis.addFrameStates( options );\n\n\t\t\t// create frame\n\t\t\tvar frame = wp.media( options );\n\n\t\t\t// add args reference\n\t\t\tframe.acf = this;\n\n\t\t\t// add events\n\t\t\tthis.addFrameEvents( frame, options );\n\n\t\t\t// strore frame\n\t\t\tthis.frame = frame;\n\t\t},\n\n\t\topen: function () {\n\t\t\tthis.frame.open();\n\t\t},\n\n\t\tclose: function () {\n\t\t\tthis.frame.close();\n\t\t},\n\n\t\tremove: function () {\n\t\t\tthis.frame.detach();\n\t\t\tthis.frame.remove();\n\t\t},\n\n\t\tgetFrameOptions: function () {\n\t\t\t// vars\n\t\t\tvar options = {\n\t\t\t\ttitle: this.get( 'title' ),\n\t\t\t\tmultiple: this.get( 'multiple' ),\n\t\t\t\tlibrary: {},\n\t\t\t\tstates: [],\n\t\t\t};\n\n\t\t\t// type\n\t\t\tif ( this.get( 'type' ) ) {\n\t\t\t\toptions.library.type = this.get( 'type' );\n\t\t\t}\n\n\t\t\t// type\n\t\t\tif ( this.get( 'library' ) === 'uploadedTo' ) {\n\t\t\t\toptions.library.uploadedTo = getPostID();\n\t\t\t}\n\n\t\t\t// attachment\n\t\t\tif ( this.get( 'attachment' ) ) {\n\t\t\t\toptions.library.post__in = [ this.get( 'attachment' ) ];\n\t\t\t}\n\n\t\t\t// button\n\t\t\tif ( this.get( 'button' ) ) {\n\t\t\t\toptions.button = {\n\t\t\t\t\ttext: this.get( 'button' ),\n\t\t\t\t};\n\t\t\t}\n\n\t\t\t// return\n\t\t\treturn options;\n\t\t},\n\n\t\taddFrameStates: function ( options ) {\n\t\t\t// create query\n\t\t\tvar Query = wp.media.query( options.library );\n\n\t\t\t// add _acfuploader\n\t\t\t// this is super wack!\n\t\t\t// if you add _acfuploader to the options.library args, new uploads will not be added to the library view.\n\t\t\t// this has been traced back to the wp.media.model.Query initialize function (which can't be overriden)\n\t\t\t// Adding any custom args will cause the Attahcments to not observe the uploader queue\n\t\t\t// To bypass this security issue, we add in the args AFTER the Query has been initialized\n\t\t\t// options.library._acfuploader = settings.field;\n\t\t\tif (\n\t\t\t\tthis.get( 'field' ) &&\n\t\t\t\tacf.isset( Query, 'mirroring', 'args' )\n\t\t\t) {\n\t\t\t\tQuery.mirroring.args._acfuploader = this.get( 'field' );\n\t\t\t}\n\n\t\t\t// add states\n\t\t\toptions.states.push(\n\t\t\t\t// main state\n\t\t\t\tnew wp.media.controller.Library( {\n\t\t\t\t\tlibrary: Query,\n\t\t\t\t\tmultiple: this.get( 'multiple' ),\n\t\t\t\t\ttitle: this.get( 'title' ),\n\t\t\t\t\tpriority: 20,\n\t\t\t\t\tfilterable: 'all',\n\t\t\t\t\teditable: true,\n\t\t\t\t\tallowLocalEdits: true,\n\t\t\t\t} )\n\t\t\t);\n\n\t\t\t// edit image functionality (added in WP 3.9)\n\t\t\tif ( acf.isset( wp, 'media', 'controller', 'EditImage' ) ) {\n\t\t\t\toptions.states.push( new wp.media.controller.EditImage() );\n\t\t\t}\n\t\t},\n\n\t\taddFrameEvents: function ( frame, options ) {\n\t\t\t// log all events\n\t\t\t//frame.on('all', function( e ) {\n\t\t\t//\tconsole.log( 'frame all: %o', e );\n\t\t\t//});\n\n\t\t\t// add class\n\t\t\tframe.on(\n\t\t\t\t'open',\n\t\t\t\tfunction () {\n\t\t\t\t\tthis.$el\n\t\t\t\t\t\t.closest( '.media-modal' )\n\t\t\t\t\t\t.addClass(\n\t\t\t\t\t\t\t'acf-media-modal -' + this.acf.get( 'mode' )\n\t\t\t\t\t\t);\n\t\t\t\t},\n\t\t\t\tframe\n\t\t\t);\n\n\t\t\t// edit image view\n\t\t\t// source: media-views.js:2410 editImageContent()\n\t\t\tframe.on(\n\t\t\t\t'content:render:edit-image',\n\t\t\t\tfunction () {\n\t\t\t\t\tvar image = this.state().get( 'image' );\n\t\t\t\t\tvar view = new wp.media.view.EditImage( {\n\t\t\t\t\t\tmodel: image,\n\t\t\t\t\t\tcontroller: this,\n\t\t\t\t\t} ).render();\n\t\t\t\t\tthis.content.set( view );\n\n\t\t\t\t\t// after creating the wrapper view, load the actual editor via an ajax call\n\t\t\t\t\tview.loadEditor();\n\t\t\t\t},\n\t\t\t\tframe\n\t\t\t);\n\n\t\t\t// update toolbar button\n\t\t\t//frame.on( 'toolbar:create:select', function( toolbar ) {\n\t\t\t//\ttoolbar.view = new wp.media.view.Toolbar.Select({\n\t\t\t//\t\ttext: frame.options._button,\n\t\t\t//\t\tcontroller: this\n\t\t\t//\t});\n\t\t\t//}, frame );\n\n\t\t\t// on select\n\t\t\tframe.on( 'select', function () {\n\t\t\t\t// vars\n\t\t\t\tvar selection = frame.state().get( 'selection' );\n\n\t\t\t\t// if selecting images\n\t\t\t\tif ( selection ) {\n\t\t\t\t\t// loop\n\t\t\t\t\tselection.each( function ( attachment, i ) {\n\t\t\t\t\t\tframe.acf\n\t\t\t\t\t\t\t.get( 'select' )\n\t\t\t\t\t\t\t.apply( frame.acf, [ attachment, i ] );\n\t\t\t\t\t} );\n\t\t\t\t}\n\t\t\t} );\n\n\t\t\t// on close\n\t\t\tframe.on( 'close', function () {\n\t\t\t\t// callback and remove\n\t\t\t\tsetTimeout( function () {\n\t\t\t\t\tframe.acf.get( 'close' ).apply( frame.acf );\n\t\t\t\t\tframe.acf.remove();\n\t\t\t\t}, 1 );\n\t\t\t} );\n\t\t},\n\t} );\n\n\t/**\n\t * acf.models.SelectMediaPopup\n\t *\n\t * description\n\t *\n\t * @date\t10/1/18\n\t * @since\t5.6.5\n\t *\n\t * @param\ttype $var Description. Default.\n\t * @return\ttype Description.\n\t */\n\n\tacf.models.SelectMediaPopup = MediaPopup.extend( {\n\t\tid: 'SelectMediaPopup',\n\t\tsetup: function ( props ) {\n\t\t\t// default button\n\t\t\tif ( ! props.button ) {\n\t\t\t\tprops.button = acf._x( 'Select', 'verb' );\n\t\t\t}\n\n\t\t\t// parent\n\t\t\tMediaPopup.prototype.setup.apply( this, arguments );\n\t\t},\n\n\t\taddFrameEvents: function ( frame, options ) {\n\t\t\t// plupload\n\t\t\t// adds _acfuploader param to validate uploads\n\t\t\tif (\n\t\t\t\tacf.isset( _wpPluploadSettings, 'defaults', 'multipart_params' )\n\t\t\t) {\n\t\t\t\t// add _acfuploader so that Uploader will inherit\n\t\t\t\t_wpPluploadSettings.defaults.multipart_params._acfuploader = this.get(\n\t\t\t\t\t'field'\n\t\t\t\t);\n\n\t\t\t\t// remove acf_field so future Uploaders won't inherit\n\t\t\t\tframe.on( 'open', function () {\n\t\t\t\t\tdelete _wpPluploadSettings\n\t\t\t\t\t\t.defaults.multipart_params._acfuploader;\n\t\t\t\t} );\n\t\t\t}\n\n\t\t\t// browse\n\t\t\tframe.on( 'content:activate:browse', function () {\n\t\t\t\t// vars\n\t\t\t\tvar toolbar = false;\n\n\t\t\t\t// populate above vars making sure to allow for failure\n\t\t\t\t// perhaps toolbar does not exist because the frame open is Upload Files\n\t\t\t\ttry {\n\t\t\t\t\ttoolbar = frame.content.get().toolbar;\n\t\t\t\t} catch ( e ) {\n\t\t\t\t\tconsole.log( e );\n\t\t\t\t\treturn;\n\t\t\t\t}\n\n\t\t\t\t// callback\n\t\t\t\tframe.acf.customizeFilters.apply( frame.acf, [ toolbar ] );\n\t\t\t} );\n\n\t\t\t// parent\n\t\t\tMediaPopup.prototype.addFrameEvents.apply( this, arguments );\n\t\t},\n\n\t\tcustomizeFilters: function ( toolbar ) {\n\t\t\t// vars\n\t\t\tvar filters = toolbar.get( 'filters' );\n\n\t\t\t// image\n\t\t\tif ( this.get( 'type' ) == 'image' ) {\n\t\t\t\t// update all\n\t\t\t\tfilters.filters.all.text = acf.__( 'All images' );\n\n\t\t\t\t// remove some filters\n\t\t\t\tdelete filters.filters.audio;\n\t\t\t\tdelete filters.filters.video;\n\t\t\t\tdelete filters.filters.image;\n\n\t\t\t\t// update all filters to show images\n\t\t\t\t$.each( filters.filters, function ( i, filter ) {\n\t\t\t\t\tfilter.props.type = filter.props.type || 'image';\n\t\t\t\t} );\n\t\t\t}\n\n\t\t\t// specific types\n\t\t\tif ( this.get( 'allowedTypes' ) ) {\n\t\t\t\t// convert \".jpg, .png\" into [\"jpg\", \"png\"]\n\t\t\t\tvar allowedTypes = this.get( 'allowedTypes' )\n\t\t\t\t\t.split( ' ' )\n\t\t\t\t\t.join( '' )\n\t\t\t\t\t.split( '.' )\n\t\t\t\t\t.join( '' )\n\t\t\t\t\t.split( ',' );\n\n\t\t\t\t// loop\n\t\t\t\tallowedTypes.map( function ( name ) {\n\t\t\t\t\t// get type\n\t\t\t\t\tvar mimeType = acf.getMimeType( name );\n\n\t\t\t\t\t// bail early if no type\n\t\t\t\t\tif ( ! mimeType ) return;\n\n\t\t\t\t\t// create new filter\n\t\t\t\t\tvar newFilter = {\n\t\t\t\t\t\ttext: mimeType,\n\t\t\t\t\t\tprops: {\n\t\t\t\t\t\t\tstatus: null,\n\t\t\t\t\t\t\ttype: mimeType,\n\t\t\t\t\t\t\tuploadedTo: null,\n\t\t\t\t\t\t\torderby: 'date',\n\t\t\t\t\t\t\torder: 'DESC',\n\t\t\t\t\t\t},\n\t\t\t\t\t\tpriority: 20,\n\t\t\t\t\t};\n\n\t\t\t\t\t// append\n\t\t\t\t\tfilters.filters[ mimeType ] = newFilter;\n\t\t\t\t} );\n\t\t\t}\n\n\t\t\t// uploaded to post\n\t\t\tif ( this.get( 'library' ) === 'uploadedTo' ) {\n\t\t\t\t// vars\n\t\t\t\tvar uploadedTo = this.frame.options.library.uploadedTo;\n\n\t\t\t\t// remove some filters\n\t\t\t\tdelete filters.filters.unattached;\n\t\t\t\tdelete filters.filters.uploaded;\n\n\t\t\t\t// add uploadedTo to filters\n\t\t\t\t$.each( filters.filters, function ( i, filter ) {\n\t\t\t\t\tfilter.text +=\n\t\t\t\t\t\t' (' + acf.__( 'Uploaded to this post' ) + ')';\n\t\t\t\t\tfilter.props.uploadedTo = uploadedTo;\n\t\t\t\t} );\n\t\t\t}\n\n\t\t\t// add _acfuploader to filters\n\t\t\tvar field = this.get( 'field' );\n\t\t\t$.each( filters.filters, function ( k, filter ) {\n\t\t\t\tfilter.props._acfuploader = field;\n\t\t\t} );\n\n\t\t\t// add _acfuplaoder to search\n\t\t\tvar search = toolbar.get( 'search' );\n\t\t\tsearch.model.attributes._acfuploader = field;\n\n\t\t\t// render (custom function added to prototype)\n\t\t\tif ( filters.renderFilters ) {\n\t\t\t\tfilters.renderFilters();\n\t\t\t}\n\t\t},\n\t} );\n\n\t/**\n\t * acf.models.EditMediaPopup\n\t *\n\t * description\n\t *\n\t * @date\t10/1/18\n\t * @since\t5.6.5\n\t *\n\t * @param\ttype $var Description. Default.\n\t * @return\ttype Description.\n\t */\n\n\tacf.models.EditMediaPopup = MediaPopup.extend( {\n\t\tid: 'SelectMediaPopup',\n\t\tsetup: function ( props ) {\n\t\t\t// default button\n\t\t\tif ( ! props.button ) {\n\t\t\t\tprops.button = acf._x( 'Update', 'verb' );\n\t\t\t}\n\n\t\t\t// parent\n\t\t\tMediaPopup.prototype.setup.apply( this, arguments );\n\t\t},\n\n\t\taddFrameEvents: function ( frame, options ) {\n\t\t\t// add class\n\t\t\tframe.on(\n\t\t\t\t'open',\n\t\t\t\tfunction () {\n\t\t\t\t\t// add class\n\t\t\t\t\tthis.$el\n\t\t\t\t\t\t.closest( '.media-modal' )\n\t\t\t\t\t\t.addClass( 'acf-expanded' );\n\n\t\t\t\t\t// set to browse\n\t\t\t\t\tif ( this.content.mode() != 'browse' ) {\n\t\t\t\t\t\tthis.content.mode( 'browse' );\n\t\t\t\t\t}\n\n\t\t\t\t\t// set selection\n\t\t\t\t\tvar state = this.state();\n\t\t\t\t\tvar selection = state.get( 'selection' );\n\t\t\t\t\tvar attachment = wp.media.attachment(\n\t\t\t\t\t\tframe.acf.get( 'attachment' )\n\t\t\t\t\t);\n\t\t\t\t\tselection.add( attachment );\n\t\t\t\t},\n\t\t\t\tframe\n\t\t\t);\n\n\t\t\t// parent\n\t\t\tMediaPopup.prototype.addFrameEvents.apply( this, arguments );\n\t\t},\n\t} );\n\n\t/**\n\t * customizePrototypes\n\t *\n\t * description\n\t *\n\t * @date\t11/1/18\n\t * @since\t5.6.5\n\t *\n\t * @param\ttype $var Description. Default.\n\t * @return\ttype Description.\n\t */\n\n\tvar customizePrototypes = new acf.Model( {\n\t\tid: 'customizePrototypes',\n\t\twait: 'ready',\n\n\t\tinitialize: function () {\n\t\t\t// bail early if no media views\n\t\t\tif ( ! acf.isset( window, 'wp', 'media', 'view' ) ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// fix bug where CPT without \"editor\" does not set post.id setting which then prevents uploadedTo from working\n\t\t\tvar postID = getPostID();\n\t\t\tif (\n\t\t\t\tpostID &&\n\t\t\t\tacf.isset( wp, 'media', 'view', 'settings', 'post' )\n\t\t\t) {\n\t\t\t\twp.media.view.settings.post.id = postID;\n\t\t\t}\n\n\t\t\t// customize\n\t\t\tthis.customizeAttachmentsButton();\n\t\t\tthis.customizeAttachmentsRouter();\n\t\t\tthis.customizeAttachmentFilters();\n\t\t\tthis.customizeAttachmentCompat();\n\t\t\tthis.customizeAttachmentLibrary();\n\t\t},\n\n\t\tcustomizeAttachmentsButton: function () {\n\t\t\t// validate\n\t\t\tif ( ! acf.isset( wp, 'media', 'view', 'Button' ) ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// Extend\n\t\t\tvar Button = wp.media.view.Button;\n\t\t\twp.media.view.Button = Button.extend( {\n\t\t\t\t// Fix bug where \"Select\" button appears blank after editing an image.\n\t\t\t\t// Do this by simplifying Button initialize function and avoid deleting this.options.\n\t\t\t\tinitialize: function () {\n\t\t\t\t\tvar options = _.defaults( this.options, this.defaults );\n\t\t\t\t\tthis.model = new Backbone.Model( options );\n\t\t\t\t\tthis.listenTo( this.model, 'change', this.render );\n\t\t\t\t},\n\t\t\t} );\n\t\t},\n\n\t\tcustomizeAttachmentsRouter: function () {\n\t\t\t// validate\n\t\t\tif ( ! acf.isset( wp, 'media', 'view', 'Router' ) ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// vars\n\t\t\tvar Parent = wp.media.view.Router;\n\n\t\t\t// extend\n\t\t\twp.media.view.Router = Parent.extend( {\n\t\t\t\taddExpand: function () {\n\t\t\t\t\t// vars\n\t\t\t\t\tvar $a = $(\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t'',\n\t\t\t\t\t\t\t'' +\n\t\t\t\t\t\t\t\tacf.__( 'Expand Details' ) +\n\t\t\t\t\t\t\t\t'',\n\t\t\t\t\t\t\t'' +\n\t\t\t\t\t\t\t\tacf.__( 'Collapse Details' ) +\n\t\t\t\t\t\t\t\t'',\n\t\t\t\t\t\t\t'',\n\t\t\t\t\t\t].join( '' )\n\t\t\t\t\t);\n\n\t\t\t\t\t// add events\n\t\t\t\t\t$a.on( 'click', function ( e ) {\n\t\t\t\t\t\te.preventDefault();\n\t\t\t\t\t\tvar $div = $( this ).closest( '.media-modal' );\n\t\t\t\t\t\tif ( $div.hasClass( 'acf-expanded' ) ) {\n\t\t\t\t\t\t\t$div.removeClass( 'acf-expanded' );\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t$div.addClass( 'acf-expanded' );\n\t\t\t\t\t\t}\n\t\t\t\t\t} );\n\n\t\t\t\t\t// append\n\t\t\t\t\tthis.$el.append( $a );\n\t\t\t\t},\n\n\t\t\t\tinitialize: function () {\n\t\t\t\t\t// initialize\n\t\t\t\t\tParent.prototype.initialize.apply( this, arguments );\n\n\t\t\t\t\t// add buttons\n\t\t\t\t\tthis.addExpand();\n\n\t\t\t\t\t// return\n\t\t\t\t\treturn this;\n\t\t\t\t},\n\t\t\t} );\n\t\t},\n\n\t\tcustomizeAttachmentFilters: function () {\n\t\t\t// validate\n\t\t\tif (\n\t\t\t\t! acf.isset( wp, 'media', 'view', 'AttachmentFilters', 'All' )\n\t\t\t) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// vars\n\t\t\tvar Parent = wp.media.view.AttachmentFilters.All;\n\n\t\t\t// renderFilters\n\t\t\t// copied from media-views.js:6939\n\t\t\tParent.prototype.renderFilters = function () {\n\t\t\t\t// Build `' )\n\t\t\t\t\t\t\t\t\t.val( value )\n\t\t\t\t\t\t\t\t\t.html( filter.text )[ 0 ],\n\t\t\t\t\t\t\t\tpriority: filter.priority || 50,\n\t\t\t\t\t\t\t};\n\t\t\t\t\t\t}, this )\n\t\t\t\t\t\t.sortBy( 'priority' )\n\t\t\t\t\t\t.pluck( 'el' )\n\t\t\t\t\t\t.value()\n\t\t\t\t);\n\t\t\t};\n\t\t},\n\n\t\tcustomizeAttachmentCompat: function () {\n\t\t\t// validate\n\t\t\tif ( ! acf.isset( wp, 'media', 'view', 'AttachmentCompat' ) ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// vars\n\t\t\tvar AttachmentCompat = wp.media.view.AttachmentCompat;\n\t\t\tvar timeout = false;\n\n\t\t\t// extend\n\t\t\twp.media.view.AttachmentCompat = AttachmentCompat.extend( {\n\t\t\t\trender: function () {\n\t\t\t\t\t// WP bug\n\t\t\t\t\t// When multiple media frames exist on the same page (WP content, WYSIWYG, image, file ),\n\t\t\t\t\t// WP creates multiple instances of this AttachmentCompat view.\n\t\t\t\t\t// Each instance will attempt to render when a new modal is created.\n\t\t\t\t\t// Use a property to avoid this and only render once per instance.\n\t\t\t\t\tif ( this.rendered ) {\n\t\t\t\t\t\treturn this;\n\t\t\t\t\t}\n\n\t\t\t\t\t// render HTML\n\t\t\t\t\tAttachmentCompat.prototype.render.apply( this, arguments );\n\n\t\t\t\t\t// when uploading, render is called twice.\n\t\t\t\t\t// ignore first render by checking for #acf-form-data element\n\t\t\t\t\tif ( ! this.$( '#acf-form-data' ).length ) {\n\t\t\t\t\t\treturn this;\n\t\t\t\t\t}\n\n\t\t\t\t\t// clear timeout\n\t\t\t\t\tclearTimeout( timeout );\n\n\t\t\t\t\t// setTimeout\n\t\t\t\t\ttimeout = setTimeout(\n\t\t\t\t\t\t$.proxy( function () {\n\t\t\t\t\t\t\tthis.rendered = true;\n\t\t\t\t\t\t\tacf.doAction( 'append', this.$el );\n\t\t\t\t\t\t}, this ),\n\t\t\t\t\t\t50\n\t\t\t\t\t);\n\n\t\t\t\t\t// return\n\t\t\t\t\treturn this;\n\t\t\t\t},\n\n\t\t\t\tsave: function ( event ) {\n\t\t\t\t\tvar data = {};\n\n\t\t\t\t\tif ( event ) {\n\t\t\t\t\t\tevent.preventDefault();\n\t\t\t\t\t}\n\n\t\t\t\t\t//_.each( this.$el.serializeArray(), function( pair ) {\n\t\t\t\t\t//\tdata[ pair.name ] = pair.value;\n\t\t\t\t\t//});\n\n\t\t\t\t\t// Serialize data more thoroughly to allow chckbox inputs to save.\n\t\t\t\t\tdata = acf.serializeForAjax( this.$el );\n\n\t\t\t\t\tthis.controller.trigger( 'attachment:compat:waiting', [\n\t\t\t\t\t\t'waiting',\n\t\t\t\t\t] );\n\t\t\t\t\tthis.model\n\t\t\t\t\t\t.saveCompat( data )\n\t\t\t\t\t\t.always( _.bind( this.postSave, this ) );\n\t\t\t\t},\n\t\t\t} );\n\t\t},\n\n\t\tcustomizeAttachmentLibrary: function () {\n\t\t\t// validate\n\t\t\tif ( ! acf.isset( wp, 'media', 'view', 'Attachment', 'Library' ) ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// vars\n\t\t\tvar AttachmentLibrary = wp.media.view.Attachment.Library;\n\n\t\t\t// extend\n\t\t\twp.media.view.Attachment.Library = AttachmentLibrary.extend( {\n\t\t\t\trender: function () {\n\t\t\t\t\t// vars\n\t\t\t\t\tvar popup = acf.isget( this, 'controller', 'acf' );\n\t\t\t\t\tvar attributes = acf.isget( this, 'model', 'attributes' );\n\n\t\t\t\t\t// check vars exist to avoid errors\n\t\t\t\t\tif ( popup && attributes ) {\n\t\t\t\t\t\t// show errors\n\t\t\t\t\t\tif ( attributes.acf_errors ) {\n\t\t\t\t\t\t\tthis.$el.addClass( 'acf-disabled' );\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// disable selected\n\t\t\t\t\t\tvar selected = popup.get( 'selected' );\n\t\t\t\t\t\tif (\n\t\t\t\t\t\t\tselected &&\n\t\t\t\t\t\t\tselected.indexOf( attributes.id ) > -1\n\t\t\t\t\t\t) {\n\t\t\t\t\t\t\tthis.$el.addClass( 'acf-selected' );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// render\n\t\t\t\t\treturn AttachmentLibrary.prototype.render.apply(\n\t\t\t\t\t\tthis,\n\t\t\t\t\t\targuments\n\t\t\t\t\t);\n\t\t\t\t},\n\n\t\t\t\t/*\n\t\t\t\t * toggleSelection\n\t\t\t\t *\n\t\t\t\t * This function is called before an attachment is selected\n\t\t\t\t * A good place to check for errors and prevent the 'select' function from being fired\n\t\t\t\t *\n\t\t\t\t * @type\tfunction\n\t\t\t\t * @date\t29/09/2016\n\t\t\t\t * @since\t5.4.0\n\t\t\t\t *\n\t\t\t\t * @param\toptions (object)\n\t\t\t\t * @return\tn/a\n\t\t\t\t */\n\n\t\t\t\ttoggleSelection: function ( options ) {\n\t\t\t\t\t// vars\n\t\t\t\t\t// source: wp-includes/js/media-views.js:2880\n\t\t\t\t\tvar collection = this.collection,\n\t\t\t\t\t\tselection = this.options.selection,\n\t\t\t\t\t\tmodel = this.model,\n\t\t\t\t\t\tsingle = selection.single();\n\n\t\t\t\t\t// vars\n\t\t\t\t\tvar frame = this.controller;\n\t\t\t\t\tvar errors = acf.isget(\n\t\t\t\t\t\tthis,\n\t\t\t\t\t\t'model',\n\t\t\t\t\t\t'attributes',\n\t\t\t\t\t\t'acf_errors'\n\t\t\t\t\t);\n\t\t\t\t\tvar $sidebar = frame.$el.find(\n\t\t\t\t\t\t'.media-frame-content .media-sidebar'\n\t\t\t\t\t);\n\n\t\t\t\t\t// remove previous error\n\t\t\t\t\t$sidebar.children( '.acf-selection-error' ).remove();\n\n\t\t\t\t\t// show attachment details\n\t\t\t\t\t$sidebar.children().removeClass( 'acf-hidden' );\n\n\t\t\t\t\t// add message\n\t\t\t\t\tif ( frame && errors ) {\n\t\t\t\t\t\t// vars\n\t\t\t\t\t\tvar filename = acf.isget(\n\t\t\t\t\t\t\tthis,\n\t\t\t\t\t\t\t'model',\n\t\t\t\t\t\t\t'attributes',\n\t\t\t\t\t\t\t'filename'\n\t\t\t\t\t\t);\n\n\t\t\t\t\t\t// hide attachment details\n\t\t\t\t\t\t// Gallery field continues to show previously selected attachment...\n\t\t\t\t\t\t$sidebar.children().addClass( 'acf-hidden' );\n\n\t\t\t\t\t\t// append message\n\t\t\t\t\t\t$sidebar.prepend(\n\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t'
        ',\n\t\t\t\t\t\t\t\t'' +\n\t\t\t\t\t\t\t\t\tacf.__( 'Restricted' ) +\n\t\t\t\t\t\t\t\t\t'',\n\t\t\t\t\t\t\t\t'' +\n\t\t\t\t\t\t\t\t\tfilename +\n\t\t\t\t\t\t\t\t\t'',\n\t\t\t\t\t\t\t\t'' +\n\t\t\t\t\t\t\t\t\terrors +\n\t\t\t\t\t\t\t\t\t'',\n\t\t\t\t\t\t\t\t'
        ',\n\t\t\t\t\t\t\t].join( '' )\n\t\t\t\t\t\t);\n\n\t\t\t\t\t\t// reset selection (unselects all attachments)\n\t\t\t\t\t\tselection.reset();\n\n\t\t\t\t\t\t// set single (attachment displayed in sidebar)\n\t\t\t\t\t\tselection.single( model );\n\n\t\t\t\t\t\t// return and prevent 'select' form being fired\n\t\t\t\t\t\treturn;\n\t\t\t\t\t}\n\n\t\t\t\t\t// return\n\t\t\t\t\treturn AttachmentLibrary.prototype.toggleSelection.apply(\n\t\t\t\t\t\tthis,\n\t\t\t\t\t\targuments\n\t\t\t\t\t);\n\t\t\t\t},\n\t\t\t} );\n\t\t},\n\t} );\n} )( jQuery );\n","( function ( $, undefined ) {\n\t/**\n\t * postboxManager\n\t *\n\t * Manages postboxes on the screen.\n\t *\n\t * @date\t25/5/19\n\t * @since\t5.8.1\n\t *\n\t * @param\tvoid\n\t * @return\tvoid\n\t */\n\tvar postboxManager = new acf.Model( {\n\t\twait: 'prepare',\n\t\tpriority: 1,\n\t\tinitialize: function () {\n\t\t\t( acf.get( 'postboxes' ) || [] ).map( acf.newPostbox );\n\t\t},\n\t} );\n\n\t/**\n\t * acf.getPostbox\n\t *\n\t * Returns a postbox instance.\n\t *\n\t * @date\t23/9/18\n\t * @since\t5.7.7\n\t *\n\t * @param\tmixed $el Either a jQuery element or the postbox id.\n\t * @return\tobject\n\t */\n\tacf.getPostbox = function ( $el ) {\n\t\t// allow string parameter\n\t\tif ( typeof arguments[ 0 ] == 'string' ) {\n\t\t\t$el = $( '#' + arguments[ 0 ] );\n\t\t}\n\n\t\t// return instance\n\t\treturn acf.getInstance( $el );\n\t};\n\n\t/**\n\t * acf.getPostboxes\n\t *\n\t * Returns an array of postbox instances.\n\t *\n\t * @date\t23/9/18\n\t * @since\t5.7.7\n\t *\n\t * @param\tvoid\n\t * @return\tarray\n\t */\n\tacf.getPostboxes = function () {\n\t\treturn acf.getInstances( $( '.acf-postbox' ) );\n\t};\n\n\t/**\n\t * acf.newPostbox\n\t *\n\t * Returns a new postbox instance for the given props.\n\t *\n\t * @date\t20/9/18\n\t * @since\t5.7.6\n\t *\n\t * @param\tobject props The postbox properties.\n\t * @return\tobject\n\t */\n\tacf.newPostbox = function ( props ) {\n\t\treturn new acf.models.Postbox( props );\n\t};\n\n\t/**\n\t * acf.models.Postbox\n\t *\n\t * The postbox model.\n\t *\n\t * @date\t20/9/18\n\t * @since\t5.7.6\n\t *\n\t * @param\tvoid\n\t * @return\tvoid\n\t */\n\tacf.models.Postbox = acf.Model.extend( {\n\t\tdata: {\n\t\t\tid: '',\n\t\t\tkey: '',\n\t\t\tstyle: 'default',\n\t\t\tlabel: 'top',\n\t\t\tedit: '',\n\t\t},\n\n\t\tsetup: function ( props ) {\n\t\t\t// compatibilty\n\t\t\tif ( props.editLink ) {\n\t\t\t\tprops.edit = props.editLink;\n\t\t\t}\n\n\t\t\t// extend data\n\t\t\t$.extend( this.data, props );\n\n\t\t\t// set $el\n\t\t\tthis.$el = this.$postbox();\n\t\t},\n\n\t\t$postbox: function () {\n\t\t\treturn $( '#' + this.get( 'id' ) );\n\t\t},\n\n\t\t$hide: function () {\n\t\t\treturn $( '#' + this.get( 'id' ) + '-hide' );\n\t\t},\n\n\t\t$hideLabel: function () {\n\t\t\treturn this.$hide().parent();\n\t\t},\n\n\t\t$hndle: function () {\n\t\t\treturn this.$( '> .hndle' );\n\t\t},\n\n\t\t$handleActions: function () {\n\t\t\treturn this.$( '> .postbox-header .handle-actions' );\n\t\t},\n\n\t\t$inside: function () {\n\t\t\treturn this.$( '> .inside' );\n\t\t},\n\n\t\tisVisible: function () {\n\t\t\treturn this.$el.hasClass( 'acf-hidden' );\n\t\t},\n\n\t\tisHiddenByScreenOptions: function () {\n\t\t\treturn (\n\t\t\t\tthis.$el.hasClass( 'hide-if-js' ) ||\n\t\t\t\tthis.$el.css( 'display' ) == 'none'\n\t\t\t);\n\t\t},\n\n\t\tinitialize: function () {\n\t\t\t// Add default class.\n\t\t\tthis.$el.addClass( 'acf-postbox' );\n\n\t\t\t// Add field group style class (ignore in block editor).\n\t\t\tif ( acf.get( 'editor' ) !== 'block' ) {\n\t\t\t\tvar style = this.get( 'style' );\n\t\t\t\tif ( style !== 'default' ) {\n\t\t\t\t\tthis.$el.addClass( style );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Add .inside class.\n\t\t\tthis.$inside()\n\t\t\t\t.addClass( 'acf-fields' )\n\t\t\t\t.addClass( '-' + this.get( 'label' ) );\n\n\t\t\t// Append edit link.\n\t\t\tvar edit = this.get( 'edit' );\n\t\t\tif ( edit ) {\n\t\t\t\tvar html =\n\t\t\t\t\t'';\n\t\t\t\tvar $handleActions = this.$handleActions();\n\t\t\t\tif ( $handleActions.length ) {\n\t\t\t\t\t$handleActions.prepend( html );\n\t\t\t\t} else {\n\t\t\t\t\tthis.$hndle().append( html );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Show postbox.\n\t\t\tthis.show();\n\t\t},\n\n\t\tshow: function () {\n\t\t\t// If disabled by screen options, set checked to false and return.\n\t\t\tif ( this.$el.hasClass( 'hide-if-js' ) ) {\n\t\t\t\tthis.$hide().prop( 'checked', false );\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// Show label.\n\t\t\tthis.$hideLabel().show();\n\n\t\t\t// toggle on checkbox\n\t\t\tthis.$hide().prop( 'checked', true );\n\n\t\t\t// Show postbox\n\t\t\tthis.$el.show().removeClass( 'acf-hidden' );\n\n\t\t\t// Do action.\n\t\t\tacf.doAction( 'show_postbox', this );\n\t\t},\n\n\t\tenable: function () {\n\t\t\tacf.enable( this.$el, 'postbox' );\n\t\t},\n\n\t\tshowEnable: function () {\n\t\t\tthis.enable();\n\t\t\tthis.show();\n\t\t},\n\n\t\thide: function () {\n\t\t\t// Hide label.\n\t\t\tthis.$hideLabel().hide();\n\n\t\t\t// Hide postbox\n\t\t\tthis.$el.hide().addClass( 'acf-hidden' );\n\n\t\t\t// Do action.\n\t\t\tacf.doAction( 'hide_postbox', this );\n\t\t},\n\n\t\tdisable: function () {\n\t\t\tacf.disable( this.$el, 'postbox' );\n\t\t},\n\n\t\thideDisable: function () {\n\t\t\tthis.disable();\n\t\t\tthis.hide();\n\t\t},\n\n\t\thtml: function ( html ) {\n\t\t\t// Update HTML.\n\t\t\tthis.$inside().html( html );\n\n\t\t\t// Do action.\n\t\t\tacf.doAction( 'append', this.$el );\n\t\t},\n\t} );\n} )( jQuery );\n","( function ( $, undefined ) {\n\tacf.screen = new acf.Model( {\n\t\tactive: true,\n\n\t\txhr: false,\n\n\t\ttimeout: false,\n\n\t\twait: 'load',\n\n\t\tevents: {\n\t\t\t'change #page_template': 'onChange',\n\t\t\t'change #parent_id': 'onChange',\n\t\t\t'change #post-formats-select': 'onChange',\n\t\t\t'change .categorychecklist': 'onChange',\n\t\t\t'change .tagsdiv': 'onChange',\n\t\t\t'change .acf-taxonomy-field[data-save=\"1\"]': 'onChange',\n\t\t\t'change #product-type': 'onChange',\n\t\t},\n\n\t\tisPost: function () {\n\t\t\treturn acf.get( 'screen' ) === 'post';\n\t\t},\n\n\t\tisUser: function () {\n\t\t\treturn acf.get( 'screen' ) === 'user';\n\t\t},\n\n\t\tisTaxonomy: function () {\n\t\t\treturn acf.get( 'screen' ) === 'taxonomy';\n\t\t},\n\n\t\tisAttachment: function () {\n\t\t\treturn acf.get( 'screen' ) === 'attachment';\n\t\t},\n\n\t\tisNavMenu: function () {\n\t\t\treturn acf.get( 'screen' ) === 'nav_menu';\n\t\t},\n\n\t\tisWidget: function () {\n\t\t\treturn acf.get( 'screen' ) === 'widget';\n\t\t},\n\n\t\tisComment: function () {\n\t\t\treturn acf.get( 'screen' ) === 'comment';\n\t\t},\n\n\t\tgetPageTemplate: function () {\n\t\t\tvar $el = $( '#page_template' );\n\t\t\treturn $el.length ? $el.val() : null;\n\t\t},\n\n\t\tgetPageParent: function ( e, $el ) {\n\t\t\tvar $el = $( '#parent_id' );\n\t\t\treturn $el.length ? $el.val() : null;\n\t\t},\n\n\t\tgetPageType: function ( e, $el ) {\n\t\t\treturn this.getPageParent() ? 'child' : 'parent';\n\t\t},\n\n\t\tgetPostType: function () {\n\t\t\treturn $( '#post_type' ).val();\n\t\t},\n\n\t\tgetPostFormat: function ( e, $el ) {\n\t\t\tvar $el = $( '#post-formats-select input:checked' );\n\t\t\tif ( $el.length ) {\n\t\t\t\tvar val = $el.val();\n\t\t\t\treturn val == '0' ? 'standard' : val;\n\t\t\t}\n\t\t\treturn null;\n\t\t},\n\n\t\tgetPostCoreTerms: function () {\n\t\t\t// vars\n\t\t\tvar terms = {};\n\n\t\t\t// serialize WP taxonomy postboxes\n\t\t\tvar data = acf.serialize( $( '.categorydiv, .tagsdiv' ) );\n\n\t\t\t// use tax_input (tag, custom-taxonomy) when possible.\n\t\t\t// this data is already formatted in taxonomy => [terms].\n\t\t\tif ( data.tax_input ) {\n\t\t\t\tterms = data.tax_input;\n\t\t\t}\n\n\t\t\t// append \"category\" which uses a different name\n\t\t\tif ( data.post_category ) {\n\t\t\t\tterms.category = data.post_category;\n\t\t\t}\n\n\t\t\t// convert any string values (tags) into array format\n\t\t\tfor ( var tax in terms ) {\n\t\t\t\tif ( ! acf.isArray( terms[ tax ] ) ) {\n\t\t\t\t\tterms[ tax ] = terms[ tax ].split( /,[\\s]?/ );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// return\n\t\t\treturn terms;\n\t\t},\n\n\t\tgetPostTerms: function () {\n\t\t\t// Get core terms.\n\t\t\tvar terms = this.getPostCoreTerms();\n\n\t\t\t// loop over taxonomy fields and add their values\n\t\t\tacf.getFields( { type: 'taxonomy' } ).map( function ( field ) {\n\t\t\t\t// ignore fields that don't save\n\t\t\t\tif ( ! field.get( 'save' ) ) {\n\t\t\t\t\treturn;\n\t\t\t\t}\n\n\t\t\t\t// vars\n\t\t\t\tvar val = field.val();\n\t\t\t\tvar tax = field.get( 'taxonomy' );\n\n\t\t\t\t// check val\n\t\t\t\tif ( val ) {\n\t\t\t\t\t// ensure terms exists\n\t\t\t\t\tterms[ tax ] = terms[ tax ] || [];\n\n\t\t\t\t\t// ensure val is an array\n\t\t\t\t\tval = acf.isArray( val ) ? val : [ val ];\n\n\t\t\t\t\t// append\n\t\t\t\t\tterms[ tax ] = terms[ tax ].concat( val );\n\t\t\t\t}\n\t\t\t} );\n\n\t\t\t// add WC product type\n\t\t\tif ( ( productType = this.getProductType() ) !== null ) {\n\t\t\t\tterms.product_type = [ productType ];\n\t\t\t}\n\n\t\t\t// remove duplicate values\n\t\t\tfor ( var tax in terms ) {\n\t\t\t\tterms[ tax ] = acf.uniqueArray( terms[ tax ] );\n\t\t\t}\n\n\t\t\t// return\n\t\t\treturn terms;\n\t\t},\n\n\t\tgetProductType: function () {\n\t\t\tvar $el = $( '#product-type' );\n\t\t\treturn $el.length ? $el.val() : null;\n\t\t},\n\n\t\tcheck: function () {\n\t\t\t// bail early if not for post\n\t\t\tif ( acf.get( 'screen' ) !== 'post' ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// abort XHR if is already loading AJAX data\n\t\t\tif ( this.xhr ) {\n\t\t\t\tthis.xhr.abort();\n\t\t\t}\n\n\t\t\t// vars\n\t\t\tvar ajaxData = acf.parseArgs( this.data, {\n\t\t\t\taction: 'acf/ajax/check_screen',\n\t\t\t\tscreen: acf.get( 'screen' ),\n\t\t\t\texists: [],\n\t\t\t} );\n\n\t\t\t// post id\n\t\t\tif ( this.isPost() ) {\n\t\t\t\tajaxData.post_id = acf.get( 'post_id' );\n\t\t\t}\n\n\t\t\t// post type\n\t\t\tif ( ( postType = this.getPostType() ) !== null ) {\n\t\t\t\tajaxData.post_type = postType;\n\t\t\t}\n\n\t\t\t// page template\n\t\t\tif ( ( pageTemplate = this.getPageTemplate() ) !== null ) {\n\t\t\t\tajaxData.page_template = pageTemplate;\n\t\t\t}\n\n\t\t\t// page parent\n\t\t\tif ( ( pageParent = this.getPageParent() ) !== null ) {\n\t\t\t\tajaxData.page_parent = pageParent;\n\t\t\t}\n\n\t\t\t// page type\n\t\t\tif ( ( pageType = this.getPageType() ) !== null ) {\n\t\t\t\tajaxData.page_type = pageType;\n\t\t\t}\n\n\t\t\t// post format\n\t\t\tif ( ( postFormat = this.getPostFormat() ) !== null ) {\n\t\t\t\tajaxData.post_format = postFormat;\n\t\t\t}\n\n\t\t\t// post terms\n\t\t\tif ( ( postTerms = this.getPostTerms() ) !== null ) {\n\t\t\t\tajaxData.post_terms = postTerms;\n\t\t\t}\n\n\t\t\t// add array of existing postboxes to increase performance and reduce JSON HTML\n\t\t\tacf.getPostboxes().map( function ( postbox ) {\n\t\t\t\tajaxData.exists.push( postbox.get( 'key' ) );\n\t\t\t} );\n\n\t\t\t// filter\n\t\t\tajaxData = acf.applyFilters( 'check_screen_args', ajaxData );\n\n\t\t\t// success\n\t\t\tvar onSuccess = function ( json ) {\n\t\t\t\t// Render post screen.\n\t\t\t\tif ( acf.get( 'screen' ) == 'post' ) {\n\t\t\t\t\tthis.renderPostScreen( json );\n\n\t\t\t\t\t// Render user screen.\n\t\t\t\t} else if ( acf.get( 'screen' ) == 'user' ) {\n\t\t\t\t\tthis.renderUserScreen( json );\n\t\t\t\t}\n\n\t\t\t\t// action\n\t\t\t\tacf.doAction( 'check_screen_complete', json, ajaxData );\n\t\t\t};\n\n\t\t\t// ajax\n\t\t\tthis.xhr = $.ajax( {\n\t\t\t\turl: acf.get( 'ajaxurl' ),\n\t\t\t\tdata: acf.prepareForAjax( ajaxData ),\n\t\t\t\ttype: 'post',\n\t\t\t\tdataType: 'json',\n\t\t\t\tcontext: this,\n\t\t\t\tsuccess: onSuccess,\n\t\t\t} );\n\t\t},\n\n\t\tonChange: function ( e, $el ) {\n\t\t\tthis.setTimeout( this.check, 1 );\n\t\t},\n\n\t\trenderPostScreen: function ( data ) {\n\t\t\t// Helper function to copy events\n\t\t\tvar copyEvents = function ( $from, $to ) {\n\t\t\t\tvar events = $._data( $from[ 0 ] ).events;\n\t\t\t\tfor ( var type in events ) {\n\t\t\t\t\tfor ( var i = 0; i < events[ type ].length; i++ ) {\n\t\t\t\t\t\t$to.on( type, events[ type ][ i ].handler );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t};\n\n\t\t\t// Helper function to sort metabox.\n\t\t\tvar sortMetabox = function ( id, ids ) {\n\t\t\t\t// Find position of id within ids.\n\t\t\t\tvar index = ids.indexOf( id );\n\n\t\t\t\t// Bail early if index not found.\n\t\t\t\tif ( index == -1 ) {\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\n\t\t\t\t// Loop over metaboxes behind (in reverse order).\n\t\t\t\tfor ( var i = index - 1; i >= 0; i-- ) {\n\t\t\t\t\tif ( $( '#' + ids[ i ] ).length ) {\n\t\t\t\t\t\treturn $( '#' + ids[ i ] ).after( $( '#' + id ) );\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// Loop over metaboxes infront.\n\t\t\t\tfor ( var i = index + 1; i < ids.length; i++ ) {\n\t\t\t\t\tif ( $( '#' + ids[ i ] ).length ) {\n\t\t\t\t\t\treturn $( '#' + ids[ i ] ).before( $( '#' + id ) );\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// Return false if not sorted.\n\t\t\t\treturn false;\n\t\t\t};\n\n\t\t\t// Keep track of visible and hidden postboxes.\n\t\t\tdata.visible = [];\n\t\t\tdata.hidden = [];\n\n\t\t\t// Show these postboxes.\n\t\t\tdata.results = data.results.map( function ( result, i ) {\n\t\t\t\t// vars\n\t\t\t\tvar postbox = acf.getPostbox( result.id );\n\n\t\t\t\t// Prevent \"acf_after_title\" position in Block Editor.\n\t\t\t\tif (\n\t\t\t\t\tacf.isGutenberg() &&\n\t\t\t\t\tresult.position == 'acf_after_title'\n\t\t\t\t) {\n\t\t\t\t\tresult.position = 'normal';\n\t\t\t\t}\n\n\t\t\t\t// Create postbox if doesn't exist.\n\t\t\t\tif ( ! postbox ) {\n\t\t\t\t\tvar wpMinorVersion = parseFloat( acf.get( 'wp_version' ) );\n\t\t\t\t\tif ( wpMinorVersion >= 5.5 ) {\n\t\t\t\t\t\tvar postboxHeader = [\n\t\t\t\t\t\t\t'
        ',\n\t\t\t\t\t\t\t'

        ',\n\t\t\t\t\t\t\t'' + acf.escHtml( result.title ) + '',\n\t\t\t\t\t\t\t'

        ',\n\t\t\t\t\t\t\t'
        ',\n\t\t\t\t\t\t\t'',\n\t\t\t\t\t\t\t'
        ',\n\t\t\t\t\t\t\t'
        ',\n\t\t\t\t\t\t].join( '' );\n\t\t\t\t\t} else {\n\t\t\t\t\t\tvar postboxHeader = [\n\t\t\t\t\t\t\t'',\n\t\t\t\t\t\t\t'

        ',\n\t\t\t\t\t\t\t'' + acf.escHtml( result.title ) + '',\n\t\t\t\t\t\t\t'

        ',\n\t\t\t\t\t\t].join( '' );\n\t\t\t\t\t}\n\n\t\t\t\t\t// Ensure result.classes is set.\n\t\t\t\t\tif ( ! result.classes ) result.classes = '';\n\n\t\t\t\t\t// Create it.\n\t\t\t\t\tvar $postbox = $(\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t'
        ',\n\t\t\t\t\t\t\tpostboxHeader,\n\t\t\t\t\t\t\t'
        ',\n\t\t\t\t\t\t\tresult.html,\n\t\t\t\t\t\t\t'
        ',\n\t\t\t\t\t\t\t'
        ',\n\t\t\t\t\t\t].join( '' )\n\t\t\t\t\t);\n\n\t\t\t\t\t// Create new hide toggle.\n\t\t\t\t\tif ( $( '#adv-settings' ).length ) {\n\t\t\t\t\t\tvar $prefs = $( '#adv-settings .metabox-prefs' );\n\t\t\t\t\t\tvar $label = $(\n\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t'',\n\t\t\t\t\t\t\t].join( '' )\n\t\t\t\t\t\t);\n\n\t\t\t\t\t\t// Copy default WP events onto checkbox.\n\t\t\t\t\t\tcopyEvents(\n\t\t\t\t\t\t\t$prefs.find( 'input' ).first(),\n\t\t\t\t\t\t\t$label.find( 'input' )\n\t\t\t\t\t\t);\n\n\t\t\t\t\t\t// Append hide label\n\t\t\t\t\t\t$prefs.append( $label );\n\t\t\t\t\t}\n\n\t\t\t\t\t// Copy default WP events onto metabox.\n\t\t\t\t\tif ( $( '.postbox' ).length ) {\n\t\t\t\t\t\tcopyEvents(\n\t\t\t\t\t\t\t$( '.postbox .handlediv' ).first(),\n\t\t\t\t\t\t\t$postbox.children( '.handlediv' )\n\t\t\t\t\t\t);\n\t\t\t\t\t\tcopyEvents(\n\t\t\t\t\t\t\t$( '.postbox .hndle' ).first(),\n\t\t\t\t\t\t\t$postbox.children( '.hndle' )\n\t\t\t\t\t\t);\n\t\t\t\t\t}\n\n\t\t\t\t\t// Append metabox to the bottom of \"side-sortables\".\n\t\t\t\t\tif ( result.position === 'side' ) {\n\t\t\t\t\t\t$( '#' + result.position + '-sortables' ).append(\n\t\t\t\t\t\t\t$postbox\n\t\t\t\t\t\t);\n\n\t\t\t\t\t\t// Prepend metabox to the top of \"normal-sortbables\".\n\t\t\t\t\t} else {\n\t\t\t\t\t\t$( '#' + result.position + '-sortables' ).prepend(\n\t\t\t\t\t\t\t$postbox\n\t\t\t\t\t\t);\n\t\t\t\t\t}\n\n\t\t\t\t\t// Position metabox amongst existing ACF metaboxes within the same location.\n\t\t\t\t\tvar order = [];\n\t\t\t\t\tdata.results.map( function ( _result ) {\n\t\t\t\t\t\tif (\n\t\t\t\t\t\t\tresult.position === _result.position &&\n\t\t\t\t\t\t\t$(\n\t\t\t\t\t\t\t\t'#' +\n\t\t\t\t\t\t\t\t\tresult.position +\n\t\t\t\t\t\t\t\t\t'-sortables #' +\n\t\t\t\t\t\t\t\t\t_result.id\n\t\t\t\t\t\t\t).length\n\t\t\t\t\t\t) {\n\t\t\t\t\t\t\torder.push( _result.id );\n\t\t\t\t\t\t}\n\t\t\t\t\t} );\n\t\t\t\t\tsortMetabox( result.id, order );\n\n\t\t\t\t\t// Check 'sorted' for user preference.\n\t\t\t\t\tif ( data.sorted ) {\n\t\t\t\t\t\t// Loop over each position (acf_after_title, side, normal).\n\t\t\t\t\t\tfor ( var position in data.sorted ) {\n\t\t\t\t\t\t\tlet order = data.sorted[ position ];\n\n\t\t\t\t\t\t\tif ( typeof order !== 'string' ) {\n\t\t\t\t\t\t\t\tcontinue;\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t// Explode string into array of ids.\n\t\t\t\t\t\t\torder = order.split( ',' );\n\n\t\t\t\t\t\t\t// Position metabox relative to order.\n\t\t\t\t\t\t\tif ( sortMetabox( result.id, order ) ) {\n\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// Initalize it (modifies HTML).\n\t\t\t\t\tpostbox = acf.newPostbox( result );\n\n\t\t\t\t\t// Trigger action.\n\t\t\t\t\tacf.doAction( 'append', $postbox );\n\t\t\t\t\tacf.doAction( 'append_postbox', postbox );\n\t\t\t\t}\n\n\t\t\t\t// show postbox\n\t\t\t\tpostbox.showEnable();\n\n\t\t\t\t// append\n\t\t\t\tdata.visible.push( result.id );\n\n\t\t\t\t// Return result (may have changed).\n\t\t\t\treturn result;\n\t\t\t} );\n\n\t\t\t// Hide these postboxes.\n\t\t\tacf.getPostboxes().map( function ( postbox ) {\n\t\t\t\tif ( data.visible.indexOf( postbox.get( 'id' ) ) === -1 ) {\n\t\t\t\t\t// Hide postbox.\n\t\t\t\t\tpostbox.hideDisable();\n\n\t\t\t\t\t// Append to data.\n\t\t\t\t\tdata.hidden.push( postbox.get( 'id' ) );\n\t\t\t\t}\n\t\t\t} );\n\n\t\t\t// Update style.\n\t\t\t$( '#acf-style' ).html( data.style );\n\n\t\t\t// Do action.\n\t\t\tacf.doAction( 'refresh_post_screen', data );\n\t\t},\n\n\t\trenderUserScreen: function ( json ) {},\n\t} );\n\n\t/**\n\t * gutenScreen\n\t *\n\t * Adds compatibility with the Gutenberg edit screen.\n\t *\n\t * @date\t11/12/18\n\t * @since\t5.8.0\n\t *\n\t * @param\tvoid\n\t * @return\tvoid\n\t */\n\tvar gutenScreen = new acf.Model( {\n\t\t// Keep a reference to the most recent post attributes.\n\t\tpostEdits: {},\n\n\t\t// Wait until assets have been loaded.\n\t\twait: 'prepare',\n\n\t\tinitialize: function () {\n\t\t\t// Bail early if not Gutenberg.\n\t\t\tif ( ! acf.isGutenbergPostEditor() ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// Listen for changes (use debounced version as this can fires often).\n\t\t\twp.data.subscribe( acf.debounce( this.onChange ).bind( this ) );\n\n\t\t\t// Customize \"acf.screen.get\" functions.\n\t\t\tacf.screen.getPageTemplate = this.getPageTemplate;\n\t\t\tacf.screen.getPageParent = this.getPageParent;\n\t\t\tacf.screen.getPostType = this.getPostType;\n\t\t\tacf.screen.getPostFormat = this.getPostFormat;\n\t\t\tacf.screen.getPostCoreTerms = this.getPostCoreTerms;\n\n\t\t\t// Disable unload\n\t\t\tacf.unload.disable();\n\n\t\t\t// Refresh metaboxes since WP 5.3.\n\t\t\tvar wpMinorVersion = parseFloat( acf.get( 'wp_version' ) );\n\t\t\tif ( wpMinorVersion >= 5.3 ) {\n\t\t\t\tthis.addAction(\n\t\t\t\t\t'refresh_post_screen',\n\t\t\t\t\tthis.onRefreshPostScreen\n\t\t\t\t);\n\t\t\t}\n\n\t\t\t// Trigger \"refresh\" after WP has moved metaboxes into place.\n\t\t\twp.domReady( acf.refresh );\n\t\t},\n\n\t\tonChange: function () {\n\t\t\t// Determine attributes that can trigger a refresh.\n\t\t\tvar attributes = [ 'template', 'parent', 'format' ];\n\n\t\t\t// Append taxonomy attribute names to this list.\n\t\t\t( wp.data.select( 'core' ).getTaxonomies() || [] ).map( function (\n\t\t\t\ttaxonomy\n\t\t\t) {\n\t\t\t\tattributes.push( taxonomy.rest_base );\n\t\t\t} );\n\n\t\t\t// Get relevant current post edits.\n\t\t\tvar _postEdits = wp.data.select( 'core/editor' ).getPostEdits();\n\t\t\tvar postEdits = {};\n\t\t\tattributes.map( function ( k ) {\n\t\t\t\tif ( _postEdits[ k ] !== undefined ) {\n\t\t\t\t\tpostEdits[ k ] = _postEdits[ k ];\n\t\t\t\t}\n\t\t\t} );\n\n\t\t\t// Detect change.\n\t\t\tif (\n\t\t\t\tJSON.stringify( postEdits ) !== JSON.stringify( this.postEdits )\n\t\t\t) {\n\t\t\t\tthis.postEdits = postEdits;\n\n\t\t\t\t// Check screen.\n\t\t\t\tacf.screen.check();\n\t\t\t}\n\t\t},\n\n\t\tgetPageTemplate: function () {\n\t\t\treturn wp.data\n\t\t\t\t.select( 'core/editor' )\n\t\t\t\t.getEditedPostAttribute( 'template' );\n\t\t},\n\n\t\tgetPageParent: function ( e, $el ) {\n\t\t\treturn wp.data\n\t\t\t\t.select( 'core/editor' )\n\t\t\t\t.getEditedPostAttribute( 'parent' );\n\t\t},\n\n\t\tgetPostType: function () {\n\t\t\treturn wp.data\n\t\t\t\t.select( 'core/editor' )\n\t\t\t\t.getEditedPostAttribute( 'type' );\n\t\t},\n\n\t\tgetPostFormat: function ( e, $el ) {\n\t\t\treturn wp.data\n\t\t\t\t.select( 'core/editor' )\n\t\t\t\t.getEditedPostAttribute( 'format' );\n\t\t},\n\n\t\tgetPostCoreTerms: function () {\n\t\t\t// vars\n\t\t\tvar terms = {};\n\n\t\t\t// Loop over taxonomies.\n\t\t\tvar taxonomies = wp.data.select( 'core' ).getTaxonomies() || [];\n\t\t\ttaxonomies.map( function ( taxonomy ) {\n\t\t\t\t// Append selected taxonomies to terms object.\n\t\t\t\tvar postTerms = wp.data\n\t\t\t\t\t.select( 'core/editor' )\n\t\t\t\t\t.getEditedPostAttribute( taxonomy.rest_base );\n\t\t\t\tif ( postTerms ) {\n\t\t\t\t\tterms[ taxonomy.slug ] = postTerms;\n\t\t\t\t}\n\t\t\t} );\n\n\t\t\t// return\n\t\t\treturn terms;\n\t\t},\n\n\t\t/**\n\t\t * onRefreshPostScreen\n\t\t *\n\t\t * Fires after the Post edit screen metaboxs are refreshed to update the Block Editor API state.\n\t\t *\n\t\t * @date\t11/11/19\n\t\t * @since\t5.8.7\n\t\t *\n\t\t * @param\tobject data The \"check_screen\" JSON response data.\n\t\t * @return\tvoid\n\t\t */\n\t\tonRefreshPostScreen: function ( data ) {\n\n\t\t\t// Extract vars.\n\t\t\tvar select = wp.data.select( 'core/edit-post' );\n\t\t\tvar dispatch = wp.data.dispatch( 'core/edit-post' );\n\n\t\t\t// Load current metabox locations and data.\n\t\t\tvar locations = {};\n\t\t\tselect.getActiveMetaBoxLocations().map( function ( location ) {\n\t\t\t\tlocations[ location ] = select.getMetaBoxesPerLocation(\n\t\t\t\t\tlocation\n\t\t\t\t);\n\t\t\t} );\n\n\t\t\t// Generate flat array of existing ids.\n\t\t\tvar ids = [];\n\t\t\tfor ( var k in locations ) {\n\t\t\t\tlocations[ k ].map( function ( m ) {\n\t\t\t\t\tids.push( m.id );\n\t\t\t\t} );\n\t\t\t}\n\n\t\t\t// Append new ACF metaboxes (ignore those which already exist).\n\t\t\tdata.results\n\t\t\t\t.filter( function ( r ) {\n\t\t\t\t\treturn ids.indexOf( r.id ) === -1;\n\t\t\t\t} )\n\t\t\t\t.map( function ( result, i ) {\n\t\t\t\t\t// Ensure location exists.\n\t\t\t\t\tvar location = result.position;\n\t\t\t\t\tlocations[ location ] = locations[ location ] || [];\n\n\t\t\t\t\t// Append.\n\t\t\t\t\tlocations[ location ].push( {\n\t\t\t\t\t\tid: result.id,\n\t\t\t\t\t\ttitle: result.title,\n\t\t\t\t\t} );\n\t\t\t\t} );\n\n\t\t\t// Remove hidden ACF metaboxes.\n\t\t\tfor ( var k in locations ) {\n\t\t\t\tlocations[ k ] = locations[ k ].filter( function ( m ) {\n\t\t\t\t\treturn data.hidden.indexOf( m.id ) === -1;\n\t\t\t\t} );\n\t\t\t}\n\n\t\t\t// Update state.\n\t\t\tdispatch.setAvailableMetaBoxesPerLocation( locations );\n\t\t},\n\t} );\n} )( jQuery );\n","( function ( $, undefined ) {\n\t/**\n\t * acf.newSelect2\n\t *\n\t * description\n\t *\n\t * @date\t13/1/18\n\t * @since\t5.6.5\n\t *\n\t * @param\ttype $var Description. Default.\n\t * @return\ttype Description.\n\t */\n\n\tacf.newSelect2 = function ( $select, props ) {\n\t\t// defaults\n\t\tprops = acf.parseArgs( props, {\n\t\t\tallowNull: false,\n\t\t\tplaceholder: '',\n\t\t\tmultiple: false,\n\t\t\tfield: false,\n\t\t\tajax: false,\n\t\t\tajaxAction: '',\n\t\t\tajaxData: function ( data ) {\n\t\t\t\treturn data;\n\t\t\t},\n\t\t\tajaxResults: function ( json ) {\n\t\t\t\treturn json;\n\t\t\t},\n\t\t\ttemplateSelection: false,\n\t\t\ttemplateResult: false,\n\t\t\tdropdownCssClass: '',\n\t\t\tsuppressFilters: false,\n\t\t} );\n\n\t\t// initialize\n\t\tif ( getVersion() == 4 ) {\n\t\t\tvar select2 = new Select2_4( $select, props );\n\t\t} else {\n\t\t\tvar select2 = new Select2_3( $select, props );\n\t\t}\n\n\t\t// actions\n\t\tacf.doAction( 'new_select2', select2 );\n\n\t\t// return\n\t\treturn select2;\n\t};\n\n\t/**\n\t * getVersion\n\t *\n\t * description\n\t *\n\t * @date\t13/1/18\n\t * @since\t5.6.5\n\t *\n\t * @param\ttype $var Description. Default.\n\t * @return\ttype Description.\n\t */\n\n\tfunction getVersion() {\n\t\t// v4\n\t\tif ( acf.isset( window, 'jQuery', 'fn', 'select2', 'amd' ) ) {\n\t\t\treturn 4;\n\t\t}\n\n\t\t// v3\n\t\tif ( acf.isset( window, 'Select2' ) ) {\n\t\t\treturn 3;\n\t\t}\n\n\t\t// return\n\t\treturn false;\n\t}\n\n\t/**\n\t * Select2\n\t *\n\t * description\n\t *\n\t * @date\t13/1/18\n\t * @since\t5.6.5\n\t *\n\t * @param\ttype $var Description. Default.\n\t * @return\ttype Description.\n\t */\n\n\tvar Select2 = acf.Model.extend( {\n\t\tsetup: function ( $select, props ) {\n\t\t\t$.extend( this.data, props );\n\t\t\tthis.$el = $select;\n\t\t},\n\n\t\tinitialize: function () {},\n\n\t\tselectOption: function ( value ) {\n\t\t\tvar $option = this.getOption( value );\n\t\t\tif ( ! $option.prop( 'selected' ) ) {\n\t\t\t\t$option.prop( 'selected', true ).trigger( 'change' );\n\t\t\t}\n\t\t},\n\n\t\tunselectOption: function ( value ) {\n\t\t\tvar $option = this.getOption( value );\n\t\t\tif ( $option.prop( 'selected' ) ) {\n\t\t\t\t$option.prop( 'selected', false ).trigger( 'change' );\n\t\t\t}\n\t\t},\n\n\t\tgetOption: function ( value ) {\n\t\t\treturn this.$( 'option[value=\"' + value + '\"]' );\n\t\t},\n\n\t\taddOption: function ( option ) {\n\t\t\t// defaults\n\t\t\toption = acf.parseArgs( option, {\n\t\t\t\tid: '',\n\t\t\t\ttext: '',\n\t\t\t\tselected: false,\n\t\t\t} );\n\n\t\t\t// vars\n\t\t\tvar $option = this.getOption( option.id );\n\n\t\t\t// append\n\t\t\tif ( ! $option.length ) {\n\t\t\t\t$option = $( '' );\n\t\t\t\t$option.html( option.text );\n\t\t\t\t$option.attr( 'value', option.id );\n\t\t\t\t$option.prop( 'selected', option.selected );\n\t\t\t\tthis.$el.append( $option );\n\t\t\t}\n\n\t\t\t// chain\n\t\t\treturn $option;\n\t\t},\n\n\t\tgetValue: function () {\n\t\t\t// vars\n\t\t\tvar val = [];\n\t\t\tvar $options = this.$el.find( 'option:selected' );\n\n\t\t\t// bail early if no selected\n\t\t\tif ( ! $options.exists() ) {\n\t\t\t\treturn val;\n\t\t\t}\n\n\t\t\t// sort by attribute\n\t\t\t$options = $options.sort( function ( a, b ) {\n\t\t\t\treturn (\n\t\t\t\t\t+a.getAttribute( 'data-i' ) - +b.getAttribute( 'data-i' )\n\t\t\t\t);\n\t\t\t} );\n\n\t\t\t// loop\n\t\t\t$options.each( function () {\n\t\t\t\tvar $el = $( this );\n\t\t\t\tval.push( {\n\t\t\t\t\t$el: $el,\n\t\t\t\t\tid: $el.attr( 'value' ),\n\t\t\t\t\ttext: $el.text(),\n\t\t\t\t} );\n\t\t\t} );\n\n\t\t\t// return\n\t\t\treturn val;\n\t\t},\n\n\t\tmergeOptions: function () {},\n\n\t\tgetChoices: function () {\n\t\t\t// callback\n\t\t\tvar crawl = function ( $parent ) {\n\t\t\t\t// vars\n\t\t\t\tvar choices = [];\n\n\t\t\t\t// loop\n\t\t\t\t$parent.children().each( function () {\n\t\t\t\t\t// vars\n\t\t\t\t\tvar $child = $( this );\n\n\t\t\t\t\t// optgroup\n\t\t\t\t\tif ( $child.is( 'optgroup' ) ) {\n\t\t\t\t\t\tchoices.push( {\n\t\t\t\t\t\t\ttext: $child.attr( 'label' ),\n\t\t\t\t\t\t\tchildren: crawl( $child ),\n\t\t\t\t\t\t} );\n\n\t\t\t\t\t\t// option\n\t\t\t\t\t} else {\n\t\t\t\t\t\tchoices.push( {\n\t\t\t\t\t\t\tid: $child.attr( 'value' ),\n\t\t\t\t\t\t\ttext: $child.text(),\n\t\t\t\t\t\t} );\n\t\t\t\t\t}\n\t\t\t\t} );\n\n\t\t\t\t// return\n\t\t\t\treturn choices;\n\t\t\t};\n\n\t\t\t// crawl\n\t\t\treturn crawl( this.$el );\n\t\t},\n\n\t\tgetAjaxData: function ( params ) {\n\t\t\t// vars\n\t\t\tvar ajaxData = {\n\t\t\t\taction: this.get( 'ajaxAction' ),\n\t\t\t\ts: params.term || '',\n\t\t\t\tpaged: params.page || 1,\n\t\t\t};\n\n\t\t\t// field helper\n\t\t\tvar field = this.get( 'field' );\n\t\t\tif ( field ) {\n\t\t\t\tajaxData.field_key = field.get( 'key' );\n\t\t\t}\n\n\t\t\t// callback\n\t\t\tvar callback = this.get( 'ajaxData' );\n\t\t\tif ( callback ) {\n\t\t\t\tajaxData = callback.apply( this, [ ajaxData, params ] );\n\t\t\t}\n\n\t\t\t// filter\n\t\t\tajaxData = acf.applyFilters(\n\t\t\t\t'select2_ajax_data',\n\t\t\t\tajaxData,\n\t\t\t\tthis.data,\n\t\t\t\tthis.$el,\n\t\t\t\tfield || false,\n\t\t\t\tthis\n\t\t\t);\n\n\t\t\t// return\n\t\t\treturn acf.prepareForAjax( ajaxData );\n\t\t},\n\n\t\tgetAjaxResults: function ( json, params ) {\n\t\t\t// defaults\n\t\t\tjson = acf.parseArgs( json, {\n\t\t\t\tresults: false,\n\t\t\t\tmore: false,\n\t\t\t} );\n\n\t\t\t// callback\n\t\t\tvar callback = this.get( 'ajaxResults' );\n\t\t\tif ( callback ) {\n\t\t\t\tjson = callback.apply( this, [ json, params ] );\n\t\t\t}\n\n\t\t\t// filter\n\t\t\tjson = acf.applyFilters(\n\t\t\t\t'select2_ajax_results',\n\t\t\t\tjson,\n\t\t\t\tparams,\n\t\t\t\tthis\n\t\t\t);\n\n\t\t\t// return\n\t\t\treturn json;\n\t\t},\n\n\t\tprocessAjaxResults: function ( json, params ) {\n\t\t\t// vars\n\t\t\tvar json = this.getAjaxResults( json, params );\n\n\t\t\t// change more to pagination\n\t\t\tif ( json.more ) {\n\t\t\t\tjson.pagination = { more: true };\n\t\t\t}\n\n\t\t\t// merge together groups\n\t\t\tsetTimeout( $.proxy( this.mergeOptions, this ), 1 );\n\n\t\t\t// return\n\t\t\treturn json;\n\t\t},\n\n\t\tdestroy: function () {\n\t\t\t// destroy via api\n\t\t\tif ( this.$el.data( 'select2' ) ) {\n\t\t\t\tthis.$el.select2( 'destroy' );\n\t\t\t}\n\n\t\t\t// destory via HTML (duplicating HTML does not contain data)\n\t\t\tthis.$el.siblings( '.select2-container' ).remove();\n\t\t},\n\t} );\n\n\t/**\n\t * Select2_4\n\t *\n\t * description\n\t *\n\t * @date\t13/1/18\n\t * @since\t5.6.5\n\t *\n\t * @param\ttype $var Description. Default.\n\t * @return\ttype Description.\n\t */\n\n\tvar Select2_4 = Select2.extend( {\n\t\tinitialize: function () {\n\t\t\t// vars\n\t\t\tvar $select = this.$el;\n\t\t\tvar options = {\n\t\t\t\twidth: '100%',\n\t\t\t\tallowClear: this.get( 'allowNull' ),\n\t\t\t\tplaceholder: this.get( 'placeholder' ),\n\t\t\t\tmultiple: this.get( 'multiple' ),\n\t\t\t\ttemplateSelection: this.get( 'templateSelection' ),\n\t\t\t\ttemplateResult: this.get( 'templateResult' ),\n\t\t\t\tdropdownCssClass: this.get( 'dropdownCssClass' ),\n\t\t\t\tsuppressFilters: this.get( 'suppressFilters' ),\n\t\t\t\tdata: [],\n\t\t\t\tescapeMarkup: function ( markup ) {\n\t\t\t\t\tif ( typeof markup !== 'string' ) {\n\t\t\t\t\t\treturn markup;\n\t\t\t\t\t}\n\t\t\t\t\treturn acf.escHtml( markup );\n\t\t\t\t},\n\t\t\t};\n\n\t\t\t// Clear empty templateSelections, templateResults, or dropdownCssClass.\n\t\t\tif ( ! options.templateSelection ) {\n\t\t\t\tdelete options.templateSelection;\n\t\t\t}\n\t\t\tif ( ! options.templateResult ) {\n\t\t\t\tdelete options.templateResult;\n\t\t\t}\n\t\t\tif ( ! options.dropdownCssClass ) {\n\t\t\t\tdelete options.dropdownCssClass;\n\t\t\t}\n\n\t\t\t// Only use the template if SelectWoo is not loaded to work around https://github.com/woocommerce/woocommerce/pull/30473\n\t\t\tif ( ! acf.isset( window, 'jQuery', 'fn', 'selectWoo' ) ) {\n\t\t\t\tif ( ! options.templateSelection ) {\n\t\t\t\t\toptions.templateSelection = function ( selection ) {\n\t\t\t\t\t\tvar $selection = $(\n\t\t\t\t\t\t\t''\n\t\t\t\t\t\t);\n\t\t\t\t\t\t$selection.html( acf.escHtml( selection.text ) );\n\t\t\t\t\t\t$selection.data( 'element', selection.element );\n\t\t\t\t\t\treturn $selection;\n\t\t\t\t\t};\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tdelete options.templateSelection;\n\t\t\t\tdelete options.templateResult;\n\t\t\t}\n\n\t\t\t// multiple\n\t\t\tif ( options.multiple ) {\n\t\t\t\t// reorder options\n\t\t\t\tthis.getValue().map( function ( item ) {\n\t\t\t\t\titem.$el.detach().appendTo( $select );\n\t\t\t\t} );\n\t\t\t}\n\n\t\t\t// Temporarily remove conflicting attribute.\n\t\t\tvar attrAjax = $select.attr( 'data-ajax' );\n\t\t\tif ( attrAjax !== undefined ) {\n\t\t\t\t$select.removeData( 'ajax' );\n\t\t\t\t$select.removeAttr( 'data-ajax' );\n\t\t\t}\n\n\t\t\t// ajax\n\t\t\tif ( this.get( 'ajax' ) ) {\n\t\t\t\toptions.ajax = {\n\t\t\t\t\turl: acf.get( 'ajaxurl' ),\n\t\t\t\t\tdelay: 250,\n\t\t\t\t\tdataType: 'json',\n\t\t\t\t\ttype: 'post',\n\t\t\t\t\tcache: false,\n\t\t\t\t\tdata: $.proxy( this.getAjaxData, this ),\n\t\t\t\t\tprocessResults: $.proxy( this.processAjaxResults, this ),\n\t\t\t\t};\n\t\t\t}\n\n\t\t\t// filter for 3rd party customization\n\t\t\tif ( ! options.suppressFilters ) {\n\t\t\t\tvar field = this.get( 'field' );\n\t\t\t\toptions = acf.applyFilters(\n\t\t\t\t\t'select2_args',\n\t\t\t\t\toptions,\n\t\t\t\t\t$select,\n\t\t\t\t\tthis.data,\n\t\t\t\t\tfield || false,\n\t\t\t\t\tthis\n\t\t\t\t);\n\t\t\t}\n\n\t\t\t// add select2\n\t\t\t$select.select2( options );\n\n\t\t\t// get container (Select2 v4 does not return this from constructor)\n\t\t\tvar $container = $select.next( '.select2-container' );\n\n\t\t\t// multiple\n\t\t\tif ( options.multiple ) {\n\t\t\t\t// vars\n\t\t\t\tvar $ul = $container.find( 'ul' );\n\n\t\t\t\t// sortable\n\t\t\t\t$ul.sortable( {\n\t\t\t\t\tstop: function ( e ) {\n\t\t\t\t\t\t// loop\n\t\t\t\t\t\t$ul.find( '.select2-selection__choice' ).each(\n\t\t\t\t\t\t\tfunction () {\n\t\t\t\t\t\t\t\t// Attempt to use .data if it exists (select2 version < 4.0.6) or use our template data instead.\n\t\t\t\t\t\t\t\tif ( $( this ).data( 'data' ) ) {\n\t\t\t\t\t\t\t\t\tvar $option = $(\n\t\t\t\t\t\t\t\t\t\t$( this ).data( 'data' ).element\n\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\tvar $option = $(\n\t\t\t\t\t\t\t\t\t\t$( this )\n\t\t\t\t\t\t\t\t\t\t\t.find( 'span.acf-selection' )\n\t\t\t\t\t\t\t\t\t\t\t.data( 'element' )\n\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t// detach and re-append to end\n\t\t\t\t\t\t\t\t$option.detach().appendTo( $select );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t);\n\n\t\t\t\t\t\t// trigger change on input (JS error if trigger on select)\n\t\t\t\t\t\t$select.trigger( 'change' );\n\t\t\t\t\t},\n\t\t\t\t} );\n\n\t\t\t\t// on select, move to end\n\t\t\t\t$select.on(\n\t\t\t\t\t'select2:select',\n\t\t\t\t\tthis.proxy( function ( e ) {\n\t\t\t\t\t\tthis.getOption( e.params.data.id )\n\t\t\t\t\t\t\t.detach()\n\t\t\t\t\t\t\t.appendTo( this.$el );\n\t\t\t\t\t} )\n\t\t\t\t);\n\t\t\t}\n\n\t\t\t// add handler to auto-focus searchbox (for jQuery 3.6)\n\t\t\t$select.on( 'select2:open', () => {\n\t\t\t\t$( '.select2-container--open .select2-search__field' )\n\t\t\t\t\t.get( -1 )\n\t\t\t\t\t.focus();\n\t\t\t} );\n\n\t\t\t// add class\n\t\t\t$container.addClass( '-acf' );\n\n\t\t\t// Add back temporarily removed attr.\n\t\t\tif ( attrAjax !== undefined ) {\n\t\t\t\t$select.attr( 'data-ajax', attrAjax );\n\t\t\t}\n\n\t\t\t// action for 3rd party customization\n\t\t\tif ( ! options.suppressFilters ) {\n\t\t\t\tacf.doAction(\n\t\t\t\t\t'select2_init',\n\t\t\t\t\t$select,\n\t\t\t\t\toptions,\n\t\t\t\t\tthis.data,\n\t\t\t\t\tfield || false,\n\t\t\t\t\tthis\n\t\t\t\t);\n\t\t\t}\n\t\t},\n\n\t\tmergeOptions: function () {\n\t\t\t// vars\n\t\t\tvar $prevOptions = false;\n\t\t\tvar $prevGroup = false;\n\n\t\t\t// loop\n\t\t\t$( '.select2-results__option[role=\"group\"]' ).each( function () {\n\t\t\t\t// vars\n\t\t\t\tvar $options = $( this ).children( 'ul' );\n\t\t\t\tvar $group = $( this ).children( 'strong' );\n\n\t\t\t\t// compare to previous\n\t\t\t\tif ( $prevGroup && $prevGroup.text() === $group.text() ) {\n\t\t\t\t\t$prevOptions.append( $options.children() );\n\t\t\t\t\t$( this ).remove();\n\t\t\t\t\treturn;\n\t\t\t\t}\n\n\t\t\t\t// update vars\n\t\t\t\t$prevOptions = $options;\n\t\t\t\t$prevGroup = $group;\n\t\t\t} );\n\t\t},\n\t} );\n\n\t/**\n\t * Select2_3\n\t *\n\t * description\n\t *\n\t * @date\t13/1/18\n\t * @since\t5.6.5\n\t *\n\t * @param\ttype $var Description. Default.\n\t * @return\ttype Description.\n\t */\n\n\tvar Select2_3 = Select2.extend( {\n\t\tinitialize: function () {\n\t\t\t// vars\n\t\t\tvar $select = this.$el;\n\t\t\tvar value = this.getValue();\n\t\t\tvar multiple = this.get( 'multiple' );\n\t\t\tvar options = {\n\t\t\t\twidth: '100%',\n\t\t\t\tallowClear: this.get( 'allowNull' ),\n\t\t\t\tplaceholder: this.get( 'placeholder' ),\n\t\t\t\tseparator: '||',\n\t\t\t\tmultiple: this.get( 'multiple' ),\n\t\t\t\tdata: this.getChoices(),\n\t\t\t\tescapeMarkup: function ( string ) {\n\t\t\t\t\treturn acf.escHtml( string );\n\t\t\t\t},\n\t\t\t\tdropdownCss: {\n\t\t\t\t\t'z-index': '999999999',\n\t\t\t\t},\n\t\t\t\tinitSelection: function ( element, callback ) {\n\t\t\t\t\tif ( multiple ) {\n\t\t\t\t\t\tcallback( value );\n\t\t\t\t\t} else {\n\t\t\t\t\t\tcallback( value.shift() );\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t};\n\n\t\t\t// get hidden input\n\t\t\tvar $input = $select.siblings( 'input' );\n\t\t\tif ( ! $input.length ) {\n\t\t\t\t$input = $( '' );\n\t\t\t\t$select.before( $input );\n\t\t\t}\n\n\t\t\t// set input value\n\t\t\tinputValue = value\n\t\t\t\t.map( function ( item ) {\n\t\t\t\t\treturn item.id;\n\t\t\t\t} )\n\t\t\t\t.join( '||' );\n\t\t\t$input.val( inputValue );\n\n\t\t\t// multiple\n\t\t\tif ( options.multiple ) {\n\t\t\t\t// reorder options\n\t\t\t\tvalue.map( function ( item ) {\n\t\t\t\t\titem.$el.detach().appendTo( $select );\n\t\t\t\t} );\n\t\t\t}\n\n\t\t\t// remove blank option as we have a clear all button\n\t\t\tif ( options.allowClear ) {\n\t\t\t\toptions.data = options.data.filter( function ( item ) {\n\t\t\t\t\treturn item.id !== '';\n\t\t\t\t} );\n\t\t\t}\n\n\t\t\t// remove conflicting atts\n\t\t\t$select.removeData( 'ajax' );\n\t\t\t$select.removeAttr( 'data-ajax' );\n\n\t\t\t// ajax\n\t\t\tif ( this.get( 'ajax' ) ) {\n\t\t\t\toptions.ajax = {\n\t\t\t\t\turl: acf.get( 'ajaxurl' ),\n\t\t\t\t\tquietMillis: 250,\n\t\t\t\t\tdataType: 'json',\n\t\t\t\t\ttype: 'post',\n\t\t\t\t\tcache: false,\n\t\t\t\t\tdata: $.proxy( this.getAjaxData, this ),\n\t\t\t\t\tresults: $.proxy( this.processAjaxResults, this ),\n\t\t\t\t};\n\t\t\t}\n\n\t\t\t// filter for 3rd party customization\n\t\t\tvar field = this.get( 'field' );\n\t\t\toptions = acf.applyFilters(\n\t\t\t\t'select2_args',\n\t\t\t\toptions,\n\t\t\t\t$select,\n\t\t\t\tthis.data,\n\t\t\t\tfield || false,\n\t\t\t\tthis\n\t\t\t);\n\n\t\t\t// add select2\n\t\t\t$input.select2( options );\n\n\t\t\t// get container\n\t\t\tvar $container = $input.select2( 'container' );\n\n\t\t\t// helper to find this select's option\n\t\t\tvar getOption = $.proxy( this.getOption, this );\n\n\t\t\t// multiple\n\t\t\tif ( options.multiple ) {\n\t\t\t\t// vars\n\t\t\t\tvar $ul = $container.find( 'ul' );\n\n\t\t\t\t// sortable\n\t\t\t\t$ul.sortable( {\n\t\t\t\t\tstop: function () {\n\t\t\t\t\t\t// loop\n\t\t\t\t\t\t$ul.find( '.select2-search-choice' ).each( function () {\n\t\t\t\t\t\t\t// vars\n\t\t\t\t\t\t\tvar data = $( this ).data( 'select2Data' );\n\t\t\t\t\t\t\tvar $option = getOption( data.id );\n\n\t\t\t\t\t\t\t// detach and re-append to end\n\t\t\t\t\t\t\t$option.detach().appendTo( $select );\n\t\t\t\t\t\t} );\n\n\t\t\t\t\t\t// trigger change on input (JS error if trigger on select)\n\t\t\t\t\t\t$select.trigger( 'change' );\n\t\t\t\t\t},\n\t\t\t\t} );\n\t\t\t}\n\n\t\t\t// on select, create option and move to end\n\t\t\t$input.on( 'select2-selecting', function ( e ) {\n\t\t\t\t// vars\n\t\t\t\tvar item = e.choice;\n\t\t\t\tvar $option = getOption( item.id );\n\n\t\t\t\t// create if doesn't exist\n\t\t\t\tif ( ! $option.length ) {\n\t\t\t\t\t$option = $(\n\t\t\t\t\t\t''\n\t\t\t\t\t);\n\t\t\t\t}\n\n\t\t\t\t// detach and re-append to end\n\t\t\t\t$option.detach().appendTo( $select );\n\t\t\t} );\n\n\t\t\t// add class\n\t\t\t$container.addClass( '-acf' );\n\n\t\t\t// action for 3rd party customization\n\t\t\tacf.doAction(\n\t\t\t\t'select2_init',\n\t\t\t\t$select,\n\t\t\t\toptions,\n\t\t\t\tthis.data,\n\t\t\t\tfield || false,\n\t\t\t\tthis\n\t\t\t);\n\n\t\t\t// change\n\t\t\t$input.on( 'change', function () {\n\t\t\t\tvar val = $input.val();\n\t\t\t\tif ( val.indexOf( '||' ) ) {\n\t\t\t\t\tval = val.split( '||' );\n\t\t\t\t}\n\t\t\t\t$select.val( val ).trigger( 'change' );\n\t\t\t} );\n\n\t\t\t// hide select\n\t\t\t$select.hide();\n\t\t},\n\n\t\tmergeOptions: function () {\n\t\t\t// vars\n\t\t\tvar $prevOptions = false;\n\t\t\tvar $prevGroup = false;\n\n\t\t\t// loop\n\t\t\t$( '#select2-drop .select2-result-with-children' ).each(\n\t\t\t\tfunction () {\n\t\t\t\t\t// vars\n\t\t\t\t\tvar $options = $( this ).children( 'ul' );\n\t\t\t\t\tvar $group = $( this ).children( '.select2-result-label' );\n\n\t\t\t\t\t// compare to previous\n\t\t\t\t\tif ( $prevGroup && $prevGroup.text() === $group.text() ) {\n\t\t\t\t\t\t$prevGroup.append( $options.children() );\n\t\t\t\t\t\t$( this ).remove();\n\t\t\t\t\t\treturn;\n\t\t\t\t\t}\n\n\t\t\t\t\t// update vars\n\t\t\t\t\t$prevOptions = $options;\n\t\t\t\t\t$prevGroup = $group;\n\t\t\t\t}\n\t\t\t);\n\t\t},\n\n\t\tgetAjaxData: function ( term, page ) {\n\t\t\t// create Select2 v4 params\n\t\t\tvar params = {\n\t\t\t\tterm: term,\n\t\t\t\tpage: page,\n\t\t\t};\n\n\t\t\t// filter\n\t\t\tvar field = this.get( 'field' );\n\t\t\tparams = acf.applyFilters(\n\t\t\t\t'select2_ajax_data',\n\t\t\t\tparams,\n\t\t\t\tthis.data,\n\t\t\t\tthis.$el,\n\t\t\t\tfield || false,\n\t\t\t\tthis\n\t\t\t);\n\n\t\t\t// return\n\t\t\treturn Select2.prototype.getAjaxData.apply( this, [ params ] );\n\t\t},\n\t} );\n\n\t// manager\n\tvar select2Manager = new acf.Model( {\n\t\tpriority: 5,\n\t\twait: 'prepare',\n\t\tactions: {\n\t\t\tduplicate: 'onDuplicate',\n\t\t},\n\t\tinitialize: function () {\n\t\t\t// vars\n\t\t\tvar locale = acf.get( 'locale' );\n\t\t\tvar rtl = acf.get( 'rtl' );\n\t\t\tvar l10n = acf.get( 'select2L10n' );\n\t\t\tvar version = getVersion();\n\n\t\t\t// bail early if no l10n\n\t\t\tif ( ! l10n ) {\n\t\t\t\treturn false;\n\t\t\t}\n\n\t\t\t// bail early if 'en'\n\t\t\tif ( locale.indexOf( 'en' ) === 0 ) {\n\t\t\t\treturn false;\n\t\t\t}\n\n\t\t\t// initialize\n\t\t\tif ( version == 4 ) {\n\t\t\t\tthis.addTranslations4();\n\t\t\t} else if ( version == 3 ) {\n\t\t\t\tthis.addTranslations3();\n\t\t\t}\n\t\t},\n\n\t\taddTranslations4: function () {\n\t\t\t// vars\n\t\t\tvar l10n = acf.get( 'select2L10n' );\n\t\t\tvar locale = acf.get( 'locale' );\n\n\t\t\t// modify local to match html[lang] attribute (used by Select2)\n\t\t\tlocale = locale.replace( '_', '-' );\n\n\t\t\t// select2L10n\n\t\t\tvar select2L10n = {\n\t\t\t\terrorLoading: function () {\n\t\t\t\t\treturn l10n.load_fail;\n\t\t\t\t},\n\t\t\t\tinputTooLong: function ( args ) {\n\t\t\t\t\tvar overChars = args.input.length - args.maximum;\n\t\t\t\t\tif ( overChars > 1 ) {\n\t\t\t\t\t\treturn l10n.input_too_long_n.replace( '%d', overChars );\n\t\t\t\t\t}\n\t\t\t\t\treturn l10n.input_too_long_1;\n\t\t\t\t},\n\t\t\t\tinputTooShort: function ( args ) {\n\t\t\t\t\tvar remainingChars = args.minimum - args.input.length;\n\t\t\t\t\tif ( remainingChars > 1 ) {\n\t\t\t\t\t\treturn l10n.input_too_short_n.replace(\n\t\t\t\t\t\t\t'%d',\n\t\t\t\t\t\t\tremainingChars\n\t\t\t\t\t\t);\n\t\t\t\t\t}\n\t\t\t\t\treturn l10n.input_too_short_1;\n\t\t\t\t},\n\t\t\t\tloadingMore: function () {\n\t\t\t\t\treturn l10n.load_more;\n\t\t\t\t},\n\t\t\t\tmaximumSelected: function ( args ) {\n\t\t\t\t\tvar maximum = args.maximum;\n\t\t\t\t\tif ( maximum > 1 ) {\n\t\t\t\t\t\treturn l10n.selection_too_long_n.replace(\n\t\t\t\t\t\t\t'%d',\n\t\t\t\t\t\t\tmaximum\n\t\t\t\t\t\t);\n\t\t\t\t\t}\n\t\t\t\t\treturn l10n.selection_too_long_1;\n\t\t\t\t},\n\t\t\t\tnoResults: function () {\n\t\t\t\t\treturn l10n.matches_0;\n\t\t\t\t},\n\t\t\t\tsearching: function () {\n\t\t\t\t\treturn l10n.searching;\n\t\t\t\t},\n\t\t\t};\n\n\t\t\t// append\n\t\t\tjQuery.fn.select2.amd.define(\n\t\t\t\t'select2/i18n/' + locale,\n\t\t\t\t[],\n\t\t\t\tfunction () {\n\t\t\t\t\treturn select2L10n;\n\t\t\t\t}\n\t\t\t);\n\t\t},\n\n\t\taddTranslations3: function () {\n\t\t\t// vars\n\t\t\tvar l10n = acf.get( 'select2L10n' );\n\t\t\tvar locale = acf.get( 'locale' );\n\n\t\t\t// modify local to match html[lang] attribute (used by Select2)\n\t\t\tlocale = locale.replace( '_', '-' );\n\n\t\t\t// select2L10n\n\t\t\tvar select2L10n = {\n\t\t\t\tformatMatches: function ( matches ) {\n\t\t\t\t\tif ( matches > 1 ) {\n\t\t\t\t\t\treturn l10n.matches_n.replace( '%d', matches );\n\t\t\t\t\t}\n\t\t\t\t\treturn l10n.matches_1;\n\t\t\t\t},\n\t\t\t\tformatNoMatches: function () {\n\t\t\t\t\treturn l10n.matches_0;\n\t\t\t\t},\n\t\t\t\tformatAjaxError: function () {\n\t\t\t\t\treturn l10n.load_fail;\n\t\t\t\t},\n\t\t\t\tformatInputTooShort: function ( input, min ) {\n\t\t\t\t\tvar remainingChars = min - input.length;\n\t\t\t\t\tif ( remainingChars > 1 ) {\n\t\t\t\t\t\treturn l10n.input_too_short_n.replace(\n\t\t\t\t\t\t\t'%d',\n\t\t\t\t\t\t\tremainingChars\n\t\t\t\t\t\t);\n\t\t\t\t\t}\n\t\t\t\t\treturn l10n.input_too_short_1;\n\t\t\t\t},\n\t\t\t\tformatInputTooLong: function ( input, max ) {\n\t\t\t\t\tvar overChars = input.length - max;\n\t\t\t\t\tif ( overChars > 1 ) {\n\t\t\t\t\t\treturn l10n.input_too_long_n.replace( '%d', overChars );\n\t\t\t\t\t}\n\t\t\t\t\treturn l10n.input_too_long_1;\n\t\t\t\t},\n\t\t\t\tformatSelectionTooBig: function ( maximum ) {\n\t\t\t\t\tif ( maximum > 1 ) {\n\t\t\t\t\t\treturn l10n.selection_too_long_n.replace(\n\t\t\t\t\t\t\t'%d',\n\t\t\t\t\t\t\tmaximum\n\t\t\t\t\t\t);\n\t\t\t\t\t}\n\t\t\t\t\treturn l10n.selection_too_long_1;\n\t\t\t\t},\n\t\t\t\tformatLoadMore: function () {\n\t\t\t\t\treturn l10n.load_more;\n\t\t\t\t},\n\t\t\t\tformatSearching: function () {\n\t\t\t\t\treturn l10n.searching;\n\t\t\t\t},\n\t\t\t};\n\n\t\t\t// ensure locales exists\n\t\t\t$.fn.select2.locales = $.fn.select2.locales || {};\n\n\t\t\t// append\n\t\t\t$.fn.select2.locales[ locale ] = select2L10n;\n\t\t\t$.extend( $.fn.select2.defaults, select2L10n );\n\t\t},\n\n\t\tonDuplicate: function ( $el, $el2 ) {\n\t\t\t$el2.find( '.select2-container' ).remove();\n\t\t},\n\t} );\n} )( jQuery );\n","( function ( $, undefined ) {\n\tacf.tinymce = {\n\t\t/*\n\t\t * defaults\n\t\t *\n\t\t * This function will return default mce and qt settings\n\t\t *\n\t\t * @type\tfunction\n\t\t * @date\t18/8/17\n\t\t * @since\t5.6.0\n\t\t *\n\t\t * @param\t$post_id (int)\n\t\t * @return\t$post_id (int)\n\t\t */\n\n\t\tdefaults: function () {\n\t\t\t// bail early if no tinyMCEPreInit\n\t\t\tif ( typeof tinyMCEPreInit === 'undefined' ) return false;\n\n\t\t\t// vars\n\t\t\tvar defaults = {\n\t\t\t\ttinymce: tinyMCEPreInit.mceInit.acf_content,\n\t\t\t\tquicktags: tinyMCEPreInit.qtInit.acf_content,\n\t\t\t};\n\n\t\t\t// return\n\t\t\treturn defaults;\n\t\t},\n\n\t\t/*\n\t\t * initialize\n\t\t *\n\t\t * This function will initialize the tinymce and quicktags instances\n\t\t *\n\t\t * @type\tfunction\n\t\t * @date\t18/8/17\n\t\t * @since\t5.6.0\n\t\t *\n\t\t * @param\t$post_id (int)\n\t\t * @return\t$post_id (int)\n\t\t */\n\n\t\tinitialize: function ( id, args ) {\n\t\t\t// defaults\n\t\t\targs = acf.parseArgs( args, {\n\t\t\t\ttinymce: true,\n\t\t\t\tquicktags: true,\n\t\t\t\ttoolbar: 'full',\n\t\t\t\tmode: 'visual', // visual,text\n\t\t\t\tfield: false,\n\t\t\t} );\n\n\t\t\t// tinymce\n\t\t\tif ( args.tinymce ) {\n\t\t\t\tthis.initializeTinymce( id, args );\n\t\t\t}\n\n\t\t\t// quicktags\n\t\t\tif ( args.quicktags ) {\n\t\t\t\tthis.initializeQuicktags( id, args );\n\t\t\t}\n\t\t},\n\n\t\t/*\n\t\t * initializeTinymce\n\t\t *\n\t\t * This function will initialize the tinymce instance\n\t\t *\n\t\t * @type\tfunction\n\t\t * @date\t18/8/17\n\t\t * @since\t5.6.0\n\t\t *\n\t\t * @param\t$post_id (int)\n\t\t * @return\t$post_id (int)\n\t\t */\n\n\t\tinitializeTinymce: function ( id, args ) {\n\t\t\t// vars\n\t\t\tvar $textarea = $( '#' + id );\n\t\t\tvar defaults = this.defaults();\n\t\t\tvar toolbars = acf.get( 'toolbars' );\n\t\t\tvar field = args.field || false;\n\t\t\tvar $field = field.$el || false;\n\n\t\t\t// bail early\n\t\t\tif ( typeof tinymce === 'undefined' ) return false;\n\t\t\tif ( ! defaults ) return false;\n\n\t\t\t// check if exists\n\t\t\tif ( tinymce.get( id ) ) {\n\t\t\t\treturn this.enable( id );\n\t\t\t}\n\n\t\t\t// settings\n\t\t\tvar init = $.extend( {}, defaults.tinymce, args.tinymce );\n\t\t\tinit.id = id;\n\t\t\tinit.selector = '#' + id;\n\n\t\t\t// toolbar\n\t\t\tvar toolbar = args.toolbar;\n\t\t\tif ( toolbar && toolbars && toolbars[ toolbar ] ) {\n\t\t\t\tfor ( var i = 1; i <= 4; i++ ) {\n\t\t\t\t\tinit[ 'toolbar' + i ] = toolbars[ toolbar ][ i ] || '';\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// event\n\t\t\tinit.setup = function ( ed ) {\n\t\t\t\ted.on( 'change', function ( e ) {\n\t\t\t\t\ted.save(); // save to textarea\n\t\t\t\t\t$textarea.trigger( 'change' );\n\t\t\t\t} );\n\n\t\t\t\t// Fix bug where Gutenberg does not hear \"mouseup\" event and tries to select multiple blocks.\n\t\t\t\ted.on( 'mouseup', function ( e ) {\n\t\t\t\t\tvar event = new MouseEvent( 'mouseup' );\n\t\t\t\t\twindow.dispatchEvent( event );\n\t\t\t\t} );\n\n\t\t\t\t// Temporarily comment out. May not be necessary due to wysiwyg field actions.\n\t\t\t\t//ed.on('unload', function(e) {\n\t\t\t\t//\tacf.tinymce.remove( id );\n\t\t\t\t//});\n\t\t\t};\n\n\t\t\t// disable wp_autoresize_on (no solution yet for fixed toolbar)\n\t\t\tinit.wp_autoresize_on = false;\n\n\t\t\t// Enable wpautop allowing value to save without

        tags.\n\t\t\t// Only if the \"TinyMCE Advanced\" plugin hasn't already set this functionality.\n\t\t\tif ( ! init.tadv_noautop ) {\n\t\t\t\tinit.wpautop = true;\n\t\t\t}\n\n\t\t\t// hook for 3rd party customization\n\t\t\tinit = acf.applyFilters(\n\t\t\t\t'wysiwyg_tinymce_settings',\n\t\t\t\tinit,\n\t\t\t\tid,\n\t\t\t\tfield\n\t\t\t);\n\n\t\t\t// z-index fix (caused too many conflicts)\n\t\t\t//if( acf.isset(tinymce,'ui','FloatPanel') ) {\n\t\t\t//\ttinymce.ui.FloatPanel.zIndex = 900000;\n\t\t\t//}\n\n\t\t\t// store settings\n\t\t\ttinyMCEPreInit.mceInit[ id ] = init;\n\n\t\t\t// visual tab is active\n\t\t\tif ( args.mode == 'visual' ) {\n\t\t\t\t// init\n\t\t\t\tvar result = tinymce.init( init );\n\n\t\t\t\t// get editor\n\t\t\t\tvar ed = tinymce.get( id );\n\n\t\t\t\t// validate\n\t\t\t\tif ( ! ed ) {\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\n\t\t\t\t// add reference\n\t\t\t\ted.acf = args.field;\n\n\t\t\t\t// action\n\t\t\t\tacf.doAction( 'wysiwyg_tinymce_init', ed, ed.id, init, field );\n\t\t\t}\n\t\t},\n\n\t\t/*\n\t\t * initializeQuicktags\n\t\t *\n\t\t * This function will initialize the quicktags instance\n\t\t *\n\t\t * @type\tfunction\n\t\t * @date\t18/8/17\n\t\t * @since\t5.6.0\n\t\t *\n\t\t * @param\t$post_id (int)\n\t\t * @return\t$post_id (int)\n\t\t */\n\n\t\tinitializeQuicktags: function ( id, args ) {\n\t\t\t// vars\n\t\t\tvar defaults = this.defaults();\n\n\t\t\t// bail early\n\t\t\tif ( typeof quicktags === 'undefined' ) return false;\n\t\t\tif ( ! defaults ) return false;\n\n\t\t\t// settings\n\t\t\tvar init = $.extend( {}, defaults.quicktags, args.quicktags );\n\t\t\tinit.id = id;\n\n\t\t\t// filter\n\t\t\tvar field = args.field || false;\n\t\t\tvar $field = field.$el || false;\n\t\t\tinit = acf.applyFilters(\n\t\t\t\t'wysiwyg_quicktags_settings',\n\t\t\t\tinit,\n\t\t\t\tinit.id,\n\t\t\t\tfield\n\t\t\t);\n\n\t\t\t// store settings\n\t\t\ttinyMCEPreInit.qtInit[ id ] = init;\n\n\t\t\t// init\n\t\t\tvar ed = quicktags( init );\n\n\t\t\t// validate\n\t\t\tif ( ! ed ) {\n\t\t\t\treturn false;\n\t\t\t}\n\n\t\t\t// generate HTML\n\t\t\tthis.buildQuicktags( ed );\n\n\t\t\t// action for 3rd party customization\n\t\t\tacf.doAction( 'wysiwyg_quicktags_init', ed, ed.id, init, field );\n\t\t},\n\n\t\t/*\n\t\t * buildQuicktags\n\t\t *\n\t\t * This function will build the quicktags HTML\n\t\t *\n\t\t * @type\tfunction\n\t\t * @date\t18/8/17\n\t\t * @since\t5.6.0\n\t\t *\n\t\t * @param\t$post_id (int)\n\t\t * @return\t$post_id (int)\n\t\t */\n\n\t\tbuildQuicktags: function ( ed ) {\n\t\t\tvar canvas,\n\t\t\t\tname,\n\t\t\t\tsettings,\n\t\t\t\ttheButtons,\n\t\t\t\thtml,\n\t\t\t\ted,\n\t\t\t\tid,\n\t\t\t\ti,\n\t\t\t\tuse,\n\t\t\t\tinstanceId,\n\t\t\t\tdefaults =\n\t\t\t\t\t',strong,em,link,block,del,ins,img,ul,ol,li,code,more,close,';\n\n\t\t\tcanvas = ed.canvas;\n\t\t\tname = ed.name;\n\t\t\tsettings = ed.settings;\n\t\t\thtml = '';\n\t\t\ttheButtons = {};\n\t\t\tuse = '';\n\t\t\tinstanceId = ed.id;\n\n\t\t\t// set buttons\n\t\t\tif ( settings.buttons ) {\n\t\t\t\tuse = ',' + settings.buttons + ',';\n\t\t\t}\n\n\t\t\tfor ( i in edButtons ) {\n\t\t\t\tif ( ! edButtons[ i ] ) {\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\n\t\t\t\tid = edButtons[ i ].id;\n\t\t\t\tif (\n\t\t\t\t\tuse &&\n\t\t\t\t\tdefaults.indexOf( ',' + id + ',' ) !== -1 &&\n\t\t\t\t\tuse.indexOf( ',' + id + ',' ) === -1\n\t\t\t\t) {\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\n\t\t\t\tif (\n\t\t\t\t\t! edButtons[ i ].instance ||\n\t\t\t\t\tedButtons[ i ].instance === instanceId\n\t\t\t\t) {\n\t\t\t\t\ttheButtons[ id ] = edButtons[ i ];\n\n\t\t\t\t\tif ( edButtons[ i ].html ) {\n\t\t\t\t\t\thtml += edButtons[ i ].html( name + '_' );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tif ( use && use.indexOf( ',dfw,' ) !== -1 ) {\n\t\t\t\ttheButtons.dfw = new QTags.DFWButton();\n\t\t\t\thtml += theButtons.dfw.html( name + '_' );\n\t\t\t}\n\n\t\t\tif ( 'rtl' === document.getElementsByTagName( 'html' )[ 0 ].dir ) {\n\t\t\t\ttheButtons.textdirection = new QTags.TextDirectionButton();\n\t\t\t\thtml += theButtons.textdirection.html( name + '_' );\n\t\t\t}\n\n\t\t\ted.toolbar.innerHTML = html;\n\t\t\ted.theButtons = theButtons;\n\n\t\t\tif ( typeof jQuery !== 'undefined' ) {\n\t\t\t\tjQuery( document ).triggerHandler( 'quicktags-init', [ ed ] );\n\t\t\t}\n\t\t},\n\n\t\tdisable: function ( id ) {\n\t\t\tthis.destroyTinymce( id );\n\t\t},\n\n\t\tremove: function ( id ) {\n\t\t\tthis.destroyTinymce( id );\n\t\t},\n\n\t\tdestroy: function ( id ) {\n\t\t\tthis.destroyTinymce( id );\n\t\t},\n\n\t\tdestroyTinymce: function ( id ) {\n\t\t\t// bail early\n\t\t\tif ( typeof tinymce === 'undefined' ) return false;\n\n\t\t\t// get editor\n\t\t\tvar ed = tinymce.get( id );\n\n\t\t\t// bail early if no editor\n\t\t\tif ( ! ed ) return false;\n\n\t\t\t// save\n\t\t\ted.save();\n\n\t\t\t// destroy editor\n\t\t\ted.destroy();\n\n\t\t\t// return\n\t\t\treturn true;\n\t\t},\n\n\t\tenable: function ( id ) {\n\t\t\tthis.enableTinymce( id );\n\t\t},\n\n\t\tenableTinymce: function ( id ) {\n\t\t\t// bail early\n\t\t\tif ( typeof switchEditors === 'undefined' ) return false;\n\n\t\t\t// bail early if not initialized\n\t\t\tif ( typeof tinyMCEPreInit.mceInit[ id ] === 'undefined' )\n\t\t\t\treturn false;\n\n\t\t\t// Ensure textarea element is visible\n\t\t\t// - Fixes bug in block editor when switching between \"Block\" and \"Document\" tabs.\n\t\t\t$( '#' + id ).show();\n\n\t\t\t// toggle\n\t\t\tswitchEditors.go( id, 'tmce' );\n\n\t\t\t// return\n\t\t\treturn true;\n\t\t},\n\t};\n\n\tvar editorManager = new acf.Model( {\n\t\t// hook in before fieldsEventManager, conditions, etc\n\t\tpriority: 5,\n\n\t\tactions: {\n\t\t\tprepare: 'onPrepare',\n\t\t\tready: 'onReady',\n\t\t},\n\t\tonPrepare: function () {\n\t\t\t// find hidden editor which may exist within a field\n\t\t\tvar $div = $( '#acf-hidden-wp-editor' );\n\n\t\t\t// move to footer\n\t\t\tif ( $div.exists() ) {\n\t\t\t\t$div.appendTo( 'body' );\n\t\t\t}\n\t\t},\n\t\tonReady: function () {\n\t\t\t// Restore wp.editor functions used by tinymce removed in WP5.\n\t\t\tif ( acf.isset( window, 'wp', 'oldEditor' ) ) {\n\t\t\t\twp.editor.autop = wp.oldEditor.autop;\n\t\t\t\twp.editor.removep = wp.oldEditor.removep;\n\t\t\t}\n\n\t\t\t// bail early if no tinymce\n\t\t\tif ( ! acf.isset( window, 'tinymce', 'on' ) ) return;\n\n\t\t\t// restore default activeEditor\n\t\t\ttinymce.on( 'AddEditor', function ( data ) {\n\t\t\t\t// vars\n\t\t\t\tvar editor = data.editor;\n\n\t\t\t\t// bail early if not 'acf'\n\t\t\t\tif ( editor.id.substr( 0, 3 ) !== 'acf' ) return;\n\n\t\t\t\t// override if 'content' exists\n\t\t\t\teditor = tinymce.editors.content || editor;\n\n\t\t\t\t// update vars\n\t\t\t\ttinymce.activeEditor = editor;\n\t\t\t\twpActiveEditor = editor.id;\n\t\t\t} );\n\t\t},\n\t} );\n} )( jQuery );\n","( function ( $, undefined ) {\n\tacf.unload = new acf.Model( {\n\t\twait: 'load',\n\t\tactive: true,\n\t\tchanged: false,\n\n\t\tactions: {\n\t\t\tvalidation_failure: 'startListening',\n\t\t\tvalidation_success: 'stopListening',\n\t\t},\n\n\t\tevents: {\n\t\t\t'change form .acf-field': 'startListening',\n\t\t\t'submit form': 'stopListening',\n\t\t},\n\n\t\tenable: function () {\n\t\t\tthis.active = true;\n\t\t},\n\n\t\tdisable: function () {\n\t\t\tthis.active = false;\n\t\t},\n\n\t\treset: function () {\n\t\t\tthis.stopListening();\n\t\t},\n\n\t\tstartListening: function () {\n\t\t\t// bail early if already changed, not active\n\t\t\tif ( this.changed || ! this.active ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// update\n\t\t\tthis.changed = true;\n\n\t\t\t// add event\n\t\t\t$( window ).on( 'beforeunload', this.onUnload );\n\t\t},\n\n\t\tstopListening: function () {\n\t\t\t// update\n\t\t\tthis.changed = false;\n\n\t\t\t// remove event\n\t\t\t$( window ).off( 'beforeunload', this.onUnload );\n\t\t},\n\n\t\tonUnload: function () {\n\t\t\treturn acf.__(\n\t\t\t\t'The changes you made will be lost if you navigate away from this page'\n\t\t\t);\n\t\t},\n\t} );\n} )( jQuery );\n","( function ( $, undefined ) {\n\t/**\n\t * Validator\n\t *\n\t * The model for validating forms\n\t *\n\t * @date\t4/9/18\n\t * @since\t5.7.5\n\t *\n\t * @param\tvoid\n\t * @return\tvoid\n\t */\n\tvar Validator = acf.Model.extend( {\n\t\t/** @var string The model identifier. */\n\t\tid: 'Validator',\n\n\t\t/** @var object The model data. */\n\t\tdata: {\n\t\t\t/** @var array The form errors. */\n\t\t\terrors: [],\n\n\t\t\t/** @var object The form notice. */\n\t\t\tnotice: null,\n\n\t\t\t/** @var string The form status. loading, invalid, valid */\n\t\t\tstatus: '',\n\t\t},\n\n\t\t/** @var object The model events. */\n\t\tevents: {\n\t\t\t'changed:status': 'onChangeStatus',\n\t\t},\n\n\t\t/**\n\t\t * addErrors\n\t\t *\n\t\t * Adds errors to the form.\n\t\t *\n\t\t * @date\t4/9/18\n\t\t * @since\t5.7.5\n\t\t *\n\t\t * @param\tarray errors An array of errors.\n\t\t * @return\tvoid\n\t\t */\n\t\taddErrors: function ( errors ) {\n\t\t\terrors.map( this.addError, this );\n\t\t},\n\n\t\t/**\n\t\t * addError\n\t\t *\n\t\t * Adds and error to the form.\n\t\t *\n\t\t * @date\t4/9/18\n\t\t * @since\t5.7.5\n\t\t *\n\t\t * @param\tobject error An error object containing input and message.\n\t\t * @return\tvoid\n\t\t */\n\t\taddError: function ( error ) {\n\t\t\tthis.data.errors.push( error );\n\t\t},\n\n\t\t/**\n\t\t * hasErrors\n\t\t *\n\t\t * Returns true if the form has errors.\n\t\t *\n\t\t * @date\t4/9/18\n\t\t * @since\t5.7.5\n\t\t *\n\t\t * @param\tvoid\n\t\t * @return\tbool\n\t\t */\n\t\thasErrors: function () {\n\t\t\treturn this.data.errors.length;\n\t\t},\n\n\t\t/**\n\t\t * clearErrors\n\t\t *\n\t\t * Removes any errors.\n\t\t *\n\t\t * @date\t4/9/18\n\t\t * @since\t5.7.5\n\t\t *\n\t\t * @param\tvoid\n\t\t * @return\tvoid\n\t\t */\n\t\tclearErrors: function () {\n\t\t\treturn ( this.data.errors = [] );\n\t\t},\n\n\t\t/**\n\t\t * getErrors\n\t\t *\n\t\t * Returns the forms errors.\n\t\t *\n\t\t * @date\t4/9/18\n\t\t * @since\t5.7.5\n\t\t *\n\t\t * @param\tvoid\n\t\t * @return\tarray\n\t\t */\n\t\tgetErrors: function () {\n\t\t\treturn this.data.errors;\n\t\t},\n\n\t\t/**\n\t\t * getFieldErrors\n\t\t *\n\t\t * Returns the forms field errors.\n\t\t *\n\t\t * @date\t4/9/18\n\t\t * @since\t5.7.5\n\t\t *\n\t\t * @param\tvoid\n\t\t * @return\tarray\n\t\t */\n\t\tgetFieldErrors: function () {\n\t\t\t// vars\n\t\t\tvar errors = [];\n\t\t\tvar inputs = [];\n\n\t\t\t// loop\n\t\t\tthis.getErrors().map( function ( error ) {\n\t\t\t\t// bail early if global\n\t\t\t\tif ( ! error.input ) return;\n\n\t\t\t\t// update if exists\n\t\t\t\tvar i = inputs.indexOf( error.input );\n\t\t\t\tif ( i > -1 ) {\n\t\t\t\t\terrors[ i ] = error;\n\n\t\t\t\t\t// update\n\t\t\t\t} else {\n\t\t\t\t\terrors.push( error );\n\t\t\t\t\tinputs.push( error.input );\n\t\t\t\t}\n\t\t\t} );\n\n\t\t\t// return\n\t\t\treturn errors;\n\t\t},\n\n\t\t/**\n\t\t * getGlobalErrors\n\t\t *\n\t\t * Returns the forms global errors (errors without a specific input).\n\t\t *\n\t\t * @date\t4/9/18\n\t\t * @since\t5.7.5\n\t\t *\n\t\t * @param\tvoid\n\t\t * @return\tarray\n\t\t */\n\t\tgetGlobalErrors: function () {\n\t\t\t// return array of errors that contain no input\n\t\t\treturn this.getErrors().filter( function ( error ) {\n\t\t\t\treturn ! error.input;\n\t\t\t} );\n\t\t},\n\n\t\t/**\n\t\t * showErrors\n\t\t *\n\t\t * Displays all errors for this form.\n\t\t *\n\t\t * @date\t4/9/18\n\t\t * @since\t5.7.5\n\t\t *\n\t\t * @param\tvoid\n\t\t * @return\tvoid\n\t\t */\n\t\tshowErrors: function () {\n\t\t\t// bail early if no errors\n\t\t\tif ( ! this.hasErrors() ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// vars\n\t\t\tvar fieldErrors = this.getFieldErrors();\n\t\t\tvar globalErrors = this.getGlobalErrors();\n\n\t\t\t// vars\n\t\t\tvar errorCount = 0;\n\t\t\tvar $scrollTo = false;\n\n\t\t\t// loop\n\t\t\tfieldErrors.map( function ( error ) {\n\t\t\t\t// get input\n\t\t\t\tvar $input = this.$( '[name=\"' + error.input + '\"]' ).first();\n\n\t\t\t\t// if $_POST value was an array, this $input may not exist\n\t\t\t\tif ( ! $input.length ) {\n\t\t\t\t\t$input = this.$( '[name^=\"' + error.input + '\"]' ).first();\n\t\t\t\t}\n\n\t\t\t\t// bail early if input doesn't exist\n\t\t\t\tif ( ! $input.length ) {\n\t\t\t\t\treturn;\n\t\t\t\t}\n\n\t\t\t\t// increase\n\t\t\t\terrorCount++;\n\n\t\t\t\t// get field\n\t\t\t\tvar field = acf.getClosestField( $input );\n\n\t\t\t\t// make sure the postbox containing this field is not hidden by screen options\n\t\t\t\tensureFieldPostBoxIsVisible( field.$el );\n\n\t\t\t\t// show error\n\t\t\t\tfield.showError( error.message );\n\n\t\t\t\t// set $scrollTo\n\t\t\t\tif ( ! $scrollTo ) {\n\t\t\t\t\t$scrollTo = field.$el;\n\t\t\t\t}\n\t\t\t}, this );\n\n\t\t\t// errorMessage\n\t\t\tvar errorMessage = acf.__( 'Validation failed' );\n\t\t\tglobalErrors.map( function ( error ) {\n\t\t\t\terrorMessage += '. ' + error.message;\n\t\t\t} );\n\t\t\tif ( errorCount == 1 ) {\n\t\t\t\terrorMessage += '. ' + acf.__( '1 field requires attention' );\n\t\t\t} else if ( errorCount > 1 ) {\n\t\t\t\terrorMessage +=\n\t\t\t\t\t'. ' +\n\t\t\t\t\tacf\n\t\t\t\t\t\t.__( '%d fields require attention' )\n\t\t\t\t\t\t.replace( '%d', errorCount );\n\t\t\t}\n\n\t\t\t// notice\n\t\t\tif ( this.has( 'notice' ) ) {\n\t\t\t\tthis.get( 'notice' ).update( {\n\t\t\t\t\ttype: 'error',\n\t\t\t\t\ttext: errorMessage,\n\t\t\t\t} );\n\t\t\t} else {\n\t\t\t\tvar notice = acf.newNotice( {\n\t\t\t\t\ttype: 'error',\n\t\t\t\t\ttext: errorMessage,\n\t\t\t\t\ttarget: this.$el,\n\t\t\t\t} );\n\t\t\t\tthis.set( 'notice', notice );\n\t\t\t}\n\n\t\t\t// If in a modal, don't try to scroll.\n\t\t\tif ( this.$el.parents( '.acf-popup-box' ).length ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// if no $scrollTo, set to message\n\t\t\tif ( ! $scrollTo ) {\n\t\t\t\t$scrollTo = this.get( 'notice' ).$el;\n\t\t\t}\n\n\t\t\t// timeout\n\t\t\tsetTimeout( function () {\n\t\t\t\t$( 'html, body' ).animate(\n\t\t\t\t\t{\n\t\t\t\t\t\tscrollTop:\n\t\t\t\t\t\t\t$scrollTo.offset().top - $( window ).height() / 2,\n\t\t\t\t\t},\n\t\t\t\t\t500\n\t\t\t\t);\n\t\t\t}, 10 );\n\t\t},\n\n\t\t/**\n\t\t * onChangeStatus\n\t\t *\n\t\t * Update the form class when changing the 'status' data\n\t\t *\n\t\t * @date\t4/9/18\n\t\t * @since\t5.7.5\n\t\t *\n\t\t * @param\tobject e The event object.\n\t\t * @param\tjQuery $el The form element.\n\t\t * @param\tstring value The new status.\n\t\t * @param\tstring prevValue The old status.\n\t\t * @return\tvoid\n\t\t */\n\t\tonChangeStatus: function ( e, $el, value, prevValue ) {\n\t\t\tthis.$el.removeClass( 'is-' + prevValue ).addClass( 'is-' + value );\n\t\t},\n\n\t\t/**\n\t\t * validate\n\t\t *\n\t\t * Vaildates the form via AJAX.\n\t\t *\n\t\t * @date\t4/9/18\n\t\t * @since\t5.7.5\n\t\t *\n\t\t * @param\tobject args A list of settings to customize the validation process.\n\t\t * @return\tbool True if the form is valid.\n\t\t */\n\t\tvalidate: function ( args ) {\n\t\t\t// default args\n\t\t\targs = acf.parseArgs( args, {\n\t\t\t\t// trigger event\n\t\t\t\tevent: false,\n\n\t\t\t\t// reset the form after submit\n\t\t\t\treset: false,\n\n\t\t\t\t// loading callback\n\t\t\t\tloading: function () {},\n\n\t\t\t\t// complete callback\n\t\t\t\tcomplete: function () {},\n\n\t\t\t\t// failure callback\n\t\t\t\tfailure: function () {},\n\n\t\t\t\t// success callback\n\t\t\t\tsuccess: function ( $form ) {\n\t\t\t\t\t$form.submit();\n\t\t\t\t},\n\t\t\t} );\n\n\t\t\t// return true if is valid - allows form submit\n\t\t\tif ( this.get( 'status' ) == 'valid' ) {\n\t\t\t\treturn true;\n\t\t\t}\n\n\t\t\t// return false if is currently validating - prevents form submit\n\t\t\tif ( this.get( 'status' ) == 'validating' ) {\n\t\t\t\treturn false;\n\t\t\t}\n\n\t\t\t// return true if no ACF fields exist (no need to validate)\n\t\t\tif ( ! this.$( '.acf-field' ).length ) {\n\t\t\t\treturn true;\n\t\t\t}\n\n\t\t\t// if event is provided, create a new success callback.\n\t\t\tif ( args.event ) {\n\t\t\t\tvar event = $.Event( null, args.event );\n\t\t\t\targs.success = function () {\n\t\t\t\t\tacf.enableSubmit( $( event.target ) ).trigger( event );\n\t\t\t\t};\n\t\t\t}\n\n\t\t\t// action for 3rd party\n\t\t\tacf.doAction( 'validation_begin', this.$el );\n\n\t\t\t// lock form\n\t\t\tacf.lockForm( this.$el );\n\n\t\t\t// loading callback\n\t\t\targs.loading( this.$el, this );\n\n\t\t\t// update status\n\t\t\tthis.set( 'status', 'validating' );\n\n\t\t\t// success callback\n\t\t\tvar onSuccess = function ( json ) {\n\t\t\t\t// validate\n\t\t\t\tif ( ! acf.isAjaxSuccess( json ) ) {\n\t\t\t\t\treturn;\n\t\t\t\t}\n\n\t\t\t\t// filter\n\t\t\t\tvar data = acf.applyFilters(\n\t\t\t\t\t'validation_complete',\n\t\t\t\t\tjson.data,\n\t\t\t\t\tthis.$el,\n\t\t\t\t\tthis\n\t\t\t\t);\n\n\t\t\t\t// add errors\n\t\t\t\tif ( ! data.valid ) {\n\t\t\t\t\tthis.addErrors( data.errors );\n\t\t\t\t}\n\t\t\t};\n\n\t\t\t// complete\n\t\t\tvar onComplete = function () {\n\t\t\t\t// unlock form\n\t\t\t\tacf.unlockForm( this.$el );\n\n\t\t\t\t// failure\n\t\t\t\tif ( this.hasErrors() ) {\n\t\t\t\t\t// update status\n\t\t\t\t\tthis.set( 'status', 'invalid' );\n\n\t\t\t\t\t// action\n\t\t\t\t\tacf.doAction( 'validation_failure', this.$el, this );\n\n\t\t\t\t\t// display errors\n\t\t\t\t\tthis.showErrors();\n\n\t\t\t\t\t// failure callback\n\t\t\t\t\targs.failure( this.$el, this );\n\n\t\t\t\t\t// success\n\t\t\t\t} else {\n\t\t\t\t\t// update status\n\t\t\t\t\tthis.set( 'status', 'valid' );\n\n\t\t\t\t\t// remove previous error message\n\t\t\t\t\tif ( this.has( 'notice' ) ) {\n\t\t\t\t\t\tthis.get( 'notice' ).update( {\n\t\t\t\t\t\t\ttype: 'success',\n\t\t\t\t\t\t\ttext: acf.__( 'Validation successful' ),\n\t\t\t\t\t\t\ttimeout: 1000,\n\t\t\t\t\t\t} );\n\t\t\t\t\t}\n\n\t\t\t\t\t// action\n\t\t\t\t\tacf.doAction( 'validation_success', this.$el, this );\n\t\t\t\t\tacf.doAction( 'submit', this.$el );\n\n\t\t\t\t\t// success callback (submit form)\n\t\t\t\t\targs.success( this.$el, this );\n\n\t\t\t\t\t// lock form\n\t\t\t\t\tacf.lockForm( this.$el );\n\n\t\t\t\t\t// reset\n\t\t\t\t\tif ( args.reset ) {\n\t\t\t\t\t\tthis.reset();\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// complete callback\n\t\t\t\targs.complete( this.$el, this );\n\n\t\t\t\t// clear errors\n\t\t\t\tthis.clearErrors();\n\t\t\t};\n\n\t\t\t// serialize form data\n\t\t\tvar data = acf.serialize( this.$el );\n\t\t\tdata.action = 'acf/validate_save_post';\n\n\t\t\t// ajax\n\t\t\t$.ajax( {\n\t\t\t\turl: acf.get( 'ajaxurl' ),\n\t\t\t\tdata: acf.prepareForAjax( data ),\n\t\t\t\ttype: 'post',\n\t\t\t\tdataType: 'json',\n\t\t\t\tcontext: this,\n\t\t\t\tsuccess: onSuccess,\n\t\t\t\tcomplete: onComplete,\n\t\t\t} );\n\n\t\t\t// return false to fail validation and allow AJAX\n\t\t\treturn false;\n\t\t},\n\n\t\t/**\n\t\t * setup\n\t\t *\n\t\t * Called during the constructor function to setup this instance\n\t\t *\n\t\t * @date\t4/9/18\n\t\t * @since\t5.7.5\n\t\t *\n\t\t * @param\tjQuery $form The form element.\n\t\t * @return\tvoid\n\t\t */\n\t\tsetup: function ( $form ) {\n\t\t\t// set $el\n\t\t\tthis.$el = $form;\n\t\t},\n\n\t\t/**\n\t\t * reset\n\t\t *\n\t\t * Rests the validation to be used again.\n\t\t *\n\t\t * @date\t6/9/18\n\t\t * @since\t5.7.5\n\t\t *\n\t\t * @param\tvoid\n\t\t * @return\tvoid\n\t\t */\n\t\treset: function () {\n\t\t\t// reset data\n\t\t\tthis.set( 'errors', [] );\n\t\t\tthis.set( 'notice', null );\n\t\t\tthis.set( 'status', '' );\n\n\t\t\t// unlock form\n\t\t\tacf.unlockForm( this.$el );\n\t\t},\n\t} );\n\n\t/**\n\t * getValidator\n\t *\n\t * Returns the instance for a given form element.\n\t *\n\t * @date\t4/9/18\n\t * @since\t5.7.5\n\t *\n\t * @param\tjQuery $el The form element.\n\t * @return\tobject\n\t */\n\tvar getValidator = function ( $el ) {\n\t\t// instantiate\n\t\tvar validator = $el.data( 'acf' );\n\t\tif ( ! validator ) {\n\t\t\tvalidator = new Validator( $el );\n\t\t}\n\n\t\t// return\n\t\treturn validator;\n\t};\n\n\t/**\n\t * acf.validateForm\n\t *\n\t * A helper function for the Validator.validate() function.\n\t * Returns true if form is valid, or fetches a validation request and returns false.\n\t *\n\t * @date\t4/4/18\n\t * @since\t5.6.9\n\t *\n\t * @param\tobject args A list of settings to customize the validation process.\n\t * @return\tbool\n\t */\n\n\tacf.validateForm = function ( args ) {\n\t\treturn getValidator( args.form ).validate( args );\n\t};\n\n\t/**\n\t * acf.enableSubmit\n\t *\n\t * Enables a submit button and returns the element.\n\t *\n\t * @date\t30/8/18\n\t * @since\t5.7.4\n\t *\n\t * @param\tjQuery $submit The submit button.\n\t * @return\tjQuery\n\t */\n\tacf.enableSubmit = function ( $submit ) {\n\t\treturn $submit.removeClass( 'disabled' ).removeAttr( 'disabled' );\n\t};\n\n\t/**\n\t * acf.disableSubmit\n\t *\n\t * Disables a submit button and returns the element.\n\t *\n\t * @date\t30/8/18\n\t * @since\t5.7.4\n\t *\n\t * @param\tjQuery $submit The submit button.\n\t * @return\tjQuery\n\t */\n\tacf.disableSubmit = function ( $submit ) {\n\t\treturn $submit.addClass( 'disabled' ).attr( 'disabled', true );\n\t};\n\n\t/**\n\t * acf.showSpinner\n\t *\n\t * Shows the spinner element.\n\t *\n\t * @date\t4/9/18\n\t * @since\t5.7.5\n\t *\n\t * @param\tjQuery $spinner The spinner element.\n\t * @return\tjQuery\n\t */\n\tacf.showSpinner = function ( $spinner ) {\n\t\t$spinner.addClass( 'is-active' ); // add class (WP > 4.2)\n\t\t$spinner.css( 'display', 'inline-block' ); // css (WP < 4.2)\n\t\treturn $spinner;\n\t};\n\n\t/**\n\t * acf.hideSpinner\n\t *\n\t * Hides the spinner element.\n\t *\n\t * @date\t4/9/18\n\t * @since\t5.7.5\n\t *\n\t * @param\tjQuery $spinner The spinner element.\n\t * @return\tjQuery\n\t */\n\tacf.hideSpinner = function ( $spinner ) {\n\t\t$spinner.removeClass( 'is-active' ); // add class (WP > 4.2)\n\t\t$spinner.css( 'display', 'none' ); // css (WP < 4.2)\n\t\treturn $spinner;\n\t};\n\n\t/**\n\t * acf.lockForm\n\t *\n\t * Locks a form by disabeling its primary inputs and showing a spinner.\n\t *\n\t * @date\t4/9/18\n\t * @since\t5.7.5\n\t *\n\t * @param\tjQuery $form The form element.\n\t * @return\tjQuery\n\t */\n\tacf.lockForm = function ( $form ) {\n\t\t// vars\n\t\tvar $wrap = findSubmitWrap( $form );\n\t\tvar $submit = $wrap\n\t\t\t.find( '.button, [type=\"submit\"]' )\n\t\t\t.not( '.acf-nav, .acf-repeater-add-row' );\n\t\tvar $spinner = $wrap.find( '.spinner, .acf-spinner' );\n\n\t\t// hide all spinners (hides the preview spinner)\n\t\tacf.hideSpinner( $spinner );\n\n\t\t// lock\n\t\tacf.disableSubmit( $submit );\n\t\tacf.showSpinner( $spinner.last() );\n\t\treturn $form;\n\t};\n\n\t/**\n\t * acf.unlockForm\n\t *\n\t * Unlocks a form by enabeling its primary inputs and hiding all spinners.\n\t *\n\t * @date\t4/9/18\n\t * @since\t5.7.5\n\t *\n\t * @param\tjQuery $form The form element.\n\t * @return\tjQuery\n\t */\n\tacf.unlockForm = function ( $form ) {\n\t\t// vars\n\t\tvar $wrap = findSubmitWrap( $form );\n\t\tvar $submit = $wrap\n\t\t\t.find( '.button, [type=\"submit\"]' )\n\t\t\t.not( '.acf-nav, .acf-repeater-add-row' );\n\t\tvar $spinner = $wrap.find( '.spinner, .acf-spinner' );\n\n\t\t// unlock\n\t\tacf.enableSubmit( $submit );\n\t\tacf.hideSpinner( $spinner );\n\t\treturn $form;\n\t};\n\n\t/**\n\t * findSubmitWrap\n\t *\n\t * An internal function to find the 'primary' form submit wrapping element.\n\t *\n\t * @date\t4/9/18\n\t * @since\t5.7.5\n\t *\n\t * @param\tjQuery $form The form element.\n\t * @return\tjQuery\n\t */\n\tvar findSubmitWrap = function ( $form ) {\n\t\t// default post submit div\n\t\tvar $wrap = $form.find( '#submitdiv' );\n\t\tif ( $wrap.length ) {\n\t\t\treturn $wrap;\n\t\t}\n\n\t\t// 3rd party publish box\n\t\tvar $wrap = $form.find( '#submitpost' );\n\t\tif ( $wrap.length ) {\n\t\t\treturn $wrap;\n\t\t}\n\n\t\t// term, user\n\t\tvar $wrap = $form.find( 'p.submit' ).last();\n\t\tif ( $wrap.length ) {\n\t\t\treturn $wrap;\n\t\t}\n\n\t\t// front end form\n\t\tvar $wrap = $form.find( '.acf-form-submit' );\n\t\tif ( $wrap.length ) {\n\t\t\treturn $wrap;\n\t\t}\n\n\t\t// ACF 6.2 options page modal\n\t\tvar $wrap = $( '#acf-create-options-page-form .acf-actions' );\n\t\tif ( $wrap.length ) {\n\t\t\treturn $wrap;\n\t\t}\n\n\t\t// ACF 6.0+ headerbar submit\n\t\tvar $wrap = $( '.acf-headerbar-actions' );\n\t\tif ( $wrap.length ) {\n\t\t\treturn $wrap;\n\t\t}\n\n\t\t// default\n\t\treturn $form;\n\t};\n\n\t/**\n\t * A debounced function to trigger a form submission.\n\t *\n\t * @date\t15/07/2020\n\t * @since\t5.9.0\n\t *\n\t * @param\ttype Var Description.\n\t * @return\ttype Description.\n\t */\n\tvar submitFormDebounced = acf.debounce( function ( $form ) {\n\t\t$form.submit();\n\t} );\n\n\t/**\n\t * Ensure field is visible for validation errors\n\t *\n\t * @date\t20/10/2021\n\t * @since\t5.11.0\n\t */\n\tvar ensureFieldPostBoxIsVisible = function ( $el ) {\n\t\t// Find the postbox element containing this field.\n\t\tvar $postbox = $el.parents( '.acf-postbox' );\n\t\tif ( $postbox.length ) {\n\t\t\tvar acf_postbox = acf.getPostbox( $postbox );\n\t\t\tif ( acf_postbox && acf_postbox.isHiddenByScreenOptions() ) {\n\t\t\t\t// Rather than using .show() here, we don't want the field to appear next reload.\n\t\t\t\t// So just temporarily show the field group so validation can complete.\n\t\t\t\tacf_postbox.$el.removeClass( 'hide-if-js' );\n\t\t\t\tacf_postbox.$el.css( 'display', '' );\n\t\t\t}\n\t\t}\n\t};\n\n\t/**\n\t * Ensure metaboxes which contain browser validation failures are visible.\n\t *\n\t * @date\t20/10/2021\n\t * @since\t5.11.0\n\t */\n\tvar ensureInvalidFieldVisibility = function () {\n\t\t// Load each ACF input field and check it's browser validation state.\n\t\tvar $inputs = $( '.acf-field input' );\n\t\t$inputs.each( function () {\n\t\t\tif ( ! this.checkValidity() ) {\n\t\t\t\t// Field is invalid, so we need to make sure it's metabox is visible.\n\t\t\t\tensureFieldPostBoxIsVisible( $( this ) );\n\t\t\t}\n\t\t} );\n\t};\n\n\t/**\n\t * acf.validation\n\t *\n\t * Global validation logic\n\t *\n\t * @date\t4/4/18\n\t * @since\t5.6.9\n\t *\n\t * @param\tvoid\n\t * @return\tvoid\n\t */\n\n\tacf.validation = new acf.Model( {\n\t\t/** @var string The model identifier. */\n\t\tid: 'validation',\n\n\t\t/** @var bool The active state. Set to false before 'prepare' to prevent validation. */\n\t\tactive: true,\n\n\t\t/** @var string The model initialize time. */\n\t\twait: 'prepare',\n\n\t\t/** @var object The model actions. */\n\t\tactions: {\n\t\t\tready: 'addInputEvents',\n\t\t\tappend: 'addInputEvents',\n\t\t},\n\n\t\t/** @var object The model events. */\n\t\tevents: {\n\t\t\t'click input[type=\"submit\"]': 'onClickSubmit',\n\t\t\t'click button[type=\"submit\"]': 'onClickSubmit',\n\t\t\t//'click #editor .editor-post-publish-button': 'onClickSubmitGutenberg',\n\t\t\t'click #save-post': 'onClickSave',\n\t\t\t'submit form#post': 'onSubmitPost',\n\t\t\t'submit form': 'onSubmit',\n\t\t},\n\n\t\t/**\n\t\t * initialize\n\t\t *\n\t\t * Called when initializing the model.\n\t\t *\n\t\t * @date\t4/9/18\n\t\t * @since\t5.7.5\n\t\t *\n\t\t * @param\tvoid\n\t\t * @return\tvoid\n\t\t */\n\t\tinitialize: function () {\n\t\t\t// check 'validation' setting\n\t\t\tif ( ! acf.get( 'validation' ) ) {\n\t\t\t\tthis.active = false;\n\t\t\t\tthis.actions = {};\n\t\t\t\tthis.events = {};\n\t\t\t}\n\t\t},\n\n\t\t/**\n\t\t * enable\n\t\t *\n\t\t * Enables validation.\n\t\t *\n\t\t * @date\t4/9/18\n\t\t * @since\t5.7.5\n\t\t *\n\t\t * @param\tvoid\n\t\t * @return\tvoid\n\t\t */\n\t\tenable: function () {\n\t\t\tthis.active = true;\n\t\t},\n\n\t\t/**\n\t\t * disable\n\t\t *\n\t\t * Disables validation.\n\t\t *\n\t\t * @date\t4/9/18\n\t\t * @since\t5.7.5\n\t\t *\n\t\t * @param\tvoid\n\t\t * @return\tvoid\n\t\t */\n\t\tdisable: function () {\n\t\t\tthis.active = false;\n\t\t},\n\n\t\t/**\n\t\t * reset\n\t\t *\n\t\t * Rests the form validation to be used again\n\t\t *\n\t\t * @date\t6/9/18\n\t\t * @since\t5.7.5\n\t\t *\n\t\t * @param\tjQuery $form The form element.\n\t\t * @return\tvoid\n\t\t */\n\t\treset: function ( $form ) {\n\t\t\tgetValidator( $form ).reset();\n\t\t},\n\n\t\t/**\n\t\t * addInputEvents\n\t\t *\n\t\t * Adds 'invalid' event listeners to HTML inputs.\n\t\t *\n\t\t * @date\t4/9/18\n\t\t * @since\t5.7.5\n\t\t *\n\t\t * @param\tjQuery $el The element being added / readied.\n\t\t * @return\tvoid\n\t\t */\n\t\taddInputEvents: function ( $el ) {\n\t\t\t// Bug exists in Safari where custom \"invalid\" handling prevents draft from saving.\n\t\t\tif ( acf.get( 'browser' ) === 'safari' ) return;\n\n\t\t\t// vars\n\t\t\tvar $inputs = $( '.acf-field [name]', $el );\n\n\t\t\t// check\n\t\t\tif ( $inputs.length ) {\n\t\t\t\tthis.on( $inputs, 'invalid', 'onInvalid' );\n\t\t\t}\n\t\t},\n\n\t\t/**\n\t\t * onInvalid\n\t\t *\n\t\t * Callback for the 'invalid' event.\n\t\t *\n\t\t * @date\t4/9/18\n\t\t * @since\t5.7.5\n\t\t *\n\t\t * @param\tobject e The event object.\n\t\t * @param\tjQuery $el The input element.\n\t\t * @return\tvoid\n\t\t */\n\t\tonInvalid: function ( e, $el ) {\n\t\t\t// prevent default\n\t\t\t// - prevents browser error message\n\t\t\t// - also fixes chrome bug where 'hidden-by-tab' field throws focus error\n\t\t\te.preventDefault();\n\n\t\t\t// vars\n\t\t\tvar $form = $el.closest( 'form' );\n\n\t\t\t// check form exists\n\t\t\tif ( $form.length ) {\n\t\t\t\t// add error to validator\n\t\t\t\tgetValidator( $form ).addError( {\n\t\t\t\t\tinput: $el.attr( 'name' ),\n\t\t\t\t\tmessage: acf.strEscape( e.target.validationMessage ),\n\t\t\t\t} );\n\n\t\t\t\t// trigger submit on $form\n\t\t\t\t// - allows for \"save\", \"preview\" and \"publish\" to work\n\t\t\t\tsubmitFormDebounced( $form );\n\t\t\t}\n\t\t},\n\n\t\t/**\n\t\t * onClickSubmit\n\t\t *\n\t\t * Callback when clicking submit.\n\t\t *\n\t\t * @date\t4/9/18\n\t\t * @since\t5.7.5\n\t\t *\n\t\t * @param\tobject e The event object.\n\t\t * @param\tjQuery $el The input element.\n\t\t * @return\tvoid\n\t\t */\n\t\tonClickSubmit: function ( e, $el ) {\n\t\t\t// Some browsers (safari) force their browser validation before our AJAX validation,\n\t\t\t// so we need to make sure fields are visible earlier than showErrors()\n\t\t\tensureInvalidFieldVisibility();\n\n\t\t\t// store the \"click event\" for later use in this.onSubmit()\n\t\t\tthis.set( 'originalEvent', e );\n\t\t},\n\n\t\t/**\n\t\t * onClickSave\n\t\t *\n\t\t * Set ignore to true when saving a draft.\n\t\t *\n\t\t * @date\t4/9/18\n\t\t * @since\t5.7.5\n\t\t *\n\t\t * @param\tobject e The event object.\n\t\t * @param\tjQuery $el The input element.\n\t\t * @return\tvoid\n\t\t */\n\t\tonClickSave: function ( e, $el ) {\n\t\t\tthis.set( 'ignore', true );\n\t\t},\n\n\t\t/**\n\t\t * onClickSubmitGutenberg\n\t\t *\n\t\t * Custom validation event for the gutenberg editor.\n\t\t *\n\t\t * @date\t29/10/18\n\t\t * @since\t5.8.0\n\t\t *\n\t\t * @param\tobject e The event object.\n\t\t * @param\tjQuery $el The input element.\n\t\t * @return\tvoid\n\t\t */\n\t\tonClickSubmitGutenberg: function ( e, $el ) {\n\t\t\t// validate\n\t\t\tvar valid = acf.validateForm( {\n\t\t\t\tform: $( '#editor' ),\n\t\t\t\tevent: e,\n\t\t\t\treset: true,\n\t\t\t\tfailure: function ( $form, validator ) {\n\t\t\t\t\tvar $notice = validator.get( 'notice' ).$el;\n\t\t\t\t\t$notice.appendTo( '.components-notice-list' );\n\t\t\t\t\t$notice\n\t\t\t\t\t\t.find( '.acf-notice-dismiss' )\n\t\t\t\t\t\t.removeClass( 'small' );\n\t\t\t\t},\n\t\t\t} );\n\n\t\t\t// if not valid, stop event and allow validation to continue\n\t\t\tif ( ! valid ) {\n\t\t\t\te.preventDefault();\n\t\t\t\te.stopImmediatePropagation();\n\t\t\t}\n\t\t},\n\n\t\t/**\n\t\t * onSubmitPost\n\t\t *\n\t\t * Callback when the 'post' form is submit.\n\t\t *\n\t\t * @date\t5/3/19\n\t\t * @since\t5.7.13\n\t\t *\n\t\t * @param\tobject e The event object.\n\t\t * @param\tjQuery $el The input element.\n\t\t * @return\tvoid\n\t\t */\n\t\tonSubmitPost: function ( e, $el ) {\n\t\t\t// Check if is preview.\n\t\t\tif ( $( 'input#wp-preview' ).val() === 'dopreview' ) {\n\t\t\t\t// Ignore validation.\n\t\t\t\tthis.set( 'ignore', true );\n\n\t\t\t\t// Unlock form to fix conflict with core \"submit.edit-post\" event causing all submit buttons to be disabled.\n\t\t\t\tacf.unlockForm( $el );\n\t\t\t}\n\t\t},\n\n\t\t/**\n\t\t * onSubmit\n\t\t *\n\t\t * Callback when the form is submit.\n\t\t *\n\t\t * @date\t4/9/18\n\t\t * @since\t5.7.5\n\t\t *\n\t\t * @param\tobject e The event object.\n\t\t * @param\tjQuery $el The input element.\n\t\t * @return\tvoid\n\t\t */\n\t\tonSubmit: function ( e, $el ) {\n\t\t\t// Allow form to submit if...\n\t\t\tif (\n\t\t\t\t// Validation has been disabled.\n\t\t\t\t! this.active ||\n\t\t\t\t// Or this event is to be ignored.\n\t\t\t\tthis.get( 'ignore' ) ||\n\t\t\t\t// Or this event has already been prevented.\n\t\t\t\te.isDefaultPrevented()\n\t\t\t) {\n\t\t\t\t// Return early and call reset function.\n\t\t\t\treturn this.allowSubmit();\n\t\t\t}\n\n\t\t\t// Validate form.\n\t\t\tvar valid = acf.validateForm( {\n\t\t\t\tform: $el,\n\t\t\t\tevent: this.get( 'originalEvent' ),\n\t\t\t} );\n\n\t\t\t// If not valid, stop event to prevent form submit.\n\t\t\tif ( ! valid ) {\n\t\t\t\te.preventDefault();\n\t\t\t}\n\t\t},\n\n\t\t/**\n\t\t * allowSubmit\n\t\t *\n\t\t * Resets data during onSubmit when the form is allowed to submit.\n\t\t *\n\t\t * @date\t5/3/19\n\t\t * @since\t5.7.13\n\t\t *\n\t\t * @param\tvoid\n\t\t * @return\tvoid\n\t\t */\n\t\tallowSubmit: function () {\n\t\t\t// Reset \"ignore\" state.\n\t\t\tthis.set( 'ignore', false );\n\n\t\t\t// Reset \"originalEvent\" object.\n\t\t\tthis.set( 'originalEvent', false );\n\n\t\t\t// Return true\n\t\t\treturn true;\n\t\t},\n\t} );\n\n\tvar gutenbergValidation = new acf.Model( {\n\t\twait: 'prepare',\n\t\tinitialize: function () {\n\t\t\t// Bail early if not Gutenberg.\n\t\t\tif ( ! acf.isGutenberg() ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// Custommize the editor.\n\t\t\tthis.customizeEditor();\n\t\t},\n\t\tcustomizeEditor: function () {\n\t\t\t// Extract vars.\n\t\t\tvar editor = wp.data.dispatch( 'core/editor' );\n\t\t\tvar editorSelect = wp.data.select( 'core/editor' );\n\t\t\tvar notices = wp.data.dispatch( 'core/notices' );\n\n\t\t\t// Backup original method.\n\t\t\tvar savePost = editor.savePost;\n\n\t\t\t// Listen for changes to post status and perform actions:\n\t\t\t// a) Enable validation for \"publish\" action.\n\t\t\t// b) Remember last non \"publish\" status used for restoring after validation fail.\n\t\t\tvar useValidation = false;\n\t\t\tvar lastPostStatus = '';\n\t\t\twp.data.subscribe( function () {\n\t\t\t\tvar postStatus =\n\t\t\t\t\teditorSelect.getEditedPostAttribute( 'status' );\n\t\t\t\tuseValidation =\n\t\t\t\t\tpostStatus === 'publish' || postStatus === 'future';\n\t\t\t\tlastPostStatus =\n\t\t\t\t\tpostStatus !== 'publish' ? postStatus : lastPostStatus;\n\t\t\t} );\n\n\t\t\t// Create validation version.\n\t\t\teditor.savePost = function ( options ) {\n\t\t\t\toptions = options || {};\n\n\t\t\t\t// Backup vars.\n\t\t\t\tvar _this = this;\n\t\t\t\tvar _args = arguments;\n\n\t\t\t\t// Perform validation within a Promise.\n\t\t\t\treturn new Promise( function ( resolve, reject ) {\n\t\t\t\t\t// Bail early if is autosave or preview.\n\t\t\t\t\tif ( options.isAutosave || options.isPreview ) {\n\t\t\t\t\t\treturn resolve( 'Validation ignored (autosave).' );\n\t\t\t\t\t}\n\n\t\t\t\t\t// Bail early if validation is not needed.\n\t\t\t\t\tif ( ! useValidation ) {\n\t\t\t\t\t\treturn resolve( 'Validation ignored (draft).' );\n\t\t\t\t\t}\n\n\t\t\t\t\t// Validate the editor form.\n\t\t\t\t\tvar valid = acf.validateForm( {\n\t\t\t\t\t\tform: $( '#editor' ),\n\t\t\t\t\t\treset: true,\n\t\t\t\t\t\tcomplete: function ( $form, validator ) {\n\t\t\t\t\t\t\t// Always unlock the form after AJAX.\n\t\t\t\t\t\t\teditor.unlockPostSaving( 'acf' );\n\t\t\t\t\t\t},\n\t\t\t\t\t\tfailure: function ( $form, validator ) {\n\t\t\t\t\t\t\t// Get validation error and append to Gutenberg notices.\n\t\t\t\t\t\t\tvar notice = validator.get( 'notice' );\n\t\t\t\t\t\t\tnotices.createErrorNotice( notice.get( 'text' ), {\n\t\t\t\t\t\t\t\tid: 'acf-validation',\n\t\t\t\t\t\t\t\tisDismissible: true,\n\t\t\t\t\t\t\t} );\n\t\t\t\t\t\t\tnotice.remove();\n\n\t\t\t\t\t\t\t// Restore last non \"publish\" status.\n\t\t\t\t\t\t\tif ( lastPostStatus ) {\n\t\t\t\t\t\t\t\teditor.editPost( {\n\t\t\t\t\t\t\t\t\tstatus: lastPostStatus,\n\t\t\t\t\t\t\t\t} );\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t// Rejext promise and prevent savePost().\n\t\t\t\t\t\t\treject( 'Validation failed.' );\n\t\t\t\t\t\t},\n\t\t\t\t\t\tsuccess: function () {\n\t\t\t\t\t\t\tnotices.removeNotice( 'acf-validation' );\n\n\t\t\t\t\t\t\t// Resolve promise and allow savePost().\n\t\t\t\t\t\t\tresolve( 'Validation success.' );\n\t\t\t\t\t\t},\n\t\t\t\t\t} );\n\n\t\t\t\t\t// Resolve promise and allow savePost() if no validation is needed.\n\t\t\t\t\tif ( valid ) {\n\t\t\t\t\t\tresolve( 'Validation bypassed.' );\n\n\t\t\t\t\t\t// Otherwise, lock the form and wait for AJAX response.\n\t\t\t\t\t} else {\n\t\t\t\t\t\teditor.lockPostSaving( 'acf' );\n\t\t\t\t\t}\n\t\t\t\t} )\n\t\t\t\t\t.then( function () {\n\t\t\t\t\t\treturn savePost.apply( _this, _args );\n\t\t\t\t\t},\n\t\t\t\t\t( err ) => {\n\t\t\t\t\t\t// Nothing to do here, user is alerted of validation issues.\n\t\t\t\t\t} );\n\t\t\t};\n\t\t},\n\t} );\n} )( jQuery );\n","// The module cache\nvar __webpack_module_cache__ = {};\n\n// The require function\nfunction __webpack_require__(moduleId) {\n\t// Check if module is in cache\n\tvar cachedModule = __webpack_module_cache__[moduleId];\n\tif (cachedModule !== undefined) {\n\t\treturn cachedModule.exports;\n\t}\n\t// Create a new module (and put it into the cache)\n\tvar module = __webpack_module_cache__[moduleId] = {\n\t\t// no module.id needed\n\t\t// no module.loaded needed\n\t\texports: {}\n\t};\n\n\t// Execute the module function\n\t__webpack_modules__[moduleId](module, module.exports, __webpack_require__);\n\n\t// Return the exports of the module\n\treturn module.exports;\n}\n\n","// getDefaultExport function for compatibility with non-harmony modules\n__webpack_require__.n = (module) => {\n\tvar getter = module && module.__esModule ?\n\t\t() => (module['default']) :\n\t\t() => (module);\n\t__webpack_require__.d(getter, { a: getter });\n\treturn getter;\n};","// define getter functions for harmony exports\n__webpack_require__.d = (exports, definition) => {\n\tfor(var key in definition) {\n\t\tif(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {\n\t\t\tObject.defineProperty(exports, key, { enumerable: true, get: definition[key] });\n\t\t}\n\t}\n};","__webpack_require__.o = (obj, prop) => (Object.prototype.hasOwnProperty.call(obj, prop))","// define __esModule on exports\n__webpack_require__.r = (exports) => {\n\tif(typeof Symbol !== 'undefined' && Symbol.toStringTag) {\n\t\tObject.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });\n\t}\n\tObject.defineProperty(exports, '__esModule', { value: true });\n};","import './_acf-field.js';\nimport './_acf-fields.js';\nimport './_acf-field-accordion.js';\nimport './_acf-field-button-group.js';\nimport './_acf-field-checkbox.js';\nimport './_acf-field-color-picker.js';\nimport './_acf-field-date-picker.js';\nimport './_acf-field-date-time-picker.js';\nimport './_acf-field-google-map.js';\nimport './_acf-field-image.js';\nimport './_acf-field-file.js';\nimport './_acf-field-link.js';\nimport './_acf-field-oembed.js';\nimport './_acf-field-radio.js';\nimport './_acf-field-range.js';\nimport './_acf-field-relationship.js';\nimport './_acf-field-select.js';\nimport './_acf-field-tab.js';\nimport './_acf-field-post-object.js';\nimport './_acf-field-page-link.js';\nimport './_acf-field-user.js';\nimport './_acf-field-taxonomy.js';\nimport './_acf-field-time-picker.js';\nimport './_acf-field-true-false.js';\nimport './_acf-field-url.js';\nimport './_acf-field-wysiwyg.js';\nimport './_acf-condition.js';\nimport './_acf-conditions.js';\nimport './_acf-condition-types.js';\nimport './_acf-unload.js';\nimport './_acf-postbox.js';\nimport './_acf-media.js';\nimport './_acf-screen.js';\nimport './_acf-select2.js';\nimport './_acf-tinymce.js';\nimport './_acf-validation.js';\nimport './_acf-helpers.js';\nimport './_acf-compatibility.js';\n"],"names":["$","undefined","acf","newCompatibility","instance","compatibilty","__proto__","compatibility","getCompatibility","_acf","l10n","o","fields","update","set","add_action","addAction","remove_action","removeAction","do_action","doAction","add_filter","addFilter","remove_filter","removeFilter","apply_filters","applyFilters","parse_args","parseArgs","disable_el","disable","disable_form","enable_el","enable","enable_form","update_user_setting","updateUserSetting","prepare_for_ajax","prepareForAjax","is_ajax_success","isAjaxSuccess","remove_el","remove","remove_tr","str_replace","strReplace","render_select","renderSelect","get_uniqid","uniqid","serialize_form","serialize","esc_html","strEscape","str_sanitize","strSanitize","_e","k1","k2","compatKey","compats","__","string","get_selector","s","selector","isPlainObject","isEmptyObject","k","get_fields","$el","all","args","is","parent","suppressFilters","findFields","get_field","$fields","apply","arguments","length","first","get_closest_field","closest","get_field_wrap","get_field_key","$field","data","get_field_type","get_data","defaults","maybe_get","obj","key","value","keys","String","split","i","hasOwnProperty","compatibleArgument","arg","Field","compatibleArguments","arrayArgs","map","compatibleCallback","origCallback","document","action","callback","priority","context","actions","model","filters","events","extend","each","name","_add_action","_add_filter","_add_event","indexOf","event","substr","fn","e","field_group","on","get","field","type","_set_$field","focus","doFocus","_validation","validation","remove_error","getField","removeError","add_warning","message","showNotice","text","timeout","fetch","validateForm","enableSubmit","disableSubmit","showSpinner","hideSpinner","unlockForm","lockForm","tooltip","newTooltip","target","temp","confirm","button_y","button_n","cancel","confirm_remove","confirmRemove","media","Model","activeFrame","new_media_popup","frame","onNewMediaPopup","popup","props","mime_types","allowedTypes","id","attachment","newMediaPopup","select2","init","$select","allow_null","allowNull","ajax_action","ajaxAction","newSelect2","destroy","getInstance","postbox","render","edit_url","editLink","edit_title","editTitle","newPostbox","screen","check","ajax","jQuery","parseString","val","isEqualTo","v1","v2","toLowerCase","isEqualToNumber","parseFloat","isGreaterThan","isLessThan","inArray","array","containsString","haystack","needle","matchesPattern","pattern","regexp","RegExp","match","HasValue","Condition","operator","label","fieldTypes","rule","Array","choices","fieldObject","registerConditionType","HasNoValue","prototype","EqualTo","isNumeric","NotEqualTo","PatternMatch","Contains","TrueFalseEqualTo","choiceType","TrueFalseNotEqualTo","SelectEqualTo","lines","$setting","$input","prop","push","line","trim","SelectNotEqualTo","GreaterThan","LessThan","SelectionGreaterThan","SelectionLessThan","storage","conditions","change","keyup","enableField","disableField","setup","getEventTarget","calculate","newCondition","fieldType","conditionTypes","getConditionTypes","condition","modelId","strPascalCase","proto","mid","models","getConditionType","registerConditionForFieldType","conditionType","types","ProtoFieldTypes","ProtoOperator","CONTEXT","conditionsManager","new_field","onNewField","has","getConditions","getSiblingField","getFields","sibling","parents","Conditions","timeStamp","groups","rules","addRules","addRule","changed","show","hide","showEnable","cid","hideDisable","pass","getGroups","group","passed","filter","hasGroups","addGroup","hasGroup","getGroup","removeGroup","delete","groupArray","hasRule","getRule","removeRule","wait","$control","initialize","hasClass","$label","$labelWrap","$inputWrap","$wrap","$instructions","children","append","$table","$newLabel","$newInput","$newTable","attr","$newWrap","html","addClass","order","getPreference","css","prepend","accordionManager","iconHtml","open","$parent","nextUntil","removeAttr","registerFieldType","unload","isOpen","toggle","close","isGutenberg","duration","find","slideDown","replaceWith","siblings","slideUp","removeClass","onClick","preventDefault","onInvalidField","busy","setTimeout","onUnload","setPreference","setValue","trigger","selected","$toggle","$inputs","not","getValue","onChange","checked","onClickAdd","getInputName","before","last","onClickToggle","$labels","onClickCustom","$text","next","duplicateField","$inputText","iris","defaultColor","palettes","clear","wpColorPicker","onDuplicate","$duplicate","$colorPicker","initializeCompatibility","dateFormat","altField","altFormat","changeYear","yearRange","changeMonth","showButtonPanel","firstDay","newDatePicker","datepicker","onBlur","datePickerManager","locale","rtl","isRTL","regional","setDefaults","exists","wrap","DatePickerField","timeFormat","altFieldTimeOnly","altTimeFormat","controlType","oneLine","newDateTimePicker","dateTimePickerManager","timepicker","datetimepicker","ImageField","validateAttachment","attributes","url","alt","title","filename","filesizeHumanReadable","icon","src","selectAttachment","multiple","mode","library","select","proxy","editAttachment","button","showField","$search","$canvas","setState","state","JSON","parse","silent","valAttr","stringify","renderVal","address","setPosition","lat","lng","marker","setVisible","newLatLng","google","maps","LatLng","center","position","getPosition","setCenter","withAPI","initializeMap","bind","zoom","mapArgs","scrollwheel","parseInt","mapTypeId","MapTypeId","ROADMAP","draggable","raiseOnDrag","autocomplete","Map","markerArgs","Marker","isset","autocompleteArgs","places","Autocomplete","bindTo","addMapEvents","addListener","latLng","searchPosition","place","getPlace","searchPlace","getZoom","geocoder","geocode","location","results","status","replace","parseResult","geometry","formatted_address","searchAddress","searchLocation","navigator","geolocation","alert","getCurrentPosition","coords","latitude","longitude","error","result","place_id","street_number","street_name","city","post_code","country","keywords","address_components","component","component_type","long_name","short_name","onClickClear","onClickLocate","onClickSearch","onFocusSearch","onBlurSearch","onKeyupSearch","onKeydownSearch","which","blur","onShow","loading","window","Geocoder","dataType","cache","success","caption","description","width","height","size","isget","getNext","removeAttachment","onClickEdit","onClickRemove","$hiddenInput","getFileInputData","param","$node","$div","wpLink","getNodeValue","decode","setNodeValue","getInputValue","setInputValue","$textarea","onOpen","wpLinkL10n","onClose","$submit","isSubmit","off","getSearchVal","showLoading","hideLoading","maybeSearch","prevUrl","clearTimeout","search","ajaxData","field_key","xhr","abort","json","complete","onKeypressSearch","onChangeSearch","SelectField","$inputAlt","$list","list","$listItems","$listItem","newChoice","join","newValue","delayed","once","sortable","items","forceHelperSize","forcePlaceholderSize","scroll","scrollTop","onScrollChoices","one","onceInView","Math","ceil","scrollHeight","innerHeight","paged","onKeypressFilter","onChangeFilter","maybeFetch","max","$span","$li","onTouchStartValues","getAjaxData","$choiceslist","$loading","onComplete","onSuccess","more","walkChoices","$html","$prevLabel","$prevList","walk","isArray","item","escHtml","escAttr","removeField","inherit","placeholder","onRemove","tabs","tab","findTabs","prevAll","findTab","$tabs","$tab","settings","endpoint","placement","Tabs","addTab","isActive","showFields","hiddenByTab","hideFields","lockKey","visible","refresh","hidden","reset","active","close_field_object","index","initialized","$before","ulClass","initializeTabs","getVisible","shift","groupIndex","tabIndex","isVisible","selectTab","closeTabs","getActive","setActive","hasActive","closeActive","closeTab","openTab","t","$a","outerHTML","classes","Tab","onRefresh","attribute","top","outerHeight","onCloseFieldObject","tabsManager","prepare","invalid_field","getTabs","getInstances","ftype","getRelatedPrototype","getRelatedType","getFieldType","$form","$name","$button","$message","notice","step1","newPopup","step2","content","step3","stopImmediatePropagation","startButtonLoading","term_name","term_parent","step4","stopButtonLoading","step5","newNotice","getAjaxMessage","dismiss","getAjaxError","term","$option","term_id","term_label","after","otherField","appendTerm","selectTerm","appendTermSelect","appendTermCheckbox","addOption","$ul","selectOption","onClickRadio","closeText","selectText","timeOnly","dp_instance","t_instance","$close","dpDiv","_updateDateTime","newTimePicker","$switch","$on","$off","switchOn","switchOff","onFocus","onKeypress","keyCode","isValid","onkeyup","query_nonce","user_query_nonce","unmountField","remountField","getMode","initializeEditor","tinymce","quicktags","toolbar","oldId","newId","uniqueId","inputData","inputVal","rename","destructive","onMousedown","enableEditor","disableEditor","eventScope","$parents","removeNotice","away","showError","bubbles","newField","getFieldTypes","category","limit","excludeSubFields","slice","findField","findClosestField","getClosestField","addGlobalFieldAction","globalAction","pluralAction","singleAction","globalCallback","extraArgs","pluralArgs","concat","pluralCallback","singleArgs","addSingleFieldAction","singleEvent","singleCallback","variations","variation","prefix","singleFieldEvents","globalFieldActions","singleFieldActions","fieldsEventManager","duplicateFieldsManager","duplicate","duplicate_fields","$el2","onDuplicateFields","duplicates","refreshHelper","show_field","hide_field","remove_field","unmount_field","remount_field","mountHelper","sortstart","sortstop","onSortstart","$item","onSortstop","sortableHelper","$placeholder","duplicateHelper","after_duplicate","onAfterDuplicate","vals","tableHelper","renderTables","self","renderTable","$ths","$tds","$th","$cells","$hidden","availableWidth","colspan","$fixedWidths","$auoWidths","$td","fieldsHelper","renderGroups","renderGroup","$row","thisTop","thisLeft","left","outerWidth","thisHeight","add","bodyClassShiftHelper","keydown","isShiftKey","onKeyDown","onKeyUp","autoOpen","EditMediaPopup","SelectMediaPopup","getPostID","postID","getMimeTypes","getMimeType","allTypes","MediaPopup","options","getFrameOptions","addFrameStates","wp","addFrameEvents","detach","states","uploadedTo","post__in","Query","query","mirroring","_acfuploader","controller","Library","filterable","editable","allowLocalEdits","EditImage","image","view","loadEditor","selection","_x","_wpPluploadSettings","multipart_params","console","log","customizeFilters","audio","video","mimeType","newFilter","orderby","unattached","uploaded","renderFilters","customizePrototypes","post","customizeAttachmentsButton","customizeAttachmentsRouter","customizeAttachmentFilters","customizeAttachmentCompat","customizeAttachmentLibrary","Button","_","Backbone","listenTo","Parent","Router","addExpand","AttachmentFilters","All","chain","el","sortBy","pluck","AttachmentCompat","rendered","save","serializeForAjax","saveCompat","always","postSave","AttachmentLibrary","Attachment","acf_errors","toggleSelection","collection","single","errors","$sidebar","postboxManager","getPostbox","getPostboxes","Postbox","style","edit","$postbox","$hide","$hideLabel","$hndle","$handleActions","$inside","isHiddenByScreenOptions","isPost","isUser","isTaxonomy","isAttachment","isNavMenu","isWidget","isComment","getPageTemplate","getPageParent","getPageType","getPostType","getPostFormat","getPostCoreTerms","terms","tax_input","post_category","tax","getPostTerms","productType","getProductType","product_type","uniqueArray","post_id","postType","post_type","pageTemplate","page_template","pageParent","page_parent","pageType","page_type","postFormat","post_format","postTerms","post_terms","renderPostScreen","renderUserScreen","copyEvents","$from","$to","_data","handler","sortMetabox","ids","wpMinorVersion","postboxHeader","$prefs","_result","sorted","gutenScreen","postEdits","isGutenbergPostEditor","subscribe","debounce","onRefreshPostScreen","domReady","getTaxonomies","taxonomy","rest_base","_postEdits","getPostEdits","getEditedPostAttribute","taxonomies","slug","dispatch","locations","getActiveMetaBoxLocations","getMetaBoxesPerLocation","m","r","setAvailableMetaBoxesPerLocation","ajaxResults","templateSelection","templateResult","dropdownCssClass","getVersion","Select2_4","Select2_3","Select2","getOption","unselectOption","option","$options","sort","a","b","getAttribute","mergeOptions","getChoices","crawl","$child","params","page","getAjaxResults","processAjaxResults","pagination","allowClear","escapeMarkup","markup","$selection","element","appendTo","attrAjax","removeData","delay","processResults","$container","stop","$prevOptions","$prevGroup","$group","separator","dropdownCss","initSelection","inputValue","quietMillis","choice","select2Manager","version","addTranslations4","addTranslations3","select2L10n","errorLoading","load_fail","inputTooLong","overChars","input","maximum","input_too_long_n","input_too_long_1","inputTooShort","remainingChars","minimum","input_too_short_n","input_too_short_1","loadingMore","load_more","maximumSelected","selection_too_long_n","selection_too_long_1","noResults","matches_0","searching","amd","define","formatMatches","matches","matches_n","matches_1","formatNoMatches","formatAjaxError","formatInputTooShort","min","formatInputTooLong","formatSelectionTooBig","formatLoadMore","formatSearching","locales","tinyMCEPreInit","mceInit","acf_content","qtInit","initializeTinymce","initializeQuicktags","toolbars","ed","MouseEvent","dispatchEvent","wp_autoresize_on","tadv_noautop","wpautop","buildQuicktags","canvas","theButtons","use","instanceId","buttons","edButtons","dfw","QTags","DFWButton","getElementsByTagName","dir","textdirection","TextDirectionButton","innerHTML","triggerHandler","destroyTinymce","enableTinymce","switchEditors","go","editorManager","ready","onPrepare","onReady","editor","autop","oldEditor","removep","editors","activeEditor","wpActiveEditor","validation_failure","validation_success","stopListening","startListening","Validator","addErrors","addError","hasErrors","clearErrors","getErrors","getFieldErrors","inputs","getGlobalErrors","showErrors","fieldErrors","globalErrors","errorCount","$scrollTo","ensureFieldPostBoxIsVisible","errorMessage","animate","offset","onChangeStatus","prevValue","validate","failure","submit","Event","valid","getValidator","validator","form","$spinner","findSubmitWrap","submitFormDebounced","acf_postbox","ensureInvalidFieldVisibility","checkValidity","addInputEvents","onInvalid","validationMessage","onClickSubmit","onClickSave","onClickSubmitGutenberg","$notice","onSubmitPost","onSubmit","isDefaultPrevented","allowSubmit","gutenbergValidation","customizeEditor","editorSelect","notices","savePost","useValidation","lastPostStatus","postStatus","_this","_args","Promise","resolve","reject","isAutosave","isPreview","unlockPostSaving","createErrorNotice","isDismissible","editPost","lockPostSaving","then","err"],"sourceRoot":""} \ No newline at end of file +{"version":3,"file":"acf-input.js","mappings":"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","sources":["webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/js/_acf-compatibility.js","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/js/_acf-condition-types.js","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/js/_acf-condition.js","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/js/_acf-conditions.js","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/js/_acf-field-accordion.js","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/js/_acf-field-button-group.js","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/js/_acf-field-checkbox.js","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/js/_acf-field-color-picker.js","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/js/_acf-field-date-picker.js","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/js/_acf-field-date-time-picker.js","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/js/_acf-field-file.js","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/js/_acf-field-google-map.js","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/js/_acf-field-image.js","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/js/_acf-field-link.js","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/js/_acf-field-oembed.js","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/js/_acf-field-page-link.js","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/js/_acf-field-post-object.js","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/js/_acf-field-radio.js","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/js/_acf-field-range.js","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/js/_acf-field-relationship.js","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/js/_acf-field-select.js","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/js/_acf-field-tab.js","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/js/_acf-field-taxonomy.js","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/js/_acf-field-time-picker.js","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/js/_acf-field-true-false.js","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/js/_acf-field-url.js","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/js/_acf-field-user.js","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/js/_acf-field-wysiwyg.js","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/js/_acf-field.js","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/js/_acf-fields.js","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/js/_acf-helpers.js","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/js/_acf-media.js","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/js/_acf-postbox.js","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/js/_acf-screen.js","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/js/_acf-select2.js","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/js/_acf-tinymce.js","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/js/_acf-unload.js","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/js/_acf-validation.js","webpack://advanced-custom-fields-pro/webpack/bootstrap","webpack://advanced-custom-fields-pro/webpack/runtime/compat get default export","webpack://advanced-custom-fields-pro/webpack/runtime/define property getters","webpack://advanced-custom-fields-pro/webpack/runtime/hasOwnProperty shorthand","webpack://advanced-custom-fields-pro/webpack/runtime/make namespace object","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/js/acf-input.js"],"sourcesContent":["( function ( $, undefined ) {\n\t/**\n\t * acf.newCompatibility\n\t *\n\t * Inserts a new __proto__ object compatibility layer\n\t *\n\t * @date\t15/2/18\n\t * @since\t5.6.9\n\t *\n\t * @param\tobject instance The object to modify.\n\t * @param\tobject compatibilty Optional. The compatibilty layer.\n\t * @return\tobject compatibilty\n\t */\n\n\tacf.newCompatibility = function ( instance, compatibilty ) {\n\t\t// defaults\n\t\tcompatibilty = compatibilty || {};\n\n\t\t// inherit __proto_-\n\t\tcompatibilty.__proto__ = instance.__proto__;\n\n\t\t// inject\n\t\tinstance.__proto__ = compatibilty;\n\n\t\t// reference\n\t\tinstance.compatibility = compatibilty;\n\n\t\t// return\n\t\treturn compatibilty;\n\t};\n\n\t/**\n\t * acf.getCompatibility\n\t *\n\t * Returns the compatibility layer for a given instance\n\t *\n\t * @date\t13/3/18\n\t * @since\t5.6.9\n\t *\n\t * @param\tobject\t\tinstance\t\tThe object to look in.\n\t * @return\tobject|null\tcompatibility\tThe compatibility object or null on failure.\n\t */\n\n\tacf.getCompatibility = function ( instance ) {\n\t\treturn instance.compatibility || null;\n\t};\n\n\t/**\n\t * acf (compatibility)\n\t *\n\t * Compatibility layer for the acf object\n\t *\n\t * @date\t15/2/18\n\t * @since\t5.6.9\n\t *\n\t * @param\tvoid\n\t * @return\tvoid\n\t */\n\n\tvar _acf = acf.newCompatibility( acf, {\n\t\t// storage\n\t\tl10n: {},\n\t\to: {},\n\t\tfields: {},\n\n\t\t// changed function names\n\t\tupdate: acf.set,\n\t\tadd_action: acf.addAction,\n\t\tremove_action: acf.removeAction,\n\t\tdo_action: acf.doAction,\n\t\tadd_filter: acf.addFilter,\n\t\tremove_filter: acf.removeFilter,\n\t\tapply_filters: acf.applyFilters,\n\t\tparse_args: acf.parseArgs,\n\t\tdisable_el: acf.disable,\n\t\tdisable_form: acf.disable,\n\t\tenable_el: acf.enable,\n\t\tenable_form: acf.enable,\n\t\tupdate_user_setting: acf.updateUserSetting,\n\t\tprepare_for_ajax: acf.prepareForAjax,\n\t\tis_ajax_success: acf.isAjaxSuccess,\n\t\tremove_el: acf.remove,\n\t\tremove_tr: acf.remove,\n\t\tstr_replace: acf.strReplace,\n\t\trender_select: acf.renderSelect,\n\t\tget_uniqid: acf.uniqid,\n\t\tserialize_form: acf.serialize,\n\t\tesc_html: acf.strEscape,\n\t\tstr_sanitize: acf.strSanitize,\n\t} );\n\n\t_acf._e = function ( k1, k2 ) {\n\t\t// defaults\n\t\tk1 = k1 || '';\n\t\tk2 = k2 || '';\n\n\t\t// compability\n\t\tvar compatKey = k2 ? k1 + '.' + k2 : k1;\n\t\tvar compats = {\n\t\t\t'image.select': 'Select Image',\n\t\t\t'image.edit': 'Edit Image',\n\t\t\t'image.update': 'Update Image',\n\t\t};\n\t\tif ( compats[ compatKey ] ) {\n\t\t\treturn acf.__( compats[ compatKey ] );\n\t\t}\n\n\t\t// try k1\n\t\tvar string = this.l10n[ k1 ] || '';\n\n\t\t// try k2\n\t\tif ( k2 ) {\n\t\t\tstring = string[ k2 ] || '';\n\t\t}\n\n\t\t// return\n\t\treturn string;\n\t};\n\n\t_acf.get_selector = function ( s ) {\n\t\t// vars\n\t\tvar selector = '.acf-field';\n\n\t\t// bail early if no search\n\t\tif ( ! s ) {\n\t\t\treturn selector;\n\t\t}\n\n\t\t// compatibility with object\n\t\tif ( $.isPlainObject( s ) ) {\n\t\t\tif ( $.isEmptyObject( s ) ) {\n\t\t\t\treturn selector;\n\t\t\t} else {\n\t\t\t\tfor ( var k in s ) {\n\t\t\t\t\ts = s[ k ];\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// append\n\t\tselector += '-' + s;\n\n\t\t// replace underscores (split/join replaces all and is faster than regex!)\n\t\tselector = acf.strReplace( '_', '-', selector );\n\n\t\t// remove potential double up\n\t\tselector = acf.strReplace( 'field-field-', 'field-', selector );\n\n\t\t// return\n\t\treturn selector;\n\t};\n\n\t_acf.get_fields = function ( s, $el, all ) {\n\t\t// args\n\t\tvar args = {\n\t\t\tis: s || '',\n\t\t\tparent: $el || false,\n\t\t\tsuppressFilters: all || false,\n\t\t};\n\n\t\t// change 'field_123' to '.acf-field-123'\n\t\tif ( args.is ) {\n\t\t\targs.is = this.get_selector( args.is );\n\t\t}\n\n\t\t// return\n\t\treturn acf.findFields( args );\n\t};\n\n\t_acf.get_field = function ( s, $el ) {\n\t\t// get fields\n\t\tvar $fields = this.get_fields.apply( this, arguments );\n\n\t\t// return\n\t\tif ( $fields.length ) {\n\t\t\treturn $fields.first();\n\t\t} else {\n\t\t\treturn false;\n\t\t}\n\t};\n\n\t_acf.get_closest_field = function ( $el, s ) {\n\t\treturn $el.closest( this.get_selector( s ) );\n\t};\n\n\t_acf.get_field_wrap = function ( $el ) {\n\t\treturn $el.closest( this.get_selector() );\n\t};\n\n\t_acf.get_field_key = function ( $field ) {\n\t\treturn $field.data( 'key' );\n\t};\n\n\t_acf.get_field_type = function ( $field ) {\n\t\treturn $field.data( 'type' );\n\t};\n\n\t_acf.get_data = function ( $el, defaults ) {\n\t\treturn acf.parseArgs( $el.data(), defaults );\n\t};\n\n\t_acf.maybe_get = function ( obj, key, value ) {\n\t\t// default\n\t\tif ( value === undefined ) {\n\t\t\tvalue = null;\n\t\t}\n\n\t\t// get keys\n\t\tkeys = String( key ).split( '.' );\n\n\t\t// acf.isget\n\t\tfor ( var i = 0; i < keys.length; i++ ) {\n\t\t\tif ( ! obj.hasOwnProperty( keys[ i ] ) ) {\n\t\t\t\treturn value;\n\t\t\t}\n\t\t\tobj = obj[ keys[ i ] ];\n\t\t}\n\t\treturn obj;\n\t};\n\n\t/**\n\t * hooks\n\t *\n\t * Modify add_action and add_filter functions to add compatibility with changed $field parameter\n\t * Using the acf.add_action() or acf.add_filter() functions will interpret new field parameters as jQuery $field\n\t *\n\t * @date\t12/5/18\n\t * @since\t5.6.9\n\t *\n\t * @param\tvoid\n\t * @return\tvoid\n\t */\n\n\tvar compatibleArgument = function ( arg ) {\n\t\treturn arg instanceof acf.Field ? arg.$el : arg;\n\t};\n\n\tvar compatibleArguments = function ( args ) {\n\t\treturn acf.arrayArgs( args ).map( compatibleArgument );\n\t};\n\n\tvar compatibleCallback = function ( origCallback ) {\n\t\treturn function () {\n\t\t\t// convert to compatible arguments\n\t\t\tif ( arguments.length ) {\n\t\t\t\tvar args = compatibleArguments( arguments );\n\n\t\t\t\t// add default argument for 'ready', 'append' and 'load' events\n\t\t\t} else {\n\t\t\t\tvar args = [ $( document ) ];\n\t\t\t}\n\n\t\t\t// return\n\t\t\treturn origCallback.apply( this, args );\n\t\t};\n\t};\n\n\t_acf.add_action = function ( action, callback, priority, context ) {\n\t\t// handle multiple actions\n\t\tvar actions = action.split( ' ' );\n\t\tvar length = actions.length;\n\t\tif ( length > 1 ) {\n\t\t\tfor ( var i = 0; i < length; i++ ) {\n\t\t\t\taction = actions[ i ];\n\t\t\t\t_acf.add_action.apply( this, arguments );\n\t\t\t}\n\t\t\treturn this;\n\t\t}\n\n\t\t// single\n\t\tvar callback = compatibleCallback( callback );\n\t\treturn acf.addAction.apply( this, arguments );\n\t};\n\n\t_acf.add_filter = function ( action, callback, priority, context ) {\n\t\tvar callback = compatibleCallback( callback );\n\t\treturn acf.addFilter.apply( this, arguments );\n\t};\n\n\t/*\n\t * acf.model\n\t *\n\t * This model acts as a scafold for action.event driven modules\n\t *\n\t * @type\tobject\n\t * @date\t8/09/2014\n\t * @since\t5.0.0\n\t *\n\t * @param\t(object)\n\t * @return\t(object)\n\t */\n\n\t_acf.model = {\n\t\tactions: {},\n\t\tfilters: {},\n\t\tevents: {},\n\t\textend: function ( args ) {\n\t\t\t// extend\n\t\t\tvar model = $.extend( {}, this, args );\n\n\t\t\t// setup actions\n\t\t\t$.each( model.actions, function ( name, callback ) {\n\t\t\t\tmodel._add_action( name, callback );\n\t\t\t} );\n\n\t\t\t// setup filters\n\t\t\t$.each( model.filters, function ( name, callback ) {\n\t\t\t\tmodel._add_filter( name, callback );\n\t\t\t} );\n\n\t\t\t// setup events\n\t\t\t$.each( model.events, function ( name, callback ) {\n\t\t\t\tmodel._add_event( name, callback );\n\t\t\t} );\n\n\t\t\t// return\n\t\t\treturn model;\n\t\t},\n\n\t\t_add_action: function ( name, callback ) {\n\t\t\t// split\n\t\t\tvar model = this,\n\t\t\t\tdata = name.split( ' ' );\n\n\t\t\t// add missing priority\n\t\t\tvar name = data[ 0 ] || '',\n\t\t\t\tpriority = data[ 1 ] || 10;\n\n\t\t\t// add action\n\t\t\tacf.add_action( name, model[ callback ], priority, model );\n\t\t},\n\n\t\t_add_filter: function ( name, callback ) {\n\t\t\t// split\n\t\t\tvar model = this,\n\t\t\t\tdata = name.split( ' ' );\n\n\t\t\t// add missing priority\n\t\t\tvar name = data[ 0 ] || '',\n\t\t\t\tpriority = data[ 1 ] || 10;\n\n\t\t\t// add action\n\t\t\tacf.add_filter( name, model[ callback ], priority, model );\n\t\t},\n\n\t\t_add_event: function ( name, callback ) {\n\t\t\t// vars\n\t\t\tvar model = this,\n\t\t\t\ti = name.indexOf( ' ' ),\n\t\t\t\tevent = i > 0 ? name.substr( 0, i ) : name,\n\t\t\t\tselector = i > 0 ? name.substr( i + 1 ) : '';\n\n\t\t\t// event\n\t\t\tvar fn = function ( e ) {\n\t\t\t\t// append $el to event object\n\t\t\t\te.$el = $( this );\n\n\t\t\t\t// append $field to event object (used in field group)\n\t\t\t\tif ( acf.field_group ) {\n\t\t\t\t\te.$field = e.$el.closest( '.acf-field-object' );\n\t\t\t\t}\n\n\t\t\t\t// event\n\t\t\t\tif ( typeof model.event === 'function' ) {\n\t\t\t\t\te = model.event( e );\n\t\t\t\t}\n\n\t\t\t\t// callback\n\t\t\t\tmodel[ callback ].apply( model, arguments );\n\t\t\t};\n\n\t\t\t// add event\n\t\t\tif ( selector ) {\n\t\t\t\t$( document ).on( event, selector, fn );\n\t\t\t} else {\n\t\t\t\t$( document ).on( event, fn );\n\t\t\t}\n\t\t},\n\n\t\tget: function ( name, value ) {\n\t\t\t// defaults\n\t\t\tvalue = value || null;\n\n\t\t\t// get\n\t\t\tif ( typeof this[ name ] !== 'undefined' ) {\n\t\t\t\tvalue = this[ name ];\n\t\t\t}\n\n\t\t\t// return\n\t\t\treturn value;\n\t\t},\n\n\t\tset: function ( name, value ) {\n\t\t\t// set\n\t\t\tthis[ name ] = value;\n\n\t\t\t// function for 3rd party\n\t\t\tif ( typeof this[ '_set_' + name ] === 'function' ) {\n\t\t\t\tthis[ '_set_' + name ].apply( this );\n\t\t\t}\n\n\t\t\t// return for chaining\n\t\t\treturn this;\n\t\t},\n\t};\n\n\t/*\n\t * field\n\t *\n\t * This model sets up many of the field's interactions\n\t *\n\t * @type\tfunction\n\t * @date\t21/02/2014\n\t * @since\t3.5.1\n\t *\n\t * @param\tn/a\n\t * @return\tn/a\n\t */\n\n\t_acf.field = acf.model.extend( {\n\t\ttype: '',\n\t\to: {},\n\t\t$field: null,\n\t\t_add_action: function ( name, callback ) {\n\t\t\t// vars\n\t\t\tvar model = this;\n\n\t\t\t// update name\n\t\t\tname = name + '_field/type=' + model.type;\n\n\t\t\t// add action\n\t\t\tacf.add_action( name, function ( $field ) {\n\t\t\t\t// focus\n\t\t\t\tmodel.set( '$field', $field );\n\n\t\t\t\t// callback\n\t\t\t\tmodel[ callback ].apply( model, arguments );\n\t\t\t} );\n\t\t},\n\n\t\t_add_filter: function ( name, callback ) {\n\t\t\t// vars\n\t\t\tvar model = this;\n\n\t\t\t// update name\n\t\t\tname = name + '_field/type=' + model.type;\n\n\t\t\t// add action\n\t\t\tacf.add_filter( name, function ( $field ) {\n\t\t\t\t// focus\n\t\t\t\tmodel.set( '$field', $field );\n\n\t\t\t\t// callback\n\t\t\t\tmodel[ callback ].apply( model, arguments );\n\t\t\t} );\n\t\t},\n\n\t\t_add_event: function ( name, callback ) {\n\t\t\t// vars\n\t\t\tvar model = this,\n\t\t\t\tevent = name.substr( 0, name.indexOf( ' ' ) ),\n\t\t\t\tselector = name.substr( name.indexOf( ' ' ) + 1 ),\n\t\t\t\tcontext = acf.get_selector( model.type );\n\n\t\t\t// add event\n\t\t\t$( document ).on( event, context + ' ' + selector, function ( e ) {\n\t\t\t\t// vars\n\t\t\t\tvar $el = $( this );\n\t\t\t\tvar $field = acf.get_closest_field( $el, model.type );\n\n\t\t\t\t// bail early if no field\n\t\t\t\tif ( ! $field.length ) return;\n\n\t\t\t\t// focus\n\t\t\t\tif ( ! $field.is( model.$field ) ) {\n\t\t\t\t\tmodel.set( '$field', $field );\n\t\t\t\t}\n\n\t\t\t\t// append to event\n\t\t\t\te.$el = $el;\n\t\t\t\te.$field = $field;\n\n\t\t\t\t// callback\n\t\t\t\tmodel[ callback ].apply( model, [ e ] );\n\t\t\t} );\n\t\t},\n\n\t\t_set_$field: function () {\n\t\t\t// callback\n\t\t\tif ( typeof this.focus === 'function' ) {\n\t\t\t\tthis.focus();\n\t\t\t}\n\t\t},\n\n\t\t// depreciated\n\t\tdoFocus: function ( $field ) {\n\t\t\treturn this.set( '$field', $field );\n\t\t},\n\t} );\n\n\t/**\n\t * validation\n\t *\n\t * description\n\t *\n\t * @date\t15/2/18\n\t * @since\t5.6.9\n\t *\n\t * @param\ttype $var Description. Default.\n\t * @return\ttype Description.\n\t */\n\n\tvar _validation = acf.newCompatibility( acf.validation, {\n\t\tremove_error: function ( $field ) {\n\t\t\tacf.getField( $field ).removeError();\n\t\t},\n\t\tadd_warning: function ( $field, message ) {\n\t\t\tacf.getField( $field ).showNotice( {\n\t\t\t\ttext: message,\n\t\t\t\ttype: 'warning',\n\t\t\t\ttimeout: 1000,\n\t\t\t} );\n\t\t},\n\t\tfetch: acf.validateForm,\n\t\tenableSubmit: acf.enableSubmit,\n\t\tdisableSubmit: acf.disableSubmit,\n\t\tshowSpinner: acf.showSpinner,\n\t\thideSpinner: acf.hideSpinner,\n\t\tunlockForm: acf.unlockForm,\n\t\tlockForm: acf.lockForm,\n\t} );\n\n\t/**\n\t * tooltip\n\t *\n\t * description\n\t *\n\t * @date\t15/2/18\n\t * @since\t5.6.9\n\t *\n\t * @param\ttype $var Description. Default.\n\t * @return\ttype Description.\n\t */\n\n\t_acf.tooltip = {\n\t\ttooltip: function ( text, $el ) {\n\t\t\tvar tooltip = acf.newTooltip( {\n\t\t\t\ttext: text,\n\t\t\t\ttarget: $el,\n\t\t\t} );\n\n\t\t\t// return\n\t\t\treturn tooltip.$el;\n\t\t},\n\n\t\ttemp: function ( text, $el ) {\n\t\t\tvar tooltip = acf.newTooltip( {\n\t\t\t\ttext: text,\n\t\t\t\ttarget: $el,\n\t\t\t\ttimeout: 250,\n\t\t\t} );\n\t\t},\n\n\t\tconfirm: function ( $el, callback, text, button_y, button_n ) {\n\t\t\tvar tooltip = acf.newTooltip( {\n\t\t\t\tconfirm: true,\n\t\t\t\ttext: text,\n\t\t\t\ttarget: $el,\n\t\t\t\tconfirm: function () {\n\t\t\t\t\tcallback( true );\n\t\t\t\t},\n\t\t\t\tcancel: function () {\n\t\t\t\t\tcallback( false );\n\t\t\t\t},\n\t\t\t} );\n\t\t},\n\n\t\tconfirm_remove: function ( $el, callback ) {\n\t\t\tvar tooltip = acf.newTooltip( {\n\t\t\t\tconfirmRemove: true,\n\t\t\t\ttarget: $el,\n\t\t\t\tconfirm: function () {\n\t\t\t\t\tcallback( true );\n\t\t\t\t},\n\t\t\t\tcancel: function () {\n\t\t\t\t\tcallback( false );\n\t\t\t\t},\n\t\t\t} );\n\t\t},\n\t};\n\n\t/**\n\t * tooltip\n\t *\n\t * description\n\t *\n\t * @date\t15/2/18\n\t * @since\t5.6.9\n\t *\n\t * @param\ttype $var Description. Default.\n\t * @return\ttype Description.\n\t */\n\n\t_acf.media = new acf.Model( {\n\t\tactiveFrame: false,\n\t\tactions: {\n\t\t\tnew_media_popup: 'onNewMediaPopup',\n\t\t},\n\n\t\tframe: function () {\n\t\t\treturn this.activeFrame;\n\t\t},\n\n\t\tonNewMediaPopup: function ( popup ) {\n\t\t\tthis.activeFrame = popup.frame;\n\t\t},\n\n\t\tpopup: function ( props ) {\n\t\t\t// update props\n\t\t\tif ( props.mime_types ) {\n\t\t\t\tprops.allowedTypes = props.mime_types;\n\t\t\t}\n\t\t\tif ( props.id ) {\n\t\t\t\tprops.attachment = props.id;\n\t\t\t}\n\n\t\t\t// new\n\t\t\tvar popup = acf.newMediaPopup( props );\n\n\t\t\t// append\n\t\t\t/*\n\t\t\tif( props.selected ) {\n\t\t\t\tpopup.selected = props.selected;\n\t\t\t}\n*/\n\n\t\t\t// return\n\t\t\treturn popup.frame;\n\t\t},\n\t} );\n\n\t/**\n\t * Select2\n\t *\n\t * description\n\t *\n\t * @date\t11/6/18\n\t * @since\t5.6.9\n\t *\n\t * @param\ttype $var Description. Default.\n\t * @return\ttype Description.\n\t */\n\n\t_acf.select2 = {\n\t\tinit: function ( $select, args, $field ) {\n\t\t\t// compatible args\n\t\t\tif ( args.allow_null ) {\n\t\t\t\targs.allowNull = args.allow_null;\n\t\t\t}\n\t\t\tif ( args.ajax_action ) {\n\t\t\t\targs.ajaxAction = args.ajax_action;\n\t\t\t}\n\t\t\tif ( $field ) {\n\t\t\t\targs.field = acf.getField( $field );\n\t\t\t}\n\n\t\t\t// return\n\t\t\treturn acf.newSelect2( $select, args );\n\t\t},\n\n\t\tdestroy: function ( $select ) {\n\t\t\treturn acf.getInstance( $select ).destroy();\n\t\t},\n\t};\n\n\t/**\n\t * postbox\n\t *\n\t * description\n\t *\n\t * @date\t11/6/18\n\t * @since\t5.6.9\n\t *\n\t * @param\ttype $var Description. Default.\n\t * @return\ttype Description.\n\t */\n\n\t_acf.postbox = {\n\t\trender: function ( args ) {\n\t\t\t// compatible args\n\t\t\tif ( args.edit_url ) {\n\t\t\t\targs.editLink = args.edit_url;\n\t\t\t}\n\t\t\tif ( args.edit_title ) {\n\t\t\t\targs.editTitle = args.edit_title;\n\t\t\t}\n\n\t\t\t// return\n\t\t\treturn acf.newPostbox( args );\n\t\t},\n\t};\n\n\t/**\n\t * acf.screen\n\t *\n\t * description\n\t *\n\t * @date\t11/6/18\n\t * @since\t5.6.9\n\t *\n\t * @param\ttype $var Description. Default.\n\t * @return\ttype Description.\n\t */\n\n\tacf.newCompatibility( acf.screen, {\n\t\tupdate: function () {\n\t\t\treturn this.set.apply( this, arguments );\n\t\t},\n\t\tfetch: acf.screen.check,\n\t} );\n\t_acf.ajax = acf.screen;\n} )( jQuery );\n","( function ( $, undefined ) {\n\tvar __ = acf.__;\n\n\tvar parseString = function ( val ) {\n\t\treturn val ? '' + val : '';\n\t};\n\n\tvar isEqualTo = function ( v1, v2 ) {\n\t\treturn (\n\t\t\tparseString( v1 ).toLowerCase() === parseString( v2 ).toLowerCase()\n\t\t);\n\t};\n\n\tvar isEqualToNumber = function ( v1, v2 ) {\n\t\treturn parseFloat( v1 ) === parseFloat( v2 );\n\t};\n\n\tvar isGreaterThan = function ( v1, v2 ) {\n\t\treturn parseFloat( v1 ) > parseFloat( v2 );\n\t};\n\n\tvar isLessThan = function ( v1, v2 ) {\n\t\treturn parseFloat( v1 ) < parseFloat( v2 );\n\t};\n\n\tvar inArray = function ( v1, array ) {\n\t\t// cast all values as string\n\t\tarray = array.map( function ( v2 ) {\n\t\t\treturn parseString( v2 );\n\t\t} );\n\n\t\treturn array.indexOf( v1 ) > -1;\n\t};\n\n\tvar containsString = function ( haystack, needle ) {\n\t\treturn parseString( haystack ).indexOf( parseString( needle ) ) > -1;\n\t};\n\n\tvar matchesPattern = function ( v1, pattern ) {\n\t\tvar regexp = new RegExp( parseString( pattern ), 'gi' );\n\t\treturn parseString( v1 ).match( regexp );\n\t};\n\n\t/**\n\t * hasValue\n\t *\n\t * description\n\t *\n\t * @date\t1/2/18\n\t * @since\t5.6.5\n\t *\n\t * @param\tvoid\n\t * @return\tvoid\n\t */\n\n\tvar HasValue = acf.Condition.extend( {\n\t\ttype: 'hasValue',\n\t\toperator: '!=empty',\n\t\tlabel: __( 'Has any value' ),\n\t\tfieldTypes: [\n\t\t\t'text',\n\t\t\t'textarea',\n\t\t\t'number',\n\t\t\t'range',\n\t\t\t'email',\n\t\t\t'url',\n\t\t\t'password',\n\t\t\t'image',\n\t\t\t'file',\n\t\t\t'wysiwyg',\n\t\t\t'oembed',\n\t\t\t'select',\n\t\t\t'checkbox',\n\t\t\t'radio',\n\t\t\t'button_group',\n\t\t\t'link',\n\t\t\t'post_object',\n\t\t\t'page_link',\n\t\t\t'relationship',\n\t\t\t'taxonomy',\n\t\t\t'user',\n\t\t\t'google_map',\n\t\t\t'date_picker',\n\t\t\t'date_time_picker',\n\t\t\t'time_picker',\n\t\t\t'color_picker',\n\t\t],\n\t\tmatch: function ( rule, field ) {\n\t\t\tlet val = field.val();\n\t\t\tif ( val instanceof Array ) {\n\t\t\t\tval = val.length;\n\t\t\t}\n\t\t\treturn val ? true : false;\n\t\t},\n\t\tchoices: function ( fieldObject ) {\n\t\t\treturn '';\n\t\t},\n\t} );\n\n\tacf.registerConditionType( HasValue );\n\n\t/**\n\t * hasValue\n\t *\n\t * description\n\t *\n\t * @date\t1/2/18\n\t * @since\t5.6.5\n\t *\n\t * @param\tvoid\n\t * @return\tvoid\n\t */\n\n\tvar HasNoValue = HasValue.extend( {\n\t\ttype: 'hasNoValue',\n\t\toperator: '==empty',\n\t\tlabel: __( 'Has no value' ),\n\t\tmatch: function ( rule, field ) {\n\t\t\treturn ! HasValue.prototype.match.apply( this, arguments );\n\t\t},\n\t} );\n\n\tacf.registerConditionType( HasNoValue );\n\n\t/**\n\t * EqualTo\n\t *\n\t * description\n\t *\n\t * @date\t1/2/18\n\t * @since\t5.6.5\n\t *\n\t * @param\tvoid\n\t * @return\tvoid\n\t */\n\n\tvar EqualTo = acf.Condition.extend( {\n\t\ttype: 'equalTo',\n\t\toperator: '==',\n\t\tlabel: __( 'Value is equal to' ),\n\t\tfieldTypes: [\n\t\t\t'text',\n\t\t\t'textarea',\n\t\t\t'number',\n\t\t\t'range',\n\t\t\t'email',\n\t\t\t'url',\n\t\t\t'password',\n\t\t],\n\t\tmatch: function ( rule, field ) {\n\t\t\tif ( acf.isNumeric( rule.value ) ) {\n\t\t\t\treturn isEqualToNumber( rule.value, field.val() );\n\t\t\t} else {\n\t\t\t\treturn isEqualTo( rule.value, field.val() );\n\t\t\t}\n\t\t},\n\t\tchoices: function ( fieldObject ) {\n\t\t\treturn '';\n\t\t},\n\t} );\n\n\tacf.registerConditionType( EqualTo );\n\n\t/**\n\t * NotEqualTo\n\t *\n\t * description\n\t *\n\t * @date\t1/2/18\n\t * @since\t5.6.5\n\t *\n\t * @param\tvoid\n\t * @return\tvoid\n\t */\n\n\tvar NotEqualTo = EqualTo.extend( {\n\t\ttype: 'notEqualTo',\n\t\toperator: '!=',\n\t\tlabel: __( 'Value is not equal to' ),\n\t\tmatch: function ( rule, field ) {\n\t\t\treturn ! EqualTo.prototype.match.apply( this, arguments );\n\t\t},\n\t} );\n\n\tacf.registerConditionType( NotEqualTo );\n\n\t/**\n\t * PatternMatch\n\t *\n\t * description\n\t *\n\t * @date\t1/2/18\n\t * @since\t5.6.5\n\t *\n\t * @param\tvoid\n\t * @return\tvoid\n\t */\n\n\tvar PatternMatch = acf.Condition.extend( {\n\t\ttype: 'patternMatch',\n\t\toperator: '==pattern',\n\t\tlabel: __( 'Value matches pattern' ),\n\t\tfieldTypes: [\n\t\t\t'text',\n\t\t\t'textarea',\n\t\t\t'email',\n\t\t\t'url',\n\t\t\t'password',\n\t\t\t'wysiwyg',\n\t\t],\n\t\tmatch: function ( rule, field ) {\n\t\t\treturn matchesPattern( field.val(), rule.value );\n\t\t},\n\t\tchoices: function ( fieldObject ) {\n\t\t\treturn '';\n\t\t},\n\t} );\n\n\tacf.registerConditionType( PatternMatch );\n\n\t/**\n\t * Contains\n\t *\n\t * description\n\t *\n\t * @date\t1/2/18\n\t * @since\t5.6.5\n\t *\n\t * @param\tvoid\n\t * @return\tvoid\n\t */\n\n\tvar Contains = acf.Condition.extend( {\n\t\ttype: 'contains',\n\t\toperator: '==contains',\n\t\tlabel: __( 'Value contains' ),\n\t\tfieldTypes: [\n\t\t\t'text',\n\t\t\t'textarea',\n\t\t\t'number',\n\t\t\t'email',\n\t\t\t'url',\n\t\t\t'password',\n\t\t\t'wysiwyg',\n\t\t\t'oembed',\n\t\t\t'select',\n\t\t],\n\t\tmatch: function ( rule, field ) {\n\t\t\treturn containsString( field.val(), rule.value );\n\t\t},\n\t\tchoices: function ( fieldObject ) {\n\t\t\treturn '';\n\t\t},\n\t} );\n\n\tacf.registerConditionType( Contains );\n\n\t/**\n\t * TrueFalseEqualTo\n\t *\n\t * description\n\t *\n\t * @date\t1/2/18\n\t * @since\t5.6.5\n\t *\n\t * @param\tvoid\n\t * @return\tvoid\n\t */\n\n\tvar TrueFalseEqualTo = EqualTo.extend( {\n\t\ttype: 'trueFalseEqualTo',\n\t\tchoiceType: 'select',\n\t\tfieldTypes: [ 'true_false' ],\n\t\tchoices: function ( field ) {\n\t\t\treturn [\n\t\t\t\t{\n\t\t\t\t\tid: 1,\n\t\t\t\t\ttext: __( 'Checked' ),\n\t\t\t\t},\n\t\t\t];\n\t\t},\n\t} );\n\n\tacf.registerConditionType( TrueFalseEqualTo );\n\n\t/**\n\t * TrueFalseNotEqualTo\n\t *\n\t * description\n\t *\n\t * @date\t1/2/18\n\t * @since\t5.6.5\n\t *\n\t * @param\tvoid\n\t * @return\tvoid\n\t */\n\n\tvar TrueFalseNotEqualTo = NotEqualTo.extend( {\n\t\ttype: 'trueFalseNotEqualTo',\n\t\tchoiceType: 'select',\n\t\tfieldTypes: [ 'true_false' ],\n\t\tchoices: function ( field ) {\n\t\t\treturn [\n\t\t\t\t{\n\t\t\t\t\tid: 1,\n\t\t\t\t\ttext: __( 'Checked' ),\n\t\t\t\t},\n\t\t\t];\n\t\t},\n\t} );\n\n\tacf.registerConditionType( TrueFalseNotEqualTo );\n\n\t/**\n\t * SelectEqualTo\n\t *\n\t * description\n\t *\n\t * @date\t1/2/18\n\t * @since\t5.6.5\n\t *\n\t * @param\tvoid\n\t * @return\tvoid\n\t */\n\n\tvar SelectEqualTo = acf.Condition.extend( {\n\t\ttype: 'selectEqualTo',\n\t\toperator: '==',\n\t\tlabel: __( 'Value is equal to' ),\n\t\tfieldTypes: [ 'select', 'checkbox', 'radio', 'button_group' ],\n\t\tmatch: function ( rule, field ) {\n\t\t\tvar val = field.val();\n\t\t\tif ( val instanceof Array ) {\n\t\t\t\treturn inArray( rule.value, val );\n\t\t\t} else {\n\t\t\t\treturn isEqualTo( rule.value, val );\n\t\t\t}\n\t\t},\n\t\tchoices: function ( fieldObject ) {\n\t\t\t// vars\n\t\t\tvar choices = [];\n\t\t\tvar lines = fieldObject\n\t\t\t\t.$setting( 'choices textarea' )\n\t\t\t\t.val()\n\t\t\t\t.split( '\\n' );\n\n\t\t\t// allow null\n\t\t\tif ( fieldObject.$input( 'allow_null' ).prop( 'checked' ) ) {\n\t\t\t\tchoices.push( {\n\t\t\t\t\tid: '',\n\t\t\t\t\ttext: __( 'Null' ),\n\t\t\t\t} );\n\t\t\t}\n\n\t\t\t// loop\n\t\t\tlines.map( function ( line ) {\n\t\t\t\t// split\n\t\t\t\tline = line.split( ':' );\n\n\t\t\t\t// default label to value\n\t\t\t\tline[ 1 ] = line[ 1 ] || line[ 0 ];\n\n\t\t\t\t// append\n\t\t\t\tchoices.push( {\n\t\t\t\t\tid: line[ 0 ].trim(),\n\t\t\t\t\ttext: line[ 1 ].trim(),\n\t\t\t\t} );\n\t\t\t} );\n\n\t\t\t// return\n\t\t\treturn choices;\n\t\t},\n\t} );\n\n\tacf.registerConditionType( SelectEqualTo );\n\n\t/**\n\t * SelectNotEqualTo\n\t *\n\t * description\n\t *\n\t * @date\t1/2/18\n\t * @since\t5.6.5\n\t *\n\t * @param\tvoid\n\t * @return\tvoid\n\t */\n\n\tvar SelectNotEqualTo = SelectEqualTo.extend( {\n\t\ttype: 'selectNotEqualTo',\n\t\toperator: '!=',\n\t\tlabel: __( 'Value is not equal to' ),\n\t\tmatch: function ( rule, field ) {\n\t\t\treturn ! SelectEqualTo.prototype.match.apply( this, arguments );\n\t\t},\n\t} );\n\n\tacf.registerConditionType( SelectNotEqualTo );\n\n\t/**\n\t * GreaterThan\n\t *\n\t * description\n\t *\n\t * @date\t1/2/18\n\t * @since\t5.6.5\n\t *\n\t * @param\tvoid\n\t * @return\tvoid\n\t */\n\n\tvar GreaterThan = acf.Condition.extend( {\n\t\ttype: 'greaterThan',\n\t\toperator: '>',\n\t\tlabel: __( 'Value is greater than' ),\n\t\tfieldTypes: [ 'number', 'range' ],\n\t\tmatch: function ( rule, field ) {\n\t\t\tvar val = field.val();\n\t\t\tif ( val instanceof Array ) {\n\t\t\t\tval = val.length;\n\t\t\t}\n\t\t\treturn isGreaterThan( val, rule.value );\n\t\t},\n\t\tchoices: function ( fieldObject ) {\n\t\t\treturn '';\n\t\t},\n\t} );\n\n\tacf.registerConditionType( GreaterThan );\n\n\t/**\n\t * LessThan\n\t *\n\t * description\n\t *\n\t * @date\t1/2/18\n\t * @since\t5.6.5\n\t *\n\t * @param\tvoid\n\t * @return\tvoid\n\t */\n\n\tvar LessThan = GreaterThan.extend( {\n\t\ttype: 'lessThan',\n\t\toperator: '<',\n\t\tlabel: __( 'Value is less than' ),\n\t\tmatch: function ( rule, field ) {\n\t\t\tvar val = field.val();\n\t\t\tif ( val instanceof Array ) {\n\t\t\t\tval = val.length;\n\t\t\t}\n\t\t\tif ( val === undefined || val === null || val === false ) {\n\t\t\t\treturn true;\n\t\t\t}\n\t\t\treturn isLessThan( val, rule.value );\n\t\t},\n\t\tchoices: function ( fieldObject ) {\n\t\t\treturn '';\n\t\t},\n\t} );\n\n\tacf.registerConditionType( LessThan );\n\n\t/**\n\t * SelectedGreaterThan\n\t *\n\t * description\n\t *\n\t * @date\t1/2/18\n\t * @since\t5.6.5\n\t *\n\t * @param\tvoid\n\t * @return\tvoid\n\t */\n\n\tvar SelectionGreaterThan = GreaterThan.extend( {\n\t\ttype: 'selectionGreaterThan',\n\t\tlabel: __( 'Selection is greater than' ),\n\t\tfieldTypes: [\n\t\t\t'checkbox',\n\t\t\t'select',\n\t\t\t'post_object',\n\t\t\t'page_link',\n\t\t\t'relationship',\n\t\t\t'taxonomy',\n\t\t\t'user',\n\t\t],\n\t} );\n\n\tacf.registerConditionType( SelectionGreaterThan );\n\n\t/**\n\t * SelectedGreaterThan\n\t *\n\t * description\n\t *\n\t * @date\t1/2/18\n\t * @since\t5.6.5\n\t *\n\t * @param\tvoid\n\t * @return\tvoid\n\t */\n\n\tvar SelectionLessThan = LessThan.extend( {\n\t\ttype: 'selectionLessThan',\n\t\tlabel: __( 'Selection is less than' ),\n\t\tfieldTypes: [\n\t\t\t'checkbox',\n\t\t\t'select',\n\t\t\t'post_object',\n\t\t\t'page_link',\n\t\t\t'relationship',\n\t\t\t'taxonomy',\n\t\t\t'user',\n\t\t],\n\t} );\n\n\tacf.registerConditionType( SelectionLessThan );\n} )( jQuery );\n","( function ( $, undefined ) {\n\t// vars\n\tvar storage = [];\n\n\t/**\n\t * acf.Condition\n\t *\n\t * description\n\t *\n\t * @date\t23/3/18\n\t * @since\t5.6.9\n\t *\n\t * @param\ttype $var Description. Default.\n\t * @return\ttype Description.\n\t */\n\n\tacf.Condition = acf.Model.extend( {\n\t\ttype: '', // used for model name\n\t\toperator: '==', // rule operator\n\t\tlabel: '', // label shown when editing fields\n\t\tchoiceType: 'input', // input, select\n\t\tfieldTypes: [], // auto connect this conditions with these field types\n\n\t\tdata: {\n\t\t\tconditions: false, // the parent instance\n\t\t\tfield: false, // the field which we query against\n\t\t\trule: {}, // the rule [field, operator, value]\n\t\t},\n\n\t\tevents: {\n\t\t\tchange: 'change',\n\t\t\tkeyup: 'change',\n\t\t\tenableField: 'change',\n\t\t\tdisableField: 'change',\n\t\t},\n\n\t\tsetup: function ( props ) {\n\t\t\t$.extend( this.data, props );\n\t\t},\n\n\t\tgetEventTarget: function ( $el, event ) {\n\t\t\treturn $el || this.get( 'field' ).$el;\n\t\t},\n\n\t\tchange: function ( e, $el ) {\n\t\t\tthis.get( 'conditions' ).change( e );\n\t\t},\n\n\t\tmatch: function ( rule, field ) {\n\t\t\treturn false;\n\t\t},\n\n\t\tcalculate: function () {\n\t\t\treturn this.match( this.get( 'rule' ), this.get( 'field' ) );\n\t\t},\n\n\t\tchoices: function ( field ) {\n\t\t\treturn '';\n\t\t},\n\t} );\n\n\t/**\n\t * acf.newCondition\n\t *\n\t * description\n\t *\n\t * @date\t1/2/18\n\t * @since\t5.6.5\n\t *\n\t * @param\ttype $var Description. Default.\n\t * @return\ttype Description.\n\t */\n\n\tacf.newCondition = function ( rule, conditions ) {\n\t\t// currently setting up conditions for fieldX, this field is the 'target'\n\t\tvar target = conditions.get( 'field' );\n\n\t\t// use the 'target' to find the 'trigger' field.\n\t\t// - this field is used to setup the conditional logic events\n\t\tvar field = target.getField( rule.field );\n\n\t\t// bail early if no target or no field (possible if field doesn't exist due to HTML error)\n\t\tif ( ! target || ! field ) {\n\t\t\treturn false;\n\t\t}\n\n\t\t// vars\n\t\tvar args = {\n\t\t\trule: rule,\n\t\t\ttarget: target,\n\t\t\tconditions: conditions,\n\t\t\tfield: field,\n\t\t};\n\n\t\t// vars\n\t\tvar fieldType = field.get( 'type' );\n\t\tvar operator = rule.operator;\n\n\t\t// get avaibale conditions\n\t\tvar conditionTypes = acf.getConditionTypes( {\n\t\t\tfieldType: fieldType,\n\t\t\toperator: operator,\n\t\t} );\n\n\t\t// instantiate\n\t\tvar model = conditionTypes[ 0 ] || acf.Condition;\n\n\t\t// instantiate\n\t\tvar condition = new model( args );\n\n\t\t// return\n\t\treturn condition;\n\t};\n\n\t/**\n\t * mid\n\t *\n\t * Calculates the model ID for a field type\n\t *\n\t * @date\t15/12/17\n\t * @since\t5.6.5\n\t *\n\t * @param\tstring type\n\t * @return\tstring\n\t */\n\n\tvar modelId = function ( type ) {\n\t\treturn acf.strPascalCase( type || '' ) + 'Condition';\n\t};\n\n\t/**\n\t * acf.registerConditionType\n\t *\n\t * description\n\t *\n\t * @date\t1/2/18\n\t * @since\t5.6.5\n\t *\n\t * @param\ttype $var Description. Default.\n\t * @return\ttype Description.\n\t */\n\n\tacf.registerConditionType = function ( model ) {\n\t\t// vars\n\t\tvar proto = model.prototype;\n\t\tvar type = proto.type;\n\t\tvar mid = modelId( type );\n\n\t\t// store model\n\t\tacf.models[ mid ] = model;\n\n\t\t// store reference\n\t\tstorage.push( type );\n\t};\n\n\t/**\n\t * acf.getConditionType\n\t *\n\t * description\n\t *\n\t * @date\t1/2/18\n\t * @since\t5.6.5\n\t *\n\t * @param\ttype $var Description. Default.\n\t * @return\ttype Description.\n\t */\n\n\tacf.getConditionType = function ( type ) {\n\t\tvar mid = modelId( type );\n\t\treturn acf.models[ mid ] || false;\n\t};\n\n\t/**\n\t * acf.registerConditionForFieldType\n\t *\n\t * description\n\t *\n\t * @date\t1/2/18\n\t * @since\t5.6.5\n\t *\n\t * @param\ttype $var Description. Default.\n\t * @return\ttype Description.\n\t */\n\n\tacf.registerConditionForFieldType = function ( conditionType, fieldType ) {\n\t\t// get model\n\t\tvar model = acf.getConditionType( conditionType );\n\n\t\t// append\n\t\tif ( model ) {\n\t\t\tmodel.prototype.fieldTypes.push( fieldType );\n\t\t}\n\t};\n\n\t/**\n\t * acf.getConditionTypes\n\t *\n\t * description\n\t *\n\t * @date\t1/2/18\n\t * @since\t5.6.5\n\t *\n\t * @param\ttype $var Description. Default.\n\t * @return\ttype Description.\n\t */\n\n\tacf.getConditionTypes = function ( args ) {\n\t\t// defaults\n\t\targs = acf.parseArgs( args, {\n\t\t\tfieldType: '',\n\t\t\toperator: '',\n\t\t} );\n\n\t\t// clonse available types\n\t\tvar types = [];\n\n\t\t// loop\n\t\tstorage.map( function ( type ) {\n\t\t\t// vars\n\t\t\tvar model = acf.getConditionType( type );\n\t\t\tvar ProtoFieldTypes = model.prototype.fieldTypes;\n\t\t\tvar ProtoOperator = model.prototype.operator;\n\n\t\t\t// check fieldType\n\t\t\tif (\n\t\t\t\targs.fieldType &&\n\t\t\t\tProtoFieldTypes.indexOf( args.fieldType ) === -1\n\t\t\t) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// check operator\n\t\t\tif ( args.operator && ProtoOperator !== args.operator ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// append\n\t\t\ttypes.push( model );\n\t\t} );\n\n\t\t// return\n\t\treturn types;\n\t};\n} )( jQuery );\n","( function ( $, undefined ) {\n\t// vars\n\tvar CONTEXT = 'conditional_logic';\n\n\t/**\n\t * conditionsManager\n\t *\n\t * description\n\t *\n\t * @date\t1/2/18\n\t * @since\t5.6.5\n\t *\n\t * @param\ttype $var Description. Default.\n\t * @return\ttype Description.\n\t */\n\n\tvar conditionsManager = new acf.Model( {\n\t\tid: 'conditionsManager',\n\n\t\tpriority: 20, // run actions later\n\n\t\tactions: {\n\t\t\tnew_field: 'onNewField',\n\t\t},\n\n\t\tonNewField: function ( field ) {\n\t\t\tif ( field.has( 'conditions' ) ) {\n\t\t\t\tfield.getConditions().render();\n\t\t\t}\n\t\t},\n\t} );\n\n\t/**\n\t * acf.Field.prototype.getField\n\t *\n\t * Finds a field that is related to another field\n\t *\n\t * @date\t1/2/18\n\t * @since\t5.6.5\n\t *\n\t * @param\ttype $var Description. Default.\n\t * @return\ttype Description.\n\t */\n\n\tvar getSiblingField = function ( field, key ) {\n\t\t// find sibling (very fast)\n\t\tvar fields = acf.getFields( {\n\t\t\tkey: key,\n\t\t\tsibling: field.$el,\n\t\t\tsuppressFilters: true,\n\t\t} );\n\n\t\t// find sibling-children (fast)\n\t\t// needed for group fields, accordions, etc\n\t\tif ( ! fields.length ) {\n\t\t\tfields = acf.getFields( {\n\t\t\t\tkey: key,\n\t\t\t\tparent: field.$el.parent(),\n\t\t\t\tsuppressFilters: true,\n\t\t\t} );\n\t\t}\n\n\t\t// Check for fields on other settings tabs (probably less fast).\n\t\tif ( ! fields.length && $( '.acf-field-settings' ).length ) {\n\t\t\tfields = acf.getFields( {\n\t\t\t\tkey: key,\n\t\t\t\tparent: field.$el.parents( '.acf-field-settings:first' ),\n\t\t\t\tsuppressFilters: true,\n\t\t\t} );\n\t\t}\n\n\t\tif ( ! fields.length && $( '#acf-basic-settings' ).length ) {\n\t\t\tfields = acf.getFields( {\n\t\t\t\tkey: key,\n\t\t\t\tparent: $( '#acf-basic-settings'),\n\t\t\t\tsuppressFilters: true,\n\t\t\t} );\n\t\t}\n\n\t\t// return\n\t\tif ( fields.length ) {\n\t\t\treturn fields[ 0 ];\n\t\t}\n\t\treturn false;\n\t};\n\n\tacf.Field.prototype.getField = function ( key ) {\n\t\t// get sibling field\n\t\tvar field = getSiblingField( this, key );\n\n\t\t// return early\n\t\tif ( field ) {\n\t\t\treturn field;\n\t\t}\n\n\t\t// move up through each parent and try again\n\t\tvar parents = this.parents();\n\t\tfor ( var i = 0; i < parents.length; i++ ) {\n\t\t\t// get sibling field\n\t\t\tfield = getSiblingField( parents[ i ], key );\n\n\t\t\t// return early\n\t\t\tif ( field ) {\n\t\t\t\treturn field;\n\t\t\t}\n\t\t}\n\n\t\t// return\n\t\treturn false;\n\t};\n\n\t/**\n\t * acf.Field.prototype.getConditions\n\t *\n\t * Returns the field's conditions instance\n\t *\n\t * @date\t1/2/18\n\t * @since\t5.6.5\n\t *\n\t * @param\ttype $var Description. Default.\n\t * @return\ttype Description.\n\t */\n\n\tacf.Field.prototype.getConditions = function () {\n\t\t// instantiate\n\t\tif ( ! this.conditions ) {\n\t\t\tthis.conditions = new Conditions( this );\n\t\t}\n\n\t\t// return\n\t\treturn this.conditions;\n\t};\n\n\t/**\n\t * Conditions\n\t *\n\t * description\n\t *\n\t * @date\t1/2/18\n\t * @since\t5.6.5\n\t *\n\t * @param\ttype $var Description. Default.\n\t * @return\ttype Description.\n\t */\n\tvar timeout = false;\n\tvar Conditions = acf.Model.extend( {\n\t\tid: 'Conditions',\n\n\t\tdata: {\n\t\t\tfield: false, // The field with \"data-conditions\" (target).\n\t\t\ttimeStamp: false, // Reference used during \"change\" event.\n\t\t\tgroups: [], // The groups of condition instances.\n\t\t},\n\n\t\tsetup: function ( field ) {\n\t\t\t// data\n\t\t\tthis.data.field = field;\n\n\t\t\t// vars\n\t\t\tvar conditions = field.get( 'conditions' );\n\n\t\t\t// detect groups\n\t\t\tif ( conditions instanceof Array ) {\n\t\t\t\t// detect groups\n\t\t\t\tif ( conditions[ 0 ] instanceof Array ) {\n\t\t\t\t\t// loop\n\t\t\t\t\tconditions.map( function ( rules, i ) {\n\t\t\t\t\t\tthis.addRules( rules, i );\n\t\t\t\t\t}, this );\n\n\t\t\t\t\t// detect rules\n\t\t\t\t} else {\n\t\t\t\t\tthis.addRules( conditions );\n\t\t\t\t}\n\n\t\t\t\t// detect rule\n\t\t\t} else {\n\t\t\t\tthis.addRule( conditions );\n\t\t\t}\n\t\t},\n\n\t\tchange: function ( e ) {\n\t\t\t// this function may be triggered multiple times per event due to multiple condition classes\n\t\t\t// compare timestamp to allow only 1 trigger per event\n\t\t\tif ( this.get( 'timeStamp' ) === e.timeStamp ) {\n\t\t\t\treturn false;\n\t\t\t} else {\n\t\t\t\tthis.set( 'timeStamp', e.timeStamp, true );\n\t\t\t}\n\n\t\t\t// render condition and store result\n\t\t\tvar changed = this.render();\n\t\t},\n\n\t\trender: function () {\n\t\t\treturn this.calculate() ? this.show() : this.hide();\n\t\t},\n\n\t\tshow: function () {\n\t\t\treturn this.get( 'field' ).showEnable( this.cid, CONTEXT );\n\t\t},\n\n\t\thide: function () {\n\t\t\treturn this.get( 'field' ).hideDisable( this.cid, CONTEXT );\n\t\t},\n\n\t\tcalculate: function () {\n\t\t\t// vars\n\t\t\tvar pass = false;\n\n\t\t\t// loop\n\t\t\tthis.getGroups().map( function ( group ) {\n\t\t\t\t// ignore this group if another group passed\n\t\t\t\tif ( pass ) return;\n\n\t\t\t\t// find passed\n\t\t\t\tvar passed = group.filter( function ( condition ) {\n\t\t\t\t\treturn condition.calculate();\n\t\t\t\t} );\n\n\t\t\t\t// if all conditions passed, update the global var\n\t\t\t\tif ( passed.length == group.length ) {\n\t\t\t\t\tpass = true;\n\t\t\t\t}\n\t\t\t} );\n\n\t\t\treturn pass;\n\t\t},\n\n\t\thasGroups: function () {\n\t\t\treturn this.data.groups != null;\n\t\t},\n\n\t\tgetGroups: function () {\n\t\t\treturn this.data.groups;\n\t\t},\n\n\t\taddGroup: function () {\n\t\t\tvar group = [];\n\t\t\tthis.data.groups.push( group );\n\t\t\treturn group;\n\t\t},\n\n\t\thasGroup: function ( i ) {\n\t\t\treturn this.data.groups[ i ] != null;\n\t\t},\n\n\t\tgetGroup: function ( i ) {\n\t\t\treturn this.data.groups[ i ];\n\t\t},\n\n\t\tremoveGroup: function ( i ) {\n\t\t\tthis.data.groups[ i ].delete;\n\t\t\treturn this;\n\t\t},\n\n\t\taddRules: function ( rules, group ) {\n\t\t\trules.map( function ( rule ) {\n\t\t\t\tthis.addRule( rule, group );\n\t\t\t}, this );\n\t\t},\n\n\t\taddRule: function ( rule, group ) {\n\t\t\t// defaults\n\t\t\tgroup = group || 0;\n\n\t\t\t// vars\n\t\t\tvar groupArray;\n\n\t\t\t// get group\n\t\t\tif ( this.hasGroup( group ) ) {\n\t\t\t\tgroupArray = this.getGroup( group );\n\t\t\t} else {\n\t\t\t\tgroupArray = this.addGroup();\n\t\t\t}\n\n\t\t\t// instantiate\n\t\t\tvar condition = acf.newCondition( rule, this );\n\n\t\t\t// bail early if condition failed (field did not exist)\n\t\t\tif ( ! condition ) {\n\t\t\t\treturn false;\n\t\t\t}\n\n\t\t\t// add rule\n\t\t\tgroupArray.push( condition );\n\t\t},\n\n\t\thasRule: function () {},\n\n\t\tgetRule: function ( rule, group ) {\n\t\t\t// defaults\n\t\t\trule = rule || 0;\n\t\t\tgroup = group || 0;\n\n\t\t\treturn this.data.groups[ group ][ rule ];\n\t\t},\n\n\t\tremoveRule: function () {},\n\t} );\n} )( jQuery );\n","( function ( $, undefined ) {\n\tvar i = 0;\n\n\tvar Field = acf.Field.extend( {\n\t\ttype: 'accordion',\n\n\t\twait: '',\n\n\t\t$control: function () {\n\t\t\treturn this.$( '.acf-fields:first' );\n\t\t},\n\n\t\tinitialize: function () {\n\t\t\t// Bail early if this is a duplicate of an existing initialized accordion.\n\t\t\tif ( this.$el.hasClass( 'acf-accordion' ) ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// bail early if is cell\n\t\t\tif ( this.$el.is( 'td' ) ) return;\n\n\t\t\t// enpoint\n\t\t\tif ( this.get( 'endpoint' ) ) {\n\t\t\t\treturn this.remove();\n\t\t\t}\n\n\t\t\t// vars\n\t\t\tvar $field = this.$el;\n\t\t\tvar $label = this.$labelWrap();\n\t\t\tvar $input = this.$inputWrap();\n\t\t\tvar $wrap = this.$control();\n\t\t\tvar $instructions = $input.children( '.description' );\n\n\t\t\t// force description into label\n\t\t\tif ( $instructions.length ) {\n\t\t\t\t$label.append( $instructions );\n\t\t\t}\n\n\t\t\t// table\n\t\t\tif ( this.$el.is( 'tr' ) ) {\n\t\t\t\t// vars\n\t\t\t\tvar $table = this.$el.closest( 'table' );\n\t\t\t\tvar $newLabel = $( '

        ' );\n\t\t\t\tvar $newInput = $( '
        ' );\n\t\t\t\tvar $newTable = $(\n\t\t\t\t\t'
          '\n\t\t\t\t);\n\t\t\t\tvar $newWrap = $( '' );\n\n\t\t\t\t// dom\n\t\t\t\t$newLabel.append( $label.html() );\n\t\t\t\t$newTable.append( $newWrap );\n\t\t\t\t$newInput.append( $newTable );\n\t\t\t\t$input.append( $newLabel );\n\t\t\t\t$input.append( $newInput );\n\n\t\t\t\t// modify\n\t\t\t\t$label.remove();\n\t\t\t\t$wrap.remove();\n\t\t\t\t$input.attr( 'colspan', 2 );\n\n\t\t\t\t// update vars\n\t\t\t\t$label = $newLabel;\n\t\t\t\t$input = $newInput;\n\t\t\t\t$wrap = $newWrap;\n\t\t\t}\n\n\t\t\t// add classes\n\t\t\t$field.addClass( 'acf-accordion' );\n\t\t\t$label.addClass( 'acf-accordion-title' );\n\t\t\t$input.addClass( 'acf-accordion-content' );\n\n\t\t\t// index\n\t\t\ti++;\n\n\t\t\t// multi-expand\n\t\t\tif ( this.get( 'multi_expand' ) ) {\n\t\t\t\t$field.attr( 'multi-expand', 1 );\n\t\t\t}\n\n\t\t\t// open\n\t\t\tvar order = acf.getPreference( 'this.accordions' ) || [];\n\t\t\tif ( order[ i - 1 ] !== undefined ) {\n\t\t\t\tthis.set( 'open', order[ i - 1 ] );\n\t\t\t}\n\n\t\t\tif ( this.get( 'open' ) ) {\n\t\t\t\t$field.addClass( '-open' );\n\t\t\t\t$input.css( 'display', 'block' ); // needed for accordion to close smoothly\n\t\t\t}\n\n\t\t\t// add icon\n\t\t\t$label.prepend(\n\t\t\t\taccordionManager.iconHtml( { open: this.get( 'open' ) } )\n\t\t\t);\n\n\t\t\t// classes\n\t\t\t// - remove 'inside' which is a #poststuff WP class\n\t\t\tvar $parent = $field.parent();\n\t\t\t$wrap.addClass( $parent.hasClass( '-left' ) ? '-left' : '' );\n\t\t\t$wrap.addClass( $parent.hasClass( '-clear' ) ? '-clear' : '' );\n\n\t\t\t// append\n\t\t\t$wrap.append(\n\t\t\t\t$field.nextUntil( '.acf-field-accordion', '.acf-field' )\n\t\t\t);\n\n\t\t\t// clean up\n\t\t\t$wrap.removeAttr( 'data-open data-multi_expand data-endpoint' );\n\t\t},\n\t} );\n\n\tacf.registerFieldType( Field );\n\n\t/**\n\t * accordionManager\n\t *\n\t * Events manager for the acf accordion\n\t *\n\t * @date\t14/2/18\n\t * @since\t5.6.9\n\t *\n\t * @param\tvoid\n\t * @return\tvoid\n\t */\n\n\tvar accordionManager = new acf.Model( {\n\t\tactions: {\n\t\t\tunload: 'onUnload',\n\t\t},\n\n\t\tevents: {\n\t\t\t'click .acf-accordion-title': 'onClick',\n\t\t\t'invalidField .acf-accordion': 'onInvalidField',\n\t\t},\n\n\t\tisOpen: function ( $el ) {\n\t\t\treturn $el.hasClass( '-open' );\n\t\t},\n\n\t\ttoggle: function ( $el ) {\n\t\t\tif ( this.isOpen( $el ) ) {\n\t\t\t\tthis.close( $el );\n\t\t\t} else {\n\t\t\t\tthis.open( $el );\n\t\t\t}\n\t\t},\n\n\t\ticonHtml: function ( props ) {\n\t\t\t// Use SVG inside Gutenberg editor.\n\t\t\tif ( acf.isGutenberg() ) {\n\t\t\t\tif ( props.open ) {\n\t\t\t\t\treturn '';\n\t\t\t\t} else {\n\t\t\t\t\treturn '';\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tif ( props.open ) {\n\t\t\t\t\treturn '';\n\t\t\t\t} else {\n\t\t\t\t\treturn '';\n\t\t\t\t}\n\t\t\t}\n\t\t},\n\n\t\topen: function ( $el ) {\n\t\t\tvar duration = acf.isGutenberg() ? 0 : 300;\n\n\t\t\t// open\n\t\t\t$el.find( '.acf-accordion-content:first' )\n\t\t\t\t.slideDown( duration )\n\t\t\t\t.css( 'display', 'block' );\n\t\t\t$el.find( '.acf-accordion-icon:first' ).replaceWith(\n\t\t\t\tthis.iconHtml( { open: true } )\n\t\t\t);\n\t\t\t$el.addClass( '-open' );\n\n\t\t\t// action\n\t\t\tacf.doAction( 'show', $el );\n\n\t\t\t// close siblings\n\t\t\tif ( ! $el.attr( 'multi-expand' ) ) {\n\t\t\t\t$el.siblings( '.acf-accordion.-open' ).each( function () {\n\t\t\t\t\taccordionManager.close( $( this ) );\n\t\t\t\t} );\n\t\t\t}\n\t\t},\n\n\t\tclose: function ( $el ) {\n\t\t\tvar duration = acf.isGutenberg() ? 0 : 300;\n\n\t\t\t// close\n\t\t\t$el.find( '.acf-accordion-content:first' ).slideUp( duration );\n\t\t\t$el.find( '.acf-accordion-icon:first' ).replaceWith(\n\t\t\t\tthis.iconHtml( { open: false } )\n\t\t\t);\n\t\t\t$el.removeClass( '-open' );\n\n\t\t\t// action\n\t\t\tacf.doAction( 'hide', $el );\n\t\t},\n\n\t\tonClick: function ( e, $el ) {\n\t\t\t// prevent Defailt\n\t\t\te.preventDefault();\n\n\t\t\t// open close\n\t\t\tthis.toggle( $el.parent() );\n\t\t},\n\n\t\tonInvalidField: function ( e, $el ) {\n\t\t\t// bail early if already focused\n\t\t\tif ( this.busy ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// disable functionality for 1sec (allow next validation to work)\n\t\t\tthis.busy = true;\n\t\t\tthis.setTimeout( function () {\n\t\t\t\tthis.busy = false;\n\t\t\t}, 1000 );\n\n\t\t\t// open accordion\n\t\t\tthis.open( $el );\n\t\t},\n\n\t\tonUnload: function ( e ) {\n\t\t\t// vars\n\t\t\tvar order = [];\n\n\t\t\t// loop\n\t\t\t$( '.acf-accordion' ).each( function () {\n\t\t\t\tvar open = $( this ).hasClass( '-open' ) ? 1 : 0;\n\t\t\t\torder.push( open );\n\t\t\t} );\n\n\t\t\t// set\n\t\t\tif ( order.length ) {\n\t\t\t\tacf.setPreference( 'this.accordions', order );\n\t\t\t}\n\t\t},\n\t} );\n} )( jQuery );\n","( function ( $, undefined ) {\n\tvar Field = acf.Field.extend( {\n\t\ttype: 'button_group',\n\n\t\tevents: {\n\t\t\t'click input[type=\"radio\"]': 'onClick',\n\t\t},\n\n\t\t$control: function () {\n\t\t\treturn this.$( '.acf-button-group' );\n\t\t},\n\n\t\t$input: function () {\n\t\t\treturn this.$( 'input:checked' );\n\t\t},\n\n\t\tsetValue: function ( val ) {\n\t\t\tthis.$( 'input[value=\"' + val + '\"]' )\n\t\t\t\t.prop( 'checked', true )\n\t\t\t\t.trigger( 'change' );\n\t\t},\n\n\t\tonClick: function ( e, $el ) {\n\t\t\t// vars\n\t\t\tvar $label = $el.parent( 'label' );\n\t\t\tvar selected = $label.hasClass( 'selected' );\n\n\t\t\t// remove previous selected\n\t\t\tthis.$( '.selected' ).removeClass( 'selected' );\n\n\t\t\t// add active class\n\t\t\t$label.addClass( 'selected' );\n\n\t\t\t// allow null\n\t\t\tif ( this.get( 'allow_null' ) && selected ) {\n\t\t\t\t$label.removeClass( 'selected' );\n\t\t\t\t$el.prop( 'checked', false ).trigger( 'change' );\n\t\t\t}\n\t\t},\n\t} );\n\n\tacf.registerFieldType( Field );\n} )( jQuery );\n","( function ( $, undefined ) {\n\tvar Field = acf.Field.extend( {\n\t\ttype: 'checkbox',\n\n\t\tevents: {\n\t\t\t'change input': 'onChange',\n\t\t\t'click .acf-add-checkbox': 'onClickAdd',\n\t\t\t'click .acf-checkbox-toggle': 'onClickToggle',\n\t\t\t'click .acf-checkbox-custom': 'onClickCustom',\n\t\t},\n\n\t\t$control: function () {\n\t\t\treturn this.$( '.acf-checkbox-list' );\n\t\t},\n\n\t\t$toggle: function () {\n\t\t\treturn this.$( '.acf-checkbox-toggle' );\n\t\t},\n\n\t\t$input: function () {\n\t\t\treturn this.$( 'input[type=\"hidden\"]' );\n\t\t},\n\n\t\t$inputs: function () {\n\t\t\treturn this.$( 'input[type=\"checkbox\"]' ).not(\n\t\t\t\t'.acf-checkbox-toggle'\n\t\t\t);\n\t\t},\n\n\t\tgetValue: function () {\n\t\t\tvar val = [];\n\t\t\tthis.$( ':checked' ).each( function () {\n\t\t\t\tval.push( $( this ).val() );\n\t\t\t} );\n\t\t\treturn val.length ? val : false;\n\t\t},\n\n\t\tonChange: function ( e, $el ) {\n\t\t\t// Vars.\n\t\t\tvar checked = $el.prop( 'checked' );\n\t\t\tvar $label = $el.parent( 'label' );\n\t\t\tvar $toggle = this.$toggle();\n\n\t\t\t// Add or remove \"selected\" class.\n\t\t\tif ( checked ) {\n\t\t\t\t$label.addClass( 'selected' );\n\t\t\t} else {\n\t\t\t\t$label.removeClass( 'selected' );\n\t\t\t}\n\n\t\t\t// Update toggle state if all inputs are checked.\n\t\t\tif ( $toggle.length ) {\n\t\t\t\tvar $inputs = this.$inputs();\n\n\t\t\t\t// all checked\n\t\t\t\tif ( $inputs.not( ':checked' ).length == 0 ) {\n\t\t\t\t\t$toggle.prop( 'checked', true );\n\t\t\t\t} else {\n\t\t\t\t\t$toggle.prop( 'checked', false );\n\t\t\t\t}\n\t\t\t}\n\t\t},\n\n\t\tonClickAdd: function ( e, $el ) {\n\t\t\tvar html =\n\t\t\t\t'
        • ';\n\t\t\t$el.parent( 'li' ).before( html );\n\t\t\t$el.parent( 'li' )\n\t\t\t\t.parent()\n\t\t\t\t.find( 'input[type=\"text\"]' )\n\t\t\t\t.last()\n\t\t\t\t.focus();\n\t\t},\n\n\t\tonClickToggle: function ( e, $el ) {\n\t\t\t// Vars.\n\t\t\tvar checked = $el.prop( 'checked' );\n\t\t\tvar $inputs = this.$( 'input[type=\"checkbox\"]' );\n\t\t\tvar $labels = this.$( 'label' );\n\n\t\t\t// Update \"checked\" state.\n\t\t\t$inputs.prop( 'checked', checked );\n\n\t\t\t// Add or remove \"selected\" class.\n\t\t\tif ( checked ) {\n\t\t\t\t$labels.addClass( 'selected' );\n\t\t\t} else {\n\t\t\t\t$labels.removeClass( 'selected' );\n\t\t\t}\n\t\t},\n\n\t\tonClickCustom: function ( e, $el ) {\n\t\t\tvar checked = $el.prop( 'checked' );\n\t\t\tvar $text = $el.next( 'input[type=\"text\"]' );\n\n\t\t\t// checked\n\t\t\tif ( checked ) {\n\t\t\t\t$text.prop( 'disabled', false );\n\n\t\t\t\t// not checked\n\t\t\t} else {\n\t\t\t\t$text.prop( 'disabled', true );\n\n\t\t\t\t// remove\n\t\t\t\tif ( $text.val() == '' ) {\n\t\t\t\t\t$el.parent( 'li' ).remove();\n\t\t\t\t}\n\t\t\t}\n\t\t},\n\t} );\n\n\tacf.registerFieldType( Field );\n} )( jQuery );\n","( function ( $, undefined ) {\n\tvar Field = acf.Field.extend( {\n\t\ttype: 'color_picker',\n\n\t\twait: 'load',\n\n\t\tevents: {\n\t\t\tduplicateField: 'onDuplicate',\n\t\t},\n\n\t\t$control: function () {\n\t\t\treturn this.$( '.acf-color-picker' );\n\t\t},\n\n\t\t$input: function () {\n\t\t\treturn this.$( 'input[type=\"hidden\"]' );\n\t\t},\n\n\t\t$inputText: function () {\n\t\t\treturn this.$( 'input[type=\"text\"]' );\n\t\t},\n\n\t\tsetValue: function ( val ) {\n\t\t\t// update input (with change)\n\t\t\tacf.val( this.$input(), val );\n\n\t\t\t// update iris\n\t\t\tthis.$inputText().iris( 'color', val );\n\t\t},\n\n\t\tinitialize: function () {\n\t\t\t// vars\n\t\t\tvar $input = this.$input();\n\t\t\tvar $inputText = this.$inputText();\n\n\t\t\t// event\n\t\t\tvar onChange = function ( e ) {\n\t\t\t\t// timeout is required to ensure the $input val is correct\n\t\t\t\tsetTimeout( function () {\n\t\t\t\t\tacf.val( $input, $inputText.val() );\n\t\t\t\t}, 1 );\n\t\t\t};\n\n\t\t\t// args\n\t\t\tvar args = {\n\t\t\t\tdefaultColor: false,\n\t\t\t\tpalettes: true,\n\t\t\t\thide: true,\n\t\t\t\tchange: onChange,\n\t\t\t\tclear: onChange,\n\t\t\t};\n\n\t\t\t// filter\n\t\t\tvar args = acf.applyFilters( 'color_picker_args', args, this );\n\n\t\t\t// initialize\n\t\t\t$inputText.wpColorPicker( args );\n\t\t},\n\n\t\tonDuplicate: function ( e, $el, $duplicate ) {\n\t\t\t// The wpColorPicker library does not provide a destroy method.\n\t\t\t// Manually reset DOM by replacing elements back to their original state.\n\t\t\t$colorPicker = $duplicate.find( '.wp-picker-container' );\n\t\t\t$inputText = $duplicate.find( 'input[type=\"text\"]' );\n\t\t\t$colorPicker.replaceWith( $inputText );\n\t\t},\n\t} );\n\n\tacf.registerFieldType( Field );\n} )( jQuery );\n","( function ( $, undefined ) {\n\tvar Field = acf.Field.extend( {\n\t\ttype: 'date_picker',\n\n\t\tevents: {\n\t\t\t'blur input[type=\"text\"]': 'onBlur',\n\t\t\tduplicateField: 'onDuplicate',\n\t\t},\n\n\t\t$control: function () {\n\t\t\treturn this.$( '.acf-date-picker' );\n\t\t},\n\n\t\t$input: function () {\n\t\t\treturn this.$( 'input[type=\"hidden\"]' );\n\t\t},\n\n\t\t$inputText: function () {\n\t\t\treturn this.$( 'input[type=\"text\"]' );\n\t\t},\n\n\t\tinitialize: function () {\n\t\t\t// save_format: compatibility with ACF < 5.0.0\n\t\t\tif ( this.has( 'save_format' ) ) {\n\t\t\t\treturn this.initializeCompatibility();\n\t\t\t}\n\n\t\t\t// vars\n\t\t\tvar $input = this.$input();\n\t\t\tvar $inputText = this.$inputText();\n\n\t\t\t// args\n\t\t\tvar args = {\n\t\t\t\tdateFormat: this.get( 'date_format' ),\n\t\t\t\taltField: $input,\n\t\t\t\taltFormat: 'yymmdd',\n\t\t\t\tchangeYear: true,\n\t\t\t\tyearRange: '-100:+100',\n\t\t\t\tchangeMonth: true,\n\t\t\t\tshowButtonPanel: true,\n\t\t\t\tfirstDay: this.get( 'first_day' ),\n\t\t\t};\n\n\t\t\t// filter\n\t\t\targs = acf.applyFilters( 'date_picker_args', args, this );\n\n\t\t\t// add date picker\n\t\t\tacf.newDatePicker( $inputText, args );\n\n\t\t\t// action\n\t\t\tacf.doAction( 'date_picker_init', $inputText, args, this );\n\t\t},\n\n\t\tinitializeCompatibility: function () {\n\t\t\t// vars\n\t\t\tvar $input = this.$input();\n\t\t\tvar $inputText = this.$inputText();\n\n\t\t\t// get and set value from alt field\n\t\t\t$inputText.val( $input.val() );\n\n\t\t\t// args\n\t\t\tvar args = {\n\t\t\t\tdateFormat: this.get( 'date_format' ),\n\t\t\t\taltField: $input,\n\t\t\t\taltFormat: this.get( 'save_format' ),\n\t\t\t\tchangeYear: true,\n\t\t\t\tyearRange: '-100:+100',\n\t\t\t\tchangeMonth: true,\n\t\t\t\tshowButtonPanel: true,\n\t\t\t\tfirstDay: this.get( 'first_day' ),\n\t\t\t};\n\n\t\t\t// filter for 3rd party customization\n\t\t\targs = acf.applyFilters( 'date_picker_args', args, this );\n\n\t\t\t// backup\n\t\t\tvar dateFormat = args.dateFormat;\n\n\t\t\t// change args.dateFormat\n\t\t\targs.dateFormat = this.get( 'save_format' );\n\n\t\t\t// add date picker\n\t\t\tacf.newDatePicker( $inputText, args );\n\n\t\t\t// now change the format back to how it should be.\n\t\t\t$inputText.datepicker( 'option', 'dateFormat', dateFormat );\n\n\t\t\t// action for 3rd party customization\n\t\t\tacf.doAction( 'date_picker_init', $inputText, args, this );\n\t\t},\n\n\t\tonBlur: function () {\n\t\t\tif ( ! this.$inputText().val() ) {\n\t\t\t\tacf.val( this.$input(), '' );\n\t\t\t}\n\t\t},\n\n\t\tonDuplicate: function ( e, $el, $duplicate ) {\n\t\t\t$duplicate\n\t\t\t\t.find( 'input[type=\"text\"]' )\n\t\t\t\t.removeClass( 'hasDatepicker' )\n\t\t\t\t.removeAttr( 'id' );\n\t\t},\n\t} );\n\n\tacf.registerFieldType( Field );\n\n\t// manager\n\tvar datePickerManager = new acf.Model( {\n\t\tpriority: 5,\n\t\twait: 'ready',\n\t\tinitialize: function () {\n\t\t\t// vars\n\t\t\tvar locale = acf.get( 'locale' );\n\t\t\tvar rtl = acf.get( 'rtl' );\n\t\t\tvar l10n = acf.get( 'datePickerL10n' );\n\n\t\t\t// bail early if no l10n\n\t\t\tif ( ! l10n ) {\n\t\t\t\treturn false;\n\t\t\t}\n\n\t\t\t// bail early if no datepicker library\n\t\t\tif ( typeof $.datepicker === 'undefined' ) {\n\t\t\t\treturn false;\n\t\t\t}\n\n\t\t\t// rtl\n\t\t\tl10n.isRTL = rtl;\n\n\t\t\t// append\n\t\t\t$.datepicker.regional[ locale ] = l10n;\n\t\t\t$.datepicker.setDefaults( l10n );\n\t\t},\n\t} );\n\n\t// add\n\tacf.newDatePicker = function ( $input, args ) {\n\t\t// bail early if no datepicker library\n\t\tif ( typeof $.datepicker === 'undefined' ) {\n\t\t\treturn false;\n\t\t}\n\n\t\t// defaults\n\t\targs = args || {};\n\n\t\t// initialize\n\t\t$input.datepicker( args );\n\n\t\t// wrap the datepicker (only if it hasn't already been wrapped)\n\t\tif ( $( 'body > #ui-datepicker-div' ).exists() ) {\n\t\t\t$( 'body > #ui-datepicker-div' ).wrap(\n\t\t\t\t'
          '\n\t\t\t);\n\t\t}\n\t};\n} )( jQuery );\n","( function ( $, undefined ) {\n\tvar Field = acf.models.DatePickerField.extend( {\n\t\ttype: 'date_time_picker',\n\n\t\t$control: function () {\n\t\t\treturn this.$( '.acf-date-time-picker' );\n\t\t},\n\n\t\tinitialize: function () {\n\t\t\t// vars\n\t\t\tvar $input = this.$input();\n\t\t\tvar $inputText = this.$inputText();\n\n\t\t\t// args\n\t\t\tvar args = {\n\t\t\t\tdateFormat: this.get( 'date_format' ),\n\t\t\t\ttimeFormat: this.get( 'time_format' ),\n\t\t\t\taltField: $input,\n\t\t\t\taltFieldTimeOnly: false,\n\t\t\t\taltFormat: 'yy-mm-dd',\n\t\t\t\taltTimeFormat: 'HH:mm:ss',\n\t\t\t\tchangeYear: true,\n\t\t\t\tyearRange: '-100:+100',\n\t\t\t\tchangeMonth: true,\n\t\t\t\tshowButtonPanel: true,\n\t\t\t\tfirstDay: this.get( 'first_day' ),\n\t\t\t\tcontrolType: 'select',\n\t\t\t\toneLine: true,\n\t\t\t};\n\n\t\t\t// filter\n\t\t\targs = acf.applyFilters( 'date_time_picker_args', args, this );\n\n\t\t\t// add date time picker\n\t\t\tacf.newDateTimePicker( $inputText, args );\n\n\t\t\t// action\n\t\t\tacf.doAction( 'date_time_picker_init', $inputText, args, this );\n\t\t},\n\t} );\n\n\tacf.registerFieldType( Field );\n\n\t// manager\n\tvar dateTimePickerManager = new acf.Model( {\n\t\tpriority: 5,\n\t\twait: 'ready',\n\t\tinitialize: function () {\n\t\t\t// vars\n\t\t\tvar locale = acf.get( 'locale' );\n\t\t\tvar rtl = acf.get( 'rtl' );\n\t\t\tvar l10n = acf.get( 'dateTimePickerL10n' );\n\n\t\t\t// bail early if no l10n\n\t\t\tif ( ! l10n ) {\n\t\t\t\treturn false;\n\t\t\t}\n\n\t\t\t// bail early if no datepicker library\n\t\t\tif ( typeof $.timepicker === 'undefined' ) {\n\t\t\t\treturn false;\n\t\t\t}\n\n\t\t\t// rtl\n\t\t\tl10n.isRTL = rtl;\n\n\t\t\t// append\n\t\t\t$.timepicker.regional[ locale ] = l10n;\n\t\t\t$.timepicker.setDefaults( l10n );\n\t\t},\n\t} );\n\n\t// add\n\tacf.newDateTimePicker = function ( $input, args ) {\n\t\t// bail early if no datepicker library\n\t\tif ( typeof $.timepicker === 'undefined' ) {\n\t\t\treturn false;\n\t\t}\n\n\t\t// defaults\n\t\targs = args || {};\n\n\t\t// initialize\n\t\t$input.datetimepicker( args );\n\n\t\t// wrap the datepicker (only if it hasn't already been wrapped)\n\t\tif ( $( 'body > #ui-datepicker-div' ).exists() ) {\n\t\t\t$( 'body > #ui-datepicker-div' ).wrap(\n\t\t\t\t'
          '\n\t\t\t);\n\t\t}\n\t};\n} )( jQuery );\n","( function ( $, undefined ) {\n\tvar Field = acf.models.ImageField.extend( {\n\t\ttype: 'file',\n\n\t\t$control: function () {\n\t\t\treturn this.$( '.acf-file-uploader' );\n\t\t},\n\n\t\t$input: function () {\n\t\t\treturn this.$( 'input[type=\"hidden\"]:first' );\n\t\t},\n\n\t\tvalidateAttachment: function ( attachment ) {\n\t\t\t// defaults\n\t\t\tattachment = attachment || {};\n\n\t\t\t// WP attachment\n\t\t\tif ( attachment.id !== undefined ) {\n\t\t\t\tattachment = attachment.attributes;\n\t\t\t}\n\n\t\t\t// args\n\t\t\tattachment = acf.parseArgs( attachment, {\n\t\t\t\turl: '',\n\t\t\t\talt: '',\n\t\t\t\ttitle: '',\n\t\t\t\tfilename: '',\n\t\t\t\tfilesizeHumanReadable: '',\n\t\t\t\ticon: '/wp-includes/images/media/default.png',\n\t\t\t} );\n\n\t\t\t// return\n\t\t\treturn attachment;\n\t\t},\n\n\t\trender: function ( attachment ) {\n\t\t\t// vars\n\t\t\tattachment = this.validateAttachment( attachment );\n\n\t\t\t// update image\n\t\t\tthis.$( 'img' ).attr( {\n\t\t\t\tsrc: attachment.icon,\n\t\t\t\talt: attachment.alt,\n\t\t\t\ttitle: attachment.title,\n\t\t\t} );\n\n\t\t\t// update elements\n\t\t\tthis.$( '[data-name=\"title\"]' ).text( attachment.title );\n\t\t\tthis.$( '[data-name=\"filename\"]' )\n\t\t\t\t.text( attachment.filename )\n\t\t\t\t.attr( 'href', attachment.url );\n\t\t\tthis.$( '[data-name=\"filesize\"]' ).text(\n\t\t\t\tattachment.filesizeHumanReadable\n\t\t\t);\n\n\t\t\t// vars\n\t\t\tvar val = attachment.id || '';\n\n\t\t\t// update val\n\t\t\tacf.val( this.$input(), val );\n\n\t\t\t// update class\n\t\t\tif ( val ) {\n\t\t\t\tthis.$control().addClass( 'has-value' );\n\t\t\t} else {\n\t\t\t\tthis.$control().removeClass( 'has-value' );\n\t\t\t}\n\t\t},\n\n\t\tselectAttachment: function () {\n\t\t\t// vars\n\t\t\tvar parent = this.parent();\n\t\t\tvar multiple = parent && parent.get( 'type' ) === 'repeater';\n\n\t\t\t// new frame\n\t\t\tvar frame = acf.newMediaPopup( {\n\t\t\t\tmode: 'select',\n\t\t\t\ttitle: acf.__( 'Select File' ),\n\t\t\t\tfield: this.get( 'key' ),\n\t\t\t\tmultiple: multiple,\n\t\t\t\tlibrary: this.get( 'library' ),\n\t\t\t\tallowedTypes: this.get( 'mime_types' ),\n\t\t\t\tselect: $.proxy( function ( attachment, i ) {\n\t\t\t\t\tif ( i > 0 ) {\n\t\t\t\t\t\tthis.append( attachment, parent );\n\t\t\t\t\t} else {\n\t\t\t\t\t\tthis.render( attachment );\n\t\t\t\t\t}\n\t\t\t\t}, this ),\n\t\t\t} );\n\t\t},\n\n\t\teditAttachment: function () {\n\t\t\t// vars\n\t\t\tvar val = this.val();\n\n\t\t\t// bail early if no val\n\t\t\tif ( ! val ) {\n\t\t\t\treturn false;\n\t\t\t}\n\n\t\t\t// popup\n\t\t\tvar frame = acf.newMediaPopup( {\n\t\t\t\tmode: 'edit',\n\t\t\t\ttitle: acf.__( 'Edit File' ),\n\t\t\t\tbutton: acf.__( 'Update File' ),\n\t\t\t\tattachment: val,\n\t\t\t\tfield: this.get( 'key' ),\n\t\t\t\tselect: $.proxy( function ( attachment, i ) {\n\t\t\t\t\tthis.render( attachment );\n\t\t\t\t}, this ),\n\t\t\t} );\n\t\t},\n\t} );\n\n\tacf.registerFieldType( Field );\n} )( jQuery );\n","( function ( $, undefined ) {\n\tvar Field = acf.Field.extend( {\n\t\ttype: 'google_map',\n\n\t\tmap: false,\n\n\t\twait: 'load',\n\n\t\tevents: {\n\t\t\t'click a[data-name=\"clear\"]': 'onClickClear',\n\t\t\t'click a[data-name=\"locate\"]': 'onClickLocate',\n\t\t\t'click a[data-name=\"search\"]': 'onClickSearch',\n\t\t\t'keydown .search': 'onKeydownSearch',\n\t\t\t'keyup .search': 'onKeyupSearch',\n\t\t\t'focus .search': 'onFocusSearch',\n\t\t\t'blur .search': 'onBlurSearch',\n\t\t\tshowField: 'onShow',\n\t\t},\n\n\t\t$control: function () {\n\t\t\treturn this.$( '.acf-google-map' );\n\t\t},\n\n\t\t$search: function () {\n\t\t\treturn this.$( '.search' );\n\t\t},\n\n\t\t$canvas: function () {\n\t\t\treturn this.$( '.canvas' );\n\t\t},\n\n\t\tsetState: function ( state ) {\n\t\t\t// Remove previous state classes.\n\t\t\tthis.$control().removeClass( '-value -loading -searching' );\n\n\t\t\t// Determine auto state based of current value.\n\t\t\tif ( state === 'default' ) {\n\t\t\t\tstate = this.val() ? 'value' : '';\n\t\t\t}\n\n\t\t\t// Update state class.\n\t\t\tif ( state ) {\n\t\t\t\tthis.$control().addClass( '-' + state );\n\t\t\t}\n\t\t},\n\n\t\tgetValue: function () {\n\t\t\tvar val = this.$input().val();\n\t\t\tif ( val ) {\n\t\t\t\treturn JSON.parse( val );\n\t\t\t} else {\n\t\t\t\treturn false;\n\t\t\t}\n\t\t},\n\n\t\tsetValue: function ( val, silent ) {\n\t\t\t// Convert input value.\n\t\t\tvar valAttr = '';\n\t\t\tif ( val ) {\n\t\t\t\tvalAttr = JSON.stringify( val );\n\t\t\t}\n\n\t\t\t// Update input (with change).\n\t\t\tacf.val( this.$input(), valAttr );\n\n\t\t\t// Bail early if silent update.\n\t\t\tif ( silent ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// Render.\n\t\t\tthis.renderVal( val );\n\n\t\t\t/**\n\t\t\t * Fires immediately after the value has changed.\n\t\t\t *\n\t\t\t * @date\t12/02/2014\n\t\t\t * @since\t5.0.0\n\t\t\t *\n\t\t\t * @param\tobject|string val The new value.\n\t\t\t * @param\tobject map The Google Map isntance.\n\t\t\t * @param\tobject field The field instance.\n\t\t\t */\n\t\t\tacf.doAction( 'google_map_change', val, this.map, this );\n\t\t},\n\n\t\trenderVal: function ( val ) {\n\t\t\t// Value.\n\t\t\tif ( val ) {\n\t\t\t\tthis.setState( 'value' );\n\t\t\t\tthis.$search().val( val.address );\n\t\t\t\tthis.setPosition( val.lat, val.lng );\n\n\t\t\t\t// No value.\n\t\t\t} else {\n\t\t\t\tthis.setState( '' );\n\t\t\t\tthis.$search().val( '' );\n\t\t\t\tthis.map.marker.setVisible( false );\n\t\t\t}\n\t\t},\n\n\t\tnewLatLng: function ( lat, lng ) {\n\t\t\treturn new google.maps.LatLng(\n\t\t\t\tparseFloat( lat ),\n\t\t\t\tparseFloat( lng )\n\t\t\t);\n\t\t},\n\n\t\tsetPosition: function ( lat, lng ) {\n\t\t\t// Update marker position.\n\t\t\tthis.map.marker.setPosition( {\n\t\t\t\tlat: parseFloat( lat ),\n\t\t\t\tlng: parseFloat( lng ),\n\t\t\t} );\n\n\t\t\t// Show marker.\n\t\t\tthis.map.marker.setVisible( true );\n\n\t\t\t// Center map.\n\t\t\tthis.center();\n\t\t},\n\n\t\tcenter: function () {\n\t\t\t// Find marker position.\n\t\t\tvar position = this.map.marker.getPosition();\n\t\t\tif ( position ) {\n\t\t\t\tvar lat = position.lat();\n\t\t\t\tvar lng = position.lng();\n\n\t\t\t\t// Or find default settings.\n\t\t\t} else {\n\t\t\t\tvar lat = this.get( 'lat' );\n\t\t\t\tvar lng = this.get( 'lng' );\n\t\t\t}\n\n\t\t\t// Center map.\n\t\t\tthis.map.setCenter( {\n\t\t\t\tlat: parseFloat( lat ),\n\t\t\t\tlng: parseFloat( lng ),\n\t\t\t} );\n\t\t},\n\n\t\tinitialize: function () {\n\t\t\t// Ensure Google API is loaded and then initialize map.\n\t\t\twithAPI( this.initializeMap.bind( this ) );\n\t\t},\n\n\t\tinitializeMap: function () {\n\t\t\t// Get value ignoring conditional logic status.\n\t\t\tvar val = this.getValue();\n\n\t\t\t// Construct default args.\n\t\t\tvar args = acf.parseArgs( val, {\n\t\t\t\tzoom: this.get( 'zoom' ),\n\t\t\t\tlat: this.get( 'lat' ),\n\t\t\t\tlng: this.get( 'lng' ),\n\t\t\t} );\n\n\t\t\t// Create Map.\n\t\t\tvar mapArgs = {\n\t\t\t\tscrollwheel: false,\n\t\t\t\tzoom: parseInt( args.zoom ),\n\t\t\t\tcenter: {\n\t\t\t\t\tlat: parseFloat( args.lat ),\n\t\t\t\t\tlng: parseFloat( args.lng ),\n\t\t\t\t},\n\t\t\t\tmapTypeId: google.maps.MapTypeId.ROADMAP,\n\t\t\t\tmarker: {\n\t\t\t\t\tdraggable: true,\n\t\t\t\t\traiseOnDrag: true,\n\t\t\t\t},\n\t\t\t\tautocomplete: {},\n\t\t\t};\n\t\t\tmapArgs = acf.applyFilters( 'google_map_args', mapArgs, this );\n\t\t\tvar map = new google.maps.Map( this.$canvas()[ 0 ], mapArgs );\n\n\t\t\t// Create Marker.\n\t\t\tvar markerArgs = acf.parseArgs( mapArgs.marker, {\n\t\t\t\tdraggable: true,\n\t\t\t\traiseOnDrag: true,\n\t\t\t\tmap: map,\n\t\t\t} );\n\t\t\tmarkerArgs = acf.applyFilters(\n\t\t\t\t'google_map_marker_args',\n\t\t\t\tmarkerArgs,\n\t\t\t\tthis\n\t\t\t);\n\t\t\tvar marker = new google.maps.Marker( markerArgs );\n\n\t\t\t// Maybe Create Autocomplete.\n\t\t\tvar autocomplete = false;\n\t\t\tif ( acf.isset( google, 'maps', 'places', 'Autocomplete' ) ) {\n\t\t\t\tvar autocompleteArgs = mapArgs.autocomplete || {};\n\t\t\t\tautocompleteArgs = acf.applyFilters(\n\t\t\t\t\t'google_map_autocomplete_args',\n\t\t\t\t\tautocompleteArgs,\n\t\t\t\t\tthis\n\t\t\t\t);\n\t\t\t\tautocomplete = new google.maps.places.Autocomplete(\n\t\t\t\t\tthis.$search()[ 0 ],\n\t\t\t\t\tautocompleteArgs\n\t\t\t\t);\n\t\t\t\tautocomplete.bindTo( 'bounds', map );\n\t\t\t}\n\n\t\t\t// Add map events.\n\t\t\tthis.addMapEvents( this, map, marker, autocomplete );\n\n\t\t\t// Append references.\n\t\t\tmap.acf = this;\n\t\t\tmap.marker = marker;\n\t\t\tmap.autocomplete = autocomplete;\n\t\t\tthis.map = map;\n\n\t\t\t// Set position.\n\t\t\tif ( val ) {\n\t\t\t\tthis.setPosition( val.lat, val.lng );\n\t\t\t}\n\n\t\t\t/**\n\t\t\t * Fires immediately after the Google Map has been initialized.\n\t\t\t *\n\t\t\t * @date\t12/02/2014\n\t\t\t * @since\t5.0.0\n\t\t\t *\n\t\t\t * @param\tobject map The Google Map isntance.\n\t\t\t * @param\tobject marker The Google Map marker isntance.\n\t\t\t * @param\tobject field The field instance.\n\t\t\t */\n\t\t\tacf.doAction( 'google_map_init', map, marker, this );\n\t\t},\n\n\t\taddMapEvents: function ( field, map, marker, autocomplete ) {\n\t\t\t// Click map.\n\t\t\tgoogle.maps.event.addListener( map, 'click', function ( e ) {\n\t\t\t\tvar lat = e.latLng.lat();\n\t\t\t\tvar lng = e.latLng.lng();\n\t\t\t\tfield.searchPosition( lat, lng );\n\t\t\t} );\n\n\t\t\t// Drag marker.\n\t\t\tgoogle.maps.event.addListener( marker, 'dragend', function () {\n\t\t\t\tvar lat = this.getPosition().lat();\n\t\t\t\tvar lng = this.getPosition().lng();\n\t\t\t\tfield.searchPosition( lat, lng );\n\t\t\t} );\n\n\t\t\t// Autocomplete search.\n\t\t\tif ( autocomplete ) {\n\t\t\t\tgoogle.maps.event.addListener(\n\t\t\t\t\tautocomplete,\n\t\t\t\t\t'place_changed',\n\t\t\t\t\tfunction () {\n\t\t\t\t\t\tvar place = this.getPlace();\n\t\t\t\t\t\tfield.searchPlace( place );\n\t\t\t\t\t}\n\t\t\t\t);\n\t\t\t}\n\n\t\t\t// Detect zoom change.\n\t\t\tgoogle.maps.event.addListener( map, 'zoom_changed', function () {\n\t\t\t\tvar val = field.val();\n\t\t\t\tif ( val ) {\n\t\t\t\t\tval.zoom = map.getZoom();\n\t\t\t\t\tfield.setValue( val, true );\n\t\t\t\t}\n\t\t\t} );\n\t\t},\n\n\t\tsearchPosition: function ( lat, lng ) {\n\t\t\t//console.log('searchPosition', lat, lng );\n\n\t\t\t// Start Loading.\n\t\t\tthis.setState( 'loading' );\n\n\t\t\t// Query Geocoder.\n\t\t\tvar latLng = { lat: lat, lng: lng };\n\t\t\tgeocoder.geocode(\n\t\t\t\t{ location: latLng },\n\t\t\t\tfunction ( results, status ) {\n\t\t\t\t\t//console.log('searchPosition', arguments );\n\n\t\t\t\t\t// End Loading.\n\t\t\t\t\tthis.setState( '' );\n\n\t\t\t\t\t// Status failure.\n\t\t\t\t\tif ( status !== 'OK' ) {\n\t\t\t\t\t\tthis.showNotice( {\n\t\t\t\t\t\t\ttext: acf\n\t\t\t\t\t\t\t\t.__( 'Location not found: %s' )\n\t\t\t\t\t\t\t\t.replace( '%s', status ),\n\t\t\t\t\t\t\ttype: 'warning',\n\t\t\t\t\t\t} );\n\n\t\t\t\t\t\t// Success.\n\t\t\t\t\t} else {\n\t\t\t\t\t\tvar val = this.parseResult( results[ 0 ] );\n\n\t\t\t\t\t\t// Override lat/lng to match user defined marker location.\n\t\t\t\t\t\t// Avoids issue where marker \"snaps\" to nearest result.\n\t\t\t\t\t\tval.lat = lat;\n\t\t\t\t\t\tval.lng = lng;\n\t\t\t\t\t\tthis.val( val );\n\t\t\t\t\t}\n\t\t\t\t}.bind( this )\n\t\t\t);\n\t\t},\n\n\t\tsearchPlace: function ( place ) {\n\t\t\t//console.log('searchPlace', place );\n\n\t\t\t// Bail early if no place.\n\t\t\tif ( ! place ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// Selecting from the autocomplete dropdown will return a rich PlaceResult object.\n\t\t\t// Be sure to over-write the \"formatted_address\" value with the one displayed to the user for best UX.\n\t\t\tif ( place.geometry ) {\n\t\t\t\tplace.formatted_address = this.$search().val();\n\t\t\t\tvar val = this.parseResult( place );\n\t\t\t\tthis.val( val );\n\n\t\t\t\t// Searching a custom address will return an empty PlaceResult object.\n\t\t\t} else if ( place.name ) {\n\t\t\t\tthis.searchAddress( place.name );\n\t\t\t}\n\t\t},\n\n\t\tsearchAddress: function ( address ) {\n\t\t\t//console.log('searchAddress', address );\n\n\t\t\t// Bail early if no address.\n\t\t\tif ( ! address ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// Allow \"lat,lng\" search.\n\t\t\tvar latLng = address.split( ',' );\n\t\t\tif ( latLng.length == 2 ) {\n\t\t\t\tvar lat = parseFloat( latLng[ 0 ] );\n\t\t\t\tvar lng = parseFloat( latLng[ 1 ] );\n\t\t\t\tif ( lat && lng ) {\n\t\t\t\t\treturn this.searchPosition( lat, lng );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Start Loading.\n\t\t\tthis.setState( 'loading' );\n\n\t\t\t// Query Geocoder.\n\t\t\tgeocoder.geocode(\n\t\t\t\t{ address: address },\n\t\t\t\tfunction ( results, status ) {\n\t\t\t\t\t//console.log('searchPosition', arguments );\n\n\t\t\t\t\t// End Loading.\n\t\t\t\t\tthis.setState( '' );\n\n\t\t\t\t\t// Status failure.\n\t\t\t\t\tif ( status !== 'OK' ) {\n\t\t\t\t\t\tthis.showNotice( {\n\t\t\t\t\t\t\ttext: acf\n\t\t\t\t\t\t\t\t.__( 'Location not found: %s' )\n\t\t\t\t\t\t\t\t.replace( '%s', status ),\n\t\t\t\t\t\t\ttype: 'warning',\n\t\t\t\t\t\t} );\n\n\t\t\t\t\t\t// Success.\n\t\t\t\t\t} else {\n\t\t\t\t\t\tvar val = this.parseResult( results[ 0 ] );\n\n\t\t\t\t\t\t// Override address data with parameter allowing custom address to be defined in search.\n\t\t\t\t\t\tval.address = address;\n\n\t\t\t\t\t\t// Update value.\n\t\t\t\t\t\tthis.val( val );\n\t\t\t\t\t}\n\t\t\t\t}.bind( this )\n\t\t\t);\n\t\t},\n\n\t\tsearchLocation: function () {\n\t\t\t//console.log('searchLocation' );\n\n\t\t\t// Check HTML5 geolocation.\n\t\t\tif ( ! navigator.geolocation ) {\n\t\t\t\treturn alert(\n\t\t\t\t\tacf.__( 'Sorry, this browser does not support geolocation' )\n\t\t\t\t);\n\t\t\t}\n\n\t\t\t// Start Loading.\n\t\t\tthis.setState( 'loading' );\n\n\t\t\t// Query Geolocation.\n\t\t\tnavigator.geolocation.getCurrentPosition(\n\t\t\t\t// Success.\n\t\t\t\tfunction ( results ) {\n\t\t\t\t\t// End Loading.\n\t\t\t\t\tthis.setState( '' );\n\n\t\t\t\t\t// Search position.\n\t\t\t\t\tvar lat = results.coords.latitude;\n\t\t\t\t\tvar lng = results.coords.longitude;\n\t\t\t\t\tthis.searchPosition( lat, lng );\n\t\t\t\t}.bind( this ),\n\n\t\t\t\t// Failure.\n\t\t\t\tfunction ( error ) {\n\t\t\t\t\tthis.setState( '' );\n\t\t\t\t}.bind( this )\n\t\t\t);\n\t\t},\n\n\t\t/**\n\t\t * parseResult\n\t\t *\n\t\t * Returns location data for the given GeocoderResult object.\n\t\t *\n\t\t * @date\t15/10/19\n\t\t * @since\t5.8.6\n\t\t *\n\t\t * @param\tobject obj A GeocoderResult object.\n\t\t * @return\tobject\n\t\t */\n\t\tparseResult: function ( obj ) {\n\t\t\t// Construct basic data.\n\t\t\tvar result = {\n\t\t\t\taddress: obj.formatted_address,\n\t\t\t\tlat: obj.geometry.location.lat(),\n\t\t\t\tlng: obj.geometry.location.lng(),\n\t\t\t};\n\n\t\t\t// Add zoom level.\n\t\t\tresult.zoom = this.map.getZoom();\n\n\t\t\t// Add place ID.\n\t\t\tif ( obj.place_id ) {\n\t\t\t\tresult.place_id = obj.place_id;\n\t\t\t}\n\n\t\t\t// Add place name.\n\t\t\tif ( obj.name ) {\n\t\t\t\tresult.name = obj.name;\n\t\t\t}\n\n\t\t\t// Create search map for address component data.\n\t\t\tvar map = {\n\t\t\t\tstreet_number: [ 'street_number' ],\n\t\t\t\tstreet_name: [ 'street_address', 'route' ],\n\t\t\t\tcity: [ 'locality', 'postal_town' ],\n\t\t\t\tstate: [\n\t\t\t\t\t'administrative_area_level_1',\n\t\t\t\t\t'administrative_area_level_2',\n\t\t\t\t\t'administrative_area_level_3',\n\t\t\t\t\t'administrative_area_level_4',\n\t\t\t\t\t'administrative_area_level_5',\n\t\t\t\t],\n\t\t\t\tpost_code: [ 'postal_code' ],\n\t\t\t\tcountry: [ 'country' ],\n\t\t\t};\n\n\t\t\t// Loop over map.\n\t\t\tfor ( var k in map ) {\n\t\t\t\tvar keywords = map[ k ];\n\n\t\t\t\t// Loop over address components.\n\t\t\t\tfor ( var i = 0; i < obj.address_components.length; i++ ) {\n\t\t\t\t\tvar component = obj.address_components[ i ];\n\t\t\t\t\tvar component_type = component.types[ 0 ];\n\n\t\t\t\t\t// Look for matching component type.\n\t\t\t\t\tif ( keywords.indexOf( component_type ) !== -1 ) {\n\t\t\t\t\t\t// Append to result.\n\t\t\t\t\t\tresult[ k ] = component.long_name;\n\n\t\t\t\t\t\t// Append short version.\n\t\t\t\t\t\tif ( component.long_name !== component.short_name ) {\n\t\t\t\t\t\t\tresult[ k + '_short' ] = component.short_name;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t/**\n\t\t\t * Filters the parsed result.\n\t\t\t *\n\t\t\t * @date\t18/10/19\n\t\t\t * @since\t5.8.6\n\t\t\t *\n\t\t\t * @param\tobject result The parsed result value.\n\t\t\t * @param\tobject obj The GeocoderResult object.\n\t\t\t */\n\t\t\treturn acf.applyFilters(\n\t\t\t\t'google_map_result',\n\t\t\t\tresult,\n\t\t\t\tobj,\n\t\t\t\tthis.map,\n\t\t\t\tthis\n\t\t\t);\n\t\t},\n\n\t\tonClickClear: function () {\n\t\t\tthis.val( false );\n\t\t},\n\n\t\tonClickLocate: function () {\n\t\t\tthis.searchLocation();\n\t\t},\n\n\t\tonClickSearch: function () {\n\t\t\tthis.searchAddress( this.$search().val() );\n\t\t},\n\n\t\tonFocusSearch: function ( e, $el ) {\n\t\t\tthis.setState( 'searching' );\n\t\t},\n\n\t\tonBlurSearch: function ( e, $el ) {\n\t\t\t// Get saved address value.\n\t\t\tvar val = this.val();\n\t\t\tvar address = val ? val.address : '';\n\n\t\t\t// Remove 'is-searching' if value has not changed.\n\t\t\tif ( $el.val() === address ) {\n\t\t\t\tthis.setState( 'default' );\n\t\t\t}\n\t\t},\n\n\t\tonKeyupSearch: function ( e, $el ) {\n\t\t\t// Clear empty value.\n\t\t\tif ( ! $el.val() ) {\n\t\t\t\tthis.val( false );\n\t\t\t}\n\t\t},\n\n\t\t// Prevent form from submitting.\n\t\tonKeydownSearch: function ( e, $el ) {\n\t\t\tif ( e.which == 13 ) {\n\t\t\t\te.preventDefault();\n\t\t\t\t$el.blur();\n\t\t\t}\n\t\t},\n\n\t\t// Center map once made visible.\n\t\tonShow: function () {\n\t\t\tif ( this.map ) {\n\t\t\t\tthis.setTimeout( this.center );\n\t\t\t}\n\t\t},\n\t} );\n\n\tacf.registerFieldType( Field );\n\n\t// Vars.\n\tvar loading = false;\n\tvar geocoder = false;\n\n\t/**\n\t * withAPI\n\t *\n\t * Loads the Google Maps API library and troggers callback.\n\t *\n\t * @date\t28/3/19\n\t * @since\t5.7.14\n\t *\n\t * @param\tfunction callback The callback to excecute.\n\t * @return\tvoid\n\t */\n\n\tfunction withAPI( callback ) {\n\t\t// Check if geocoder exists.\n\t\tif ( geocoder ) {\n\t\t\treturn callback();\n\t\t}\n\n\t\t// Check if geocoder API exists.\n\t\tif ( acf.isset( window, 'google', 'maps', 'Geocoder' ) ) {\n\t\t\tgeocoder = new google.maps.Geocoder();\n\t\t\treturn callback();\n\t\t}\n\n\t\t// Geocoder will need to be loaded. Hook callback to action.\n\t\tacf.addAction( 'google_map_api_loaded', callback );\n\n\t\t// Bail early if already loading API.\n\t\tif ( loading ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// load api\n\t\tvar url = acf.get( 'google_map_api' );\n\t\tif ( url ) {\n\t\t\t// Set loading status.\n\t\t\tloading = true;\n\n\t\t\t// Load API\n\t\t\t$.ajax( {\n\t\t\t\turl: url,\n\t\t\t\tdataType: 'script',\n\t\t\t\tcache: true,\n\t\t\t\tsuccess: function () {\n\t\t\t\t\tgeocoder = new google.maps.Geocoder();\n\t\t\t\t\tacf.doAction( 'google_map_api_loaded' );\n\t\t\t\t},\n\t\t\t} );\n\t\t}\n\t}\n} )( jQuery );\n","( function ( $, undefined ) {\n\tvar Field = acf.Field.extend( {\n\t\ttype: 'image',\n\n\t\t$control: function () {\n\t\t\treturn this.$( '.acf-image-uploader' );\n\t\t},\n\n\t\t$input: function () {\n\t\t\treturn this.$( 'input[type=\"hidden\"]:first' );\n\t\t},\n\n\t\tevents: {\n\t\t\t'click a[data-name=\"add\"]': 'onClickAdd',\n\t\t\t'click a[data-name=\"edit\"]': 'onClickEdit',\n\t\t\t'click a[data-name=\"remove\"]': 'onClickRemove',\n\t\t\t'change input[type=\"file\"]': 'onChange',\n\t\t},\n\n\t\tinitialize: function () {\n\t\t\t// add attribute to form\n\t\t\tif ( this.get( 'uploader' ) === 'basic' ) {\n\t\t\t\tthis.$el\n\t\t\t\t\t.closest( 'form' )\n\t\t\t\t\t.attr( 'enctype', 'multipart/form-data' );\n\t\t\t}\n\t\t},\n\n\t\tvalidateAttachment: function ( attachment ) {\n\t\t\t// Use WP attachment attributes when available.\n\t\t\tif ( attachment && attachment.attributes ) {\n\t\t\t\tattachment = attachment.attributes;\n\t\t\t}\n\n\t\t\t// Apply defaults.\n\t\t\tattachment = acf.parseArgs( attachment, {\n\t\t\t\tid: 0,\n\t\t\t\turl: '',\n\t\t\t\talt: '',\n\t\t\t\ttitle: '',\n\t\t\t\tcaption: '',\n\t\t\t\tdescription: '',\n\t\t\t\twidth: 0,\n\t\t\t\theight: 0,\n\t\t\t} );\n\n\t\t\t// Override with \"preview size\".\n\t\t\tvar size = acf.isget(\n\t\t\t\tattachment,\n\t\t\t\t'sizes',\n\t\t\t\tthis.get( 'preview_size' )\n\t\t\t);\n\t\t\tif ( size ) {\n\t\t\t\tattachment.url = size.url;\n\t\t\t\tattachment.width = size.width;\n\t\t\t\tattachment.height = size.height;\n\t\t\t}\n\n\t\t\t// Return.\n\t\t\treturn attachment;\n\t\t},\n\n\t\trender: function ( attachment ) {\n\t\t\tattachment = this.validateAttachment( attachment );\n\n\t\t\t// Update DOM.\n\t\t\tthis.$( 'img' ).attr( {\n\t\t\t\tsrc: attachment.url,\n\t\t\t\talt: attachment.alt,\n\t\t\t} );\n\t\t\tif ( attachment.id ) {\n\t\t\t\tthis.val( attachment.id );\n\t\t\t\tthis.$control().addClass( 'has-value' );\n\t\t\t} else {\n\t\t\t\tthis.val( '' );\n\t\t\t\tthis.$control().removeClass( 'has-value' );\n\t\t\t}\n\t\t},\n\n\t\t// create a new repeater row and render value\n\t\tappend: function ( attachment, parent ) {\n\t\t\t// create function to find next available field within parent\n\t\t\tvar getNext = function ( field, parent ) {\n\t\t\t\t// find existing file fields within parent\n\t\t\t\tvar fields = acf.getFields( {\n\t\t\t\t\tkey: field.get( 'key' ),\n\t\t\t\t\tparent: parent.$el,\n\t\t\t\t} );\n\n\t\t\t\t// find the first field with no value\n\t\t\t\tfor ( var i = 0; i < fields.length; i++ ) {\n\t\t\t\t\tif ( ! fields[ i ].val() ) {\n\t\t\t\t\t\treturn fields[ i ];\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// return\n\t\t\t\treturn false;\n\t\t\t};\n\n\t\t\t// find existing file fields within parent\n\t\t\tvar field = getNext( this, parent );\n\n\t\t\t// add new row if no available field\n\t\t\tif ( ! field ) {\n\t\t\t\tparent.$( '.acf-button:last' ).trigger( 'click' );\n\t\t\t\tfield = getNext( this, parent );\n\t\t\t}\n\n\t\t\t// render\n\t\t\tif ( field ) {\n\t\t\t\tfield.render( attachment );\n\t\t\t}\n\t\t},\n\n\t\tselectAttachment: function () {\n\t\t\t// vars\n\t\t\tvar parent = this.parent();\n\t\t\tvar multiple = parent && parent.get( 'type' ) === 'repeater';\n\n\t\t\t// new frame\n\t\t\tvar frame = acf.newMediaPopup( {\n\t\t\t\tmode: 'select',\n\t\t\t\ttype: 'image',\n\t\t\t\ttitle: acf.__( 'Select Image' ),\n\t\t\t\tfield: this.get( 'key' ),\n\t\t\t\tmultiple: multiple,\n\t\t\t\tlibrary: this.get( 'library' ),\n\t\t\t\tallowedTypes: this.get( 'mime_types' ),\n\t\t\t\tselect: $.proxy( function ( attachment, i ) {\n\t\t\t\t\tif ( i > 0 ) {\n\t\t\t\t\t\tthis.append( attachment, parent );\n\t\t\t\t\t} else {\n\t\t\t\t\t\tthis.render( attachment );\n\t\t\t\t\t}\n\t\t\t\t}, this ),\n\t\t\t} );\n\t\t},\n\n\t\teditAttachment: function () {\n\t\t\t// vars\n\t\t\tvar val = this.val();\n\n\t\t\t// bail early if no val\n\t\t\tif ( ! val ) return;\n\n\t\t\t// popup\n\t\t\tvar frame = acf.newMediaPopup( {\n\t\t\t\tmode: 'edit',\n\t\t\t\ttitle: acf.__( 'Edit Image' ),\n\t\t\t\tbutton: acf.__( 'Update Image' ),\n\t\t\t\tattachment: val,\n\t\t\t\tfield: this.get( 'key' ),\n\t\t\t\tselect: $.proxy( function ( attachment, i ) {\n\t\t\t\t\tthis.render( attachment );\n\t\t\t\t}, this ),\n\t\t\t} );\n\t\t},\n\n\t\tremoveAttachment: function () {\n\t\t\tthis.render( false );\n\t\t},\n\n\t\tonClickAdd: function ( e, $el ) {\n\t\t\tthis.selectAttachment();\n\t\t},\n\n\t\tonClickEdit: function ( e, $el ) {\n\t\t\tthis.editAttachment();\n\t\t},\n\n\t\tonClickRemove: function ( e, $el ) {\n\t\t\tthis.removeAttachment();\n\t\t},\n\n\t\tonChange: function ( e, $el ) {\n\t\t\tvar $hiddenInput = this.$input();\n\n\t\t\tif ( ! $el.val() ) {\n\t\t\t\t$hiddenInput.val( '' );\n\t\t\t}\n\n\t\t\tacf.getFileInputData( $el, function ( data ) {\n\t\t\t\t$hiddenInput.val( $.param( data ) );\n\t\t\t} );\n\t\t},\n\t} );\n\n\tacf.registerFieldType( Field );\n} )( jQuery );\n","( function ( $, undefined ) {\n\tvar Field = acf.Field.extend( {\n\t\ttype: 'link',\n\n\t\tevents: {\n\t\t\t'click a[data-name=\"add\"]': 'onClickEdit',\n\t\t\t'click a[data-name=\"edit\"]': 'onClickEdit',\n\t\t\t'click a[data-name=\"remove\"]': 'onClickRemove',\n\t\t\t'change .link-node': 'onChange',\n\t\t},\n\n\t\t$control: function () {\n\t\t\treturn this.$( '.acf-link' );\n\t\t},\n\n\t\t$node: function () {\n\t\t\treturn this.$( '.link-node' );\n\t\t},\n\n\t\tgetValue: function () {\n\t\t\t// vars\n\t\t\tvar $node = this.$node();\n\n\t\t\t// return false if empty\n\t\t\tif ( ! $node.attr( 'href' ) ) {\n\t\t\t\treturn false;\n\t\t\t}\n\n\t\t\t// return\n\t\t\treturn {\n\t\t\t\ttitle: $node.html(),\n\t\t\t\turl: $node.attr( 'href' ),\n\t\t\t\ttarget: $node.attr( 'target' ),\n\t\t\t};\n\t\t},\n\n\t\tsetValue: function ( val ) {\n\t\t\t// default\n\t\t\tval = acf.parseArgs( val, {\n\t\t\t\ttitle: '',\n\t\t\t\turl: '',\n\t\t\t\ttarget: '',\n\t\t\t} );\n\n\t\t\t// vars\n\t\t\tvar $div = this.$control();\n\t\t\tvar $node = this.$node();\n\n\t\t\t// remove class\n\t\t\t$div.removeClass( '-value -external' );\n\n\t\t\t// add class\n\t\t\tif ( val.url ) $div.addClass( '-value' );\n\t\t\tif ( val.target === '_blank' ) $div.addClass( '-external' );\n\n\t\t\t// update text\n\t\t\tthis.$( '.link-title' ).html( val.title );\n\t\t\tthis.$( '.link-url' ).attr( 'href', val.url ).html( val.url );\n\n\t\t\t// update node\n\t\t\t$node.html( val.title );\n\t\t\t$node.attr( 'href', val.url );\n\t\t\t$node.attr( 'target', val.target );\n\n\t\t\t// update inputs\n\t\t\tthis.$( '.input-title' ).val( val.title );\n\t\t\tthis.$( '.input-target' ).val( val.target );\n\t\t\tthis.$( '.input-url' ).val( val.url ).trigger( 'change' );\n\t\t},\n\n\t\tonClickEdit: function ( e, $el ) {\n\t\t\tacf.wpLink.open( this.$node() );\n\t\t},\n\n\t\tonClickRemove: function ( e, $el ) {\n\t\t\tthis.setValue( false );\n\t\t},\n\n\t\tonChange: function ( e, $el ) {\n\t\t\t// get the changed value\n\t\t\tvar val = this.getValue();\n\n\t\t\t// update inputs\n\t\t\tthis.setValue( val );\n\t\t},\n\t} );\n\n\tacf.registerFieldType( Field );\n\n\t// manager\n\tacf.wpLink = new acf.Model( {\n\t\tgetNodeValue: function () {\n\t\t\tvar $node = this.get( 'node' );\n\t\t\treturn {\n\t\t\t\ttitle: acf.decode( $node.html() ),\n\t\t\t\turl: $node.attr( 'href' ),\n\t\t\t\ttarget: $node.attr( 'target' ),\n\t\t\t};\n\t\t},\n\n\t\tsetNodeValue: function ( val ) {\n\t\t\tvar $node = this.get( 'node' );\n\t\t\t$node.text( val.title );\n\t\t\t$node.attr( 'href', val.url );\n\t\t\t$node.attr( 'target', val.target );\n\t\t\t$node.trigger( 'change' );\n\t\t},\n\n\t\tgetInputValue: function () {\n\t\t\treturn {\n\t\t\t\ttitle: $( '#wp-link-text' ).val(),\n\t\t\t\turl: $( '#wp-link-url' ).val(),\n\t\t\t\ttarget: $( '#wp-link-target' ).prop( 'checked' )\n\t\t\t\t\t? '_blank'\n\t\t\t\t\t: '',\n\t\t\t};\n\t\t},\n\n\t\tsetInputValue: function ( val ) {\n\t\t\t$( '#wp-link-text' ).val( val.title );\n\t\t\t$( '#wp-link-url' ).val( val.url );\n\t\t\t$( '#wp-link-target' ).prop( 'checked', val.target === '_blank' );\n\t\t},\n\n\t\topen: function ( $node ) {\n\t\t\t// add events\n\t\t\tthis.on( 'wplink-open', 'onOpen' );\n\t\t\tthis.on( 'wplink-close', 'onClose' );\n\n\t\t\t// set node\n\t\t\tthis.set( 'node', $node );\n\n\t\t\t// create textarea\n\t\t\tvar $textarea = $(\n\t\t\t\t''\n\t\t\t);\n\t\t\t$( 'body' ).append( $textarea );\n\n\t\t\t// vars\n\t\t\tvar val = this.getNodeValue();\n\n\t\t\t// open popup\n\t\t\twpLink.open( 'acf-link-textarea', val.url, val.title, null );\n\t\t},\n\n\t\tonOpen: function () {\n\t\t\t// always show title (WP will hide title if empty)\n\t\t\t$( '#wp-link-wrap' ).addClass( 'has-text-field' );\n\n\t\t\t// set inputs\n\t\t\tvar val = this.getNodeValue();\n\t\t\tthis.setInputValue( val );\n\n\t\t\t// Update button text.\n\t\t\tif ( val.url && wpLinkL10n ) {\n\t\t\t\t$( '#wp-link-submit' ).val( wpLinkL10n.update );\n\t\t\t}\n\t\t},\n\n\t\tclose: function () {\n\t\t\twpLink.close();\n\t\t},\n\n\t\tonClose: function () {\n\t\t\t// Bail early if no node.\n\t\t\t// Needed due to WP triggering this event twice.\n\t\t\tif ( ! this.has( 'node' ) ) {\n\t\t\t\treturn false;\n\t\t\t}\n\n\t\t\t// Determine context.\n\t\t\tvar $submit = $( '#wp-link-submit' );\n\t\t\tvar isSubmit = $submit.is( ':hover' ) || $submit.is( ':focus' );\n\n\t\t\t// Set value\n\t\t\tif ( isSubmit ) {\n\t\t\t\tvar val = this.getInputValue();\n\t\t\t\tthis.setNodeValue( val );\n\t\t\t}\n\n\t\t\t// Cleanup.\n\t\t\tthis.off( 'wplink-open' );\n\t\t\tthis.off( 'wplink-close' );\n\t\t\t$( '#acf-link-textarea' ).remove();\n\t\t\tthis.set( 'node', null );\n\t\t},\n\t} );\n} )( jQuery );\n","( function ( $, undefined ) {\n\tvar Field = acf.Field.extend( {\n\t\ttype: 'oembed',\n\n\t\tevents: {\n\t\t\t'click [data-name=\"clear-button\"]': 'onClickClear',\n\t\t\t'keypress .input-search': 'onKeypressSearch',\n\t\t\t'keyup .input-search': 'onKeyupSearch',\n\t\t\t'change .input-search': 'onChangeSearch',\n\t\t},\n\n\t\t$control: function () {\n\t\t\treturn this.$( '.acf-oembed' );\n\t\t},\n\n\t\t$input: function () {\n\t\t\treturn this.$( '.input-value' );\n\t\t},\n\n\t\t$search: function () {\n\t\t\treturn this.$( '.input-search' );\n\t\t},\n\n\t\tgetValue: function () {\n\t\t\treturn this.$input().val();\n\t\t},\n\n\t\tgetSearchVal: function () {\n\t\t\treturn this.$search().val();\n\t\t},\n\n\t\tsetValue: function ( val ) {\n\t\t\t// class\n\t\t\tif ( val ) {\n\t\t\t\tthis.$control().addClass( 'has-value' );\n\t\t\t} else {\n\t\t\t\tthis.$control().removeClass( 'has-value' );\n\t\t\t}\n\n\t\t\tacf.val( this.$input(), val );\n\t\t},\n\n\t\tshowLoading: function ( show ) {\n\t\t\tacf.showLoading( this.$( '.canvas' ) );\n\t\t},\n\n\t\thideLoading: function () {\n\t\t\tacf.hideLoading( this.$( '.canvas' ) );\n\t\t},\n\n\t\tmaybeSearch: function () {\n\t\t\t// vars\n\t\t\tvar prevUrl = this.val();\n\t\t\tvar url = this.getSearchVal();\n\n\t\t\t// no value\n\t\t\tif ( ! url ) {\n\t\t\t\treturn this.clear();\n\t\t\t}\n\n\t\t\t// fix missing 'http://' - causes the oembed code to error and fail\n\t\t\tif ( url.substr( 0, 4 ) != 'http' ) {\n\t\t\t\turl = 'http://' + url;\n\t\t\t}\n\n\t\t\t// bail early if no change\n\t\t\tif ( url === prevUrl ) return;\n\n\t\t\t// clear existing timeout\n\t\t\tvar timeout = this.get( 'timeout' );\n\t\t\tif ( timeout ) {\n\t\t\t\tclearTimeout( timeout );\n\t\t\t}\n\n\t\t\t// set new timeout\n\t\t\tvar callback = $.proxy( this.search, this, url );\n\t\t\tthis.set( 'timeout', setTimeout( callback, 300 ) );\n\t\t},\n\n\t\tsearch: function ( url ) {\n\t\t\t// ajax\n\t\t\tvar ajaxData = {\n\t\t\t\taction: 'acf/fields/oembed/search',\n\t\t\t\ts: url,\n\t\t\t\tfield_key: this.get( 'key' ),\n\t\t\t};\n\n\t\t\t// clear existing timeout\n\t\t\tvar xhr = this.get( 'xhr' );\n\t\t\tif ( xhr ) {\n\t\t\t\txhr.abort();\n\t\t\t}\n\n\t\t\t// loading\n\t\t\tthis.showLoading();\n\n\t\t\t// query\n\t\t\tvar xhr = $.ajax( {\n\t\t\t\turl: acf.get( 'ajaxurl' ),\n\t\t\t\tdata: acf.prepareForAjax( ajaxData ),\n\t\t\t\ttype: 'post',\n\t\t\t\tdataType: 'json',\n\t\t\t\tcontext: this,\n\t\t\t\tsuccess: function ( json ) {\n\t\t\t\t\t// error\n\t\t\t\t\tif ( ! json || ! json.html ) {\n\t\t\t\t\t\tjson = {\n\t\t\t\t\t\t\turl: false,\n\t\t\t\t\t\t\thtml: '',\n\t\t\t\t\t\t};\n\t\t\t\t\t}\n\n\t\t\t\t\t// update vars\n\t\t\t\t\tthis.val( json.url );\n\t\t\t\t\tthis.$( '.canvas-media' ).html( json.html );\n\t\t\t\t},\n\t\t\t\tcomplete: function () {\n\t\t\t\t\tthis.hideLoading();\n\t\t\t\t},\n\t\t\t} );\n\n\t\t\tthis.set( 'xhr', xhr );\n\t\t},\n\n\t\tclear: function () {\n\t\t\tthis.val( '' );\n\t\t\tthis.$search().val( '' );\n\t\t\tthis.$( '.canvas-media' ).html( '' );\n\t\t},\n\n\t\tonClickClear: function ( e, $el ) {\n\t\t\tthis.clear();\n\t\t},\n\n\t\tonKeypressSearch: function ( e, $el ) {\n\t\t\tif ( e.which == 13 ) {\n\t\t\t\te.preventDefault();\n\t\t\t\tthis.maybeSearch();\n\t\t\t}\n\t\t},\n\n\t\tonKeyupSearch: function ( e, $el ) {\n\t\t\tif ( $el.val() ) {\n\t\t\t\tthis.maybeSearch();\n\t\t\t}\n\t\t},\n\n\t\tonChangeSearch: function ( e, $el ) {\n\t\t\tthis.maybeSearch();\n\t\t},\n\t} );\n\n\tacf.registerFieldType( Field );\n} )( jQuery );\n","( function ( $, undefined ) {\n\tvar Field = acf.models.SelectField.extend( {\n\t\ttype: 'page_link',\n\t} );\n\n\tacf.registerFieldType( Field );\n} )( jQuery );\n","( function ( $, undefined ) {\n\tvar Field = acf.models.SelectField.extend( {\n\t\ttype: 'post_object',\n\t} );\n\n\tacf.registerFieldType( Field );\n} )( jQuery );\n","( function ( $, undefined ) {\n\tvar Field = acf.Field.extend( {\n\t\ttype: 'radio',\n\n\t\tevents: {\n\t\t\t'click input[type=\"radio\"]': 'onClick',\n\t\t},\n\n\t\t$control: function () {\n\t\t\treturn this.$( '.acf-radio-list' );\n\t\t},\n\n\t\t$input: function () {\n\t\t\treturn this.$( 'input:checked' );\n\t\t},\n\n\t\t$inputText: function () {\n\t\t\treturn this.$( 'input[type=\"text\"]' );\n\t\t},\n\n\t\tgetValue: function () {\n\t\t\tvar val = this.$input().val();\n\t\t\tif ( val === 'other' && this.get( 'other_choice' ) ) {\n\t\t\t\tval = this.$inputText().val();\n\t\t\t}\n\t\t\treturn val;\n\t\t},\n\n\t\tonClick: function ( e, $el ) {\n\t\t\t// vars\n\t\t\tvar $label = $el.parent( 'label' );\n\t\t\tvar selected = $label.hasClass( 'selected' );\n\t\t\tvar val = $el.val();\n\n\t\t\t// remove previous selected\n\t\t\tthis.$( '.selected' ).removeClass( 'selected' );\n\n\t\t\t// add active class\n\t\t\t$label.addClass( 'selected' );\n\n\t\t\t// allow null\n\t\t\tif ( this.get( 'allow_null' ) && selected ) {\n\t\t\t\t$label.removeClass( 'selected' );\n\t\t\t\t$el.prop( 'checked', false ).trigger( 'change' );\n\t\t\t\tval = false;\n\t\t\t}\n\n\t\t\t// other\n\t\t\tif ( this.get( 'other_choice' ) ) {\n\t\t\t\t// enable\n\t\t\t\tif ( val === 'other' ) {\n\t\t\t\t\tthis.$inputText().prop( 'disabled', false );\n\n\t\t\t\t\t// disable\n\t\t\t\t} else {\n\t\t\t\t\tthis.$inputText().prop( 'disabled', true );\n\t\t\t\t}\n\t\t\t}\n\t\t},\n\t} );\n\n\tacf.registerFieldType( Field );\n} )( jQuery );\n","( function ( $, undefined ) {\n\tvar Field = acf.Field.extend( {\n\t\ttype: 'range',\n\n\t\tevents: {\n\t\t\t'input input[type=\"range\"]': 'onChange',\n\t\t\t'change input': 'onChange',\n\t\t},\n\n\t\t$input: function () {\n\t\t\treturn this.$( 'input[type=\"range\"]' );\n\t\t},\n\n\t\t$inputAlt: function () {\n\t\t\treturn this.$( 'input[type=\"number\"]' );\n\t\t},\n\n\t\tsetValue: function ( val ) {\n\t\t\tthis.busy = true;\n\n\t\t\t// Update range input (with change).\n\t\t\tacf.val( this.$input(), val );\n\n\t\t\t// Update alt input (without change).\n\t\t\t// Read in input value to inherit min/max validation.\n\t\t\tacf.val( this.$inputAlt(), this.$input().val(), true );\n\n\t\t\tthis.busy = false;\n\t\t},\n\n\t\tonChange: function ( e, $el ) {\n\t\t\tif ( ! this.busy ) {\n\t\t\t\tthis.setValue( $el.val() );\n\t\t\t}\n\t\t},\n\t} );\n\n\tacf.registerFieldType( Field );\n} )( jQuery );\n","( function ( $, undefined ) {\n\tvar Field = acf.Field.extend( {\n\t\ttype: 'relationship',\n\n\t\tevents: {\n\t\t\t'keypress [data-filter]': 'onKeypressFilter',\n\t\t\t'change [data-filter]': 'onChangeFilter',\n\t\t\t'keyup [data-filter]': 'onChangeFilter',\n\t\t\t'click .choices-list .acf-rel-item': 'onClickAdd',\n\t\t\t'keypress .choices-list .acf-rel-item': 'onKeypressFilter',\n\t\t\t'keypress .values-list .acf-rel-item': 'onKeypressFilter',\n\t\t\t'click [data-name=\"remove_item\"]': 'onClickRemove',\n\t\t\t'touchstart .values-list .acf-rel-item': 'onTouchStartValues',\n\t\t},\n\n\t\t$control: function () {\n\t\t\treturn this.$( '.acf-relationship' );\n\t\t},\n\n\t\t$list: function ( list ) {\n\t\t\treturn this.$( '.' + list + '-list' );\n\t\t},\n\n\t\t$listItems: function ( list ) {\n\t\t\treturn this.$list( list ).find( '.acf-rel-item' );\n\t\t},\n\n\t\t$listItem: function ( list, id ) {\n\t\t\treturn this.$list( list ).find(\n\t\t\t\t'.acf-rel-item[data-id=\"' + id + '\"]'\n\t\t\t);\n\t\t},\n\n\t\tgetValue: function () {\n\t\t\tvar val = [];\n\t\t\tthis.$listItems( 'values' ).each( function () {\n\t\t\t\tval.push( $( this ).data( 'id' ) );\n\t\t\t} );\n\t\t\treturn val.length ? val : false;\n\t\t},\n\n\t\tnewChoice: function ( props ) {\n\t\t\treturn [\n\t\t\t\t'
        • ',\n\t\t\t\t'' +\n\t\t\t\t\tprops.text +\n\t\t\t\t\t'',\n\t\t\t\t'
        • ',\n\t\t\t].join( '' );\n\t\t},\n\n\t\tnewValue: function ( props ) {\n\t\t\treturn [\n\t\t\t\t'
        • ',\n\t\t\t\t'',\n\t\t\t\t'' +\n\t\t\t\t\tprops.text,\n\t\t\t\t'',\n\t\t\t\t'',\n\t\t\t\t'
        • ',\n\t\t\t].join( '' );\n\t\t},\n\n\t\tinitialize: function () {\n\t\t\t// Delay initialization until \"interacted with\" or \"in view\".\n\t\t\tvar delayed = this.proxy(\n\t\t\t\tacf.once( function () {\n\t\t\t\t\t// Add sortable.\n\t\t\t\t\tthis.$list( 'values' ).sortable( {\n\t\t\t\t\t\titems: 'li',\n\t\t\t\t\t\tforceHelperSize: true,\n\t\t\t\t\t\tforcePlaceholderSize: true,\n\t\t\t\t\t\tscroll: true,\n\t\t\t\t\t\tupdate: this.proxy( function () {\n\t\t\t\t\t\t\tthis.$input().trigger( 'change' );\n\t\t\t\t\t\t} ),\n\t\t\t\t\t} );\n\n\t\t\t\t\t// Avoid browser remembering old scroll position and add event.\n\t\t\t\t\tthis.$list( 'choices' )\n\t\t\t\t\t\t.scrollTop( 0 )\n\t\t\t\t\t\t.on( 'scroll', this.proxy( this.onScrollChoices ) );\n\n\t\t\t\t\t// Fetch choices.\n\t\t\t\t\tthis.fetch();\n\t\t\t\t} )\n\t\t\t);\n\n\t\t\t// Bind \"interacted with\".\n\t\t\tthis.$el.one( 'mouseover', delayed );\n\t\t\tthis.$el.one( 'focus', 'input', delayed );\n\n\t\t\t// Bind \"in view\".\n\t\t\tacf.onceInView( this.$el, delayed );\n\t\t},\n\n\t\tonScrollChoices: function ( e ) {\n\t\t\t// bail early if no more results\n\t\t\tif ( this.get( 'loading' ) || ! this.get( 'more' ) ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// Scrolled to bottom\n\t\t\tvar $list = this.$list( 'choices' );\n\t\t\tvar scrollTop = Math.ceil( $list.scrollTop() );\n\t\t\tvar scrollHeight = Math.ceil( $list[ 0 ].scrollHeight );\n\t\t\tvar innerHeight = Math.ceil( $list.innerHeight() );\n\t\t\tvar paged = this.get( 'paged' ) || 1;\n\t\t\tif ( scrollTop + innerHeight >= scrollHeight ) {\n\t\t\t\t// update paged\n\t\t\t\tthis.set( 'paged', paged + 1 );\n\n\t\t\t\t// fetch\n\t\t\t\tthis.fetch();\n\t\t\t}\n\t\t},\n\n\t\tonKeypressFilter: function ( e, $el ) {\n\t\t\t// Receive enter key when selecting relationship items.\n\t\t\tif ( $el.hasClass( 'acf-rel-item-add' ) && e.which == 13 ) {\n\t\t\t\tthis.onClickAdd(e, $el);\n\t\t\t}\n\t\t\t// Receive enter key when removing relationship items.\n\t\t\tif ( $el.hasClass( 'acf-rel-item-remove' ) && e.which == 13 ) {\n\t\t\t\tthis.onClickRemove(e, $el);\n\t\t\t}\n\t\t\t// don't submit form\n\t\t\tif ( e.which == 13 ) {\n\t\t\t\te.preventDefault();\n\t\t\t}\n\t\t},\n\n\t\tonChangeFilter: function ( e, $el ) {\n\t\t\t// vars\n\t\t\tvar val = $el.val();\n\t\t\tvar filter = $el.data( 'filter' );\n\n\t\t\t// Bail early if filter has not changed\n\t\t\tif ( this.get( filter ) === val ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// update attr\n\t\t\tthis.set( filter, val );\n\n\t\t\t// reset paged\n\t\t\tthis.set( 'paged', 1 );\n\n\t\t\t// fetch\n\t\t\tif ( $el.is( 'select' ) ) {\n\t\t\t\tthis.fetch();\n\n\t\t\t\t// search must go through timeout\n\t\t\t} else {\n\t\t\t\tthis.maybeFetch();\n\t\t\t}\n\t\t},\n\n\t\tonClickAdd: function ( e, $el ) {\n\t\t\t// vars\n\t\t\tvar val = this.val();\n\t\t\tvar max = parseInt( this.get( 'max' ) );\n\n\t\t\t// can be added?\n\t\t\tif ( $el.hasClass( 'disabled' ) ) {\n\t\t\t\treturn false;\n\t\t\t}\n\n\t\t\t// validate\n\t\t\tif ( max > 0 && val && val.length >= max ) {\n\t\t\t\t// add notice\n\t\t\t\tthis.showNotice( {\n\t\t\t\t\ttext: acf\n\t\t\t\t\t\t.__( 'Maximum values reached ( {max} values )' )\n\t\t\t\t\t\t.replace( '{max}', max ),\n\t\t\t\t\ttype: 'warning',\n\t\t\t\t} );\n\t\t\t\treturn false;\n\t\t\t}\n\n\t\t\t// disable\n\t\t\t$el.addClass( 'disabled' );\n\n\t\t\t// add\n\t\t\tvar html = this.newValue( {\n\t\t\t\tid: $el.data( 'id' ),\n\t\t\t\ttext: $el.html(),\n\t\t\t} );\n\t\t\tthis.$list( 'values' ).append( html );\n\n\t\t\t// trigger change\n\t\t\tthis.$input().trigger( 'change' );\n\t\t},\n\n\t\tonClickRemove: function ( e, $el ) {\n\t\t\t// Prevent default here because generic handler wont be triggered.\n\t\t\te.preventDefault();\n\n\t\t\tlet $span;\n\t\t\t// Behavior if triggered from tabbed event.\n\t\t\tif ( $el.hasClass( 'acf-rel-item-remove' )) {\n\t\t\t\t$span = $el;\n\t\t\t} else {\n\t\t\t\t// Behavior if triggered through click event.\n\t\t\t\t$span = $el.parent();\n\t\t\t}\n\n\t\t\t// vars\n\t\t\tconst $li = $span.parent();\n\t\t\tconst id = $span.data( 'id' );\n\n\t\t\t// remove value\n\t\t\t$li.remove();\n\n\t\t\t// show choice\n\t\t\tthis.$listItem( 'choices', id ).removeClass( 'disabled' );\n\n\t\t\t// trigger change\n\t\t\tthis.$input().trigger( 'change' );\n\t\t},\n\n\t\tonTouchStartValues: function( e, $el ) {\n\t\t\t$( this.$listItems( 'values' ) ).removeClass( 'relationship-hover' );\n\t\t\t$el.addClass( 'relationship-hover' );\n\t\t},\n\n\t\tmaybeFetch: function () {\n\t\t\t// vars\n\t\t\tvar timeout = this.get( 'timeout' );\n\n\t\t\t// abort timeout\n\t\t\tif ( timeout ) {\n\t\t\t\tclearTimeout( timeout );\n\t\t\t}\n\n\t\t\t// fetch\n\t\t\ttimeout = this.setTimeout( this.fetch, 300 );\n\t\t\tthis.set( 'timeout', timeout );\n\t\t},\n\n\t\tgetAjaxData: function () {\n\t\t\t// load data based on element attributes\n\t\t\tvar ajaxData = this.$control().data();\n\t\t\tfor ( var name in ajaxData ) {\n\t\t\t\tajaxData[ name ] = this.get( name );\n\t\t\t}\n\n\t\t\t// extra\n\t\t\tajaxData.action = 'acf/fields/relationship/query';\n\t\t\tajaxData.field_key = this.get( 'key' );\n\n\t\t\t// Filter.\n\t\t\tajaxData = acf.applyFilters(\n\t\t\t\t'relationship_ajax_data',\n\t\t\t\tajaxData,\n\t\t\t\tthis\n\t\t\t);\n\n\t\t\t// return\n\t\t\treturn ajaxData;\n\t\t},\n\n\t\tfetch: function () {\n\t\t\t// abort XHR if this field is already loading AJAX data\n\t\t\tvar xhr = this.get( 'xhr' );\n\t\t\tif ( xhr ) {\n\t\t\t\txhr.abort();\n\t\t\t}\n\n\t\t\t// add to this.o\n\t\t\tvar ajaxData = this.getAjaxData();\n\n\t\t\t// clear html if is new query\n\t\t\tvar $choiceslist = this.$list( 'choices' );\n\t\t\tif ( ajaxData.paged == 1 ) {\n\t\t\t\t$choiceslist.html( '' );\n\t\t\t}\n\n\t\t\t// loading\n\t\t\tvar $loading = $(\n\t\t\t\t'
        • ' +\n\t\t\t\t\tacf.__( 'Loading' ) +\n\t\t\t\t\t'
        • '\n\t\t\t);\n\t\t\t$choiceslist.append( $loading );\n\t\t\tthis.set( 'loading', true );\n\n\t\t\t// callback\n\t\t\tvar onComplete = function () {\n\t\t\t\tthis.set( 'loading', false );\n\t\t\t\t$loading.remove();\n\t\t\t};\n\n\t\t\tvar onSuccess = function ( json ) {\n\t\t\t\t// no results\n\t\t\t\tif ( ! json || ! json.results || ! json.results.length ) {\n\t\t\t\t\t// prevent pagination\n\t\t\t\t\tthis.set( 'more', false );\n\n\t\t\t\t\t// add message\n\t\t\t\t\tif ( this.get( 'paged' ) == 1 ) {\n\t\t\t\t\t\tthis.$list( 'choices' ).append(\n\t\t\t\t\t\t\t'
        • ' + acf.__( 'No matches found' ) + '
        • '\n\t\t\t\t\t\t);\n\t\t\t\t\t}\n\n\t\t\t\t\t// return\n\t\t\t\t\treturn;\n\t\t\t\t}\n\n\t\t\t\t// set more (allows pagination scroll)\n\t\t\t\tthis.set( 'more', json.more );\n\n\t\t\t\t// get new results\n\t\t\t\tvar html = this.walkChoices( json.results );\n\t\t\t\tvar $html = $( html );\n\n\t\t\t\t// apply .disabled to left li's\n\t\t\t\tvar val = this.val();\n\t\t\t\tif ( val && val.length ) {\n\t\t\t\t\tval.map( function ( id ) {\n\t\t\t\t\t\t$html\n\t\t\t\t\t\t\t.find( '.acf-rel-item[data-id=\"' + id + '\"]' )\n\t\t\t\t\t\t\t.addClass( 'disabled' );\n\t\t\t\t\t} );\n\t\t\t\t}\n\n\t\t\t\t// append\n\t\t\t\t$choiceslist.append( $html );\n\n\t\t\t\t// merge together groups\n\t\t\t\tvar $prevLabel = false;\n\t\t\t\tvar $prevList = false;\n\n\t\t\t\t$choiceslist.find( '.acf-rel-label' ).each( function () {\n\t\t\t\t\tvar $label = $( this );\n\t\t\t\t\tvar $list = $label.siblings( 'ul' );\n\n\t\t\t\t\tif ( $prevLabel && $prevLabel.text() == $label.text() ) {\n\t\t\t\t\t\t$prevList.append( $list.children() );\n\t\t\t\t\t\t$( this ).parent().remove();\n\t\t\t\t\t\treturn;\n\t\t\t\t\t}\n\n\t\t\t\t\t// update vars\n\t\t\t\t\t$prevLabel = $label;\n\t\t\t\t\t$prevList = $list;\n\t\t\t\t} );\n\t\t\t};\n\n\t\t\t// get results\n\t\t\tvar xhr = $.ajax( {\n\t\t\t\turl: acf.get( 'ajaxurl' ),\n\t\t\t\tdataType: 'json',\n\t\t\t\ttype: 'post',\n\t\t\t\tdata: acf.prepareForAjax( ajaxData ),\n\t\t\t\tcontext: this,\n\t\t\t\tsuccess: onSuccess,\n\t\t\t\tcomplete: onComplete,\n\t\t\t} );\n\n\t\t\t// set\n\t\t\tthis.set( 'xhr', xhr );\n\t\t},\n\n\t\twalkChoices: function ( data ) {\n\t\t\t// walker\n\t\t\tvar walk = function ( data ) {\n\t\t\t\t// vars\n\t\t\t\tvar html = '';\n\n\t\t\t\t// is array\n\t\t\t\tif ( $.isArray( data ) ) {\n\t\t\t\t\tdata.map( function ( item ) {\n\t\t\t\t\t\thtml += walk( item );\n\t\t\t\t\t} );\n\n\t\t\t\t\t// is item\n\t\t\t\t} else if ( $.isPlainObject( data ) ) {\n\t\t\t\t\t// group\n\t\t\t\t\tif ( data.children !== undefined ) {\n\t\t\t\t\t\thtml +=\n\t\t\t\t\t\t\t'
        • ' +\n\t\t\t\t\t\t\tacf.escHtml( data.text ) +\n\t\t\t\t\t\t\t'
            ';\n\t\t\t\t\t\thtml += walk( data.children );\n\t\t\t\t\t\thtml += '
        • ';\n\n\t\t\t\t\t\t// single\n\t\t\t\t\t} else {\n\t\t\t\t\t\thtml +=\n\t\t\t\t\t\t\t'
        • ' +\n\t\t\t\t\t\t\tacf.escHtml( data.text ) +\n\t\t\t\t\t\t\t'
        • ';\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// return\n\t\t\t\treturn html;\n\t\t\t};\n\n\t\t\treturn walk( data );\n\t\t},\n\t} );\n\n\tacf.registerFieldType( Field );\n} )( jQuery );\n","( function ( $, undefined ) {\n\tvar Field = acf.Field.extend( {\n\t\ttype: 'select',\n\n\t\tselect2: false,\n\n\t\twait: 'load',\n\n\t\tevents: {\n\t\t\tremoveField: 'onRemove',\n\t\t\tduplicateField: 'onDuplicate',\n\t\t},\n\n\t\t$input: function () {\n\t\t\treturn this.$( 'select' );\n\t\t},\n\n\t\tinitialize: function () {\n\t\t\t// vars\n\t\t\tvar $select = this.$input();\n\n\t\t\t// inherit data\n\t\t\tthis.inherit( $select );\n\n\t\t\t// select2\n\t\t\tif ( this.get( 'ui' ) ) {\n\t\t\t\t// populate ajax_data (allowing custom attribute to already exist)\n\t\t\t\tvar ajaxAction = this.get( 'ajax_action' );\n\t\t\t\tif ( ! ajaxAction ) {\n\t\t\t\t\tajaxAction = 'acf/fields/' + this.get( 'type' ) + '/query';\n\t\t\t\t}\n\n\t\t\t\t// select2\n\t\t\t\tthis.select2 = acf.newSelect2( $select, {\n\t\t\t\t\tfield: this,\n\t\t\t\t\tajax: this.get( 'ajax' ),\n\t\t\t\t\tmultiple: this.get( 'multiple' ),\n\t\t\t\t\tplaceholder: this.get( 'placeholder' ),\n\t\t\t\t\tallowNull: this.get( 'allow_null' ),\n\t\t\t\t\tajaxAction: ajaxAction,\n\t\t\t\t} );\n\t\t\t}\n\t\t},\n\n\t\tonRemove: function () {\n\t\t\tif ( this.select2 ) {\n\t\t\t\tthis.select2.destroy();\n\t\t\t}\n\t\t},\n\n\t\tonDuplicate: function ( e, $el, $duplicate ) {\n\t\t\tif ( this.select2 ) {\n\t\t\t\t$duplicate.find( '.select2-container' ).remove();\n\t\t\t\t$duplicate\n\t\t\t\t\t.find( 'select' )\n\t\t\t\t\t.removeClass( 'select2-hidden-accessible' );\n\t\t\t}\n\t\t},\n\t} );\n\n\tacf.registerFieldType( Field );\n} )( jQuery );\n","( function ( $, undefined ) {\n\t// vars\n\tvar CONTEXT = 'tab';\n\n\tvar Field = acf.Field.extend( {\n\t\ttype: 'tab',\n\n\t\twait: '',\n\n\t\ttabs: false,\n\n\t\ttab: false,\n\n\t\tevents: {\n\t\t\tduplicateField: 'onDuplicate',\n\t\t},\n\n\t\tfindFields: function () {\n\t\t\tlet filter;\n\n\t\t\t/**\n\t\t\t * Tabs in the admin UI that can be extended by third\n\t\t\t * parties have the child settings wrapped inside an extra div,\n\t\t\t * so we need to look for that instead of an adjacent .acf-field.\n\t\t\t */\n\t\t\tswitch ( this.get( 'key' ) ) {\n\t\t\t\tcase 'acf_field_settings_tabs':\n\t\t\t\t\tfilter = '.acf-field-settings-main';\n\t\t\t\t\tbreak;\n\t\t\t\tcase 'acf_field_group_settings_tabs':\n\t\t\t\t\tfilter = '.field-group-settings-tab';\n\t\t\t\t\tbreak;\n\t\t\t\tcase 'acf_browse_fields_tabs':\n\t\t\t\t\tfilter = '.acf-field-types-tab';\n\t\t\t\t\tbreak;\n\t\t\t\tcase 'acf_post_type_tabs':\n\t\t\t\t\tfilter = '.acf-post-type-advanced-settings';\n\t\t\t\t\tbreak;\n\t\t\t\tcase 'acf_taxonomy_tabs':\n\t\t\t\t\tfilter = '.acf-taxonomy-advanced-settings';\n\t\t\t\t\tbreak;\n\t\t\t\tcase 'acf_ui_options_page_tabs':\n\t\t\t\t\tfilter = '.acf-ui-options-page-advanced-settings';\n\t\t\t\t\tbreak;\n\t\t\t\tdefault:\n\t\t\t\t\tfilter = '.acf-field';\n\t\t\t}\n\n\t\t\treturn this.$el.nextUntil( '.acf-field-tab', filter );\n\t\t},\n\n\t\tgetFields: function () {\n\t\t\treturn acf.getFields( this.findFields() );\n\t\t},\n\n\t\tfindTabs: function () {\n\t\t\treturn this.$el.prevAll( '.acf-tab-wrap:first' );\n\t\t},\n\n\t\tfindTab: function () {\n\t\t\treturn this.$( '.acf-tab-button' );\n\t\t},\n\n\t\tinitialize: function () {\n\t\t\t// bail early if is td\n\t\t\tif ( this.$el.is( 'td' ) ) {\n\t\t\t\tthis.events = {};\n\t\t\t\treturn false;\n\t\t\t}\n\n\t\t\t// vars\n\t\t\tvar $tabs = this.findTabs();\n\t\t\tvar $tab = this.findTab();\n\t\t\tvar settings = acf.parseArgs( $tab.data(), {\n\t\t\t\tendpoint: false,\n\t\t\t\tplacement: '',\n\t\t\t\tbefore: this.$el,\n\t\t\t} );\n\n\t\t\t// create wrap\n\t\t\tif ( ! $tabs.length || settings.endpoint ) {\n\t\t\t\tthis.tabs = new Tabs( settings );\n\t\t\t} else {\n\t\t\t\tthis.tabs = $tabs.data( 'acf' );\n\t\t\t}\n\n\t\t\t// add tab\n\t\t\tthis.tab = this.tabs.addTab( $tab, this );\n\t\t},\n\n\t\tisActive: function () {\n\t\t\treturn this.tab.isActive();\n\t\t},\n\n\t\tshowFields: function () {\n\t\t\t// show fields\n\t\t\tthis.getFields().map( function ( field ) {\n\t\t\t\tfield.show( this.cid, CONTEXT );\n\t\t\t\tfield.hiddenByTab = false;\n\t\t\t}, this );\n\t\t},\n\n\t\thideFields: function () {\n\t\t\t// hide fields\n\t\t\tthis.getFields().map( function ( field ) {\n\t\t\t\tfield.hide( this.cid, CONTEXT );\n\t\t\t\tfield.hiddenByTab = this.tab;\n\t\t\t}, this );\n\t\t},\n\n\t\tshow: function ( lockKey ) {\n\t\t\t// show field and store result\n\t\t\tvar visible = acf.Field.prototype.show.apply( this, arguments );\n\n\t\t\t// check if now visible\n\t\t\tif ( visible ) {\n\t\t\t\t// show tab\n\t\t\t\tthis.tab.show();\n\n\t\t\t\t// check active tabs\n\t\t\t\tthis.tabs.refresh();\n\t\t\t}\n\n\t\t\t// return\n\t\t\treturn visible;\n\t\t},\n\n\t\thide: function ( lockKey ) {\n\t\t\t// hide field and store result\n\t\t\tvar hidden = acf.Field.prototype.hide.apply( this, arguments );\n\n\t\t\t// check if now hidden\n\t\t\tif ( hidden ) {\n\t\t\t\t// hide tab\n\t\t\t\tthis.tab.hide();\n\n\t\t\t\t// reset tabs if this was active\n\t\t\t\tif ( this.isActive() ) {\n\t\t\t\t\tthis.tabs.reset();\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// return\n\t\t\treturn hidden;\n\t\t},\n\n\t\tenable: function ( lockKey ) {\n\t\t\t// enable fields\n\t\t\tthis.getFields().map( function ( field ) {\n\t\t\t\tfield.enable( CONTEXT );\n\t\t\t} );\n\t\t},\n\n\t\tdisable: function ( lockKey ) {\n\t\t\t// disable fields\n\t\t\tthis.getFields().map( function ( field ) {\n\t\t\t\tfield.disable( CONTEXT );\n\t\t\t} );\n\t\t},\n\n\t\tonDuplicate: function ( e, $el, $duplicate ) {\n\t\t\tif ( this.isActive() ) {\n\t\t\t\t$duplicate.prevAll( '.acf-tab-wrap:first' ).remove();\n\t\t\t}\n\t\t},\n\t} );\n\n\tacf.registerFieldType( Field );\n\n\t/**\n\t * tabs\n\t *\n\t * description\n\t *\n\t * @date\t8/2/18\n\t * @since\t5.6.5\n\t *\n\t * @param\ttype $var Description. Default.\n\t * @return\ttype Description.\n\t */\n\n\tvar i = 0;\n\tvar Tabs = acf.Model.extend( {\n\t\ttabs: [],\n\n\t\tactive: false,\n\n\t\tactions: {\n\t\t\trefresh: 'onRefresh',\n\t\t\tclose_field_object: 'onCloseFieldObject',\n\t\t},\n\n\t\tdata: {\n\t\t\tbefore: false,\n\t\t\tplacement: 'top',\n\t\t\tindex: 0,\n\t\t\tinitialized: false,\n\t\t},\n\n\t\tsetup: function ( settings ) {\n\t\t\t// data\n\t\t\t$.extend( this.data, settings );\n\n\t\t\t// define this prop to avoid scope issues\n\t\t\tthis.tabs = [];\n\t\t\tthis.active = false;\n\n\t\t\t// vars\n\t\t\tvar placement = this.get( 'placement' );\n\t\t\tvar $before = this.get( 'before' );\n\t\t\tvar $parent = $before.parent();\n\n\t\t\t// add sidebar for left placement\n\t\t\tif ( placement == 'left' && $parent.hasClass( 'acf-fields' ) ) {\n\t\t\t\t$parent.addClass( '-sidebar' );\n\t\t\t}\n\n\t\t\t// create wrap\n\t\t\tif ( $before.is( 'tr' ) ) {\n\t\t\t\tthis.$el = $(\n\t\t\t\t\t'
          '\n\t\t\t\t);\n\t\t\t} else {\n\t\t\t\tlet ulClass = 'acf-hl acf-tab-group';\n\n\t\t\t\tif ( this.get( 'key' ) === 'acf_field_settings_tabs' ) {\n\t\t\t\t\tulClass = 'acf-field-settings-tab-bar';\n\t\t\t\t}\n\n\t\t\t\tthis.$el = $(\n\t\t\t\t\t'
            '\n\t\t\t\t);\n\t\t\t}\n\n\t\t\t// append\n\t\t\t$before.before( this.$el );\n\n\t\t\t// set index\n\t\t\tthis.set( 'index', i, true );\n\t\t\ti++;\n\t\t},\n\n\t\tinitializeTabs: function () {\n\t\t\t// Bail if tabs are disabled.\n\t\t\tif (\n\t\t\t\t'acf_field_settings_tabs' === this.get( 'key' ) &&\n\t\t\t\t$( '#acf-field-group-fields' ).hasClass( 'hide-tabs' )\n\t\t\t) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// find first visible tab\n\t\t\tvar tab = this.getVisible().shift();\n\n\t\t\t// remember previous tab state\n\t\t\tvar order = acf.getPreference( 'this.tabs' ) || [];\n\t\t\tvar groupIndex = this.get( 'index' );\n\t\t\tvar tabIndex = order[ groupIndex ];\n\n\t\t\tif ( this.tabs[ tabIndex ] && this.tabs[ tabIndex ].isVisible() ) {\n\t\t\t\ttab = this.tabs[ tabIndex ];\n\t\t\t}\n\n\t\t\t// select\n\t\t\tif ( tab ) {\n\t\t\t\tthis.selectTab( tab );\n\t\t\t} else {\n\t\t\t\tthis.closeTabs();\n\t\t\t}\n\n\t\t\t// set local variable used by tabsManager\n\t\t\tthis.set( 'initialized', true );\n\t\t},\n\n\t\tgetVisible: function () {\n\t\t\treturn this.tabs.filter( function ( tab ) {\n\t\t\t\treturn tab.isVisible();\n\t\t\t} );\n\t\t},\n\n\t\tgetActive: function () {\n\t\t\treturn this.active;\n\t\t},\n\n\t\tsetActive: function ( tab ) {\n\t\t\treturn ( this.active = tab );\n\t\t},\n\n\t\thasActive: function () {\n\t\t\treturn this.active !== false;\n\t\t},\n\n\t\tisActive: function ( tab ) {\n\t\t\tvar active = this.getActive();\n\t\t\treturn active && active.cid === tab.cid;\n\t\t},\n\n\t\tcloseActive: function () {\n\t\t\tif ( this.hasActive() ) {\n\t\t\t\tthis.closeTab( this.getActive() );\n\t\t\t}\n\t\t},\n\n\t\topenTab: function ( tab ) {\n\t\t\t// close existing tab\n\t\t\tthis.closeActive();\n\n\t\t\t// open\n\t\t\ttab.open();\n\n\t\t\t// set active\n\t\t\tthis.setActive( tab );\n\t\t},\n\n\t\tcloseTab: function ( tab ) {\n\t\t\t// close\n\t\t\ttab.close();\n\n\t\t\t// set active\n\t\t\tthis.setActive( false );\n\t\t},\n\n\t\tcloseTabs: function () {\n\t\t\tthis.tabs.map( this.closeTab, this );\n\t\t},\n\n\t\tselectTab: function ( tab ) {\n\t\t\t// close other tabs\n\t\t\tthis.tabs.map( function ( t ) {\n\t\t\t\tif ( tab.cid !== t.cid ) {\n\t\t\t\t\tthis.closeTab( t );\n\t\t\t\t}\n\t\t\t}, this );\n\n\t\t\t// open\n\t\t\tthis.openTab( tab );\n\t\t},\n\n\t\taddTab: function ( $a, field ) {\n\t\t\t// create
          • \n\t\t\tvar $li = $( '
          • ' + $a.outerHTML() + '
          • ' );\n\n\t\t\t// add settings type class.\n\t\t\tvar classes = $a.attr( 'class' ).replace( 'acf-tab-button', '' );\n\t\t\t$li.addClass( classes );\n\n\t\t\t// append\n\t\t\tthis.$( 'ul' ).append( $li );\n\n\t\t\t// initialize\n\t\t\tvar tab = new Tab( {\n\t\t\t\t$el: $li,\n\t\t\t\tfield: field,\n\t\t\t\tgroup: this,\n\t\t\t} );\n\n\t\t\t// store\n\t\t\tthis.tabs.push( tab );\n\n\t\t\t// return\n\t\t\treturn tab;\n\t\t},\n\n\t\treset: function () {\n\t\t\t// close existing tab\n\t\t\tthis.closeActive();\n\n\t\t\t// find and active a tab\n\t\t\treturn this.refresh();\n\t\t},\n\n\t\trefresh: function () {\n\t\t\t// bail early if active already exists\n\t\t\tif ( this.hasActive() ) {\n\t\t\t\treturn false;\n\t\t\t}\n\t\t\t// find next active tab\n\t\t\tvar tab = this.getVisible().shift();\n\t\t\t// open tab\n\t\t\tif ( tab ) {\n\t\t\t\tthis.openTab( tab );\n\t\t\t}\n\n\t\t\t// return\n\t\t\treturn tab;\n\t\t},\n\n\t\tonRefresh: function () {\n\t\t\t// only for left placements\n\t\t\tif ( this.get( 'placement' ) !== 'left' ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// vars\n\t\t\tvar $parent = this.$el.parent();\n\t\t\tvar $list = this.$el.children( 'ul' );\n\t\t\tvar attribute = $parent.is( 'td' ) ? 'height' : 'min-height';\n\n\t\t\t// find height (minus 1 for border-bottom)\n\t\t\tvar height = $list.position().top + $list.outerHeight( true ) - 1;\n\n\t\t\t// add css\n\t\t\t$parent.css( attribute, height );\n\t\t},\n\n\t\tonCloseFieldObject: function ( fieldObject ) {\n\t\t\tconst tab = this.getVisible().find( ( item ) => {\n\t\t\t\tconst id = item.$el.closest( 'div[data-id]' ).data( 'id' );\n\t\t\t\tif ( fieldObject.data.id === id ) {\n\t\t\t\t\treturn item;\n\t\t\t\t}\n\t\t\t} );\n\n\t\t\tif ( tab ) {\n\t\t\t\t// Wait for field group drawer to close\n\t\t\t\tsetTimeout( () => {\n\t\t\t\t\tthis.openTab( tab );\n\t\t\t\t}, 300 );\n\t\t\t}\n\t\t},\n\t} );\n\n\tvar Tab = acf.Model.extend( {\n\t\tgroup: false,\n\n\t\tfield: false,\n\n\t\tevents: {\n\t\t\t'click a': 'onClick',\n\t\t},\n\n\t\tindex: function () {\n\t\t\treturn this.$el.index();\n\t\t},\n\n\t\tisVisible: function () {\n\t\t\treturn acf.isVisible( this.$el );\n\t\t},\n\n\t\tisActive: function () {\n\t\t\treturn this.$el.hasClass( 'active' );\n\t\t},\n\n\t\topen: function () {\n\t\t\t// add class\n\t\t\tthis.$el.addClass( 'active' );\n\n\t\t\t// show field\n\t\t\tthis.field.showFields();\n\t\t},\n\n\t\tclose: function () {\n\t\t\t// remove class\n\t\t\tthis.$el.removeClass( 'active' );\n\n\t\t\t// hide field\n\t\t\tthis.field.hideFields();\n\t\t},\n\n\t\tonClick: function ( e, $el ) {\n\t\t\t// prevent default\n\t\t\te.preventDefault();\n\n\t\t\t// toggle\n\t\t\tthis.toggle();\n\t\t},\n\n\t\ttoggle: function () {\n\t\t\t// bail early if already active\n\t\t\tif ( this.isActive() ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// toggle this tab\n\t\t\tthis.group.openTab( this );\n\t\t},\n\t} );\n\n\tvar tabsManager = new acf.Model( {\n\t\tpriority: 50,\n\n\t\tactions: {\n\t\t\tprepare: 'render',\n\t\t\tappend: 'render',\n\t\t\tunload: 'onUnload',\n\t\t\tshow: 'render',\n\t\t\tinvalid_field: 'onInvalidField',\n\t\t},\n\n\t\tfindTabs: function () {\n\t\t\treturn $( '.acf-tab-wrap' );\n\t\t},\n\n\t\tgetTabs: function () {\n\t\t\treturn acf.getInstances( this.findTabs() );\n\t\t},\n\n\t\trender: function ( $el ) {\n\t\t\tthis.getTabs().map( function ( tabs ) {\n\t\t\t\tif ( ! tabs.get( 'initialized' ) ) {\n\t\t\t\t\ttabs.initializeTabs();\n\t\t\t\t}\n\t\t\t} );\n\t\t},\n\n\t\tonInvalidField: function ( field ) {\n\t\t\t// bail early if busy\n\t\t\tif ( this.busy ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// ignore if not hidden by tab\n\t\t\tif ( ! field.hiddenByTab ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// toggle tab\n\t\t\tfield.hiddenByTab.toggle();\n\n\t\t\t// ignore other invalid fields\n\t\t\tthis.busy = true;\n\t\t\tthis.setTimeout( function () {\n\t\t\t\tthis.busy = false;\n\t\t\t}, 100 );\n\t\t},\n\n\t\tonUnload: function () {\n\t\t\t// vars\n\t\t\tvar order = [];\n\n\t\t\t// loop\n\t\t\tthis.getTabs().map( function ( group ) {\n\t\t\t\t// Do not save selected tab on field settings, or an acf-advanced-settings when unloading\n\t\t\t\tif (\n\t\t\t\t\tgroup.$el.children( '.acf-field-settings-tab-bar' )\n\t\t\t\t\t\t.length ||\n\t\t\t\t\tgroup.$el.parents( '#acf-advanced-settings.postbox' ).length\n\t\t\t\t) {\n\t\t\t\t\treturn true;\n\t\t\t\t}\n\n\t\t\t\tvar active = group.hasActive() ? group.getActive().index() : 0;\n\t\t\t\torder.push( active );\n\t\t\t} );\n\n\t\t\t// bail if no tabs\n\t\t\tif ( ! order.length ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// update\n\t\t\tacf.setPreference( 'this.tabs', order );\n\t\t},\n\t} );\n} )( jQuery );\n","( function ( $, undefined ) {\n\tvar Field = acf.Field.extend( {\n\t\ttype: 'taxonomy',\n\n\t\tdata: {\n\t\t\tftype: 'select',\n\t\t},\n\n\t\tselect2: false,\n\n\t\twait: 'load',\n\n\t\tevents: {\n\t\t\t'click a[data-name=\"add\"]': 'onClickAdd',\n\t\t\t'click input[type=\"radio\"]': 'onClickRadio',\n\t\t\tremoveField: 'onRemove',\n\t\t},\n\n\t\t$control: function () {\n\t\t\treturn this.$( '.acf-taxonomy-field' );\n\t\t},\n\n\t\t$input: function () {\n\t\t\treturn this.getRelatedPrototype().$input.apply( this, arguments );\n\t\t},\n\n\t\tgetRelatedType: function () {\n\t\t\t// vars\n\t\t\tvar fieldType = this.get( 'ftype' );\n\n\t\t\t// normalize\n\t\t\tif ( fieldType == 'multi_select' ) {\n\t\t\t\tfieldType = 'select';\n\t\t\t}\n\n\t\t\t// return\n\t\t\treturn fieldType;\n\t\t},\n\n\t\tgetRelatedPrototype: function () {\n\t\t\treturn acf.getFieldType( this.getRelatedType() ).prototype;\n\t\t},\n\n\t\tgetValue: function () {\n\t\t\treturn this.getRelatedPrototype().getValue.apply( this, arguments );\n\t\t},\n\n\t\tsetValue: function () {\n\t\t\treturn this.getRelatedPrototype().setValue.apply( this, arguments );\n\t\t},\n\n\t\tinitialize: function () {\n\t\t\tthis.getRelatedPrototype().initialize.apply( this, arguments );\n\t\t},\n\n\t\tonRemove: function () {\n\t\t\tvar proto = this.getRelatedPrototype();\n\t\t\tif ( proto.onRemove ) {\n\t\t\t\tproto.onRemove.apply( this, arguments );\n\t\t\t}\n\t\t},\n\n\t\tonClickAdd: function ( e, $el ) {\n\t\t\t// vars\n\t\t\tvar field = this;\n\t\t\tvar popup = false;\n\t\t\tvar $form = false;\n\t\t\tvar $name = false;\n\t\t\tvar $parent = false;\n\t\t\tvar $button = false;\n\t\t\tvar $message = false;\n\t\t\tvar notice = false;\n\n\t\t\t// step 1.\n\t\t\tvar step1 = function () {\n\t\t\t\t// popup\n\t\t\t\tpopup = acf.newPopup( {\n\t\t\t\t\ttitle: $el.attr( 'title' ),\n\t\t\t\t\tloading: true,\n\t\t\t\t\twidth: '300px',\n\t\t\t\t} );\n\n\t\t\t\t// ajax\n\t\t\t\tvar ajaxData = {\n\t\t\t\t\taction: 'acf/fields/taxonomy/add_term',\n\t\t\t\t\tfield_key: field.get( 'key' ),\n\t\t\t\t};\n\n\t\t\t\t// get HTML\n\t\t\t\t$.ajax( {\n\t\t\t\t\turl: acf.get( 'ajaxurl' ),\n\t\t\t\t\tdata: acf.prepareForAjax( ajaxData ),\n\t\t\t\t\ttype: 'post',\n\t\t\t\t\tdataType: 'html',\n\t\t\t\t\tsuccess: step2,\n\t\t\t\t} );\n\t\t\t};\n\n\t\t\t// step 2.\n\t\t\tvar step2 = function ( html ) {\n\t\t\t\t// update popup\n\t\t\t\tpopup.loading( false );\n\t\t\t\tpopup.content( html );\n\n\t\t\t\t// vars\n\t\t\t\t$form = popup.$( 'form' );\n\t\t\t\t$name = popup.$( 'input[name=\"term_name\"]' );\n\t\t\t\t$parent = popup.$( 'select[name=\"term_parent\"]' );\n\t\t\t\t$button = popup.$( '.acf-submit-button' );\n\n\t\t\t\t// focus\n\t\t\t\t$name.trigger( 'focus' );\n\n\t\t\t\t// submit form\n\t\t\t\tpopup.on( 'submit', 'form', step3 );\n\t\t\t};\n\n\t\t\t// step 3.\n\t\t\tvar step3 = function ( e, $el ) {\n\t\t\t\t// prevent\n\t\t\t\te.preventDefault();\n\t\t\t\te.stopImmediatePropagation();\n\n\t\t\t\t// basic validation\n\t\t\t\tif ( $name.val() === '' ) {\n\t\t\t\t\t$name.trigger( 'focus' );\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\n\t\t\t\t// disable\n\t\t\t\tacf.startButtonLoading( $button );\n\n\t\t\t\t// ajax\n\t\t\t\tvar ajaxData = {\n\t\t\t\t\taction: 'acf/fields/taxonomy/add_term',\n\t\t\t\t\tfield_key: field.get( 'key' ),\n\t\t\t\t\tterm_name: $name.val(),\n\t\t\t\t\tterm_parent: $parent.length ? $parent.val() : 0,\n\t\t\t\t};\n\n\t\t\t\t$.ajax( {\n\t\t\t\t\turl: acf.get( 'ajaxurl' ),\n\t\t\t\t\tdata: acf.prepareForAjax( ajaxData ),\n\t\t\t\t\ttype: 'post',\n\t\t\t\t\tdataType: 'json',\n\t\t\t\t\tsuccess: step4,\n\t\t\t\t} );\n\t\t\t};\n\n\t\t\t// step 4.\n\t\t\tvar step4 = function ( json ) {\n\t\t\t\t// enable\n\t\t\t\tacf.stopButtonLoading( $button );\n\n\t\t\t\t// remove prev notice\n\t\t\t\tif ( notice ) {\n\t\t\t\t\tnotice.remove();\n\t\t\t\t}\n\n\t\t\t\t// success\n\t\t\t\tif ( acf.isAjaxSuccess( json ) ) {\n\t\t\t\t\t// clear name\n\t\t\t\t\t$name.val( '' );\n\n\t\t\t\t\t// update term lists\n\t\t\t\t\tstep5( json.data );\n\n\t\t\t\t\t// notice\n\t\t\t\t\tnotice = acf.newNotice( {\n\t\t\t\t\t\ttype: 'success',\n\t\t\t\t\t\ttext: acf.getAjaxMessage( json ),\n\t\t\t\t\t\ttarget: $form,\n\t\t\t\t\t\ttimeout: 2000,\n\t\t\t\t\t\tdismiss: false,\n\t\t\t\t\t} );\n\t\t\t\t} else {\n\t\t\t\t\t// notice\n\t\t\t\t\tnotice = acf.newNotice( {\n\t\t\t\t\t\ttype: 'error',\n\t\t\t\t\t\ttext: acf.getAjaxError( json ),\n\t\t\t\t\t\ttarget: $form,\n\t\t\t\t\t\ttimeout: 2000,\n\t\t\t\t\t\tdismiss: false,\n\t\t\t\t\t} );\n\t\t\t\t}\n\n\t\t\t\t// focus\n\t\t\t\t$name.trigger( 'focus' );\n\t\t\t};\n\n\t\t\t// step 5.\n\t\t\tvar step5 = function ( term ) {\n\t\t\t\t// update parent dropdown\n\t\t\t\tvar $option = $(\n\t\t\t\t\t''\n\t\t\t\t);\n\t\t\t\tif ( term.term_parent ) {\n\t\t\t\t\t$parent\n\t\t\t\t\t\t.children( 'option[value=\"' + term.term_parent + '\"]' )\n\t\t\t\t\t\t.after( $option );\n\t\t\t\t} else {\n\t\t\t\t\t$parent.append( $option );\n\t\t\t\t}\n\n\t\t\t\t// add this new term to all taxonomy field\n\t\t\t\tvar fields = acf.getFields( {\n\t\t\t\t\ttype: 'taxonomy',\n\t\t\t\t} );\n\n\t\t\t\tfields.map( function ( otherField ) {\n\t\t\t\t\tif (\n\t\t\t\t\t\totherField.get( 'taxonomy' ) == field.get( 'taxonomy' )\n\t\t\t\t\t) {\n\t\t\t\t\t\totherField.appendTerm( term );\n\t\t\t\t\t}\n\t\t\t\t} );\n\n\t\t\t\t// select\n\t\t\t\tfield.selectTerm( term.term_id );\n\t\t\t};\n\n\t\t\t// run\n\t\t\tstep1();\n\t\t},\n\n\t\tappendTerm: function ( term ) {\n\t\t\tif ( this.getRelatedType() == 'select' ) {\n\t\t\t\tthis.appendTermSelect( term );\n\t\t\t} else {\n\t\t\t\tthis.appendTermCheckbox( term );\n\t\t\t}\n\t\t},\n\n\t\tappendTermSelect: function ( term ) {\n\t\t\tthis.select2.addOption( {\n\t\t\t\tid: term.term_id,\n\t\t\t\ttext: term.term_label,\n\t\t\t} );\n\t\t},\n\n\t\tappendTermCheckbox: function ( term ) {\n\t\t\t// vars\n\t\t\tvar name = this.$( '[name]:first' ).attr( 'name' );\n\t\t\tvar $ul = this.$( 'ul:first' );\n\n\t\t\t// allow multiple selection\n\t\t\tif ( this.getRelatedType() == 'checkbox' ) {\n\t\t\t\tname += '[]';\n\t\t\t}\n\n\t\t\t// create new li\n\t\t\tvar $li = $(\n\t\t\t\t[\n\t\t\t\t\t'
          • ',\n\t\t\t\t\t'',\n\t\t\t\t\t'
          • ',\n\t\t\t\t].join( '' )\n\t\t\t);\n\n\t\t\t// find parent\n\t\t\tif ( term.term_parent ) {\n\t\t\t\t// vars\n\t\t\t\tvar $parent = $ul.find(\n\t\t\t\t\t'li[data-id=\"' + term.term_parent + '\"]'\n\t\t\t\t);\n\n\t\t\t\t// update vars\n\t\t\t\t$ul = $parent.children( 'ul' );\n\n\t\t\t\t// create ul\n\t\t\t\tif ( ! $ul.exists() ) {\n\t\t\t\t\t$ul = $( '
              ' );\n\t\t\t\t\t$parent.append( $ul );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// append\n\t\t\t$ul.append( $li );\n\t\t},\n\n\t\tselectTerm: function ( id ) {\n\t\t\tif ( this.getRelatedType() == 'select' ) {\n\t\t\t\tthis.select2.selectOption( id );\n\t\t\t} else {\n\t\t\t\tvar $input = this.$( 'input[value=\"' + id + '\"]' );\n\t\t\t\t$input.prop( 'checked', true ).trigger( 'change' );\n\t\t\t}\n\t\t},\n\n\t\tonClickRadio: function ( e, $el ) {\n\t\t\t// vars\n\t\t\tvar $label = $el.parent( 'label' );\n\t\t\tvar selected = $label.hasClass( 'selected' );\n\n\t\t\t// remove previous selected\n\t\t\tthis.$( '.selected' ).removeClass( 'selected' );\n\n\t\t\t// add active class\n\t\t\t$label.addClass( 'selected' );\n\n\t\t\t// allow null\n\t\t\tif ( this.get( 'allow_null' ) && selected ) {\n\t\t\t\t$label.removeClass( 'selected' );\n\t\t\t\t$el.prop( 'checked', false ).trigger( 'change' );\n\t\t\t}\n\t\t},\n\t} );\n\n\tacf.registerFieldType( Field );\n} )( jQuery );\n","( function ( $, undefined ) {\n\tvar Field = acf.models.DatePickerField.extend( {\n\t\ttype: 'time_picker',\n\n\t\t$control: function () {\n\t\t\treturn this.$( '.acf-time-picker' );\n\t\t},\n\n\t\tinitialize: function () {\n\t\t\t// vars\n\t\t\tvar $input = this.$input();\n\t\t\tvar $inputText = this.$inputText();\n\n\t\t\t// args\n\t\t\tvar args = {\n\t\t\t\ttimeFormat: this.get( 'time_format' ),\n\t\t\t\taltField: $input,\n\t\t\t\taltFieldTimeOnly: false,\n\t\t\t\taltTimeFormat: 'HH:mm:ss',\n\t\t\t\tshowButtonPanel: true,\n\t\t\t\tcontrolType: 'select',\n\t\t\t\toneLine: true,\n\t\t\t\tcloseText: acf.get( 'dateTimePickerL10n' ).selectText,\n\t\t\t\ttimeOnly: true,\n\t\t\t};\n\n\t\t\t// add custom 'Close = Select' functionality\n\t\t\targs.onClose = function ( value, dp_instance, t_instance ) {\n\t\t\t\t// vars\n\t\t\t\tvar $close = dp_instance.dpDiv.find( '.ui-datepicker-close' );\n\n\t\t\t\t// if clicking close button\n\t\t\t\tif ( ! value && $close.is( ':hover' ) ) {\n\t\t\t\t\tt_instance._updateDateTime();\n\t\t\t\t}\n\t\t\t};\n\n\t\t\t// filter\n\t\t\targs = acf.applyFilters( 'time_picker_args', args, this );\n\n\t\t\t// add date time picker\n\t\t\tacf.newTimePicker( $inputText, args );\n\n\t\t\t// action\n\t\t\tacf.doAction( 'time_picker_init', $inputText, args, this );\n\t\t},\n\t} );\n\n\tacf.registerFieldType( Field );\n\n\t// add\n\tacf.newTimePicker = function ( $input, args ) {\n\t\t// bail early if no datepicker library\n\t\tif ( typeof $.timepicker === 'undefined' ) {\n\t\t\treturn false;\n\t\t}\n\n\t\t// defaults\n\t\targs = args || {};\n\n\t\t// initialize\n\t\t$input.timepicker( args );\n\n\t\t// wrap the datepicker (only if it hasn't already been wrapped)\n\t\tif ( $( 'body > #ui-datepicker-div' ).exists() ) {\n\t\t\t$( 'body > #ui-datepicker-div' ).wrap(\n\t\t\t\t'
              '\n\t\t\t);\n\t\t}\n\t};\n} )( jQuery );\n","( function ( $, undefined ) {\n\tvar Field = acf.Field.extend( {\n\t\ttype: 'true_false',\n\n\t\tevents: {\n\t\t\t'change .acf-switch-input': 'onChange',\n\t\t\t'focus .acf-switch-input': 'onFocus',\n\t\t\t'blur .acf-switch-input': 'onBlur',\n\t\t\t'keypress .acf-switch-input': 'onKeypress',\n\t\t},\n\n\t\t$input: function () {\n\t\t\treturn this.$( 'input[type=\"checkbox\"]' );\n\t\t},\n\n\t\t$switch: function () {\n\t\t\treturn this.$( '.acf-switch' );\n\t\t},\n\n\t\tgetValue: function () {\n\t\t\treturn this.$input().prop( 'checked' ) ? 1 : 0;\n\t\t},\n\n\t\tinitialize: function () {\n\t\t\tthis.render();\n\t\t},\n\n\t\trender: function () {\n\t\t\t// vars\n\t\t\tvar $switch = this.$switch();\n\n\t\t\t// bail early if no $switch\n\t\t\tif ( ! $switch.length ) return;\n\n\t\t\t// vars\n\t\t\tvar $on = $switch.children( '.acf-switch-on' );\n\t\t\tvar $off = $switch.children( '.acf-switch-off' );\n\t\t\tvar width = Math.max( $on.width(), $off.width() );\n\n\t\t\t// bail early if no width\n\t\t\tif ( ! width ) return;\n\n\t\t\t// set widths\n\t\t\t$on.css( 'min-width', width );\n\t\t\t$off.css( 'min-width', width );\n\t\t},\n\n\t\tswitchOn: function () {\n\t\t\tthis.$input().prop( 'checked', true );\n\t\t\tthis.$switch().addClass( '-on' );\n\t\t},\n\n\t\tswitchOff: function () {\n\t\t\tthis.$input().prop( 'checked', false );\n\t\t\tthis.$switch().removeClass( '-on' );\n\t\t},\n\n\t\tonChange: function ( e, $el ) {\n\t\t\tif ( $el.prop( 'checked' ) ) {\n\t\t\t\tthis.switchOn();\n\t\t\t} else {\n\t\t\t\tthis.switchOff();\n\t\t\t}\n\t\t},\n\n\t\tonFocus: function ( e, $el ) {\n\t\t\tthis.$switch().addClass( '-focus' );\n\t\t},\n\n\t\tonBlur: function ( e, $el ) {\n\t\t\tthis.$switch().removeClass( '-focus' );\n\t\t},\n\n\t\tonKeypress: function ( e, $el ) {\n\t\t\t// left\n\t\t\tif ( e.keyCode === 37 ) {\n\t\t\t\treturn this.switchOff();\n\t\t\t}\n\n\t\t\t// right\n\t\t\tif ( e.keyCode === 39 ) {\n\t\t\t\treturn this.switchOn();\n\t\t\t}\n\t\t},\n\t} );\n\n\tacf.registerFieldType( Field );\n} )( jQuery );\n","( function ( $, undefined ) {\n\tvar Field = acf.Field.extend( {\n\t\ttype: 'url',\n\n\t\tevents: {\n\t\t\t'keyup input[type=\"url\"]': 'onkeyup',\n\t\t},\n\n\t\t$control: function () {\n\t\t\treturn this.$( '.acf-input-wrap' );\n\t\t},\n\n\t\t$input: function () {\n\t\t\treturn this.$( 'input[type=\"url\"]' );\n\t\t},\n\n\t\tinitialize: function () {\n\t\t\tthis.render();\n\t\t},\n\n\t\tisValid: function () {\n\t\t\t// vars\n\t\t\tvar val = this.val();\n\n\t\t\t// bail early if no val\n\t\t\tif ( ! val ) {\n\t\t\t\treturn false;\n\t\t\t}\n\n\t\t\t// url\n\t\t\tif ( val.indexOf( '://' ) !== -1 ) {\n\t\t\t\treturn true;\n\t\t\t}\n\n\t\t\t// protocol relative url\n\t\t\tif ( val.indexOf( '//' ) === 0 ) {\n\t\t\t\treturn true;\n\t\t\t}\n\n\t\t\t// return\n\t\t\treturn false;\n\t\t},\n\n\t\trender: function () {\n\t\t\t// add class\n\t\t\tif ( this.isValid() ) {\n\t\t\t\tthis.$control().addClass( '-valid' );\n\t\t\t} else {\n\t\t\t\tthis.$control().removeClass( '-valid' );\n\t\t\t}\n\t\t},\n\n\t\tonkeyup: function ( e, $el ) {\n\t\t\tthis.render();\n\t\t},\n\t} );\n\n\tacf.registerFieldType( Field );\n} )( jQuery );\n","( function ( $, undefined ) {\n\tvar Field = acf.models.SelectField.extend( {\n\t\ttype: 'user',\n\t} );\n\n\tacf.registerFieldType( Field );\n\n\tacf.addFilter(\n\t\t'select2_ajax_data',\n\t\tfunction ( data, args, $input, field, select2 ) {\n\t\t\tif ( ! field ) {\n\t\t\t\treturn data;\n\t\t\t}\n\n\t\t\tconst query_nonce = field.get( 'queryNonce' );\n\t\t\tif ( query_nonce && query_nonce.length ) {\n\t\t\t\tdata.user_query_nonce = query_nonce;\n\t\t\t}\n\n\t\t\treturn data;\n\t\t}\n\t);\n} )( jQuery );\n","( function ( $, undefined ) {\n\tvar Field = acf.Field.extend( {\n\t\ttype: 'wysiwyg',\n\n\t\twait: 'load',\n\n\t\tevents: {\n\t\t\t'mousedown .acf-editor-wrap.delay': 'onMousedown',\n\t\t\tunmountField: 'disableEditor',\n\t\t\tremountField: 'enableEditor',\n\t\t\tremoveField: 'disableEditor',\n\t\t},\n\n\t\t$control: function () {\n\t\t\treturn this.$( '.acf-editor-wrap' );\n\t\t},\n\n\t\t$input: function () {\n\t\t\treturn this.$( 'textarea' );\n\t\t},\n\n\t\tgetMode: function () {\n\t\t\treturn this.$control().hasClass( 'tmce-active' )\n\t\t\t\t? 'visual'\n\t\t\t\t: 'text';\n\t\t},\n\n\t\tinitialize: function () {\n\t\t\t// initializeEditor if no delay\n\t\t\tif ( ! this.$control().hasClass( 'delay' ) ) {\n\t\t\t\tthis.initializeEditor();\n\t\t\t}\n\t\t},\n\n\t\tinitializeEditor: function () {\n\t\t\t// vars\n\t\t\tvar $wrap = this.$control();\n\t\t\tvar $textarea = this.$input();\n\t\t\tvar args = {\n\t\t\t\ttinymce: true,\n\t\t\t\tquicktags: true,\n\t\t\t\ttoolbar: this.get( 'toolbar' ),\n\t\t\t\tmode: this.getMode(),\n\t\t\t\tfield: this,\n\t\t\t};\n\n\t\t\t// generate new id\n\t\t\tvar oldId = $textarea.attr( 'id' );\n\t\t\tvar newId = acf.uniqueId( 'acf-editor-' );\n\n\t\t\t// Backup textarea data.\n\t\t\tvar inputData = $textarea.data();\n\t\t\tvar inputVal = $textarea.val();\n\n\t\t\t// rename\n\t\t\tacf.rename( {\n\t\t\t\ttarget: $wrap,\n\t\t\t\tsearch: oldId,\n\t\t\t\treplace: newId,\n\t\t\t\tdestructive: true,\n\t\t\t} );\n\n\t\t\t// update id\n\t\t\tthis.set( 'id', newId, true );\n\n\t\t\t// apply data to new textarea (acf.rename creates a new textarea element due to destructive mode)\n\t\t\t// fixes bug where conditional logic \"disabled\" is lost during \"screen_check\"\n\t\t\tthis.$input().data( inputData ).val( inputVal );\n\n\t\t\t// initialize\n\t\t\tacf.tinymce.initialize( newId, args );\n\t\t},\n\n\t\tonMousedown: function ( e ) {\n\t\t\t// prevent default\n\t\t\te.preventDefault();\n\n\t\t\t// remove delay class\n\t\t\tvar $wrap = this.$control();\n\t\t\t$wrap.removeClass( 'delay' );\n\t\t\t$wrap.find( '.acf-editor-toolbar' ).remove();\n\n\t\t\t// initialize\n\t\t\tthis.initializeEditor();\n\t\t},\n\n\t\tenableEditor: function () {\n\t\t\tif ( this.getMode() == 'visual' ) {\n\t\t\t\tacf.tinymce.enable( this.get( 'id' ) );\n\t\t\t}\n\t\t},\n\n\t\tdisableEditor: function () {\n\t\t\tacf.tinymce.destroy( this.get( 'id' ) );\n\t\t},\n\t} );\n\n\tacf.registerFieldType( Field );\n} )( jQuery );\n","( function ( $, undefined ) {\n\t// vars\n\tvar storage = [];\n\n\t/**\n\t * acf.Field\n\t *\n\t * description\n\t *\n\t * @date\t23/3/18\n\t * @since\t5.6.9\n\t *\n\t * @param\ttype $var Description. Default.\n\t * @return\ttype Description.\n\t */\n\n\tacf.Field = acf.Model.extend( {\n\t\t// field type\n\t\ttype: '',\n\n\t\t// class used to avoid nested event triggers\n\t\teventScope: '.acf-field',\n\n\t\t// initialize events on 'ready'\n\t\twait: 'ready',\n\n\t\t/**\n\t\t * setup\n\t\t *\n\t\t * Called during the constructor function to setup this field ready for initialization\n\t\t *\n\t\t * @date\t8/5/18\n\t\t * @since\t5.6.9\n\t\t *\n\t\t * @param\tjQuery $field The field element.\n\t\t * @return\tvoid\n\t\t */\n\n\t\tsetup: function ( $field ) {\n\t\t\t// set $el\n\t\t\tthis.$el = $field;\n\n\t\t\t// inherit $field data\n\t\t\tthis.inherit( $field );\n\n\t\t\t// inherit controll data\n\t\t\tthis.inherit( this.$control() );\n\t\t},\n\n\t\t/**\n\t\t * val\n\t\t *\n\t\t * Sets or returns the field's value\n\t\t *\n\t\t * @date\t8/5/18\n\t\t * @since\t5.6.9\n\t\t *\n\t\t * @param\tmixed val Optional. The value to set\n\t\t * @return\tmixed\n\t\t */\n\n\t\tval: function ( val ) {\n\t\t\t// Set.\n\t\t\tif ( val !== undefined ) {\n\t\t\t\treturn this.setValue( val );\n\n\t\t\t\t// Get.\n\t\t\t} else {\n\t\t\t\treturn this.prop( 'disabled' ) ? null : this.getValue();\n\t\t\t}\n\t\t},\n\n\t\t/**\n\t\t * getValue\n\t\t *\n\t\t * returns the field's value\n\t\t *\n\t\t * @date\t8/5/18\n\t\t * @since\t5.6.9\n\t\t *\n\t\t * @param\tvoid\n\t\t * @return\tmixed\n\t\t */\n\n\t\tgetValue: function () {\n\t\t\treturn this.$input().val();\n\t\t},\n\n\t\t/**\n\t\t * setValue\n\t\t *\n\t\t * sets the field's value and returns true if changed\n\t\t *\n\t\t * @date\t8/5/18\n\t\t * @since\t5.6.9\n\t\t *\n\t\t * @param\tmixed val\n\t\t * @return\tboolean. True if changed.\n\t\t */\n\n\t\tsetValue: function ( val ) {\n\t\t\treturn acf.val( this.$input(), val );\n\t\t},\n\n\t\t/**\n\t\t * __\n\t\t *\n\t\t * i18n helper to be removed\n\t\t *\n\t\t * @date\t8/5/18\n\t\t * @since\t5.6.9\n\t\t *\n\t\t * @param\ttype $var Description. Default.\n\t\t * @return\ttype Description.\n\t\t */\n\n\t\t__: function ( string ) {\n\t\t\treturn acf._e( this.type, string );\n\t\t},\n\n\t\t/**\n\t\t * $control\n\t\t *\n\t\t * returns the control jQuery element used for inheriting data. Uses this.control setting.\n\t\t *\n\t\t * @date\t8/5/18\n\t\t * @since\t5.6.9\n\t\t *\n\t\t * @param\tvoid\n\t\t * @return\tjQuery\n\t\t */\n\n\t\t$control: function () {\n\t\t\treturn false;\n\t\t},\n\n\t\t/**\n\t\t * $input\n\t\t *\n\t\t * returns the input jQuery element used for saving values. Uses this.input setting.\n\t\t *\n\t\t * @date\t8/5/18\n\t\t * @since\t5.6.9\n\t\t *\n\t\t * @param\tvoid\n\t\t * @return\tjQuery\n\t\t */\n\n\t\t$input: function () {\n\t\t\treturn this.$( '[name]:first' );\n\t\t},\n\n\t\t/**\n\t\t * $inputWrap\n\t\t *\n\t\t * description\n\t\t *\n\t\t * @date\t12/5/18\n\t\t * @since\t5.6.9\n\t\t *\n\t\t * @param\ttype $var Description. Default.\n\t\t * @return\ttype Description.\n\t\t */\n\n\t\t$inputWrap: function () {\n\t\t\treturn this.$( '.acf-input:first' );\n\t\t},\n\n\t\t/**\n\t\t * $inputWrap\n\t\t *\n\t\t * description\n\t\t *\n\t\t * @date\t12/5/18\n\t\t * @since\t5.6.9\n\t\t *\n\t\t * @param\ttype $var Description. Default.\n\t\t * @return\ttype Description.\n\t\t */\n\n\t\t$labelWrap: function () {\n\t\t\treturn this.$( '.acf-label:first' );\n\t\t},\n\n\t\t/**\n\t\t * getInputName\n\t\t *\n\t\t * Returns the field's input name\n\t\t *\n\t\t * @date\t8/5/18\n\t\t * @since\t5.6.9\n\t\t *\n\t\t * @param\tvoid\n\t\t * @return\tstring\n\t\t */\n\n\t\tgetInputName: function () {\n\t\t\treturn this.$input().attr( 'name' ) || '';\n\t\t},\n\n\t\t/**\n\t\t * parent\n\t\t *\n\t\t * returns the field's parent field or false on failure.\n\t\t *\n\t\t * @date\t8/5/18\n\t\t * @since\t5.6.9\n\t\t *\n\t\t * @param\tvoid\n\t\t * @return\tobject|false\n\t\t */\n\n\t\tparent: function () {\n\t\t\t// vars\n\t\t\tvar parents = this.parents();\n\n\t\t\t// return\n\t\t\treturn parents.length ? parents[ 0 ] : false;\n\t\t},\n\n\t\t/**\n\t\t * parents\n\t\t *\n\t\t * description\n\t\t *\n\t\t * @date\t9/7/18\n\t\t * @since\t5.6.9\n\t\t *\n\t\t * @param\ttype $var Description. Default.\n\t\t * @return\ttype Description.\n\t\t */\n\n\t\tparents: function () {\n\t\t\t// vars\n\t\t\tvar $parents = this.$el.parents( '.acf-field' );\n\n\t\t\t// convert\n\t\t\tvar parents = acf.getFields( $parents );\n\n\t\t\t// return\n\t\t\treturn parents;\n\t\t},\n\n\t\tshow: function ( lockKey, context ) {\n\t\t\t// show field and store result\n\t\t\tvar changed = acf.show( this.$el, lockKey );\n\n\t\t\t// do action if visibility has changed\n\t\t\tif ( changed ) {\n\t\t\t\tthis.prop( 'hidden', false );\n\t\t\t\tacf.doAction( 'show_field', this, context );\n\n\t\t\t\tif ( context === 'conditional_logic' ) {\n\t\t\t\t\tthis.setFieldSettingsLastVisible();\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// return\n\t\t\treturn changed;\n\t\t},\n\n\t\thide: function ( lockKey, context ) {\n\t\t\t// hide field and store result\n\t\t\tvar changed = acf.hide( this.$el, lockKey );\n\n\t\t\t// do action if visibility has changed\n\t\t\tif ( changed ) {\n\t\t\t\tthis.prop( 'hidden', true );\n\t\t\t\tacf.doAction( 'hide_field', this, context );\n\n\t\t\t\tif ( context === 'conditional_logic' ) {\n\t\t\t\t\tthis.setFieldSettingsLastVisible();\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// return\n\t\t\treturn changed;\n\t\t},\n\n\t\tsetFieldSettingsLastVisible: function () {\n\t\t\t// Ensure this conditional logic trigger has happened inside a field settings tab.\n\t\t\tvar $parents = this.$el.parents( '.acf-field-settings-main' );\n\t\t\tif ( ! $parents.length ) return;\n\n\t\t\tvar $fields = $parents.find( '.acf-field' );\n\n\t\t\t$fields.removeClass( 'acf-last-visible' );\n\t\t\t$fields.not( '.acf-hidden' ).last().addClass( 'acf-last-visible' );\n\t\t},\n\n\t\tenable: function ( lockKey, context ) {\n\t\t\t// enable field and store result\n\t\t\tvar changed = acf.enable( this.$el, lockKey );\n\n\t\t\t// do action if disabled has changed\n\t\t\tif ( changed ) {\n\t\t\t\tthis.prop( 'disabled', false );\n\t\t\t\tacf.doAction( 'enable_field', this, context );\n\t\t\t}\n\n\t\t\t// return\n\t\t\treturn changed;\n\t\t},\n\n\t\tdisable: function ( lockKey, context ) {\n\t\t\t// disabled field and store result\n\t\t\tvar changed = acf.disable( this.$el, lockKey );\n\n\t\t\t// do action if disabled has changed\n\t\t\tif ( changed ) {\n\t\t\t\tthis.prop( 'disabled', true );\n\t\t\t\tacf.doAction( 'disable_field', this, context );\n\t\t\t}\n\n\t\t\t// return\n\t\t\treturn changed;\n\t\t},\n\n\t\tshowEnable: function ( lockKey, context ) {\n\t\t\t// enable\n\t\t\tthis.enable.apply( this, arguments );\n\n\t\t\t// show and return true if changed\n\t\t\treturn this.show.apply( this, arguments );\n\t\t},\n\n\t\thideDisable: function ( lockKey, context ) {\n\t\t\t// disable\n\t\t\tthis.disable.apply( this, arguments );\n\n\t\t\t// hide and return true if changed\n\t\t\treturn this.hide.apply( this, arguments );\n\t\t},\n\n\t\tshowNotice: function ( props ) {\n\t\t\t// ensure object\n\t\t\tif ( typeof props !== 'object' ) {\n\t\t\t\tprops = { text: props };\n\t\t\t}\n\n\t\t\t// remove old notice\n\t\t\tif ( this.notice ) {\n\t\t\t\tthis.notice.remove();\n\t\t\t}\n\n\t\t\t// create new notice\n\t\t\tprops.target = this.$inputWrap();\n\t\t\tthis.notice = acf.newNotice( props );\n\t\t},\n\n\t\tremoveNotice: function ( timeout ) {\n\t\t\tif ( this.notice ) {\n\t\t\t\tthis.notice.away( timeout || 0 );\n\t\t\t\tthis.notice = false;\n\t\t\t}\n\t\t},\n\n\t\tshowError: function ( message ) {\n\t\t\t// add class\n\t\t\tthis.$el.addClass( 'acf-error' );\n\n\t\t\t// add message\n\t\t\tif ( message !== undefined ) {\n\t\t\t\tthis.showNotice( {\n\t\t\t\t\ttext: message,\n\t\t\t\t\ttype: 'error',\n\t\t\t\t\tdismiss: false,\n\t\t\t\t} );\n\t\t\t}\n\n\t\t\t// action\n\t\t\tacf.doAction( 'invalid_field', this );\n\n\t\t\t// add event\n\t\t\tthis.$el.one(\n\t\t\t\t'focus change',\n\t\t\t\t'input, select, textarea',\n\t\t\t\t$.proxy( this.removeError, this )\n\t\t\t);\n\t\t},\n\n\t\tremoveError: function () {\n\t\t\t// remove class\n\t\t\tthis.$el.removeClass( 'acf-error' );\n\n\t\t\t// remove notice\n\t\t\tthis.removeNotice( 250 );\n\n\t\t\t// action\n\t\t\tacf.doAction( 'valid_field', this );\n\t\t},\n\n\t\ttrigger: function ( name, args, bubbles ) {\n\t\t\t// allow some events to bubble\n\t\t\tif ( name == 'invalidField' ) {\n\t\t\t\tbubbles = true;\n\t\t\t}\n\n\t\t\t// return\n\t\t\treturn acf.Model.prototype.trigger.apply( this, [\n\t\t\t\tname,\n\t\t\t\targs,\n\t\t\t\tbubbles,\n\t\t\t] );\n\t\t},\n\t} );\n\n\t/**\n\t * newField\n\t *\n\t * description\n\t *\n\t * @date\t14/12/17\n\t * @since\t5.6.5\n\t *\n\t * @param\ttype $var Description. Default.\n\t * @return\ttype Description.\n\t */\n\n\tacf.newField = function ( $field ) {\n\t\t// vars\n\t\tvar type = $field.data( 'type' );\n\t\tvar mid = modelId( type );\n\t\tvar model = acf.models[ mid ] || acf.Field;\n\n\t\t// instantiate\n\t\tvar field = new model( $field );\n\n\t\t// actions\n\t\tacf.doAction( 'new_field', field );\n\n\t\t// return\n\t\treturn field;\n\t};\n\n\t/**\n\t * mid\n\t *\n\t * Calculates the model ID for a field type\n\t *\n\t * @date\t15/12/17\n\t * @since\t5.6.5\n\t *\n\t * @param\tstring type\n\t * @return\tstring\n\t */\n\n\tvar modelId = function ( type ) {\n\t\treturn acf.strPascalCase( type || '' ) + 'Field';\n\t};\n\n\t/**\n\t * registerFieldType\n\t *\n\t * description\n\t *\n\t * @date\t14/12/17\n\t * @since\t5.6.5\n\t *\n\t * @param\ttype $var Description. Default.\n\t * @return\ttype Description.\n\t */\n\n\tacf.registerFieldType = function ( model ) {\n\t\t// vars\n\t\tvar proto = model.prototype;\n\t\tvar type = proto.type;\n\t\tvar mid = modelId( type );\n\n\t\t// store model\n\t\tacf.models[ mid ] = model;\n\n\t\t// store reference\n\t\tstorage.push( type );\n\t};\n\n\t/**\n\t * acf.getFieldType\n\t *\n\t * description\n\t *\n\t * @date\t1/2/18\n\t * @since\t5.6.5\n\t *\n\t * @param\ttype $var Description. Default.\n\t * @return\ttype Description.\n\t */\n\n\tacf.getFieldType = function ( type ) {\n\t\tvar mid = modelId( type );\n\t\treturn acf.models[ mid ] || false;\n\t};\n\n\t/**\n\t * acf.getFieldTypes\n\t *\n\t * description\n\t *\n\t * @date\t1/2/18\n\t * @since\t5.6.5\n\t *\n\t * @param\ttype $var Description. Default.\n\t * @return\ttype Description.\n\t */\n\n\tacf.getFieldTypes = function ( args ) {\n\t\t// defaults\n\t\targs = acf.parseArgs( args, {\n\t\t\tcategory: '',\n\t\t\t// hasValue: true\n\t\t} );\n\n\t\t// clonse available types\n\t\tvar types = [];\n\n\t\t// loop\n\t\tstorage.map( function ( type ) {\n\t\t\t// vars\n\t\t\tvar model = acf.getFieldType( type );\n\t\t\tvar proto = model.prototype;\n\n\t\t\t// check operator\n\t\t\tif ( args.category && proto.category !== args.category ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// append\n\t\t\ttypes.push( model );\n\t\t} );\n\n\t\t// return\n\t\treturn types;\n\t};\n} )( jQuery );\n","( function ( $, undefined ) {\n\t/**\n\t * findFields\n\t *\n\t * Returns a jQuery selection object of acf fields.\n\t *\n\t * @date\t14/12/17\n\t * @since\t5.6.5\n\t *\n\t * @param\tobject $args {\n\t *\t\tOptional. Arguments to find fields.\n\t *\n\t *\t\t@type string\t\t\tkey\t\t\tThe field's key (data-attribute).\n\t *\t\t@type string\t\t\tname\t\tThe field's name (data-attribute).\n\t *\t\t@type string\t\t\ttype\t\tThe field's type (data-attribute).\n\t *\t\t@type string\t\t\tis\t\t\tjQuery selector to compare against.\n\t *\t\t@type jQuery\t\t\tparent\t\tjQuery element to search within.\n\t *\t\t@type jQuery\t\t\tsibling\t\tjQuery element to search alongside.\n\t *\t\t@type limit\t\t\t\tint\t\t\tThe number of fields to find.\n\t *\t\t@type suppressFilters\tbool\t\tWhether to allow filters to add/remove results. Default behaviour will ignore clone fields.\n\t * }\n\t * @return\tjQuery\n\t */\n\n\tacf.findFields = function ( args ) {\n\t\t// vars\n\t\tvar selector = '.acf-field';\n\t\tvar $fields = false;\n\n\t\t// args\n\t\targs = acf.parseArgs( args, {\n\t\t\tkey: '',\n\t\t\tname: '',\n\t\t\ttype: '',\n\t\t\tis: '',\n\t\t\tparent: false,\n\t\t\tsibling: false,\n\t\t\tlimit: false,\n\t\t\tvisible: false,\n\t\t\tsuppressFilters: false,\n\t\t\texcludeSubFields: false,\n\t\t} );\n\n\t\t// filter args\n\t\tif ( ! args.suppressFilters ) {\n\t\t\targs = acf.applyFilters( 'find_fields_args', args );\n\t\t}\n\n\t\t// key\n\t\tif ( args.key ) {\n\t\t\tselector += '[data-key=\"' + args.key + '\"]';\n\t\t}\n\n\t\t// type\n\t\tif ( args.type ) {\n\t\t\tselector += '[data-type=\"' + args.type + '\"]';\n\t\t}\n\n\t\t// name\n\t\tif ( args.name ) {\n\t\t\tselector += '[data-name=\"' + args.name + '\"]';\n\t\t}\n\n\t\t// is\n\t\tif ( args.is ) {\n\t\t\tselector += args.is;\n\t\t}\n\n\t\t// visibility\n\t\tif ( args.visible ) {\n\t\t\tselector += ':visible';\n\t\t}\n\n\t\tif ( ! args.suppressFilters ) {\n\t\t\tselector = acf.applyFilters(\n\t\t\t\t'find_fields_selector',\n\t\t\t\tselector,\n\t\t\t\targs\n\t\t\t);\n\t\t}\n\n\t\t// query\n\t\tif ( args.parent ) {\n\t\t\t$fields = args.parent.find( selector );\n\t\t\t// exclude sub fields if required (only if a parent is provided)\n\t\t\tif ( args.excludeSubFields ) {\n\t\t\t\t$fields = $fields.not( args.parent.find( '.acf-is-subfields .acf-field' ) );\n\t\t\t}\n\t\t} else if ( args.sibling ) {\n\t\t\t$fields = args.sibling.siblings( selector );\n\t\t} else {\n\t\t\t$fields = $( selector );\n\t\t}\n\n\t\t// filter\n\t\tif ( ! args.suppressFilters ) {\n\t\t\t$fields = $fields.not( '.acf-clone .acf-field' );\n\t\t\t$fields = acf.applyFilters( 'find_fields', $fields );\n\t\t}\n\n\t\t// limit\n\t\tif ( args.limit ) {\n\t\t\t$fields = $fields.slice( 0, args.limit );\n\t\t}\n\n\t\t// return\n\t\treturn $fields;\n\t};\n\n\t/**\n\t * findField\n\t *\n\t * Finds a specific field with jQuery\n\t *\n\t * @date\t14/12/17\n\t * @since\t5.6.5\n\t *\n\t * @param\tstring key \t\tThe field's key.\n\t * @param\tjQuery $parent\tjQuery element to search within.\n\t * @return\tjQuery\n\t */\n\n\tacf.findField = function ( key, $parent ) {\n\t\treturn acf.findFields( {\n\t\t\tkey: key,\n\t\t\tlimit: 1,\n\t\t\tparent: $parent,\n\t\t\tsuppressFilters: true,\n\t\t} );\n\t};\n\n\t/**\n\t * getField\n\t *\n\t * Returns a field instance\n\t *\n\t * @date\t14/12/17\n\t * @since\t5.6.5\n\t *\n\t * @param\tjQuery|string $field\tjQuery element or field key.\n\t * @return\tobject\n\t */\n\n\tacf.getField = function ( $field ) {\n\t\t// allow jQuery\n\t\tif ( $field instanceof jQuery ) {\n\t\t\t// find fields\n\t\t} else {\n\t\t\t$field = acf.findField( $field );\n\t\t}\n\n\t\t// instantiate\n\t\tvar field = $field.data( 'acf' );\n\t\tif ( ! field ) {\n\t\t\tfield = acf.newField( $field );\n\t\t}\n\n\t\t// return\n\t\treturn field;\n\t};\n\n\t/**\n\t * getFields\n\t *\n\t * Returns multiple field instances\n\t *\n\t * @date\t14/12/17\n\t * @since\t5.6.5\n\t *\n\t * @param\tjQuery|object $fields\tjQuery elements or query args.\n\t * @return\tarray\n\t */\n\n\tacf.getFields = function ( $fields ) {\n\t\t// allow jQuery\n\t\tif ( $fields instanceof jQuery ) {\n\t\t\t// find fields\n\t\t} else {\n\t\t\t$fields = acf.findFields( $fields );\n\t\t}\n\n\t\t// loop\n\t\tvar fields = [];\n\t\t$fields.each( function () {\n\t\t\tvar field = acf.getField( $( this ) );\n\t\t\tfields.push( field );\n\t\t} );\n\n\t\t// return\n\t\treturn fields;\n\t};\n\n\t/**\n\t * findClosestField\n\t *\n\t * Returns the closest jQuery field element\n\t *\n\t * @date\t9/4/18\n\t * @since\t5.6.9\n\t *\n\t * @param\tjQuery $el\n\t * @return\tjQuery\n\t */\n\n\tacf.findClosestField = function ( $el ) {\n\t\treturn $el.closest( '.acf-field' );\n\t};\n\n\t/**\n\t * getClosestField\n\t *\n\t * Returns the closest field instance\n\t *\n\t * @date\t22/1/18\n\t * @since\t5.6.5\n\t *\n\t * @param\tjQuery $el\n\t * @return\tobject\n\t */\n\n\tacf.getClosestField = function ( $el ) {\n\t\tvar $field = acf.findClosestField( $el );\n\t\treturn this.getField( $field );\n\t};\n\n\t/**\n\t * addGlobalFieldAction\n\t *\n\t * Sets up callback logic for global field actions\n\t *\n\t * @date\t15/6/18\n\t * @since\t5.6.9\n\t *\n\t * @param\tstring action\n\t * @return\tvoid\n\t */\n\n\tvar addGlobalFieldAction = function ( action ) {\n\t\t// vars\n\t\tvar globalAction = action;\n\t\tvar pluralAction = action + '_fields'; // ready_fields\n\t\tvar singleAction = action + '_field'; // ready_field\n\n\t\t// global action\n\t\tvar globalCallback = function ( $el /*, arg1, arg2, etc*/ ) {\n\t\t\t//console.log( action, arguments );\n\n\t\t\t// get args [$el, ...]\n\t\t\tvar args = acf.arrayArgs( arguments );\n\t\t\tvar extraArgs = args.slice( 1 );\n\n\t\t\t// find fields\n\t\t\tvar fields = acf.getFields( { parent: $el } );\n\n\t\t\t// check\n\t\t\tif ( fields.length ) {\n\t\t\t\t// pluralAction\n\t\t\t\tvar pluralArgs = [ pluralAction, fields ].concat( extraArgs );\n\t\t\t\tacf.doAction.apply( null, pluralArgs );\n\t\t\t}\n\t\t};\n\n\t\t// plural action\n\t\tvar pluralCallback = function ( fields /*, arg1, arg2, etc*/ ) {\n\t\t\t//console.log( pluralAction, arguments );\n\n\t\t\t// get args [fields, ...]\n\t\t\tvar args = acf.arrayArgs( arguments );\n\t\t\tvar extraArgs = args.slice( 1 );\n\n\t\t\t// loop\n\t\t\tfields.map( function ( field, i ) {\n\t\t\t\t//setTimeout(function(){\n\t\t\t\t// singleAction\n\t\t\t\tvar singleArgs = [ singleAction, field ].concat( extraArgs );\n\t\t\t\tacf.doAction.apply( null, singleArgs );\n\t\t\t\t//}, i * 100);\n\t\t\t} );\n\t\t};\n\n\t\t// add actions\n\t\tacf.addAction( globalAction, globalCallback );\n\t\tacf.addAction( pluralAction, pluralCallback );\n\n\t\t// also add single action\n\t\taddSingleFieldAction( action );\n\t};\n\n\t/**\n\t * addSingleFieldAction\n\t *\n\t * Sets up callback logic for single field actions\n\t *\n\t * @date\t15/6/18\n\t * @since\t5.6.9\n\t *\n\t * @param\tstring action\n\t * @return\tvoid\n\t */\n\n\tvar addSingleFieldAction = function ( action ) {\n\t\t// vars\n\t\tvar singleAction = action + '_field'; // ready_field\n\t\tvar singleEvent = action + 'Field'; // readyField\n\n\t\t// single action\n\t\tvar singleCallback = function ( field /*, arg1, arg2, etc*/ ) {\n\t\t\t//console.log( singleAction, arguments );\n\n\t\t\t// get args [field, ...]\n\t\t\tvar args = acf.arrayArgs( arguments );\n\t\t\tvar extraArgs = args.slice( 1 );\n\n\t\t\t// action variations (ready_field/type=image)\n\t\t\tvar variations = [ 'type', 'name', 'key' ];\n\t\t\tvariations.map( function ( variation ) {\n\t\t\t\t// vars\n\t\t\t\tvar prefix = '/' + variation + '=' + field.get( variation );\n\n\t\t\t\t// singleAction\n\t\t\t\targs = [ singleAction + prefix, field ].concat( extraArgs );\n\t\t\t\tacf.doAction.apply( null, args );\n\t\t\t} );\n\n\t\t\t// event\n\t\t\tif ( singleFieldEvents.indexOf( action ) > -1 ) {\n\t\t\t\tfield.trigger( singleEvent, extraArgs );\n\t\t\t}\n\t\t};\n\n\t\t// add actions\n\t\tacf.addAction( singleAction, singleCallback );\n\t};\n\n\t// vars\n\tvar globalFieldActions = [\n\t\t'prepare',\n\t\t'ready',\n\t\t'load',\n\t\t'append',\n\t\t'remove',\n\t\t'unmount',\n\t\t'remount',\n\t\t'sortstart',\n\t\t'sortstop',\n\t\t'show',\n\t\t'hide',\n\t\t'unload',\n\t];\n\tvar singleFieldActions = [\n\t\t'valid',\n\t\t'invalid',\n\t\t'enable',\n\t\t'disable',\n\t\t'new',\n\t\t'duplicate',\n\t];\n\tvar singleFieldEvents = [\n\t\t'remove',\n\t\t'unmount',\n\t\t'remount',\n\t\t'sortstart',\n\t\t'sortstop',\n\t\t'show',\n\t\t'hide',\n\t\t'unload',\n\t\t'valid',\n\t\t'invalid',\n\t\t'enable',\n\t\t'disable',\n\t\t'duplicate',\n\t];\n\n\t// add\n\tglobalFieldActions.map( addGlobalFieldAction );\n\tsingleFieldActions.map( addSingleFieldAction );\n\n\t/**\n\t * fieldsEventManager\n\t *\n\t * Manages field actions and events\n\t *\n\t * @date\t15/12/17\n\t * @since\t5.6.5\n\t *\n\t * @param\tvoid\n\t * @param\tvoid\n\t */\n\n\tvar fieldsEventManager = new acf.Model( {\n\t\tid: 'fieldsEventManager',\n\t\tevents: {\n\t\t\t'click .acf-field a[href=\"#\"]': 'onClick',\n\t\t\t'change .acf-field': 'onChange',\n\t\t},\n\t\tonClick: function ( e ) {\n\t\t\t// prevent default of any link with an href of #\n\t\t\te.preventDefault();\n\t\t},\n\t\tonChange: function () {\n\t\t\t// preview hack allows post to save with no title or content\n\t\t\t$( '#_acf_changed' ).val( 1 );\n\n\t\t\tif ( acf.isGutenbergPostEditor() ) {\n\t\t\t\ttry {\n\t\t\t\t\twp.data.dispatch('core/editor').editPost({ meta: { _acf_changed: 1 } });\n\t\t\t\t} catch ( error ) {\n\t\t\t\t\tconsole.log( 'ACF: Failed to update _acf_changed meta', error );\n\t\t\t\t}\n\n\t\t\t}\n\t\t},\n\t} );\n\n\tvar duplicateFieldsManager = new acf.Model( {\n\t\tid: 'duplicateFieldsManager',\n\t\tactions: {\n\t\t\tduplicate: 'onDuplicate',\n\t\t\tduplicate_fields: 'onDuplicateFields',\n\t\t},\n\t\tonDuplicate: function ( $el, $el2 ) {\n\t\t\tvar fields = acf.getFields( { parent: $el } );\n\t\t\tif ( fields.length ) {\n\t\t\t\tvar $fields = acf.findFields( { parent: $el2 } );\n\t\t\t\tacf.doAction( 'duplicate_fields', fields, $fields );\n\t\t\t}\n\t\t},\n\t\tonDuplicateFields: function ( fields, duplicates ) {\n\t\t\tfields.map( function ( field, i ) {\n\t\t\t\tacf.doAction( 'duplicate_field', field, $( duplicates[ i ] ) );\n\t\t\t} );\n\t\t},\n\t} );\n} )( jQuery );\n","( function ( $, undefined ) {\n\t/**\n\t * refreshHelper\n\t *\n\t * description\n\t *\n\t * @date\t1/7/18\n\t * @since\t5.6.9\n\t *\n\t * @param\ttype $var Description. Default.\n\t * @return\ttype Description.\n\t */\n\n\tvar refreshHelper = new acf.Model( {\n\t\tpriority: 90,\n\t\tactions: {\n\t\t\tnew_field: 'refresh',\n\t\t\tshow_field: 'refresh',\n\t\t\thide_field: 'refresh',\n\t\t\tremove_field: 'refresh',\n\t\t\tunmount_field: 'refresh',\n\t\t\tremount_field: 'refresh',\n\t\t},\n\t\trefresh: function () {\n\t\t\tacf.refresh();\n\t\t},\n\t} );\n\n\t/**\n\t * mountHelper\n\t *\n\t * Adds compatiblity for the 'unmount' and 'remount' actions added in 5.8.0\n\t *\n\t * @date\t7/3/19\n\t * @since\t5.7.14\n\t *\n\t * @param\tvoid\n\t * @return\tvoid\n\t */\n\tvar mountHelper = new acf.Model( {\n\t\tpriority: 1,\n\t\tactions: {\n\t\t\tsortstart: 'onSortstart',\n\t\t\tsortstop: 'onSortstop',\n\t\t},\n\t\tonSortstart: function ( $item ) {\n\t\t\tacf.doAction( 'unmount', $item );\n\t\t},\n\t\tonSortstop: function ( $item ) {\n\t\t\tacf.doAction( 'remount', $item );\n\t\t},\n\t} );\n\n\t/**\n\t * sortableHelper\n\t *\n\t * Adds compatibility for sorting a
              element\n\t *\n\t * @date\t6/3/18\n\t * @since\t5.6.9\n\t *\n\t * @param\tvoid\n\t * @return\tvoid\n\t */\n\n\tvar sortableHelper = new acf.Model( {\n\t\tactions: {\n\t\t\tsortstart: 'onSortstart',\n\t\t},\n\t\tonSortstart: function ( $item, $placeholder ) {\n\t\t\t// if $item is a tr, apply some css to the elements\n\t\t\tif ( $item.is( 'tr' ) ) {\n\t\t\t\t// replace $placeholder children with a single td\n\t\t\t\t// fixes \"width calculation issues\" due to conditional logic hiding some children\n\t\t\t\t$placeholder.html(\n\t\t\t\t\t''\n\t\t\t\t);\n\n\t\t\t\t// add helper class to remove absolute positioning\n\t\t\t\t$item.addClass( 'acf-sortable-tr-helper' );\n\n\t\t\t\t// set fixed widths for children\n\t\t\t\t$item.children().each( function () {\n\t\t\t\t\t$( this ).width( $( this ).width() );\n\t\t\t\t} );\n\n\t\t\t\t// mimic height\n\t\t\t\t$placeholder.height( $item.height() + 'px' );\n\n\t\t\t\t// remove class\n\t\t\t\t$item.removeClass( 'acf-sortable-tr-helper' );\n\t\t\t}\n\t\t},\n\t} );\n\n\t/**\n\t * duplicateHelper\n\t *\n\t * Fixes browser bugs when duplicating an element\n\t *\n\t * @date\t6/3/18\n\t * @since\t5.6.9\n\t *\n\t * @param\tvoid\n\t * @return\tvoid\n\t */\n\n\tvar duplicateHelper = new acf.Model( {\n\t\tactions: {\n\t\t\tafter_duplicate: 'onAfterDuplicate',\n\t\t},\n\t\tonAfterDuplicate: function ( $el, $el2 ) {\n\t\t\t// get original values\n\t\t\tvar vals = [];\n\t\t\t$el.find( 'select' ).each( function ( i ) {\n\t\t\t\tvals.push( $( this ).val() );\n\t\t\t} );\n\n\t\t\t// set duplicate values\n\t\t\t$el2.find( 'select' ).each( function ( i ) {\n\t\t\t\t$( this ).val( vals[ i ] );\n\t\t\t} );\n\t\t},\n\t} );\n\n\t/**\n\t * tableHelper\n\t *\n\t * description\n\t *\n\t * @date\t6/3/18\n\t * @since\t5.6.9\n\t *\n\t * @param\ttype $var Description. Default.\n\t * @return\ttype Description.\n\t */\n\n\tvar tableHelper = new acf.Model( {\n\t\tid: 'tableHelper',\n\n\t\tpriority: 20,\n\n\t\tactions: {\n\t\t\trefresh: 'renderTables',\n\t\t},\n\n\t\trenderTables: function ( $el ) {\n\t\t\t// loop\n\t\t\tvar self = this;\n\t\t\t$( '.acf-table:visible' ).each( function () {\n\t\t\t\tself.renderTable( $( this ) );\n\t\t\t} );\n\t\t},\n\n\t\trenderTable: function ( $table ) {\n\t\t\t// vars\n\t\t\tvar $ths = $table.find( '> thead > tr:visible > th[data-key]' );\n\t\t\tvar $tds = $table.find( '> tbody > tr:visible > td[data-key]' );\n\n\t\t\t// bail early if no thead\n\t\t\tif ( ! $ths.length || ! $tds.length ) {\n\t\t\t\treturn false;\n\t\t\t}\n\n\t\t\t// visiblity\n\t\t\t$ths.each( function ( i ) {\n\t\t\t\t// vars\n\t\t\t\tvar $th = $( this );\n\t\t\t\tvar key = $th.data( 'key' );\n\t\t\t\tvar $cells = $tds.filter( '[data-key=\"' + key + '\"]' );\n\t\t\t\tvar $hidden = $cells.filter( '.acf-hidden' );\n\n\t\t\t\t// always remove empty and allow cells to be hidden\n\t\t\t\t$cells.removeClass( 'acf-empty' );\n\n\t\t\t\t// hide $th if all cells are hidden\n\t\t\t\tif ( $cells.length === $hidden.length ) {\n\t\t\t\t\tacf.hide( $th );\n\n\t\t\t\t\t// force all hidden cells to appear empty\n\t\t\t\t} else {\n\t\t\t\t\tacf.show( $th );\n\t\t\t\t\t$hidden.addClass( 'acf-empty' );\n\t\t\t\t}\n\t\t\t} );\n\n\t\t\t// clear width\n\t\t\t$ths.css( 'width', 'auto' );\n\n\t\t\t// get visible\n\t\t\t$ths = $ths.not( '.acf-hidden' );\n\n\t\t\t// vars\n\t\t\tvar availableWidth = 100;\n\t\t\tvar colspan = $ths.length;\n\n\t\t\t// set custom widths first\n\t\t\tvar $fixedWidths = $ths.filter( '[data-width]' );\n\t\t\t$fixedWidths.each( function () {\n\t\t\t\tvar width = $( this ).data( 'width' );\n\t\t\t\t$( this ).css( 'width', width + '%' );\n\t\t\t\tavailableWidth -= width;\n\t\t\t} );\n\n\t\t\t// set auto widths\n\t\t\tvar $auoWidths = $ths.not( '[data-width]' );\n\t\t\tif ( $auoWidths.length ) {\n\t\t\t\tvar width = availableWidth / $auoWidths.length;\n\t\t\t\t$auoWidths.css( 'width', width + '%' );\n\t\t\t\tavailableWidth = 0;\n\t\t\t}\n\n\t\t\t// avoid stretching issue\n\t\t\tif ( availableWidth > 0 ) {\n\t\t\t\t$ths.last().css( 'width', 'auto' );\n\t\t\t}\n\n\t\t\t// update colspan on collapsed\n\t\t\t$tds.filter( '.-collapsed-target' ).each( function () {\n\t\t\t\t// vars\n\t\t\t\tvar $td = $( this );\n\n\t\t\t\t// check if collapsed\n\t\t\t\tif ( $td.parent().hasClass( '-collapsed' ) ) {\n\t\t\t\t\t$td.attr( 'colspan', $ths.length );\n\t\t\t\t} else {\n\t\t\t\t\t$td.removeAttr( 'colspan' );\n\t\t\t\t}\n\t\t\t} );\n\t\t},\n\t} );\n\n\t/**\n\t * fieldsHelper\n\t *\n\t * description\n\t *\n\t * @date\t6/3/18\n\t * @since\t5.6.9\n\t *\n\t * @param\ttype $var Description. Default.\n\t * @return\ttype Description.\n\t */\n\n\tvar fieldsHelper = new acf.Model( {\n\t\tid: 'fieldsHelper',\n\n\t\tpriority: 30,\n\n\t\tactions: {\n\t\t\trefresh: 'renderGroups',\n\t\t},\n\n\t\trenderGroups: function () {\n\t\t\t// loop\n\t\t\tvar self = this;\n\t\t\t$( '.acf-fields:visible' ).each( function () {\n\t\t\t\tself.renderGroup( $( this ) );\n\t\t\t} );\n\t\t},\n\n\t\trenderGroup: function ( $el ) {\n\t\t\t// vars\n\t\t\tvar top = 0;\n\t\t\tvar height = 0;\n\t\t\tvar $row = $();\n\n\t\t\t// get fields\n\t\t\tvar $fields = $el.children( '.acf-field[data-width]:visible' );\n\n\t\t\t// bail early if no fields\n\t\t\tif ( ! $fields.length ) {\n\t\t\t\treturn false;\n\t\t\t}\n\n\t\t\t// bail early if is .-left\n\t\t\tif ( $el.hasClass( '-left' ) ) {\n\t\t\t\t$fields.removeAttr( 'data-width' );\n\t\t\t\t$fields.css( 'width', 'auto' );\n\t\t\t\treturn false;\n\t\t\t}\n\n\t\t\t// reset fields\n\t\t\t$fields.removeClass( '-r0 -c0' ).css( { 'min-height': 0 } );\n\n\t\t\t// loop\n\t\t\t$fields.each( function ( i ) {\n\t\t\t\t// vars\n\t\t\t\tvar $field = $( this );\n\t\t\t\tvar position = $field.position();\n\t\t\t\tvar thisTop = Math.ceil( position.top );\n\t\t\t\tvar thisLeft = Math.ceil( position.left );\n\n\t\t\t\t// detect change in row\n\t\t\t\tif ( $row.length && thisTop > top ) {\n\t\t\t\t\t// set previous heights\n\t\t\t\t\t$row.css( { 'min-height': height + 'px' } );\n\n\t\t\t\t\t// update position due to change in row above\n\t\t\t\t\tposition = $field.position();\n\t\t\t\t\tthisTop = Math.ceil( position.top );\n\t\t\t\t\tthisLeft = Math.ceil( position.left );\n\n\t\t\t\t\t// reset vars\n\t\t\t\t\ttop = 0;\n\t\t\t\t\theight = 0;\n\t\t\t\t\t$row = $();\n\t\t\t\t}\n\n\t\t\t\t// rtl\n\t\t\t\tif ( acf.get( 'rtl' ) ) {\n\t\t\t\t\tthisLeft = Math.ceil(\n\t\t\t\t\t\t$field.parent().width() -\n\t\t\t\t\t\t\t( position.left + $field.outerWidth() )\n\t\t\t\t\t);\n\t\t\t\t}\n\n\t\t\t\t// add classes\n\t\t\t\tif ( thisTop == 0 ) {\n\t\t\t\t\t$field.addClass( '-r0' );\n\t\t\t\t} else if ( thisLeft == 0 ) {\n\t\t\t\t\t$field.addClass( '-c0' );\n\t\t\t\t}\n\n\t\t\t\t// get height after class change\n\t\t\t\t// - add 1 for subpixel rendering\n\t\t\t\tvar thisHeight = Math.ceil( $field.outerHeight() ) + 1;\n\n\t\t\t\t// set height\n\t\t\t\theight = Math.max( height, thisHeight );\n\n\t\t\t\t// set y\n\t\t\t\ttop = Math.max( top, thisTop );\n\n\t\t\t\t// append\n\t\t\t\t$row = $row.add( $field );\n\t\t\t} );\n\n\t\t\t// clean up\n\t\t\tif ( $row.length ) {\n\t\t\t\t$row.css( { 'min-height': height + 'px' } );\n\t\t\t}\n\t\t},\n\t} );\n\n\t/**\n\t * Adds a body class when holding down the \"shift\" key.\n\t *\n\t * @date\t06/05/2020\n\t * @since\t5.9.0\n\t */\n\tvar bodyClassShiftHelper = new acf.Model( {\n\t\tid: 'bodyClassShiftHelper',\n\t\tevents: {\n\t\t\tkeydown: 'onKeyDown',\n\t\t\tkeyup: 'onKeyUp',\n\t\t},\n\t\tisShiftKey: function ( e ) {\n\t\t\treturn e.keyCode === 16;\n\t\t},\n\t\tonKeyDown: function ( e ) {\n\t\t\tif ( this.isShiftKey( e ) ) {\n\t\t\t\t$( 'body' ).addClass( 'acf-keydown-shift' );\n\t\t\t}\n\t\t},\n\t\tonKeyUp: function ( e ) {\n\t\t\tif ( this.isShiftKey( e ) ) {\n\t\t\t\t$( 'body' ).removeClass( 'acf-keydown-shift' );\n\t\t\t}\n\t\t},\n\t} );\n} )( jQuery );\n","( function ( $, undefined ) {\n\t/**\n\t * acf.newMediaPopup\n\t *\n\t * description\n\t *\n\t * @date\t10/1/18\n\t * @since\t5.6.5\n\t *\n\t * @param\ttype $var Description. Default.\n\t * @return\ttype Description.\n\t */\n\n\tacf.newMediaPopup = function ( args ) {\n\t\t// args\n\t\tvar popup = null;\n\t\tvar args = acf.parseArgs( args, {\n\t\t\tmode: 'select', // 'select', 'edit'\n\t\t\ttitle: '', // 'Upload Image'\n\t\t\tbutton: '', // 'Select Image'\n\t\t\ttype: '', // 'image', ''\n\t\t\tfield: false, // field instance\n\t\t\tallowedTypes: '', // '.jpg, .png, etc'\n\t\t\tlibrary: 'all', // 'all', 'uploadedTo'\n\t\t\tmultiple: false, // false, true, 'add'\n\t\t\tattachment: 0, // the attachment to edit\n\t\t\tautoOpen: true, // open the popup automatically\n\t\t\topen: function () {}, // callback after close\n\t\t\tselect: function () {}, // callback after select\n\t\t\tclose: function () {}, // callback after close\n\t\t} );\n\n\t\t// initialize\n\t\tif ( args.mode == 'edit' ) {\n\t\t\tpopup = new acf.models.EditMediaPopup( args );\n\t\t} else {\n\t\t\tpopup = new acf.models.SelectMediaPopup( args );\n\t\t}\n\n\t\t// open popup (allow frame customization before opening)\n\t\tif ( args.autoOpen ) {\n\t\t\tsetTimeout( function () {\n\t\t\t\tpopup.open();\n\t\t\t}, 1 );\n\t\t}\n\n\t\t// action\n\t\tacf.doAction( 'new_media_popup', popup );\n\n\t\t// return\n\t\treturn popup;\n\t};\n\n\t/**\n\t * getPostID\n\t *\n\t * description\n\t *\n\t * @date\t10/1/18\n\t * @since\t5.6.5\n\t *\n\t * @param\ttype $var Description. Default.\n\t * @return\ttype Description.\n\t */\n\n\tvar getPostID = function () {\n\t\tvar postID = acf.get( 'post_id' );\n\t\treturn acf.isNumeric( postID ) ? postID : 0;\n\t};\n\n\t/**\n\t * acf.getMimeTypes\n\t *\n\t * description\n\t *\n\t * @date\t11/1/18\n\t * @since\t5.6.5\n\t *\n\t * @param\ttype $var Description. Default.\n\t * @return\ttype Description.\n\t */\n\n\tacf.getMimeTypes = function () {\n\t\treturn this.get( 'mimeTypes' );\n\t};\n\n\tacf.getMimeType = function ( name ) {\n\t\t// vars\n\t\tvar allTypes = acf.getMimeTypes();\n\n\t\t// search\n\t\tif ( allTypes[ name ] !== undefined ) {\n\t\t\treturn allTypes[ name ];\n\t\t}\n\n\t\t// some types contain a mixed key such as \"jpg|jpeg|jpe\"\n\t\tfor ( var key in allTypes ) {\n\t\t\tif ( key.indexOf( name ) !== -1 ) {\n\t\t\t\treturn allTypes[ key ];\n\t\t\t}\n\t\t}\n\n\t\t// return\n\t\treturn false;\n\t};\n\n\t/**\n\t * MediaPopup\n\t *\n\t * description\n\t *\n\t * @date\t10/1/18\n\t * @since\t5.6.5\n\t *\n\t * @param\ttype $var Description. Default.\n\t * @return\ttype Description.\n\t */\n\n\tvar MediaPopup = acf.Model.extend( {\n\t\tid: 'MediaPopup',\n\t\tdata: {},\n\t\tdefaults: {},\n\t\tframe: false,\n\n\t\tsetup: function ( props ) {\n\t\t\t$.extend( this.data, props );\n\t\t},\n\n\t\tinitialize: function () {\n\t\t\t// vars\n\t\t\tvar options = this.getFrameOptions();\n\n\t\t\t// add states\n\t\t\tthis.addFrameStates( options );\n\n\t\t\t// create frame\n\t\t\tvar frame = wp.media( options );\n\n\t\t\t// add args reference\n\t\t\tframe.acf = this;\n\n\t\t\t// add events\n\t\t\tthis.addFrameEvents( frame, options );\n\n\t\t\t// strore frame\n\t\t\tthis.frame = frame;\n\t\t},\n\n\t\topen: function () {\n\t\t\tthis.frame.open();\n\t\t},\n\n\t\tclose: function () {\n\t\t\tthis.frame.close();\n\t\t},\n\n\t\tremove: function () {\n\t\t\tthis.frame.detach();\n\t\t\tthis.frame.remove();\n\t\t},\n\n\t\tgetFrameOptions: function () {\n\t\t\t// vars\n\t\t\tvar options = {\n\t\t\t\ttitle: this.get( 'title' ),\n\t\t\t\tmultiple: this.get( 'multiple' ),\n\t\t\t\tlibrary: {},\n\t\t\t\tstates: [],\n\t\t\t};\n\n\t\t\t// type\n\t\t\tif ( this.get( 'type' ) ) {\n\t\t\t\toptions.library.type = this.get( 'type' );\n\t\t\t}\n\n\t\t\t// type\n\t\t\tif ( this.get( 'library' ) === 'uploadedTo' ) {\n\t\t\t\toptions.library.uploadedTo = getPostID();\n\t\t\t}\n\n\t\t\t// attachment\n\t\t\tif ( this.get( 'attachment' ) ) {\n\t\t\t\toptions.library.post__in = [ this.get( 'attachment' ) ];\n\t\t\t}\n\n\t\t\t// button\n\t\t\tif ( this.get( 'button' ) ) {\n\t\t\t\toptions.button = {\n\t\t\t\t\ttext: this.get( 'button' ),\n\t\t\t\t};\n\t\t\t}\n\n\t\t\t// return\n\t\t\treturn options;\n\t\t},\n\n\t\taddFrameStates: function ( options ) {\n\t\t\t// create query\n\t\t\tvar Query = wp.media.query( options.library );\n\n\t\t\t// add _acfuploader\n\t\t\t// this is super wack!\n\t\t\t// if you add _acfuploader to the options.library args, new uploads will not be added to the library view.\n\t\t\t// this has been traced back to the wp.media.model.Query initialize function (which can't be overriden)\n\t\t\t// Adding any custom args will cause the Attahcments to not observe the uploader queue\n\t\t\t// To bypass this security issue, we add in the args AFTER the Query has been initialized\n\t\t\t// options.library._acfuploader = settings.field;\n\t\t\tif (\n\t\t\t\tthis.get( 'field' ) &&\n\t\t\t\tacf.isset( Query, 'mirroring', 'args' )\n\t\t\t) {\n\t\t\t\tQuery.mirroring.args._acfuploader = this.get( 'field' );\n\t\t\t}\n\n\t\t\t// add states\n\t\t\toptions.states.push(\n\t\t\t\t// main state\n\t\t\t\tnew wp.media.controller.Library( {\n\t\t\t\t\tlibrary: Query,\n\t\t\t\t\tmultiple: this.get( 'multiple' ),\n\t\t\t\t\ttitle: this.get( 'title' ),\n\t\t\t\t\tpriority: 20,\n\t\t\t\t\tfilterable: 'all',\n\t\t\t\t\teditable: true,\n\t\t\t\t\tallowLocalEdits: true,\n\t\t\t\t} )\n\t\t\t);\n\n\t\t\t// edit image functionality (added in WP 3.9)\n\t\t\tif ( acf.isset( wp, 'media', 'controller', 'EditImage' ) ) {\n\t\t\t\toptions.states.push( new wp.media.controller.EditImage() );\n\t\t\t}\n\t\t},\n\n\t\taddFrameEvents: function ( frame, options ) {\n\t\t\t// log all events\n\t\t\t//frame.on('all', function( e ) {\n\t\t\t//\tconsole.log( 'frame all: %o', e );\n\t\t\t//});\n\n\t\t\t// add class\n\t\t\tframe.on(\n\t\t\t\t'open',\n\t\t\t\tfunction () {\n\t\t\t\t\tthis.$el\n\t\t\t\t\t\t.closest( '.media-modal' )\n\t\t\t\t\t\t.addClass(\n\t\t\t\t\t\t\t'acf-media-modal -' + this.acf.get( 'mode' )\n\t\t\t\t\t\t);\n\t\t\t\t},\n\t\t\t\tframe\n\t\t\t);\n\n\t\t\t// edit image view\n\t\t\t// source: media-views.js:2410 editImageContent()\n\t\t\tframe.on(\n\t\t\t\t'content:render:edit-image',\n\t\t\t\tfunction () {\n\t\t\t\t\tvar image = this.state().get( 'image' );\n\t\t\t\t\tvar view = new wp.media.view.EditImage( {\n\t\t\t\t\t\tmodel: image,\n\t\t\t\t\t\tcontroller: this,\n\t\t\t\t\t} ).render();\n\t\t\t\t\tthis.content.set( view );\n\n\t\t\t\t\t// after creating the wrapper view, load the actual editor via an ajax call\n\t\t\t\t\tview.loadEditor();\n\t\t\t\t},\n\t\t\t\tframe\n\t\t\t);\n\n\t\t\t// update toolbar button\n\t\t\t//frame.on( 'toolbar:create:select', function( toolbar ) {\n\t\t\t//\ttoolbar.view = new wp.media.view.Toolbar.Select({\n\t\t\t//\t\ttext: frame.options._button,\n\t\t\t//\t\tcontroller: this\n\t\t\t//\t});\n\t\t\t//}, frame );\n\n\t\t\t// on select\n\t\t\tframe.on( 'select', function () {\n\t\t\t\t// vars\n\t\t\t\tvar selection = frame.state().get( 'selection' );\n\n\t\t\t\t// if selecting images\n\t\t\t\tif ( selection ) {\n\t\t\t\t\t// loop\n\t\t\t\t\tselection.each( function ( attachment, i ) {\n\t\t\t\t\t\tframe.acf\n\t\t\t\t\t\t\t.get( 'select' )\n\t\t\t\t\t\t\t.apply( frame.acf, [ attachment, i ] );\n\t\t\t\t\t} );\n\t\t\t\t}\n\t\t\t} );\n\n\t\t\t// on close\n\t\t\tframe.on( 'close', function () {\n\t\t\t\t// callback and remove\n\t\t\t\tsetTimeout( function () {\n\t\t\t\t\tframe.acf.get( 'close' ).apply( frame.acf );\n\t\t\t\t\tframe.acf.remove();\n\t\t\t\t}, 1 );\n\t\t\t} );\n\t\t},\n\t} );\n\n\t/**\n\t * acf.models.SelectMediaPopup\n\t *\n\t * description\n\t *\n\t * @date\t10/1/18\n\t * @since\t5.6.5\n\t *\n\t * @param\ttype $var Description. Default.\n\t * @return\ttype Description.\n\t */\n\n\tacf.models.SelectMediaPopup = MediaPopup.extend( {\n\t\tid: 'SelectMediaPopup',\n\t\tsetup: function ( props ) {\n\t\t\t// default button\n\t\t\tif ( ! props.button ) {\n\t\t\t\tprops.button = acf._x( 'Select', 'verb' );\n\t\t\t}\n\n\t\t\t// parent\n\t\t\tMediaPopup.prototype.setup.apply( this, arguments );\n\t\t},\n\n\t\taddFrameEvents: function ( frame, options ) {\n\t\t\t// plupload\n\t\t\t// adds _acfuploader param to validate uploads\n\t\t\tif (\n\t\t\t\tacf.isset( _wpPluploadSettings, 'defaults', 'multipart_params' )\n\t\t\t) {\n\t\t\t\t// add _acfuploader so that Uploader will inherit\n\t\t\t\t_wpPluploadSettings.defaults.multipart_params._acfuploader = this.get(\n\t\t\t\t\t'field'\n\t\t\t\t);\n\n\t\t\t\t// remove acf_field so future Uploaders won't inherit\n\t\t\t\tframe.on( 'open', function () {\n\t\t\t\t\tdelete _wpPluploadSettings\n\t\t\t\t\t\t.defaults.multipart_params._acfuploader;\n\t\t\t\t} );\n\t\t\t}\n\n\t\t\t// browse\n\t\t\tframe.on( 'content:activate:browse', function () {\n\t\t\t\t// vars\n\t\t\t\tvar toolbar = false;\n\n\t\t\t\t// populate above vars making sure to allow for failure\n\t\t\t\t// perhaps toolbar does not exist because the frame open is Upload Files\n\t\t\t\ttry {\n\t\t\t\t\ttoolbar = frame.content.get().toolbar;\n\t\t\t\t} catch ( e ) {\n\t\t\t\t\tconsole.log( e );\n\t\t\t\t\treturn;\n\t\t\t\t}\n\n\t\t\t\t// callback\n\t\t\t\tframe.acf.customizeFilters.apply( frame.acf, [ toolbar ] );\n\t\t\t} );\n\n\t\t\t// parent\n\t\t\tMediaPopup.prototype.addFrameEvents.apply( this, arguments );\n\t\t},\n\n\t\tcustomizeFilters: function ( toolbar ) {\n\t\t\t// vars\n\t\t\tvar filters = toolbar.get( 'filters' );\n\n\t\t\t// image\n\t\t\tif ( this.get( 'type' ) == 'image' ) {\n\t\t\t\t// update all\n\t\t\t\tfilters.filters.all.text = acf.__( 'All images' );\n\n\t\t\t\t// remove some filters\n\t\t\t\tdelete filters.filters.audio;\n\t\t\t\tdelete filters.filters.video;\n\t\t\t\tdelete filters.filters.image;\n\n\t\t\t\t// update all filters to show images\n\t\t\t\t$.each( filters.filters, function ( i, filter ) {\n\t\t\t\t\tfilter.props.type = filter.props.type || 'image';\n\t\t\t\t} );\n\t\t\t}\n\n\t\t\t// specific types\n\t\t\tif ( this.get( 'allowedTypes' ) ) {\n\t\t\t\t// convert \".jpg, .png\" into [\"jpg\", \"png\"]\n\t\t\t\tvar allowedTypes = this.get( 'allowedTypes' )\n\t\t\t\t\t.split( ' ' )\n\t\t\t\t\t.join( '' )\n\t\t\t\t\t.split( '.' )\n\t\t\t\t\t.join( '' )\n\t\t\t\t\t.split( ',' );\n\n\t\t\t\t// loop\n\t\t\t\tallowedTypes.map( function ( name ) {\n\t\t\t\t\t// get type\n\t\t\t\t\tvar mimeType = acf.getMimeType( name );\n\n\t\t\t\t\t// bail early if no type\n\t\t\t\t\tif ( ! mimeType ) return;\n\n\t\t\t\t\t// create new filter\n\t\t\t\t\tvar newFilter = {\n\t\t\t\t\t\ttext: mimeType,\n\t\t\t\t\t\tprops: {\n\t\t\t\t\t\t\tstatus: null,\n\t\t\t\t\t\t\ttype: mimeType,\n\t\t\t\t\t\t\tuploadedTo: null,\n\t\t\t\t\t\t\torderby: 'date',\n\t\t\t\t\t\t\torder: 'DESC',\n\t\t\t\t\t\t},\n\t\t\t\t\t\tpriority: 20,\n\t\t\t\t\t};\n\n\t\t\t\t\t// append\n\t\t\t\t\tfilters.filters[ mimeType ] = newFilter;\n\t\t\t\t} );\n\t\t\t}\n\n\t\t\t// uploaded to post\n\t\t\tif ( this.get( 'library' ) === 'uploadedTo' ) {\n\t\t\t\t// vars\n\t\t\t\tvar uploadedTo = this.frame.options.library.uploadedTo;\n\n\t\t\t\t// remove some filters\n\t\t\t\tdelete filters.filters.unattached;\n\t\t\t\tdelete filters.filters.uploaded;\n\n\t\t\t\t// add uploadedTo to filters\n\t\t\t\t$.each( filters.filters, function ( i, filter ) {\n\t\t\t\t\tfilter.text +=\n\t\t\t\t\t\t' (' + acf.__( 'Uploaded to this post' ) + ')';\n\t\t\t\t\tfilter.props.uploadedTo = uploadedTo;\n\t\t\t\t} );\n\t\t\t}\n\n\t\t\t// add _acfuploader to filters\n\t\t\tvar field = this.get( 'field' );\n\t\t\t$.each( filters.filters, function ( k, filter ) {\n\t\t\t\tfilter.props._acfuploader = field;\n\t\t\t} );\n\n\t\t\t// add _acfuplaoder to search\n\t\t\tvar search = toolbar.get( 'search' );\n\t\t\tsearch.model.attributes._acfuploader = field;\n\n\t\t\t// render (custom function added to prototype)\n\t\t\tif ( filters.renderFilters ) {\n\t\t\t\tfilters.renderFilters();\n\t\t\t}\n\t\t},\n\t} );\n\n\t/**\n\t * acf.models.EditMediaPopup\n\t *\n\t * description\n\t *\n\t * @date\t10/1/18\n\t * @since\t5.6.5\n\t *\n\t * @param\ttype $var Description. Default.\n\t * @return\ttype Description.\n\t */\n\n\tacf.models.EditMediaPopup = MediaPopup.extend( {\n\t\tid: 'SelectMediaPopup',\n\t\tsetup: function ( props ) {\n\t\t\t// default button\n\t\t\tif ( ! props.button ) {\n\t\t\t\tprops.button = acf._x( 'Update', 'verb' );\n\t\t\t}\n\n\t\t\t// parent\n\t\t\tMediaPopup.prototype.setup.apply( this, arguments );\n\t\t},\n\n\t\taddFrameEvents: function ( frame, options ) {\n\t\t\t// add class\n\t\t\tframe.on(\n\t\t\t\t'open',\n\t\t\t\tfunction () {\n\t\t\t\t\t// add class\n\t\t\t\t\tthis.$el\n\t\t\t\t\t\t.closest( '.media-modal' )\n\t\t\t\t\t\t.addClass( 'acf-expanded' );\n\n\t\t\t\t\t// set to browse\n\t\t\t\t\tif ( this.content.mode() != 'browse' ) {\n\t\t\t\t\t\tthis.content.mode( 'browse' );\n\t\t\t\t\t}\n\n\t\t\t\t\t// set selection\n\t\t\t\t\tvar state = this.state();\n\t\t\t\t\tvar selection = state.get( 'selection' );\n\t\t\t\t\tvar attachment = wp.media.attachment(\n\t\t\t\t\t\tframe.acf.get( 'attachment' )\n\t\t\t\t\t);\n\t\t\t\t\tselection.add( attachment );\n\t\t\t\t},\n\t\t\t\tframe\n\t\t\t);\n\n\t\t\t// parent\n\t\t\tMediaPopup.prototype.addFrameEvents.apply( this, arguments );\n\t\t},\n\t} );\n\n\t/**\n\t * customizePrototypes\n\t *\n\t * description\n\t *\n\t * @date\t11/1/18\n\t * @since\t5.6.5\n\t *\n\t * @param\ttype $var Description. Default.\n\t * @return\ttype Description.\n\t */\n\n\tvar customizePrototypes = new acf.Model( {\n\t\tid: 'customizePrototypes',\n\t\twait: 'ready',\n\n\t\tinitialize: function () {\n\t\t\t// bail early if no media views\n\t\t\tif ( ! acf.isset( window, 'wp', 'media', 'view' ) ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// fix bug where CPT without \"editor\" does not set post.id setting which then prevents uploadedTo from working\n\t\t\tvar postID = getPostID();\n\t\t\tif (\n\t\t\t\tpostID &&\n\t\t\t\tacf.isset( wp, 'media', 'view', 'settings', 'post' )\n\t\t\t) {\n\t\t\t\twp.media.view.settings.post.id = postID;\n\t\t\t}\n\n\t\t\t// customize\n\t\t\tthis.customizeAttachmentsButton();\n\t\t\tthis.customizeAttachmentsRouter();\n\t\t\tthis.customizeAttachmentFilters();\n\t\t\tthis.customizeAttachmentCompat();\n\t\t\tthis.customizeAttachmentLibrary();\n\t\t},\n\n\t\tcustomizeAttachmentsButton: function () {\n\t\t\t// validate\n\t\t\tif ( ! acf.isset( wp, 'media', 'view', 'Button' ) ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// Extend\n\t\t\tvar Button = wp.media.view.Button;\n\t\t\twp.media.view.Button = Button.extend( {\n\t\t\t\t// Fix bug where \"Select\" button appears blank after editing an image.\n\t\t\t\t// Do this by simplifying Button initialize function and avoid deleting this.options.\n\t\t\t\tinitialize: function () {\n\t\t\t\t\tvar options = _.defaults( this.options, this.defaults );\n\t\t\t\t\tthis.model = new Backbone.Model( options );\n\t\t\t\t\tthis.listenTo( this.model, 'change', this.render );\n\t\t\t\t},\n\t\t\t} );\n\t\t},\n\n\t\tcustomizeAttachmentsRouter: function () {\n\t\t\t// validate\n\t\t\tif ( ! acf.isset( wp, 'media', 'view', 'Router' ) ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// vars\n\t\t\tvar Parent = wp.media.view.Router;\n\n\t\t\t// extend\n\t\t\twp.media.view.Router = Parent.extend( {\n\t\t\t\taddExpand: function () {\n\t\t\t\t\t// vars\n\t\t\t\t\tvar $a = $(\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t'',\n\t\t\t\t\t\t\t'' +\n\t\t\t\t\t\t\t\tacf.__( 'Expand Details' ) +\n\t\t\t\t\t\t\t\t'',\n\t\t\t\t\t\t\t'' +\n\t\t\t\t\t\t\t\tacf.__( 'Collapse Details' ) +\n\t\t\t\t\t\t\t\t'',\n\t\t\t\t\t\t\t'',\n\t\t\t\t\t\t].join( '' )\n\t\t\t\t\t);\n\n\t\t\t\t\t// add events\n\t\t\t\t\t$a.on( 'click', function ( e ) {\n\t\t\t\t\t\te.preventDefault();\n\t\t\t\t\t\tvar $div = $( this ).closest( '.media-modal' );\n\t\t\t\t\t\tif ( $div.hasClass( 'acf-expanded' ) ) {\n\t\t\t\t\t\t\t$div.removeClass( 'acf-expanded' );\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t$div.addClass( 'acf-expanded' );\n\t\t\t\t\t\t}\n\t\t\t\t\t} );\n\n\t\t\t\t\t// append\n\t\t\t\t\tthis.$el.append( $a );\n\t\t\t\t},\n\n\t\t\t\tinitialize: function () {\n\t\t\t\t\t// initialize\n\t\t\t\t\tParent.prototype.initialize.apply( this, arguments );\n\n\t\t\t\t\t// add buttons\n\t\t\t\t\tthis.addExpand();\n\n\t\t\t\t\t// return\n\t\t\t\t\treturn this;\n\t\t\t\t},\n\t\t\t} );\n\t\t},\n\n\t\tcustomizeAttachmentFilters: function () {\n\t\t\t// validate\n\t\t\tif (\n\t\t\t\t! acf.isset( wp, 'media', 'view', 'AttachmentFilters', 'All' )\n\t\t\t) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// vars\n\t\t\tvar Parent = wp.media.view.AttachmentFilters.All;\n\n\t\t\t// renderFilters\n\t\t\t// copied from media-views.js:6939\n\t\t\tParent.prototype.renderFilters = function () {\n\t\t\t\t// Build `' )\n\t\t\t\t\t\t\t\t\t.val( value )\n\t\t\t\t\t\t\t\t\t.html( filter.text )[ 0 ],\n\t\t\t\t\t\t\t\tpriority: filter.priority || 50,\n\t\t\t\t\t\t\t};\n\t\t\t\t\t\t}, this )\n\t\t\t\t\t\t.sortBy( 'priority' )\n\t\t\t\t\t\t.pluck( 'el' )\n\t\t\t\t\t\t.value()\n\t\t\t\t);\n\t\t\t};\n\t\t},\n\n\t\tcustomizeAttachmentCompat: function () {\n\t\t\t// validate\n\t\t\tif ( ! acf.isset( wp, 'media', 'view', 'AttachmentCompat' ) ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// vars\n\t\t\tvar AttachmentCompat = wp.media.view.AttachmentCompat;\n\t\t\tvar timeout = false;\n\n\t\t\t// extend\n\t\t\twp.media.view.AttachmentCompat = AttachmentCompat.extend( {\n\t\t\t\trender: function () {\n\t\t\t\t\t// WP bug\n\t\t\t\t\t// When multiple media frames exist on the same page (WP content, WYSIWYG, image, file ),\n\t\t\t\t\t// WP creates multiple instances of this AttachmentCompat view.\n\t\t\t\t\t// Each instance will attempt to render when a new modal is created.\n\t\t\t\t\t// Use a property to avoid this and only render once per instance.\n\t\t\t\t\tif ( this.rendered ) {\n\t\t\t\t\t\treturn this;\n\t\t\t\t\t}\n\n\t\t\t\t\t// render HTML\n\t\t\t\t\tAttachmentCompat.prototype.render.apply( this, arguments );\n\n\t\t\t\t\t// when uploading, render is called twice.\n\t\t\t\t\t// ignore first render by checking for #acf-form-data element\n\t\t\t\t\tif ( ! this.$( '#acf-form-data' ).length ) {\n\t\t\t\t\t\treturn this;\n\t\t\t\t\t}\n\n\t\t\t\t\t// clear timeout\n\t\t\t\t\tclearTimeout( timeout );\n\n\t\t\t\t\t// setTimeout\n\t\t\t\t\ttimeout = setTimeout(\n\t\t\t\t\t\t$.proxy( function () {\n\t\t\t\t\t\t\tthis.rendered = true;\n\t\t\t\t\t\t\tacf.doAction( 'append', this.$el );\n\t\t\t\t\t\t}, this ),\n\t\t\t\t\t\t50\n\t\t\t\t\t);\n\n\t\t\t\t\t// return\n\t\t\t\t\treturn this;\n\t\t\t\t},\n\n\t\t\t\tsave: function ( event ) {\n\t\t\t\t\tvar data = {};\n\n\t\t\t\t\tif ( event ) {\n\t\t\t\t\t\tevent.preventDefault();\n\t\t\t\t\t}\n\n\t\t\t\t\t//_.each( this.$el.serializeArray(), function( pair ) {\n\t\t\t\t\t//\tdata[ pair.name ] = pair.value;\n\t\t\t\t\t//});\n\n\t\t\t\t\t// Serialize data more thoroughly to allow chckbox inputs to save.\n\t\t\t\t\tdata = acf.serializeForAjax( this.$el );\n\n\t\t\t\t\tthis.controller.trigger( 'attachment:compat:waiting', [\n\t\t\t\t\t\t'waiting',\n\t\t\t\t\t] );\n\t\t\t\t\tthis.model\n\t\t\t\t\t\t.saveCompat( data )\n\t\t\t\t\t\t.always( _.bind( this.postSave, this ) );\n\t\t\t\t},\n\t\t\t} );\n\t\t},\n\n\t\tcustomizeAttachmentLibrary: function () {\n\t\t\t// validate\n\t\t\tif ( ! acf.isset( wp, 'media', 'view', 'Attachment', 'Library' ) ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// vars\n\t\t\tvar AttachmentLibrary = wp.media.view.Attachment.Library;\n\n\t\t\t// extend\n\t\t\twp.media.view.Attachment.Library = AttachmentLibrary.extend( {\n\t\t\t\trender: function () {\n\t\t\t\t\t// vars\n\t\t\t\t\tvar popup = acf.isget( this, 'controller', 'acf' );\n\t\t\t\t\tvar attributes = acf.isget( this, 'model', 'attributes' );\n\n\t\t\t\t\t// check vars exist to avoid errors\n\t\t\t\t\tif ( popup && attributes ) {\n\t\t\t\t\t\t// show errors\n\t\t\t\t\t\tif ( attributes.acf_errors ) {\n\t\t\t\t\t\t\tthis.$el.addClass( 'acf-disabled' );\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// disable selected\n\t\t\t\t\t\tvar selected = popup.get( 'selected' );\n\t\t\t\t\t\tif (\n\t\t\t\t\t\t\tselected &&\n\t\t\t\t\t\t\tselected.indexOf( attributes.id ) > -1\n\t\t\t\t\t\t) {\n\t\t\t\t\t\t\tthis.$el.addClass( 'acf-selected' );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// render\n\t\t\t\t\treturn AttachmentLibrary.prototype.render.apply(\n\t\t\t\t\t\tthis,\n\t\t\t\t\t\targuments\n\t\t\t\t\t);\n\t\t\t\t},\n\n\t\t\t\t/*\n\t\t\t\t * toggleSelection\n\t\t\t\t *\n\t\t\t\t * This function is called before an attachment is selected\n\t\t\t\t * A good place to check for errors and prevent the 'select' function from being fired\n\t\t\t\t *\n\t\t\t\t * @type\tfunction\n\t\t\t\t * @date\t29/09/2016\n\t\t\t\t * @since\t5.4.0\n\t\t\t\t *\n\t\t\t\t * @param\toptions (object)\n\t\t\t\t * @return\tn/a\n\t\t\t\t */\n\n\t\t\t\ttoggleSelection: function ( options ) {\n\t\t\t\t\t// vars\n\t\t\t\t\t// source: wp-includes/js/media-views.js:2880\n\t\t\t\t\tvar collection = this.collection,\n\t\t\t\t\t\tselection = this.options.selection,\n\t\t\t\t\t\tmodel = this.model,\n\t\t\t\t\t\tsingle = selection.single();\n\n\t\t\t\t\t// vars\n\t\t\t\t\tvar frame = this.controller;\n\t\t\t\t\tvar errors = acf.isget(\n\t\t\t\t\t\tthis,\n\t\t\t\t\t\t'model',\n\t\t\t\t\t\t'attributes',\n\t\t\t\t\t\t'acf_errors'\n\t\t\t\t\t);\n\t\t\t\t\tvar $sidebar = frame.$el.find(\n\t\t\t\t\t\t'.media-frame-content .media-sidebar'\n\t\t\t\t\t);\n\n\t\t\t\t\t// remove previous error\n\t\t\t\t\t$sidebar.children( '.acf-selection-error' ).remove();\n\n\t\t\t\t\t// show attachment details\n\t\t\t\t\t$sidebar.children().removeClass( 'acf-hidden' );\n\n\t\t\t\t\t// add message\n\t\t\t\t\tif ( frame && errors ) {\n\t\t\t\t\t\t// vars\n\t\t\t\t\t\tvar filename = acf.isget(\n\t\t\t\t\t\t\tthis,\n\t\t\t\t\t\t\t'model',\n\t\t\t\t\t\t\t'attributes',\n\t\t\t\t\t\t\t'filename'\n\t\t\t\t\t\t);\n\n\t\t\t\t\t\t// hide attachment details\n\t\t\t\t\t\t// Gallery field continues to show previously selected attachment...\n\t\t\t\t\t\t$sidebar.children().addClass( 'acf-hidden' );\n\n\t\t\t\t\t\t// append message\n\t\t\t\t\t\t$sidebar.prepend(\n\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t'
              ',\n\t\t\t\t\t\t\t\t'' +\n\t\t\t\t\t\t\t\t\tacf.__( 'Restricted' ) +\n\t\t\t\t\t\t\t\t\t'',\n\t\t\t\t\t\t\t\t'' +\n\t\t\t\t\t\t\t\t\tfilename +\n\t\t\t\t\t\t\t\t\t'',\n\t\t\t\t\t\t\t\t'' +\n\t\t\t\t\t\t\t\t\terrors +\n\t\t\t\t\t\t\t\t\t'',\n\t\t\t\t\t\t\t\t'
              ',\n\t\t\t\t\t\t\t].join( '' )\n\t\t\t\t\t\t);\n\n\t\t\t\t\t\t// reset selection (unselects all attachments)\n\t\t\t\t\t\tselection.reset();\n\n\t\t\t\t\t\t// set single (attachment displayed in sidebar)\n\t\t\t\t\t\tselection.single( model );\n\n\t\t\t\t\t\t// return and prevent 'select' form being fired\n\t\t\t\t\t\treturn;\n\t\t\t\t\t}\n\n\t\t\t\t\t// return\n\t\t\t\t\treturn AttachmentLibrary.prototype.toggleSelection.apply(\n\t\t\t\t\t\tthis,\n\t\t\t\t\t\targuments\n\t\t\t\t\t);\n\t\t\t\t},\n\t\t\t} );\n\t\t},\n\t} );\n} )( jQuery );\n","( function ( $, undefined ) {\n\t/**\n\t * postboxManager\n\t *\n\t * Manages postboxes on the screen.\n\t *\n\t * @date\t25/5/19\n\t * @since\t5.8.1\n\t *\n\t * @param\tvoid\n\t * @return\tvoid\n\t */\n\tvar postboxManager = new acf.Model( {\n\t\twait: 'prepare',\n\t\tpriority: 1,\n\t\tinitialize: function () {\n\t\t\t( acf.get( 'postboxes' ) || [] ).map( acf.newPostbox );\n\t\t},\n\t} );\n\n\t/**\n\t * acf.getPostbox\n\t *\n\t * Returns a postbox instance.\n\t *\n\t * @date\t23/9/18\n\t * @since\t5.7.7\n\t *\n\t * @param\tmixed $el Either a jQuery element or the postbox id.\n\t * @return\tobject\n\t */\n\tacf.getPostbox = function ( $el ) {\n\t\t// allow string parameter\n\t\tif ( typeof arguments[ 0 ] == 'string' ) {\n\t\t\t$el = $( '#' + arguments[ 0 ] );\n\t\t}\n\n\t\t// return instance\n\t\treturn acf.getInstance( $el );\n\t};\n\n\t/**\n\t * acf.getPostboxes\n\t *\n\t * Returns an array of postbox instances.\n\t *\n\t * @date\t23/9/18\n\t * @since\t5.7.7\n\t *\n\t * @param\tvoid\n\t * @return\tarray\n\t */\n\tacf.getPostboxes = function () {\n\t\treturn acf.getInstances( $( '.acf-postbox' ) );\n\t};\n\n\t/**\n\t * acf.newPostbox\n\t *\n\t * Returns a new postbox instance for the given props.\n\t *\n\t * @date\t20/9/18\n\t * @since\t5.7.6\n\t *\n\t * @param\tobject props The postbox properties.\n\t * @return\tobject\n\t */\n\tacf.newPostbox = function ( props ) {\n\t\treturn new acf.models.Postbox( props );\n\t};\n\n\t/**\n\t * acf.models.Postbox\n\t *\n\t * The postbox model.\n\t *\n\t * @date\t20/9/18\n\t * @since\t5.7.6\n\t *\n\t * @param\tvoid\n\t * @return\tvoid\n\t */\n\tacf.models.Postbox = acf.Model.extend( {\n\t\tdata: {\n\t\t\tid: '',\n\t\t\tkey: '',\n\t\t\tstyle: 'default',\n\t\t\tlabel: 'top',\n\t\t\tedit: '',\n\t\t},\n\n\t\tsetup: function ( props ) {\n\t\t\t// compatibilty\n\t\t\tif ( props.editLink ) {\n\t\t\t\tprops.edit = props.editLink;\n\t\t\t}\n\n\t\t\t// extend data\n\t\t\t$.extend( this.data, props );\n\n\t\t\t// set $el\n\t\t\tthis.$el = this.$postbox();\n\t\t},\n\n\t\t$postbox: function () {\n\t\t\treturn $( '#' + this.get( 'id' ) );\n\t\t},\n\n\t\t$hide: function () {\n\t\t\treturn $( '#' + this.get( 'id' ) + '-hide' );\n\t\t},\n\n\t\t$hideLabel: function () {\n\t\t\treturn this.$hide().parent();\n\t\t},\n\n\t\t$hndle: function () {\n\t\t\treturn this.$( '> .hndle' );\n\t\t},\n\n\t\t$handleActions: function () {\n\t\t\treturn this.$( '> .postbox-header .handle-actions' );\n\t\t},\n\n\t\t$inside: function () {\n\t\t\treturn this.$( '> .inside' );\n\t\t},\n\n\t\tisVisible: function () {\n\t\t\treturn this.$el.hasClass( 'acf-hidden' );\n\t\t},\n\n\t\tisHiddenByScreenOptions: function () {\n\t\t\treturn (\n\t\t\t\tthis.$el.hasClass( 'hide-if-js' ) ||\n\t\t\t\tthis.$el.css( 'display' ) == 'none'\n\t\t\t);\n\t\t},\n\n\t\tinitialize: function () {\n\t\t\t// Add default class.\n\t\t\tthis.$el.addClass( 'acf-postbox' );\n\n\t\t\t// Add field group style class (ignore in block editor).\n\t\t\tif ( acf.get( 'editor' ) !== 'block' ) {\n\t\t\t\tvar style = this.get( 'style' );\n\t\t\t\tif ( style !== 'default' ) {\n\t\t\t\t\tthis.$el.addClass( style );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Add .inside class.\n\t\t\tthis.$inside()\n\t\t\t\t.addClass( 'acf-fields' )\n\t\t\t\t.addClass( '-' + this.get( 'label' ) );\n\n\t\t\t// Append edit link.\n\t\t\tvar edit = this.get( 'edit' );\n\t\t\tif ( edit ) {\n\t\t\t\tvar html =\n\t\t\t\t\t'';\n\t\t\t\tvar $handleActions = this.$handleActions();\n\t\t\t\tif ( $handleActions.length ) {\n\t\t\t\t\t$handleActions.prepend( html );\n\t\t\t\t} else {\n\t\t\t\t\tthis.$hndle().append( html );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Show postbox.\n\t\t\tthis.show();\n\t\t},\n\n\t\tshow: function () {\n\t\t\t// If disabled by screen options, set checked to false and return.\n\t\t\tif ( this.$el.hasClass( 'hide-if-js' ) ) {\n\t\t\t\tthis.$hide().prop( 'checked', false );\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// Show label.\n\t\t\tthis.$hideLabel().show();\n\n\t\t\t// toggle on checkbox\n\t\t\tthis.$hide().prop( 'checked', true );\n\n\t\t\t// Show postbox\n\t\t\tthis.$el.show().removeClass( 'acf-hidden' );\n\n\t\t\t// Do action.\n\t\t\tacf.doAction( 'show_postbox', this );\n\t\t},\n\n\t\tenable: function () {\n\t\t\tacf.enable( this.$el, 'postbox' );\n\t\t},\n\n\t\tshowEnable: function () {\n\t\t\tthis.enable();\n\t\t\tthis.show();\n\t\t},\n\n\t\thide: function () {\n\t\t\t// Hide label.\n\t\t\tthis.$hideLabel().hide();\n\n\t\t\t// Hide postbox\n\t\t\tthis.$el.hide().addClass( 'acf-hidden' );\n\n\t\t\t// Do action.\n\t\t\tacf.doAction( 'hide_postbox', this );\n\t\t},\n\n\t\tdisable: function () {\n\t\t\tacf.disable( this.$el, 'postbox' );\n\t\t},\n\n\t\thideDisable: function () {\n\t\t\tthis.disable();\n\t\t\tthis.hide();\n\t\t},\n\n\t\thtml: function ( html ) {\n\t\t\t// Update HTML.\n\t\t\tthis.$inside().html( html );\n\n\t\t\t// Do action.\n\t\t\tacf.doAction( 'append', this.$el );\n\t\t},\n\t} );\n} )( jQuery );\n","( function ( $, undefined ) {\n\tacf.screen = new acf.Model( {\n\t\tactive: true,\n\n\t\txhr: false,\n\n\t\ttimeout: false,\n\n\t\twait: 'load',\n\n\t\tevents: {\n\t\t\t'change #page_template': 'onChange',\n\t\t\t'change #parent_id': 'onChange',\n\t\t\t'change #post-formats-select': 'onChange',\n\t\t\t'change .categorychecklist': 'onChange',\n\t\t\t'change .tagsdiv': 'onChange',\n\t\t\t'change .acf-taxonomy-field[data-save=\"1\"]': 'onChange',\n\t\t\t'change #product-type': 'onChange',\n\t\t},\n\n\t\tisPost: function () {\n\t\t\treturn acf.get( 'screen' ) === 'post';\n\t\t},\n\n\t\tisUser: function () {\n\t\t\treturn acf.get( 'screen' ) === 'user';\n\t\t},\n\n\t\tisTaxonomy: function () {\n\t\t\treturn acf.get( 'screen' ) === 'taxonomy';\n\t\t},\n\n\t\tisAttachment: function () {\n\t\t\treturn acf.get( 'screen' ) === 'attachment';\n\t\t},\n\n\t\tisNavMenu: function () {\n\t\t\treturn acf.get( 'screen' ) === 'nav_menu';\n\t\t},\n\n\t\tisWidget: function () {\n\t\t\treturn acf.get( 'screen' ) === 'widget';\n\t\t},\n\n\t\tisComment: function () {\n\t\t\treturn acf.get( 'screen' ) === 'comment';\n\t\t},\n\n\t\tgetPageTemplate: function () {\n\t\t\tvar $el = $( '#page_template' );\n\t\t\treturn $el.length ? $el.val() : null;\n\t\t},\n\n\t\tgetPageParent: function ( e, $el ) {\n\t\t\tvar $el = $( '#parent_id' );\n\t\t\treturn $el.length ? $el.val() : null;\n\t\t},\n\n\t\tgetPageType: function ( e, $el ) {\n\t\t\treturn this.getPageParent() ? 'child' : 'parent';\n\t\t},\n\n\t\tgetPostType: function () {\n\t\t\treturn $( '#post_type' ).val();\n\t\t},\n\n\t\tgetPostFormat: function ( e, $el ) {\n\t\t\tvar $el = $( '#post-formats-select input:checked' );\n\t\t\tif ( $el.length ) {\n\t\t\t\tvar val = $el.val();\n\t\t\t\treturn val == '0' ? 'standard' : val;\n\t\t\t}\n\t\t\treturn null;\n\t\t},\n\n\t\tgetPostCoreTerms: function () {\n\t\t\t// vars\n\t\t\tvar terms = {};\n\n\t\t\t// serialize WP taxonomy postboxes\n\t\t\tvar data = acf.serialize( $( '.categorydiv, .tagsdiv' ) );\n\n\t\t\t// use tax_input (tag, custom-taxonomy) when possible.\n\t\t\t// this data is already formatted in taxonomy => [terms].\n\t\t\tif ( data.tax_input ) {\n\t\t\t\tterms = data.tax_input;\n\t\t\t}\n\n\t\t\t// append \"category\" which uses a different name\n\t\t\tif ( data.post_category ) {\n\t\t\t\tterms.category = data.post_category;\n\t\t\t}\n\n\t\t\t// convert any string values (tags) into array format\n\t\t\tfor ( var tax in terms ) {\n\t\t\t\tif ( ! acf.isArray( terms[ tax ] ) ) {\n\t\t\t\t\tterms[ tax ] = terms[ tax ].split( /,[\\s]?/ );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// return\n\t\t\treturn terms;\n\t\t},\n\n\t\tgetPostTerms: function () {\n\t\t\t// Get core terms.\n\t\t\tvar terms = this.getPostCoreTerms();\n\n\t\t\t// loop over taxonomy fields and add their values\n\t\t\tacf.getFields( { type: 'taxonomy' } ).map( function ( field ) {\n\t\t\t\t// ignore fields that don't save\n\t\t\t\tif ( ! field.get( 'save' ) ) {\n\t\t\t\t\treturn;\n\t\t\t\t}\n\n\t\t\t\t// vars\n\t\t\t\tvar val = field.val();\n\t\t\t\tvar tax = field.get( 'taxonomy' );\n\n\t\t\t\t// check val\n\t\t\t\tif ( val ) {\n\t\t\t\t\t// ensure terms exists\n\t\t\t\t\tterms[ tax ] = terms[ tax ] || [];\n\n\t\t\t\t\t// ensure val is an array\n\t\t\t\t\tval = acf.isArray( val ) ? val : [ val ];\n\n\t\t\t\t\t// append\n\t\t\t\t\tterms[ tax ] = terms[ tax ].concat( val );\n\t\t\t\t}\n\t\t\t} );\n\n\t\t\t// add WC product type\n\t\t\tif ( ( productType = this.getProductType() ) !== null ) {\n\t\t\t\tterms.product_type = [ productType ];\n\t\t\t}\n\n\t\t\t// remove duplicate values\n\t\t\tfor ( var tax in terms ) {\n\t\t\t\tterms[ tax ] = acf.uniqueArray( terms[ tax ] );\n\t\t\t}\n\n\t\t\t// return\n\t\t\treturn terms;\n\t\t},\n\n\t\tgetProductType: function () {\n\t\t\tvar $el = $( '#product-type' );\n\t\t\treturn $el.length ? $el.val() : null;\n\t\t},\n\n\t\tcheck: function () {\n\t\t\t// bail early if not for post\n\t\t\tif ( acf.get( 'screen' ) !== 'post' ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// abort XHR if is already loading AJAX data\n\t\t\tif ( this.xhr ) {\n\t\t\t\tthis.xhr.abort();\n\t\t\t}\n\n\t\t\t// vars\n\t\t\tvar ajaxData = acf.parseArgs( this.data, {\n\t\t\t\taction: 'acf/ajax/check_screen',\n\t\t\t\tscreen: acf.get( 'screen' ),\n\t\t\t\texists: [],\n\t\t\t} );\n\n\t\t\t// post id\n\t\t\tif ( this.isPost() ) {\n\t\t\t\tajaxData.post_id = acf.get( 'post_id' );\n\t\t\t}\n\n\t\t\t// post type\n\t\t\tif ( ( postType = this.getPostType() ) !== null ) {\n\t\t\t\tajaxData.post_type = postType;\n\t\t\t}\n\n\t\t\t// page template\n\t\t\tif ( ( pageTemplate = this.getPageTemplate() ) !== null ) {\n\t\t\t\tajaxData.page_template = pageTemplate;\n\t\t\t}\n\n\t\t\t// page parent\n\t\t\tif ( ( pageParent = this.getPageParent() ) !== null ) {\n\t\t\t\tajaxData.page_parent = pageParent;\n\t\t\t}\n\n\t\t\t// page type\n\t\t\tif ( ( pageType = this.getPageType() ) !== null ) {\n\t\t\t\tajaxData.page_type = pageType;\n\t\t\t}\n\n\t\t\t// post format\n\t\t\tif ( ( postFormat = this.getPostFormat() ) !== null ) {\n\t\t\t\tajaxData.post_format = postFormat;\n\t\t\t}\n\n\t\t\t// post terms\n\t\t\tif ( ( postTerms = this.getPostTerms() ) !== null ) {\n\t\t\t\tajaxData.post_terms = postTerms;\n\t\t\t}\n\n\t\t\t// add array of existing postboxes to increase performance and reduce JSON HTML\n\t\t\tacf.getPostboxes().map( function ( postbox ) {\n\t\t\t\tajaxData.exists.push( postbox.get( 'key' ) );\n\t\t\t} );\n\n\t\t\t// filter\n\t\t\tajaxData = acf.applyFilters( 'check_screen_args', ajaxData );\n\n\t\t\t// success\n\t\t\tvar onSuccess = function ( json ) {\n\t\t\t\t// Render post screen.\n\t\t\t\tif ( acf.get( 'screen' ) == 'post' ) {\n\t\t\t\t\tthis.renderPostScreen( json );\n\n\t\t\t\t\t// Render user screen.\n\t\t\t\t} else if ( acf.get( 'screen' ) == 'user' ) {\n\t\t\t\t\tthis.renderUserScreen( json );\n\t\t\t\t}\n\n\t\t\t\t// action\n\t\t\t\tacf.doAction( 'check_screen_complete', json, ajaxData );\n\t\t\t};\n\n\t\t\t// ajax\n\t\t\tthis.xhr = $.ajax( {\n\t\t\t\turl: acf.get( 'ajaxurl' ),\n\t\t\t\tdata: acf.prepareForAjax( ajaxData ),\n\t\t\t\ttype: 'post',\n\t\t\t\tdataType: 'json',\n\t\t\t\tcontext: this,\n\t\t\t\tsuccess: onSuccess,\n\t\t\t} );\n\t\t},\n\n\t\tonChange: function ( e, $el ) {\n\t\t\tthis.setTimeout( this.check, 1 );\n\t\t},\n\n\t\trenderPostScreen: function ( data ) {\n\t\t\t// Helper function to copy events\n\t\t\tvar copyEvents = function ( $from, $to ) {\n\t\t\t\tvar events = $._data( $from[ 0 ] ).events;\n\t\t\t\tfor ( var type in events ) {\n\t\t\t\t\tfor ( var i = 0; i < events[ type ].length; i++ ) {\n\t\t\t\t\t\t$to.on( type, events[ type ][ i ].handler );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t};\n\n\t\t\t// Helper function to sort metabox.\n\t\t\tvar sortMetabox = function ( id, ids ) {\n\t\t\t\t// Find position of id within ids.\n\t\t\t\tvar index = ids.indexOf( id );\n\n\t\t\t\t// Bail early if index not found.\n\t\t\t\tif ( index == -1 ) {\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\n\t\t\t\t// Loop over metaboxes behind (in reverse order).\n\t\t\t\tfor ( var i = index - 1; i >= 0; i-- ) {\n\t\t\t\t\tif ( $( '#' + ids[ i ] ).length ) {\n\t\t\t\t\t\treturn $( '#' + ids[ i ] ).after( $( '#' + id ) );\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// Loop over metaboxes infront.\n\t\t\t\tfor ( var i = index + 1; i < ids.length; i++ ) {\n\t\t\t\t\tif ( $( '#' + ids[ i ] ).length ) {\n\t\t\t\t\t\treturn $( '#' + ids[ i ] ).before( $( '#' + id ) );\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// Return false if not sorted.\n\t\t\t\treturn false;\n\t\t\t};\n\n\t\t\t// Keep track of visible and hidden postboxes.\n\t\t\tdata.visible = [];\n\t\t\tdata.hidden = [];\n\n\t\t\t// Show these postboxes.\n\t\t\tdata.results = data.results.map( function ( result, i ) {\n\t\t\t\t// vars\n\t\t\t\tvar postbox = acf.getPostbox( result.id );\n\n\t\t\t\t// Prevent \"acf_after_title\" position in Block Editor.\n\t\t\t\tif (\n\t\t\t\t\tacf.isGutenberg() &&\n\t\t\t\t\tresult.position == 'acf_after_title'\n\t\t\t\t) {\n\t\t\t\t\tresult.position = 'normal';\n\t\t\t\t}\n\n\t\t\t\t// Create postbox if doesn't exist.\n\t\t\t\tif ( ! postbox ) {\n\t\t\t\t\tvar wpMinorVersion = parseFloat( acf.get( 'wp_version' ) );\n\t\t\t\t\tif ( wpMinorVersion >= 5.5 ) {\n\t\t\t\t\t\tvar postboxHeader = [\n\t\t\t\t\t\t\t'
              ',\n\t\t\t\t\t\t\t'

              ',\n\t\t\t\t\t\t\t'' + acf.escHtml( result.title ) + '',\n\t\t\t\t\t\t\t'

              ',\n\t\t\t\t\t\t\t'
              ',\n\t\t\t\t\t\t\t'',\n\t\t\t\t\t\t\t'
              ',\n\t\t\t\t\t\t\t'
              ',\n\t\t\t\t\t\t].join( '' );\n\t\t\t\t\t} else {\n\t\t\t\t\t\tvar postboxHeader = [\n\t\t\t\t\t\t\t'',\n\t\t\t\t\t\t\t'

              ',\n\t\t\t\t\t\t\t'' + acf.escHtml( result.title ) + '',\n\t\t\t\t\t\t\t'

              ',\n\t\t\t\t\t\t].join( '' );\n\t\t\t\t\t}\n\n\t\t\t\t\t// Ensure result.classes is set.\n\t\t\t\t\tif ( ! result.classes ) result.classes = '';\n\n\t\t\t\t\t// Create it.\n\t\t\t\t\tvar $postbox = $(\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t'
              ',\n\t\t\t\t\t\t\tpostboxHeader,\n\t\t\t\t\t\t\t'
              ',\n\t\t\t\t\t\t\tresult.html,\n\t\t\t\t\t\t\t'
              ',\n\t\t\t\t\t\t\t'
              ',\n\t\t\t\t\t\t].join( '' )\n\t\t\t\t\t);\n\n\t\t\t\t\t// Create new hide toggle.\n\t\t\t\t\tif ( $( '#adv-settings' ).length ) {\n\t\t\t\t\t\tvar $prefs = $( '#adv-settings .metabox-prefs' );\n\t\t\t\t\t\tvar $label = $(\n\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t'',\n\t\t\t\t\t\t\t].join( '' )\n\t\t\t\t\t\t);\n\n\t\t\t\t\t\t// Copy default WP events onto checkbox.\n\t\t\t\t\t\tcopyEvents(\n\t\t\t\t\t\t\t$prefs.find( 'input' ).first(),\n\t\t\t\t\t\t\t$label.find( 'input' )\n\t\t\t\t\t\t);\n\n\t\t\t\t\t\t// Append hide label\n\t\t\t\t\t\t$prefs.append( $label );\n\t\t\t\t\t}\n\n\t\t\t\t\t// Copy default WP events onto metabox.\n\t\t\t\t\tif ( $( '.postbox' ).length ) {\n\t\t\t\t\t\tcopyEvents(\n\t\t\t\t\t\t\t$( '.postbox .handlediv' ).first(),\n\t\t\t\t\t\t\t$postbox.children( '.handlediv' )\n\t\t\t\t\t\t);\n\t\t\t\t\t\tcopyEvents(\n\t\t\t\t\t\t\t$( '.postbox .hndle' ).first(),\n\t\t\t\t\t\t\t$postbox.children( '.hndle' )\n\t\t\t\t\t\t);\n\t\t\t\t\t}\n\n\t\t\t\t\t// Append metabox to the bottom of \"side-sortables\".\n\t\t\t\t\tif ( result.position === 'side' ) {\n\t\t\t\t\t\t$( '#' + result.position + '-sortables' ).append(\n\t\t\t\t\t\t\t$postbox\n\t\t\t\t\t\t);\n\n\t\t\t\t\t\t// Prepend metabox to the top of \"normal-sortbables\".\n\t\t\t\t\t} else {\n\t\t\t\t\t\t$( '#' + result.position + '-sortables' ).prepend(\n\t\t\t\t\t\t\t$postbox\n\t\t\t\t\t\t);\n\t\t\t\t\t}\n\n\t\t\t\t\t// Position metabox amongst existing ACF metaboxes within the same location.\n\t\t\t\t\tvar order = [];\n\t\t\t\t\tdata.results.map( function ( _result ) {\n\t\t\t\t\t\tif (\n\t\t\t\t\t\t\tresult.position === _result.position &&\n\t\t\t\t\t\t\t$(\n\t\t\t\t\t\t\t\t'#' +\n\t\t\t\t\t\t\t\t\tresult.position +\n\t\t\t\t\t\t\t\t\t'-sortables #' +\n\t\t\t\t\t\t\t\t\t_result.id\n\t\t\t\t\t\t\t).length\n\t\t\t\t\t\t) {\n\t\t\t\t\t\t\torder.push( _result.id );\n\t\t\t\t\t\t}\n\t\t\t\t\t} );\n\t\t\t\t\tsortMetabox( result.id, order );\n\n\t\t\t\t\t// Check 'sorted' for user preference.\n\t\t\t\t\tif ( data.sorted ) {\n\t\t\t\t\t\t// Loop over each position (acf_after_title, side, normal).\n\t\t\t\t\t\tfor ( var position in data.sorted ) {\n\t\t\t\t\t\t\tlet order = data.sorted[ position ];\n\n\t\t\t\t\t\t\tif ( typeof order !== 'string' ) {\n\t\t\t\t\t\t\t\tcontinue;\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t// Explode string into array of ids.\n\t\t\t\t\t\t\torder = order.split( ',' );\n\n\t\t\t\t\t\t\t// Position metabox relative to order.\n\t\t\t\t\t\t\tif ( sortMetabox( result.id, order ) ) {\n\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// Initalize it (modifies HTML).\n\t\t\t\t\tpostbox = acf.newPostbox( result );\n\n\t\t\t\t\t// Trigger action.\n\t\t\t\t\tacf.doAction( 'append', $postbox );\n\t\t\t\t\tacf.doAction( 'append_postbox', postbox );\n\t\t\t\t}\n\n\t\t\t\t// show postbox\n\t\t\t\tpostbox.showEnable();\n\n\t\t\t\t// append\n\t\t\t\tdata.visible.push( result.id );\n\n\t\t\t\t// Return result (may have changed).\n\t\t\t\treturn result;\n\t\t\t} );\n\n\t\t\t// Hide these postboxes.\n\t\t\tacf.getPostboxes().map( function ( postbox ) {\n\t\t\t\tif ( data.visible.indexOf( postbox.get( 'id' ) ) === -1 ) {\n\t\t\t\t\t// Hide postbox.\n\t\t\t\t\tpostbox.hideDisable();\n\n\t\t\t\t\t// Append to data.\n\t\t\t\t\tdata.hidden.push( postbox.get( 'id' ) );\n\t\t\t\t}\n\t\t\t} );\n\n\t\t\t// Update style.\n\t\t\t$( '#acf-style' ).html( data.style );\n\n\t\t\t// Do action.\n\t\t\tacf.doAction( 'refresh_post_screen', data );\n\t\t},\n\n\t\trenderUserScreen: function ( json ) {},\n\t} );\n\n\t/**\n\t * gutenScreen\n\t *\n\t * Adds compatibility with the Gutenberg edit screen.\n\t *\n\t * @date\t11/12/18\n\t * @since\t5.8.0\n\t *\n\t * @param\tvoid\n\t * @return\tvoid\n\t */\n\tvar gutenScreen = new acf.Model( {\n\t\t// Keep a reference to the most recent post attributes.\n\t\tpostEdits: {},\n\n\t\t// Wait until assets have been loaded.\n\t\twait: 'prepare',\n\n\t\tinitialize: function () {\n\t\t\t// Bail early if not Gutenberg.\n\t\t\tif ( ! acf.isGutenbergPostEditor() ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// Listen for changes (use debounced version as this can fires often).\n\t\t\twp.data.subscribe( acf.debounce( this.onChange ).bind( this ) );\n\n\t\t\t// Customize \"acf.screen.get\" functions.\n\t\t\tacf.screen.getPageTemplate = this.getPageTemplate;\n\t\t\tacf.screen.getPageParent = this.getPageParent;\n\t\t\tacf.screen.getPostType = this.getPostType;\n\t\t\tacf.screen.getPostFormat = this.getPostFormat;\n\t\t\tacf.screen.getPostCoreTerms = this.getPostCoreTerms;\n\n\t\t\t// Disable unload\n\t\t\tacf.unload.disable();\n\n\t\t\t// Refresh metaboxes since WP 5.3.\n\t\t\tvar wpMinorVersion = parseFloat( acf.get( 'wp_version' ) );\n\t\t\tif ( wpMinorVersion >= 5.3 ) {\n\t\t\t\tthis.addAction(\n\t\t\t\t\t'refresh_post_screen',\n\t\t\t\t\tthis.onRefreshPostScreen\n\t\t\t\t);\n\t\t\t}\n\n\t\t\t// Trigger \"refresh\" after WP has moved metaboxes into place.\n\t\t\twp.domReady( acf.refresh );\n\t\t},\n\n\t\tonChange: function () {\n\t\t\t// Determine attributes that can trigger a refresh.\n\t\t\tvar attributes = [ 'template', 'parent', 'format' ];\n\n\t\t\t// Append taxonomy attribute names to this list.\n\t\t\t( wp.data.select( 'core' ).getTaxonomies() || [] ).map( function (\n\t\t\t\ttaxonomy\n\t\t\t) {\n\t\t\t\tattributes.push( taxonomy.rest_base );\n\t\t\t} );\n\n\t\t\t// Get relevant current post edits.\n\t\t\tvar _postEdits = wp.data.select( 'core/editor' ).getPostEdits();\n\t\t\tvar postEdits = {};\n\t\t\tattributes.map( function ( k ) {\n\t\t\t\tif ( _postEdits[ k ] !== undefined ) {\n\t\t\t\t\tpostEdits[ k ] = _postEdits[ k ];\n\t\t\t\t}\n\t\t\t} );\n\n\t\t\t// Detect change.\n\t\t\tif (\n\t\t\t\tJSON.stringify( postEdits ) !== JSON.stringify( this.postEdits )\n\t\t\t) {\n\t\t\t\tthis.postEdits = postEdits;\n\n\t\t\t\t// Check screen.\n\t\t\t\tacf.screen.check();\n\t\t\t}\n\t\t},\n\n\t\tgetPageTemplate: function () {\n\t\t\treturn wp.data\n\t\t\t\t.select( 'core/editor' )\n\t\t\t\t.getEditedPostAttribute( 'template' );\n\t\t},\n\n\t\tgetPageParent: function ( e, $el ) {\n\t\t\treturn wp.data\n\t\t\t\t.select( 'core/editor' )\n\t\t\t\t.getEditedPostAttribute( 'parent' );\n\t\t},\n\n\t\tgetPostType: function () {\n\t\t\treturn wp.data\n\t\t\t\t.select( 'core/editor' )\n\t\t\t\t.getEditedPostAttribute( 'type' );\n\t\t},\n\n\t\tgetPostFormat: function ( e, $el ) {\n\t\t\treturn wp.data\n\t\t\t\t.select( 'core/editor' )\n\t\t\t\t.getEditedPostAttribute( 'format' );\n\t\t},\n\n\t\tgetPostCoreTerms: function () {\n\t\t\t// vars\n\t\t\tvar terms = {};\n\n\t\t\t// Loop over taxonomies.\n\t\t\tvar taxonomies = wp.data.select( 'core' ).getTaxonomies() || [];\n\t\t\ttaxonomies.map( function ( taxonomy ) {\n\t\t\t\t// Append selected taxonomies to terms object.\n\t\t\t\tvar postTerms = wp.data\n\t\t\t\t\t.select( 'core/editor' )\n\t\t\t\t\t.getEditedPostAttribute( taxonomy.rest_base );\n\t\t\t\tif ( postTerms ) {\n\t\t\t\t\tterms[ taxonomy.slug ] = postTerms;\n\t\t\t\t}\n\t\t\t} );\n\n\t\t\t// return\n\t\t\treturn terms;\n\t\t},\n\n\t\t/**\n\t\t * onRefreshPostScreen\n\t\t *\n\t\t * Fires after the Post edit screen metaboxs are refreshed to update the Block Editor API state.\n\t\t *\n\t\t * @date\t11/11/19\n\t\t * @since\t5.8.7\n\t\t *\n\t\t * @param\tobject data The \"check_screen\" JSON response data.\n\t\t * @return\tvoid\n\t\t */\n\t\tonRefreshPostScreen: function ( data ) {\n\n\t\t\t// Extract vars.\n\t\t\tvar select = wp.data.select( 'core/edit-post' );\n\t\t\tvar dispatch = wp.data.dispatch( 'core/edit-post' );\n\n\t\t\t// Load current metabox locations and data.\n\t\t\tvar locations = {};\n\t\t\tselect.getActiveMetaBoxLocations().map( function ( location ) {\n\t\t\t\tlocations[ location ] = select.getMetaBoxesPerLocation(\n\t\t\t\t\tlocation\n\t\t\t\t);\n\t\t\t} );\n\n\t\t\t// Generate flat array of existing ids.\n\t\t\tvar ids = [];\n\t\t\tfor ( var k in locations ) {\n\t\t\t\tlocations[ k ].map( function ( m ) {\n\t\t\t\t\tids.push( m.id );\n\t\t\t\t} );\n\t\t\t}\n\n\t\t\t// Append new ACF metaboxes (ignore those which already exist).\n\t\t\tdata.results\n\t\t\t\t.filter( function ( r ) {\n\t\t\t\t\treturn ids.indexOf( r.id ) === -1;\n\t\t\t\t} )\n\t\t\t\t.map( function ( result, i ) {\n\t\t\t\t\t// Ensure location exists.\n\t\t\t\t\tvar location = result.position;\n\t\t\t\t\tlocations[ location ] = locations[ location ] || [];\n\n\t\t\t\t\t// Append.\n\t\t\t\t\tlocations[ location ].push( {\n\t\t\t\t\t\tid: result.id,\n\t\t\t\t\t\ttitle: result.title,\n\t\t\t\t\t} );\n\t\t\t\t} );\n\n\t\t\t// Remove hidden ACF metaboxes.\n\t\t\tfor ( var k in locations ) {\n\t\t\t\tlocations[ k ] = locations[ k ].filter( function ( m ) {\n\t\t\t\t\treturn data.hidden.indexOf( m.id ) === -1;\n\t\t\t\t} );\n\t\t\t}\n\n\t\t\t// Update state.\n\t\t\tdispatch.setAvailableMetaBoxesPerLocation( locations );\n\t\t},\n\t} );\n} )( jQuery );\n","( function ( $, undefined ) {\n\t/**\n\t * acf.newSelect2\n\t *\n\t * description\n\t *\n\t * @date\t13/1/18\n\t * @since\t5.6.5\n\t *\n\t * @param\ttype $var Description. Default.\n\t * @return\ttype Description.\n\t */\n\n\tacf.newSelect2 = function ( $select, props ) {\n\t\t// defaults\n\t\tprops = acf.parseArgs( props, {\n\t\t\tallowNull: false,\n\t\t\tplaceholder: '',\n\t\t\tmultiple: false,\n\t\t\tfield: false,\n\t\t\tajax: false,\n\t\t\tajaxAction: '',\n\t\t\tajaxData: function ( data ) {\n\t\t\t\treturn data;\n\t\t\t},\n\t\t\tajaxResults: function ( json ) {\n\t\t\t\treturn json;\n\t\t\t},\n\t\t\ttemplateSelection: false,\n\t\t\ttemplateResult: false,\n\t\t\tdropdownCssClass: '',\n\t\t\tsuppressFilters: false,\n\t\t} );\n\n\t\t// initialize\n\t\tif ( getVersion() == 4 ) {\n\t\t\tvar select2 = new Select2_4( $select, props );\n\t\t} else {\n\t\t\tvar select2 = new Select2_3( $select, props );\n\t\t}\n\n\t\t// actions\n\t\tacf.doAction( 'new_select2', select2 );\n\n\t\t// return\n\t\treturn select2;\n\t};\n\n\t/**\n\t * getVersion\n\t *\n\t * description\n\t *\n\t * @date\t13/1/18\n\t * @since\t5.6.5\n\t *\n\t * @param\ttype $var Description. Default.\n\t * @return\ttype Description.\n\t */\n\n\tfunction getVersion() {\n\t\t// v4\n\t\tif ( acf.isset( window, 'jQuery', 'fn', 'select2', 'amd' ) ) {\n\t\t\treturn 4;\n\t\t}\n\n\t\t// v3\n\t\tif ( acf.isset( window, 'Select2' ) ) {\n\t\t\treturn 3;\n\t\t}\n\n\t\t// return\n\t\treturn false;\n\t}\n\n\t/**\n\t * Select2\n\t *\n\t * description\n\t *\n\t * @date\t13/1/18\n\t * @since\t5.6.5\n\t *\n\t * @param\ttype $var Description. Default.\n\t * @return\ttype Description.\n\t */\n\n\tvar Select2 = acf.Model.extend( {\n\t\tsetup: function ( $select, props ) {\n\t\t\t$.extend( this.data, props );\n\t\t\tthis.$el = $select;\n\t\t},\n\n\t\tinitialize: function () {},\n\n\t\tselectOption: function ( value ) {\n\t\t\tvar $option = this.getOption( value );\n\t\t\tif ( ! $option.prop( 'selected' ) ) {\n\t\t\t\t$option.prop( 'selected', true ).trigger( 'change' );\n\t\t\t}\n\t\t},\n\n\t\tunselectOption: function ( value ) {\n\t\t\tvar $option = this.getOption( value );\n\t\t\tif ( $option.prop( 'selected' ) ) {\n\t\t\t\t$option.prop( 'selected', false ).trigger( 'change' );\n\t\t\t}\n\t\t},\n\n\t\tgetOption: function ( value ) {\n\t\t\treturn this.$( 'option[value=\"' + value + '\"]' );\n\t\t},\n\n\t\taddOption: function ( option ) {\n\t\t\t// defaults\n\t\t\toption = acf.parseArgs( option, {\n\t\t\t\tid: '',\n\t\t\t\ttext: '',\n\t\t\t\tselected: false,\n\t\t\t} );\n\n\t\t\t// vars\n\t\t\tvar $option = this.getOption( option.id );\n\n\t\t\t// append\n\t\t\tif ( ! $option.length ) {\n\t\t\t\t$option = $( '' );\n\t\t\t\t$option.html( option.text );\n\t\t\t\t$option.attr( 'value', option.id );\n\t\t\t\t$option.prop( 'selected', option.selected );\n\t\t\t\tthis.$el.append( $option );\n\t\t\t}\n\n\t\t\t// chain\n\t\t\treturn $option;\n\t\t},\n\n\t\tgetValue: function () {\n\t\t\t// vars\n\t\t\tvar val = [];\n\t\t\tvar $options = this.$el.find( 'option:selected' );\n\n\t\t\t// bail early if no selected\n\t\t\tif ( ! $options.exists() ) {\n\t\t\t\treturn val;\n\t\t\t}\n\n\t\t\t// sort by attribute\n\t\t\t$options = $options.sort( function ( a, b ) {\n\t\t\t\treturn (\n\t\t\t\t\t+a.getAttribute( 'data-i' ) - +b.getAttribute( 'data-i' )\n\t\t\t\t);\n\t\t\t} );\n\n\t\t\t// loop\n\t\t\t$options.each( function () {\n\t\t\t\tvar $el = $( this );\n\t\t\t\tval.push( {\n\t\t\t\t\t$el: $el,\n\t\t\t\t\tid: $el.attr( 'value' ),\n\t\t\t\t\ttext: $el.text(),\n\t\t\t\t} );\n\t\t\t} );\n\n\t\t\t// return\n\t\t\treturn val;\n\t\t},\n\n\t\tmergeOptions: function () {},\n\n\t\tgetChoices: function () {\n\t\t\t// callback\n\t\t\tvar crawl = function ( $parent ) {\n\t\t\t\t// vars\n\t\t\t\tvar choices = [];\n\n\t\t\t\t// loop\n\t\t\t\t$parent.children().each( function () {\n\t\t\t\t\t// vars\n\t\t\t\t\tvar $child = $( this );\n\n\t\t\t\t\t// optgroup\n\t\t\t\t\tif ( $child.is( 'optgroup' ) ) {\n\t\t\t\t\t\tchoices.push( {\n\t\t\t\t\t\t\ttext: $child.attr( 'label' ),\n\t\t\t\t\t\t\tchildren: crawl( $child ),\n\t\t\t\t\t\t} );\n\n\t\t\t\t\t\t// option\n\t\t\t\t\t} else {\n\t\t\t\t\t\tchoices.push( {\n\t\t\t\t\t\t\tid: $child.attr( 'value' ),\n\t\t\t\t\t\t\ttext: $child.text(),\n\t\t\t\t\t\t} );\n\t\t\t\t\t}\n\t\t\t\t} );\n\n\t\t\t\t// return\n\t\t\t\treturn choices;\n\t\t\t};\n\n\t\t\t// crawl\n\t\t\treturn crawl( this.$el );\n\t\t},\n\n\t\tgetAjaxData: function ( params ) {\n\t\t\t// vars\n\t\t\tvar ajaxData = {\n\t\t\t\taction: this.get( 'ajaxAction' ),\n\t\t\t\ts: params.term || '',\n\t\t\t\tpaged: params.page || 1,\n\t\t\t};\n\n\t\t\t// field helper\n\t\t\tvar field = this.get( 'field' );\n\t\t\tif ( field ) {\n\t\t\t\tajaxData.field_key = field.get( 'key' );\n\t\t\t}\n\n\t\t\t// callback\n\t\t\tvar callback = this.get( 'ajaxData' );\n\t\t\tif ( callback ) {\n\t\t\t\tajaxData = callback.apply( this, [ ajaxData, params ] );\n\t\t\t}\n\n\t\t\t// filter\n\t\t\tajaxData = acf.applyFilters(\n\t\t\t\t'select2_ajax_data',\n\t\t\t\tajaxData,\n\t\t\t\tthis.data,\n\t\t\t\tthis.$el,\n\t\t\t\tfield || false,\n\t\t\t\tthis\n\t\t\t);\n\n\t\t\t// return\n\t\t\treturn acf.prepareForAjax( ajaxData );\n\t\t},\n\n\t\tgetAjaxResults: function ( json, params ) {\n\t\t\t// defaults\n\t\t\tjson = acf.parseArgs( json, {\n\t\t\t\tresults: false,\n\t\t\t\tmore: false,\n\t\t\t} );\n\n\t\t\t// callback\n\t\t\tvar callback = this.get( 'ajaxResults' );\n\t\t\tif ( callback ) {\n\t\t\t\tjson = callback.apply( this, [ json, params ] );\n\t\t\t}\n\n\t\t\t// filter\n\t\t\tjson = acf.applyFilters(\n\t\t\t\t'select2_ajax_results',\n\t\t\t\tjson,\n\t\t\t\tparams,\n\t\t\t\tthis\n\t\t\t);\n\n\t\t\t// return\n\t\t\treturn json;\n\t\t},\n\n\t\tprocessAjaxResults: function ( json, params ) {\n\t\t\t// vars\n\t\t\tvar json = this.getAjaxResults( json, params );\n\n\t\t\t// change more to pagination\n\t\t\tif ( json.more ) {\n\t\t\t\tjson.pagination = { more: true };\n\t\t\t}\n\n\t\t\t// merge together groups\n\t\t\tsetTimeout( $.proxy( this.mergeOptions, this ), 1 );\n\n\t\t\t// return\n\t\t\treturn json;\n\t\t},\n\n\t\tdestroy: function () {\n\t\t\t// destroy via api\n\t\t\tif ( this.$el.data( 'select2' ) ) {\n\t\t\t\tthis.$el.select2( 'destroy' );\n\t\t\t}\n\n\t\t\t// destory via HTML (duplicating HTML does not contain data)\n\t\t\tthis.$el.siblings( '.select2-container' ).remove();\n\t\t},\n\t} );\n\n\t/**\n\t * Select2_4\n\t *\n\t * description\n\t *\n\t * @date\t13/1/18\n\t * @since\t5.6.5\n\t *\n\t * @param\ttype $var Description. Default.\n\t * @return\ttype Description.\n\t */\n\n\tvar Select2_4 = Select2.extend( {\n\t\tinitialize: function () {\n\t\t\t// vars\n\t\t\tvar $select = this.$el;\n\t\t\tvar options = {\n\t\t\t\twidth: '100%',\n\t\t\t\tallowClear: this.get( 'allowNull' ),\n\t\t\t\tplaceholder: this.get( 'placeholder' ),\n\t\t\t\tmultiple: this.get( 'multiple' ),\n\t\t\t\ttemplateSelection: this.get( 'templateSelection' ),\n\t\t\t\ttemplateResult: this.get( 'templateResult' ),\n\t\t\t\tdropdownCssClass: this.get( 'dropdownCssClass' ),\n\t\t\t\tsuppressFilters: this.get( 'suppressFilters' ),\n\t\t\t\tdata: [],\n\t\t\t\tescapeMarkup: function ( markup ) {\n\t\t\t\t\tif ( typeof markup !== 'string' ) {\n\t\t\t\t\t\treturn markup;\n\t\t\t\t\t}\n\t\t\t\t\treturn acf.escHtml( markup );\n\t\t\t\t},\n\t\t\t};\n\n\t\t\t// Clear empty templateSelections, templateResults, or dropdownCssClass.\n\t\t\tif ( ! options.templateSelection ) {\n\t\t\t\tdelete options.templateSelection;\n\t\t\t}\n\t\t\tif ( ! options.templateResult ) {\n\t\t\t\tdelete options.templateResult;\n\t\t\t}\n\t\t\tif ( ! options.dropdownCssClass ) {\n\t\t\t\tdelete options.dropdownCssClass;\n\t\t\t}\n\n\t\t\t// Only use the template if SelectWoo is not loaded to work around https://github.com/woocommerce/woocommerce/pull/30473\n\t\t\tif ( ! acf.isset( window, 'jQuery', 'fn', 'selectWoo' ) ) {\n\t\t\t\tif ( ! options.templateSelection ) {\n\t\t\t\t\toptions.templateSelection = function ( selection ) {\n\t\t\t\t\t\tvar $selection = $(\n\t\t\t\t\t\t\t''\n\t\t\t\t\t\t);\n\t\t\t\t\t\t$selection.html( acf.strEscape( selection.text ) );\n\t\t\t\t\t\t$selection.data( 'element', selection.element );\n\t\t\t\t\t\treturn $selection;\n\t\t\t\t\t};\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tdelete options.templateSelection;\n\t\t\t\tdelete options.templateResult;\n\t\t\t}\n\n\t\t\t// multiple\n\t\t\tif ( options.multiple ) {\n\t\t\t\t// reorder options\n\t\t\t\tthis.getValue().map( function ( item ) {\n\t\t\t\t\titem.$el.detach().appendTo( $select );\n\t\t\t\t} );\n\t\t\t}\n\n\t\t\t// Temporarily remove conflicting attribute.\n\t\t\tvar attrAjax = $select.attr( 'data-ajax' );\n\t\t\tif ( attrAjax !== undefined ) {\n\t\t\t\t$select.removeData( 'ajax' );\n\t\t\t\t$select.removeAttr( 'data-ajax' );\n\t\t\t}\n\n\t\t\t// ajax\n\t\t\tif ( this.get( 'ajax' ) ) {\n\t\t\t\toptions.ajax = {\n\t\t\t\t\turl: acf.get( 'ajaxurl' ),\n\t\t\t\t\tdelay: 250,\n\t\t\t\t\tdataType: 'json',\n\t\t\t\t\ttype: 'post',\n\t\t\t\t\tcache: false,\n\t\t\t\t\tdata: $.proxy( this.getAjaxData, this ),\n\t\t\t\t\tprocessResults: $.proxy( this.processAjaxResults, this ),\n\t\t\t\t};\n\t\t\t}\n\n\t\t\t// filter for 3rd party customization\n\t\t\tif ( ! options.suppressFilters ) {\n\t\t\t\tvar field = this.get( 'field' );\n\t\t\t\toptions = acf.applyFilters(\n\t\t\t\t\t'select2_args',\n\t\t\t\t\toptions,\n\t\t\t\t\t$select,\n\t\t\t\t\tthis.data,\n\t\t\t\t\tfield || false,\n\t\t\t\t\tthis\n\t\t\t\t);\n\t\t\t}\n\n\t\t\t// add select2\n\t\t\t$select.select2( options );\n\n\t\t\t// get container (Select2 v4 does not return this from constructor)\n\t\t\tvar $container = $select.next( '.select2-container' );\n\n\t\t\t// multiple\n\t\t\tif ( options.multiple ) {\n\t\t\t\t// vars\n\t\t\t\tvar $ul = $container.find( 'ul' );\n\n\t\t\t\t// sortable\n\t\t\t\t$ul.sortable( {\n\t\t\t\t\tstop: function ( e ) {\n\t\t\t\t\t\t// loop\n\t\t\t\t\t\t$ul.find( '.select2-selection__choice' ).each(\n\t\t\t\t\t\t\tfunction () {\n\t\t\t\t\t\t\t\t// Attempt to use .data if it exists (select2 version < 4.0.6) or use our template data instead.\n\t\t\t\t\t\t\t\tif ( $( this ).data( 'data' ) ) {\n\t\t\t\t\t\t\t\t\tvar $option = $(\n\t\t\t\t\t\t\t\t\t\t$( this ).data( 'data' ).element\n\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\tvar $option = $(\n\t\t\t\t\t\t\t\t\t\t$( this )\n\t\t\t\t\t\t\t\t\t\t\t.find( 'span.acf-selection' )\n\t\t\t\t\t\t\t\t\t\t\t.data( 'element' )\n\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t// detach and re-append to end\n\t\t\t\t\t\t\t\t$option.detach().appendTo( $select );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t);\n\n\t\t\t\t\t\t// trigger change on input (JS error if trigger on select)\n\t\t\t\t\t\t$select.trigger( 'change' );\n\t\t\t\t\t},\n\t\t\t\t} );\n\n\t\t\t\t// on select, move to end\n\t\t\t\t$select.on(\n\t\t\t\t\t'select2:select',\n\t\t\t\t\tthis.proxy( function ( e ) {\n\t\t\t\t\t\tthis.getOption( e.params.data.id )\n\t\t\t\t\t\t\t.detach()\n\t\t\t\t\t\t\t.appendTo( this.$el );\n\t\t\t\t\t} )\n\t\t\t\t);\n\t\t\t}\n\n\t\t\t// add handler to auto-focus searchbox (for jQuery 3.6)\n\t\t\t$select.on( 'select2:open', () => {\n\t\t\t\t$( '.select2-container--open .select2-search__field' )\n\t\t\t\t\t.get( -1 )\n\t\t\t\t\t.focus();\n\t\t\t} );\n\n\t\t\t// add class\n\t\t\t$container.addClass( '-acf' );\n\n\t\t\t// Add back temporarily removed attr.\n\t\t\tif ( attrAjax !== undefined ) {\n\t\t\t\t$select.attr( 'data-ajax', attrAjax );\n\t\t\t}\n\n\t\t\t// action for 3rd party customization\n\t\t\tif ( ! options.suppressFilters ) {\n\t\t\t\tacf.doAction(\n\t\t\t\t\t'select2_init',\n\t\t\t\t\t$select,\n\t\t\t\t\toptions,\n\t\t\t\t\tthis.data,\n\t\t\t\t\tfield || false,\n\t\t\t\t\tthis\n\t\t\t\t);\n\t\t\t}\n\t\t},\n\n\t\tmergeOptions: function () {\n\t\t\t// vars\n\t\t\tvar $prevOptions = false;\n\t\t\tvar $prevGroup = false;\n\n\t\t\t// loop\n\t\t\t$( '.select2-results__option[role=\"group\"]' ).each( function () {\n\t\t\t\t// vars\n\t\t\t\tvar $options = $( this ).children( 'ul' );\n\t\t\t\tvar $group = $( this ).children( 'strong' );\n\n\t\t\t\t// compare to previous\n\t\t\t\tif ( $prevGroup && $prevGroup.text() === $group.text() ) {\n\t\t\t\t\t$prevOptions.append( $options.children() );\n\t\t\t\t\t$( this ).remove();\n\t\t\t\t\treturn;\n\t\t\t\t}\n\n\t\t\t\t// update vars\n\t\t\t\t$prevOptions = $options;\n\t\t\t\t$prevGroup = $group;\n\t\t\t} );\n\t\t},\n\t} );\n\n\t/**\n\t * Select2_3\n\t *\n\t * description\n\t *\n\t * @date\t13/1/18\n\t * @since\t5.6.5\n\t *\n\t * @param\ttype $var Description. Default.\n\t * @return\ttype Description.\n\t */\n\n\tvar Select2_3 = Select2.extend( {\n\t\tinitialize: function () {\n\t\t\t// vars\n\t\t\tvar $select = this.$el;\n\t\t\tvar value = this.getValue();\n\t\t\tvar multiple = this.get( 'multiple' );\n\t\t\tvar options = {\n\t\t\t\twidth: '100%',\n\t\t\t\tallowClear: this.get( 'allowNull' ),\n\t\t\t\tplaceholder: this.get( 'placeholder' ),\n\t\t\t\tseparator: '||',\n\t\t\t\tmultiple: this.get( 'multiple' ),\n\t\t\t\tdata: this.getChoices(),\n\t\t\t\tescapeMarkup: function ( string ) {\n\t\t\t\t\treturn acf.escHtml( string );\n\t\t\t\t},\n\t\t\t\tdropdownCss: {\n\t\t\t\t\t'z-index': '999999999',\n\t\t\t\t},\n\t\t\t\tinitSelection: function ( element, callback ) {\n\t\t\t\t\tif ( multiple ) {\n\t\t\t\t\t\tcallback( value );\n\t\t\t\t\t} else {\n\t\t\t\t\t\tcallback( value.shift() );\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t};\n\n\t\t\t// get hidden input\n\t\t\tvar $input = $select.siblings( 'input' );\n\t\t\tif ( ! $input.length ) {\n\t\t\t\t$input = $( '' );\n\t\t\t\t$select.before( $input );\n\t\t\t}\n\n\t\t\t// set input value\n\t\t\tinputValue = value\n\t\t\t\t.map( function ( item ) {\n\t\t\t\t\treturn item.id;\n\t\t\t\t} )\n\t\t\t\t.join( '||' );\n\t\t\t$input.val( inputValue );\n\n\t\t\t// multiple\n\t\t\tif ( options.multiple ) {\n\t\t\t\t// reorder options\n\t\t\t\tvalue.map( function ( item ) {\n\t\t\t\t\titem.$el.detach().appendTo( $select );\n\t\t\t\t} );\n\t\t\t}\n\n\t\t\t// remove blank option as we have a clear all button\n\t\t\tif ( options.allowClear ) {\n\t\t\t\toptions.data = options.data.filter( function ( item ) {\n\t\t\t\t\treturn item.id !== '';\n\t\t\t\t} );\n\t\t\t}\n\n\t\t\t// remove conflicting atts\n\t\t\t$select.removeData( 'ajax' );\n\t\t\t$select.removeAttr( 'data-ajax' );\n\n\t\t\t// ajax\n\t\t\tif ( this.get( 'ajax' ) ) {\n\t\t\t\toptions.ajax = {\n\t\t\t\t\turl: acf.get( 'ajaxurl' ),\n\t\t\t\t\tquietMillis: 250,\n\t\t\t\t\tdataType: 'json',\n\t\t\t\t\ttype: 'post',\n\t\t\t\t\tcache: false,\n\t\t\t\t\tdata: $.proxy( this.getAjaxData, this ),\n\t\t\t\t\tresults: $.proxy( this.processAjaxResults, this ),\n\t\t\t\t};\n\t\t\t}\n\n\t\t\t// filter for 3rd party customization\n\t\t\tvar field = this.get( 'field' );\n\t\t\toptions = acf.applyFilters(\n\t\t\t\t'select2_args',\n\t\t\t\toptions,\n\t\t\t\t$select,\n\t\t\t\tthis.data,\n\t\t\t\tfield || false,\n\t\t\t\tthis\n\t\t\t);\n\n\t\t\t// add select2\n\t\t\t$input.select2( options );\n\n\t\t\t// get container\n\t\t\tvar $container = $input.select2( 'container' );\n\n\t\t\t// helper to find this select's option\n\t\t\tvar getOption = $.proxy( this.getOption, this );\n\n\t\t\t// multiple\n\t\t\tif ( options.multiple ) {\n\t\t\t\t// vars\n\t\t\t\tvar $ul = $container.find( 'ul' );\n\n\t\t\t\t// sortable\n\t\t\t\t$ul.sortable( {\n\t\t\t\t\tstop: function () {\n\t\t\t\t\t\t// loop\n\t\t\t\t\t\t$ul.find( '.select2-search-choice' ).each( function () {\n\t\t\t\t\t\t\t// vars\n\t\t\t\t\t\t\tvar data = $( this ).data( 'select2Data' );\n\t\t\t\t\t\t\tvar $option = getOption( data.id );\n\n\t\t\t\t\t\t\t// detach and re-append to end\n\t\t\t\t\t\t\t$option.detach().appendTo( $select );\n\t\t\t\t\t\t} );\n\n\t\t\t\t\t\t// trigger change on input (JS error if trigger on select)\n\t\t\t\t\t\t$select.trigger( 'change' );\n\t\t\t\t\t},\n\t\t\t\t} );\n\t\t\t}\n\n\t\t\t// on select, create option and move to end\n\t\t\t$input.on( 'select2-selecting', function ( e ) {\n\t\t\t\t// vars\n\t\t\t\tvar item = e.choice;\n\t\t\t\tvar $option = getOption( item.id );\n\n\t\t\t\t// create if doesn't exist\n\t\t\t\tif ( ! $option.length ) {\n\t\t\t\t\t$option = $(\n\t\t\t\t\t\t''\n\t\t\t\t\t);\n\t\t\t\t}\n\n\t\t\t\t// detach and re-append to end\n\t\t\t\t$option.detach().appendTo( $select );\n\t\t\t} );\n\n\t\t\t// add class\n\t\t\t$container.addClass( '-acf' );\n\n\t\t\t// action for 3rd party customization\n\t\t\tacf.doAction(\n\t\t\t\t'select2_init',\n\t\t\t\t$select,\n\t\t\t\toptions,\n\t\t\t\tthis.data,\n\t\t\t\tfield || false,\n\t\t\t\tthis\n\t\t\t);\n\n\t\t\t// change\n\t\t\t$input.on( 'change', function () {\n\t\t\t\tvar val = $input.val();\n\t\t\t\tif ( val.indexOf( '||' ) ) {\n\t\t\t\t\tval = val.split( '||' );\n\t\t\t\t}\n\t\t\t\t$select.val( val ).trigger( 'change' );\n\t\t\t} );\n\n\t\t\t// hide select\n\t\t\t$select.hide();\n\t\t},\n\n\t\tmergeOptions: function () {\n\t\t\t// vars\n\t\t\tvar $prevOptions = false;\n\t\t\tvar $prevGroup = false;\n\n\t\t\t// loop\n\t\t\t$( '#select2-drop .select2-result-with-children' ).each(\n\t\t\t\tfunction () {\n\t\t\t\t\t// vars\n\t\t\t\t\tvar $options = $( this ).children( 'ul' );\n\t\t\t\t\tvar $group = $( this ).children( '.select2-result-label' );\n\n\t\t\t\t\t// compare to previous\n\t\t\t\t\tif ( $prevGroup && $prevGroup.text() === $group.text() ) {\n\t\t\t\t\t\t$prevGroup.append( $options.children() );\n\t\t\t\t\t\t$( this ).remove();\n\t\t\t\t\t\treturn;\n\t\t\t\t\t}\n\n\t\t\t\t\t// update vars\n\t\t\t\t\t$prevOptions = $options;\n\t\t\t\t\t$prevGroup = $group;\n\t\t\t\t}\n\t\t\t);\n\t\t},\n\n\t\tgetAjaxData: function ( term, page ) {\n\t\t\t// create Select2 v4 params\n\t\t\tvar params = {\n\t\t\t\tterm: term,\n\t\t\t\tpage: page,\n\t\t\t};\n\n\t\t\t// filter\n\t\t\tvar field = this.get( 'field' );\n\t\t\tparams = acf.applyFilters(\n\t\t\t\t'select2_ajax_data',\n\t\t\t\tparams,\n\t\t\t\tthis.data,\n\t\t\t\tthis.$el,\n\t\t\t\tfield || false,\n\t\t\t\tthis\n\t\t\t);\n\n\t\t\t// return\n\t\t\treturn Select2.prototype.getAjaxData.apply( this, [ params ] );\n\t\t},\n\t} );\n\n\t// manager\n\tvar select2Manager = new acf.Model( {\n\t\tpriority: 5,\n\t\twait: 'prepare',\n\t\tactions: {\n\t\t\tduplicate: 'onDuplicate',\n\t\t},\n\t\tinitialize: function () {\n\t\t\t// vars\n\t\t\tvar locale = acf.get( 'locale' );\n\t\t\tvar rtl = acf.get( 'rtl' );\n\t\t\tvar l10n = acf.get( 'select2L10n' );\n\t\t\tvar version = getVersion();\n\n\t\t\t// bail early if no l10n\n\t\t\tif ( ! l10n ) {\n\t\t\t\treturn false;\n\t\t\t}\n\n\t\t\t// bail early if 'en'\n\t\t\tif ( locale.indexOf( 'en' ) === 0 ) {\n\t\t\t\treturn false;\n\t\t\t}\n\n\t\t\t// initialize\n\t\t\tif ( version == 4 ) {\n\t\t\t\tthis.addTranslations4();\n\t\t\t} else if ( version == 3 ) {\n\t\t\t\tthis.addTranslations3();\n\t\t\t}\n\t\t},\n\n\t\taddTranslations4: function () {\n\t\t\t// vars\n\t\t\tvar l10n = acf.get( 'select2L10n' );\n\t\t\tvar locale = acf.get( 'locale' );\n\n\t\t\t// modify local to match html[lang] attribute (used by Select2)\n\t\t\tlocale = locale.replace( '_', '-' );\n\n\t\t\t// select2L10n\n\t\t\tvar select2L10n = {\n\t\t\t\terrorLoading: function () {\n\t\t\t\t\treturn l10n.load_fail;\n\t\t\t\t},\n\t\t\t\tinputTooLong: function ( args ) {\n\t\t\t\t\tvar overChars = args.input.length - args.maximum;\n\t\t\t\t\tif ( overChars > 1 ) {\n\t\t\t\t\t\treturn l10n.input_too_long_n.replace( '%d', overChars );\n\t\t\t\t\t}\n\t\t\t\t\treturn l10n.input_too_long_1;\n\t\t\t\t},\n\t\t\t\tinputTooShort: function ( args ) {\n\t\t\t\t\tvar remainingChars = args.minimum - args.input.length;\n\t\t\t\t\tif ( remainingChars > 1 ) {\n\t\t\t\t\t\treturn l10n.input_too_short_n.replace(\n\t\t\t\t\t\t\t'%d',\n\t\t\t\t\t\t\tremainingChars\n\t\t\t\t\t\t);\n\t\t\t\t\t}\n\t\t\t\t\treturn l10n.input_too_short_1;\n\t\t\t\t},\n\t\t\t\tloadingMore: function () {\n\t\t\t\t\treturn l10n.load_more;\n\t\t\t\t},\n\t\t\t\tmaximumSelected: function ( args ) {\n\t\t\t\t\tvar maximum = args.maximum;\n\t\t\t\t\tif ( maximum > 1 ) {\n\t\t\t\t\t\treturn l10n.selection_too_long_n.replace(\n\t\t\t\t\t\t\t'%d',\n\t\t\t\t\t\t\tmaximum\n\t\t\t\t\t\t);\n\t\t\t\t\t}\n\t\t\t\t\treturn l10n.selection_too_long_1;\n\t\t\t\t},\n\t\t\t\tnoResults: function () {\n\t\t\t\t\treturn l10n.matches_0;\n\t\t\t\t},\n\t\t\t\tsearching: function () {\n\t\t\t\t\treturn l10n.searching;\n\t\t\t\t},\n\t\t\t};\n\n\t\t\t// append\n\t\t\tjQuery.fn.select2.amd.define(\n\t\t\t\t'select2/i18n/' + locale,\n\t\t\t\t[],\n\t\t\t\tfunction () {\n\t\t\t\t\treturn select2L10n;\n\t\t\t\t}\n\t\t\t);\n\t\t},\n\n\t\taddTranslations3: function () {\n\t\t\t// vars\n\t\t\tvar l10n = acf.get( 'select2L10n' );\n\t\t\tvar locale = acf.get( 'locale' );\n\n\t\t\t// modify local to match html[lang] attribute (used by Select2)\n\t\t\tlocale = locale.replace( '_', '-' );\n\n\t\t\t// select2L10n\n\t\t\tvar select2L10n = {\n\t\t\t\tformatMatches: function ( matches ) {\n\t\t\t\t\tif ( matches > 1 ) {\n\t\t\t\t\t\treturn l10n.matches_n.replace( '%d', matches );\n\t\t\t\t\t}\n\t\t\t\t\treturn l10n.matches_1;\n\t\t\t\t},\n\t\t\t\tformatNoMatches: function () {\n\t\t\t\t\treturn l10n.matches_0;\n\t\t\t\t},\n\t\t\t\tformatAjaxError: function () {\n\t\t\t\t\treturn l10n.load_fail;\n\t\t\t\t},\n\t\t\t\tformatInputTooShort: function ( input, min ) {\n\t\t\t\t\tvar remainingChars = min - input.length;\n\t\t\t\t\tif ( remainingChars > 1 ) {\n\t\t\t\t\t\treturn l10n.input_too_short_n.replace(\n\t\t\t\t\t\t\t'%d',\n\t\t\t\t\t\t\tremainingChars\n\t\t\t\t\t\t);\n\t\t\t\t\t}\n\t\t\t\t\treturn l10n.input_too_short_1;\n\t\t\t\t},\n\t\t\t\tformatInputTooLong: function ( input, max ) {\n\t\t\t\t\tvar overChars = input.length - max;\n\t\t\t\t\tif ( overChars > 1 ) {\n\t\t\t\t\t\treturn l10n.input_too_long_n.replace( '%d', overChars );\n\t\t\t\t\t}\n\t\t\t\t\treturn l10n.input_too_long_1;\n\t\t\t\t},\n\t\t\t\tformatSelectionTooBig: function ( maximum ) {\n\t\t\t\t\tif ( maximum > 1 ) {\n\t\t\t\t\t\treturn l10n.selection_too_long_n.replace(\n\t\t\t\t\t\t\t'%d',\n\t\t\t\t\t\t\tmaximum\n\t\t\t\t\t\t);\n\t\t\t\t\t}\n\t\t\t\t\treturn l10n.selection_too_long_1;\n\t\t\t\t},\n\t\t\t\tformatLoadMore: function () {\n\t\t\t\t\treturn l10n.load_more;\n\t\t\t\t},\n\t\t\t\tformatSearching: function () {\n\t\t\t\t\treturn l10n.searching;\n\t\t\t\t},\n\t\t\t};\n\n\t\t\t// ensure locales exists\n\t\t\t$.fn.select2.locales = $.fn.select2.locales || {};\n\n\t\t\t// append\n\t\t\t$.fn.select2.locales[ locale ] = select2L10n;\n\t\t\t$.extend( $.fn.select2.defaults, select2L10n );\n\t\t},\n\n\t\tonDuplicate: function ( $el, $el2 ) {\n\t\t\t$el2.find( '.select2-container' ).remove();\n\t\t},\n\t} );\n} )( jQuery );\n","( function ( $, undefined ) {\n\tacf.tinymce = {\n\t\t/*\n\t\t * defaults\n\t\t *\n\t\t * This function will return default mce and qt settings\n\t\t *\n\t\t * @type\tfunction\n\t\t * @date\t18/8/17\n\t\t * @since\t5.6.0\n\t\t *\n\t\t * @param\t$post_id (int)\n\t\t * @return\t$post_id (int)\n\t\t */\n\n\t\tdefaults: function () {\n\t\t\t// bail early if no tinyMCEPreInit\n\t\t\tif ( typeof tinyMCEPreInit === 'undefined' ) return false;\n\n\t\t\t// vars\n\t\t\tvar defaults = {\n\t\t\t\ttinymce: tinyMCEPreInit.mceInit.acf_content,\n\t\t\t\tquicktags: tinyMCEPreInit.qtInit.acf_content,\n\t\t\t};\n\n\t\t\t// return\n\t\t\treturn defaults;\n\t\t},\n\n\t\t/*\n\t\t * initialize\n\t\t *\n\t\t * This function will initialize the tinymce and quicktags instances\n\t\t *\n\t\t * @type\tfunction\n\t\t * @date\t18/8/17\n\t\t * @since\t5.6.0\n\t\t *\n\t\t * @param\t$post_id (int)\n\t\t * @return\t$post_id (int)\n\t\t */\n\n\t\tinitialize: function ( id, args ) {\n\t\t\t// defaults\n\t\t\targs = acf.parseArgs( args, {\n\t\t\t\ttinymce: true,\n\t\t\t\tquicktags: true,\n\t\t\t\ttoolbar: 'full',\n\t\t\t\tmode: 'visual', // visual,text\n\t\t\t\tfield: false,\n\t\t\t} );\n\n\t\t\t// tinymce\n\t\t\tif ( args.tinymce ) {\n\t\t\t\tthis.initializeTinymce( id, args );\n\t\t\t}\n\n\t\t\t// quicktags\n\t\t\tif ( args.quicktags ) {\n\t\t\t\tthis.initializeQuicktags( id, args );\n\t\t\t}\n\t\t},\n\n\t\t/*\n\t\t * initializeTinymce\n\t\t *\n\t\t * This function will initialize the tinymce instance\n\t\t *\n\t\t * @type\tfunction\n\t\t * @date\t18/8/17\n\t\t * @since\t5.6.0\n\t\t *\n\t\t * @param\t$post_id (int)\n\t\t * @return\t$post_id (int)\n\t\t */\n\n\t\tinitializeTinymce: function ( id, args ) {\n\t\t\t// vars\n\t\t\tvar $textarea = $( '#' + id );\n\t\t\tvar defaults = this.defaults();\n\t\t\tvar toolbars = acf.get( 'toolbars' );\n\t\t\tvar field = args.field || false;\n\t\t\tvar $field = field.$el || false;\n\n\t\t\t// bail early\n\t\t\tif ( typeof tinymce === 'undefined' ) return false;\n\t\t\tif ( ! defaults ) return false;\n\n\t\t\t// check if exists\n\t\t\tif ( tinymce.get( id ) ) {\n\t\t\t\treturn this.enable( id );\n\t\t\t}\n\n\t\t\t// settings\n\t\t\tvar init = $.extend( {}, defaults.tinymce, args.tinymce );\n\t\t\tinit.id = id;\n\t\t\tinit.selector = '#' + id;\n\n\t\t\t// toolbar\n\t\t\tvar toolbar = args.toolbar;\n\t\t\tif ( toolbar && toolbars && toolbars[ toolbar ] ) {\n\t\t\t\tfor ( var i = 1; i <= 4; i++ ) {\n\t\t\t\t\tinit[ 'toolbar' + i ] = toolbars[ toolbar ][ i ] || '';\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// event\n\t\t\tinit.setup = function ( ed ) {\n\t\t\t\ted.on( 'change', function ( e ) {\n\t\t\t\t\ted.save(); // save to textarea\n\t\t\t\t\t$textarea.trigger( 'change' );\n\t\t\t\t} );\n\n\t\t\t\t// Fix bug where Gutenberg does not hear \"mouseup\" event and tries to select multiple blocks.\n\t\t\t\ted.on( 'mouseup', function ( e ) {\n\t\t\t\t\tvar event = new MouseEvent( 'mouseup' );\n\t\t\t\t\twindow.dispatchEvent( event );\n\t\t\t\t} );\n\n\t\t\t\t// Temporarily comment out. May not be necessary due to wysiwyg field actions.\n\t\t\t\t//ed.on('unload', function(e) {\n\t\t\t\t//\tacf.tinymce.remove( id );\n\t\t\t\t//});\n\t\t\t};\n\n\t\t\t// disable wp_autoresize_on (no solution yet for fixed toolbar)\n\t\t\tinit.wp_autoresize_on = false;\n\n\t\t\t// Enable wpautop allowing value to save without

              tags.\n\t\t\t// Only if the \"TinyMCE Advanced\" plugin hasn't already set this functionality.\n\t\t\tif ( ! init.tadv_noautop ) {\n\t\t\t\tinit.wpautop = true;\n\t\t\t}\n\n\t\t\t// hook for 3rd party customization\n\t\t\tinit = acf.applyFilters(\n\t\t\t\t'wysiwyg_tinymce_settings',\n\t\t\t\tinit,\n\t\t\t\tid,\n\t\t\t\tfield\n\t\t\t);\n\n\t\t\t// z-index fix (caused too many conflicts)\n\t\t\t//if( acf.isset(tinymce,'ui','FloatPanel') ) {\n\t\t\t//\ttinymce.ui.FloatPanel.zIndex = 900000;\n\t\t\t//}\n\n\t\t\t// store settings\n\t\t\ttinyMCEPreInit.mceInit[ id ] = init;\n\n\t\t\t// visual tab is active\n\t\t\tif ( args.mode == 'visual' ) {\n\t\t\t\t// init\n\t\t\t\tvar result = tinymce.init( init );\n\n\t\t\t\t// get editor\n\t\t\t\tvar ed = tinymce.get( id );\n\n\t\t\t\t// validate\n\t\t\t\tif ( ! ed ) {\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\n\t\t\t\t// add reference\n\t\t\t\ted.acf = args.field;\n\n\t\t\t\t// action\n\t\t\t\tacf.doAction( 'wysiwyg_tinymce_init', ed, ed.id, init, field );\n\t\t\t}\n\t\t},\n\n\t\t/*\n\t\t * initializeQuicktags\n\t\t *\n\t\t * This function will initialize the quicktags instance\n\t\t *\n\t\t * @type\tfunction\n\t\t * @date\t18/8/17\n\t\t * @since\t5.6.0\n\t\t *\n\t\t * @param\t$post_id (int)\n\t\t * @return\t$post_id (int)\n\t\t */\n\n\t\tinitializeQuicktags: function ( id, args ) {\n\t\t\t// vars\n\t\t\tvar defaults = this.defaults();\n\n\t\t\t// bail early\n\t\t\tif ( typeof quicktags === 'undefined' ) return false;\n\t\t\tif ( ! defaults ) return false;\n\n\t\t\t// settings\n\t\t\tvar init = $.extend( {}, defaults.quicktags, args.quicktags );\n\t\t\tinit.id = id;\n\n\t\t\t// filter\n\t\t\tvar field = args.field || false;\n\t\t\tvar $field = field.$el || false;\n\t\t\tinit = acf.applyFilters(\n\t\t\t\t'wysiwyg_quicktags_settings',\n\t\t\t\tinit,\n\t\t\t\tinit.id,\n\t\t\t\tfield\n\t\t\t);\n\n\t\t\t// store settings\n\t\t\ttinyMCEPreInit.qtInit[ id ] = init;\n\n\t\t\t// init\n\t\t\tvar ed = quicktags( init );\n\n\t\t\t// validate\n\t\t\tif ( ! ed ) {\n\t\t\t\treturn false;\n\t\t\t}\n\n\t\t\t// generate HTML\n\t\t\tthis.buildQuicktags( ed );\n\n\t\t\t// action for 3rd party customization\n\t\t\tacf.doAction( 'wysiwyg_quicktags_init', ed, ed.id, init, field );\n\t\t},\n\n\t\t/*\n\t\t * buildQuicktags\n\t\t *\n\t\t * This function will build the quicktags HTML\n\t\t *\n\t\t * @type\tfunction\n\t\t * @date\t18/8/17\n\t\t * @since\t5.6.0\n\t\t *\n\t\t * @param\t$post_id (int)\n\t\t * @return\t$post_id (int)\n\t\t */\n\n\t\tbuildQuicktags: function ( ed ) {\n\t\t\tvar canvas,\n\t\t\t\tname,\n\t\t\t\tsettings,\n\t\t\t\ttheButtons,\n\t\t\t\thtml,\n\t\t\t\ted,\n\t\t\t\tid,\n\t\t\t\ti,\n\t\t\t\tuse,\n\t\t\t\tinstanceId,\n\t\t\t\tdefaults =\n\t\t\t\t\t',strong,em,link,block,del,ins,img,ul,ol,li,code,more,close,';\n\n\t\t\tcanvas = ed.canvas;\n\t\t\tname = ed.name;\n\t\t\tsettings = ed.settings;\n\t\t\thtml = '';\n\t\t\ttheButtons = {};\n\t\t\tuse = '';\n\t\t\tinstanceId = ed.id;\n\n\t\t\t// set buttons\n\t\t\tif ( settings.buttons ) {\n\t\t\t\tuse = ',' + settings.buttons + ',';\n\t\t\t}\n\n\t\t\tfor ( i in edButtons ) {\n\t\t\t\tif ( ! edButtons[ i ] ) {\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\n\t\t\t\tid = edButtons[ i ].id;\n\t\t\t\tif (\n\t\t\t\t\tuse &&\n\t\t\t\t\tdefaults.indexOf( ',' + id + ',' ) !== -1 &&\n\t\t\t\t\tuse.indexOf( ',' + id + ',' ) === -1\n\t\t\t\t) {\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\n\t\t\t\tif (\n\t\t\t\t\t! edButtons[ i ].instance ||\n\t\t\t\t\tedButtons[ i ].instance === instanceId\n\t\t\t\t) {\n\t\t\t\t\ttheButtons[ id ] = edButtons[ i ];\n\n\t\t\t\t\tif ( edButtons[ i ].html ) {\n\t\t\t\t\t\thtml += edButtons[ i ].html( name + '_' );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tif ( use && use.indexOf( ',dfw,' ) !== -1 ) {\n\t\t\t\ttheButtons.dfw = new QTags.DFWButton();\n\t\t\t\thtml += theButtons.dfw.html( name + '_' );\n\t\t\t}\n\n\t\t\tif ( 'rtl' === document.getElementsByTagName( 'html' )[ 0 ].dir ) {\n\t\t\t\ttheButtons.textdirection = new QTags.TextDirectionButton();\n\t\t\t\thtml += theButtons.textdirection.html( name + '_' );\n\t\t\t}\n\n\t\t\ted.toolbar.innerHTML = html;\n\t\t\ted.theButtons = theButtons;\n\n\t\t\tif ( typeof jQuery !== 'undefined' ) {\n\t\t\t\tjQuery( document ).triggerHandler( 'quicktags-init', [ ed ] );\n\t\t\t}\n\t\t},\n\n\t\tdisable: function ( id ) {\n\t\t\tthis.destroyTinymce( id );\n\t\t},\n\n\t\tremove: function ( id ) {\n\t\t\tthis.destroyTinymce( id );\n\t\t},\n\n\t\tdestroy: function ( id ) {\n\t\t\tthis.destroyTinymce( id );\n\t\t},\n\n\t\tdestroyTinymce: function ( id ) {\n\t\t\t// bail early\n\t\t\tif ( typeof tinymce === 'undefined' ) return false;\n\n\t\t\t// get editor\n\t\t\tvar ed = tinymce.get( id );\n\n\t\t\t// bail early if no editor\n\t\t\tif ( ! ed ) return false;\n\n\t\t\t// save\n\t\t\ted.save();\n\n\t\t\t// destroy editor\n\t\t\ted.destroy();\n\n\t\t\t// return\n\t\t\treturn true;\n\t\t},\n\n\t\tenable: function ( id ) {\n\t\t\tthis.enableTinymce( id );\n\t\t},\n\n\t\tenableTinymce: function ( id ) {\n\t\t\t// bail early\n\t\t\tif ( typeof switchEditors === 'undefined' ) return false;\n\n\t\t\t// bail early if not initialized\n\t\t\tif ( typeof tinyMCEPreInit.mceInit[ id ] === 'undefined' )\n\t\t\t\treturn false;\n\n\t\t\t// Ensure textarea element is visible\n\t\t\t// - Fixes bug in block editor when switching between \"Block\" and \"Document\" tabs.\n\t\t\t$( '#' + id ).show();\n\n\t\t\t// toggle\n\t\t\tswitchEditors.go( id, 'tmce' );\n\n\t\t\t// return\n\t\t\treturn true;\n\t\t},\n\t};\n\n\tvar editorManager = new acf.Model( {\n\t\t// hook in before fieldsEventManager, conditions, etc\n\t\tpriority: 5,\n\n\t\tactions: {\n\t\t\tprepare: 'onPrepare',\n\t\t\tready: 'onReady',\n\t\t},\n\t\tonPrepare: function () {\n\t\t\t// find hidden editor which may exist within a field\n\t\t\tvar $div = $( '#acf-hidden-wp-editor' );\n\n\t\t\t// move to footer\n\t\t\tif ( $div.exists() ) {\n\t\t\t\t$div.appendTo( 'body' );\n\t\t\t}\n\t\t},\n\t\tonReady: function () {\n\t\t\t// Restore wp.editor functions used by tinymce removed in WP5.\n\t\t\tif ( acf.isset( window, 'wp', 'oldEditor' ) ) {\n\t\t\t\twp.editor.autop = wp.oldEditor.autop;\n\t\t\t\twp.editor.removep = wp.oldEditor.removep;\n\t\t\t}\n\n\t\t\t// bail early if no tinymce\n\t\t\tif ( ! acf.isset( window, 'tinymce', 'on' ) ) return;\n\n\t\t\t// restore default activeEditor\n\t\t\ttinymce.on( 'AddEditor', function ( data ) {\n\t\t\t\t// vars\n\t\t\t\tvar editor = data.editor;\n\n\t\t\t\t// bail early if not 'acf'\n\t\t\t\tif ( editor.id.substr( 0, 3 ) !== 'acf' ) return;\n\n\t\t\t\t// override if 'content' exists\n\t\t\t\teditor = tinymce.editors.content || editor;\n\n\t\t\t\t// update vars\n\t\t\t\ttinymce.activeEditor = editor;\n\t\t\t\twpActiveEditor = editor.id;\n\t\t\t} );\n\t\t},\n\t} );\n} )( jQuery );\n","( function ( $, undefined ) {\n\tacf.unload = new acf.Model( {\n\t\twait: 'load',\n\t\tactive: true,\n\t\tchanged: false,\n\n\t\tactions: {\n\t\t\tvalidation_failure: 'startListening',\n\t\t\tvalidation_success: 'stopListening',\n\t\t},\n\n\t\tevents: {\n\t\t\t'change form .acf-field': 'startListening',\n\t\t\t'submit form': 'stopListening',\n\t\t},\n\n\t\tenable: function () {\n\t\t\tthis.active = true;\n\t\t},\n\n\t\tdisable: function () {\n\t\t\tthis.active = false;\n\t\t},\n\n\t\treset: function () {\n\t\t\tthis.stopListening();\n\t\t},\n\n\t\tstartListening: function () {\n\t\t\t// bail early if already changed, not active\n\t\t\tif ( this.changed || ! this.active ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// update\n\t\t\tthis.changed = true;\n\n\t\t\t// add event\n\t\t\t$( window ).on( 'beforeunload', this.onUnload );\n\t\t},\n\n\t\tstopListening: function () {\n\t\t\t// update\n\t\t\tthis.changed = false;\n\n\t\t\t// remove event\n\t\t\t$( window ).off( 'beforeunload', this.onUnload );\n\t\t},\n\n\t\tonUnload: function () {\n\t\t\treturn acf.__(\n\t\t\t\t'The changes you made will be lost if you navigate away from this page'\n\t\t\t);\n\t\t},\n\t} );\n} )( jQuery );\n","( function ( $, undefined ) {\n\t/**\n\t * Validator\n\t *\n\t * The model for validating forms\n\t *\n\t * @date\t4/9/18\n\t * @since\t5.7.5\n\t *\n\t * @param\tvoid\n\t * @return\tvoid\n\t */\n\tvar Validator = acf.Model.extend( {\n\t\t/** @var string The model identifier. */\n\t\tid: 'Validator',\n\n\t\t/** @var object The model data. */\n\t\tdata: {\n\t\t\t/** @var array The form errors. */\n\t\t\terrors: [],\n\n\t\t\t/** @var object The form notice. */\n\t\t\tnotice: null,\n\n\t\t\t/** @var string The form status. loading, invalid, valid */\n\t\t\tstatus: '',\n\t\t},\n\n\t\t/** @var object The model events. */\n\t\tevents: {\n\t\t\t'changed:status': 'onChangeStatus',\n\t\t},\n\n\t\t/**\n\t\t * addErrors\n\t\t *\n\t\t * Adds errors to the form.\n\t\t *\n\t\t * @date\t4/9/18\n\t\t * @since\t5.7.5\n\t\t *\n\t\t * @param\tarray errors An array of errors.\n\t\t * @return\tvoid\n\t\t */\n\t\taddErrors: function ( errors ) {\n\t\t\terrors.map( this.addError, this );\n\t\t},\n\n\t\t/**\n\t\t * addError\n\t\t *\n\t\t * Adds and error to the form.\n\t\t *\n\t\t * @date\t4/9/18\n\t\t * @since\t5.7.5\n\t\t *\n\t\t * @param\tobject error An error object containing input and message.\n\t\t * @return\tvoid\n\t\t */\n\t\taddError: function ( error ) {\n\t\t\tthis.data.errors.push( error );\n\t\t},\n\n\t\t/**\n\t\t * hasErrors\n\t\t *\n\t\t * Returns true if the form has errors.\n\t\t *\n\t\t * @date\t4/9/18\n\t\t * @since\t5.7.5\n\t\t *\n\t\t * @param\tvoid\n\t\t * @return\tbool\n\t\t */\n\t\thasErrors: function () {\n\t\t\treturn this.data.errors.length;\n\t\t},\n\n\t\t/**\n\t\t * clearErrors\n\t\t *\n\t\t * Removes any errors.\n\t\t *\n\t\t * @date\t4/9/18\n\t\t * @since\t5.7.5\n\t\t *\n\t\t * @param\tvoid\n\t\t * @return\tvoid\n\t\t */\n\t\tclearErrors: function () {\n\t\t\treturn ( this.data.errors = [] );\n\t\t},\n\n\t\t/**\n\t\t * getErrors\n\t\t *\n\t\t * Returns the forms errors.\n\t\t *\n\t\t * @date\t4/9/18\n\t\t * @since\t5.7.5\n\t\t *\n\t\t * @param\tvoid\n\t\t * @return\tarray\n\t\t */\n\t\tgetErrors: function () {\n\t\t\treturn this.data.errors;\n\t\t},\n\n\t\t/**\n\t\t * getFieldErrors\n\t\t *\n\t\t * Returns the forms field errors.\n\t\t *\n\t\t * @date\t4/9/18\n\t\t * @since\t5.7.5\n\t\t *\n\t\t * @param\tvoid\n\t\t * @return\tarray\n\t\t */\n\t\tgetFieldErrors: function () {\n\t\t\t// vars\n\t\t\tvar errors = [];\n\t\t\tvar inputs = [];\n\n\t\t\t// loop\n\t\t\tthis.getErrors().map( function ( error ) {\n\t\t\t\t// bail early if global\n\t\t\t\tif ( ! error.input ) return;\n\n\t\t\t\t// update if exists\n\t\t\t\tvar i = inputs.indexOf( error.input );\n\t\t\t\tif ( i > -1 ) {\n\t\t\t\t\terrors[ i ] = error;\n\n\t\t\t\t\t// update\n\t\t\t\t} else {\n\t\t\t\t\terrors.push( error );\n\t\t\t\t\tinputs.push( error.input );\n\t\t\t\t}\n\t\t\t} );\n\n\t\t\t// return\n\t\t\treturn errors;\n\t\t},\n\n\t\t/**\n\t\t * getGlobalErrors\n\t\t *\n\t\t * Returns the forms global errors (errors without a specific input).\n\t\t *\n\t\t * @date\t4/9/18\n\t\t * @since\t5.7.5\n\t\t *\n\t\t * @param\tvoid\n\t\t * @return\tarray\n\t\t */\n\t\tgetGlobalErrors: function () {\n\t\t\t// return array of errors that contain no input\n\t\t\treturn this.getErrors().filter( function ( error ) {\n\t\t\t\treturn ! error.input;\n\t\t\t} );\n\t\t},\n\n\t\t/**\n\t\t * showErrors\n\t\t *\n\t\t * Displays all errors for this form.\n\t\t *\n\t\t * @date\t4/9/18\n\t\t * @since\t5.7.5\n\t\t *\n\t\t * @param\tvoid\n\t\t * @return\tvoid\n\t\t */\n\t\tshowErrors: function () {\n\t\t\t// bail early if no errors\n\t\t\tif ( ! this.hasErrors() ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// vars\n\t\t\tvar fieldErrors = this.getFieldErrors();\n\t\t\tvar globalErrors = this.getGlobalErrors();\n\n\t\t\t// vars\n\t\t\tvar errorCount = 0;\n\t\t\tvar $scrollTo = false;\n\n\t\t\t// loop\n\t\t\tfieldErrors.map( function ( error ) {\n\t\t\t\t// get input\n\t\t\t\tvar $input = this.$( '[name=\"' + error.input + '\"]' ).first();\n\n\t\t\t\t// if $_POST value was an array, this $input may not exist\n\t\t\t\tif ( ! $input.length ) {\n\t\t\t\t\t$input = this.$( '[name^=\"' + error.input + '\"]' ).first();\n\t\t\t\t}\n\n\t\t\t\t// bail early if input doesn't exist\n\t\t\t\tif ( ! $input.length ) {\n\t\t\t\t\treturn;\n\t\t\t\t}\n\n\t\t\t\t// increase\n\t\t\t\terrorCount++;\n\n\t\t\t\t// get field\n\t\t\t\tvar field = acf.getClosestField( $input );\n\n\t\t\t\t// make sure the postbox containing this field is not hidden by screen options\n\t\t\t\tensureFieldPostBoxIsVisible( field.$el );\n\n\t\t\t\t// show error\n\t\t\t\tfield.showError( error.message );\n\n\t\t\t\t// set $scrollTo\n\t\t\t\tif ( ! $scrollTo ) {\n\t\t\t\t\t$scrollTo = field.$el;\n\t\t\t\t}\n\t\t\t}, this );\n\n\t\t\t// errorMessage\n\t\t\tvar errorMessage = acf.__( 'Validation failed' );\n\t\t\tglobalErrors.map( function ( error ) {\n\t\t\t\terrorMessage += '. ' + error.message;\n\t\t\t} );\n\t\t\tif ( errorCount == 1 ) {\n\t\t\t\terrorMessage += '. ' + acf.__( '1 field requires attention' );\n\t\t\t} else if ( errorCount > 1 ) {\n\t\t\t\terrorMessage +=\n\t\t\t\t\t'. ' +\n\t\t\t\t\tacf\n\t\t\t\t\t\t.__( '%d fields require attention' )\n\t\t\t\t\t\t.replace( '%d', errorCount );\n\t\t\t}\n\n\t\t\t// notice\n\t\t\tif ( this.has( 'notice' ) ) {\n\t\t\t\tthis.get( 'notice' ).update( {\n\t\t\t\t\ttype: 'error',\n\t\t\t\t\ttext: errorMessage,\n\t\t\t\t} );\n\t\t\t} else {\n\t\t\t\tvar notice = acf.newNotice( {\n\t\t\t\t\ttype: 'error',\n\t\t\t\t\ttext: errorMessage,\n\t\t\t\t\ttarget: this.$el,\n\t\t\t\t} );\n\t\t\t\tthis.set( 'notice', notice );\n\t\t\t}\n\n\t\t\t// If in a modal, don't try to scroll.\n\t\t\tif ( this.$el.parents( '.acf-popup-box' ).length ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// if no $scrollTo, set to message\n\t\t\tif ( ! $scrollTo ) {\n\t\t\t\t$scrollTo = this.get( 'notice' ).$el;\n\t\t\t}\n\n\t\t\t// timeout\n\t\t\tsetTimeout( function () {\n\t\t\t\t$( 'html, body' ).animate(\n\t\t\t\t\t{\n\t\t\t\t\t\tscrollTop:\n\t\t\t\t\t\t\t$scrollTo.offset().top - $( window ).height() / 2,\n\t\t\t\t\t},\n\t\t\t\t\t500\n\t\t\t\t);\n\t\t\t}, 10 );\n\t\t},\n\n\t\t/**\n\t\t * onChangeStatus\n\t\t *\n\t\t * Update the form class when changing the 'status' data\n\t\t *\n\t\t * @date\t4/9/18\n\t\t * @since\t5.7.5\n\t\t *\n\t\t * @param\tobject e The event object.\n\t\t * @param\tjQuery $el The form element.\n\t\t * @param\tstring value The new status.\n\t\t * @param\tstring prevValue The old status.\n\t\t * @return\tvoid\n\t\t */\n\t\tonChangeStatus: function ( e, $el, value, prevValue ) {\n\t\t\tthis.$el.removeClass( 'is-' + prevValue ).addClass( 'is-' + value );\n\t\t},\n\n\t\t/**\n\t\t * validate\n\t\t *\n\t\t * Vaildates the form via AJAX.\n\t\t *\n\t\t * @date\t4/9/18\n\t\t * @since\t5.7.5\n\t\t *\n\t\t * @param\tobject args A list of settings to customize the validation process.\n\t\t * @return\tbool True if the form is valid.\n\t\t */\n\t\tvalidate: function ( args ) {\n\t\t\t// default args\n\t\t\targs = acf.parseArgs( args, {\n\t\t\t\t// trigger event\n\t\t\t\tevent: false,\n\n\t\t\t\t// reset the form after submit\n\t\t\t\treset: false,\n\n\t\t\t\t// loading callback\n\t\t\t\tloading: function () {},\n\n\t\t\t\t// complete callback\n\t\t\t\tcomplete: function () {},\n\n\t\t\t\t// failure callback\n\t\t\t\tfailure: function () {},\n\n\t\t\t\t// success callback\n\t\t\t\tsuccess: function ( $form ) {\n\t\t\t\t\t$form.submit();\n\t\t\t\t},\n\t\t\t} );\n\n\t\t\t// return true if is valid - allows form submit\n\t\t\tif ( this.get( 'status' ) == 'valid' ) {\n\t\t\t\treturn true;\n\t\t\t}\n\n\t\t\t// return false if is currently validating - prevents form submit\n\t\t\tif ( this.get( 'status' ) == 'validating' ) {\n\t\t\t\treturn false;\n\t\t\t}\n\n\t\t\t// return true if no ACF fields exist (no need to validate)\n\t\t\tif ( ! this.$( '.acf-field' ).length ) {\n\t\t\t\treturn true;\n\t\t\t}\n\n\t\t\t// if event is provided, create a new success callback.\n\t\t\tif ( args.event ) {\n\t\t\t\tvar event = $.Event( null, args.event );\n\t\t\t\targs.success = function () {\n\t\t\t\t\tacf.enableSubmit( $( event.target ) ).trigger( event );\n\t\t\t\t};\n\t\t\t}\n\n\t\t\t// action for 3rd party\n\t\t\tacf.doAction( 'validation_begin', this.$el );\n\n\t\t\t// lock form\n\t\t\tacf.lockForm( this.$el );\n\n\t\t\t// loading callback\n\t\t\targs.loading( this.$el, this );\n\n\t\t\t// update status\n\t\t\tthis.set( 'status', 'validating' );\n\n\t\t\t// success callback\n\t\t\tvar onSuccess = function ( json ) {\n\t\t\t\t// validate\n\t\t\t\tif ( ! acf.isAjaxSuccess( json ) ) {\n\t\t\t\t\treturn;\n\t\t\t\t}\n\n\t\t\t\t// filter\n\t\t\t\tvar data = acf.applyFilters(\n\t\t\t\t\t'validation_complete',\n\t\t\t\t\tjson.data,\n\t\t\t\t\tthis.$el,\n\t\t\t\t\tthis\n\t\t\t\t);\n\n\t\t\t\t// add errors\n\t\t\t\tif ( ! data.valid ) {\n\t\t\t\t\tthis.addErrors( data.errors );\n\t\t\t\t}\n\t\t\t};\n\n\t\t\t// complete\n\t\t\tvar onComplete = function () {\n\t\t\t\t// unlock form\n\t\t\t\tacf.unlockForm( this.$el );\n\n\t\t\t\t// failure\n\t\t\t\tif ( this.hasErrors() ) {\n\t\t\t\t\t// update status\n\t\t\t\t\tthis.set( 'status', 'invalid' );\n\n\t\t\t\t\t// action\n\t\t\t\t\tacf.doAction( 'validation_failure', this.$el, this );\n\n\t\t\t\t\t// display errors\n\t\t\t\t\tthis.showErrors();\n\n\t\t\t\t\t// failure callback\n\t\t\t\t\targs.failure( this.$el, this );\n\n\t\t\t\t\t// success\n\t\t\t\t} else {\n\t\t\t\t\t// update status\n\t\t\t\t\tthis.set( 'status', 'valid' );\n\n\t\t\t\t\t// remove previous error message\n\t\t\t\t\tif ( this.has( 'notice' ) ) {\n\t\t\t\t\t\tthis.get( 'notice' ).update( {\n\t\t\t\t\t\t\ttype: 'success',\n\t\t\t\t\t\t\ttext: acf.__( 'Validation successful' ),\n\t\t\t\t\t\t\ttimeout: 1000,\n\t\t\t\t\t\t} );\n\t\t\t\t\t}\n\n\t\t\t\t\t// action\n\t\t\t\t\tacf.doAction( 'validation_success', this.$el, this );\n\t\t\t\t\tacf.doAction( 'submit', this.$el );\n\n\t\t\t\t\t// success callback (submit form)\n\t\t\t\t\targs.success( this.$el, this );\n\n\t\t\t\t\t// lock form\n\t\t\t\t\tacf.lockForm( this.$el );\n\n\t\t\t\t\t// reset\n\t\t\t\t\tif ( args.reset ) {\n\t\t\t\t\t\tthis.reset();\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// complete callback\n\t\t\t\targs.complete( this.$el, this );\n\n\t\t\t\t// clear errors\n\t\t\t\tthis.clearErrors();\n\t\t\t};\n\n\t\t\t// serialize form data\n\t\t\tvar data = acf.serialize( this.$el );\n\t\t\tdata.action = 'acf/validate_save_post';\n\n\t\t\t// ajax\n\t\t\t$.ajax( {\n\t\t\t\turl: acf.get( 'ajaxurl' ),\n\t\t\t\tdata: acf.prepareForAjax( data ),\n\t\t\t\ttype: 'post',\n\t\t\t\tdataType: 'json',\n\t\t\t\tcontext: this,\n\t\t\t\tsuccess: onSuccess,\n\t\t\t\tcomplete: onComplete,\n\t\t\t} );\n\n\t\t\t// return false to fail validation and allow AJAX\n\t\t\treturn false;\n\t\t},\n\n\t\t/**\n\t\t * setup\n\t\t *\n\t\t * Called during the constructor function to setup this instance\n\t\t *\n\t\t * @date\t4/9/18\n\t\t * @since\t5.7.5\n\t\t *\n\t\t * @param\tjQuery $form The form element.\n\t\t * @return\tvoid\n\t\t */\n\t\tsetup: function ( $form ) {\n\t\t\t// set $el\n\t\t\tthis.$el = $form;\n\t\t},\n\n\t\t/**\n\t\t * reset\n\t\t *\n\t\t * Rests the validation to be used again.\n\t\t *\n\t\t * @date\t6/9/18\n\t\t * @since\t5.7.5\n\t\t *\n\t\t * @param\tvoid\n\t\t * @return\tvoid\n\t\t */\n\t\treset: function () {\n\t\t\t// reset data\n\t\t\tthis.set( 'errors', [] );\n\t\t\tthis.set( 'notice', null );\n\t\t\tthis.set( 'status', '' );\n\n\t\t\t// unlock form\n\t\t\tacf.unlockForm( this.$el );\n\t\t},\n\t} );\n\n\t/**\n\t * getValidator\n\t *\n\t * Returns the instance for a given form element.\n\t *\n\t * @date\t4/9/18\n\t * @since\t5.7.5\n\t *\n\t * @param\tjQuery $el The form element.\n\t * @return\tobject\n\t */\n\tvar getValidator = function ( $el ) {\n\t\t// instantiate\n\t\tvar validator = $el.data( 'acf' );\n\t\tif ( ! validator ) {\n\t\t\tvalidator = new Validator( $el );\n\t\t}\n\n\t\t// return\n\t\treturn validator;\n\t};\n\n\t/**\n\t * acf.validateForm\n\t *\n\t * A helper function for the Validator.validate() function.\n\t * Returns true if form is valid, or fetches a validation request and returns false.\n\t *\n\t * @date\t4/4/18\n\t * @since\t5.6.9\n\t *\n\t * @param\tobject args A list of settings to customize the validation process.\n\t * @return\tbool\n\t */\n\n\tacf.validateForm = function ( args ) {\n\t\treturn getValidator( args.form ).validate( args );\n\t};\n\n\t/**\n\t * acf.enableSubmit\n\t *\n\t * Enables a submit button and returns the element.\n\t *\n\t * @date\t30/8/18\n\t * @since\t5.7.4\n\t *\n\t * @param\tjQuery $submit The submit button.\n\t * @return\tjQuery\n\t */\n\tacf.enableSubmit = function ( $submit ) {\n\t\treturn $submit.removeClass( 'disabled' ).removeAttr( 'disabled' );\n\t};\n\n\t/**\n\t * acf.disableSubmit\n\t *\n\t * Disables a submit button and returns the element.\n\t *\n\t * @date\t30/8/18\n\t * @since\t5.7.4\n\t *\n\t * @param\tjQuery $submit The submit button.\n\t * @return\tjQuery\n\t */\n\tacf.disableSubmit = function ( $submit ) {\n\t\treturn $submit.addClass( 'disabled' ).attr( 'disabled', true );\n\t};\n\n\t/**\n\t * acf.showSpinner\n\t *\n\t * Shows the spinner element.\n\t *\n\t * @date\t4/9/18\n\t * @since\t5.7.5\n\t *\n\t * @param\tjQuery $spinner The spinner element.\n\t * @return\tjQuery\n\t */\n\tacf.showSpinner = function ( $spinner ) {\n\t\t$spinner.addClass( 'is-active' ); // add class (WP > 4.2)\n\t\t$spinner.css( 'display', 'inline-block' ); // css (WP < 4.2)\n\t\treturn $spinner;\n\t};\n\n\t/**\n\t * acf.hideSpinner\n\t *\n\t * Hides the spinner element.\n\t *\n\t * @date\t4/9/18\n\t * @since\t5.7.5\n\t *\n\t * @param\tjQuery $spinner The spinner element.\n\t * @return\tjQuery\n\t */\n\tacf.hideSpinner = function ( $spinner ) {\n\t\t$spinner.removeClass( 'is-active' ); // add class (WP > 4.2)\n\t\t$spinner.css( 'display', 'none' ); // css (WP < 4.2)\n\t\treturn $spinner;\n\t};\n\n\t/**\n\t * acf.lockForm\n\t *\n\t * Locks a form by disabeling its primary inputs and showing a spinner.\n\t *\n\t * @date\t4/9/18\n\t * @since\t5.7.5\n\t *\n\t * @param\tjQuery $form The form element.\n\t * @return\tjQuery\n\t */\n\tacf.lockForm = function ( $form ) {\n\t\t// vars\n\t\tvar $wrap = findSubmitWrap( $form );\n\t\tvar $submit = $wrap\n\t\t\t.find( '.button, [type=\"submit\"]' )\n\t\t\t.not( '.acf-nav, .acf-repeater-add-row' );\n\t\tvar $spinner = $wrap.find( '.spinner, .acf-spinner' );\n\n\t\t// hide all spinners (hides the preview spinner)\n\t\tacf.hideSpinner( $spinner );\n\n\t\t// lock\n\t\tacf.disableSubmit( $submit );\n\t\tacf.showSpinner( $spinner.last() );\n\t\treturn $form;\n\t};\n\n\t/**\n\t * acf.unlockForm\n\t *\n\t * Unlocks a form by enabeling its primary inputs and hiding all spinners.\n\t *\n\t * @date\t4/9/18\n\t * @since\t5.7.5\n\t *\n\t * @param\tjQuery $form The form element.\n\t * @return\tjQuery\n\t */\n\tacf.unlockForm = function ( $form ) {\n\t\t// vars\n\t\tvar $wrap = findSubmitWrap( $form );\n\t\tvar $submit = $wrap\n\t\t\t.find( '.button, [type=\"submit\"]' )\n\t\t\t.not( '.acf-nav, .acf-repeater-add-row' );\n\t\tvar $spinner = $wrap.find( '.spinner, .acf-spinner' );\n\n\t\t// unlock\n\t\tacf.enableSubmit( $submit );\n\t\tacf.hideSpinner( $spinner );\n\t\treturn $form;\n\t};\n\n\t/**\n\t * findSubmitWrap\n\t *\n\t * An internal function to find the 'primary' form submit wrapping element.\n\t *\n\t * @date\t4/9/18\n\t * @since\t5.7.5\n\t *\n\t * @param\tjQuery $form The form element.\n\t * @return\tjQuery\n\t */\n\tvar findSubmitWrap = function ( $form ) {\n\t\t// default post submit div\n\t\tvar $wrap = $form.find( '#submitdiv' );\n\t\tif ( $wrap.length ) {\n\t\t\treturn $wrap;\n\t\t}\n\n\t\t// 3rd party publish box\n\t\tvar $wrap = $form.find( '#submitpost' );\n\t\tif ( $wrap.length ) {\n\t\t\treturn $wrap;\n\t\t}\n\n\t\t// term, user\n\t\tvar $wrap = $form.find( 'p.submit' ).last();\n\t\tif ( $wrap.length ) {\n\t\t\treturn $wrap;\n\t\t}\n\n\t\t// front end form\n\t\tvar $wrap = $form.find( '.acf-form-submit' );\n\t\tif ( $wrap.length ) {\n\t\t\treturn $wrap;\n\t\t}\n\n\t\t// ACF 6.2 options page modal\n\t\tvar $wrap = $( '#acf-create-options-page-form .acf-actions' );\n\t\tif ( $wrap.length ) {\n\t\t\treturn $wrap;\n\t\t}\n\n\t\t// ACF 6.0+ headerbar submit\n\t\tvar $wrap = $( '.acf-headerbar-actions' );\n\t\tif ( $wrap.length ) {\n\t\t\treturn $wrap;\n\t\t}\n\n\t\t// default\n\t\treturn $form;\n\t};\n\n\t/**\n\t * A debounced function to trigger a form submission.\n\t *\n\t * @date\t15/07/2020\n\t * @since\t5.9.0\n\t *\n\t * @param\ttype Var Description.\n\t * @return\ttype Description.\n\t */\n\tvar submitFormDebounced = acf.debounce( function ( $form ) {\n\t\t$form.submit();\n\t} );\n\n\t/**\n\t * Ensure field is visible for validation errors\n\t *\n\t * @date\t20/10/2021\n\t * @since\t5.11.0\n\t */\n\tvar ensureFieldPostBoxIsVisible = function ( $el ) {\n\t\t// Find the postbox element containing this field.\n\t\tvar $postbox = $el.parents( '.acf-postbox' );\n\t\tif ( $postbox.length ) {\n\t\t\tvar acf_postbox = acf.getPostbox( $postbox );\n\t\t\tif ( acf_postbox && acf_postbox.isHiddenByScreenOptions() ) {\n\t\t\t\t// Rather than using .show() here, we don't want the field to appear next reload.\n\t\t\t\t// So just temporarily show the field group so validation can complete.\n\t\t\t\tacf_postbox.$el.removeClass( 'hide-if-js' );\n\t\t\t\tacf_postbox.$el.css( 'display', '' );\n\t\t\t}\n\t\t}\n\t};\n\n\t/**\n\t * Ensure metaboxes which contain browser validation failures are visible.\n\t *\n\t * @date\t20/10/2021\n\t * @since\t5.11.0\n\t */\n\tvar ensureInvalidFieldVisibility = function () {\n\t\t// Load each ACF input field and check it's browser validation state.\n\t\tvar $inputs = $( '.acf-field input' );\n\t\t$inputs.each( function () {\n\t\t\tif ( ! this.checkValidity() ) {\n\t\t\t\t// Field is invalid, so we need to make sure it's metabox is visible.\n\t\t\t\tensureFieldPostBoxIsVisible( $( this ) );\n\t\t\t}\n\t\t} );\n\t};\n\n\t/**\n\t * acf.validation\n\t *\n\t * Global validation logic\n\t *\n\t * @date\t4/4/18\n\t * @since\t5.6.9\n\t *\n\t * @param\tvoid\n\t * @return\tvoid\n\t */\n\n\tacf.validation = new acf.Model( {\n\t\t/** @var string The model identifier. */\n\t\tid: 'validation',\n\n\t\t/** @var bool The active state. Set to false before 'prepare' to prevent validation. */\n\t\tactive: true,\n\n\t\t/** @var string The model initialize time. */\n\t\twait: 'prepare',\n\n\t\t/** @var object The model actions. */\n\t\tactions: {\n\t\t\tready: 'addInputEvents',\n\t\t\tappend: 'addInputEvents',\n\t\t},\n\n\t\t/** @var object The model events. */\n\t\tevents: {\n\t\t\t'click input[type=\"submit\"]': 'onClickSubmit',\n\t\t\t'click button[type=\"submit\"]': 'onClickSubmit',\n\t\t\t//'click #editor .editor-post-publish-button': 'onClickSubmitGutenberg',\n\t\t\t'click #save-post': 'onClickSave',\n\t\t\t'submit form#post': 'onSubmitPost',\n\t\t\t'submit form': 'onSubmit',\n\t\t},\n\n\t\t/**\n\t\t * initialize\n\t\t *\n\t\t * Called when initializing the model.\n\t\t *\n\t\t * @date\t4/9/18\n\t\t * @since\t5.7.5\n\t\t *\n\t\t * @param\tvoid\n\t\t * @return\tvoid\n\t\t */\n\t\tinitialize: function () {\n\t\t\t// check 'validation' setting\n\t\t\tif ( ! acf.get( 'validation' ) ) {\n\t\t\t\tthis.active = false;\n\t\t\t\tthis.actions = {};\n\t\t\t\tthis.events = {};\n\t\t\t}\n\t\t},\n\n\t\t/**\n\t\t * enable\n\t\t *\n\t\t * Enables validation.\n\t\t *\n\t\t * @date\t4/9/18\n\t\t * @since\t5.7.5\n\t\t *\n\t\t * @param\tvoid\n\t\t * @return\tvoid\n\t\t */\n\t\tenable: function () {\n\t\t\tthis.active = true;\n\t\t},\n\n\t\t/**\n\t\t * disable\n\t\t *\n\t\t * Disables validation.\n\t\t *\n\t\t * @date\t4/9/18\n\t\t * @since\t5.7.5\n\t\t *\n\t\t * @param\tvoid\n\t\t * @return\tvoid\n\t\t */\n\t\tdisable: function () {\n\t\t\tthis.active = false;\n\t\t},\n\n\t\t/**\n\t\t * reset\n\t\t *\n\t\t * Rests the form validation to be used again\n\t\t *\n\t\t * @date\t6/9/18\n\t\t * @since\t5.7.5\n\t\t *\n\t\t * @param\tjQuery $form The form element.\n\t\t * @return\tvoid\n\t\t */\n\t\treset: function ( $form ) {\n\t\t\tgetValidator( $form ).reset();\n\t\t},\n\n\t\t/**\n\t\t * addInputEvents\n\t\t *\n\t\t * Adds 'invalid' event listeners to HTML inputs.\n\t\t *\n\t\t * @date\t4/9/18\n\t\t * @since\t5.7.5\n\t\t *\n\t\t * @param\tjQuery $el The element being added / readied.\n\t\t * @return\tvoid\n\t\t */\n\t\taddInputEvents: function ( $el ) {\n\t\t\t// Bug exists in Safari where custom \"invalid\" handling prevents draft from saving.\n\t\t\tif ( acf.get( 'browser' ) === 'safari' ) return;\n\n\t\t\t// vars\n\t\t\tvar $inputs = $( '.acf-field [name]', $el );\n\n\t\t\t// check\n\t\t\tif ( $inputs.length ) {\n\t\t\t\tthis.on( $inputs, 'invalid', 'onInvalid' );\n\t\t\t}\n\t\t},\n\n\t\t/**\n\t\t * onInvalid\n\t\t *\n\t\t * Callback for the 'invalid' event.\n\t\t *\n\t\t * @date\t4/9/18\n\t\t * @since\t5.7.5\n\t\t *\n\t\t * @param\tobject e The event object.\n\t\t * @param\tjQuery $el The input element.\n\t\t * @return\tvoid\n\t\t */\n\t\tonInvalid: function ( e, $el ) {\n\t\t\t// prevent default\n\t\t\t// - prevents browser error message\n\t\t\t// - also fixes chrome bug where 'hidden-by-tab' field throws focus error\n\t\t\te.preventDefault();\n\n\t\t\t// vars\n\t\t\tvar $form = $el.closest( 'form' );\n\n\t\t\t// check form exists\n\t\t\tif ( $form.length ) {\n\t\t\t\t// add error to validator\n\t\t\t\tgetValidator( $form ).addError( {\n\t\t\t\t\tinput: $el.attr( 'name' ),\n\t\t\t\t\tmessage: acf.strEscape( e.target.validationMessage ),\n\t\t\t\t} );\n\n\t\t\t\t// trigger submit on $form\n\t\t\t\t// - allows for \"save\", \"preview\" and \"publish\" to work\n\t\t\t\tsubmitFormDebounced( $form );\n\t\t\t}\n\t\t},\n\n\t\t/**\n\t\t * onClickSubmit\n\t\t *\n\t\t * Callback when clicking submit.\n\t\t *\n\t\t * @date\t4/9/18\n\t\t * @since\t5.7.5\n\t\t *\n\t\t * @param\tobject e The event object.\n\t\t * @param\tjQuery $el The input element.\n\t\t * @return\tvoid\n\t\t */\n\t\tonClickSubmit: function ( e, $el ) {\n\t\t\t// Some browsers (safari) force their browser validation before our AJAX validation,\n\t\t\t// so we need to make sure fields are visible earlier than showErrors()\n\t\t\tensureInvalidFieldVisibility();\n\n\t\t\t// store the \"click event\" for later use in this.onSubmit()\n\t\t\tthis.set( 'originalEvent', e );\n\t\t},\n\n\t\t/**\n\t\t * onClickSave\n\t\t *\n\t\t * Set ignore to true when saving a draft.\n\t\t *\n\t\t * @date\t4/9/18\n\t\t * @since\t5.7.5\n\t\t *\n\t\t * @param\tobject e The event object.\n\t\t * @param\tjQuery $el The input element.\n\t\t * @return\tvoid\n\t\t */\n\t\tonClickSave: function ( e, $el ) {\n\t\t\tthis.set( 'ignore', true );\n\t\t},\n\n\t\t/**\n\t\t * onClickSubmitGutenberg\n\t\t *\n\t\t * Custom validation event for the gutenberg editor.\n\t\t *\n\t\t * @date\t29/10/18\n\t\t * @since\t5.8.0\n\t\t *\n\t\t * @param\tobject e The event object.\n\t\t * @param\tjQuery $el The input element.\n\t\t * @return\tvoid\n\t\t */\n\t\tonClickSubmitGutenberg: function ( e, $el ) {\n\t\t\t// validate\n\t\t\tvar valid = acf.validateForm( {\n\t\t\t\tform: $( '#editor' ),\n\t\t\t\tevent: e,\n\t\t\t\treset: true,\n\t\t\t\tfailure: function ( $form, validator ) {\n\t\t\t\t\tvar $notice = validator.get( 'notice' ).$el;\n\t\t\t\t\t$notice.appendTo( '.components-notice-list' );\n\t\t\t\t\t$notice\n\t\t\t\t\t\t.find( '.acf-notice-dismiss' )\n\t\t\t\t\t\t.removeClass( 'small' );\n\t\t\t\t},\n\t\t\t} );\n\n\t\t\t// if not valid, stop event and allow validation to continue\n\t\t\tif ( ! valid ) {\n\t\t\t\te.preventDefault();\n\t\t\t\te.stopImmediatePropagation();\n\t\t\t}\n\t\t},\n\n\t\t/**\n\t\t * onSubmitPost\n\t\t *\n\t\t * Callback when the 'post' form is submit.\n\t\t *\n\t\t * @date\t5/3/19\n\t\t * @since\t5.7.13\n\t\t *\n\t\t * @param\tobject e The event object.\n\t\t * @param\tjQuery $el The input element.\n\t\t * @return\tvoid\n\t\t */\n\t\tonSubmitPost: function ( e, $el ) {\n\t\t\t// Check if is preview.\n\t\t\tif ( $( 'input#wp-preview' ).val() === 'dopreview' ) {\n\t\t\t\t// Ignore validation.\n\t\t\t\tthis.set( 'ignore', true );\n\n\t\t\t\t// Unlock form to fix conflict with core \"submit.edit-post\" event causing all submit buttons to be disabled.\n\t\t\t\tacf.unlockForm( $el );\n\t\t\t}\n\t\t},\n\n\t\t/**\n\t\t * onSubmit\n\t\t *\n\t\t * Callback when the form is submit.\n\t\t *\n\t\t * @date\t4/9/18\n\t\t * @since\t5.7.5\n\t\t *\n\t\t * @param\tobject e The event object.\n\t\t * @param\tjQuery $el The input element.\n\t\t * @return\tvoid\n\t\t */\n\t\tonSubmit: function ( e, $el ) {\n\t\t\t// Allow form to submit if...\n\t\t\tif (\n\t\t\t\t// Validation has been disabled.\n\t\t\t\t! this.active ||\n\t\t\t\t// Or this event is to be ignored.\n\t\t\t\tthis.get( 'ignore' ) ||\n\t\t\t\t// Or this event has already been prevented.\n\t\t\t\te.isDefaultPrevented()\n\t\t\t) {\n\t\t\t\t// Return early and call reset function.\n\t\t\t\treturn this.allowSubmit();\n\t\t\t}\n\n\t\t\t// Validate form.\n\t\t\tvar valid = acf.validateForm( {\n\t\t\t\tform: $el,\n\t\t\t\tevent: this.get( 'originalEvent' ),\n\t\t\t} );\n\n\t\t\t// If not valid, stop event to prevent form submit.\n\t\t\tif ( ! valid ) {\n\t\t\t\te.preventDefault();\n\t\t\t}\n\t\t},\n\n\t\t/**\n\t\t * allowSubmit\n\t\t *\n\t\t * Resets data during onSubmit when the form is allowed to submit.\n\t\t *\n\t\t * @date\t5/3/19\n\t\t * @since\t5.7.13\n\t\t *\n\t\t * @param\tvoid\n\t\t * @return\tvoid\n\t\t */\n\t\tallowSubmit: function () {\n\t\t\t// Reset \"ignore\" state.\n\t\t\tthis.set( 'ignore', false );\n\n\t\t\t// Reset \"originalEvent\" object.\n\t\t\tthis.set( 'originalEvent', false );\n\n\t\t\t// Return true\n\t\t\treturn true;\n\t\t},\n\t} );\n\n\tvar gutenbergValidation = new acf.Model( {\n\t\twait: 'prepare',\n\t\tinitialize: function () {\n\t\t\t// Bail early if not Gutenberg.\n\t\t\tif ( ! acf.isGutenberg() ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// Custommize the editor.\n\t\t\tthis.customizeEditor();\n\t\t},\n\t\tcustomizeEditor: function () {\n\t\t\t// Extract vars.\n\t\t\tvar editor = wp.data.dispatch( 'core/editor' );\n\t\t\tvar editorSelect = wp.data.select( 'core/editor' );\n\t\t\tvar notices = wp.data.dispatch( 'core/notices' );\n\n\t\t\t// Backup original method.\n\t\t\tvar savePost = editor.savePost;\n\n\t\t\t// Listen for changes to post status and perform actions:\n\t\t\t// a) Enable validation for \"publish\" action.\n\t\t\t// b) Remember last non \"publish\" status used for restoring after validation fail.\n\t\t\tvar useValidation = false;\n\t\t\tvar lastPostStatus = '';\n\t\t\twp.data.subscribe( function () {\n\t\t\t\tvar postStatus =\n\t\t\t\t\teditorSelect.getEditedPostAttribute( 'status' );\n\t\t\t\tuseValidation =\n\t\t\t\t\tpostStatus === 'publish' || postStatus === 'future';\n\t\t\t\tlastPostStatus =\n\t\t\t\t\tpostStatus !== 'publish' ? postStatus : lastPostStatus;\n\t\t\t} );\n\n\t\t\t// Create validation version.\n\t\t\teditor.savePost = function ( options ) {\n\t\t\t\toptions = options || {};\n\n\t\t\t\t// Backup vars.\n\t\t\t\tvar _this = this;\n\t\t\t\tvar _args = arguments;\n\n\t\t\t\t// Perform validation within a Promise.\n\t\t\t\treturn new Promise( function ( resolve, reject ) {\n\t\t\t\t\t// Bail early if is autosave or preview.\n\t\t\t\t\tif ( options.isAutosave || options.isPreview ) {\n\t\t\t\t\t\treturn resolve( 'Validation ignored (autosave).' );\n\t\t\t\t\t}\n\n\t\t\t\t\t// Bail early if validation is not needed.\n\t\t\t\t\tif ( ! useValidation ) {\n\t\t\t\t\t\treturn resolve( 'Validation ignored (draft).' );\n\t\t\t\t\t}\n\n\t\t\t\t\t// Validate the editor form.\n\t\t\t\t\tvar valid = acf.validateForm( {\n\t\t\t\t\t\tform: $( '#editor' ),\n\t\t\t\t\t\treset: true,\n\t\t\t\t\t\tcomplete: function ( $form, validator ) {\n\t\t\t\t\t\t\t// Always unlock the form after AJAX.\n\t\t\t\t\t\t\teditor.unlockPostSaving( 'acf' );\n\t\t\t\t\t\t},\n\t\t\t\t\t\tfailure: function ( $form, validator ) {\n\t\t\t\t\t\t\t// Get validation error and append to Gutenberg notices.\n\t\t\t\t\t\t\tvar notice = validator.get( 'notice' );\n\t\t\t\t\t\t\tnotices.createErrorNotice( notice.get( 'text' ), {\n\t\t\t\t\t\t\t\tid: 'acf-validation',\n\t\t\t\t\t\t\t\tisDismissible: true,\n\t\t\t\t\t\t\t} );\n\t\t\t\t\t\t\tnotice.remove();\n\n\t\t\t\t\t\t\t// Restore last non \"publish\" status.\n\t\t\t\t\t\t\tif ( lastPostStatus ) {\n\t\t\t\t\t\t\t\teditor.editPost( {\n\t\t\t\t\t\t\t\t\tstatus: lastPostStatus,\n\t\t\t\t\t\t\t\t} );\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t// Rejext promise and prevent savePost().\n\t\t\t\t\t\t\treject( 'Validation failed.' );\n\t\t\t\t\t\t},\n\t\t\t\t\t\tsuccess: function () {\n\t\t\t\t\t\t\tnotices.removeNotice( 'acf-validation' );\n\n\t\t\t\t\t\t\t// Resolve promise and allow savePost().\n\t\t\t\t\t\t\tresolve( 'Validation success.' );\n\t\t\t\t\t\t},\n\t\t\t\t\t} );\n\n\t\t\t\t\t// Resolve promise and allow savePost() if no validation is needed.\n\t\t\t\t\tif ( valid ) {\n\t\t\t\t\t\tresolve( 'Validation bypassed.' );\n\n\t\t\t\t\t\t// Otherwise, lock the form and wait for AJAX response.\n\t\t\t\t\t} else {\n\t\t\t\t\t\teditor.lockPostSaving( 'acf' );\n\t\t\t\t\t}\n\t\t\t\t} )\n\t\t\t\t\t.then( function () {\n\t\t\t\t\t\treturn savePost.apply( _this, _args );\n\t\t\t\t\t},\n\t\t\t\t\t( err ) => {\n\t\t\t\t\t\t// Nothing to do here, user is alerted of validation issues.\n\t\t\t\t\t} );\n\t\t\t};\n\t\t},\n\t} );\n} )( jQuery );\n","// The module cache\nvar __webpack_module_cache__ = {};\n\n// The require function\nfunction __webpack_require__(moduleId) {\n\t// Check if module is in cache\n\tvar cachedModule = __webpack_module_cache__[moduleId];\n\tif (cachedModule !== undefined) {\n\t\treturn cachedModule.exports;\n\t}\n\t// Create a new module (and put it into the cache)\n\tvar module = __webpack_module_cache__[moduleId] = {\n\t\t// no module.id needed\n\t\t// no module.loaded needed\n\t\texports: {}\n\t};\n\n\t// Execute the module function\n\t__webpack_modules__[moduleId](module, module.exports, __webpack_require__);\n\n\t// Return the exports of the module\n\treturn module.exports;\n}\n\n","// getDefaultExport function for compatibility with non-harmony modules\n__webpack_require__.n = (module) => {\n\tvar getter = module && module.__esModule ?\n\t\t() => (module['default']) :\n\t\t() => (module);\n\t__webpack_require__.d(getter, { a: getter });\n\treturn getter;\n};","// define getter functions for harmony exports\n__webpack_require__.d = (exports, definition) => {\n\tfor(var key in definition) {\n\t\tif(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {\n\t\t\tObject.defineProperty(exports, key, { enumerable: true, get: definition[key] });\n\t\t}\n\t}\n};","__webpack_require__.o = (obj, prop) => (Object.prototype.hasOwnProperty.call(obj, prop))","// define __esModule on exports\n__webpack_require__.r = (exports) => {\n\tif(typeof Symbol !== 'undefined' && Symbol.toStringTag) {\n\t\tObject.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });\n\t}\n\tObject.defineProperty(exports, '__esModule', { value: true });\n};","import './_acf-field.js';\nimport './_acf-fields.js';\nimport './_acf-field-accordion.js';\nimport './_acf-field-button-group.js';\nimport './_acf-field-checkbox.js';\nimport './_acf-field-color-picker.js';\nimport './_acf-field-date-picker.js';\nimport './_acf-field-date-time-picker.js';\nimport './_acf-field-google-map.js';\nimport './_acf-field-image.js';\nimport './_acf-field-file.js';\nimport './_acf-field-link.js';\nimport './_acf-field-oembed.js';\nimport './_acf-field-radio.js';\nimport './_acf-field-range.js';\nimport './_acf-field-relationship.js';\nimport './_acf-field-select.js';\nimport './_acf-field-tab.js';\nimport './_acf-field-post-object.js';\nimport './_acf-field-page-link.js';\nimport './_acf-field-user.js';\nimport './_acf-field-taxonomy.js';\nimport './_acf-field-time-picker.js';\nimport './_acf-field-true-false.js';\nimport './_acf-field-url.js';\nimport './_acf-field-wysiwyg.js';\nimport './_acf-condition.js';\nimport './_acf-conditions.js';\nimport './_acf-condition-types.js';\nimport './_acf-unload.js';\nimport './_acf-postbox.js';\nimport './_acf-media.js';\nimport './_acf-screen.js';\nimport './_acf-select2.js';\nimport './_acf-tinymce.js';\nimport './_acf-validation.js';\nimport './_acf-helpers.js';\nimport './_acf-compatibility.js';\n"],"names":["$","undefined","acf","newCompatibility","instance","compatibilty","__proto__","compatibility","getCompatibility","_acf","l10n","o","fields","update","set","add_action","addAction","remove_action","removeAction","do_action","doAction","add_filter","addFilter","remove_filter","removeFilter","apply_filters","applyFilters","parse_args","parseArgs","disable_el","disable","disable_form","enable_el","enable","enable_form","update_user_setting","updateUserSetting","prepare_for_ajax","prepareForAjax","is_ajax_success","isAjaxSuccess","remove_el","remove","remove_tr","str_replace","strReplace","render_select","renderSelect","get_uniqid","uniqid","serialize_form","serialize","esc_html","strEscape","str_sanitize","strSanitize","_e","k1","k2","compatKey","compats","__","string","get_selector","s","selector","isPlainObject","isEmptyObject","k","get_fields","$el","all","args","is","parent","suppressFilters","findFields","get_field","$fields","apply","arguments","length","first","get_closest_field","closest","get_field_wrap","get_field_key","$field","data","get_field_type","get_data","defaults","maybe_get","obj","key","value","keys","String","split","i","hasOwnProperty","compatibleArgument","arg","Field","compatibleArguments","arrayArgs","map","compatibleCallback","origCallback","document","action","callback","priority","context","actions","model","filters","events","extend","each","name","_add_action","_add_filter","_add_event","indexOf","event","substr","fn","e","field_group","on","get","field","type","_set_$field","focus","doFocus","_validation","validation","remove_error","getField","removeError","add_warning","message","showNotice","text","timeout","fetch","validateForm","enableSubmit","disableSubmit","showSpinner","hideSpinner","unlockForm","lockForm","tooltip","newTooltip","target","temp","confirm","button_y","button_n","cancel","confirm_remove","confirmRemove","media","Model","activeFrame","new_media_popup","frame","onNewMediaPopup","popup","props","mime_types","allowedTypes","id","attachment","newMediaPopup","select2","init","$select","allow_null","allowNull","ajax_action","ajaxAction","newSelect2","destroy","getInstance","postbox","render","edit_url","editLink","edit_title","editTitle","newPostbox","screen","check","ajax","jQuery","parseString","val","isEqualTo","v1","v2","toLowerCase","isEqualToNumber","parseFloat","isGreaterThan","isLessThan","inArray","array","containsString","haystack","needle","matchesPattern","pattern","regexp","RegExp","match","HasValue","Condition","operator","label","fieldTypes","rule","Array","choices","fieldObject","registerConditionType","HasNoValue","prototype","EqualTo","isNumeric","NotEqualTo","PatternMatch","Contains","TrueFalseEqualTo","choiceType","TrueFalseNotEqualTo","SelectEqualTo","lines","$setting","$input","prop","push","line","trim","SelectNotEqualTo","GreaterThan","LessThan","SelectionGreaterThan","SelectionLessThan","storage","conditions","change","keyup","enableField","disableField","setup","getEventTarget","calculate","newCondition","fieldType","conditionTypes","getConditionTypes","condition","modelId","strPascalCase","proto","mid","models","getConditionType","registerConditionForFieldType","conditionType","types","ProtoFieldTypes","ProtoOperator","CONTEXT","conditionsManager","new_field","onNewField","has","getConditions","getSiblingField","getFields","sibling","parents","Conditions","timeStamp","groups","rules","addRules","addRule","changed","show","hide","showEnable","cid","hideDisable","pass","getGroups","group","passed","filter","hasGroups","addGroup","hasGroup","getGroup","removeGroup","delete","groupArray","hasRule","getRule","removeRule","wait","$control","initialize","hasClass","$label","$labelWrap","$inputWrap","$wrap","$instructions","children","append","$table","$newLabel","$newInput","$newTable","attr","$newWrap","html","addClass","order","getPreference","css","prepend","accordionManager","iconHtml","open","$parent","nextUntil","removeAttr","registerFieldType","unload","isOpen","toggle","close","isGutenberg","duration","find","slideDown","replaceWith","siblings","slideUp","removeClass","onClick","preventDefault","onInvalidField","busy","setTimeout","onUnload","setPreference","setValue","trigger","selected","$toggle","$inputs","not","getValue","onChange","checked","onClickAdd","getInputName","before","last","onClickToggle","$labels","onClickCustom","$text","next","duplicateField","$inputText","iris","defaultColor","palettes","clear","wpColorPicker","onDuplicate","$duplicate","$colorPicker","initializeCompatibility","dateFormat","altField","altFormat","changeYear","yearRange","changeMonth","showButtonPanel","firstDay","newDatePicker","datepicker","onBlur","datePickerManager","locale","rtl","isRTL","regional","setDefaults","exists","wrap","DatePickerField","timeFormat","altFieldTimeOnly","altTimeFormat","controlType","oneLine","newDateTimePicker","dateTimePickerManager","timepicker","datetimepicker","ImageField","validateAttachment","attributes","url","alt","title","filename","filesizeHumanReadable","icon","src","selectAttachment","multiple","mode","library","select","proxy","editAttachment","button","showField","$search","$canvas","setState","state","JSON","parse","silent","valAttr","stringify","renderVal","address","setPosition","lat","lng","marker","setVisible","newLatLng","google","maps","LatLng","center","position","getPosition","setCenter","withAPI","initializeMap","bind","zoom","mapArgs","scrollwheel","parseInt","mapTypeId","MapTypeId","ROADMAP","draggable","raiseOnDrag","autocomplete","Map","markerArgs","Marker","isset","autocompleteArgs","places","Autocomplete","bindTo","addMapEvents","addListener","latLng","searchPosition","place","getPlace","searchPlace","getZoom","geocoder","geocode","location","results","status","replace","parseResult","geometry","formatted_address","searchAddress","searchLocation","navigator","geolocation","alert","getCurrentPosition","coords","latitude","longitude","error","result","place_id","street_number","street_name","city","post_code","country","keywords","address_components","component","component_type","long_name","short_name","onClickClear","onClickLocate","onClickSearch","onFocusSearch","onBlurSearch","onKeyupSearch","onKeydownSearch","which","blur","onShow","loading","window","Geocoder","dataType","cache","success","caption","description","width","height","size","isget","getNext","removeAttachment","onClickEdit","onClickRemove","$hiddenInput","getFileInputData","param","$node","$div","wpLink","getNodeValue","decode","setNodeValue","getInputValue","setInputValue","$textarea","onOpen","wpLinkL10n","onClose","$submit","isSubmit","off","getSearchVal","showLoading","hideLoading","maybeSearch","prevUrl","clearTimeout","search","ajaxData","field_key","xhr","abort","json","complete","onKeypressSearch","onChangeSearch","SelectField","$inputAlt","$list","list","$listItems","$listItem","newChoice","join","newValue","delayed","once","sortable","items","forceHelperSize","forcePlaceholderSize","scroll","scrollTop","onScrollChoices","one","onceInView","Math","ceil","scrollHeight","innerHeight","paged","onKeypressFilter","onChangeFilter","maybeFetch","max","$span","$li","onTouchStartValues","getAjaxData","$choiceslist","$loading","onComplete","onSuccess","more","walkChoices","$html","$prevLabel","$prevList","walk","isArray","item","escHtml","escAttr","removeField","inherit","placeholder","onRemove","tabs","tab","findTabs","prevAll","findTab","$tabs","$tab","settings","endpoint","placement","Tabs","addTab","isActive","showFields","hiddenByTab","hideFields","lockKey","visible","refresh","hidden","reset","active","close_field_object","index","initialized","$before","ulClass","initializeTabs","getVisible","shift","groupIndex","tabIndex","isVisible","selectTab","closeTabs","getActive","setActive","hasActive","closeActive","closeTab","openTab","t","$a","outerHTML","classes","Tab","onRefresh","attribute","top","outerHeight","onCloseFieldObject","tabsManager","prepare","invalid_field","getTabs","getInstances","ftype","getRelatedPrototype","getRelatedType","getFieldType","$form","$name","$button","$message","notice","step1","newPopup","step2","content","step3","stopImmediatePropagation","startButtonLoading","term_name","term_parent","step4","stopButtonLoading","step5","newNotice","getAjaxMessage","dismiss","getAjaxError","term","$option","term_id","term_label","after","otherField","appendTerm","selectTerm","appendTermSelect","appendTermCheckbox","addOption","$ul","selectOption","onClickRadio","closeText","selectText","timeOnly","dp_instance","t_instance","$close","dpDiv","_updateDateTime","newTimePicker","$switch","$on","$off","switchOn","switchOff","onFocus","onKeypress","keyCode","isValid","onkeyup","query_nonce","user_query_nonce","unmountField","remountField","getMode","initializeEditor","tinymce","quicktags","toolbar","oldId","newId","uniqueId","inputData","inputVal","rename","destructive","onMousedown","enableEditor","disableEditor","eventScope","$parents","setFieldSettingsLastVisible","removeNotice","away","showError","bubbles","newField","getFieldTypes","category","limit","excludeSubFields","slice","findField","findClosestField","getClosestField","addGlobalFieldAction","globalAction","pluralAction","singleAction","globalCallback","extraArgs","pluralArgs","concat","pluralCallback","singleArgs","addSingleFieldAction","singleEvent","singleCallback","variations","variation","prefix","singleFieldEvents","globalFieldActions","singleFieldActions","fieldsEventManager","isGutenbergPostEditor","wp","dispatch","editPost","meta","_acf_changed","console","log","duplicateFieldsManager","duplicate","duplicate_fields","$el2","onDuplicateFields","duplicates","refreshHelper","show_field","hide_field","remove_field","unmount_field","remount_field","mountHelper","sortstart","sortstop","onSortstart","$item","onSortstop","sortableHelper","$placeholder","duplicateHelper","after_duplicate","onAfterDuplicate","vals","tableHelper","renderTables","self","renderTable","$ths","$tds","$th","$cells","$hidden","availableWidth","colspan","$fixedWidths","$auoWidths","$td","fieldsHelper","renderGroups","renderGroup","$row","thisTop","thisLeft","left","outerWidth","thisHeight","add","bodyClassShiftHelper","keydown","isShiftKey","onKeyDown","onKeyUp","autoOpen","EditMediaPopup","SelectMediaPopup","getPostID","postID","getMimeTypes","getMimeType","allTypes","MediaPopup","options","getFrameOptions","addFrameStates","addFrameEvents","detach","states","uploadedTo","post__in","Query","query","mirroring","_acfuploader","controller","Library","filterable","editable","allowLocalEdits","EditImage","image","view","loadEditor","selection","_x","_wpPluploadSettings","multipart_params","customizeFilters","audio","video","mimeType","newFilter","orderby","unattached","uploaded","renderFilters","customizePrototypes","post","customizeAttachmentsButton","customizeAttachmentsRouter","customizeAttachmentFilters","customizeAttachmentCompat","customizeAttachmentLibrary","Button","_","Backbone","listenTo","Parent","Router","addExpand","AttachmentFilters","All","chain","el","sortBy","pluck","AttachmentCompat","rendered","save","serializeForAjax","saveCompat","always","postSave","AttachmentLibrary","Attachment","acf_errors","toggleSelection","collection","single","errors","$sidebar","postboxManager","getPostbox","getPostboxes","Postbox","style","edit","$postbox","$hide","$hideLabel","$hndle","$handleActions","$inside","isHiddenByScreenOptions","isPost","isUser","isTaxonomy","isAttachment","isNavMenu","isWidget","isComment","getPageTemplate","getPageParent","getPageType","getPostType","getPostFormat","getPostCoreTerms","terms","tax_input","post_category","tax","getPostTerms","productType","getProductType","product_type","uniqueArray","post_id","postType","post_type","pageTemplate","page_template","pageParent","page_parent","pageType","page_type","postFormat","post_format","postTerms","post_terms","renderPostScreen","renderUserScreen","copyEvents","$from","$to","_data","handler","sortMetabox","ids","wpMinorVersion","postboxHeader","$prefs","_result","sorted","gutenScreen","postEdits","subscribe","debounce","onRefreshPostScreen","domReady","getTaxonomies","taxonomy","rest_base","_postEdits","getPostEdits","getEditedPostAttribute","taxonomies","slug","locations","getActiveMetaBoxLocations","getMetaBoxesPerLocation","m","r","setAvailableMetaBoxesPerLocation","ajaxResults","templateSelection","templateResult","dropdownCssClass","getVersion","Select2_4","Select2_3","Select2","getOption","unselectOption","option","$options","sort","a","b","getAttribute","mergeOptions","getChoices","crawl","$child","params","page","getAjaxResults","processAjaxResults","pagination","allowClear","escapeMarkup","markup","$selection","element","appendTo","attrAjax","removeData","delay","processResults","$container","stop","$prevOptions","$prevGroup","$group","separator","dropdownCss","initSelection","inputValue","quietMillis","choice","select2Manager","version","addTranslations4","addTranslations3","select2L10n","errorLoading","load_fail","inputTooLong","overChars","input","maximum","input_too_long_n","input_too_long_1","inputTooShort","remainingChars","minimum","input_too_short_n","input_too_short_1","loadingMore","load_more","maximumSelected","selection_too_long_n","selection_too_long_1","noResults","matches_0","searching","amd","define","formatMatches","matches","matches_n","matches_1","formatNoMatches","formatAjaxError","formatInputTooShort","min","formatInputTooLong","formatSelectionTooBig","formatLoadMore","formatSearching","locales","tinyMCEPreInit","mceInit","acf_content","qtInit","initializeTinymce","initializeQuicktags","toolbars","ed","MouseEvent","dispatchEvent","wp_autoresize_on","tadv_noautop","wpautop","buildQuicktags","canvas","theButtons","use","instanceId","buttons","edButtons","dfw","QTags","DFWButton","getElementsByTagName","dir","textdirection","TextDirectionButton","innerHTML","triggerHandler","destroyTinymce","enableTinymce","switchEditors","go","editorManager","ready","onPrepare","onReady","editor","autop","oldEditor","removep","editors","activeEditor","wpActiveEditor","validation_failure","validation_success","stopListening","startListening","Validator","addErrors","addError","hasErrors","clearErrors","getErrors","getFieldErrors","inputs","getGlobalErrors","showErrors","fieldErrors","globalErrors","errorCount","$scrollTo","ensureFieldPostBoxIsVisible","errorMessage","animate","offset","onChangeStatus","prevValue","validate","failure","submit","Event","valid","getValidator","validator","form","$spinner","findSubmitWrap","submitFormDebounced","acf_postbox","ensureInvalidFieldVisibility","checkValidity","addInputEvents","onInvalid","validationMessage","onClickSubmit","onClickSave","onClickSubmitGutenberg","$notice","onSubmitPost","onSubmit","isDefaultPrevented","allowSubmit","gutenbergValidation","customizeEditor","editorSelect","notices","savePost","useValidation","lastPostStatus","postStatus","_this","_args","Promise","resolve","reject","isAutosave","isPreview","unlockPostSaving","createErrorNotice","isDismissible","lockPostSaving","then","err"],"sourceRoot":""} \ No newline at end of file diff --git a/assets/build/js/acf-input.min.js b/assets/build/js/acf-input.min.js index 89b0e6c..f55ca61 100644 --- a/assets/build/js/acf-input.min.js +++ b/assets/build/js/acf-input.min.js @@ -1 +1 @@ -(()=>{var e={7787:()=>{!function(e,t){acf.newCompatibility=function(e,t){return(t=t||{}).__proto__=e.__proto__,e.__proto__=t,e.compatibility=t,t},acf.getCompatibility=function(e){return e.compatibility||null};var i=acf.newCompatibility(acf,{l10n:{},o:{},fields:{},update:acf.set,add_action:acf.addAction,remove_action:acf.removeAction,do_action:acf.doAction,add_filter:acf.addFilter,remove_filter:acf.removeFilter,apply_filters:acf.applyFilters,parse_args:acf.parseArgs,disable_el:acf.disable,disable_form:acf.disable,enable_el:acf.enable,enable_form:acf.enable,update_user_setting:acf.updateUserSetting,prepare_for_ajax:acf.prepareForAjax,is_ajax_success:acf.isAjaxSuccess,remove_el:acf.remove,remove_tr:acf.remove,str_replace:acf.strReplace,render_select:acf.renderSelect,get_uniqid:acf.uniqid,serialize_form:acf.serialize,esc_html:acf.strEscape,str_sanitize:acf.strSanitize});i._e=function(e,t){e=e||"";var i=(t=t||"")?e+"."+t:e,a={"image.select":"Select Image","image.edit":"Edit Image","image.update":"Update Image"};if(a[i])return acf.__(a[i]);var n=this.l10n[e]||"";return t&&(n=n[t]||""),n},i.get_selector=function(t){var i=".acf-field";if(!t)return i;if(e.isPlainObject(t)){if(e.isEmptyObject(t))return i;for(var a in t){t=t[a];break}}return i+="-"+t,i=acf.strReplace("_","-",i),acf.strReplace("field-field-","field-",i)},i.get_fields=function(e,t,i){var a={is:e||"",parent:t||!1,suppressFilters:i||!1};return a.is&&(a.is=this.get_selector(a.is)),acf.findFields(a)},i.get_field=function(e,t){var i=this.get_fields.apply(this,arguments);return!!i.length&&i.first()},i.get_closest_field=function(e,t){return e.closest(this.get_selector(t))},i.get_field_wrap=function(e){return e.closest(this.get_selector())},i.get_field_key=function(e){return e.data("key")},i.get_field_type=function(e){return e.data("type")},i.get_data=function(e,t){return acf.parseArgs(e.data(),t)},i.maybe_get=function(e,t,i){void 0===i&&(i=null),keys=String(t).split(".");for(var a=0;a1){for(var c=0;c0?t.substr(0,n):t,r=n>0?t.substr(n+1):"",o=function(t){t.$el=e(this),acf.field_group&&(t.$field=t.$el.closest(".acf-field-object")),"function"==typeof a.event&&(t=a.event(t)),a[i].apply(a,arguments)};r?e(document).on(s,r,o):e(document).on(s,o)},get:function(e,t){return t=t||null,void 0!==this[e]&&(t=this[e]),t},set:function(e,t){return this[e]=t,"function"==typeof this["_set_"+e]&&this["_set_"+e].apply(this),this}},i.field=acf.model.extend({type:"",o:{},$field:null,_add_action:function(e,t){var i=this;e=e+"_field/type="+i.type,acf.add_action(e,(function(e){i.set("$field",e),i[t].apply(i,arguments)}))},_add_filter:function(e,t){var i=this;e=e+"_field/type="+i.type,acf.add_filter(e,(function(e){i.set("$field",e),i[t].apply(i,arguments)}))},_add_event:function(t,i){var a=this,n=t.substr(0,t.indexOf(" ")),s=t.substr(t.indexOf(" ")+1),r=acf.get_selector(a.type);e(document).on(n,r+" "+s,(function(t){var n=e(this),s=acf.get_closest_field(n,a.type);s.length&&(s.is(a.$field)||a.set("$field",s),t.$el=n,t.$field=s,a[i].apply(a,[t]))}))},_set_$field:function(){"function"==typeof this.focus&&this.focus()},doFocus:function(e){return this.set("$field",e)}}),acf.newCompatibility(acf.validation,{remove_error:function(e){acf.getField(e).removeError()},add_warning:function(e,t){acf.getField(e).showNotice({text:t,type:"warning",timeout:1e3})},fetch:acf.validateForm,enableSubmit:acf.enableSubmit,disableSubmit:acf.disableSubmit,showSpinner:acf.showSpinner,hideSpinner:acf.hideSpinner,unlockForm:acf.unlockForm,lockForm:acf.lockForm}),i.tooltip={tooltip:function(e,t){return acf.newTooltip({text:e,target:t}).$el},temp:function(e,t){acf.newTooltip({text:e,target:t,timeout:250})},confirm:function(e,t,i,a,n){acf.newTooltip({confirm:!0,text:i,target:e,confirm:function(){t(!0)},cancel:function(){t(!1)}})},confirm_remove:function(e,t){acf.newTooltip({confirmRemove:!0,target:e,confirm:function(){t(!0)},cancel:function(){t(!1)}})}},i.media=new acf.Model({activeFrame:!1,actions:{new_media_popup:"onNewMediaPopup"},frame:function(){return this.activeFrame},onNewMediaPopup:function(e){this.activeFrame=e.frame},popup:function(e){return e.mime_types&&(e.allowedTypes=e.mime_types),e.id&&(e.attachment=e.id),acf.newMediaPopup(e).frame}}),i.select2={init:function(e,t,i){return t.allow_null&&(t.allowNull=t.allow_null),t.ajax_action&&(t.ajaxAction=t.ajax_action),i&&(t.field=acf.getField(i)),acf.newSelect2(e,t)},destroy:function(e){return acf.getInstance(e).destroy()}},i.postbox={render:function(e){return e.edit_url&&(e.editLink=e.edit_url),e.edit_title&&(e.editTitle=e.edit_title),acf.newPostbox(e)}},acf.newCompatibility(acf.screen,{update:function(){return this.set.apply(this,arguments)},fetch:acf.screen.check}),i.ajax=acf.screen}(jQuery)},682:()=>{!function(e,t){var __=acf.__,i=function(e){return e?""+e:""},a=function(e,t){return i(e).toLowerCase()===i(t).toLowerCase()},n=acf.Condition.extend({type:"hasValue",operator:"!=empty",label:__("Has any value"),fieldTypes:["text","textarea","number","range","email","url","password","image","file","wysiwyg","oembed","select","checkbox","radio","button_group","link","post_object","page_link","relationship","taxonomy","user","google_map","date_picker","date_time_picker","time_picker","color_picker"],match:function(e,t){let i=t.val();return i instanceof Array&&(i=i.length),!!i},choices:function(e){return''}});acf.registerConditionType(n);var s=n.extend({type:"hasNoValue",operator:"==empty",label:__("Has no value"),match:function(e,t){return!n.prototype.match.apply(this,arguments)}});acf.registerConditionType(s);var r=acf.Condition.extend({type:"equalTo",operator:"==",label:__("Value is equal to"),fieldTypes:["text","textarea","number","range","email","url","password"],match:function(e,t){return acf.isNumeric(e.value)?(i=e.value,n=t.val(),parseFloat(i)===parseFloat(n)):a(e.value,t.val());var i,n},choices:function(e){return''}});acf.registerConditionType(r);var o=r.extend({type:"notEqualTo",operator:"!=",label:__("Value is not equal to"),match:function(e,t){return!r.prototype.match.apply(this,arguments)}});acf.registerConditionType(o);var c=acf.Condition.extend({type:"patternMatch",operator:"==pattern",label:__("Value matches pattern"),fieldTypes:["text","textarea","email","url","password","wysiwyg"],match:function(e,t){return a=t.val(),n=e.value,s=new RegExp(i(n),"gi"),i(a).match(s);var a,n,s},choices:function(e){return''}});acf.registerConditionType(c);var l=acf.Condition.extend({type:"contains",operator:"==contains",label:__("Value contains"),fieldTypes:["text","textarea","number","email","url","password","wysiwyg","oembed","select"],match:function(e,t){return a=t.val(),n=e.value,i(a).indexOf(i(n))>-1;var a,n},choices:function(e){return''}});acf.registerConditionType(l);var d=r.extend({type:"trueFalseEqualTo",choiceType:"select",fieldTypes:["true_false"],choices:function(e){return[{id:1,text:__("Checked")}]}});acf.registerConditionType(d);var u=o.extend({type:"trueFalseNotEqualTo",choiceType:"select",fieldTypes:["true_false"],choices:function(e){return[{id:1,text:__("Checked")}]}});acf.registerConditionType(u);var f=acf.Condition.extend({type:"selectEqualTo",operator:"==",label:__("Value is equal to"),fieldTypes:["select","checkbox","radio","button_group"],match:function(e,t){var n,s=t.val();return s instanceof Array?(n=e.value,s.map((function(e){return i(e)})).indexOf(n)>-1):a(e.value,s)},choices:function(e){var t=[],i=e.$setting("choices textarea").val().split("\n");return e.$input("allow_null").prop("checked")&&t.push({id:"",text:__("Null")}),i.map((function(e){(e=e.split(":"))[1]=e[1]||e[0],t.push({id:e[0].trim(),text:e[1].trim()})})),t}});acf.registerConditionType(f);var p=f.extend({type:"selectNotEqualTo",operator:"!=",label:__("Value is not equal to"),match:function(e,t){return!f.prototype.match.apply(this,arguments)}});acf.registerConditionType(p);var h=acf.Condition.extend({type:"greaterThan",operator:">",label:__("Value is greater than"),fieldTypes:["number","range"],match:function(e,t){var i,a,n=t.val();return n instanceof Array&&(n=n.length),i=n,a=e.value,parseFloat(i)>parseFloat(a)},choices:function(e){return''}});acf.registerConditionType(h);var g=h.extend({type:"lessThan",operator:"<",label:__("Value is less than"),match:function(e,t){var i,a,n=t.val();return n instanceof Array&&(n=n.length),null==n||!1===n||(i=n,a=e.value,parseFloat(i)'}});acf.registerConditionType(g);var m=h.extend({type:"selectionGreaterThan",label:__("Selection is greater than"),fieldTypes:["checkbox","select","post_object","page_link","relationship","taxonomy","user"]});acf.registerConditionType(m);var v=g.extend({type:"selectionLessThan",label:__("Selection is less than"),fieldTypes:["checkbox","select","post_object","page_link","relationship","taxonomy","user"]});acf.registerConditionType(v)}(jQuery)},2849:()=>{!function(e,t){var i=[];acf.Condition=acf.Model.extend({type:"",operator:"==",label:"",choiceType:"input",fieldTypes:[],data:{conditions:!1,field:!1,rule:{}},events:{change:"change",keyup:"change",enableField:"change",disableField:"change"},setup:function(t){e.extend(this.data,t)},getEventTarget:function(e,t){return e||this.get("field").$el},change:function(e,t){this.get("conditions").change(e)},match:function(e,t){return!1},calculate:function(){return this.match(this.get("rule"),this.get("field"))},choices:function(e){return''}}),acf.newCondition=function(e,t){var i=t.get("field"),a=i.getField(e.field);if(!i||!a)return!1;var n={rule:e,target:i,conditions:t,field:a},s=a.get("type"),r=e.operator;return new(acf.getConditionTypes({fieldType:s,operator:r})[0]||acf.Condition)(n)};var a=function(e){return acf.strPascalCase(e||"")+"Condition"};acf.registerConditionType=function(e){var t=e.prototype.type,n=a(t);acf.models[n]=e,i.push(t)},acf.getConditionType=function(e){var t=a(e);return acf.models[t]||!1},acf.registerConditionForFieldType=function(e,t){var i=acf.getConditionType(e);i&&i.prototype.fieldTypes.push(t)},acf.getConditionTypes=function(e){e=acf.parseArgs(e,{fieldType:"",operator:""});var t=[];return i.map((function(i){var a=acf.getConditionType(i),n=a.prototype.fieldTypes,s=a.prototype.operator;e.fieldType&&-1===n.indexOf(e.fieldType)||e.operator&&s!==e.operator||t.push(a)})),t}}(jQuery)},3155:()=>{!function(e,t){var i="conditional_logic",a=(new acf.Model({id:"conditionsManager",priority:20,actions:{new_field:"onNewField"},onNewField:function(e){e.has("conditions")&&e.getConditions().render()}}),function(t,i){var a=acf.getFields({key:i,sibling:t.$el,suppressFilters:!0});return a.length||(a=acf.getFields({key:i,parent:t.$el.parent(),suppressFilters:!0})),!a.length&&e(".acf-field-settings").length&&(a=acf.getFields({key:i,parent:t.$el.parents(".acf-field-settings:first"),suppressFilters:!0})),!a.length&&e("#acf-basic-settings").length&&(a=acf.getFields({key:i,parent:e("#acf-basic-settings"),suppressFilters:!0})),!!a.length&&a[0]});acf.Field.prototype.getField=function(e){var t=a(this,e);if(t)return t;for(var i=this.parents(),n=0;n{!function(e,t){var i=0,a=acf.Field.extend({type:"accordion",wait:"",$control:function(){return this.$(".acf-fields:first")},initialize:function(){if(!this.$el.hasClass("acf-accordion")&&!this.$el.is("td")){if(this.get("endpoint"))return this.remove();var t=this.$el,a=this.$labelWrap(),s=this.$inputWrap(),r=this.$control(),o=s.children(".description");if(o.length&&a.append(o),this.$el.is("tr")){var c=this.$el.closest("table"),l=e('

              '),d=e('
              '),u=e('
                '),f=e("");l.append(a.html()),u.append(f),d.append(u),s.append(l),s.append(d),a.remove(),r.remove(),s.attr("colspan",2),a=l,s=d,r=f}t.addClass("acf-accordion"),a.addClass("acf-accordion-title"),s.addClass("acf-accordion-content"),i++,this.get("multi_expand")&&t.attr("multi-expand",1);var p=acf.getPreference("this.accordions")||[];void 0!==p[i-1]&&this.set("open",p[i-1]),this.get("open")&&(t.addClass("-open"),s.css("display","block")),a.prepend(n.iconHtml({open:this.get("open")}));var h=t.parent();r.addClass(h.hasClass("-left")?"-left":""),r.addClass(h.hasClass("-clear")?"-clear":""),r.append(t.nextUntil(".acf-field-accordion",".acf-field")),r.removeAttr("data-open data-multi_expand data-endpoint")}}});acf.registerFieldType(a);var n=new acf.Model({actions:{unload:"onUnload"},events:{"click .acf-accordion-title":"onClick","invalidField .acf-accordion":"onInvalidField"},isOpen:function(e){return e.hasClass("-open")},toggle:function(e){this.isOpen(e)?this.close(e):this.open(e)},iconHtml:function(e){return acf.isGutenberg()?e.open?'':'':e.open?'':''},open:function(t){var i=acf.isGutenberg()?0:300;t.find(".acf-accordion-content:first").slideDown(i).css("display","block"),t.find(".acf-accordion-icon:first").replaceWith(this.iconHtml({open:!0})),t.addClass("-open"),acf.doAction("show",t),t.attr("multi-expand")||t.siblings(".acf-accordion.-open").each((function(){n.close(e(this))}))},close:function(e){var t=acf.isGutenberg()?0:300;e.find(".acf-accordion-content:first").slideUp(t),e.find(".acf-accordion-icon:first").replaceWith(this.iconHtml({open:!1})),e.removeClass("-open"),acf.doAction("hide",e)},onClick:function(e,t){e.preventDefault(),this.toggle(t.parent())},onInvalidField:function(e,t){this.busy||(this.busy=!0,this.setTimeout((function(){this.busy=!1}),1e3),this.open(t))},onUnload:function(t){var i=[];e(".acf-accordion").each((function(){var t=e(this).hasClass("-open")?1:0;i.push(t)})),i.length&&acf.setPreference("this.accordions",i)}})}(jQuery)},1357:()=>{var e;jQuery,e=acf.Field.extend({type:"button_group",events:{'click input[type="radio"]':"onClick"},$control:function(){return this.$(".acf-button-group")},$input:function(){return this.$("input:checked")},setValue:function(e){this.$('input[value="'+e+'"]').prop("checked",!0).trigger("change")},onClick:function(e,t){var i=t.parent("label"),a=i.hasClass("selected");this.$(".selected").removeClass("selected"),i.addClass("selected"),this.get("allow_null")&&a&&(i.removeClass("selected"),t.prop("checked",!1).trigger("change"))}}),acf.registerFieldType(e)},8171:()=>{var e,t;e=jQuery,t=acf.Field.extend({type:"checkbox",events:{"change input":"onChange","click .acf-add-checkbox":"onClickAdd","click .acf-checkbox-toggle":"onClickToggle","click .acf-checkbox-custom":"onClickCustom"},$control:function(){return this.$(".acf-checkbox-list")},$toggle:function(){return this.$(".acf-checkbox-toggle")},$input:function(){return this.$('input[type="hidden"]')},$inputs:function(){return this.$('input[type="checkbox"]').not(".acf-checkbox-toggle")},getValue:function(){var t=[];return this.$(":checked").each((function(){t.push(e(this).val())})),!!t.length&&t},onChange:function(e,t){var i=t.prop("checked"),a=t.parent("label"),n=this.$toggle();i?a.addClass("selected"):a.removeClass("selected"),n.length&&(0==this.$inputs().not(":checked").length?n.prop("checked",!0):n.prop("checked",!1))},onClickAdd:function(e,t){var i='
              • ';t.parent("li").before(i),t.parent("li").parent().find('input[type="text"]').last().focus()},onClickToggle:function(e,t){var i=t.prop("checked"),a=this.$('input[type="checkbox"]'),n=this.$("label");a.prop("checked",i),i?n.addClass("selected"):n.removeClass("selected")},onClickCustom:function(e,t){var i=t.prop("checked"),a=t.next('input[type="text"]');i?a.prop("disabled",!1):(a.prop("disabled",!0),""==a.val()&&t.parent("li").remove())}}),acf.registerFieldType(t)},9459:()=>{var e;jQuery,e=acf.Field.extend({type:"color_picker",wait:"load",events:{duplicateField:"onDuplicate"},$control:function(){return this.$(".acf-color-picker")},$input:function(){return this.$('input[type="hidden"]')},$inputText:function(){return this.$('input[type="text"]')},setValue:function(e){acf.val(this.$input(),e),this.$inputText().iris("color",e)},initialize:function(){var e=this.$input(),t=this.$inputText(),i=function(i){setTimeout((function(){acf.val(e,t.val())}),1)},a={defaultColor:!1,palettes:!0,hide:!0,change:i,clear:i};a=acf.applyFilters("color_picker_args",a,this),t.wpColorPicker(a)},onDuplicate:function(e,t,i){$colorPicker=i.find(".wp-picker-container"),$inputText=i.find('input[type="text"]'),$colorPicker.replaceWith($inputText)}}),acf.registerFieldType(e)},7597:()=>{var e,t;e=jQuery,t=acf.Field.extend({type:"date_picker",events:{'blur input[type="text"]':"onBlur",duplicateField:"onDuplicate"},$control:function(){return this.$(".acf-date-picker")},$input:function(){return this.$('input[type="hidden"]')},$inputText:function(){return this.$('input[type="text"]')},initialize:function(){if(this.has("save_format"))return this.initializeCompatibility();var e=this.$input(),t=this.$inputText(),i={dateFormat:this.get("date_format"),altField:e,altFormat:"yymmdd",changeYear:!0,yearRange:"-100:+100",changeMonth:!0,showButtonPanel:!0,firstDay:this.get("first_day")};i=acf.applyFilters("date_picker_args",i,this),acf.newDatePicker(t,i),acf.doAction("date_picker_init",t,i,this)},initializeCompatibility:function(){var e=this.$input(),t=this.$inputText();t.val(e.val());var i={dateFormat:this.get("date_format"),altField:e,altFormat:this.get("save_format"),changeYear:!0,yearRange:"-100:+100",changeMonth:!0,showButtonPanel:!0,firstDay:this.get("first_day")},a=(i=acf.applyFilters("date_picker_args",i,this)).dateFormat;i.dateFormat=this.get("save_format"),acf.newDatePicker(t,i),t.datepicker("option","dateFormat",a),acf.doAction("date_picker_init",t,i,this)},onBlur:function(){this.$inputText().val()||acf.val(this.$input(),"")},onDuplicate:function(e,t,i){i.find('input[type="text"]').removeClass("hasDatepicker").removeAttr("id")}}),acf.registerFieldType(t),new acf.Model({priority:5,wait:"ready",initialize:function(){var t=acf.get("locale"),i=acf.get("rtl"),a=acf.get("datePickerL10n");return!!a&&void 0!==e.datepicker&&(a.isRTL=i,e.datepicker.regional[t]=a,void e.datepicker.setDefaults(a))}}),acf.newDatePicker=function(t,i){if(void 0===e.datepicker)return!1;i=i||{},t.datepicker(i),e("body > #ui-datepicker-div").exists()&&e("body > #ui-datepicker-div").wrap('
                ')}},684:()=>{var e,t;e=jQuery,t=acf.models.DatePickerField.extend({type:"date_time_picker",$control:function(){return this.$(".acf-date-time-picker")},initialize:function(){var e=this.$input(),t=this.$inputText(),i={dateFormat:this.get("date_format"),timeFormat:this.get("time_format"),altField:e,altFieldTimeOnly:!1,altFormat:"yy-mm-dd",altTimeFormat:"HH:mm:ss",changeYear:!0,yearRange:"-100:+100",changeMonth:!0,showButtonPanel:!0,firstDay:this.get("first_day"),controlType:"select",oneLine:!0};i=acf.applyFilters("date_time_picker_args",i,this),acf.newDateTimePicker(t,i),acf.doAction("date_time_picker_init",t,i,this)}}),acf.registerFieldType(t),new acf.Model({priority:5,wait:"ready",initialize:function(){var t=acf.get("locale"),i=acf.get("rtl"),a=acf.get("dateTimePickerL10n");return!!a&&void 0!==e.timepicker&&(a.isRTL=i,e.timepicker.regional[t]=a,void e.timepicker.setDefaults(a))}}),acf.newDateTimePicker=function(t,i){if(void 0===e.timepicker)return!1;i=i||{},t.datetimepicker(i),e("body > #ui-datepicker-div").exists()&&e("body > #ui-datepicker-div").wrap('
                ')}},5647:()=>{var e,t;e=jQuery,t=acf.models.ImageField.extend({type:"file",$control:function(){return this.$(".acf-file-uploader")},$input:function(){return this.$('input[type="hidden"]:first')},validateAttachment:function(e){return void 0!==(e=e||{}).id&&(e=e.attributes),acf.parseArgs(e,{url:"",alt:"",title:"",filename:"",filesizeHumanReadable:"",icon:"/wp-includes/images/media/default.png"})},render:function(e){e=this.validateAttachment(e),this.$("img").attr({src:e.icon,alt:e.alt,title:e.title}),this.$('[data-name="title"]').text(e.title),this.$('[data-name="filename"]').text(e.filename).attr("href",e.url),this.$('[data-name="filesize"]').text(e.filesizeHumanReadable);var t=e.id||"";acf.val(this.$input(),t),t?this.$control().addClass("has-value"):this.$control().removeClass("has-value")},selectAttachment:function(){var t=this.parent(),i=t&&"repeater"===t.get("type");acf.newMediaPopup({mode:"select",title:acf.__("Select File"),field:this.get("key"),multiple:i,library:this.get("library"),allowedTypes:this.get("mime_types"),select:e.proxy((function(e,i){i>0?this.append(e,t):this.render(e)}),this)})},editAttachment:function(){var t=this.val();if(!t)return!1;acf.newMediaPopup({mode:"edit",title:acf.__("Edit File"),button:acf.__("Update File"),attachment:t,field:this.get("key"),select:e.proxy((function(e,t){this.render(e)}),this)})}}),acf.registerFieldType(t)},8489:()=>{!function(e,t){var i=acf.Field.extend({type:"google_map",map:!1,wait:"load",events:{'click a[data-name="clear"]':"onClickClear",'click a[data-name="locate"]':"onClickLocate",'click a[data-name="search"]':"onClickSearch","keydown .search":"onKeydownSearch","keyup .search":"onKeyupSearch","focus .search":"onFocusSearch","blur .search":"onBlurSearch",showField:"onShow"},$control:function(){return this.$(".acf-google-map")},$search:function(){return this.$(".search")},$canvas:function(){return this.$(".canvas")},setState:function(e){this.$control().removeClass("-value -loading -searching"),"default"===e&&(e=this.val()?"value":""),e&&this.$control().addClass("-"+e)},getValue:function(){var e=this.$input().val();return!!e&&JSON.parse(e)},setValue:function(e,t){var i="";e&&(i=JSON.stringify(e)),acf.val(this.$input(),i),t||(this.renderVal(e),acf.doAction("google_map_change",e,this.map,this))},renderVal:function(e){e?(this.setState("value"),this.$search().val(e.address),this.setPosition(e.lat,e.lng)):(this.setState(""),this.$search().val(""),this.map.marker.setVisible(!1))},newLatLng:function(e,t){return new google.maps.LatLng(parseFloat(e),parseFloat(t))},setPosition:function(e,t){this.map.marker.setPosition({lat:parseFloat(e),lng:parseFloat(t)}),this.map.marker.setVisible(!0),this.center()},center:function(){var e=this.map.marker.getPosition();if(e)var t=e.lat(),i=e.lng();else t=this.get("lat"),i=this.get("lng");this.map.setCenter({lat:parseFloat(t),lng:parseFloat(i)})},initialize:function(){!function(t){if(n)return t();if(acf.isset(window,"google","maps","Geocoder"))return n=new google.maps.Geocoder,t();if(acf.addAction("google_map_api_loaded",t),!a){var i=acf.get("google_map_api");i&&(a=!0,e.ajax({url:i,dataType:"script",cache:!0,success:function(){n=new google.maps.Geocoder,acf.doAction("google_map_api_loaded")}}))}}(this.initializeMap.bind(this))},initializeMap:function(){var e=this.getValue(),t=acf.parseArgs(e,{zoom:this.get("zoom"),lat:this.get("lat"),lng:this.get("lng")}),i={scrollwheel:!1,zoom:parseInt(t.zoom),center:{lat:parseFloat(t.lat),lng:parseFloat(t.lng)},mapTypeId:google.maps.MapTypeId.ROADMAP,marker:{draggable:!0,raiseOnDrag:!0},autocomplete:{}};i=acf.applyFilters("google_map_args",i,this);var a=new google.maps.Map(this.$canvas()[0],i),n=acf.parseArgs(i.marker,{draggable:!0,raiseOnDrag:!0,map:a});n=acf.applyFilters("google_map_marker_args",n,this);var s=new google.maps.Marker(n),r=!1;if(acf.isset(google,"maps","places","Autocomplete")){var o=i.autocomplete||{};o=acf.applyFilters("google_map_autocomplete_args",o,this),(r=new google.maps.places.Autocomplete(this.$search()[0],o)).bindTo("bounds",a)}this.addMapEvents(this,a,s,r),a.acf=this,a.marker=s,a.autocomplete=r,this.map=a,e&&this.setPosition(e.lat,e.lng),acf.doAction("google_map_init",a,s,this)},addMapEvents:function(e,t,i,a){google.maps.event.addListener(t,"click",(function(t){var i=t.latLng.lat(),a=t.latLng.lng();e.searchPosition(i,a)})),google.maps.event.addListener(i,"dragend",(function(){var t=this.getPosition().lat(),i=this.getPosition().lng();e.searchPosition(t,i)})),a&&google.maps.event.addListener(a,"place_changed",(function(){var t=this.getPlace();e.searchPlace(t)})),google.maps.event.addListener(t,"zoom_changed",(function(){var i=e.val();i&&(i.zoom=t.getZoom(),e.setValue(i,!0))}))},searchPosition:function(e,t){this.setState("loading");var i={lat:e,lng:t};n.geocode({location:i},function(i,a){if(this.setState(""),"OK"!==a)this.showNotice({text:acf.__("Location not found: %s").replace("%s",a),type:"warning"});else{var n=this.parseResult(i[0]);n.lat=e,n.lng=t,this.val(n)}}.bind(this))},searchPlace:function(e){if(e)if(e.geometry){e.formatted_address=this.$search().val();var t=this.parseResult(e);this.val(t)}else e.name&&this.searchAddress(e.name)},searchAddress:function(e){if(e){var t=e.split(",");if(2==t.length){var i=parseFloat(t[0]),a=parseFloat(t[1]);if(i&&a)return this.searchPosition(i,a)}this.setState("loading"),n.geocode({address:e},function(t,i){if(this.setState(""),"OK"!==i)this.showNotice({text:acf.__("Location not found: %s").replace("%s",i),type:"warning"});else{var a=this.parseResult(t[0]);a.address=e,this.val(a)}}.bind(this))}},searchLocation:function(){if(!navigator.geolocation)return alert(acf.__("Sorry, this browser does not support geolocation"));this.setState("loading"),navigator.geolocation.getCurrentPosition(function(e){this.setState("");var t=e.coords.latitude,i=e.coords.longitude;this.searchPosition(t,i)}.bind(this),function(e){this.setState("")}.bind(this))},parseResult:function(e){var t={address:e.formatted_address,lat:e.geometry.location.lat(),lng:e.geometry.location.lng()};t.zoom=this.map.getZoom(),e.place_id&&(t.place_id=e.place_id),e.name&&(t.name=e.name);var i={street_number:["street_number"],street_name:["street_address","route"],city:["locality","postal_town"],state:["administrative_area_level_1","administrative_area_level_2","administrative_area_level_3","administrative_area_level_4","administrative_area_level_5"],post_code:["postal_code"],country:["country"]};for(var a in i)for(var n=i[a],s=0;s{var e,t;e=jQuery,t=acf.Field.extend({type:"image",$control:function(){return this.$(".acf-image-uploader")},$input:function(){return this.$('input[type="hidden"]:first')},events:{'click a[data-name="add"]':"onClickAdd",'click a[data-name="edit"]':"onClickEdit",'click a[data-name="remove"]':"onClickRemove",'change input[type="file"]':"onChange"},initialize:function(){"basic"===this.get("uploader")&&this.$el.closest("form").attr("enctype","multipart/form-data")},validateAttachment:function(e){e&&e.attributes&&(e=e.attributes),e=acf.parseArgs(e,{id:0,url:"",alt:"",title:"",caption:"",description:"",width:0,height:0});var t=acf.isget(e,"sizes",this.get("preview_size"));return t&&(e.url=t.url,e.width=t.width,e.height=t.height),e},render:function(e){e=this.validateAttachment(e),this.$("img").attr({src:e.url,alt:e.alt}),e.id?(this.val(e.id),this.$control().addClass("has-value")):(this.val(""),this.$control().removeClass("has-value"))},append:function(e,t){var i=function(e,t){for(var i=acf.getFields({key:e.get("key"),parent:t.$el}),a=0;a0?this.append(e,t):this.render(e)}),this)})},editAttachment:function(){var t=this.val();t&&acf.newMediaPopup({mode:"edit",title:acf.__("Edit Image"),button:acf.__("Update Image"),attachment:t,field:this.get("key"),select:e.proxy((function(e,t){this.render(e)}),this)})},removeAttachment:function(){this.render(!1)},onClickAdd:function(e,t){this.selectAttachment()},onClickEdit:function(e,t){this.editAttachment()},onClickRemove:function(e,t){this.removeAttachment()},onChange:function(t,i){var a=this.$input();i.val()||a.val(""),acf.getFileInputData(i,(function(t){a.val(e.param(t))}))}}),acf.registerFieldType(t)},4658:()=>{var e,t;e=jQuery,t=acf.Field.extend({type:"link",events:{'click a[data-name="add"]':"onClickEdit",'click a[data-name="edit"]':"onClickEdit",'click a[data-name="remove"]':"onClickRemove","change .link-node":"onChange"},$control:function(){return this.$(".acf-link")},$node:function(){return this.$(".link-node")},getValue:function(){var e=this.$node();return!!e.attr("href")&&{title:e.html(),url:e.attr("href"),target:e.attr("target")}},setValue:function(e){e=acf.parseArgs(e,{title:"",url:"",target:""});var t=this.$control(),i=this.$node();t.removeClass("-value -external"),e.url&&t.addClass("-value"),"_blank"===e.target&&t.addClass("-external"),this.$(".link-title").html(e.title),this.$(".link-url").attr("href",e.url).html(e.url),i.html(e.title),i.attr("href",e.url),i.attr("target",e.target),this.$(".input-title").val(e.title),this.$(".input-target").val(e.target),this.$(".input-url").val(e.url).trigger("change")},onClickEdit:function(e,t){acf.wpLink.open(this.$node())},onClickRemove:function(e,t){this.setValue(!1)},onChange:function(e,t){var i=this.getValue();this.setValue(i)}}),acf.registerFieldType(t),acf.wpLink=new acf.Model({getNodeValue:function(){var e=this.get("node");return{title:acf.decode(e.html()),url:e.attr("href"),target:e.attr("target")}},setNodeValue:function(e){var t=this.get("node");t.text(e.title),t.attr("href",e.url),t.attr("target",e.target),t.trigger("change")},getInputValue:function(){return{title:e("#wp-link-text").val(),url:e("#wp-link-url").val(),target:e("#wp-link-target").prop("checked")?"_blank":""}},setInputValue:function(t){e("#wp-link-text").val(t.title),e("#wp-link-url").val(t.url),e("#wp-link-target").prop("checked","_blank"===t.target)},open:function(t){this.on("wplink-open","onOpen"),this.on("wplink-close","onClose"),this.set("node",t);var i=e('');e("body").append(i);var a=this.getNodeValue();wpLink.open("acf-link-textarea",a.url,a.title,null)},onOpen:function(){e("#wp-link-wrap").addClass("has-text-field");var t=this.getNodeValue();this.setInputValue(t),t.url&&wpLinkL10n&&e("#wp-link-submit").val(wpLinkL10n.update)},close:function(){wpLink.close()},onClose:function(){if(!this.has("node"))return!1;var t=e("#wp-link-submit");if(t.is(":hover")||t.is(":focus")){var i=this.getInputValue();this.setNodeValue(i)}this.off("wplink-open"),this.off("wplink-close"),e("#acf-link-textarea").remove(),this.set("node",null)}})},719:()=>{var e,t;e=jQuery,t=acf.Field.extend({type:"oembed",events:{'click [data-name="clear-button"]':"onClickClear","keypress .input-search":"onKeypressSearch","keyup .input-search":"onKeyupSearch","change .input-search":"onChangeSearch"},$control:function(){return this.$(".acf-oembed")},$input:function(){return this.$(".input-value")},$search:function(){return this.$(".input-search")},getValue:function(){return this.$input().val()},getSearchVal:function(){return this.$search().val()},setValue:function(e){e?this.$control().addClass("has-value"):this.$control().removeClass("has-value"),acf.val(this.$input(),e)},showLoading:function(e){acf.showLoading(this.$(".canvas"))},hideLoading:function(){acf.hideLoading(this.$(".canvas"))},maybeSearch:function(){var t=this.val(),i=this.getSearchVal();if(!i)return this.clear();if("http"!=i.substr(0,4)&&(i="http://"+i),i!==t){var a=this.get("timeout");a&&clearTimeout(a);var n=e.proxy(this.search,this,i);this.set("timeout",setTimeout(n,300))}},search:function(t){var i={action:"acf/fields/oembed/search",s:t,field_key:this.get("key")};(a=this.get("xhr"))&&a.abort(),this.showLoading();var a=e.ajax({url:acf.get("ajaxurl"),data:acf.prepareForAjax(i),type:"post",dataType:"json",context:this,success:function(e){e&&e.html||(e={url:!1,html:""}),this.val(e.url),this.$(".canvas-media").html(e.html)},complete:function(){this.hideLoading()}});this.set("xhr",a)},clear:function(){this.val(""),this.$search().val(""),this.$(".canvas-media").html("")},onClickClear:function(e,t){this.clear()},onKeypressSearch:function(e,t){13==e.which&&(e.preventDefault(),this.maybeSearch())},onKeyupSearch:function(e,t){t.val()&&this.maybeSearch()},onChangeSearch:function(e,t){this.maybeSearch()}}),acf.registerFieldType(t)},1281:()=>{var e;jQuery,e=acf.models.SelectField.extend({type:"page_link"}),acf.registerFieldType(e)},1987:()=>{var e;jQuery,e=acf.models.SelectField.extend({type:"post_object"}),acf.registerFieldType(e)},2557:()=>{var e;jQuery,e=acf.Field.extend({type:"radio",events:{'click input[type="radio"]':"onClick"},$control:function(){return this.$(".acf-radio-list")},$input:function(){return this.$("input:checked")},$inputText:function(){return this.$('input[type="text"]')},getValue:function(){var e=this.$input().val();return"other"===e&&this.get("other_choice")&&(e=this.$inputText().val()),e},onClick:function(e,t){var i=t.parent("label"),a=i.hasClass("selected"),n=t.val();this.$(".selected").removeClass("selected"),i.addClass("selected"),this.get("allow_null")&&a&&(i.removeClass("selected"),t.prop("checked",!1).trigger("change"),n=!1),this.get("other_choice")&&("other"===n?this.$inputText().prop("disabled",!1):this.$inputText().prop("disabled",!0))}}),acf.registerFieldType(e)},2489:()=>{var e;jQuery,e=acf.Field.extend({type:"range",events:{'input input[type="range"]':"onChange","change input":"onChange"},$input:function(){return this.$('input[type="range"]')},$inputAlt:function(){return this.$('input[type="number"]')},setValue:function(e){this.busy=!0,acf.val(this.$input(),e),acf.val(this.$inputAlt(),this.$input().val(),!0),this.busy=!1},onChange:function(e,t){this.busy||this.setValue(t.val())}}),acf.registerFieldType(e)},714:()=>{var e,t;e=jQuery,t=acf.Field.extend({type:"relationship",events:{"keypress [data-filter]":"onKeypressFilter","change [data-filter]":"onChangeFilter","keyup [data-filter]":"onChangeFilter","click .choices-list .acf-rel-item":"onClickAdd","keypress .choices-list .acf-rel-item":"onKeypressFilter","keypress .values-list .acf-rel-item":"onKeypressFilter",'click [data-name="remove_item"]':"onClickRemove","touchstart .values-list .acf-rel-item":"onTouchStartValues"},$control:function(){return this.$(".acf-relationship")},$list:function(e){return this.$("."+e+"-list")},$listItems:function(e){return this.$list(e).find(".acf-rel-item")},$listItem:function(e,t){return this.$list(e).find('.acf-rel-item[data-id="'+t+'"]')},getValue:function(){var t=[];return this.$listItems("values").each((function(){t.push(e(this).data("id"))})),!!t.length&&t},newChoice:function(e){return["
              • ",''+e.text+"","
              • "].join("")},newValue:function(e){return["
              • ",'',''+e.text,'',"","
              • "].join("")},initialize:function(){var e=this.proxy(acf.once((function(){this.$list("values").sortable({items:"li",forceHelperSize:!0,forcePlaceholderSize:!0,scroll:!0,update:this.proxy((function(){this.$input().trigger("change")}))}),this.$list("choices").scrollTop(0).on("scroll",this.proxy(this.onScrollChoices)),this.fetch()})));this.$el.one("mouseover",e),this.$el.one("focus","input",e),acf.onceInView(this.$el,e)},onScrollChoices:function(e){if(!this.get("loading")&&this.get("more")){var t=this.$list("choices"),i=Math.ceil(t.scrollTop()),a=Math.ceil(t[0].scrollHeight),n=Math.ceil(t.innerHeight()),s=this.get("paged")||1;i+n>=a&&(this.set("paged",s+1),this.fetch())}},onKeypressFilter:function(e,t){t.hasClass("acf-rel-item-add")&&13==e.which&&this.onClickAdd(e,t),t.hasClass("acf-rel-item-remove")&&13==e.which&&this.onClickRemove(e,t),13==e.which&&e.preventDefault()},onChangeFilter:function(e,t){var i=t.val(),a=t.data("filter");this.get(a)!==i&&(this.set(a,i),this.set("paged",1),t.is("select")?this.fetch():this.maybeFetch())},onClickAdd:function(e,t){var i=this.val(),a=parseInt(this.get("max"));if(t.hasClass("disabled"))return!1;if(a>0&&i&&i.length>=a)return this.showNotice({text:acf.__("Maximum values reached ( {max} values )").replace("{max}",a),type:"warning"}),!1;t.addClass("disabled");var n=this.newValue({id:t.data("id"),text:t.html()});this.$list("values").append(n),this.$input().trigger("change")},onClickRemove:function(e,t){let i;e.preventDefault(),i=t.hasClass("acf-rel-item-remove")?t:t.parent();const a=i.parent(),n=i.data("id");a.remove(),this.$listItem("choices",n).removeClass("disabled"),this.$input().trigger("change")},onTouchStartValues:function(t,i){e(this.$listItems("values")).removeClass("relationship-hover"),i.addClass("relationship-hover")},maybeFetch:function(){var e=this.get("timeout");e&&clearTimeout(e),e=this.setTimeout(this.fetch,300),this.set("timeout",e)},getAjaxData:function(){var e=this.$control().data();for(var t in e)e[t]=this.get(t);return e.action="acf/fields/relationship/query",e.field_key=this.get("key"),acf.applyFilters("relationship_ajax_data",e,this)},fetch:function(){(n=this.get("xhr"))&&n.abort();var t=this.getAjaxData(),i=this.$list("choices");1==t.paged&&i.html("");var a=e('
              • '+acf.__("Loading")+"
              • ");i.append(a),this.set("loading",!0);var n=e.ajax({url:acf.get("ajaxurl"),dataType:"json",type:"post",data:acf.prepareForAjax(t),context:this,success:function(t){if(!t||!t.results||!t.results.length)return this.set("more",!1),void(1==this.get("paged")&&this.$list("choices").append("
              • "+acf.__("No matches found")+"
              • "));this.set("more",t.more);var a=this.walkChoices(t.results),n=e(a),s=this.val();s&&s.length&&s.map((function(e){n.find('.acf-rel-item[data-id="'+e+'"]').addClass("disabled")})),i.append(n);var r=!1,o=!1;i.find(".acf-rel-label").each((function(){var t=e(this),i=t.siblings("ul");if(r&&r.text()==t.text())return o.append(i.children()),void e(this).parent().remove();r=t,o=i}))},complete:function(){this.set("loading",!1),a.remove()}});this.set("xhr",n)},walkChoices:function(t){var i=function(t){var a="";return e.isArray(t)?t.map((function(e){a+=i(e)})):e.isPlainObject(t)&&(void 0!==t.children?(a+='
              • '+acf.escHtml(t.text)+'
                  ',a+=i(t.children),a+="
              • "):a+='
              • '+acf.escHtml(t.text)+"
              • "),a};return i(t)}}),acf.registerFieldType(t)},6965:()=>{var e;jQuery,e=acf.Field.extend({type:"select",select2:!1,wait:"load",events:{removeField:"onRemove",duplicateField:"onDuplicate"},$input:function(){return this.$("select")},initialize:function(){var e=this.$input();if(this.inherit(e),this.get("ui")){var t=this.get("ajax_action");t||(t="acf/fields/"+this.get("type")+"/query"),this.select2=acf.newSelect2(e,{field:this,ajax:this.get("ajax"),multiple:this.get("multiple"),placeholder:this.get("placeholder"),allowNull:this.get("allow_null"),ajaxAction:t})}},onRemove:function(){this.select2&&this.select2.destroy()},onDuplicate:function(e,t,i){this.select2&&(i.find(".select2-container").remove(),i.find("select").removeClass("select2-hidden-accessible"))}}),acf.registerFieldType(e)},177:()=>{!function(e,t){var i="tab",a=acf.Field.extend({type:"tab",wait:"",tabs:!1,tab:!1,events:{duplicateField:"onDuplicate"},findFields:function(){let e;switch(this.get("key")){case"acf_field_settings_tabs":e=".acf-field-settings-main";break;case"acf_field_group_settings_tabs":e=".field-group-settings-tab";break;case"acf_browse_fields_tabs":e=".acf-field-types-tab";break;case"acf_post_type_tabs":e=".acf-post-type-advanced-settings";break;case"acf_taxonomy_tabs":e=".acf-taxonomy-advanced-settings";break;case"acf_ui_options_page_tabs":e=".acf-ui-options-page-advanced-settings";break;default:e=".acf-field"}return this.$el.nextUntil(".acf-field-tab",e)},getFields:function(){return acf.getFields(this.findFields())},findTabs:function(){return this.$el.prevAll(".acf-tab-wrap:first")},findTab:function(){return this.$(".acf-tab-button")},initialize:function(){if(this.$el.is("td"))return this.events={},!1;var e=this.findTabs(),t=this.findTab(),i=acf.parseArgs(t.data(),{endpoint:!1,placement:"",before:this.$el});!e.length||i.endpoint?this.tabs=new s(i):this.tabs=e.data("acf"),this.tab=this.tabs.addTab(t,this)},isActive:function(){return this.tab.isActive()},showFields:function(){this.getFields().map((function(e){e.show(this.cid,i),e.hiddenByTab=!1}),this)},hideFields:function(){this.getFields().map((function(e){e.hide(this.cid,i),e.hiddenByTab=this.tab}),this)},show:function(e){var t=acf.Field.prototype.show.apply(this,arguments);return t&&(this.tab.show(),this.tabs.refresh()),t},hide:function(e){var t=acf.Field.prototype.hide.apply(this,arguments);return t&&(this.tab.hide(),this.isActive()&&this.tabs.reset()),t},enable:function(e){this.getFields().map((function(e){e.enable(i)}))},disable:function(e){this.getFields().map((function(e){e.disable(i)}))},onDuplicate:function(e,t,i){this.isActive()&&i.prevAll(".acf-tab-wrap:first").remove()}});acf.registerFieldType(a);var n=0,s=acf.Model.extend({tabs:[],active:!1,actions:{refresh:"onRefresh",close_field_object:"onCloseFieldObject"},data:{before:!1,placement:"top",index:0,initialized:!1},setup:function(t){e.extend(this.data,t),this.tabs=[],this.active=!1;var i=this.get("placement"),a=this.get("before"),s=a.parent();if("left"==i&&s.hasClass("acf-fields")&&s.addClass("-sidebar"),a.is("tr"))this.$el=e('
                ');else{let t="acf-hl acf-tab-group";"acf_field_settings_tabs"===this.get("key")&&(t="acf-field-settings-tab-bar"),this.$el=e('
                  ')}a.before(this.$el),this.set("index",n,!0),n++},initializeTabs:function(){if("acf_field_settings_tabs"!==this.get("key")||!e("#acf-field-group-fields").hasClass("hide-tabs")){var t=this.getVisible().shift(),i=(acf.getPreference("this.tabs")||[])[this.get("index")];this.tabs[i]&&this.tabs[i].isVisible()&&(t=this.tabs[i]),t?this.selectTab(t):this.closeTabs(),this.set("initialized",!0)}},getVisible:function(){return this.tabs.filter((function(e){return e.isVisible()}))},getActive:function(){return this.active},setActive:function(e){return this.active=e},hasActive:function(){return!1!==this.active},isActive:function(e){var t=this.getActive();return t&&t.cid===e.cid},closeActive:function(){this.hasActive()&&this.closeTab(this.getActive())},openTab:function(e){this.closeActive(),e.open(),this.setActive(e)},closeTab:function(e){e.close(),this.setActive(!1)},closeTabs:function(){this.tabs.map(this.closeTab,this)},selectTab:function(e){this.tabs.map((function(t){e.cid!==t.cid&&this.closeTab(t)}),this),this.openTab(e)},addTab:function(t,i){var a=e("
                • "+t.outerHTML()+"
                • "),n=t.attr("class").replace("acf-tab-button","");a.addClass(n),this.$("ul").append(a);var s=new r({$el:a,field:i,group:this});return this.tabs.push(s),s},reset:function(){return this.closeActive(),this.refresh()},refresh:function(){if(this.hasActive())return!1;var e=this.getVisible().shift();return e&&this.openTab(e),e},onRefresh:function(){if("left"===this.get("placement")){var e=this.$el.parent(),t=this.$el.children("ul"),i=e.is("td")?"height":"min-height",a=t.position().top+t.outerHeight(!0)-1;e.css(i,a)}},onCloseFieldObject:function(e){const t=this.getVisible().find((t=>{const i=t.$el.closest("div[data-id]").data("id");if(e.data.id===i)return t}));t&&setTimeout((()=>{this.openTab(t)}),300)}}),r=acf.Model.extend({group:!1,field:!1,events:{"click a":"onClick"},index:function(){return this.$el.index()},isVisible:function(){return acf.isVisible(this.$el)},isActive:function(){return this.$el.hasClass("active")},open:function(){this.$el.addClass("active"),this.field.showFields()},close:function(){this.$el.removeClass("active"),this.field.hideFields()},onClick:function(e,t){e.preventDefault(),this.toggle()},toggle:function(){this.isActive()||this.group.openTab(this)}});new acf.Model({priority:50,actions:{prepare:"render",append:"render",unload:"onUnload",show:"render",invalid_field:"onInvalidField"},findTabs:function(){return e(".acf-tab-wrap")},getTabs:function(){return acf.getInstances(this.findTabs())},render:function(e){this.getTabs().map((function(e){e.get("initialized")||e.initializeTabs()}))},onInvalidField:function(e){this.busy||e.hiddenByTab&&(e.hiddenByTab.toggle(),this.busy=!0,this.setTimeout((function(){this.busy=!1}),100))},onUnload:function(){var e=[];this.getTabs().map((function(t){if(t.$el.children(".acf-field-settings-tab-bar").length||t.$el.parents("#acf-advanced-settings.postbox").length)return!0;var i=t.hasActive()?t.getActive().index():0;e.push(i)})),e.length&&acf.setPreference("this.tabs",e)}})}(jQuery)},2573:()=>{var e,t;e=jQuery,t=acf.Field.extend({type:"taxonomy",data:{ftype:"select"},select2:!1,wait:"load",events:{'click a[data-name="add"]':"onClickAdd",'click input[type="radio"]':"onClickRadio",removeField:"onRemove"},$control:function(){return this.$(".acf-taxonomy-field")},$input:function(){return this.getRelatedPrototype().$input.apply(this,arguments)},getRelatedType:function(){var e=this.get("ftype");return"multi_select"==e&&(e="select"),e},getRelatedPrototype:function(){return acf.getFieldType(this.getRelatedType()).prototype},getValue:function(){return this.getRelatedPrototype().getValue.apply(this,arguments)},setValue:function(){return this.getRelatedPrototype().setValue.apply(this,arguments)},initialize:function(){this.getRelatedPrototype().initialize.apply(this,arguments)},onRemove:function(){var e=this.getRelatedPrototype();e.onRemove&&e.onRemove.apply(this,arguments)},onClickAdd:function(t,i){var a=this,n=!1,s=!1,r=!1,o=!1,c=!1,l=!1,d=function(e){n.loading(!1),n.content(e),s=n.$("form"),r=n.$('input[name="term_name"]'),o=n.$('select[name="term_parent"]'),c=n.$(".acf-submit-button"),r.trigger("focus"),n.on("submit","form",u)},u=function(t,i){if(t.preventDefault(),t.stopImmediatePropagation(),""===r.val())return r.trigger("focus"),!1;acf.startButtonLoading(c);var n={action:"acf/fields/taxonomy/add_term",field_key:a.get("key"),term_name:r.val(),term_parent:o.length?o.val():0};e.ajax({url:acf.get("ajaxurl"),data:acf.prepareForAjax(n),type:"post",dataType:"json",success:f})},f=function(e){acf.stopButtonLoading(c),l&&l.remove(),acf.isAjaxSuccess(e)?(r.val(""),p(e.data),l=acf.newNotice({type:"success",text:acf.getAjaxMessage(e),target:s,timeout:2e3,dismiss:!1})):l=acf.newNotice({type:"error",text:acf.getAjaxError(e),target:s,timeout:2e3,dismiss:!1}),r.trigger("focus")},p=function(t){var i=e('");t.term_parent?o.children('option[value="'+t.term_parent+'"]').after(i):o.append(i),acf.getFields({type:"taxonomy"}).map((function(e){e.get("taxonomy")==a.get("taxonomy")&&e.appendTerm(t)})),a.selectTerm(t.term_id)};!function(){n=acf.newPopup({title:i.attr("title"),loading:!0,width:"300px"});var t={action:"acf/fields/taxonomy/add_term",field_key:a.get("key")};e.ajax({url:acf.get("ajaxurl"),data:acf.prepareForAjax(t),type:"post",dataType:"html",success:d})}()},appendTerm:function(e){"select"==this.getRelatedType()?this.appendTermSelect(e):this.appendTermCheckbox(e)},appendTermSelect:function(e){this.select2.addOption({id:e.term_id,text:e.term_label})},appendTermCheckbox:function(t){var i=this.$("[name]:first").attr("name"),a=this.$("ul:first");"checkbox"==this.getRelatedType()&&(i+="[]");var n=e(['
                • ',"","
                • "].join(""));if(t.term_parent){var s=a.find('li[data-id="'+t.term_parent+'"]');(a=s.children("ul")).exists()||(a=e('
                    '),s.append(a))}a.append(n)},selectTerm:function(e){"select"==this.getRelatedType()?this.select2.selectOption(e):this.$('input[value="'+e+'"]').prop("checked",!0).trigger("change")},onClickRadio:function(e,t){var i=t.parent("label"),a=i.hasClass("selected");this.$(".selected").removeClass("selected"),i.addClass("selected"),this.get("allow_null")&&a&&(i.removeClass("selected"),t.prop("checked",!1).trigger("change"))}}),acf.registerFieldType(t)},9047:()=>{var e,t;e=jQuery,t=acf.models.DatePickerField.extend({type:"time_picker",$control:function(){return this.$(".acf-time-picker")},initialize:function(){var e=this.$input(),t=this.$inputText(),i={timeFormat:this.get("time_format"),altField:e,altFieldTimeOnly:!1,altTimeFormat:"HH:mm:ss",showButtonPanel:!0,controlType:"select",oneLine:!0,closeText:acf.get("dateTimePickerL10n").selectText,timeOnly:!0,onClose:function(e,t,i){var a=t.dpDiv.find(".ui-datepicker-close");!e&&a.is(":hover")&&i._updateDateTime()}};i=acf.applyFilters("time_picker_args",i,this),acf.newTimePicker(t,i),acf.doAction("time_picker_init",t,i,this)}}),acf.registerFieldType(t),acf.newTimePicker=function(t,i){if(void 0===e.timepicker)return!1;i=i||{},t.timepicker(i),e("body > #ui-datepicker-div").exists()&&e("body > #ui-datepicker-div").wrap('
                    ')}},1788:()=>{var e;jQuery,e=acf.Field.extend({type:"true_false",events:{"change .acf-switch-input":"onChange","focus .acf-switch-input":"onFocus","blur .acf-switch-input":"onBlur","keypress .acf-switch-input":"onKeypress"},$input:function(){return this.$('input[type="checkbox"]')},$switch:function(){return this.$(".acf-switch")},getValue:function(){return this.$input().prop("checked")?1:0},initialize:function(){this.render()},render:function(){var e=this.$switch();if(e.length){var t=e.children(".acf-switch-on"),i=e.children(".acf-switch-off"),a=Math.max(t.width(),i.width());a&&(t.css("min-width",a),i.css("min-width",a))}},switchOn:function(){this.$input().prop("checked",!0),this.$switch().addClass("-on")},switchOff:function(){this.$input().prop("checked",!1),this.$switch().removeClass("-on")},onChange:function(e,t){t.prop("checked")?this.switchOn():this.switchOff()},onFocus:function(e,t){this.$switch().addClass("-focus")},onBlur:function(e,t){this.$switch().removeClass("-focus")},onKeypress:function(e,t){return 37===e.keyCode?this.switchOff():39===e.keyCode?this.switchOn():void 0}}),acf.registerFieldType(e)},4429:()=>{var e;jQuery,e=acf.Field.extend({type:"url",events:{'keyup input[type="url"]':"onkeyup"},$control:function(){return this.$(".acf-input-wrap")},$input:function(){return this.$('input[type="url"]')},initialize:function(){this.render()},isValid:function(){var e=this.val();return!!e&&(-1!==e.indexOf("://")||0===e.indexOf("//"))},render:function(){this.isValid()?this.$control().addClass("-valid"):this.$control().removeClass("-valid")},onkeyup:function(e,t){this.render()}}),acf.registerFieldType(e)},7790:()=>{var e;jQuery,e=acf.models.SelectField.extend({type:"user"}),acf.registerFieldType(e),acf.addFilter("select2_ajax_data",(function(e,t,i,a,n){if(!a)return e;const s=a.get("queryNonce");return s&&s.length&&(e.user_query_nonce=s),e}))},4850:()=>{var e;jQuery,e=acf.Field.extend({type:"wysiwyg",wait:"load",events:{"mousedown .acf-editor-wrap.delay":"onMousedown",unmountField:"disableEditor",remountField:"enableEditor",removeField:"disableEditor"},$control:function(){return this.$(".acf-editor-wrap")},$input:function(){return this.$("textarea")},getMode:function(){return this.$control().hasClass("tmce-active")?"visual":"text"},initialize:function(){this.$control().hasClass("delay")||this.initializeEditor()},initializeEditor:function(){var e=this.$control(),t=this.$input(),i={tinymce:!0,quicktags:!0,toolbar:this.get("toolbar"),mode:this.getMode(),field:this},a=t.attr("id"),n=acf.uniqueId("acf-editor-"),s=t.data(),r=t.val();acf.rename({target:e,search:a,replace:n,destructive:!0}),this.set("id",n,!0),this.$input().data(s).val(r),acf.tinymce.initialize(n,i)},onMousedown:function(e){e.preventDefault();var t=this.$control();t.removeClass("delay"),t.find(".acf-editor-toolbar").remove(),this.initializeEditor()},enableEditor:function(){"visual"==this.getMode()&&acf.tinymce.enable(this.get("id"))},disableEditor:function(){acf.tinymce.destroy(this.get("id"))}}),acf.registerFieldType(e)},6291:()=>{!function(e,t){var i=[];acf.Field=acf.Model.extend({type:"",eventScope:".acf-field",wait:"ready",setup:function(e){this.$el=e,this.inherit(e),this.inherit(this.$control())},val:function(e){return e!==t?this.setValue(e):this.prop("disabled")?null:this.getValue()},getValue:function(){return this.$input().val()},setValue:function(e){return acf.val(this.$input(),e)},__:function(e){return acf._e(this.type,e)},$control:function(){return!1},$input:function(){return this.$("[name]:first")},$inputWrap:function(){return this.$(".acf-input:first")},$labelWrap:function(){return this.$(".acf-label:first")},getInputName:function(){return this.$input().attr("name")||""},parent:function(){var e=this.parents();return!!e.length&&e[0]},parents:function(){var e=this.$el.parents(".acf-field");return acf.getFields(e)},show:function(e,t){var i=acf.show(this.$el,e);return i&&(this.prop("hidden",!1),acf.doAction("show_field",this,t)),i},hide:function(e,t){var i=acf.hide(this.$el,e);return i&&(this.prop("hidden",!0),acf.doAction("hide_field",this,t)),i},enable:function(e,t){var i=acf.enable(this.$el,e);return i&&(this.prop("disabled",!1),acf.doAction("enable_field",this,t)),i},disable:function(e,t){var i=acf.disable(this.$el,e);return i&&(this.prop("disabled",!0),acf.doAction("disable_field",this,t)),i},showEnable:function(e,t){return this.enable.apply(this,arguments),this.show.apply(this,arguments)},hideDisable:function(e,t){return this.disable.apply(this,arguments),this.hide.apply(this,arguments)},showNotice:function(e){"object"!=typeof e&&(e={text:e}),this.notice&&this.notice.remove(),e.target=this.$inputWrap(),this.notice=acf.newNotice(e)},removeNotice:function(e){this.notice&&(this.notice.away(e||0),this.notice=!1)},showError:function(i){this.$el.addClass("acf-error"),i!==t&&this.showNotice({text:i,type:"error",dismiss:!1}),acf.doAction("invalid_field",this),this.$el.one("focus change","input, select, textarea",e.proxy(this.removeError,this))},removeError:function(){this.$el.removeClass("acf-error"),this.removeNotice(250),acf.doAction("valid_field",this)},trigger:function(e,t,i){return"invalidField"==e&&(i=!0),acf.Model.prototype.trigger.apply(this,[e,t,i])}}),acf.newField=function(e){var t=e.data("type"),i=a(t),n=new(acf.models[i]||acf.Field)(e);return acf.doAction("new_field",n),n};var a=function(e){return acf.strPascalCase(e||"")+"Field"};acf.registerFieldType=function(e){var t=e.prototype.type,n=a(t);acf.models[n]=e,i.push(t)},acf.getFieldType=function(e){var t=a(e);return acf.models[t]||!1},acf.getFieldTypes=function(e){e=acf.parseArgs(e,{category:""});var t=[];return i.map((function(i){var a=acf.getFieldType(i),n=a.prototype;e.category&&n.category!==e.category||t.push(a)})),t}}(jQuery)},1580:()=>{!function(e,t){acf.findFields=function(t){var i=".acf-field",a=!1;return(t=acf.parseArgs(t,{key:"",name:"",type:"",is:"",parent:!1,sibling:!1,limit:!1,visible:!1,suppressFilters:!1,excludeSubFields:!1})).suppressFilters||(t=acf.applyFilters("find_fields_args",t)),t.key&&(i+='[data-key="'+t.key+'"]'),t.type&&(i+='[data-type="'+t.type+'"]'),t.name&&(i+='[data-name="'+t.name+'"]'),t.is&&(i+=t.is),t.visible&&(i+=":visible"),t.suppressFilters||(i=acf.applyFilters("find_fields_selector",i,t)),t.parent?(a=t.parent.find(i),t.excludeSubFields&&(a=a.not(t.parent.find(".acf-is-subfields .acf-field")))):a=t.sibling?t.sibling.siblings(i):e(i),t.suppressFilters||(a=a.not(".acf-clone .acf-field"),a=acf.applyFilters("find_fields",a)),t.limit&&(a=a.slice(0,t.limit)),a},acf.findField=function(e,t){return acf.findFields({key:e,limit:1,parent:t,suppressFilters:!0})},acf.getField=function(e){e instanceof jQuery||(e=acf.findField(e));var t=e.data("acf");return t||(t=acf.newField(e)),t},acf.getFields=function(t){t instanceof jQuery||(t=acf.findFields(t));var i=[];return t.each((function(){var t=acf.getField(e(this));i.push(t)})),i},acf.findClosestField=function(e){return e.closest(".acf-field")},acf.getClosestField=function(e){var t=acf.findClosestField(e);return this.getField(t)};var i=function(e){var t=e+"_field",i=e+"Field";acf.addAction(t,(function(n){var s=acf.arrayArgs(arguments),r=s.slice(1);["type","name","key"].map((function(e){var i="/"+e+"="+n.get(e);s=[t+i,n].concat(r),acf.doAction.apply(null,s)})),a.indexOf(e)>-1&&n.trigger(i,r)}))},a=["remove","unmount","remount","sortstart","sortstop","show","hide","unload","valid","invalid","enable","disable","duplicate"];["prepare","ready","load","append","remove","unmount","remount","sortstart","sortstop","show","hide","unload"].map((function(e){var t=e,a=e+"_fields",n=e+"_field";acf.addAction(t,(function(e){var t=acf.arrayArgs(arguments).slice(1),i=acf.getFields({parent:e});if(i.length){var n=[a,i].concat(t);acf.doAction.apply(null,n)}})),acf.addAction(a,(function(e){var t=acf.arrayArgs(arguments).slice(1);e.map((function(e,i){var a=[n,e].concat(t);acf.doAction.apply(null,a)}))})),i(e)})),["valid","invalid","enable","disable","new","duplicate"].map(i),new acf.Model({id:"fieldsEventManager",events:{'click .acf-field a[href="#"]':"onClick","change .acf-field":"onChange"},onClick:function(e){e.preventDefault()},onChange:function(){e("#_acf_changed").val(1)}}),new acf.Model({id:"duplicateFieldsManager",actions:{duplicate:"onDuplicate",duplicate_fields:"onDuplicateFields"},onDuplicate:function(e,t){var i=acf.getFields({parent:e});if(i.length){var a=acf.findFields({parent:t});acf.doAction("duplicate_fields",i,a)}},onDuplicateFields:function(t,i){t.map((function(t,a){acf.doAction("duplicate_field",t,e(i[a]))}))}})}(jQuery)},5938:()=>{var e;e=jQuery,new acf.Model({priority:90,actions:{new_field:"refresh",show_field:"refresh",hide_field:"refresh",remove_field:"refresh",unmount_field:"refresh",remount_field:"refresh"},refresh:function(){acf.refresh()}}),new acf.Model({priority:1,actions:{sortstart:"onSortstart",sortstop:"onSortstop"},onSortstart:function(e){acf.doAction("unmount",e)},onSortstop:function(e){acf.doAction("remount",e)}}),new acf.Model({actions:{sortstart:"onSortstart"},onSortstart:function(t,i){t.is("tr")&&(i.html('
                    '),t.addClass("acf-sortable-tr-helper"),t.children().each((function(){e(this).width(e(this).width())})),i.height(t.height()+"px"),t.removeClass("acf-sortable-tr-helper"))}}),new acf.Model({actions:{after_duplicate:"onAfterDuplicate"},onAfterDuplicate:function(t,i){var a=[];t.find("select").each((function(t){a.push(e(this).val())})),i.find("select").each((function(t){e(this).val(a[t])}))}}),new acf.Model({id:"tableHelper",priority:20,actions:{refresh:"renderTables"},renderTables:function(t){var i=this;e(".acf-table:visible").each((function(){i.renderTable(e(this))}))},renderTable:function(t){var i=t.find("> thead > tr:visible > th[data-key]"),a=t.find("> tbody > tr:visible > td[data-key]");if(!i.length||!a.length)return!1;i.each((function(t){var i=e(this),n=i.data("key"),s=a.filter('[data-key="'+n+'"]'),r=s.filter(".acf-hidden");s.removeClass("acf-empty"),s.length===r.length?acf.hide(i):(acf.show(i),r.addClass("acf-empty"))})),i.css("width","auto"),i=i.not(".acf-hidden");var n=100;i.length,i.filter("[data-width]").each((function(){var t=e(this).data("width");e(this).css("width",t+"%"),n-=t}));var s=i.not("[data-width]");if(s.length){var r=n/s.length;s.css("width",r+"%"),n=0}n>0&&i.last().css("width","auto"),a.filter(".-collapsed-target").each((function(){var t=e(this);t.parent().hasClass("-collapsed")?t.attr("colspan",i.length):t.removeAttr("colspan")}))}}),new acf.Model({id:"fieldsHelper",priority:30,actions:{refresh:"renderGroups"},renderGroups:function(){var t=this;e(".acf-fields:visible").each((function(){t.renderGroup(e(this))}))},renderGroup:function(t){var i=0,a=0,n=e(),s=t.children(".acf-field[data-width]:visible");return!!s.length&&(t.hasClass("-left")?(s.removeAttr("data-width"),s.css("width","auto"),!1):(s.removeClass("-r0 -c0").css({"min-height":0}),s.each((function(t){var s=e(this),r=s.position(),o=Math.ceil(r.top),c=Math.ceil(r.left);n.length&&o>i&&(n.css({"min-height":a+"px"}),r=s.position(),o=Math.ceil(r.top),c=Math.ceil(r.left),i=0,a=0,n=e()),acf.get("rtl")&&(c=Math.ceil(s.parent().width()-(r.left+s.outerWidth()))),0==o?s.addClass("-r0"):0==c&&s.addClass("-c0");var l=Math.ceil(s.outerHeight())+1;a=Math.max(a,l),i=Math.max(i,o),n=n.add(s)})),void(n.length&&n.css({"min-height":a+"px"}))))}}),new acf.Model({id:"bodyClassShiftHelper",events:{keydown:"onKeyDown",keyup:"onKeyUp"},isShiftKey:function(e){return 16===e.keyCode},onKeyDown:function(t){this.isShiftKey(t)&&e("body").addClass("acf-keydown-shift")},onKeyUp:function(t){this.isShiftKey(t)&&e("body").removeClass("acf-keydown-shift")}})},3812:()=>{!function(e,t){acf.newMediaPopup=function(e){var t=null;return e=acf.parseArgs(e,{mode:"select",title:"",button:"",type:"",field:!1,allowedTypes:"",library:"all",multiple:!1,attachment:0,autoOpen:!0,open:function(){},select:function(){},close:function(){}}),t="edit"==e.mode?new acf.models.EditMediaPopup(e):new acf.models.SelectMediaPopup(e),e.autoOpen&&setTimeout((function(){t.open()}),1),acf.doAction("new_media_popup",t),t};var i=function(){var e=acf.get("post_id");return acf.isNumeric(e)?e:0};acf.getMimeTypes=function(){return this.get("mimeTypes")},acf.getMimeType=function(e){var t=acf.getMimeTypes();if(void 0!==t[e])return t[e];for(var i in t)if(-1!==i.indexOf(e))return t[i];return!1};var a=acf.Model.extend({id:"MediaPopup",data:{},defaults:{},frame:!1,setup:function(t){e.extend(this.data,t)},initialize:function(){var e=this.getFrameOptions();this.addFrameStates(e);var t=wp.media(e);t.acf=this,this.addFrameEvents(t,e),this.frame=t},open:function(){this.frame.open()},close:function(){this.frame.close()},remove:function(){this.frame.detach(),this.frame.remove()},getFrameOptions:function(){var e={title:this.get("title"),multiple:this.get("multiple"),library:{},states:[]};return this.get("type")&&(e.library.type=this.get("type")),"uploadedTo"===this.get("library")&&(e.library.uploadedTo=i()),this.get("attachment")&&(e.library.post__in=[this.get("attachment")]),this.get("button")&&(e.button={text:this.get("button")}),e},addFrameStates:function(e){var t=wp.media.query(e.library);this.get("field")&&acf.isset(t,"mirroring","args")&&(t.mirroring.args._acfuploader=this.get("field")),e.states.push(new wp.media.controller.Library({library:t,multiple:this.get("multiple"),title:this.get("title"),priority:20,filterable:"all",editable:!0,allowLocalEdits:!0})),acf.isset(wp,"media","controller","EditImage")&&e.states.push(new wp.media.controller.EditImage)},addFrameEvents:function(e,t){e.on("open",(function(){this.$el.closest(".media-modal").addClass("acf-media-modal -"+this.acf.get("mode"))}),e),e.on("content:render:edit-image",(function(){var e=this.state().get("image"),t=new wp.media.view.EditImage({model:e,controller:this}).render();this.content.set(t),t.loadEditor()}),e),e.on("select",(function(){var t=e.state().get("selection");t&&t.each((function(t,i){e.acf.get("select").apply(e.acf,[t,i])}))})),e.on("close",(function(){setTimeout((function(){e.acf.get("close").apply(e.acf),e.acf.remove()}),1)}))}});acf.models.SelectMediaPopup=a.extend({id:"SelectMediaPopup",setup:function(e){e.button||(e.button=acf._x("Select","verb")),a.prototype.setup.apply(this,arguments)},addFrameEvents:function(e,t){acf.isset(_wpPluploadSettings,"defaults","multipart_params")&&(_wpPluploadSettings.defaults.multipart_params._acfuploader=this.get("field"),e.on("open",(function(){delete _wpPluploadSettings.defaults.multipart_params._acfuploader}))),e.on("content:activate:browse",(function(){var t=!1;try{t=e.content.get().toolbar}catch(e){return void console.log(e)}e.acf.customizeFilters.apply(e.acf,[t])})),a.prototype.addFrameEvents.apply(this,arguments)},customizeFilters:function(t){var i=t.get("filters");if("image"==this.get("type")&&(i.filters.all.text=acf.__("All images"),delete i.filters.audio,delete i.filters.video,delete i.filters.image,e.each(i.filters,(function(e,t){t.props.type=t.props.type||"image"}))),this.get("allowedTypes")&&this.get("allowedTypes").split(" ").join("").split(".").join("").split(",").map((function(e){var t=acf.getMimeType(e);if(t){var a={text:t,props:{status:null,type:t,uploadedTo:null,orderby:"date",order:"DESC"},priority:20};i.filters[t]=a}})),"uploadedTo"===this.get("library")){var a=this.frame.options.library.uploadedTo;delete i.filters.unattached,delete i.filters.uploaded,e.each(i.filters,(function(e,t){t.text+=" ("+acf.__("Uploaded to this post")+")",t.props.uploadedTo=a}))}var n=this.get("field");e.each(i.filters,(function(e,t){t.props._acfuploader=n})),t.get("search").model.attributes._acfuploader=n,i.renderFilters&&i.renderFilters()}}),acf.models.EditMediaPopup=a.extend({id:"SelectMediaPopup",setup:function(e){e.button||(e.button=acf._x("Update","verb")),a.prototype.setup.apply(this,arguments)},addFrameEvents:function(e,t){e.on("open",(function(){this.$el.closest(".media-modal").addClass("acf-expanded"),"browse"!=this.content.mode()&&this.content.mode("browse");var t=this.state().get("selection"),i=wp.media.attachment(e.acf.get("attachment"));t.add(i)}),e),a.prototype.addFrameEvents.apply(this,arguments)}}),new acf.Model({id:"customizePrototypes",wait:"ready",initialize:function(){if(acf.isset(window,"wp","media","view")){var e=i();e&&acf.isset(wp,"media","view","settings","post")&&(wp.media.view.settings.post.id=e),this.customizeAttachmentsButton(),this.customizeAttachmentsRouter(),this.customizeAttachmentFilters(),this.customizeAttachmentCompat(),this.customizeAttachmentLibrary()}},customizeAttachmentsButton:function(){if(acf.isset(wp,"media","view","Button")){var e=wp.media.view.Button;wp.media.view.Button=e.extend({initialize:function(){var e=_.defaults(this.options,this.defaults);this.model=new Backbone.Model(e),this.listenTo(this.model,"change",this.render)}})}},customizeAttachmentsRouter:function(){if(acf.isset(wp,"media","view","Router")){var t=wp.media.view.Router;wp.media.view.Router=t.extend({addExpand:function(){var t=e(['',''+acf.__("Expand Details")+"",''+acf.__("Collapse Details")+"",""].join(""));t.on("click",(function(t){t.preventDefault();var i=e(this).closest(".media-modal");i.hasClass("acf-expanded")?i.removeClass("acf-expanded"):i.addClass("acf-expanded")})),this.$el.append(t)},initialize:function(){return t.prototype.initialize.apply(this,arguments),this.addExpand(),this}})}},customizeAttachmentFilters:function(){acf.isset(wp,"media","view","AttachmentFilters","All")&&(wp.media.view.AttachmentFilters.All.prototype.renderFilters=function(){this.$el.html(_.chain(this.filters).map((function(t,i){return{el:e("").val(i).html(t.text)[0],priority:t.priority||50}}),this).sortBy("priority").pluck("el").value())})},customizeAttachmentCompat:function(){if(acf.isset(wp,"media","view","AttachmentCompat")){var t=wp.media.view.AttachmentCompat,i=!1;wp.media.view.AttachmentCompat=t.extend({render:function(){return this.rendered?this:(t.prototype.render.apply(this,arguments),this.$("#acf-form-data").length?(clearTimeout(i),i=setTimeout(e.proxy((function(){this.rendered=!0,acf.doAction("append",this.$el)}),this),50),this):this)},save:function(e){var t;e&&e.preventDefault(),t=acf.serializeForAjax(this.$el),this.controller.trigger("attachment:compat:waiting",["waiting"]),this.model.saveCompat(t).always(_.bind(this.postSave,this))}})}},customizeAttachmentLibrary:function(){if(acf.isset(wp,"media","view","Attachment","Library")){var e=wp.media.view.Attachment.Library;wp.media.view.Attachment.Library=e.extend({render:function(){var t=acf.isget(this,"controller","acf"),i=acf.isget(this,"model","attributes");if(t&&i){i.acf_errors&&this.$el.addClass("acf-disabled");var a=t.get("selected");a&&a.indexOf(i.id)>-1&&this.$el.addClass("acf-selected")}return e.prototype.render.apply(this,arguments)},toggleSelection:function(t){this.collection;var i=this.options.selection,a=this.model,n=(i.single(),this.controller),s=acf.isget(this,"model","attributes","acf_errors"),r=n.$el.find(".media-frame-content .media-sidebar");if(r.children(".acf-selection-error").remove(),r.children().removeClass("acf-hidden"),n&&s){var o=acf.isget(this,"model","attributes","filename");return r.children().addClass("acf-hidden"),r.prepend(['
                    ',''+acf.__("Restricted")+"",''+o+"",''+s+"","
                    "].join("")),i.reset(),void i.single(a)}return e.prototype.toggleSelection.apply(this,arguments)}})}}})}(jQuery)},1128:()=>{var e;e=jQuery,new acf.Model({wait:"prepare",priority:1,initialize:function(){(acf.get("postboxes")||[]).map(acf.newPostbox)}}),acf.getPostbox=function(t){return"string"==typeof arguments[0]&&(t=e("#"+arguments[0])),acf.getInstance(t)},acf.getPostboxes=function(){return acf.getInstances(e(".acf-postbox"))},acf.newPostbox=function(e){return new acf.models.Postbox(e)},acf.models.Postbox=acf.Model.extend({data:{id:"",key:"",style:"default",label:"top",edit:""},setup:function(t){t.editLink&&(t.edit=t.editLink),e.extend(this.data,t),this.$el=this.$postbox()},$postbox:function(){return e("#"+this.get("id"))},$hide:function(){return e("#"+this.get("id")+"-hide")},$hideLabel:function(){return this.$hide().parent()},$hndle:function(){return this.$("> .hndle")},$handleActions:function(){return this.$("> .postbox-header .handle-actions")},$inside:function(){return this.$("> .inside")},isVisible:function(){return this.$el.hasClass("acf-hidden")},isHiddenByScreenOptions:function(){return this.$el.hasClass("hide-if-js")||"none"==this.$el.css("display")},initialize:function(){if(this.$el.addClass("acf-postbox"),"block"!==acf.get("editor")){var e=this.get("style");"default"!==e&&this.$el.addClass(e)}this.$inside().addClass("acf-fields").addClass("-"+this.get("label"));var t=this.get("edit");if(t){var i='',a=this.$handleActions();a.length?a.prepend(i):this.$hndle().append(i)}this.show()},show:function(){this.$el.hasClass("hide-if-js")?this.$hide().prop("checked",!1):(this.$hideLabel().show(),this.$hide().prop("checked",!0),this.$el.show().removeClass("acf-hidden"),acf.doAction("show_postbox",this))},enable:function(){acf.enable(this.$el,"postbox")},showEnable:function(){this.enable(),this.show()},hide:function(){this.$hideLabel().hide(),this.$el.hide().addClass("acf-hidden"),acf.doAction("hide_postbox",this)},disable:function(){acf.disable(this.$el,"postbox")},hideDisable:function(){this.disable(),this.hide()},html:function(e){this.$inside().html(e),acf.doAction("append",this.$el)}})},7240:()=>{var e;e=jQuery,acf.screen=new acf.Model({active:!0,xhr:!1,timeout:!1,wait:"load",events:{"change #page_template":"onChange","change #parent_id":"onChange","change #post-formats-select":"onChange","change .categorychecklist":"onChange","change .tagsdiv":"onChange",'change .acf-taxonomy-field[data-save="1"]':"onChange","change #product-type":"onChange"},isPost:function(){return"post"===acf.get("screen")},isUser:function(){return"user"===acf.get("screen")},isTaxonomy:function(){return"taxonomy"===acf.get("screen")},isAttachment:function(){return"attachment"===acf.get("screen")},isNavMenu:function(){return"nav_menu"===acf.get("screen")},isWidget:function(){return"widget"===acf.get("screen")},isComment:function(){return"comment"===acf.get("screen")},getPageTemplate:function(){var t=e("#page_template");return t.length?t.val():null},getPageParent:function(t,i){return(i=e("#parent_id")).length?i.val():null},getPageType:function(e,t){return this.getPageParent()?"child":"parent"},getPostType:function(){return e("#post_type").val()},getPostFormat:function(t,i){if((i=e("#post-formats-select input:checked")).length){var a=i.val();return"0"==a?"standard":a}return null},getPostCoreTerms:function(){var t={},i=acf.serialize(e(".categorydiv, .tagsdiv"));for(var a in i.tax_input&&(t=i.tax_input),i.post_category&&(t.category=i.post_category),t)acf.isArray(t[a])||(t[a]=t[a].split(/,[\s]?/));return t},getPostTerms:function(){var e=this.getPostCoreTerms();for(var t in acf.getFields({type:"taxonomy"}).map((function(t){if(t.get("save")){var i=t.val(),a=t.get("taxonomy");i&&(e[a]=e[a]||[],i=acf.isArray(i)?i:[i],e[a]=e[a].concat(i))}})),null!==(productType=this.getProductType())&&(e.product_type=[productType]),e)e[t]=acf.uniqueArray(e[t]);return e},getProductType:function(){var t=e("#product-type");return t.length?t.val():null},check:function(){if("post"===acf.get("screen")){this.xhr&&this.xhr.abort();var t=acf.parseArgs(this.data,{action:"acf/ajax/check_screen",screen:acf.get("screen"),exists:[]});this.isPost()&&(t.post_id=acf.get("post_id")),null!==(postType=this.getPostType())&&(t.post_type=postType),null!==(pageTemplate=this.getPageTemplate())&&(t.page_template=pageTemplate),null!==(pageParent=this.getPageParent())&&(t.page_parent=pageParent),null!==(pageType=this.getPageType())&&(t.page_type=pageType),null!==(postFormat=this.getPostFormat())&&(t.post_format=postFormat),null!==(postTerms=this.getPostTerms())&&(t.post_terms=postTerms),acf.getPostboxes().map((function(e){t.exists.push(e.get("key"))})),t=acf.applyFilters("check_screen_args",t),this.xhr=e.ajax({url:acf.get("ajaxurl"),data:acf.prepareForAjax(t),type:"post",dataType:"json",context:this,success:function(e){"post"==acf.get("screen")?this.renderPostScreen(e):"user"==acf.get("screen")&&this.renderUserScreen(e),acf.doAction("check_screen_complete",e,t)}})}},onChange:function(e,t){this.setTimeout(this.check,1)},renderPostScreen:function(t){var i=function(t,i){var a=e._data(t[0]).events;for(var n in a)for(var s=0;s=0;n--)if(e("#"+i[n]).length)return e("#"+i[n]).after(e("#"+t));for(n=a+1;n=5.5)var o=['
                    ','

                    ',""+acf.escHtml(n.title)+"","

                    ",'
                    ','","
                    ","
                    "].join("");else o=['",'

                    ',""+acf.escHtml(n.title)+"","

                    "].join("");n.classes||(n.classes="");var c=e(['
                    ',o,'
                    ',n.html,"
                    ","
                    "].join(""));if(e("#adv-settings").length){var l=e("#adv-settings .metabox-prefs"),d=e(['"].join(""));i(l.find("input").first(),d.find("input")),l.append(d)}e(".postbox").length&&(i(e(".postbox .handlediv").first(),c.children(".handlediv")),i(e(".postbox .hndle").first(),c.children(".hndle"))),"side"===n.position?e("#"+n.position+"-sortables").append(c):e("#"+n.position+"-sortables").prepend(c);var u=[];if(t.results.map((function(t){n.position===t.position&&e("#"+n.position+"-sortables #"+t.id).length&&u.push(t.id)})),a(n.id,u),t.sorted)for(var f in t.sorted){let e=t.sorted[f];if("string"==typeof e&&(e=e.split(","),a(n.id,e)))break}r=acf.newPostbox(n),acf.doAction("append",c),acf.doAction("append_postbox",r)}return r.showEnable(),t.visible.push(n.id),n})),acf.getPostboxes().map((function(e){-1===t.visible.indexOf(e.get("id"))&&(e.hideDisable(),t.hidden.push(e.get("id")))})),e("#acf-style").html(t.style),acf.doAction("refresh_post_screen",t)},renderUserScreen:function(e){}}),new acf.Model({postEdits:{},wait:"prepare",initialize:function(){acf.isGutenbergPostEditor()&&(wp.data.subscribe(acf.debounce(this.onChange).bind(this)),acf.screen.getPageTemplate=this.getPageTemplate,acf.screen.getPageParent=this.getPageParent,acf.screen.getPostType=this.getPostType,acf.screen.getPostFormat=this.getPostFormat,acf.screen.getPostCoreTerms=this.getPostCoreTerms,acf.unload.disable(),parseFloat(acf.get("wp_version"))>=5.3&&this.addAction("refresh_post_screen",this.onRefreshPostScreen),wp.domReady(acf.refresh))},onChange:function(){var e=["template","parent","format"];(wp.data.select("core").getTaxonomies()||[]).map((function(t){e.push(t.rest_base)}));var t=wp.data.select("core/editor").getPostEdits(),i={};e.map((function(e){void 0!==t[e]&&(i[e]=t[e])})),JSON.stringify(i)!==JSON.stringify(this.postEdits)&&(this.postEdits=i,acf.screen.check())},getPageTemplate:function(){return wp.data.select("core/editor").getEditedPostAttribute("template")},getPageParent:function(e,t){return wp.data.select("core/editor").getEditedPostAttribute("parent")},getPostType:function(){return wp.data.select("core/editor").getEditedPostAttribute("type")},getPostFormat:function(e,t){return wp.data.select("core/editor").getEditedPostAttribute("format")},getPostCoreTerms:function(){var e={};return(wp.data.select("core").getTaxonomies()||[]).map((function(t){var i=wp.data.select("core/editor").getEditedPostAttribute(t.rest_base);i&&(e[t.slug]=i)})),e},onRefreshPostScreen:function(e){var t=wp.data.select("core/edit-post"),i=wp.data.dispatch("core/edit-post"),a={};t.getActiveMetaBoxLocations().map((function(e){a[e]=t.getMetaBoxesPerLocation(e)}));var n=[];for(var s in a)a[s].map((function(e){n.push(e.id)}));for(var s in e.results.filter((function(e){return-1===n.indexOf(e.id)})).map((function(e,t){var i=e.position;a[i]=a[i]||[],a[i].push({id:e.id,title:e.title})})),a)a[s]=a[s].filter((function(t){return-1===e.hidden.indexOf(t.id)}));i.setAvailableMetaBoxesPerLocation(a)}})},5796:()=>{!function(e,t){function i(){return acf.isset(window,"jQuery","fn","select2","amd")?4:!!acf.isset(window,"Select2")&&3}acf.newSelect2=function(e,t){if(t=acf.parseArgs(t,{allowNull:!1,placeholder:"",multiple:!1,field:!1,ajax:!1,ajaxAction:"",ajaxData:function(e){return e},ajaxResults:function(e){return e},templateSelection:!1,templateResult:!1,dropdownCssClass:"",suppressFilters:!1}),4==i())var a=new n(e,t);else a=new s(e,t);return acf.doAction("new_select2",a),a};var a=acf.Model.extend({setup:function(t,i){e.extend(this.data,i),this.$el=t},initialize:function(){},selectOption:function(e){var t=this.getOption(e);t.prop("selected")||t.prop("selected",!0).trigger("change")},unselectOption:function(e){var t=this.getOption(e);t.prop("selected")&&t.prop("selected",!1).trigger("change")},getOption:function(e){return this.$('option[value="'+e+'"]')},addOption:function(t){t=acf.parseArgs(t,{id:"",text:"",selected:!1});var i=this.getOption(t.id);return i.length||((i=e("")).html(t.text),i.attr("value",t.id),i.prop("selected",t.selected),this.$el.append(i)),i},getValue:function(){var t=[],i=this.$el.find("option:selected");return i.exists()?((i=i.sort((function(e,t){return+e.getAttribute("data-i")-+t.getAttribute("data-i")}))).each((function(){var i=e(this);t.push({$el:i,id:i.attr("value"),text:i.text()})})),t):t},mergeOptions:function(){},getChoices:function(){var t=function(i){var a=[];return i.children().each((function(){var i=e(this);i.is("optgroup")?a.push({text:i.attr("label"),children:t(i)}):a.push({id:i.attr("value"),text:i.text()})})),a};return t(this.$el)},getAjaxData:function(e){var t={action:this.get("ajaxAction"),s:e.term||"",paged:e.page||1},i=this.get("field");i&&(t.field_key=i.get("key"));var a=this.get("ajaxData");return a&&(t=a.apply(this,[t,e])),t=acf.applyFilters("select2_ajax_data",t,this.data,this.$el,i||!1,this),acf.prepareForAjax(t)},getAjaxResults:function(e,t){e=acf.parseArgs(e,{results:!1,more:!1});var i=this.get("ajaxResults");return i&&(e=i.apply(this,[e,t])),acf.applyFilters("select2_ajax_results",e,t,this)},processAjaxResults:function(t,i){return(t=this.getAjaxResults(t,i)).more&&(t.pagination={more:!0}),setTimeout(e.proxy(this.mergeOptions,this),1),t},destroy:function(){this.$el.data("select2")&&this.$el.select2("destroy"),this.$el.siblings(".select2-container").remove()}}),n=a.extend({initialize:function(){var i=this.$el,a={width:"100%",allowClear:this.get("allowNull"),placeholder:this.get("placeholder"),multiple:this.get("multiple"),templateSelection:this.get("templateSelection"),templateResult:this.get("templateResult"),dropdownCssClass:this.get("dropdownCssClass"),suppressFilters:this.get("suppressFilters"),data:[],escapeMarkup:function(e){return"string"!=typeof e?e:acf.escHtml(e)}};a.templateSelection||delete a.templateSelection,a.templateResult||delete a.templateResult,a.dropdownCssClass||delete a.dropdownCssClass,acf.isset(window,"jQuery","fn","selectWoo")?(delete a.templateSelection,delete a.templateResult):a.templateSelection||(a.templateSelection=function(t){var i=e('');return i.html(acf.escHtml(t.text)),i.data("element",t.element),i}),a.multiple&&this.getValue().map((function(e){e.$el.detach().appendTo(i)}));var n=i.attr("data-ajax");if(n!==t&&(i.removeData("ajax"),i.removeAttr("data-ajax")),this.get("ajax")&&(a.ajax={url:acf.get("ajaxurl"),delay:250,dataType:"json",type:"post",cache:!1,data:e.proxy(this.getAjaxData,this),processResults:e.proxy(this.processAjaxResults,this)}),!a.suppressFilters){var s=this.get("field");a=acf.applyFilters("select2_args",a,i,this.data,s||!1,this)}i.select2(a);var r=i.next(".select2-container");if(a.multiple){var o=r.find("ul");o.sortable({stop:function(t){o.find(".select2-selection__choice").each((function(){if(e(this).data("data"))var t=e(e(this).data("data").element);else t=e(e(this).find("span.acf-selection").data("element"));t.detach().appendTo(i)})),i.trigger("change")}}),i.on("select2:select",this.proxy((function(e){this.getOption(e.params.data.id).detach().appendTo(this.$el)})))}i.on("select2:open",(()=>{e(".select2-container--open .select2-search__field").get(-1).focus()})),r.addClass("-acf"),n!==t&&i.attr("data-ajax",n),a.suppressFilters||acf.doAction("select2_init",i,a,this.data,s||!1,this)},mergeOptions:function(){var t=!1,i=!1;e('.select2-results__option[role="group"]').each((function(){var a=e(this).children("ul"),n=e(this).children("strong");if(i&&i.text()===n.text())return t.append(a.children()),void e(this).remove();t=a,i=n}))}}),s=a.extend({initialize:function(){var t=this.$el,i=this.getValue(),a=this.get("multiple"),n={width:"100%",allowClear:this.get("allowNull"),placeholder:this.get("placeholder"),separator:"||",multiple:this.get("multiple"),data:this.getChoices(),escapeMarkup:function(e){return acf.escHtml(e)},dropdownCss:{"z-index":"999999999"},initSelection:function(e,t){t(a?i:i.shift())}},s=t.siblings("input");s.length||(s=e(''),t.before(s)),inputValue=i.map((function(e){return e.id})).join("||"),s.val(inputValue),n.multiple&&i.map((function(e){e.$el.detach().appendTo(t)})),n.allowClear&&(n.data=n.data.filter((function(e){return""!==e.id}))),t.removeData("ajax"),t.removeAttr("data-ajax"),this.get("ajax")&&(n.ajax={url:acf.get("ajaxurl"),quietMillis:250,dataType:"json",type:"post",cache:!1,data:e.proxy(this.getAjaxData,this),results:e.proxy(this.processAjaxResults,this)});var r=this.get("field");n=acf.applyFilters("select2_args",n,t,this.data,r||!1,this),s.select2(n);var o=s.select2("container"),c=e.proxy(this.getOption,this);if(n.multiple){var l=o.find("ul");l.sortable({stop:function(){l.find(".select2-search-choice").each((function(){var i=e(this).data("select2Data");c(i.id).detach().appendTo(t)})),t.trigger("change")}})}s.on("select2-selecting",(function(i){var a=i.choice,n=c(a.id);n.length||(n=e('")),n.detach().appendTo(t)})),o.addClass("-acf"),acf.doAction("select2_init",t,n,this.data,r||!1,this),s.on("change",(function(){var e=s.val();e.indexOf("||")&&(e=e.split("||")),t.val(e).trigger("change")})),t.hide()},mergeOptions:function(){var t=!1;e("#select2-drop .select2-result-with-children").each((function(){var i=e(this).children("ul"),a=e(this).children(".select2-result-label");if(t&&t.text()===a.text())return t.append(i.children()),void e(this).remove();t=a}))},getAjaxData:function(e,t){var i={term:e,page:t},n=this.get("field");return i=acf.applyFilters("select2_ajax_data",i,this.data,this.$el,n||!1,this),a.prototype.getAjaxData.apply(this,[i])}});new acf.Model({priority:5,wait:"prepare",actions:{duplicate:"onDuplicate"},initialize:function(){var e=acf.get("locale"),t=(acf.get("rtl"),acf.get("select2L10n")),a=i();return!!t&&0!==e.indexOf("en")&&void(4==a?this.addTranslations4():3==a&&this.addTranslations3())},addTranslations4:function(){var e=acf.get("select2L10n"),t=acf.get("locale");t=t.replace("_","-");var i={errorLoading:function(){return e.load_fail},inputTooLong:function(t){var i=t.input.length-t.maximum;return i>1?e.input_too_long_n.replace("%d",i):e.input_too_long_1},inputTooShort:function(t){var i=t.minimum-t.input.length;return i>1?e.input_too_short_n.replace("%d",i):e.input_too_short_1},loadingMore:function(){return e.load_more},maximumSelected:function(t){var i=t.maximum;return i>1?e.selection_too_long_n.replace("%d",i):e.selection_too_long_1},noResults:function(){return e.matches_0},searching:function(){return e.searching}};jQuery.fn.select2.amd.define("select2/i18n/"+t,[],(function(){return i}))},addTranslations3:function(){var t=acf.get("select2L10n"),i=acf.get("locale");i=i.replace("_","-");var a={formatMatches:function(e){return e>1?t.matches_n.replace("%d",e):t.matches_1},formatNoMatches:function(){return t.matches_0},formatAjaxError:function(){return t.load_fail},formatInputTooShort:function(e,i){var a=i-e.length;return a>1?t.input_too_short_n.replace("%d",a):t.input_too_short_1},formatInputTooLong:function(e,i){var a=e.length-i;return a>1?t.input_too_long_n.replace("%d",a):t.input_too_long_1},formatSelectionTooBig:function(e){return e>1?t.selection_too_long_n.replace("%d",e):t.selection_too_long_1},formatLoadMore:function(){return t.load_more},formatSearching:function(){return t.searching}};e.fn.select2.locales=e.fn.select2.locales||{},e.fn.select2.locales[i]=a,e.extend(e.fn.select2.defaults,a)},onDuplicate:function(e,t){t.find(".select2-container").remove()}})}(jQuery)},8061:()=>{var e;e=jQuery,acf.tinymce={defaults:function(){return"undefined"!=typeof tinyMCEPreInit&&{tinymce:tinyMCEPreInit.mceInit.acf_content,quicktags:tinyMCEPreInit.qtInit.acf_content}},initialize:function(e,t){(t=acf.parseArgs(t,{tinymce:!0,quicktags:!0,toolbar:"full",mode:"visual",field:!1})).tinymce&&this.initializeTinymce(e,t),t.quicktags&&this.initializeQuicktags(e,t)},initializeTinymce:function(t,i){var a=e("#"+t),n=this.defaults(),s=acf.get("toolbars"),r=i.field||!1;if(r.$el,"undefined"==typeof tinymce)return!1;if(!n)return!1;if(tinymce.get(t))return this.enable(t);var o=e.extend({},n.tinymce,i.tinymce);o.id=t,o.selector="#"+t;var c=i.toolbar;if(c&&s&&s[c])for(var l=1;l<=4;l++)o["toolbar"+l]=s[c][l]||"";if(o.setup=function(e){e.on("change",(function(t){e.save(),a.trigger("change")})),e.on("mouseup",(function(e){var t=new MouseEvent("mouseup");window.dispatchEvent(t)}))},o.wp_autoresize_on=!1,o.tadv_noautop||(o.wpautop=!0),o=acf.applyFilters("wysiwyg_tinymce_settings",o,t,r),tinyMCEPreInit.mceInit[t]=o,"visual"==i.mode){tinymce.init(o);var d=tinymce.get(t);if(!d)return!1;d.acf=i.field,acf.doAction("wysiwyg_tinymce_init",d,d.id,o,r)}},initializeQuicktags:function(t,i){var a=this.defaults();if("undefined"==typeof quicktags)return!1;if(!a)return!1;var n=e.extend({},a.quicktags,i.quicktags);n.id=t;var s=i.field||!1;s.$el,n=acf.applyFilters("wysiwyg_quicktags_settings",n,n.id,s),tinyMCEPreInit.qtInit[t]=n;var r=quicktags(n);if(!r)return!1;this.buildQuicktags(r),acf.doAction("wysiwyg_quicktags_init",r,r.id,n,s)},buildQuicktags:function(e){var t,i,a,n,s,r,o,c;for(r in e.canvas,t=e.name,i=e.settings,n="",a={},o="",c=e.id,i.buttons&&(o=","+i.buttons+","),edButtons)edButtons[r]&&(s=edButtons[r].id,o&&-1!==",strong,em,link,block,del,ins,img,ul,ol,li,code,more,close,".indexOf(","+s+",")&&-1===o.indexOf(","+s+",")||edButtons[r].instance&&edButtons[r].instance!==c||(a[s]=edButtons[r],edButtons[r].html&&(n+=edButtons[r].html(t+"_"))));o&&-1!==o.indexOf(",dfw,")&&(a.dfw=new QTags.DFWButton,n+=a.dfw.html(t+"_")),"rtl"===document.getElementsByTagName("html")[0].dir&&(a.textdirection=new QTags.TextDirectionButton,n+=a.textdirection.html(t+"_")),e.toolbar.innerHTML=n,e.theButtons=a,"undefined"!=typeof jQuery&&jQuery(document).triggerHandler("quicktags-init",[e])},disable:function(e){this.destroyTinymce(e)},remove:function(e){this.destroyTinymce(e)},destroy:function(e){this.destroyTinymce(e)},destroyTinymce:function(e){if("undefined"==typeof tinymce)return!1;var t=tinymce.get(e);return!!t&&(t.save(),t.destroy(),!0)},enable:function(e){this.enableTinymce(e)},enableTinymce:function(t){return"undefined"!=typeof switchEditors&&void 0!==tinyMCEPreInit.mceInit[t]&&(e("#"+t).show(),switchEditors.go(t,"tmce"),!0)}},new acf.Model({priority:5,actions:{prepare:"onPrepare",ready:"onReady"},onPrepare:function(){var t=e("#acf-hidden-wp-editor");t.exists()&&t.appendTo("body")},onReady:function(){acf.isset(window,"wp","oldEditor")&&(wp.editor.autop=wp.oldEditor.autop,wp.editor.removep=wp.oldEditor.removep),acf.isset(window,"tinymce","on")&&tinymce.on("AddEditor",(function(e){var t=e.editor;"acf"===t.id.substr(0,3)&&(t=tinymce.editors.content||t,tinymce.activeEditor=t,wpActiveEditor=t.id)}))}})},1417:()=>{var e;e=jQuery,acf.unload=new acf.Model({wait:"load",active:!0,changed:!1,actions:{validation_failure:"startListening",validation_success:"stopListening"},events:{"change form .acf-field":"startListening","submit form":"stopListening"},enable:function(){this.active=!0},disable:function(){this.active=!1},reset:function(){this.stopListening()},startListening:function(){!this.changed&&this.active&&(this.changed=!0,e(window).on("beforeunload",this.onUnload))},stopListening:function(){this.changed=!1,e(window).off("beforeunload",this.onUnload)},onUnload:function(){return acf.__("The changes you made will be lost if you navigate away from this page")}})},6148:()=>{!function(e,t){var i=acf.Model.extend({id:"Validator",data:{errors:[],notice:null,status:""},events:{"changed:status":"onChangeStatus"},addErrors:function(e){e.map(this.addError,this)},addError:function(e){this.data.errors.push(e)},hasErrors:function(){return this.data.errors.length},clearErrors:function(){return this.data.errors=[]},getErrors:function(){return this.data.errors},getFieldErrors:function(){var e=[],t=[];return this.getErrors().map((function(i){if(i.input){var a=t.indexOf(i.input);a>-1?e[a]=i:(e.push(i),t.push(i.input))}})),e},getGlobalErrors:function(){return this.getErrors().filter((function(e){return!e.input}))},showErrors:function(){if(this.hasErrors()){var t=this.getFieldErrors(),i=this.getGlobalErrors(),a=0,n=!1;t.map((function(e){var t=this.$('[name="'+e.input+'"]').first();if(t.length||(t=this.$('[name^="'+e.input+'"]').first()),t.length){a++;var i=acf.getClosestField(t);r(i.$el),i.showError(e.message),n||(n=i.$el)}}),this);var s=acf.__("Validation failed");if(i.map((function(e){s+=". "+e.message})),1==a?s+=". "+acf.__("1 field requires attention"):a>1&&(s+=". "+acf.__("%d fields require attention").replace("%d",a)),this.has("notice"))this.get("notice").update({type:"error",text:s});else{var o=acf.newNotice({type:"error",text:s,target:this.$el});this.set("notice",o)}this.$el.parents(".acf-popup-box").length||(n||(n=this.get("notice").$el),setTimeout((function(){e("html, body").animate({scrollTop:n.offset().top-e(window).height()/2},500)}),10))}},onChangeStatus:function(e,t,i,a){this.$el.removeClass("is-"+a).addClass("is-"+i)},validate:function(t){if(t=acf.parseArgs(t,{event:!1,reset:!1,loading:function(){},complete:function(){},failure:function(){},success:function(e){e.submit()}}),"valid"==this.get("status"))return!0;if("validating"==this.get("status"))return!1;if(!this.$(".acf-field").length)return!0;if(t.event){var i=e.Event(null,t.event);t.success=function(){acf.enableSubmit(e(i.target)).trigger(i)}}acf.doAction("validation_begin",this.$el),acf.lockForm(this.$el),t.loading(this.$el,this),this.set("status","validating");var a=acf.serialize(this.$el);return a.action="acf/validate_save_post",e.ajax({url:acf.get("ajaxurl"),data:acf.prepareForAjax(a),type:"post",dataType:"json",context:this,success:function(e){if(acf.isAjaxSuccess(e)){var t=acf.applyFilters("validation_complete",e.data,this.$el,this);t.valid||this.addErrors(t.errors)}},complete:function(){acf.unlockForm(this.$el),this.hasErrors()?(this.set("status","invalid"),acf.doAction("validation_failure",this.$el,this),this.showErrors(),t.failure(this.$el,this)):(this.set("status","valid"),this.has("notice")&&this.get("notice").update({type:"success",text:acf.__("Validation successful"),timeout:1e3}),acf.doAction("validation_success",this.$el,this),acf.doAction("submit",this.$el),t.success(this.$el,this),acf.lockForm(this.$el),t.reset&&this.reset()),t.complete(this.$el,this),this.clearErrors()}}),!1},setup:function(e){this.$el=e},reset:function(){this.set("errors",[]),this.set("notice",null),this.set("status",""),acf.unlockForm(this.$el)}}),a=function(e){var t=e.data("acf");return t||(t=new i(e)),t};acf.validateForm=function(e){return a(e.form).validate(e)},acf.enableSubmit=function(e){return e.removeClass("disabled").removeAttr("disabled")},acf.disableSubmit=function(e){return e.addClass("disabled").attr("disabled",!0)},acf.showSpinner=function(e){return e.addClass("is-active"),e.css("display","inline-block"),e},acf.hideSpinner=function(e){return e.removeClass("is-active"),e.css("display","none"),e},acf.lockForm=function(e){var t=n(e),i=t.find('.button, [type="submit"]').not(".acf-nav, .acf-repeater-add-row"),a=t.find(".spinner, .acf-spinner");return acf.hideSpinner(a),acf.disableSubmit(i),acf.showSpinner(a.last()),e},acf.unlockForm=function(e){var t=n(e),i=t.find('.button, [type="submit"]').not(".acf-nav, .acf-repeater-add-row"),a=t.find(".spinner, .acf-spinner");return acf.enableSubmit(i),acf.hideSpinner(a),e};var n=function(t){var i;return(i=t.find("#submitdiv")).length||(i=t.find("#submitpost")).length||(i=t.find("p.submit").last()).length||(i=t.find(".acf-form-submit")).length||(i=e("#acf-create-options-page-form .acf-actions")).length||(i=e(".acf-headerbar-actions")).length?i:t},s=acf.debounce((function(e){e.submit()})),r=function(e){var t=e.parents(".acf-postbox");if(t.length){var i=acf.getPostbox(t);i&&i.isHiddenByScreenOptions()&&(i.$el.removeClass("hide-if-js"),i.$el.css("display",""))}};acf.validation=new acf.Model({id:"validation",active:!0,wait:"prepare",actions:{ready:"addInputEvents",append:"addInputEvents"},events:{'click input[type="submit"]':"onClickSubmit",'click button[type="submit"]':"onClickSubmit","click #save-post":"onClickSave","submit form#post":"onSubmitPost","submit form":"onSubmit"},initialize:function(){acf.get("validation")||(this.active=!1,this.actions={},this.events={})},enable:function(){this.active=!0},disable:function(){this.active=!1},reset:function(e){a(e).reset()},addInputEvents:function(t){if("safari"!==acf.get("browser")){var i=e(".acf-field [name]",t);i.length&&this.on(i,"invalid","onInvalid")}},onInvalid:function(e,t){e.preventDefault();var i=t.closest("form");i.length&&(a(i).addError({input:t.attr("name"),message:acf.strEscape(e.target.validationMessage)}),s(i))},onClickSubmit:function(t,i){e(".acf-field input").each((function(){this.checkValidity()||r(e(this))})),this.set("originalEvent",t)},onClickSave:function(e,t){this.set("ignore",!0)},onClickSubmitGutenberg:function(t,i){acf.validateForm({form:e("#editor"),event:t,reset:!0,failure:function(e,t){var i=t.get("notice").$el;i.appendTo(".components-notice-list"),i.find(".acf-notice-dismiss").removeClass("small")}})||(t.preventDefault(),t.stopImmediatePropagation())},onSubmitPost:function(t,i){"dopreview"===e("input#wp-preview").val()&&(this.set("ignore",!0),acf.unlockForm(i))},onSubmit:function(e,t){if(!this.active||this.get("ignore")||e.isDefaultPrevented())return this.allowSubmit();acf.validateForm({form:t,event:this.get("originalEvent")})||e.preventDefault()},allowSubmit:function(){return this.set("ignore",!1),this.set("originalEvent",!1),!0}}),new acf.Model({wait:"prepare",initialize:function(){acf.isGutenberg()&&this.customizeEditor()},customizeEditor:function(){var t=wp.data.dispatch("core/editor"),i=wp.data.select("core/editor"),a=wp.data.dispatch("core/notices"),n=t.savePost,s=!1,r="";wp.data.subscribe((function(){var e=i.getEditedPostAttribute("status");s="publish"===e||"future"===e,r="publish"!==e?e:r})),t.savePost=function(i){i=i||{};var o=this,c=arguments;return new Promise((function(n,o){return i.isAutosave||i.isPreview?n("Validation ignored (autosave)."):s?void(acf.validateForm({form:e("#editor"),reset:!0,complete:function(e,i){t.unlockPostSaving("acf")},failure:function(e,i){var n=i.get("notice");a.createErrorNotice(n.get("text"),{id:"acf-validation",isDismissible:!0}),n.remove(),r&&t.editPost({status:r}),o("Validation failed.")},success:function(){a.removeNotice("acf-validation"),n("Validation success.")}})?n("Validation bypassed."):t.lockPostSaving("acf")):n("Validation ignored (draft).")})).then((function(){return n.apply(o,c)}),(e=>{}))}}})}(jQuery)}},t={};function i(a){var n=t[a];if(void 0!==n)return n.exports;var s=t[a]={exports:{}};return e[a](s,s.exports,i),s.exports}i.n=e=>{var t=e&&e.__esModule?()=>e.default:()=>e;return i.d(t,{a:t}),t},i.d=(e,t)=>{for(var a in t)i.o(t,a)&&!i.o(e,a)&&Object.defineProperty(e,a,{enumerable:!0,get:t[a]})},i.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),(()=>{"use strict";i(6291),i(1580),i(2213),i(1357),i(8171),i(9459),i(7597),i(684),i(8489),i(6691),i(5647),i(4658),i(719),i(2557),i(2489),i(714),i(6965),i(177),i(1987),i(1281),i(7790),i(2573),i(9047),i(1788),i(4429),i(4850),i(2849),i(3155),i(682),i(1417),i(1128),i(3812),i(7240),i(5796),i(8061),i(6148),i(5938),i(7787)})()})(); \ No newline at end of file +(()=>{var e={4750:()=>{!function(e,t){acf.newCompatibility=function(e,t){return(t=t||{}).__proto__=e.__proto__,e.__proto__=t,e.compatibility=t,t},acf.getCompatibility=function(e){return e.compatibility||null};var i=acf.newCompatibility(acf,{l10n:{},o:{},fields:{},update:acf.set,add_action:acf.addAction,remove_action:acf.removeAction,do_action:acf.doAction,add_filter:acf.addFilter,remove_filter:acf.removeFilter,apply_filters:acf.applyFilters,parse_args:acf.parseArgs,disable_el:acf.disable,disable_form:acf.disable,enable_el:acf.enable,enable_form:acf.enable,update_user_setting:acf.updateUserSetting,prepare_for_ajax:acf.prepareForAjax,is_ajax_success:acf.isAjaxSuccess,remove_el:acf.remove,remove_tr:acf.remove,str_replace:acf.strReplace,render_select:acf.renderSelect,get_uniqid:acf.uniqid,serialize_form:acf.serialize,esc_html:acf.strEscape,str_sanitize:acf.strSanitize});i._e=function(e,t){e=e||"";var i=(t=t||"")?e+"."+t:e,a={"image.select":"Select Image","image.edit":"Edit Image","image.update":"Update Image"};if(a[i])return acf.__(a[i]);var n=this.l10n[e]||"";return t&&(n=n[t]||""),n},i.get_selector=function(t){var i=".acf-field";if(!t)return i;if(e.isPlainObject(t)){if(e.isEmptyObject(t))return i;for(var a in t){t=t[a];break}}return i+="-"+t,i=acf.strReplace("_","-",i),acf.strReplace("field-field-","field-",i)},i.get_fields=function(e,t,i){var a={is:e||"",parent:t||!1,suppressFilters:i||!1};return a.is&&(a.is=this.get_selector(a.is)),acf.findFields(a)},i.get_field=function(e,t){var i=this.get_fields.apply(this,arguments);return!!i.length&&i.first()},i.get_closest_field=function(e,t){return e.closest(this.get_selector(t))},i.get_field_wrap=function(e){return e.closest(this.get_selector())},i.get_field_key=function(e){return e.data("key")},i.get_field_type=function(e){return e.data("type")},i.get_data=function(e,t){return acf.parseArgs(e.data(),t)},i.maybe_get=function(e,t,i){void 0===i&&(i=null),keys=String(t).split(".");for(var a=0;a1){for(var c=0;c0?t.substr(0,n):t,r=n>0?t.substr(n+1):"",o=function(t){t.$el=e(this),acf.field_group&&(t.$field=t.$el.closest(".acf-field-object")),"function"==typeof a.event&&(t=a.event(t)),a[i].apply(a,arguments)};r?e(document).on(s,r,o):e(document).on(s,o)},get:function(e,t){return t=t||null,void 0!==this[e]&&(t=this[e]),t},set:function(e,t){return this[e]=t,"function"==typeof this["_set_"+e]&&this["_set_"+e].apply(this),this}},i.field=acf.model.extend({type:"",o:{},$field:null,_add_action:function(e,t){var i=this;e=e+"_field/type="+i.type,acf.add_action(e,(function(e){i.set("$field",e),i[t].apply(i,arguments)}))},_add_filter:function(e,t){var i=this;e=e+"_field/type="+i.type,acf.add_filter(e,(function(e){i.set("$field",e),i[t].apply(i,arguments)}))},_add_event:function(t,i){var a=this,n=t.substr(0,t.indexOf(" ")),s=t.substr(t.indexOf(" ")+1),r=acf.get_selector(a.type);e(document).on(n,r+" "+s,(function(t){var n=e(this),s=acf.get_closest_field(n,a.type);s.length&&(s.is(a.$field)||a.set("$field",s),t.$el=n,t.$field=s,a[i].apply(a,[t]))}))},_set_$field:function(){"function"==typeof this.focus&&this.focus()},doFocus:function(e){return this.set("$field",e)}}),acf.newCompatibility(acf.validation,{remove_error:function(e){acf.getField(e).removeError()},add_warning:function(e,t){acf.getField(e).showNotice({text:t,type:"warning",timeout:1e3})},fetch:acf.validateForm,enableSubmit:acf.enableSubmit,disableSubmit:acf.disableSubmit,showSpinner:acf.showSpinner,hideSpinner:acf.hideSpinner,unlockForm:acf.unlockForm,lockForm:acf.lockForm}),i.tooltip={tooltip:function(e,t){return acf.newTooltip({text:e,target:t}).$el},temp:function(e,t){acf.newTooltip({text:e,target:t,timeout:250})},confirm:function(e,t,i,a,n){acf.newTooltip({confirm:!0,text:i,target:e,confirm:function(){t(!0)},cancel:function(){t(!1)}})},confirm_remove:function(e,t){acf.newTooltip({confirmRemove:!0,target:e,confirm:function(){t(!0)},cancel:function(){t(!1)}})}},i.media=new acf.Model({activeFrame:!1,actions:{new_media_popup:"onNewMediaPopup"},frame:function(){return this.activeFrame},onNewMediaPopup:function(e){this.activeFrame=e.frame},popup:function(e){return e.mime_types&&(e.allowedTypes=e.mime_types),e.id&&(e.attachment=e.id),acf.newMediaPopup(e).frame}}),i.select2={init:function(e,t,i){return t.allow_null&&(t.allowNull=t.allow_null),t.ajax_action&&(t.ajaxAction=t.ajax_action),i&&(t.field=acf.getField(i)),acf.newSelect2(e,t)},destroy:function(e){return acf.getInstance(e).destroy()}},i.postbox={render:function(e){return e.edit_url&&(e.editLink=e.edit_url),e.edit_title&&(e.editTitle=e.edit_title),acf.newPostbox(e)}},acf.newCompatibility(acf.screen,{update:function(){return this.set.apply(this,arguments)},fetch:acf.screen.check}),i.ajax=acf.screen}(jQuery)},2747:()=>{!function(e,t){var __=acf.__,i=function(e){return e?""+e:""},a=function(e,t){return i(e).toLowerCase()===i(t).toLowerCase()},n=acf.Condition.extend({type:"hasValue",operator:"!=empty",label:__("Has any value"),fieldTypes:["text","textarea","number","range","email","url","password","image","file","wysiwyg","oembed","select","checkbox","radio","button_group","link","post_object","page_link","relationship","taxonomy","user","google_map","date_picker","date_time_picker","time_picker","color_picker"],match:function(e,t){let i=t.val();return i instanceof Array&&(i=i.length),!!i},choices:function(e){return''}});acf.registerConditionType(n);var s=n.extend({type:"hasNoValue",operator:"==empty",label:__("Has no value"),match:function(e,t){return!n.prototype.match.apply(this,arguments)}});acf.registerConditionType(s);var r=acf.Condition.extend({type:"equalTo",operator:"==",label:__("Value is equal to"),fieldTypes:["text","textarea","number","range","email","url","password"],match:function(e,t){return acf.isNumeric(e.value)?(i=e.value,n=t.val(),parseFloat(i)===parseFloat(n)):a(e.value,t.val());var i,n},choices:function(e){return''}});acf.registerConditionType(r);var o=r.extend({type:"notEqualTo",operator:"!=",label:__("Value is not equal to"),match:function(e,t){return!r.prototype.match.apply(this,arguments)}});acf.registerConditionType(o);var c=acf.Condition.extend({type:"patternMatch",operator:"==pattern",label:__("Value matches pattern"),fieldTypes:["text","textarea","email","url","password","wysiwyg"],match:function(e,t){return a=t.val(),n=e.value,s=new RegExp(i(n),"gi"),i(a).match(s);var a,n,s},choices:function(e){return''}});acf.registerConditionType(c);var l=acf.Condition.extend({type:"contains",operator:"==contains",label:__("Value contains"),fieldTypes:["text","textarea","number","email","url","password","wysiwyg","oembed","select"],match:function(e,t){return a=t.val(),n=e.value,i(a).indexOf(i(n))>-1;var a,n},choices:function(e){return''}});acf.registerConditionType(l);var d=r.extend({type:"trueFalseEqualTo",choiceType:"select",fieldTypes:["true_false"],choices:function(e){return[{id:1,text:__("Checked")}]}});acf.registerConditionType(d);var u=o.extend({type:"trueFalseNotEqualTo",choiceType:"select",fieldTypes:["true_false"],choices:function(e){return[{id:1,text:__("Checked")}]}});acf.registerConditionType(u);var f=acf.Condition.extend({type:"selectEqualTo",operator:"==",label:__("Value is equal to"),fieldTypes:["select","checkbox","radio","button_group"],match:function(e,t){var n,s=t.val();return s instanceof Array?(n=e.value,s.map((function(e){return i(e)})).indexOf(n)>-1):a(e.value,s)},choices:function(e){var t=[],i=e.$setting("choices textarea").val().split("\n");return e.$input("allow_null").prop("checked")&&t.push({id:"",text:__("Null")}),i.map((function(e){(e=e.split(":"))[1]=e[1]||e[0],t.push({id:e[0].trim(),text:e[1].trim()})})),t}});acf.registerConditionType(f);var p=f.extend({type:"selectNotEqualTo",operator:"!=",label:__("Value is not equal to"),match:function(e,t){return!f.prototype.match.apply(this,arguments)}});acf.registerConditionType(p);var h=acf.Condition.extend({type:"greaterThan",operator:">",label:__("Value is greater than"),fieldTypes:["number","range"],match:function(e,t){var i,a,n=t.val();return n instanceof Array&&(n=n.length),i=n,a=e.value,parseFloat(i)>parseFloat(a)},choices:function(e){return''}});acf.registerConditionType(h);var g=h.extend({type:"lessThan",operator:"<",label:__("Value is less than"),match:function(e,t){var i,a,n=t.val();return n instanceof Array&&(n=n.length),null==n||!1===n||(i=n,a=e.value,parseFloat(i)'}});acf.registerConditionType(g);var m=h.extend({type:"selectionGreaterThan",label:__("Selection is greater than"),fieldTypes:["checkbox","select","post_object","page_link","relationship","taxonomy","user"]});acf.registerConditionType(m);var v=g.extend({type:"selectionLessThan",label:__("Selection is less than"),fieldTypes:["checkbox","select","post_object","page_link","relationship","taxonomy","user"]});acf.registerConditionType(v)}(jQuery)},8903:()=>{!function(e,t){var i=[];acf.Condition=acf.Model.extend({type:"",operator:"==",label:"",choiceType:"input",fieldTypes:[],data:{conditions:!1,field:!1,rule:{}},events:{change:"change",keyup:"change",enableField:"change",disableField:"change"},setup:function(t){e.extend(this.data,t)},getEventTarget:function(e,t){return e||this.get("field").$el},change:function(e,t){this.get("conditions").change(e)},match:function(e,t){return!1},calculate:function(){return this.match(this.get("rule"),this.get("field"))},choices:function(e){return''}}),acf.newCondition=function(e,t){var i=t.get("field"),a=i.getField(e.field);if(!i||!a)return!1;var n={rule:e,target:i,conditions:t,field:a},s=a.get("type"),r=e.operator;return new(acf.getConditionTypes({fieldType:s,operator:r})[0]||acf.Condition)(n)};var a=function(e){return acf.strPascalCase(e||"")+"Condition"};acf.registerConditionType=function(e){var t=e.prototype.type,n=a(t);acf.models[n]=e,i.push(t)},acf.getConditionType=function(e){var t=a(e);return acf.models[t]||!1},acf.registerConditionForFieldType=function(e,t){var i=acf.getConditionType(e);i&&i.prototype.fieldTypes.push(t)},acf.getConditionTypes=function(e){e=acf.parseArgs(e,{fieldType:"",operator:""});var t=[];return i.map((function(i){var a=acf.getConditionType(i),n=a.prototype.fieldTypes,s=a.prototype.operator;e.fieldType&&-1===n.indexOf(e.fieldType)||e.operator&&s!==e.operator||t.push(a)})),t}}(jQuery)},3858:()=>{!function(e,t){var i="conditional_logic",a=(new acf.Model({id:"conditionsManager",priority:20,actions:{new_field:"onNewField"},onNewField:function(e){e.has("conditions")&&e.getConditions().render()}}),function(t,i){var a=acf.getFields({key:i,sibling:t.$el,suppressFilters:!0});return a.length||(a=acf.getFields({key:i,parent:t.$el.parent(),suppressFilters:!0})),!a.length&&e(".acf-field-settings").length&&(a=acf.getFields({key:i,parent:t.$el.parents(".acf-field-settings:first"),suppressFilters:!0})),!a.length&&e("#acf-basic-settings").length&&(a=acf.getFields({key:i,parent:e("#acf-basic-settings"),suppressFilters:!0})),!!a.length&&a[0]});acf.Field.prototype.getField=function(e){var t=a(this,e);if(t)return t;for(var i=this.parents(),n=0;n{!function(e,t){var i=0,a=acf.Field.extend({type:"accordion",wait:"",$control:function(){return this.$(".acf-fields:first")},initialize:function(){if(!this.$el.hasClass("acf-accordion")&&!this.$el.is("td")){if(this.get("endpoint"))return this.remove();var t=this.$el,a=this.$labelWrap(),s=this.$inputWrap(),r=this.$control(),o=s.children(".description");if(o.length&&a.append(o),this.$el.is("tr")){var c=this.$el.closest("table"),l=e('
                    '),d=e('
                    '),u=e('
                      '),f=e("");l.append(a.html()),u.append(f),d.append(u),s.append(l),s.append(d),a.remove(),r.remove(),s.attr("colspan",2),a=l,s=d,r=f}t.addClass("acf-accordion"),a.addClass("acf-accordion-title"),s.addClass("acf-accordion-content"),i++,this.get("multi_expand")&&t.attr("multi-expand",1);var p=acf.getPreference("this.accordions")||[];void 0!==p[i-1]&&this.set("open",p[i-1]),this.get("open")&&(t.addClass("-open"),s.css("display","block")),a.prepend(n.iconHtml({open:this.get("open")}));var h=t.parent();r.addClass(h.hasClass("-left")?"-left":""),r.addClass(h.hasClass("-clear")?"-clear":""),r.append(t.nextUntil(".acf-field-accordion",".acf-field")),r.removeAttr("data-open data-multi_expand data-endpoint")}}});acf.registerFieldType(a);var n=new acf.Model({actions:{unload:"onUnload"},events:{"click .acf-accordion-title":"onClick","invalidField .acf-accordion":"onInvalidField"},isOpen:function(e){return e.hasClass("-open")},toggle:function(e){this.isOpen(e)?this.close(e):this.open(e)},iconHtml:function(e){return acf.isGutenberg()?e.open?'':'':e.open?'':''},open:function(t){var i=acf.isGutenberg()?0:300;t.find(".acf-accordion-content:first").slideDown(i).css("display","block"),t.find(".acf-accordion-icon:first").replaceWith(this.iconHtml({open:!0})),t.addClass("-open"),acf.doAction("show",t),t.attr("multi-expand")||t.siblings(".acf-accordion.-open").each((function(){n.close(e(this))}))},close:function(e){var t=acf.isGutenberg()?0:300;e.find(".acf-accordion-content:first").slideUp(t),e.find(".acf-accordion-icon:first").replaceWith(this.iconHtml({open:!1})),e.removeClass("-open"),acf.doAction("hide",e)},onClick:function(e,t){e.preventDefault(),this.toggle(t.parent())},onInvalidField:function(e,t){this.busy||(this.busy=!0,this.setTimeout((function(){this.busy=!1}),1e3),this.open(t))},onUnload:function(t){var i=[];e(".acf-accordion").each((function(){var t=e(this).hasClass("-open")?1:0;i.push(t)})),i.length&&acf.setPreference("this.accordions",i)}})}(jQuery)},6289:()=>{var e;jQuery,e=acf.Field.extend({type:"button_group",events:{'click input[type="radio"]':"onClick"},$control:function(){return this.$(".acf-button-group")},$input:function(){return this.$("input:checked")},setValue:function(e){this.$('input[value="'+e+'"]').prop("checked",!0).trigger("change")},onClick:function(e,t){var i=t.parent("label"),a=i.hasClass("selected");this.$(".selected").removeClass("selected"),i.addClass("selected"),this.get("allow_null")&&a&&(i.removeClass("selected"),t.prop("checked",!1).trigger("change"))}}),acf.registerFieldType(e)},774:()=>{var e,t;e=jQuery,t=acf.Field.extend({type:"checkbox",events:{"change input":"onChange","click .acf-add-checkbox":"onClickAdd","click .acf-checkbox-toggle":"onClickToggle","click .acf-checkbox-custom":"onClickCustom"},$control:function(){return this.$(".acf-checkbox-list")},$toggle:function(){return this.$(".acf-checkbox-toggle")},$input:function(){return this.$('input[type="hidden"]')},$inputs:function(){return this.$('input[type="checkbox"]').not(".acf-checkbox-toggle")},getValue:function(){var t=[];return this.$(":checked").each((function(){t.push(e(this).val())})),!!t.length&&t},onChange:function(e,t){var i=t.prop("checked"),a=t.parent("label"),n=this.$toggle();i?a.addClass("selected"):a.removeClass("selected"),n.length&&(0==this.$inputs().not(":checked").length?n.prop("checked",!0):n.prop("checked",!1))},onClickAdd:function(e,t){var i='
                    • ';t.parent("li").before(i),t.parent("li").parent().find('input[type="text"]').last().focus()},onClickToggle:function(e,t){var i=t.prop("checked"),a=this.$('input[type="checkbox"]'),n=this.$("label");a.prop("checked",i),i?n.addClass("selected"):n.removeClass("selected")},onClickCustom:function(e,t){var i=t.prop("checked"),a=t.next('input[type="text"]');i?a.prop("disabled",!1):(a.prop("disabled",!0),""==a.val()&&t.parent("li").remove())}}),acf.registerFieldType(t)},3623:()=>{var e;jQuery,e=acf.Field.extend({type:"color_picker",wait:"load",events:{duplicateField:"onDuplicate"},$control:function(){return this.$(".acf-color-picker")},$input:function(){return this.$('input[type="hidden"]')},$inputText:function(){return this.$('input[type="text"]')},setValue:function(e){acf.val(this.$input(),e),this.$inputText().iris("color",e)},initialize:function(){var e=this.$input(),t=this.$inputText(),i=function(i){setTimeout((function(){acf.val(e,t.val())}),1)},a={defaultColor:!1,palettes:!0,hide:!0,change:i,clear:i};a=acf.applyFilters("color_picker_args",a,this),t.wpColorPicker(a)},onDuplicate:function(e,t,i){$colorPicker=i.find(".wp-picker-container"),$inputText=i.find('input[type="text"]'),$colorPicker.replaceWith($inputText)}}),acf.registerFieldType(e)},9982:()=>{var e,t;e=jQuery,t=acf.Field.extend({type:"date_picker",events:{'blur input[type="text"]':"onBlur",duplicateField:"onDuplicate"},$control:function(){return this.$(".acf-date-picker")},$input:function(){return this.$('input[type="hidden"]')},$inputText:function(){return this.$('input[type="text"]')},initialize:function(){if(this.has("save_format"))return this.initializeCompatibility();var e=this.$input(),t=this.$inputText(),i={dateFormat:this.get("date_format"),altField:e,altFormat:"yymmdd",changeYear:!0,yearRange:"-100:+100",changeMonth:!0,showButtonPanel:!0,firstDay:this.get("first_day")};i=acf.applyFilters("date_picker_args",i,this),acf.newDatePicker(t,i),acf.doAction("date_picker_init",t,i,this)},initializeCompatibility:function(){var e=this.$input(),t=this.$inputText();t.val(e.val());var i={dateFormat:this.get("date_format"),altField:e,altFormat:this.get("save_format"),changeYear:!0,yearRange:"-100:+100",changeMonth:!0,showButtonPanel:!0,firstDay:this.get("first_day")},a=(i=acf.applyFilters("date_picker_args",i,this)).dateFormat;i.dateFormat=this.get("save_format"),acf.newDatePicker(t,i),t.datepicker("option","dateFormat",a),acf.doAction("date_picker_init",t,i,this)},onBlur:function(){this.$inputText().val()||acf.val(this.$input(),"")},onDuplicate:function(e,t,i){i.find('input[type="text"]').removeClass("hasDatepicker").removeAttr("id")}}),acf.registerFieldType(t),new acf.Model({priority:5,wait:"ready",initialize:function(){var t=acf.get("locale"),i=acf.get("rtl"),a=acf.get("datePickerL10n");return!!a&&void 0!==e.datepicker&&(a.isRTL=i,e.datepicker.regional[t]=a,void e.datepicker.setDefaults(a))}}),acf.newDatePicker=function(t,i){if(void 0===e.datepicker)return!1;i=i||{},t.datepicker(i),e("body > #ui-datepicker-div").exists()&&e("body > #ui-datepicker-div").wrap('
                      ')}},960:()=>{var e,t;e=jQuery,t=acf.models.DatePickerField.extend({type:"date_time_picker",$control:function(){return this.$(".acf-date-time-picker")},initialize:function(){var e=this.$input(),t=this.$inputText(),i={dateFormat:this.get("date_format"),timeFormat:this.get("time_format"),altField:e,altFieldTimeOnly:!1,altFormat:"yy-mm-dd",altTimeFormat:"HH:mm:ss",changeYear:!0,yearRange:"-100:+100",changeMonth:!0,showButtonPanel:!0,firstDay:this.get("first_day"),controlType:"select",oneLine:!0};i=acf.applyFilters("date_time_picker_args",i,this),acf.newDateTimePicker(t,i),acf.doAction("date_time_picker_init",t,i,this)}}),acf.registerFieldType(t),new acf.Model({priority:5,wait:"ready",initialize:function(){var t=acf.get("locale"),i=acf.get("rtl"),a=acf.get("dateTimePickerL10n");return!!a&&void 0!==e.timepicker&&(a.isRTL=i,e.timepicker.regional[t]=a,void e.timepicker.setDefaults(a))}}),acf.newDateTimePicker=function(t,i){if(void 0===e.timepicker)return!1;i=i||{},t.datetimepicker(i),e("body > #ui-datepicker-div").exists()&&e("body > #ui-datepicker-div").wrap('
                      ')}},2093:()=>{var e,t;e=jQuery,t=acf.models.ImageField.extend({type:"file",$control:function(){return this.$(".acf-file-uploader")},$input:function(){return this.$('input[type="hidden"]:first')},validateAttachment:function(e){return void 0!==(e=e||{}).id&&(e=e.attributes),acf.parseArgs(e,{url:"",alt:"",title:"",filename:"",filesizeHumanReadable:"",icon:"/wp-includes/images/media/default.png"})},render:function(e){e=this.validateAttachment(e),this.$("img").attr({src:e.icon,alt:e.alt,title:e.title}),this.$('[data-name="title"]').text(e.title),this.$('[data-name="filename"]').text(e.filename).attr("href",e.url),this.$('[data-name="filesize"]').text(e.filesizeHumanReadable);var t=e.id||"";acf.val(this.$input(),t),t?this.$control().addClass("has-value"):this.$control().removeClass("has-value")},selectAttachment:function(){var t=this.parent(),i=t&&"repeater"===t.get("type");acf.newMediaPopup({mode:"select",title:acf.__("Select File"),field:this.get("key"),multiple:i,library:this.get("library"),allowedTypes:this.get("mime_types"),select:e.proxy((function(e,i){i>0?this.append(e,t):this.render(e)}),this)})},editAttachment:function(){var t=this.val();if(!t)return!1;acf.newMediaPopup({mode:"edit",title:acf.__("Edit File"),button:acf.__("Update File"),attachment:t,field:this.get("key"),select:e.proxy((function(e,t){this.render(e)}),this)})}}),acf.registerFieldType(t)},1163:()=>{!function(e,t){var i=acf.Field.extend({type:"google_map",map:!1,wait:"load",events:{'click a[data-name="clear"]':"onClickClear",'click a[data-name="locate"]':"onClickLocate",'click a[data-name="search"]':"onClickSearch","keydown .search":"onKeydownSearch","keyup .search":"onKeyupSearch","focus .search":"onFocusSearch","blur .search":"onBlurSearch",showField:"onShow"},$control:function(){return this.$(".acf-google-map")},$search:function(){return this.$(".search")},$canvas:function(){return this.$(".canvas")},setState:function(e){this.$control().removeClass("-value -loading -searching"),"default"===e&&(e=this.val()?"value":""),e&&this.$control().addClass("-"+e)},getValue:function(){var e=this.$input().val();return!!e&&JSON.parse(e)},setValue:function(e,t){var i="";e&&(i=JSON.stringify(e)),acf.val(this.$input(),i),t||(this.renderVal(e),acf.doAction("google_map_change",e,this.map,this))},renderVal:function(e){e?(this.setState("value"),this.$search().val(e.address),this.setPosition(e.lat,e.lng)):(this.setState(""),this.$search().val(""),this.map.marker.setVisible(!1))},newLatLng:function(e,t){return new google.maps.LatLng(parseFloat(e),parseFloat(t))},setPosition:function(e,t){this.map.marker.setPosition({lat:parseFloat(e),lng:parseFloat(t)}),this.map.marker.setVisible(!0),this.center()},center:function(){var e=this.map.marker.getPosition();if(e)var t=e.lat(),i=e.lng();else t=this.get("lat"),i=this.get("lng");this.map.setCenter({lat:parseFloat(t),lng:parseFloat(i)})},initialize:function(){!function(t){if(n)return t();if(acf.isset(window,"google","maps","Geocoder"))return n=new google.maps.Geocoder,t();if(acf.addAction("google_map_api_loaded",t),!a){var i=acf.get("google_map_api");i&&(a=!0,e.ajax({url:i,dataType:"script",cache:!0,success:function(){n=new google.maps.Geocoder,acf.doAction("google_map_api_loaded")}}))}}(this.initializeMap.bind(this))},initializeMap:function(){var e=this.getValue(),t=acf.parseArgs(e,{zoom:this.get("zoom"),lat:this.get("lat"),lng:this.get("lng")}),i={scrollwheel:!1,zoom:parseInt(t.zoom),center:{lat:parseFloat(t.lat),lng:parseFloat(t.lng)},mapTypeId:google.maps.MapTypeId.ROADMAP,marker:{draggable:!0,raiseOnDrag:!0},autocomplete:{}};i=acf.applyFilters("google_map_args",i,this);var a=new google.maps.Map(this.$canvas()[0],i),n=acf.parseArgs(i.marker,{draggable:!0,raiseOnDrag:!0,map:a});n=acf.applyFilters("google_map_marker_args",n,this);var s=new google.maps.Marker(n),r=!1;if(acf.isset(google,"maps","places","Autocomplete")){var o=i.autocomplete||{};o=acf.applyFilters("google_map_autocomplete_args",o,this),(r=new google.maps.places.Autocomplete(this.$search()[0],o)).bindTo("bounds",a)}this.addMapEvents(this,a,s,r),a.acf=this,a.marker=s,a.autocomplete=r,this.map=a,e&&this.setPosition(e.lat,e.lng),acf.doAction("google_map_init",a,s,this)},addMapEvents:function(e,t,i,a){google.maps.event.addListener(t,"click",(function(t){var i=t.latLng.lat(),a=t.latLng.lng();e.searchPosition(i,a)})),google.maps.event.addListener(i,"dragend",(function(){var t=this.getPosition().lat(),i=this.getPosition().lng();e.searchPosition(t,i)})),a&&google.maps.event.addListener(a,"place_changed",(function(){var t=this.getPlace();e.searchPlace(t)})),google.maps.event.addListener(t,"zoom_changed",(function(){var i=e.val();i&&(i.zoom=t.getZoom(),e.setValue(i,!0))}))},searchPosition:function(e,t){this.setState("loading");var i={lat:e,lng:t};n.geocode({location:i},function(i,a){if(this.setState(""),"OK"!==a)this.showNotice({text:acf.__("Location not found: %s").replace("%s",a),type:"warning"});else{var n=this.parseResult(i[0]);n.lat=e,n.lng=t,this.val(n)}}.bind(this))},searchPlace:function(e){if(e)if(e.geometry){e.formatted_address=this.$search().val();var t=this.parseResult(e);this.val(t)}else e.name&&this.searchAddress(e.name)},searchAddress:function(e){if(e){var t=e.split(",");if(2==t.length){var i=parseFloat(t[0]),a=parseFloat(t[1]);if(i&&a)return this.searchPosition(i,a)}this.setState("loading"),n.geocode({address:e},function(t,i){if(this.setState(""),"OK"!==i)this.showNotice({text:acf.__("Location not found: %s").replace("%s",i),type:"warning"});else{var a=this.parseResult(t[0]);a.address=e,this.val(a)}}.bind(this))}},searchLocation:function(){if(!navigator.geolocation)return alert(acf.__("Sorry, this browser does not support geolocation"));this.setState("loading"),navigator.geolocation.getCurrentPosition(function(e){this.setState("");var t=e.coords.latitude,i=e.coords.longitude;this.searchPosition(t,i)}.bind(this),function(e){this.setState("")}.bind(this))},parseResult:function(e){var t={address:e.formatted_address,lat:e.geometry.location.lat(),lng:e.geometry.location.lng()};t.zoom=this.map.getZoom(),e.place_id&&(t.place_id=e.place_id),e.name&&(t.name=e.name);var i={street_number:["street_number"],street_name:["street_address","route"],city:["locality","postal_town"],state:["administrative_area_level_1","administrative_area_level_2","administrative_area_level_3","administrative_area_level_4","administrative_area_level_5"],post_code:["postal_code"],country:["country"]};for(var a in i)for(var n=i[a],s=0;s{var e,t;e=jQuery,t=acf.Field.extend({type:"image",$control:function(){return this.$(".acf-image-uploader")},$input:function(){return this.$('input[type="hidden"]:first')},events:{'click a[data-name="add"]':"onClickAdd",'click a[data-name="edit"]':"onClickEdit",'click a[data-name="remove"]':"onClickRemove",'change input[type="file"]':"onChange"},initialize:function(){"basic"===this.get("uploader")&&this.$el.closest("form").attr("enctype","multipart/form-data")},validateAttachment:function(e){e&&e.attributes&&(e=e.attributes),e=acf.parseArgs(e,{id:0,url:"",alt:"",title:"",caption:"",description:"",width:0,height:0});var t=acf.isget(e,"sizes",this.get("preview_size"));return t&&(e.url=t.url,e.width=t.width,e.height=t.height),e},render:function(e){e=this.validateAttachment(e),this.$("img").attr({src:e.url,alt:e.alt}),e.id?(this.val(e.id),this.$control().addClass("has-value")):(this.val(""),this.$control().removeClass("has-value"))},append:function(e,t){var i=function(e,t){for(var i=acf.getFields({key:e.get("key"),parent:t.$el}),a=0;a0?this.append(e,t):this.render(e)}),this)})},editAttachment:function(){var t=this.val();t&&acf.newMediaPopup({mode:"edit",title:acf.__("Edit Image"),button:acf.__("Update Image"),attachment:t,field:this.get("key"),select:e.proxy((function(e,t){this.render(e)}),this)})},removeAttachment:function(){this.render(!1)},onClickAdd:function(e,t){this.selectAttachment()},onClickEdit:function(e,t){this.editAttachment()},onClickRemove:function(e,t){this.removeAttachment()},onChange:function(t,i){var a=this.$input();i.val()||a.val(""),acf.getFileInputData(i,(function(t){a.val(e.param(t))}))}}),acf.registerFieldType(t)},5915:()=>{var e,t;e=jQuery,t=acf.Field.extend({type:"link",events:{'click a[data-name="add"]':"onClickEdit",'click a[data-name="edit"]':"onClickEdit",'click a[data-name="remove"]':"onClickRemove","change .link-node":"onChange"},$control:function(){return this.$(".acf-link")},$node:function(){return this.$(".link-node")},getValue:function(){var e=this.$node();return!!e.attr("href")&&{title:e.html(),url:e.attr("href"),target:e.attr("target")}},setValue:function(e){e=acf.parseArgs(e,{title:"",url:"",target:""});var t=this.$control(),i=this.$node();t.removeClass("-value -external"),e.url&&t.addClass("-value"),"_blank"===e.target&&t.addClass("-external"),this.$(".link-title").html(e.title),this.$(".link-url").attr("href",e.url).html(e.url),i.html(e.title),i.attr("href",e.url),i.attr("target",e.target),this.$(".input-title").val(e.title),this.$(".input-target").val(e.target),this.$(".input-url").val(e.url).trigger("change")},onClickEdit:function(e,t){acf.wpLink.open(this.$node())},onClickRemove:function(e,t){this.setValue(!1)},onChange:function(e,t){var i=this.getValue();this.setValue(i)}}),acf.registerFieldType(t),acf.wpLink=new acf.Model({getNodeValue:function(){var e=this.get("node");return{title:acf.decode(e.html()),url:e.attr("href"),target:e.attr("target")}},setNodeValue:function(e){var t=this.get("node");t.text(e.title),t.attr("href",e.url),t.attr("target",e.target),t.trigger("change")},getInputValue:function(){return{title:e("#wp-link-text").val(),url:e("#wp-link-url").val(),target:e("#wp-link-target").prop("checked")?"_blank":""}},setInputValue:function(t){e("#wp-link-text").val(t.title),e("#wp-link-url").val(t.url),e("#wp-link-target").prop("checked","_blank"===t.target)},open:function(t){this.on("wplink-open","onOpen"),this.on("wplink-close","onClose"),this.set("node",t);var i=e('');e("body").append(i);var a=this.getNodeValue();wpLink.open("acf-link-textarea",a.url,a.title,null)},onOpen:function(){e("#wp-link-wrap").addClass("has-text-field");var t=this.getNodeValue();this.setInputValue(t),t.url&&wpLinkL10n&&e("#wp-link-submit").val(wpLinkL10n.update)},close:function(){wpLink.close()},onClose:function(){if(!this.has("node"))return!1;var t=e("#wp-link-submit");if(t.is(":hover")||t.is(":focus")){var i=this.getInputValue();this.setNodeValue(i)}this.off("wplink-open"),this.off("wplink-close"),e("#acf-link-textarea").remove(),this.set("node",null)}})},2237:()=>{var e,t;e=jQuery,t=acf.Field.extend({type:"oembed",events:{'click [data-name="clear-button"]':"onClickClear","keypress .input-search":"onKeypressSearch","keyup .input-search":"onKeyupSearch","change .input-search":"onChangeSearch"},$control:function(){return this.$(".acf-oembed")},$input:function(){return this.$(".input-value")},$search:function(){return this.$(".input-search")},getValue:function(){return this.$input().val()},getSearchVal:function(){return this.$search().val()},setValue:function(e){e?this.$control().addClass("has-value"):this.$control().removeClass("has-value"),acf.val(this.$input(),e)},showLoading:function(e){acf.showLoading(this.$(".canvas"))},hideLoading:function(){acf.hideLoading(this.$(".canvas"))},maybeSearch:function(){var t=this.val(),i=this.getSearchVal();if(!i)return this.clear();if("http"!=i.substr(0,4)&&(i="http://"+i),i!==t){var a=this.get("timeout");a&&clearTimeout(a);var n=e.proxy(this.search,this,i);this.set("timeout",setTimeout(n,300))}},search:function(t){var i={action:"acf/fields/oembed/search",s:t,field_key:this.get("key")};(a=this.get("xhr"))&&a.abort(),this.showLoading();var a=e.ajax({url:acf.get("ajaxurl"),data:acf.prepareForAjax(i),type:"post",dataType:"json",context:this,success:function(e){e&&e.html||(e={url:!1,html:""}),this.val(e.url),this.$(".canvas-media").html(e.html)},complete:function(){this.hideLoading()}});this.set("xhr",a)},clear:function(){this.val(""),this.$search().val(""),this.$(".canvas-media").html("")},onClickClear:function(e,t){this.clear()},onKeypressSearch:function(e,t){13==e.which&&(e.preventDefault(),this.maybeSearch())},onKeyupSearch:function(e,t){t.val()&&this.maybeSearch()},onChangeSearch:function(e,t){this.maybeSearch()}}),acf.registerFieldType(t)},7513:()=>{var e;jQuery,e=acf.models.SelectField.extend({type:"page_link"}),acf.registerFieldType(e)},2553:()=>{var e;jQuery,e=acf.models.SelectField.extend({type:"post_object"}),acf.registerFieldType(e)},9252:()=>{var e;jQuery,e=acf.Field.extend({type:"radio",events:{'click input[type="radio"]':"onClick"},$control:function(){return this.$(".acf-radio-list")},$input:function(){return this.$("input:checked")},$inputText:function(){return this.$('input[type="text"]')},getValue:function(){var e=this.$input().val();return"other"===e&&this.get("other_choice")&&(e=this.$inputText().val()),e},onClick:function(e,t){var i=t.parent("label"),a=i.hasClass("selected"),n=t.val();this.$(".selected").removeClass("selected"),i.addClass("selected"),this.get("allow_null")&&a&&(i.removeClass("selected"),t.prop("checked",!1).trigger("change"),n=!1),this.get("other_choice")&&("other"===n?this.$inputText().prop("disabled",!1):this.$inputText().prop("disabled",!0))}}),acf.registerFieldType(e)},6290:()=>{var e;jQuery,e=acf.Field.extend({type:"range",events:{'input input[type="range"]':"onChange","change input":"onChange"},$input:function(){return this.$('input[type="range"]')},$inputAlt:function(){return this.$('input[type="number"]')},setValue:function(e){this.busy=!0,acf.val(this.$input(),e),acf.val(this.$inputAlt(),this.$input().val(),!0),this.busy=!1},onChange:function(e,t){this.busy||this.setValue(t.val())}}),acf.registerFieldType(e)},7509:()=>{var e,t;e=jQuery,t=acf.Field.extend({type:"relationship",events:{"keypress [data-filter]":"onKeypressFilter","change [data-filter]":"onChangeFilter","keyup [data-filter]":"onChangeFilter","click .choices-list .acf-rel-item":"onClickAdd","keypress .choices-list .acf-rel-item":"onKeypressFilter","keypress .values-list .acf-rel-item":"onKeypressFilter",'click [data-name="remove_item"]':"onClickRemove","touchstart .values-list .acf-rel-item":"onTouchStartValues"},$control:function(){return this.$(".acf-relationship")},$list:function(e){return this.$("."+e+"-list")},$listItems:function(e){return this.$list(e).find(".acf-rel-item")},$listItem:function(e,t){return this.$list(e).find('.acf-rel-item[data-id="'+t+'"]')},getValue:function(){var t=[];return this.$listItems("values").each((function(){t.push(e(this).data("id"))})),!!t.length&&t},newChoice:function(e){return["
                    • ",''+e.text+"","
                    • "].join("")},newValue:function(e){return["
                    • ",'',''+e.text,'',"","
                    • "].join("")},initialize:function(){var e=this.proxy(acf.once((function(){this.$list("values").sortable({items:"li",forceHelperSize:!0,forcePlaceholderSize:!0,scroll:!0,update:this.proxy((function(){this.$input().trigger("change")}))}),this.$list("choices").scrollTop(0).on("scroll",this.proxy(this.onScrollChoices)),this.fetch()})));this.$el.one("mouseover",e),this.$el.one("focus","input",e),acf.onceInView(this.$el,e)},onScrollChoices:function(e){if(!this.get("loading")&&this.get("more")){var t=this.$list("choices"),i=Math.ceil(t.scrollTop()),a=Math.ceil(t[0].scrollHeight),n=Math.ceil(t.innerHeight()),s=this.get("paged")||1;i+n>=a&&(this.set("paged",s+1),this.fetch())}},onKeypressFilter:function(e,t){t.hasClass("acf-rel-item-add")&&13==e.which&&this.onClickAdd(e,t),t.hasClass("acf-rel-item-remove")&&13==e.which&&this.onClickRemove(e,t),13==e.which&&e.preventDefault()},onChangeFilter:function(e,t){var i=t.val(),a=t.data("filter");this.get(a)!==i&&(this.set(a,i),this.set("paged",1),t.is("select")?this.fetch():this.maybeFetch())},onClickAdd:function(e,t){var i=this.val(),a=parseInt(this.get("max"));if(t.hasClass("disabled"))return!1;if(a>0&&i&&i.length>=a)return this.showNotice({text:acf.__("Maximum values reached ( {max} values )").replace("{max}",a),type:"warning"}),!1;t.addClass("disabled");var n=this.newValue({id:t.data("id"),text:t.html()});this.$list("values").append(n),this.$input().trigger("change")},onClickRemove:function(e,t){let i;e.preventDefault(),i=t.hasClass("acf-rel-item-remove")?t:t.parent();const a=i.parent(),n=i.data("id");a.remove(),this.$listItem("choices",n).removeClass("disabled"),this.$input().trigger("change")},onTouchStartValues:function(t,i){e(this.$listItems("values")).removeClass("relationship-hover"),i.addClass("relationship-hover")},maybeFetch:function(){var e=this.get("timeout");e&&clearTimeout(e),e=this.setTimeout(this.fetch,300),this.set("timeout",e)},getAjaxData:function(){var e=this.$control().data();for(var t in e)e[t]=this.get(t);return e.action="acf/fields/relationship/query",e.field_key=this.get("key"),acf.applyFilters("relationship_ajax_data",e,this)},fetch:function(){(n=this.get("xhr"))&&n.abort();var t=this.getAjaxData(),i=this.$list("choices");1==t.paged&&i.html("");var a=e('
                    • '+acf.__("Loading")+"
                    • ");i.append(a),this.set("loading",!0);var n=e.ajax({url:acf.get("ajaxurl"),dataType:"json",type:"post",data:acf.prepareForAjax(t),context:this,success:function(t){if(!t||!t.results||!t.results.length)return this.set("more",!1),void(1==this.get("paged")&&this.$list("choices").append("
                    • "+acf.__("No matches found")+"
                    • "));this.set("more",t.more);var a=this.walkChoices(t.results),n=e(a),s=this.val();s&&s.length&&s.map((function(e){n.find('.acf-rel-item[data-id="'+e+'"]').addClass("disabled")})),i.append(n);var r=!1,o=!1;i.find(".acf-rel-label").each((function(){var t=e(this),i=t.siblings("ul");if(r&&r.text()==t.text())return o.append(i.children()),void e(this).parent().remove();r=t,o=i}))},complete:function(){this.set("loading",!1),a.remove()}});this.set("xhr",n)},walkChoices:function(t){var i=function(t){var a="";return e.isArray(t)?t.map((function(e){a+=i(e)})):e.isPlainObject(t)&&(void 0!==t.children?(a+='
                    • '+acf.escHtml(t.text)+'
                        ',a+=i(t.children),a+="
                    • "):a+='
                    • '+acf.escHtml(t.text)+"
                    • "),a};return i(t)}}),acf.registerFieldType(t)},6403:()=>{var e;jQuery,e=acf.Field.extend({type:"select",select2:!1,wait:"load",events:{removeField:"onRemove",duplicateField:"onDuplicate"},$input:function(){return this.$("select")},initialize:function(){var e=this.$input();if(this.inherit(e),this.get("ui")){var t=this.get("ajax_action");t||(t="acf/fields/"+this.get("type")+"/query"),this.select2=acf.newSelect2(e,{field:this,ajax:this.get("ajax"),multiple:this.get("multiple"),placeholder:this.get("placeholder"),allowNull:this.get("allow_null"),ajaxAction:t})}},onRemove:function(){this.select2&&this.select2.destroy()},onDuplicate:function(e,t,i){this.select2&&(i.find(".select2-container").remove(),i.find("select").removeClass("select2-hidden-accessible"))}}),acf.registerFieldType(e)},5848:()=>{!function(e,t){var i="tab",a=acf.Field.extend({type:"tab",wait:"",tabs:!1,tab:!1,events:{duplicateField:"onDuplicate"},findFields:function(){let e;switch(this.get("key")){case"acf_field_settings_tabs":e=".acf-field-settings-main";break;case"acf_field_group_settings_tabs":e=".field-group-settings-tab";break;case"acf_browse_fields_tabs":e=".acf-field-types-tab";break;case"acf_post_type_tabs":e=".acf-post-type-advanced-settings";break;case"acf_taxonomy_tabs":e=".acf-taxonomy-advanced-settings";break;case"acf_ui_options_page_tabs":e=".acf-ui-options-page-advanced-settings";break;default:e=".acf-field"}return this.$el.nextUntil(".acf-field-tab",e)},getFields:function(){return acf.getFields(this.findFields())},findTabs:function(){return this.$el.prevAll(".acf-tab-wrap:first")},findTab:function(){return this.$(".acf-tab-button")},initialize:function(){if(this.$el.is("td"))return this.events={},!1;var e=this.findTabs(),t=this.findTab(),i=acf.parseArgs(t.data(),{endpoint:!1,placement:"",before:this.$el});!e.length||i.endpoint?this.tabs=new s(i):this.tabs=e.data("acf"),this.tab=this.tabs.addTab(t,this)},isActive:function(){return this.tab.isActive()},showFields:function(){this.getFields().map((function(e){e.show(this.cid,i),e.hiddenByTab=!1}),this)},hideFields:function(){this.getFields().map((function(e){e.hide(this.cid,i),e.hiddenByTab=this.tab}),this)},show:function(e){var t=acf.Field.prototype.show.apply(this,arguments);return t&&(this.tab.show(),this.tabs.refresh()),t},hide:function(e){var t=acf.Field.prototype.hide.apply(this,arguments);return t&&(this.tab.hide(),this.isActive()&&this.tabs.reset()),t},enable:function(e){this.getFields().map((function(e){e.enable(i)}))},disable:function(e){this.getFields().map((function(e){e.disable(i)}))},onDuplicate:function(e,t,i){this.isActive()&&i.prevAll(".acf-tab-wrap:first").remove()}});acf.registerFieldType(a);var n=0,s=acf.Model.extend({tabs:[],active:!1,actions:{refresh:"onRefresh",close_field_object:"onCloseFieldObject"},data:{before:!1,placement:"top",index:0,initialized:!1},setup:function(t){e.extend(this.data,t),this.tabs=[],this.active=!1;var i=this.get("placement"),a=this.get("before"),s=a.parent();if("left"==i&&s.hasClass("acf-fields")&&s.addClass("-sidebar"),a.is("tr"))this.$el=e('
                      ');else{let t="acf-hl acf-tab-group";"acf_field_settings_tabs"===this.get("key")&&(t="acf-field-settings-tab-bar"),this.$el=e('
                        ')}a.before(this.$el),this.set("index",n,!0),n++},initializeTabs:function(){if("acf_field_settings_tabs"!==this.get("key")||!e("#acf-field-group-fields").hasClass("hide-tabs")){var t=this.getVisible().shift(),i=(acf.getPreference("this.tabs")||[])[this.get("index")];this.tabs[i]&&this.tabs[i].isVisible()&&(t=this.tabs[i]),t?this.selectTab(t):this.closeTabs(),this.set("initialized",!0)}},getVisible:function(){return this.tabs.filter((function(e){return e.isVisible()}))},getActive:function(){return this.active},setActive:function(e){return this.active=e},hasActive:function(){return!1!==this.active},isActive:function(e){var t=this.getActive();return t&&t.cid===e.cid},closeActive:function(){this.hasActive()&&this.closeTab(this.getActive())},openTab:function(e){this.closeActive(),e.open(),this.setActive(e)},closeTab:function(e){e.close(),this.setActive(!1)},closeTabs:function(){this.tabs.map(this.closeTab,this)},selectTab:function(e){this.tabs.map((function(t){e.cid!==t.cid&&this.closeTab(t)}),this),this.openTab(e)},addTab:function(t,i){var a=e("
                      • "+t.outerHTML()+"
                      • "),n=t.attr("class").replace("acf-tab-button","");a.addClass(n),this.$("ul").append(a);var s=new r({$el:a,field:i,group:this});return this.tabs.push(s),s},reset:function(){return this.closeActive(),this.refresh()},refresh:function(){if(this.hasActive())return!1;var e=this.getVisible().shift();return e&&this.openTab(e),e},onRefresh:function(){if("left"===this.get("placement")){var e=this.$el.parent(),t=this.$el.children("ul"),i=e.is("td")?"height":"min-height",a=t.position().top+t.outerHeight(!0)-1;e.css(i,a)}},onCloseFieldObject:function(e){const t=this.getVisible().find((t=>{const i=t.$el.closest("div[data-id]").data("id");if(e.data.id===i)return t}));t&&setTimeout((()=>{this.openTab(t)}),300)}}),r=acf.Model.extend({group:!1,field:!1,events:{"click a":"onClick"},index:function(){return this.$el.index()},isVisible:function(){return acf.isVisible(this.$el)},isActive:function(){return this.$el.hasClass("active")},open:function(){this.$el.addClass("active"),this.field.showFields()},close:function(){this.$el.removeClass("active"),this.field.hideFields()},onClick:function(e,t){e.preventDefault(),this.toggle()},toggle:function(){this.isActive()||this.group.openTab(this)}});new acf.Model({priority:50,actions:{prepare:"render",append:"render",unload:"onUnload",show:"render",invalid_field:"onInvalidField"},findTabs:function(){return e(".acf-tab-wrap")},getTabs:function(){return acf.getInstances(this.findTabs())},render:function(e){this.getTabs().map((function(e){e.get("initialized")||e.initializeTabs()}))},onInvalidField:function(e){this.busy||e.hiddenByTab&&(e.hiddenByTab.toggle(),this.busy=!0,this.setTimeout((function(){this.busy=!1}),100))},onUnload:function(){var e=[];this.getTabs().map((function(t){if(t.$el.children(".acf-field-settings-tab-bar").length||t.$el.parents("#acf-advanced-settings.postbox").length)return!0;var i=t.hasActive()?t.getActive().index():0;e.push(i)})),e.length&&acf.setPreference("this.tabs",e)}})}(jQuery)},3284:()=>{var e,t;e=jQuery,t=acf.Field.extend({type:"taxonomy",data:{ftype:"select"},select2:!1,wait:"load",events:{'click a[data-name="add"]':"onClickAdd",'click input[type="radio"]':"onClickRadio",removeField:"onRemove"},$control:function(){return this.$(".acf-taxonomy-field")},$input:function(){return this.getRelatedPrototype().$input.apply(this,arguments)},getRelatedType:function(){var e=this.get("ftype");return"multi_select"==e&&(e="select"),e},getRelatedPrototype:function(){return acf.getFieldType(this.getRelatedType()).prototype},getValue:function(){return this.getRelatedPrototype().getValue.apply(this,arguments)},setValue:function(){return this.getRelatedPrototype().setValue.apply(this,arguments)},initialize:function(){this.getRelatedPrototype().initialize.apply(this,arguments)},onRemove:function(){var e=this.getRelatedPrototype();e.onRemove&&e.onRemove.apply(this,arguments)},onClickAdd:function(t,i){var a=this,n=!1,s=!1,r=!1,o=!1,c=!1,l=!1,d=function(e){n.loading(!1),n.content(e),s=n.$("form"),r=n.$('input[name="term_name"]'),o=n.$('select[name="term_parent"]'),c=n.$(".acf-submit-button"),r.trigger("focus"),n.on("submit","form",u)},u=function(t,i){if(t.preventDefault(),t.stopImmediatePropagation(),""===r.val())return r.trigger("focus"),!1;acf.startButtonLoading(c);var n={action:"acf/fields/taxonomy/add_term",field_key:a.get("key"),term_name:r.val(),term_parent:o.length?o.val():0};e.ajax({url:acf.get("ajaxurl"),data:acf.prepareForAjax(n),type:"post",dataType:"json",success:f})},f=function(e){acf.stopButtonLoading(c),l&&l.remove(),acf.isAjaxSuccess(e)?(r.val(""),p(e.data),l=acf.newNotice({type:"success",text:acf.getAjaxMessage(e),target:s,timeout:2e3,dismiss:!1})):l=acf.newNotice({type:"error",text:acf.getAjaxError(e),target:s,timeout:2e3,dismiss:!1}),r.trigger("focus")},p=function(t){var i=e('");t.term_parent?o.children('option[value="'+t.term_parent+'"]').after(i):o.append(i),acf.getFields({type:"taxonomy"}).map((function(e){e.get("taxonomy")==a.get("taxonomy")&&e.appendTerm(t)})),a.selectTerm(t.term_id)};!function(){n=acf.newPopup({title:i.attr("title"),loading:!0,width:"300px"});var t={action:"acf/fields/taxonomy/add_term",field_key:a.get("key")};e.ajax({url:acf.get("ajaxurl"),data:acf.prepareForAjax(t),type:"post",dataType:"html",success:d})}()},appendTerm:function(e){"select"==this.getRelatedType()?this.appendTermSelect(e):this.appendTermCheckbox(e)},appendTermSelect:function(e){this.select2.addOption({id:e.term_id,text:e.term_label})},appendTermCheckbox:function(t){var i=this.$("[name]:first").attr("name"),a=this.$("ul:first");"checkbox"==this.getRelatedType()&&(i+="[]");var n=e(['
                      • ',"","
                      • "].join(""));if(t.term_parent){var s=a.find('li[data-id="'+t.term_parent+'"]');(a=s.children("ul")).exists()||(a=e('
                          '),s.append(a))}a.append(n)},selectTerm:function(e){"select"==this.getRelatedType()?this.select2.selectOption(e):this.$('input[value="'+e+'"]').prop("checked",!0).trigger("change")},onClickRadio:function(e,t){var i=t.parent("label"),a=i.hasClass("selected");this.$(".selected").removeClass("selected"),i.addClass("selected"),this.get("allow_null")&&a&&(i.removeClass("selected"),t.prop("checked",!1).trigger("change"))}}),acf.registerFieldType(t)},9213:()=>{var e,t;e=jQuery,t=acf.models.DatePickerField.extend({type:"time_picker",$control:function(){return this.$(".acf-time-picker")},initialize:function(){var e=this.$input(),t=this.$inputText(),i={timeFormat:this.get("time_format"),altField:e,altFieldTimeOnly:!1,altTimeFormat:"HH:mm:ss",showButtonPanel:!0,controlType:"select",oneLine:!0,closeText:acf.get("dateTimePickerL10n").selectText,timeOnly:!0,onClose:function(e,t,i){var a=t.dpDiv.find(".ui-datepicker-close");!e&&a.is(":hover")&&i._updateDateTime()}};i=acf.applyFilters("time_picker_args",i,this),acf.newTimePicker(t,i),acf.doAction("time_picker_init",t,i,this)}}),acf.registerFieldType(t),acf.newTimePicker=function(t,i){if(void 0===e.timepicker)return!1;i=i||{},t.timepicker(i),e("body > #ui-datepicker-div").exists()&&e("body > #ui-datepicker-div").wrap('
                          ')}},1525:()=>{var e;jQuery,e=acf.Field.extend({type:"true_false",events:{"change .acf-switch-input":"onChange","focus .acf-switch-input":"onFocus","blur .acf-switch-input":"onBlur","keypress .acf-switch-input":"onKeypress"},$input:function(){return this.$('input[type="checkbox"]')},$switch:function(){return this.$(".acf-switch")},getValue:function(){return this.$input().prop("checked")?1:0},initialize:function(){this.render()},render:function(){var e=this.$switch();if(e.length){var t=e.children(".acf-switch-on"),i=e.children(".acf-switch-off"),a=Math.max(t.width(),i.width());a&&(t.css("min-width",a),i.css("min-width",a))}},switchOn:function(){this.$input().prop("checked",!0),this.$switch().addClass("-on")},switchOff:function(){this.$input().prop("checked",!1),this.$switch().removeClass("-on")},onChange:function(e,t){t.prop("checked")?this.switchOn():this.switchOff()},onFocus:function(e,t){this.$switch().addClass("-focus")},onBlur:function(e,t){this.$switch().removeClass("-focus")},onKeypress:function(e,t){return 37===e.keyCode?this.switchOff():39===e.keyCode?this.switchOn():void 0}}),acf.registerFieldType(e)},5942:()=>{var e;jQuery,e=acf.Field.extend({type:"url",events:{'keyup input[type="url"]':"onkeyup"},$control:function(){return this.$(".acf-input-wrap")},$input:function(){return this.$('input[type="url"]')},initialize:function(){this.render()},isValid:function(){var e=this.val();return!!e&&(-1!==e.indexOf("://")||0===e.indexOf("//"))},render:function(){this.isValid()?this.$control().addClass("-valid"):this.$control().removeClass("-valid")},onkeyup:function(e,t){this.render()}}),acf.registerFieldType(e)},9732:()=>{var e;jQuery,e=acf.models.SelectField.extend({type:"user"}),acf.registerFieldType(e),acf.addFilter("select2_ajax_data",(function(e,t,i,a,n){if(!a)return e;const s=a.get("queryNonce");return s&&s.length&&(e.user_query_nonce=s),e}))},9938:()=>{var e;jQuery,e=acf.Field.extend({type:"wysiwyg",wait:"load",events:{"mousedown .acf-editor-wrap.delay":"onMousedown",unmountField:"disableEditor",remountField:"enableEditor",removeField:"disableEditor"},$control:function(){return this.$(".acf-editor-wrap")},$input:function(){return this.$("textarea")},getMode:function(){return this.$control().hasClass("tmce-active")?"visual":"text"},initialize:function(){this.$control().hasClass("delay")||this.initializeEditor()},initializeEditor:function(){var e=this.$control(),t=this.$input(),i={tinymce:!0,quicktags:!0,toolbar:this.get("toolbar"),mode:this.getMode(),field:this},a=t.attr("id"),n=acf.uniqueId("acf-editor-"),s=t.data(),r=t.val();acf.rename({target:e,search:a,replace:n,destructive:!0}),this.set("id",n,!0),this.$input().data(s).val(r),acf.tinymce.initialize(n,i)},onMousedown:function(e){e.preventDefault();var t=this.$control();t.removeClass("delay"),t.find(".acf-editor-toolbar").remove(),this.initializeEditor()},enableEditor:function(){"visual"==this.getMode()&&acf.tinymce.enable(this.get("id"))},disableEditor:function(){acf.tinymce.destroy(this.get("id"))}}),acf.registerFieldType(e)},5338:()=>{!function(e,t){var i=[];acf.Field=acf.Model.extend({type:"",eventScope:".acf-field",wait:"ready",setup:function(e){this.$el=e,this.inherit(e),this.inherit(this.$control())},val:function(e){return e!==t?this.setValue(e):this.prop("disabled")?null:this.getValue()},getValue:function(){return this.$input().val()},setValue:function(e){return acf.val(this.$input(),e)},__:function(e){return acf._e(this.type,e)},$control:function(){return!1},$input:function(){return this.$("[name]:first")},$inputWrap:function(){return this.$(".acf-input:first")},$labelWrap:function(){return this.$(".acf-label:first")},getInputName:function(){return this.$input().attr("name")||""},parent:function(){var e=this.parents();return!!e.length&&e[0]},parents:function(){var e=this.$el.parents(".acf-field");return acf.getFields(e)},show:function(e,t){var i=acf.show(this.$el,e);return i&&(this.prop("hidden",!1),acf.doAction("show_field",this,t),"conditional_logic"===t&&this.setFieldSettingsLastVisible()),i},hide:function(e,t){var i=acf.hide(this.$el,e);return i&&(this.prop("hidden",!0),acf.doAction("hide_field",this,t),"conditional_logic"===t&&this.setFieldSettingsLastVisible()),i},setFieldSettingsLastVisible:function(){var e=this.$el.parents(".acf-field-settings-main");if(e.length){var t=e.find(".acf-field");t.removeClass("acf-last-visible"),t.not(".acf-hidden").last().addClass("acf-last-visible")}},enable:function(e,t){var i=acf.enable(this.$el,e);return i&&(this.prop("disabled",!1),acf.doAction("enable_field",this,t)),i},disable:function(e,t){var i=acf.disable(this.$el,e);return i&&(this.prop("disabled",!0),acf.doAction("disable_field",this,t)),i},showEnable:function(e,t){return this.enable.apply(this,arguments),this.show.apply(this,arguments)},hideDisable:function(e,t){return this.disable.apply(this,arguments),this.hide.apply(this,arguments)},showNotice:function(e){"object"!=typeof e&&(e={text:e}),this.notice&&this.notice.remove(),e.target=this.$inputWrap(),this.notice=acf.newNotice(e)},removeNotice:function(e){this.notice&&(this.notice.away(e||0),this.notice=!1)},showError:function(i){this.$el.addClass("acf-error"),i!==t&&this.showNotice({text:i,type:"error",dismiss:!1}),acf.doAction("invalid_field",this),this.$el.one("focus change","input, select, textarea",e.proxy(this.removeError,this))},removeError:function(){this.$el.removeClass("acf-error"),this.removeNotice(250),acf.doAction("valid_field",this)},trigger:function(e,t,i){return"invalidField"==e&&(i=!0),acf.Model.prototype.trigger.apply(this,[e,t,i])}}),acf.newField=function(e){var t=e.data("type"),i=a(t),n=new(acf.models[i]||acf.Field)(e);return acf.doAction("new_field",n),n};var a=function(e){return acf.strPascalCase(e||"")+"Field"};acf.registerFieldType=function(e){var t=e.prototype.type,n=a(t);acf.models[n]=e,i.push(t)},acf.getFieldType=function(e){var t=a(e);return acf.models[t]||!1},acf.getFieldTypes=function(e){e=acf.parseArgs(e,{category:""});var t=[];return i.map((function(i){var a=acf.getFieldType(i),n=a.prototype;e.category&&n.category!==e.category||t.push(a)})),t}}(jQuery)},2457:()=>{!function(e,t){acf.findFields=function(t){var i=".acf-field",a=!1;return(t=acf.parseArgs(t,{key:"",name:"",type:"",is:"",parent:!1,sibling:!1,limit:!1,visible:!1,suppressFilters:!1,excludeSubFields:!1})).suppressFilters||(t=acf.applyFilters("find_fields_args",t)),t.key&&(i+='[data-key="'+t.key+'"]'),t.type&&(i+='[data-type="'+t.type+'"]'),t.name&&(i+='[data-name="'+t.name+'"]'),t.is&&(i+=t.is),t.visible&&(i+=":visible"),t.suppressFilters||(i=acf.applyFilters("find_fields_selector",i,t)),t.parent?(a=t.parent.find(i),t.excludeSubFields&&(a=a.not(t.parent.find(".acf-is-subfields .acf-field")))):a=t.sibling?t.sibling.siblings(i):e(i),t.suppressFilters||(a=a.not(".acf-clone .acf-field"),a=acf.applyFilters("find_fields",a)),t.limit&&(a=a.slice(0,t.limit)),a},acf.findField=function(e,t){return acf.findFields({key:e,limit:1,parent:t,suppressFilters:!0})},acf.getField=function(e){e instanceof jQuery||(e=acf.findField(e));var t=e.data("acf");return t||(t=acf.newField(e)),t},acf.getFields=function(t){t instanceof jQuery||(t=acf.findFields(t));var i=[];return t.each((function(){var t=acf.getField(e(this));i.push(t)})),i},acf.findClosestField=function(e){return e.closest(".acf-field")},acf.getClosestField=function(e){var t=acf.findClosestField(e);return this.getField(t)};var i=function(e){var t=e+"_field",i=e+"Field";acf.addAction(t,(function(n){var s=acf.arrayArgs(arguments),r=s.slice(1);["type","name","key"].map((function(e){var i="/"+e+"="+n.get(e);s=[t+i,n].concat(r),acf.doAction.apply(null,s)})),a.indexOf(e)>-1&&n.trigger(i,r)}))},a=["remove","unmount","remount","sortstart","sortstop","show","hide","unload","valid","invalid","enable","disable","duplicate"];["prepare","ready","load","append","remove","unmount","remount","sortstart","sortstop","show","hide","unload"].map((function(e){var t=e,a=e+"_fields",n=e+"_field";acf.addAction(t,(function(e){var t=acf.arrayArgs(arguments).slice(1),i=acf.getFields({parent:e});if(i.length){var n=[a,i].concat(t);acf.doAction.apply(null,n)}})),acf.addAction(a,(function(e){var t=acf.arrayArgs(arguments).slice(1);e.map((function(e,i){var a=[n,e].concat(t);acf.doAction.apply(null,a)}))})),i(e)})),["valid","invalid","enable","disable","new","duplicate"].map(i),new acf.Model({id:"fieldsEventManager",events:{'click .acf-field a[href="#"]':"onClick","change .acf-field":"onChange"},onClick:function(e){e.preventDefault()},onChange:function(){if(e("#_acf_changed").val(1),acf.isGutenbergPostEditor())try{wp.data.dispatch("core/editor").editPost({meta:{_acf_changed:1}})}catch(e){console.log("ACF: Failed to update _acf_changed meta",e)}}}),new acf.Model({id:"duplicateFieldsManager",actions:{duplicate:"onDuplicate",duplicate_fields:"onDuplicateFields"},onDuplicate:function(e,t){var i=acf.getFields({parent:e});if(i.length){var a=acf.findFields({parent:t});acf.doAction("duplicate_fields",i,a)}},onDuplicateFields:function(t,i){t.map((function(t,a){acf.doAction("duplicate_field",t,e(i[a]))}))}})}(jQuery)},8223:()=>{var e;e=jQuery,new acf.Model({priority:90,actions:{new_field:"refresh",show_field:"refresh",hide_field:"refresh",remove_field:"refresh",unmount_field:"refresh",remount_field:"refresh"},refresh:function(){acf.refresh()}}),new acf.Model({priority:1,actions:{sortstart:"onSortstart",sortstop:"onSortstop"},onSortstart:function(e){acf.doAction("unmount",e)},onSortstop:function(e){acf.doAction("remount",e)}}),new acf.Model({actions:{sortstart:"onSortstart"},onSortstart:function(t,i){t.is("tr")&&(i.html('
                          '),t.addClass("acf-sortable-tr-helper"),t.children().each((function(){e(this).width(e(this).width())})),i.height(t.height()+"px"),t.removeClass("acf-sortable-tr-helper"))}}),new acf.Model({actions:{after_duplicate:"onAfterDuplicate"},onAfterDuplicate:function(t,i){var a=[];t.find("select").each((function(t){a.push(e(this).val())})),i.find("select").each((function(t){e(this).val(a[t])}))}}),new acf.Model({id:"tableHelper",priority:20,actions:{refresh:"renderTables"},renderTables:function(t){var i=this;e(".acf-table:visible").each((function(){i.renderTable(e(this))}))},renderTable:function(t){var i=t.find("> thead > tr:visible > th[data-key]"),a=t.find("> tbody > tr:visible > td[data-key]");if(!i.length||!a.length)return!1;i.each((function(t){var i=e(this),n=i.data("key"),s=a.filter('[data-key="'+n+'"]'),r=s.filter(".acf-hidden");s.removeClass("acf-empty"),s.length===r.length?acf.hide(i):(acf.show(i),r.addClass("acf-empty"))})),i.css("width","auto"),i=i.not(".acf-hidden");var n=100;i.length,i.filter("[data-width]").each((function(){var t=e(this).data("width");e(this).css("width",t+"%"),n-=t}));var s=i.not("[data-width]");if(s.length){var r=n/s.length;s.css("width",r+"%"),n=0}n>0&&i.last().css("width","auto"),a.filter(".-collapsed-target").each((function(){var t=e(this);t.parent().hasClass("-collapsed")?t.attr("colspan",i.length):t.removeAttr("colspan")}))}}),new acf.Model({id:"fieldsHelper",priority:30,actions:{refresh:"renderGroups"},renderGroups:function(){var t=this;e(".acf-fields:visible").each((function(){t.renderGroup(e(this))}))},renderGroup:function(t){var i=0,a=0,n=e(),s=t.children(".acf-field[data-width]:visible");return!!s.length&&(t.hasClass("-left")?(s.removeAttr("data-width"),s.css("width","auto"),!1):(s.removeClass("-r0 -c0").css({"min-height":0}),s.each((function(t){var s=e(this),r=s.position(),o=Math.ceil(r.top),c=Math.ceil(r.left);n.length&&o>i&&(n.css({"min-height":a+"px"}),r=s.position(),o=Math.ceil(r.top),c=Math.ceil(r.left),i=0,a=0,n=e()),acf.get("rtl")&&(c=Math.ceil(s.parent().width()-(r.left+s.outerWidth()))),0==o?s.addClass("-r0"):0==c&&s.addClass("-c0");var l=Math.ceil(s.outerHeight())+1;a=Math.max(a,l),i=Math.max(i,o),n=n.add(s)})),void(n.length&&n.css({"min-height":a+"px"}))))}}),new acf.Model({id:"bodyClassShiftHelper",events:{keydown:"onKeyDown",keyup:"onKeyUp"},isShiftKey:function(e){return 16===e.keyCode},onKeyDown:function(t){this.isShiftKey(t)&&e("body").addClass("acf-keydown-shift")},onKeyUp:function(t){this.isShiftKey(t)&&e("body").removeClass("acf-keydown-shift")}})},1218:()=>{!function(e,t){acf.newMediaPopup=function(e){var t=null;return e=acf.parseArgs(e,{mode:"select",title:"",button:"",type:"",field:!1,allowedTypes:"",library:"all",multiple:!1,attachment:0,autoOpen:!0,open:function(){},select:function(){},close:function(){}}),t="edit"==e.mode?new acf.models.EditMediaPopup(e):new acf.models.SelectMediaPopup(e),e.autoOpen&&setTimeout((function(){t.open()}),1),acf.doAction("new_media_popup",t),t};var i=function(){var e=acf.get("post_id");return acf.isNumeric(e)?e:0};acf.getMimeTypes=function(){return this.get("mimeTypes")},acf.getMimeType=function(e){var t=acf.getMimeTypes();if(void 0!==t[e])return t[e];for(var i in t)if(-1!==i.indexOf(e))return t[i];return!1};var a=acf.Model.extend({id:"MediaPopup",data:{},defaults:{},frame:!1,setup:function(t){e.extend(this.data,t)},initialize:function(){var e=this.getFrameOptions();this.addFrameStates(e);var t=wp.media(e);t.acf=this,this.addFrameEvents(t,e),this.frame=t},open:function(){this.frame.open()},close:function(){this.frame.close()},remove:function(){this.frame.detach(),this.frame.remove()},getFrameOptions:function(){var e={title:this.get("title"),multiple:this.get("multiple"),library:{},states:[]};return this.get("type")&&(e.library.type=this.get("type")),"uploadedTo"===this.get("library")&&(e.library.uploadedTo=i()),this.get("attachment")&&(e.library.post__in=[this.get("attachment")]),this.get("button")&&(e.button={text:this.get("button")}),e},addFrameStates:function(e){var t=wp.media.query(e.library);this.get("field")&&acf.isset(t,"mirroring","args")&&(t.mirroring.args._acfuploader=this.get("field")),e.states.push(new wp.media.controller.Library({library:t,multiple:this.get("multiple"),title:this.get("title"),priority:20,filterable:"all",editable:!0,allowLocalEdits:!0})),acf.isset(wp,"media","controller","EditImage")&&e.states.push(new wp.media.controller.EditImage)},addFrameEvents:function(e,t){e.on("open",(function(){this.$el.closest(".media-modal").addClass("acf-media-modal -"+this.acf.get("mode"))}),e),e.on("content:render:edit-image",(function(){var e=this.state().get("image"),t=new wp.media.view.EditImage({model:e,controller:this}).render();this.content.set(t),t.loadEditor()}),e),e.on("select",(function(){var t=e.state().get("selection");t&&t.each((function(t,i){e.acf.get("select").apply(e.acf,[t,i])}))})),e.on("close",(function(){setTimeout((function(){e.acf.get("close").apply(e.acf),e.acf.remove()}),1)}))}});acf.models.SelectMediaPopup=a.extend({id:"SelectMediaPopup",setup:function(e){e.button||(e.button=acf._x("Select","verb")),a.prototype.setup.apply(this,arguments)},addFrameEvents:function(e,t){acf.isset(_wpPluploadSettings,"defaults","multipart_params")&&(_wpPluploadSettings.defaults.multipart_params._acfuploader=this.get("field"),e.on("open",(function(){delete _wpPluploadSettings.defaults.multipart_params._acfuploader}))),e.on("content:activate:browse",(function(){var t=!1;try{t=e.content.get().toolbar}catch(e){return void console.log(e)}e.acf.customizeFilters.apply(e.acf,[t])})),a.prototype.addFrameEvents.apply(this,arguments)},customizeFilters:function(t){var i=t.get("filters");if("image"==this.get("type")&&(i.filters.all.text=acf.__("All images"),delete i.filters.audio,delete i.filters.video,delete i.filters.image,e.each(i.filters,(function(e,t){t.props.type=t.props.type||"image"}))),this.get("allowedTypes")&&this.get("allowedTypes").split(" ").join("").split(".").join("").split(",").map((function(e){var t=acf.getMimeType(e);if(t){var a={text:t,props:{status:null,type:t,uploadedTo:null,orderby:"date",order:"DESC"},priority:20};i.filters[t]=a}})),"uploadedTo"===this.get("library")){var a=this.frame.options.library.uploadedTo;delete i.filters.unattached,delete i.filters.uploaded,e.each(i.filters,(function(e,t){t.text+=" ("+acf.__("Uploaded to this post")+")",t.props.uploadedTo=a}))}var n=this.get("field");e.each(i.filters,(function(e,t){t.props._acfuploader=n})),t.get("search").model.attributes._acfuploader=n,i.renderFilters&&i.renderFilters()}}),acf.models.EditMediaPopup=a.extend({id:"SelectMediaPopup",setup:function(e){e.button||(e.button=acf._x("Update","verb")),a.prototype.setup.apply(this,arguments)},addFrameEvents:function(e,t){e.on("open",(function(){this.$el.closest(".media-modal").addClass("acf-expanded"),"browse"!=this.content.mode()&&this.content.mode("browse");var t=this.state().get("selection"),i=wp.media.attachment(e.acf.get("attachment"));t.add(i)}),e),a.prototype.addFrameEvents.apply(this,arguments)}}),new acf.Model({id:"customizePrototypes",wait:"ready",initialize:function(){if(acf.isset(window,"wp","media","view")){var e=i();e&&acf.isset(wp,"media","view","settings","post")&&(wp.media.view.settings.post.id=e),this.customizeAttachmentsButton(),this.customizeAttachmentsRouter(),this.customizeAttachmentFilters(),this.customizeAttachmentCompat(),this.customizeAttachmentLibrary()}},customizeAttachmentsButton:function(){if(acf.isset(wp,"media","view","Button")){var e=wp.media.view.Button;wp.media.view.Button=e.extend({initialize:function(){var e=_.defaults(this.options,this.defaults);this.model=new Backbone.Model(e),this.listenTo(this.model,"change",this.render)}})}},customizeAttachmentsRouter:function(){if(acf.isset(wp,"media","view","Router")){var t=wp.media.view.Router;wp.media.view.Router=t.extend({addExpand:function(){var t=e(['',''+acf.__("Expand Details")+"",''+acf.__("Collapse Details")+"",""].join(""));t.on("click",(function(t){t.preventDefault();var i=e(this).closest(".media-modal");i.hasClass("acf-expanded")?i.removeClass("acf-expanded"):i.addClass("acf-expanded")})),this.$el.append(t)},initialize:function(){return t.prototype.initialize.apply(this,arguments),this.addExpand(),this}})}},customizeAttachmentFilters:function(){acf.isset(wp,"media","view","AttachmentFilters","All")&&(wp.media.view.AttachmentFilters.All.prototype.renderFilters=function(){this.$el.html(_.chain(this.filters).map((function(t,i){return{el:e("").val(i).html(t.text)[0],priority:t.priority||50}}),this).sortBy("priority").pluck("el").value())})},customizeAttachmentCompat:function(){if(acf.isset(wp,"media","view","AttachmentCompat")){var t=wp.media.view.AttachmentCompat,i=!1;wp.media.view.AttachmentCompat=t.extend({render:function(){return this.rendered?this:(t.prototype.render.apply(this,arguments),this.$("#acf-form-data").length?(clearTimeout(i),i=setTimeout(e.proxy((function(){this.rendered=!0,acf.doAction("append",this.$el)}),this),50),this):this)},save:function(e){var t;e&&e.preventDefault(),t=acf.serializeForAjax(this.$el),this.controller.trigger("attachment:compat:waiting",["waiting"]),this.model.saveCompat(t).always(_.bind(this.postSave,this))}})}},customizeAttachmentLibrary:function(){if(acf.isset(wp,"media","view","Attachment","Library")){var e=wp.media.view.Attachment.Library;wp.media.view.Attachment.Library=e.extend({render:function(){var t=acf.isget(this,"controller","acf"),i=acf.isget(this,"model","attributes");if(t&&i){i.acf_errors&&this.$el.addClass("acf-disabled");var a=t.get("selected");a&&a.indexOf(i.id)>-1&&this.$el.addClass("acf-selected")}return e.prototype.render.apply(this,arguments)},toggleSelection:function(t){this.collection;var i=this.options.selection,a=this.model,n=(i.single(),this.controller),s=acf.isget(this,"model","attributes","acf_errors"),r=n.$el.find(".media-frame-content .media-sidebar");if(r.children(".acf-selection-error").remove(),r.children().removeClass("acf-hidden"),n&&s){var o=acf.isget(this,"model","attributes","filename");return r.children().addClass("acf-hidden"),r.prepend(['
                          ',''+acf.__("Restricted")+"",''+o+"",''+s+"","
                          "].join("")),i.reset(),void i.single(a)}return e.prototype.toggleSelection.apply(this,arguments)}})}}})}(jQuery)},993:()=>{var e;e=jQuery,new acf.Model({wait:"prepare",priority:1,initialize:function(){(acf.get("postboxes")||[]).map(acf.newPostbox)}}),acf.getPostbox=function(t){return"string"==typeof arguments[0]&&(t=e("#"+arguments[0])),acf.getInstance(t)},acf.getPostboxes=function(){return acf.getInstances(e(".acf-postbox"))},acf.newPostbox=function(e){return new acf.models.Postbox(e)},acf.models.Postbox=acf.Model.extend({data:{id:"",key:"",style:"default",label:"top",edit:""},setup:function(t){t.editLink&&(t.edit=t.editLink),e.extend(this.data,t),this.$el=this.$postbox()},$postbox:function(){return e("#"+this.get("id"))},$hide:function(){return e("#"+this.get("id")+"-hide")},$hideLabel:function(){return this.$hide().parent()},$hndle:function(){return this.$("> .hndle")},$handleActions:function(){return this.$("> .postbox-header .handle-actions")},$inside:function(){return this.$("> .inside")},isVisible:function(){return this.$el.hasClass("acf-hidden")},isHiddenByScreenOptions:function(){return this.$el.hasClass("hide-if-js")||"none"==this.$el.css("display")},initialize:function(){if(this.$el.addClass("acf-postbox"),"block"!==acf.get("editor")){var e=this.get("style");"default"!==e&&this.$el.addClass(e)}this.$inside().addClass("acf-fields").addClass("-"+this.get("label"));var t=this.get("edit");if(t){var i='',a=this.$handleActions();a.length?a.prepend(i):this.$hndle().append(i)}this.show()},show:function(){this.$el.hasClass("hide-if-js")?this.$hide().prop("checked",!1):(this.$hideLabel().show(),this.$hide().prop("checked",!0),this.$el.show().removeClass("acf-hidden"),acf.doAction("show_postbox",this))},enable:function(){acf.enable(this.$el,"postbox")},showEnable:function(){this.enable(),this.show()},hide:function(){this.$hideLabel().hide(),this.$el.hide().addClass("acf-hidden"),acf.doAction("hide_postbox",this)},disable:function(){acf.disable(this.$el,"postbox")},hideDisable:function(){this.disable(),this.hide()},html:function(e){this.$inside().html(e),acf.doAction("append",this.$el)}})},9400:()=>{var e;e=jQuery,acf.screen=new acf.Model({active:!0,xhr:!1,timeout:!1,wait:"load",events:{"change #page_template":"onChange","change #parent_id":"onChange","change #post-formats-select":"onChange","change .categorychecklist":"onChange","change .tagsdiv":"onChange",'change .acf-taxonomy-field[data-save="1"]':"onChange","change #product-type":"onChange"},isPost:function(){return"post"===acf.get("screen")},isUser:function(){return"user"===acf.get("screen")},isTaxonomy:function(){return"taxonomy"===acf.get("screen")},isAttachment:function(){return"attachment"===acf.get("screen")},isNavMenu:function(){return"nav_menu"===acf.get("screen")},isWidget:function(){return"widget"===acf.get("screen")},isComment:function(){return"comment"===acf.get("screen")},getPageTemplate:function(){var t=e("#page_template");return t.length?t.val():null},getPageParent:function(t,i){return(i=e("#parent_id")).length?i.val():null},getPageType:function(e,t){return this.getPageParent()?"child":"parent"},getPostType:function(){return e("#post_type").val()},getPostFormat:function(t,i){if((i=e("#post-formats-select input:checked")).length){var a=i.val();return"0"==a?"standard":a}return null},getPostCoreTerms:function(){var t={},i=acf.serialize(e(".categorydiv, .tagsdiv"));for(var a in i.tax_input&&(t=i.tax_input),i.post_category&&(t.category=i.post_category),t)acf.isArray(t[a])||(t[a]=t[a].split(/,[\s]?/));return t},getPostTerms:function(){var e=this.getPostCoreTerms();for(var t in acf.getFields({type:"taxonomy"}).map((function(t){if(t.get("save")){var i=t.val(),a=t.get("taxonomy");i&&(e[a]=e[a]||[],i=acf.isArray(i)?i:[i],e[a]=e[a].concat(i))}})),null!==(productType=this.getProductType())&&(e.product_type=[productType]),e)e[t]=acf.uniqueArray(e[t]);return e},getProductType:function(){var t=e("#product-type");return t.length?t.val():null},check:function(){if("post"===acf.get("screen")){this.xhr&&this.xhr.abort();var t=acf.parseArgs(this.data,{action:"acf/ajax/check_screen",screen:acf.get("screen"),exists:[]});this.isPost()&&(t.post_id=acf.get("post_id")),null!==(postType=this.getPostType())&&(t.post_type=postType),null!==(pageTemplate=this.getPageTemplate())&&(t.page_template=pageTemplate),null!==(pageParent=this.getPageParent())&&(t.page_parent=pageParent),null!==(pageType=this.getPageType())&&(t.page_type=pageType),null!==(postFormat=this.getPostFormat())&&(t.post_format=postFormat),null!==(postTerms=this.getPostTerms())&&(t.post_terms=postTerms),acf.getPostboxes().map((function(e){t.exists.push(e.get("key"))})),t=acf.applyFilters("check_screen_args",t),this.xhr=e.ajax({url:acf.get("ajaxurl"),data:acf.prepareForAjax(t),type:"post",dataType:"json",context:this,success:function(e){"post"==acf.get("screen")?this.renderPostScreen(e):"user"==acf.get("screen")&&this.renderUserScreen(e),acf.doAction("check_screen_complete",e,t)}})}},onChange:function(e,t){this.setTimeout(this.check,1)},renderPostScreen:function(t){var i=function(t,i){var a=e._data(t[0]).events;for(var n in a)for(var s=0;s=0;n--)if(e("#"+i[n]).length)return e("#"+i[n]).after(e("#"+t));for(n=a+1;n=5.5)var o=['
                          ','

                          ',""+acf.escHtml(n.title)+"","

                          ",'
                          ','","
                          ","
                          "].join("");else o=['",'

                          ',""+acf.escHtml(n.title)+"","

                          "].join("");n.classes||(n.classes="");var c=e(['
                          ',o,'
                          ',n.html,"
                          ","
                          "].join(""));if(e("#adv-settings").length){var l=e("#adv-settings .metabox-prefs"),d=e(['"].join(""));i(l.find("input").first(),d.find("input")),l.append(d)}e(".postbox").length&&(i(e(".postbox .handlediv").first(),c.children(".handlediv")),i(e(".postbox .hndle").first(),c.children(".hndle"))),"side"===n.position?e("#"+n.position+"-sortables").append(c):e("#"+n.position+"-sortables").prepend(c);var u=[];if(t.results.map((function(t){n.position===t.position&&e("#"+n.position+"-sortables #"+t.id).length&&u.push(t.id)})),a(n.id,u),t.sorted)for(var f in t.sorted){let e=t.sorted[f];if("string"==typeof e&&(e=e.split(","),a(n.id,e)))break}r=acf.newPostbox(n),acf.doAction("append",c),acf.doAction("append_postbox",r)}return r.showEnable(),t.visible.push(n.id),n})),acf.getPostboxes().map((function(e){-1===t.visible.indexOf(e.get("id"))&&(e.hideDisable(),t.hidden.push(e.get("id")))})),e("#acf-style").html(t.style),acf.doAction("refresh_post_screen",t)},renderUserScreen:function(e){}}),new acf.Model({postEdits:{},wait:"prepare",initialize:function(){acf.isGutenbergPostEditor()&&(wp.data.subscribe(acf.debounce(this.onChange).bind(this)),acf.screen.getPageTemplate=this.getPageTemplate,acf.screen.getPageParent=this.getPageParent,acf.screen.getPostType=this.getPostType,acf.screen.getPostFormat=this.getPostFormat,acf.screen.getPostCoreTerms=this.getPostCoreTerms,acf.unload.disable(),parseFloat(acf.get("wp_version"))>=5.3&&this.addAction("refresh_post_screen",this.onRefreshPostScreen),wp.domReady(acf.refresh))},onChange:function(){var e=["template","parent","format"];(wp.data.select("core").getTaxonomies()||[]).map((function(t){e.push(t.rest_base)}));var t=wp.data.select("core/editor").getPostEdits(),i={};e.map((function(e){void 0!==t[e]&&(i[e]=t[e])})),JSON.stringify(i)!==JSON.stringify(this.postEdits)&&(this.postEdits=i,acf.screen.check())},getPageTemplate:function(){return wp.data.select("core/editor").getEditedPostAttribute("template")},getPageParent:function(e,t){return wp.data.select("core/editor").getEditedPostAttribute("parent")},getPostType:function(){return wp.data.select("core/editor").getEditedPostAttribute("type")},getPostFormat:function(e,t){return wp.data.select("core/editor").getEditedPostAttribute("format")},getPostCoreTerms:function(){var e={};return(wp.data.select("core").getTaxonomies()||[]).map((function(t){var i=wp.data.select("core/editor").getEditedPostAttribute(t.rest_base);i&&(e[t.slug]=i)})),e},onRefreshPostScreen:function(e){var t=wp.data.select("core/edit-post"),i=wp.data.dispatch("core/edit-post"),a={};t.getActiveMetaBoxLocations().map((function(e){a[e]=t.getMetaBoxesPerLocation(e)}));var n=[];for(var s in a)a[s].map((function(e){n.push(e.id)}));for(var s in e.results.filter((function(e){return-1===n.indexOf(e.id)})).map((function(e,t){var i=e.position;a[i]=a[i]||[],a[i].push({id:e.id,title:e.title})})),a)a[s]=a[s].filter((function(t){return-1===e.hidden.indexOf(t.id)}));i.setAvailableMetaBoxesPerLocation(a)}})},2900:()=>{!function(e,t){function i(){return acf.isset(window,"jQuery","fn","select2","amd")?4:!!acf.isset(window,"Select2")&&3}acf.newSelect2=function(e,t){if(t=acf.parseArgs(t,{allowNull:!1,placeholder:"",multiple:!1,field:!1,ajax:!1,ajaxAction:"",ajaxData:function(e){return e},ajaxResults:function(e){return e},templateSelection:!1,templateResult:!1,dropdownCssClass:"",suppressFilters:!1}),4==i())var a=new n(e,t);else a=new s(e,t);return acf.doAction("new_select2",a),a};var a=acf.Model.extend({setup:function(t,i){e.extend(this.data,i),this.$el=t},initialize:function(){},selectOption:function(e){var t=this.getOption(e);t.prop("selected")||t.prop("selected",!0).trigger("change")},unselectOption:function(e){var t=this.getOption(e);t.prop("selected")&&t.prop("selected",!1).trigger("change")},getOption:function(e){return this.$('option[value="'+e+'"]')},addOption:function(t){t=acf.parseArgs(t,{id:"",text:"",selected:!1});var i=this.getOption(t.id);return i.length||((i=e("")).html(t.text),i.attr("value",t.id),i.prop("selected",t.selected),this.$el.append(i)),i},getValue:function(){var t=[],i=this.$el.find("option:selected");return i.exists()?((i=i.sort((function(e,t){return+e.getAttribute("data-i")-+t.getAttribute("data-i")}))).each((function(){var i=e(this);t.push({$el:i,id:i.attr("value"),text:i.text()})})),t):t},mergeOptions:function(){},getChoices:function(){var t=function(i){var a=[];return i.children().each((function(){var i=e(this);i.is("optgroup")?a.push({text:i.attr("label"),children:t(i)}):a.push({id:i.attr("value"),text:i.text()})})),a};return t(this.$el)},getAjaxData:function(e){var t={action:this.get("ajaxAction"),s:e.term||"",paged:e.page||1},i=this.get("field");i&&(t.field_key=i.get("key"));var a=this.get("ajaxData");return a&&(t=a.apply(this,[t,e])),t=acf.applyFilters("select2_ajax_data",t,this.data,this.$el,i||!1,this),acf.prepareForAjax(t)},getAjaxResults:function(e,t){e=acf.parseArgs(e,{results:!1,more:!1});var i=this.get("ajaxResults");return i&&(e=i.apply(this,[e,t])),acf.applyFilters("select2_ajax_results",e,t,this)},processAjaxResults:function(t,i){return(t=this.getAjaxResults(t,i)).more&&(t.pagination={more:!0}),setTimeout(e.proxy(this.mergeOptions,this),1),t},destroy:function(){this.$el.data("select2")&&this.$el.select2("destroy"),this.$el.siblings(".select2-container").remove()}}),n=a.extend({initialize:function(){var i=this.$el,a={width:"100%",allowClear:this.get("allowNull"),placeholder:this.get("placeholder"),multiple:this.get("multiple"),templateSelection:this.get("templateSelection"),templateResult:this.get("templateResult"),dropdownCssClass:this.get("dropdownCssClass"),suppressFilters:this.get("suppressFilters"),data:[],escapeMarkup:function(e){return"string"!=typeof e?e:acf.escHtml(e)}};a.templateSelection||delete a.templateSelection,a.templateResult||delete a.templateResult,a.dropdownCssClass||delete a.dropdownCssClass,acf.isset(window,"jQuery","fn","selectWoo")?(delete a.templateSelection,delete a.templateResult):a.templateSelection||(a.templateSelection=function(t){var i=e('');return i.html(acf.strEscape(t.text)),i.data("element",t.element),i}),a.multiple&&this.getValue().map((function(e){e.$el.detach().appendTo(i)}));var n=i.attr("data-ajax");if(n!==t&&(i.removeData("ajax"),i.removeAttr("data-ajax")),this.get("ajax")&&(a.ajax={url:acf.get("ajaxurl"),delay:250,dataType:"json",type:"post",cache:!1,data:e.proxy(this.getAjaxData,this),processResults:e.proxy(this.processAjaxResults,this)}),!a.suppressFilters){var s=this.get("field");a=acf.applyFilters("select2_args",a,i,this.data,s||!1,this)}i.select2(a);var r=i.next(".select2-container");if(a.multiple){var o=r.find("ul");o.sortable({stop:function(t){o.find(".select2-selection__choice").each((function(){if(e(this).data("data"))var t=e(e(this).data("data").element);else t=e(e(this).find("span.acf-selection").data("element"));t.detach().appendTo(i)})),i.trigger("change")}}),i.on("select2:select",this.proxy((function(e){this.getOption(e.params.data.id).detach().appendTo(this.$el)})))}i.on("select2:open",(()=>{e(".select2-container--open .select2-search__field").get(-1).focus()})),r.addClass("-acf"),n!==t&&i.attr("data-ajax",n),a.suppressFilters||acf.doAction("select2_init",i,a,this.data,s||!1,this)},mergeOptions:function(){var t=!1,i=!1;e('.select2-results__option[role="group"]').each((function(){var a=e(this).children("ul"),n=e(this).children("strong");if(i&&i.text()===n.text())return t.append(a.children()),void e(this).remove();t=a,i=n}))}}),s=a.extend({initialize:function(){var t=this.$el,i=this.getValue(),a=this.get("multiple"),n={width:"100%",allowClear:this.get("allowNull"),placeholder:this.get("placeholder"),separator:"||",multiple:this.get("multiple"),data:this.getChoices(),escapeMarkup:function(e){return acf.escHtml(e)},dropdownCss:{"z-index":"999999999"},initSelection:function(e,t){t(a?i:i.shift())}},s=t.siblings("input");s.length||(s=e(''),t.before(s)),inputValue=i.map((function(e){return e.id})).join("||"),s.val(inputValue),n.multiple&&i.map((function(e){e.$el.detach().appendTo(t)})),n.allowClear&&(n.data=n.data.filter((function(e){return""!==e.id}))),t.removeData("ajax"),t.removeAttr("data-ajax"),this.get("ajax")&&(n.ajax={url:acf.get("ajaxurl"),quietMillis:250,dataType:"json",type:"post",cache:!1,data:e.proxy(this.getAjaxData,this),results:e.proxy(this.processAjaxResults,this)});var r=this.get("field");n=acf.applyFilters("select2_args",n,t,this.data,r||!1,this),s.select2(n);var o=s.select2("container"),c=e.proxy(this.getOption,this);if(n.multiple){var l=o.find("ul");l.sortable({stop:function(){l.find(".select2-search-choice").each((function(){var i=e(this).data("select2Data");c(i.id).detach().appendTo(t)})),t.trigger("change")}})}s.on("select2-selecting",(function(i){var a=i.choice,n=c(a.id);n.length||(n=e('")),n.detach().appendTo(t)})),o.addClass("-acf"),acf.doAction("select2_init",t,n,this.data,r||!1,this),s.on("change",(function(){var e=s.val();e.indexOf("||")&&(e=e.split("||")),t.val(e).trigger("change")})),t.hide()},mergeOptions:function(){var t=!1;e("#select2-drop .select2-result-with-children").each((function(){var i=e(this).children("ul"),a=e(this).children(".select2-result-label");if(t&&t.text()===a.text())return t.append(i.children()),void e(this).remove();t=a}))},getAjaxData:function(e,t){var i={term:e,page:t},n=this.get("field");return i=acf.applyFilters("select2_ajax_data",i,this.data,this.$el,n||!1,this),a.prototype.getAjaxData.apply(this,[i])}});new acf.Model({priority:5,wait:"prepare",actions:{duplicate:"onDuplicate"},initialize:function(){var e=acf.get("locale"),t=(acf.get("rtl"),acf.get("select2L10n")),a=i();return!!t&&0!==e.indexOf("en")&&void(4==a?this.addTranslations4():3==a&&this.addTranslations3())},addTranslations4:function(){var e=acf.get("select2L10n"),t=acf.get("locale");t=t.replace("_","-");var i={errorLoading:function(){return e.load_fail},inputTooLong:function(t){var i=t.input.length-t.maximum;return i>1?e.input_too_long_n.replace("%d",i):e.input_too_long_1},inputTooShort:function(t){var i=t.minimum-t.input.length;return i>1?e.input_too_short_n.replace("%d",i):e.input_too_short_1},loadingMore:function(){return e.load_more},maximumSelected:function(t){var i=t.maximum;return i>1?e.selection_too_long_n.replace("%d",i):e.selection_too_long_1},noResults:function(){return e.matches_0},searching:function(){return e.searching}};jQuery.fn.select2.amd.define("select2/i18n/"+t,[],(function(){return i}))},addTranslations3:function(){var t=acf.get("select2L10n"),i=acf.get("locale");i=i.replace("_","-");var a={formatMatches:function(e){return e>1?t.matches_n.replace("%d",e):t.matches_1},formatNoMatches:function(){return t.matches_0},formatAjaxError:function(){return t.load_fail},formatInputTooShort:function(e,i){var a=i-e.length;return a>1?t.input_too_short_n.replace("%d",a):t.input_too_short_1},formatInputTooLong:function(e,i){var a=e.length-i;return a>1?t.input_too_long_n.replace("%d",a):t.input_too_long_1},formatSelectionTooBig:function(e){return e>1?t.selection_too_long_n.replace("%d",e):t.selection_too_long_1},formatLoadMore:function(){return t.load_more},formatSearching:function(){return t.searching}};e.fn.select2.locales=e.fn.select2.locales||{},e.fn.select2.locales[i]=a,e.extend(e.fn.select2.defaults,a)},onDuplicate:function(e,t){t.find(".select2-container").remove()}})}(jQuery)},1087:()=>{var e;e=jQuery,acf.tinymce={defaults:function(){return"undefined"!=typeof tinyMCEPreInit&&{tinymce:tinyMCEPreInit.mceInit.acf_content,quicktags:tinyMCEPreInit.qtInit.acf_content}},initialize:function(e,t){(t=acf.parseArgs(t,{tinymce:!0,quicktags:!0,toolbar:"full",mode:"visual",field:!1})).tinymce&&this.initializeTinymce(e,t),t.quicktags&&this.initializeQuicktags(e,t)},initializeTinymce:function(t,i){var a=e("#"+t),n=this.defaults(),s=acf.get("toolbars"),r=i.field||!1;if(r.$el,"undefined"==typeof tinymce)return!1;if(!n)return!1;if(tinymce.get(t))return this.enable(t);var o=e.extend({},n.tinymce,i.tinymce);o.id=t,o.selector="#"+t;var c=i.toolbar;if(c&&s&&s[c])for(var l=1;l<=4;l++)o["toolbar"+l]=s[c][l]||"";if(o.setup=function(e){e.on("change",(function(t){e.save(),a.trigger("change")})),e.on("mouseup",(function(e){var t=new MouseEvent("mouseup");window.dispatchEvent(t)}))},o.wp_autoresize_on=!1,o.tadv_noautop||(o.wpautop=!0),o=acf.applyFilters("wysiwyg_tinymce_settings",o,t,r),tinyMCEPreInit.mceInit[t]=o,"visual"==i.mode){tinymce.init(o);var d=tinymce.get(t);if(!d)return!1;d.acf=i.field,acf.doAction("wysiwyg_tinymce_init",d,d.id,o,r)}},initializeQuicktags:function(t,i){var a=this.defaults();if("undefined"==typeof quicktags)return!1;if(!a)return!1;var n=e.extend({},a.quicktags,i.quicktags);n.id=t;var s=i.field||!1;s.$el,n=acf.applyFilters("wysiwyg_quicktags_settings",n,n.id,s),tinyMCEPreInit.qtInit[t]=n;var r=quicktags(n);if(!r)return!1;this.buildQuicktags(r),acf.doAction("wysiwyg_quicktags_init",r,r.id,n,s)},buildQuicktags:function(e){var t,i,a,n,s,r,o,c;for(r in e.canvas,t=e.name,i=e.settings,n="",a={},o="",c=e.id,i.buttons&&(o=","+i.buttons+","),edButtons)edButtons[r]&&(s=edButtons[r].id,o&&-1!==",strong,em,link,block,del,ins,img,ul,ol,li,code,more,close,".indexOf(","+s+",")&&-1===o.indexOf(","+s+",")||edButtons[r].instance&&edButtons[r].instance!==c||(a[s]=edButtons[r],edButtons[r].html&&(n+=edButtons[r].html(t+"_"))));o&&-1!==o.indexOf(",dfw,")&&(a.dfw=new QTags.DFWButton,n+=a.dfw.html(t+"_")),"rtl"===document.getElementsByTagName("html")[0].dir&&(a.textdirection=new QTags.TextDirectionButton,n+=a.textdirection.html(t+"_")),e.toolbar.innerHTML=n,e.theButtons=a,"undefined"!=typeof jQuery&&jQuery(document).triggerHandler("quicktags-init",[e])},disable:function(e){this.destroyTinymce(e)},remove:function(e){this.destroyTinymce(e)},destroy:function(e){this.destroyTinymce(e)},destroyTinymce:function(e){if("undefined"==typeof tinymce)return!1;var t=tinymce.get(e);return!!t&&(t.save(),t.destroy(),!0)},enable:function(e){this.enableTinymce(e)},enableTinymce:function(t){return"undefined"!=typeof switchEditors&&void 0!==tinyMCEPreInit.mceInit[t]&&(e("#"+t).show(),switchEditors.go(t,"tmce"),!0)}},new acf.Model({priority:5,actions:{prepare:"onPrepare",ready:"onReady"},onPrepare:function(){var t=e("#acf-hidden-wp-editor");t.exists()&&t.appendTo("body")},onReady:function(){acf.isset(window,"wp","oldEditor")&&(wp.editor.autop=wp.oldEditor.autop,wp.editor.removep=wp.oldEditor.removep),acf.isset(window,"tinymce","on")&&tinymce.on("AddEditor",(function(e){var t=e.editor;"acf"===t.id.substr(0,3)&&(t=tinymce.editors.content||t,tinymce.activeEditor=t,wpActiveEditor=t.id)}))}})},963:()=>{var e;e=jQuery,acf.unload=new acf.Model({wait:"load",active:!0,changed:!1,actions:{validation_failure:"startListening",validation_success:"stopListening"},events:{"change form .acf-field":"startListening","submit form":"stopListening"},enable:function(){this.active=!0},disable:function(){this.active=!1},reset:function(){this.stopListening()},startListening:function(){!this.changed&&this.active&&(this.changed=!0,e(window).on("beforeunload",this.onUnload))},stopListening:function(){this.changed=!1,e(window).off("beforeunload",this.onUnload)},onUnload:function(){return acf.__("The changes you made will be lost if you navigate away from this page")}})},2631:()=>{!function(e,t){var i=acf.Model.extend({id:"Validator",data:{errors:[],notice:null,status:""},events:{"changed:status":"onChangeStatus"},addErrors:function(e){e.map(this.addError,this)},addError:function(e){this.data.errors.push(e)},hasErrors:function(){return this.data.errors.length},clearErrors:function(){return this.data.errors=[]},getErrors:function(){return this.data.errors},getFieldErrors:function(){var e=[],t=[];return this.getErrors().map((function(i){if(i.input){var a=t.indexOf(i.input);a>-1?e[a]=i:(e.push(i),t.push(i.input))}})),e},getGlobalErrors:function(){return this.getErrors().filter((function(e){return!e.input}))},showErrors:function(){if(this.hasErrors()){var t=this.getFieldErrors(),i=this.getGlobalErrors(),a=0,n=!1;t.map((function(e){var t=this.$('[name="'+e.input+'"]').first();if(t.length||(t=this.$('[name^="'+e.input+'"]').first()),t.length){a++;var i=acf.getClosestField(t);r(i.$el),i.showError(e.message),n||(n=i.$el)}}),this);var s=acf.__("Validation failed");if(i.map((function(e){s+=". "+e.message})),1==a?s+=". "+acf.__("1 field requires attention"):a>1&&(s+=". "+acf.__("%d fields require attention").replace("%d",a)),this.has("notice"))this.get("notice").update({type:"error",text:s});else{var o=acf.newNotice({type:"error",text:s,target:this.$el});this.set("notice",o)}this.$el.parents(".acf-popup-box").length||(n||(n=this.get("notice").$el),setTimeout((function(){e("html, body").animate({scrollTop:n.offset().top-e(window).height()/2},500)}),10))}},onChangeStatus:function(e,t,i,a){this.$el.removeClass("is-"+a).addClass("is-"+i)},validate:function(t){if(t=acf.parseArgs(t,{event:!1,reset:!1,loading:function(){},complete:function(){},failure:function(){},success:function(e){e.submit()}}),"valid"==this.get("status"))return!0;if("validating"==this.get("status"))return!1;if(!this.$(".acf-field").length)return!0;if(t.event){var i=e.Event(null,t.event);t.success=function(){acf.enableSubmit(e(i.target)).trigger(i)}}acf.doAction("validation_begin",this.$el),acf.lockForm(this.$el),t.loading(this.$el,this),this.set("status","validating");var a=acf.serialize(this.$el);return a.action="acf/validate_save_post",e.ajax({url:acf.get("ajaxurl"),data:acf.prepareForAjax(a),type:"post",dataType:"json",context:this,success:function(e){if(acf.isAjaxSuccess(e)){var t=acf.applyFilters("validation_complete",e.data,this.$el,this);t.valid||this.addErrors(t.errors)}},complete:function(){acf.unlockForm(this.$el),this.hasErrors()?(this.set("status","invalid"),acf.doAction("validation_failure",this.$el,this),this.showErrors(),t.failure(this.$el,this)):(this.set("status","valid"),this.has("notice")&&this.get("notice").update({type:"success",text:acf.__("Validation successful"),timeout:1e3}),acf.doAction("validation_success",this.$el,this),acf.doAction("submit",this.$el),t.success(this.$el,this),acf.lockForm(this.$el),t.reset&&this.reset()),t.complete(this.$el,this),this.clearErrors()}}),!1},setup:function(e){this.$el=e},reset:function(){this.set("errors",[]),this.set("notice",null),this.set("status",""),acf.unlockForm(this.$el)}}),a=function(e){var t=e.data("acf");return t||(t=new i(e)),t};acf.validateForm=function(e){return a(e.form).validate(e)},acf.enableSubmit=function(e){return e.removeClass("disabled").removeAttr("disabled")},acf.disableSubmit=function(e){return e.addClass("disabled").attr("disabled",!0)},acf.showSpinner=function(e){return e.addClass("is-active"),e.css("display","inline-block"),e},acf.hideSpinner=function(e){return e.removeClass("is-active"),e.css("display","none"),e},acf.lockForm=function(e){var t=n(e),i=t.find('.button, [type="submit"]').not(".acf-nav, .acf-repeater-add-row"),a=t.find(".spinner, .acf-spinner");return acf.hideSpinner(a),acf.disableSubmit(i),acf.showSpinner(a.last()),e},acf.unlockForm=function(e){var t=n(e),i=t.find('.button, [type="submit"]').not(".acf-nav, .acf-repeater-add-row"),a=t.find(".spinner, .acf-spinner");return acf.enableSubmit(i),acf.hideSpinner(a),e};var n=function(t){var i;return(i=t.find("#submitdiv")).length||(i=t.find("#submitpost")).length||(i=t.find("p.submit").last()).length||(i=t.find(".acf-form-submit")).length||(i=e("#acf-create-options-page-form .acf-actions")).length||(i=e(".acf-headerbar-actions")).length?i:t},s=acf.debounce((function(e){e.submit()})),r=function(e){var t=e.parents(".acf-postbox");if(t.length){var i=acf.getPostbox(t);i&&i.isHiddenByScreenOptions()&&(i.$el.removeClass("hide-if-js"),i.$el.css("display",""))}};acf.validation=new acf.Model({id:"validation",active:!0,wait:"prepare",actions:{ready:"addInputEvents",append:"addInputEvents"},events:{'click input[type="submit"]':"onClickSubmit",'click button[type="submit"]':"onClickSubmit","click #save-post":"onClickSave","submit form#post":"onSubmitPost","submit form":"onSubmit"},initialize:function(){acf.get("validation")||(this.active=!1,this.actions={},this.events={})},enable:function(){this.active=!0},disable:function(){this.active=!1},reset:function(e){a(e).reset()},addInputEvents:function(t){if("safari"!==acf.get("browser")){var i=e(".acf-field [name]",t);i.length&&this.on(i,"invalid","onInvalid")}},onInvalid:function(e,t){e.preventDefault();var i=t.closest("form");i.length&&(a(i).addError({input:t.attr("name"),message:acf.strEscape(e.target.validationMessage)}),s(i))},onClickSubmit:function(t,i){e(".acf-field input").each((function(){this.checkValidity()||r(e(this))})),this.set("originalEvent",t)},onClickSave:function(e,t){this.set("ignore",!0)},onClickSubmitGutenberg:function(t,i){acf.validateForm({form:e("#editor"),event:t,reset:!0,failure:function(e,t){var i=t.get("notice").$el;i.appendTo(".components-notice-list"),i.find(".acf-notice-dismiss").removeClass("small")}})||(t.preventDefault(),t.stopImmediatePropagation())},onSubmitPost:function(t,i){"dopreview"===e("input#wp-preview").val()&&(this.set("ignore",!0),acf.unlockForm(i))},onSubmit:function(e,t){if(!this.active||this.get("ignore")||e.isDefaultPrevented())return this.allowSubmit();acf.validateForm({form:t,event:this.get("originalEvent")})||e.preventDefault()},allowSubmit:function(){return this.set("ignore",!1),this.set("originalEvent",!1),!0}}),new acf.Model({wait:"prepare",initialize:function(){acf.isGutenberg()&&this.customizeEditor()},customizeEditor:function(){var t=wp.data.dispatch("core/editor"),i=wp.data.select("core/editor"),a=wp.data.dispatch("core/notices"),n=t.savePost,s=!1,r="";wp.data.subscribe((function(){var e=i.getEditedPostAttribute("status");s="publish"===e||"future"===e,r="publish"!==e?e:r})),t.savePost=function(i){i=i||{};var o=this,c=arguments;return new Promise((function(n,o){return i.isAutosave||i.isPreview?n("Validation ignored (autosave)."):s?void(acf.validateForm({form:e("#editor"),reset:!0,complete:function(e,i){t.unlockPostSaving("acf")},failure:function(e,i){var n=i.get("notice");a.createErrorNotice(n.get("text"),{id:"acf-validation",isDismissible:!0}),n.remove(),r&&t.editPost({status:r}),o("Validation failed.")},success:function(){a.removeNotice("acf-validation"),n("Validation success.")}})?n("Validation bypassed."):t.lockPostSaving("acf")):n("Validation ignored (draft).")})).then((function(){return n.apply(o,c)}),(e=>{}))}}})}(jQuery)}},t={};function i(a){var n=t[a];if(void 0!==n)return n.exports;var s=t[a]={exports:{}};return e[a](s,s.exports,i),s.exports}i.n=e=>{var t=e&&e.__esModule?()=>e.default:()=>e;return i.d(t,{a:t}),t},i.d=(e,t)=>{for(var a in t)i.o(t,a)&&!i.o(e,a)&&Object.defineProperty(e,a,{enumerable:!0,get:t[a]})},i.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),(()=>{"use strict";i(5338),i(2457),i(5593),i(6289),i(774),i(3623),i(9982),i(960),i(1163),i(2410),i(2093),i(5915),i(2237),i(9252),i(6290),i(7509),i(6403),i(5848),i(2553),i(7513),i(9732),i(3284),i(9213),i(1525),i(5942),i(9938),i(8903),i(3858),i(2747),i(963),i(993),i(1218),i(9400),i(2900),i(1087),i(2631),i(8223),i(4750)})()})(); \ No newline at end of file diff --git a/assets/build/js/acf-internal-post-type.min.js b/assets/build/js/acf-internal-post-type.min.js index 29c45cb..461b32c 100644 --- a/assets/build/js/acf-internal-post-type.min.js +++ b/assets/build/js/acf-internal-post-type.min.js @@ -1 +1 @@ -(()=>{var e={4110:()=>{var e;e=jQuery,new acf.Model({id:"internalPostTypeSettingsManager",wait:"ready",events:{"blur .acf_slugify_to_key":"onChangeSlugify","blur .acf_singular_label":"onChangeSingularLabel","blur .acf_plural_label":"onChangePluralLabel","change .acf_hierarchical_switch":"onChangeHierarchical","click .acf-regenerate-labels":"onClickRegenerateLabels","click .acf-clear-labels":"onClickClearLabels","change .rewrite_slug_field":"onChangeURLSlug","keyup .rewrite_slug_field":"onChangeURLSlug"},onChangeSlugify:function(t,a){const n=a.val(),l=e(".acf_slugified_key");if(""==l.val().trim()){let e=acf.strSanitize(n.trim()).replaceAll("_","-");e=acf.applyFilters("generate_internal_post_type_name",e,this);let t=0;"taxonomy"===acf.get("screen")?t=32:"post_type"===acf.get("screen")&&(t=20),t&&(e=e.substring(0,t)),l.val(e)}},initialize:function(){if(!["taxonomy","post_type"].includes(acf.get("screen")))return;const t=function(t){if(void 0===t.element)return t;const a=e(t.element.parentElement),n=e('');n.html(acf.escHtml(t.element.innerHTML));let l=!1;return a.filter(".acf-taxonomy-manage_terms, .acf-taxonomy-edit_terms, .acf-taxonomy-delete_terms").length&&"manage_categories"===t.id||a.filter(".acf-taxonomy-assign_terms").length&&"edit_posts"===t.id?l=!0:"taxonomy_key"!==t.id&&"post_type_key"!==t.id&&"default"!==t.id||(l=!0),l&&n.append(''+acf.__("Default")+""),n.data("element",t.element),n};acf.newSelect2(e("select.query_var"),{field:!1,templateSelection:t,templateResult:t}),acf.newSelect2(e("select.acf-taxonomy-manage_terms"),{field:!1,templateSelection:t,templateResult:t}),acf.newSelect2(e("select.acf-taxonomy-edit_terms"),{field:!1,templateSelection:t,templateResult:t}),acf.newSelect2(e("select.acf-taxonomy-delete_terms"),{field:!1,templateSelection:t,templateResult:t}),acf.newSelect2(e("select.acf-taxonomy-assign_terms"),{field:!1,templateSelection:t,templateResult:t}),acf.newSelect2(e("select.meta_box"),{field:!1,templateSelection:t,templateResult:t});const a=acf.newSelect2(e("select.permalink_rewrite"),{field:!1,templateSelection:t,templateResult:t});e(".rewrite_slug_field").trigger("change"),a.on("change",(function(t){e(".rewrite_slug_field").trigger("change")}))},onChangeURLSlug:function(t,a){const n=e("div.acf-field.acf-field-permalink-rewrite"),l=n.find("select").find("option:selected").val(),i=n.data(l+"_instructions"),c=n.data("site_url"),s=n.find("p.description").first();if("taxonomy_key"===l||"post_type_key"===l)var o=e(".acf_slugified_key").val().trim();else o=a.val().trim();o.length||(o="{slug}"),s.html(e(""+i+"").text().replace("{slug}",""+e(""+c+"/"+o+"").text()+""))},onChangeSingularLabel:function(e,t){const a=t.val();this.updateLabels(a,"singular",!1)},onChangePluralLabel:function(e,t){const a=t.val();this.updateLabels(a,"plural",!1)},onChangeHierarchical:function(t,a){const n=a.is(":checked");if("taxonomy"===acf.get("screen")){let t=e(".acf-field-meta-box").data("tags_meta_box");n&&(t=e(".acf-field-meta-box").data("categories_meta_box")),e("#acf_taxonomy-meta_box").find("option:first").text(t).trigger("change")}this.updatePlaceholders(n)},onClickRegenerateLabels:function(t,a){this.updateLabels(e(".acf_singular_label").val(),"singular",!0),this.updateLabels(e(".acf_plural_label").val(),"plural",!0)},onClickClearLabels:function(e,t){this.clearLabels()},updateLabels(t,a,n){e('[data-label][data-replace="'+a+'"').each(((a,l)=>{var i=e(l).find('input[type="text"]').first();(n||""==i.val())&&""!=t&&i.val("lower"===e(l).data("transform")?e(l).data("label").replace("%s",t.toLowerCase()):e(l).data("label").replace("%s",t))}))},clearLabels(){e("[data-label]").each(((t,a)=>{e(a).find('input[type="text"]').first().val("")}))},updatePlaceholders(t){if("post_type"==acf.get("screen")){var a=acf.__("Post"),n=acf.__("Posts");t&&(a=acf.__("Page"),n=acf.__("Pages"))}else a=acf.__("Tag"),n=acf.__("Tags"),t&&(a=acf.__("Category"),n=acf.__("Categories"));e("[data-label]").each(((t,l)=>{var i="plural"===e(l).data("replace")?n:a;"lower"===e(l).data("transform")&&(i=i.toLowerCase()),e(l).find('input[type="text"]').first().attr("placeholder",e(l).data("label").replace("%s",i))}))}}),new acf.Model({id:"advancedSettingsMetaboxManager",wait:"load",events:{"change .acf-advanced-settings-toggle":"onToggleACFAdvancedSettings","change #screen-options-wrap #acf-advanced-settings-hide":"onToggleScreenOptionsAdvancedSettings"},initialize:function(){this.$screenOptionsToggle=e("#screen-options-wrap #acf-advanced-settings-hide:first"),this.$ACFAdvancedToggle=e(".acf-advanced-settings-toggle:first"),this.render()},isACFAdvancedSettingsChecked:function(){return!!this.$ACFAdvancedToggle.length&&this.$ACFAdvancedToggle.prop("checked")},isScreenOptionsAdvancedSettingsChecked:function(){return!!this.$screenOptionsToggle.length&&this.$screenOptionsToggle.prop("checked")},onToggleScreenOptionsAdvancedSettings:function(){this.isScreenOptionsAdvancedSettingsChecked()?this.isACFAdvancedSettingsChecked()||this.$ACFAdvancedToggle.trigger("click"):this.isACFAdvancedSettingsChecked()&&this.$ACFAdvancedToggle.trigger("click")},onToggleACFAdvancedSettings:function(){this.isACFAdvancedSettingsChecked()?this.isScreenOptionsAdvancedSettingsChecked()||this.$screenOptionsToggle.trigger("click"):this.isScreenOptionsAdvancedSettingsChecked()&&this.$screenOptionsToggle.trigger("click")},render:function(){this.onToggleACFAdvancedSettings()}}),new acf.Model({id:"linkFieldGroupsManager",events:{"click .acf-link-field-groups":"linkFieldGroups"},linkFieldGroups:function(){let t=!1;const a=function(a){a.preventDefault();const l=t.$("select"),i=l.val();i.length?(acf.startButtonLoading(t.$(".button")),e.ajax({url:acf.get("ajaxurl"),data:acf.prepareForAjax({action:"acf/link_field_groups",field_groups:i}),type:"post",dataType:"json",success:n})):l.focus()},n=function(e){t.content(e.data.content),wp.a11y&&wp.a11y.speak&&acf.__&&wp.a11y.speak(acf.__("Field groups linked successfully."),"polite"),t.$("button.acf-close-popup").focus()};e.ajax({url:acf.get("ajaxurl"),data:acf.prepareForAjax({action:"acf/link_field_groups"}),type:"post",dataType:"json",success:function(e){t=acf.newPopup({title:e.data.title,content:e.data.content,width:"600px"}),t.$el.addClass("acf-link-field-groups-popup"),t.on("submit","form",a)}})}})}},t={};function a(n){var l=t[n];if(void 0!==l)return l.exports;var i=t[n]={exports:{}};return e[n](i,i.exports,a),i.exports}a.n=e=>{var t=e&&e.__esModule?()=>e.default:()=>e;return a.d(t,{a:t}),t},a.d=(e,t)=>{for(var n in t)a.o(t,n)&&!a.o(e,n)&&Object.defineProperty(e,n,{enumerable:!0,get:t[n]})},a.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),(()=>{"use strict";a(4110)})()})(); \ No newline at end of file +(()=>{var e={237:()=>{var e;e=jQuery,new acf.Model({id:"internalPostTypeSettingsManager",wait:"ready",events:{"blur .acf_slugify_to_key":"onChangeSlugify","blur .acf_singular_label":"onChangeSingularLabel","blur .acf_plural_label":"onChangePluralLabel","change .acf_hierarchical_switch":"onChangeHierarchical","click .acf-regenerate-labels":"onClickRegenerateLabels","click .acf-clear-labels":"onClickClearLabels","change .rewrite_slug_field":"onChangeURLSlug","keyup .rewrite_slug_field":"onChangeURLSlug"},onChangeSlugify:function(t,a){const n=a.val(),l=e(".acf_slugified_key");if(""==l.val().trim()){let e=acf.strSanitize(n.trim()).replaceAll("_","-");e=acf.applyFilters("generate_internal_post_type_name",e,this);let t=0;"taxonomy"===acf.get("screen")?t=32:"post_type"===acf.get("screen")&&(t=20),t&&(e=e.substring(0,t)),l.val(e)}},initialize:function(){if(!["taxonomy","post_type"].includes(acf.get("screen")))return;const t=function(t){if(void 0===t.element)return t;const a=e(t.element.parentElement),n=e('');n.html(acf.escHtml(t.element.innerHTML));let l=!1;return a.filter(".acf-taxonomy-manage_terms, .acf-taxonomy-edit_terms, .acf-taxonomy-delete_terms").length&&"manage_categories"===t.id||a.filter(".acf-taxonomy-assign_terms").length&&"edit_posts"===t.id?l=!0:"taxonomy_key"!==t.id&&"post_type_key"!==t.id&&"default"!==t.id||(l=!0),l&&n.append(''+acf.__("Default")+""),n.data("element",t.element),n};acf.newSelect2(e("select.query_var"),{field:!1,templateSelection:t,templateResult:t}),acf.newSelect2(e("select.acf-taxonomy-manage_terms"),{field:!1,templateSelection:t,templateResult:t}),acf.newSelect2(e("select.acf-taxonomy-edit_terms"),{field:!1,templateSelection:t,templateResult:t}),acf.newSelect2(e("select.acf-taxonomy-delete_terms"),{field:!1,templateSelection:t,templateResult:t}),acf.newSelect2(e("select.acf-taxonomy-assign_terms"),{field:!1,templateSelection:t,templateResult:t}),acf.newSelect2(e("select.meta_box"),{field:!1,templateSelection:t,templateResult:t});const a=acf.newSelect2(e("select.permalink_rewrite"),{field:!1,templateSelection:t,templateResult:t});e(".rewrite_slug_field").trigger("change"),a.on("change",(function(t){e(".rewrite_slug_field").trigger("change")}))},onChangeURLSlug:function(t,a){const n=e("div.acf-field.acf-field-permalink-rewrite"),l=n.find("select").find("option:selected").val(),i=n.data(l+"_instructions"),c=n.data("site_url"),s=n.find("p.description").first();if("taxonomy_key"===l||"post_type_key"===l)var o=e(".acf_slugified_key").val().trim();else o=a.val().trim();o.length||(o="{slug}"),s.html(e(""+i+"").text().replace("{slug}",""+e(""+c+"/"+o+"").text()+""))},onChangeSingularLabel:function(e,t){const a=t.val();this.updateLabels(a,"singular",!1)},onChangePluralLabel:function(e,t){const a=t.val();this.updateLabels(a,"plural",!1)},onChangeHierarchical:function(t,a){const n=a.is(":checked");if("taxonomy"===acf.get("screen")){let t=e(".acf-field-meta-box").data("tags_meta_box");n&&(t=e(".acf-field-meta-box").data("categories_meta_box")),e("#acf_taxonomy-meta_box").find("option:first").text(t).trigger("change")}this.updatePlaceholders(n)},onClickRegenerateLabels:function(t,a){this.updateLabels(e(".acf_singular_label").val(),"singular",!0),this.updateLabels(e(".acf_plural_label").val(),"plural",!0)},onClickClearLabels:function(e,t){this.clearLabels()},updateLabels(t,a,n){e('[data-label][data-replace="'+a+'"').each(((a,l)=>{var i=e(l).find('input[type="text"]').first();(n||""==i.val())&&""!=t&&i.val("lower"===e(l).data("transform")?e(l).data("label").replace("%s",t.toLowerCase()):e(l).data("label").replace("%s",t))}))},clearLabels(){e("[data-label]").each(((t,a)=>{e(a).find('input[type="text"]').first().val("")}))},updatePlaceholders(t){if("post_type"==acf.get("screen")){var a=acf.__("Post"),n=acf.__("Posts");t&&(a=acf.__("Page"),n=acf.__("Pages"))}else a=acf.__("Tag"),n=acf.__("Tags"),t&&(a=acf.__("Category"),n=acf.__("Categories"));e("[data-label]").each(((t,l)=>{var i="plural"===e(l).data("replace")?n:a;"lower"===e(l).data("transform")&&(i=i.toLowerCase()),e(l).find('input[type="text"]').first().attr("placeholder",e(l).data("label").replace("%s",i))}))}}),new acf.Model({id:"advancedSettingsMetaboxManager",wait:"load",events:{"change .acf-advanced-settings-toggle":"onToggleACFAdvancedSettings","change #screen-options-wrap #acf-advanced-settings-hide":"onToggleScreenOptionsAdvancedSettings"},initialize:function(){this.$screenOptionsToggle=e("#screen-options-wrap #acf-advanced-settings-hide:first"),this.$ACFAdvancedToggle=e(".acf-advanced-settings-toggle:first"),this.render()},isACFAdvancedSettingsChecked:function(){return!!this.$ACFAdvancedToggle.length&&this.$ACFAdvancedToggle.prop("checked")},isScreenOptionsAdvancedSettingsChecked:function(){return!!this.$screenOptionsToggle.length&&this.$screenOptionsToggle.prop("checked")},onToggleScreenOptionsAdvancedSettings:function(){this.isScreenOptionsAdvancedSettingsChecked()?this.isACFAdvancedSettingsChecked()||this.$ACFAdvancedToggle.trigger("click"):this.isACFAdvancedSettingsChecked()&&this.$ACFAdvancedToggle.trigger("click")},onToggleACFAdvancedSettings:function(){this.isACFAdvancedSettingsChecked()?this.isScreenOptionsAdvancedSettingsChecked()||this.$screenOptionsToggle.trigger("click"):this.isScreenOptionsAdvancedSettingsChecked()&&this.$screenOptionsToggle.trigger("click")},render:function(){this.onToggleACFAdvancedSettings()}}),new acf.Model({id:"linkFieldGroupsManager",events:{"click .acf-link-field-groups":"linkFieldGroups"},linkFieldGroups:function(){let t=!1;const a=function(a){a.preventDefault();const l=t.$("select"),i=l.val();i.length?(acf.startButtonLoading(t.$(".button")),e.ajax({url:acf.get("ajaxurl"),data:acf.prepareForAjax({action:"acf/link_field_groups",field_groups:i}),type:"post",dataType:"json",success:n})):l.focus()},n=function(e){t.content(e.data.content),wp.a11y&&wp.a11y.speak&&acf.__&&wp.a11y.speak(acf.__("Field groups linked successfully."),"polite"),t.$("button.acf-close-popup").focus()};e.ajax({url:acf.get("ajaxurl"),data:acf.prepareForAjax({action:"acf/link_field_groups"}),type:"post",dataType:"json",success:function(e){t=acf.newPopup({title:e.data.title,content:e.data.content,width:"600px"}),t.$el.addClass("acf-link-field-groups-popup"),t.on("submit","form",a)}})}})}},t={};function a(n){var l=t[n];if(void 0!==l)return l.exports;var i=t[n]={exports:{}};return e[n](i,i.exports,a),i.exports}a.n=e=>{var t=e&&e.__esModule?()=>e.default:()=>e;return a.d(t,{a:t}),t},a.d=(e,t)=>{for(var n in t)a.o(t,n)&&!a.o(e,n)&&Object.defineProperty(e,n,{enumerable:!0,get:t[n]})},a.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),(()=>{"use strict";a(237)})()})(); \ No newline at end of file diff --git a/assets/build/js/acf.min.js b/assets/build/js/acf.min.js index bb38b2b..3499951 100644 --- a/assets/build/js/acf.min.js +++ b/assets/build/js/acf.min.js @@ -1 +1 @@ -(()=>{var t={204:()=>{!function(t,e){"use strict";acf.hooks=new function(){var t={removeFilter:function(e,i){return"string"==typeof e&&n("filters",e,i),t},applyFilters:function(){var e=Array.prototype.slice.call(arguments),n=e.shift();return"string"==typeof n?o("filters",n,e):t},addFilter:function(e,n,o,r){return"string"==typeof e&&"function"==typeof n&&i("filters",e,n,o=parseInt(o||10,10),r),t},removeAction:function(e,i){return"string"==typeof e&&n("actions",e,i),t},doAction:function(){var e=Array.prototype.slice.call(arguments),n=e.shift();return"string"==typeof n&&o("actions",n,e),t},addAction:function(e,n,o,r){return"string"==typeof e&&"function"==typeof n&&i("actions",e,n,o=parseInt(o||10,10),r),t},storage:function(){return e}},e={actions:{},filters:{}};function n(t,n,i,o){if(e[t][n])if(i){var r,a=e[t][n];if(o)for(r=a.length;r--;){var s=a[r];s.callback===i&&s.context===o&&a.splice(r,1)}else for(r=a.length;r--;)a[r].callback===i&&a.splice(r,1)}else e[t][n]=[]}function i(t,n,i,o,r){var a={callback:i,priority:o,context:r},s=e[t][n];s?(s.push(a),s=function(t){for(var e,n,i,o=1,r=t.length;oe.priority;)t[n]=t[n-1],--n;t[n]=e}return t}(s)):s=[a],e[t][n]=s}function o(t,n,i){var o=e[t][n];if(!o)return"filters"===t&&i[0];var r=0,a=o.length;if("filters"===t)for(;r{var t;t=jQuery,acf.models.Modal=acf.Model.extend({data:{title:"",content:"",toolbar:""},events:{"click .acf-modal-close":"onClickClose"},setup:function(e){t.extend(this.data,e),this.$el=t(),this.render()},initialize:function(){this.open()},render:function(){var e=this.get("title"),n=this.get("content"),i=this.get("toolbar"),o=t(["
                          ",'
                          ','
                          ',"

                          "+e+"

                          ",'',"
                          ",'
                          '+n+"
                          ",'
                          '+i+"
                          ","
                          ",'
                          ',"
                          "].join(""));this.$el&&this.$el.replaceWith(o),this.$el=o,acf.doAction("append",o)},update:function(t){this.data=acf.parseArgs(t,this.data),this.render()},title:function(t){this.$(".acf-modal-title h2").html(t)},content:function(t){this.$(".acf-modal-content").html(t)},toolbar:function(t){this.$(".acf-modal-toolbar").html(t)},open:function(){t("body").append(this.$el)},close:function(){this.remove()},onClickClose:function(t,e){t.preventDefault(),this.close()},focus:function(){this.$el.find(".acf-icon").first().trigger("focus")},lockFocusToModal:function(e){let n=t("#wpwrap");n.length&&(n[0].inert=e,n.attr("aria-hidden",e))},returnFocusToOrigin:function(){this.data.openedBy instanceof t&&this.data.openedBy.closest("body").length>0&&this.data.openedBy.trigger("focus")}}),acf.newModal=function(t){return new acf.models.Modal(t)}},9653:()=>{var t,e,n;t=jQuery,e=/^(\S+)\s*(.*)$/,n=acf.Model=function(){this.cid=acf.uniqueId("acf"),this.data=t.extend(!0,{},this.data),this.setup.apply(this,arguments),this.$el&&!this.$el.data("acf")&&this.$el.data("acf",this);var e=function(){this.initialize(),this.addEvents(),this.addActions(),this.addFilters()};this.wait&&!acf.didAction(this.wait)?this.addAction(this.wait,e):e.apply(this)},t.extend(n.prototype,{id:"",cid:"",$el:null,data:{},busy:!1,changed:!1,events:{},actions:{},filters:{},eventScope:"",wait:!1,priority:10,get:function(t){return this.data[t]},has:function(t){return null!=this.get(t)},set:function(t,e,n){var i=this.get(t);return i==e||(this.data[t]=e,n||(this.changed=!0,this.trigger("changed:"+t,[e,i]),this.trigger("changed",[t,e,i]))),this},inherit:function(e){return e instanceof jQuery&&(e=e.data()),t.extend(this.data,e),this},prop:function(){return this.$el.prop.apply(this.$el,arguments)},setup:function(e){t.extend(this,e)},initialize:function(){},addElements:function(t){if(!(t=t||this.elements||null)||!Object.keys(t).length)return!1;for(var e in t)this.addElement(e,t[e])},addElement:function(t,e){this["$"+t]=this.$(e)},addEvents:function(t){if(!(t=t||this.events||null))return!1;for(var n in t){var i=n.match(e);this.on(i[1],i[2],t[n])}},removeEvents:function(t){if(!(t=t||this.events||null))return!1;for(var n in t){var i=n.match(e);this.off(i[1],i[2],t[n])}},getEventTarget:function(e,n){return e||this.$el||t(document)},validateEvent:function(e){return!this.eventScope||t(e.target).closest(this.eventScope).is(this.$el)},proxyEvent:function(e){return this.proxy((function(n){if(this.validateEvent(n)){var i=acf.arrayArgs(arguments).slice(1),o=[n,t(n.currentTarget)].concat(i);e.apply(this,o)}}))},on:function(t,e,n,i){var o,r,a,s,c;t instanceof jQuery?i?(o=t,r=e,a=n,s=i):(o=t,r=e,s=n):n?(r=t,a=e,s=n):(r=t,s=e),o=this.getEventTarget(o),"string"==typeof s&&(s=this.proxyEvent(this[s])),r=r+"."+this.cid,c=a?[r,a,s]:[r,s],o.on.apply(o,c)},off:function(t,e,n){var i,o,r,a;t instanceof jQuery?n?(i=t,o=e,r=n):(i=t,o=e):e?(o=t,r=e):o=t,i=this.getEventTarget(i),o=o+"."+this.cid,a=r?[o,r]:[o],i.off.apply(i,a)},trigger:function(t,e,n){var i=this.getEventTarget();return n?i.trigger.apply(i,arguments):i.triggerHandler.apply(i,arguments),this},addActions:function(t){if(!(t=t||this.actions||null))return!1;for(var e in t)this.addAction(e,t[e])},removeActions:function(t){if(!(t=t||this.actions||null))return!1;for(var e in t)this.removeAction(e,t[e])},addAction:function(t,e,n){n=n||this.priority,"string"==typeof e&&(e=this[e]),acf.addAction(t,e,n,this)},removeAction:function(t,e){acf.removeAction(t,this[e])},addFilters:function(t){if(!(t=t||this.filters||null))return!1;for(var e in t)this.addFilter(e,t[e])},addFilter:function(t,e,n){n=n||this.priority,"string"==typeof e&&(e=this[e]),acf.addFilter(t,e,n,this)},removeFilters:function(t){if(!(t=t||this.filters||null))return!1;for(var e in t)this.removeFilter(e,t[e])},removeFilter:function(t,e){acf.removeFilter(t,this[e])},$:function(t){return this.$el.find(t)},remove:function(){this.removeEvents(),this.removeActions(),this.removeFilters(),this.$el.remove()},setTimeout:function(t,e){return setTimeout(this.proxy(t),e)},time:function(){console.time(this.id||this.cid)},timeEnd:function(){console.timeEnd(this.id||this.cid)},show:function(){acf.show(this.$el)},hide:function(){acf.hide(this.$el)},proxy:function(e){return t.proxy(e,this)}}),n.extend=function(e){var n,i=this;return n=e&&e.hasOwnProperty("constructor")?e.constructor:function(){return i.apply(this,arguments)},t.extend(n,i),n.prototype=Object.create(i.prototype),t.extend(n.prototype,e),n.prototype.constructor=n,n},acf.models={},acf.getInstance=function(t){return t.data("acf")},acf.getInstances=function(e){var n=[];return e.each((function(){n.push(acf.getInstance(t(this)))})),n}},86:()=>{var t,e;t=jQuery,e=acf.Model.extend({data:{text:"",type:"",timeout:0,dismiss:!0,target:!1,close:function(){}},events:{"click .acf-notice-dismiss":"onClickClose"},tmpl:function(){return'
                          '},setup:function(e){t.extend(this.data,e),this.$el=t(this.tmpl())},initialize:function(){this.render(),this.show()},render:function(){this.type(this.get("type")),this.html("

                          "+this.get("text")+"

                          "),this.get("dismiss")&&(this.$el.append(''),this.$el.addClass("-dismiss"));var t=this.get("timeout");t&&this.away(t)},update:function(e){t.extend(this.data,e),this.initialize(),this.removeEvents(),this.addEvents()},show:function(){var t=this.get("target");t&&t.prepend(this.$el)},hide:function(){this.$el.remove()},away:function(t){this.setTimeout((function(){acf.remove(this.$el)}),t)},type:function(t){var e=this.get("type");e&&this.$el.removeClass("-"+e),this.$el.addClass("-"+t),"error"==t&&this.$el.addClass("acf-error-message")},html:function(t){this.$el.html(acf.escHtml(t))},text:function(t){this.$("p").html(acf.escHtml(t))},onClickClose:function(t,e){t.preventDefault(),this.get("close").apply(this,arguments),this.remove()}}),acf.newNotice=function(t){return"object"!=typeof t&&(t={text:t}),new e(t)},new acf.Model({wait:"prepare",priority:1,initialize:function(){t(".acf-admin-notice").each((function(){if(t(this).data("persisted")){let e=acf.getPreference("dismissed-notices");e&&"object"==typeof e&&e.includes(t(this).data("persist-id"))?t(this).remove():(t(this).show(),t(this).on("click",".notice-dismiss",(function(n){e=acf.getPreference("dismissed-notices"),e&&"object"==typeof e||(e=[]),e.push(t(this).closest(".acf-admin-notice").data("persist-id")),acf.setPreference("dismissed-notices",e)})))}}))}})},8729:()=>{jQuery,new acf.Model({events:{"click .acf-panel-title":"onClick"},onClick:function(t,e){t.preventDefault(),this.toggle(e.parent())},isOpen:function(t){return t.hasClass("-open")},toggle:function(t){this.isOpen(t)?this.close(t):this.open(t)},open:function(t){t.addClass("-open"),t.find(".acf-panel-title i").attr("class","dashicons dashicons-arrow-down")},close:function(t){t.removeClass("-open"),t.find(".acf-panel-title i").attr("class","dashicons dashicons-arrow-right")}})},7904:()=>{var t;t=jQuery,acf.models.Popup=acf.Model.extend({data:{title:"",content:"",width:0,height:0,loading:!1,openedBy:null},events:{'click [data-event="close"]':"onClickClose","click .acf-close-popup":"onClickClose",keydown:"onPressEscapeClose"},setup:function(e){t.extend(this.data,e),this.$el=t(this.tmpl())},initialize:function(){this.render(),this.open(),this.focus(),this.lockFocusToPopup(!0)},tmpl:function(){return['"].join("")},render:function(){var t=this.get("title"),e=this.get("content"),n=this.get("loading"),i=this.get("width"),o=this.get("height");this.title(t),this.content(e),i&&this.$(".acf-popup-box").css("width",i),o&&this.$(".acf-popup-box").css("min-height",o),this.loading(n),acf.doAction("append",this.$el)},focus:function(){this.$el.find(".acf-icon").first().trigger("focus")},lockFocusToPopup:function(e){let n=t("#wpwrap");n.length&&(n[0].inert=e,n.attr("aria-hidden",e))},update:function(t){this.data=acf.parseArgs(t,this.data),this.render()},title:function(t){this.$(".title:first h3").html(t)},content:function(t){this.$(".inner:first").html(t)},loading:function(t){var e=this.$(".loading:first");t?e.show():e.hide()},open:function(){t("body").append(this.$el)},close:function(){this.lockFocusToPopup(!1),this.returnFocusToOrigin(),this.remove()},onClickClose:function(t,e){t.preventDefault(),this.close()},onPressEscapeClose:function(t){"Escape"===t.key&&this.close()},returnFocusToOrigin:function(){this.data.openedBy instanceof t&&this.data.openedBy.closest("body").length>0&&this.data.openedBy.trigger("focus")}}),acf.newPopup=function(t){return new acf.models.Popup(t)}},7861:()=>{!function(t,e){acf.newTooltip=function(t){return"object"!=typeof t&&(t={text:t}),t.confirmRemove!==e?(t.textConfirm=acf.__("Remove"),t.textCancel=acf.__("Cancel"),new i(t)):t.confirm!==e?new i(t):new n(t)};var n=acf.Model.extend({data:{text:"",timeout:0,target:null},tmpl:function(){return'
                          '},setup:function(e){t.extend(this.data,e),this.$el=t(this.tmpl())},initialize:function(){this.render(),this.show(),this.position();var e=this.get("timeout");e&&setTimeout(t.proxy(this.fade,this),e)},update:function(e){t.extend(this.data,e),this.initialize()},render:function(){this.html(this.get("text"))},show:function(){t("body").append(this.$el)},hide:function(){this.$el.remove()},fade:function(){this.$el.addClass("acf-fade-up"),this.setTimeout((function(){this.remove()}),250)},html:function(t){this.$el.html(t)},position:function(){var e=this.$el,n=this.get("target");if(n){e.removeClass("right left bottom top").css({top:0,left:0});var i=n.outerWidth(),o=n.outerHeight(),r=n.offset().top,a=n.offset().left,s=e.outerWidth(),c=e.outerHeight(),l=e.offset().top,u=r-c-l,f=a+i/2-s/2;f<10?(e.addClass("right"),f=a+i,u=r+o/2-c/2-l):f+s+10>t(window).width()?(e.addClass("left"),f=a-s,u=r+o/2-c/2-l):u-t(window).scrollTop()<10?(e.addClass("bottom"),u=r+o-l):e.addClass("top"),e.css({top:u,left:f})}}}),i=n.extend({data:{text:"",textConfirm:"",textCancel:"",target:null,targetConfirm:!0,confirm:function(){},cancel:function(){},context:!1},events:{'click [data-event="cancel"]':"onCancel",'click [data-event="confirm"]':"onConfirm"},addEvents:function(){acf.Model.prototype.addEvents.apply(this);var e=t(document),n=this.get("target");this.setTimeout((function(){this.on(e,"click","onCancel")})),this.get("targetConfirm")&&this.on(n,"click","onConfirm")},removeEvents:function(){acf.Model.prototype.removeEvents.apply(this);var e=t(document),n=this.get("target");this.off(e,"click"),this.off(n,"click")},render:function(){var t=[this.get("text")||acf.__("Are you sure?"),''+(this.get("textConfirm")||acf.__("Yes"))+"",''+(this.get("textCancel")||acf.__("No"))+""].join(" ");this.html(t),this.$el.addClass("-confirm")},onCancel:function(t,e){t.preventDefault(),t.stopImmediatePropagation();var n=this.get("cancel"),i=this.get("context")||this;n.apply(i,arguments),this.remove()},onConfirm:function(t,e){t.preventDefault(),t.stopImmediatePropagation();var n=this.get("confirm"),i=this.get("context")||this;n.apply(i,arguments),this.remove()}});acf.models.Tooltip=n,acf.models.TooltipConfirm=i,new acf.Model({tooltip:!1,events:{"mouseenter .acf-js-tooltip":"showTitle","mouseup .acf-js-tooltip":"hideTitle","mouseleave .acf-js-tooltip":"hideTitle","focus .acf-js-tooltip":"showTitle","blur .acf-js-tooltip":"hideTitle","keyup .acf-js-tooltip":"onKeyUp"},showTitle:function(t,e){var n=e.attr("title");n&&(e.attr("title",""),this.tooltip?this.tooltip.update({text:n,target:e}):this.tooltip=acf.newTooltip({text:n,target:e}))},hideTitle:function(t,e){this.tooltip.hide(),e.attr("title",this.tooltip.get("text"))},onKeyUp:function(t,e){"Escape"===t.key&&this.hideTitle(t,e)}})}(jQuery)},7806:()=>{!function(t,e){var n={};window.acf=n,n.data={},n.get=function(t){return this.data[t]||null},n.has=function(t){return null!==this.get(t)},n.set=function(t,e){return this.data[t]=e,this};var i=0;n.uniqueId=function(t){var e=++i+"";return t?t+e:e},n.uniqueArray=function(t){return t.filter((function(t,e,n){return n.indexOf(t)===e}))};var o="";n.uniqid=function(t,e){var n;void 0===t&&(t="");var i=function(t,e){return e<(t=parseInt(t,10).toString(16)).length?t.slice(t.length-e):e>t.length?Array(e-t.length+1).join("0")+t:t};return o||(o=Math.floor(123456789*Math.random())),o++,n=t,n+=i(parseInt((new Date).getTime()/1e3,10),8),n+=i(o,5),e&&(n+=(10*Math.random()).toFixed(8).toString()),n},n.strReplace=function(t,e,n){return n.split(t).join(e)},n.strCamelCase=function(t){var e=t.match(/([a-zA-Z0-9]+)/g);return e?e.map((function(t,e){var n=t.charAt(0);return(0===e?n.toLowerCase():n.toUpperCase())+t.slice(1)})).join(""):""},n.strPascalCase=function(t){var e=n.strCamelCase(t);return e.charAt(0).toUpperCase()+e.slice(1)},n.strSlugify=function(t){return n.strReplace("_","-",t.toLowerCase())},n.strSanitize=function(t){var n={À:"A",Á:"A",Â:"A",Ã:"A",Ä:"A",Å:"A",Æ:"AE",Ç:"C",È:"E",É:"E",Ê:"E",Ë:"E",Ì:"I",Í:"I",Î:"I",Ï:"I",Ð:"D",Ñ:"N",Ò:"O",Ó:"O",Ô:"O",Õ:"O",Ö:"O",Ø:"O",Ù:"U",Ú:"U",Û:"U",Ü:"U",Ý:"Y",ß:"s",à:"a",á:"a",â:"a",ã:"a",ä:"a",å:"a",æ:"ae",ç:"c",è:"e",é:"e",ê:"e",ë:"e",ì:"i",í:"i",î:"i",ï:"i",ñ:"n",ò:"o",ó:"o",ô:"o",õ:"o",ö:"o",ø:"o",ù:"u",ú:"u",û:"u",ü:"u",ý:"y",ÿ:"y",Ā:"A",ā:"a",Ă:"A",ă:"a",Ą:"A",ą:"a",Ć:"C",ć:"c",Ĉ:"C",ĉ:"c",Ċ:"C",ċ:"c",Č:"C",č:"c",Ď:"D",ď:"d",Đ:"D",đ:"d",Ē:"E",ē:"e",Ĕ:"E",ĕ:"e",Ė:"E",ė:"e",Ę:"E",ę:"e",Ě:"E",ě:"e",Ĝ:"G",ĝ:"g",Ğ:"G",ğ:"g",Ġ:"G",ġ:"g",Ģ:"G",ģ:"g",Ĥ:"H",ĥ:"h",Ħ:"H",ħ:"h",Ĩ:"I",ĩ:"i",Ī:"I",ī:"i",Ĭ:"I",ĭ:"i",Į:"I",į:"i",İ:"I",ı:"i",IJ:"IJ",ij:"ij",Ĵ:"J",ĵ:"j",Ķ:"K",ķ:"k",Ĺ:"L",ĺ:"l",Ļ:"L",ļ:"l",Ľ:"L",ľ:"l",Ŀ:"L",ŀ:"l",Ł:"l",ł:"l",Ń:"N",ń:"n",Ņ:"N",ņ:"n",Ň:"N",ň:"n",ʼn:"n",Ō:"O",ō:"o",Ŏ:"O",ŏ:"o",Ő:"O",ő:"o",Œ:"OE",œ:"oe",Ŕ:"R",ŕ:"r",Ŗ:"R",ŗ:"r",Ř:"R",ř:"r",Ś:"S",ś:"s",Ŝ:"S",ŝ:"s",Ş:"S",ş:"s",Š:"S",š:"s",Ţ:"T",ţ:"t",Ť:"T",ť:"t",Ŧ:"T",ŧ:"t",Ũ:"U",ũ:"u",Ū:"U",ū:"u",Ŭ:"U",ŭ:"u",Ů:"U",ů:"u",Ű:"U",ű:"u",Ų:"U",ų:"u",Ŵ:"W",ŵ:"w",Ŷ:"Y",ŷ:"y",Ÿ:"Y",Ź:"Z",ź:"z",Ż:"Z",ż:"z",Ž:"Z",ž:"z",ſ:"s",ƒ:"f",Ơ:"O",ơ:"o",Ư:"U",ư:"u",Ǎ:"A",ǎ:"a",Ǐ:"I",ǐ:"i",Ǒ:"O",ǒ:"o",Ǔ:"U",ǔ:"u",Ǖ:"U",ǖ:"u",Ǘ:"U",ǘ:"u",Ǚ:"U",ǚ:"u",Ǜ:"U",ǜ:"u",Ǻ:"A",ǻ:"a",Ǽ:"AE",ǽ:"ae",Ǿ:"O",ǿ:"o"," ":"_","'":"","?":"","/":"","\\":"",".":"",",":"","`":"",">":"","<":"",'"':"","[":"","]":"","|":"","{":"","}":"","(":"",")":""};return(t=t.replace(/\W/g,(function(t){return n[t]!==e?n[t]:t}))).toLowerCase()},n.strMatch=function(t,e){for(var n=0,i=Math.min(t.length,e.length),o=0;o":">",'"':""","'":"'"};return(""+t).replace(/[&<>"']/g,(function(t){return e[t]}))},n.strUnescape=function(t){var e={"&":"&","<":"<",">":">",""":'"',"'":"'"};return(""+t).replace(/&|<|>|"|'/g,(function(t){return e[t]}))},n.escAttr=n.strEscape,n.escHtml=function(t){return(""+t).replace(/").html(e).text()},n.parseArgs=function(e,n){return"object"!=typeof e&&(e={}),"object"!=typeof n&&(n={}),t.extend({},n,e)},window.acfL10n==e&&(acfL10n={}),n.__=function(t){return acfL10n[t]||t},n._x=function(t,e){return acfL10n[t+"."+e]||acfL10n[t]||t},n._n=function(t,e,i){return 1==i?n.__(t):n.__(e)},n.isArray=function(t){return Array.isArray(t)},n.isObject=function(t){return"object"==typeof t};var r=function(t,e,i){var o=(e=e.replace("[]","[%%index%%]")).match(/([^\[\]])+/g);if(o)for(var r=o.length,a=t,s=0;s');var s=e.parent();e.css({height:n,width:i,margin:o,position:"absolute"}),setTimeout((function(){s.css({opacity:0,height:t.endHeight})}),50),setTimeout((function(){e.attr("style",a),s.remove(),t.complete()}),301)},u=function(e){var n=e.target,i=n.height(),o=n.children().length,r=t('
                          ');n.addClass("acf-remove-element"),setTimeout((function(){n.html(r)}),251),setTimeout((function(){n.removeClass("acf-remove-element"),r.css({height:e.endHeight})}),300),setTimeout((function(){n.remove(),e.complete()}),451)};n.duplicate=function(e){e instanceof jQuery&&(e={target:e}),e=n.parseArgs(e,{target:!1,search:"",replace:"",rename:!0,before:function(t){},after:function(t,e){},append:function(t,e){t.after(e)}}),e.target=e.target||e.$el;var i=e.target;e.search=e.search||i.attr("data-id"),e.replace=e.replace||n.uniqid(),e.before(i),n.doAction("before_duplicate",i);var o=i.clone();return e.rename&&n.rename({target:o,search:e.search,replace:e.replace,replacer:"function"==typeof e.rename?e.rename:null}),o.removeClass("acf-clone"),o.find(".ui-sortable").removeClass("ui-sortable"),o.find("[data-select2-id]").removeAttr("data-select2-id"),o.find(".select2").remove(),o.find('.acf-is-subfields select[data-ui="1"]').each((function(){t(this).prop("id",t(this).prop("id").replace("acf_fields",n.uniqid("duplicated_")+"_acf_fields"))})),o.find(".acf-field-settings > .acf-tab-wrap").remove(),e.after(i,o),n.doAction("after_duplicate",i,o),e.append(i,o),n.doAction("duplicate",i,o),n.doAction("append",o),o},n.rename=function(t){t instanceof jQuery&&(t={target:t});var e=(t=n.parseArgs(t,{target:!1,destructive:!1,search:"",replace:"",replacer:null})).target;t.search||(t.search=e.attr("data-id")),t.replace||(t.replace=n.uniqid("acf")),t.replacer||(t.replacer=function(t,e,n,i){return e.replace(n,i)});var i=function(e){return function(n,i){return t.replacer(e,i,t.search,t.replace)}};if(t.destructive){var o=n.strReplace(t.search,t.replace,e.outerHTML());e.replaceWith(o)}else e.attr("data-id",t.replace),e.find('[id*="'+t.search+'"]').attr("id",i("id")),e.find('[for*="'+t.search+'"]').attr("for",i("for")),e.find('[name*="'+t.search+'"]').attr("name",i("name"));return e},n.prepareForAjax=function(t){return t.nonce=n.get("nonce"),t.post_id=n.get("post_id"),n.has("language")&&(t.lang=n.get("language")),n.applyFilters("prepare_for_ajax",t)},n.startButtonLoading=function(t){t.prop("disabled",!0),t.after(' ')},n.stopButtonLoading=function(t){t.prop("disabled",!1),t.next(".acf-loading").remove()},n.showLoading=function(t){t.append('
                          ')},n.hideLoading=function(t){t.children(".acf-loading-overlay").remove()},n.updateUserSetting=function(e,i){var o={action:"acf/ajax/user_setting",name:e,value:i};t.ajax({url:n.get("ajaxurl"),data:n.prepareForAjax(o),type:"post",dataType:"html"})},n.val=function(t,e,n){var i=t.val();return e!==i&&(t.val(e),t.is("select")&&null===t.val()?(t.val(i),!1):(!0!==n&&t.trigger("change"),!0))},n.show=function(t,e){return e&&n.unlock(t,"hidden",e),!n.isLocked(t,"hidden")&&!!t.hasClass("acf-hidden")&&(t.removeClass("acf-hidden"),!0)},n.hide=function(t,e){return e&&n.lock(t,"hidden",e),!t.hasClass("acf-hidden")&&(t.addClass("acf-hidden"),!0)},n.isHidden=function(t){return t.hasClass("acf-hidden")},n.isVisible=function(t){return!n.isHidden(t)};var f=function(t,e){return!(t.hasClass("acf-disabled")||(e&&n.unlock(t,"disabled",e),n.isLocked(t,"disabled")||!t.prop("disabled")||(t.prop("disabled",!1),0)))};n.enable=function(e,n){if(e.attr("name"))return f(e,n);var i=!1;return e.find("[name]").each((function(){f(t(this),n)&&(i=!0)})),i};var d=function(t,e){return e&&n.lock(t,"disabled",e),!t.prop("disabled")&&(t.prop("disabled",!0),!0)};n.disable=function(e,n){if(e.attr("name"))return d(e,n);var i=!1;return e.find("[name]").each((function(){d(t(this),n)&&(i=!0)})),i},n.isset=function(t){for(var e=1;e-1){var a=window.URL||window.webkitURL,s=new Image;s.onload=function(){o.width=this.width,o.height=this.height,e(o)},s.src=a.createObjectURL(r)}else e(o);else e(o)},n.isAjaxSuccess=function(t){return t&&t.success},n.getAjaxMessage=function(t){return n.isget(t,"data","message")},n.getAjaxError=function(t){return n.isget(t,"data","error")},n.getXhrError=function(t){if(t.responseJSON){if(t.responseJSON.message)return t.responseJSON.message;if(t.responseJSON.data&&t.responseJSON.data.error)return t.responseJSON.data.error}else if(t.statusText)return t.statusText;return""},n.renderSelect=function(t,e){var i=t.val(),o=[],r=function(t){var e="";return t.map((function(t){var i=t.text||t.label||"",a=t.id||t.value||"";o.push(a),t.children?e+=''+r(t.children)+"":e+='"})),e};return t.html(r(e)),o.indexOf(i)>-1&&t.val(i),t.val()};var h,p,g,v,m,y=function(t,e){return t.data("acf-lock-"+e)||[]},w=function(t,e,n){t.data("acf-lock-"+e,n)};n.lock=function(t,e,n){var i=y(t,e);i.indexOf(n)<0&&(i.push(n),w(t,e,i))},n.unlock=function(t,e,n){var i=y(t,e),o=i.indexOf(n);return o>-1&&(i.splice(o,1),w(t,e,i)),0===i.length},n.isLocked=function(t,e){return y(t,e).length>0},n.isGutenberg=function(){return!!(window.wp&&wp.data&&wp.data.select&&wp.data.select("core/editor"))},n.isGutenbergPostEditor=function(){return!!(window.wp&&wp.data&&wp.data.select&&wp.data.select("core/edit-post"))},n.objectToArray=function(t){return Object.keys(t).map((function(e){return t[e]}))},n.debounce=function(t,e){var n;return function(){var i=this,o=arguments;clearTimeout(n),n=setTimeout((function(){t.apply(i,o)}),e)}},n.throttle=function(t,e){var n=!1;return function(){n||(n=!0,setTimeout((function(){n=!1}),e),t.apply(this,arguments))}},n.isInView=function(t){t instanceof jQuery&&(t=t[0]);var e=t.getBoundingClientRect();return e.top!==e.bottom&&e.top>=0&&e.left>=0&&e.bottom<=(window.innerHeight||document.documentElement.clientHeight)&&e.right<=(window.innerWidth||document.documentElement.clientWidth)},n.onceInView=(h=[],p=0,g=function(){h.forEach((function(t){n.isInView(t.el)&&(t.callback.apply(this),m(t.id))}))},v=n.debounce(g,300),m=function(e){(h=h.filter((function(t){return t.id!==e}))).length||t(window).off("scroll resize",v).off("acfrefresh orientationchange",g)},function(e,i){e instanceof jQuery&&(e=e[0]),n.isInView(e)?i.apply(this):function(e,n){h.length||t(window).on("scroll resize",v).on("acfrefresh orientationchange",g),h.push({id:p++,el:e,callback:n})}(e,i)}),n.once=function(t){var n=0;return function(){return n++>0?t=e:t.apply(this,arguments)}},n.focusAttention=function(e){var i=1e3;e.addClass("acf-attention -focused"),n.isInView(e)||(t("body, html").animate({scrollTop:e.offset().top-t(window).height()/2},500),i+=500),setTimeout((function(){e.removeClass("-focused"),setTimeout((function(){e.removeClass("acf-attention")}),250)}),i)},n.onFocus=function(e,n){var i=!1,o=!1,r=function(){i=!0,setTimeout((function(){i=!1}),1),s(!0)},a=function(){i||s(!1)},s=function(i){o!==i&&(i?(t(document).on("click",a),e.on("blur","input, select, textarea",a)):(t(document).off("click",a),e.off("blur","input, select, textarea",a)),o=i,n(i))};e.on("click",r),e.on("focus","input, select, textarea",r)},n.disableForm=function(t){t.submitter&&t.submitter.classList.add("disabled")},t.fn.exists=function(){return t(this).length>0},t.fn.outerHTML=function(){return t(this).get(0).outerHTML},Array.prototype.indexOf||(Array.prototype.indexOf=function(e){return t.inArray(e,this)}),n.isNumeric=function(t){return!isNaN(parseFloat(t))&&isFinite(t)},n.refresh=n.debounce((function(){t(window).trigger("acfrefresh"),n.doAction("refresh")}),0),t(document).ready((function(){n.doAction("ready")})),t(window).on("load",(function(){setTimeout((function(){n.doAction("load")}))})),t(window).on("beforeunload",(function(){n.doAction("unload")})),t(window).on("resize",(function(){n.doAction("resize")})),t(document).on("sortstart",(function(t,e){n.doAction("sortstart",e.item,e.placeholder)})),t(document).on("sortstop",(function(t,e){n.doAction("sortstop",e.item,e.placeholder)}))}(jQuery)}},e={};function n(i){var o=e[i];if(void 0!==o)return o.exports;var r=e[i]={exports:{}};return t[i](r,r.exports,n),r.exports}n.n=t=>{var e=t&&t.__esModule?()=>t.default:()=>t;return n.d(e,{a:e}),e},n.d=(t,e)=>{for(var i in e)n.o(e,i)&&!n.o(t,i)&&Object.defineProperty(t,i,{enumerable:!0,get:e[i]})},n.o=(t,e)=>Object.prototype.hasOwnProperty.call(t,e),(()=>{"use strict";n(7806),n(204),n(9653),n(7904),n(2206),n(8729),n(86),n(7861)})()})(); \ No newline at end of file +(()=>{var t={1018:()=>{!function(t,e){"use strict";acf.hooks=new function(){var t={removeFilter:function(e,i){return"string"==typeof e&&n("filters",e,i),t},applyFilters:function(){var e=Array.prototype.slice.call(arguments),n=e.shift();return"string"==typeof n?o("filters",n,e):t},addFilter:function(e,n,o,r){return"string"==typeof e&&"function"==typeof n&&i("filters",e,n,o=parseInt(o||10,10),r),t},removeAction:function(e,i){return"string"==typeof e&&n("actions",e,i),t},doAction:function(){var e=Array.prototype.slice.call(arguments),n=e.shift();return"string"==typeof n&&o("actions",n,e),t},addAction:function(e,n,o,r){return"string"==typeof e&&"function"==typeof n&&i("actions",e,n,o=parseInt(o||10,10),r),t},storage:function(){return e}},e={actions:{},filters:{}};function n(t,n,i,o){if(e[t][n])if(i){var r,a=e[t][n];if(o)for(r=a.length;r--;){var s=a[r];s.callback===i&&s.context===o&&a.splice(r,1)}else for(r=a.length;r--;)a[r].callback===i&&a.splice(r,1)}else e[t][n]=[]}function i(t,n,i,o,r){var a={callback:i,priority:o,context:r},s=e[t][n];s?(s.push(a),s=function(t){for(var e,n,i,o=1,r=t.length;oe.priority;)t[n]=t[n-1],--n;t[n]=e}return t}(s)):s=[a],e[t][n]=s}function o(t,n,i){var o=e[t][n];if(!o)return"filters"===t&&i[0];var r=0,a=o.length;if("filters"===t)for(;r{var t;t=jQuery,acf.models.Modal=acf.Model.extend({data:{title:"",content:"",toolbar:""},events:{"click .acf-modal-close":"onClickClose"},setup:function(e){t.extend(this.data,e),this.$el=t(),this.render()},initialize:function(){this.open()},render:function(){var e=this.get("title"),n=this.get("content"),i=this.get("toolbar"),o=t(["
                          ",'
                          ','
                          ',"

                          "+e+"

                          ",'',"
                          ",'
                          '+n+"
                          ",'
                          '+i+"
                          ","
                          ",'
                          ',"
                          "].join(""));this.$el&&this.$el.replaceWith(o),this.$el=o,acf.doAction("append",o)},update:function(t){this.data=acf.parseArgs(t,this.data),this.render()},title:function(t){this.$(".acf-modal-title h2").html(t)},content:function(t){this.$(".acf-modal-content").html(t)},toolbar:function(t){this.$(".acf-modal-toolbar").html(t)},open:function(){t("body").append(this.$el)},close:function(){this.remove()},onClickClose:function(t,e){t.preventDefault(),this.close()},focus:function(){this.$el.find(".acf-icon").first().trigger("focus")},lockFocusToModal:function(e){let n=t("#wpwrap");n.length&&(n[0].inert=e,n.attr("aria-hidden",e))},returnFocusToOrigin:function(){this.data.openedBy instanceof t&&this.data.openedBy.closest("body").length>0&&this.data.openedBy.trigger("focus")}}),acf.newModal=function(t){return new acf.models.Modal(t)}},6891:()=>{var t,e,n;t=jQuery,e=/^(\S+)\s*(.*)$/,n=acf.Model=function(){this.cid=acf.uniqueId("acf"),this.data=t.extend(!0,{},this.data),this.setup.apply(this,arguments),this.$el&&!this.$el.data("acf")&&this.$el.data("acf",this);var e=function(){this.initialize(),this.addEvents(),this.addActions(),this.addFilters()};this.wait&&!acf.didAction(this.wait)?this.addAction(this.wait,e):e.apply(this)},t.extend(n.prototype,{id:"",cid:"",$el:null,data:{},busy:!1,changed:!1,events:{},actions:{},filters:{},eventScope:"",wait:!1,priority:10,get:function(t){return this.data[t]},has:function(t){return null!=this.get(t)},set:function(t,e,n){var i=this.get(t);return i==e||(this.data[t]=e,n||(this.changed=!0,this.trigger("changed:"+t,[e,i]),this.trigger("changed",[t,e,i]))),this},inherit:function(e){return e instanceof jQuery&&(e=e.data()),t.extend(this.data,e),this},prop:function(){return this.$el.prop.apply(this.$el,arguments)},setup:function(e){t.extend(this,e)},initialize:function(){},addElements:function(t){if(!(t=t||this.elements||null)||!Object.keys(t).length)return!1;for(var e in t)this.addElement(e,t[e])},addElement:function(t,e){this["$"+t]=this.$(e)},addEvents:function(t){if(!(t=t||this.events||null))return!1;for(var n in t){var i=n.match(e);this.on(i[1],i[2],t[n])}},removeEvents:function(t){if(!(t=t||this.events||null))return!1;for(var n in t){var i=n.match(e);this.off(i[1],i[2],t[n])}},getEventTarget:function(e,n){return e||this.$el||t(document)},validateEvent:function(e){return!this.eventScope||t(e.target).closest(this.eventScope).is(this.$el)},proxyEvent:function(e){return this.proxy((function(n){if(this.validateEvent(n)){var i=acf.arrayArgs(arguments).slice(1),o=[n,t(n.currentTarget)].concat(i);e.apply(this,o)}}))},on:function(t,e,n,i){var o,r,a,s,c;t instanceof jQuery?i?(o=t,r=e,a=n,s=i):(o=t,r=e,s=n):n?(r=t,a=e,s=n):(r=t,s=e),o=this.getEventTarget(o),"string"==typeof s&&(s=this.proxyEvent(this[s])),r=r+"."+this.cid,c=a?[r,a,s]:[r,s],o.on.apply(o,c)},off:function(t,e,n){var i,o,r,a;t instanceof jQuery?n?(i=t,o=e,r=n):(i=t,o=e):e?(o=t,r=e):o=t,i=this.getEventTarget(i),o=o+"."+this.cid,a=r?[o,r]:[o],i.off.apply(i,a)},trigger:function(t,e,n){var i=this.getEventTarget();return n?i.trigger.apply(i,arguments):i.triggerHandler.apply(i,arguments),this},addActions:function(t){if(!(t=t||this.actions||null))return!1;for(var e in t)this.addAction(e,t[e])},removeActions:function(t){if(!(t=t||this.actions||null))return!1;for(var e in t)this.removeAction(e,t[e])},addAction:function(t,e,n){n=n||this.priority,"string"==typeof e&&(e=this[e]),acf.addAction(t,e,n,this)},removeAction:function(t,e){acf.removeAction(t,this[e])},addFilters:function(t){if(!(t=t||this.filters||null))return!1;for(var e in t)this.addFilter(e,t[e])},addFilter:function(t,e,n){n=n||this.priority,"string"==typeof e&&(e=this[e]),acf.addFilter(t,e,n,this)},removeFilters:function(t){if(!(t=t||this.filters||null))return!1;for(var e in t)this.removeFilter(e,t[e])},removeFilter:function(t,e){acf.removeFilter(t,this[e])},$:function(t){return this.$el.find(t)},remove:function(){this.removeEvents(),this.removeActions(),this.removeFilters(),this.$el.remove()},setTimeout:function(t,e){return setTimeout(this.proxy(t),e)},time:function(){console.time(this.id||this.cid)},timeEnd:function(){console.timeEnd(this.id||this.cid)},show:function(){acf.show(this.$el)},hide:function(){acf.hide(this.$el)},proxy:function(e){return t.proxy(e,this)}}),n.extend=function(e){var n,i=this;return n=e&&e.hasOwnProperty("constructor")?e.constructor:function(){return i.apply(this,arguments)},t.extend(n,i),n.prototype=Object.create(i.prototype),t.extend(n.prototype,e),n.prototype.constructor=n,n},acf.models={},acf.getInstance=function(t){return t.data("acf")},acf.getInstances=function(e){var n=[];return e.each((function(){n.push(acf.getInstance(t(this)))})),n}},2700:()=>{var t,e;t=jQuery,e=acf.Model.extend({data:{text:"",type:"",timeout:0,dismiss:!0,target:!1,close:function(){}},events:{"click .acf-notice-dismiss":"onClickClose"},tmpl:function(){return'
                          '},setup:function(e){t.extend(this.data,e),this.$el=t(this.tmpl())},initialize:function(){this.render(),this.show()},render:function(){this.type(this.get("type")),this.html("

                          "+this.get("text")+"

                          "),this.get("dismiss")&&(this.$el.append(''),this.$el.addClass("-dismiss"));var t=this.get("timeout");t&&this.away(t)},update:function(e){t.extend(this.data,e),this.initialize(),this.removeEvents(),this.addEvents()},show:function(){var t=this.get("target");t&&t.prepend(this.$el)},hide:function(){this.$el.remove()},away:function(t){this.setTimeout((function(){acf.remove(this.$el)}),t)},type:function(t){var e=this.get("type");e&&this.$el.removeClass("-"+e),this.$el.addClass("-"+t),"error"==t&&this.$el.addClass("acf-error-message")},html:function(t){this.$el.html(acf.escHtml(t))},text:function(t){this.$("p").html(acf.escHtml(t))},onClickClose:function(t,e){t.preventDefault(),this.get("close").apply(this,arguments),this.remove()}}),acf.newNotice=function(t){return"object"!=typeof t&&(t={text:t}),new e(t)},new acf.Model({wait:"prepare",priority:1,initialize:function(){t(".acf-admin-notice").each((function(){if(t(this).data("persisted")){let e=acf.getPreference("dismissed-notices");e&&"object"==typeof e&&e.includes(t(this).data("persist-id"))?t(this).remove():(t(this).show(),t(this).on("click",".notice-dismiss",(function(n){e=acf.getPreference("dismissed-notices"),e&&"object"==typeof e||(e=[]),e.push(t(this).closest(".acf-admin-notice").data("persist-id")),acf.setPreference("dismissed-notices",e)})))}}))}})},9340:()=>{jQuery,new acf.Model({events:{"click .acf-panel-title":"onClick"},onClick:function(t,e){t.preventDefault(),this.toggle(e.parent())},isOpen:function(t){return t.hasClass("-open")},toggle:function(t){this.isOpen(t)?this.close(t):this.open(t)},open:function(t){t.addClass("-open"),t.find(".acf-panel-title i").attr("class","dashicons dashicons-arrow-down")},close:function(t){t.removeClass("-open"),t.find(".acf-panel-title i").attr("class","dashicons dashicons-arrow-right")}})},4204:()=>{var t;t=jQuery,acf.models.Popup=acf.Model.extend({data:{title:"",content:"",width:0,height:0,loading:!1,openedBy:null},events:{'click [data-event="close"]':"onClickClose","click .acf-close-popup":"onClickClose",keydown:"onPressEscapeClose"},setup:function(e){t.extend(this.data,e),this.$el=t(this.tmpl())},initialize:function(){this.render(),this.open(),this.focus(),this.lockFocusToPopup(!0)},tmpl:function(){return['"].join("")},render:function(){var t=this.get("title"),e=this.get("content"),n=this.get("loading"),i=this.get("width"),o=this.get("height");this.title(t),this.content(e),i&&this.$(".acf-popup-box").css("width",i),o&&this.$(".acf-popup-box").css("min-height",o),this.loading(n),acf.doAction("append",this.$el)},focus:function(){this.$el.find(".acf-icon").first().trigger("focus")},lockFocusToPopup:function(e){let n=t("#wpwrap");n.length&&(n[0].inert=e,n.attr("aria-hidden",e))},update:function(t){this.data=acf.parseArgs(t,this.data),this.render()},title:function(t){this.$(".title:first h3").html(t)},content:function(t){this.$(".inner:first").html(t)},loading:function(t){var e=this.$(".loading:first");t?e.show():e.hide()},open:function(){t("body").append(this.$el)},close:function(){this.lockFocusToPopup(!1),this.returnFocusToOrigin(),this.remove()},onClickClose:function(t,e){t.preventDefault(),this.close()},onPressEscapeClose:function(t){"Escape"===t.key&&this.close()},returnFocusToOrigin:function(){this.data.openedBy instanceof t&&this.data.openedBy.closest("body").length>0&&this.data.openedBy.trigger("focus")}}),acf.newPopup=function(t){return new acf.models.Popup(t)}},2177:()=>{!function(t,e){acf.newTooltip=function(t){return"object"!=typeof t&&(t={text:t}),t.confirmRemove!==e?(t.textConfirm=acf.__("Remove"),t.textCancel=acf.__("Cancel"),new i(t)):t.confirm!==e?new i(t):new n(t)};var n=acf.Model.extend({data:{text:"",timeout:0,target:null},tmpl:function(){return'
                          '},setup:function(e){t.extend(this.data,e),this.$el=t(this.tmpl())},initialize:function(){this.render(),this.show(),this.position();var e=this.get("timeout");e&&setTimeout(t.proxy(this.fade,this),e)},update:function(e){t.extend(this.data,e),this.initialize()},render:function(){this.html(this.get("text"))},show:function(){t("body").append(this.$el)},hide:function(){this.$el.remove()},fade:function(){this.$el.addClass("acf-fade-up"),this.setTimeout((function(){this.remove()}),250)},html:function(t){this.$el.html(t)},position:function(){var e=this.$el,n=this.get("target");if(n){e.removeClass("right left bottom top").css({top:0,left:0});var i=n.outerWidth(),o=n.outerHeight(),r=n.offset().top,a=n.offset().left,s=e.outerWidth(),c=e.outerHeight(),l=e.offset().top,u=r-c-l,f=a+i/2-s/2;f<10?(e.addClass("right"),f=a+i,u=r+o/2-c/2-l):f+s+10>t(window).width()?(e.addClass("left"),f=a-s,u=r+o/2-c/2-l):u-t(window).scrollTop()<10?(e.addClass("bottom"),u=r+o-l):e.addClass("top"),e.css({top:u,left:f})}}}),i=n.extend({data:{text:"",textConfirm:"",textCancel:"",target:null,targetConfirm:!0,confirm:function(){},cancel:function(){},context:!1},events:{'click [data-event="cancel"]':"onCancel",'click [data-event="confirm"]':"onConfirm"},addEvents:function(){acf.Model.prototype.addEvents.apply(this);var e=t(document),n=this.get("target");this.setTimeout((function(){this.on(e,"click","onCancel")})),this.get("targetConfirm")&&this.on(n,"click","onConfirm")},removeEvents:function(){acf.Model.prototype.removeEvents.apply(this);var e=t(document),n=this.get("target");this.off(e,"click"),this.off(n,"click")},render:function(){var t=[this.get("text")||acf.__("Are you sure?"),''+(this.get("textConfirm")||acf.__("Yes"))+"",''+(this.get("textCancel")||acf.__("No"))+""].join(" ");this.html(t),this.$el.addClass("-confirm")},onCancel:function(t,e){t.preventDefault(),t.stopImmediatePropagation();var n=this.get("cancel"),i=this.get("context")||this;n.apply(i,arguments),this.remove()},onConfirm:function(t,e){t.preventDefault(),t.stopImmediatePropagation();var n=this.get("confirm"),i=this.get("context")||this;n.apply(i,arguments),this.remove()}});acf.models.Tooltip=n,acf.models.TooltipConfirm=i,new acf.Model({tooltip:!1,events:{"mouseenter .acf-js-tooltip":"showTitle","mouseup .acf-js-tooltip":"hideTitle","mouseleave .acf-js-tooltip":"hideTitle","focus .acf-js-tooltip":"showTitle","blur .acf-js-tooltip":"hideTitle","keyup .acf-js-tooltip":"onKeyUp"},showTitle:function(t,e){var n=e.attr("title");n&&(e.attr("title",""),this.tooltip?this.tooltip.update({text:n,target:e}):this.tooltip=acf.newTooltip({text:n,target:e}))},hideTitle:function(t,e){this.tooltip.hide(),e.attr("title",this.tooltip.get("text"))},onKeyUp:function(t,e){"Escape"===t.key&&this.hideTitle(t,e)}})}(jQuery)},6047:()=>{!function(t,e){var n={};window.acf=n,n.data={},n.get=function(t){return this.data[t]||null},n.has=function(t){return null!==this.get(t)},n.set=function(t,e){return this.data[t]=e,this};var i=0;n.uniqueId=function(t){var e=++i+"";return t?t+e:e},n.uniqueArray=function(t){return t.filter((function(t,e,n){return n.indexOf(t)===e}))};var o="";n.uniqid=function(t,e){var n;void 0===t&&(t="");var i=function(t,e){return e<(t=parseInt(t,10).toString(16)).length?t.slice(t.length-e):e>t.length?Array(e-t.length+1).join("0")+t:t};return o||(o=Math.floor(123456789*Math.random())),o++,n=t,n+=i(parseInt((new Date).getTime()/1e3,10),8),n+=i(o,5),e&&(n+=(10*Math.random()).toFixed(8).toString()),n},n.strReplace=function(t,e,n){return n.split(t).join(e)},n.strCamelCase=function(t){var e=t.match(/([a-zA-Z0-9]+)/g);return e?e.map((function(t,e){var n=t.charAt(0);return(0===e?n.toLowerCase():n.toUpperCase())+t.slice(1)})).join(""):""},n.strPascalCase=function(t){var e=n.strCamelCase(t);return e.charAt(0).toUpperCase()+e.slice(1)},n.strSlugify=function(t){return n.strReplace("_","-",t.toLowerCase())},n.strSanitize=function(t){var n={À:"A",Á:"A",Â:"A",Ã:"A",Ä:"A",Å:"A",Æ:"AE",Ç:"C",È:"E",É:"E",Ê:"E",Ë:"E",Ì:"I",Í:"I",Î:"I",Ï:"I",Ð:"D",Ñ:"N",Ò:"O",Ó:"O",Ô:"O",Õ:"O",Ö:"O",Ø:"O",Ù:"U",Ú:"U",Û:"U",Ü:"U",Ý:"Y",ß:"s",à:"a",á:"a",â:"a",ã:"a",ä:"a",å:"a",æ:"ae",ç:"c",è:"e",é:"e",ê:"e",ë:"e",ì:"i",í:"i",î:"i",ï:"i",ñ:"n",ò:"o",ó:"o",ô:"o",õ:"o",ö:"o",ø:"o",ù:"u",ú:"u",û:"u",ü:"u",ý:"y",ÿ:"y",Ā:"A",ā:"a",Ă:"A",ă:"a",Ą:"A",ą:"a",Ć:"C",ć:"c",Ĉ:"C",ĉ:"c",Ċ:"C",ċ:"c",Č:"C",č:"c",Ď:"D",ď:"d",Đ:"D",đ:"d",Ē:"E",ē:"e",Ĕ:"E",ĕ:"e",Ė:"E",ė:"e",Ę:"E",ę:"e",Ě:"E",ě:"e",Ĝ:"G",ĝ:"g",Ğ:"G",ğ:"g",Ġ:"G",ġ:"g",Ģ:"G",ģ:"g",Ĥ:"H",ĥ:"h",Ħ:"H",ħ:"h",Ĩ:"I",ĩ:"i",Ī:"I",ī:"i",Ĭ:"I",ĭ:"i",Į:"I",į:"i",İ:"I",ı:"i",IJ:"IJ",ij:"ij",Ĵ:"J",ĵ:"j",Ķ:"K",ķ:"k",Ĺ:"L",ĺ:"l",Ļ:"L",ļ:"l",Ľ:"L",ľ:"l",Ŀ:"L",ŀ:"l",Ł:"l",ł:"l",Ń:"N",ń:"n",Ņ:"N",ņ:"n",Ň:"N",ň:"n",ʼn:"n",Ō:"O",ō:"o",Ŏ:"O",ŏ:"o",Ő:"O",ő:"o",Œ:"OE",œ:"oe",Ŕ:"R",ŕ:"r",Ŗ:"R",ŗ:"r",Ř:"R",ř:"r",Ś:"S",ś:"s",Ŝ:"S",ŝ:"s",Ş:"S",ş:"s",Š:"S",š:"s",Ţ:"T",ţ:"t",Ť:"T",ť:"t",Ŧ:"T",ŧ:"t",Ũ:"U",ũ:"u",Ū:"U",ū:"u",Ŭ:"U",ŭ:"u",Ů:"U",ů:"u",Ű:"U",ű:"u",Ų:"U",ų:"u",Ŵ:"W",ŵ:"w",Ŷ:"Y",ŷ:"y",Ÿ:"Y",Ź:"Z",ź:"z",Ż:"Z",ż:"z",Ž:"Z",ž:"z",ſ:"s",ƒ:"f",Ơ:"O",ơ:"o",Ư:"U",ư:"u",Ǎ:"A",ǎ:"a",Ǐ:"I",ǐ:"i",Ǒ:"O",ǒ:"o",Ǔ:"U",ǔ:"u",Ǖ:"U",ǖ:"u",Ǘ:"U",ǘ:"u",Ǚ:"U",ǚ:"u",Ǜ:"U",ǜ:"u",Ǻ:"A",ǻ:"a",Ǽ:"AE",ǽ:"ae",Ǿ:"O",ǿ:"o"," ":"_","'":"","?":"","/":"","\\":"",".":"",",":"","`":"",">":"","<":"",'"':"","[":"","]":"","|":"","{":"","}":"","(":"",")":""};return(t=t.replace(/\W/g,(function(t){return n[t]!==e?n[t]:t}))).toLowerCase()},n.strMatch=function(t,e){for(var n=0,i=Math.min(t.length,e.length),o=0;o":">",'"':""","'":"'"};return(""+t).replace(/[&<>"']/g,(function(t){return e[t]}))},n.strUnescape=function(t){var e={"&":"&","<":"<",">":">",""":'"',"'":"'"};return(""+t).replace(/&|<|>|"|'/g,(function(t){return e[t]}))},n.escAttr=n.strEscape,n.escHtml=function(t){return(""+t).replace(/").html(e).text()},n.parseArgs=function(e,n){return"object"!=typeof e&&(e={}),"object"!=typeof n&&(n={}),t.extend({},n,e)},window.acfL10n==e&&(acfL10n={}),n.__=function(t){return acfL10n[t]||t},n._x=function(t,e){return acfL10n[t+"."+e]||acfL10n[t]||t},n._n=function(t,e,i){return 1==i?n.__(t):n.__(e)},n.isArray=function(t){return Array.isArray(t)},n.isObject=function(t){return"object"==typeof t};var r=function(t,e,i){var o=(e=e.replace("[]","[%%index%%]")).match(/([^\[\]])+/g);if(o)for(var r=o.length,a=t,s=0;s');var s=e.parent();e.css({height:n,width:i,margin:o,position:"absolute"}),setTimeout((function(){s.css({opacity:0,height:t.endHeight})}),50),setTimeout((function(){e.attr("style",a),s.remove(),t.complete()}),301)},u=function(e){var n=e.target,i=n.height(),o=n.children().length,r=t('
                          ');n.addClass("acf-remove-element"),setTimeout((function(){n.html(r)}),251),setTimeout((function(){n.removeClass("acf-remove-element"),r.css({height:e.endHeight})}),300),setTimeout((function(){n.remove(),e.complete()}),451)};n.duplicate=function(e){e instanceof jQuery&&(e={target:e}),e=n.parseArgs(e,{target:!1,search:"",replace:"",rename:!0,before:function(t){},after:function(t,e){},append:function(t,e){t.after(e)}}),e.target=e.target||e.$el;var i=e.target;e.search=e.search||i.attr("data-id"),e.replace=e.replace||n.uniqid(),e.before(i),n.doAction("before_duplicate",i);var o=i.clone();return e.rename&&n.rename({target:o,search:e.search,replace:e.replace,replacer:"function"==typeof e.rename?e.rename:null}),o.removeClass("acf-clone"),o.find(".ui-sortable").removeClass("ui-sortable"),o.find("[data-select2-id]").removeAttr("data-select2-id"),o.find(".select2").remove(),o.find('.acf-is-subfields select[data-ui="1"]').each((function(){t(this).prop("id",t(this).prop("id").replace("acf_fields",n.uniqid("duplicated_")+"_acf_fields"))})),o.find(".acf-field-settings > .acf-tab-wrap").remove(),e.after(i,o),n.doAction("after_duplicate",i,o),e.append(i,o),n.doAction("duplicate",i,o),n.doAction("append",o),o},n.rename=function(t){t instanceof jQuery&&(t={target:t});var e=(t=n.parseArgs(t,{target:!1,destructive:!1,search:"",replace:"",replacer:null})).target;t.search||(t.search=e.attr("data-id")),t.replace||(t.replace=n.uniqid("acf")),t.replacer||(t.replacer=function(t,e,n,i){return e.replace(n,i)});var i=function(e){return function(n,i){return t.replacer(e,i,t.search,t.replace)}};if(t.destructive){var o=n.strReplace(t.search,t.replace,e.outerHTML());e.replaceWith(o)}else e.attr("data-id",t.replace),e.find('[id*="'+t.search+'"]').attr("id",i("id")),e.find('[for*="'+t.search+'"]').attr("for",i("for")),e.find('[name*="'+t.search+'"]').attr("name",i("name"));return e},n.prepareForAjax=function(t){return t.nonce=n.get("nonce"),t.post_id=n.get("post_id"),n.has("language")&&(t.lang=n.get("language")),n.applyFilters("prepare_for_ajax",t)},n.startButtonLoading=function(t){t.prop("disabled",!0),t.after(' ')},n.stopButtonLoading=function(t){t.prop("disabled",!1),t.next(".acf-loading").remove()},n.showLoading=function(t){t.append('
                          ')},n.hideLoading=function(t){t.children(".acf-loading-overlay").remove()},n.updateUserSetting=function(e,i){var o={action:"acf/ajax/user_setting",name:e,value:i};t.ajax({url:n.get("ajaxurl"),data:n.prepareForAjax(o),type:"post",dataType:"html"})},n.val=function(t,e,n){var i=t.val();return e!==i&&(t.val(e),t.is("select")&&null===t.val()?(t.val(i),!1):(!0!==n&&t.trigger("change"),!0))},n.show=function(t,e){return e&&n.unlock(t,"hidden",e),!n.isLocked(t,"hidden")&&!!t.hasClass("acf-hidden")&&(t.removeClass("acf-hidden"),!0)},n.hide=function(t,e){return e&&n.lock(t,"hidden",e),!t.hasClass("acf-hidden")&&(t.addClass("acf-hidden"),!0)},n.isHidden=function(t){return t.hasClass("acf-hidden")},n.isVisible=function(t){return!n.isHidden(t)};var f=function(t,e){return!(t.hasClass("acf-disabled")||(e&&n.unlock(t,"disabled",e),n.isLocked(t,"disabled")||!t.prop("disabled")||(t.prop("disabled",!1),0)))};n.enable=function(e,n){if(e.attr("name"))return f(e,n);var i=!1;return e.find("[name]").each((function(){f(t(this),n)&&(i=!0)})),i};var d=function(t,e){return e&&n.lock(t,"disabled",e),!t.prop("disabled")&&(t.prop("disabled",!0),!0)};n.disable=function(e,n){if(e.attr("name"))return d(e,n);var i=!1;return e.find("[name]").each((function(){d(t(this),n)&&(i=!0)})),i},n.isset=function(t){for(var e=1;e-1){var a=window.URL||window.webkitURL,s=new Image;s.onload=function(){o.width=this.width,o.height=this.height,e(o)},s.src=a.createObjectURL(r)}else e(o);else e(o)},n.isAjaxSuccess=function(t){return t&&t.success},n.getAjaxMessage=function(t){return n.isget(t,"data","message")},n.getAjaxError=function(t){return n.isget(t,"data","error")},n.getXhrError=function(t){if(t.responseJSON){if(t.responseJSON.message)return t.responseJSON.message;if(t.responseJSON.data&&t.responseJSON.data.error)return t.responseJSON.data.error}else if(t.statusText)return t.statusText;return""},n.renderSelect=function(t,e){var i=t.val(),o=[],r=function(t){var e="";return t.map((function(t){var i=t.text||t.label||"",a=t.id||t.value||"";o.push(a),t.children?e+=''+r(t.children)+"":e+='"})),e};return t.html(r(e)),o.indexOf(i)>-1&&t.val(i),t.val()};var h,p,g,v,m,y=function(t,e){return t.data("acf-lock-"+e)||[]},w=function(t,e,n){t.data("acf-lock-"+e,n)};n.lock=function(t,e,n){var i=y(t,e);i.indexOf(n)<0&&(i.push(n),w(t,e,i))},n.unlock=function(t,e,n){var i=y(t,e),o=i.indexOf(n);return o>-1&&(i.splice(o,1),w(t,e,i)),0===i.length},n.isLocked=function(t,e){return y(t,e).length>0},n.isGutenberg=function(){return!!(window.wp&&wp.data&&wp.data.select&&wp.data.select("core/editor"))},n.isGutenbergPostEditor=function(){return!!(window.wp&&wp.data&&wp.data.select&&wp.data.select("core/edit-post"))},n.objectToArray=function(t){return Object.keys(t).map((function(e){return t[e]}))},n.debounce=function(t,e){var n;return function(){var i=this,o=arguments;clearTimeout(n),n=setTimeout((function(){t.apply(i,o)}),e)}},n.throttle=function(t,e){var n=!1;return function(){n||(n=!0,setTimeout((function(){n=!1}),e),t.apply(this,arguments))}},n.isInView=function(t){t instanceof jQuery&&(t=t[0]);var e=t.getBoundingClientRect();return e.top!==e.bottom&&e.top>=0&&e.left>=0&&e.bottom<=(window.innerHeight||document.documentElement.clientHeight)&&e.right<=(window.innerWidth||document.documentElement.clientWidth)},n.onceInView=(h=[],p=0,g=function(){h.forEach((function(t){n.isInView(t.el)&&(t.callback.apply(this),m(t.id))}))},v=n.debounce(g,300),m=function(e){(h=h.filter((function(t){return t.id!==e}))).length||t(window).off("scroll resize",v).off("acfrefresh orientationchange",g)},function(e,i){e instanceof jQuery&&(e=e[0]),n.isInView(e)?i.apply(this):function(e,n){h.length||t(window).on("scroll resize",v).on("acfrefresh orientationchange",g),h.push({id:p++,el:e,callback:n})}(e,i)}),n.once=function(t){var n=0;return function(){return n++>0?t=e:t.apply(this,arguments)}},n.focusAttention=function(e){var i=1e3;e.addClass("acf-attention -focused"),n.isInView(e)||(t("body, html").animate({scrollTop:e.offset().top-t(window).height()/2},500),i+=500),setTimeout((function(){e.removeClass("-focused"),setTimeout((function(){e.removeClass("acf-attention")}),250)}),i)},n.onFocus=function(e,n){var i=!1,o=!1,r=function(){i=!0,setTimeout((function(){i=!1}),1),s(!0)},a=function(){i||s(!1)},s=function(i){o!==i&&(i?(t(document).on("click",a),e.on("blur","input, select, textarea",a)):(t(document).off("click",a),e.off("blur","input, select, textarea",a)),o=i,n(i))};e.on("click",r),e.on("focus","input, select, textarea",r)},n.disableForm=function(t){t.submitter&&t.submitter.classList.add("disabled")},t.fn.exists=function(){return t(this).length>0},t.fn.outerHTML=function(){return t(this).get(0).outerHTML},Array.prototype.indexOf||(Array.prototype.indexOf=function(e){return t.inArray(e,this)}),n.isNumeric=function(t){return!isNaN(parseFloat(t))&&isFinite(t)},n.refresh=n.debounce((function(){t(window).trigger("acfrefresh"),n.doAction("refresh")}),0),t(document).ready((function(){n.doAction("ready")})),t(window).on("load",(function(){setTimeout((function(){n.doAction("load")}))})),t(window).on("beforeunload",(function(){n.doAction("unload")})),t(window).on("resize",(function(){n.doAction("resize")})),t(document).on("sortstart",(function(t,e){n.doAction("sortstart",e.item,e.placeholder)})),t(document).on("sortstop",(function(t,e){n.doAction("sortstop",e.item,e.placeholder)}))}(jQuery)}},e={};function n(i){var o=e[i];if(void 0!==o)return o.exports;var r=e[i]={exports:{}};return t[i](r,r.exports,n),r.exports}n.n=t=>{var e=t&&t.__esModule?()=>t.default:()=>t;return n.d(e,{a:e}),e},n.d=(t,e)=>{for(var i in e)n.o(e,i)&&!n.o(t,i)&&Object.defineProperty(t,i,{enumerable:!0,get:e[i]})},n.o=(t,e)=>Object.prototype.hasOwnProperty.call(t,e),(()=>{"use strict";n(6047),n(1018),n(6891),n(4204),n(5751),n(9340),n(2700),n(2177)})()})(); \ No newline at end of file diff --git a/assets/build/js/pro/acf-pro-blocks.js b/assets/build/js/pro/acf-pro-blocks.js index 4f257d4..2d2b1bb 100644 --- a/assets/build/js/pro/acf-pro-blocks.js +++ b/assets/build/js/pro/acf-pro-blocks.js @@ -5066,19 +5066,19 @@ function _defineProperty(obj, key, value) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { -/* harmony export */ "default": () => (/* binding */ _toPrimitive) +/* harmony export */ "default": () => (/* binding */ toPrimitive) /* harmony export */ }); /* harmony import */ var _typeof_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./typeof.js */ "./node_modules/@babel/runtime/helpers/esm/typeof.js"); -function _toPrimitive(input, hint) { - if ((0,_typeof_js__WEBPACK_IMPORTED_MODULE_0__["default"])(input) !== "object" || input === null) return input; - var prim = input[Symbol.toPrimitive]; - if (prim !== undefined) { - var res = prim.call(input, hint || "default"); - if ((0,_typeof_js__WEBPACK_IMPORTED_MODULE_0__["default"])(res) !== "object") return res; +function toPrimitive(t, r) { + if ("object" != (0,_typeof_js__WEBPACK_IMPORTED_MODULE_0__["default"])(t) || !t) return t; + var e = t[Symbol.toPrimitive]; + if (void 0 !== e) { + var i = e.call(t, r || "default"); + if ("object" != (0,_typeof_js__WEBPACK_IMPORTED_MODULE_0__["default"])(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } - return (hint === "string" ? String : Number)(input); + return ("string" === r ? String : Number)(t); } /***/ }), @@ -5092,15 +5092,15 @@ function _toPrimitive(input, hint) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { -/* harmony export */ "default": () => (/* binding */ _toPropertyKey) +/* harmony export */ "default": () => (/* binding */ toPropertyKey) /* harmony export */ }); /* harmony import */ var _typeof_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./typeof.js */ "./node_modules/@babel/runtime/helpers/esm/typeof.js"); /* harmony import */ var _toPrimitive_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./toPrimitive.js */ "./node_modules/@babel/runtime/helpers/esm/toPrimitive.js"); -function _toPropertyKey(arg) { - var key = (0,_toPrimitive_js__WEBPACK_IMPORTED_MODULE_1__["default"])(arg, "string"); - return (0,_typeof_js__WEBPACK_IMPORTED_MODULE_0__["default"])(key) === "symbol" ? key : String(key); +function toPropertyKey(t) { + var i = (0,_toPrimitive_js__WEBPACK_IMPORTED_MODULE_1__["default"])(t, "string"); + return "symbol" == (0,_typeof_js__WEBPACK_IMPORTED_MODULE_0__["default"])(i) ? i : String(i); } /***/ }), diff --git a/assets/build/js/pro/acf-pro-blocks.js.map b/assets/build/js/pro/acf-pro-blocks.js.map index 7c39b70..1679f38 100644 --- a/assets/build/js/pro/acf-pro-blocks.js.map +++ b/assets/build/js/pro/acf-pro-blocks.js.map @@ -1 +1 @@ -{"version":3,"file":"acf-pro-blocks.js","mappings":"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E;EACb,CAAC;AACF,CAAC,EAAIzN,MAAO,CAAC;;;;;;;;;;AChTb;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;;AAEL;AACA;AACA;AACA;AACA,GAAG;;AAEH;AACA;AACA;AACA;AACA,kCAAkC,gBAAgB;AAClD;AACA;AACA,KAAK;;AAEL;AACA;AACA,gCAAgC,kBAAkB;AAClD;AACA;AACA;AACA;AACA;;AAEA;;;;;;;;;;;AChCA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA,KAAK;;AAEL;AACA;AACA;AACA,KAAK;;AAEL;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA,sBAAsB,cAAc;AACpC;AACA;AACA,KAAK;;AAEL;AACA;AACA,2BAA2B,OAAO;AAClC;AACA;AACA,KAAK;;AAEL;AACA;AACA,yCAAyC,kBAAkB;AAC3D;AACA;AACA,KAAK;;AAEL;AACA;AACA,kCAAkC,uBAAuB;AACzD;AACA;AACA,KAAK;;AAEL;AACA;AACA,gCAAgC,kBAAkB;AAClD;AACA;AACA;AACA;AACA,KAAK;;AAEL;AACA;AACA,kCAAkC,gBAAgB;AAClD;AACA;AACA,KAAK;;AAEL;AACA;AACA,mCAAmC,kBAAkB;AACrD;AACA,wBAAwB,OAAO;AAC/B;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;;AAEL;AACA;AACA;AACA;;AAEA,6CAA6C;AAC7C;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA,CAAC;;;;;;;;;;;AC/FD;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;;;;;;;;;;;ACpBA;AACA,cAAc,mBAAO,CAAC,4CAAO;AAC7B,aAAa,8EAAuB;AACpC,iBAAiB,mBAAO,CAAC,oDAAW;AACpC,YAAY,6EAAsB;AAClC;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,oBAAoB,cAAc;AAClC;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,oBAAoB,cAAc;AAClC;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,CAAC;;;;;;;;;;;;;AC/JD;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEa;;AAEb,IAAI,IAAqC;AACzC;;AAEA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,YAAY;AACZ;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,YAAY;AACZ;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA,KAAK;;;AAGL;;AAEA;AACA,oBAAoB;;AAEpB;AACA;AACA,MAAM;;;AAGN;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;;AAEA,4BAA4B;AAC5B;AACA,qCAAqC;;AAErC,gCAAgC;AAChC;AACA;;AAEA,gCAAgC;;AAEhC;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,6FAA6F,aAAa;AAC1G;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,iGAAiG,eAAe;AAChH;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,MAAM;;;AAGN;AACA;AACA,KAAK,GAAG;;AAER,kDAAkD;AAClD;AACA;;AAEA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA,8MAA8M;;AAE9M;AACA;AACA;AACA;AACA;AACA;;;AAGA;AACA;AACA;AACA,aAAa,YAAY;AACzB,cAAc,SAAS;AACvB;AACA;AACA;AACA;AACA;AACA,GAAG;;AAEH;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,aAAa,YAAY;AACzB,aAAa,WAAW;AACxB,aAAa,SAAS;AACtB;AACA;AACA;AACA;AACA,GAAG;;AAEH;AACA;AACA;AACA;AACA;AACA;AACA;AACA,aAAa,YAAY;AACzB,aAAa,QAAQ;AACrB,aAAa,WAAW;AACxB,aAAa,SAAS;AACtB;AACA;AACA;AACA;AACA,GAAG;;AAEH;AACA;AACA;AACA;AACA;AACA;AACA,aAAa,YAAY;AACzB,aAAa,QAAQ;AACrB,aAAa,WAAW;AACxB,aAAa,SAAS;AACtB;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;AACA;;;AAGA;AACA;AACA,0BAA0B;;AAE1B,2BAA2B;AAC3B;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,WAAW,iBAAiB;AAC5B;AACA,WAAW,WAAW;AACtB;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,WAAW,WAAW;AACtB;AACA;AACA;;;AAGA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;AAGA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA,KAAK;AACL;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA,0BAA0B;;AAE1B;AACA;AACA;;AAEA;AACA,oDAAoD;;AAEpD;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;;AAEA,iCAAiC;;AAEjC;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,EAAE;;;AAGF;AACA;AACA;AACA;AACA;AACA,MAAM;AACN;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA,wCAAwC;AACxC;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA,EAAE;;;AAGF;AACA;AACA,EAAE;;;AAGF;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA,YAAY;AACZ;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA,GAAG;AACH;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA,GAAG;AACH;;AAEA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,WAAW,GAAG;AACd,WAAW,GAAG;AACd,WAAW,GAAG;AACd,WAAW,eAAe;AAC1B,WAAW,GAAG;AACd,WAAW,GAAG;AACd;AACA;AACA;AACA;AACA,WAAW,GAAG;AACd;AACA;AACA;;;AAGA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA,yBAAyB;AACzB;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA,KAAK,GAAG;;AAER;AACA;AACA;AACA;AACA;AACA,KAAK,GAAG;AACR;;AAEA;AACA;AACA;AACA;AACA;AACA,KAAK;;AAEL;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA,gBAAgB;;AAEhB;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA,qEAAqE;;AAErE;AACA;AACA;AACA;AACA;AACA,IAAI;AACJ;;;AAGA;;AAEA;AACA;AACA,IAAI;AACJ;;AAEA,oBAAoB,oBAAoB;AACxC;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA,IAAI;;;AAGJ;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA,gBAAgB;;AAEhB,uBAAuB,kBAAkB;;AAEzC;AACA,yBAAyB;;AAEzB,4BAA4B;AAC5B;AACA;;AAEA,gCAAgC;;AAEhC;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA,MAAM;;;AAGN;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA,UAAU;AACV;AACA;AACA;AACA;AACA,IAAI;AACJ;;;AAGA;;AAEA;AACA;AACA,IAAI;AACJ;;AAEA,oBAAoB,oBAAoB;AACxC;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA,WAAW,SAAS;AACpB,YAAY,SAAS;AACrB;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA,WAAW,QAAQ;AACnB,YAAY,QAAQ;AACpB;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,GAAG;AACH;AACA;AACA;AACA;AACA;AACA;;;AAGA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,WAAW,GAAG;AACd,WAAW,QAAQ;AACnB,YAAY;AACZ;;;AAGA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA,IAAI;;;AAGJ;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA,IAAI;AACJ;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA,wCAAwC;AACxC;;AAEA;;AAEA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA,OAAO;AACP,MAAM;AACN;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;AACA,wBAAwB;;AAExB;;AAEA;AACA,oBAAoB,qBAAqB;AACzC;AACA;AACA;AACA;AACA,IAAI;AACJ;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA,MAAM;AACN;AACA;AACA,qIAAqI,yCAAyC;AAC9K;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,WAAW,IAAI;AACf,WAAW,kBAAkB;AAC7B,WAAW,GAAG;AACd,YAAY,QAAQ;AACpB;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA,GAAG;AACH;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,WAAW,IAAI;AACf,YAAY,QAAQ;AACpB;;;AAGA;AACA;AACA;AACA,SAAS;AACT,GAAG;AACH;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,WAAW,IAAI;AACf,WAAW,kBAAkB;AAC7B,WAAW,GAAG;AACd;AACA;AACA;AACA,wCAAwC;AACxC,GAAG;AACH;AACA;AACA;AACA;AACA;AACA;AACA;;;AAGA;AACA;AACA;AACA,GAAG;AACH;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,WAAW,SAAS;AACpB,YAAY,cAAc;AAC1B;AACA;;;AAGA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,2BAA2B;AAC3B;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO;;AAEP;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA,SAAS;AACT;AACA;AACA;AACA,OAAO;AACP;AACA;AACA;AACA,SAAS;AACT;AACA;AACA;AACA,OAAO;AACP;AACA;AACA;AACA,SAAS;AACT;AACA;AACA;AACA,OAAO;AACP;AACA;AACA;AACA,SAAS;AACT;AACA;AACA;AACA,OAAO;AACP;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA,OAAO;AACP;AACA;AACA;AACA,SAAS;AACT;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA,KAAK,GAAG;;AAER;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,2BAA2B;AAC3B;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;;AAEL;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA,IAAI;AACJ;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,mBAAmB;;AAEnB;AACA;AACA;AACA;AACA;AACA,SAAS;AACT;AACA;;AAEA,0CAA0C;AAC1C;;AAEA;AACA;AACA,WAAW;AACX;AACA,OAAO;AACP;AACA;AACA;AACA;AACA,SAAS;AACT;AACA;;AAEA,oCAAoC;AACpC;;AAEA;AACA;AACA,WAAW;AACX;AACA;AACA,KAAK;AACL;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA,MAAM;AACN;AACA,MAAM;AACN;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO;AACP;AACA,wBAAwB;AACxB;AACA;AACA;AACA;AACA,+CAA+C,IAAI;AACnD;;AAEA;AACA;AACA;AACA;AACA,KAAK;AACL;;AAEA;AACA;;AAEA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA,IAAI;;;AAGJ;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO;AACP;AACA,wBAAwB;AACxB;AACA;AACA;AACA;AACA,oCAAoC,IAAI;AACxC;;AAEA;AACA;AACA;AACA;AACA,KAAK;AACL;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA,IAAI;AACJ;AACA;;;AAGA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,0CAA0C;AAC1C;;AAEA;AACA;AACA,QAAQ;AACR;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,uCAAuC;;AAEvC;AACA;AACA;AACA;AACA;AACA,SAAS;;AAET;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO;AACP;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,SAAS;;AAET;AACA,sBAAsB;AACtB;AACA,SAAS;AACT,uBAAuB;AACvB;AACA,SAAS;AACT,uBAAuB;AACvB;AACA,SAAS;AACT,wBAAwB;AACxB;AACA,SAAS;AACT,wBAAwB;AACxB;AACA,SAAS;AACT,iCAAiC;AACjC;AACA,SAAS;AACT,2BAA2B;AAC3B;AACA,SAAS;AACT,OAAO;AACP;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,QAAQ;AACR;AACA;AACA;AACA,MAAM;;;AAGN;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA,2DAA2D;;AAE3D;AACA;;AAEA;AACA,2DAA2D;AAC3D;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,SAAS;;;AAGT;AACA;AACA;AACA;AACA;AACA;AACA,OAAO;;AAEP;AACA;AACA;AACA;AACA;AACA,UAAU;AACV;AACA;;AAEA;AACA,QAAQ;AACR;AACA;AACA,UAAU;AACV;AACA;;AAEA;AACA;AACA,MAAM;AACN;AACA;AACA,QAAQ;AACR;AACA;;AAEA;AACA;AACA,IAAI;AACJ;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA,aAAa,kBAAkB;AAC/B;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,mBAAmB;AACnB;;AAEA;AACA;AACA,gFAAgF;AAChF;AACA;;;AAGA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA,kBAAkB;;;AAGlB;AACA;AACA,cAAc;AACd;;AAEA;AACA;AACA;AACA;AACA,IAAI;AACJ;;AAEA;AACA;AACA;AACA;;AAEA;AACA,IAAI;;;AAGJ;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,YAAY;AACZ;AACA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,MAAM;AACN;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA,8BAA8B;AAC9B;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA,2HAA2H;AAC3H;AACA;AACA;;AAEA;AACA,UAAU;AACV;AACA;;AAEA;AACA;;AAEA,oEAAoE;;AAEpE;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,MAAM;AACN;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;;AAGA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,WAAW,cAAc;AACzB,WAAW,GAAG;AACd;;;AAGA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;;AAEA,2DAA2D;AAC3D;AACA;;AAEA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,WAAW,WAAW;AACtB,WAAW,GAAG;AACd;;;AAGA;AACA;AACA;AACA;;AAEA;AACA,oBAAoB,iBAAiB;AACrC;;AAEA;AACA;AACA;AACA;AACA,IAAI;AACJ;AACA;AACA;AACA;AACA,IAAI;AACJ;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,WAAW,cAAc;AACzB;;;AAGA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;;AAEA;AACA;AACA,MAAM;AACN;AACA;AACA;AACA,MAAM;AACN;AACA;;AAEA;AACA;AACA;AACA;AACA,MAAM;AACN,4CAA4C;;AAE5C;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,WAAW,cAAc;AACzB;;;AAGA;AACA;AACA;;AAEA,oBAAoB,iBAAiB;AACrC;;AAEA;AACA;;AAEA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;AACA,4CAA4C;AAC5C;;AAEA;AACA;;AAEA;AACA;AACA;;AAEA;;AAEA;AACA;AACA,MAAM;AACN;AACA;;AAEA;;AAEA;AACA;AACA,MAAM;AACN;AACA,MAAM;AACN;AACA;AACA,MAAM;AACN;AACA;;AAEA;AACA;AACA;AACA;;AAEA,sDAAsD;AACtD;;AAEA;AACA;AACA,IAAI;AACJ;AACA;AACA;AACA;;;AAGA;AACA,oBAAoB,sBAAsB;AAC1C;AACA;AACA;;AAEA;AACA;AACA,IAAI;AACJ;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA,MAAM;;;AAGN;AACA;AACA;AACA;;AAEA;AACA;AACA,SAAS;AACT;AACA;AACA,KAAK;AACL;;AAEA;AACA;AACA;AACA;;AAEA,kBAAkB,sBAAsB;AACxC;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA,IAAI;AACJ;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,yDAAyD;AACzD;;AAEA;AACA,MAAM;AACN;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,2BAA2B;AAC3B;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA,MAAM;AACN;AACA;AACA,MAAM;AACN;AACA;;AAEA;AACA,mCAAmC;AACnC;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA,cAAc;AACd;AACA;AACA,WAAW;AACX;AACA;AACA;AACA,WAAW;AACX;AACA;;AAEA;AACA;AACA;AACA,+CAA+C;AAC/C;AACA;;AAEA,0OAA0O;AAC1O;AACA,WAAW;AACX;AACA;;AAEA;AACA,MAAM;AACN,gCAAgC;AAChC;;AAEA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA,UAAU;AACV;;;AAGA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,cAAc;AACd;AACA;AACA;AACA;AACA;AACA,QAAQ;AACR;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,YAAY;AACZ;AACA;AACA;AACA,SAAS;AACT,QAAQ;AACR;AACA;AACA,MAAM;AACN;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA,eAAe,kBAAkB;AACjC;;AAEA;AACA;AACA,YAAY;AACZ;;AAEA;AACA,QAAQ;AACR;AACA;AACA;AACA,QAAQ;AACR;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA,gBAAgB;AAChB,iBAAiB;AACjB,gBAAgB;AAChB,gBAAgB;AAChB,qBAAqB;AACrB,kBAAkB;AAClB,gBAAgB;AAChB,0DAA0D;AAC1D,oBAAoB;AACpB,qBAAqB;AACrB,qBAAqB;AACrB,qBAAqB;AACrB,iBAAiB;AACjB,kBAAkB;AAClB,sBAAsB;AACtB,YAAY;AACZ,YAAY;AACZ,uBAAuB;AACvB,oBAAoB;AACpB,mBAAmB;AACnB,kBAAkB;AAClB,qBAAqB;AACrB,wBAAwB;AACxB,iBAAiB;AACjB,aAAa;AACb,2BAA2B;AAC3B,0BAA0B;AAC1B,uBAAuB;AACvB,eAAe;AACf,kBAAkB;AAClB,cAAc;AACd,gBAAgB;AAChB,4BAA4B;AAC5B,qBAAqB;AACrB,eAAe;AACf;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,GAAG;AACH;;;;;;;;;;;;AClrFa;;AAEb,IAAI,KAAqC,EAAE,EAE1C,CAAC;AACF,EAAE,uHAAsD;AACxD;;;;;;;;;;;;;;;;;ACN+C;AAChC;AACf,QAAQ,6DAAa;AACrB;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL,IAAI;AACJ;AACA;AACA;AACA;;;;;;;;;;;;;;;;ACdkC;AACnB;AACf,MAAM,sDAAO;AACb;AACA;AACA;AACA,QAAQ,sDAAO;AACf;AACA;AACA;AACA;;;;;;;;;;;;;;;;;ACVkC;AACS;AAC5B;AACf,YAAY,2DAAW;AACvB,SAAS,sDAAO;AAChB;;;;;;;;;;;;;;;ACLe;AACf;;AAEA;AACA;AACA,IAAI;AACJ;AACA,GAAG;AACH;;;;;;UCRA;UACA;;UAEA;UACA;UACA;UACA;UACA;UACA;UACA;UACA;UACA;UACA;UACA;UACA;UACA;;UAEA;UACA;;UAEA;UACA;;UAEA;UACA;UACA;;;;;WCzBA;WACA;WACA;WACA;WACA;WACA,iCAAiC,WAAW;WAC5C;WACA;;;;;WCPA;WACA;WACA;WACA;WACA,yCAAyC,wCAAwC;WACjF;WACA;WACA;;;;;WCPA;;;;;WCAA;WACA;WACA;WACA,uDAAuD,iBAAiB;WACxE;WACA,gDAAgD,aAAa;WAC7D;;;;;WCNA;WACA;WACA;WACA;WACA;;;;;;;;;;;;;;;ACJ6B","sources":["webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/js/pro/_acf-blocks.js","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/js/pro/_acf-jsx-names.js","webpack://advanced-custom-fields-pro/./node_modules/charenc/charenc.js","webpack://advanced-custom-fields-pro/./node_modules/crypt/crypt.js","webpack://advanced-custom-fields-pro/./node_modules/is-buffer/index.js","webpack://advanced-custom-fields-pro/./node_modules/md5/md5.js","webpack://advanced-custom-fields-pro/./node_modules/react/cjs/react.development.js","webpack://advanced-custom-fields-pro/./node_modules/react/index.js","webpack://advanced-custom-fields-pro/./node_modules/@babel/runtime/helpers/esm/defineProperty.js","webpack://advanced-custom-fields-pro/./node_modules/@babel/runtime/helpers/esm/toPrimitive.js","webpack://advanced-custom-fields-pro/./node_modules/@babel/runtime/helpers/esm/toPropertyKey.js","webpack://advanced-custom-fields-pro/./node_modules/@babel/runtime/helpers/esm/typeof.js","webpack://advanced-custom-fields-pro/webpack/bootstrap","webpack://advanced-custom-fields-pro/webpack/runtime/compat get default export","webpack://advanced-custom-fields-pro/webpack/runtime/define property getters","webpack://advanced-custom-fields-pro/webpack/runtime/hasOwnProperty shorthand","webpack://advanced-custom-fields-pro/webpack/runtime/make namespace object","webpack://advanced-custom-fields-pro/webpack/runtime/node module decorator","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/js/pro/acf-pro-blocks.js"],"sourcesContent":["const md5 = require( 'md5' );\n\n( ( $, undefined ) => {\n\t// Dependencies.\n\tconst {\n\t\tBlockControls,\n\t\tInspectorControls,\n\t\tInnerBlocks,\n\t\tuseBlockProps,\n\t\tAlignmentToolbar,\n\t\tBlockVerticalAlignmentToolbar,\n\t} = wp.blockEditor;\n\n\tconst { ToolbarGroup, ToolbarButton, Placeholder, Spinner } = wp.components;\n\tconst { Fragment } = wp.element;\n\tconst { Component } = React;\n\tconst { withSelect } = wp.data;\n\tconst { createHigherOrderComponent } = wp.compose;\n\n\t// Potentially experimental dependencies.\n\tconst BlockAlignmentMatrixToolbar =\n\t\twp.blockEditor.__experimentalBlockAlignmentMatrixToolbar ||\n\t\twp.blockEditor.BlockAlignmentMatrixToolbar;\n\t// Gutenberg v10.x begins transition from Toolbar components to Control components.\n\tconst BlockAlignmentMatrixControl =\n\t\twp.blockEditor.__experimentalBlockAlignmentMatrixControl ||\n\t\twp.blockEditor.BlockAlignmentMatrixControl;\n\tconst BlockFullHeightAlignmentControl =\n\t\twp.blockEditor.__experimentalBlockFullHeightAligmentControl ||\n\t\twp.blockEditor.__experimentalBlockFullHeightAlignmentControl ||\n\t\twp.blockEditor.BlockFullHeightAlignmentControl;\n\tconst useInnerBlocksProps =\n\t\twp.blockEditor.__experimentalUseInnerBlocksProps ||\n\t\twp.blockEditor.useInnerBlocksProps;\n\n\t/**\n\t * Storage for registered block types.\n\t *\n\t * @since 5.8.0\n\t * @var object\n\t */\n\tconst blockTypes = {};\n\n\t/**\n\t * Returns a block type for the given name.\n\t *\n\t * @date\t20/2/19\n\t * @since\t5.8.0\n\t *\n\t * @param\tstring name The block name.\n\t * @return\t(object|false)\n\t */\n\tfunction getBlockType( name ) {\n\t\treturn blockTypes[ name ] || false;\n\t}\n\n\t/**\n\t * Returns a block version for a given block name\n\t *\n\t * @date 8/6/22\n\t * @since 6.0\n\t *\n\t * @param string name The block name\n\t * @return int\n\t */\n\tfunction getBlockVersion( name ) {\n\t\tconst blockType = getBlockType( name );\n\t\treturn blockType.acf_block_version || 1;\n\t}\n\n\t/**\n\t * Returns true if a block (identified by client ID) is nested in a query loop block.\n\t *\n\t * @date 17/1/22\n\t * @since 5.12\n\t *\n\t * @param {string} clientId A block client ID\n\t * @return boolean\n\t */\n\tfunction isBlockInQueryLoop( clientId ) {\n\t\tconst parents = wp.data\n\t\t\t.select( 'core/block-editor' )\n\t\t\t.getBlockParents( clientId );\n\t\tconst parentsData = wp.data\n\t\t\t.select( 'core/block-editor' )\n\t\t\t.getBlocksByClientId( parents );\n\t\treturn parentsData.filter( ( block ) => block.name === 'core/query' )\n\t\t\t.length;\n\t}\n\n\t/**\n\t * Returns true if we're currently inside the WP 5.9+ site editor.\n\t *\n\t * @date 08/02/22\n\t * @since 5.12\n\t *\n\t * @return boolean\n\t */\n\tfunction isSiteEditor() {\n\t\treturn typeof pagenow === 'string' && pagenow === 'site-editor';\n\t}\n\n\t/**\n\t * Returns true if the block editor is currently showing the desktop device type preview.\n\t *\n\t * This function will always return true in the site editor as it uses the\n\t * edit-post store rather than the edit-site store.\n\t *\n\t * @date 15/02/22\n\t * @since 5.12\n\t *\n\t * @return boolean\n\t */\n\tfunction isDesktopPreviewDeviceType() {\n\t\tconst editPostStore = select( 'core/edit-post' );\n\n\t\t// Return true if the edit post store isn't available (such as in the widget editor)\n\t\tif ( ! editPostStore ) return true;\n\n\t\t// Check if function exists (experimental or not) and return true if it's Desktop, or doesn't exist.\n\t\tif ( editPostStore.__experimentalGetPreviewDeviceType ) {\n\t\t\treturn (\n\t\t\t\t'Desktop' === editPostStore.__experimentalGetPreviewDeviceType()\n\t\t\t);\n\t\t} else if ( editPostStore.getPreviewDeviceType ) {\n\t\t\treturn 'Desktop' === editPostStore.getPreviewDeviceType();\n\t\t} else {\n\t\t\treturn true;\n\t\t}\n\t}\n\n\t/**\n\t * Returns true if the block editor is currently in template edit mode.\n\t *\n\t * @date 16/02/22\n\t * @since 5.12\n\t *\n\t * @return boolean\n\t */\n\tfunction isEditingTemplate() {\n\t\tconst editPostStore = select( 'core/edit-post' );\n\n\t\t// Return false if the edit post store isn't available (such as in the widget editor)\n\t\tif ( ! editPostStore ) return false;\n\n\t\t// Return false if the function doesn't exist\n\t\tif ( ! editPostStore.isEditingTemplate ) return false;\n\n\t\treturn editPostStore.isEditingTemplate();\n\t}\n\n\t/**\n\t * Returns true if we're currently inside an iFramed non-desktop device preview type (WP5.9+)\n\t *\n\t * @date 15/02/22\n\t * @since 5.12\n\t *\n\t * @return boolean\n\t */\n\tfunction isiFramedMobileDevicePreview() {\n\t\treturn (\n\t\t\t$( 'iframe[name=editor-canvas]' ).length &&\n\t\t\t! isDesktopPreviewDeviceType()\n\t\t);\n\t}\n\n\t/**\n\t * Registers a block type.\n\t *\n\t * @date\t19/2/19\n\t * @since\t5.8.0\n\t *\n\t * @param\tobject blockType The block type settings localized from PHP.\n\t * @return\tobject The result from wp.blocks.registerBlockType().\n\t */\n\tfunction registerBlockType( blockType ) {\n\t\t// Bail early if is excluded post_type.\n\t\tconst allowedTypes = blockType.post_types || [];\n\t\tif ( allowedTypes.length ) {\n\t\t\t// Always allow block to appear on \"Edit reusable Block\" screen.\n\t\t\tallowedTypes.push( 'wp_block' );\n\n\t\t\t// Check post type.\n\t\t\tconst postType = acf.get( 'postType' );\n\t\t\tif ( ! allowedTypes.includes( postType ) ) {\n\t\t\t\treturn false;\n\t\t\t}\n\t\t}\n\n\t\t// Handle svg HTML.\n\t\tif (\n\t\t\ttypeof blockType.icon === 'string' &&\n\t\t\tblockType.icon.substr( 0, 4 ) === '{ iconHTML };\n\t\t}\n\n\t\t// Remove icon if empty to allow for default \"block\".\n\t\t// Avoids JS error preventing block from being registered.\n\t\tif ( ! blockType.icon ) {\n\t\t\tdelete blockType.icon;\n\t\t}\n\n\t\t// Check category exists and fallback to \"common\".\n\t\tconst category = wp.blocks\n\t\t\t.getCategories()\n\t\t\t.filter( ( { slug } ) => slug === blockType.category )\n\t\t\t.pop();\n\t\tif ( ! category ) {\n\t\t\t//console.warn( `The block \"${blockType.name}\" is registered with an unknown category \"${blockType.category}\".` );\n\t\t\tblockType.category = 'common';\n\t\t}\n\n\t\t// Merge in block settings before local additions.\n\t\tblockType = acf.parseArgs( blockType, {\n\t\t\ttitle: '',\n\t\t\tname: '',\n\t\t\tcategory: '',\n\t\t\tapi_version: 2,\n\t\t\tacf_block_version: 1,\n\t\t} );\n\n\t\t// Remove all empty attribute defaults from PHP values to allow serialisation.\n\t\t// https://github.com/WordPress/gutenberg/issues/7342\n\t\tfor ( const key in blockType.attributes ) {\n\t\t\tif ( blockType.attributes[ key ].default.length === 0 ) {\n\t\t\t\tdelete blockType.attributes[ key ].default;\n\t\t\t}\n\t\t}\n\n\t\t// Apply anchor supports to avoid block editor default writing to ID.\n\t\tif ( blockType.supports.anchor ) {\n\t\t\tblockType.attributes.anchor = {\n\t\t\t\ttype: 'string',\n\t\t\t};\n\t\t}\n\n\t\t// Append edit and save functions.\n\t\tlet ThisBlockEdit = BlockEdit;\n\t\tlet ThisBlockSave = BlockSave;\n\n\t\t// Apply alignText functionality.\n\t\tif ( blockType.supports.alignText || blockType.supports.align_text ) {\n\t\t\tblockType.attributes = addBackCompatAttribute(\n\t\t\t\tblockType.attributes,\n\t\t\t\t'align_text',\n\t\t\t\t'string'\n\t\t\t);\n\t\t\tThisBlockEdit = withAlignTextComponent( ThisBlockEdit, blockType );\n\t\t}\n\n\t\t// Apply alignContent functionality.\n\t\tif (\n\t\t\tblockType.supports.alignContent ||\n\t\t\tblockType.supports.align_content\n\t\t) {\n\t\t\tblockType.attributes = addBackCompatAttribute(\n\t\t\t\tblockType.attributes,\n\t\t\t\t'align_content',\n\t\t\t\t'string'\n\t\t\t);\n\t\t\tThisBlockEdit = withAlignContentComponent(\n\t\t\t\tThisBlockEdit,\n\t\t\t\tblockType\n\t\t\t);\n\t\t}\n\n\t\t// Apply fullHeight functionality.\n\t\tif ( blockType.supports.fullHeight || blockType.supports.full_height ) {\n\t\t\tblockType.attributes = addBackCompatAttribute(\n\t\t\t\tblockType.attributes,\n\t\t\t\t'full_height',\n\t\t\t\t'boolean'\n\t\t\t);\n\t\t\tThisBlockEdit = withFullHeightComponent(\n\t\t\t\tThisBlockEdit,\n\t\t\t\tblockType.blockType\n\t\t\t);\n\t\t}\n\n\t\t// Set edit and save functions.\n\t\tblockType.edit = ( props ) => ;\n\t\tblockType.save = () => ;\n\n\t\t// Add to storage.\n\t\tblockTypes[ blockType.name ] = blockType;\n\n\t\t// Register with WP.\n\t\tconst result = wp.blocks.registerBlockType( blockType.name, blockType );\n\n\t\t// Fix bug in 'core/anchor/attribute' filter overwriting attribute.\n\t\t// Required for < WP5.9\n\t\t// See https://github.com/WordPress/gutenberg/issues/15240\n\t\tif ( result.attributes.anchor ) {\n\t\t\tresult.attributes.anchor = {\n\t\t\t\ttype: 'string',\n\t\t\t};\n\t\t}\n\n\t\t// Return result.\n\t\treturn result;\n\t}\n\n\t/**\n\t * Returns the wp.data.select() response with backwards compatibility.\n\t *\n\t * @date\t17/06/2020\n\t * @since\t5.9.0\n\t *\n\t * @param\tstring selector The selector name.\n\t * @return\tmixed\n\t */\n\tfunction select( selector ) {\n\t\tif ( selector === 'core/block-editor' ) {\n\t\t\treturn (\n\t\t\t\twp.data.select( 'core/block-editor' ) ||\n\t\t\t\twp.data.select( 'core/editor' )\n\t\t\t);\n\t\t}\n\t\treturn wp.data.select( selector );\n\t}\n\n\t/**\n\t * Returns the wp.data.dispatch() response with backwards compatibility.\n\t *\n\t * @date\t17/06/2020\n\t * @since\t5.9.0\n\t *\n\t * @param\tstring selector The selector name.\n\t * @return\tmixed\n\t */\n\tfunction dispatch( selector ) {\n\t\treturn wp.data.dispatch( selector );\n\t}\n\n\t/**\n\t * Returns an array of all blocks for the given args.\n\t *\n\t * @date\t27/2/19\n\t * @since\t5.7.13\n\t *\n\t * @param\t{object} args An object of key=>value pairs used to filter results.\n\t * @return\tarray.\n\t */\n\tfunction getBlocks( args ) {\n\t\tlet blocks = [];\n\n\t\t// Local function to recurse through all child blocks and add to the blocks array.\n\t\tconst recurseBlocks = ( block ) => {\n\t\t\tblocks.push( block );\n\t\t\tselect( 'core/block-editor' )\n\t\t\t\t.getBlocks( block.clientId )\n\t\t\t\t.forEach( recurseBlocks );\n\t\t};\n\n\t\t// Trigger initial recursion for parent level blocks.\n\t\tselect( 'core/block-editor' ).getBlocks().forEach( recurseBlocks );\n\n\t\t// Loop over args and filter.\n\t\tfor ( const k in args ) {\n\t\t\tblocks = blocks.filter(\n\t\t\t\t( { attributes } ) => attributes[ k ] === args[ k ]\n\t\t\t);\n\t\t}\n\n\t\t// Return results.\n\t\treturn blocks;\n\t}\n\n\t/**\n\t * Storage for the AJAX queue.\n\t *\n\t * @const {array}\n\t */\n\tconst ajaxQueue = {};\n\n\t/**\n\t * Storage for cached AJAX requests for block content.\n\t *\n\t * @since 5.12\n\t * @const {array}\n\t */\n\tconst fetchCache = {};\n\n\t/**\n\t * Fetches a JSON result from the AJAX API.\n\t *\n\t * @date\t28/2/19\n\t * @since\t5.7.13\n\t *\n\t * @param\tobject block The block props.\n\t * @query\tobject The query args used in AJAX callback.\n\t * @return\tobject The AJAX promise.\n\t */\n\tfunction fetchBlock( args ) {\n\t\tconst {\n\t\t\tattributes = {},\n\t\t\tcontext = {},\n\t\t\tquery = {},\n\t\t\tclientId = null,\n\t\t\tdelay = 0,\n\t\t} = args;\n\n\t\t// Build a unique queue ID from block data, including the clientId for edit forms.\n\t\tconst queueId = md5(\n\t\t\tJSON.stringify( { ...attributes, ...context, ...query } )\n\t\t);\n\n\t\tconst data = ajaxQueue[ queueId ] || {\n\t\t\tquery: {},\n\t\t\ttimeout: false,\n\t\t\tpromise: $.Deferred(),\n\t\t\tstarted: false,\n\t\t};\n\n\t\t// Append query args to storage.\n\t\tdata.query = { ...data.query, ...query };\n\n\t\tif ( data.started ) return data.promise;\n\n\t\t// Set fresh timeout.\n\t\tclearTimeout( data.timeout );\n\t\tdata.timeout = setTimeout( () => {\n\t\t\tdata.started = true;\n\t\t\tif ( fetchCache[ queueId ] ) {\n\t\t\t\tajaxQueue[ queueId ] = null;\n\t\t\t\tdata.promise.resolve.apply(\n\t\t\t\t\tfetchCache[ queueId ][ 0 ],\n\t\t\t\t\tfetchCache[ queueId ][ 1 ]\n\t\t\t\t);\n\t\t\t} else {\n\t\t\t\t$.ajax( {\n\t\t\t\t\turl: acf.get( 'ajaxurl' ),\n\t\t\t\t\tdataType: 'json',\n\t\t\t\t\ttype: 'post',\n\t\t\t\t\tcache: false,\n\t\t\t\t\tdata: acf.prepareForAjax( {\n\t\t\t\t\t\taction: 'acf/ajax/fetch-block',\n\t\t\t\t\t\tblock: JSON.stringify( attributes ),\n\t\t\t\t\t\tclientId: clientId,\n\t\t\t\t\t\tcontext: JSON.stringify( context ),\n\t\t\t\t\t\tquery: data.query,\n\t\t\t\t\t} ),\n\t\t\t\t} )\n\t\t\t\t\t.always( () => {\n\t\t\t\t\t\t// Clean up queue after AJAX request is complete.\n\t\t\t\t\t\tajaxQueue[ queueId ] = null;\n\t\t\t\t\t} )\n\t\t\t\t\t.done( function () {\n\t\t\t\t\t\tfetchCache[ queueId ] = [ this, arguments ];\n\t\t\t\t\t\tdata.promise.resolve.apply( this, arguments );\n\t\t\t\t\t} )\n\t\t\t\t\t.fail( function () {\n\t\t\t\t\t\tdata.promise.reject.apply( this, arguments );\n\t\t\t\t\t} );\n\t\t\t}\n\t\t}, delay );\n\n\t\t// Update storage.\n\t\tajaxQueue[ queueId ] = data;\n\n\t\t// Return promise.\n\t\treturn data.promise;\n\t}\n\n\t/**\n\t * Returns true if both object are the same.\n\t *\n\t * @date\t19/05/2020\n\t * @since\t5.9.0\n\t *\n\t * @param\tobject obj1\n\t * @param\tobject obj2\n\t * @return\tbool\n\t */\n\tfunction compareObjects( obj1, obj2 ) {\n\t\treturn JSON.stringify( obj1 ) === JSON.stringify( obj2 );\n\t}\n\n\t/**\n\t * Converts HTML into a React element.\n\t *\n\t * @date\t19/05/2020\n\t * @since\t5.9.0\n\t *\n\t * @param\tstring html The HTML to convert.\n\t * @param\tint acfBlockVersion The ACF block version number.\n\t * @return\tobject Result of React.createElement().\n\t */\n\tacf.parseJSX = ( html, acfBlockVersion ) => {\n\t\t// Apply a temporary wrapper for the jQuery parse to prevent text nodes triggering errors.\n\t\thtml = '
                          ' + html + '
                          ';\n\t\t// Correctly balance InnerBlocks tags for jQuery's initial parse.\n\t\thtml = html.replace(\n\t\t\t/]+)?\\/>/,\n\t\t\t''\n\t\t);\n\t\treturn parseNode( $( html )[ 0 ], acfBlockVersion, 0 ).props.children;\n\t};\n\n\t/**\n\t * Converts a DOM node into a React element.\n\t *\n\t * @date\t19/05/2020\n\t * @since\t5.9.0\n\t *\n\t * @param\tDOM node The DOM node.\n\t * @param\tint acfBlockVersion The ACF block version number.\n\t * @param\tint level The recursion level.\n\t * @return\tobject Result of React.createElement().\n\t */\n\tfunction parseNode( node, acfBlockVersion, level = 0 ) {\n\t\t// Get node name.\n\t\tconst nodeName = parseNodeName(\n\t\t\tnode.nodeName.toLowerCase(),\n\t\t\tacfBlockVersion\n\t\t);\n\t\tif ( ! nodeName ) {\n\t\t\treturn null;\n\t\t}\n\n\t\t// Get node attributes in React friendly format.\n\t\tconst nodeAttrs = {};\n\n\t\tif ( level === 1 && nodeName !== 'ACFInnerBlocks' ) {\n\t\t\t// Top level (after stripping away the container div), create a ref for passing through to ACF's JS API.\n\t\t\tnodeAttrs.ref = React.createRef();\n\t\t}\n\n\t\tacf.arrayArgs( node.attributes )\n\t\t\t.map( parseNodeAttr )\n\t\t\t.forEach( ( { name, value } ) => {\n\t\t\t\tnodeAttrs[ name ] = value;\n\t\t\t} );\n\n\t\tif ( 'ACFInnerBlocks' === nodeName ) {\n\t\t\treturn ;\n\t\t}\n\n\t\t// Define args for React.createElement().\n\t\tconst args = [ nodeName, nodeAttrs ];\n\t\tacf.arrayArgs( node.childNodes ).forEach( ( child ) => {\n\t\t\tif ( child instanceof Text ) {\n\t\t\t\tconst text = child.textContent;\n\t\t\t\tif ( text ) {\n\t\t\t\t\targs.push( text );\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\targs.push( parseNode( child, acfBlockVersion, level + 1 ) );\n\t\t\t}\n\t\t} );\n\n\t\t// Return element.\n\t\treturn React.createElement.apply( this, args );\n\t}\n\n\t/**\n\t * Converts a node or attribute name into it's JSX compliant name\n\t *\n\t * @date 05/07/2021\n\t * @since 5.9.8\n\t *\n\t * @param string name The node or attribute name.\n\t * @return string\n\t */\n\tfunction getJSXName( name ) {\n\t\tconst replacement = acf.isget( acf, 'jsxNameReplacements', name );\n\t\tif ( replacement ) return replacement;\n\t\treturn name;\n\t}\n\n\t/**\n\t * Converts the given name into a React friendly name or component.\n\t *\n\t * @date\t19/05/2020\n\t * @since\t5.9.0\n\t *\n\t * @param\tstring name The node name in lowercase.\n\t * @param\tint acfBlockVersion The ACF block version number.\n\t * @return\tmixed\n\t */\n\tfunction parseNodeName( name, acfBlockVersion ) {\n\t\tswitch ( name ) {\n\t\t\tcase 'innerblocks':\n\t\t\t\tif ( acfBlockVersion < 2 ) {\n\t\t\t\t\treturn InnerBlocks;\n\t\t\t\t}\n\t\t\t\treturn 'ACFInnerBlocks';\n\t\t\tcase 'script':\n\t\t\t\treturn Script;\n\t\t\tcase '#comment':\n\t\t\t\treturn null;\n\t\t\tdefault:\n\t\t\t\t// Replace names for JSX counterparts.\n\t\t\t\tname = getJSXName( name );\n\t\t}\n\t\treturn name;\n\t}\n\n\t/**\n\t * Functional component for ACFInnerBlocks.\n\t *\n\t * @since 6.0.0\n\t *\n\t * @param obj props element properties.\n\t * @return DOM element\n\t */\n\tfunction ACFInnerBlocks( props ) {\n\t\tconst { className = 'acf-innerblocks-container' } = props;\n\t\tconst innerBlockProps = useInnerBlocksProps(\n\t\t\t{ className: className },\n\t\t\tprops\n\t\t);\n\n\t\treturn
                          { innerBlockProps.children }
                          ;\n\t}\n\n\t/**\n\t * Converts the given attribute into a React friendly name and value object.\n\t *\n\t * @date\t19/05/2020\n\t * @since\t5.9.0\n\t *\n\t * @param\tobj nodeAttr The node attribute.\n\t * @return\tobj\n\t */\n\tfunction parseNodeAttr( nodeAttr ) {\n\t\tlet name = nodeAttr.name;\n\t\tlet value = nodeAttr.value;\n\n\t\t// Allow overrides for third party libraries who might use specific attributes.\n\t\tlet shortcut = acf.applyFilters(\n\t\t\t'acf_blocks_parse_node_attr',\n\t\t\tfalse,\n\t\t\tnodeAttr\n\t\t);\n\n\t\tif ( shortcut ) return shortcut;\n\n\t\tswitch ( name ) {\n\t\t\t// Class.\n\t\t\tcase 'class':\n\t\t\t\tname = 'className';\n\t\t\t\tbreak;\n\n\t\t\t// Style.\n\t\t\tcase 'style':\n\t\t\t\tconst css = {};\n\t\t\t\tvalue.split( ';' ).forEach( ( s ) => {\n\t\t\t\t\tconst pos = s.indexOf( ':' );\n\t\t\t\t\tif ( pos > 0 ) {\n\t\t\t\t\t\tlet ruleName = s.substr( 0, pos ).trim();\n\t\t\t\t\t\tconst ruleValue = s.substr( pos + 1 ).trim();\n\n\t\t\t\t\t\t// Rename core properties, but not CSS variables.\n\t\t\t\t\t\tif ( ruleName.charAt( 0 ) !== '-' ) {\n\t\t\t\t\t\t\truleName = acf.strCamelCase( ruleName );\n\t\t\t\t\t\t}\n\t\t\t\t\t\tcss[ ruleName ] = ruleValue;\n\t\t\t\t\t}\n\t\t\t\t} );\n\t\t\t\tvalue = css;\n\t\t\t\tbreak;\n\n\t\t\t// Default.\n\t\t\tdefault:\n\t\t\t\t// No formatting needed for \"data-x\" attributes.\n\t\t\t\tif ( name.indexOf( 'data-' ) === 0 ) {\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\n\t\t\t\t// Replace names for JSX counterparts.\n\t\t\t\tname = getJSXName( name );\n\n\t\t\t\t// Convert JSON values.\n\t\t\t\tconst c1 = value.charAt( 0 );\n\t\t\t\tif ( c1 === '[' || c1 === '{' ) {\n\t\t\t\t\tvalue = JSON.parse( value );\n\t\t\t\t}\n\n\t\t\t\t// Convert bool values.\n\t\t\t\tif ( value === 'true' || value === 'false' ) {\n\t\t\t\t\tvalue = value === 'true';\n\t\t\t\t}\n\t\t\t\tbreak;\n\t\t}\n\t\treturn {\n\t\t\tname,\n\t\t\tvalue,\n\t\t};\n\t}\n\n\t/**\n\t * Higher Order Component used to set default block attribute values.\n\t *\n\t * By modifying block attributes directly, instead of defining defaults in registerBlockType(),\n\t * WordPress will include them always within the saved block serialized JSON.\n\t *\n\t * @date\t31/07/2020\n\t * @since\t5.9.0\n\t *\n\t * @param\tComponent BlockListBlock The BlockListBlock Component.\n\t * @return\tComponent\n\t */\n\tconst withDefaultAttributes = createHigherOrderComponent(\n\t\t( BlockListBlock ) =>\n\t\t\tclass WrappedBlockEdit extends Component {\n\t\t\t\tconstructor( props ) {\n\t\t\t\t\tsuper( props );\n\n\t\t\t\t\t// Extract vars.\n\t\t\t\t\tconst { name, attributes } = this.props;\n\n\t\t\t\t\t// Only run on ACF Blocks.\n\t\t\t\t\tconst blockType = getBlockType( name );\n\t\t\t\t\tif ( ! blockType ) {\n\t\t\t\t\t\treturn;\n\t\t\t\t\t}\n\n\t\t\t\t\t// Check and remove any empty string attributes to match PHP behaviour.\n\t\t\t\t\tObject.keys( attributes ).forEach( ( key ) => {\n\t\t\t\t\t\tif ( attributes[ key ] === '' ) {\n\t\t\t\t\t\t\tdelete attributes[ key ];\n\t\t\t\t\t\t}\n\t\t\t\t\t} );\n\n\t\t\t\t\t// Backward compatibility attribute replacement.\n\t\t\t\t\tconst upgrades = {\n\t\t\t\t\t\tfull_height: 'fullHeight',\n\t\t\t\t\t\talign_content: 'alignContent',\n\t\t\t\t\t\talign_text: 'alignText',\n\t\t\t\t\t};\n\n\t\t\t\t\tObject.keys( upgrades ).forEach( ( key ) => {\n\t\t\t\t\t\tif ( attributes[ key ] !== undefined ) {\n\t\t\t\t\t\t\tattributes[ upgrades[ key ] ] = attributes[ key ];\n\t\t\t\t\t\t} else if (\n\t\t\t\t\t\t\tattributes[ upgrades[ key ] ] === undefined\n\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t//Check for a default\n\t\t\t\t\t\t\tif ( blockType[ key ] !== undefined ) {\n\t\t\t\t\t\t\t\tattributes[ upgrades[ key ] ] =\n\t\t\t\t\t\t\t\t\tblockType[ key ];\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t\tdelete blockType[ key ];\n\t\t\t\t\t\tdelete attributes[ key ];\n\t\t\t\t\t} );\n\n\t\t\t\t\t// Set default attributes for those undefined.\n\t\t\t\t\tfor ( let attribute in blockType.attributes ) {\n\t\t\t\t\t\tif (\n\t\t\t\t\t\t\tattributes[ attribute ] === undefined &&\n\t\t\t\t\t\t\tblockType[ attribute ] !== undefined\n\t\t\t\t\t\t) {\n\t\t\t\t\t\t\tattributes[ attribute ] = blockType[ attribute ];\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\trender() {\n\t\t\t\t\treturn ;\n\t\t\t\t}\n\t\t\t},\n\t\t'withDefaultAttributes'\n\t);\n\twp.hooks.addFilter(\n\t\t'editor.BlockListBlock',\n\t\t'acf/with-default-attributes',\n\t\twithDefaultAttributes\n\t);\n\n\t/**\n\t * The BlockSave functional component.\n\t *\n\t * @date\t08/07/2020\n\t * @since\t5.9.0\n\t */\n\tfunction BlockSave() {\n\t\treturn ;\n\t}\n\n\t/**\n\t * The BlockEdit component.\n\t *\n\t * @date\t19/2/19\n\t * @since\t5.7.12\n\t */\n\tclass BlockEdit extends Component {\n\t\tconstructor( props ) {\n\t\t\tsuper( props );\n\t\t\tthis.setup();\n\t\t}\n\n\t\tsetup() {\n\t\t\tconst { name, attributes, clientId } = this.props;\n\t\t\tconst blockType = getBlockType( name );\n\n\t\t\t// Restrict current mode.\n\t\t\tfunction restrictMode( modes ) {\n\t\t\t\tif ( ! modes.includes( attributes.mode ) ) {\n\t\t\t\t\tattributes.mode = modes[ 0 ];\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tif (\n\t\t\t\tisBlockInQueryLoop( clientId ) ||\n\t\t\t\tisSiteEditor() ||\n\t\t\t\tisiFramedMobileDevicePreview() ||\n\t\t\t\tisEditingTemplate()\n\t\t\t) {\n\t\t\t\trestrictMode( [ 'preview' ] );\n\t\t\t} else {\n\t\t\t\tswitch ( blockType.mode ) {\n\t\t\t\t\tcase 'edit':\n\t\t\t\t\t\trestrictMode( [ 'edit', 'preview' ] );\n\t\t\t\t\t\tbreak;\n\t\t\t\t\tcase 'preview':\n\t\t\t\t\t\trestrictMode( [ 'preview', 'edit' ] );\n\t\t\t\t\t\tbreak;\n\t\t\t\t\tdefault:\n\t\t\t\t\t\trestrictMode( [ 'auto' ] );\n\t\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\trender() {\n\t\t\tconst { name, attributes, setAttributes, clientId } = this.props;\n\t\t\tconst blockType = getBlockType( name );\n\t\t\tconst forcePreview =\n\t\t\t\tisBlockInQueryLoop( clientId ) ||\n\t\t\t\tisSiteEditor() ||\n\t\t\t\tisiFramedMobileDevicePreview() ||\n\t\t\t\tisEditingTemplate();\n\t\t\tlet { mode } = attributes;\n\n\t\t\tif ( forcePreview ) {\n\t\t\t\tmode = 'preview';\n\t\t\t}\n\n\t\t\t// Show toggle only for edit/preview modes and for blocks not in a query loop/FSE.\n\t\t\tlet showToggle = blockType.supports.mode;\n\t\t\tif ( mode === 'auto' || forcePreview ) {\n\t\t\t\tshowToggle = false;\n\t\t\t}\n\n\t\t\t// Configure toggle variables.\n\t\t\tconst toggleText =\n\t\t\t\tmode === 'preview'\n\t\t\t\t\t? acf.__( 'Switch to Edit' )\n\t\t\t\t\t: acf.__( 'Switch to Preview' );\n\t\t\tconst toggleIcon =\n\t\t\t\tmode === 'preview' ? 'edit' : 'welcome-view-site';\n\t\t\tfunction toggleMode() {\n\t\t\t\tsetAttributes( {\n\t\t\t\t\tmode: mode === 'preview' ? 'edit' : 'preview',\n\t\t\t\t} );\n\t\t\t}\n\n\t\t\t// Return template.\n\t\t\treturn (\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t{ showToggle && (\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t) }\n\t\t\t\t\t\n\n\t\t\t\t\t\n\t\t\t\t\t\t{ mode === 'preview' && (\n\t\t\t\t\t\t\t
                          \n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t
                          \n\t\t\t\t\t\t) }\n\t\t\t\t\t
                          \n\n\t\t\t\t\t\n\t\t\t\t
                          \n\t\t\t);\n\t\t}\n\t}\n\n\t/**\n\t * The BlockBody functional component.\n\t *\n\t * @date\t19/2/19\n\t * @since\t5.7.12\n\t */\n\tfunction _BlockBody( props ) {\n\t\tconst { attributes, isSelected, name } = props;\n\t\tconst { mode } = attributes;\n\n\t\tlet showForm = true;\n\t\tlet additionalClasses = 'acf-block-component acf-block-body';\n\n\t\tif ( ( mode === 'auto' && ! isSelected ) || mode === 'preview' ) {\n\t\t\tadditionalClasses += ' acf-block-preview';\n\t\t\tshowForm = false;\n\t\t}\n\n\t\tif ( getBlockVersion( name ) > 1 ) {\n\t\t\treturn (\n\t\t\t\t
                          \n\t\t\t\t\t{ showForm ? (\n\t\t\t\t\t\t\n\t\t\t\t\t) : (\n\t\t\t\t\t\t\n\t\t\t\t\t) }\n\t\t\t\t
                          \n\t\t\t);\n\t\t} else {\n\t\t\treturn (\n\t\t\t\t
                          \n\t\t\t\t\t
                          \n\t\t\t\t\t\t{ showForm ? (\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t) : (\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t) }\n\t\t\t\t\t
                          \n\t\t\t\t
                          \n\t\t\t);\n\t\t}\n\t}\n\n\t// Append blockIndex to component props.\n\tconst BlockBody = withSelect( ( select, ownProps ) => {\n\t\tconst { clientId } = ownProps;\n\t\t// Use optional rootClientId to allow discoverability of child blocks.\n\t\tconst rootClientId =\n\t\t\tselect( 'core/block-editor' ).getBlockRootClientId( clientId );\n\t\tconst index = select( 'core/block-editor' ).getBlockIndex(\n\t\t\tclientId,\n\t\t\trootClientId\n\t\t);\n\t\treturn {\n\t\t\tindex,\n\t\t};\n\t} )( _BlockBody );\n\n\t/**\n\t * A react component to append HTMl.\n\t *\n\t * @date\t19/2/19\n\t * @since\t5.7.12\n\t *\n\t * @param\tstring children The html to insert.\n\t * @return\tvoid\n\t */\n\tclass Div extends Component {\n\t\trender() {\n\t\t\treturn (\n\t\t\t\t\n\t\t\t);\n\t\t}\n\t}\n\n\t/**\n\t * A react Component for inline scripts.\n\t *\n\t * This Component uses a combination of React references and jQuery to append the\n\t * inline ` );\n\t\t}\n\t\tcomponentDidUpdate() {\n\t\t\tthis.setHTML( this.props.children );\n\t\t}\n\t\tcomponentDidMount() {\n\t\t\tthis.setHTML( this.props.children );\n\t\t}\n\t}\n\n\t// Data storage for DynamicHTML components.\n\tconst store = {};\n\n\t/**\n\t * DynamicHTML Class.\n\t *\n\t * A react componenet to load and insert dynamic HTML.\n\t *\n\t * @date\t19/2/19\n\t * @since\t5.7.12\n\t *\n\t * @param\tvoid\n\t * @return\tvoid\n\t */\n\tclass DynamicHTML extends Component {\n\t\tconstructor( props ) {\n\t\t\tsuper( props );\n\n\t\t\t// Bind callbacks.\n\t\t\tthis.setRef = this.setRef.bind( this );\n\n\t\t\t// Define default props and call setup().\n\t\t\tthis.id = '';\n\t\t\tthis.el = false;\n\t\t\tthis.subscribed = true;\n\t\t\tthis.renderMethod = 'jQuery';\n\t\t\tthis.setup( props );\n\n\t\t\t// Load state.\n\t\t\tthis.loadState();\n\t\t}\n\n\t\tsetup( props ) {\n\t\t\t// Do nothing.\n\t\t}\n\n\t\tfetch() {\n\t\t\t// Do nothing.\n\t\t}\n\n\t\tmaybePreload( blockId, clientId, form ) {\n\t\t\tif (\n\t\t\t\tthis.state.html === undefined &&\n\t\t\t\t! isBlockInQueryLoop( this.props.clientId )\n\t\t\t) {\n\t\t\t\tconst preloadedBlocks = acf.get( 'preloadedBlocks' );\n\t\t\t\tconst modeText = form ? 'form' : 'preview';\n\n\t\t\t\tif ( preloadedBlocks && preloadedBlocks[ blockId ] ) {\n\t\t\t\t\t// Ensure we only preload the correct block state (form or preview).\n\t\t\t\t\tif (\n\t\t\t\t\t\t( form && ! preloadedBlocks[ blockId ].form ) ||\n\t\t\t\t\t\t( ! form && preloadedBlocks[ blockId ].form )\n\t\t\t\t\t)\n\t\t\t\t\t\treturn false;\n\n\t\t\t\t\t// Set HTML to the preloaded version.\n\t\t\t\t\treturn preloadedBlocks[ blockId ].html.replaceAll(\n\t\t\t\t\t\tblockId,\n\t\t\t\t\t\tclientId\n\t\t\t\t\t);\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn false;\n\t\t}\n\n\t\tloadState() {\n\t\t\tthis.state = store[ this.id ] || {};\n\t\t}\n\n\t\tsetState( state ) {\n\t\t\tstore[ this.id ] = { ...this.state, ...state };\n\n\t\t\t// Update component state if subscribed.\n\t\t\t// - Allows AJAX callback to update store without modifying state of an unmounted component.\n\t\t\tif ( this.subscribed ) {\n\t\t\t\tsuper.setState( state );\n\t\t\t}\n\t\t}\n\n\t\tsetHtml( html ) {\n\t\t\thtml = html ? html.trim() : '';\n\n\t\t\t// Bail early if html has not changed.\n\t\t\tif ( html === this.state.html ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// Update state.\n\t\t\tconst state = {\n\t\t\t\thtml,\n\t\t\t};\n\n\t\t\tif ( this.renderMethod === 'jsx' ) {\n\t\t\t\tstate.jsx = acf.parseJSX(\n\t\t\t\t\thtml,\n\t\t\t\t\tgetBlockVersion( this.props.name )\n\t\t\t\t);\n\n\t\t\t\t// Handle templates which don't contain any valid JSX parsable elements.\n\t\t\t\tif ( ! state.jsx ) {\n\t\t\t\t\tconsole.warn(\n\t\t\t\t\t\t'Your ACF block template contains no valid HTML elements. Appending a empty div to prevent React JS errors.'\n\t\t\t\t\t);\n\t\t\t\t\tstate.html += '
                          ';\n\t\t\t\t\tstate.jsx = acf.parseJSX(\n\t\t\t\t\t\tstate.html,\n\t\t\t\t\t\tgetBlockVersion( this.props.name )\n\t\t\t\t\t);\n\t\t\t\t}\n\n\t\t\t\t// If we've got an object (as an array) find the first valid React ref.\n\t\t\t\tif ( Array.isArray( state.jsx ) ) {\n\t\t\t\t\tlet refElement = state.jsx.find( ( element ) =>\n\t\t\t\t\t\tReact.isValidElement( element )\n\t\t\t\t\t);\n\t\t\t\t\tstate.ref = refElement.ref;\n\t\t\t\t} else {\n\t\t\t\t\tstate.ref = state.jsx.ref;\n\t\t\t\t}\n\t\t\t\tstate.$el = $( this.el );\n\t\t\t} else {\n\t\t\t\tstate.$el = $( html );\n\t\t\t}\n\t\t\tthis.setState( state );\n\t\t}\n\n\t\tsetRef( el ) {\n\t\t\tthis.el = el;\n\t\t}\n\n\t\trender() {\n\t\t\t// Render JSX.\n\t\t\tif ( this.state.jsx ) {\n\t\t\t\t// If we're a v2+ block, use the jsx element itself as our ref.\n\t\t\t\tif ( getBlockVersion( this.props.name ) > 1 ) {\n\t\t\t\t\tthis.setRef( this.state.jsx );\n\t\t\t\t\treturn this.state.jsx;\n\t\t\t\t} else {\n\t\t\t\t\treturn
                          { this.state.jsx }
                          ;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Return HTML.\n\t\t\treturn (\n\t\t\t\t
                          \n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t
                          \n\t\t\t);\n\t\t}\n\n\t\tshouldComponentUpdate( { index }, { html } ) {\n\t\t\tif ( index !== this.props.index ) {\n\t\t\t\tthis.componentWillMove();\n\t\t\t}\n\t\t\treturn html !== this.state.html;\n\t\t}\n\n\t\tdisplay( context ) {\n\t\t\t// This method is called after setting new HTML and the Component render.\n\t\t\t// The jQuery render method simply needs to move $el into place.\n\t\t\tif ( this.renderMethod === 'jQuery' ) {\n\t\t\t\tconst $el = this.state.$el;\n\t\t\t\tconst $prevParent = $el.parent();\n\t\t\t\tconst $thisParent = $( this.el );\n\n\t\t\t\t// Move $el into place.\n\t\t\t\t$thisParent.html( $el );\n\n\t\t\t\t// Special case for reusable blocks.\n\t\t\t\t// Multiple instances of the same reusable block share the same block id.\n\t\t\t\t// This causes all instances to share the same state (cool), which unfortunately\n\t\t\t\t// pulls $el back and forth between the last rendered reusable block.\n\t\t\t\t// This simple fix leaves a \"clone\" behind :)\n\t\t\t\tif (\n\t\t\t\t\t$prevParent.length &&\n\t\t\t\t\t$prevParent[ 0 ] !== $thisParent[ 0 ]\n\t\t\t\t) {\n\t\t\t\t\t$prevParent.html( $el.clone() );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Call context specific method.\n\t\t\tswitch ( context ) {\n\t\t\t\tcase 'append':\n\t\t\t\t\tthis.componentDidAppend();\n\t\t\t\t\tbreak;\n\t\t\t\tcase 'remount':\n\t\t\t\t\tthis.componentDidRemount();\n\t\t\t\t\tbreak;\n\t\t\t}\n\t\t}\n\n\t\tcomponentDidMount() {\n\t\t\t// Fetch on first load.\n\t\t\tif ( this.state.html === undefined ) {\n\t\t\t\tthis.fetch();\n\n\t\t\t\t// Or remount existing HTML.\n\t\t\t} else {\n\t\t\t\tthis.display( 'remount' );\n\t\t\t}\n\t\t}\n\n\t\tcomponentDidUpdate( prevProps, prevState ) {\n\t\t\t// HTML has changed.\n\t\t\tthis.display( 'append' );\n\t\t}\n\n\t\tcomponentDidAppend() {\n\t\t\tacf.doAction( 'append', this.state.$el );\n\t\t}\n\n\t\tcomponentWillUnmount() {\n\t\t\tacf.doAction( 'unmount', this.state.$el );\n\n\t\t\t// Unsubscribe this component from state.\n\t\t\tthis.subscribed = false;\n\t\t}\n\n\t\tcomponentDidRemount() {\n\t\t\tthis.subscribed = true;\n\n\t\t\t// Use setTimeout to avoid incorrect timing of events.\n\t\t\t// React will unmount and mount components in DOM order.\n\t\t\t// This means a new component can be mounted before an old one is unmounted.\n\t\t\t// ACF shares $el across new/old components which is un-React-like.\n\t\t\t// This timout ensures that unmounting occurs before remounting.\n\t\t\tsetTimeout( () => {\n\t\t\t\tacf.doAction( 'remount', this.state.$el );\n\t\t\t} );\n\t\t}\n\n\t\tcomponentWillMove() {\n\t\t\tacf.doAction( 'unmount', this.state.$el );\n\t\t\tsetTimeout( () => {\n\t\t\t\tacf.doAction( 'remount', this.state.$el );\n\t\t\t} );\n\t\t}\n\t}\n\n\t/**\n\t * BlockForm Class.\n\t *\n\t * A react componenet to handle the block form.\n\t *\n\t * @date\t19/2/19\n\t * @since\t5.7.12\n\t *\n\t * @param\tstring id the block id.\n\t * @return\tvoid\n\t */\n\tclass BlockForm extends DynamicHTML {\n\t\tsetup( { clientId } ) {\n\t\t\tthis.id = `BlockForm-${ clientId }`;\n\t\t}\n\n\t\tfetch() {\n\t\t\t// Extract props.\n\t\t\tconst { attributes, context, clientId } = this.props;\n\n\t\t\tconst hash = createBlockAttributesHash( attributes, context );\n\n\t\t\t// Try preloaded data first.\n\t\t\tconst preloaded = this.maybePreload( hash, clientId, true );\n\n\t\t\tif ( preloaded ) {\n\t\t\t\tthis.setHtml( preloaded );\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// Request AJAX and update HTML on complete.\n\t\t\tfetchBlock( {\n\t\t\t\tattributes,\n\t\t\t\tcontext,\n\t\t\t\tclientId,\n\t\t\t\tquery: {\n\t\t\t\t\tform: true,\n\t\t\t\t},\n\t\t\t} ).done( ( { data } ) => {\n\t\t\t\tthis.setHtml( data.form.replaceAll( data.clientId, clientId ) );\n\t\t\t} );\n\t\t}\n\n\t\tcomponentDidRemount() {\n\t\t\tsuper.componentDidRemount();\n\n\t\t\tconst { $el } = this.state;\n\n\t\t\t// Make sure our on append events are registered.\n\t\t\tif ( $el.data( 'acf-events-added' ) !== true ) {\n\t\t\t\tthis.componentDidAppend();\n\t\t\t}\n\t\t}\n\n\t\tcomponentDidAppend() {\n\t\t\tsuper.componentDidAppend();\n\n\t\t\t// Extract props.\n\t\t\tconst { attributes, setAttributes, clientId } = this.props;\n\t\t\tconst props = this.props;\n\t\t\tconst { $el } = this.state;\n\n\t\t\t// Callback for updating block data.\n\t\t\tfunction serializeData( silent = false ) {\n\t\t\t\tconst data = acf.serialize( $el, `acf-${ clientId }` );\n\t\t\t\tif ( silent ) {\n\t\t\t\t\tattributes.data = data;\n\t\t\t\t} else {\n\t\t\t\t\tsetAttributes( {\n\t\t\t\t\t\tdata,\n\t\t\t\t\t} );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Add events.\n\t\t\tlet timeout = false;\n\t\t\t$el.on( 'change keyup', () => {\n\t\t\t\tclearTimeout( timeout );\n\t\t\t\ttimeout = setTimeout( serializeData, 300 );\n\t\t\t} );\n\n\t\t\t// Log initialization for remount check on the persistent element.\n\t\t\t$el.data( 'acf-events-added', true );\n\n\t\t\t// Ensure newly added block is saved with data.\n\t\t\t// Do it silently to avoid triggering a preview render.\n\t\t\tif ( ! attributes.data ) {\n\t\t\t\tserializeData( true );\n\t\t\t}\n\t\t}\n\t}\n\n\t/**\n\t * BlockPreview Class.\n\t *\n\t * A react componenet to handle the block preview.\n\t *\n\t * @date\t19/2/19\n\t * @since\t5.7.12\n\t *\n\t * @param\tstring id the block id.\n\t * @return\tvoid\n\t */\n\tclass BlockPreview extends DynamicHTML {\n\t\tsetup( { clientId, name } ) {\n\t\t\tconst blockType = getBlockType( name );\n\t\t\tconst contextPostId = acf.isget( this.props, 'context', 'postId' );\n\n\t\t\tthis.id = `BlockPreview-${ clientId }`;\n\n\t\t\t// Apply the contextPostId to the ID if set to stop query loop ID duplication.\n\t\t\tif ( contextPostId ) {\n\t\t\t\tthis.id = `BlockPreview-${ clientId }-${ contextPostId }`;\n\t\t\t}\n\n\t\t\tif ( blockType.supports.jsx ) {\n\t\t\t\tthis.renderMethod = 'jsx';\n\t\t\t}\n\t\t}\n\n\t\tfetch( args = {} ) {\n\t\t\tconst {\n\t\t\t\tattributes = this.props.attributes,\n\t\t\t\tclientId = this.props.clientId,\n\t\t\t\tcontext = this.props.context,\n\t\t\t\tdelay = 0,\n\t\t\t} = args;\n\n\t\t\tconst { name } = this.props;\n\n\t\t\t// Remember attributes used to fetch HTML.\n\t\t\tthis.setState( {\n\t\t\t\tprevAttributes: attributes,\n\t\t\t\tprevContext: context,\n\t\t\t} );\n\n\t\t\tconst hash = createBlockAttributesHash( attributes, context );\n\n\t\t\t// Try preloaded data first.\n\t\t\tlet preloaded = this.maybePreload( hash, clientId, false );\n\n\t\t\tif ( preloaded ) {\n\t\t\t\tif ( getBlockVersion( name ) == 1 ) {\n\t\t\t\t\tpreloaded =\n\t\t\t\t\t\t'
                          ' +\n\t\t\t\t\t\tpreloaded +\n\t\t\t\t\t\t'
                          ';\n\t\t\t\t}\n\t\t\t\tthis.setHtml( preloaded );\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// Request AJAX and update HTML on complete.\n\t\t\tfetchBlock( {\n\t\t\t\tattributes,\n\t\t\t\tcontext,\n\t\t\t\tclientId,\n\t\t\t\tquery: {\n\t\t\t\t\tpreview: true,\n\t\t\t\t},\n\t\t\t\tdelay,\n\t\t\t} ).done( ( { data } ) => {\n\t\t\t\tlet replaceHtml = data.preview.replaceAll(\n\t\t\t\t\tdata.clientId,\n\t\t\t\t\tclientId\n\t\t\t\t);\n\t\t\t\tif ( getBlockVersion( name ) == 1 ) {\n\t\t\t\t\treplaceHtml =\n\t\t\t\t\t\t'
                          ' +\n\t\t\t\t\t\treplaceHtml +\n\t\t\t\t\t\t'
                          ';\n\t\t\t\t}\n\t\t\t\tthis.setHtml( replaceHtml );\n\t\t\t} );\n\t\t}\n\n\t\tcomponentDidAppend() {\n\t\t\tsuper.componentDidAppend();\n\t\t\tthis.renderBlockPreviewEvent();\n\t\t}\n\n\t\tshouldComponentUpdate( nextProps, nextState ) {\n\t\t\tconst nextAttributes = nextProps.attributes;\n\t\t\tconst thisAttributes = this.props.attributes;\n\n\t\t\t// Update preview if block data has changed.\n\t\t\tif (\n\t\t\t\t! compareObjects( nextAttributes, thisAttributes ) ||\n\t\t\t\t! compareObjects( nextProps.context, this.props.context )\n\t\t\t) {\n\t\t\t\tlet delay = 0;\n\n\t\t\t\t// Delay fetch when editing className or anchor to simulate consistent logic to custom fields.\n\t\t\t\tif ( nextAttributes.className !== thisAttributes.className ) {\n\t\t\t\t\tdelay = 300;\n\t\t\t\t}\n\t\t\t\tif ( nextAttributes.anchor !== thisAttributes.anchor ) {\n\t\t\t\t\tdelay = 300;\n\t\t\t\t}\n\n\t\t\t\tthis.fetch( {\n\t\t\t\t\tattributes: nextAttributes,\n\t\t\t\t\tcontext: nextProps.context,\n\t\t\t\t\tdelay,\n\t\t\t\t} );\n\t\t\t}\n\t\t\treturn super.shouldComponentUpdate( nextProps, nextState );\n\t\t}\n\n\t\trenderBlockPreviewEvent() {\n\t\t\t// Extract props.\n\t\t\tconst { attributes, name } = this.props;\n\t\t\tconst { $el, ref } = this.state;\n\t\t\tvar blockElement;\n\n\t\t\t// Generate action friendly type.\n\t\t\tconst type = attributes.name.replace( 'acf/', '' );\n\n\t\t\tif ( ref && ref.current ) {\n\t\t\t\t// We've got a react ref from a JSX container. Use the parent as the blockElement\n\t\t\t\tblockElement = $( ref.current ).parent();\n\t\t\t} else if ( getBlockVersion( name ) == 1 ) {\n\t\t\t\tblockElement = $el;\n\t\t\t} else {\n\t\t\t\tblockElement = $el.parents( '.acf-block-preview' );\n\t\t\t}\n\n\t\t\t// Do action.\n\t\t\tacf.doAction( 'render_block_preview', blockElement, attributes );\n\t\t\tacf.doAction(\n\t\t\t\t`render_block_preview/type=${ type }`,\n\t\t\t\tblockElement,\n\t\t\t\tattributes\n\t\t\t);\n\t\t}\n\n\t\tcomponentDidRemount() {\n\t\t\tsuper.componentDidRemount();\n\n\t\t\t// Update preview if data has changed since last render (changing from \"edit\" to \"preview\").\n\t\t\tif (\n\t\t\t\t! compareObjects(\n\t\t\t\t\tthis.state.prevAttributes,\n\t\t\t\t\tthis.props.attributes\n\t\t\t\t) ||\n\t\t\t\t! compareObjects( this.state.prevContext, this.props.context )\n\t\t\t) {\n\t\t\t\tthis.fetch();\n\t\t\t}\n\n\t\t\t// Fire the block preview event so blocks can reinit JS elements.\n\t\t\t// React reusing DOM elements covers any potential race condition from the above fetch.\n\t\t\tthis.renderBlockPreviewEvent();\n\t\t}\n\t}\n\n\t/**\n\t * Initializes ACF Blocks logic and registration.\n\t *\n\t * @since 5.9.0\n\t */\n\tfunction initialize() {\n\t\t// Add support for WordPress versions before 5.2.\n\t\tif ( ! wp.blockEditor ) {\n\t\t\twp.blockEditor = wp.editor;\n\t\t}\n\n\t\t// Register block types.\n\t\tconst blockTypes = acf.get( 'blockTypes' );\n\t\tif ( blockTypes ) {\n\t\t\tblockTypes.map( registerBlockType );\n\t\t}\n\t}\n\n\t// Run the initialize callback during the \"prepare\" action.\n\t// This ensures that all localized data is available and that blocks are registered before the WP editor has been instantiated.\n\tacf.addAction( 'prepare', initialize );\n\n\t/**\n\t * Returns a valid vertical alignment.\n\t *\n\t * @date\t07/08/2020\n\t * @since\t5.9.0\n\t *\n\t * @param\tstring align A vertical alignment.\n\t * @return\tstring\n\t */\n\tfunction validateVerticalAlignment( align ) {\n\t\tconst ALIGNMENTS = [ 'top', 'center', 'bottom' ];\n\t\tconst DEFAULT = 'top';\n\t\treturn ALIGNMENTS.includes( align ) ? align : DEFAULT;\n\t}\n\n\t/**\n\t * Returns a valid horizontal alignment.\n\t *\n\t * @date\t07/08/2020\n\t * @since\t5.9.0\n\t *\n\t * @param\tstring align A horizontal alignment.\n\t * @return\tstring\n\t */\n\tfunction validateHorizontalAlignment( align ) {\n\t\tconst ALIGNMENTS = [ 'left', 'center', 'right' ];\n\t\tconst DEFAULT = acf.get( 'rtl' ) ? 'right' : 'left';\n\t\treturn ALIGNMENTS.includes( align ) ? align : DEFAULT;\n\t}\n\n\t/**\n\t * Returns a valid matrix alignment.\n\t *\n\t * Written for \"upgrade-path\" compatibility from vertical alignment to matrix alignment.\n\t *\n\t * @date\t07/08/2020\n\t * @since\t5.9.0\n\t *\n\t * @param\tstring align A matrix alignment.\n\t * @return\tstring\n\t */\n\tfunction validateMatrixAlignment( align ) {\n\t\tconst DEFAULT = 'center center';\n\t\tif ( align ) {\n\t\t\tconst [ y, x ] = align.split( ' ' );\n\t\t\treturn `${ validateVerticalAlignment(\n\t\t\t\ty\n\t\t\t) } ${ validateHorizontalAlignment( x ) }`;\n\t\t}\n\t\treturn DEFAULT;\n\t}\n\n\t/**\n\t * A higher order component adding alignContent editing functionality.\n\t *\n\t * @date\t08/07/2020\n\t * @since\t5.9.0\n\t *\n\t * @param\tcomponent OriginalBlockEdit The original BlockEdit component.\n\t * @param\tobject blockType The block type settings.\n\t * @return\tcomponent\n\t */\n\tfunction withAlignContentComponent( OriginalBlockEdit, blockType ) {\n\t\t// Determine alignment vars\n\t\tlet type =\n\t\t\tblockType.supports.align_content || blockType.supports.alignContent;\n\t\tlet AlignmentComponent;\n\t\tlet validateAlignment;\n\t\tswitch ( type ) {\n\t\t\tcase 'matrix':\n\t\t\t\tAlignmentComponent =\n\t\t\t\t\tBlockAlignmentMatrixControl || BlockAlignmentMatrixToolbar;\n\t\t\t\tvalidateAlignment = validateMatrixAlignment;\n\t\t\t\tbreak;\n\t\t\tdefault:\n\t\t\t\tAlignmentComponent = BlockVerticalAlignmentToolbar;\n\t\t\t\tvalidateAlignment = validateVerticalAlignment;\n\t\t\t\tbreak;\n\t\t}\n\n\t\t// Ensure alignment component exists.\n\t\tif ( AlignmentComponent === undefined ) {\n\t\t\tconsole.warn(\n\t\t\t\t`The \"${ type }\" alignment component was not found.`\n\t\t\t);\n\t\t\treturn OriginalBlockEdit;\n\t\t}\n\n\t\t// Ensure correct block attribute data is sent in intial preview AJAX request.\n\t\tblockType.alignContent = validateAlignment( blockType.alignContent );\n\n\t\t// Return wrapped component.\n\t\treturn class WrappedBlockEdit extends Component {\n\t\t\trender() {\n\t\t\t\tconst { attributes, setAttributes } = this.props;\n\t\t\t\tconst { alignContent } = attributes;\n\t\t\t\tfunction onChangeAlignContent( alignContent ) {\n\t\t\t\t\tsetAttributes( {\n\t\t\t\t\t\talignContent: validateAlignment( alignContent ),\n\t\t\t\t\t} );\n\t\t\t\t}\n\t\t\t\treturn (\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t);\n\t\t\t}\n\t\t};\n\t}\n\n\t/**\n\t * A higher order component adding alignText editing functionality.\n\t *\n\t * @date\t08/07/2020\n\t * @since\t5.9.0\n\t *\n\t * @param\tcomponent OriginalBlockEdit The original BlockEdit component.\n\t * @param\tobject blockType The block type settings.\n\t * @return\tcomponent\n\t */\n\tfunction withAlignTextComponent( OriginalBlockEdit, blockType ) {\n\t\tconst validateAlignment = validateHorizontalAlignment;\n\n\t\t// Ensure correct block attribute data is sent in intial preview AJAX request.\n\t\tblockType.alignText = validateAlignment( blockType.alignText );\n\n\t\t// Return wrapped component.\n\t\treturn class WrappedBlockEdit extends Component {\n\t\t\trender() {\n\t\t\t\tconst { attributes, setAttributes } = this.props;\n\t\t\t\tconst { alignText } = attributes;\n\n\t\t\t\tfunction onChangeAlignText( alignText ) {\n\t\t\t\t\tsetAttributes( {\n\t\t\t\t\t\talignText: validateAlignment( alignText ),\n\t\t\t\t\t} );\n\t\t\t\t}\n\n\t\t\t\treturn (\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t);\n\t\t\t}\n\t\t};\n\t}\n\n\t/**\n\t * A higher order component adding full height support.\n\t *\n\t * @date\t19/07/2021\n\t * @since\t5.10.0\n\t *\n\t * @param\tcomponent OriginalBlockEdit The original BlockEdit component.\n\t * @param\tobject blockType The block type settings.\n\t * @return\tcomponent\n\t */\n\tfunction withFullHeightComponent( OriginalBlockEdit, blockType ) {\n\t\tif ( ! BlockFullHeightAlignmentControl ) return OriginalBlockEdit;\n\n\t\t// Return wrapped component.\n\t\treturn class WrappedBlockEdit extends Component {\n\t\t\trender() {\n\t\t\t\tconst { attributes, setAttributes } = this.props;\n\t\t\t\tconst { fullHeight } = attributes;\n\n\t\t\t\tfunction onToggleFullHeight( fullHeight ) {\n\t\t\t\t\tsetAttributes( {\n\t\t\t\t\t\tfullHeight,\n\t\t\t\t\t} );\n\t\t\t\t}\n\n\t\t\t\treturn (\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t);\n\t\t\t}\n\t\t};\n\t}\n\n\t/**\n\t * Appends a backwards compatibility attribute for conversion.\n\t *\n\t * @since\t6.0\n\t *\n\t * @param\tobject attributes The block type attributes.\n\t * @return\tobject\n\t */\n\tfunction addBackCompatAttribute( attributes, new_attribute, type ) {\n\t\tattributes[ new_attribute ] = {\n\t\t\ttype: type,\n\t\t};\n\t\treturn attributes;\n\t}\n\n\t/**\n\t * Create a block hash from attributes\n\t *\n\t * @since 6.0\n\t *\n\t * @param object attributes The block type attributes.\n\t * @param object context The current block context object.\n\t * @return string\n\t */\n\tfunction createBlockAttributesHash( attributes, context ) {\n\t\tattributes[ '_acf_context' ] = context;\n\t\treturn md5(\n\t\t\tJSON.stringify(\n\t\t\t\tObject.keys( attributes )\n\t\t\t\t\t.sort()\n\t\t\t\t\t.reduce( ( acc, currValue ) => {\n\t\t\t\t\t\tacc[ currValue ] = attributes[ currValue ];\n\t\t\t\t\t\treturn acc;\n\t\t\t\t\t}, {} )\n\t\t\t)\n\t\t);\n\t}\n} )( jQuery );\n","( function ( $, undefined ) {\n\tacf.jsxNameReplacements = {\n\t\t'accent-height': 'accentHeight',\n\t\taccentheight: 'accentHeight',\n\t\t'accept-charset': 'acceptCharset',\n\t\tacceptcharset: 'acceptCharset',\n\t\taccesskey: 'accessKey',\n\t\t'alignment-baseline': 'alignmentBaseline',\n\t\talignmentbaseline: 'alignmentBaseline',\n\t\tallowedblocks: 'allowedBlocks',\n\t\tallowfullscreen: 'allowFullScreen',\n\t\tallowreorder: 'allowReorder',\n\t\t'arabic-form': 'arabicForm',\n\t\tarabicform: 'arabicForm',\n\t\tattributename: 'attributeName',\n\t\tattributetype: 'attributeType',\n\t\tautocapitalize: 'autoCapitalize',\n\t\tautocomplete: 'autoComplete',\n\t\tautocorrect: 'autoCorrect',\n\t\tautofocus: 'autoFocus',\n\t\tautoplay: 'autoPlay',\n\t\tautoreverse: 'autoReverse',\n\t\tautosave: 'autoSave',\n\t\tbasefrequency: 'baseFrequency',\n\t\t'baseline-shift': 'baselineShift',\n\t\tbaselineshift: 'baselineShift',\n\t\tbaseprofile: 'baseProfile',\n\t\tcalcmode: 'calcMode',\n\t\t'cap-height': 'capHeight',\n\t\tcapheight: 'capHeight',\n\t\tcellpadding: 'cellPadding',\n\t\tcellspacing: 'cellSpacing',\n\t\tcharset: 'charSet',\n\t\tclass: 'className',\n\t\tclassid: 'classID',\n\t\tclassname: 'className',\n\t\t'clip-path': 'clipPath',\n\t\t'clip-rule': 'clipRule',\n\t\tclippath: 'clipPath',\n\t\tclippathunits: 'clipPathUnits',\n\t\tcliprule: 'clipRule',\n\t\t'color-interpolation': 'colorInterpolation',\n\t\t'color-interpolation-filters': 'colorInterpolationFilters',\n\t\t'color-profile': 'colorProfile',\n\t\t'color-rendering': 'colorRendering',\n\t\tcolorinterpolation: 'colorInterpolation',\n\t\tcolorinterpolationfilters: 'colorInterpolationFilters',\n\t\tcolorprofile: 'colorProfile',\n\t\tcolorrendering: 'colorRendering',\n\t\tcolspan: 'colSpan',\n\t\tcontenteditable: 'contentEditable',\n\t\tcontentscripttype: 'contentScriptType',\n\t\tcontentstyletype: 'contentStyleType',\n\t\tcontextmenu: 'contextMenu',\n\t\tcontrolslist: 'controlsList',\n\t\tcrossorigin: 'crossOrigin',\n\t\tdangerouslysetinnerhtml: 'dangerouslySetInnerHTML',\n\t\tdatetime: 'dateTime',\n\t\tdefaultchecked: 'defaultChecked',\n\t\tdefaultvalue: 'defaultValue',\n\t\tdiffuseconstant: 'diffuseConstant',\n\t\tdisablepictureinpicture: 'disablePictureInPicture',\n\t\tdisableremoteplayback: 'disableRemotePlayback',\n\t\t'dominant-baseline': 'dominantBaseline',\n\t\tdominantbaseline: 'dominantBaseline',\n\t\tedgemode: 'edgeMode',\n\t\t'enable-background': 'enableBackground',\n\t\tenablebackground: 'enableBackground',\n\t\tenctype: 'encType',\n\t\tenterkeyhint: 'enterKeyHint',\n\t\texternalresourcesrequired: 'externalResourcesRequired',\n\t\t'fill-opacity': 'fillOpacity',\n\t\t'fill-rule': 'fillRule',\n\t\tfillopacity: 'fillOpacity',\n\t\tfillrule: 'fillRule',\n\t\tfilterres: 'filterRes',\n\t\tfilterunits: 'filterUnits',\n\t\t'flood-color': 'floodColor',\n\t\t'flood-opacity': 'floodOpacity',\n\t\tfloodcolor: 'floodColor',\n\t\tfloodopacity: 'floodOpacity',\n\t\t'font-family': 'fontFamily',\n\t\t'font-size': 'fontSize',\n\t\t'font-size-adjust': 'fontSizeAdjust',\n\t\t'font-stretch': 'fontStretch',\n\t\t'font-style': 'fontStyle',\n\t\t'font-variant': 'fontVariant',\n\t\t'font-weight': 'fontWeight',\n\t\tfontfamily: 'fontFamily',\n\t\tfontsize: 'fontSize',\n\t\tfontsizeadjust: 'fontSizeAdjust',\n\t\tfontstretch: 'fontStretch',\n\t\tfontstyle: 'fontStyle',\n\t\tfontvariant: 'fontVariant',\n\t\tfontweight: 'fontWeight',\n\t\tfor: 'htmlFor',\n\t\tforeignobject: 'foreignObject',\n\t\tformaction: 'formAction',\n\t\tformenctype: 'formEncType',\n\t\tformmethod: 'formMethod',\n\t\tformnovalidate: 'formNoValidate',\n\t\tformtarget: 'formTarget',\n\t\tframeborder: 'frameBorder',\n\t\t'glyph-name': 'glyphName',\n\t\t'glyph-orientation-horizontal': 'glyphOrientationHorizontal',\n\t\t'glyph-orientation-vertical': 'glyphOrientationVertical',\n\t\tglyphname: 'glyphName',\n\t\tglyphorientationhorizontal: 'glyphOrientationHorizontal',\n\t\tglyphorientationvertical: 'glyphOrientationVertical',\n\t\tglyphref: 'glyphRef',\n\t\tgradienttransform: 'gradientTransform',\n\t\tgradientunits: 'gradientUnits',\n\t\t'horiz-adv-x': 'horizAdvX',\n\t\t'horiz-origin-x': 'horizOriginX',\n\t\thorizadvx: 'horizAdvX',\n\t\thorizoriginx: 'horizOriginX',\n\t\threflang: 'hrefLang',\n\t\thtmlfor: 'htmlFor',\n\t\t'http-equiv': 'httpEquiv',\n\t\thttpequiv: 'httpEquiv',\n\t\t'image-rendering': 'imageRendering',\n\t\timagerendering: 'imageRendering',\n\t\tinnerhtml: 'innerHTML',\n\t\tinputmode: 'inputMode',\n\t\titemid: 'itemID',\n\t\titemprop: 'itemProp',\n\t\titemref: 'itemRef',\n\t\titemscope: 'itemScope',\n\t\titemtype: 'itemType',\n\t\tkernelmatrix: 'kernelMatrix',\n\t\tkernelunitlength: 'kernelUnitLength',\n\t\tkeyparams: 'keyParams',\n\t\tkeypoints: 'keyPoints',\n\t\tkeysplines: 'keySplines',\n\t\tkeytimes: 'keyTimes',\n\t\tkeytype: 'keyType',\n\t\tlengthadjust: 'lengthAdjust',\n\t\t'letter-spacing': 'letterSpacing',\n\t\tletterspacing: 'letterSpacing',\n\t\t'lighting-color': 'lightingColor',\n\t\tlightingcolor: 'lightingColor',\n\t\tlimitingconeangle: 'limitingConeAngle',\n\t\tmarginheight: 'marginHeight',\n\t\tmarginwidth: 'marginWidth',\n\t\t'marker-end': 'markerEnd',\n\t\t'marker-mid': 'markerMid',\n\t\t'marker-start': 'markerStart',\n\t\tmarkerend: 'markerEnd',\n\t\tmarkerheight: 'markerHeight',\n\t\tmarkermid: 'markerMid',\n\t\tmarkerstart: 'markerStart',\n\t\tmarkerunits: 'markerUnits',\n\t\tmarkerwidth: 'markerWidth',\n\t\tmaskcontentunits: 'maskContentUnits',\n\t\tmaskunits: 'maskUnits',\n\t\tmaxlength: 'maxLength',\n\t\tmediagroup: 'mediaGroup',\n\t\tminlength: 'minLength',\n\t\tnomodule: 'noModule',\n\t\tnovalidate: 'noValidate',\n\t\tnumoctaves: 'numOctaves',\n\t\t'overline-position': 'overlinePosition',\n\t\t'overline-thickness': 'overlineThickness',\n\t\toverlineposition: 'overlinePosition',\n\t\toverlinethickness: 'overlineThickness',\n\t\t'paint-order': 'paintOrder',\n\t\tpaintorder: 'paintOrder',\n\t\t'panose-1': 'panose1',\n\t\tpathlength: 'pathLength',\n\t\tpatterncontentunits: 'patternContentUnits',\n\t\tpatterntransform: 'patternTransform',\n\t\tpatternunits: 'patternUnits',\n\t\tplaysinline: 'playsInline',\n\t\t'pointer-events': 'pointerEvents',\n\t\tpointerevents: 'pointerEvents',\n\t\tpointsatx: 'pointsAtX',\n\t\tpointsaty: 'pointsAtY',\n\t\tpointsatz: 'pointsAtZ',\n\t\tpreservealpha: 'preserveAlpha',\n\t\tpreserveaspectratio: 'preserveAspectRatio',\n\t\tprimitiveunits: 'primitiveUnits',\n\t\tradiogroup: 'radioGroup',\n\t\treadonly: 'readOnly',\n\t\treferrerpolicy: 'referrerPolicy',\n\t\trefx: 'refX',\n\t\trefy: 'refY',\n\t\t'rendering-intent': 'renderingIntent',\n\t\trenderingintent: 'renderingIntent',\n\t\trepeatcount: 'repeatCount',\n\t\trepeatdur: 'repeatDur',\n\t\trequiredextensions: 'requiredExtensions',\n\t\trequiredfeatures: 'requiredFeatures',\n\t\trowspan: 'rowSpan',\n\t\t'shape-rendering': 'shapeRendering',\n\t\tshaperendering: 'shapeRendering',\n\t\tspecularconstant: 'specularConstant',\n\t\tspecularexponent: 'specularExponent',\n\t\tspellcheck: 'spellCheck',\n\t\tspreadmethod: 'spreadMethod',\n\t\tsrcdoc: 'srcDoc',\n\t\tsrclang: 'srcLang',\n\t\tsrcset: 'srcSet',\n\t\tstartoffset: 'startOffset',\n\t\tstddeviation: 'stdDeviation',\n\t\tstitchtiles: 'stitchTiles',\n\t\t'stop-color': 'stopColor',\n\t\t'stop-opacity': 'stopOpacity',\n\t\tstopcolor: 'stopColor',\n\t\tstopopacity: 'stopOpacity',\n\t\t'strikethrough-position': 'strikethroughPosition',\n\t\t'strikethrough-thickness': 'strikethroughThickness',\n\t\tstrikethroughposition: 'strikethroughPosition',\n\t\tstrikethroughthickness: 'strikethroughThickness',\n\t\t'stroke-dasharray': 'strokeDasharray',\n\t\t'stroke-dashoffset': 'strokeDashoffset',\n\t\t'stroke-linecap': 'strokeLinecap',\n\t\t'stroke-linejoin': 'strokeLinejoin',\n\t\t'stroke-miterlimit': 'strokeMiterlimit',\n\t\t'stroke-opacity': 'strokeOpacity',\n\t\t'stroke-width': 'strokeWidth',\n\t\tstrokedasharray: 'strokeDasharray',\n\t\tstrokedashoffset: 'strokeDashoffset',\n\t\tstrokelinecap: 'strokeLinecap',\n\t\tstrokelinejoin: 'strokeLinejoin',\n\t\tstrokemiterlimit: 'strokeMiterlimit',\n\t\tstrokeopacity: 'strokeOpacity',\n\t\tstrokewidth: 'strokeWidth',\n\t\tsuppresscontenteditablewarning: 'suppressContentEditableWarning',\n\t\tsuppresshydrationwarning: 'suppressHydrationWarning',\n\t\tsurfacescale: 'surfaceScale',\n\t\tsystemlanguage: 'systemLanguage',\n\t\ttabindex: 'tabIndex',\n\t\ttablevalues: 'tableValues',\n\t\ttargetx: 'targetX',\n\t\ttargety: 'targetY',\n\t\ttemplatelock: 'templateLock',\n\t\t'text-anchor': 'textAnchor',\n\t\t'text-decoration': 'textDecoration',\n\t\t'text-rendering': 'textRendering',\n\t\ttextanchor: 'textAnchor',\n\t\ttextdecoration: 'textDecoration',\n\t\ttextlength: 'textLength',\n\t\ttextrendering: 'textRendering',\n\t\t'underline-position': 'underlinePosition',\n\t\t'underline-thickness': 'underlineThickness',\n\t\tunderlineposition: 'underlinePosition',\n\t\tunderlinethickness: 'underlineThickness',\n\t\t'unicode-bidi': 'unicodeBidi',\n\t\t'unicode-range': 'unicodeRange',\n\t\tunicodebidi: 'unicodeBidi',\n\t\tunicoderange: 'unicodeRange',\n\t\t'units-per-em': 'unitsPerEm',\n\t\tunitsperem: 'unitsPerEm',\n\t\tusemap: 'useMap',\n\t\t'v-alphabetic': 'vAlphabetic',\n\t\t'v-hanging': 'vHanging',\n\t\t'v-ideographic': 'vIdeographic',\n\t\t'v-mathematical': 'vMathematical',\n\t\tvalphabetic: 'vAlphabetic',\n\t\t'vector-effect': 'vectorEffect',\n\t\tvectoreffect: 'vectorEffect',\n\t\t'vert-adv-y': 'vertAdvY',\n\t\t'vert-origin-x': 'vertOriginX',\n\t\t'vert-origin-y': 'vertOriginY',\n\t\tvertadvy: 'vertAdvY',\n\t\tvertoriginx: 'vertOriginX',\n\t\tvertoriginy: 'vertOriginY',\n\t\tvhanging: 'vHanging',\n\t\tvideographic: 'vIdeographic',\n\t\tviewbox: 'viewBox',\n\t\tviewtarget: 'viewTarget',\n\t\tvmathematical: 'vMathematical',\n\t\t'word-spacing': 'wordSpacing',\n\t\twordspacing: 'wordSpacing',\n\t\t'writing-mode': 'writingMode',\n\t\twritingmode: 'writingMode',\n\t\t'x-height': 'xHeight',\n\t\txchannelselector: 'xChannelSelector',\n\t\txheight: 'xHeight',\n\t\t'xlink:actuate': 'xlinkActuate',\n\t\t'xlink:arcrole': 'xlinkArcrole',\n\t\t'xlink:href': 'xlinkHref',\n\t\t'xlink:role': 'xlinkRole',\n\t\t'xlink:show': 'xlinkShow',\n\t\t'xlink:title': 'xlinkTitle',\n\t\t'xlink:type': 'xlinkType',\n\t\txlinkactuate: 'xlinkActuate',\n\t\txlinkarcrole: 'xlinkArcrole',\n\t\txlinkhref: 'xlinkHref',\n\t\txlinkrole: 'xlinkRole',\n\t\txlinkshow: 'xlinkShow',\n\t\txlinktitle: 'xlinkTitle',\n\t\txlinktype: 'xlinkType',\n\t\t'xml:base': 'xmlBase',\n\t\t'xml:lang': 'xmlLang',\n\t\t'xml:space': 'xmlSpace',\n\t\txmlbase: 'xmlBase',\n\t\txmllang: 'xmlLang',\n\t\t'xmlns:xlink': 'xmlnsXlink',\n\t\txmlnsxlink: 'xmlnsXlink',\n\t\txmlspace: 'xmlSpace',\n\t\tychannelselector: 'yChannelSelector',\n\t\tzoomandpan: 'zoomAndPan',\n\t};\n} )( jQuery );\n","var charenc = {\n // UTF-8 encoding\n utf8: {\n // Convert a string to a byte array\n stringToBytes: function(str) {\n return charenc.bin.stringToBytes(unescape(encodeURIComponent(str)));\n },\n\n // Convert a byte array to a string\n bytesToString: function(bytes) {\n return decodeURIComponent(escape(charenc.bin.bytesToString(bytes)));\n }\n },\n\n // Binary encoding\n bin: {\n // Convert a string to a byte array\n stringToBytes: function(str) {\n for (var bytes = [], i = 0; i < str.length; i++)\n bytes.push(str.charCodeAt(i) & 0xFF);\n return bytes;\n },\n\n // Convert a byte array to a string\n bytesToString: function(bytes) {\n for (var str = [], i = 0; i < bytes.length; i++)\n str.push(String.fromCharCode(bytes[i]));\n return str.join('');\n }\n }\n};\n\nmodule.exports = charenc;\n","(function() {\n var base64map\n = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/',\n\n crypt = {\n // Bit-wise rotation left\n rotl: function(n, b) {\n return (n << b) | (n >>> (32 - b));\n },\n\n // Bit-wise rotation right\n rotr: function(n, b) {\n return (n << (32 - b)) | (n >>> b);\n },\n\n // Swap big-endian to little-endian and vice versa\n endian: function(n) {\n // If number given, swap endian\n if (n.constructor == Number) {\n return crypt.rotl(n, 8) & 0x00FF00FF | crypt.rotl(n, 24) & 0xFF00FF00;\n }\n\n // Else, assume array and swap all items\n for (var i = 0; i < n.length; i++)\n n[i] = crypt.endian(n[i]);\n return n;\n },\n\n // Generate an array of any length of random bytes\n randomBytes: function(n) {\n for (var bytes = []; n > 0; n--)\n bytes.push(Math.floor(Math.random() * 256));\n return bytes;\n },\n\n // Convert a byte array to big-endian 32-bit words\n bytesToWords: function(bytes) {\n for (var words = [], i = 0, b = 0; i < bytes.length; i++, b += 8)\n words[b >>> 5] |= bytes[i] << (24 - b % 32);\n return words;\n },\n\n // Convert big-endian 32-bit words to a byte array\n wordsToBytes: function(words) {\n for (var bytes = [], b = 0; b < words.length * 32; b += 8)\n bytes.push((words[b >>> 5] >>> (24 - b % 32)) & 0xFF);\n return bytes;\n },\n\n // Convert a byte array to a hex string\n bytesToHex: function(bytes) {\n for (var hex = [], i = 0; i < bytes.length; i++) {\n hex.push((bytes[i] >>> 4).toString(16));\n hex.push((bytes[i] & 0xF).toString(16));\n }\n return hex.join('');\n },\n\n // Convert a hex string to a byte array\n hexToBytes: function(hex) {\n for (var bytes = [], c = 0; c < hex.length; c += 2)\n bytes.push(parseInt(hex.substr(c, 2), 16));\n return bytes;\n },\n\n // Convert a byte array to a base-64 string\n bytesToBase64: function(bytes) {\n for (var base64 = [], i = 0; i < bytes.length; i += 3) {\n var triplet = (bytes[i] << 16) | (bytes[i + 1] << 8) | bytes[i + 2];\n for (var j = 0; j < 4; j++)\n if (i * 8 + j * 6 <= bytes.length * 8)\n base64.push(base64map.charAt((triplet >>> 6 * (3 - j)) & 0x3F));\n else\n base64.push('=');\n }\n return base64.join('');\n },\n\n // Convert a base-64 string to a byte array\n base64ToBytes: function(base64) {\n // Remove non-base-64 characters\n base64 = base64.replace(/[^A-Z0-9+\\/]/ig, '');\n\n for (var bytes = [], i = 0, imod4 = 0; i < base64.length;\n imod4 = ++i % 4) {\n if (imod4 == 0) continue;\n bytes.push(((base64map.indexOf(base64.charAt(i - 1))\n & (Math.pow(2, -2 * imod4 + 8) - 1)) << (imod4 * 2))\n | (base64map.indexOf(base64.charAt(i)) >>> (6 - imod4 * 2)));\n }\n return bytes;\n }\n };\n\n module.exports = crypt;\n})();\n","/*!\n * Determine if an object is a Buffer\n *\n * @author Feross Aboukhadijeh \n * @license MIT\n */\n\n// The _isBuffer check is for Safari 5-7 support, because it's missing\n// Object.prototype.constructor. Remove this eventually\nmodule.exports = function (obj) {\n return obj != null && (isBuffer(obj) || isSlowBuffer(obj) || !!obj._isBuffer)\n}\n\nfunction isBuffer (obj) {\n return !!obj.constructor && typeof obj.constructor.isBuffer === 'function' && obj.constructor.isBuffer(obj)\n}\n\n// For Node v0.10 support. Remove this eventually.\nfunction isSlowBuffer (obj) {\n return typeof obj.readFloatLE === 'function' && typeof obj.slice === 'function' && isBuffer(obj.slice(0, 0))\n}\n","(function(){\r\n var crypt = require('crypt'),\r\n utf8 = require('charenc').utf8,\r\n isBuffer = require('is-buffer'),\r\n bin = require('charenc').bin,\r\n\r\n // The core\r\n md5 = function (message, options) {\r\n // Convert to byte array\r\n if (message.constructor == String)\r\n if (options && options.encoding === 'binary')\r\n message = bin.stringToBytes(message);\r\n else\r\n message = utf8.stringToBytes(message);\r\n else if (isBuffer(message))\r\n message = Array.prototype.slice.call(message, 0);\r\n else if (!Array.isArray(message) && message.constructor !== Uint8Array)\r\n message = message.toString();\r\n // else, assume byte array already\r\n\r\n var m = crypt.bytesToWords(message),\r\n l = message.length * 8,\r\n a = 1732584193,\r\n b = -271733879,\r\n c = -1732584194,\r\n d = 271733878;\r\n\r\n // Swap endian\r\n for (var i = 0; i < m.length; i++) {\r\n m[i] = ((m[i] << 8) | (m[i] >>> 24)) & 0x00FF00FF |\r\n ((m[i] << 24) | (m[i] >>> 8)) & 0xFF00FF00;\r\n }\r\n\r\n // Padding\r\n m[l >>> 5] |= 0x80 << (l % 32);\r\n m[(((l + 64) >>> 9) << 4) + 14] = l;\r\n\r\n // Method shortcuts\r\n var FF = md5._ff,\r\n GG = md5._gg,\r\n HH = md5._hh,\r\n II = md5._ii;\r\n\r\n for (var i = 0; i < m.length; i += 16) {\r\n\r\n var aa = a,\r\n bb = b,\r\n cc = c,\r\n dd = d;\r\n\r\n a = FF(a, b, c, d, m[i+ 0], 7, -680876936);\r\n d = FF(d, a, b, c, m[i+ 1], 12, -389564586);\r\n c = FF(c, d, a, b, m[i+ 2], 17, 606105819);\r\n b = FF(b, c, d, a, m[i+ 3], 22, -1044525330);\r\n a = FF(a, b, c, d, m[i+ 4], 7, -176418897);\r\n d = FF(d, a, b, c, m[i+ 5], 12, 1200080426);\r\n c = FF(c, d, a, b, m[i+ 6], 17, -1473231341);\r\n b = FF(b, c, d, a, m[i+ 7], 22, -45705983);\r\n a = FF(a, b, c, d, m[i+ 8], 7, 1770035416);\r\n d = FF(d, a, b, c, m[i+ 9], 12, -1958414417);\r\n c = FF(c, d, a, b, m[i+10], 17, -42063);\r\n b = FF(b, c, d, a, m[i+11], 22, -1990404162);\r\n a = FF(a, b, c, d, m[i+12], 7, 1804603682);\r\n d = FF(d, a, b, c, m[i+13], 12, -40341101);\r\n c = FF(c, d, a, b, m[i+14], 17, -1502002290);\r\n b = FF(b, c, d, a, m[i+15], 22, 1236535329);\r\n\r\n a = GG(a, b, c, d, m[i+ 1], 5, -165796510);\r\n d = GG(d, a, b, c, m[i+ 6], 9, -1069501632);\r\n c = GG(c, d, a, b, m[i+11], 14, 643717713);\r\n b = GG(b, c, d, a, m[i+ 0], 20, -373897302);\r\n a = GG(a, b, c, d, m[i+ 5], 5, -701558691);\r\n d = GG(d, a, b, c, m[i+10], 9, 38016083);\r\n c = GG(c, d, a, b, m[i+15], 14, -660478335);\r\n b = GG(b, c, d, a, m[i+ 4], 20, -405537848);\r\n a = GG(a, b, c, d, m[i+ 9], 5, 568446438);\r\n d = GG(d, a, b, c, m[i+14], 9, -1019803690);\r\n c = GG(c, d, a, b, m[i+ 3], 14, -187363961);\r\n b = GG(b, c, d, a, m[i+ 8], 20, 1163531501);\r\n a = GG(a, b, c, d, m[i+13], 5, -1444681467);\r\n d = GG(d, a, b, c, m[i+ 2], 9, -51403784);\r\n c = GG(c, d, a, b, m[i+ 7], 14, 1735328473);\r\n b = GG(b, c, d, a, m[i+12], 20, -1926607734);\r\n\r\n a = HH(a, b, c, d, m[i+ 5], 4, -378558);\r\n d = HH(d, a, b, c, m[i+ 8], 11, -2022574463);\r\n c = HH(c, d, a, b, m[i+11], 16, 1839030562);\r\n b = HH(b, c, d, a, m[i+14], 23, -35309556);\r\n a = HH(a, b, c, d, m[i+ 1], 4, -1530992060);\r\n d = HH(d, a, b, c, m[i+ 4], 11, 1272893353);\r\n c = HH(c, d, a, b, m[i+ 7], 16, -155497632);\r\n b = HH(b, c, d, a, m[i+10], 23, -1094730640);\r\n a = HH(a, b, c, d, m[i+13], 4, 681279174);\r\n d = HH(d, a, b, c, m[i+ 0], 11, -358537222);\r\n c = HH(c, d, a, b, m[i+ 3], 16, -722521979);\r\n b = HH(b, c, d, a, m[i+ 6], 23, 76029189);\r\n a = HH(a, b, c, d, m[i+ 9], 4, -640364487);\r\n d = HH(d, a, b, c, m[i+12], 11, -421815835);\r\n c = HH(c, d, a, b, m[i+15], 16, 530742520);\r\n b = HH(b, c, d, a, m[i+ 2], 23, -995338651);\r\n\r\n a = II(a, b, c, d, m[i+ 0], 6, -198630844);\r\n d = II(d, a, b, c, m[i+ 7], 10, 1126891415);\r\n c = II(c, d, a, b, m[i+14], 15, -1416354905);\r\n b = II(b, c, d, a, m[i+ 5], 21, -57434055);\r\n a = II(a, b, c, d, m[i+12], 6, 1700485571);\r\n d = II(d, a, b, c, m[i+ 3], 10, -1894986606);\r\n c = II(c, d, a, b, m[i+10], 15, -1051523);\r\n b = II(b, c, d, a, m[i+ 1], 21, -2054922799);\r\n a = II(a, b, c, d, m[i+ 8], 6, 1873313359);\r\n d = II(d, a, b, c, m[i+15], 10, -30611744);\r\n c = II(c, d, a, b, m[i+ 6], 15, -1560198380);\r\n b = II(b, c, d, a, m[i+13], 21, 1309151649);\r\n a = II(a, b, c, d, m[i+ 4], 6, -145523070);\r\n d = II(d, a, b, c, m[i+11], 10, -1120210379);\r\n c = II(c, d, a, b, m[i+ 2], 15, 718787259);\r\n b = II(b, c, d, a, m[i+ 9], 21, -343485551);\r\n\r\n a = (a + aa) >>> 0;\r\n b = (b + bb) >>> 0;\r\n c = (c + cc) >>> 0;\r\n d = (d + dd) >>> 0;\r\n }\r\n\r\n return crypt.endian([a, b, c, d]);\r\n };\r\n\r\n // Auxiliary functions\r\n md5._ff = function (a, b, c, d, x, s, t) {\r\n var n = a + (b & c | ~b & d) + (x >>> 0) + t;\r\n return ((n << s) | (n >>> (32 - s))) + b;\r\n };\r\n md5._gg = function (a, b, c, d, x, s, t) {\r\n var n = a + (b & d | c & ~d) + (x >>> 0) + t;\r\n return ((n << s) | (n >>> (32 - s))) + b;\r\n };\r\n md5._hh = function (a, b, c, d, x, s, t) {\r\n var n = a + (b ^ c ^ d) + (x >>> 0) + t;\r\n return ((n << s) | (n >>> (32 - s))) + b;\r\n };\r\n md5._ii = function (a, b, c, d, x, s, t) {\r\n var n = a + (c ^ (b | ~d)) + (x >>> 0) + t;\r\n return ((n << s) | (n >>> (32 - s))) + b;\r\n };\r\n\r\n // Package private blocksize\r\n md5._blocksize = 16;\r\n md5._digestsize = 16;\r\n\r\n module.exports = function (message, options) {\r\n if (message === undefined || message === null)\r\n throw new Error('Illegal argument ' + message);\r\n\r\n var digestbytes = crypt.wordsToBytes(md5(message, options));\r\n return options && options.asBytes ? digestbytes :\r\n options && options.asString ? bin.bytesToString(digestbytes) :\r\n crypt.bytesToHex(digestbytes);\r\n };\r\n\r\n})();\r\n","/**\n * @license React\n * react.development.js\n *\n * Copyright (c) Facebook, Inc. and its affiliates.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */\n\n'use strict';\n\nif (process.env.NODE_ENV !== \"production\") {\n (function() {\n\n 'use strict';\n\n/* global __REACT_DEVTOOLS_GLOBAL_HOOK__ */\nif (\n typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ !== 'undefined' &&\n typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStart ===\n 'function'\n) {\n __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStart(new Error());\n}\n var ReactVersion = '18.2.0';\n\n// ATTENTION\n// When adding new symbols to this file,\n// Please consider also adding to 'react-devtools-shared/src/backend/ReactSymbols'\n// The Symbol used to tag the ReactElement-like types.\nvar REACT_ELEMENT_TYPE = Symbol.for('react.element');\nvar REACT_PORTAL_TYPE = Symbol.for('react.portal');\nvar REACT_FRAGMENT_TYPE = Symbol.for('react.fragment');\nvar REACT_STRICT_MODE_TYPE = Symbol.for('react.strict_mode');\nvar REACT_PROFILER_TYPE = Symbol.for('react.profiler');\nvar REACT_PROVIDER_TYPE = Symbol.for('react.provider');\nvar REACT_CONTEXT_TYPE = Symbol.for('react.context');\nvar REACT_FORWARD_REF_TYPE = Symbol.for('react.forward_ref');\nvar REACT_SUSPENSE_TYPE = Symbol.for('react.suspense');\nvar REACT_SUSPENSE_LIST_TYPE = Symbol.for('react.suspense_list');\nvar REACT_MEMO_TYPE = Symbol.for('react.memo');\nvar REACT_LAZY_TYPE = Symbol.for('react.lazy');\nvar REACT_OFFSCREEN_TYPE = Symbol.for('react.offscreen');\nvar MAYBE_ITERATOR_SYMBOL = Symbol.iterator;\nvar FAUX_ITERATOR_SYMBOL = '@@iterator';\nfunction getIteratorFn(maybeIterable) {\n if (maybeIterable === null || typeof maybeIterable !== 'object') {\n return null;\n }\n\n var maybeIterator = MAYBE_ITERATOR_SYMBOL && maybeIterable[MAYBE_ITERATOR_SYMBOL] || maybeIterable[FAUX_ITERATOR_SYMBOL];\n\n if (typeof maybeIterator === 'function') {\n return maybeIterator;\n }\n\n return null;\n}\n\n/**\n * Keeps track of the current dispatcher.\n */\nvar ReactCurrentDispatcher = {\n /**\n * @internal\n * @type {ReactComponent}\n */\n current: null\n};\n\n/**\n * Keeps track of the current batch's configuration such as how long an update\n * should suspend for if it needs to.\n */\nvar ReactCurrentBatchConfig = {\n transition: null\n};\n\nvar ReactCurrentActQueue = {\n current: null,\n // Used to reproduce behavior of `batchedUpdates` in legacy mode.\n isBatchingLegacy: false,\n didScheduleLegacyUpdate: false\n};\n\n/**\n * Keeps track of the current owner.\n *\n * The current owner is the component who should own any components that are\n * currently being constructed.\n */\nvar ReactCurrentOwner = {\n /**\n * @internal\n * @type {ReactComponent}\n */\n current: null\n};\n\nvar ReactDebugCurrentFrame = {};\nvar currentExtraStackFrame = null;\nfunction setExtraStackFrame(stack) {\n {\n currentExtraStackFrame = stack;\n }\n}\n\n{\n ReactDebugCurrentFrame.setExtraStackFrame = function (stack) {\n {\n currentExtraStackFrame = stack;\n }\n }; // Stack implementation injected by the current renderer.\n\n\n ReactDebugCurrentFrame.getCurrentStack = null;\n\n ReactDebugCurrentFrame.getStackAddendum = function () {\n var stack = ''; // Add an extra top frame while an element is being validated\n\n if (currentExtraStackFrame) {\n stack += currentExtraStackFrame;\n } // Delegate to the injected renderer-specific implementation\n\n\n var impl = ReactDebugCurrentFrame.getCurrentStack;\n\n if (impl) {\n stack += impl() || '';\n }\n\n return stack;\n };\n}\n\n// -----------------------------------------------------------------------------\n\nvar enableScopeAPI = false; // Experimental Create Event Handle API.\nvar enableCacheElement = false;\nvar enableTransitionTracing = false; // No known bugs, but needs performance testing\n\nvar enableLegacyHidden = false; // Enables unstable_avoidThisFallback feature in Fiber\n// stuff. Intended to enable React core members to more easily debug scheduling\n// issues in DEV builds.\n\nvar enableDebugTracing = false; // Track which Fiber(s) schedule render work.\n\nvar ReactSharedInternals = {\n ReactCurrentDispatcher: ReactCurrentDispatcher,\n ReactCurrentBatchConfig: ReactCurrentBatchConfig,\n ReactCurrentOwner: ReactCurrentOwner\n};\n\n{\n ReactSharedInternals.ReactDebugCurrentFrame = ReactDebugCurrentFrame;\n ReactSharedInternals.ReactCurrentActQueue = ReactCurrentActQueue;\n}\n\n// by calls to these methods by a Babel plugin.\n//\n// In PROD (or in packages without access to React internals),\n// they are left as they are instead.\n\nfunction warn(format) {\n {\n {\n for (var _len = arguments.length, args = new Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) {\n args[_key - 1] = arguments[_key];\n }\n\n printWarning('warn', format, args);\n }\n }\n}\nfunction error(format) {\n {\n {\n for (var _len2 = arguments.length, args = new Array(_len2 > 1 ? _len2 - 1 : 0), _key2 = 1; _key2 < _len2; _key2++) {\n args[_key2 - 1] = arguments[_key2];\n }\n\n printWarning('error', format, args);\n }\n }\n}\n\nfunction printWarning(level, format, args) {\n // When changing this logic, you might want to also\n // update consoleWithStackDev.www.js as well.\n {\n var ReactDebugCurrentFrame = ReactSharedInternals.ReactDebugCurrentFrame;\n var stack = ReactDebugCurrentFrame.getStackAddendum();\n\n if (stack !== '') {\n format += '%s';\n args = args.concat([stack]);\n } // eslint-disable-next-line react-internal/safe-string-coercion\n\n\n var argsWithFormat = args.map(function (item) {\n return String(item);\n }); // Careful: RN currently depends on this prefix\n\n argsWithFormat.unshift('Warning: ' + format); // We intentionally don't use spread (or .apply) directly because it\n // breaks IE9: https://github.com/facebook/react/issues/13610\n // eslint-disable-next-line react-internal/no-production-logging\n\n Function.prototype.apply.call(console[level], console, argsWithFormat);\n }\n}\n\nvar didWarnStateUpdateForUnmountedComponent = {};\n\nfunction warnNoop(publicInstance, callerName) {\n {\n var _constructor = publicInstance.constructor;\n var componentName = _constructor && (_constructor.displayName || _constructor.name) || 'ReactClass';\n var warningKey = componentName + \".\" + callerName;\n\n if (didWarnStateUpdateForUnmountedComponent[warningKey]) {\n return;\n }\n\n error(\"Can't call %s on a component that is not yet mounted. \" + 'This is a no-op, but it might indicate a bug in your application. ' + 'Instead, assign to `this.state` directly or define a `state = {};` ' + 'class property with the desired state in the %s component.', callerName, componentName);\n\n didWarnStateUpdateForUnmountedComponent[warningKey] = true;\n }\n}\n/**\n * This is the abstract API for an update queue.\n */\n\n\nvar ReactNoopUpdateQueue = {\n /**\n * Checks whether or not this composite component is mounted.\n * @param {ReactClass} publicInstance The instance we want to test.\n * @return {boolean} True if mounted, false otherwise.\n * @protected\n * @final\n */\n isMounted: function (publicInstance) {\n return false;\n },\n\n /**\n * Forces an update. This should only be invoked when it is known with\n * certainty that we are **not** in a DOM transaction.\n *\n * You may want to call this when you know that some deeper aspect of the\n * component's state has changed but `setState` was not called.\n *\n * This will not invoke `shouldComponentUpdate`, but it will invoke\n * `componentWillUpdate` and `componentDidUpdate`.\n *\n * @param {ReactClass} publicInstance The instance that should rerender.\n * @param {?function} callback Called after component is updated.\n * @param {?string} callerName name of the calling function in the public API.\n * @internal\n */\n enqueueForceUpdate: function (publicInstance, callback, callerName) {\n warnNoop(publicInstance, 'forceUpdate');\n },\n\n /**\n * Replaces all of the state. Always use this or `setState` to mutate state.\n * You should treat `this.state` as immutable.\n *\n * There is no guarantee that `this.state` will be immediately updated, so\n * accessing `this.state` after calling this method may return the old value.\n *\n * @param {ReactClass} publicInstance The instance that should rerender.\n * @param {object} completeState Next state.\n * @param {?function} callback Called after component is updated.\n * @param {?string} callerName name of the calling function in the public API.\n * @internal\n */\n enqueueReplaceState: function (publicInstance, completeState, callback, callerName) {\n warnNoop(publicInstance, 'replaceState');\n },\n\n /**\n * Sets a subset of the state. This only exists because _pendingState is\n * internal. This provides a merging strategy that is not available to deep\n * properties which is confusing. TODO: Expose pendingState or don't use it\n * during the merge.\n *\n * @param {ReactClass} publicInstance The instance that should rerender.\n * @param {object} partialState Next partial state to be merged with state.\n * @param {?function} callback Called after component is updated.\n * @param {?string} Name of the calling function in the public API.\n * @internal\n */\n enqueueSetState: function (publicInstance, partialState, callback, callerName) {\n warnNoop(publicInstance, 'setState');\n }\n};\n\nvar assign = Object.assign;\n\nvar emptyObject = {};\n\n{\n Object.freeze(emptyObject);\n}\n/**\n * Base class helpers for the updating state of a component.\n */\n\n\nfunction Component(props, context, updater) {\n this.props = props;\n this.context = context; // If a component has string refs, we will assign a different object later.\n\n this.refs = emptyObject; // We initialize the default updater but the real one gets injected by the\n // renderer.\n\n this.updater = updater || ReactNoopUpdateQueue;\n}\n\nComponent.prototype.isReactComponent = {};\n/**\n * Sets a subset of the state. Always use this to mutate\n * state. You should treat `this.state` as immutable.\n *\n * There is no guarantee that `this.state` will be immediately updated, so\n * accessing `this.state` after calling this method may return the old value.\n *\n * There is no guarantee that calls to `setState` will run synchronously,\n * as they may eventually be batched together. You can provide an optional\n * callback that will be executed when the call to setState is actually\n * completed.\n *\n * When a function is provided to setState, it will be called at some point in\n * the future (not synchronously). It will be called with the up to date\n * component arguments (state, props, context). These values can be different\n * from this.* because your function may be called after receiveProps but before\n * shouldComponentUpdate, and this new state, props, and context will not yet be\n * assigned to this.\n *\n * @param {object|function} partialState Next partial state or function to\n * produce next partial state to be merged with current state.\n * @param {?function} callback Called after state is updated.\n * @final\n * @protected\n */\n\nComponent.prototype.setState = function (partialState, callback) {\n if (typeof partialState !== 'object' && typeof partialState !== 'function' && partialState != null) {\n throw new Error('setState(...): takes an object of state variables to update or a ' + 'function which returns an object of state variables.');\n }\n\n this.updater.enqueueSetState(this, partialState, callback, 'setState');\n};\n/**\n * Forces an update. This should only be invoked when it is known with\n * certainty that we are **not** in a DOM transaction.\n *\n * You may want to call this when you know that some deeper aspect of the\n * component's state has changed but `setState` was not called.\n *\n * This will not invoke `shouldComponentUpdate`, but it will invoke\n * `componentWillUpdate` and `componentDidUpdate`.\n *\n * @param {?function} callback Called after update is complete.\n * @final\n * @protected\n */\n\n\nComponent.prototype.forceUpdate = function (callback) {\n this.updater.enqueueForceUpdate(this, callback, 'forceUpdate');\n};\n/**\n * Deprecated APIs. These APIs used to exist on classic React classes but since\n * we would like to deprecate them, we're not going to move them over to this\n * modern base class. Instead, we define a getter that warns if it's accessed.\n */\n\n\n{\n var deprecatedAPIs = {\n isMounted: ['isMounted', 'Instead, make sure to clean up subscriptions and pending requests in ' + 'componentWillUnmount to prevent memory leaks.'],\n replaceState: ['replaceState', 'Refactor your code to use setState instead (see ' + 'https://github.com/facebook/react/issues/3236).']\n };\n\n var defineDeprecationWarning = function (methodName, info) {\n Object.defineProperty(Component.prototype, methodName, {\n get: function () {\n warn('%s(...) is deprecated in plain JavaScript React classes. %s', info[0], info[1]);\n\n return undefined;\n }\n });\n };\n\n for (var fnName in deprecatedAPIs) {\n if (deprecatedAPIs.hasOwnProperty(fnName)) {\n defineDeprecationWarning(fnName, deprecatedAPIs[fnName]);\n }\n }\n}\n\nfunction ComponentDummy() {}\n\nComponentDummy.prototype = Component.prototype;\n/**\n * Convenience component with default shallow equality check for sCU.\n */\n\nfunction PureComponent(props, context, updater) {\n this.props = props;\n this.context = context; // If a component has string refs, we will assign a different object later.\n\n this.refs = emptyObject;\n this.updater = updater || ReactNoopUpdateQueue;\n}\n\nvar pureComponentPrototype = PureComponent.prototype = new ComponentDummy();\npureComponentPrototype.constructor = PureComponent; // Avoid an extra prototype jump for these methods.\n\nassign(pureComponentPrototype, Component.prototype);\npureComponentPrototype.isPureReactComponent = true;\n\n// an immutable object with a single mutable value\nfunction createRef() {\n var refObject = {\n current: null\n };\n\n {\n Object.seal(refObject);\n }\n\n return refObject;\n}\n\nvar isArrayImpl = Array.isArray; // eslint-disable-next-line no-redeclare\n\nfunction isArray(a) {\n return isArrayImpl(a);\n}\n\n/*\n * The `'' + value` pattern (used in in perf-sensitive code) throws for Symbol\n * and Temporal.* types. See https://github.com/facebook/react/pull/22064.\n *\n * The functions in this module will throw an easier-to-understand,\n * easier-to-debug exception with a clear errors message message explaining the\n * problem. (Instead of a confusing exception thrown inside the implementation\n * of the `value` object).\n */\n// $FlowFixMe only called in DEV, so void return is not possible.\nfunction typeName(value) {\n {\n // toStringTag is needed for namespaced types like Temporal.Instant\n var hasToStringTag = typeof Symbol === 'function' && Symbol.toStringTag;\n var type = hasToStringTag && value[Symbol.toStringTag] || value.constructor.name || 'Object';\n return type;\n }\n} // $FlowFixMe only called in DEV, so void return is not possible.\n\n\nfunction willCoercionThrow(value) {\n {\n try {\n testStringCoercion(value);\n return false;\n } catch (e) {\n return true;\n }\n }\n}\n\nfunction testStringCoercion(value) {\n // If you ended up here by following an exception call stack, here's what's\n // happened: you supplied an object or symbol value to React (as a prop, key,\n // DOM attribute, CSS property, string ref, etc.) and when React tried to\n // coerce it to a string using `'' + value`, an exception was thrown.\n //\n // The most common types that will cause this exception are `Symbol` instances\n // and Temporal objects like `Temporal.Instant`. But any object that has a\n // `valueOf` or `[Symbol.toPrimitive]` method that throws will also cause this\n // exception. (Library authors do this to prevent users from using built-in\n // numeric operators like `+` or comparison operators like `>=` because custom\n // methods are needed to perform accurate arithmetic or comparison.)\n //\n // To fix the problem, coerce this object or symbol value to a string before\n // passing it to React. The most reliable way is usually `String(value)`.\n //\n // To find which value is throwing, check the browser or debugger console.\n // Before this exception was thrown, there should be `console.error` output\n // that shows the type (Symbol, Temporal.PlainDate, etc.) that caused the\n // problem and how that type was used: key, atrribute, input value prop, etc.\n // In most cases, this console output also shows the component and its\n // ancestor components where the exception happened.\n //\n // eslint-disable-next-line react-internal/safe-string-coercion\n return '' + value;\n}\nfunction checkKeyStringCoercion(value) {\n {\n if (willCoercionThrow(value)) {\n error('The provided key is an unsupported type %s.' + ' This value must be coerced to a string before before using it here.', typeName(value));\n\n return testStringCoercion(value); // throw (to help callers find troubleshooting comments)\n }\n }\n}\n\nfunction getWrappedName(outerType, innerType, wrapperName) {\n var displayName = outerType.displayName;\n\n if (displayName) {\n return displayName;\n }\n\n var functionName = innerType.displayName || innerType.name || '';\n return functionName !== '' ? wrapperName + \"(\" + functionName + \")\" : wrapperName;\n} // Keep in sync with react-reconciler/getComponentNameFromFiber\n\n\nfunction getContextName(type) {\n return type.displayName || 'Context';\n} // Note that the reconciler package should generally prefer to use getComponentNameFromFiber() instead.\n\n\nfunction getComponentNameFromType(type) {\n if (type == null) {\n // Host root, text node or just invalid type.\n return null;\n }\n\n {\n if (typeof type.tag === 'number') {\n error('Received an unexpected object in getComponentNameFromType(). ' + 'This is likely a bug in React. Please file an issue.');\n }\n }\n\n if (typeof type === 'function') {\n return type.displayName || type.name || null;\n }\n\n if (typeof type === 'string') {\n return type;\n }\n\n switch (type) {\n case REACT_FRAGMENT_TYPE:\n return 'Fragment';\n\n case REACT_PORTAL_TYPE:\n return 'Portal';\n\n case REACT_PROFILER_TYPE:\n return 'Profiler';\n\n case REACT_STRICT_MODE_TYPE:\n return 'StrictMode';\n\n case REACT_SUSPENSE_TYPE:\n return 'Suspense';\n\n case REACT_SUSPENSE_LIST_TYPE:\n return 'SuspenseList';\n\n }\n\n if (typeof type === 'object') {\n switch (type.$$typeof) {\n case REACT_CONTEXT_TYPE:\n var context = type;\n return getContextName(context) + '.Consumer';\n\n case REACT_PROVIDER_TYPE:\n var provider = type;\n return getContextName(provider._context) + '.Provider';\n\n case REACT_FORWARD_REF_TYPE:\n return getWrappedName(type, type.render, 'ForwardRef');\n\n case REACT_MEMO_TYPE:\n var outerName = type.displayName || null;\n\n if (outerName !== null) {\n return outerName;\n }\n\n return getComponentNameFromType(type.type) || 'Memo';\n\n case REACT_LAZY_TYPE:\n {\n var lazyComponent = type;\n var payload = lazyComponent._payload;\n var init = lazyComponent._init;\n\n try {\n return getComponentNameFromType(init(payload));\n } catch (x) {\n return null;\n }\n }\n\n // eslint-disable-next-line no-fallthrough\n }\n }\n\n return null;\n}\n\nvar hasOwnProperty = Object.prototype.hasOwnProperty;\n\nvar RESERVED_PROPS = {\n key: true,\n ref: true,\n __self: true,\n __source: true\n};\nvar specialPropKeyWarningShown, specialPropRefWarningShown, didWarnAboutStringRefs;\n\n{\n didWarnAboutStringRefs = {};\n}\n\nfunction hasValidRef(config) {\n {\n if (hasOwnProperty.call(config, 'ref')) {\n var getter = Object.getOwnPropertyDescriptor(config, 'ref').get;\n\n if (getter && getter.isReactWarning) {\n return false;\n }\n }\n }\n\n return config.ref !== undefined;\n}\n\nfunction hasValidKey(config) {\n {\n if (hasOwnProperty.call(config, 'key')) {\n var getter = Object.getOwnPropertyDescriptor(config, 'key').get;\n\n if (getter && getter.isReactWarning) {\n return false;\n }\n }\n }\n\n return config.key !== undefined;\n}\n\nfunction defineKeyPropWarningGetter(props, displayName) {\n var warnAboutAccessingKey = function () {\n {\n if (!specialPropKeyWarningShown) {\n specialPropKeyWarningShown = true;\n\n error('%s: `key` is not a prop. Trying to access it will result ' + 'in `undefined` being returned. If you need to access the same ' + 'value within the child component, you should pass it as a different ' + 'prop. (https://reactjs.org/link/special-props)', displayName);\n }\n }\n };\n\n warnAboutAccessingKey.isReactWarning = true;\n Object.defineProperty(props, 'key', {\n get: warnAboutAccessingKey,\n configurable: true\n });\n}\n\nfunction defineRefPropWarningGetter(props, displayName) {\n var warnAboutAccessingRef = function () {\n {\n if (!specialPropRefWarningShown) {\n specialPropRefWarningShown = true;\n\n error('%s: `ref` is not a prop. Trying to access it will result ' + 'in `undefined` being returned. If you need to access the same ' + 'value within the child component, you should pass it as a different ' + 'prop. (https://reactjs.org/link/special-props)', displayName);\n }\n }\n };\n\n warnAboutAccessingRef.isReactWarning = true;\n Object.defineProperty(props, 'ref', {\n get: warnAboutAccessingRef,\n configurable: true\n });\n}\n\nfunction warnIfStringRefCannotBeAutoConverted(config) {\n {\n if (typeof config.ref === 'string' && ReactCurrentOwner.current && config.__self && ReactCurrentOwner.current.stateNode !== config.__self) {\n var componentName = getComponentNameFromType(ReactCurrentOwner.current.type);\n\n if (!didWarnAboutStringRefs[componentName]) {\n error('Component \"%s\" contains the string ref \"%s\". ' + 'Support for string refs will be removed in a future major release. ' + 'This case cannot be automatically converted to an arrow function. ' + 'We ask you to manually fix this case by using useRef() or createRef() instead. ' + 'Learn more about using refs safely here: ' + 'https://reactjs.org/link/strict-mode-string-ref', componentName, config.ref);\n\n didWarnAboutStringRefs[componentName] = true;\n }\n }\n }\n}\n/**\n * Factory method to create a new React element. This no longer adheres to\n * the class pattern, so do not use new to call it. Also, instanceof check\n * will not work. Instead test $$typeof field against Symbol.for('react.element') to check\n * if something is a React Element.\n *\n * @param {*} type\n * @param {*} props\n * @param {*} key\n * @param {string|object} ref\n * @param {*} owner\n * @param {*} self A *temporary* helper to detect places where `this` is\n * different from the `owner` when React.createElement is called, so that we\n * can warn. We want to get rid of owner and replace string `ref`s with arrow\n * functions, and as long as `this` and owner are the same, there will be no\n * change in behavior.\n * @param {*} source An annotation object (added by a transpiler or otherwise)\n * indicating filename, line number, and/or other information.\n * @internal\n */\n\n\nvar ReactElement = function (type, key, ref, self, source, owner, props) {\n var element = {\n // This tag allows us to uniquely identify this as a React Element\n $$typeof: REACT_ELEMENT_TYPE,\n // Built-in properties that belong on the element\n type: type,\n key: key,\n ref: ref,\n props: props,\n // Record the component responsible for creating this element.\n _owner: owner\n };\n\n {\n // The validation flag is currently mutative. We put it on\n // an external backing store so that we can freeze the whole object.\n // This can be replaced with a WeakMap once they are implemented in\n // commonly used development environments.\n element._store = {}; // To make comparing ReactElements easier for testing purposes, we make\n // the validation flag non-enumerable (where possible, which should\n // include every environment we run tests in), so the test framework\n // ignores it.\n\n Object.defineProperty(element._store, 'validated', {\n configurable: false,\n enumerable: false,\n writable: true,\n value: false\n }); // self and source are DEV only properties.\n\n Object.defineProperty(element, '_self', {\n configurable: false,\n enumerable: false,\n writable: false,\n value: self\n }); // Two elements created in two different places should be considered\n // equal for testing purposes and therefore we hide it from enumeration.\n\n Object.defineProperty(element, '_source', {\n configurable: false,\n enumerable: false,\n writable: false,\n value: source\n });\n\n if (Object.freeze) {\n Object.freeze(element.props);\n Object.freeze(element);\n }\n }\n\n return element;\n};\n/**\n * Create and return a new ReactElement of the given type.\n * See https://reactjs.org/docs/react-api.html#createelement\n */\n\nfunction createElement(type, config, children) {\n var propName; // Reserved names are extracted\n\n var props = {};\n var key = null;\n var ref = null;\n var self = null;\n var source = null;\n\n if (config != null) {\n if (hasValidRef(config)) {\n ref = config.ref;\n\n {\n warnIfStringRefCannotBeAutoConverted(config);\n }\n }\n\n if (hasValidKey(config)) {\n {\n checkKeyStringCoercion(config.key);\n }\n\n key = '' + config.key;\n }\n\n self = config.__self === undefined ? null : config.__self;\n source = config.__source === undefined ? null : config.__source; // Remaining properties are added to a new props object\n\n for (propName in config) {\n if (hasOwnProperty.call(config, propName) && !RESERVED_PROPS.hasOwnProperty(propName)) {\n props[propName] = config[propName];\n }\n }\n } // Children can be more than one argument, and those are transferred onto\n // the newly allocated props object.\n\n\n var childrenLength = arguments.length - 2;\n\n if (childrenLength === 1) {\n props.children = children;\n } else if (childrenLength > 1) {\n var childArray = Array(childrenLength);\n\n for (var i = 0; i < childrenLength; i++) {\n childArray[i] = arguments[i + 2];\n }\n\n {\n if (Object.freeze) {\n Object.freeze(childArray);\n }\n }\n\n props.children = childArray;\n } // Resolve default props\n\n\n if (type && type.defaultProps) {\n var defaultProps = type.defaultProps;\n\n for (propName in defaultProps) {\n if (props[propName] === undefined) {\n props[propName] = defaultProps[propName];\n }\n }\n }\n\n {\n if (key || ref) {\n var displayName = typeof type === 'function' ? type.displayName || type.name || 'Unknown' : type;\n\n if (key) {\n defineKeyPropWarningGetter(props, displayName);\n }\n\n if (ref) {\n defineRefPropWarningGetter(props, displayName);\n }\n }\n }\n\n return ReactElement(type, key, ref, self, source, ReactCurrentOwner.current, props);\n}\nfunction cloneAndReplaceKey(oldElement, newKey) {\n var newElement = ReactElement(oldElement.type, newKey, oldElement.ref, oldElement._self, oldElement._source, oldElement._owner, oldElement.props);\n return newElement;\n}\n/**\n * Clone and return a new ReactElement using element as the starting point.\n * See https://reactjs.org/docs/react-api.html#cloneelement\n */\n\nfunction cloneElement(element, config, children) {\n if (element === null || element === undefined) {\n throw new Error(\"React.cloneElement(...): The argument must be a React element, but you passed \" + element + \".\");\n }\n\n var propName; // Original props are copied\n\n var props = assign({}, element.props); // Reserved names are extracted\n\n var key = element.key;\n var ref = element.ref; // Self is preserved since the owner is preserved.\n\n var self = element._self; // Source is preserved since cloneElement is unlikely to be targeted by a\n // transpiler, and the original source is probably a better indicator of the\n // true owner.\n\n var source = element._source; // Owner will be preserved, unless ref is overridden\n\n var owner = element._owner;\n\n if (config != null) {\n if (hasValidRef(config)) {\n // Silently steal the ref from the parent.\n ref = config.ref;\n owner = ReactCurrentOwner.current;\n }\n\n if (hasValidKey(config)) {\n {\n checkKeyStringCoercion(config.key);\n }\n\n key = '' + config.key;\n } // Remaining properties override existing props\n\n\n var defaultProps;\n\n if (element.type && element.type.defaultProps) {\n defaultProps = element.type.defaultProps;\n }\n\n for (propName in config) {\n if (hasOwnProperty.call(config, propName) && !RESERVED_PROPS.hasOwnProperty(propName)) {\n if (config[propName] === undefined && defaultProps !== undefined) {\n // Resolve default props\n props[propName] = defaultProps[propName];\n } else {\n props[propName] = config[propName];\n }\n }\n }\n } // Children can be more than one argument, and those are transferred onto\n // the newly allocated props object.\n\n\n var childrenLength = arguments.length - 2;\n\n if (childrenLength === 1) {\n props.children = children;\n } else if (childrenLength > 1) {\n var childArray = Array(childrenLength);\n\n for (var i = 0; i < childrenLength; i++) {\n childArray[i] = arguments[i + 2];\n }\n\n props.children = childArray;\n }\n\n return ReactElement(element.type, key, ref, self, source, owner, props);\n}\n/**\n * Verifies the object is a ReactElement.\n * See https://reactjs.org/docs/react-api.html#isvalidelement\n * @param {?object} object\n * @return {boolean} True if `object` is a ReactElement.\n * @final\n */\n\nfunction isValidElement(object) {\n return typeof object === 'object' && object !== null && object.$$typeof === REACT_ELEMENT_TYPE;\n}\n\nvar SEPARATOR = '.';\nvar SUBSEPARATOR = ':';\n/**\n * Escape and wrap key so it is safe to use as a reactid\n *\n * @param {string} key to be escaped.\n * @return {string} the escaped key.\n */\n\nfunction escape(key) {\n var escapeRegex = /[=:]/g;\n var escaperLookup = {\n '=': '=0',\n ':': '=2'\n };\n var escapedString = key.replace(escapeRegex, function (match) {\n return escaperLookup[match];\n });\n return '$' + escapedString;\n}\n/**\n * TODO: Test that a single child and an array with one item have the same key\n * pattern.\n */\n\n\nvar didWarnAboutMaps = false;\nvar userProvidedKeyEscapeRegex = /\\/+/g;\n\nfunction escapeUserProvidedKey(text) {\n return text.replace(userProvidedKeyEscapeRegex, '$&/');\n}\n/**\n * Generate a key string that identifies a element within a set.\n *\n * @param {*} element A element that could contain a manual key.\n * @param {number} index Index that is used if a manual key is not provided.\n * @return {string}\n */\n\n\nfunction getElementKey(element, index) {\n // Do some typechecking here since we call this blindly. We want to ensure\n // that we don't block potential future ES APIs.\n if (typeof element === 'object' && element !== null && element.key != null) {\n // Explicit key\n {\n checkKeyStringCoercion(element.key);\n }\n\n return escape('' + element.key);\n } // Implicit key determined by the index in the set\n\n\n return index.toString(36);\n}\n\nfunction mapIntoArray(children, array, escapedPrefix, nameSoFar, callback) {\n var type = typeof children;\n\n if (type === 'undefined' || type === 'boolean') {\n // All of the above are perceived as null.\n children = null;\n }\n\n var invokeCallback = false;\n\n if (children === null) {\n invokeCallback = true;\n } else {\n switch (type) {\n case 'string':\n case 'number':\n invokeCallback = true;\n break;\n\n case 'object':\n switch (children.$$typeof) {\n case REACT_ELEMENT_TYPE:\n case REACT_PORTAL_TYPE:\n invokeCallback = true;\n }\n\n }\n }\n\n if (invokeCallback) {\n var _child = children;\n var mappedChild = callback(_child); // If it's the only child, treat the name as if it was wrapped in an array\n // so that it's consistent if the number of children grows:\n\n var childKey = nameSoFar === '' ? SEPARATOR + getElementKey(_child, 0) : nameSoFar;\n\n if (isArray(mappedChild)) {\n var escapedChildKey = '';\n\n if (childKey != null) {\n escapedChildKey = escapeUserProvidedKey(childKey) + '/';\n }\n\n mapIntoArray(mappedChild, array, escapedChildKey, '', function (c) {\n return c;\n });\n } else if (mappedChild != null) {\n if (isValidElement(mappedChild)) {\n {\n // The `if` statement here prevents auto-disabling of the safe\n // coercion ESLint rule, so we must manually disable it below.\n // $FlowFixMe Flow incorrectly thinks React.Portal doesn't have a key\n if (mappedChild.key && (!_child || _child.key !== mappedChild.key)) {\n checkKeyStringCoercion(mappedChild.key);\n }\n }\n\n mappedChild = cloneAndReplaceKey(mappedChild, // Keep both the (mapped) and old keys if they differ, just as\n // traverseAllChildren used to do for objects as children\n escapedPrefix + ( // $FlowFixMe Flow incorrectly thinks React.Portal doesn't have a key\n mappedChild.key && (!_child || _child.key !== mappedChild.key) ? // $FlowFixMe Flow incorrectly thinks existing element's key can be a number\n // eslint-disable-next-line react-internal/safe-string-coercion\n escapeUserProvidedKey('' + mappedChild.key) + '/' : '') + childKey);\n }\n\n array.push(mappedChild);\n }\n\n return 1;\n }\n\n var child;\n var nextName;\n var subtreeCount = 0; // Count of children found in the current subtree.\n\n var nextNamePrefix = nameSoFar === '' ? SEPARATOR : nameSoFar + SUBSEPARATOR;\n\n if (isArray(children)) {\n for (var i = 0; i < children.length; i++) {\n child = children[i];\n nextName = nextNamePrefix + getElementKey(child, i);\n subtreeCount += mapIntoArray(child, array, escapedPrefix, nextName, callback);\n }\n } else {\n var iteratorFn = getIteratorFn(children);\n\n if (typeof iteratorFn === 'function') {\n var iterableChildren = children;\n\n {\n // Warn about using Maps as children\n if (iteratorFn === iterableChildren.entries) {\n if (!didWarnAboutMaps) {\n warn('Using Maps as children is not supported. ' + 'Use an array of keyed ReactElements instead.');\n }\n\n didWarnAboutMaps = true;\n }\n }\n\n var iterator = iteratorFn.call(iterableChildren);\n var step;\n var ii = 0;\n\n while (!(step = iterator.next()).done) {\n child = step.value;\n nextName = nextNamePrefix + getElementKey(child, ii++);\n subtreeCount += mapIntoArray(child, array, escapedPrefix, nextName, callback);\n }\n } else if (type === 'object') {\n // eslint-disable-next-line react-internal/safe-string-coercion\n var childrenString = String(children);\n throw new Error(\"Objects are not valid as a React child (found: \" + (childrenString === '[object Object]' ? 'object with keys {' + Object.keys(children).join(', ') + '}' : childrenString) + \"). \" + 'If you meant to render a collection of children, use an array ' + 'instead.');\n }\n }\n\n return subtreeCount;\n}\n\n/**\n * Maps children that are typically specified as `props.children`.\n *\n * See https://reactjs.org/docs/react-api.html#reactchildrenmap\n *\n * The provided mapFunction(child, index) will be called for each\n * leaf child.\n *\n * @param {?*} children Children tree container.\n * @param {function(*, int)} func The map function.\n * @param {*} context Context for mapFunction.\n * @return {object} Object containing the ordered map of results.\n */\nfunction mapChildren(children, func, context) {\n if (children == null) {\n return children;\n }\n\n var result = [];\n var count = 0;\n mapIntoArray(children, result, '', '', function (child) {\n return func.call(context, child, count++);\n });\n return result;\n}\n/**\n * Count the number of children that are typically specified as\n * `props.children`.\n *\n * See https://reactjs.org/docs/react-api.html#reactchildrencount\n *\n * @param {?*} children Children tree container.\n * @return {number} The number of children.\n */\n\n\nfunction countChildren(children) {\n var n = 0;\n mapChildren(children, function () {\n n++; // Don't return anything\n });\n return n;\n}\n\n/**\n * Iterates through children that are typically specified as `props.children`.\n *\n * See https://reactjs.org/docs/react-api.html#reactchildrenforeach\n *\n * The provided forEachFunc(child, index) will be called for each\n * leaf child.\n *\n * @param {?*} children Children tree container.\n * @param {function(*, int)} forEachFunc\n * @param {*} forEachContext Context for forEachContext.\n */\nfunction forEachChildren(children, forEachFunc, forEachContext) {\n mapChildren(children, function () {\n forEachFunc.apply(this, arguments); // Don't return anything.\n }, forEachContext);\n}\n/**\n * Flatten a children object (typically specified as `props.children`) and\n * return an array with appropriately re-keyed children.\n *\n * See https://reactjs.org/docs/react-api.html#reactchildrentoarray\n */\n\n\nfunction toArray(children) {\n return mapChildren(children, function (child) {\n return child;\n }) || [];\n}\n/**\n * Returns the first child in a collection of children and verifies that there\n * is only one child in the collection.\n *\n * See https://reactjs.org/docs/react-api.html#reactchildrenonly\n *\n * The current implementation of this function assumes that a single child gets\n * passed without a wrapper, but the purpose of this helper function is to\n * abstract away the particular structure of children.\n *\n * @param {?object} children Child collection structure.\n * @return {ReactElement} The first and only `ReactElement` contained in the\n * structure.\n */\n\n\nfunction onlyChild(children) {\n if (!isValidElement(children)) {\n throw new Error('React.Children.only expected to receive a single React element child.');\n }\n\n return children;\n}\n\nfunction createContext(defaultValue) {\n // TODO: Second argument used to be an optional `calculateChangedBits`\n // function. Warn to reserve for future use?\n var context = {\n $$typeof: REACT_CONTEXT_TYPE,\n // As a workaround to support multiple concurrent renderers, we categorize\n // some renderers as primary and others as secondary. We only expect\n // there to be two concurrent renderers at most: React Native (primary) and\n // Fabric (secondary); React DOM (primary) and React ART (secondary).\n // Secondary renderers store their context values on separate fields.\n _currentValue: defaultValue,\n _currentValue2: defaultValue,\n // Used to track how many concurrent renderers this context currently\n // supports within in a single renderer. Such as parallel server rendering.\n _threadCount: 0,\n // These are circular\n Provider: null,\n Consumer: null,\n // Add these to use same hidden class in VM as ServerContext\n _defaultValue: null,\n _globalName: null\n };\n context.Provider = {\n $$typeof: REACT_PROVIDER_TYPE,\n _context: context\n };\n var hasWarnedAboutUsingNestedContextConsumers = false;\n var hasWarnedAboutUsingConsumerProvider = false;\n var hasWarnedAboutDisplayNameOnConsumer = false;\n\n {\n // A separate object, but proxies back to the original context object for\n // backwards compatibility. It has a different $$typeof, so we can properly\n // warn for the incorrect usage of Context as a Consumer.\n var Consumer = {\n $$typeof: REACT_CONTEXT_TYPE,\n _context: context\n }; // $FlowFixMe: Flow complains about not setting a value, which is intentional here\n\n Object.defineProperties(Consumer, {\n Provider: {\n get: function () {\n if (!hasWarnedAboutUsingConsumerProvider) {\n hasWarnedAboutUsingConsumerProvider = true;\n\n error('Rendering is not supported and will be removed in ' + 'a future major release. Did you mean to render instead?');\n }\n\n return context.Provider;\n },\n set: function (_Provider) {\n context.Provider = _Provider;\n }\n },\n _currentValue: {\n get: function () {\n return context._currentValue;\n },\n set: function (_currentValue) {\n context._currentValue = _currentValue;\n }\n },\n _currentValue2: {\n get: function () {\n return context._currentValue2;\n },\n set: function (_currentValue2) {\n context._currentValue2 = _currentValue2;\n }\n },\n _threadCount: {\n get: function () {\n return context._threadCount;\n },\n set: function (_threadCount) {\n context._threadCount = _threadCount;\n }\n },\n Consumer: {\n get: function () {\n if (!hasWarnedAboutUsingNestedContextConsumers) {\n hasWarnedAboutUsingNestedContextConsumers = true;\n\n error('Rendering is not supported and will be removed in ' + 'a future major release. Did you mean to render instead?');\n }\n\n return context.Consumer;\n }\n },\n displayName: {\n get: function () {\n return context.displayName;\n },\n set: function (displayName) {\n if (!hasWarnedAboutDisplayNameOnConsumer) {\n warn('Setting `displayName` on Context.Consumer has no effect. ' + \"You should set it directly on the context with Context.displayName = '%s'.\", displayName);\n\n hasWarnedAboutDisplayNameOnConsumer = true;\n }\n }\n }\n }); // $FlowFixMe: Flow complains about missing properties because it doesn't understand defineProperty\n\n context.Consumer = Consumer;\n }\n\n {\n context._currentRenderer = null;\n context._currentRenderer2 = null;\n }\n\n return context;\n}\n\nvar Uninitialized = -1;\nvar Pending = 0;\nvar Resolved = 1;\nvar Rejected = 2;\n\nfunction lazyInitializer(payload) {\n if (payload._status === Uninitialized) {\n var ctor = payload._result;\n var thenable = ctor(); // Transition to the next state.\n // This might throw either because it's missing or throws. If so, we treat it\n // as still uninitialized and try again next time. Which is the same as what\n // happens if the ctor or any wrappers processing the ctor throws. This might\n // end up fixing it if the resolution was a concurrency bug.\n\n thenable.then(function (moduleObject) {\n if (payload._status === Pending || payload._status === Uninitialized) {\n // Transition to the next state.\n var resolved = payload;\n resolved._status = Resolved;\n resolved._result = moduleObject;\n }\n }, function (error) {\n if (payload._status === Pending || payload._status === Uninitialized) {\n // Transition to the next state.\n var rejected = payload;\n rejected._status = Rejected;\n rejected._result = error;\n }\n });\n\n if (payload._status === Uninitialized) {\n // In case, we're still uninitialized, then we're waiting for the thenable\n // to resolve. Set it as pending in the meantime.\n var pending = payload;\n pending._status = Pending;\n pending._result = thenable;\n }\n }\n\n if (payload._status === Resolved) {\n var moduleObject = payload._result;\n\n {\n if (moduleObject === undefined) {\n error('lazy: Expected the result of a dynamic imp' + 'ort() call. ' + 'Instead received: %s\\n\\nYour code should look like: \\n ' + // Break up imports to avoid accidentally parsing them as dependencies.\n 'const MyComponent = lazy(() => imp' + \"ort('./MyComponent'))\\n\\n\" + 'Did you accidentally put curly braces around the import?', moduleObject);\n }\n }\n\n {\n if (!('default' in moduleObject)) {\n error('lazy: Expected the result of a dynamic imp' + 'ort() call. ' + 'Instead received: %s\\n\\nYour code should look like: \\n ' + // Break up imports to avoid accidentally parsing them as dependencies.\n 'const MyComponent = lazy(() => imp' + \"ort('./MyComponent'))\", moduleObject);\n }\n }\n\n return moduleObject.default;\n } else {\n throw payload._result;\n }\n}\n\nfunction lazy(ctor) {\n var payload = {\n // We use these fields to store the result.\n _status: Uninitialized,\n _result: ctor\n };\n var lazyType = {\n $$typeof: REACT_LAZY_TYPE,\n _payload: payload,\n _init: lazyInitializer\n };\n\n {\n // In production, this would just set it on the object.\n var defaultProps;\n var propTypes; // $FlowFixMe\n\n Object.defineProperties(lazyType, {\n defaultProps: {\n configurable: true,\n get: function () {\n return defaultProps;\n },\n set: function (newDefaultProps) {\n error('React.lazy(...): It is not supported to assign `defaultProps` to ' + 'a lazy component import. Either specify them where the component ' + 'is defined, or create a wrapping component around it.');\n\n defaultProps = newDefaultProps; // Match production behavior more closely:\n // $FlowFixMe\n\n Object.defineProperty(lazyType, 'defaultProps', {\n enumerable: true\n });\n }\n },\n propTypes: {\n configurable: true,\n get: function () {\n return propTypes;\n },\n set: function (newPropTypes) {\n error('React.lazy(...): It is not supported to assign `propTypes` to ' + 'a lazy component import. Either specify them where the component ' + 'is defined, or create a wrapping component around it.');\n\n propTypes = newPropTypes; // Match production behavior more closely:\n // $FlowFixMe\n\n Object.defineProperty(lazyType, 'propTypes', {\n enumerable: true\n });\n }\n }\n });\n }\n\n return lazyType;\n}\n\nfunction forwardRef(render) {\n {\n if (render != null && render.$$typeof === REACT_MEMO_TYPE) {\n error('forwardRef requires a render function but received a `memo` ' + 'component. Instead of forwardRef(memo(...)), use ' + 'memo(forwardRef(...)).');\n } else if (typeof render !== 'function') {\n error('forwardRef requires a render function but was given %s.', render === null ? 'null' : typeof render);\n } else {\n if (render.length !== 0 && render.length !== 2) {\n error('forwardRef render functions accept exactly two parameters: props and ref. %s', render.length === 1 ? 'Did you forget to use the ref parameter?' : 'Any additional parameter will be undefined.');\n }\n }\n\n if (render != null) {\n if (render.defaultProps != null || render.propTypes != null) {\n error('forwardRef render functions do not support propTypes or defaultProps. ' + 'Did you accidentally pass a React component?');\n }\n }\n }\n\n var elementType = {\n $$typeof: REACT_FORWARD_REF_TYPE,\n render: render\n };\n\n {\n var ownName;\n Object.defineProperty(elementType, 'displayName', {\n enumerable: false,\n configurable: true,\n get: function () {\n return ownName;\n },\n set: function (name) {\n ownName = name; // The inner component shouldn't inherit this display name in most cases,\n // because the component may be used elsewhere.\n // But it's nice for anonymous functions to inherit the name,\n // so that our component-stack generation logic will display their frames.\n // An anonymous function generally suggests a pattern like:\n // React.forwardRef((props, ref) => {...});\n // This kind of inner function is not used elsewhere so the side effect is okay.\n\n if (!render.name && !render.displayName) {\n render.displayName = name;\n }\n }\n });\n }\n\n return elementType;\n}\n\nvar REACT_MODULE_REFERENCE;\n\n{\n REACT_MODULE_REFERENCE = Symbol.for('react.module.reference');\n}\n\nfunction isValidElementType(type) {\n if (typeof type === 'string' || typeof type === 'function') {\n return true;\n } // Note: typeof might be other than 'symbol' or 'number' (e.g. if it's a polyfill).\n\n\n if (type === REACT_FRAGMENT_TYPE || type === REACT_PROFILER_TYPE || enableDebugTracing || type === REACT_STRICT_MODE_TYPE || type === REACT_SUSPENSE_TYPE || type === REACT_SUSPENSE_LIST_TYPE || enableLegacyHidden || type === REACT_OFFSCREEN_TYPE || enableScopeAPI || enableCacheElement || enableTransitionTracing ) {\n return true;\n }\n\n if (typeof type === 'object' && type !== null) {\n if (type.$$typeof === REACT_LAZY_TYPE || type.$$typeof === REACT_MEMO_TYPE || type.$$typeof === REACT_PROVIDER_TYPE || type.$$typeof === REACT_CONTEXT_TYPE || type.$$typeof === REACT_FORWARD_REF_TYPE || // This needs to include all possible module reference object\n // types supported by any Flight configuration anywhere since\n // we don't know which Flight build this will end up being used\n // with.\n type.$$typeof === REACT_MODULE_REFERENCE || type.getModuleId !== undefined) {\n return true;\n }\n }\n\n return false;\n}\n\nfunction memo(type, compare) {\n {\n if (!isValidElementType(type)) {\n error('memo: The first argument must be a component. Instead ' + 'received: %s', type === null ? 'null' : typeof type);\n }\n }\n\n var elementType = {\n $$typeof: REACT_MEMO_TYPE,\n type: type,\n compare: compare === undefined ? null : compare\n };\n\n {\n var ownName;\n Object.defineProperty(elementType, 'displayName', {\n enumerable: false,\n configurable: true,\n get: function () {\n return ownName;\n },\n set: function (name) {\n ownName = name; // The inner component shouldn't inherit this display name in most cases,\n // because the component may be used elsewhere.\n // But it's nice for anonymous functions to inherit the name,\n // so that our component-stack generation logic will display their frames.\n // An anonymous function generally suggests a pattern like:\n // React.memo((props) => {...});\n // This kind of inner function is not used elsewhere so the side effect is okay.\n\n if (!type.name && !type.displayName) {\n type.displayName = name;\n }\n }\n });\n }\n\n return elementType;\n}\n\nfunction resolveDispatcher() {\n var dispatcher = ReactCurrentDispatcher.current;\n\n {\n if (dispatcher === null) {\n error('Invalid hook call. Hooks can only be called inside of the body of a function component. This could happen for' + ' one of the following reasons:\\n' + '1. You might have mismatching versions of React and the renderer (such as React DOM)\\n' + '2. You might be breaking the Rules of Hooks\\n' + '3. You might have more than one copy of React in the same app\\n' + 'See https://reactjs.org/link/invalid-hook-call for tips about how to debug and fix this problem.');\n }\n } // Will result in a null access error if accessed outside render phase. We\n // intentionally don't throw our own error because this is in a hot path.\n // Also helps ensure this is inlined.\n\n\n return dispatcher;\n}\nfunction useContext(Context) {\n var dispatcher = resolveDispatcher();\n\n {\n // TODO: add a more generic warning for invalid values.\n if (Context._context !== undefined) {\n var realContext = Context._context; // Don't deduplicate because this legitimately causes bugs\n // and nobody should be using this in existing code.\n\n if (realContext.Consumer === Context) {\n error('Calling useContext(Context.Consumer) is not supported, may cause bugs, and will be ' + 'removed in a future major release. Did you mean to call useContext(Context) instead?');\n } else if (realContext.Provider === Context) {\n error('Calling useContext(Context.Provider) is not supported. ' + 'Did you mean to call useContext(Context) instead?');\n }\n }\n }\n\n return dispatcher.useContext(Context);\n}\nfunction useState(initialState) {\n var dispatcher = resolveDispatcher();\n return dispatcher.useState(initialState);\n}\nfunction useReducer(reducer, initialArg, init) {\n var dispatcher = resolveDispatcher();\n return dispatcher.useReducer(reducer, initialArg, init);\n}\nfunction useRef(initialValue) {\n var dispatcher = resolveDispatcher();\n return dispatcher.useRef(initialValue);\n}\nfunction useEffect(create, deps) {\n var dispatcher = resolveDispatcher();\n return dispatcher.useEffect(create, deps);\n}\nfunction useInsertionEffect(create, deps) {\n var dispatcher = resolveDispatcher();\n return dispatcher.useInsertionEffect(create, deps);\n}\nfunction useLayoutEffect(create, deps) {\n var dispatcher = resolveDispatcher();\n return dispatcher.useLayoutEffect(create, deps);\n}\nfunction useCallback(callback, deps) {\n var dispatcher = resolveDispatcher();\n return dispatcher.useCallback(callback, deps);\n}\nfunction useMemo(create, deps) {\n var dispatcher = resolveDispatcher();\n return dispatcher.useMemo(create, deps);\n}\nfunction useImperativeHandle(ref, create, deps) {\n var dispatcher = resolveDispatcher();\n return dispatcher.useImperativeHandle(ref, create, deps);\n}\nfunction useDebugValue(value, formatterFn) {\n {\n var dispatcher = resolveDispatcher();\n return dispatcher.useDebugValue(value, formatterFn);\n }\n}\nfunction useTransition() {\n var dispatcher = resolveDispatcher();\n return dispatcher.useTransition();\n}\nfunction useDeferredValue(value) {\n var dispatcher = resolveDispatcher();\n return dispatcher.useDeferredValue(value);\n}\nfunction useId() {\n var dispatcher = resolveDispatcher();\n return dispatcher.useId();\n}\nfunction useSyncExternalStore(subscribe, getSnapshot, getServerSnapshot) {\n var dispatcher = resolveDispatcher();\n return dispatcher.useSyncExternalStore(subscribe, getSnapshot, getServerSnapshot);\n}\n\n// Helpers to patch console.logs to avoid logging during side-effect free\n// replaying on render function. This currently only patches the object\n// lazily which won't cover if the log function was extracted eagerly.\n// We could also eagerly patch the method.\nvar disabledDepth = 0;\nvar prevLog;\nvar prevInfo;\nvar prevWarn;\nvar prevError;\nvar prevGroup;\nvar prevGroupCollapsed;\nvar prevGroupEnd;\n\nfunction disabledLog() {}\n\ndisabledLog.__reactDisabledLog = true;\nfunction disableLogs() {\n {\n if (disabledDepth === 0) {\n /* eslint-disable react-internal/no-production-logging */\n prevLog = console.log;\n prevInfo = console.info;\n prevWarn = console.warn;\n prevError = console.error;\n prevGroup = console.group;\n prevGroupCollapsed = console.groupCollapsed;\n prevGroupEnd = console.groupEnd; // https://github.com/facebook/react/issues/19099\n\n var props = {\n configurable: true,\n enumerable: true,\n value: disabledLog,\n writable: true\n }; // $FlowFixMe Flow thinks console is immutable.\n\n Object.defineProperties(console, {\n info: props,\n log: props,\n warn: props,\n error: props,\n group: props,\n groupCollapsed: props,\n groupEnd: props\n });\n /* eslint-enable react-internal/no-production-logging */\n }\n\n disabledDepth++;\n }\n}\nfunction reenableLogs() {\n {\n disabledDepth--;\n\n if (disabledDepth === 0) {\n /* eslint-disable react-internal/no-production-logging */\n var props = {\n configurable: true,\n enumerable: true,\n writable: true\n }; // $FlowFixMe Flow thinks console is immutable.\n\n Object.defineProperties(console, {\n log: assign({}, props, {\n value: prevLog\n }),\n info: assign({}, props, {\n value: prevInfo\n }),\n warn: assign({}, props, {\n value: prevWarn\n }),\n error: assign({}, props, {\n value: prevError\n }),\n group: assign({}, props, {\n value: prevGroup\n }),\n groupCollapsed: assign({}, props, {\n value: prevGroupCollapsed\n }),\n groupEnd: assign({}, props, {\n value: prevGroupEnd\n })\n });\n /* eslint-enable react-internal/no-production-logging */\n }\n\n if (disabledDepth < 0) {\n error('disabledDepth fell below zero. ' + 'This is a bug in React. Please file an issue.');\n }\n }\n}\n\nvar ReactCurrentDispatcher$1 = ReactSharedInternals.ReactCurrentDispatcher;\nvar prefix;\nfunction describeBuiltInComponentFrame(name, source, ownerFn) {\n {\n if (prefix === undefined) {\n // Extract the VM specific prefix used by each line.\n try {\n throw Error();\n } catch (x) {\n var match = x.stack.trim().match(/\\n( *(at )?)/);\n prefix = match && match[1] || '';\n }\n } // We use the prefix to ensure our stacks line up with native stack frames.\n\n\n return '\\n' + prefix + name;\n }\n}\nvar reentry = false;\nvar componentFrameCache;\n\n{\n var PossiblyWeakMap = typeof WeakMap === 'function' ? WeakMap : Map;\n componentFrameCache = new PossiblyWeakMap();\n}\n\nfunction describeNativeComponentFrame(fn, construct) {\n // If something asked for a stack inside a fake render, it should get ignored.\n if ( !fn || reentry) {\n return '';\n }\n\n {\n var frame = componentFrameCache.get(fn);\n\n if (frame !== undefined) {\n return frame;\n }\n }\n\n var control;\n reentry = true;\n var previousPrepareStackTrace = Error.prepareStackTrace; // $FlowFixMe It does accept undefined.\n\n Error.prepareStackTrace = undefined;\n var previousDispatcher;\n\n {\n previousDispatcher = ReactCurrentDispatcher$1.current; // Set the dispatcher in DEV because this might be call in the render function\n // for warnings.\n\n ReactCurrentDispatcher$1.current = null;\n disableLogs();\n }\n\n try {\n // This should throw.\n if (construct) {\n // Something should be setting the props in the constructor.\n var Fake = function () {\n throw Error();\n }; // $FlowFixMe\n\n\n Object.defineProperty(Fake.prototype, 'props', {\n set: function () {\n // We use a throwing setter instead of frozen or non-writable props\n // because that won't throw in a non-strict mode function.\n throw Error();\n }\n });\n\n if (typeof Reflect === 'object' && Reflect.construct) {\n // We construct a different control for this case to include any extra\n // frames added by the construct call.\n try {\n Reflect.construct(Fake, []);\n } catch (x) {\n control = x;\n }\n\n Reflect.construct(fn, [], Fake);\n } else {\n try {\n Fake.call();\n } catch (x) {\n control = x;\n }\n\n fn.call(Fake.prototype);\n }\n } else {\n try {\n throw Error();\n } catch (x) {\n control = x;\n }\n\n fn();\n }\n } catch (sample) {\n // This is inlined manually because closure doesn't do it for us.\n if (sample && control && typeof sample.stack === 'string') {\n // This extracts the first frame from the sample that isn't also in the control.\n // Skipping one frame that we assume is the frame that calls the two.\n var sampleLines = sample.stack.split('\\n');\n var controlLines = control.stack.split('\\n');\n var s = sampleLines.length - 1;\n var c = controlLines.length - 1;\n\n while (s >= 1 && c >= 0 && sampleLines[s] !== controlLines[c]) {\n // We expect at least one stack frame to be shared.\n // Typically this will be the root most one. However, stack frames may be\n // cut off due to maximum stack limits. In this case, one maybe cut off\n // earlier than the other. We assume that the sample is longer or the same\n // and there for cut off earlier. So we should find the root most frame in\n // the sample somewhere in the control.\n c--;\n }\n\n for (; s >= 1 && c >= 0; s--, c--) {\n // Next we find the first one that isn't the same which should be the\n // frame that called our sample function and the control.\n if (sampleLines[s] !== controlLines[c]) {\n // In V8, the first line is describing the message but other VMs don't.\n // If we're about to return the first line, and the control is also on the same\n // line, that's a pretty good indicator that our sample threw at same line as\n // the control. I.e. before we entered the sample frame. So we ignore this result.\n // This can happen if you passed a class to function component, or non-function.\n if (s !== 1 || c !== 1) {\n do {\n s--;\n c--; // We may still have similar intermediate frames from the construct call.\n // The next one that isn't the same should be our match though.\n\n if (c < 0 || sampleLines[s] !== controlLines[c]) {\n // V8 adds a \"new\" prefix for native classes. Let's remove it to make it prettier.\n var _frame = '\\n' + sampleLines[s].replace(' at new ', ' at '); // If our component frame is labeled \"\"\n // but we have a user-provided \"displayName\"\n // splice it in to make the stack more readable.\n\n\n if (fn.displayName && _frame.includes('')) {\n _frame = _frame.replace('', fn.displayName);\n }\n\n {\n if (typeof fn === 'function') {\n componentFrameCache.set(fn, _frame);\n }\n } // Return the line we found.\n\n\n return _frame;\n }\n } while (s >= 1 && c >= 0);\n }\n\n break;\n }\n }\n }\n } finally {\n reentry = false;\n\n {\n ReactCurrentDispatcher$1.current = previousDispatcher;\n reenableLogs();\n }\n\n Error.prepareStackTrace = previousPrepareStackTrace;\n } // Fallback to just using the name if we couldn't make it throw.\n\n\n var name = fn ? fn.displayName || fn.name : '';\n var syntheticFrame = name ? describeBuiltInComponentFrame(name) : '';\n\n {\n if (typeof fn === 'function') {\n componentFrameCache.set(fn, syntheticFrame);\n }\n }\n\n return syntheticFrame;\n}\nfunction describeFunctionComponentFrame(fn, source, ownerFn) {\n {\n return describeNativeComponentFrame(fn, false);\n }\n}\n\nfunction shouldConstruct(Component) {\n var prototype = Component.prototype;\n return !!(prototype && prototype.isReactComponent);\n}\n\nfunction describeUnknownElementTypeFrameInDEV(type, source, ownerFn) {\n\n if (type == null) {\n return '';\n }\n\n if (typeof type === 'function') {\n {\n return describeNativeComponentFrame(type, shouldConstruct(type));\n }\n }\n\n if (typeof type === 'string') {\n return describeBuiltInComponentFrame(type);\n }\n\n switch (type) {\n case REACT_SUSPENSE_TYPE:\n return describeBuiltInComponentFrame('Suspense');\n\n case REACT_SUSPENSE_LIST_TYPE:\n return describeBuiltInComponentFrame('SuspenseList');\n }\n\n if (typeof type === 'object') {\n switch (type.$$typeof) {\n case REACT_FORWARD_REF_TYPE:\n return describeFunctionComponentFrame(type.render);\n\n case REACT_MEMO_TYPE:\n // Memo may contain any component type so we recursively resolve it.\n return describeUnknownElementTypeFrameInDEV(type.type, source, ownerFn);\n\n case REACT_LAZY_TYPE:\n {\n var lazyComponent = type;\n var payload = lazyComponent._payload;\n var init = lazyComponent._init;\n\n try {\n // Lazy may contain any component type so we recursively resolve it.\n return describeUnknownElementTypeFrameInDEV(init(payload), source, ownerFn);\n } catch (x) {}\n }\n }\n }\n\n return '';\n}\n\nvar loggedTypeFailures = {};\nvar ReactDebugCurrentFrame$1 = ReactSharedInternals.ReactDebugCurrentFrame;\n\nfunction setCurrentlyValidatingElement(element) {\n {\n if (element) {\n var owner = element._owner;\n var stack = describeUnknownElementTypeFrameInDEV(element.type, element._source, owner ? owner.type : null);\n ReactDebugCurrentFrame$1.setExtraStackFrame(stack);\n } else {\n ReactDebugCurrentFrame$1.setExtraStackFrame(null);\n }\n }\n}\n\nfunction checkPropTypes(typeSpecs, values, location, componentName, element) {\n {\n // $FlowFixMe This is okay but Flow doesn't know it.\n var has = Function.call.bind(hasOwnProperty);\n\n for (var typeSpecName in typeSpecs) {\n if (has(typeSpecs, typeSpecName)) {\n var error$1 = void 0; // Prop type validation may throw. In case they do, we don't want to\n // fail the render phase where it didn't fail before. So we log it.\n // After these have been cleaned up, we'll let them throw.\n\n try {\n // This is intentionally an invariant that gets caught. It's the same\n // behavior as without this statement except with a better message.\n if (typeof typeSpecs[typeSpecName] !== 'function') {\n // eslint-disable-next-line react-internal/prod-error-codes\n var err = Error((componentName || 'React class') + ': ' + location + ' type `' + typeSpecName + '` is invalid; ' + 'it must be a function, usually from the `prop-types` package, but received `' + typeof typeSpecs[typeSpecName] + '`.' + 'This often happens because of typos such as `PropTypes.function` instead of `PropTypes.func`.');\n err.name = 'Invariant Violation';\n throw err;\n }\n\n error$1 = typeSpecs[typeSpecName](values, typeSpecName, componentName, location, null, 'SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED');\n } catch (ex) {\n error$1 = ex;\n }\n\n if (error$1 && !(error$1 instanceof Error)) {\n setCurrentlyValidatingElement(element);\n\n error('%s: type specification of %s' + ' `%s` is invalid; the type checker ' + 'function must return `null` or an `Error` but returned a %s. ' + 'You may have forgotten to pass an argument to the type checker ' + 'creator (arrayOf, instanceOf, objectOf, oneOf, oneOfType, and ' + 'shape all require an argument).', componentName || 'React class', location, typeSpecName, typeof error$1);\n\n setCurrentlyValidatingElement(null);\n }\n\n if (error$1 instanceof Error && !(error$1.message in loggedTypeFailures)) {\n // Only monitor this failure once because there tends to be a lot of the\n // same error.\n loggedTypeFailures[error$1.message] = true;\n setCurrentlyValidatingElement(element);\n\n error('Failed %s type: %s', location, error$1.message);\n\n setCurrentlyValidatingElement(null);\n }\n }\n }\n }\n}\n\nfunction setCurrentlyValidatingElement$1(element) {\n {\n if (element) {\n var owner = element._owner;\n var stack = describeUnknownElementTypeFrameInDEV(element.type, element._source, owner ? owner.type : null);\n setExtraStackFrame(stack);\n } else {\n setExtraStackFrame(null);\n }\n }\n}\n\nvar propTypesMisspellWarningShown;\n\n{\n propTypesMisspellWarningShown = false;\n}\n\nfunction getDeclarationErrorAddendum() {\n if (ReactCurrentOwner.current) {\n var name = getComponentNameFromType(ReactCurrentOwner.current.type);\n\n if (name) {\n return '\\n\\nCheck the render method of `' + name + '`.';\n }\n }\n\n return '';\n}\n\nfunction getSourceInfoErrorAddendum(source) {\n if (source !== undefined) {\n var fileName = source.fileName.replace(/^.*[\\\\\\/]/, '');\n var lineNumber = source.lineNumber;\n return '\\n\\nCheck your code at ' + fileName + ':' + lineNumber + '.';\n }\n\n return '';\n}\n\nfunction getSourceInfoErrorAddendumForProps(elementProps) {\n if (elementProps !== null && elementProps !== undefined) {\n return getSourceInfoErrorAddendum(elementProps.__source);\n }\n\n return '';\n}\n/**\n * Warn if there's no key explicitly set on dynamic arrays of children or\n * object keys are not valid. This allows us to keep track of children between\n * updates.\n */\n\n\nvar ownerHasKeyUseWarning = {};\n\nfunction getCurrentComponentErrorInfo(parentType) {\n var info = getDeclarationErrorAddendum();\n\n if (!info) {\n var parentName = typeof parentType === 'string' ? parentType : parentType.displayName || parentType.name;\n\n if (parentName) {\n info = \"\\n\\nCheck the top-level render call using <\" + parentName + \">.\";\n }\n }\n\n return info;\n}\n/**\n * Warn if the element doesn't have an explicit key assigned to it.\n * This element is in an array. The array could grow and shrink or be\n * reordered. All children that haven't already been validated are required to\n * have a \"key\" property assigned to it. Error statuses are cached so a warning\n * will only be shown once.\n *\n * @internal\n * @param {ReactElement} element Element that requires a key.\n * @param {*} parentType element's parent's type.\n */\n\n\nfunction validateExplicitKey(element, parentType) {\n if (!element._store || element._store.validated || element.key != null) {\n return;\n }\n\n element._store.validated = true;\n var currentComponentErrorInfo = getCurrentComponentErrorInfo(parentType);\n\n if (ownerHasKeyUseWarning[currentComponentErrorInfo]) {\n return;\n }\n\n ownerHasKeyUseWarning[currentComponentErrorInfo] = true; // Usually the current owner is the offender, but if it accepts children as a\n // property, it may be the creator of the child that's responsible for\n // assigning it a key.\n\n var childOwner = '';\n\n if (element && element._owner && element._owner !== ReactCurrentOwner.current) {\n // Give the component that originally created this child.\n childOwner = \" It was passed a child from \" + getComponentNameFromType(element._owner.type) + \".\";\n }\n\n {\n setCurrentlyValidatingElement$1(element);\n\n error('Each child in a list should have a unique \"key\" prop.' + '%s%s See https://reactjs.org/link/warning-keys for more information.', currentComponentErrorInfo, childOwner);\n\n setCurrentlyValidatingElement$1(null);\n }\n}\n/**\n * Ensure that every element either is passed in a static location, in an\n * array with an explicit keys property defined, or in an object literal\n * with valid key property.\n *\n * @internal\n * @param {ReactNode} node Statically passed child of any type.\n * @param {*} parentType node's parent's type.\n */\n\n\nfunction validateChildKeys(node, parentType) {\n if (typeof node !== 'object') {\n return;\n }\n\n if (isArray(node)) {\n for (var i = 0; i < node.length; i++) {\n var child = node[i];\n\n if (isValidElement(child)) {\n validateExplicitKey(child, parentType);\n }\n }\n } else if (isValidElement(node)) {\n // This element was passed in a valid location.\n if (node._store) {\n node._store.validated = true;\n }\n } else if (node) {\n var iteratorFn = getIteratorFn(node);\n\n if (typeof iteratorFn === 'function') {\n // Entry iterators used to provide implicit keys,\n // but now we print a separate warning for them later.\n if (iteratorFn !== node.entries) {\n var iterator = iteratorFn.call(node);\n var step;\n\n while (!(step = iterator.next()).done) {\n if (isValidElement(step.value)) {\n validateExplicitKey(step.value, parentType);\n }\n }\n }\n }\n }\n}\n/**\n * Given an element, validate that its props follow the propTypes definition,\n * provided by the type.\n *\n * @param {ReactElement} element\n */\n\n\nfunction validatePropTypes(element) {\n {\n var type = element.type;\n\n if (type === null || type === undefined || typeof type === 'string') {\n return;\n }\n\n var propTypes;\n\n if (typeof type === 'function') {\n propTypes = type.propTypes;\n } else if (typeof type === 'object' && (type.$$typeof === REACT_FORWARD_REF_TYPE || // Note: Memo only checks outer props here.\n // Inner props are checked in the reconciler.\n type.$$typeof === REACT_MEMO_TYPE)) {\n propTypes = type.propTypes;\n } else {\n return;\n }\n\n if (propTypes) {\n // Intentionally inside to avoid triggering lazy initializers:\n var name = getComponentNameFromType(type);\n checkPropTypes(propTypes, element.props, 'prop', name, element);\n } else if (type.PropTypes !== undefined && !propTypesMisspellWarningShown) {\n propTypesMisspellWarningShown = true; // Intentionally inside to avoid triggering lazy initializers:\n\n var _name = getComponentNameFromType(type);\n\n error('Component %s declared `PropTypes` instead of `propTypes`. Did you misspell the property assignment?', _name || 'Unknown');\n }\n\n if (typeof type.getDefaultProps === 'function' && !type.getDefaultProps.isReactClassApproved) {\n error('getDefaultProps is only used on classic React.createClass ' + 'definitions. Use a static property named `defaultProps` instead.');\n }\n }\n}\n/**\n * Given a fragment, validate that it can only be provided with fragment props\n * @param {ReactElement} fragment\n */\n\n\nfunction validateFragmentProps(fragment) {\n {\n var keys = Object.keys(fragment.props);\n\n for (var i = 0; i < keys.length; i++) {\n var key = keys[i];\n\n if (key !== 'children' && key !== 'key') {\n setCurrentlyValidatingElement$1(fragment);\n\n error('Invalid prop `%s` supplied to `React.Fragment`. ' + 'React.Fragment can only have `key` and `children` props.', key);\n\n setCurrentlyValidatingElement$1(null);\n break;\n }\n }\n\n if (fragment.ref !== null) {\n setCurrentlyValidatingElement$1(fragment);\n\n error('Invalid attribute `ref` supplied to `React.Fragment`.');\n\n setCurrentlyValidatingElement$1(null);\n }\n }\n}\nfunction createElementWithValidation(type, props, children) {\n var validType = isValidElementType(type); // We warn in this case but don't throw. We expect the element creation to\n // succeed and there will likely be errors in render.\n\n if (!validType) {\n var info = '';\n\n if (type === undefined || typeof type === 'object' && type !== null && Object.keys(type).length === 0) {\n info += ' You likely forgot to export your component from the file ' + \"it's defined in, or you might have mixed up default and named imports.\";\n }\n\n var sourceInfo = getSourceInfoErrorAddendumForProps(props);\n\n if (sourceInfo) {\n info += sourceInfo;\n } else {\n info += getDeclarationErrorAddendum();\n }\n\n var typeString;\n\n if (type === null) {\n typeString = 'null';\n } else if (isArray(type)) {\n typeString = 'array';\n } else if (type !== undefined && type.$$typeof === REACT_ELEMENT_TYPE) {\n typeString = \"<\" + (getComponentNameFromType(type.type) || 'Unknown') + \" />\";\n info = ' Did you accidentally export a JSX literal instead of a component?';\n } else {\n typeString = typeof type;\n }\n\n {\n error('React.createElement: type is invalid -- expected a string (for ' + 'built-in components) or a class/function (for composite ' + 'components) but got: %s.%s', typeString, info);\n }\n }\n\n var element = createElement.apply(this, arguments); // The result can be nullish if a mock or a custom function is used.\n // TODO: Drop this when these are no longer allowed as the type argument.\n\n if (element == null) {\n return element;\n } // Skip key warning if the type isn't valid since our key validation logic\n // doesn't expect a non-string/function type and can throw confusing errors.\n // We don't want exception behavior to differ between dev and prod.\n // (Rendering will throw with a helpful message and as soon as the type is\n // fixed, the key warnings will appear.)\n\n\n if (validType) {\n for (var i = 2; i < arguments.length; i++) {\n validateChildKeys(arguments[i], type);\n }\n }\n\n if (type === REACT_FRAGMENT_TYPE) {\n validateFragmentProps(element);\n } else {\n validatePropTypes(element);\n }\n\n return element;\n}\nvar didWarnAboutDeprecatedCreateFactory = false;\nfunction createFactoryWithValidation(type) {\n var validatedFactory = createElementWithValidation.bind(null, type);\n validatedFactory.type = type;\n\n {\n if (!didWarnAboutDeprecatedCreateFactory) {\n didWarnAboutDeprecatedCreateFactory = true;\n\n warn('React.createFactory() is deprecated and will be removed in ' + 'a future major release. Consider using JSX ' + 'or use React.createElement() directly instead.');\n } // Legacy hook: remove it\n\n\n Object.defineProperty(validatedFactory, 'type', {\n enumerable: false,\n get: function () {\n warn('Factory.type is deprecated. Access the class directly ' + 'before passing it to createFactory.');\n\n Object.defineProperty(this, 'type', {\n value: type\n });\n return type;\n }\n });\n }\n\n return validatedFactory;\n}\nfunction cloneElementWithValidation(element, props, children) {\n var newElement = cloneElement.apply(this, arguments);\n\n for (var i = 2; i < arguments.length; i++) {\n validateChildKeys(arguments[i], newElement.type);\n }\n\n validatePropTypes(newElement);\n return newElement;\n}\n\nfunction startTransition(scope, options) {\n var prevTransition = ReactCurrentBatchConfig.transition;\n ReactCurrentBatchConfig.transition = {};\n var currentTransition = ReactCurrentBatchConfig.transition;\n\n {\n ReactCurrentBatchConfig.transition._updatedFibers = new Set();\n }\n\n try {\n scope();\n } finally {\n ReactCurrentBatchConfig.transition = prevTransition;\n\n {\n if (prevTransition === null && currentTransition._updatedFibers) {\n var updatedFibersCount = currentTransition._updatedFibers.size;\n\n if (updatedFibersCount > 10) {\n warn('Detected a large number of updates inside startTransition. ' + 'If this is due to a subscription please re-write it to use React provided hooks. ' + 'Otherwise concurrent mode guarantees are off the table.');\n }\n\n currentTransition._updatedFibers.clear();\n }\n }\n }\n}\n\nvar didWarnAboutMessageChannel = false;\nvar enqueueTaskImpl = null;\nfunction enqueueTask(task) {\n if (enqueueTaskImpl === null) {\n try {\n // read require off the module object to get around the bundlers.\n // we don't want them to detect a require and bundle a Node polyfill.\n var requireString = ('require' + Math.random()).slice(0, 7);\n var nodeRequire = module && module[requireString]; // assuming we're in node, let's try to get node's\n // version of setImmediate, bypassing fake timers if any.\n\n enqueueTaskImpl = nodeRequire.call(module, 'timers').setImmediate;\n } catch (_err) {\n // we're in a browser\n // we can't use regular timers because they may still be faked\n // so we try MessageChannel+postMessage instead\n enqueueTaskImpl = function (callback) {\n {\n if (didWarnAboutMessageChannel === false) {\n didWarnAboutMessageChannel = true;\n\n if (typeof MessageChannel === 'undefined') {\n error('This browser does not have a MessageChannel implementation, ' + 'so enqueuing tasks via await act(async () => ...) will fail. ' + 'Please file an issue at https://github.com/facebook/react/issues ' + 'if you encounter this warning.');\n }\n }\n }\n\n var channel = new MessageChannel();\n channel.port1.onmessage = callback;\n channel.port2.postMessage(undefined);\n };\n }\n }\n\n return enqueueTaskImpl(task);\n}\n\nvar actScopeDepth = 0;\nvar didWarnNoAwaitAct = false;\nfunction act(callback) {\n {\n // `act` calls can be nested, so we track the depth. This represents the\n // number of `act` scopes on the stack.\n var prevActScopeDepth = actScopeDepth;\n actScopeDepth++;\n\n if (ReactCurrentActQueue.current === null) {\n // This is the outermost `act` scope. Initialize the queue. The reconciler\n // will detect the queue and use it instead of Scheduler.\n ReactCurrentActQueue.current = [];\n }\n\n var prevIsBatchingLegacy = ReactCurrentActQueue.isBatchingLegacy;\n var result;\n\n try {\n // Used to reproduce behavior of `batchedUpdates` in legacy mode. Only\n // set to `true` while the given callback is executed, not for updates\n // triggered during an async event, because this is how the legacy\n // implementation of `act` behaved.\n ReactCurrentActQueue.isBatchingLegacy = true;\n result = callback(); // Replicate behavior of original `act` implementation in legacy mode,\n // which flushed updates immediately after the scope function exits, even\n // if it's an async function.\n\n if (!prevIsBatchingLegacy && ReactCurrentActQueue.didScheduleLegacyUpdate) {\n var queue = ReactCurrentActQueue.current;\n\n if (queue !== null) {\n ReactCurrentActQueue.didScheduleLegacyUpdate = false;\n flushActQueue(queue);\n }\n }\n } catch (error) {\n popActScope(prevActScopeDepth);\n throw error;\n } finally {\n ReactCurrentActQueue.isBatchingLegacy = prevIsBatchingLegacy;\n }\n\n if (result !== null && typeof result === 'object' && typeof result.then === 'function') {\n var thenableResult = result; // The callback is an async function (i.e. returned a promise). Wait\n // for it to resolve before exiting the current scope.\n\n var wasAwaited = false;\n var thenable = {\n then: function (resolve, reject) {\n wasAwaited = true;\n thenableResult.then(function (returnValue) {\n popActScope(prevActScopeDepth);\n\n if (actScopeDepth === 0) {\n // We've exited the outermost act scope. Recursively flush the\n // queue until there's no remaining work.\n recursivelyFlushAsyncActWork(returnValue, resolve, reject);\n } else {\n resolve(returnValue);\n }\n }, function (error) {\n // The callback threw an error.\n popActScope(prevActScopeDepth);\n reject(error);\n });\n }\n };\n\n {\n if (!didWarnNoAwaitAct && typeof Promise !== 'undefined') {\n // eslint-disable-next-line no-undef\n Promise.resolve().then(function () {}).then(function () {\n if (!wasAwaited) {\n didWarnNoAwaitAct = true;\n\n error('You called act(async () => ...) without await. ' + 'This could lead to unexpected testing behaviour, ' + 'interleaving multiple act calls and mixing their ' + 'scopes. ' + 'You should - await act(async () => ...);');\n }\n });\n }\n }\n\n return thenable;\n } else {\n var returnValue = result; // The callback is not an async function. Exit the current scope\n // immediately, without awaiting.\n\n popActScope(prevActScopeDepth);\n\n if (actScopeDepth === 0) {\n // Exiting the outermost act scope. Flush the queue.\n var _queue = ReactCurrentActQueue.current;\n\n if (_queue !== null) {\n flushActQueue(_queue);\n ReactCurrentActQueue.current = null;\n } // Return a thenable. If the user awaits it, we'll flush again in\n // case additional work was scheduled by a microtask.\n\n\n var _thenable = {\n then: function (resolve, reject) {\n // Confirm we haven't re-entered another `act` scope, in case\n // the user does something weird like await the thenable\n // multiple times.\n if (ReactCurrentActQueue.current === null) {\n // Recursively flush the queue until there's no remaining work.\n ReactCurrentActQueue.current = [];\n recursivelyFlushAsyncActWork(returnValue, resolve, reject);\n } else {\n resolve(returnValue);\n }\n }\n };\n return _thenable;\n } else {\n // Since we're inside a nested `act` scope, the returned thenable\n // immediately resolves. The outer scope will flush the queue.\n var _thenable2 = {\n then: function (resolve, reject) {\n resolve(returnValue);\n }\n };\n return _thenable2;\n }\n }\n }\n}\n\nfunction popActScope(prevActScopeDepth) {\n {\n if (prevActScopeDepth !== actScopeDepth - 1) {\n error('You seem to have overlapping act() calls, this is not supported. ' + 'Be sure to await previous act() calls before making a new one. ');\n }\n\n actScopeDepth = prevActScopeDepth;\n }\n}\n\nfunction recursivelyFlushAsyncActWork(returnValue, resolve, reject) {\n {\n var queue = ReactCurrentActQueue.current;\n\n if (queue !== null) {\n try {\n flushActQueue(queue);\n enqueueTask(function () {\n if (queue.length === 0) {\n // No additional work was scheduled. Finish.\n ReactCurrentActQueue.current = null;\n resolve(returnValue);\n } else {\n // Keep flushing work until there's none left.\n recursivelyFlushAsyncActWork(returnValue, resolve, reject);\n }\n });\n } catch (error) {\n reject(error);\n }\n } else {\n resolve(returnValue);\n }\n }\n}\n\nvar isFlushing = false;\n\nfunction flushActQueue(queue) {\n {\n if (!isFlushing) {\n // Prevent re-entrance.\n isFlushing = true;\n var i = 0;\n\n try {\n for (; i < queue.length; i++) {\n var callback = queue[i];\n\n do {\n callback = callback(true);\n } while (callback !== null);\n }\n\n queue.length = 0;\n } catch (error) {\n // If something throws, leave the remaining callbacks on the queue.\n queue = queue.slice(i + 1);\n throw error;\n } finally {\n isFlushing = false;\n }\n }\n }\n}\n\nvar createElement$1 = createElementWithValidation ;\nvar cloneElement$1 = cloneElementWithValidation ;\nvar createFactory = createFactoryWithValidation ;\nvar Children = {\n map: mapChildren,\n forEach: forEachChildren,\n count: countChildren,\n toArray: toArray,\n only: onlyChild\n};\n\nexports.Children = Children;\nexports.Component = Component;\nexports.Fragment = REACT_FRAGMENT_TYPE;\nexports.Profiler = REACT_PROFILER_TYPE;\nexports.PureComponent = PureComponent;\nexports.StrictMode = REACT_STRICT_MODE_TYPE;\nexports.Suspense = REACT_SUSPENSE_TYPE;\nexports.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED = ReactSharedInternals;\nexports.cloneElement = cloneElement$1;\nexports.createContext = createContext;\nexports.createElement = createElement$1;\nexports.createFactory = createFactory;\nexports.createRef = createRef;\nexports.forwardRef = forwardRef;\nexports.isValidElement = isValidElement;\nexports.lazy = lazy;\nexports.memo = memo;\nexports.startTransition = startTransition;\nexports.unstable_act = act;\nexports.useCallback = useCallback;\nexports.useContext = useContext;\nexports.useDebugValue = useDebugValue;\nexports.useDeferredValue = useDeferredValue;\nexports.useEffect = useEffect;\nexports.useId = useId;\nexports.useImperativeHandle = useImperativeHandle;\nexports.useInsertionEffect = useInsertionEffect;\nexports.useLayoutEffect = useLayoutEffect;\nexports.useMemo = useMemo;\nexports.useReducer = useReducer;\nexports.useRef = useRef;\nexports.useState = useState;\nexports.useSyncExternalStore = useSyncExternalStore;\nexports.useTransition = useTransition;\nexports.version = ReactVersion;\n /* global __REACT_DEVTOOLS_GLOBAL_HOOK__ */\nif (\n typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ !== 'undefined' &&\n typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop ===\n 'function'\n) {\n __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop(new Error());\n}\n \n })();\n}\n","'use strict';\n\nif (process.env.NODE_ENV === 'production') {\n module.exports = require('./cjs/react.production.min.js');\n} else {\n module.exports = require('./cjs/react.development.js');\n}\n","import toPropertyKey from \"./toPropertyKey.js\";\nexport default function _defineProperty(obj, key, value) {\n key = toPropertyKey(key);\n if (key in obj) {\n Object.defineProperty(obj, key, {\n value: value,\n enumerable: true,\n configurable: true,\n writable: true\n });\n } else {\n obj[key] = value;\n }\n return obj;\n}","import _typeof from \"./typeof.js\";\nexport default function _toPrimitive(input, hint) {\n if (_typeof(input) !== \"object\" || input === null) return input;\n var prim = input[Symbol.toPrimitive];\n if (prim !== undefined) {\n var res = prim.call(input, hint || \"default\");\n if (_typeof(res) !== \"object\") return res;\n throw new TypeError(\"@@toPrimitive must return a primitive value.\");\n }\n return (hint === \"string\" ? String : Number)(input);\n}","import _typeof from \"./typeof.js\";\nimport toPrimitive from \"./toPrimitive.js\";\nexport default function _toPropertyKey(arg) {\n var key = toPrimitive(arg, \"string\");\n return _typeof(key) === \"symbol\" ? key : String(key);\n}","export default function _typeof(o) {\n \"@babel/helpers - typeof\";\n\n return _typeof = \"function\" == typeof Symbol && \"symbol\" == typeof Symbol.iterator ? function (o) {\n return typeof o;\n } : function (o) {\n return o && \"function\" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? \"symbol\" : typeof o;\n }, _typeof(o);\n}","// The module cache\nvar __webpack_module_cache__ = {};\n\n// The require function\nfunction __webpack_require__(moduleId) {\n\t// Check if module is in cache\n\tvar cachedModule = __webpack_module_cache__[moduleId];\n\tif (cachedModule !== undefined) {\n\t\treturn cachedModule.exports;\n\t}\n\t// Create a new module (and put it into the cache)\n\tvar module = __webpack_module_cache__[moduleId] = {\n\t\tid: moduleId,\n\t\tloaded: false,\n\t\texports: {}\n\t};\n\n\t// Execute the module function\n\t__webpack_modules__[moduleId](module, module.exports, __webpack_require__);\n\n\t// Flag the module as loaded\n\tmodule.loaded = true;\n\n\t// Return the exports of the module\n\treturn module.exports;\n}\n\n","// getDefaultExport function for compatibility with non-harmony modules\n__webpack_require__.n = (module) => {\n\tvar getter = module && module.__esModule ?\n\t\t() => (module['default']) :\n\t\t() => (module);\n\t__webpack_require__.d(getter, { a: getter });\n\treturn getter;\n};","// define getter functions for harmony exports\n__webpack_require__.d = (exports, definition) => {\n\tfor(var key in definition) {\n\t\tif(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {\n\t\t\tObject.defineProperty(exports, key, { enumerable: true, get: definition[key] });\n\t\t}\n\t}\n};","__webpack_require__.o = (obj, prop) => (Object.prototype.hasOwnProperty.call(obj, prop))","// define __esModule on exports\n__webpack_require__.r = (exports) => {\n\tif(typeof Symbol !== 'undefined' && Symbol.toStringTag) {\n\t\tObject.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });\n\t}\n\tObject.defineProperty(exports, '__esModule', { value: true });\n};","__webpack_require__.nmd = (module) => {\n\tmodule.paths = [];\n\tif (!module.children) module.children = [];\n\treturn module;\n};","import './_acf-jsx-names.js';\nimport './_acf-blocks.js';\n"],"names":["md5","require","$","undefined","BlockControls","InspectorControls","InnerBlocks","useBlockProps","AlignmentToolbar","BlockVerticalAlignmentToolbar","wp","blockEditor","ToolbarGroup","ToolbarButton","Placeholder","Spinner","components","Fragment","element","Component","React","withSelect","data","createHigherOrderComponent","compose","BlockAlignmentMatrixToolbar","__experimentalBlockAlignmentMatrixToolbar","BlockAlignmentMatrixControl","__experimentalBlockAlignmentMatrixControl","BlockFullHeightAlignmentControl","__experimentalBlockFullHeightAligmentControl","__experimentalBlockFullHeightAlignmentControl","useInnerBlocksProps","__experimentalUseInnerBlocksProps","blockTypes","getBlockType","name","getBlockVersion","blockType","acf_block_version","isBlockInQueryLoop","clientId","parents","select","getBlockParents","parentsData","getBlocksByClientId","filter","block","length","isSiteEditor","pagenow","isDesktopPreviewDeviceType","editPostStore","__experimentalGetPreviewDeviceType","getPreviewDeviceType","isEditingTemplate","isiFramedMobileDevicePreview","registerBlockType","allowedTypes","post_types","push","postType","acf","get","includes","icon","substr","iconHTML","createElement","Div","category","blocks","getCategories","slug","pop","parseArgs","title","api_version","key","attributes","default","supports","anchor","type","ThisBlockEdit","BlockEdit","ThisBlockSave","BlockSave","alignText","align_text","addBackCompatAttribute","withAlignTextComponent","alignContent","align_content","withAlignContentComponent","fullHeight","full_height","withFullHeightComponent","edit","props","_objectSpread","save","result","selector","dispatch","getBlocks","args","recurseBlocks","forEach","k","ajaxQueue","fetchCache","fetchBlock","context","query","delay","queueId","JSON","stringify","timeout","promise","Deferred","started","clearTimeout","setTimeout","resolve","apply","ajax","url","dataType","cache","prepareForAjax","action","always","done","arguments","fail","reject","compareObjects","obj1","obj2","parseJSX","html","acfBlockVersion","replace","parseNode","children","node","level","nodeName","parseNodeName","toLowerCase","nodeAttrs","ref","createRef","arrayArgs","map","parseNodeAttr","value","ACFInnerBlocks","childNodes","child","Text","text","textContent","getJSXName","replacement","isget","Script","className","innerBlockProps","nodeAttr","shortcut","applyFilters","css","split","s","pos","indexOf","ruleName","trim","ruleValue","charAt","strCamelCase","c1","parse","withDefaultAttributes","BlockListBlock","WrappedBlockEdit","constructor","Object","keys","upgrades","attribute","render","hooks","addFilter","Content","setup","restrictMode","modes","mode","setAttributes","forcePreview","showToggle","toggleText","__","toggleIcon","toggleMode","label","onClick","BlockForm","BlockBody","_BlockBody","isSelected","showForm","additionalClasses","BlockPreview","ownProps","rootClientId","getBlockRootClientId","index","getBlockIndex","dangerouslySetInnerHTML","__html","el","setHTML","componentDidUpdate","componentDidMount","store","DynamicHTML","setRef","bind","id","subscribed","renderMethod","loadState","fetch","maybePreload","blockId","form","state","preloadedBlocks","modeText","replaceAll","setState","setHtml","jsx","console","warn","Array","isArray","refElement","find","isValidElement","$el","shouldComponentUpdate","componentWillMove","display","$prevParent","parent","$thisParent","clone","componentDidAppend","componentDidRemount","prevProps","prevState","doAction","componentWillUnmount","hash","createBlockAttributesHash","preloaded","serializeData","silent","serialize","on","contextPostId","prevAttributes","prevContext","preview","replaceHtml","renderBlockPreviewEvent","nextProps","nextState","nextAttributes","thisAttributes","blockElement","current","initialize","editor","addAction","validateVerticalAlignment","align","ALIGNMENTS","DEFAULT","validateHorizontalAlignment","validateMatrixAlignment","y","x","OriginalBlockEdit","AlignmentComponent","validateAlignment","onChangeAlignContent","group","onChange","onChangeAlignText","onToggleFullHeight","isActive","onToggle","new_attribute","sort","reduce","acc","currValue","jQuery","jsxNameReplacements","accentheight","acceptcharset","accesskey","alignmentbaseline","allowedblocks","allowfullscreen","allowreorder","arabicform","attributename","attributetype","autocapitalize","autocomplete","autocorrect","autofocus","autoplay","autoreverse","autosave","basefrequency","baselineshift","baseprofile","calcmode","capheight","cellpadding","cellspacing","charset","class","classid","classname","clippath","clippathunits","cliprule","colorinterpolation","colorinterpolationfilters","colorprofile","colorrendering","colspan","contenteditable","contentscripttype","contentstyletype","contextmenu","controlslist","crossorigin","dangerouslysetinnerhtml","datetime","defaultchecked","defaultvalue","diffuseconstant","disablepictureinpicture","disableremoteplayback","dominantbaseline","edgemode","enablebackground","enctype","enterkeyhint","externalresourcesrequired","fillopacity","fillrule","filterres","filterunits","floodcolor","floodopacity","fontfamily","fontsize","fontsizeadjust","fontstretch","fontstyle","fontvariant","fontweight","for","foreignobject","formaction","formenctype","formmethod","formnovalidate","formtarget","frameborder","glyphname","glyphorientationhorizontal","glyphorientationvertical","glyphref","gradienttransform","gradientunits","horizadvx","horizoriginx","hreflang","htmlfor","httpequiv","imagerendering","innerhtml","inputmode","itemid","itemprop","itemref","itemscope","itemtype","kernelmatrix","kernelunitlength","keyparams","keypoints","keysplines","keytimes","keytype","lengthadjust","letterspacing","lightingcolor","limitingconeangle","marginheight","marginwidth","markerend","markerheight","markermid","markerstart","markerunits","markerwidth","maskcontentunits","maskunits","maxlength","mediagroup","minlength","nomodule","novalidate","numoctaves","overlineposition","overlinethickness","paintorder","pathlength","patterncontentunits","patterntransform","patternunits","playsinline","pointerevents","pointsatx","pointsaty","pointsatz","preservealpha","preserveaspectratio","primitiveunits","radiogroup","readonly","referrerpolicy","refx","refy","renderingintent","repeatcount","repeatdur","requiredextensions","requiredfeatures","rowspan","shaperendering","specularconstant","specularexponent","spellcheck","spreadmethod","srcdoc","srclang","srcset","startoffset","stddeviation","stitchtiles","stopcolor","stopopacity","strikethroughposition","strikethroughthickness","strokedasharray","strokedashoffset","strokelinecap","strokelinejoin","strokemiterlimit","strokeopacity","strokewidth","suppresscontenteditablewarning","suppresshydrationwarning","surfacescale","systemlanguage","tabindex","tablevalues","targetx","targety","templatelock","textanchor","textdecoration","textlength","textrendering","underlineposition","underlinethickness","unicodebidi","unicoderange","unitsperem","usemap","valphabetic","vectoreffect","vertadvy","vertoriginx","vertoriginy","vhanging","videographic","viewbox","viewtarget","vmathematical","wordspacing","writingmode","xchannelselector","xheight","xlinkactuate","xlinkarcrole","xlinkhref","xlinkrole","xlinkshow","xlinktitle","xlinktype","xmlbase","xmllang","xmlnsxlink","xmlspace","ychannelselector","zoomandpan"],"sourceRoot":""} \ No newline at end of file +{"version":3,"file":"acf-pro-blocks.js","mappings":"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E;EACb,CAAC;AACF,CAAC,EAAIzN,MAAO,CAAC;;;;;;;;;;AChTb;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;;AAEL;AACA;AACA;AACA;AACA,GAAG;;AAEH;AACA;AACA;AACA;AACA,kCAAkC,gBAAgB;AAClD;AACA;AACA,KAAK;;AAEL;AACA;AACA,gCAAgC,kBAAkB;AAClD;AACA;AACA;AACA;AACA;;AAEA;;;;;;;;;;;AChCA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA,KAAK;;AAEL;AACA;AACA;AACA,KAAK;;AAEL;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA,sBAAsB,cAAc;AACpC;AACA;AACA,KAAK;;AAEL;AACA;AACA,2BAA2B,OAAO;AAClC;AACA;AACA,KAAK;;AAEL;AACA;AACA,yCAAyC,kBAAkB;AAC3D;AACA;AACA,KAAK;;AAEL;AACA;AACA,kCAAkC,uBAAuB;AACzD;AACA;AACA,KAAK;;AAEL;AACA;AACA,gCAAgC,kBAAkB;AAClD;AACA;AACA;AACA;AACA,KAAK;;AAEL;AACA;AACA,kCAAkC,gBAAgB;AAClD;AACA;AACA,KAAK;;AAEL;AACA;AACA,mCAAmC,kBAAkB;AACrD;AACA,wBAAwB,OAAO;AAC/B;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;;AAEL;AACA;AACA;AACA;;AAEA,6CAA6C;AAC7C;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA,CAAC;;;;;;;;;;;AC/FD;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;;;;;;;;;;;ACpBA;AACA,cAAc,mBAAO,CAAC,4CAAO;AAC7B,aAAa,8EAAuB;AACpC,iBAAiB,mBAAO,CAAC,oDAAW;AACpC,YAAY,6EAAsB;AAClC;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,oBAAoB,cAAc;AAClC;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,oBAAoB,cAAc;AAClC;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,CAAC;;;;;;;;;;;;;AC/JD;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEa;;AAEb,IAAI,IAAqC;AACzC;;AAEA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,YAAY;AACZ;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,YAAY;AACZ;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA,KAAK;;;AAGL;;AAEA;AACA,oBAAoB;;AAEpB;AACA;AACA,MAAM;;;AAGN;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;;AAEA,4BAA4B;AAC5B;AACA,qCAAqC;;AAErC,gCAAgC;AAChC;AACA;;AAEA,gCAAgC;;AAEhC;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,6FAA6F,aAAa;AAC1G;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,iGAAiG,eAAe;AAChH;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,MAAM;;;AAGN;AACA;AACA,KAAK,GAAG;;AAER,kDAAkD;AAClD;AACA;;AAEA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA,8MAA8M;;AAE9M;AACA;AACA;AACA;AACA;AACA;;;AAGA;AACA;AACA;AACA,aAAa,YAAY;AACzB,cAAc,SAAS;AACvB;AACA;AACA;AACA;AACA;AACA,GAAG;;AAEH;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,aAAa,YAAY;AACzB,aAAa,WAAW;AACxB,aAAa,SAAS;AACtB;AACA;AACA;AACA;AACA,GAAG;;AAEH;AACA;AACA;AACA;AACA;AACA;AACA;AACA,aAAa,YAAY;AACzB,aAAa,QAAQ;AACrB,aAAa,WAAW;AACxB,aAAa,SAAS;AACtB;AACA;AACA;AACA;AACA,GAAG;;AAEH;AACA;AACA;AACA;AACA;AACA;AACA,aAAa,YAAY;AACzB,aAAa,QAAQ;AACrB,aAAa,WAAW;AACxB,aAAa,SAAS;AACtB;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;AACA;;;AAGA;AACA;AACA,0BAA0B;;AAE1B,2BAA2B;AAC3B;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,WAAW,iBAAiB;AAC5B;AACA,WAAW,WAAW;AACtB;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,WAAW,WAAW;AACtB;AACA;AACA;;;AAGA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;AAGA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA,KAAK;AACL;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA,0BAA0B;;AAE1B;AACA;AACA;;AAEA;AACA,oDAAoD;;AAEpD;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;;AAEA,iCAAiC;;AAEjC;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,EAAE;;;AAGF;AACA;AACA;AACA;AACA;AACA,MAAM;AACN;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA,wCAAwC;AACxC;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA,EAAE;;;AAGF;AACA;AACA,EAAE;;;AAGF;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA,YAAY;AACZ;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA,GAAG;AACH;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA,GAAG;AACH;;AAEA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,WAAW,GAAG;AACd,WAAW,GAAG;AACd,WAAW,GAAG;AACd,WAAW,eAAe;AAC1B,WAAW,GAAG;AACd,WAAW,GAAG;AACd;AACA;AACA;AACA;AACA,WAAW,GAAG;AACd;AACA;AACA;;;AAGA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA,yBAAyB;AACzB;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA,KAAK,GAAG;;AAER;AACA;AACA;AACA;AACA;AACA,KAAK,GAAG;AACR;;AAEA;AACA;AACA;AACA;AACA;AACA,KAAK;;AAEL;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA,gBAAgB;;AAEhB;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA,qEAAqE;;AAErE;AACA;AACA;AACA;AACA;AACA,IAAI;AACJ;;;AAGA;;AAEA;AACA;AACA,IAAI;AACJ;;AAEA,oBAAoB,oBAAoB;AACxC;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA,IAAI;;;AAGJ;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA,gBAAgB;;AAEhB,uBAAuB,kBAAkB;;AAEzC;AACA,yBAAyB;;AAEzB,4BAA4B;AAC5B;AACA;;AAEA,gCAAgC;;AAEhC;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA,MAAM;;;AAGN;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA,UAAU;AACV;AACA;AACA;AACA;AACA,IAAI;AACJ;;;AAGA;;AAEA;AACA;AACA,IAAI;AACJ;;AAEA,oBAAoB,oBAAoB;AACxC;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA,WAAW,SAAS;AACpB,YAAY,SAAS;AACrB;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA,WAAW,QAAQ;AACnB,YAAY,QAAQ;AACpB;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,GAAG;AACH;AACA;AACA;AACA;AACA;AACA;;;AAGA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,WAAW,GAAG;AACd,WAAW,QAAQ;AACnB,YAAY;AACZ;;;AAGA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA,IAAI;;;AAGJ;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA,IAAI;AACJ;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA,wCAAwC;AACxC;;AAEA;;AAEA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA,OAAO;AACP,MAAM;AACN;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;AACA,wBAAwB;;AAExB;;AAEA;AACA,oBAAoB,qBAAqB;AACzC;AACA;AACA;AACA;AACA,IAAI;AACJ;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA,MAAM;AACN;AACA;AACA,qIAAqI,yCAAyC;AAC9K;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,WAAW,IAAI;AACf,WAAW,kBAAkB;AAC7B,WAAW,GAAG;AACd,YAAY,QAAQ;AACpB;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA,GAAG;AACH;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,WAAW,IAAI;AACf,YAAY,QAAQ;AACpB;;;AAGA;AACA;AACA;AACA,SAAS;AACT,GAAG;AACH;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,WAAW,IAAI;AACf,WAAW,kBAAkB;AAC7B,WAAW,GAAG;AACd;AACA;AACA;AACA,wCAAwC;AACxC,GAAG;AACH;AACA;AACA;AACA;AACA;AACA;AACA;;;AAGA;AACA;AACA;AACA,GAAG;AACH;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,WAAW,SAAS;AACpB,YAAY,cAAc;AAC1B;AACA;;;AAGA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,2BAA2B;AAC3B;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO;;AAEP;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA,SAAS;AACT;AACA;AACA;AACA,OAAO;AACP;AACA;AACA;AACA,SAAS;AACT;AACA;AACA;AACA,OAAO;AACP;AACA;AACA;AACA,SAAS;AACT;AACA;AACA;AACA,OAAO;AACP;AACA;AACA;AACA,SAAS;AACT;AACA;AACA;AACA,OAAO;AACP;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA,OAAO;AACP;AACA;AACA;AACA,SAAS;AACT;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA,KAAK,GAAG;;AAER;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,2BAA2B;AAC3B;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;;AAEL;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA,IAAI;AACJ;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,mBAAmB;;AAEnB;AACA;AACA;AACA;AACA;AACA,SAAS;AACT;AACA;;AAEA,0CAA0C;AAC1C;;AAEA;AACA;AACA,WAAW;AACX;AACA,OAAO;AACP;AACA;AACA;AACA;AACA,SAAS;AACT;AACA;;AAEA,oCAAoC;AACpC;;AAEA;AACA;AACA,WAAW;AACX;AACA;AACA,KAAK;AACL;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA,MAAM;AACN;AACA,MAAM;AACN;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO;AACP;AACA,wBAAwB;AACxB;AACA;AACA;AACA;AACA,+CAA+C,IAAI;AACnD;;AAEA;AACA;AACA;AACA;AACA,KAAK;AACL;;AAEA;AACA;;AAEA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA,IAAI;;;AAGJ;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO;AACP;AACA,wBAAwB;AACxB;AACA;AACA;AACA;AACA,oCAAoC,IAAI;AACxC;;AAEA;AACA;AACA;AACA;AACA,KAAK;AACL;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA,IAAI;AACJ;AACA;;;AAGA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,0CAA0C;AAC1C;;AAEA;AACA;AACA,QAAQ;AACR;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,uCAAuC;;AAEvC;AACA;AACA;AACA;AACA;AACA,SAAS;;AAET;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO;AACP;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,SAAS;;AAET;AACA,sBAAsB;AACtB;AACA,SAAS;AACT,uBAAuB;AACvB;AACA,SAAS;AACT,uBAAuB;AACvB;AACA,SAAS;AACT,wBAAwB;AACxB;AACA,SAAS;AACT,wBAAwB;AACxB;AACA,SAAS;AACT,iCAAiC;AACjC;AACA,SAAS;AACT,2BAA2B;AAC3B;AACA,SAAS;AACT,OAAO;AACP;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,QAAQ;AACR;AACA;AACA;AACA,MAAM;;;AAGN;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA,2DAA2D;;AAE3D;AACA;;AAEA;AACA,2DAA2D;AAC3D;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,SAAS;;;AAGT;AACA;AACA;AACA;AACA;AACA;AACA,OAAO;;AAEP;AACA;AACA;AACA;AACA;AACA,UAAU;AACV;AACA;;AAEA;AACA,QAAQ;AACR;AACA;AACA,UAAU;AACV;AACA;;AAEA;AACA;AACA,MAAM;AACN;AACA;AACA,QAAQ;AACR;AACA;;AAEA;AACA;AACA,IAAI;AACJ;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA,aAAa,kBAAkB;AAC/B;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,mBAAmB;AACnB;;AAEA;AACA;AACA,gFAAgF;AAChF;AACA;;;AAGA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA,kBAAkB;;;AAGlB;AACA;AACA,cAAc;AACd;;AAEA;AACA;AACA;AACA;AACA,IAAI;AACJ;;AAEA;AACA;AACA;AACA;;AAEA;AACA,IAAI;;;AAGJ;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,YAAY;AACZ;AACA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,MAAM;AACN;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA,8BAA8B;AAC9B;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA,2HAA2H;AAC3H;AACA;AACA;;AAEA;AACA,UAAU;AACV;AACA;;AAEA;AACA;;AAEA,oEAAoE;;AAEpE;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,MAAM;AACN;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;;AAGA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,WAAW,cAAc;AACzB,WAAW,GAAG;AACd;;;AAGA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;;AAEA,2DAA2D;AAC3D;AACA;;AAEA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,WAAW,WAAW;AACtB,WAAW,GAAG;AACd;;;AAGA;AACA;AACA;AACA;;AAEA;AACA,oBAAoB,iBAAiB;AACrC;;AAEA;AACA;AACA;AACA;AACA,IAAI;AACJ;AACA;AACA;AACA;AACA,IAAI;AACJ;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,WAAW,cAAc;AACzB;;;AAGA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;;AAEA;AACA;AACA,MAAM;AACN;AACA;AACA;AACA,MAAM;AACN;AACA;;AAEA;AACA;AACA;AACA;AACA,MAAM;AACN,4CAA4C;;AAE5C;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,WAAW,cAAc;AACzB;;;AAGA;AACA;AACA;;AAEA,oBAAoB,iBAAiB;AACrC;;AAEA;AACA;;AAEA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;AACA,4CAA4C;AAC5C;;AAEA;AACA;;AAEA;AACA;AACA;;AAEA;;AAEA;AACA;AACA,MAAM;AACN;AACA;;AAEA;;AAEA;AACA;AACA,MAAM;AACN;AACA,MAAM;AACN;AACA;AACA,MAAM;AACN;AACA;;AAEA;AACA;AACA;AACA;;AAEA,sDAAsD;AACtD;;AAEA;AACA;AACA,IAAI;AACJ;AACA;AACA;AACA;;;AAGA;AACA,oBAAoB,sBAAsB;AAC1C;AACA;AACA;;AAEA;AACA;AACA,IAAI;AACJ;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA,MAAM;;;AAGN;AACA;AACA;AACA;;AAEA;AACA;AACA,SAAS;AACT;AACA;AACA,KAAK;AACL;;AAEA;AACA;AACA;AACA;;AAEA,kBAAkB,sBAAsB;AACxC;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA,IAAI;AACJ;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,yDAAyD;AACzD;;AAEA;AACA,MAAM;AACN;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,2BAA2B;AAC3B;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA,MAAM;AACN;AACA;AACA,MAAM;AACN;AACA;;AAEA;AACA,mCAAmC;AACnC;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA,cAAc;AACd;AACA;AACA,WAAW;AACX;AACA;AACA;AACA,WAAW;AACX;AACA;;AAEA;AACA;AACA;AACA,+CAA+C;AAC/C;AACA;;AAEA,0OAA0O;AAC1O;AACA,WAAW;AACX;AACA;;AAEA;AACA,MAAM;AACN,gCAAgC;AAChC;;AAEA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA,UAAU;AACV;;;AAGA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,cAAc;AACd;AACA;AACA;AACA;AACA;AACA,QAAQ;AACR;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,YAAY;AACZ;AACA;AACA;AACA,SAAS;AACT,QAAQ;AACR;AACA;AACA,MAAM;AACN;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA,eAAe,kBAAkB;AACjC;;AAEA;AACA;AACA,YAAY;AACZ;;AAEA;AACA,QAAQ;AACR;AACA;AACA;AACA,QAAQ;AACR;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA,gBAAgB;AAChB,iBAAiB;AACjB,gBAAgB;AAChB,gBAAgB;AAChB,qBAAqB;AACrB,kBAAkB;AAClB,gBAAgB;AAChB,0DAA0D;AAC1D,oBAAoB;AACpB,qBAAqB;AACrB,qBAAqB;AACrB,qBAAqB;AACrB,iBAAiB;AACjB,kBAAkB;AAClB,sBAAsB;AACtB,YAAY;AACZ,YAAY;AACZ,uBAAuB;AACvB,oBAAoB;AACpB,mBAAmB;AACnB,kBAAkB;AAClB,qBAAqB;AACrB,wBAAwB;AACxB,iBAAiB;AACjB,aAAa;AACb,2BAA2B;AAC3B,0BAA0B;AAC1B,uBAAuB;AACvB,eAAe;AACf,kBAAkB;AAClB,cAAc;AACd,gBAAgB;AAChB,4BAA4B;AAC5B,qBAAqB;AACrB,eAAe;AACf;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,GAAG;AACH;;;;;;;;;;;;AClrFa;;AAEb,IAAI,KAAqC,EAAE,EAE1C,CAAC;AACF,EAAE,uHAAsD;AACxD;;;;;;;;;;;;;;;;;ACN+C;AAChC;AACf,QAAQ,6DAAa;AACrB;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL,IAAI;AACJ;AACA;AACA;AACA;;;;;;;;;;;;;;;;ACdkC;AACnB;AACf,kBAAkB,sDAAO;AACzB;AACA;AACA;AACA,oBAAoB,sDAAO;AAC3B;AACA;AACA;AACA;;;;;;;;;;;;;;;;;ACVkC;AACS;AAC5B;AACf,UAAU,2DAAW;AACrB,qBAAqB,sDAAO;AAC5B;;;;;;;;;;;;;;;ACLe;AACf;;AAEA;AACA;AACA,IAAI;AACJ;AACA,GAAG;AACH;;;;;;UCRA;UACA;;UAEA;UACA;UACA;UACA;UACA;UACA;UACA;UACA;UACA;UACA;UACA;UACA;UACA;;UAEA;UACA;;UAEA;UACA;;UAEA;UACA;UACA;;;;;WCzBA;WACA;WACA;WACA;WACA;WACA,iCAAiC,WAAW;WAC5C;WACA;;;;;WCPA;WACA;WACA;WACA;WACA,yCAAyC,wCAAwC;WACjF;WACA;WACA;;;;;WCPA;;;;;WCAA;WACA;WACA;WACA,uDAAuD,iBAAiB;WACxE;WACA,gDAAgD,aAAa;WAC7D;;;;;WCNA;WACA;WACA;WACA;WACA;;;;;;;;;;;;;;;ACJ6B","sources":["webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/js/pro/_acf-blocks.js","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/js/pro/_acf-jsx-names.js","webpack://advanced-custom-fields-pro/./node_modules/charenc/charenc.js","webpack://advanced-custom-fields-pro/./node_modules/crypt/crypt.js","webpack://advanced-custom-fields-pro/./node_modules/is-buffer/index.js","webpack://advanced-custom-fields-pro/./node_modules/md5/md5.js","webpack://advanced-custom-fields-pro/./node_modules/react/cjs/react.development.js","webpack://advanced-custom-fields-pro/./node_modules/react/index.js","webpack://advanced-custom-fields-pro/./node_modules/@babel/runtime/helpers/esm/defineProperty.js","webpack://advanced-custom-fields-pro/./node_modules/@babel/runtime/helpers/esm/toPrimitive.js","webpack://advanced-custom-fields-pro/./node_modules/@babel/runtime/helpers/esm/toPropertyKey.js","webpack://advanced-custom-fields-pro/./node_modules/@babel/runtime/helpers/esm/typeof.js","webpack://advanced-custom-fields-pro/webpack/bootstrap","webpack://advanced-custom-fields-pro/webpack/runtime/compat get default export","webpack://advanced-custom-fields-pro/webpack/runtime/define property getters","webpack://advanced-custom-fields-pro/webpack/runtime/hasOwnProperty shorthand","webpack://advanced-custom-fields-pro/webpack/runtime/make namespace object","webpack://advanced-custom-fields-pro/webpack/runtime/node module decorator","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/js/pro/acf-pro-blocks.js"],"sourcesContent":["const md5 = require( 'md5' );\n\n( ( $, undefined ) => {\n\t// Dependencies.\n\tconst {\n\t\tBlockControls,\n\t\tInspectorControls,\n\t\tInnerBlocks,\n\t\tuseBlockProps,\n\t\tAlignmentToolbar,\n\t\tBlockVerticalAlignmentToolbar,\n\t} = wp.blockEditor;\n\n\tconst { ToolbarGroup, ToolbarButton, Placeholder, Spinner } = wp.components;\n\tconst { Fragment } = wp.element;\n\tconst { Component } = React;\n\tconst { withSelect } = wp.data;\n\tconst { createHigherOrderComponent } = wp.compose;\n\n\t// Potentially experimental dependencies.\n\tconst BlockAlignmentMatrixToolbar =\n\t\twp.blockEditor.__experimentalBlockAlignmentMatrixToolbar ||\n\t\twp.blockEditor.BlockAlignmentMatrixToolbar;\n\t// Gutenberg v10.x begins transition from Toolbar components to Control components.\n\tconst BlockAlignmentMatrixControl =\n\t\twp.blockEditor.__experimentalBlockAlignmentMatrixControl ||\n\t\twp.blockEditor.BlockAlignmentMatrixControl;\n\tconst BlockFullHeightAlignmentControl =\n\t\twp.blockEditor.__experimentalBlockFullHeightAligmentControl ||\n\t\twp.blockEditor.__experimentalBlockFullHeightAlignmentControl ||\n\t\twp.blockEditor.BlockFullHeightAlignmentControl;\n\tconst useInnerBlocksProps =\n\t\twp.blockEditor.__experimentalUseInnerBlocksProps ||\n\t\twp.blockEditor.useInnerBlocksProps;\n\n\t/**\n\t * Storage for registered block types.\n\t *\n\t * @since 5.8.0\n\t * @var object\n\t */\n\tconst blockTypes = {};\n\n\t/**\n\t * Returns a block type for the given name.\n\t *\n\t * @date\t20/2/19\n\t * @since\t5.8.0\n\t *\n\t * @param\tstring name The block name.\n\t * @return\t(object|false)\n\t */\n\tfunction getBlockType( name ) {\n\t\treturn blockTypes[ name ] || false;\n\t}\n\n\t/**\n\t * Returns a block version for a given block name\n\t *\n\t * @date 8/6/22\n\t * @since 6.0\n\t *\n\t * @param string name The block name\n\t * @return int\n\t */\n\tfunction getBlockVersion( name ) {\n\t\tconst blockType = getBlockType( name );\n\t\treturn blockType.acf_block_version || 1;\n\t}\n\n\t/**\n\t * Returns true if a block (identified by client ID) is nested in a query loop block.\n\t *\n\t * @date 17/1/22\n\t * @since 5.12\n\t *\n\t * @param {string} clientId A block client ID\n\t * @return boolean\n\t */\n\tfunction isBlockInQueryLoop( clientId ) {\n\t\tconst parents = wp.data\n\t\t\t.select( 'core/block-editor' )\n\t\t\t.getBlockParents( clientId );\n\t\tconst parentsData = wp.data\n\t\t\t.select( 'core/block-editor' )\n\t\t\t.getBlocksByClientId( parents );\n\t\treturn parentsData.filter( ( block ) => block.name === 'core/query' )\n\t\t\t.length;\n\t}\n\n\t/**\n\t * Returns true if we're currently inside the WP 5.9+ site editor.\n\t *\n\t * @date 08/02/22\n\t * @since 5.12\n\t *\n\t * @return boolean\n\t */\n\tfunction isSiteEditor() {\n\t\treturn typeof pagenow === 'string' && pagenow === 'site-editor';\n\t}\n\n\t/**\n\t * Returns true if the block editor is currently showing the desktop device type preview.\n\t *\n\t * This function will always return true in the site editor as it uses the\n\t * edit-post store rather than the edit-site store.\n\t *\n\t * @date 15/02/22\n\t * @since 5.12\n\t *\n\t * @return boolean\n\t */\n\tfunction isDesktopPreviewDeviceType() {\n\t\tconst editPostStore = select( 'core/edit-post' );\n\n\t\t// Return true if the edit post store isn't available (such as in the widget editor)\n\t\tif ( ! editPostStore ) return true;\n\n\t\t// Check if function exists (experimental or not) and return true if it's Desktop, or doesn't exist.\n\t\tif ( editPostStore.__experimentalGetPreviewDeviceType ) {\n\t\t\treturn (\n\t\t\t\t'Desktop' === editPostStore.__experimentalGetPreviewDeviceType()\n\t\t\t);\n\t\t} else if ( editPostStore.getPreviewDeviceType ) {\n\t\t\treturn 'Desktop' === editPostStore.getPreviewDeviceType();\n\t\t} else {\n\t\t\treturn true;\n\t\t}\n\t}\n\n\t/**\n\t * Returns true if the block editor is currently in template edit mode.\n\t *\n\t * @date 16/02/22\n\t * @since 5.12\n\t *\n\t * @return boolean\n\t */\n\tfunction isEditingTemplate() {\n\t\tconst editPostStore = select( 'core/edit-post' );\n\n\t\t// Return false if the edit post store isn't available (such as in the widget editor)\n\t\tif ( ! editPostStore ) return false;\n\n\t\t// Return false if the function doesn't exist\n\t\tif ( ! editPostStore.isEditingTemplate ) return false;\n\n\t\treturn editPostStore.isEditingTemplate();\n\t}\n\n\t/**\n\t * Returns true if we're currently inside an iFramed non-desktop device preview type (WP5.9+)\n\t *\n\t * @date 15/02/22\n\t * @since 5.12\n\t *\n\t * @return boolean\n\t */\n\tfunction isiFramedMobileDevicePreview() {\n\t\treturn (\n\t\t\t$( 'iframe[name=editor-canvas]' ).length &&\n\t\t\t! isDesktopPreviewDeviceType()\n\t\t);\n\t}\n\n\t/**\n\t * Registers a block type.\n\t *\n\t * @date\t19/2/19\n\t * @since\t5.8.0\n\t *\n\t * @param\tobject blockType The block type settings localized from PHP.\n\t * @return\tobject The result from wp.blocks.registerBlockType().\n\t */\n\tfunction registerBlockType( blockType ) {\n\t\t// Bail early if is excluded post_type.\n\t\tconst allowedTypes = blockType.post_types || [];\n\t\tif ( allowedTypes.length ) {\n\t\t\t// Always allow block to appear on \"Edit reusable Block\" screen.\n\t\t\tallowedTypes.push( 'wp_block' );\n\n\t\t\t// Check post type.\n\t\t\tconst postType = acf.get( 'postType' );\n\t\t\tif ( ! allowedTypes.includes( postType ) ) {\n\t\t\t\treturn false;\n\t\t\t}\n\t\t}\n\n\t\t// Handle svg HTML.\n\t\tif (\n\t\t\ttypeof blockType.icon === 'string' &&\n\t\t\tblockType.icon.substr( 0, 4 ) === '{ iconHTML };\n\t\t}\n\n\t\t// Remove icon if empty to allow for default \"block\".\n\t\t// Avoids JS error preventing block from being registered.\n\t\tif ( ! blockType.icon ) {\n\t\t\tdelete blockType.icon;\n\t\t}\n\n\t\t// Check category exists and fallback to \"common\".\n\t\tconst category = wp.blocks\n\t\t\t.getCategories()\n\t\t\t.filter( ( { slug } ) => slug === blockType.category )\n\t\t\t.pop();\n\t\tif ( ! category ) {\n\t\t\t//console.warn( `The block \"${blockType.name}\" is registered with an unknown category \"${blockType.category}\".` );\n\t\t\tblockType.category = 'common';\n\t\t}\n\n\t\t// Merge in block settings before local additions.\n\t\tblockType = acf.parseArgs( blockType, {\n\t\t\ttitle: '',\n\t\t\tname: '',\n\t\t\tcategory: '',\n\t\t\tapi_version: 2,\n\t\t\tacf_block_version: 1,\n\t\t} );\n\n\t\t// Remove all empty attribute defaults from PHP values to allow serialisation.\n\t\t// https://github.com/WordPress/gutenberg/issues/7342\n\t\tfor ( const key in blockType.attributes ) {\n\t\t\tif ( blockType.attributes[ key ].default.length === 0 ) {\n\t\t\t\tdelete blockType.attributes[ key ].default;\n\t\t\t}\n\t\t}\n\n\t\t// Apply anchor supports to avoid block editor default writing to ID.\n\t\tif ( blockType.supports.anchor ) {\n\t\t\tblockType.attributes.anchor = {\n\t\t\t\ttype: 'string',\n\t\t\t};\n\t\t}\n\n\t\t// Append edit and save functions.\n\t\tlet ThisBlockEdit = BlockEdit;\n\t\tlet ThisBlockSave = BlockSave;\n\n\t\t// Apply alignText functionality.\n\t\tif ( blockType.supports.alignText || blockType.supports.align_text ) {\n\t\t\tblockType.attributes = addBackCompatAttribute(\n\t\t\t\tblockType.attributes,\n\t\t\t\t'align_text',\n\t\t\t\t'string'\n\t\t\t);\n\t\t\tThisBlockEdit = withAlignTextComponent( ThisBlockEdit, blockType );\n\t\t}\n\n\t\t// Apply alignContent functionality.\n\t\tif (\n\t\t\tblockType.supports.alignContent ||\n\t\t\tblockType.supports.align_content\n\t\t) {\n\t\t\tblockType.attributes = addBackCompatAttribute(\n\t\t\t\tblockType.attributes,\n\t\t\t\t'align_content',\n\t\t\t\t'string'\n\t\t\t);\n\t\t\tThisBlockEdit = withAlignContentComponent(\n\t\t\t\tThisBlockEdit,\n\t\t\t\tblockType\n\t\t\t);\n\t\t}\n\n\t\t// Apply fullHeight functionality.\n\t\tif ( blockType.supports.fullHeight || blockType.supports.full_height ) {\n\t\t\tblockType.attributes = addBackCompatAttribute(\n\t\t\t\tblockType.attributes,\n\t\t\t\t'full_height',\n\t\t\t\t'boolean'\n\t\t\t);\n\t\t\tThisBlockEdit = withFullHeightComponent(\n\t\t\t\tThisBlockEdit,\n\t\t\t\tblockType.blockType\n\t\t\t);\n\t\t}\n\n\t\t// Set edit and save functions.\n\t\tblockType.edit = ( props ) => ;\n\t\tblockType.save = () => ;\n\n\t\t// Add to storage.\n\t\tblockTypes[ blockType.name ] = blockType;\n\n\t\t// Register with WP.\n\t\tconst result = wp.blocks.registerBlockType( blockType.name, blockType );\n\n\t\t// Fix bug in 'core/anchor/attribute' filter overwriting attribute.\n\t\t// Required for < WP5.9\n\t\t// See https://github.com/WordPress/gutenberg/issues/15240\n\t\tif ( result.attributes.anchor ) {\n\t\t\tresult.attributes.anchor = {\n\t\t\t\ttype: 'string',\n\t\t\t};\n\t\t}\n\n\t\t// Return result.\n\t\treturn result;\n\t}\n\n\t/**\n\t * Returns the wp.data.select() response with backwards compatibility.\n\t *\n\t * @date\t17/06/2020\n\t * @since\t5.9.0\n\t *\n\t * @param\tstring selector The selector name.\n\t * @return\tmixed\n\t */\n\tfunction select( selector ) {\n\t\tif ( selector === 'core/block-editor' ) {\n\t\t\treturn (\n\t\t\t\twp.data.select( 'core/block-editor' ) ||\n\t\t\t\twp.data.select( 'core/editor' )\n\t\t\t);\n\t\t}\n\t\treturn wp.data.select( selector );\n\t}\n\n\t/**\n\t * Returns the wp.data.dispatch() response with backwards compatibility.\n\t *\n\t * @date\t17/06/2020\n\t * @since\t5.9.0\n\t *\n\t * @param\tstring selector The selector name.\n\t * @return\tmixed\n\t */\n\tfunction dispatch( selector ) {\n\t\treturn wp.data.dispatch( selector );\n\t}\n\n\t/**\n\t * Returns an array of all blocks for the given args.\n\t *\n\t * @date\t27/2/19\n\t * @since\t5.7.13\n\t *\n\t * @param\t{object} args An object of key=>value pairs used to filter results.\n\t * @return\tarray.\n\t */\n\tfunction getBlocks( args ) {\n\t\tlet blocks = [];\n\n\t\t// Local function to recurse through all child blocks and add to the blocks array.\n\t\tconst recurseBlocks = ( block ) => {\n\t\t\tblocks.push( block );\n\t\t\tselect( 'core/block-editor' )\n\t\t\t\t.getBlocks( block.clientId )\n\t\t\t\t.forEach( recurseBlocks );\n\t\t};\n\n\t\t// Trigger initial recursion for parent level blocks.\n\t\tselect( 'core/block-editor' ).getBlocks().forEach( recurseBlocks );\n\n\t\t// Loop over args and filter.\n\t\tfor ( const k in args ) {\n\t\t\tblocks = blocks.filter(\n\t\t\t\t( { attributes } ) => attributes[ k ] === args[ k ]\n\t\t\t);\n\t\t}\n\n\t\t// Return results.\n\t\treturn blocks;\n\t}\n\n\t/**\n\t * Storage for the AJAX queue.\n\t *\n\t * @const {array}\n\t */\n\tconst ajaxQueue = {};\n\n\t/**\n\t * Storage for cached AJAX requests for block content.\n\t *\n\t * @since 5.12\n\t * @const {array}\n\t */\n\tconst fetchCache = {};\n\n\t/**\n\t * Fetches a JSON result from the AJAX API.\n\t *\n\t * @date\t28/2/19\n\t * @since\t5.7.13\n\t *\n\t * @param\tobject block The block props.\n\t * @query\tobject The query args used in AJAX callback.\n\t * @return\tobject The AJAX promise.\n\t */\n\tfunction fetchBlock( args ) {\n\t\tconst {\n\t\t\tattributes = {},\n\t\t\tcontext = {},\n\t\t\tquery = {},\n\t\t\tclientId = null,\n\t\t\tdelay = 0,\n\t\t} = args;\n\n\t\t// Build a unique queue ID from block data, including the clientId for edit forms.\n\t\tconst queueId = md5(\n\t\t\tJSON.stringify( { ...attributes, ...context, ...query } )\n\t\t);\n\n\t\tconst data = ajaxQueue[ queueId ] || {\n\t\t\tquery: {},\n\t\t\ttimeout: false,\n\t\t\tpromise: $.Deferred(),\n\t\t\tstarted: false,\n\t\t};\n\n\t\t// Append query args to storage.\n\t\tdata.query = { ...data.query, ...query };\n\n\t\tif ( data.started ) return data.promise;\n\n\t\t// Set fresh timeout.\n\t\tclearTimeout( data.timeout );\n\t\tdata.timeout = setTimeout( () => {\n\t\t\tdata.started = true;\n\t\t\tif ( fetchCache[ queueId ] ) {\n\t\t\t\tajaxQueue[ queueId ] = null;\n\t\t\t\tdata.promise.resolve.apply(\n\t\t\t\t\tfetchCache[ queueId ][ 0 ],\n\t\t\t\t\tfetchCache[ queueId ][ 1 ]\n\t\t\t\t);\n\t\t\t} else {\n\t\t\t\t$.ajax( {\n\t\t\t\t\turl: acf.get( 'ajaxurl' ),\n\t\t\t\t\tdataType: 'json',\n\t\t\t\t\ttype: 'post',\n\t\t\t\t\tcache: false,\n\t\t\t\t\tdata: acf.prepareForAjax( {\n\t\t\t\t\t\taction: 'acf/ajax/fetch-block',\n\t\t\t\t\t\tblock: JSON.stringify( attributes ),\n\t\t\t\t\t\tclientId: clientId,\n\t\t\t\t\t\tcontext: JSON.stringify( context ),\n\t\t\t\t\t\tquery: data.query,\n\t\t\t\t\t} ),\n\t\t\t\t} )\n\t\t\t\t\t.always( () => {\n\t\t\t\t\t\t// Clean up queue after AJAX request is complete.\n\t\t\t\t\t\tajaxQueue[ queueId ] = null;\n\t\t\t\t\t} )\n\t\t\t\t\t.done( function () {\n\t\t\t\t\t\tfetchCache[ queueId ] = [ this, arguments ];\n\t\t\t\t\t\tdata.promise.resolve.apply( this, arguments );\n\t\t\t\t\t} )\n\t\t\t\t\t.fail( function () {\n\t\t\t\t\t\tdata.promise.reject.apply( this, arguments );\n\t\t\t\t\t} );\n\t\t\t}\n\t\t}, delay );\n\n\t\t// Update storage.\n\t\tajaxQueue[ queueId ] = data;\n\n\t\t// Return promise.\n\t\treturn data.promise;\n\t}\n\n\t/**\n\t * Returns true if both object are the same.\n\t *\n\t * @date\t19/05/2020\n\t * @since\t5.9.0\n\t *\n\t * @param\tobject obj1\n\t * @param\tobject obj2\n\t * @return\tbool\n\t */\n\tfunction compareObjects( obj1, obj2 ) {\n\t\treturn JSON.stringify( obj1 ) === JSON.stringify( obj2 );\n\t}\n\n\t/**\n\t * Converts HTML into a React element.\n\t *\n\t * @date\t19/05/2020\n\t * @since\t5.9.0\n\t *\n\t * @param\tstring html The HTML to convert.\n\t * @param\tint acfBlockVersion The ACF block version number.\n\t * @return\tobject Result of React.createElement().\n\t */\n\tacf.parseJSX = ( html, acfBlockVersion ) => {\n\t\t// Apply a temporary wrapper for the jQuery parse to prevent text nodes triggering errors.\n\t\thtml = '
                          ' + html + '
                          ';\n\t\t// Correctly balance InnerBlocks tags for jQuery's initial parse.\n\t\thtml = html.replace(\n\t\t\t/]+)?\\/>/,\n\t\t\t''\n\t\t);\n\t\treturn parseNode( $( html )[ 0 ], acfBlockVersion, 0 ).props.children;\n\t};\n\n\t/**\n\t * Converts a DOM node into a React element.\n\t *\n\t * @date\t19/05/2020\n\t * @since\t5.9.0\n\t *\n\t * @param\tDOM node The DOM node.\n\t * @param\tint acfBlockVersion The ACF block version number.\n\t * @param\tint level The recursion level.\n\t * @return\tobject Result of React.createElement().\n\t */\n\tfunction parseNode( node, acfBlockVersion, level = 0 ) {\n\t\t// Get node name.\n\t\tconst nodeName = parseNodeName(\n\t\t\tnode.nodeName.toLowerCase(),\n\t\t\tacfBlockVersion\n\t\t);\n\t\tif ( ! nodeName ) {\n\t\t\treturn null;\n\t\t}\n\n\t\t// Get node attributes in React friendly format.\n\t\tconst nodeAttrs = {};\n\n\t\tif ( level === 1 && nodeName !== 'ACFInnerBlocks' ) {\n\t\t\t// Top level (after stripping away the container div), create a ref for passing through to ACF's JS API.\n\t\t\tnodeAttrs.ref = React.createRef();\n\t\t}\n\n\t\tacf.arrayArgs( node.attributes )\n\t\t\t.map( parseNodeAttr )\n\t\t\t.forEach( ( { name, value } ) => {\n\t\t\t\tnodeAttrs[ name ] = value;\n\t\t\t} );\n\n\t\tif ( 'ACFInnerBlocks' === nodeName ) {\n\t\t\treturn ;\n\t\t}\n\n\t\t// Define args for React.createElement().\n\t\tconst args = [ nodeName, nodeAttrs ];\n\t\tacf.arrayArgs( node.childNodes ).forEach( ( child ) => {\n\t\t\tif ( child instanceof Text ) {\n\t\t\t\tconst text = child.textContent;\n\t\t\t\tif ( text ) {\n\t\t\t\t\targs.push( text );\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\targs.push( parseNode( child, acfBlockVersion, level + 1 ) );\n\t\t\t}\n\t\t} );\n\n\t\t// Return element.\n\t\treturn React.createElement.apply( this, args );\n\t}\n\n\t/**\n\t * Converts a node or attribute name into it's JSX compliant name\n\t *\n\t * @date 05/07/2021\n\t * @since 5.9.8\n\t *\n\t * @param string name The node or attribute name.\n\t * @return string\n\t */\n\tfunction getJSXName( name ) {\n\t\tconst replacement = acf.isget( acf, 'jsxNameReplacements', name );\n\t\tif ( replacement ) return replacement;\n\t\treturn name;\n\t}\n\n\t/**\n\t * Converts the given name into a React friendly name or component.\n\t *\n\t * @date\t19/05/2020\n\t * @since\t5.9.0\n\t *\n\t * @param\tstring name The node name in lowercase.\n\t * @param\tint acfBlockVersion The ACF block version number.\n\t * @return\tmixed\n\t */\n\tfunction parseNodeName( name, acfBlockVersion ) {\n\t\tswitch ( name ) {\n\t\t\tcase 'innerblocks':\n\t\t\t\tif ( acfBlockVersion < 2 ) {\n\t\t\t\t\treturn InnerBlocks;\n\t\t\t\t}\n\t\t\t\treturn 'ACFInnerBlocks';\n\t\t\tcase 'script':\n\t\t\t\treturn Script;\n\t\t\tcase '#comment':\n\t\t\t\treturn null;\n\t\t\tdefault:\n\t\t\t\t// Replace names for JSX counterparts.\n\t\t\t\tname = getJSXName( name );\n\t\t}\n\t\treturn name;\n\t}\n\n\t/**\n\t * Functional component for ACFInnerBlocks.\n\t *\n\t * @since 6.0.0\n\t *\n\t * @param obj props element properties.\n\t * @return DOM element\n\t */\n\tfunction ACFInnerBlocks( props ) {\n\t\tconst { className = 'acf-innerblocks-container' } = props;\n\t\tconst innerBlockProps = useInnerBlocksProps(\n\t\t\t{ className: className },\n\t\t\tprops\n\t\t);\n\n\t\treturn
                          { innerBlockProps.children }
                          ;\n\t}\n\n\t/**\n\t * Converts the given attribute into a React friendly name and value object.\n\t *\n\t * @date\t19/05/2020\n\t * @since\t5.9.0\n\t *\n\t * @param\tobj nodeAttr The node attribute.\n\t * @return\tobj\n\t */\n\tfunction parseNodeAttr( nodeAttr ) {\n\t\tlet name = nodeAttr.name;\n\t\tlet value = nodeAttr.value;\n\n\t\t// Allow overrides for third party libraries who might use specific attributes.\n\t\tlet shortcut = acf.applyFilters(\n\t\t\t'acf_blocks_parse_node_attr',\n\t\t\tfalse,\n\t\t\tnodeAttr\n\t\t);\n\n\t\tif ( shortcut ) return shortcut;\n\n\t\tswitch ( name ) {\n\t\t\t// Class.\n\t\t\tcase 'class':\n\t\t\t\tname = 'className';\n\t\t\t\tbreak;\n\n\t\t\t// Style.\n\t\t\tcase 'style':\n\t\t\t\tconst css = {};\n\t\t\t\tvalue.split( ';' ).forEach( ( s ) => {\n\t\t\t\t\tconst pos = s.indexOf( ':' );\n\t\t\t\t\tif ( pos > 0 ) {\n\t\t\t\t\t\tlet ruleName = s.substr( 0, pos ).trim();\n\t\t\t\t\t\tconst ruleValue = s.substr( pos + 1 ).trim();\n\n\t\t\t\t\t\t// Rename core properties, but not CSS variables.\n\t\t\t\t\t\tif ( ruleName.charAt( 0 ) !== '-' ) {\n\t\t\t\t\t\t\truleName = acf.strCamelCase( ruleName );\n\t\t\t\t\t\t}\n\t\t\t\t\t\tcss[ ruleName ] = ruleValue;\n\t\t\t\t\t}\n\t\t\t\t} );\n\t\t\t\tvalue = css;\n\t\t\t\tbreak;\n\n\t\t\t// Default.\n\t\t\tdefault:\n\t\t\t\t// No formatting needed for \"data-x\" attributes.\n\t\t\t\tif ( name.indexOf( 'data-' ) === 0 ) {\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\n\t\t\t\t// Replace names for JSX counterparts.\n\t\t\t\tname = getJSXName( name );\n\n\t\t\t\t// Convert JSON values.\n\t\t\t\tconst c1 = value.charAt( 0 );\n\t\t\t\tif ( c1 === '[' || c1 === '{' ) {\n\t\t\t\t\tvalue = JSON.parse( value );\n\t\t\t\t}\n\n\t\t\t\t// Convert bool values.\n\t\t\t\tif ( value === 'true' || value === 'false' ) {\n\t\t\t\t\tvalue = value === 'true';\n\t\t\t\t}\n\t\t\t\tbreak;\n\t\t}\n\t\treturn {\n\t\t\tname,\n\t\t\tvalue,\n\t\t};\n\t}\n\n\t/**\n\t * Higher Order Component used to set default block attribute values.\n\t *\n\t * By modifying block attributes directly, instead of defining defaults in registerBlockType(),\n\t * WordPress will include them always within the saved block serialized JSON.\n\t *\n\t * @date\t31/07/2020\n\t * @since\t5.9.0\n\t *\n\t * @param\tComponent BlockListBlock The BlockListBlock Component.\n\t * @return\tComponent\n\t */\n\tconst withDefaultAttributes = createHigherOrderComponent(\n\t\t( BlockListBlock ) =>\n\t\t\tclass WrappedBlockEdit extends Component {\n\t\t\t\tconstructor( props ) {\n\t\t\t\t\tsuper( props );\n\n\t\t\t\t\t// Extract vars.\n\t\t\t\t\tconst { name, attributes } = this.props;\n\n\t\t\t\t\t// Only run on ACF Blocks.\n\t\t\t\t\tconst blockType = getBlockType( name );\n\t\t\t\t\tif ( ! blockType ) {\n\t\t\t\t\t\treturn;\n\t\t\t\t\t}\n\n\t\t\t\t\t// Check and remove any empty string attributes to match PHP behaviour.\n\t\t\t\t\tObject.keys( attributes ).forEach( ( key ) => {\n\t\t\t\t\t\tif ( attributes[ key ] === '' ) {\n\t\t\t\t\t\t\tdelete attributes[ key ];\n\t\t\t\t\t\t}\n\t\t\t\t\t} );\n\n\t\t\t\t\t// Backward compatibility attribute replacement.\n\t\t\t\t\tconst upgrades = {\n\t\t\t\t\t\tfull_height: 'fullHeight',\n\t\t\t\t\t\talign_content: 'alignContent',\n\t\t\t\t\t\talign_text: 'alignText',\n\t\t\t\t\t};\n\n\t\t\t\t\tObject.keys( upgrades ).forEach( ( key ) => {\n\t\t\t\t\t\tif ( attributes[ key ] !== undefined ) {\n\t\t\t\t\t\t\tattributes[ upgrades[ key ] ] = attributes[ key ];\n\t\t\t\t\t\t} else if (\n\t\t\t\t\t\t\tattributes[ upgrades[ key ] ] === undefined\n\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t//Check for a default\n\t\t\t\t\t\t\tif ( blockType[ key ] !== undefined ) {\n\t\t\t\t\t\t\t\tattributes[ upgrades[ key ] ] =\n\t\t\t\t\t\t\t\t\tblockType[ key ];\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t\tdelete blockType[ key ];\n\t\t\t\t\t\tdelete attributes[ key ];\n\t\t\t\t\t} );\n\n\t\t\t\t\t// Set default attributes for those undefined.\n\t\t\t\t\tfor ( let attribute in blockType.attributes ) {\n\t\t\t\t\t\tif (\n\t\t\t\t\t\t\tattributes[ attribute ] === undefined &&\n\t\t\t\t\t\t\tblockType[ attribute ] !== undefined\n\t\t\t\t\t\t) {\n\t\t\t\t\t\t\tattributes[ attribute ] = blockType[ attribute ];\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\trender() {\n\t\t\t\t\treturn ;\n\t\t\t\t}\n\t\t\t},\n\t\t'withDefaultAttributes'\n\t);\n\twp.hooks.addFilter(\n\t\t'editor.BlockListBlock',\n\t\t'acf/with-default-attributes',\n\t\twithDefaultAttributes\n\t);\n\n\t/**\n\t * The BlockSave functional component.\n\t *\n\t * @date\t08/07/2020\n\t * @since\t5.9.0\n\t */\n\tfunction BlockSave() {\n\t\treturn ;\n\t}\n\n\t/**\n\t * The BlockEdit component.\n\t *\n\t * @date\t19/2/19\n\t * @since\t5.7.12\n\t */\n\tclass BlockEdit extends Component {\n\t\tconstructor( props ) {\n\t\t\tsuper( props );\n\t\t\tthis.setup();\n\t\t}\n\n\t\tsetup() {\n\t\t\tconst { name, attributes, clientId } = this.props;\n\t\t\tconst blockType = getBlockType( name );\n\n\t\t\t// Restrict current mode.\n\t\t\tfunction restrictMode( modes ) {\n\t\t\t\tif ( ! modes.includes( attributes.mode ) ) {\n\t\t\t\t\tattributes.mode = modes[ 0 ];\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tif (\n\t\t\t\tisBlockInQueryLoop( clientId ) ||\n\t\t\t\tisSiteEditor() ||\n\t\t\t\tisiFramedMobileDevicePreview() ||\n\t\t\t\tisEditingTemplate()\n\t\t\t) {\n\t\t\t\trestrictMode( [ 'preview' ] );\n\t\t\t} else {\n\t\t\t\tswitch ( blockType.mode ) {\n\t\t\t\t\tcase 'edit':\n\t\t\t\t\t\trestrictMode( [ 'edit', 'preview' ] );\n\t\t\t\t\t\tbreak;\n\t\t\t\t\tcase 'preview':\n\t\t\t\t\t\trestrictMode( [ 'preview', 'edit' ] );\n\t\t\t\t\t\tbreak;\n\t\t\t\t\tdefault:\n\t\t\t\t\t\trestrictMode( [ 'auto' ] );\n\t\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\trender() {\n\t\t\tconst { name, attributes, setAttributes, clientId } = this.props;\n\t\t\tconst blockType = getBlockType( name );\n\t\t\tconst forcePreview =\n\t\t\t\tisBlockInQueryLoop( clientId ) ||\n\t\t\t\tisSiteEditor() ||\n\t\t\t\tisiFramedMobileDevicePreview() ||\n\t\t\t\tisEditingTemplate();\n\t\t\tlet { mode } = attributes;\n\n\t\t\tif ( forcePreview ) {\n\t\t\t\tmode = 'preview';\n\t\t\t}\n\n\t\t\t// Show toggle only for edit/preview modes and for blocks not in a query loop/FSE.\n\t\t\tlet showToggle = blockType.supports.mode;\n\t\t\tif ( mode === 'auto' || forcePreview ) {\n\t\t\t\tshowToggle = false;\n\t\t\t}\n\n\t\t\t// Configure toggle variables.\n\t\t\tconst toggleText =\n\t\t\t\tmode === 'preview'\n\t\t\t\t\t? acf.__( 'Switch to Edit' )\n\t\t\t\t\t: acf.__( 'Switch to Preview' );\n\t\t\tconst toggleIcon =\n\t\t\t\tmode === 'preview' ? 'edit' : 'welcome-view-site';\n\t\t\tfunction toggleMode() {\n\t\t\t\tsetAttributes( {\n\t\t\t\t\tmode: mode === 'preview' ? 'edit' : 'preview',\n\t\t\t\t} );\n\t\t\t}\n\n\t\t\t// Return template.\n\t\t\treturn (\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t{ showToggle && (\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t) }\n\t\t\t\t\t\n\n\t\t\t\t\t\n\t\t\t\t\t\t{ mode === 'preview' && (\n\t\t\t\t\t\t\t
                          \n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t
                          \n\t\t\t\t\t\t) }\n\t\t\t\t\t
                          \n\n\t\t\t\t\t\n\t\t\t\t
                          \n\t\t\t);\n\t\t}\n\t}\n\n\t/**\n\t * The BlockBody functional component.\n\t *\n\t * @date\t19/2/19\n\t * @since\t5.7.12\n\t */\n\tfunction _BlockBody( props ) {\n\t\tconst { attributes, isSelected, name } = props;\n\t\tconst { mode } = attributes;\n\n\t\tlet showForm = true;\n\t\tlet additionalClasses = 'acf-block-component acf-block-body';\n\n\t\tif ( ( mode === 'auto' && ! isSelected ) || mode === 'preview' ) {\n\t\t\tadditionalClasses += ' acf-block-preview';\n\t\t\tshowForm = false;\n\t\t}\n\n\t\tif ( getBlockVersion( name ) > 1 ) {\n\t\t\treturn (\n\t\t\t\t
                          \n\t\t\t\t\t{ showForm ? (\n\t\t\t\t\t\t\n\t\t\t\t\t) : (\n\t\t\t\t\t\t\n\t\t\t\t\t) }\n\t\t\t\t
                          \n\t\t\t);\n\t\t} else {\n\t\t\treturn (\n\t\t\t\t
                          \n\t\t\t\t\t
                          \n\t\t\t\t\t\t{ showForm ? (\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t) : (\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t) }\n\t\t\t\t\t
                          \n\t\t\t\t
                          \n\t\t\t);\n\t\t}\n\t}\n\n\t// Append blockIndex to component props.\n\tconst BlockBody = withSelect( ( select, ownProps ) => {\n\t\tconst { clientId } = ownProps;\n\t\t// Use optional rootClientId to allow discoverability of child blocks.\n\t\tconst rootClientId =\n\t\t\tselect( 'core/block-editor' ).getBlockRootClientId( clientId );\n\t\tconst index = select( 'core/block-editor' ).getBlockIndex(\n\t\t\tclientId,\n\t\t\trootClientId\n\t\t);\n\t\treturn {\n\t\t\tindex,\n\t\t};\n\t} )( _BlockBody );\n\n\t/**\n\t * A react component to append HTMl.\n\t *\n\t * @date\t19/2/19\n\t * @since\t5.7.12\n\t *\n\t * @param\tstring children The html to insert.\n\t * @return\tvoid\n\t */\n\tclass Div extends Component {\n\t\trender() {\n\t\t\treturn (\n\t\t\t\t\n\t\t\t);\n\t\t}\n\t}\n\n\t/**\n\t * A react Component for inline scripts.\n\t *\n\t * This Component uses a combination of React references and jQuery to append the\n\t * inline ` );\n\t\t}\n\t\tcomponentDidUpdate() {\n\t\t\tthis.setHTML( this.props.children );\n\t\t}\n\t\tcomponentDidMount() {\n\t\t\tthis.setHTML( this.props.children );\n\t\t}\n\t}\n\n\t// Data storage for DynamicHTML components.\n\tconst store = {};\n\n\t/**\n\t * DynamicHTML Class.\n\t *\n\t * A react componenet to load and insert dynamic HTML.\n\t *\n\t * @date\t19/2/19\n\t * @since\t5.7.12\n\t *\n\t * @param\tvoid\n\t * @return\tvoid\n\t */\n\tclass DynamicHTML extends Component {\n\t\tconstructor( props ) {\n\t\t\tsuper( props );\n\n\t\t\t// Bind callbacks.\n\t\t\tthis.setRef = this.setRef.bind( this );\n\n\t\t\t// Define default props and call setup().\n\t\t\tthis.id = '';\n\t\t\tthis.el = false;\n\t\t\tthis.subscribed = true;\n\t\t\tthis.renderMethod = 'jQuery';\n\t\t\tthis.setup( props );\n\n\t\t\t// Load state.\n\t\t\tthis.loadState();\n\t\t}\n\n\t\tsetup( props ) {\n\t\t\t// Do nothing.\n\t\t}\n\n\t\tfetch() {\n\t\t\t// Do nothing.\n\t\t}\n\n\t\tmaybePreload( blockId, clientId, form ) {\n\t\t\tif (\n\t\t\t\tthis.state.html === undefined &&\n\t\t\t\t! isBlockInQueryLoop( this.props.clientId )\n\t\t\t) {\n\t\t\t\tconst preloadedBlocks = acf.get( 'preloadedBlocks' );\n\t\t\t\tconst modeText = form ? 'form' : 'preview';\n\n\t\t\t\tif ( preloadedBlocks && preloadedBlocks[ blockId ] ) {\n\t\t\t\t\t// Ensure we only preload the correct block state (form or preview).\n\t\t\t\t\tif (\n\t\t\t\t\t\t( form && ! preloadedBlocks[ blockId ].form ) ||\n\t\t\t\t\t\t( ! form && preloadedBlocks[ blockId ].form )\n\t\t\t\t\t)\n\t\t\t\t\t\treturn false;\n\n\t\t\t\t\t// Set HTML to the preloaded version.\n\t\t\t\t\treturn preloadedBlocks[ blockId ].html.replaceAll(\n\t\t\t\t\t\tblockId,\n\t\t\t\t\t\tclientId\n\t\t\t\t\t);\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn false;\n\t\t}\n\n\t\tloadState() {\n\t\t\tthis.state = store[ this.id ] || {};\n\t\t}\n\n\t\tsetState( state ) {\n\t\t\tstore[ this.id ] = { ...this.state, ...state };\n\n\t\t\t// Update component state if subscribed.\n\t\t\t// - Allows AJAX callback to update store without modifying state of an unmounted component.\n\t\t\tif ( this.subscribed ) {\n\t\t\t\tsuper.setState( state );\n\t\t\t}\n\t\t}\n\n\t\tsetHtml( html ) {\n\t\t\thtml = html ? html.trim() : '';\n\n\t\t\t// Bail early if html has not changed.\n\t\t\tif ( html === this.state.html ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// Update state.\n\t\t\tconst state = {\n\t\t\t\thtml,\n\t\t\t};\n\n\t\t\tif ( this.renderMethod === 'jsx' ) {\n\t\t\t\tstate.jsx = acf.parseJSX(\n\t\t\t\t\thtml,\n\t\t\t\t\tgetBlockVersion( this.props.name )\n\t\t\t\t);\n\n\t\t\t\t// Handle templates which don't contain any valid JSX parsable elements.\n\t\t\t\tif ( ! state.jsx ) {\n\t\t\t\t\tconsole.warn(\n\t\t\t\t\t\t'Your ACF block template contains no valid HTML elements. Appending a empty div to prevent React JS errors.'\n\t\t\t\t\t);\n\t\t\t\t\tstate.html += '
                          ';\n\t\t\t\t\tstate.jsx = acf.parseJSX(\n\t\t\t\t\t\tstate.html,\n\t\t\t\t\t\tgetBlockVersion( this.props.name )\n\t\t\t\t\t);\n\t\t\t\t}\n\n\t\t\t\t// If we've got an object (as an array) find the first valid React ref.\n\t\t\t\tif ( Array.isArray( state.jsx ) ) {\n\t\t\t\t\tlet refElement = state.jsx.find( ( element ) =>\n\t\t\t\t\t\tReact.isValidElement( element )\n\t\t\t\t\t);\n\t\t\t\t\tstate.ref = refElement.ref;\n\t\t\t\t} else {\n\t\t\t\t\tstate.ref = state.jsx.ref;\n\t\t\t\t}\n\t\t\t\tstate.$el = $( this.el );\n\t\t\t} else {\n\t\t\t\tstate.$el = $( html );\n\t\t\t}\n\t\t\tthis.setState( state );\n\t\t}\n\n\t\tsetRef( el ) {\n\t\t\tthis.el = el;\n\t\t}\n\n\t\trender() {\n\t\t\t// Render JSX.\n\t\t\tif ( this.state.jsx ) {\n\t\t\t\t// If we're a v2+ block, use the jsx element itself as our ref.\n\t\t\t\tif ( getBlockVersion( this.props.name ) > 1 ) {\n\t\t\t\t\tthis.setRef( this.state.jsx );\n\t\t\t\t\treturn this.state.jsx;\n\t\t\t\t} else {\n\t\t\t\t\treturn
                          { this.state.jsx }
                          ;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Return HTML.\n\t\t\treturn (\n\t\t\t\t
                          \n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t
                          \n\t\t\t);\n\t\t}\n\n\t\tshouldComponentUpdate( { index }, { html } ) {\n\t\t\tif ( index !== this.props.index ) {\n\t\t\t\tthis.componentWillMove();\n\t\t\t}\n\t\t\treturn html !== this.state.html;\n\t\t}\n\n\t\tdisplay( context ) {\n\t\t\t// This method is called after setting new HTML and the Component render.\n\t\t\t// The jQuery render method simply needs to move $el into place.\n\t\t\tif ( this.renderMethod === 'jQuery' ) {\n\t\t\t\tconst $el = this.state.$el;\n\t\t\t\tconst $prevParent = $el.parent();\n\t\t\t\tconst $thisParent = $( this.el );\n\n\t\t\t\t// Move $el into place.\n\t\t\t\t$thisParent.html( $el );\n\n\t\t\t\t// Special case for reusable blocks.\n\t\t\t\t// Multiple instances of the same reusable block share the same block id.\n\t\t\t\t// This causes all instances to share the same state (cool), which unfortunately\n\t\t\t\t// pulls $el back and forth between the last rendered reusable block.\n\t\t\t\t// This simple fix leaves a \"clone\" behind :)\n\t\t\t\tif (\n\t\t\t\t\t$prevParent.length &&\n\t\t\t\t\t$prevParent[ 0 ] !== $thisParent[ 0 ]\n\t\t\t\t) {\n\t\t\t\t\t$prevParent.html( $el.clone() );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Call context specific method.\n\t\t\tswitch ( context ) {\n\t\t\t\tcase 'append':\n\t\t\t\t\tthis.componentDidAppend();\n\t\t\t\t\tbreak;\n\t\t\t\tcase 'remount':\n\t\t\t\t\tthis.componentDidRemount();\n\t\t\t\t\tbreak;\n\t\t\t}\n\t\t}\n\n\t\tcomponentDidMount() {\n\t\t\t// Fetch on first load.\n\t\t\tif ( this.state.html === undefined ) {\n\t\t\t\tthis.fetch();\n\n\t\t\t\t// Or remount existing HTML.\n\t\t\t} else {\n\t\t\t\tthis.display( 'remount' );\n\t\t\t}\n\t\t}\n\n\t\tcomponentDidUpdate( prevProps, prevState ) {\n\t\t\t// HTML has changed.\n\t\t\tthis.display( 'append' );\n\t\t}\n\n\t\tcomponentDidAppend() {\n\t\t\tacf.doAction( 'append', this.state.$el );\n\t\t}\n\n\t\tcomponentWillUnmount() {\n\t\t\tacf.doAction( 'unmount', this.state.$el );\n\n\t\t\t// Unsubscribe this component from state.\n\t\t\tthis.subscribed = false;\n\t\t}\n\n\t\tcomponentDidRemount() {\n\t\t\tthis.subscribed = true;\n\n\t\t\t// Use setTimeout to avoid incorrect timing of events.\n\t\t\t// React will unmount and mount components in DOM order.\n\t\t\t// This means a new component can be mounted before an old one is unmounted.\n\t\t\t// ACF shares $el across new/old components which is un-React-like.\n\t\t\t// This timout ensures that unmounting occurs before remounting.\n\t\t\tsetTimeout( () => {\n\t\t\t\tacf.doAction( 'remount', this.state.$el );\n\t\t\t} );\n\t\t}\n\n\t\tcomponentWillMove() {\n\t\t\tacf.doAction( 'unmount', this.state.$el );\n\t\t\tsetTimeout( () => {\n\t\t\t\tacf.doAction( 'remount', this.state.$el );\n\t\t\t} );\n\t\t}\n\t}\n\n\t/**\n\t * BlockForm Class.\n\t *\n\t * A react componenet to handle the block form.\n\t *\n\t * @date\t19/2/19\n\t * @since\t5.7.12\n\t *\n\t * @param\tstring id the block id.\n\t * @return\tvoid\n\t */\n\tclass BlockForm extends DynamicHTML {\n\t\tsetup( { clientId } ) {\n\t\t\tthis.id = `BlockForm-${ clientId }`;\n\t\t}\n\n\t\tfetch() {\n\t\t\t// Extract props.\n\t\t\tconst { attributes, context, clientId } = this.props;\n\n\t\t\tconst hash = createBlockAttributesHash( attributes, context );\n\n\t\t\t// Try preloaded data first.\n\t\t\tconst preloaded = this.maybePreload( hash, clientId, true );\n\n\t\t\tif ( preloaded ) {\n\t\t\t\tthis.setHtml( preloaded );\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// Request AJAX and update HTML on complete.\n\t\t\tfetchBlock( {\n\t\t\t\tattributes,\n\t\t\t\tcontext,\n\t\t\t\tclientId,\n\t\t\t\tquery: {\n\t\t\t\t\tform: true,\n\t\t\t\t},\n\t\t\t} ).done( ( { data } ) => {\n\t\t\t\tthis.setHtml( data.form.replaceAll( data.clientId, clientId ) );\n\t\t\t} );\n\t\t}\n\n\t\tcomponentDidRemount() {\n\t\t\tsuper.componentDidRemount();\n\n\t\t\tconst { $el } = this.state;\n\n\t\t\t// Make sure our on append events are registered.\n\t\t\tif ( $el.data( 'acf-events-added' ) !== true ) {\n\t\t\t\tthis.componentDidAppend();\n\t\t\t}\n\t\t}\n\n\t\tcomponentDidAppend() {\n\t\t\tsuper.componentDidAppend();\n\n\t\t\t// Extract props.\n\t\t\tconst { attributes, setAttributes, clientId } = this.props;\n\t\t\tconst props = this.props;\n\t\t\tconst { $el } = this.state;\n\n\t\t\t// Callback for updating block data.\n\t\t\tfunction serializeData( silent = false ) {\n\t\t\t\tconst data = acf.serialize( $el, `acf-${ clientId }` );\n\t\t\t\tif ( silent ) {\n\t\t\t\t\tattributes.data = data;\n\t\t\t\t} else {\n\t\t\t\t\tsetAttributes( {\n\t\t\t\t\t\tdata,\n\t\t\t\t\t} );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Add events.\n\t\t\tlet timeout = false;\n\t\t\t$el.on( 'change keyup', () => {\n\t\t\t\tclearTimeout( timeout );\n\t\t\t\ttimeout = setTimeout( serializeData, 300 );\n\t\t\t} );\n\n\t\t\t// Log initialization for remount check on the persistent element.\n\t\t\t$el.data( 'acf-events-added', true );\n\n\t\t\t// Ensure newly added block is saved with data.\n\t\t\t// Do it silently to avoid triggering a preview render.\n\t\t\tif ( ! attributes.data ) {\n\t\t\t\tserializeData( true );\n\t\t\t}\n\t\t}\n\t}\n\n\t/**\n\t * BlockPreview Class.\n\t *\n\t * A react componenet to handle the block preview.\n\t *\n\t * @date\t19/2/19\n\t * @since\t5.7.12\n\t *\n\t * @param\tstring id the block id.\n\t * @return\tvoid\n\t */\n\tclass BlockPreview extends DynamicHTML {\n\t\tsetup( { clientId, name } ) {\n\t\t\tconst blockType = getBlockType( name );\n\t\t\tconst contextPostId = acf.isget( this.props, 'context', 'postId' );\n\n\t\t\tthis.id = `BlockPreview-${ clientId }`;\n\n\t\t\t// Apply the contextPostId to the ID if set to stop query loop ID duplication.\n\t\t\tif ( contextPostId ) {\n\t\t\t\tthis.id = `BlockPreview-${ clientId }-${ contextPostId }`;\n\t\t\t}\n\n\t\t\tif ( blockType.supports.jsx ) {\n\t\t\t\tthis.renderMethod = 'jsx';\n\t\t\t}\n\t\t}\n\n\t\tfetch( args = {} ) {\n\t\t\tconst {\n\t\t\t\tattributes = this.props.attributes,\n\t\t\t\tclientId = this.props.clientId,\n\t\t\t\tcontext = this.props.context,\n\t\t\t\tdelay = 0,\n\t\t\t} = args;\n\n\t\t\tconst { name } = this.props;\n\n\t\t\t// Remember attributes used to fetch HTML.\n\t\t\tthis.setState( {\n\t\t\t\tprevAttributes: attributes,\n\t\t\t\tprevContext: context,\n\t\t\t} );\n\n\t\t\tconst hash = createBlockAttributesHash( attributes, context );\n\n\t\t\t// Try preloaded data first.\n\t\t\tlet preloaded = this.maybePreload( hash, clientId, false );\n\n\t\t\tif ( preloaded ) {\n\t\t\t\tif ( getBlockVersion( name ) == 1 ) {\n\t\t\t\t\tpreloaded =\n\t\t\t\t\t\t'
                          ' +\n\t\t\t\t\t\tpreloaded +\n\t\t\t\t\t\t'
                          ';\n\t\t\t\t}\n\t\t\t\tthis.setHtml( preloaded );\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// Request AJAX and update HTML on complete.\n\t\t\tfetchBlock( {\n\t\t\t\tattributes,\n\t\t\t\tcontext,\n\t\t\t\tclientId,\n\t\t\t\tquery: {\n\t\t\t\t\tpreview: true,\n\t\t\t\t},\n\t\t\t\tdelay,\n\t\t\t} ).done( ( { data } ) => {\n\t\t\t\tlet replaceHtml = data.preview.replaceAll(\n\t\t\t\t\tdata.clientId,\n\t\t\t\t\tclientId\n\t\t\t\t);\n\t\t\t\tif ( getBlockVersion( name ) == 1 ) {\n\t\t\t\t\treplaceHtml =\n\t\t\t\t\t\t'
                          ' +\n\t\t\t\t\t\treplaceHtml +\n\t\t\t\t\t\t'
                          ';\n\t\t\t\t}\n\t\t\t\tthis.setHtml( replaceHtml );\n\t\t\t} );\n\t\t}\n\n\t\tcomponentDidAppend() {\n\t\t\tsuper.componentDidAppend();\n\t\t\tthis.renderBlockPreviewEvent();\n\t\t}\n\n\t\tshouldComponentUpdate( nextProps, nextState ) {\n\t\t\tconst nextAttributes = nextProps.attributes;\n\t\t\tconst thisAttributes = this.props.attributes;\n\n\t\t\t// Update preview if block data has changed.\n\t\t\tif (\n\t\t\t\t! compareObjects( nextAttributes, thisAttributes ) ||\n\t\t\t\t! compareObjects( nextProps.context, this.props.context )\n\t\t\t) {\n\t\t\t\tlet delay = 0;\n\n\t\t\t\t// Delay fetch when editing className or anchor to simulate consistent logic to custom fields.\n\t\t\t\tif ( nextAttributes.className !== thisAttributes.className ) {\n\t\t\t\t\tdelay = 300;\n\t\t\t\t}\n\t\t\t\tif ( nextAttributes.anchor !== thisAttributes.anchor ) {\n\t\t\t\t\tdelay = 300;\n\t\t\t\t}\n\n\t\t\t\tthis.fetch( {\n\t\t\t\t\tattributes: nextAttributes,\n\t\t\t\t\tcontext: nextProps.context,\n\t\t\t\t\tdelay,\n\t\t\t\t} );\n\t\t\t}\n\t\t\treturn super.shouldComponentUpdate( nextProps, nextState );\n\t\t}\n\n\t\trenderBlockPreviewEvent() {\n\t\t\t// Extract props.\n\t\t\tconst { attributes, name } = this.props;\n\t\t\tconst { $el, ref } = this.state;\n\t\t\tvar blockElement;\n\n\t\t\t// Generate action friendly type.\n\t\t\tconst type = attributes.name.replace( 'acf/', '' );\n\n\t\t\tif ( ref && ref.current ) {\n\t\t\t\t// We've got a react ref from a JSX container. Use the parent as the blockElement\n\t\t\t\tblockElement = $( ref.current ).parent();\n\t\t\t} else if ( getBlockVersion( name ) == 1 ) {\n\t\t\t\tblockElement = $el;\n\t\t\t} else {\n\t\t\t\tblockElement = $el.parents( '.acf-block-preview' );\n\t\t\t}\n\n\t\t\t// Do action.\n\t\t\tacf.doAction( 'render_block_preview', blockElement, attributes );\n\t\t\tacf.doAction(\n\t\t\t\t`render_block_preview/type=${ type }`,\n\t\t\t\tblockElement,\n\t\t\t\tattributes\n\t\t\t);\n\t\t}\n\n\t\tcomponentDidRemount() {\n\t\t\tsuper.componentDidRemount();\n\n\t\t\t// Update preview if data has changed since last render (changing from \"edit\" to \"preview\").\n\t\t\tif (\n\t\t\t\t! compareObjects(\n\t\t\t\t\tthis.state.prevAttributes,\n\t\t\t\t\tthis.props.attributes\n\t\t\t\t) ||\n\t\t\t\t! compareObjects( this.state.prevContext, this.props.context )\n\t\t\t) {\n\t\t\t\tthis.fetch();\n\t\t\t}\n\n\t\t\t// Fire the block preview event so blocks can reinit JS elements.\n\t\t\t// React reusing DOM elements covers any potential race condition from the above fetch.\n\t\t\tthis.renderBlockPreviewEvent();\n\t\t}\n\t}\n\n\t/**\n\t * Initializes ACF Blocks logic and registration.\n\t *\n\t * @since 5.9.0\n\t */\n\tfunction initialize() {\n\t\t// Add support for WordPress versions before 5.2.\n\t\tif ( ! wp.blockEditor ) {\n\t\t\twp.blockEditor = wp.editor;\n\t\t}\n\n\t\t// Register block types.\n\t\tconst blockTypes = acf.get( 'blockTypes' );\n\t\tif ( blockTypes ) {\n\t\t\tblockTypes.map( registerBlockType );\n\t\t}\n\t}\n\n\t// Run the initialize callback during the \"prepare\" action.\n\t// This ensures that all localized data is available and that blocks are registered before the WP editor has been instantiated.\n\tacf.addAction( 'prepare', initialize );\n\n\t/**\n\t * Returns a valid vertical alignment.\n\t *\n\t * @date\t07/08/2020\n\t * @since\t5.9.0\n\t *\n\t * @param\tstring align A vertical alignment.\n\t * @return\tstring\n\t */\n\tfunction validateVerticalAlignment( align ) {\n\t\tconst ALIGNMENTS = [ 'top', 'center', 'bottom' ];\n\t\tconst DEFAULT = 'top';\n\t\treturn ALIGNMENTS.includes( align ) ? align : DEFAULT;\n\t}\n\n\t/**\n\t * Returns a valid horizontal alignment.\n\t *\n\t * @date\t07/08/2020\n\t * @since\t5.9.0\n\t *\n\t * @param\tstring align A horizontal alignment.\n\t * @return\tstring\n\t */\n\tfunction validateHorizontalAlignment( align ) {\n\t\tconst ALIGNMENTS = [ 'left', 'center', 'right' ];\n\t\tconst DEFAULT = acf.get( 'rtl' ) ? 'right' : 'left';\n\t\treturn ALIGNMENTS.includes( align ) ? align : DEFAULT;\n\t}\n\n\t/**\n\t * Returns a valid matrix alignment.\n\t *\n\t * Written for \"upgrade-path\" compatibility from vertical alignment to matrix alignment.\n\t *\n\t * @date\t07/08/2020\n\t * @since\t5.9.0\n\t *\n\t * @param\tstring align A matrix alignment.\n\t * @return\tstring\n\t */\n\tfunction validateMatrixAlignment( align ) {\n\t\tconst DEFAULT = 'center center';\n\t\tif ( align ) {\n\t\t\tconst [ y, x ] = align.split( ' ' );\n\t\t\treturn `${ validateVerticalAlignment(\n\t\t\t\ty\n\t\t\t) } ${ validateHorizontalAlignment( x ) }`;\n\t\t}\n\t\treturn DEFAULT;\n\t}\n\n\t/**\n\t * A higher order component adding alignContent editing functionality.\n\t *\n\t * @date\t08/07/2020\n\t * @since\t5.9.0\n\t *\n\t * @param\tcomponent OriginalBlockEdit The original BlockEdit component.\n\t * @param\tobject blockType The block type settings.\n\t * @return\tcomponent\n\t */\n\tfunction withAlignContentComponent( OriginalBlockEdit, blockType ) {\n\t\t// Determine alignment vars\n\t\tlet type =\n\t\t\tblockType.supports.align_content || blockType.supports.alignContent;\n\t\tlet AlignmentComponent;\n\t\tlet validateAlignment;\n\t\tswitch ( type ) {\n\t\t\tcase 'matrix':\n\t\t\t\tAlignmentComponent =\n\t\t\t\t\tBlockAlignmentMatrixControl || BlockAlignmentMatrixToolbar;\n\t\t\t\tvalidateAlignment = validateMatrixAlignment;\n\t\t\t\tbreak;\n\t\t\tdefault:\n\t\t\t\tAlignmentComponent = BlockVerticalAlignmentToolbar;\n\t\t\t\tvalidateAlignment = validateVerticalAlignment;\n\t\t\t\tbreak;\n\t\t}\n\n\t\t// Ensure alignment component exists.\n\t\tif ( AlignmentComponent === undefined ) {\n\t\t\tconsole.warn(\n\t\t\t\t`The \"${ type }\" alignment component was not found.`\n\t\t\t);\n\t\t\treturn OriginalBlockEdit;\n\t\t}\n\n\t\t// Ensure correct block attribute data is sent in intial preview AJAX request.\n\t\tblockType.alignContent = validateAlignment( blockType.alignContent );\n\n\t\t// Return wrapped component.\n\t\treturn class WrappedBlockEdit extends Component {\n\t\t\trender() {\n\t\t\t\tconst { attributes, setAttributes } = this.props;\n\t\t\t\tconst { alignContent } = attributes;\n\t\t\t\tfunction onChangeAlignContent( alignContent ) {\n\t\t\t\t\tsetAttributes( {\n\t\t\t\t\t\talignContent: validateAlignment( alignContent ),\n\t\t\t\t\t} );\n\t\t\t\t}\n\t\t\t\treturn (\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t);\n\t\t\t}\n\t\t};\n\t}\n\n\t/**\n\t * A higher order component adding alignText editing functionality.\n\t *\n\t * @date\t08/07/2020\n\t * @since\t5.9.0\n\t *\n\t * @param\tcomponent OriginalBlockEdit The original BlockEdit component.\n\t * @param\tobject blockType The block type settings.\n\t * @return\tcomponent\n\t */\n\tfunction withAlignTextComponent( OriginalBlockEdit, blockType ) {\n\t\tconst validateAlignment = validateHorizontalAlignment;\n\n\t\t// Ensure correct block attribute data is sent in intial preview AJAX request.\n\t\tblockType.alignText = validateAlignment( blockType.alignText );\n\n\t\t// Return wrapped component.\n\t\treturn class WrappedBlockEdit extends Component {\n\t\t\trender() {\n\t\t\t\tconst { attributes, setAttributes } = this.props;\n\t\t\t\tconst { alignText } = attributes;\n\n\t\t\t\tfunction onChangeAlignText( alignText ) {\n\t\t\t\t\tsetAttributes( {\n\t\t\t\t\t\talignText: validateAlignment( alignText ),\n\t\t\t\t\t} );\n\t\t\t\t}\n\n\t\t\t\treturn (\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t);\n\t\t\t}\n\t\t};\n\t}\n\n\t/**\n\t * A higher order component adding full height support.\n\t *\n\t * @date\t19/07/2021\n\t * @since\t5.10.0\n\t *\n\t * @param\tcomponent OriginalBlockEdit The original BlockEdit component.\n\t * @param\tobject blockType The block type settings.\n\t * @return\tcomponent\n\t */\n\tfunction withFullHeightComponent( OriginalBlockEdit, blockType ) {\n\t\tif ( ! BlockFullHeightAlignmentControl ) return OriginalBlockEdit;\n\n\t\t// Return wrapped component.\n\t\treturn class WrappedBlockEdit extends Component {\n\t\t\trender() {\n\t\t\t\tconst { attributes, setAttributes } = this.props;\n\t\t\t\tconst { fullHeight } = attributes;\n\n\t\t\t\tfunction onToggleFullHeight( fullHeight ) {\n\t\t\t\t\tsetAttributes( {\n\t\t\t\t\t\tfullHeight,\n\t\t\t\t\t} );\n\t\t\t\t}\n\n\t\t\t\treturn (\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t);\n\t\t\t}\n\t\t};\n\t}\n\n\t/**\n\t * Appends a backwards compatibility attribute for conversion.\n\t *\n\t * @since\t6.0\n\t *\n\t * @param\tobject attributes The block type attributes.\n\t * @return\tobject\n\t */\n\tfunction addBackCompatAttribute( attributes, new_attribute, type ) {\n\t\tattributes[ new_attribute ] = {\n\t\t\ttype: type,\n\t\t};\n\t\treturn attributes;\n\t}\n\n\t/**\n\t * Create a block hash from attributes\n\t *\n\t * @since 6.0\n\t *\n\t * @param object attributes The block type attributes.\n\t * @param object context The current block context object.\n\t * @return string\n\t */\n\tfunction createBlockAttributesHash( attributes, context ) {\n\t\tattributes[ '_acf_context' ] = context;\n\t\treturn md5(\n\t\t\tJSON.stringify(\n\t\t\t\tObject.keys( attributes )\n\t\t\t\t\t.sort()\n\t\t\t\t\t.reduce( ( acc, currValue ) => {\n\t\t\t\t\t\tacc[ currValue ] = attributes[ currValue ];\n\t\t\t\t\t\treturn acc;\n\t\t\t\t\t}, {} )\n\t\t\t)\n\t\t);\n\t}\n} )( jQuery );\n","( function ( $, undefined ) {\n\tacf.jsxNameReplacements = {\n\t\t'accent-height': 'accentHeight',\n\t\taccentheight: 'accentHeight',\n\t\t'accept-charset': 'acceptCharset',\n\t\tacceptcharset: 'acceptCharset',\n\t\taccesskey: 'accessKey',\n\t\t'alignment-baseline': 'alignmentBaseline',\n\t\talignmentbaseline: 'alignmentBaseline',\n\t\tallowedblocks: 'allowedBlocks',\n\t\tallowfullscreen: 'allowFullScreen',\n\t\tallowreorder: 'allowReorder',\n\t\t'arabic-form': 'arabicForm',\n\t\tarabicform: 'arabicForm',\n\t\tattributename: 'attributeName',\n\t\tattributetype: 'attributeType',\n\t\tautocapitalize: 'autoCapitalize',\n\t\tautocomplete: 'autoComplete',\n\t\tautocorrect: 'autoCorrect',\n\t\tautofocus: 'autoFocus',\n\t\tautoplay: 'autoPlay',\n\t\tautoreverse: 'autoReverse',\n\t\tautosave: 'autoSave',\n\t\tbasefrequency: 'baseFrequency',\n\t\t'baseline-shift': 'baselineShift',\n\t\tbaselineshift: 'baselineShift',\n\t\tbaseprofile: 'baseProfile',\n\t\tcalcmode: 'calcMode',\n\t\t'cap-height': 'capHeight',\n\t\tcapheight: 'capHeight',\n\t\tcellpadding: 'cellPadding',\n\t\tcellspacing: 'cellSpacing',\n\t\tcharset: 'charSet',\n\t\tclass: 'className',\n\t\tclassid: 'classID',\n\t\tclassname: 'className',\n\t\t'clip-path': 'clipPath',\n\t\t'clip-rule': 'clipRule',\n\t\tclippath: 'clipPath',\n\t\tclippathunits: 'clipPathUnits',\n\t\tcliprule: 'clipRule',\n\t\t'color-interpolation': 'colorInterpolation',\n\t\t'color-interpolation-filters': 'colorInterpolationFilters',\n\t\t'color-profile': 'colorProfile',\n\t\t'color-rendering': 'colorRendering',\n\t\tcolorinterpolation: 'colorInterpolation',\n\t\tcolorinterpolationfilters: 'colorInterpolationFilters',\n\t\tcolorprofile: 'colorProfile',\n\t\tcolorrendering: 'colorRendering',\n\t\tcolspan: 'colSpan',\n\t\tcontenteditable: 'contentEditable',\n\t\tcontentscripttype: 'contentScriptType',\n\t\tcontentstyletype: 'contentStyleType',\n\t\tcontextmenu: 'contextMenu',\n\t\tcontrolslist: 'controlsList',\n\t\tcrossorigin: 'crossOrigin',\n\t\tdangerouslysetinnerhtml: 'dangerouslySetInnerHTML',\n\t\tdatetime: 'dateTime',\n\t\tdefaultchecked: 'defaultChecked',\n\t\tdefaultvalue: 'defaultValue',\n\t\tdiffuseconstant: 'diffuseConstant',\n\t\tdisablepictureinpicture: 'disablePictureInPicture',\n\t\tdisableremoteplayback: 'disableRemotePlayback',\n\t\t'dominant-baseline': 'dominantBaseline',\n\t\tdominantbaseline: 'dominantBaseline',\n\t\tedgemode: 'edgeMode',\n\t\t'enable-background': 'enableBackground',\n\t\tenablebackground: 'enableBackground',\n\t\tenctype: 'encType',\n\t\tenterkeyhint: 'enterKeyHint',\n\t\texternalresourcesrequired: 'externalResourcesRequired',\n\t\t'fill-opacity': 'fillOpacity',\n\t\t'fill-rule': 'fillRule',\n\t\tfillopacity: 'fillOpacity',\n\t\tfillrule: 'fillRule',\n\t\tfilterres: 'filterRes',\n\t\tfilterunits: 'filterUnits',\n\t\t'flood-color': 'floodColor',\n\t\t'flood-opacity': 'floodOpacity',\n\t\tfloodcolor: 'floodColor',\n\t\tfloodopacity: 'floodOpacity',\n\t\t'font-family': 'fontFamily',\n\t\t'font-size': 'fontSize',\n\t\t'font-size-adjust': 'fontSizeAdjust',\n\t\t'font-stretch': 'fontStretch',\n\t\t'font-style': 'fontStyle',\n\t\t'font-variant': 'fontVariant',\n\t\t'font-weight': 'fontWeight',\n\t\tfontfamily: 'fontFamily',\n\t\tfontsize: 'fontSize',\n\t\tfontsizeadjust: 'fontSizeAdjust',\n\t\tfontstretch: 'fontStretch',\n\t\tfontstyle: 'fontStyle',\n\t\tfontvariant: 'fontVariant',\n\t\tfontweight: 'fontWeight',\n\t\tfor: 'htmlFor',\n\t\tforeignobject: 'foreignObject',\n\t\tformaction: 'formAction',\n\t\tformenctype: 'formEncType',\n\t\tformmethod: 'formMethod',\n\t\tformnovalidate: 'formNoValidate',\n\t\tformtarget: 'formTarget',\n\t\tframeborder: 'frameBorder',\n\t\t'glyph-name': 'glyphName',\n\t\t'glyph-orientation-horizontal': 'glyphOrientationHorizontal',\n\t\t'glyph-orientation-vertical': 'glyphOrientationVertical',\n\t\tglyphname: 'glyphName',\n\t\tglyphorientationhorizontal: 'glyphOrientationHorizontal',\n\t\tglyphorientationvertical: 'glyphOrientationVertical',\n\t\tglyphref: 'glyphRef',\n\t\tgradienttransform: 'gradientTransform',\n\t\tgradientunits: 'gradientUnits',\n\t\t'horiz-adv-x': 'horizAdvX',\n\t\t'horiz-origin-x': 'horizOriginX',\n\t\thorizadvx: 'horizAdvX',\n\t\thorizoriginx: 'horizOriginX',\n\t\threflang: 'hrefLang',\n\t\thtmlfor: 'htmlFor',\n\t\t'http-equiv': 'httpEquiv',\n\t\thttpequiv: 'httpEquiv',\n\t\t'image-rendering': 'imageRendering',\n\t\timagerendering: 'imageRendering',\n\t\tinnerhtml: 'innerHTML',\n\t\tinputmode: 'inputMode',\n\t\titemid: 'itemID',\n\t\titemprop: 'itemProp',\n\t\titemref: 'itemRef',\n\t\titemscope: 'itemScope',\n\t\titemtype: 'itemType',\n\t\tkernelmatrix: 'kernelMatrix',\n\t\tkernelunitlength: 'kernelUnitLength',\n\t\tkeyparams: 'keyParams',\n\t\tkeypoints: 'keyPoints',\n\t\tkeysplines: 'keySplines',\n\t\tkeytimes: 'keyTimes',\n\t\tkeytype: 'keyType',\n\t\tlengthadjust: 'lengthAdjust',\n\t\t'letter-spacing': 'letterSpacing',\n\t\tletterspacing: 'letterSpacing',\n\t\t'lighting-color': 'lightingColor',\n\t\tlightingcolor: 'lightingColor',\n\t\tlimitingconeangle: 'limitingConeAngle',\n\t\tmarginheight: 'marginHeight',\n\t\tmarginwidth: 'marginWidth',\n\t\t'marker-end': 'markerEnd',\n\t\t'marker-mid': 'markerMid',\n\t\t'marker-start': 'markerStart',\n\t\tmarkerend: 'markerEnd',\n\t\tmarkerheight: 'markerHeight',\n\t\tmarkermid: 'markerMid',\n\t\tmarkerstart: 'markerStart',\n\t\tmarkerunits: 'markerUnits',\n\t\tmarkerwidth: 'markerWidth',\n\t\tmaskcontentunits: 'maskContentUnits',\n\t\tmaskunits: 'maskUnits',\n\t\tmaxlength: 'maxLength',\n\t\tmediagroup: 'mediaGroup',\n\t\tminlength: 'minLength',\n\t\tnomodule: 'noModule',\n\t\tnovalidate: 'noValidate',\n\t\tnumoctaves: 'numOctaves',\n\t\t'overline-position': 'overlinePosition',\n\t\t'overline-thickness': 'overlineThickness',\n\t\toverlineposition: 'overlinePosition',\n\t\toverlinethickness: 'overlineThickness',\n\t\t'paint-order': 'paintOrder',\n\t\tpaintorder: 'paintOrder',\n\t\t'panose-1': 'panose1',\n\t\tpathlength: 'pathLength',\n\t\tpatterncontentunits: 'patternContentUnits',\n\t\tpatterntransform: 'patternTransform',\n\t\tpatternunits: 'patternUnits',\n\t\tplaysinline: 'playsInline',\n\t\t'pointer-events': 'pointerEvents',\n\t\tpointerevents: 'pointerEvents',\n\t\tpointsatx: 'pointsAtX',\n\t\tpointsaty: 'pointsAtY',\n\t\tpointsatz: 'pointsAtZ',\n\t\tpreservealpha: 'preserveAlpha',\n\t\tpreserveaspectratio: 'preserveAspectRatio',\n\t\tprimitiveunits: 'primitiveUnits',\n\t\tradiogroup: 'radioGroup',\n\t\treadonly: 'readOnly',\n\t\treferrerpolicy: 'referrerPolicy',\n\t\trefx: 'refX',\n\t\trefy: 'refY',\n\t\t'rendering-intent': 'renderingIntent',\n\t\trenderingintent: 'renderingIntent',\n\t\trepeatcount: 'repeatCount',\n\t\trepeatdur: 'repeatDur',\n\t\trequiredextensions: 'requiredExtensions',\n\t\trequiredfeatures: 'requiredFeatures',\n\t\trowspan: 'rowSpan',\n\t\t'shape-rendering': 'shapeRendering',\n\t\tshaperendering: 'shapeRendering',\n\t\tspecularconstant: 'specularConstant',\n\t\tspecularexponent: 'specularExponent',\n\t\tspellcheck: 'spellCheck',\n\t\tspreadmethod: 'spreadMethod',\n\t\tsrcdoc: 'srcDoc',\n\t\tsrclang: 'srcLang',\n\t\tsrcset: 'srcSet',\n\t\tstartoffset: 'startOffset',\n\t\tstddeviation: 'stdDeviation',\n\t\tstitchtiles: 'stitchTiles',\n\t\t'stop-color': 'stopColor',\n\t\t'stop-opacity': 'stopOpacity',\n\t\tstopcolor: 'stopColor',\n\t\tstopopacity: 'stopOpacity',\n\t\t'strikethrough-position': 'strikethroughPosition',\n\t\t'strikethrough-thickness': 'strikethroughThickness',\n\t\tstrikethroughposition: 'strikethroughPosition',\n\t\tstrikethroughthickness: 'strikethroughThickness',\n\t\t'stroke-dasharray': 'strokeDasharray',\n\t\t'stroke-dashoffset': 'strokeDashoffset',\n\t\t'stroke-linecap': 'strokeLinecap',\n\t\t'stroke-linejoin': 'strokeLinejoin',\n\t\t'stroke-miterlimit': 'strokeMiterlimit',\n\t\t'stroke-opacity': 'strokeOpacity',\n\t\t'stroke-width': 'strokeWidth',\n\t\tstrokedasharray: 'strokeDasharray',\n\t\tstrokedashoffset: 'strokeDashoffset',\n\t\tstrokelinecap: 'strokeLinecap',\n\t\tstrokelinejoin: 'strokeLinejoin',\n\t\tstrokemiterlimit: 'strokeMiterlimit',\n\t\tstrokeopacity: 'strokeOpacity',\n\t\tstrokewidth: 'strokeWidth',\n\t\tsuppresscontenteditablewarning: 'suppressContentEditableWarning',\n\t\tsuppresshydrationwarning: 'suppressHydrationWarning',\n\t\tsurfacescale: 'surfaceScale',\n\t\tsystemlanguage: 'systemLanguage',\n\t\ttabindex: 'tabIndex',\n\t\ttablevalues: 'tableValues',\n\t\ttargetx: 'targetX',\n\t\ttargety: 'targetY',\n\t\ttemplatelock: 'templateLock',\n\t\t'text-anchor': 'textAnchor',\n\t\t'text-decoration': 'textDecoration',\n\t\t'text-rendering': 'textRendering',\n\t\ttextanchor: 'textAnchor',\n\t\ttextdecoration: 'textDecoration',\n\t\ttextlength: 'textLength',\n\t\ttextrendering: 'textRendering',\n\t\t'underline-position': 'underlinePosition',\n\t\t'underline-thickness': 'underlineThickness',\n\t\tunderlineposition: 'underlinePosition',\n\t\tunderlinethickness: 'underlineThickness',\n\t\t'unicode-bidi': 'unicodeBidi',\n\t\t'unicode-range': 'unicodeRange',\n\t\tunicodebidi: 'unicodeBidi',\n\t\tunicoderange: 'unicodeRange',\n\t\t'units-per-em': 'unitsPerEm',\n\t\tunitsperem: 'unitsPerEm',\n\t\tusemap: 'useMap',\n\t\t'v-alphabetic': 'vAlphabetic',\n\t\t'v-hanging': 'vHanging',\n\t\t'v-ideographic': 'vIdeographic',\n\t\t'v-mathematical': 'vMathematical',\n\t\tvalphabetic: 'vAlphabetic',\n\t\t'vector-effect': 'vectorEffect',\n\t\tvectoreffect: 'vectorEffect',\n\t\t'vert-adv-y': 'vertAdvY',\n\t\t'vert-origin-x': 'vertOriginX',\n\t\t'vert-origin-y': 'vertOriginY',\n\t\tvertadvy: 'vertAdvY',\n\t\tvertoriginx: 'vertOriginX',\n\t\tvertoriginy: 'vertOriginY',\n\t\tvhanging: 'vHanging',\n\t\tvideographic: 'vIdeographic',\n\t\tviewbox: 'viewBox',\n\t\tviewtarget: 'viewTarget',\n\t\tvmathematical: 'vMathematical',\n\t\t'word-spacing': 'wordSpacing',\n\t\twordspacing: 'wordSpacing',\n\t\t'writing-mode': 'writingMode',\n\t\twritingmode: 'writingMode',\n\t\t'x-height': 'xHeight',\n\t\txchannelselector: 'xChannelSelector',\n\t\txheight: 'xHeight',\n\t\t'xlink:actuate': 'xlinkActuate',\n\t\t'xlink:arcrole': 'xlinkArcrole',\n\t\t'xlink:href': 'xlinkHref',\n\t\t'xlink:role': 'xlinkRole',\n\t\t'xlink:show': 'xlinkShow',\n\t\t'xlink:title': 'xlinkTitle',\n\t\t'xlink:type': 'xlinkType',\n\t\txlinkactuate: 'xlinkActuate',\n\t\txlinkarcrole: 'xlinkArcrole',\n\t\txlinkhref: 'xlinkHref',\n\t\txlinkrole: 'xlinkRole',\n\t\txlinkshow: 'xlinkShow',\n\t\txlinktitle: 'xlinkTitle',\n\t\txlinktype: 'xlinkType',\n\t\t'xml:base': 'xmlBase',\n\t\t'xml:lang': 'xmlLang',\n\t\t'xml:space': 'xmlSpace',\n\t\txmlbase: 'xmlBase',\n\t\txmllang: 'xmlLang',\n\t\t'xmlns:xlink': 'xmlnsXlink',\n\t\txmlnsxlink: 'xmlnsXlink',\n\t\txmlspace: 'xmlSpace',\n\t\tychannelselector: 'yChannelSelector',\n\t\tzoomandpan: 'zoomAndPan',\n\t};\n} )( jQuery );\n","var charenc = {\n // UTF-8 encoding\n utf8: {\n // Convert a string to a byte array\n stringToBytes: function(str) {\n return charenc.bin.stringToBytes(unescape(encodeURIComponent(str)));\n },\n\n // Convert a byte array to a string\n bytesToString: function(bytes) {\n return decodeURIComponent(escape(charenc.bin.bytesToString(bytes)));\n }\n },\n\n // Binary encoding\n bin: {\n // Convert a string to a byte array\n stringToBytes: function(str) {\n for (var bytes = [], i = 0; i < str.length; i++)\n bytes.push(str.charCodeAt(i) & 0xFF);\n return bytes;\n },\n\n // Convert a byte array to a string\n bytesToString: function(bytes) {\n for (var str = [], i = 0; i < bytes.length; i++)\n str.push(String.fromCharCode(bytes[i]));\n return str.join('');\n }\n }\n};\n\nmodule.exports = charenc;\n","(function() {\n var base64map\n = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/',\n\n crypt = {\n // Bit-wise rotation left\n rotl: function(n, b) {\n return (n << b) | (n >>> (32 - b));\n },\n\n // Bit-wise rotation right\n rotr: function(n, b) {\n return (n << (32 - b)) | (n >>> b);\n },\n\n // Swap big-endian to little-endian and vice versa\n endian: function(n) {\n // If number given, swap endian\n if (n.constructor == Number) {\n return crypt.rotl(n, 8) & 0x00FF00FF | crypt.rotl(n, 24) & 0xFF00FF00;\n }\n\n // Else, assume array and swap all items\n for (var i = 0; i < n.length; i++)\n n[i] = crypt.endian(n[i]);\n return n;\n },\n\n // Generate an array of any length of random bytes\n randomBytes: function(n) {\n for (var bytes = []; n > 0; n--)\n bytes.push(Math.floor(Math.random() * 256));\n return bytes;\n },\n\n // Convert a byte array to big-endian 32-bit words\n bytesToWords: function(bytes) {\n for (var words = [], i = 0, b = 0; i < bytes.length; i++, b += 8)\n words[b >>> 5] |= bytes[i] << (24 - b % 32);\n return words;\n },\n\n // Convert big-endian 32-bit words to a byte array\n wordsToBytes: function(words) {\n for (var bytes = [], b = 0; b < words.length * 32; b += 8)\n bytes.push((words[b >>> 5] >>> (24 - b % 32)) & 0xFF);\n return bytes;\n },\n\n // Convert a byte array to a hex string\n bytesToHex: function(bytes) {\n for (var hex = [], i = 0; i < bytes.length; i++) {\n hex.push((bytes[i] >>> 4).toString(16));\n hex.push((bytes[i] & 0xF).toString(16));\n }\n return hex.join('');\n },\n\n // Convert a hex string to a byte array\n hexToBytes: function(hex) {\n for (var bytes = [], c = 0; c < hex.length; c += 2)\n bytes.push(parseInt(hex.substr(c, 2), 16));\n return bytes;\n },\n\n // Convert a byte array to a base-64 string\n bytesToBase64: function(bytes) {\n for (var base64 = [], i = 0; i < bytes.length; i += 3) {\n var triplet = (bytes[i] << 16) | (bytes[i + 1] << 8) | bytes[i + 2];\n for (var j = 0; j < 4; j++)\n if (i * 8 + j * 6 <= bytes.length * 8)\n base64.push(base64map.charAt((triplet >>> 6 * (3 - j)) & 0x3F));\n else\n base64.push('=');\n }\n return base64.join('');\n },\n\n // Convert a base-64 string to a byte array\n base64ToBytes: function(base64) {\n // Remove non-base-64 characters\n base64 = base64.replace(/[^A-Z0-9+\\/]/ig, '');\n\n for (var bytes = [], i = 0, imod4 = 0; i < base64.length;\n imod4 = ++i % 4) {\n if (imod4 == 0) continue;\n bytes.push(((base64map.indexOf(base64.charAt(i - 1))\n & (Math.pow(2, -2 * imod4 + 8) - 1)) << (imod4 * 2))\n | (base64map.indexOf(base64.charAt(i)) >>> (6 - imod4 * 2)));\n }\n return bytes;\n }\n };\n\n module.exports = crypt;\n})();\n","/*!\n * Determine if an object is a Buffer\n *\n * @author Feross Aboukhadijeh \n * @license MIT\n */\n\n// The _isBuffer check is for Safari 5-7 support, because it's missing\n// Object.prototype.constructor. Remove this eventually\nmodule.exports = function (obj) {\n return obj != null && (isBuffer(obj) || isSlowBuffer(obj) || !!obj._isBuffer)\n}\n\nfunction isBuffer (obj) {\n return !!obj.constructor && typeof obj.constructor.isBuffer === 'function' && obj.constructor.isBuffer(obj)\n}\n\n// For Node v0.10 support. Remove this eventually.\nfunction isSlowBuffer (obj) {\n return typeof obj.readFloatLE === 'function' && typeof obj.slice === 'function' && isBuffer(obj.slice(0, 0))\n}\n","(function(){\r\n var crypt = require('crypt'),\r\n utf8 = require('charenc').utf8,\r\n isBuffer = require('is-buffer'),\r\n bin = require('charenc').bin,\r\n\r\n // The core\r\n md5 = function (message, options) {\r\n // Convert to byte array\r\n if (message.constructor == String)\r\n if (options && options.encoding === 'binary')\r\n message = bin.stringToBytes(message);\r\n else\r\n message = utf8.stringToBytes(message);\r\n else if (isBuffer(message))\r\n message = Array.prototype.slice.call(message, 0);\r\n else if (!Array.isArray(message) && message.constructor !== Uint8Array)\r\n message = message.toString();\r\n // else, assume byte array already\r\n\r\n var m = crypt.bytesToWords(message),\r\n l = message.length * 8,\r\n a = 1732584193,\r\n b = -271733879,\r\n c = -1732584194,\r\n d = 271733878;\r\n\r\n // Swap endian\r\n for (var i = 0; i < m.length; i++) {\r\n m[i] = ((m[i] << 8) | (m[i] >>> 24)) & 0x00FF00FF |\r\n ((m[i] << 24) | (m[i] >>> 8)) & 0xFF00FF00;\r\n }\r\n\r\n // Padding\r\n m[l >>> 5] |= 0x80 << (l % 32);\r\n m[(((l + 64) >>> 9) << 4) + 14] = l;\r\n\r\n // Method shortcuts\r\n var FF = md5._ff,\r\n GG = md5._gg,\r\n HH = md5._hh,\r\n II = md5._ii;\r\n\r\n for (var i = 0; i < m.length; i += 16) {\r\n\r\n var aa = a,\r\n bb = b,\r\n cc = c,\r\n dd = d;\r\n\r\n a = FF(a, b, c, d, m[i+ 0], 7, -680876936);\r\n d = FF(d, a, b, c, m[i+ 1], 12, -389564586);\r\n c = FF(c, d, a, b, m[i+ 2], 17, 606105819);\r\n b = FF(b, c, d, a, m[i+ 3], 22, -1044525330);\r\n a = FF(a, b, c, d, m[i+ 4], 7, -176418897);\r\n d = FF(d, a, b, c, m[i+ 5], 12, 1200080426);\r\n c = FF(c, d, a, b, m[i+ 6], 17, -1473231341);\r\n b = FF(b, c, d, a, m[i+ 7], 22, -45705983);\r\n a = FF(a, b, c, d, m[i+ 8], 7, 1770035416);\r\n d = FF(d, a, b, c, m[i+ 9], 12, -1958414417);\r\n c = FF(c, d, a, b, m[i+10], 17, -42063);\r\n b = FF(b, c, d, a, m[i+11], 22, -1990404162);\r\n a = FF(a, b, c, d, m[i+12], 7, 1804603682);\r\n d = FF(d, a, b, c, m[i+13], 12, -40341101);\r\n c = FF(c, d, a, b, m[i+14], 17, -1502002290);\r\n b = FF(b, c, d, a, m[i+15], 22, 1236535329);\r\n\r\n a = GG(a, b, c, d, m[i+ 1], 5, -165796510);\r\n d = GG(d, a, b, c, m[i+ 6], 9, -1069501632);\r\n c = GG(c, d, a, b, m[i+11], 14, 643717713);\r\n b = GG(b, c, d, a, m[i+ 0], 20, -373897302);\r\n a = GG(a, b, c, d, m[i+ 5], 5, -701558691);\r\n d = GG(d, a, b, c, m[i+10], 9, 38016083);\r\n c = GG(c, d, a, b, m[i+15], 14, -660478335);\r\n b = GG(b, c, d, a, m[i+ 4], 20, -405537848);\r\n a = GG(a, b, c, d, m[i+ 9], 5, 568446438);\r\n d = GG(d, a, b, c, m[i+14], 9, -1019803690);\r\n c = GG(c, d, a, b, m[i+ 3], 14, -187363961);\r\n b = GG(b, c, d, a, m[i+ 8], 20, 1163531501);\r\n a = GG(a, b, c, d, m[i+13], 5, -1444681467);\r\n d = GG(d, a, b, c, m[i+ 2], 9, -51403784);\r\n c = GG(c, d, a, b, m[i+ 7], 14, 1735328473);\r\n b = GG(b, c, d, a, m[i+12], 20, -1926607734);\r\n\r\n a = HH(a, b, c, d, m[i+ 5], 4, -378558);\r\n d = HH(d, a, b, c, m[i+ 8], 11, -2022574463);\r\n c = HH(c, d, a, b, m[i+11], 16, 1839030562);\r\n b = HH(b, c, d, a, m[i+14], 23, -35309556);\r\n a = HH(a, b, c, d, m[i+ 1], 4, -1530992060);\r\n d = HH(d, a, b, c, m[i+ 4], 11, 1272893353);\r\n c = HH(c, d, a, b, m[i+ 7], 16, -155497632);\r\n b = HH(b, c, d, a, m[i+10], 23, -1094730640);\r\n a = HH(a, b, c, d, m[i+13], 4, 681279174);\r\n d = HH(d, a, b, c, m[i+ 0], 11, -358537222);\r\n c = HH(c, d, a, b, m[i+ 3], 16, -722521979);\r\n b = HH(b, c, d, a, m[i+ 6], 23, 76029189);\r\n a = HH(a, b, c, d, m[i+ 9], 4, -640364487);\r\n d = HH(d, a, b, c, m[i+12], 11, -421815835);\r\n c = HH(c, d, a, b, m[i+15], 16, 530742520);\r\n b = HH(b, c, d, a, m[i+ 2], 23, -995338651);\r\n\r\n a = II(a, b, c, d, m[i+ 0], 6, -198630844);\r\n d = II(d, a, b, c, m[i+ 7], 10, 1126891415);\r\n c = II(c, d, a, b, m[i+14], 15, -1416354905);\r\n b = II(b, c, d, a, m[i+ 5], 21, -57434055);\r\n a = II(a, b, c, d, m[i+12], 6, 1700485571);\r\n d = II(d, a, b, c, m[i+ 3], 10, -1894986606);\r\n c = II(c, d, a, b, m[i+10], 15, -1051523);\r\n b = II(b, c, d, a, m[i+ 1], 21, -2054922799);\r\n a = II(a, b, c, d, m[i+ 8], 6, 1873313359);\r\n d = II(d, a, b, c, m[i+15], 10, -30611744);\r\n c = II(c, d, a, b, m[i+ 6], 15, -1560198380);\r\n b = II(b, c, d, a, m[i+13], 21, 1309151649);\r\n a = II(a, b, c, d, m[i+ 4], 6, -145523070);\r\n d = II(d, a, b, c, m[i+11], 10, -1120210379);\r\n c = II(c, d, a, b, m[i+ 2], 15, 718787259);\r\n b = II(b, c, d, a, m[i+ 9], 21, -343485551);\r\n\r\n a = (a + aa) >>> 0;\r\n b = (b + bb) >>> 0;\r\n c = (c + cc) >>> 0;\r\n d = (d + dd) >>> 0;\r\n }\r\n\r\n return crypt.endian([a, b, c, d]);\r\n };\r\n\r\n // Auxiliary functions\r\n md5._ff = function (a, b, c, d, x, s, t) {\r\n var n = a + (b & c | ~b & d) + (x >>> 0) + t;\r\n return ((n << s) | (n >>> (32 - s))) + b;\r\n };\r\n md5._gg = function (a, b, c, d, x, s, t) {\r\n var n = a + (b & d | c & ~d) + (x >>> 0) + t;\r\n return ((n << s) | (n >>> (32 - s))) + b;\r\n };\r\n md5._hh = function (a, b, c, d, x, s, t) {\r\n var n = a + (b ^ c ^ d) + (x >>> 0) + t;\r\n return ((n << s) | (n >>> (32 - s))) + b;\r\n };\r\n md5._ii = function (a, b, c, d, x, s, t) {\r\n var n = a + (c ^ (b | ~d)) + (x >>> 0) + t;\r\n return ((n << s) | (n >>> (32 - s))) + b;\r\n };\r\n\r\n // Package private blocksize\r\n md5._blocksize = 16;\r\n md5._digestsize = 16;\r\n\r\n module.exports = function (message, options) {\r\n if (message === undefined || message === null)\r\n throw new Error('Illegal argument ' + message);\r\n\r\n var digestbytes = crypt.wordsToBytes(md5(message, options));\r\n return options && options.asBytes ? digestbytes :\r\n options && options.asString ? bin.bytesToString(digestbytes) :\r\n crypt.bytesToHex(digestbytes);\r\n };\r\n\r\n})();\r\n","/**\n * @license React\n * react.development.js\n *\n * Copyright (c) Facebook, Inc. and its affiliates.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */\n\n'use strict';\n\nif (process.env.NODE_ENV !== \"production\") {\n (function() {\n\n 'use strict';\n\n/* global __REACT_DEVTOOLS_GLOBAL_HOOK__ */\nif (\n typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ !== 'undefined' &&\n typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStart ===\n 'function'\n) {\n __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStart(new Error());\n}\n var ReactVersion = '18.2.0';\n\n// ATTENTION\n// When adding new symbols to this file,\n// Please consider also adding to 'react-devtools-shared/src/backend/ReactSymbols'\n// The Symbol used to tag the ReactElement-like types.\nvar REACT_ELEMENT_TYPE = Symbol.for('react.element');\nvar REACT_PORTAL_TYPE = Symbol.for('react.portal');\nvar REACT_FRAGMENT_TYPE = Symbol.for('react.fragment');\nvar REACT_STRICT_MODE_TYPE = Symbol.for('react.strict_mode');\nvar REACT_PROFILER_TYPE = Symbol.for('react.profiler');\nvar REACT_PROVIDER_TYPE = Symbol.for('react.provider');\nvar REACT_CONTEXT_TYPE = Symbol.for('react.context');\nvar REACT_FORWARD_REF_TYPE = Symbol.for('react.forward_ref');\nvar REACT_SUSPENSE_TYPE = Symbol.for('react.suspense');\nvar REACT_SUSPENSE_LIST_TYPE = Symbol.for('react.suspense_list');\nvar REACT_MEMO_TYPE = Symbol.for('react.memo');\nvar REACT_LAZY_TYPE = Symbol.for('react.lazy');\nvar REACT_OFFSCREEN_TYPE = Symbol.for('react.offscreen');\nvar MAYBE_ITERATOR_SYMBOL = Symbol.iterator;\nvar FAUX_ITERATOR_SYMBOL = '@@iterator';\nfunction getIteratorFn(maybeIterable) {\n if (maybeIterable === null || typeof maybeIterable !== 'object') {\n return null;\n }\n\n var maybeIterator = MAYBE_ITERATOR_SYMBOL && maybeIterable[MAYBE_ITERATOR_SYMBOL] || maybeIterable[FAUX_ITERATOR_SYMBOL];\n\n if (typeof maybeIterator === 'function') {\n return maybeIterator;\n }\n\n return null;\n}\n\n/**\n * Keeps track of the current dispatcher.\n */\nvar ReactCurrentDispatcher = {\n /**\n * @internal\n * @type {ReactComponent}\n */\n current: null\n};\n\n/**\n * Keeps track of the current batch's configuration such as how long an update\n * should suspend for if it needs to.\n */\nvar ReactCurrentBatchConfig = {\n transition: null\n};\n\nvar ReactCurrentActQueue = {\n current: null,\n // Used to reproduce behavior of `batchedUpdates` in legacy mode.\n isBatchingLegacy: false,\n didScheduleLegacyUpdate: false\n};\n\n/**\n * Keeps track of the current owner.\n *\n * The current owner is the component who should own any components that are\n * currently being constructed.\n */\nvar ReactCurrentOwner = {\n /**\n * @internal\n * @type {ReactComponent}\n */\n current: null\n};\n\nvar ReactDebugCurrentFrame = {};\nvar currentExtraStackFrame = null;\nfunction setExtraStackFrame(stack) {\n {\n currentExtraStackFrame = stack;\n }\n}\n\n{\n ReactDebugCurrentFrame.setExtraStackFrame = function (stack) {\n {\n currentExtraStackFrame = stack;\n }\n }; // Stack implementation injected by the current renderer.\n\n\n ReactDebugCurrentFrame.getCurrentStack = null;\n\n ReactDebugCurrentFrame.getStackAddendum = function () {\n var stack = ''; // Add an extra top frame while an element is being validated\n\n if (currentExtraStackFrame) {\n stack += currentExtraStackFrame;\n } // Delegate to the injected renderer-specific implementation\n\n\n var impl = ReactDebugCurrentFrame.getCurrentStack;\n\n if (impl) {\n stack += impl() || '';\n }\n\n return stack;\n };\n}\n\n// -----------------------------------------------------------------------------\n\nvar enableScopeAPI = false; // Experimental Create Event Handle API.\nvar enableCacheElement = false;\nvar enableTransitionTracing = false; // No known bugs, but needs performance testing\n\nvar enableLegacyHidden = false; // Enables unstable_avoidThisFallback feature in Fiber\n// stuff. Intended to enable React core members to more easily debug scheduling\n// issues in DEV builds.\n\nvar enableDebugTracing = false; // Track which Fiber(s) schedule render work.\n\nvar ReactSharedInternals = {\n ReactCurrentDispatcher: ReactCurrentDispatcher,\n ReactCurrentBatchConfig: ReactCurrentBatchConfig,\n ReactCurrentOwner: ReactCurrentOwner\n};\n\n{\n ReactSharedInternals.ReactDebugCurrentFrame = ReactDebugCurrentFrame;\n ReactSharedInternals.ReactCurrentActQueue = ReactCurrentActQueue;\n}\n\n// by calls to these methods by a Babel plugin.\n//\n// In PROD (or in packages without access to React internals),\n// they are left as they are instead.\n\nfunction warn(format) {\n {\n {\n for (var _len = arguments.length, args = new Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) {\n args[_key - 1] = arguments[_key];\n }\n\n printWarning('warn', format, args);\n }\n }\n}\nfunction error(format) {\n {\n {\n for (var _len2 = arguments.length, args = new Array(_len2 > 1 ? _len2 - 1 : 0), _key2 = 1; _key2 < _len2; _key2++) {\n args[_key2 - 1] = arguments[_key2];\n }\n\n printWarning('error', format, args);\n }\n }\n}\n\nfunction printWarning(level, format, args) {\n // When changing this logic, you might want to also\n // update consoleWithStackDev.www.js as well.\n {\n var ReactDebugCurrentFrame = ReactSharedInternals.ReactDebugCurrentFrame;\n var stack = ReactDebugCurrentFrame.getStackAddendum();\n\n if (stack !== '') {\n format += '%s';\n args = args.concat([stack]);\n } // eslint-disable-next-line react-internal/safe-string-coercion\n\n\n var argsWithFormat = args.map(function (item) {\n return String(item);\n }); // Careful: RN currently depends on this prefix\n\n argsWithFormat.unshift('Warning: ' + format); // We intentionally don't use spread (or .apply) directly because it\n // breaks IE9: https://github.com/facebook/react/issues/13610\n // eslint-disable-next-line react-internal/no-production-logging\n\n Function.prototype.apply.call(console[level], console, argsWithFormat);\n }\n}\n\nvar didWarnStateUpdateForUnmountedComponent = {};\n\nfunction warnNoop(publicInstance, callerName) {\n {\n var _constructor = publicInstance.constructor;\n var componentName = _constructor && (_constructor.displayName || _constructor.name) || 'ReactClass';\n var warningKey = componentName + \".\" + callerName;\n\n if (didWarnStateUpdateForUnmountedComponent[warningKey]) {\n return;\n }\n\n error(\"Can't call %s on a component that is not yet mounted. \" + 'This is a no-op, but it might indicate a bug in your application. ' + 'Instead, assign to `this.state` directly or define a `state = {};` ' + 'class property with the desired state in the %s component.', callerName, componentName);\n\n didWarnStateUpdateForUnmountedComponent[warningKey] = true;\n }\n}\n/**\n * This is the abstract API for an update queue.\n */\n\n\nvar ReactNoopUpdateQueue = {\n /**\n * Checks whether or not this composite component is mounted.\n * @param {ReactClass} publicInstance The instance we want to test.\n * @return {boolean} True if mounted, false otherwise.\n * @protected\n * @final\n */\n isMounted: function (publicInstance) {\n return false;\n },\n\n /**\n * Forces an update. This should only be invoked when it is known with\n * certainty that we are **not** in a DOM transaction.\n *\n * You may want to call this when you know that some deeper aspect of the\n * component's state has changed but `setState` was not called.\n *\n * This will not invoke `shouldComponentUpdate`, but it will invoke\n * `componentWillUpdate` and `componentDidUpdate`.\n *\n * @param {ReactClass} publicInstance The instance that should rerender.\n * @param {?function} callback Called after component is updated.\n * @param {?string} callerName name of the calling function in the public API.\n * @internal\n */\n enqueueForceUpdate: function (publicInstance, callback, callerName) {\n warnNoop(publicInstance, 'forceUpdate');\n },\n\n /**\n * Replaces all of the state. Always use this or `setState` to mutate state.\n * You should treat `this.state` as immutable.\n *\n * There is no guarantee that `this.state` will be immediately updated, so\n * accessing `this.state` after calling this method may return the old value.\n *\n * @param {ReactClass} publicInstance The instance that should rerender.\n * @param {object} completeState Next state.\n * @param {?function} callback Called after component is updated.\n * @param {?string} callerName name of the calling function in the public API.\n * @internal\n */\n enqueueReplaceState: function (publicInstance, completeState, callback, callerName) {\n warnNoop(publicInstance, 'replaceState');\n },\n\n /**\n * Sets a subset of the state. This only exists because _pendingState is\n * internal. This provides a merging strategy that is not available to deep\n * properties which is confusing. TODO: Expose pendingState or don't use it\n * during the merge.\n *\n * @param {ReactClass} publicInstance The instance that should rerender.\n * @param {object} partialState Next partial state to be merged with state.\n * @param {?function} callback Called after component is updated.\n * @param {?string} Name of the calling function in the public API.\n * @internal\n */\n enqueueSetState: function (publicInstance, partialState, callback, callerName) {\n warnNoop(publicInstance, 'setState');\n }\n};\n\nvar assign = Object.assign;\n\nvar emptyObject = {};\n\n{\n Object.freeze(emptyObject);\n}\n/**\n * Base class helpers for the updating state of a component.\n */\n\n\nfunction Component(props, context, updater) {\n this.props = props;\n this.context = context; // If a component has string refs, we will assign a different object later.\n\n this.refs = emptyObject; // We initialize the default updater but the real one gets injected by the\n // renderer.\n\n this.updater = updater || ReactNoopUpdateQueue;\n}\n\nComponent.prototype.isReactComponent = {};\n/**\n * Sets a subset of the state. Always use this to mutate\n * state. You should treat `this.state` as immutable.\n *\n * There is no guarantee that `this.state` will be immediately updated, so\n * accessing `this.state` after calling this method may return the old value.\n *\n * There is no guarantee that calls to `setState` will run synchronously,\n * as they may eventually be batched together. You can provide an optional\n * callback that will be executed when the call to setState is actually\n * completed.\n *\n * When a function is provided to setState, it will be called at some point in\n * the future (not synchronously). It will be called with the up to date\n * component arguments (state, props, context). These values can be different\n * from this.* because your function may be called after receiveProps but before\n * shouldComponentUpdate, and this new state, props, and context will not yet be\n * assigned to this.\n *\n * @param {object|function} partialState Next partial state or function to\n * produce next partial state to be merged with current state.\n * @param {?function} callback Called after state is updated.\n * @final\n * @protected\n */\n\nComponent.prototype.setState = function (partialState, callback) {\n if (typeof partialState !== 'object' && typeof partialState !== 'function' && partialState != null) {\n throw new Error('setState(...): takes an object of state variables to update or a ' + 'function which returns an object of state variables.');\n }\n\n this.updater.enqueueSetState(this, partialState, callback, 'setState');\n};\n/**\n * Forces an update. This should only be invoked when it is known with\n * certainty that we are **not** in a DOM transaction.\n *\n * You may want to call this when you know that some deeper aspect of the\n * component's state has changed but `setState` was not called.\n *\n * This will not invoke `shouldComponentUpdate`, but it will invoke\n * `componentWillUpdate` and `componentDidUpdate`.\n *\n * @param {?function} callback Called after update is complete.\n * @final\n * @protected\n */\n\n\nComponent.prototype.forceUpdate = function (callback) {\n this.updater.enqueueForceUpdate(this, callback, 'forceUpdate');\n};\n/**\n * Deprecated APIs. These APIs used to exist on classic React classes but since\n * we would like to deprecate them, we're not going to move them over to this\n * modern base class. Instead, we define a getter that warns if it's accessed.\n */\n\n\n{\n var deprecatedAPIs = {\n isMounted: ['isMounted', 'Instead, make sure to clean up subscriptions and pending requests in ' + 'componentWillUnmount to prevent memory leaks.'],\n replaceState: ['replaceState', 'Refactor your code to use setState instead (see ' + 'https://github.com/facebook/react/issues/3236).']\n };\n\n var defineDeprecationWarning = function (methodName, info) {\n Object.defineProperty(Component.prototype, methodName, {\n get: function () {\n warn('%s(...) is deprecated in plain JavaScript React classes. %s', info[0], info[1]);\n\n return undefined;\n }\n });\n };\n\n for (var fnName in deprecatedAPIs) {\n if (deprecatedAPIs.hasOwnProperty(fnName)) {\n defineDeprecationWarning(fnName, deprecatedAPIs[fnName]);\n }\n }\n}\n\nfunction ComponentDummy() {}\n\nComponentDummy.prototype = Component.prototype;\n/**\n * Convenience component with default shallow equality check for sCU.\n */\n\nfunction PureComponent(props, context, updater) {\n this.props = props;\n this.context = context; // If a component has string refs, we will assign a different object later.\n\n this.refs = emptyObject;\n this.updater = updater || ReactNoopUpdateQueue;\n}\n\nvar pureComponentPrototype = PureComponent.prototype = new ComponentDummy();\npureComponentPrototype.constructor = PureComponent; // Avoid an extra prototype jump for these methods.\n\nassign(pureComponentPrototype, Component.prototype);\npureComponentPrototype.isPureReactComponent = true;\n\n// an immutable object with a single mutable value\nfunction createRef() {\n var refObject = {\n current: null\n };\n\n {\n Object.seal(refObject);\n }\n\n return refObject;\n}\n\nvar isArrayImpl = Array.isArray; // eslint-disable-next-line no-redeclare\n\nfunction isArray(a) {\n return isArrayImpl(a);\n}\n\n/*\n * The `'' + value` pattern (used in in perf-sensitive code) throws for Symbol\n * and Temporal.* types. See https://github.com/facebook/react/pull/22064.\n *\n * The functions in this module will throw an easier-to-understand,\n * easier-to-debug exception with a clear errors message message explaining the\n * problem. (Instead of a confusing exception thrown inside the implementation\n * of the `value` object).\n */\n// $FlowFixMe only called in DEV, so void return is not possible.\nfunction typeName(value) {\n {\n // toStringTag is needed for namespaced types like Temporal.Instant\n var hasToStringTag = typeof Symbol === 'function' && Symbol.toStringTag;\n var type = hasToStringTag && value[Symbol.toStringTag] || value.constructor.name || 'Object';\n return type;\n }\n} // $FlowFixMe only called in DEV, so void return is not possible.\n\n\nfunction willCoercionThrow(value) {\n {\n try {\n testStringCoercion(value);\n return false;\n } catch (e) {\n return true;\n }\n }\n}\n\nfunction testStringCoercion(value) {\n // If you ended up here by following an exception call stack, here's what's\n // happened: you supplied an object or symbol value to React (as a prop, key,\n // DOM attribute, CSS property, string ref, etc.) and when React tried to\n // coerce it to a string using `'' + value`, an exception was thrown.\n //\n // The most common types that will cause this exception are `Symbol` instances\n // and Temporal objects like `Temporal.Instant`. But any object that has a\n // `valueOf` or `[Symbol.toPrimitive]` method that throws will also cause this\n // exception. (Library authors do this to prevent users from using built-in\n // numeric operators like `+` or comparison operators like `>=` because custom\n // methods are needed to perform accurate arithmetic or comparison.)\n //\n // To fix the problem, coerce this object or symbol value to a string before\n // passing it to React. The most reliable way is usually `String(value)`.\n //\n // To find which value is throwing, check the browser or debugger console.\n // Before this exception was thrown, there should be `console.error` output\n // that shows the type (Symbol, Temporal.PlainDate, etc.) that caused the\n // problem and how that type was used: key, atrribute, input value prop, etc.\n // In most cases, this console output also shows the component and its\n // ancestor components where the exception happened.\n //\n // eslint-disable-next-line react-internal/safe-string-coercion\n return '' + value;\n}\nfunction checkKeyStringCoercion(value) {\n {\n if (willCoercionThrow(value)) {\n error('The provided key is an unsupported type %s.' + ' This value must be coerced to a string before before using it here.', typeName(value));\n\n return testStringCoercion(value); // throw (to help callers find troubleshooting comments)\n }\n }\n}\n\nfunction getWrappedName(outerType, innerType, wrapperName) {\n var displayName = outerType.displayName;\n\n if (displayName) {\n return displayName;\n }\n\n var functionName = innerType.displayName || innerType.name || '';\n return functionName !== '' ? wrapperName + \"(\" + functionName + \")\" : wrapperName;\n} // Keep in sync with react-reconciler/getComponentNameFromFiber\n\n\nfunction getContextName(type) {\n return type.displayName || 'Context';\n} // Note that the reconciler package should generally prefer to use getComponentNameFromFiber() instead.\n\n\nfunction getComponentNameFromType(type) {\n if (type == null) {\n // Host root, text node or just invalid type.\n return null;\n }\n\n {\n if (typeof type.tag === 'number') {\n error('Received an unexpected object in getComponentNameFromType(). ' + 'This is likely a bug in React. Please file an issue.');\n }\n }\n\n if (typeof type === 'function') {\n return type.displayName || type.name || null;\n }\n\n if (typeof type === 'string') {\n return type;\n }\n\n switch (type) {\n case REACT_FRAGMENT_TYPE:\n return 'Fragment';\n\n case REACT_PORTAL_TYPE:\n return 'Portal';\n\n case REACT_PROFILER_TYPE:\n return 'Profiler';\n\n case REACT_STRICT_MODE_TYPE:\n return 'StrictMode';\n\n case REACT_SUSPENSE_TYPE:\n return 'Suspense';\n\n case REACT_SUSPENSE_LIST_TYPE:\n return 'SuspenseList';\n\n }\n\n if (typeof type === 'object') {\n switch (type.$$typeof) {\n case REACT_CONTEXT_TYPE:\n var context = type;\n return getContextName(context) + '.Consumer';\n\n case REACT_PROVIDER_TYPE:\n var provider = type;\n return getContextName(provider._context) + '.Provider';\n\n case REACT_FORWARD_REF_TYPE:\n return getWrappedName(type, type.render, 'ForwardRef');\n\n case REACT_MEMO_TYPE:\n var outerName = type.displayName || null;\n\n if (outerName !== null) {\n return outerName;\n }\n\n return getComponentNameFromType(type.type) || 'Memo';\n\n case REACT_LAZY_TYPE:\n {\n var lazyComponent = type;\n var payload = lazyComponent._payload;\n var init = lazyComponent._init;\n\n try {\n return getComponentNameFromType(init(payload));\n } catch (x) {\n return null;\n }\n }\n\n // eslint-disable-next-line no-fallthrough\n }\n }\n\n return null;\n}\n\nvar hasOwnProperty = Object.prototype.hasOwnProperty;\n\nvar RESERVED_PROPS = {\n key: true,\n ref: true,\n __self: true,\n __source: true\n};\nvar specialPropKeyWarningShown, specialPropRefWarningShown, didWarnAboutStringRefs;\n\n{\n didWarnAboutStringRefs = {};\n}\n\nfunction hasValidRef(config) {\n {\n if (hasOwnProperty.call(config, 'ref')) {\n var getter = Object.getOwnPropertyDescriptor(config, 'ref').get;\n\n if (getter && getter.isReactWarning) {\n return false;\n }\n }\n }\n\n return config.ref !== undefined;\n}\n\nfunction hasValidKey(config) {\n {\n if (hasOwnProperty.call(config, 'key')) {\n var getter = Object.getOwnPropertyDescriptor(config, 'key').get;\n\n if (getter && getter.isReactWarning) {\n return false;\n }\n }\n }\n\n return config.key !== undefined;\n}\n\nfunction defineKeyPropWarningGetter(props, displayName) {\n var warnAboutAccessingKey = function () {\n {\n if (!specialPropKeyWarningShown) {\n specialPropKeyWarningShown = true;\n\n error('%s: `key` is not a prop. Trying to access it will result ' + 'in `undefined` being returned. If you need to access the same ' + 'value within the child component, you should pass it as a different ' + 'prop. (https://reactjs.org/link/special-props)', displayName);\n }\n }\n };\n\n warnAboutAccessingKey.isReactWarning = true;\n Object.defineProperty(props, 'key', {\n get: warnAboutAccessingKey,\n configurable: true\n });\n}\n\nfunction defineRefPropWarningGetter(props, displayName) {\n var warnAboutAccessingRef = function () {\n {\n if (!specialPropRefWarningShown) {\n specialPropRefWarningShown = true;\n\n error('%s: `ref` is not a prop. Trying to access it will result ' + 'in `undefined` being returned. If you need to access the same ' + 'value within the child component, you should pass it as a different ' + 'prop. (https://reactjs.org/link/special-props)', displayName);\n }\n }\n };\n\n warnAboutAccessingRef.isReactWarning = true;\n Object.defineProperty(props, 'ref', {\n get: warnAboutAccessingRef,\n configurable: true\n });\n}\n\nfunction warnIfStringRefCannotBeAutoConverted(config) {\n {\n if (typeof config.ref === 'string' && ReactCurrentOwner.current && config.__self && ReactCurrentOwner.current.stateNode !== config.__self) {\n var componentName = getComponentNameFromType(ReactCurrentOwner.current.type);\n\n if (!didWarnAboutStringRefs[componentName]) {\n error('Component \"%s\" contains the string ref \"%s\". ' + 'Support for string refs will be removed in a future major release. ' + 'This case cannot be automatically converted to an arrow function. ' + 'We ask you to manually fix this case by using useRef() or createRef() instead. ' + 'Learn more about using refs safely here: ' + 'https://reactjs.org/link/strict-mode-string-ref', componentName, config.ref);\n\n didWarnAboutStringRefs[componentName] = true;\n }\n }\n }\n}\n/**\n * Factory method to create a new React element. This no longer adheres to\n * the class pattern, so do not use new to call it. Also, instanceof check\n * will not work. Instead test $$typeof field against Symbol.for('react.element') to check\n * if something is a React Element.\n *\n * @param {*} type\n * @param {*} props\n * @param {*} key\n * @param {string|object} ref\n * @param {*} owner\n * @param {*} self A *temporary* helper to detect places where `this` is\n * different from the `owner` when React.createElement is called, so that we\n * can warn. We want to get rid of owner and replace string `ref`s with arrow\n * functions, and as long as `this` and owner are the same, there will be no\n * change in behavior.\n * @param {*} source An annotation object (added by a transpiler or otherwise)\n * indicating filename, line number, and/or other information.\n * @internal\n */\n\n\nvar ReactElement = function (type, key, ref, self, source, owner, props) {\n var element = {\n // This tag allows us to uniquely identify this as a React Element\n $$typeof: REACT_ELEMENT_TYPE,\n // Built-in properties that belong on the element\n type: type,\n key: key,\n ref: ref,\n props: props,\n // Record the component responsible for creating this element.\n _owner: owner\n };\n\n {\n // The validation flag is currently mutative. We put it on\n // an external backing store so that we can freeze the whole object.\n // This can be replaced with a WeakMap once they are implemented in\n // commonly used development environments.\n element._store = {}; // To make comparing ReactElements easier for testing purposes, we make\n // the validation flag non-enumerable (where possible, which should\n // include every environment we run tests in), so the test framework\n // ignores it.\n\n Object.defineProperty(element._store, 'validated', {\n configurable: false,\n enumerable: false,\n writable: true,\n value: false\n }); // self and source are DEV only properties.\n\n Object.defineProperty(element, '_self', {\n configurable: false,\n enumerable: false,\n writable: false,\n value: self\n }); // Two elements created in two different places should be considered\n // equal for testing purposes and therefore we hide it from enumeration.\n\n Object.defineProperty(element, '_source', {\n configurable: false,\n enumerable: false,\n writable: false,\n value: source\n });\n\n if (Object.freeze) {\n Object.freeze(element.props);\n Object.freeze(element);\n }\n }\n\n return element;\n};\n/**\n * Create and return a new ReactElement of the given type.\n * See https://reactjs.org/docs/react-api.html#createelement\n */\n\nfunction createElement(type, config, children) {\n var propName; // Reserved names are extracted\n\n var props = {};\n var key = null;\n var ref = null;\n var self = null;\n var source = null;\n\n if (config != null) {\n if (hasValidRef(config)) {\n ref = config.ref;\n\n {\n warnIfStringRefCannotBeAutoConverted(config);\n }\n }\n\n if (hasValidKey(config)) {\n {\n checkKeyStringCoercion(config.key);\n }\n\n key = '' + config.key;\n }\n\n self = config.__self === undefined ? null : config.__self;\n source = config.__source === undefined ? null : config.__source; // Remaining properties are added to a new props object\n\n for (propName in config) {\n if (hasOwnProperty.call(config, propName) && !RESERVED_PROPS.hasOwnProperty(propName)) {\n props[propName] = config[propName];\n }\n }\n } // Children can be more than one argument, and those are transferred onto\n // the newly allocated props object.\n\n\n var childrenLength = arguments.length - 2;\n\n if (childrenLength === 1) {\n props.children = children;\n } else if (childrenLength > 1) {\n var childArray = Array(childrenLength);\n\n for (var i = 0; i < childrenLength; i++) {\n childArray[i] = arguments[i + 2];\n }\n\n {\n if (Object.freeze) {\n Object.freeze(childArray);\n }\n }\n\n props.children = childArray;\n } // Resolve default props\n\n\n if (type && type.defaultProps) {\n var defaultProps = type.defaultProps;\n\n for (propName in defaultProps) {\n if (props[propName] === undefined) {\n props[propName] = defaultProps[propName];\n }\n }\n }\n\n {\n if (key || ref) {\n var displayName = typeof type === 'function' ? type.displayName || type.name || 'Unknown' : type;\n\n if (key) {\n defineKeyPropWarningGetter(props, displayName);\n }\n\n if (ref) {\n defineRefPropWarningGetter(props, displayName);\n }\n }\n }\n\n return ReactElement(type, key, ref, self, source, ReactCurrentOwner.current, props);\n}\nfunction cloneAndReplaceKey(oldElement, newKey) {\n var newElement = ReactElement(oldElement.type, newKey, oldElement.ref, oldElement._self, oldElement._source, oldElement._owner, oldElement.props);\n return newElement;\n}\n/**\n * Clone and return a new ReactElement using element as the starting point.\n * See https://reactjs.org/docs/react-api.html#cloneelement\n */\n\nfunction cloneElement(element, config, children) {\n if (element === null || element === undefined) {\n throw new Error(\"React.cloneElement(...): The argument must be a React element, but you passed \" + element + \".\");\n }\n\n var propName; // Original props are copied\n\n var props = assign({}, element.props); // Reserved names are extracted\n\n var key = element.key;\n var ref = element.ref; // Self is preserved since the owner is preserved.\n\n var self = element._self; // Source is preserved since cloneElement is unlikely to be targeted by a\n // transpiler, and the original source is probably a better indicator of the\n // true owner.\n\n var source = element._source; // Owner will be preserved, unless ref is overridden\n\n var owner = element._owner;\n\n if (config != null) {\n if (hasValidRef(config)) {\n // Silently steal the ref from the parent.\n ref = config.ref;\n owner = ReactCurrentOwner.current;\n }\n\n if (hasValidKey(config)) {\n {\n checkKeyStringCoercion(config.key);\n }\n\n key = '' + config.key;\n } // Remaining properties override existing props\n\n\n var defaultProps;\n\n if (element.type && element.type.defaultProps) {\n defaultProps = element.type.defaultProps;\n }\n\n for (propName in config) {\n if (hasOwnProperty.call(config, propName) && !RESERVED_PROPS.hasOwnProperty(propName)) {\n if (config[propName] === undefined && defaultProps !== undefined) {\n // Resolve default props\n props[propName] = defaultProps[propName];\n } else {\n props[propName] = config[propName];\n }\n }\n }\n } // Children can be more than one argument, and those are transferred onto\n // the newly allocated props object.\n\n\n var childrenLength = arguments.length - 2;\n\n if (childrenLength === 1) {\n props.children = children;\n } else if (childrenLength > 1) {\n var childArray = Array(childrenLength);\n\n for (var i = 0; i < childrenLength; i++) {\n childArray[i] = arguments[i + 2];\n }\n\n props.children = childArray;\n }\n\n return ReactElement(element.type, key, ref, self, source, owner, props);\n}\n/**\n * Verifies the object is a ReactElement.\n * See https://reactjs.org/docs/react-api.html#isvalidelement\n * @param {?object} object\n * @return {boolean} True if `object` is a ReactElement.\n * @final\n */\n\nfunction isValidElement(object) {\n return typeof object === 'object' && object !== null && object.$$typeof === REACT_ELEMENT_TYPE;\n}\n\nvar SEPARATOR = '.';\nvar SUBSEPARATOR = ':';\n/**\n * Escape and wrap key so it is safe to use as a reactid\n *\n * @param {string} key to be escaped.\n * @return {string} the escaped key.\n */\n\nfunction escape(key) {\n var escapeRegex = /[=:]/g;\n var escaperLookup = {\n '=': '=0',\n ':': '=2'\n };\n var escapedString = key.replace(escapeRegex, function (match) {\n return escaperLookup[match];\n });\n return '$' + escapedString;\n}\n/**\n * TODO: Test that a single child and an array with one item have the same key\n * pattern.\n */\n\n\nvar didWarnAboutMaps = false;\nvar userProvidedKeyEscapeRegex = /\\/+/g;\n\nfunction escapeUserProvidedKey(text) {\n return text.replace(userProvidedKeyEscapeRegex, '$&/');\n}\n/**\n * Generate a key string that identifies a element within a set.\n *\n * @param {*} element A element that could contain a manual key.\n * @param {number} index Index that is used if a manual key is not provided.\n * @return {string}\n */\n\n\nfunction getElementKey(element, index) {\n // Do some typechecking here since we call this blindly. We want to ensure\n // that we don't block potential future ES APIs.\n if (typeof element === 'object' && element !== null && element.key != null) {\n // Explicit key\n {\n checkKeyStringCoercion(element.key);\n }\n\n return escape('' + element.key);\n } // Implicit key determined by the index in the set\n\n\n return index.toString(36);\n}\n\nfunction mapIntoArray(children, array, escapedPrefix, nameSoFar, callback) {\n var type = typeof children;\n\n if (type === 'undefined' || type === 'boolean') {\n // All of the above are perceived as null.\n children = null;\n }\n\n var invokeCallback = false;\n\n if (children === null) {\n invokeCallback = true;\n } else {\n switch (type) {\n case 'string':\n case 'number':\n invokeCallback = true;\n break;\n\n case 'object':\n switch (children.$$typeof) {\n case REACT_ELEMENT_TYPE:\n case REACT_PORTAL_TYPE:\n invokeCallback = true;\n }\n\n }\n }\n\n if (invokeCallback) {\n var _child = children;\n var mappedChild = callback(_child); // If it's the only child, treat the name as if it was wrapped in an array\n // so that it's consistent if the number of children grows:\n\n var childKey = nameSoFar === '' ? SEPARATOR + getElementKey(_child, 0) : nameSoFar;\n\n if (isArray(mappedChild)) {\n var escapedChildKey = '';\n\n if (childKey != null) {\n escapedChildKey = escapeUserProvidedKey(childKey) + '/';\n }\n\n mapIntoArray(mappedChild, array, escapedChildKey, '', function (c) {\n return c;\n });\n } else if (mappedChild != null) {\n if (isValidElement(mappedChild)) {\n {\n // The `if` statement here prevents auto-disabling of the safe\n // coercion ESLint rule, so we must manually disable it below.\n // $FlowFixMe Flow incorrectly thinks React.Portal doesn't have a key\n if (mappedChild.key && (!_child || _child.key !== mappedChild.key)) {\n checkKeyStringCoercion(mappedChild.key);\n }\n }\n\n mappedChild = cloneAndReplaceKey(mappedChild, // Keep both the (mapped) and old keys if they differ, just as\n // traverseAllChildren used to do for objects as children\n escapedPrefix + ( // $FlowFixMe Flow incorrectly thinks React.Portal doesn't have a key\n mappedChild.key && (!_child || _child.key !== mappedChild.key) ? // $FlowFixMe Flow incorrectly thinks existing element's key can be a number\n // eslint-disable-next-line react-internal/safe-string-coercion\n escapeUserProvidedKey('' + mappedChild.key) + '/' : '') + childKey);\n }\n\n array.push(mappedChild);\n }\n\n return 1;\n }\n\n var child;\n var nextName;\n var subtreeCount = 0; // Count of children found in the current subtree.\n\n var nextNamePrefix = nameSoFar === '' ? SEPARATOR : nameSoFar + SUBSEPARATOR;\n\n if (isArray(children)) {\n for (var i = 0; i < children.length; i++) {\n child = children[i];\n nextName = nextNamePrefix + getElementKey(child, i);\n subtreeCount += mapIntoArray(child, array, escapedPrefix, nextName, callback);\n }\n } else {\n var iteratorFn = getIteratorFn(children);\n\n if (typeof iteratorFn === 'function') {\n var iterableChildren = children;\n\n {\n // Warn about using Maps as children\n if (iteratorFn === iterableChildren.entries) {\n if (!didWarnAboutMaps) {\n warn('Using Maps as children is not supported. ' + 'Use an array of keyed ReactElements instead.');\n }\n\n didWarnAboutMaps = true;\n }\n }\n\n var iterator = iteratorFn.call(iterableChildren);\n var step;\n var ii = 0;\n\n while (!(step = iterator.next()).done) {\n child = step.value;\n nextName = nextNamePrefix + getElementKey(child, ii++);\n subtreeCount += mapIntoArray(child, array, escapedPrefix, nextName, callback);\n }\n } else if (type === 'object') {\n // eslint-disable-next-line react-internal/safe-string-coercion\n var childrenString = String(children);\n throw new Error(\"Objects are not valid as a React child (found: \" + (childrenString === '[object Object]' ? 'object with keys {' + Object.keys(children).join(', ') + '}' : childrenString) + \"). \" + 'If you meant to render a collection of children, use an array ' + 'instead.');\n }\n }\n\n return subtreeCount;\n}\n\n/**\n * Maps children that are typically specified as `props.children`.\n *\n * See https://reactjs.org/docs/react-api.html#reactchildrenmap\n *\n * The provided mapFunction(child, index) will be called for each\n * leaf child.\n *\n * @param {?*} children Children tree container.\n * @param {function(*, int)} func The map function.\n * @param {*} context Context for mapFunction.\n * @return {object} Object containing the ordered map of results.\n */\nfunction mapChildren(children, func, context) {\n if (children == null) {\n return children;\n }\n\n var result = [];\n var count = 0;\n mapIntoArray(children, result, '', '', function (child) {\n return func.call(context, child, count++);\n });\n return result;\n}\n/**\n * Count the number of children that are typically specified as\n * `props.children`.\n *\n * See https://reactjs.org/docs/react-api.html#reactchildrencount\n *\n * @param {?*} children Children tree container.\n * @return {number} The number of children.\n */\n\n\nfunction countChildren(children) {\n var n = 0;\n mapChildren(children, function () {\n n++; // Don't return anything\n });\n return n;\n}\n\n/**\n * Iterates through children that are typically specified as `props.children`.\n *\n * See https://reactjs.org/docs/react-api.html#reactchildrenforeach\n *\n * The provided forEachFunc(child, index) will be called for each\n * leaf child.\n *\n * @param {?*} children Children tree container.\n * @param {function(*, int)} forEachFunc\n * @param {*} forEachContext Context for forEachContext.\n */\nfunction forEachChildren(children, forEachFunc, forEachContext) {\n mapChildren(children, function () {\n forEachFunc.apply(this, arguments); // Don't return anything.\n }, forEachContext);\n}\n/**\n * Flatten a children object (typically specified as `props.children`) and\n * return an array with appropriately re-keyed children.\n *\n * See https://reactjs.org/docs/react-api.html#reactchildrentoarray\n */\n\n\nfunction toArray(children) {\n return mapChildren(children, function (child) {\n return child;\n }) || [];\n}\n/**\n * Returns the first child in a collection of children and verifies that there\n * is only one child in the collection.\n *\n * See https://reactjs.org/docs/react-api.html#reactchildrenonly\n *\n * The current implementation of this function assumes that a single child gets\n * passed without a wrapper, but the purpose of this helper function is to\n * abstract away the particular structure of children.\n *\n * @param {?object} children Child collection structure.\n * @return {ReactElement} The first and only `ReactElement` contained in the\n * structure.\n */\n\n\nfunction onlyChild(children) {\n if (!isValidElement(children)) {\n throw new Error('React.Children.only expected to receive a single React element child.');\n }\n\n return children;\n}\n\nfunction createContext(defaultValue) {\n // TODO: Second argument used to be an optional `calculateChangedBits`\n // function. Warn to reserve for future use?\n var context = {\n $$typeof: REACT_CONTEXT_TYPE,\n // As a workaround to support multiple concurrent renderers, we categorize\n // some renderers as primary and others as secondary. We only expect\n // there to be two concurrent renderers at most: React Native (primary) and\n // Fabric (secondary); React DOM (primary) and React ART (secondary).\n // Secondary renderers store their context values on separate fields.\n _currentValue: defaultValue,\n _currentValue2: defaultValue,\n // Used to track how many concurrent renderers this context currently\n // supports within in a single renderer. Such as parallel server rendering.\n _threadCount: 0,\n // These are circular\n Provider: null,\n Consumer: null,\n // Add these to use same hidden class in VM as ServerContext\n _defaultValue: null,\n _globalName: null\n };\n context.Provider = {\n $$typeof: REACT_PROVIDER_TYPE,\n _context: context\n };\n var hasWarnedAboutUsingNestedContextConsumers = false;\n var hasWarnedAboutUsingConsumerProvider = false;\n var hasWarnedAboutDisplayNameOnConsumer = false;\n\n {\n // A separate object, but proxies back to the original context object for\n // backwards compatibility. It has a different $$typeof, so we can properly\n // warn for the incorrect usage of Context as a Consumer.\n var Consumer = {\n $$typeof: REACT_CONTEXT_TYPE,\n _context: context\n }; // $FlowFixMe: Flow complains about not setting a value, which is intentional here\n\n Object.defineProperties(Consumer, {\n Provider: {\n get: function () {\n if (!hasWarnedAboutUsingConsumerProvider) {\n hasWarnedAboutUsingConsumerProvider = true;\n\n error('Rendering is not supported and will be removed in ' + 'a future major release. Did you mean to render instead?');\n }\n\n return context.Provider;\n },\n set: function (_Provider) {\n context.Provider = _Provider;\n }\n },\n _currentValue: {\n get: function () {\n return context._currentValue;\n },\n set: function (_currentValue) {\n context._currentValue = _currentValue;\n }\n },\n _currentValue2: {\n get: function () {\n return context._currentValue2;\n },\n set: function (_currentValue2) {\n context._currentValue2 = _currentValue2;\n }\n },\n _threadCount: {\n get: function () {\n return context._threadCount;\n },\n set: function (_threadCount) {\n context._threadCount = _threadCount;\n }\n },\n Consumer: {\n get: function () {\n if (!hasWarnedAboutUsingNestedContextConsumers) {\n hasWarnedAboutUsingNestedContextConsumers = true;\n\n error('Rendering is not supported and will be removed in ' + 'a future major release. Did you mean to render instead?');\n }\n\n return context.Consumer;\n }\n },\n displayName: {\n get: function () {\n return context.displayName;\n },\n set: function (displayName) {\n if (!hasWarnedAboutDisplayNameOnConsumer) {\n warn('Setting `displayName` on Context.Consumer has no effect. ' + \"You should set it directly on the context with Context.displayName = '%s'.\", displayName);\n\n hasWarnedAboutDisplayNameOnConsumer = true;\n }\n }\n }\n }); // $FlowFixMe: Flow complains about missing properties because it doesn't understand defineProperty\n\n context.Consumer = Consumer;\n }\n\n {\n context._currentRenderer = null;\n context._currentRenderer2 = null;\n }\n\n return context;\n}\n\nvar Uninitialized = -1;\nvar Pending = 0;\nvar Resolved = 1;\nvar Rejected = 2;\n\nfunction lazyInitializer(payload) {\n if (payload._status === Uninitialized) {\n var ctor = payload._result;\n var thenable = ctor(); // Transition to the next state.\n // This might throw either because it's missing or throws. If so, we treat it\n // as still uninitialized and try again next time. Which is the same as what\n // happens if the ctor or any wrappers processing the ctor throws. This might\n // end up fixing it if the resolution was a concurrency bug.\n\n thenable.then(function (moduleObject) {\n if (payload._status === Pending || payload._status === Uninitialized) {\n // Transition to the next state.\n var resolved = payload;\n resolved._status = Resolved;\n resolved._result = moduleObject;\n }\n }, function (error) {\n if (payload._status === Pending || payload._status === Uninitialized) {\n // Transition to the next state.\n var rejected = payload;\n rejected._status = Rejected;\n rejected._result = error;\n }\n });\n\n if (payload._status === Uninitialized) {\n // In case, we're still uninitialized, then we're waiting for the thenable\n // to resolve. Set it as pending in the meantime.\n var pending = payload;\n pending._status = Pending;\n pending._result = thenable;\n }\n }\n\n if (payload._status === Resolved) {\n var moduleObject = payload._result;\n\n {\n if (moduleObject === undefined) {\n error('lazy: Expected the result of a dynamic imp' + 'ort() call. ' + 'Instead received: %s\\n\\nYour code should look like: \\n ' + // Break up imports to avoid accidentally parsing them as dependencies.\n 'const MyComponent = lazy(() => imp' + \"ort('./MyComponent'))\\n\\n\" + 'Did you accidentally put curly braces around the import?', moduleObject);\n }\n }\n\n {\n if (!('default' in moduleObject)) {\n error('lazy: Expected the result of a dynamic imp' + 'ort() call. ' + 'Instead received: %s\\n\\nYour code should look like: \\n ' + // Break up imports to avoid accidentally parsing them as dependencies.\n 'const MyComponent = lazy(() => imp' + \"ort('./MyComponent'))\", moduleObject);\n }\n }\n\n return moduleObject.default;\n } else {\n throw payload._result;\n }\n}\n\nfunction lazy(ctor) {\n var payload = {\n // We use these fields to store the result.\n _status: Uninitialized,\n _result: ctor\n };\n var lazyType = {\n $$typeof: REACT_LAZY_TYPE,\n _payload: payload,\n _init: lazyInitializer\n };\n\n {\n // In production, this would just set it on the object.\n var defaultProps;\n var propTypes; // $FlowFixMe\n\n Object.defineProperties(lazyType, {\n defaultProps: {\n configurable: true,\n get: function () {\n return defaultProps;\n },\n set: function (newDefaultProps) {\n error('React.lazy(...): It is not supported to assign `defaultProps` to ' + 'a lazy component import. Either specify them where the component ' + 'is defined, or create a wrapping component around it.');\n\n defaultProps = newDefaultProps; // Match production behavior more closely:\n // $FlowFixMe\n\n Object.defineProperty(lazyType, 'defaultProps', {\n enumerable: true\n });\n }\n },\n propTypes: {\n configurable: true,\n get: function () {\n return propTypes;\n },\n set: function (newPropTypes) {\n error('React.lazy(...): It is not supported to assign `propTypes` to ' + 'a lazy component import. Either specify them where the component ' + 'is defined, or create a wrapping component around it.');\n\n propTypes = newPropTypes; // Match production behavior more closely:\n // $FlowFixMe\n\n Object.defineProperty(lazyType, 'propTypes', {\n enumerable: true\n });\n }\n }\n });\n }\n\n return lazyType;\n}\n\nfunction forwardRef(render) {\n {\n if (render != null && render.$$typeof === REACT_MEMO_TYPE) {\n error('forwardRef requires a render function but received a `memo` ' + 'component. Instead of forwardRef(memo(...)), use ' + 'memo(forwardRef(...)).');\n } else if (typeof render !== 'function') {\n error('forwardRef requires a render function but was given %s.', render === null ? 'null' : typeof render);\n } else {\n if (render.length !== 0 && render.length !== 2) {\n error('forwardRef render functions accept exactly two parameters: props and ref. %s', render.length === 1 ? 'Did you forget to use the ref parameter?' : 'Any additional parameter will be undefined.');\n }\n }\n\n if (render != null) {\n if (render.defaultProps != null || render.propTypes != null) {\n error('forwardRef render functions do not support propTypes or defaultProps. ' + 'Did you accidentally pass a React component?');\n }\n }\n }\n\n var elementType = {\n $$typeof: REACT_FORWARD_REF_TYPE,\n render: render\n };\n\n {\n var ownName;\n Object.defineProperty(elementType, 'displayName', {\n enumerable: false,\n configurable: true,\n get: function () {\n return ownName;\n },\n set: function (name) {\n ownName = name; // The inner component shouldn't inherit this display name in most cases,\n // because the component may be used elsewhere.\n // But it's nice for anonymous functions to inherit the name,\n // so that our component-stack generation logic will display their frames.\n // An anonymous function generally suggests a pattern like:\n // React.forwardRef((props, ref) => {...});\n // This kind of inner function is not used elsewhere so the side effect is okay.\n\n if (!render.name && !render.displayName) {\n render.displayName = name;\n }\n }\n });\n }\n\n return elementType;\n}\n\nvar REACT_MODULE_REFERENCE;\n\n{\n REACT_MODULE_REFERENCE = Symbol.for('react.module.reference');\n}\n\nfunction isValidElementType(type) {\n if (typeof type === 'string' || typeof type === 'function') {\n return true;\n } // Note: typeof might be other than 'symbol' or 'number' (e.g. if it's a polyfill).\n\n\n if (type === REACT_FRAGMENT_TYPE || type === REACT_PROFILER_TYPE || enableDebugTracing || type === REACT_STRICT_MODE_TYPE || type === REACT_SUSPENSE_TYPE || type === REACT_SUSPENSE_LIST_TYPE || enableLegacyHidden || type === REACT_OFFSCREEN_TYPE || enableScopeAPI || enableCacheElement || enableTransitionTracing ) {\n return true;\n }\n\n if (typeof type === 'object' && type !== null) {\n if (type.$$typeof === REACT_LAZY_TYPE || type.$$typeof === REACT_MEMO_TYPE || type.$$typeof === REACT_PROVIDER_TYPE || type.$$typeof === REACT_CONTEXT_TYPE || type.$$typeof === REACT_FORWARD_REF_TYPE || // This needs to include all possible module reference object\n // types supported by any Flight configuration anywhere since\n // we don't know which Flight build this will end up being used\n // with.\n type.$$typeof === REACT_MODULE_REFERENCE || type.getModuleId !== undefined) {\n return true;\n }\n }\n\n return false;\n}\n\nfunction memo(type, compare) {\n {\n if (!isValidElementType(type)) {\n error('memo: The first argument must be a component. Instead ' + 'received: %s', type === null ? 'null' : typeof type);\n }\n }\n\n var elementType = {\n $$typeof: REACT_MEMO_TYPE,\n type: type,\n compare: compare === undefined ? null : compare\n };\n\n {\n var ownName;\n Object.defineProperty(elementType, 'displayName', {\n enumerable: false,\n configurable: true,\n get: function () {\n return ownName;\n },\n set: function (name) {\n ownName = name; // The inner component shouldn't inherit this display name in most cases,\n // because the component may be used elsewhere.\n // But it's nice for anonymous functions to inherit the name,\n // so that our component-stack generation logic will display their frames.\n // An anonymous function generally suggests a pattern like:\n // React.memo((props) => {...});\n // This kind of inner function is not used elsewhere so the side effect is okay.\n\n if (!type.name && !type.displayName) {\n type.displayName = name;\n }\n }\n });\n }\n\n return elementType;\n}\n\nfunction resolveDispatcher() {\n var dispatcher = ReactCurrentDispatcher.current;\n\n {\n if (dispatcher === null) {\n error('Invalid hook call. Hooks can only be called inside of the body of a function component. This could happen for' + ' one of the following reasons:\\n' + '1. You might have mismatching versions of React and the renderer (such as React DOM)\\n' + '2. You might be breaking the Rules of Hooks\\n' + '3. You might have more than one copy of React in the same app\\n' + 'See https://reactjs.org/link/invalid-hook-call for tips about how to debug and fix this problem.');\n }\n } // Will result in a null access error if accessed outside render phase. We\n // intentionally don't throw our own error because this is in a hot path.\n // Also helps ensure this is inlined.\n\n\n return dispatcher;\n}\nfunction useContext(Context) {\n var dispatcher = resolveDispatcher();\n\n {\n // TODO: add a more generic warning for invalid values.\n if (Context._context !== undefined) {\n var realContext = Context._context; // Don't deduplicate because this legitimately causes bugs\n // and nobody should be using this in existing code.\n\n if (realContext.Consumer === Context) {\n error('Calling useContext(Context.Consumer) is not supported, may cause bugs, and will be ' + 'removed in a future major release. Did you mean to call useContext(Context) instead?');\n } else if (realContext.Provider === Context) {\n error('Calling useContext(Context.Provider) is not supported. ' + 'Did you mean to call useContext(Context) instead?');\n }\n }\n }\n\n return dispatcher.useContext(Context);\n}\nfunction useState(initialState) {\n var dispatcher = resolveDispatcher();\n return dispatcher.useState(initialState);\n}\nfunction useReducer(reducer, initialArg, init) {\n var dispatcher = resolveDispatcher();\n return dispatcher.useReducer(reducer, initialArg, init);\n}\nfunction useRef(initialValue) {\n var dispatcher = resolveDispatcher();\n return dispatcher.useRef(initialValue);\n}\nfunction useEffect(create, deps) {\n var dispatcher = resolveDispatcher();\n return dispatcher.useEffect(create, deps);\n}\nfunction useInsertionEffect(create, deps) {\n var dispatcher = resolveDispatcher();\n return dispatcher.useInsertionEffect(create, deps);\n}\nfunction useLayoutEffect(create, deps) {\n var dispatcher = resolveDispatcher();\n return dispatcher.useLayoutEffect(create, deps);\n}\nfunction useCallback(callback, deps) {\n var dispatcher = resolveDispatcher();\n return dispatcher.useCallback(callback, deps);\n}\nfunction useMemo(create, deps) {\n var dispatcher = resolveDispatcher();\n return dispatcher.useMemo(create, deps);\n}\nfunction useImperativeHandle(ref, create, deps) {\n var dispatcher = resolveDispatcher();\n return dispatcher.useImperativeHandle(ref, create, deps);\n}\nfunction useDebugValue(value, formatterFn) {\n {\n var dispatcher = resolveDispatcher();\n return dispatcher.useDebugValue(value, formatterFn);\n }\n}\nfunction useTransition() {\n var dispatcher = resolveDispatcher();\n return dispatcher.useTransition();\n}\nfunction useDeferredValue(value) {\n var dispatcher = resolveDispatcher();\n return dispatcher.useDeferredValue(value);\n}\nfunction useId() {\n var dispatcher = resolveDispatcher();\n return dispatcher.useId();\n}\nfunction useSyncExternalStore(subscribe, getSnapshot, getServerSnapshot) {\n var dispatcher = resolveDispatcher();\n return dispatcher.useSyncExternalStore(subscribe, getSnapshot, getServerSnapshot);\n}\n\n// Helpers to patch console.logs to avoid logging during side-effect free\n// replaying on render function. This currently only patches the object\n// lazily which won't cover if the log function was extracted eagerly.\n// We could also eagerly patch the method.\nvar disabledDepth = 0;\nvar prevLog;\nvar prevInfo;\nvar prevWarn;\nvar prevError;\nvar prevGroup;\nvar prevGroupCollapsed;\nvar prevGroupEnd;\n\nfunction disabledLog() {}\n\ndisabledLog.__reactDisabledLog = true;\nfunction disableLogs() {\n {\n if (disabledDepth === 0) {\n /* eslint-disable react-internal/no-production-logging */\n prevLog = console.log;\n prevInfo = console.info;\n prevWarn = console.warn;\n prevError = console.error;\n prevGroup = console.group;\n prevGroupCollapsed = console.groupCollapsed;\n prevGroupEnd = console.groupEnd; // https://github.com/facebook/react/issues/19099\n\n var props = {\n configurable: true,\n enumerable: true,\n value: disabledLog,\n writable: true\n }; // $FlowFixMe Flow thinks console is immutable.\n\n Object.defineProperties(console, {\n info: props,\n log: props,\n warn: props,\n error: props,\n group: props,\n groupCollapsed: props,\n groupEnd: props\n });\n /* eslint-enable react-internal/no-production-logging */\n }\n\n disabledDepth++;\n }\n}\nfunction reenableLogs() {\n {\n disabledDepth--;\n\n if (disabledDepth === 0) {\n /* eslint-disable react-internal/no-production-logging */\n var props = {\n configurable: true,\n enumerable: true,\n writable: true\n }; // $FlowFixMe Flow thinks console is immutable.\n\n Object.defineProperties(console, {\n log: assign({}, props, {\n value: prevLog\n }),\n info: assign({}, props, {\n value: prevInfo\n }),\n warn: assign({}, props, {\n value: prevWarn\n }),\n error: assign({}, props, {\n value: prevError\n }),\n group: assign({}, props, {\n value: prevGroup\n }),\n groupCollapsed: assign({}, props, {\n value: prevGroupCollapsed\n }),\n groupEnd: assign({}, props, {\n value: prevGroupEnd\n })\n });\n /* eslint-enable react-internal/no-production-logging */\n }\n\n if (disabledDepth < 0) {\n error('disabledDepth fell below zero. ' + 'This is a bug in React. Please file an issue.');\n }\n }\n}\n\nvar ReactCurrentDispatcher$1 = ReactSharedInternals.ReactCurrentDispatcher;\nvar prefix;\nfunction describeBuiltInComponentFrame(name, source, ownerFn) {\n {\n if (prefix === undefined) {\n // Extract the VM specific prefix used by each line.\n try {\n throw Error();\n } catch (x) {\n var match = x.stack.trim().match(/\\n( *(at )?)/);\n prefix = match && match[1] || '';\n }\n } // We use the prefix to ensure our stacks line up with native stack frames.\n\n\n return '\\n' + prefix + name;\n }\n}\nvar reentry = false;\nvar componentFrameCache;\n\n{\n var PossiblyWeakMap = typeof WeakMap === 'function' ? WeakMap : Map;\n componentFrameCache = new PossiblyWeakMap();\n}\n\nfunction describeNativeComponentFrame(fn, construct) {\n // If something asked for a stack inside a fake render, it should get ignored.\n if ( !fn || reentry) {\n return '';\n }\n\n {\n var frame = componentFrameCache.get(fn);\n\n if (frame !== undefined) {\n return frame;\n }\n }\n\n var control;\n reentry = true;\n var previousPrepareStackTrace = Error.prepareStackTrace; // $FlowFixMe It does accept undefined.\n\n Error.prepareStackTrace = undefined;\n var previousDispatcher;\n\n {\n previousDispatcher = ReactCurrentDispatcher$1.current; // Set the dispatcher in DEV because this might be call in the render function\n // for warnings.\n\n ReactCurrentDispatcher$1.current = null;\n disableLogs();\n }\n\n try {\n // This should throw.\n if (construct) {\n // Something should be setting the props in the constructor.\n var Fake = function () {\n throw Error();\n }; // $FlowFixMe\n\n\n Object.defineProperty(Fake.prototype, 'props', {\n set: function () {\n // We use a throwing setter instead of frozen or non-writable props\n // because that won't throw in a non-strict mode function.\n throw Error();\n }\n });\n\n if (typeof Reflect === 'object' && Reflect.construct) {\n // We construct a different control for this case to include any extra\n // frames added by the construct call.\n try {\n Reflect.construct(Fake, []);\n } catch (x) {\n control = x;\n }\n\n Reflect.construct(fn, [], Fake);\n } else {\n try {\n Fake.call();\n } catch (x) {\n control = x;\n }\n\n fn.call(Fake.prototype);\n }\n } else {\n try {\n throw Error();\n } catch (x) {\n control = x;\n }\n\n fn();\n }\n } catch (sample) {\n // This is inlined manually because closure doesn't do it for us.\n if (sample && control && typeof sample.stack === 'string') {\n // This extracts the first frame from the sample that isn't also in the control.\n // Skipping one frame that we assume is the frame that calls the two.\n var sampleLines = sample.stack.split('\\n');\n var controlLines = control.stack.split('\\n');\n var s = sampleLines.length - 1;\n var c = controlLines.length - 1;\n\n while (s >= 1 && c >= 0 && sampleLines[s] !== controlLines[c]) {\n // We expect at least one stack frame to be shared.\n // Typically this will be the root most one. However, stack frames may be\n // cut off due to maximum stack limits. In this case, one maybe cut off\n // earlier than the other. We assume that the sample is longer or the same\n // and there for cut off earlier. So we should find the root most frame in\n // the sample somewhere in the control.\n c--;\n }\n\n for (; s >= 1 && c >= 0; s--, c--) {\n // Next we find the first one that isn't the same which should be the\n // frame that called our sample function and the control.\n if (sampleLines[s] !== controlLines[c]) {\n // In V8, the first line is describing the message but other VMs don't.\n // If we're about to return the first line, and the control is also on the same\n // line, that's a pretty good indicator that our sample threw at same line as\n // the control. I.e. before we entered the sample frame. So we ignore this result.\n // This can happen if you passed a class to function component, or non-function.\n if (s !== 1 || c !== 1) {\n do {\n s--;\n c--; // We may still have similar intermediate frames from the construct call.\n // The next one that isn't the same should be our match though.\n\n if (c < 0 || sampleLines[s] !== controlLines[c]) {\n // V8 adds a \"new\" prefix for native classes. Let's remove it to make it prettier.\n var _frame = '\\n' + sampleLines[s].replace(' at new ', ' at '); // If our component frame is labeled \"\"\n // but we have a user-provided \"displayName\"\n // splice it in to make the stack more readable.\n\n\n if (fn.displayName && _frame.includes('')) {\n _frame = _frame.replace('', fn.displayName);\n }\n\n {\n if (typeof fn === 'function') {\n componentFrameCache.set(fn, _frame);\n }\n } // Return the line we found.\n\n\n return _frame;\n }\n } while (s >= 1 && c >= 0);\n }\n\n break;\n }\n }\n }\n } finally {\n reentry = false;\n\n {\n ReactCurrentDispatcher$1.current = previousDispatcher;\n reenableLogs();\n }\n\n Error.prepareStackTrace = previousPrepareStackTrace;\n } // Fallback to just using the name if we couldn't make it throw.\n\n\n var name = fn ? fn.displayName || fn.name : '';\n var syntheticFrame = name ? describeBuiltInComponentFrame(name) : '';\n\n {\n if (typeof fn === 'function') {\n componentFrameCache.set(fn, syntheticFrame);\n }\n }\n\n return syntheticFrame;\n}\nfunction describeFunctionComponentFrame(fn, source, ownerFn) {\n {\n return describeNativeComponentFrame(fn, false);\n }\n}\n\nfunction shouldConstruct(Component) {\n var prototype = Component.prototype;\n return !!(prototype && prototype.isReactComponent);\n}\n\nfunction describeUnknownElementTypeFrameInDEV(type, source, ownerFn) {\n\n if (type == null) {\n return '';\n }\n\n if (typeof type === 'function') {\n {\n return describeNativeComponentFrame(type, shouldConstruct(type));\n }\n }\n\n if (typeof type === 'string') {\n return describeBuiltInComponentFrame(type);\n }\n\n switch (type) {\n case REACT_SUSPENSE_TYPE:\n return describeBuiltInComponentFrame('Suspense');\n\n case REACT_SUSPENSE_LIST_TYPE:\n return describeBuiltInComponentFrame('SuspenseList');\n }\n\n if (typeof type === 'object') {\n switch (type.$$typeof) {\n case REACT_FORWARD_REF_TYPE:\n return describeFunctionComponentFrame(type.render);\n\n case REACT_MEMO_TYPE:\n // Memo may contain any component type so we recursively resolve it.\n return describeUnknownElementTypeFrameInDEV(type.type, source, ownerFn);\n\n case REACT_LAZY_TYPE:\n {\n var lazyComponent = type;\n var payload = lazyComponent._payload;\n var init = lazyComponent._init;\n\n try {\n // Lazy may contain any component type so we recursively resolve it.\n return describeUnknownElementTypeFrameInDEV(init(payload), source, ownerFn);\n } catch (x) {}\n }\n }\n }\n\n return '';\n}\n\nvar loggedTypeFailures = {};\nvar ReactDebugCurrentFrame$1 = ReactSharedInternals.ReactDebugCurrentFrame;\n\nfunction setCurrentlyValidatingElement(element) {\n {\n if (element) {\n var owner = element._owner;\n var stack = describeUnknownElementTypeFrameInDEV(element.type, element._source, owner ? owner.type : null);\n ReactDebugCurrentFrame$1.setExtraStackFrame(stack);\n } else {\n ReactDebugCurrentFrame$1.setExtraStackFrame(null);\n }\n }\n}\n\nfunction checkPropTypes(typeSpecs, values, location, componentName, element) {\n {\n // $FlowFixMe This is okay but Flow doesn't know it.\n var has = Function.call.bind(hasOwnProperty);\n\n for (var typeSpecName in typeSpecs) {\n if (has(typeSpecs, typeSpecName)) {\n var error$1 = void 0; // Prop type validation may throw. In case they do, we don't want to\n // fail the render phase where it didn't fail before. So we log it.\n // After these have been cleaned up, we'll let them throw.\n\n try {\n // This is intentionally an invariant that gets caught. It's the same\n // behavior as without this statement except with a better message.\n if (typeof typeSpecs[typeSpecName] !== 'function') {\n // eslint-disable-next-line react-internal/prod-error-codes\n var err = Error((componentName || 'React class') + ': ' + location + ' type `' + typeSpecName + '` is invalid; ' + 'it must be a function, usually from the `prop-types` package, but received `' + typeof typeSpecs[typeSpecName] + '`.' + 'This often happens because of typos such as `PropTypes.function` instead of `PropTypes.func`.');\n err.name = 'Invariant Violation';\n throw err;\n }\n\n error$1 = typeSpecs[typeSpecName](values, typeSpecName, componentName, location, null, 'SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED');\n } catch (ex) {\n error$1 = ex;\n }\n\n if (error$1 && !(error$1 instanceof Error)) {\n setCurrentlyValidatingElement(element);\n\n error('%s: type specification of %s' + ' `%s` is invalid; the type checker ' + 'function must return `null` or an `Error` but returned a %s. ' + 'You may have forgotten to pass an argument to the type checker ' + 'creator (arrayOf, instanceOf, objectOf, oneOf, oneOfType, and ' + 'shape all require an argument).', componentName || 'React class', location, typeSpecName, typeof error$1);\n\n setCurrentlyValidatingElement(null);\n }\n\n if (error$1 instanceof Error && !(error$1.message in loggedTypeFailures)) {\n // Only monitor this failure once because there tends to be a lot of the\n // same error.\n loggedTypeFailures[error$1.message] = true;\n setCurrentlyValidatingElement(element);\n\n error('Failed %s type: %s', location, error$1.message);\n\n setCurrentlyValidatingElement(null);\n }\n }\n }\n }\n}\n\nfunction setCurrentlyValidatingElement$1(element) {\n {\n if (element) {\n var owner = element._owner;\n var stack = describeUnknownElementTypeFrameInDEV(element.type, element._source, owner ? owner.type : null);\n setExtraStackFrame(stack);\n } else {\n setExtraStackFrame(null);\n }\n }\n}\n\nvar propTypesMisspellWarningShown;\n\n{\n propTypesMisspellWarningShown = false;\n}\n\nfunction getDeclarationErrorAddendum() {\n if (ReactCurrentOwner.current) {\n var name = getComponentNameFromType(ReactCurrentOwner.current.type);\n\n if (name) {\n return '\\n\\nCheck the render method of `' + name + '`.';\n }\n }\n\n return '';\n}\n\nfunction getSourceInfoErrorAddendum(source) {\n if (source !== undefined) {\n var fileName = source.fileName.replace(/^.*[\\\\\\/]/, '');\n var lineNumber = source.lineNumber;\n return '\\n\\nCheck your code at ' + fileName + ':' + lineNumber + '.';\n }\n\n return '';\n}\n\nfunction getSourceInfoErrorAddendumForProps(elementProps) {\n if (elementProps !== null && elementProps !== undefined) {\n return getSourceInfoErrorAddendum(elementProps.__source);\n }\n\n return '';\n}\n/**\n * Warn if there's no key explicitly set on dynamic arrays of children or\n * object keys are not valid. This allows us to keep track of children between\n * updates.\n */\n\n\nvar ownerHasKeyUseWarning = {};\n\nfunction getCurrentComponentErrorInfo(parentType) {\n var info = getDeclarationErrorAddendum();\n\n if (!info) {\n var parentName = typeof parentType === 'string' ? parentType : parentType.displayName || parentType.name;\n\n if (parentName) {\n info = \"\\n\\nCheck the top-level render call using <\" + parentName + \">.\";\n }\n }\n\n return info;\n}\n/**\n * Warn if the element doesn't have an explicit key assigned to it.\n * This element is in an array. The array could grow and shrink or be\n * reordered. All children that haven't already been validated are required to\n * have a \"key\" property assigned to it. Error statuses are cached so a warning\n * will only be shown once.\n *\n * @internal\n * @param {ReactElement} element Element that requires a key.\n * @param {*} parentType element's parent's type.\n */\n\n\nfunction validateExplicitKey(element, parentType) {\n if (!element._store || element._store.validated || element.key != null) {\n return;\n }\n\n element._store.validated = true;\n var currentComponentErrorInfo = getCurrentComponentErrorInfo(parentType);\n\n if (ownerHasKeyUseWarning[currentComponentErrorInfo]) {\n return;\n }\n\n ownerHasKeyUseWarning[currentComponentErrorInfo] = true; // Usually the current owner is the offender, but if it accepts children as a\n // property, it may be the creator of the child that's responsible for\n // assigning it a key.\n\n var childOwner = '';\n\n if (element && element._owner && element._owner !== ReactCurrentOwner.current) {\n // Give the component that originally created this child.\n childOwner = \" It was passed a child from \" + getComponentNameFromType(element._owner.type) + \".\";\n }\n\n {\n setCurrentlyValidatingElement$1(element);\n\n error('Each child in a list should have a unique \"key\" prop.' + '%s%s See https://reactjs.org/link/warning-keys for more information.', currentComponentErrorInfo, childOwner);\n\n setCurrentlyValidatingElement$1(null);\n }\n}\n/**\n * Ensure that every element either is passed in a static location, in an\n * array with an explicit keys property defined, or in an object literal\n * with valid key property.\n *\n * @internal\n * @param {ReactNode} node Statically passed child of any type.\n * @param {*} parentType node's parent's type.\n */\n\n\nfunction validateChildKeys(node, parentType) {\n if (typeof node !== 'object') {\n return;\n }\n\n if (isArray(node)) {\n for (var i = 0; i < node.length; i++) {\n var child = node[i];\n\n if (isValidElement(child)) {\n validateExplicitKey(child, parentType);\n }\n }\n } else if (isValidElement(node)) {\n // This element was passed in a valid location.\n if (node._store) {\n node._store.validated = true;\n }\n } else if (node) {\n var iteratorFn = getIteratorFn(node);\n\n if (typeof iteratorFn === 'function') {\n // Entry iterators used to provide implicit keys,\n // but now we print a separate warning for them later.\n if (iteratorFn !== node.entries) {\n var iterator = iteratorFn.call(node);\n var step;\n\n while (!(step = iterator.next()).done) {\n if (isValidElement(step.value)) {\n validateExplicitKey(step.value, parentType);\n }\n }\n }\n }\n }\n}\n/**\n * Given an element, validate that its props follow the propTypes definition,\n * provided by the type.\n *\n * @param {ReactElement} element\n */\n\n\nfunction validatePropTypes(element) {\n {\n var type = element.type;\n\n if (type === null || type === undefined || typeof type === 'string') {\n return;\n }\n\n var propTypes;\n\n if (typeof type === 'function') {\n propTypes = type.propTypes;\n } else if (typeof type === 'object' && (type.$$typeof === REACT_FORWARD_REF_TYPE || // Note: Memo only checks outer props here.\n // Inner props are checked in the reconciler.\n type.$$typeof === REACT_MEMO_TYPE)) {\n propTypes = type.propTypes;\n } else {\n return;\n }\n\n if (propTypes) {\n // Intentionally inside to avoid triggering lazy initializers:\n var name = getComponentNameFromType(type);\n checkPropTypes(propTypes, element.props, 'prop', name, element);\n } else if (type.PropTypes !== undefined && !propTypesMisspellWarningShown) {\n propTypesMisspellWarningShown = true; // Intentionally inside to avoid triggering lazy initializers:\n\n var _name = getComponentNameFromType(type);\n\n error('Component %s declared `PropTypes` instead of `propTypes`. Did you misspell the property assignment?', _name || 'Unknown');\n }\n\n if (typeof type.getDefaultProps === 'function' && !type.getDefaultProps.isReactClassApproved) {\n error('getDefaultProps is only used on classic React.createClass ' + 'definitions. Use a static property named `defaultProps` instead.');\n }\n }\n}\n/**\n * Given a fragment, validate that it can only be provided with fragment props\n * @param {ReactElement} fragment\n */\n\n\nfunction validateFragmentProps(fragment) {\n {\n var keys = Object.keys(fragment.props);\n\n for (var i = 0; i < keys.length; i++) {\n var key = keys[i];\n\n if (key !== 'children' && key !== 'key') {\n setCurrentlyValidatingElement$1(fragment);\n\n error('Invalid prop `%s` supplied to `React.Fragment`. ' + 'React.Fragment can only have `key` and `children` props.', key);\n\n setCurrentlyValidatingElement$1(null);\n break;\n }\n }\n\n if (fragment.ref !== null) {\n setCurrentlyValidatingElement$1(fragment);\n\n error('Invalid attribute `ref` supplied to `React.Fragment`.');\n\n setCurrentlyValidatingElement$1(null);\n }\n }\n}\nfunction createElementWithValidation(type, props, children) {\n var validType = isValidElementType(type); // We warn in this case but don't throw. We expect the element creation to\n // succeed and there will likely be errors in render.\n\n if (!validType) {\n var info = '';\n\n if (type === undefined || typeof type === 'object' && type !== null && Object.keys(type).length === 0) {\n info += ' You likely forgot to export your component from the file ' + \"it's defined in, or you might have mixed up default and named imports.\";\n }\n\n var sourceInfo = getSourceInfoErrorAddendumForProps(props);\n\n if (sourceInfo) {\n info += sourceInfo;\n } else {\n info += getDeclarationErrorAddendum();\n }\n\n var typeString;\n\n if (type === null) {\n typeString = 'null';\n } else if (isArray(type)) {\n typeString = 'array';\n } else if (type !== undefined && type.$$typeof === REACT_ELEMENT_TYPE) {\n typeString = \"<\" + (getComponentNameFromType(type.type) || 'Unknown') + \" />\";\n info = ' Did you accidentally export a JSX literal instead of a component?';\n } else {\n typeString = typeof type;\n }\n\n {\n error('React.createElement: type is invalid -- expected a string (for ' + 'built-in components) or a class/function (for composite ' + 'components) but got: %s.%s', typeString, info);\n }\n }\n\n var element = createElement.apply(this, arguments); // The result can be nullish if a mock or a custom function is used.\n // TODO: Drop this when these are no longer allowed as the type argument.\n\n if (element == null) {\n return element;\n } // Skip key warning if the type isn't valid since our key validation logic\n // doesn't expect a non-string/function type and can throw confusing errors.\n // We don't want exception behavior to differ between dev and prod.\n // (Rendering will throw with a helpful message and as soon as the type is\n // fixed, the key warnings will appear.)\n\n\n if (validType) {\n for (var i = 2; i < arguments.length; i++) {\n validateChildKeys(arguments[i], type);\n }\n }\n\n if (type === REACT_FRAGMENT_TYPE) {\n validateFragmentProps(element);\n } else {\n validatePropTypes(element);\n }\n\n return element;\n}\nvar didWarnAboutDeprecatedCreateFactory = false;\nfunction createFactoryWithValidation(type) {\n var validatedFactory = createElementWithValidation.bind(null, type);\n validatedFactory.type = type;\n\n {\n if (!didWarnAboutDeprecatedCreateFactory) {\n didWarnAboutDeprecatedCreateFactory = true;\n\n warn('React.createFactory() is deprecated and will be removed in ' + 'a future major release. Consider using JSX ' + 'or use React.createElement() directly instead.');\n } // Legacy hook: remove it\n\n\n Object.defineProperty(validatedFactory, 'type', {\n enumerable: false,\n get: function () {\n warn('Factory.type is deprecated. Access the class directly ' + 'before passing it to createFactory.');\n\n Object.defineProperty(this, 'type', {\n value: type\n });\n return type;\n }\n });\n }\n\n return validatedFactory;\n}\nfunction cloneElementWithValidation(element, props, children) {\n var newElement = cloneElement.apply(this, arguments);\n\n for (var i = 2; i < arguments.length; i++) {\n validateChildKeys(arguments[i], newElement.type);\n }\n\n validatePropTypes(newElement);\n return newElement;\n}\n\nfunction startTransition(scope, options) {\n var prevTransition = ReactCurrentBatchConfig.transition;\n ReactCurrentBatchConfig.transition = {};\n var currentTransition = ReactCurrentBatchConfig.transition;\n\n {\n ReactCurrentBatchConfig.transition._updatedFibers = new Set();\n }\n\n try {\n scope();\n } finally {\n ReactCurrentBatchConfig.transition = prevTransition;\n\n {\n if (prevTransition === null && currentTransition._updatedFibers) {\n var updatedFibersCount = currentTransition._updatedFibers.size;\n\n if (updatedFibersCount > 10) {\n warn('Detected a large number of updates inside startTransition. ' + 'If this is due to a subscription please re-write it to use React provided hooks. ' + 'Otherwise concurrent mode guarantees are off the table.');\n }\n\n currentTransition._updatedFibers.clear();\n }\n }\n }\n}\n\nvar didWarnAboutMessageChannel = false;\nvar enqueueTaskImpl = null;\nfunction enqueueTask(task) {\n if (enqueueTaskImpl === null) {\n try {\n // read require off the module object to get around the bundlers.\n // we don't want them to detect a require and bundle a Node polyfill.\n var requireString = ('require' + Math.random()).slice(0, 7);\n var nodeRequire = module && module[requireString]; // assuming we're in node, let's try to get node's\n // version of setImmediate, bypassing fake timers if any.\n\n enqueueTaskImpl = nodeRequire.call(module, 'timers').setImmediate;\n } catch (_err) {\n // we're in a browser\n // we can't use regular timers because they may still be faked\n // so we try MessageChannel+postMessage instead\n enqueueTaskImpl = function (callback) {\n {\n if (didWarnAboutMessageChannel === false) {\n didWarnAboutMessageChannel = true;\n\n if (typeof MessageChannel === 'undefined') {\n error('This browser does not have a MessageChannel implementation, ' + 'so enqueuing tasks via await act(async () => ...) will fail. ' + 'Please file an issue at https://github.com/facebook/react/issues ' + 'if you encounter this warning.');\n }\n }\n }\n\n var channel = new MessageChannel();\n channel.port1.onmessage = callback;\n channel.port2.postMessage(undefined);\n };\n }\n }\n\n return enqueueTaskImpl(task);\n}\n\nvar actScopeDepth = 0;\nvar didWarnNoAwaitAct = false;\nfunction act(callback) {\n {\n // `act` calls can be nested, so we track the depth. This represents the\n // number of `act` scopes on the stack.\n var prevActScopeDepth = actScopeDepth;\n actScopeDepth++;\n\n if (ReactCurrentActQueue.current === null) {\n // This is the outermost `act` scope. Initialize the queue. The reconciler\n // will detect the queue and use it instead of Scheduler.\n ReactCurrentActQueue.current = [];\n }\n\n var prevIsBatchingLegacy = ReactCurrentActQueue.isBatchingLegacy;\n var result;\n\n try {\n // Used to reproduce behavior of `batchedUpdates` in legacy mode. Only\n // set to `true` while the given callback is executed, not for updates\n // triggered during an async event, because this is how the legacy\n // implementation of `act` behaved.\n ReactCurrentActQueue.isBatchingLegacy = true;\n result = callback(); // Replicate behavior of original `act` implementation in legacy mode,\n // which flushed updates immediately after the scope function exits, even\n // if it's an async function.\n\n if (!prevIsBatchingLegacy && ReactCurrentActQueue.didScheduleLegacyUpdate) {\n var queue = ReactCurrentActQueue.current;\n\n if (queue !== null) {\n ReactCurrentActQueue.didScheduleLegacyUpdate = false;\n flushActQueue(queue);\n }\n }\n } catch (error) {\n popActScope(prevActScopeDepth);\n throw error;\n } finally {\n ReactCurrentActQueue.isBatchingLegacy = prevIsBatchingLegacy;\n }\n\n if (result !== null && typeof result === 'object' && typeof result.then === 'function') {\n var thenableResult = result; // The callback is an async function (i.e. returned a promise). Wait\n // for it to resolve before exiting the current scope.\n\n var wasAwaited = false;\n var thenable = {\n then: function (resolve, reject) {\n wasAwaited = true;\n thenableResult.then(function (returnValue) {\n popActScope(prevActScopeDepth);\n\n if (actScopeDepth === 0) {\n // We've exited the outermost act scope. Recursively flush the\n // queue until there's no remaining work.\n recursivelyFlushAsyncActWork(returnValue, resolve, reject);\n } else {\n resolve(returnValue);\n }\n }, function (error) {\n // The callback threw an error.\n popActScope(prevActScopeDepth);\n reject(error);\n });\n }\n };\n\n {\n if (!didWarnNoAwaitAct && typeof Promise !== 'undefined') {\n // eslint-disable-next-line no-undef\n Promise.resolve().then(function () {}).then(function () {\n if (!wasAwaited) {\n didWarnNoAwaitAct = true;\n\n error('You called act(async () => ...) without await. ' + 'This could lead to unexpected testing behaviour, ' + 'interleaving multiple act calls and mixing their ' + 'scopes. ' + 'You should - await act(async () => ...);');\n }\n });\n }\n }\n\n return thenable;\n } else {\n var returnValue = result; // The callback is not an async function. Exit the current scope\n // immediately, without awaiting.\n\n popActScope(prevActScopeDepth);\n\n if (actScopeDepth === 0) {\n // Exiting the outermost act scope. Flush the queue.\n var _queue = ReactCurrentActQueue.current;\n\n if (_queue !== null) {\n flushActQueue(_queue);\n ReactCurrentActQueue.current = null;\n } // Return a thenable. If the user awaits it, we'll flush again in\n // case additional work was scheduled by a microtask.\n\n\n var _thenable = {\n then: function (resolve, reject) {\n // Confirm we haven't re-entered another `act` scope, in case\n // the user does something weird like await the thenable\n // multiple times.\n if (ReactCurrentActQueue.current === null) {\n // Recursively flush the queue until there's no remaining work.\n ReactCurrentActQueue.current = [];\n recursivelyFlushAsyncActWork(returnValue, resolve, reject);\n } else {\n resolve(returnValue);\n }\n }\n };\n return _thenable;\n } else {\n // Since we're inside a nested `act` scope, the returned thenable\n // immediately resolves. The outer scope will flush the queue.\n var _thenable2 = {\n then: function (resolve, reject) {\n resolve(returnValue);\n }\n };\n return _thenable2;\n }\n }\n }\n}\n\nfunction popActScope(prevActScopeDepth) {\n {\n if (prevActScopeDepth !== actScopeDepth - 1) {\n error('You seem to have overlapping act() calls, this is not supported. ' + 'Be sure to await previous act() calls before making a new one. ');\n }\n\n actScopeDepth = prevActScopeDepth;\n }\n}\n\nfunction recursivelyFlushAsyncActWork(returnValue, resolve, reject) {\n {\n var queue = ReactCurrentActQueue.current;\n\n if (queue !== null) {\n try {\n flushActQueue(queue);\n enqueueTask(function () {\n if (queue.length === 0) {\n // No additional work was scheduled. Finish.\n ReactCurrentActQueue.current = null;\n resolve(returnValue);\n } else {\n // Keep flushing work until there's none left.\n recursivelyFlushAsyncActWork(returnValue, resolve, reject);\n }\n });\n } catch (error) {\n reject(error);\n }\n } else {\n resolve(returnValue);\n }\n }\n}\n\nvar isFlushing = false;\n\nfunction flushActQueue(queue) {\n {\n if (!isFlushing) {\n // Prevent re-entrance.\n isFlushing = true;\n var i = 0;\n\n try {\n for (; i < queue.length; i++) {\n var callback = queue[i];\n\n do {\n callback = callback(true);\n } while (callback !== null);\n }\n\n queue.length = 0;\n } catch (error) {\n // If something throws, leave the remaining callbacks on the queue.\n queue = queue.slice(i + 1);\n throw error;\n } finally {\n isFlushing = false;\n }\n }\n }\n}\n\nvar createElement$1 = createElementWithValidation ;\nvar cloneElement$1 = cloneElementWithValidation ;\nvar createFactory = createFactoryWithValidation ;\nvar Children = {\n map: mapChildren,\n forEach: forEachChildren,\n count: countChildren,\n toArray: toArray,\n only: onlyChild\n};\n\nexports.Children = Children;\nexports.Component = Component;\nexports.Fragment = REACT_FRAGMENT_TYPE;\nexports.Profiler = REACT_PROFILER_TYPE;\nexports.PureComponent = PureComponent;\nexports.StrictMode = REACT_STRICT_MODE_TYPE;\nexports.Suspense = REACT_SUSPENSE_TYPE;\nexports.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED = ReactSharedInternals;\nexports.cloneElement = cloneElement$1;\nexports.createContext = createContext;\nexports.createElement = createElement$1;\nexports.createFactory = createFactory;\nexports.createRef = createRef;\nexports.forwardRef = forwardRef;\nexports.isValidElement = isValidElement;\nexports.lazy = lazy;\nexports.memo = memo;\nexports.startTransition = startTransition;\nexports.unstable_act = act;\nexports.useCallback = useCallback;\nexports.useContext = useContext;\nexports.useDebugValue = useDebugValue;\nexports.useDeferredValue = useDeferredValue;\nexports.useEffect = useEffect;\nexports.useId = useId;\nexports.useImperativeHandle = useImperativeHandle;\nexports.useInsertionEffect = useInsertionEffect;\nexports.useLayoutEffect = useLayoutEffect;\nexports.useMemo = useMemo;\nexports.useReducer = useReducer;\nexports.useRef = useRef;\nexports.useState = useState;\nexports.useSyncExternalStore = useSyncExternalStore;\nexports.useTransition = useTransition;\nexports.version = ReactVersion;\n /* global __REACT_DEVTOOLS_GLOBAL_HOOK__ */\nif (\n typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ !== 'undefined' &&\n typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop ===\n 'function'\n) {\n __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop(new Error());\n}\n \n })();\n}\n","'use strict';\n\nif (process.env.NODE_ENV === 'production') {\n module.exports = require('./cjs/react.production.min.js');\n} else {\n module.exports = require('./cjs/react.development.js');\n}\n","import toPropertyKey from \"./toPropertyKey.js\";\nexport default function _defineProperty(obj, key, value) {\n key = toPropertyKey(key);\n if (key in obj) {\n Object.defineProperty(obj, key, {\n value: value,\n enumerable: true,\n configurable: true,\n writable: true\n });\n } else {\n obj[key] = value;\n }\n return obj;\n}","import _typeof from \"./typeof.js\";\nexport default function toPrimitive(t, r) {\n if (\"object\" != _typeof(t) || !t) return t;\n var e = t[Symbol.toPrimitive];\n if (void 0 !== e) {\n var i = e.call(t, r || \"default\");\n if (\"object\" != _typeof(i)) return i;\n throw new TypeError(\"@@toPrimitive must return a primitive value.\");\n }\n return (\"string\" === r ? String : Number)(t);\n}","import _typeof from \"./typeof.js\";\nimport toPrimitive from \"./toPrimitive.js\";\nexport default function toPropertyKey(t) {\n var i = toPrimitive(t, \"string\");\n return \"symbol\" == _typeof(i) ? i : String(i);\n}","export default function _typeof(o) {\n \"@babel/helpers - typeof\";\n\n return _typeof = \"function\" == typeof Symbol && \"symbol\" == typeof Symbol.iterator ? function (o) {\n return typeof o;\n } : function (o) {\n return o && \"function\" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? \"symbol\" : typeof o;\n }, _typeof(o);\n}","// The module cache\nvar __webpack_module_cache__ = {};\n\n// The require function\nfunction __webpack_require__(moduleId) {\n\t// Check if module is in cache\n\tvar cachedModule = __webpack_module_cache__[moduleId];\n\tif (cachedModule !== undefined) {\n\t\treturn cachedModule.exports;\n\t}\n\t// Create a new module (and put it into the cache)\n\tvar module = __webpack_module_cache__[moduleId] = {\n\t\tid: moduleId,\n\t\tloaded: false,\n\t\texports: {}\n\t};\n\n\t// Execute the module function\n\t__webpack_modules__[moduleId](module, module.exports, __webpack_require__);\n\n\t// Flag the module as loaded\n\tmodule.loaded = true;\n\n\t// Return the exports of the module\n\treturn module.exports;\n}\n\n","// getDefaultExport function for compatibility with non-harmony modules\n__webpack_require__.n = (module) => {\n\tvar getter = module && module.__esModule ?\n\t\t() => (module['default']) :\n\t\t() => (module);\n\t__webpack_require__.d(getter, { a: getter });\n\treturn getter;\n};","// define getter functions for harmony exports\n__webpack_require__.d = (exports, definition) => {\n\tfor(var key in definition) {\n\t\tif(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {\n\t\t\tObject.defineProperty(exports, key, { enumerable: true, get: definition[key] });\n\t\t}\n\t}\n};","__webpack_require__.o = (obj, prop) => (Object.prototype.hasOwnProperty.call(obj, prop))","// define __esModule on exports\n__webpack_require__.r = (exports) => {\n\tif(typeof Symbol !== 'undefined' && Symbol.toStringTag) {\n\t\tObject.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });\n\t}\n\tObject.defineProperty(exports, '__esModule', { value: true });\n};","__webpack_require__.nmd = (module) => {\n\tmodule.paths = [];\n\tif (!module.children) module.children = [];\n\treturn module;\n};","import './_acf-jsx-names.js';\nimport './_acf-blocks.js';\n"],"names":["md5","require","$","undefined","BlockControls","InspectorControls","InnerBlocks","useBlockProps","AlignmentToolbar","BlockVerticalAlignmentToolbar","wp","blockEditor","ToolbarGroup","ToolbarButton","Placeholder","Spinner","components","Fragment","element","Component","React","withSelect","data","createHigherOrderComponent","compose","BlockAlignmentMatrixToolbar","__experimentalBlockAlignmentMatrixToolbar","BlockAlignmentMatrixControl","__experimentalBlockAlignmentMatrixControl","BlockFullHeightAlignmentControl","__experimentalBlockFullHeightAligmentControl","__experimentalBlockFullHeightAlignmentControl","useInnerBlocksProps","__experimentalUseInnerBlocksProps","blockTypes","getBlockType","name","getBlockVersion","blockType","acf_block_version","isBlockInQueryLoop","clientId","parents","select","getBlockParents","parentsData","getBlocksByClientId","filter","block","length","isSiteEditor","pagenow","isDesktopPreviewDeviceType","editPostStore","__experimentalGetPreviewDeviceType","getPreviewDeviceType","isEditingTemplate","isiFramedMobileDevicePreview","registerBlockType","allowedTypes","post_types","push","postType","acf","get","includes","icon","substr","iconHTML","createElement","Div","category","blocks","getCategories","slug","pop","parseArgs","title","api_version","key","attributes","default","supports","anchor","type","ThisBlockEdit","BlockEdit","ThisBlockSave","BlockSave","alignText","align_text","addBackCompatAttribute","withAlignTextComponent","alignContent","align_content","withAlignContentComponent","fullHeight","full_height","withFullHeightComponent","edit","props","_objectSpread","save","result","selector","dispatch","getBlocks","args","recurseBlocks","forEach","k","ajaxQueue","fetchCache","fetchBlock","context","query","delay","queueId","JSON","stringify","timeout","promise","Deferred","started","clearTimeout","setTimeout","resolve","apply","ajax","url","dataType","cache","prepareForAjax","action","always","done","arguments","fail","reject","compareObjects","obj1","obj2","parseJSX","html","acfBlockVersion","replace","parseNode","children","node","level","nodeName","parseNodeName","toLowerCase","nodeAttrs","ref","createRef","arrayArgs","map","parseNodeAttr","value","ACFInnerBlocks","childNodes","child","Text","text","textContent","getJSXName","replacement","isget","Script","className","innerBlockProps","nodeAttr","shortcut","applyFilters","css","split","s","pos","indexOf","ruleName","trim","ruleValue","charAt","strCamelCase","c1","parse","withDefaultAttributes","BlockListBlock","WrappedBlockEdit","constructor","Object","keys","upgrades","attribute","render","hooks","addFilter","Content","setup","restrictMode","modes","mode","setAttributes","forcePreview","showToggle","toggleText","__","toggleIcon","toggleMode","label","onClick","BlockForm","BlockBody","_BlockBody","isSelected","showForm","additionalClasses","BlockPreview","ownProps","rootClientId","getBlockRootClientId","index","getBlockIndex","dangerouslySetInnerHTML","__html","el","setHTML","componentDidUpdate","componentDidMount","store","DynamicHTML","setRef","bind","id","subscribed","renderMethod","loadState","fetch","maybePreload","blockId","form","state","preloadedBlocks","modeText","replaceAll","setState","setHtml","jsx","console","warn","Array","isArray","refElement","find","isValidElement","$el","shouldComponentUpdate","componentWillMove","display","$prevParent","parent","$thisParent","clone","componentDidAppend","componentDidRemount","prevProps","prevState","doAction","componentWillUnmount","hash","createBlockAttributesHash","preloaded","serializeData","silent","serialize","on","contextPostId","prevAttributes","prevContext","preview","replaceHtml","renderBlockPreviewEvent","nextProps","nextState","nextAttributes","thisAttributes","blockElement","current","initialize","editor","addAction","validateVerticalAlignment","align","ALIGNMENTS","DEFAULT","validateHorizontalAlignment","validateMatrixAlignment","y","x","OriginalBlockEdit","AlignmentComponent","validateAlignment","onChangeAlignContent","group","onChange","onChangeAlignText","onToggleFullHeight","isActive","onToggle","new_attribute","sort","reduce","acc","currValue","jQuery","jsxNameReplacements","accentheight","acceptcharset","accesskey","alignmentbaseline","allowedblocks","allowfullscreen","allowreorder","arabicform","attributename","attributetype","autocapitalize","autocomplete","autocorrect","autofocus","autoplay","autoreverse","autosave","basefrequency","baselineshift","baseprofile","calcmode","capheight","cellpadding","cellspacing","charset","class","classid","classname","clippath","clippathunits","cliprule","colorinterpolation","colorinterpolationfilters","colorprofile","colorrendering","colspan","contenteditable","contentscripttype","contentstyletype","contextmenu","controlslist","crossorigin","dangerouslysetinnerhtml","datetime","defaultchecked","defaultvalue","diffuseconstant","disablepictureinpicture","disableremoteplayback","dominantbaseline","edgemode","enablebackground","enctype","enterkeyhint","externalresourcesrequired","fillopacity","fillrule","filterres","filterunits","floodcolor","floodopacity","fontfamily","fontsize","fontsizeadjust","fontstretch","fontstyle","fontvariant","fontweight","for","foreignobject","formaction","formenctype","formmethod","formnovalidate","formtarget","frameborder","glyphname","glyphorientationhorizontal","glyphorientationvertical","glyphref","gradienttransform","gradientunits","horizadvx","horizoriginx","hreflang","htmlfor","httpequiv","imagerendering","innerhtml","inputmode","itemid","itemprop","itemref","itemscope","itemtype","kernelmatrix","kernelunitlength","keyparams","keypoints","keysplines","keytimes","keytype","lengthadjust","letterspacing","lightingcolor","limitingconeangle","marginheight","marginwidth","markerend","markerheight","markermid","markerstart","markerunits","markerwidth","maskcontentunits","maskunits","maxlength","mediagroup","minlength","nomodule","novalidate","numoctaves","overlineposition","overlinethickness","paintorder","pathlength","patterncontentunits","patterntransform","patternunits","playsinline","pointerevents","pointsatx","pointsaty","pointsatz","preservealpha","preserveaspectratio","primitiveunits","radiogroup","readonly","referrerpolicy","refx","refy","renderingintent","repeatcount","repeatdur","requiredextensions","requiredfeatures","rowspan","shaperendering","specularconstant","specularexponent","spellcheck","spreadmethod","srcdoc","srclang","srcset","startoffset","stddeviation","stitchtiles","stopcolor","stopopacity","strikethroughposition","strikethroughthickness","strokedasharray","strokedashoffset","strokelinecap","strokelinejoin","strokemiterlimit","strokeopacity","strokewidth","suppresscontenteditablewarning","suppresshydrationwarning","surfacescale","systemlanguage","tabindex","tablevalues","targetx","targety","templatelock","textanchor","textdecoration","textlength","textrendering","underlineposition","underlinethickness","unicodebidi","unicoderange","unitsperem","usemap","valphabetic","vectoreffect","vertadvy","vertoriginx","vertoriginy","vhanging","videographic","viewbox","viewtarget","vmathematical","wordspacing","writingmode","xchannelselector","xheight","xlinkactuate","xlinkarcrole","xlinkhref","xlinkrole","xlinkshow","xlinktitle","xlinktype","xmlbase","xmllang","xmlnsxlink","xmlspace","ychannelselector","zoomandpan"],"sourceRoot":""} \ No newline at end of file diff --git a/assets/build/js/pro/acf-pro-blocks.min.js b/assets/build/js/pro/acf-pro-blocks.min.js index 75f6e68..c9572b2 100644 --- a/assets/build/js/pro/acf-pro-blocks.min.js +++ b/assets/build/js/pro/acf-pro-blocks.min.js @@ -1 +1 @@ -(()=>{var e={905:()=>{jQuery,acf.jsxNameReplacements={"accent-height":"accentHeight",accentheight:"accentHeight","accept-charset":"acceptCharset",acceptcharset:"acceptCharset",accesskey:"accessKey","alignment-baseline":"alignmentBaseline",alignmentbaseline:"alignmentBaseline",allowedblocks:"allowedBlocks",allowfullscreen:"allowFullScreen",allowreorder:"allowReorder","arabic-form":"arabicForm",arabicform:"arabicForm",attributename:"attributeName",attributetype:"attributeType",autocapitalize:"autoCapitalize",autocomplete:"autoComplete",autocorrect:"autoCorrect",autofocus:"autoFocus",autoplay:"autoPlay",autoreverse:"autoReverse",autosave:"autoSave",basefrequency:"baseFrequency","baseline-shift":"baselineShift",baselineshift:"baselineShift",baseprofile:"baseProfile",calcmode:"calcMode","cap-height":"capHeight",capheight:"capHeight",cellpadding:"cellPadding",cellspacing:"cellSpacing",charset:"charSet",class:"className",classid:"classID",classname:"className","clip-path":"clipPath","clip-rule":"clipRule",clippath:"clipPath",clippathunits:"clipPathUnits",cliprule:"clipRule","color-interpolation":"colorInterpolation","color-interpolation-filters":"colorInterpolationFilters","color-profile":"colorProfile","color-rendering":"colorRendering",colorinterpolation:"colorInterpolation",colorinterpolationfilters:"colorInterpolationFilters",colorprofile:"colorProfile",colorrendering:"colorRendering",colspan:"colSpan",contenteditable:"contentEditable",contentscripttype:"contentScriptType",contentstyletype:"contentStyleType",contextmenu:"contextMenu",controlslist:"controlsList",crossorigin:"crossOrigin",dangerouslysetinnerhtml:"dangerouslySetInnerHTML",datetime:"dateTime",defaultchecked:"defaultChecked",defaultvalue:"defaultValue",diffuseconstant:"diffuseConstant",disablepictureinpicture:"disablePictureInPicture",disableremoteplayback:"disableRemotePlayback","dominant-baseline":"dominantBaseline",dominantbaseline:"dominantBaseline",edgemode:"edgeMode","enable-background":"enableBackground",enablebackground:"enableBackground",enctype:"encType",enterkeyhint:"enterKeyHint",externalresourcesrequired:"externalResourcesRequired","fill-opacity":"fillOpacity","fill-rule":"fillRule",fillopacity:"fillOpacity",fillrule:"fillRule",filterres:"filterRes",filterunits:"filterUnits","flood-color":"floodColor","flood-opacity":"floodOpacity",floodcolor:"floodColor",floodopacity:"floodOpacity","font-family":"fontFamily","font-size":"fontSize","font-size-adjust":"fontSizeAdjust","font-stretch":"fontStretch","font-style":"fontStyle","font-variant":"fontVariant","font-weight":"fontWeight",fontfamily:"fontFamily",fontsize:"fontSize",fontsizeadjust:"fontSizeAdjust",fontstretch:"fontStretch",fontstyle:"fontStyle",fontvariant:"fontVariant",fontweight:"fontWeight",for:"htmlFor",foreignobject:"foreignObject",formaction:"formAction",formenctype:"formEncType",formmethod:"formMethod",formnovalidate:"formNoValidate",formtarget:"formTarget",frameborder:"frameBorder","glyph-name":"glyphName","glyph-orientation-horizontal":"glyphOrientationHorizontal","glyph-orientation-vertical":"glyphOrientationVertical",glyphname:"glyphName",glyphorientationhorizontal:"glyphOrientationHorizontal",glyphorientationvertical:"glyphOrientationVertical",glyphref:"glyphRef",gradienttransform:"gradientTransform",gradientunits:"gradientUnits","horiz-adv-x":"horizAdvX","horiz-origin-x":"horizOriginX",horizadvx:"horizAdvX",horizoriginx:"horizOriginX",hreflang:"hrefLang",htmlfor:"htmlFor","http-equiv":"httpEquiv",httpequiv:"httpEquiv","image-rendering":"imageRendering",imagerendering:"imageRendering",innerhtml:"innerHTML",inputmode:"inputMode",itemid:"itemID",itemprop:"itemProp",itemref:"itemRef",itemscope:"itemScope",itemtype:"itemType",kernelmatrix:"kernelMatrix",kernelunitlength:"kernelUnitLength",keyparams:"keyParams",keypoints:"keyPoints",keysplines:"keySplines",keytimes:"keyTimes",keytype:"keyType",lengthadjust:"lengthAdjust","letter-spacing":"letterSpacing",letterspacing:"letterSpacing","lighting-color":"lightingColor",lightingcolor:"lightingColor",limitingconeangle:"limitingConeAngle",marginheight:"marginHeight",marginwidth:"marginWidth","marker-end":"markerEnd","marker-mid":"markerMid","marker-start":"markerStart",markerend:"markerEnd",markerheight:"markerHeight",markermid:"markerMid",markerstart:"markerStart",markerunits:"markerUnits",markerwidth:"markerWidth",maskcontentunits:"maskContentUnits",maskunits:"maskUnits",maxlength:"maxLength",mediagroup:"mediaGroup",minlength:"minLength",nomodule:"noModule",novalidate:"noValidate",numoctaves:"numOctaves","overline-position":"overlinePosition","overline-thickness":"overlineThickness",overlineposition:"overlinePosition",overlinethickness:"overlineThickness","paint-order":"paintOrder",paintorder:"paintOrder","panose-1":"panose1",pathlength:"pathLength",patterncontentunits:"patternContentUnits",patterntransform:"patternTransform",patternunits:"patternUnits",playsinline:"playsInline","pointer-events":"pointerEvents",pointerevents:"pointerEvents",pointsatx:"pointsAtX",pointsaty:"pointsAtY",pointsatz:"pointsAtZ",preservealpha:"preserveAlpha",preserveaspectratio:"preserveAspectRatio",primitiveunits:"primitiveUnits",radiogroup:"radioGroup",readonly:"readOnly",referrerpolicy:"referrerPolicy",refx:"refX",refy:"refY","rendering-intent":"renderingIntent",renderingintent:"renderingIntent",repeatcount:"repeatCount",repeatdur:"repeatDur",requiredextensions:"requiredExtensions",requiredfeatures:"requiredFeatures",rowspan:"rowSpan","shape-rendering":"shapeRendering",shaperendering:"shapeRendering",specularconstant:"specularConstant",specularexponent:"specularExponent",spellcheck:"spellCheck",spreadmethod:"spreadMethod",srcdoc:"srcDoc",srclang:"srcLang",srcset:"srcSet",startoffset:"startOffset",stddeviation:"stdDeviation",stitchtiles:"stitchTiles","stop-color":"stopColor","stop-opacity":"stopOpacity",stopcolor:"stopColor",stopopacity:"stopOpacity","strikethrough-position":"strikethroughPosition","strikethrough-thickness":"strikethroughThickness",strikethroughposition:"strikethroughPosition",strikethroughthickness:"strikethroughThickness","stroke-dasharray":"strokeDasharray","stroke-dashoffset":"strokeDashoffset","stroke-linecap":"strokeLinecap","stroke-linejoin":"strokeLinejoin","stroke-miterlimit":"strokeMiterlimit","stroke-opacity":"strokeOpacity","stroke-width":"strokeWidth",strokedasharray:"strokeDasharray",strokedashoffset:"strokeDashoffset",strokelinecap:"strokeLinecap",strokelinejoin:"strokeLinejoin",strokemiterlimit:"strokeMiterlimit",strokeopacity:"strokeOpacity",strokewidth:"strokeWidth",suppresscontenteditablewarning:"suppressContentEditableWarning",suppresshydrationwarning:"suppressHydrationWarning",surfacescale:"surfaceScale",systemlanguage:"systemLanguage",tabindex:"tabIndex",tablevalues:"tableValues",targetx:"targetX",targety:"targetY",templatelock:"templateLock","text-anchor":"textAnchor","text-decoration":"textDecoration","text-rendering":"textRendering",textanchor:"textAnchor",textdecoration:"textDecoration",textlength:"textLength",textrendering:"textRendering","underline-position":"underlinePosition","underline-thickness":"underlineThickness",underlineposition:"underlinePosition",underlinethickness:"underlineThickness","unicode-bidi":"unicodeBidi","unicode-range":"unicodeRange",unicodebidi:"unicodeBidi",unicoderange:"unicodeRange","units-per-em":"unitsPerEm",unitsperem:"unitsPerEm",usemap:"useMap","v-alphabetic":"vAlphabetic","v-hanging":"vHanging","v-ideographic":"vIdeographic","v-mathematical":"vMathematical",valphabetic:"vAlphabetic","vector-effect":"vectorEffect",vectoreffect:"vectorEffect","vert-adv-y":"vertAdvY","vert-origin-x":"vertOriginX","vert-origin-y":"vertOriginY",vertadvy:"vertAdvY",vertoriginx:"vertOriginX",vertoriginy:"vertOriginY",vhanging:"vHanging",videographic:"vIdeographic",viewbox:"viewBox",viewtarget:"viewTarget",vmathematical:"vMathematical","word-spacing":"wordSpacing",wordspacing:"wordSpacing","writing-mode":"writingMode",writingmode:"writingMode","x-height":"xHeight",xchannelselector:"xChannelSelector",xheight:"xHeight","xlink:actuate":"xlinkActuate","xlink:arcrole":"xlinkArcrole","xlink:href":"xlinkHref","xlink:role":"xlinkRole","xlink:show":"xlinkShow","xlink:title":"xlinkTitle","xlink:type":"xlinkType",xlinkactuate:"xlinkActuate",xlinkarcrole:"xlinkArcrole",xlinkhref:"xlinkHref",xlinkrole:"xlinkRole",xlinkshow:"xlinkShow",xlinktitle:"xlinkTitle",xlinktype:"xlinkType","xml:base":"xmlBase","xml:lang":"xmlLang","xml:space":"xmlSpace",xmlbase:"xmlBase",xmllang:"xmlLang","xmlns:xlink":"xmlnsXlink",xmlnsxlink:"xmlnsXlink",xmlspace:"xmlSpace",ychannelselector:"yChannelSelector",zoomandpan:"zoomAndPan"}},487:e=>{var t={utf8:{stringToBytes:function(e){return t.bin.stringToBytes(unescape(encodeURIComponent(e)))},bytesToString:function(e){return decodeURIComponent(escape(t.bin.bytesToString(e)))}},bin:{stringToBytes:function(e){for(var t=[],r=0;r{var t,r;t="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",r={rotl:function(e,t){return e<>>32-t},rotr:function(e,t){return e<<32-t|e>>>t},endian:function(e){if(e.constructor==Number)return 16711935&r.rotl(e,8)|4278255360&r.rotl(e,24);for(var t=0;t0;e--)t.push(Math.floor(256*Math.random()));return t},bytesToWords:function(e){for(var t=[],r=0,n=0;r>>5]|=e[r]<<24-n%32;return t},wordsToBytes:function(e){for(var t=[],r=0;r<32*e.length;r+=8)t.push(e[r>>>5]>>>24-r%32&255);return t},bytesToHex:function(e){for(var t=[],r=0;r>>4).toString(16)),t.push((15&e[r]).toString(16));return t.join("")},hexToBytes:function(e){for(var t=[],r=0;r>>6*(3-i)&63)):r.push("=");return r.join("")},base64ToBytes:function(e){e=e.replace(/[^A-Z0-9+\/]/gi,"");for(var r=[],n=0,o=0;n>>6-2*o);return r}},e.exports=r},738:e=>{function t(e){return!!e.constructor&&"function"==typeof e.constructor.isBuffer&&e.constructor.isBuffer(e)}e.exports=function(e){return null!=e&&(t(e)||function(e){return"function"==typeof e.readFloatLE&&"function"==typeof e.slice&&t(e.slice(0,0))}(e)||!!e._isBuffer)}},568:(e,t,r)=>{var n,o,i,a,s;n=r(12),o=r(487).utf8,i=r(738),a=r(487).bin,(s=function(e,t){e.constructor==String?e=t&&"binary"===t.encoding?a.stringToBytes(e):o.stringToBytes(e):i(e)?e=Array.prototype.slice.call(e,0):Array.isArray(e)||e.constructor===Uint8Array||(e=e.toString());for(var r=n.bytesToWords(e),l=8*e.length,c=1732584193,p=-271733879,u=-1732584194,d=271733878,f=0;f>>24)|4278255360&(r[f]<<24|r[f]>>>8);r[l>>>5]|=128<>>9<<4)]=l;var h=s._ff,m=s._gg,g=s._hh,y=s._ii;for(f=0;f>>0,p=p+k>>>0,u=u+v>>>0,d=d+x>>>0}return n.endian([c,p,u,d])})._ff=function(e,t,r,n,o,i,a){var s=e+(t&r|~t&n)+(o>>>0)+a;return(s<>>32-i)+t},s._gg=function(e,t,r,n,o,i,a){var s=e+(t&n|r&~n)+(o>>>0)+a;return(s<>>32-i)+t},s._hh=function(e,t,r,n,o,i,a){var s=e+(t^r^n)+(o>>>0)+a;return(s<>>32-i)+t},s._ii=function(e,t,r,n,o,i,a){var s=e+(r^(t|~n))+(o>>>0)+a;return(s<>>32-i)+t},s._blocksize=16,s._digestsize=16,e.exports=function(e,t){if(null==e)throw new Error("Illegal argument "+e);var r=n.wordsToBytes(s(e,t));return t&&t.asBytes?r:t&&t.asString?a.bytesToString(r):n.bytesToHex(r)}},408:(e,t)=>{"use strict";var r=Symbol.for("react.element"),n=(Symbol.for("react.portal"),Symbol.for("react.fragment"),Symbol.for("react.strict_mode"),Symbol.for("react.profiler"),Symbol.for("react.provider"),Symbol.for("react.context"),Symbol.for("react.forward_ref"),Symbol.for("react.suspense"),Symbol.for("react.memo"),Symbol.for("react.lazy"),Symbol.iterator,{isMounted:function(){return!1},enqueueForceUpdate:function(){},enqueueReplaceState:function(){},enqueueSetState:function(){}}),o=Object.assign,i={};function a(e,t,r){this.props=e,this.context=t,this.refs=i,this.updater=r||n}function s(){}function l(e,t,r){this.props=e,this.context=t,this.refs=i,this.updater=r||n}a.prototype.isReactComponent={},a.prototype.setState=function(e,t){if("object"!=typeof e&&"function"!=typeof e&&null!=e)throw Error("setState(...): takes an object of state variables to update or a function which returns an object of state variables.");this.updater.enqueueSetState(this,e,t,"setState")},a.prototype.forceUpdate=function(e){this.updater.enqueueForceUpdate(this,e,"forceUpdate")},s.prototype=a.prototype;var c=l.prototype=new s;c.constructor=l,o(c,a.prototype),c.isPureReactComponent=!0;Array.isArray;var p=Object.prototype.hasOwnProperty,u=null,d={key:!0,ref:!0,__self:!0,__source:!0};t.createElement=function(e,t,n){var o,i={},a=null,s=null;if(null!=t)for(o in void 0!==t.ref&&(s=t.ref),void 0!==t.key&&(a=""+t.key),t)p.call(t,o)&&!d.hasOwnProperty(o)&&(i[o]=t[o]);var l=arguments.length-2;if(1===l)i.children=n;else if(1{"use strict";e.exports=r(408)}},t={};function r(n){var o=t[n];if(void 0!==o)return o.exports;var i=t[n]={exports:{}};return e[n](i,i.exports,r),i.exports}(()=>{"use strict";function e(t){return e="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},e(t)}function t(t){var r=function(t,r){if("object"!==e(t)||null===t)return t;var n=t[Symbol.toPrimitive];if(void 0!==n){var o=n.call(t,"string");if("object"!==e(o))return o;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"===e(r)?r:String(r)}r(905);var n=r(294);function o(e,t){var r=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),r.push.apply(r,n)}return r}function i(e){for(var r=1;r{const{BlockControls:r,InspectorControls:o,InnerBlocks:s,useBlockProps:l,AlignmentToolbar:c,BlockVerticalAlignmentToolbar:p}=wp.blockEditor,{ToolbarGroup:u,ToolbarButton:d,Placeholder:f,Spinner:h}=wp.components,{Fragment:m}=wp.element,{Component:g}=React,{withSelect:y}=wp.data,{createHigherOrderComponent:b}=wp.compose,k=wp.blockEditor.__experimentalBlockAlignmentMatrixToolbar||wp.blockEditor.BlockAlignmentMatrixToolbar,v=wp.blockEditor.__experimentalBlockAlignmentMatrixControl||wp.blockEditor.BlockAlignmentMatrixControl,x=wp.blockEditor.__experimentalBlockFullHeightAligmentControl||wp.blockEditor.__experimentalBlockFullHeightAlignmentControl||wp.blockEditor.BlockFullHeightAlignmentControl,w=wp.blockEditor.__experimentalUseInnerBlocksProps||wp.blockEditor.useInnerBlocksProps,S={};function E(e){return S[e]||!1}function A(e){return E(e).acf_block_version||1}function T(e){const t=wp.data.select("core/block-editor").getBlockParents(e);return wp.data.select("core/block-editor").getBlocksByClientId(t).filter((e=>"core/query"===e.name)).length}function _(){return"string"==typeof pagenow&&"site-editor"===pagenow}function C(){const e=O("core/edit-post");return!!e&&!!e.isEditingTemplate&&e.isEditingTemplate()}function B(){return e("iframe[name=editor-canvas]").length&&!function(){const e=O("core/edit-post");return!e||(e.__experimentalGetPreviewDeviceType?"Desktop"===e.__experimentalGetPreviewDeviceType():!e.getPreviewDeviceType||"Desktop"===e.getPreviewDeviceType())}()}function j(e){const o=e.post_types||[];if(o.length){o.push("wp_block");const e=acf.get("postType");if(!o.includes(e))return!1}if("string"==typeof e.icon&&"t===e.category)).pop()||(e.category="common"),e=acf.parseArgs(e,{title:"",name:"",category:"",api_version:2,acf_block_version:1});for(const t in e.attributes)0===e.attributes[t].default.length&&delete e.attributes[t].default;e.supports.anchor&&(e.attributes.anchor={type:"string"});let a=L,s=q;var l;(e.supports.alignText||e.supports.align_text)&&(e.attributes=Z(e.attributes,"align_text","string"),a=function(e,t){const o=Q;return t.alignText=o(t.alignText),class extends g{render(){const{attributes:t,setAttributes:a}=this.props,{alignText:s}=t;return(0,n.createElement)(m,null,(0,n.createElement)(r,{group:"block"},(0,n.createElement)(c,{value:o(s),onChange:function(e){a({alignText:o(e)})}})),(0,n.createElement)(e,i({},this.props)))}}}(a,e)),(e.supports.alignContent||e.supports.align_content)&&(e.attributes=Z(e.attributes,"align_content","string"),a=function(e,o){let a,s,l=o.supports.align_content||o.supports.alignContent;return"matrix"===l?(a=v||k,s=K):(a=p,s=G),a===t?(console.warn(`The "${l}" alignment component was not found.`),e):(o.alignContent=s(o.alignContent),class extends g{render(){const{attributes:t,setAttributes:o}=this.props,{alignContent:l}=t;return(0,n.createElement)(m,null,(0,n.createElement)(r,{group:"block"},(0,n.createElement)(a,{label:acf.__("Change content alignment"),value:s(l),onChange:function(e){o({alignContent:s(e)})}})),(0,n.createElement)(e,i({},this.props)))}})}(a,e)),(e.supports.fullHeight||e.supports.full_height)&&(e.attributes=Z(e.attributes,"full_height","boolean"),l=a,e.blockType,a=x?class extends g{render(){const{attributes:e,setAttributes:t}=this.props,{fullHeight:o}=e;return(0,n.createElement)(m,null,(0,n.createElement)(r,{group:"block"},(0,n.createElement)(x,{isActive:o,onToggle:function(e){t({fullHeight:e})}})),(0,n.createElement)(l,i({},this.props)))}}:l),e.edit=e=>(0,n.createElement)(a,i({},e)),e.save=()=>(0,n.createElement)(s,null),S[e.name]=e;const u=wp.blocks.registerBlockType(e.name,e);return u.attributes.anchor&&(u.attributes.anchor={type:"string"}),u}function O(e){return"core/block-editor"===e?wp.data.select("core/block-editor")||wp.data.select("core/editor"):wp.data.select(e)}const P={},R={};function I(t){const{attributes:r={},context:n={},query:o={},clientId:s=null,delay:l=0}=t,c=a(JSON.stringify(i(i(i({},r),n),o))),p=P[c]||{query:{},timeout:!1,promise:e.Deferred(),started:!1};return p.query=i(i({},p.query),o),p.started||(clearTimeout(p.timeout),p.timeout=setTimeout((()=>{p.started=!0,R[c]?(P[c]=null,p.promise.resolve.apply(R[c][0],R[c][1])):e.ajax({url:acf.get("ajaxurl"),dataType:"json",type:"post",cache:!1,data:acf.prepareForAjax({action:"acf/ajax/fetch-block",block:JSON.stringify(r),clientId:s,context:JSON.stringify(n),query:p.query})}).always((()=>{P[c]=null})).done((function(){R[c]=[this,arguments],p.promise.resolve.apply(this,arguments)})).fail((function(){p.promise.reject.apply(this,arguments)}))}),l),P[c]=p),p.promise}function D(e,t){return JSON.stringify(e)===JSON.stringify(t)}function M(e,t,r=0){const o=function(e,t){switch(e){case"innerblocks":return t<2?s:"ACFInnerBlocks";case"script":return X;case"#comment":return null;default:e=H(e)}return e}(e.nodeName.toLowerCase(),t);if(!o)return null;const a={};if(1===r&&"ACFInnerBlocks"!==o&&(a.ref=React.createRef()),acf.arrayArgs(e.attributes).map(F).forEach((({name:e,value:t})=>{a[e]=t})),"ACFInnerBlocks"===o)return(0,n.createElement)(z,i({},a));const l=[o,a];return acf.arrayArgs(e.childNodes).forEach((e=>{if(e instanceof Text){const t=e.textContent;t&&l.push(t)}else l.push(M(e,t,r+1))})),React.createElement.apply(this,l)}function H(e){return acf.isget(acf,"jsxNameReplacements",e)||e}function z(e){const{className:t="acf-innerblocks-container"}=e,r=w({className:t},e);return(0,n.createElement)("div",i({},r),r.children)}function F(e){let t=e.name,r=e.value,n=acf.applyFilters("acf_blocks_parse_node_attr",!1,e);if(n)return n;switch(t){case"class":t="className";break;case"style":const e={};r.split(";").forEach((t=>{const r=t.indexOf(":");if(r>0){let n=t.substr(0,r).trim();const o=t.substr(r+1).trim();"-"!==n.charAt(0)&&(n=acf.strCamelCase(n)),e[n]=o}})),r=e;break;default:if(0===t.indexOf("data-"))break;t=H(t);const n=r.charAt(0);"["!==n&&"{"!==n||(r=JSON.parse(r)),"true"!==r&&"false"!==r||(r="true"===r)}return{name:t,value:r}}acf.parseJSX=(t,r)=>(t=(t="
                          "+t+"
                          ").replace(/]+)?\/>/,""),M(e(t)[0],r,0).props.children);const N=b((e=>class extends g{constructor(e){super(e);const{name:r,attributes:n}=this.props,o=E(r);if(!o)return;Object.keys(n).forEach((e=>{""===n[e]&&delete n[e]}));const i={full_height:"fullHeight",align_content:"alignContent",align_text:"alignText"};Object.keys(i).forEach((e=>{n[e]!==t?n[i[e]]=n[e]:n[i[e]]===t&&o[e]!==t&&(n[i[e]]=o[e]),delete o[e],delete n[e]}));for(let e in o.attributes)n[e]===t&&o[e]!==t&&(n[e]=o[e])}render(){return(0,n.createElement)(e,i({},this.props))}}),"withDefaultAttributes");function q(){return(0,n.createElement)(s.Content,null)}wp.hooks.addFilter("editor.BlockListBlock","acf/with-default-attributes",N);class L extends g{constructor(e){super(e),this.setup()}setup(){const{name:e,attributes:t,clientId:r}=this.props,n=E(e);function o(e){e.includes(t.mode)||(t.mode=e[0])}if(T(r)||_()||B()||C())o(["preview"]);else switch(n.mode){case"edit":o(["edit","preview"]);break;case"preview":o(["preview","edit"]);break;default:o(["auto"])}}render(){const{name:e,attributes:t,setAttributes:a,clientId:s}=this.props,l=E(e),c=T(s)||_()||B()||C();let{mode:p}=t;c&&(p="preview");let f=l.supports.mode;("auto"===p||c)&&(f=!1);const h="preview"===p?acf.__("Switch to Edit"):acf.__("Switch to Preview"),g="preview"===p?"edit":"welcome-view-site";return(0,n.createElement)(m,null,(0,n.createElement)(r,null,f&&(0,n.createElement)(u,null,(0,n.createElement)(d,{className:"components-icon-button components-toolbar__control",label:h,icon:g,onClick:function(){a({mode:"preview"===p?"edit":"preview"})}}))),(0,n.createElement)(o,null,"preview"===p&&(0,n.createElement)("div",{className:"acf-block-component acf-block-panel"},(0,n.createElement)(V,i({},this.props)))),(0,n.createElement)(U,i({},this.props)))}}const U=y(((e,t)=>{const{clientId:r}=t,n=e("core/block-editor").getBlockRootClientId(r);return{index:e("core/block-editor").getBlockIndex(r,n)}}))((function(e){const{attributes:t,isSelected:r,name:o}=e,{mode:a}=t;let s=!0,c="acf-block-component acf-block-body";return("auto"===a&&!r||"preview"===a)&&(c+=" acf-block-preview",s=!1),A(o)>1?(0,n.createElement)("div",i({},l({className:c})),s?(0,n.createElement)(V,i({},e)):(0,n.createElement)(Y,i({},e))):(0,n.createElement)("div",i({},l()),(0,n.createElement)("div",{className:"acf-block-component acf-block-body"},s?(0,n.createElement)(V,i({},e)):(0,n.createElement)(Y,i({},e))))}));class $ extends g{render(){return(0,n.createElement)("div",{dangerouslySetInnerHTML:{__html:this.props.children}})}}class X extends g{render(){return(0,n.createElement)("div",{ref:e=>this.el=e})}setHTML(t){e(this.el).html(` +
                          - -

                          + +

                          field groups to group custom fields together, and then attach those fields to edit screens.', 'acf' ), - acf_add_url_utm_tags( 'https://www.advancedcustomfields.com/resources/creating-a-field-group/', 'docs', 'no-field-groups' ) + __( 'ACF uses field groups to group custom fields together, and then attach those fields to edit screens.', 'acf' ), + acf_add_url_utm_tags( 'https://www.advancedcustomfields.com/resources/creating-a-field-group/', 'docs', 'no-field-groups' ) + ) ); ?>

                          - +

                          getting started guide.', 'acf' ), - acf_add_url_utm_tags( 'https://www.advancedcustomfields.com/resources/getting-started-with-acf/', 'docs', 'no-field-groups' ) + __( 'New to ACF? Take a look at our getting started guide.', 'acf' ), + acf_add_url_utm_tags( 'https://www.advancedcustomfields.com/resources/getting-started-with-acf/', 'docs', 'no-field-groups' ) + ) ); ?>

                          diff --git a/includes/admin/views/acf-field-group/location-group.php b/includes/admin/views/acf-field-group/location-group.php index 867e763..992719f 100644 --- a/includes/admin/views/acf-field-group/location-group.php +++ b/includes/admin/views/acf-field-group/location-group.php @@ -1,6 +1,6 @@ -
                          +
                          -

                          +

                            diff --git a/includes/admin/views/acf-field-group/location-rule.php b/includes/admin/views/acf-field-group/location-rule.php index a8c7c95..703d59b 100644 --- a/includes/admin/views/acf-field-group/location-rule.php +++ b/includes/admin/views/acf-field-group/location-rule.php @@ -4,7 +4,7 @@ $prefix = 'acf_field_group[location][' . $rule['group'] . '][' . $rule['id'] . ']'; ?> - +
                            @@ -75,13 +75,13 @@ // custom } else { - echo $choices; + echo acf_esc_html( $choices ); } ?> - + diff --git a/includes/admin/views/acf-field-group/locations.php b/includes/admin/views/acf-field-group/locations.php index 7e0131d..66c395a 100644 --- a/includes/admin/views/acf-field-group/locations.php +++ b/includes/admin/views/acf-field-group/locations.php @@ -6,7 +6,7 @@ ?>
                            - + ?
                            @@ -32,9 +32,9 @@ endforeach; ?> -

                            +

                            - +
                            diff --git a/includes/admin/views/acf-field-group/options.php b/includes/admin/views/acf-field-group/options.php index 341be5a..3297973 100644 --- a/includes/admin/views/acf-field-group/options.php +++ b/includes/admin/views/acf-field-group/options.php @@ -283,7 +283,7 @@ ?>
                            - +
                            +
                            @@ -7,10 +14,12 @@

                            getting started guide.', 'acf' ), - acf_add_url_utm_tags( 'https://www.advancedcustomfields.com/resources/getting-started-with-acf/', 'docs', 'no-post-types' ) + __( 'New to ACF? Take a look at our getting started guide.', 'acf' ), + acf_add_url_utm_tags( 'https://www.advancedcustomfields.com/resources/getting-started-with-acf/', 'docs', 'no-post-types' ) + ) ); ?>

                            diff --git a/includes/admin/views/acf-taxonomy/advanced-settings.php b/includes/admin/views/acf-taxonomy/advanced-settings.php index 9125414..dcfe4bc 100644 --- a/includes/admin/views/acf-taxonomy/advanced-settings.php +++ b/includes/admin/views/acf-taxonomy/advanced-settings.php @@ -137,8 +137,8 @@ break; case 'labels': echo '
                            '; - echo '' . __( 'Regenerate', 'acf' ) . ''; - echo '' . __( 'Clear', 'acf' ) . ''; + echo '' . esc_html__( 'Regenerate', 'acf' ) . ''; + echo '' . esc_html__( 'Clear', 'acf' ) . ''; echo ''; echo '
                            '; diff --git a/includes/admin/views/acf-taxonomy/list-empty.php b/includes/admin/views/acf-taxonomy/list-empty.php index 2e9c8e2..7e0f000 100644 --- a/includes/admin/views/acf-taxonomy/list-empty.php +++ b/includes/admin/views/acf-taxonomy/list-empty.php @@ -1,3 +1,11 @@ +
                            @@ -7,10 +15,12 @@

                            getting started guide.', 'acf' ), - acf_add_url_utm_tags( 'https://www.advancedcustomfields.com/resources/getting-started-with-acf/', 'docs', 'no-taxonomies' ) + __( 'New to ACF? Take a look at our getting started guide.', 'acf' ), + acf_add_url_utm_tags( 'https://www.advancedcustomfields.com/resources/getting-started-with-acf/', 'docs', 'no-taxonomies' ) + ) ); ?>

                            diff --git a/includes/admin/views/browse-fields-modal.php b/includes/admin/views/browse-fields-modal.php index ac3f51d..9cc522f 100644 --- a/includes/admin/views/browse-fields-modal.php +++ b/includes/admin/views/browse-fields-modal.php @@ -62,7 +62,7 @@ - +
                            @@ -72,7 +72,7 @@

                            - +

                            diff --git a/includes/admin/views/escaped-html-notice.php b/includes/admin/views/escaped-html-notice.php new file mode 100644 index 0000000..276b9fe --- /dev/null +++ b/includes/admin/views/escaped-html-notice.php @@ -0,0 +1,45 @@ +' . $acf_plugin_name . ' —'; +$acf_learn_how_to_fix = '' . __( 'Learn more', 'acf' ) . ''; +$acf_class = 'notice-error'; +$acf_user_can_acf = false; + +if ( current_user_can( acf_get_setting( 'capability' ) ) ) { + $acf_user_can_acf = true; + $acf_show_details = ' ' . __( 'Show details', 'acf' ) . ''; + $acf_class .= ' is-dismissible'; +} else { + $acf_show_details = __( 'Please contact your site administrator or developer for more details.', 'acf' ); +} + +$acf_error_msg = sprintf( +/* translators: %1$s - name of the ACF plugin. %2$s - Link to documentation. %3$s - Link to show more details about the error */ + __( '%1$s ACF now automatically escapes unsafe HTML when rendered by the_field or the ACF shortcode. We\'ve detected the output of some of your fields has been modified by this change, but this may not be a breaking change. %2$s. %3$s.', 'acf' ), + $acf_plugin_name, + $acf_learn_how_to_fix, + $acf_show_details +); + +?> +
                            +

                            + + + +
                            diff --git a/includes/admin/views/global/navigation.php b/includes/admin/views/global/navigation.php index be4f721..23f0f57 100644 --- a/includes/admin/views/global/navigation.php +++ b/includes/admin/views/global/navigation.php @@ -144,12 +144,12 @@ function acf_print_menu_section( $menu_items, $section = '' ) { foreach ( $menu_items as $menu_item ) { $class = ! empty( $menu_item['class'] ) ? $menu_item['class'] : $menu_item['text']; $target = ! empty( $menu_item['target'] ) ? ' target="' . esc_attr( $menu_item['target'] ) . '"' : ''; - $li_class = ! empty( $menu_item['li_class'] ) ? $menu_item['li_class'] : ''; + $li_class = ! empty( $menu_item['li_class'] ) ? esc_attr( $menu_item['li_class'] ) : ''; $html = sprintf( '%s', ! empty( $menu_item['is_active'] ) ? ' is-active' : '', - 'acf-header-tab-' . acf_slugify( $class ), + 'acf-header-tab-' . esc_attr( acf_slugify( $class ) ), esc_url( $menu_item['url'] ), $target, acf_esc_html( $menu_item['text'] ) @@ -166,20 +166,20 @@ function acf_print_menu_section( $menu_items, $section = '' ) { $section_html .= $html; } - echo $section_html; + echo $section_html; //phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- safely built and escaped HTML above. } ?>
                            - -

                            +

                            @@ -231,7 +231,7 @@ function acf_print_menu_section( $menu_items, $section = '' ) { -
                            diff --git a/includes/admin/views/options-page-preview.php b/includes/admin/views/options-page-preview.php index 84bdb39..e423c77 100644 --- a/includes/admin/views/options-page-preview.php +++ b/includes/admin/views/options-page-preview.php @@ -22,12 +22,12 @@
                            - +

                            - - + +

                            diff --git a/includes/admin/views/tools/tools.php b/includes/admin/views/tools/tools.php index 7563395..417f346 100644 --- a/includes/admin/views/tools/tools.php +++ b/includes/admin/views/tools/tools.php @@ -1,16 +1,8 @@
                            -

                            -

                            + -
                            +
                            diff --git a/includes/admin/views/upgrade/network.php b/includes/admin/views/upgrade/network.php index ba3a683..3ee5031 100644 --- a/includes/admin/views/upgrade/network.php +++ b/includes/admin/views/upgrade/network.php @@ -1,13 +1,10 @@ @@ -21,10 +18,11 @@
                            -

                            +

                            -

                            -

                            + +

                            +

                            @@ -33,9 +31,9 @@ - + @@ -44,9 +42,9 @@ - + @@ -67,17 +65,18 @@ class="alternate"> @@ -92,8 +91,9 @@ class="alternate">
                            - +
                            - +
                            - + -
                            +
                            - + + - +
                            -

                            -

                            Return to network dashboard', 'acf' ), network_admin_url() ); ?>

                            +

                            + +

                            Return to network dashboard', 'acf' ), esc_url( network_admin_url() ) ) ); ?>

                            ' . $nl; - - // echo - echo $o; + _deprecated_function( __FUNCTION__, '6.2.7' ); + return false; } +/** + * A legacy function designed for developer debugging. + * + * @deprecated 6.2.6 Removed for security, but keeping the definition in case third party devs have it in their code. + * @since 5.0.0 + * + * @return false + */ function acf_debug_start() { - - acf_update_setting( 'debug_start', memory_get_usage() ); + _deprecated_function( __FUNCTION__, '6.2.7' ); + return false; } +/** + * A legacy function designed for developer debugging. + * + * @deprecated 6.2.6 Removed for security, but keeping the definition in case third party devs have it in their code. + * @since 5.0.0 + * + * @return false + */ function acf_debug_end() { - - $start = acf_get_setting( 'debug_start' ); - $end = memory_get_usage(); - - return $end - $start; + _deprecated_function( __FUNCTION__, '6.2.7' ); + return false; } /** @@ -2329,6 +2308,10 @@ function acf_isset_termmeta( $taxonomy = '' ) { */ function acf_upload_files( $ancestors = array() ) { + if ( empty( $_FILES['acf'] ) ) { + return; + } + $file = acf_sanitize_files_array( $_FILES['acf'] ); // phpcs:disable WordPress.Security.NonceVerification.Missing -- Verified upstream. // walk through ancestors. @@ -3305,17 +3288,14 @@ function acf_format_date( $value, $format ) { } /** - * acf_clear_log + * Previously, deletes the debug.log file. * - * Deletes the debug.log file. - * - * @since 5.7.10 - * - * @param type $var Description. Default. - * @return type Description. + * @since 5.7.10 + * @deprecated 6.2.7 */ function acf_clear_log() { - unlink( WP_CONTENT_DIR . '/debug.log' ); + _deprecated_function( __FUNCTION__, '6.2.7' ); + return false; } /** @@ -3939,7 +3919,7 @@ function acf_is_block_editor() { * @return array The WordPress reserved terms list. */ function acf_get_wp_reserved_terms() { - return array( 'action', 'attachment', 'attachment_id', 'author', 'author_name', 'calendar', 'cat', 'category', 'category__and', 'category__in', 'category__not_in', 'category_name', 'comments_per_page', 'comments_popup', 'custom', 'customize_messenger_channel', 'customized', 'cpage', 'day', 'debug', 'embed', 'error', 'exact', 'feed', 'fields', 'hour', 'link_category', 'm', 'minute', 'monthnum', 'more', 'name', 'nav_menu', 'nonce', 'nopaging', 'offset', 'order', 'orderby', 'p', 'page', 'page_id', 'paged', 'pagename', 'pb', 'perm', 'post', 'post__in', 'post__not_in', 'post_format', 'post_mime_type', 'post_status', 'post_tag', 'post_type', 'posts', 'posts_per_archive_page', 'posts_per_page', 'preview', 'robots', 's', 'search', 'second', 'sentence', 'showposts', 'static', 'status', 'subpost', 'subpost_id', 'tag', 'tag__and', 'tag__in', 'tag__not_in', 'tag_id', 'tag_slug__and', 'tag_slug__in', 'taxonomy', 'tb', 'term', 'terms', 'theme', 'title', 'type', 'types', 'w', 'withcomments', 'withoutcomments', 'year' ); + return array( 'action', 'attachment', 'attachment_id', 'author', 'author_name', 'calendar', 'cat', 'category', 'category__and', 'category__in', 'category__not_in', 'category_name', 'comments_per_page', 'comments_popup', 'custom', 'customize_messenger_channel', 'customized', 'cpage', 'day', 'debug', 'embed', 'error', 'exact', 'feed', 'fields', 'hour', 'link', 'link_category', 'm', 'minute', 'monthnum', 'more', 'name', 'nav_menu', 'nonce', 'nopaging', 'offset', 'order', 'orderby', 'p', 'page', 'page_id', 'paged', 'pagename', 'pb', 'perm', 'post', 'post__in', 'post__not_in', 'post_format', 'post_mime_type', 'post_status', 'post_tag', 'post_type', 'posts', 'posts_per_archive_page', 'posts_per_page', 'preview', 'robots', 's', 'search', 'second', 'sentence', 'showposts', 'static', 'status', 'subpost', 'subpost_id', 'tag', 'tag__and', 'tag__in', 'tag__not_in', 'tag_id', 'tag_slug__and', 'tag_slug__in', 'taxonomy', 'tb', 'term', 'terms', 'theme', 'title', 'type', 'types', 'w', 'withcomments', 'withoutcomments', 'year' ); } /** diff --git a/includes/api/api-template.php b/includes/api/api-template.php index 67cdf0d..8ff3368 100644 --- a/includes/api/api-template.php +++ b/includes/api/api-template.php @@ -1,23 +1,20 @@ = 100 ) { + return; + } + + // Bail if we already logged an error for this field. + if ( isset( $escaped[ $field['key'] ] ) ) { + return; + } + + $escaped[ $field['key'] ] = array( + 'selector' => $selector, + 'function' => $function, + 'field' => $field['label'], + 'post_id' => $post_id, + ); + + _acf_update_escaped_html_log( $escaped ); +} +add_action( 'acf/removed_unsafe_html', '_acf_log_escaped_html', 10, 4 ); + +/** + * Returns an array of instances where HTML was altered due to escaping in the_field or a shortcode. + * + * @since 6.2.5 + * + * @return array + */ +function _acf_get_escaped_html_log() { + $escaped = get_option( 'acf_escaped_html_log', array() ); + return is_array( $escaped ) ? $escaped : array(); +} + +/** + * Updates the array of instances where HTML was altered due to escaping in the_field or a shortcode. + * + * @since 6.2.5 + * + * @param array $escaped The array of instances. + * @return boolean True on success, or false on failure. + */ +function _acf_update_escaped_html_log( $escaped = array() ) { + return update_option( 'acf_escaped_html_log', (array) $escaped, true ); +} + +/** + * Deletes the array of instances where HTML was altered due to escaping in the_field or a shortcode. + * Since 6.2.7, also clears the legacy `acf_will_escape_html_log` option to clean up. + * + * @since 6.2.5 + * + * @return boolean True on success, or false on failure. + */ +function _acf_delete_escaped_html_log() { + delete_option( 'acf_will_escape_html_log' ); + return delete_option( 'acf_escaped_html_log' ); } /** * This function will return an array containing all the field data for a given field_name. * * @since 3.6 - * @date 3/02/13 * - * @param string $selector The field name or key. - * @param mixed $post_id The post_id of which the value is saved against. - * @param bool $format_value Whether to format the field value. - * @param bool $load_value Whether to load the field value. + * @param string $selector The field name or key. + * @param mixed $post_id The post_id of which the value is saved against. + * @param boolean $format_value Whether to format the field value. + * @param boolean $load_value Whether to load the field value. + * @param boolean $escape_html Should the field return a HTML safe formatted value if $format_value is true. * * @return array|false $field */ -function get_field_object( $selector, $post_id = false, $format_value = true, $load_value = true ) { +function get_field_object( $selector, $post_id = false, $format_value = true, $load_value = true, $escape_html = false ) { // Compatibility with ACF ~4. if ( is_array( $format_value ) && isset( $format_value['format_value'] ) ) { $format_value = $format_value['format_value']; @@ -103,28 +237,48 @@ function get_field_object( $selector, $post_id = false, $format_value = true, $l $field['value'] = acf_get_value( $post_id, $field ); } - if ( $format_value ) { - $field['value'] = acf_format_value( $field['value'], $post_id, $field ); + // escape html is only compatible when formatting the value too + if ( ! $format_value && $escape_html ) { + _doing_it_wrong( __FUNCTION__, __( 'Returning an escaped HTML value is only possible when format_value is also true. The field value has not been returned for security.', 'acf' ), '6.2.6' ); //phpcs:ignore -- escape not required. + $field['value'] = false; + return $field; + } + + // format value + if ( $load_value && $format_value ) { + if ( $escape_html ) { + // return the escaped HTML version if requested. + if ( acf_field_type_supports( $field['type'], 'escaping_html' ) ) { + $field['value'] = acf_format_value( $field['value'], $post_id, $field, true ); + } else { + $new_value = acf_format_value( $field['value'], $post_id, $field ); + if ( is_array( $new_value ) ) { + $field['value'] = map_deep( $new_value, 'acf_esc_html' ); + } else { + $field['value'] = acf_esc_html( $new_value ); + } + } + } else { + // get value for field + $field['value'] = acf_format_value( $field['value'], $post_id, $field ); + } } return $field; } -/* -* acf_get_object_field -* -* This function will return a field for the given selector. -* It will also review the field_reference to ensure the correct field is returned which makes it useful for the template API -* -* @type function -* @date 4/08/2015 -* @since 5.2.3 -* -* @param $selector (mixed) identifier of field. Can be an ID, key, name or post object -* @param $post_id (mixed) the post_id of which the value is saved against -* @param $strict (boolean) if true, return a field only when a field key is found. -* @return $field (array) -*/ +/** + * This function will return a field for the given selector. + * It will also review the field_reference to ensure the correct field is returned which makes it useful for the template API + * + * @since 5.2.3 + * + * @param $selector (mixed) identifier of field. Can be an ID, key, name or post object + * @param $post_id (mixed) the post_id of which the value is saved against + * @param $strict (boolean) if true, return a field only when a field key is found. + * + * @return $field (array) + */ function acf_maybe_get_field( $selector, $post_id = false, $strict = true ) { // init @@ -151,19 +305,14 @@ function acf_maybe_get_field( $selector, $post_id = false, $strict = true ) { return false; } -/* -* acf_maybe_get_sub_field -* -* This function will attempt to find a sub field -* -* @type function -* @date 3/10/2016 -* @since 5.4.0 -* -* @param $post_id (int) -* @return $post_id (int) -*/ - +/** + * This function will attempt to find a sub field + * + * @since 5.4.0 + * + * @param $post_id (int) + * @return $post_id (int) + */ function acf_maybe_get_sub_field( $selectors, $post_id = false, $strict = true ) { // bail early if not enough selectors @@ -208,25 +357,28 @@ function acf_maybe_get_sub_field( $selectors, $post_id = false, $strict = true ) return $field; } -/* -* get_fields() -* -* This function will return an array containing all the custom field values for a specific post_id. -* The function is not very elegant and wastes a lot of PHP memory / SQL queries if you are not using all the values. -* -* @type function -* @since 3.6 -* @date 29/01/13 -* -* @param $post_id (mixed) the post_id of which the value is saved against -* @param $format_value (boolean) whether or not to format the field value -* @return (array) associative array where field name => field value -*/ - -function get_fields( $post_id = false, $format_value = true ) { +/** + * This function will return an array containing all the custom field values for a specific post_id. + * The function is not very elegant and wastes a lot of PHP memory / SQL queries if you are not using all the values. + * + * @since 3.6 + * + * @param mixed $post_id The post_id of which the value is saved against. + * @param boolean $format_value Whether or not to format the field value. + * @param boolean $escape_html Should the field return a HTML safe formatted value if $format_value is true. + * + * @return array associative array where field name => field value + */ +function get_fields( $post_id = false, $format_value = true, $escape_html = false ) { + + // escape html is only compatible when formatting the value too + if ( ! $format_value && $escape_html ) { + _doing_it_wrong( __FUNCTION__, __( 'Returning escaped HTML values is only possible when format_value is also true. The field values have not been returned for security.', 'acf' ), '6.2.6' ); //phpcs:ignore -- escape not required. + return false; + } // vars - $fields = get_field_objects( $post_id, $format_value ); + $fields = get_field_objects( $post_id, $format_value, true, $escape_html ); $meta = array(); // bail early @@ -244,23 +396,20 @@ function get_fields( $post_id = false, $format_value = true ) { } -/* -* get_field_objects() -* -* This function will return an array containing all the custom field objects for a specific post_id. -* The function is not very elegant and wastes a lot of PHP memory / SQL queries if you are not using all the fields / values. -* -* @type function -* @since 3.6 -* @date 29/01/13 -* -* @param $post_id (mixed) the post_id of which the value is saved against -* @param $format_value (boolean) whether or not to format the field value -* @param $load_value (boolean) whether or not to load the field value -* @return (array) associative array where field name => field -*/ - -function get_field_objects( $post_id = false, $format_value = true, $load_value = true ) { +/** + * This function will return an array containing all the custom field objects for a specific post_id. + * The function is not very elegant and wastes a lot of PHP memory / SQL queries if you are not using all the fields / values. + * + * @since 3.6 + * + * @param mixed $post_id The post_id of which the value is saved against. + * @param boolean $format_value Whether or not to format the field value. + * @param boolean $load_value Whether or not to load the field value. + * @param boolean $escape_html Should the field return a HTML safe formatted value if $format_value is true. + * + * @return array associative array where field name => field + */ +function get_field_objects( $post_id = false, $format_value = true, $load_value = true, $escape_html = false ) { // init acf_init(); @@ -276,6 +425,11 @@ function get_field_objects( $post_id = false, $format_value = true, $load_value return false; } + // escape html is only compatible when formatting the value too + if ( ! $format_value && $escape_html ) { + _doing_it_wrong( __FUNCTION__, __( 'Returning escaped HTML values is only possible when format_value is also true. The field values have not been returned for security.', 'acf' ), '6.2.6' ); //phpcs:ignore -- escape not required. + } + // populate vars $fields = array(); foreach ( $meta as $key => $value ) { @@ -299,9 +453,29 @@ function get_field_objects( $post_id = false, $format_value = true, $load_value $field['value'] = acf_get_value( $post_id, $field ); } + // avoid returning field values when the function is called incorrectly. + if ( ! $format_value && $escape_html ) { + $field['value'] = false; + } + // format value - if ( $format_value ) { - $field['value'] = acf_format_value( $field['value'], $post_id, $field ); + if ( $load_value && $format_value ) { + if ( $escape_html ) { + // return the escaped HTML version if requested. + if ( acf_field_type_supports( $field['type'], 'escaping_html' ) ) { + $field['value'] = acf_format_value( $field['value'], $post_id, $field, true ); + } else { + $new_value = acf_format_value( $field['value'], $post_id, $field ); + if ( is_array( $new_value ) ) { + $field['value'] = map_deep( $new_value, 'acf_esc_html' ); + } else { + $field['value'] = acf_esc_html( $new_value ); + } + } + } else { + // get value for field + $field['value'] = acf_format_value( $field['value'], $post_id, $field ); + } } // append to $value @@ -319,17 +493,14 @@ function get_field_objects( $post_id = false, $format_value = true, $load_value /** - * have_rows - * * Checks if a field (such as Repeater or Flexible Content) has any rows of data to loop over. * This function is intended to be used in conjunction with the_row() to step through available values. * - * @date 2/09/13 * @since 4.3.0 * * @param string $selector The field name or field key. - * @param mixed $post_id The post ID where the value is saved. Defaults to the current post. - * @return bool + * @param mixed $post_id The post ID where the value is saved. Defaults to the current post. + * @return boolean */ function have_rows( $selector, $post_id = false ) { @@ -455,19 +626,14 @@ function have_rows( $selector, $post_id = false ) { } -/* -* the_row -* -* This function will progress the global repeater or flexible content value 1 row -* -* @type function -* @date 2/09/13 -* @since 4.3.0 -* -* @param N/A -* @return (array) the current row data -*/ - +/** + * This function will progress the global repeater or flexible content value 1 row + * + * @since 4.3.0 + * + * @param N/A + * @return (array) the current row data + */ function the_row( $format = false ) { // vars @@ -540,24 +706,18 @@ function get_row_index() { } function the_row_index() { - - echo get_row_index(); + echo intval( get_row_index() ); } -/* -* get_row_sub_field -* -* This function is used inside a 'has_sub_field' while loop to return a sub field object -* -* @type function -* @date 16/05/2016 -* @since 5.3.8 -* -* @param $selector (string) -* @return (array) -*/ - +/** + * This function is used inside a 'has_sub_field' while loop to return a sub field object + * + * @since 5.3.8 + * + * @param $selector (string) + * @return (array) + */ function get_row_sub_field( $selector ) { // vars @@ -584,19 +744,14 @@ function get_row_sub_field( $selector ) { } -/* -* get_row_sub_value -* -* This function is used inside a 'has_sub_field' while loop to return a sub field value -* -* @type function -* @date 16/05/2016 -* @since 5.3.8 -* -* @param $selector (string) -* @return (mixed) -*/ - +/** + * This function is used inside a 'has_sub_field' while loop to return a sub field value + * + * @since 5.3.8 + * + * @param $selector (string) + * @return (mixed) + */ function get_row_sub_value( $selector ) { // vars @@ -617,20 +772,15 @@ function get_row_sub_value( $selector ) { } -/* -* reset_rows -* -* This function will find the current loop and unset it from the global array. -* To bo used when loop finishes or a break is used -* -* @type function -* @date 26/10/13 -* @since 5.0.0 -* -* @param $hard_reset (boolean) completely wipe the global variable, or just unset the active row -* @return (boolean) -*/ - +/** + * This function will find the current loop and unset it from the global array. + * To be used when loop finishes or a break is used + * + * @since 5.0.0 + * + * @param $hard_reset (boolean) completely wipe the global variable, or just unset the active row + * @return (boolean) + */ function reset_rows() { // remove last loop @@ -641,22 +791,17 @@ function reset_rows() { } -/* -* has_sub_field() -* -* This function is used inside a while loop to return either true or false (loop again or stop). -* When using a repeater or flexible content field, it will loop through the rows until -* there are none left or a break is detected -* -* @type function -* @since 1.0.3 -* @date 29/01/13 -* -* @param $field_name (string) the field name -* @param $post_id (mixed) the post_id of which the value is saved against -* @return (boolean) -*/ - +/** + * This function is used inside a while loop to return either true or false (loop again or stop). + * When using a repeater or flexible content field, it will loop through the rows until + * there are none left or a break is detected + * + * @since 1.0.3 + * + * @param $field_name (string) the field name + * @param $post_id (mixed) the post_id of which the value is saved against + * @return (boolean) + */ function has_sub_field( $field_name, $post_id = false ) { // vars @@ -671,29 +816,29 @@ function has_sub_field( $field_name, $post_id = false ) { return $r; } +/** + * Alias of has_sub_field + */ function has_sub_fields( $field_name, $post_id = false ) { - return has_sub_field( $field_name, $post_id ); } -/* -* get_sub_field() -* -* This function is used inside a 'has_sub_field' while loop to return a sub field value -* -* @type function -* @since 1.0.3 -* @date 29/01/13 -* -* @param $field_name (string) the field name -* @return (mixed) -*/ - -function get_sub_field( $selector = '', $format_value = true ) { +/** + * This function is used inside a 'has_sub_field' while loop to return a sub field value + * + * @since 1.0.3 + * + * @param string $selector The field name or key. + * @param boolean $format_value Whether or not to format the value as described above. + * @param boolean $escape_html If we're formatting the value, make sure it's also HTML safe. + * + * @return mixed + */ +function get_sub_field( $selector = '', $format_value = true, $escape_html = false ) { // get sub field - $sub_field = get_sub_field_object( $selector, $format_value ); + $sub_field = get_sub_field_object( $selector, $format_value, true, $escape_html ); // bail early if no sub field if ( ! $sub_field ) { @@ -705,47 +850,65 @@ function get_sub_field( $selector = '', $format_value = true ) { } -/* -* the_sub_field() -* -* This function is the same as echo get_sub_field -* -* @type function -* @since 1.0.3 -* @date 29/01/13 -* -* @param $field_name (string) the field name -* @return n/a -*/ - +/** + * This function is the same as echo get_sub_field(), but will escape the value for safe HTML output. + * + * @since 1.0.3 + * + * @param string $field_name The field name. + * @param boolean $format_value Enable formatting of value. When false, the field value will be escaped at this level with `acf_esc_html`. Default true. + * + * @return void + */ function the_sub_field( $field_name, $format_value = true ) { - - $value = get_sub_field( $field_name, $format_value ); + $field = get_sub_field_object( $field_name, $format_value, true, $format_value ); + $value = ( is_array( $field ) && isset( $field['value'] ) ) ? $field['value'] : false; if ( is_array( $value ) ) { $value = implode( ', ', $value ); } - echo $value; -} + // If we're not a scalar we'd throw an error, so return early for safety. + if ( ! is_scalar( $value ) ) { + return; + } + // If $format_value is false, we've not been able to apply field level escaping as we're giving the raw DB value. Escape the output with `acf_esc_html`. + if ( ! $format_value ) { + $value = acf_esc_html( $value ); + } -/* -* get_sub_field_object() -* -* This function is used inside a 'has_sub_field' while loop to return a sub field object -* -* @type function -* @since 3.5.8.1 -* @date 29/01/13 -* -* @param $child_name (string) the field name -* @return (array) -*/ + $unescaped_field = get_sub_field_object( $field_name, $format_value, true, false ); + $unescaped_value = ( is_array( $unescaped_field ) && isset( $unescaped_field['value'] ) ) ? $unescaped_field['value'] : false; + if ( is_array( $unescaped_value ) ) { + $unescaped_value = implode( ', ', $unescaped_value ); + } -function get_sub_field_object( $selector, $format_value = true, $load_value = true ) { + $field_type = is_array( $field ) && isset( $field['type'] ) ? $field['type'] : 'text'; + if ( apply_filters( 'acf/the_field/allow_unsafe_html', false, $field_name, 'sub_field', $field_type, $field ) ) { + $value = $unescaped_value; + } elseif ( (string) $value !== (string) $unescaped_value ) { + do_action( 'acf/removed_unsafe_html', __FUNCTION__, $field_name, $field, false ); + } + + echo $value; //phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- escaped inside get_sub_field_object where necessary. +} + + +/** + * This function is used inside a 'has_sub_field' while loop to return a sub field object + * + * @since 3.5.8.1 + * + * @param string $selector The field name or key. + * @param boolean $format_value Whether to format the field value. + * @param boolean $load_value Whether to load the field value. + * @param boolean $escape_html Should the field return a HTML safe formatted value. + * + * @return mixed + */ +function get_sub_field_object( $selector, $format_value = true, $load_value = true, $escape_html = false ) { - // vars $row = acf_get_loop( 'active' ); // bail early if no row @@ -766,11 +929,30 @@ function get_sub_field_object( $selector, $format_value = true, $load_value = tr $sub_field['value'] = get_row_sub_value( $sub_field['key'] ); } - // format value - if ( $format_value ) { + // escape html is only compatible when formatting the value too + if ( ! $format_value && $escape_html ) { + _doing_it_wrong( __FUNCTION__, __( 'Returning an escaped HTML value is only possible when format_value is also true. The field value has not been returned for security.', 'acf' ), '6.2.6' ); //phpcs:ignore -- escape not required. + $sub_field['value'] = false; + } - // get value for field - $sub_field['value'] = acf_format_value( $sub_field['value'], $row['post_id'], $sub_field ); + // format value + if ( $load_value && $format_value ) { + if ( $escape_html ) { + // return the escaped HTML version if requested. + if ( acf_field_type_supports( $sub_field['type'], 'escaping_html' ) ) { + $sub_field['value'] = acf_format_value( $sub_field['value'], $row['post_id'], $sub_field, true ); + } else { + $new_value = acf_format_value( $sub_field['value'], $row['post_id'], $sub_field ); + if ( is_array( $new_value ) ) { + $sub_field['value'] = map_deep( $new_value, 'acf_esc_html' ); + } else { + $sub_field['value'] = acf_esc_html( $new_value ); + } + } + } else { + // get value for field + $sub_field['value'] = acf_format_value( $sub_field['value'], $row['post_id'], $sub_field ); + } } // return @@ -778,19 +960,13 @@ function get_sub_field_object( $selector, $format_value = true, $load_value = tr } -/* -* get_row_layout() -* -* This function will return a string representation of the current row layout within a 'have_rows' loop -* -* @type function -* @since 3.0.6 -* @date 29/01/13 -* -* @param n/a -* @return (string) -*/ - +/** + * This function will return a string representation of the current row layout within a 'have_rows' loop + * + * @since 3.0.6 + * + * @return mixed + */ function get_row_layout() { // vars @@ -810,11 +986,10 @@ function get_row_layout() { * eg. [acf field="heading" post_id="123" format_value="1"] * * @since 1.1.1 - * @date 29/01/13 * * @param array $atts The shortcode attributes. * - * @return string + * @return string|void */ function acf_shortcode( $atts ) { // Return if the ACF shortcode is disabled. @@ -859,37 +1034,63 @@ function acf_shortcode( $atts ) { add_filter( 'acf/prevent_access_to_unknown_fields', '__return_true' ); } - // Try to get the field value. - $value = get_field( $atts['field'], $atts['post_id'], $atts['format_value'] ); + // Decode the post ID for filtering. + $post_id = acf_get_valid_post_id( $atts['post_id'] ); + $decoded_post_id = acf_decode_post_id( $post_id ); - if ( $filter_applied ) { - remove_filter( 'acf/prevent_access_to_unknown_fields', '__return_true' ); + // Try to get the field value, ensuring any non-safe HTML is stripped from wysiwyg fields via `acf_the_content` + $field = get_field_object( $atts['field'], $post_id, $atts['format_value'], true, true ); + $value = $field ? $field['value'] : get_field( $atts['field'], $post_id, $atts['format_value'], true ); + + $field_type = is_array( $field ) && isset( $field['type'] ) ? $field['type'] : 'text'; + + if ( apply_filters( 'acf/shortcode/prevent_access', false, $atts, $decoded_post_id['id'], $decoded_post_id['type'], $field_type, $field ) ) { + return; } if ( is_array( $value ) ) { $value = implode( ', ', $value ); } + // Temporarily always get the unescaped version for action comparison. + $unescaped_value = get_field( $atts['field'], $post_id, $atts['format_value'], false ); + + if ( $filter_applied ) { + remove_filter( 'acf/prevent_access_to_unknown_fields', '__return_true' ); + } + + // Remove the filter preventing access to unknown filters now we've got all the values. + if ( $filter_applied ) { + remove_filter( 'acf/prevent_access_to_unknown_fields', '__return_true' ); + } + + if ( is_array( $unescaped_value ) ) { + $unescaped_value = implode( ', ', $unescaped_value ); + } + + // Handle getting the unescaped version if we're allowed unsafe html. + if ( apply_filters( 'acf/shortcode/allow_unsafe_html', false, $atts, $field_type, $field ) ) { + $value = $unescaped_value; + } elseif ( (string) $value !== (string) $unescaped_value ) { + do_action( 'acf/removed_unsafe_html', __FUNCTION__, $atts['field'], $field, $post_id ); + } + return $value; } add_shortcode( 'acf', 'acf_shortcode' ); -/* -* update_field() -* -* This function will update a value in the database -* -* @type function -* @since 3.1.9 -* @date 29/01/13 -* -* @param $selector (string) the field name or key -* @param $value (mixed) the value to save in the database -* @param $post_id (mixed) the post_id of which the value is saved against -* @return (boolean) -*/ - +/** + * This function will update a value in the database + * + * @since 3.1.9 + * + * @param string $selector The field name or key. + * @param mixed $value The value to save in the database. + * @param mixed $post_id The post_id of which the value is saved against. + * + * @return boolean + */ function update_field( $selector, $value, $post_id = false ) { // filter post_id @@ -914,21 +1115,17 @@ function update_field( $selector, $value, $post_id = false ) { } -/* -* update_sub_field -* -* This function will update a value of a sub field in the database -* -* @type function -* @date 2/04/2014 -* @since 5.0.0 -* -* @param $selector (mixed) the sub field name or key, or an array of ancestors -* @param $value (mixed) the value to save in the database -* @param $post_id (mixed) the post_id of which the value is saved against -* @return (boolean) -*/ - +/** + * This function will update a value of a sub field in the database + * + * @since 5.0.0 + * + * @param $selector (mixed) the sub field name or key, or an array of ancestors + * @param $value (mixed) the value to save in the database + * @param $post_id (mixed) the post_id of which the value is saved against + * + * @return boolean + */ function update_sub_field( $selector, $value, $post_id = false ) { // vars @@ -953,20 +1150,16 @@ function update_sub_field( $selector, $value, $post_id = false ) { } -/* -* delete_field() -* -* This function will remove a value from the database -* -* @type function -* @since 3.1.9 -* @date 29/01/13 -* -* @param $selector (string) the field name or key -* @param $post_id (mixed) the post_id of which the value is saved against -* @return (boolean) -*/ - +/** + * This function will remove a value from the database + * + * @since 3.1.9 + * + * @param $selector (string) the field name or key + * @param $post_id (mixed) the post_id of which the value is saved against + * + * @return boolean + */ function delete_field( $selector, $post_id = false ) { // filter post_id @@ -980,42 +1173,31 @@ function delete_field( $selector, $post_id = false ) { } -/* -* delete_sub_field -* -* This function will delete a value of a sub field in the database -* -* @type function -* @date 2/04/2014 -* @since 5.0.0 -* -* @param $selector (mixed) the sub field name or key, or an array of ancestors -* @param $value (mixed) the value to save in the database -* @param $post_id (mixed) the post_id of which the value is saved against -* @return (boolean) -*/ - +/** + * This function will delete a value of a sub field in the database + * + * @since 5.0.0 + * + * @param $selector (mixed) the sub field name or key, or an array of ancestors + * @param $value (mixed) the value to save in the database + * @param $post_id (mixed) the post_id of which the value is saved against + * @return (boolean) + */ function delete_sub_field( $selector, $post_id = false ) { - return update_sub_field( $selector, null, $post_id ); } -/* -* add_row -* -* This function will add a row of data to a field -* -* @type function -* @date 16/10/2015 -* @since 5.2.3 -* -* @param $selector (string) -* @param $row (array) -* @param $post_id (mixed) -* @return (boolean) -*/ - +/** + * This function will add a row of data to a field + * + * @since 5.2.3 + * + * @param $selector (string) + * @param $row (array) + * @param $post_id (mixed) + * @return (boolean) + */ function add_row( $selector, $row = false, $post_id = false ) { // filter post_id @@ -1049,21 +1231,16 @@ function add_row( $selector, $row = false, $post_id = false ) { } -/* -* add_sub_row -* -* This function will add a row of data to a field -* -* @type function -* @date 16/10/2015 -* @since 5.2.3 -* -* @param $selector (string) -* @param $row (array) -* @param $post_id (mixed) -* @return (boolean) -*/ - +/** + * This function will add a row of data to a field + * + * @since 5.2.3 + * + * @param $selector (string) + * @param $row (array) + * @param $post_id (mixed) + * @return (boolean) + */ function add_sub_row( $selector, $row = false, $post_id = false ) { // vars @@ -1100,22 +1277,17 @@ function add_sub_row( $selector, $row = false, $post_id = false ) { } -/* -* update_row -* -* This function will update a row of data to a field -* -* @type function -* @date 19/10/2015 -* @since 5.2.3 -* -* @param $selector (string) -* @param $i (int) -* @param $row (array) -* @param $post_id (mixed) -* @return (boolean) -*/ - +/** + * This function will update a row of data to a field + * + * @since 5.2.3 + * + * @param $selector (string) + * @param $i (int) + * @param $row (array) + * @param $post_id (mixed) + * @return (boolean) + */ function update_row( $selector, $i = 1, $row = false, $post_id = false ) { // vars @@ -1150,21 +1322,16 @@ function update_row( $selector, $i = 1, $row = false, $post_id = false ) { } -/* -* update_sub_row -* -* This function will add a row of data to a field -* -* @type function -* @date 16/10/2015 -* @since 5.2.3 -* -* @param $selector (string) -* @param $row (array) -* @param $post_id (mixed) -* @return (boolean) -*/ - +/** + * This function will add a row of data to a field + * + * @since 5.2.3 + * + * @param $selector (string) + * @param $row (array) + * @param $post_id (mixed) + * @return (boolean) + */ function update_sub_row( $selector, $i = 1, $row = false, $post_id = false ) { // vars @@ -1203,21 +1370,16 @@ function update_sub_row( $selector, $i = 1, $row = false, $post_id = false ) { } -/* -* delete_row -* -* This function will delete a row of data from a field -* -* @type function -* @date 19/10/2015 -* @since 5.2.3 -* -* @param $selector (string) -* @param $i (int) -* @param $post_id (mixed) -* @return (boolean) -*/ - +/** + * This function will delete a row of data from a field + * + * @since 5.2.3 + * + * @param $selector (string) + * @param $i (int) + * @param $post_id (mixed) + * @return (boolean) + */ function delete_row( $selector, $i = 1, $post_id = false ) { // vars @@ -1257,21 +1419,16 @@ function delete_row( $selector, $i = 1, $post_id = false ) { } -/* -* delete_sub_row -* -* This function will add a row of data to a field -* -* @type function -* @date 16/10/2015 -* @since 5.2.3 -* -* @param $selector (string) -* @param $row (array) -* @param $post_id (mixed) -* @return (boolean) -*/ - +/** + * This function will add a row of data to a field + * + * @since 5.2.3 + * + * @param $selector (string) + * @param $row (array) + * @param $post_id (mixed) + * @return (boolean) + */ function delete_sub_row( $selector, $i = 1, $post_id = false ) { // vars @@ -1315,19 +1472,16 @@ function delete_sub_row( $selector, $i = 1, $post_id = false ) { } -/* -* Depreceated Functions -* -* These functions are outdated -* -* @type function -* @date 4/03/2014 -* @since 1.0.0 -* -* @param n/a -* @return n/a -*/ - +/** + * Depreceated Functions + * + * These functions are outdated + * + * @since 1.0.0 + * + * @param n/a + * @return n/a + */ function create_field( $field ) { acf_render_field( $field ); diff --git a/includes/api/api-term.php b/includes/api/api-term.php index c68bc7e..e985868 100644 --- a/includes/api/api-term.php +++ b/includes/api/api-term.php @@ -1,17 +1,14 @@ label" for use in a select field. -* -* @date 3/8/18 -* @since 5.7.2 -* -* @param array $taxonomies Optional. An array of specific taxonomies to return. -* @return array -*/ - +/** + * Returns an array of taxonomies in the format "name => label" for use in a select field. + * + * @date 3/8/18 + * @since 5.7.2 + * + * @param array $taxonomies Optional. An array of specific taxonomies to return. + * @return array + */ function acf_get_taxonomy_labels( $taxonomies = array() ) { // default @@ -128,17 +122,16 @@ function acf_get_taxonomy_labels( $taxonomies = array() ) { } /** - * acf_get_term_title + * acf_get_term_title * - * Returns the title for this term object. + * Returns the title for this term object. * - * @date 10/9/18 - * @since 5.0.0 + * @date 10/9/18 + * @since 5.0.0 * - * @param object $term The WP_Term object. - * @return string + * @param object $term The WP_Term object. + * @return string */ - function acf_get_term_title( $term ) { $title = $term->name; @@ -157,17 +150,16 @@ function acf_get_term_title( $term ) { } /** - * acf_get_grouped_terms + * acf_get_grouped_terms * - * Returns an array of terms for the given query $args and groups by taxonomy name. + * Returns an array of terms for the given query $args and groups by taxonomy name. * - * @date 2/8/18 - * @since 5.7.2 + * @date 2/8/18 + * @since 5.7.2 * - * @param array $args An array of args used in the get_terms() function. - * @return array + * @param array $args An array of args used in the get_terms() function. + * @return array */ - function acf_get_grouped_terms( $args ) { // vars @@ -274,19 +266,18 @@ function acf_get_grouped_terms( $args ) { } /** - * _acf_terms_clauses + * _acf_terms_clauses * - * Used in the 'terms_clauses' filter to order terms by taxonomy name. + * Used in the 'terms_clauses' filter to order terms by taxonomy name. * - * @date 2/8/18 - * @since 5.7.2 + * @date 2/8/18 + * @since 5.7.2 * - * @param array $pieces Terms query SQL clauses. - * @param array $taxonomies An array of taxonomies. - * @param array $args An array of terms query arguments. - * @return array $pieces + * @param array $pieces Terms query SQL clauses. + * @param array $taxonomies An array of taxonomies. + * @param array $args An array of terms query arguments. + * @return array $pieces */ - function _acf_terms_clauses( $pieces, $taxonomies, $args ) { // prepend taxonomy to 'orderby' SQL @@ -300,32 +291,30 @@ function _acf_terms_clauses( $pieces, $taxonomies, $args ) { } /** - * acf_get_pretty_taxonomies + * acf_get_pretty_taxonomies * - * Deprecated in favor of acf_get_taxonomy_labels() function. + * Deprecated in favor of acf_get_taxonomy_labels() function. * - * @date 7/10/13 - * @since 5.0.0 - * @deprecated 5.7.2 + * @date 7/10/13 + * @since 5.0.0 + * @deprecated 5.7.2 */ - function acf_get_pretty_taxonomies( $taxonomies = array() ) { return acf_get_taxonomy_labels( $taxonomies ); } /** - * acf_get_term + * acf_get_term * - * Similar to get_term() but with some extra functionality. + * Similar to get_term() but with some extra functionality. * - * @date 19/8/18 - * @since 5.7.3 + * @date 19/8/18 + * @since 5.7.3 * - * @param mixed $term_id The term ID or a string of "taxonomy:slug". - * @param string $taxonomy The taxonomyname. - * @return WP_Term + * @param mixed $term_id The term ID or a string of "taxonomy:slug". + * @param string $taxonomy The taxonomyname. + * @return WP_Term */ - function acf_get_term( $term_id, $taxonomy = '' ) { // allow $term_id parameter to be a string of "taxonomy:slug" or "taxonomy:id" @@ -342,30 +331,30 @@ function acf_get_term( $term_id, $taxonomy = '' ) { } /** - * acf_encode_term + * acf_encode_term * - * Returns a "taxonomy:slug" string for a given WP_Term. + * Returns a "taxonomy:slug" string for a given WP_Term. * - * @date 27/8/18 - * @since 5.7.4 + * @date 27/8/18 + * @since 5.7.4 * - * @param WP_Term $term The term object. - * @return string + * @param WP_Term $term The term object. + * @return string */ function acf_encode_term( $term ) { return "{$term->taxonomy}:{$term->slug}"; } /** - * acf_decode_term + * acf_decode_term * - * Decodes a "taxonomy:slug" string into an array of taxonomy and slug. + * Decodes a "taxonomy:slug" string into an array of taxonomy and slug. * - * @date 27/8/18 - * @since 5.7.4 + * @date 27/8/18 + * @since 5.7.4 * - * @param WP_Term $term The term object. - * @return string + * @param WP_Term $term The term object. + * @return string */ function acf_decode_term( $string ) { if ( is_string( $string ) && strpos( $string, ':' ) ) { @@ -376,15 +365,15 @@ function acf_decode_term( $string ) { } /** - * acf_get_encoded_terms + * acf_get_encoded_terms * - * Returns an array of WP_Term objects from an array of encoded strings + * Returns an array of WP_Term objects from an array of encoded strings * - * @date 9/9/18 - * @since 5.7.5 + * @date 9/9/18 + * @since 5.7.5 * - * @param array $values The array of encoded strings. - * @return array + * @param array $values The array of encoded strings. + * @return array */ function acf_get_encoded_terms( $values ) { @@ -408,16 +397,16 @@ function acf_get_encoded_terms( $values ) { } /** - * acf_get_choices_from_terms + * acf_get_choices_from_terms * - * Returns an array of choices from the terms provided. + * Returns an array of choices from the terms provided. * - * @date 8/9/18 - * @since 5.7.5 + * @date 8/9/18 + * @since 5.7.5 * - * @param array $values and array of WP_Terms objects or encoded strings. - * @param string $format The value format (term_id, slug). - * @return array + * @param array $values and array of WP_Terms objects or encoded strings. + * @param string $format The value format (term_id, slug). + * @return array */ function acf_get_choices_from_terms( $terms, $format = 'term_id' ) { @@ -445,16 +434,16 @@ function acf_get_choices_from_terms( $terms, $format = 'term_id' ) { } /** - * acf_get_choices_from_grouped_terms + * acf_get_choices_from_grouped_terms * - * Returns an array of choices from the grouped terms provided. + * Returns an array of choices from the grouped terms provided. * - * @date 8/9/18 - * @since 5.7.5 + * @date 8/9/18 + * @since 5.7.5 * - * @param array $value A grouped array of WP_Terms objects. - * @param string $format The value format (term_id, slug). - * @return array + * @param array $value A grouped array of WP_Terms objects. + * @param string $format The value format (term_id, slug). + * @return array */ function acf_get_choices_from_grouped_terms( $value, $format = 'term_id' ) { @@ -475,16 +464,16 @@ function acf_get_choices_from_grouped_terms( $value, $format = 'term_id' ) { } /** - * acf_get_choice_from_term + * acf_get_choice_from_term * - * Returns an array containing the id and text for this item. + * Returns an array containing the id and text for this item. * - * @date 10/9/18 - * @since 5.7.6 + * @date 10/9/18 + * @since 5.7.6 * - * @param object $item The item object such as WP_Post or WP_Term. - * @param string $format The value format (term_id, slug) - * @return array + * @param object $item The item object such as WP_Post or WP_Term. + * @param string $format The value format (term_id, slug) + * @return array */ function acf_get_choice_from_term( $term, $format = 'term_id' ) { diff --git a/includes/assets.php b/includes/assets.php index e045063..1c7a034 100644 --- a/includes/assets.php +++ b/includes/assets.php @@ -28,7 +28,7 @@ class ACF_Assets { * List of enqueue flags. * * @since 5.9.0 - * @var bool + * @var boolean */ private $enqueue = array(); @@ -51,7 +51,7 @@ public function __construct() { * @date 10/4/20 * @since 5.9.0 * - * @param string $name The method name. + * @param string $name The method name. * @param array $arguments The array of arguments. * @return mixed */ @@ -115,6 +115,7 @@ public function register_scripts() { wp_register_script( 'acf-input', acf_get_url( 'assets/build/js/acf-input' . $suffix . '.js' ), array( 'jquery', 'jquery-ui-sortable', 'jquery-ui-resizable', 'acf' ), $version ); wp_register_script( 'acf-field-group', acf_get_url( 'assets/build/js/acf-field-group' . $suffix . '.js' ), array( 'acf-input' ), $version ); wp_register_script( 'acf-internal-post-type', acf_get_url( 'assets/build/js/acf-internal-post-type' . $suffix . '.js' ), array( 'acf-input' ), $version ); + wp_register_script( 'acf-escaped-html-notice', acf_get_url( 'assets/build/js/acf-escaped-html-notice' . $suffix . '.js' ), array( 'jquery' ), $version, true ); // Register styles. wp_register_style( 'acf-global', acf_get_url( 'assets/build/css/acf-global.css' ), array( 'dashicons' ), $version ); @@ -189,10 +190,10 @@ private function add_actions() { * @date 28/4/20 * @since 5.9.0 * - * @param string $action The action name. - * @param string $method The method name. - * @param int $priority See add_action(). - * @param int $accepted_args See add_action(). + * @param string $action The action name. + * @param string $method The method name. + * @param integer $priority See add_action(). + * @param integer $accepted_args See add_action(). * @return void */ public function add_action( $action, $method, $priority = 10, $accepted_args = 1 ) { @@ -260,7 +261,7 @@ public function add_action( $action, $method, $priority = 10, $accepted_args = 1 * @since 5.9.0 * * @param array $args { - * @type bool $uploader Whether or not to enqueue uploader scripts. + * @type bool $uploader Whether or not to enqueue uploader scripts. * } * @return void */ diff --git a/includes/class-acf-data.php b/includes/class-acf-data.php index 256b77c..580e1be 100644 --- a/includes/class-acf-data.php +++ b/includes/class-acf-data.php @@ -17,7 +17,7 @@ class ACF_Data { /** @var array Storage for data aliases. */ var $aliases = array(); - /** @var bool Enables unique data per site. */ + /** @var boolean Enables unique data per site. */ var $multisite = false; /** @@ -68,7 +68,7 @@ function initialize() { * @date 9/1/19 * @since 5.7.10 * - * @param (string|array) $name The data name or an array of data. + * @param (string|array) $name The data name or an array of data. * @param mixed $value The data value. * @return ACF_Data */ @@ -174,7 +174,7 @@ function get_data() { * @date 9/1/19 * @since 5.7.10 * - * @param (string|array) $name The data name or an array of data. + * @param (string|array) $name The data name or an array of data. * @param mixed $value The data value. * @return ACF_Data */ @@ -258,7 +258,7 @@ function reset() { * @since 5.7.10 * * @param void - * @return int + * @return integer */ function count() { return count( $this->data ); @@ -273,7 +273,7 @@ function count() { * @since 5.7.10 * * @param void - * @return int + * @return integer */ function query( $args, $operator = 'AND' ) { return wp_list_filter( $this->data, $args, $operator ); @@ -313,7 +313,7 @@ function alias( $name = '' /*, $alias, $alias2, etc */ ) { * @date 13/2/19 * @since 5.7.11 * - * @param int $site_id New blog ID. + * @param integer $site_id New blog ID. * @param int prev_blog_id Prev blog ID. * @return void */ diff --git a/includes/class-acf-internal-post-type.php b/includes/class-acf-internal-post-type.php index 32f3446..57a8368 100644 --- a/includes/class-acf-internal-post-type.php +++ b/includes/class-acf-internal-post-type.php @@ -81,8 +81,8 @@ public function __construct() { * * @since 6.1 * - * @param int|WP_Post $id The post ID being queried. - * @return array|bool The main ACF array for the post, or false on failure. + * @param integer|WP_Post $id The post ID being queried. + * @return array|boolean The main ACF array for the post, or false on failure. */ public function get_post( $id = 0 ) { // Allow WP_Post to be passed. @@ -131,7 +131,7 @@ public function get_post( $id = 0 ) { * * @since 6.1 * - * @param int|string $id The field ID, key or name. + * @param integer|string $id The field ID, key or name. * @return array|false The field group array, or false on failure. */ public function get_raw_post( $id = 0 ) { @@ -164,7 +164,7 @@ public function get_raw_post( $id = 0 ) { * * @since 6.1 * - * @param int|string $id The post ID, key, or name. + * @param integer|string $id The post ID, key, or name. * @return WP_Post|bool The post object, or false on failure. */ public function get_post_object( $id = 0 ) { @@ -224,7 +224,7 @@ public function get_post_object( $id = 0 ) { * @since 6.1 * * @param string $id The identifier. - * @return bool + * @return boolean */ public function is_post_key( $id = '' ) { // Check if $id is a string starting with $this->post_key. @@ -287,8 +287,6 @@ public function validate_post( $post = array() ) { * Errors are added to the form using acf_add_internal_post_type_validation_error(). * * @since 6.1 - * - * @return bool */ public function ajax_validate_values() {} @@ -533,12 +531,12 @@ public function update_post( $post ) { * * @since 6.1 * - * @param string $slug The post slug. - * @param int $post_ID Post ID. - * @param string $post_status The post status. - * @param string $post_type Post type. - * @param int $post_parent Post parent ID. - * @param string $original_slug The original post slug. + * @param string $slug The post slug. + * @param integer $post_ID Post ID. + * @param string $post_status The post status. + * @param string $post_type Post type. + * @param integer $post_parent Post parent ID. + * @param string $original_slug The original post slug. * @return string */ public function apply_unique_post_slug( $slug, $post_ID, $post_status, $post_type, $post_parent, $original_slug ) { @@ -574,8 +572,8 @@ public function flush_post_cache( $post ) { * * @since 6.1 * - * @param int|string $id The ID of the ACF post to delete. - * @return bool + * @param integer|string $id The ID of the ACF post to delete. + * @return boolean */ public function delete_post( $id = 0 ) { // Disable filters to ensure ACF loads data from DB. @@ -611,8 +609,8 @@ public function delete_post( $id = 0 ) { * * @since 6.1 * - * @param int|string $id The ID of the ACF post to trash. - * @return bool + * @param integer|string $id The ID of the ACF post to trash. + * @return boolean */ public function trash_post( $id = 0 ) { // Disable filters to ensure ACF loads data from DB. @@ -644,8 +642,8 @@ public function trash_post( $id = 0 ) { * * @since 6.1 * - * @param int|string $id The ID of the ACF post to untrash. - * @return bool + * @param integer|string $id The ID of the ACF post to untrash. + * @return boolean */ public function untrash_post( $id = 0 ) { // Disable filters to ensure ACF loads data from DB. @@ -678,9 +676,9 @@ public function untrash_post( $id = 0 ) { * * @since 6.1 * - * @param string $new_status The new status of the post being restored. - * @param int $post_id The ID of the post being restored. - * @param string $previous_status The status of the post at the point where it was trashed. + * @param string $new_status The new status of the post being restored. + * @param integer $post_id The ID of the post being restored. + * @param string $previous_status The status of the post at the point where it was trashed. * @return string */ public function untrash_post_status( $new_status, $post_id, $previous_status ) { @@ -693,7 +691,7 @@ public function untrash_post_status( $new_status, $post_id, $previous_status ) { * @since 6.1 * * @param array $post The post array to check. - * @return bool + * @return boolean */ public function is_post( $post = false ) { return ( @@ -708,8 +706,8 @@ public function is_post( $post = false ) { * * @since 6.1 * - * @param int|string $id The ID of the post to duplicate. - * @param int $new_post_id Optional post ID to override. + * @param integer|string $id The ID of the post to duplicate. + * @param integer $new_post_id Optional post ID to override. * @return array The new ACF post array. */ public function duplicate_post( $id = 0, $new_post_id = 0 ) { @@ -756,9 +754,9 @@ public function duplicate_post( $id = 0, $new_post_id = 0 ) { * * @since 6.1 * - * @param int|string $id The ID of the ACF post to activate/deactivate. - * @param bool $activate True if the post should be activated. - * @return bool + * @param integer|string $id The ID of the ACF post to activate/deactivate. + * @param boolean $activate True if the post should be activated. + * @return boolean */ public function update_post_active_status( $id, $activate = true ) { // Disable filters to ensure ACF loads data from DB. @@ -793,7 +791,7 @@ public function update_post_active_status( $id, $activate = true ) { * * @since 6.1 * - * @param int $post_id The ACF post ID. + * @param integer $post_id The ACF post ID. * @return string */ public function get_post_edit_link( $post_id ) { diff --git a/includes/compatibility.php b/includes/compatibility.php index f212442..9ea5f36 100644 --- a/includes/compatibility.php +++ b/includes/compatibility.php @@ -9,15 +9,15 @@ class ACF_Compatibility { /** - * __construct + * __construct * - * Sets up the class functionality. + * Sets up the class functionality. * - * @date 30/04/2014 - * @since 5.0.0 + * @date 30/04/2014 + * @since 5.0.0 * - * @param void - * @return void + * @param void + * @return void */ function __construct() { @@ -75,7 +75,7 @@ function init() { * @since 5.7.10 * * @param array $wrapper The wrapper attributes array. - * @param array $field The field array. + * @param array $field The field array. */ function field_wrapper_attributes( $wrapper, $field ) { @@ -92,15 +92,15 @@ function field_wrapper_attributes( $wrapper, $field ) { } /** - * validate_field + * validate_field * - * Adds compatibility with deprecated settings + * Adds compatibility with deprecated settings * - * @date 23/04/2014 - * @since 5.0.0 + * @date 23/04/2014 + * @since 5.0.0 * - * @param array $field The field array. - * @return array $field + * @param array $field The field array. + * @return array $field */ function validate_field( $field ) { @@ -121,15 +121,15 @@ function validate_field( $field ) { } /** - * validate_textarea_field + * validate_textarea_field * - * Adds compatibility with deprecated settings + * Adds compatibility with deprecated settings * - * @date 23/04/2014 - * @since 5.0.0 + * @date 23/04/2014 + * @since 5.0.0 * - * @param array $field The field array. - * @return array $field + * @param array $field The field array. + * @return array $field */ function validate_textarea_field( $field ) { @@ -144,15 +144,15 @@ function validate_textarea_field( $field ) { } /** - * validate_relationship_field + * validate_relationship_field * - * Adds compatibility with deprecated settings + * Adds compatibility with deprecated settings * - * @date 23/04/2014 - * @since 5.0.0 + * @date 23/04/2014 + * @since 5.0.0 * - * @param array $field The field array. - * @return array $field + * @param array $field The field array. + * @return array $field */ function validate_relationship_field( $field ) { @@ -176,15 +176,15 @@ function validate_relationship_field( $field ) { } /** - * validate_image_field + * validate_image_field * - * Adds compatibility with deprecated settings + * Adds compatibility with deprecated settings * - * @date 23/04/2014 - * @since 5.0.0 + * @date 23/04/2014 + * @since 5.0.0 * - * @param array $field The field array. - * @return array $field + * @param array $field The field array. + * @return array $field */ function validate_image_field( $field ) { @@ -203,15 +203,15 @@ function validate_image_field( $field ) { } /** - * validate_wysiwyg_field + * validate_wysiwyg_field * - * Adds compatibility with deprecated settings + * Adds compatibility with deprecated settings * - * @date 23/04/2014 - * @since 5.0.0 + * @date 23/04/2014 + * @since 5.0.0 * - * @param array $field The field array. - * @return array $field + * @param array $field The field array. + * @return array $field */ function validate_wysiwyg_field( $field ) { @@ -227,15 +227,15 @@ function validate_wysiwyg_field( $field ) { } /** - * validate_date_picker_field + * validate_date_picker_field * - * Adds compatibility with deprecated settings + * Adds compatibility with deprecated settings * - * @date 23/04/2014 - * @since 5.0.0 + * @date 23/04/2014 + * @since 5.0.0 * - * @param array $field The field array. - * @return array $field + * @param array $field The field array. + * @return array $field */ function validate_date_picker_field( $field ) { @@ -262,15 +262,15 @@ function validate_date_picker_field( $field ) { } /** - * validate_taxonomy_field + * validate_taxonomy_field * - * Adds compatibility with deprecated settings + * Adds compatibility with deprecated settings * - * @date 23/04/2014 - * @since 5.2.7 + * @date 23/04/2014 + * @since 5.2.7 * - * @param array $field The field array. - * @return array $field + * @param array $field The field array. + * @return array $field */ function validate_taxonomy_field( $field ) { @@ -284,15 +284,15 @@ function validate_taxonomy_field( $field ) { } /** - * validate_date_time_picker_field + * validate_date_time_picker_field * - * Adds compatibility with deprecated settings + * Adds compatibility with deprecated settings * - * @date 23/04/2014 - * @since 5.2.7 + * @date 23/04/2014 + * @since 5.2.7 * - * @param array $field The field array. - * @return array $field + * @param array $field The field array. + * @return array $field */ function validate_date_time_picker_field( $field ) { @@ -324,15 +324,15 @@ function validate_date_time_picker_field( $field ) { } /** - * validate_user_field + * validate_user_field * - * Adds compatibility with deprecated settings + * Adds compatibility with deprecated settings * - * @date 23/04/2014 - * @since 5.2.7 + * @date 23/04/2014 + * @since 5.2.7 * - * @param array $field The field array. - * @return array $field + * @param array $field The field array. + * @return array $field */ function validate_user_field( $field ) { @@ -357,18 +357,16 @@ function validate_user_field( $field ) { return $field; } - /* - * validate_field_group - * - * This function will provide compatibility with ACF4 field groups - * - * @type function - * @date 23/04/2014 - * @since 5.0.0 - * - * @param $field_group (array) - * @return $field_group - */ + /** + * This function will provide compatibility with ACF4 field groups + * + * @type function + * @date 23/04/2014 + * @since 5.0.0 + * + * @param $field_group (array) + * @return $field_group + */ function validate_field_group( $field_group ) { // vars @@ -441,15 +439,15 @@ function validate_field_group( $field_group ) { } /** - * validate_post_taxonomy_location_rule + * validate_post_taxonomy_location_rule * - * description + * description * - * @date 27/8/18 - * @since 5.7.4 + * @date 27/8/18 + * @since 5.7.4 * - * @param type $var Description. Default. - * @return type Description. + * @param type $var Description. Default. + * @return type Description. */ function validate_post_taxonomy_location_rule( $rule ) { @@ -470,16 +468,14 @@ function validate_post_taxonomy_location_rule( $rule ) { acf_new_instance( 'ACF_Compatibility' ); endif; // class_exists check -/* - * acf_get_compatibility - * +/** * Returns true if compatibility is enabled for the given component. * * @date 20/1/15 * @since 5.1.5 * * @param string $name The name of the component to check. - * @return bool + * @return boolean */ function acf_get_compatibility( $name ) { return apply_filters( "acf/compatibility/{$name}", false ); diff --git a/includes/deprecated.php b/includes/deprecated.php index ca73619..f0b99a7 100644 --- a/includes/deprecated.php +++ b/includes/deprecated.php @@ -58,16 +58,14 @@ function acf_render_field_wrap_description( $field ) { acf_render_field_instructions( $field ); } -/* - * acf_get_fields_by_id - * +/** * Returns and array of fields for the given $parent_id. * * @date 27/02/2014 * @since 5.0.0. * @deprecated 5.7.11 * - * @param int $parent_id The parent ID. + * @param integer $parent_id The parent ID. * @return array */ function acf_get_fields_by_id( $parent_id = 0 ) { @@ -93,10 +91,10 @@ function acf_get_fields_by_id( $parent_id = 0 ) { * @since 5.0.0 * @deprecated 5.7.11 * - * @param string $option The option name. - * @param string $value The option value. + * @param string $option The option name. + * @param string $value The option value. * @param string $autoload An optional autoload value. - * @return bool + * @return boolean */ function acf_update_option( $option = '', $value = '', $autoload = null ) { diff --git a/includes/fields.php b/includes/fields.php old mode 100644 new mode 100755 index c4577a6..8d5670d --- a/includes/fields.php +++ b/includes/fields.php @@ -12,36 +12,32 @@ class acf_fields { var $types = array(); - /* - * __construct - * - * This function will setup the class functionality - * - * @type function - * @date 5/03/2014 - * @since 5.4.0 - * - * @param n/a - * @return n/a - */ + /** + * This function will setup the class functionality + * + * @type function + * @date 5/03/2014 + * @since 5.4.0 + * + * @param n/a + * @return n/a + */ function __construct() { /* do nothing */ } - /* - * register_field_type - * - * This function will register a field type instance - * - * @type function - * @date 6/07/2016 - * @since 5.4.0 - * - * @param $class (string) - * @return n/a - */ + /** + * This function will register a field type instance + * + * @type function + * @date 6/07/2016 + * @since 5.4.0 + * + * @param $class (string) + * @return n/a + */ function register_field_type( $class ) { @@ -57,56 +53,49 @@ function register_field_type( $class ) { } - /* - * get_field_type - * - * This function will return a field type instance - * - * @type function - * @date 6/07/2016 - * @since 5.4.0 - * - * @param $name (string) - * @return (mixed) - */ + /** + * This function will return a field type instance + * + * @type function + * @date 6/07/2016 + * @since 5.4.0 + * + * @param $name (string) + * @return (mixed) + */ function get_field_type( $name ) { return isset( $this->types[ $name ] ) ? $this->types[ $name ] : null; } - /* - * is_field_type - * - * This function will return true if a field type exists - * - * @type function - * @date 6/07/2016 - * @since 5.4.0 - * - * @param $name (string) - * @return (mixed) - */ + /** + * This function will return true if a field type exists + * + * @type function + * @date 6/07/2016 + * @since 5.4.0 + * + * @param $name (string) + * @return (mixed) + */ function is_field_type( $name ) { return isset( $this->types[ $name ] ); } - /* - * register_field_type_info - * - * This function will store a basic array of info about the field type - * to later be overriden by the above register_field_type function - * - * @type function - * @date 29/5/17 - * @since 5.6.0 - * - * @param $info (array) - * @return n/a - */ - + /** + * This function will store a basic array of info about the field type + * to later be overriden by the above register_field_type function + * + * @type function + * @date 29/5/17 + * @since 5.6.0 + * + * @param $info (array) + * @return n/a + */ function register_field_type_info( $info ) { // convert to object @@ -115,19 +104,16 @@ function register_field_type_info( $info ) { } - /* - * get_field_types - * - * This function will return an array of all field types - * - * @type function - * @date 6/07/2016 - * @since 5.4.0 - * - * @param $name (string) - * @return (mixed) - */ - + /** + * This function will return an array of all field types + * + * @type function + * @date 6/07/2016 + * @since 5.4.0 + * + * @param $name (string) + * @return (mixed) + */ function get_field_types() { return $this->types; } @@ -139,73 +125,61 @@ function get_field_types() { endif; // class_exists check -/* -* acf_register_field_type -* -* alias of acf()->fields->register_field_type() -* -* @type function -* @date 31/5/17 -* @since 5.6.0 -* -* @param n/a -* @return n/a -*/ - +/** + * alias of acf()->fields->register_field_type() + * + * @type function + * @date 31/5/17 + * @since 5.6.0 + * + * @param n/a + * @return n/a + */ function acf_register_field_type( $class ) { return acf()->fields->register_field_type( $class ); } -/* -* acf_register_field_type_info -* -* alias of acf()->fields->register_field_type_info() -* -* @type function -* @date 31/5/17 -* @since 5.6.0 -* -* @param n/a -* @return n/a -*/ - +/** + * alias of acf()->fields->register_field_type_info() + * + * @type function + * @date 31/5/17 + * @since 5.6.0 + * + * @param n/a + * @return n/a + */ function acf_register_field_type_info( $info ) { return acf()->fields->register_field_type_info( $info ); } -/* -* acf_get_field_type -* -* alias of acf()->fields->get_field_type() -* -* @type function -* @date 31/5/17 -* @since 5.6.0 -* -* @param n/a -* @return n/a -*/ - +/** + * alias of acf()->fields->get_field_type() + * + * @type function + * @date 31/5/17 + * @since 5.6.0 + * + * @param n/a + * @return n/a + */ function acf_get_field_type( $name ) { return acf()->fields->get_field_type( $name ); } -/* -* acf_get_field_types -* -* alias of acf()->fields->get_field_types() -* -* @type function -* @date 31/5/17 -* @since 5.6.0 -* -* @param n/a -* @return n/a -*/ - +/** + * alias of acf()->fields->get_field_types() + * + * @type function + * @date 31/5/17 + * @since 5.6.0 + * + * @param n/a + * @return n/a + */ function acf_get_field_types( $args = array() ) { // default @@ -225,17 +199,16 @@ function acf_get_field_types( $args = array() ) { /** - * acf_get_field_types_info + * acf_get_field_types_info * - * Returns an array containing information about each field type + * Returns an array containing information about each field type * - * @date 18/6/18 - * @since 5.6.9 + * @date 18/6/18 + * @since 5.6.9 * - * @param type $var Description. Default. - * @return type Description. + * @param type $var Description. Default. + * @return type Description. */ - function acf_get_field_types_info( $args = array() ) { // vars @@ -264,75 +237,84 @@ function acf_get_field_types_info( $args = array() ) { } -/* -* acf_is_field_type -* -* alias of acf()->fields->is_field_type() -* -* @type function -* @date 31/5/17 -* @since 5.6.0 -* -* @param n/a -* @return n/a -*/ - +/** + * alias of acf()->fields->is_field_type() + * + * @type function + * @date 31/5/17 + * @since 5.6.0 + * + * @param n/a + * @return n/a + */ function acf_is_field_type( $name = '' ) { return acf()->fields->is_field_type( $name ); } -/* -* acf_get_field_type_prop -* -* This function will return a field type's property -* -* @type function -* @date 1/10/13 -* @since 5.0.0 -* -* @param n/a -* @return (array) -*/ - +/** + * This function will return a field type's property + * + * @type function + * @date 1/10/13 + * @since 5.0.0 + * + * @param n/a + * @return (array) + */ function acf_get_field_type_prop( $name = '', $prop = '' ) { $type = acf_get_field_type( $name ); return ( $type && isset( $type->$prop ) ) ? $type->$prop : null; } -/* -* acf_get_field_type_label -* -* This function will return the label of a field type -* -* @type function -* @date 1/10/13 -* @since 5.0.0 -* -* @param n/a -* @return (array) -*/ - +/** + * This function will return the label of a field type + * + * @type function + * @date 1/10/13 + * @since 5.0.0 + * + * @param n/a + * @return (array) + */ function acf_get_field_type_label( $name = '' ) { $label = acf_get_field_type_prop( $name, 'label' ); return $label ? $label : '' . __( 'Unknown', 'acf' ) . ''; } +/** + * Returns the value of a field type "supports" property. + * + * @since 6.2.5 + * + * @param string $name The name of the field type. + * @param string $prop The name of the supports property. + * @param mixed $default The default value if the property is not set. + * + * @return mixed The value of the supports property which may be false, or $default on failure. + */ +function acf_field_type_supports( $name = '', $prop = '', $default = false ) { + $supports = acf_get_field_type_prop( $name, 'supports' ); + if ( ! is_array( $supports ) ) { + return $default; + } + return isset( $supports[ $prop ] ) ? $supports[ $prop ] : $default; +} -/* -* acf_field_type_exists (deprecated) -* -* deprecated in favour of acf_is_field_type() -* -* @type function -* @date 1/10/13 -* @since 5.0.0 -* -* @param $type (string) -* @return (boolean) -*/ +/** + * + * @deprecated + * @see acf_is_field_type() + * + * @type function + * @date 1/10/13 + * @since 5.0.0 + * + * @param $type (string) + * @return (boolean) + */ function acf_field_type_exists( $type = '' ) { return acf_is_field_type( $type ); } @@ -361,11 +343,11 @@ function acf_get_field_categories_i18n() { /** - * Returns an multi-dimentional array of field types "name => label" grouped by category + * Returns an multi-dimentional array of field types "name => label" grouped by category * - * @since 5.0.0 + * @since 5.0.0 * - * @return array + * @return array */ function acf_get_grouped_field_types() { @@ -393,14 +375,14 @@ function acf_get_grouped_field_types() { } /** - * Returns an array of tabs for a field type. - * We combine a list of default tabs with filtered tabs. - * I.E. Default tabs should be static and should not be changed by the - * filtered tabs. + * Returns an array of tabs for a field type. + * We combine a list of default tabs with filtered tabs. + * I.E. Default tabs should be static and should not be changed by the + * filtered tabs. * - * @since 6.1 + * @since 6.1 * - * @return array Key/value array of the default settings tabs for field type settings. + * @return array Key/value array of the default settings tabs for field type settings. */ function acf_get_combined_field_type_settings_tabs() { $default_field_type_settings_tabs = array( diff --git a/includes/fields/class-acf-field-accordion.php b/includes/fields/class-acf-field-accordion.php index 4605219..4f66fae 100644 --- a/includes/fields/class-acf-field-accordion.php +++ b/includes/fields/class-acf-field-accordion.php @@ -7,9 +7,9 @@ class acf_field__accordion extends acf_field { public $show_in_rest = false; /** - * initialize + * initialize * - * This function will setup the field type data + * This function will setup the field type data * * @date 30/10/17 * @since 5.6.3 @@ -27,6 +27,7 @@ function initialize() { $this->description = __( 'Allows you to group and organize custom fields into collapsable panels that are shown while editing content. Useful for keeping large datasets tidy.', 'acf' ); $this->preview_image = acf_get_url() . '/assets/images/field-type-previews/field-preview-accordion.png'; $this->doc_url = acf_add_url_utm_tags( 'https://www.advancedcustomfields.com/resources/accordion/', 'docs', 'field-type-selection' ); + $this->supports = array( 'required' => false ); $this->defaults = array( 'open' => 0, 'multi_expand' => 0, @@ -36,9 +37,9 @@ function initialize() { /** - * render_field + * render_field * - * Create the HTML interface for your field + * Create the HTML interface for your field * * @date 30/10/17 * @since 5.6.3 @@ -64,18 +65,16 @@ function render_field( $field ) { - /* - * render_field_settings() - * - * Create extra options for your field. This is rendered when editing a field. - * The value of $field['name'] can be used (like bellow) to save extra data to the $field - * - * @param $field - an array holding all the field's data - * - * @type action - * @since 3.6 - * @date 23/01/13 - */ + /** + * Create extra options for your field. This is rendered when editing a field. + * The value of $field['name'] can be used (like bellow) to save extra data to the $field + * + * @param $field - an array holding all the field's data + * + * @type action + * @since 3.6 + * @date 23/01/13 + */ function render_field_settings( $field ) { acf_render_field_setting( $field, @@ -112,19 +111,17 @@ function render_field_settings( $field ) { } - /* - * load_field() - * - * This filter is appied to the $field after it is loaded from the database - * - * @type filter - * @since 3.6 - * @date 23/01/13 - * - * @param $field - the field array holding all the field options - * - * @return $field - the field array holding all the field options - */ + /** + * This filter is appied to the $field after it is loaded from the database + * + * @type filter + * @since 3.6 + * @date 23/01/13 + * + * @param $field - the field array holding all the field options + * + * @return $field - the field array holding all the field options + */ function load_field( $field ) { diff --git a/includes/fields/class-acf-field-button-group.php b/includes/fields/class-acf-field-button-group.php index 5397e7c..377b058 100644 --- a/includes/fields/class-acf-field-button-group.php +++ b/includes/fields/class-acf-field-button-group.php @@ -6,15 +6,15 @@ class acf_field_button_group extends acf_field { /** - * initialize() + * initialize() * - * This function will setup the field type data + * This function will setup the field type data * - * @date 18/9/17 - * @since 5.6.3 + * @date 18/9/17 + * @since 5.6.3 * - * @param n/a - * @return n/a + * @param n/a + * @return n/a */ function initialize() { @@ -37,18 +37,13 @@ function initialize() { /** - * render_field() + * Creates the field's input HTML * - * Creates the field's input HTML + * @since 5.6.3 * - * @date 18/9/17 - * @since 5.6.3 - * - * @param array $field The field settings array - * @return n/a + * @param array $field The field settings array */ - - function render_field( $field ) { + public function render_field( $field ) { // vars $html = ''; @@ -98,7 +93,7 @@ function render_field( $field ) { $html .= acf_get_hidden_input( array( 'name' => $field['name'] ) ); // open - $html .= '
                            '; + $html .= '
                            '; // loop foreach ( $buttons as $button ) { @@ -118,20 +113,20 @@ function render_field( $field ) { $html .= '
                            '; // return - echo $html; + echo $html; //phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- safe HTML, escaped by input building functions. } /** - * render_field_settings() + * render_field_settings() * - * Creates the field's settings HTML + * Creates the field's settings HTML * - * @date 18/9/17 - * @since 5.6.3 + * @date 18/9/17 + * @since 5.6.3 * - * @param array $field The field settings array - * @return n/a + * @param array $field The field settings array + * @return n/a */ function render_field_settings( $field ) { // Encode choices (convert from array). @@ -220,17 +215,15 @@ function render_field_presentation_settings( $field ) { ); } - /* - * update_field() - * - * This filter is appied to the $field before it is saved to the database - * - * @date 18/9/17 - * @since 5.6.3 - * - * @param array $field The field array holding all the field options - * @return $field - */ + /** + * This filter is appied to the $field before it is saved to the database + * + * @date 18/9/17 + * @since 5.6.3 + * + * @param array $field The field array holding all the field options + * @return $field + */ function update_field( $field ) { @@ -238,19 +231,17 @@ function update_field( $field ) { } - /* - * load_value() - * - * This filter is appied to the $value after it is loaded from the db - * - * @date 18/9/17 - * @since 5.6.3 - * - * @param mixed $value The value found in the database - * @param mixed $post_id The post ID from which the value was loaded from - * @param array $field The field array holding all the field options - * @return $value - */ + /** + * This filter is appied to the $value after it is loaded from the db + * + * @date 18/9/17 + * @since 5.6.3 + * + * @param mixed $value The value found in the database + * @param mixed $post_id The post ID from which the value was loaded from + * @param array $field The field array holding all the field options + * @return $value + */ function load_value( $value, $post_id, $field ) { @@ -258,17 +249,15 @@ function load_value( $value, $post_id, $field ) { } - /* - * translate_field - * - * This function will translate field settings - * - * @date 18/9/17 - * @since 5.6.3 - * - * @param array $field The field array holding all the field options - * @return $field - */ + /** + * This function will translate field settings + * + * @date 18/9/17 + * @since 5.6.3 + * + * @param array $field The field array holding all the field options + * @return $field + */ function translate_field( $field ) { @@ -276,19 +265,17 @@ function translate_field( $field ) { } - /* - * format_value() - * - * This filter is appied to the $value after it is loaded from the db and before it is returned to the template - * - * @date 18/9/17 - * @since 5.6.3 - * - * @param mixed $value The value found in the database - * @param mixed $post_id The post ID from which the value was loaded from - * @param array $field The field array holding all the field options - * @return $value - */ + /** + * This filter is appied to the $value after it is loaded from the db and before it is returned to the template + * + * @date 18/9/17 + * @since 5.6.3 + * + * @param mixed $value The value found in the database + * @param mixed $post_id The post ID from which the value was loaded from + * @param array $field The field array holding all the field options + * @return $value + */ function format_value( $value, $post_id, $field ) { diff --git a/includes/fields/class-acf-field-checkbox.php b/includes/fields/class-acf-field-checkbox.php index e8dc32d..f0015fa 100644 --- a/includes/fields/class-acf-field-checkbox.php +++ b/includes/fields/class-acf-field-checkbox.php @@ -5,18 +5,16 @@ class acf_field_checkbox extends acf_field { - /* - * __construct - * - * This function will setup the field type data - * - * @type function - * @date 5/03/2014 - * @since 5.0.0 - * - * @param n/a - * @return n/a - */ + /** + * This function will setup the field type data + * + * @type function + * @date 5/03/2014 + * @since 5.0.0 + * + * @param n/a + * @return n/a + */ function initialize() { @@ -40,20 +38,18 @@ function initialize() { } - /* - * render_field() - * - * Create the HTML interface for your field - * - * @param $field (array) the $field being rendered - * - * @type action - * @since 3.6 - * @date 23/01/13 - * - * @param $field (array) the $field being edited - * @return n/a - */ + /** + * Create the HTML interface for your field + * + * @param $field (array) the $field being rendered + * + * @type action + * @since 3.6 + * @date 23/01/13 + * + * @param $field (array) the $field being edited + * @return n/a + */ function render_field( $field ) { @@ -99,22 +95,20 @@ function render_field( $field ) { } // return - echo '
                              ' . "\n" . $li . '
                            ' . "\n"; + echo '
                              ' . "\n" . $li . '
                            ' . "\n"; //phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- escaped by specific render methods above. } - /* - * render_field_choices - * - * description - * - * @type function - * @date 15/7/17 - * @since 5.6.0 - * - * @param $post_id (int) - * @return $post_id (int) - */ + /** + * description + * + * @type function + * @date 15/7/17 + * @since 5.6.0 + * + * @param $post_id (int) + * @return $post_id (int) + */ function render_field_choices( $field ) { @@ -125,17 +119,15 @@ function render_field_choices( $field ) { /** * Validates values for the checkbox field * - * @date 09/12/2022 * @since 6.0.0 * - * @param bool $valid If the field is valid. - * @param mixed $value The value to validate. - * @param array $field The main field array. - * @param string $input The input element's name attribute. - * - * @return bool + * @param boolean $valid If the field is valid. + * @param mixed $value The value to validate. + * @param array $field The main field array. + * @param string $input The input element's name attribute. + * @return boolean */ - function validate_value( $valid, $value, $field, $input ) { + public function validate_value( $valid, $value, $field, $input ) { if ( ! is_array( $value ) || empty( $field['allow_custom'] ) ) { return $valid; } @@ -149,18 +141,16 @@ function validate_value( $valid, $value, $field, $input ) { return $valid; } - /* - * render_field_toggle - * - * description - * - * @type function - * @date 15/7/17 - * @since 5.6.0 - * - * @param $post_id (int) - * @return $post_id (int) - */ + /** + * description + * + * @type function + * @date 15/7/17 + * @since 5.6.0 + * + * @param $post_id (int) + * @return $post_id (int) + */ function render_field_toggle( $field ) { @@ -186,18 +176,16 @@ function render_field_toggle( $field ) { } - /* - * render_field_custom - * - * description - * - * @type function - * @date 15/7/17 - * @since 5.6.0 - * - * @param $post_id (int) - * @return $post_id (int) - */ + /** + * description + * + * @type function + * @date 15/7/17 + * @since 5.6.0 + * + * @param $post_id (int) + * @return $post_id (int) + */ function render_field_custom( $field ) { @@ -318,18 +306,16 @@ function walk( $choices = array(), $args = array(), $depth = 0 ) { - /* - * render_field_settings() - * - * Create extra options for your field. This is rendered when editing a field. - * The value of $field['name'] can be used (like bellow) to save extra data to the $field - * - * @type action - * @since 3.6 - * @date 23/01/13 - * - * @param $field - an array holding all the field's data - */ + /** + * Create extra options for your field. This is rendered when editing a field. + * The value of $field['name'] can be used (like bellow) to save extra data to the $field + * + * @type action + * @since 3.6 + * @date 23/01/13 + * + * @param $field - an array holding all the field's data + */ function render_field_settings( $field ) { // Encode choices (convert from array). $field['choices'] = acf_encode_choices( $field['choices'] ); @@ -445,20 +431,18 @@ function render_field_presentation_settings( $field ) { ); } - /* - * update_field() - * - * This filter is appied to the $field before it is saved to the database - * - * @type filter - * @since 3.6 - * @date 23/01/13 - * - * @param $field - the field array holding all the field options - * @param $post_id - the field group ID (post_type = acf) - * - * @return $field - the modified field - */ + /** + * This filter is appied to the $field before it is saved to the database + * + * @type filter + * @since 3.6 + * @date 23/01/13 + * + * @param $field - the field array holding all the field options + * @param $post_id - the field group ID (post_type = acf) + * + * @return $field - the modified field + */ function update_field( $field ) { @@ -469,21 +453,19 @@ function update_field( $field ) { } - /* - * update_value() - * - * This filter is appied to the $value before it is updated in the db - * - * @type filter - * @since 3.6 - * @date 23/01/13 - * - * @param $value - the value which will be saved in the database - * @param $post_id - the $post_id of which the value will be saved - * @param $field - the field array holding all the field options - * - * @return $value - the modified value - */ + /** + * This filter is appied to the $value before it is updated in the db + * + * @type filter + * @since 3.6 + * @date 23/01/13 + * + * @param $value - the value which will be saved in the database + * @param $post_id - the post_id of which the value will be saved + * @param $field - the field array holding all the field options + * + * @return $value - the modified value + */ function update_value( $value, $post_id, $field ) { @@ -538,18 +520,16 @@ function update_value( $value, $post_id, $field ) { } - /* - * translate_field - * - * This function will translate field settings - * - * @type function - * @date 8/03/2016 - * @since 5.3.2 - * - * @param $field (array) - * @return $field - */ + /** + * This function will translate field settings + * + * @type function + * @date 8/03/2016 + * @since 5.3.2 + * + * @param $field (array) + * @return $field + */ function translate_field( $field ) { @@ -557,21 +537,19 @@ function translate_field( $field ) { } - /* - * format_value() - * - * This filter is appied to the $value after it is loaded from the db and before it is returned to the template - * - * @type filter - * @since 3.6 - * @date 23/01/13 - * - * @param $value (mixed) the value which was loaded from the database - * @param $post_id (mixed) the $post_id from which the value was loaded - * @param $field (array) the field array holding all the field options - * - * @return $value (mixed) the modified value - */ + /** + * This filter is appied to the $value after it is loaded from the db and before it is returned to the template + * + * @type filter + * @since 3.6 + * @date 23/01/13 + * + * @param $value (mixed) the value which was loaded from the database + * @param $post_id (mixed) the post_id from which the value was loaded + * @param $field (array) the field array holding all the field options + * + * @return $value (mixed) the modified value + */ function format_value( $value, $post_id, $field ) { diff --git a/includes/fields/class-acf-field-color_picker.php b/includes/fields/class-acf-field-color_picker.php index 10ba22a..e4e024c 100644 --- a/includes/fields/class-acf-field-color_picker.php +++ b/includes/fields/class-acf-field-color_picker.php @@ -5,18 +5,16 @@ class acf_field_color_picker extends acf_field { - /* - * __construct - * - * This function will setup the field type data - * - * @type function - * @date 5/03/2014 - * @since 5.0.0 - * - * @param n/a - * @return n/a - */ + /** + * This function will setup the field type data + * + * @type function + * @date 5/03/2014 + * @since 5.0.0 + * + * @param n/a + * @return n/a + */ function initialize() { @@ -35,18 +33,16 @@ function initialize() { } - /* - * input_admin_enqueue_scripts - * - * description - * - * @type function - * @date 16/12/2015 - * @since 5.3.2 - * - * @param $post_id (int) - * @return $post_id (int) - */ + /** + * description + * + * @type function + * @date 16/12/2015 + * @since 5.3.2 + * + * @param $post_id (int) + * @return $post_id (int) + */ function input_admin_enqueue_scripts() { @@ -102,17 +98,15 @@ function input_admin_enqueue_scripts() { } - /* - * render_field() - * - * Create the HTML interface for your field - * - * @param $field - an array holding all the field's data - * - * @type action - * @since 3.6 - * @date 23/01/13 - */ + /** + * Create the HTML interface for your field + * + * @param $field - an array holding all the field's data + * + * @type action + * @since 3.6 + * @date 23/01/13 + */ function render_field( $field ) { $text_input = acf_get_sub_array( $field, array( 'id', 'class', 'name', 'value' ) ); @@ -134,18 +128,16 @@ function render_field( $field ) { } - /* - * render_field_settings() - * - * Create extra options for your field. This is rendered when editing a field. - * The value of $field['name'] can be used (like bellow) to save extra data to the $field - * - * @type action - * @since 3.6 - * @date 23/01/13 - * - * @param $field - an array holding all the field's data - */ + /** + * Create extra options for your field. This is rendered when editing a field. + * The value of $field['name'] can be used (like bellow) to save extra data to the $field + * + * @type action + * @since 3.6 + * @date 23/01/13 + * + * @param $field - an array holding all the field's data + */ function render_field_settings( $field ) { @@ -194,13 +186,11 @@ function render_field_settings( $field ) { * Format the value for use in templates. At this stage, the value has been loaded from the * database and is being returned by an API function such as get_field(), the_field(), etc. * - * @since 5.10 - * @date 15/12/20 - * - * @param mixed $value - * @param int $post_id - * @param array $field + * @since 5.10 * + * @param mixed $value The field value + * @param integer $post_id The post ID + * @param array $field The field array * @return string|array */ public function format_value( $value, $post_id, $field ) { diff --git a/includes/fields/class-acf-field-date_picker.php b/includes/fields/class-acf-field-date_picker.php index 7b0af15..9c353d8 100644 --- a/includes/fields/class-acf-field-date_picker.php +++ b/includes/fields/class-acf-field-date_picker.php @@ -5,18 +5,16 @@ class acf_field_date_picker extends acf_field { - /* - * __construct - * - * This function will setup the field type data - * - * @type function - * @date 5/03/2014 - * @since 5.0.0 - * - * @param n/a - * @return n/a - */ + /** + * This function will setup the field type data + * + * @type function + * @date 5/03/2014 + * @since 5.0.0 + * + * @param n/a + * @return n/a + */ function initialize() { @@ -35,18 +33,16 @@ function initialize() { } - /* - * input_admin_enqueue_scripts - * - * description - * - * @type function - * @date 16/12/2015 - * @since 5.3.2 - * - * @param $post_id (int) - * @return $post_id (int) - */ + /** + * description + * + * @type function + * @date 16/12/2015 + * @since 5.3.2 + * + * @param $post_id (int) + * @return $post_id (int) + */ function input_admin_enqueue_scripts() { @@ -82,17 +78,15 @@ function input_admin_enqueue_scripts() { } - /* - * render_field() - * - * Create the HTML interface for your field - * - * @param $field - an array holding all the field's data - * - * @type action - * @since 3.6 - * @date 23/01/13 - */ + /** + * Create the HTML interface for your field + * + * @param $field - an array holding all the field's data + * + * @type action + * @since 3.6 + * @date 23/01/13 + */ function render_field( $field ) { @@ -153,18 +147,16 @@ function render_field( $field ) { } - /* - * render_field_settings() - * - * Create extra options for your field. This is rendered when editing a field. - * The value of $field['name'] can be used (like bellow) to save extra data to the $field - * - * @type action - * @since 3.6 - * @date 23/01/13 - * - * @param $field - an array holding all the field's data - */ + /** + * Create extra options for your field. This is rendered when editing a field. + * The value of $field['name'] can be used (like bellow) to save extra data to the $field + * + * @type action + * @since 3.6 + * @date 23/01/13 + * + * @param $field - an array holding all the field's data + */ function render_field_settings( $field ) { global $wp_locale; @@ -238,21 +230,19 @@ function render_field_settings( $field ) { ); } - /* - * format_value() - * - * This filter is appied to the $value after it is loaded from the db and before it is returned to the template - * - * @type filter - * @since 3.6 - * @date 23/01/13 - * - * @param $value (mixed) the value which was loaded from the database - * @param $post_id (mixed) the $post_id from which the value was loaded - * @param $field (array) the field array holding all the field options - * - * @return $value (mixed) the modified value - */ + /** + * This filter is appied to the $value after it is loaded from the db and before it is returned to the template + * + * @type filter + * @since 3.6 + * @date 23/01/13 + * + * @param $value (mixed) the value which was loaded from the database + * @param $post_id (mixed) the post_id from which the value was loaded + * @param $field (array) the field array holding all the field options + * + * @return $value (mixed) the modified value + */ function format_value( $value, $post_id, $field ) { @@ -267,18 +257,17 @@ function format_value( $value, $post_id, $field ) { /** - * This filter is applied to the $field after it is loaded from the database - * and ensures the return and display values are set. + * This filter is applied to the $field after it is loaded from the database + * and ensures the return and display values are set. * - * @type filter - * @since 5.11.0 - * @date 28/09/21 + * @type filter + * @since 5.11.0 + * @date 28/09/21 * - * @param array $field The field array holding all the field options. - * - * @return array + * @param array $field The field array holding all the field options. + * @return array */ - function load_field( $field ) { + public function load_field( $field ) { if ( empty( $field['display_format'] ) ) { $field['display_format'] = $this->defaults['display_format']; } @@ -293,7 +282,7 @@ function load_field( $field ) { /** * Return the schema array for the REST API. * - * @param array $field + * @param array $field The field array * @return array */ public function get_rest_schema( array $field ) { @@ -307,9 +296,9 @@ public function get_rest_schema( array $field ) { /** * Apply basic formatting to prepare the value for default REST output. * - * @param mixed $value - * @param string|int $post_id - * @param array $field + * @param mixed $value + * @param string|integer $post_id + * @param array $field * @return mixed */ public function format_value_for_rest( $value, $post_id, array $field ) { diff --git a/includes/fields/class-acf-field-date_time_picker.php b/includes/fields/class-acf-field-date_time_picker.php index 30196c9..a8387fd 100644 --- a/includes/fields/class-acf-field-date_time_picker.php +++ b/includes/fields/class-acf-field-date_time_picker.php @@ -5,18 +5,16 @@ class acf_field_date_and_time_picker extends acf_field { - /* - * __construct - * - * This function will setup the field type data - * - * @type function - * @date 5/03/2014 - * @since 5.0.0 - * - * @param n/a - * @return n/a - */ + /** + * This function will setup the field type data + * + * @type function + * @date 5/03/2014 + * @since 5.0.0 + * + * @param n/a + * @return n/a + */ function initialize() { @@ -35,18 +33,16 @@ function initialize() { } - /* - * input_admin_enqueue_scripts - * - * description - * - * @type function - * @date 16/12/2015 - * @since 5.3.2 - * - * @param $post_id (int) - * @return $post_id (int) - */ + /** + * description + * + * @type function + * @date 16/12/2015 + * @since 5.3.2 + * + * @param $post_id (int) + * @return $post_id (int) + */ function input_admin_enqueue_scripts() { @@ -93,17 +89,15 @@ function input_admin_enqueue_scripts() { } - /* - * render_field() - * - * Create the HTML interface for your field - * - * @param $field - an array holding all the field's data - * - * @type action - * @since 3.6 - * @date 23/01/13 - */ + /** + * Create the HTML interface for your field + * + * @param $field - an array holding all the field's data + * + * @type action + * @since 3.6 + * @date 23/01/13 + */ function render_field( $field ) { @@ -153,18 +147,16 @@ function render_field( $field ) { } - /* - * render_field_settings() - * - * Create extra options for your field. This is rendered when editing a field. - * The value of $field['name'] can be used (like bellow) to save extra data to the $field - * - * @type action - * @since 3.6 - * @date 23/01/13 - * - * @param $field - an array holding all the field's data - */ + /** + * Create extra options for your field. This is rendered when editing a field. + * The value of $field['name'] can be used (like bellow) to save extra data to the $field + * + * @type action + * @since 3.6 + * @date 23/01/13 + * + * @param $field - an array holding all the field's data + */ function render_field_settings( $field ) { global $wp_locale; @@ -225,41 +217,33 @@ function render_field_settings( $field ) { ); } - /* - * format_value() - * - * This filter is appied to the $value after it is loaded from the db and before it is returned to the template - * - * @type filter - * @since 3.6 - * @date 23/01/13 - * - * @param $value (mixed) the value which was loaded from the database - * @param $post_id (mixed) the $post_id from which the value was loaded - * @param $field (array) the field array holding all the field options - * - * @return $value (mixed) the modified value - */ - - function format_value( $value, $post_id, $field ) { - + /** + * This filter is appied to the $value after it is loaded from the db and before it is returned to the template + * + * @type filter + * @since 3.6 + * + * @param mixed $value The value which was loaded from the database + * @param mixed $post_id The post_id from which the value was loaded + * @param array $field The field array holding all the field options + * @return mixed $value The modified value + */ + public function format_value( $value, $post_id, $field ) { return acf_format_date( $value, $field['return_format'] ); } /** - * This filter is applied to the $field after it is loaded from the database - * and ensures the return and display values are set. + * This filter is applied to the $field after it is loaded from the database + * and ensures the return and display values are set. * - * @type filter - * @since 5.11.0 - * @date 28/09/21 + * @type filter + * @since 5.11.0 * - * @param array $field The field array holding all the field options. - * - * @return array + * @param array $field The field array holding all the field options. + * @return array */ - function load_field( $field ) { + public function load_field( $field ) { if ( empty( $field['display_format'] ) ) { $field['display_format'] = $this->defaults['display_format']; } diff --git a/includes/fields/class-acf-field-email.php b/includes/fields/class-acf-field-email.php index 01c4753..032fed4 100644 --- a/includes/fields/class-acf-field-email.php +++ b/includes/fields/class-acf-field-email.php @@ -5,18 +5,16 @@ class acf_field_email extends acf_field { - /* - * initialize - * - * This function will setup the field type data - * - * @type function - * @date 5/03/2014 - * @since 5.0.0 - * - * @param n/a - * @return n/a - */ + /** + * This function will setup the field type data + * + * @type function + * @date 5/03/2014 + * @since 5.0.0 + * + * @param n/a + * @return n/a + */ function initialize() { @@ -35,17 +33,15 @@ function initialize() { } - /* - * render_field() - * - * Create the HTML interface for your field - * - * @param $field - an array holding all the field's data - * - * @type action - * @since 3.6 - * @date 23/01/13 - */ + /** + * Create the HTML interface for your field + * + * @param $field - an array holding all the field's data + * + * @type action + * @since 3.6 + * @date 23/01/13 + */ function render_field( $field ) { @@ -88,22 +84,20 @@ function render_field( $field ) { $html .= '
                            ' . acf_get_text_input( $atts ) . '
                            '; // return - echo $html; + echo $html; //phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- safe HTML escaped by acf_get_text_input } - /* - * render_field_settings() - * - * Create extra options for your field. This is rendered when editing a field. - * The value of $field['name'] can be used (like bellow) to save extra data to the $field - * - * @type action - * @since 3.6 - * @date 23/01/13 - * - * @param $field - an array holding all the field's data - */ + /** + * Create extra options for your field. This is rendered when editing a field. + * The value of $field['name'] can be used (like bellow) to save extra data to the $field + * + * @type action + * @since 3.6 + * @date 23/01/13 + * + * @param $field - an array holding all the field's data + */ function render_field_settings( $field ) { acf_render_field_setting( $field, @@ -161,12 +155,11 @@ function render_field_presentation_settings( $field ) { * FALSE or a string is returned, the input value is invalid and the user is shown a * notice. If a string is returned, the string is show as the message text. * - * @param bool $valid Whether the value is valid. - * @param mixed $value The field value. - * @param array $field The field array. - * @param string $input The request variable name for the inbound field. - * - * @return bool|string + * @param boolean $valid Whether the value is valid. + * @param mixed $value The field value. + * @param array $field The field array. + * @param string $input The request variable name for the inbound field. + * @return boolean|string */ public function validate_value( $valid, $value, $field, $input ) { $flags = defined( 'FILTER_FLAG_EMAIL_UNICODE' ) ? FILTER_FLAG_EMAIL_UNICODE : 0; diff --git a/includes/fields/class-acf-field-file.php b/includes/fields/class-acf-field-file.php index ebd48cd..ad72014 100644 --- a/includes/fields/class-acf-field-file.php +++ b/includes/fields/class-acf-field-file.php @@ -5,18 +5,16 @@ class acf_field_file extends acf_field { - /* - * __construct - * - * This function will setup the field type data - * - * @type function - * @date 5/03/2014 - * @since 5.0.0 - * - * @param n/a - * @return n/a - */ + /** + * This function will setup the field type data + * + * @type function + * @date 5/03/2014 + * @since 5.0.0 + * + * @param n/a + * @return n/a + */ function initialize() { @@ -40,18 +38,16 @@ function initialize() { } - /* - * input_admin_enqueue_scripts - * - * description - * - * @type function - * @date 16/12/2015 - * @since 5.3.2 - * - * @param $post_id (int) - * @return $post_id (int) - */ + /** + * description + * + * @type function + * @date 16/12/2015 + * @since 5.3.2 + * + * @param $post_id (int) + * @return $post_id (int) + */ function input_admin_enqueue_scripts() { @@ -66,17 +62,15 @@ function input_admin_enqueue_scripts() { } - /* - * render_field() - * - * Create the HTML interface for your field - * - * @param $field - an array holding all the field's data - * - * @type action - * @since 3.6 - * @date 23/01/13 - */ + /** + * Create the HTML interface for your field + * + * @param $field - an array holding all the field's data + * + * @type action + * @since 3.6 + * @date 23/01/13 + */ function render_field( $field ) { @@ -146,19 +140,19 @@ function render_field( $field ) {

                            - : + :

                            - : + :

                            - + - +
                            @@ -182,7 +176,7 @@ function render_field( $field ) { -

                            +

                            @@ -191,18 +185,16 @@ function render_field( $field ) {
                            - - - + + +
                            - +
                            @@ -172,18 +166,16 @@ function render_field( $field ) { } - /* - * render_field_settings() - * - * Create extra options for your field. This is rendered when editing a field. - * The value of $field['name'] can be used (like bellow) to save extra data to the $field - * - * @type action - * @since 3.6 - * @date 23/01/13 - * - * @param $field - an array holding all the field's data - */ + /** + * Create extra options for your field. This is rendered when editing a field. + * The value of $field['name'] can be used (like bellow) to save extra data to the $field + * + * @type action + * @since 3.6 + * @date 23/01/13 + * + * @param $field - an array holding all the field's data + */ function render_field_settings( $field ) { @@ -248,9 +240,9 @@ function render_field_settings( $field ) { * @date 16/10/19 * @since 5.8.1 * - * @param mixed $value The value loaded from the database. + * @param mixed $value The value loaded from the database. * @param mixed $post_id The post ID where the value is saved. - * @param array $field The field settings array. + * @param array $field The field settings array. * @return (array|false) */ function load_value( $value, $post_id, $field ) { @@ -272,21 +264,19 @@ function load_value( $value, $post_id, $field ) { } - /* - * update_value() - * - * This filter is appied to the $value before it is updated in the db - * - * @type filter - * @since 3.6 - * @date 23/01/13 - * - * @param $value - the value which will be saved in the database - * @param $post_id - the $post_id of which the value will be saved - * @param $field - the field array holding all the field options - * - * @return $value - the modified value - */ + /** + * This filter is appied to the $value before it is updated in the db + * + * @type filter + * @since 3.6 + * @date 23/01/13 + * + * @param $value - the value which will be saved in the database + * @param $post_id - the post_id of which the value will be saved + * @param $field - the field array holding all the field options + * + * @return $value - the modified value + */ function update_value( $value, $post_id, $field ) { // decode JSON string. @@ -366,9 +356,9 @@ public function get_rest_schema( array $field ) { /** * Apply basic formatting to prepare the value for default REST output. * - * @param mixed $value - * @param string|int $post_id - * @param array $field + * @param mixed $value + * @param string|integer $post_id + * @param array $field * @return mixed */ public function format_value_for_rest( $value, $post_id, array $field ) { diff --git a/includes/fields/class-acf-field-group.php b/includes/fields/class-acf-field-group.php index 484cc8d..f74e464 100644 --- a/includes/fields/class-acf-field-group.php +++ b/includes/fields/class-acf-field-group.php @@ -5,18 +5,16 @@ class acf_field__group extends acf_field { - /* - * __construct - * - * This function will setup the field type data - * - * @type function - * @date 5/03/2014 - * @since 5.0.0 - * - * @param n/a - * @return n/a - */ + /** + * This function will setup the field type data + * + * @type function + * @date 5/03/2014 + * @since 5.0.0 + * + * @param n/a + * @return n/a + */ function initialize() { @@ -39,19 +37,17 @@ function initialize() { } - /* - * load_field() - * - * This filter is appied to the $field after it is loaded from the database - * - * @type filter - * @since 3.6 - * @date 23/01/13 - * - * @param $field - the field array holding all the field options - * - * @return $field - the field array holding all the field options - */ + /** + * This filter is appied to the $field after it is loaded from the database + * + * @type filter + * @since 3.6 + * @date 23/01/13 + * + * @param $field - the field array holding all the field options + * + * @return $field - the field array holding all the field options + */ function load_field( $field ) { @@ -68,20 +64,18 @@ function load_field( $field ) { } - /* - * load_value() - * - * This filter is applied to the $value after it is loaded from the db - * - * @type filter - * @since 3.6 - * @date 23/01/13 - * - * @param $value (mixed) the value found in the database - * @param $post_id (mixed) the $post_id from which the value was loaded - * @param $field (array) the field array holding all the field options - * @return $value - */ + /** + * This filter is applied to the $value after it is loaded from the db + * + * @type filter + * @since 3.6 + * @date 23/01/13 + * + * @param $value (mixed) the value found in the database + * @param $post_id (mixed) the post_id from which the value was loaded + * @param $field (array) the field array holding all the field options + * @return $value + */ function load_value( $value, $post_id, $field ) { @@ -108,24 +102,19 @@ function load_value( $value, $post_id, $field ) { } - /* - * format_value() - * - * This filter is appied to the $value after it is loaded from the db and before it is returned to the template - * - * @type filter - * @since 3.6 - * @date 23/01/13 - * - * @param $value (mixed) the value which was loaded from the database - * @param $post_id (mixed) the $post_id from which the value was loaded - * @param $field (array) the field array holding all the field options - * - * @return $value (mixed) the modified value - */ - - function format_value( $value, $post_id, $field ) { - + /** + * This filter is appied to the $value after it is loaded from the db and before it is returned to the template + * + * @type filter + * @since 3.6 + * + * @param mixed $value The value which was loaded from the database. + * @param mixed $post_id The $post_id from which the value was loaded. + * @param array $field The field array holding all the field options. + * @param boolean $escape_html Should the field return a HTML safe formatted value. + * @return mixed the modified value + */ + public function format_value( $value, $post_id, $field, $escape_html = false ) { // bail early if no value if ( empty( $value ) ) { return false; @@ -141,7 +130,7 @@ function format_value( $value, $post_id, $field ) { $sub_value = acf_extract_var( $value, $sub_field['key'] ); // format value - $sub_value = acf_format_value( $sub_value, $post_id, $sub_field ); + $sub_value = acf_format_value( $sub_value, $post_id, $sub_field, $escape_html ); // append to $row $value[ $sub_field['_name'] ] = $sub_value; @@ -152,21 +141,19 @@ function format_value( $value, $post_id, $field ) { } - /* - * update_value() - * - * This filter is appied to the $value before it is updated in the db - * - * @type filter - * @since 3.6 - * @date 23/01/13 - * - * @param $value - the value which will be saved in the database - * @param $field - the field array holding all the field options - * @param $post_id - the $post_id of which the value will be saved - * - * @return $value - the modified value - */ + /** + * This filter is appied to the $value before it is updated in the db + * + * @type filter + * @since 3.6 + * @date 23/01/13 + * + * @param $value - the value which will be saved in the database + * @param $field - the field array holding all the field options + * @param $post_id - the post_id of which the value will be saved + * + * @return $value - the modified value + */ function update_value( $value, $post_id, $field ) { @@ -213,18 +200,16 @@ function update_value( $value, $post_id, $field ) { } - /* - * prepare_field_for_db - * - * This function will modify sub fields ready for update / load - * - * @type function - * @date 4/11/16 - * @since 5.5.0 - * - * @param $field (array) - * @return $field - */ + /** + * This function will modify sub fields ready for update / load + * + * @type function + * @date 4/11/16 + * @since 5.5.0 + * + * @param $field (array) + * @return $field + */ function prepare_field_for_db( $field ) { @@ -245,17 +230,15 @@ function prepare_field_for_db( $field ) { } - /* - * render_field() - * - * Create the HTML interface for your field - * - * @param $field - an array holding all the field's data - * - * @type action - * @since 3.6 - * @date 23/01/13 - */ + /** + * Create the HTML interface for your field + * + * @param $field - an array holding all the field's data + * + * @type action + * @since 3.6 + * @date 23/01/13 + */ function render_field( $field ) { @@ -296,18 +279,16 @@ function render_field( $field ) { } - /* - * render_field_block - * - * description - * - * @type function - * @date 12/07/2016 - * @since 5.4.0 - * - * @param $post_id (int) - * @return $post_id (int) - */ + /** + * description + * + * @type function + * @date 12/07/2016 + * @since 5.4.0 + * + * @param $post_id (int) + * @return $post_id (int) + */ function render_field_block( $field ) { @@ -315,7 +296,7 @@ function render_field_block( $field ) { $label_placement = ( $field['layout'] == 'block' ) ? 'top' : 'left'; // html - echo '
                            '; + echo '
                            '; foreach ( $field['sub_fields'] as $sub_field ) { acf_render_field_wrap( $sub_field ); @@ -325,18 +306,16 @@ function render_field_block( $field ) { } - /* - * render_field_table - * - * description - * - * @type function - * @date 12/07/2016 - * @since 5.4.0 - * - * @param $post_id (int) - * @return $post_id (int) - */ + /** + * description + * + * @type function + * @date 12/07/2016 + * @since 5.4.0 + * + * @param $post_id (int) + * @return $post_id (int) + */ function render_field_table( $field ) { @@ -392,18 +371,16 @@ function render_field_table( $field ) { } - /* - * render_field_settings() - * - * Create extra options for your field. This is rendered when editing a field. - * The value of $field['name'] can be used (like bellow) to save extra data to the $field - * - * @type action - * @since 3.6 - * @date 23/01/13 - * - * @param $field - an array holding all the field's data - */ + /** + * Create extra options for your field. This is rendered when editing a field. + * The value of $field['name'] can be used (like bellow) to save extra data to the $field + * + * @type action + * @since 3.6 + * @date 23/01/13 + * + * @param $field - an array holding all the field's data + */ function render_field_settings( $field ) { @@ -417,7 +394,7 @@ function render_field_settings( $field ) { ?>
                            - +
                            />
                            - + - +
                            @@ -158,7 +154,7 @@ function render_field( $field ) { ?> -

                            +

                            @@ -166,18 +162,16 @@ function render_field( $field ) { } - /* - * render_field_settings() - * - * Create extra options for your field. This is rendered when editing a field. - * The value of $field['name'] can be used (like bellow) to save extra data to the $field - * - * @type action - * @since 3.6 - * @date 23/01/13 - * - * @param $field - an array holding all the field's data - */ + /** + * Create extra options for your field. This is rendered when editing a field. + * The value of $field['name'] can be used (like bellow) to save extra data to the $field + * + * @type action + * @since 3.6 + * @date 23/01/13 + * + * @param $field - an array holding all the field's data + */ function render_field_settings( $field ) { acf_render_field_setting( @@ -341,21 +335,19 @@ function render_field_presentation_settings( $field ) { ); } - /* - * format_value() - * - * This filter is appied to the $value after it is loaded from the db and before it is returned to the template - * - * @type filter - * @since 3.6 - * @date 23/01/13 - * - * @param $value (mixed) the value which was loaded from the database - * @param $post_id (mixed) the $post_id from which the value was loaded - * @param $field (array) the field array holding all the field options - * - * @return $value (mixed) the modified value - */ + /** + * This filter is appied to the $value after it is loaded from the db and before it is returned to the template + * + * @type filter + * @since 3.6 + * @date 23/01/13 + * + * @param $value (mixed) the value which was loaded from the database + * @param $post_id (mixed) the post_id from which the value was loaded + * @param $field (array) the field array holding all the field options + * + * @return $value (mixed) the modified value + */ function format_value( $value, $post_id, $field ) { @@ -384,18 +376,16 @@ function format_value( $value, $post_id, $field ) { } - /* - * get_media_item_args - * - * description - * - * @type function - * @date 27/01/13 - * @since 3.6.0 - * - * @param $vars (array) - * @return $vars - */ + /** + * description + * + * @type function + * @date 27/01/13 + * @since 3.6.0 + * + * @param $vars (array) + * @return $vars + */ function get_media_item_args( $vars ) { @@ -404,21 +394,19 @@ function get_media_item_args( $vars ) { } - /* - * update_value() - * - * This filter is appied to the $value before it is updated in the db - * - * @type filter - * @since 3.6 - * @date 23/01/13 - * - * @param $value - the value which will be saved in the database - * @param $post_id - the $post_id of which the value will be saved - * @param $field - the field array holding all the field options - * - * @return $value - the modified value - */ + /** + * This filter is appied to the $value before it is updated in the db + * + * @type filter + * @since 3.6 + * @date 23/01/13 + * + * @param $value - the value which will be saved in the database + * @param $post_id - the post_id of which the value will be saved + * @param $field - the field array holding all the field options + * + * @return $value - the modified value + */ function update_value( $value, $post_id, $field ) { @@ -427,29 +415,28 @@ function update_value( $value, $post_id, $field ) { /** - * validate_value + * This function will validate a basic file input * - * This function will validate a basic file input + * @type function + * @since 5.0.0 * - * @type function - * @date 11/02/2014 - * @since 5.0.0 - * - * @param $post_id (int) - * @return $post_id (int) + * @param boolean $valid The current validity status. + * @param mixed $value The field value. + * @param array $field The field array. + * @param string $input The name of the input in the POST object. + * @return boolean The validity status. */ - function validate_value( $valid, $value, $field, $input ) { + public function validate_value( $valid, $value, $field, $input ) { return acf_get_field_type( 'file' )->validate_value( $valid, $value, $field, $input ); } /** * Additional validation for the image field when submitted via REST. * - * @param bool $valid - * @param int $value - * @param array $field - * - * @return bool|WP_Error + * @param boolean $valid The current validity booleean + * @param integer $value The value of the field + * @param array $field The field array + * @return boolean|WP_Error */ public function validate_rest_value( $valid, $value, $field ) { return acf_get_field_type( 'file' )->validate_rest_value( $valid, $value, $field ); @@ -458,7 +445,7 @@ public function validate_rest_value( $valid, $value, $field ) { /** * Return the schema array for the REST API. * - * @param array $field + * @param array $field The field array * @return array */ public function get_rest_schema( array $field ) { @@ -468,9 +455,9 @@ public function get_rest_schema( array $field ) { /** * Apply basic formatting to prepare the value for default REST output. * - * @param mixed $value - * @param string|int $post_id - * @param array $field + * @param mixed $value The field value + * @param string|integer $post_id The post ID + * @param array $field The field array * @return mixed */ public function format_value_for_rest( $value, $post_id, array $field ) { diff --git a/includes/fields/class-acf-field-link.php b/includes/fields/class-acf-field-link.php index 91188d1..c280f2e 100644 --- a/includes/fields/class-acf-field-link.php +++ b/includes/fields/class-acf-field-link.php @@ -5,18 +5,16 @@ class acf_field_link extends acf_field { - /* - * __construct - * - * This function will setup the field type data - * - * @type function - * @date 5/03/2014 - * @since 5.0.0 - * - * @param n/a - * @return n/a - */ + /** + * This function will setup the field type data + * + * @type function + * @date 5/03/2014 + * @since 5.0.0 + * + * @param n/a + * @return n/a + */ function initialize() { @@ -33,18 +31,16 @@ function initialize() { } - /* - * get_link - * - * description - * - * @type function - * @date 16/5/17 - * @since 5.5.13 - * - * @param $post_id (int) - * @return $post_id (int) - */ + /** + * description + * + * @type function + * @date 16/5/17 + * @since 5.5.13 + * + * @param $post_id (int) + * @return $post_id (int) + */ function get_link( $value = '' ) { @@ -74,19 +70,15 @@ function get_link( $value = '' ) { } - /* - * render_field() - * - * Create the HTML interface for your field - * - * @param $field - an array holding all the field's data - * - * @type action - * @since 3.6 - * @date 23/01/13 - */ - - function render_field( $field ) { + /** + * Create the HTML interface for your field + * + * @param $field - an array holding all the field's data + * + * @type action + * @since 3.6 + */ + public function render_field( $field ) { // vars $div = array( @@ -108,11 +100,6 @@ function render_field( $field ) { if ( $link['target'] === '_blank' ) { $div['class'] .= ' -external'; } - - /* - */ ?>
                            > @@ -131,12 +118,12 @@ function render_field( $field ) {
                            - +
                            @@ -144,18 +131,16 @@ function render_field( $field ) { } - /* - * render_field_settings() - * - * Create extra options for your field. This is rendered when editing a field. - * The value of $field['name'] can be used (like bellow) to save extra data to the $field - * - * @type action - * @since 3.6 - * @date 23/01/13 - * - * @param $field - an array holding all the field's data - */ + /** + * Create extra options for your field. This is rendered when editing a field. + * The value of $field['name'] can be used (like bellow) to save extra data to the $field + * + * @type action + * @since 3.6 + * @date 23/01/13 + * + * @param $field - an array holding all the field's data + */ function render_field_settings( $field ) { acf_render_field_setting( $field, @@ -173,21 +158,19 @@ function render_field_settings( $field ) { ); } - /* - * format_value() - * - * This filter is appied to the $value after it is loaded from the db and before it is returned to the template - * - * @type filter - * @since 3.6 - * @date 23/01/13 - * - * @param $value (mixed) the value which was loaded from the database - * @param $post_id (mixed) the $post_id from which the value was loaded - * @param $field (array) the field array holding all the field options - * - * @return $value (mixed) the modified value - */ + /** + * This filter is appied to the $value after it is loaded from the db and before it is returned to the template + * + * @type filter + * @since 3.6 + * @date 23/01/13 + * + * @param $value (mixed) the value which was loaded from the database + * @param $post_id (mixed) the post_id from which the value was loaded + * @param $field (array) the field array holding all the field options + * + * @return $value (mixed) the modified value + */ function format_value( $value, $post_id, $field ) { @@ -209,18 +192,16 @@ function format_value( $value, $post_id, $field ) { } - /* - * validate_value - * - * description - * - * @type function - * @date 11/02/2014 - * @since 5.0.0 - * - * @param $post_id (int) - * @return $post_id (int) - */ + /** + * description + * + * @type function + * @date 11/02/2014 + * @since 5.0.0 + * + * @param $post_id (int) + * @return $post_id (int) + */ function validate_value( $valid, $value, $field, $input ) { @@ -239,21 +220,19 @@ function validate_value( $valid, $value, $field, $input ) { } - /* - * update_value() - * - * This filter is appied to the $value before it is updated in the db - * - * @type filter - * @since 3.6 - * @date 23/01/13 - * - * @param $value - the value which will be saved in the database - * @param $post_id - the $post_id of which the value will be saved - * @param $field - the field array holding all the field options - * - * @return $value - the modified value - */ + /** + * This filter is appied to the $value before it is updated in the db + * + * @type filter + * @since 3.6 + * @date 23/01/13 + * + * @param $value - the value which will be saved in the database + * @param $post_id - the post_id of which the value will be saved + * @param $field - the field array holding all the field options + * + * @return $value - the modified value + */ function update_value( $value, $post_id, $field ) { diff --git a/includes/fields/class-acf-field-message.php b/includes/fields/class-acf-field-message.php index 3f0c466..1b1c019 100644 --- a/includes/fields/class-acf-field-message.php +++ b/includes/fields/class-acf-field-message.php @@ -6,18 +6,16 @@ class acf_field_message extends acf_field { public $show_in_rest = false; - /* - * __construct - * - * This function will setup the field type data - * - * @type function - * @date 5/03/2014 - * @since 5.0.0 - * - * @param n/a - * @return n/a - */ + /** + * This function will setup the field type data + * + * @type function + * @date 5/03/2014 + * @since 5.0.0 + * + * @param n/a + * @return n/a + */ function initialize() { @@ -27,6 +25,7 @@ function initialize() { $this->category = 'layout'; $this->description = __( 'Used to display a message to editors alongside other fields. Useful for providing additional context or instructions around your fields.', 'acf' ); $this->preview_image = acf_get_url() . '/assets/images/field-type-previews/field-preview-message.png'; + $this->supports = array( 'required' => false ); $this->defaults = array( 'message' => '', 'esc_html' => 0, @@ -35,17 +34,15 @@ function initialize() { } - /* - * render_field() - * - * Create the HTML interface for your field - * - * @param $field - an array holding all the field's data - * - * @type action - * @since 3.6 - * @date 23/01/13 - */ + /** + * Create the HTML interface for your field + * + * @param $field - an array holding all the field's data + * + * @type action + * @since 3.6 + * @date 23/01/13 + */ function render_field( $field ) { @@ -72,18 +69,16 @@ function render_field( $field ) { } - /* - * render_field_settings() - * - * Create extra options for your field. This is rendered when editing a field. - * The value of $field['name'] can be used (like bellow) to save extra data to the $field - * - * @param $field - an array holding all the field's data - * - * @type action - * @since 3.6 - * @date 23/01/13 - */ + /** + * Create extra options for your field. This is rendered when editing a field. + * The value of $field['name'] can be used (like bellow) to save extra data to the $field + * + * @param $field - an array holding all the field's data + * + * @type action + * @since 3.6 + * @date 23/01/13 + */ function render_field_settings( $field ) { acf_render_field_setting( $field, @@ -122,18 +117,16 @@ function render_field_settings( $field ) { ); } - /* - * translate_field - * - * This function will translate field settings - * - * @type function - * @date 8/03/2016 - * @since 5.3.2 - * - * @param $field (array) - * @return $field - */ + /** + * This function will translate field settings + * + * @type function + * @date 8/03/2016 + * @since 5.3.2 + * + * @param $field (array) + * @return $field + */ function translate_field( $field ) { @@ -145,19 +138,17 @@ function translate_field( $field ) { } - /* - * load_field() - * - * This filter is appied to the $field after it is loaded from the database - * - * @type filter - * @since 3.6 - * @date 23/01/13 - * - * @param $field - the field array holding all the field options - * - * @return $field - the field array holding all the field options - */ + /** + * This filter is appied to the $field after it is loaded from the database + * + * @type filter + * @since 3.6 + * @date 23/01/13 + * + * @param $field - the field array holding all the field options + * + * @return $field - the field array holding all the field options + */ function load_field( $field ) { // remove name to avoid caching issue diff --git a/includes/fields/class-acf-field-number.php b/includes/fields/class-acf-field-number.php index e130346..0d155c3 100644 --- a/includes/fields/class-acf-field-number.php +++ b/includes/fields/class-acf-field-number.php @@ -5,18 +5,16 @@ class acf_field_number extends acf_field { - /* - * initialize - * - * This function will setup the field type data - * - * @type function - * @date 5/03/2014 - * @since 5.0.0 - * - * @param n/a - * @return n/a - */ + /** + * This function will setup the field type data + * + * @type function + * @date 5/03/2014 + * @since 5.0.0 + * + * @param n/a + * @return n/a + */ function initialize() { @@ -38,17 +36,15 @@ function initialize() { } - /* - * render_field() - * - * Create the HTML interface for your field - * - * @param $field - an array holding all the field's data - * - * @type action - * @since 3.6 - * @date 23/01/13 - */ + /** + * Create the HTML interface for your field + * + * @param $field - an array holding all the field's data + * + * @type action + * @since 3.6 + * @date 23/01/13 + */ function render_field( $field ) { @@ -96,22 +92,20 @@ function render_field( $field ) { $html .= '
                            ' . acf_get_text_input( $atts ) . '
                            '; // return - echo $html; + echo $html; //phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- escaped by individual html functions above. } - /* - * render_field_settings() - * - * Create extra options for your field. This is rendered when editing a field. - * The value of $field['name'] can be used (like bellow) to save extra data to the $field - * - * @type action - * @since 3.6 - * @date 23/01/13 - * - * @param $field - an array holding all the field's data - */ + /** + * Create extra options for your field. This is rendered when editing a field. + * The value of $field['name'] can be used (like bellow) to save extra data to the $field + * + * @type action + * @since 3.6 + * @date 23/01/13 + * + * @param $field - an array holding all the field's data + */ function render_field_settings( $field ) { @@ -207,18 +201,16 @@ function render_field_presentation_settings( $field ) { ); } - /* - * validate_value - * - * description - * - * @type function - * @date 11/02/2014 - * @since 5.0.0 - * - * @param $post_id (int) - * @return $post_id (int) - */ + /** + * description + * + * @type function + * @date 11/02/2014 + * @since 5.0.0 + * + * @param $post_id (int) + * @return $post_id (int) + */ function validate_value( $valid, $value, $field, $input ) { @@ -257,21 +249,19 @@ function validate_value( $valid, $value, $field, $input ) { } - /* - * update_value() - * - * This filter is appied to the $value before it is updated in the db - * - * @type filter - * @since 3.6 - * @date 23/01/13 - * - * @param $value - the value which will be saved in the database - * @param $field - the field array holding all the field options - * @param $post_id - the $post_id of which the value will be saved - * - * @return $value - the modified value - */ + /** + * This filter is appied to the $value before it is updated in the db + * + * @type filter + * @since 3.6 + * @date 23/01/13 + * + * @param $value - the value which will be saved in the database + * @param $field - the field array holding all the field options + * @param $post_id - the post_id of which the value will be saved + * + * @return $value - the modified value + */ function update_value( $value, $post_id, $field ) { @@ -319,9 +309,9 @@ public function get_rest_schema( array $field ) { /** * Apply basic formatting to prepare the value for default REST output. * - * @param mixed $value - * @param string|int $post_id - * @param array $field + * @param mixed $value + * @param string|integer $post_id + * @param array $field * @return mixed */ public function format_value_for_rest( $value, $post_id, array $field ) { diff --git a/includes/fields/class-acf-field-oembed.php b/includes/fields/class-acf-field-oembed.php index 5c57c31..f792c3b 100644 --- a/includes/fields/class-acf-field-oembed.php +++ b/includes/fields/class-acf-field-oembed.php @@ -5,18 +5,16 @@ class acf_field_oembed extends acf_field { - /* - * __construct - * - * This function will setup the field type data - * - * @type function - * @date 5/03/2014 - * @since 5.0.0 - * - * @param n/a - * @return n/a - */ + /** + * This function will setup the field type data + * + * @type function + * @date 5/03/2014 + * @since 5.0.0 + * + * @param n/a + * @return n/a + */ function initialize() { @@ -33,6 +31,9 @@ function initialize() { ); $this->width = 640; $this->height = 390; + $this->supports = array( + 'escaping_html' => true, // The OEmbed field only produces html safe content from format_value. + ); // extra add_action( 'wp_ajax_acf/fields/oembed/search', array( $this, 'ajax_query' ) ); @@ -40,18 +41,16 @@ function initialize() { } - /* - * prepare_field - * - * This function will prepare the field for input - * - * @type function - * @date 14/2/17 - * @since 5.5.8 - * - * @param $field (array) - * @return (int) - */ + /** + * This function will prepare the field for input + * + * @type function + * @date 14/2/17 + * @since 5.5.8 + * + * @param $field (array) + * @return (int) + */ function prepare_field( $field ) { @@ -73,9 +72,9 @@ function prepare_field( $field ) { * @date 24/01/2014 * @since 5.0.0 * - * @param string $url The URL that should be embedded. - * @param int|string $width Optional maxwidth value passed to the provider URL. - * @param int|string $height Optional maxheight value passed to the provider URL. + * @param string $url The URL that should be embedded. + * @param integer|string $width Optional maxwidth value passed to the provider URL. + * @param integer|string $height Optional maxheight value passed to the provider URL. * @return string|false The embedded HTML on success, false on failure. */ function wp_oembed_get( $url = '', $width = 0, $height = 0 ) { @@ -98,18 +97,16 @@ function wp_oembed_get( $url = '', $width = 0, $height = 0 ) { return $embed; } - /* - * ajax_query - * - * description - * - * @type function - * @date 24/10/13 - * @since 5.0.0 - * - * @param $post_id (int) - * @return $post_id (int) - */ + /** + * description + * + * @type function + * @date 24/10/13 + * @since 5.0.0 + * + * @param $post_id (int) + * @return $post_id (int) + */ function ajax_query() { @@ -126,18 +123,16 @@ function ajax_query() { } - /* - * get_ajax_query - * - * This function will return an array of data formatted for use in a select2 AJAX response - * - * @type function - * @date 15/10/2014 - * @since 5.0.9 - * - * @param $options (array) - * @return (array) - */ + /** + * This function will return an array of data formatted for use in a select2 AJAX response + * + * @type function + * @date 15/10/2014 + * @since 5.0.9 + * + * @param $options (array) + * @return (array) + */ function get_ajax_query( $args = array() ) { @@ -170,17 +165,17 @@ function get_ajax_query( $args = array() ) { } - /* - * render_field() - * - * Create the HTML interface for your field - * - * @param $field - an array holding all the field's data - * - * @type action - * @since 3.6 - * @date 23/01/13 - */ + /** + * render_field() + * + * Create the HTML interface for your field + * + * @param $field - an array holding all the field's data + * + * @type action + * @since 3.6 + * @date 23/01/13 + */ function render_field( $field ) { @@ -190,7 +185,6 @@ function render_field( $field ) { ); // _e("No embed found for the given URL.", 'acf'); - // value if ( $field['value'] ) { $atts['class'] .= ' has-value'; @@ -229,7 +223,7 @@ function render_field( $field ) {
                            wp_oembed_get( $field['value'], $field['width'], $field['height'] ); + echo $this->wp_oembed_get( $field['value'], $field['width'], $field['height'] ); //phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- wp_ombed_get generates HTML safe output. } ?>
                            @@ -241,18 +235,16 @@ function render_field( $field ) { } - /* - * render_field_settings() - * - * Create extra options for your field. This is rendered when editing a field. - * The value of $field['name'] can be used (like bellow) to save extra data to the $field - * - * @param $field - an array holding all the field's data - * - * @type action - * @since 3.6 - * @date 23/01/13 - */ + /** + * Create extra options for your field. This is rendered when editing a field. + * The value of $field['name'] can be used (like bellow) to save extra data to the $field + * + * @param $field - an array holding all the field's data + * + * @type action + * @since 3.6 + * @date 23/01/13 + */ function render_field_settings( $field ) { acf_render_field_setting( $field, @@ -281,21 +273,17 @@ function render_field_settings( $field ) { } /** - * format_value() - * - * This filter is appied to the $value after it is loaded from the db and before it is returned to the template - * - * @type filter - * @since 3.6 - * @date 23/01/13 + * This filter is appied to the $value after it is loaded from the db and before it is returned to the template. * - * @param $value (mixed) the value which was loaded from the database - * @param $post_id (mixed) the post_id from which the value was loaded - * @param $field (array) the field array holding all the field options + * @type filter + * @since 3.6 * - * @return $value (mixed) the modified value + * @param mixed $value The value which was loaded from the database. + * @param mixed $post_id The $post_id from which the value was loaded. + * @param array $field The field array holding all the field options. + * @return mixed the modified value */ - function format_value( $value, $post_id, $field ) { + public function format_value( $value, $post_id, $field ) { // bail early if no value if ( empty( $value ) ) { return $value; diff --git a/includes/fields/class-acf-field-output.php b/includes/fields/class-acf-field-output.php index 69a1989..ae757bb 100644 --- a/includes/fields/class-acf-field-output.php +++ b/includes/fields/class-acf-field-output.php @@ -5,18 +5,16 @@ class acf_field_output extends acf_field { - /* - * __construct - * - * This function will setup the field type data - * - * @type function - * @date 5/03/2014 - * @since 5.0.0 - * - * @param n/a - * @return n/a - */ + /** + * This function will setup the field type data + * + * @type function + * @date 5/03/2014 + * @since 5.0.0 + * + * @param n/a + * @return n/a + */ function initialize() { @@ -30,20 +28,18 @@ function initialize() { } - /* - * render_field() - * - * Create the HTML interface for your field - * - * @param $field (array) the $field being rendered - * - * @type action - * @since 3.6 - * @date 23/01/13 - * - * @param $field (array) the $field being edited - * @return n/a - */ + /** + * Create the HTML interface for your field + * + * @param $field (array) the $field being rendered + * + * @type action + * @since 3.6 + * @date 23/01/13 + * + * @param $field (array) the $field being edited + * @return n/a + */ function render_field( $field ) { @@ -54,7 +50,7 @@ function render_field( $field ) { // html if ( is_string( $field['html'] ) && ! function_exists( $field['html'] ) ) { - echo $field['html']; + echo acf_esc_html( $field['html'] ); // function } else { diff --git a/includes/fields/class-acf-field-page_link.php b/includes/fields/class-acf-field-page_link.php index 51a1bc1..428ea63 100644 --- a/includes/fields/class-acf-field-page_link.php +++ b/includes/fields/class-acf-field-page_link.php @@ -5,18 +5,16 @@ class acf_field_page_link extends acf_field { - /* - * __construct - * - * This function will setup the field type data - * - * @type function - * @date 5/03/2014 - * @since 5.0.0 - * - * @param n/a - * @return n/a - */ + /** + * This function will setup the field type data + * + * @type function + * @date 5/03/2014 + * @since 5.0.0 + * + * @param n/a + * @return n/a + */ function initialize() { @@ -41,18 +39,16 @@ function initialize() { } - /* - * ajax_query - * - * description - * - * @type function - * @date 24/10/13 - * @since 5.0.0 - * - * @param $post_id (int) - * @return $post_id (int) - */ + /** + * description + * + * @type function + * @date 24/10/13 + * @since 5.0.0 + * + * @param $post_id (int) + * @return $post_id (int) + */ function ajax_query() { @@ -216,19 +212,17 @@ function ajax_query() { } - /* - * get_post_result - * - * This function will return an array containing id, text and maybe description data - * - * @type function - * @date 7/07/2016 - * @since 5.4.0 - * - * @param $id (mixed) - * @param $text (string) - * @return (array) - */ + /** + * This function will return an array containing id, text and maybe description data + * + * @type function + * @date 7/07/2016 + * @since 5.4.0 + * + * @param $id (mixed) + * @param $text (string) + * @return (array) + */ function get_post_result( $id, $text ) { @@ -252,20 +246,18 @@ function get_post_result( $id, $text ) { } - /* - * get_post_title - * - * This function returns the HTML for a result - * - * @type function - * @date 1/11/2013 - * @since 5.0.0 - * - * @param $post (object) - * @param $field (array) - * @param $post_id (int) the post_id to which this value is saved to - * @return (string) - */ + /** + * This function returns the HTML for a result + * + * @type function + * @date 1/11/2013 + * @since 5.0.0 + * + * @param $post (object) + * @param $field (array) + * @param $post_id (int) the post_id to which this value is saved to + * @return (string) + */ function get_post_title( $post, $field, $post_id = 0, $is_search = 0 ) { @@ -287,18 +279,16 @@ function get_post_title( $post, $field, $post_id = 0, $is_search = 0 ) { } - /* - * get_posts - * - * This function will return an array of posts for a given field value - * - * @type function - * @date 13/06/2014 - * @since 5.0.0 - * - * @param $value (array) - * @return $value - */ + /** + * This function will return an array of posts for a given field value + * + * @type function + * @date 13/06/2014 + * @since 5.0.0 + * + * @param $value (array) + * @return $value + */ function get_posts( $value, $field ) { @@ -353,17 +343,15 @@ function get_posts( $value, $field ) { } - /* - * render_field() - * - * Create the HTML interface for your field - * - * @param $field - an array holding all the field's data - * - * @type action - * @since 3.6 - * @date 23/01/13 - */ + /** + * Create the HTML interface for your field + * + * @param $field - an array holding all the field's data + * + * @type action + * @since 3.6 + * @date 23/01/13 + */ function render_field( $field ) { @@ -404,18 +392,16 @@ function render_field( $field ) { } - /* - * render_field_settings() - * - * Create extra options for your field. This is rendered when editing a field. - * The value of $field['name'] can be used (like bellow) to save extra data to the $field - * - * @type action - * @since 3.6 - * @date 23/01/13 - * - * @param $field - an array holding all the field's data - */ + /** + * Create extra options for your field. This is rendered when editing a field. + * The value of $field['name'] can be used (like bellow) to save extra data to the $field + * + * @type action + * @since 3.6 + * @date 23/01/13 + * + * @param $field - an array holding all the field's data + */ function render_field_settings( $field ) { acf_render_field_setting( $field, @@ -506,21 +492,19 @@ function render_field_validation_settings( $field ) { ); } - /* - * format_value() - * - * This filter is appied to the $value after it is loaded from the db and before it is returned to the template - * - * @type filter - * @since 3.6 - * @date 23/01/13 - * - * @param $value (mixed) the value which was loaded from the database - * @param $post_id (mixed) the $post_id from which the value was loaded - * @param $field (array) the field array holding all the field options - * - * @return $value (mixed) the modified value - */ + /** + * This filter is appied to the $value after it is loaded from the db and before it is returned to the template + * + * @type filter + * @since 3.6 + * @date 23/01/13 + * + * @param $value (mixed) the value which was loaded from the database + * @param $post_id (mixed) the post_id from which the value was loaded + * @param $field (array) the field array holding all the field options + * + * @return $value (mixed) the modified value + */ function format_value( $value, $post_id, $field ) { @@ -562,21 +546,19 @@ function format_value( $value, $post_id, $field ) { } - /* - * update_value() - * - * This filter is appied to the $value before it is updated in the db - * - * @type filter - * @since 3.6 - * @date 23/01/13 - * - * @param $value - the value which will be saved in the database - * @param $post_id - the $post_id of which the value will be saved - * @param $field - the field array holding all the field options - * - * @return $value - the modified value - */ + /** + * This filter is appied to the $value before it is updated in the db + * + * @type filter + * @since 3.6 + * @date 23/01/13 + * + * @param $value - the value which will be saved in the database + * @param $post_id - the post_id of which the value will be saved + * @param $field - the field array holding all the field options + * + * @return $value - the modified value + */ function update_value( $value, $post_id, $field ) { @@ -604,11 +586,10 @@ function update_value( $value, $post_id, $field ) { /** * Validates page link fields updated via the REST API. * - * @param bool $valid - * @param int $value - * @param array $field - * - * @return bool|WP_Error + * @param boolean $valid The current validity booleean + * @param integer $value The value of the field + * @param array $field The field array + * @return boolean|WP_Error */ public function validate_rest_value( $valid, $value, $field ) { return acf_get_field_type( 'post_object' )->validate_rest_value( $valid, $value, $field ); @@ -647,9 +628,9 @@ public function get_rest_schema( array $field ) { /** * @see \acf_field::get_rest_links() - * @param mixed $value The raw (unformatted) field value. - * @param int|string $post_id - * @param array $field + * @param mixed $value The raw (unformatted) field value. + * @param integer|string $post_id + * @param array $field * @return array */ public function get_rest_links( $value, $post_id, array $field ) { @@ -677,9 +658,9 @@ public function get_rest_links( $value, $post_id, array $field ) { /** * Apply basic formatting to prepare the value for default REST output. * - * @param mixed $value - * @param string|int $post_id - * @param array $field + * @param mixed $value + * @param string|integer $post_id + * @param array $field * @return mixed */ public function format_value_for_rest( $value, $post_id, array $field ) { diff --git a/includes/fields/class-acf-field-password.php b/includes/fields/class-acf-field-password.php index be9c5fb..7b1f0e8 100644 --- a/includes/fields/class-acf-field-password.php +++ b/includes/fields/class-acf-field-password.php @@ -5,18 +5,16 @@ class acf_field_password extends acf_field { - /* - * initialize - * - * This function will setup the field type data - * - * @type function - * @date 5/03/2014 - * @since 5.0.0 - * - * @param n/a - * @return n/a - */ + /** + * This function will setup the field type data + * + * @type function + * @date 5/03/2014 + * @since 5.0.0 + * + * @param n/a + * @return n/a + */ function initialize() { @@ -34,35 +32,31 @@ function initialize() { } - /* - * render_field() - * - * Create the HTML interface for your field - * - * @param $field - an array holding all the field's data - * - * @type action - * @since 3.6 - * @date 23/01/13 - */ + /** + * Create the HTML interface for your field + * + * @param $field - an array holding all the field's data + * + * @type action + * @since 3.6 + * @date 23/01/13 + */ function render_field( $field ) { acf_get_field_type( 'text' )->render_field( $field ); } - /* - * render_field_settings() - * - * Create extra options for your field. This is rendered when editing a field. - * The value of $field['name'] can be used (like bellow) to save extra data to the $field - * - * @type action - * @since 3.6 - * @date 23/01/13 - * - * @param $field - an array holding all the field's data - */ + /** + * Create extra options for your field. This is rendered when editing a field. + * The value of $field['name'] can be used (like bellow) to save extra data to the $field + * + * @type action + * @since 3.6 + * @date 23/01/13 + * + * @param $field - an array holding all the field's data + */ function render_field_settings( $field ) { // TODO: Delete this method? } diff --git a/includes/fields/class-acf-field-post_object.php b/includes/fields/class-acf-field-post_object.php index 1a6bf28..e716da4 100644 --- a/includes/fields/class-acf-field-post_object.php +++ b/includes/fields/class-acf-field-post_object.php @@ -6,11 +6,11 @@ class acf_field_post_object extends acf_field { /** - * This function will setup the field type data + * This function will setup the field type data * - * @type function - * @date 5/03/2014 - * @since 5.0.0 + * @type function + * @date 5/03/2014 + * @since 5.0.0 */ public function initialize() { $this->name = 'post_object'; @@ -35,18 +35,16 @@ public function initialize() { } - /* - * ajax_query - * - * description - * - * @type function - * @date 24/10/13 - * @since 5.0.0 - * - * @param $post_id (int) - * @return $post_id (int) - */ + /** + * description + * + * @type function + * @date 24/10/13 + * @since 5.0.0 + * + * @param $post_id (int) + * @return $post_id (int) + */ function ajax_query() { @@ -63,18 +61,16 @@ function ajax_query() { } - /* - * get_ajax_query - * - * This function will return an array of data formatted for use in a select2 AJAX response - * - * @type function - * @date 15/10/2014 - * @since 5.0.9 - * - * @param $options (array) - * @return (array) - */ + /** + * This function will return an array of data formatted for use in a select2 AJAX response + * + * @type function + * @date 15/10/2014 + * @since 5.0.9 + * + * @param $options (array) + * @return (array) + */ function get_ajax_query( $options = array() ) { @@ -210,19 +206,17 @@ function get_ajax_query( $options = array() ) { } - /* - * get_post_result - * - * This function will return an array containing id, text and maybe description data - * - * @type function - * @date 7/07/2016 - * @since 5.4.0 - * - * @param $id (mixed) - * @param $text (string) - * @return (array) - */ + /** + * This function will return an array containing id, text and maybe description data + * + * @type function + * @date 7/07/2016 + * @since 5.4.0 + * + * @param $id (mixed) + * @param $text (string) + * @return (array) + */ function get_post_result( $id, $text ) { @@ -246,20 +240,18 @@ function get_post_result( $id, $text ) { } - /* - * get_post_title - * - * This function returns the HTML for a result - * - * @type function - * @date 1/11/2013 - * @since 5.0.0 - * - * @param $post (object) - * @param $field (array) - * @param $post_id (int) the post_id to which this value is saved to - * @return (string) - */ + /** + * This function returns the HTML for a result + * + * @type function + * @date 1/11/2013 + * @since 5.0.0 + * + * @param $post (object) + * @param $field (array) + * @param $post_id (int) the post_id to which this value is saved to + * @return (string) + */ function get_post_title( $post, $field, $post_id = 0, $is_search = 0 ) { @@ -281,17 +273,15 @@ function get_post_title( $post, $field, $post_id = 0, $is_search = 0 ) { } - /* - * render_field() - * - * Create the HTML interface for your field - * - * @param $field - an array holding all the field's data - * - * @type action - * @since 3.6 - * @date 23/01/13 - */ + /** + * Create the HTML interface for your field + * + * @param $field - an array holding all the field's data + * + * @type action + * @since 3.6 + * @date 23/01/13 + */ function render_field( $field ) { @@ -320,18 +310,16 @@ function render_field( $field ) { } - /* - * render_field_settings() - * - * Create extra options for your field. This is rendered when editing a field. - * The value of $field['name'] can be used (like bellow) to save extra data to the $field - * - * @type action - * @since 3.6 - * @date 23/01/13 - * - * @param $field - an array holding all the field's data - */ + /** + * Create extra options for your field. This is rendered when editing a field. + * The value of $field['name'] can be used (like bellow) to save extra data to the $field + * + * @type action + * @since 3.6 + * @date 23/01/13 + * + * @param $field - an array holding all the field's data + */ function render_field_settings( $field ) { acf_render_field_setting( $field, @@ -438,20 +426,18 @@ public function render_field_advanced_settings( $field ) { acf_render_bidirectional_field_settings( $field ); } - /* - * load_value() - * - * This filter is applied to the $value after it is loaded from the db - * - * @type filter - * @since 3.6 - * @date 23/01/13 - * - * @param $value (mixed) the value found in the database - * @param $post_id (mixed) the $post_id from which the value was loaded - * @param $field (array) the field array holding all the field options - * @return $value - */ + /** + * This filter is applied to the $value after it is loaded from the db + * + * @type filter + * @since 3.6 + * @date 23/01/13 + * + * @param $value (mixed) the value found in the database + * @param $post_id (mixed) the post_id from which the value was loaded + * @param $field (array) the field array holding all the field options + * @return $value + */ function load_value( $value, $post_id, $field ) { @@ -465,21 +451,19 @@ function load_value( $value, $post_id, $field ) { } - /* - * format_value() - * - * This filter is appied to the $value after it is loaded from the db and before it is returned to the template - * - * @type filter - * @since 3.6 - * @date 23/01/13 - * - * @param $value (mixed) the value which was loaded from the database - * @param $post_id (mixed) the $post_id from which the value was loaded - * @param $field (array) the field array holding all the field options - * - * @return $value (mixed) the modified value - */ + /** + * This filter is appied to the $value after it is loaded from the db and before it is returned to the template + * + * @type filter + * @since 3.6 + * @date 23/01/13 + * + * @param $value (mixed) the value which was loaded from the database + * @param $post_id (mixed) the post_id from which the value was loaded + * @param $field (array) the field array holding all the field options + * + * @return $value (mixed) the modified value + */ function format_value( $value, $post_id, $field ) { @@ -511,11 +495,10 @@ function format_value( $value, $post_id, $field ) { * * @since 3.6 * - * @param mixed $value The value which will be saved in the database. - * @param int $post_id The post_id of which the value will be saved. - * @param array $field The field array holding all the field options. - * - * @return mixed $value The modified value. + * @param mixed $value The value which will be saved in the database. + * @param integer $post_id The post_id of which the value will be saved. + * @param array $field The field array holding all the field options. + * @return mixed $value The modified value. */ public function update_value( $value, $post_id, $field ) { @@ -543,18 +526,16 @@ public function update_value( $value, $post_id, $field ) { } - /* - * get_posts - * - * This function will return an array of posts for a given field value - * - * @type function - * @date 13/06/2014 - * @since 5.0.0 - * - * @param $value (array) - * @return $value - */ + /** + * This function will return an array of posts for a given field value + * + * @type function + * @date 13/06/2014 + * @since 5.0.0 + * + * @param $value (array) + * @return $value + */ function get_posts( $value, $field ) { @@ -581,11 +562,10 @@ function get_posts( $value, $field ) { /** * Validates post object fields updated via the REST API. * - * @param bool $valid - * @param int $value - * @param array $field - * - * @return bool|WP_Error + * @param boolean $valid The current validity booleean + * @param integer $value The value of the field + * @param array $field The field array + * @return boolean|WP_Error */ public function validate_rest_value( $valid, $value, $field ) { if ( is_null( $value ) ) { @@ -707,9 +687,9 @@ public function get_rest_schema( array $field ) { /** * @see \acf_field::get_rest_links() - * @param mixed $value The raw (unformatted) field value. - * @param int|string $post_id - * @param array $field + * @param mixed $value The raw (unformatted) field value. + * @param integer|string $post_id + * @param array $field * @return array */ public function get_rest_links( $value, $post_id, array $field ) { @@ -742,9 +722,9 @@ public function get_rest_links( $value, $post_id, array $field ) { /** * Apply basic formatting to prepare the value for default REST output. * - * @param mixed $value - * @param string|int $post_id - * @param array $field + * @param mixed $value + * @param string|integer $post_id + * @param array $field * @return mixed */ public function format_value_for_rest( $value, $post_id, array $field ) { diff --git a/includes/fields/class-acf-field-radio.php b/includes/fields/class-acf-field-radio.php index d409494..e00ced7 100644 --- a/includes/fields/class-acf-field-radio.php +++ b/includes/fields/class-acf-field-radio.php @@ -5,18 +5,16 @@ class acf_field_radio extends acf_field { - /* - * __construct - * - * This function will setup the field type data - * - * @type function - * @date 5/03/2014 - * @since 5.0.0 - * - * @param n/a - * @return n/a - */ + /** + * This function will setup the field type data + * + * @type function + * @date 5/03/2014 + * @since 5.0.0 + * + * @param n/a + * @return n/a + */ function initialize() { @@ -39,20 +37,18 @@ function initialize() { } - /* - * render_field() - * - * Create the HTML interface for your field - * - * @param $field (array) the $field being rendered - * - * @type action - * @since 3.6 - * @date 23/01/13 - * - * @param $field (array) the $field being edited - * @return n/a - */ + /** + * Create the HTML interface for your field + * + * @param $field (array) the $field being rendered + * + * @type action + * @since 3.6 + * @date 23/01/13 + * + * @param $field (array) the $field being edited + * @return n/a + */ function render_field( $field ) { @@ -122,7 +118,7 @@ function render_field( $field ) { $e .= acf_get_hidden_input( array( 'name' => $field['name'] ) ); // Open
                              . - $e .= '
                                '; + $e .= '
                                  '; // Loop through choices. foreach ( $field['choices'] as $value => $label ) { @@ -157,29 +153,27 @@ function render_field( $field ) { } // append - $e .= '
                                • ' . acf_esc_html( $label ) . '' . $additional_html . '
                                • '; + $e .= '
                                • ' . acf_esc_html( $label ) . '' . $additional_html . '
                                • '; } // Close
                                    . $e .= '
                                  '; // Output HTML. - echo $e; + echo $e; //phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- escaped per attribute above. } - /* - * render_field_settings() - * - * Create extra options for your field. This is rendered when editing a field. - * The value of $field['name'] can be used (like bellow) to save extra data to the $field - * - * @type action - * @since 3.6 - * @date 23/01/13 - * - * @param $field - an array holding all the field's data - */ + /** + * Create extra options for your field. This is rendered when editing a field. + * The value of $field['name'] can be used (like bellow) to save extra data to the $field + * + * @type action + * @since 3.6 + * @date 23/01/13 + * + * @param $field - an array holding all the field's data + */ function render_field_settings( $field ) { // Encode choices (convert from array). @@ -295,20 +289,18 @@ function render_field_presentation_settings( $field ) { ); } - /* - * update_field() - * - * This filter is appied to the $field before it is saved to the database - * - * @type filter - * @since 3.6 - * @date 23/01/13 - * - * @param $field - the field array holding all the field options - * @param $post_id - the field group ID (post_type = acf) - * - * @return $field - the modified field - */ + /** + * This filter is appied to the $field before it is saved to the database + * + * @type filter + * @since 3.6 + * @date 23/01/13 + * + * @param $field - the field array holding all the field options + * @param $post_id - the field group ID (post_type = acf) + * + * @return $field - the modified field + */ function update_field( $field ) { @@ -320,22 +312,20 @@ function update_field( $field ) { } - /* - * update_value() - * - * This filter is appied to the $value before it is updated in the db - * - * @type filter - * @since 3.6 - * @date 23/01/13 - * @todo Fix bug where $field was found via json and has no ID - * - * @param $value - the value which will be saved in the database - * @param $post_id - the $post_id of which the value will be saved - * @param $field - the field array holding all the field options - * - * @return $value - the modified value - */ + /** + * This filter is appied to the $value before it is updated in the db + * + * @type filter + * @since 3.6 + * @date 23/01/13 + * @todo Fix bug where $field was found via json and has no ID + * + * @param $value - the value which will be saved in the database + * @param $post_id - the post_id of which the value will be saved + * @param $field - the field array holding all the field options + * + * @return $value - the modified value + */ function update_value( $value, $post_id, $field ) { @@ -379,21 +369,19 @@ function update_value( $value, $post_id, $field ) { } - /* - * load_value() - * - * This filter is appied to the $value after it is loaded from the db - * - * @type filter - * @since 5.2.9 - * @date 23/01/13 - * - * @param $value - the value found in the database - * @param $post_id - the $post_id from which the value was loaded from - * @param $field - the field array holding all the field options - * - * @return $value - the value to be saved in te database - */ + /** + * This filter is appied to the $value after it is loaded from the db + * + * @type filter + * @since 5.2.9 + * @date 23/01/13 + * + * @param $value - the value found in the database + * @param $post_id - the post_id from which the value was loaded from + * @param $field - the field array holding all the field options + * + * @return $value - the value to be saved in te database + */ function load_value( $value, $post_id, $field ) { @@ -407,18 +395,16 @@ function load_value( $value, $post_id, $field ) { } - /* - * translate_field - * - * This function will translate field settings - * - * @type function - * @date 8/03/2016 - * @since 5.3.2 - * - * @param $field (array) - * @return $field - */ + /** + * This function will translate field settings + * + * @type function + * @date 8/03/2016 + * @since 5.3.2 + * + * @param $field (array) + * @return $field + */ function translate_field( $field ) { @@ -426,21 +412,19 @@ function translate_field( $field ) { } - /* - * format_value() - * - * This filter is appied to the $value after it is loaded from the db and before it is returned to the template - * - * @type filter - * @since 3.6 - * @date 23/01/13 - * - * @param $value (mixed) the value which was loaded from the database - * @param $post_id (mixed) the $post_id from which the value was loaded - * @param $field (array) the field array holding all the field options - * - * @return $value (mixed) the modified value - */ + /** + * This filter is appied to the $value after it is loaded from the db and before it is returned to the template + * + * @type filter + * @since 3.6 + * @date 23/01/13 + * + * @param $value (mixed) the value which was loaded from the database + * @param $post_id (mixed) the post_id from which the value was loaded + * @param $field (array) the field array holding all the field options + * + * @return $value (mixed) the modified value + */ function format_value( $value, $post_id, $field ) { diff --git a/includes/fields/class-acf-field-range.php b/includes/fields/class-acf-field-range.php index 25ce015..8de092b 100644 --- a/includes/fields/class-acf-field-range.php +++ b/includes/fields/class-acf-field-range.php @@ -5,18 +5,16 @@ class acf_field_range extends acf_field_number { - /* - * initialize - * - * This function will setup the field type data - * - * @type function - * @date 5/03/2014 - * @since 5.0.0 - * - * @param n/a - * @return n/a - */ + /** + * This function will setup the field type data + * + * @type function + * @date 5/03/2014 + * @since 5.0.0 + * + * @param n/a + * @return n/a + */ function initialize() { @@ -37,17 +35,15 @@ function initialize() { } - /* - * render_field() - * - * Create the HTML interface for your field - * - * @param $field - an array holding all the field's data - * - * @type action - * @since 3.6 - * @date 23/01/13 - */ + /** + * Create the HTML interface for your field + * + * @param $field - an array holding all the field's data + * + * @type action + * @since 3.6 + * @date 23/01/13 + */ function render_field( $field ) { @@ -55,7 +51,6 @@ function render_field( $field ) { $atts = array(); $keys = array( 'type', 'id', 'class', 'name', 'value', 'min', 'max', 'step' ); $keys2 = array( 'readonly', 'disabled', 'required' ); - $html = ''; // step if ( ! $field['step'] ) { @@ -97,7 +92,7 @@ function render_field( $field ) { $atts = acf_clean_atts( $atts ); // open - $html .= '
                                  '; + $html = '
                                  '; // prepend if ( $field['prepend'] !== '' ) { @@ -139,22 +134,20 @@ function render_field( $field ) { $html .= '
                                  '; // return - echo $html; + echo $html; //phpcs:ignore WordPress.Security.EscapeOutput -- Only populated with already escaped HTML. } - /* - * render_field_settings() - * - * Create extra options for your field. This is rendered when editing a field. - * The value of $field['name'] can be used (like bellow) to save extra data to the $field - * - * @type action - * @since 3.6 - * @date 23/01/13 - * - * @param $field - an array holding all the field's data - */ + /** + * Create extra options for your field. This is rendered when editing a field. + * The value of $field['name'] can be used (like bellow) to save extra data to the $field + * + * @type action + * @since 3.6 + * @date 23/01/13 + * + * @param $field - an array holding all the field's data + */ function render_field_settings( $field ) { acf_render_field_setting( @@ -266,9 +259,9 @@ public function get_rest_schema( array $field ) { /** * Apply basic formatting to prepare the value for default REST output. * - * @param mixed $value - * @param string|int $post_id - * @param array $field + * @param mixed $value + * @param string|integer $post_id + * @param array $field * @return mixed */ public function format_value_for_rest( $value, $post_id, array $field ) { diff --git a/includes/fields/class-acf-field-relationship.php b/includes/fields/class-acf-field-relationship.php index b2d19a3..e614a7c 100644 --- a/includes/fields/class-acf-field-relationship.php +++ b/includes/fields/class-acf-field-relationship.php @@ -6,11 +6,11 @@ class acf_field_relationship extends acf_field { /** - * This function will setup the field type data + * This function will setup the field type data * - * @type function - * @date 5/03/2014 - * @since 5.0.0 + * @type function + * @date 5/03/2014 + * @since 5.0.0 */ public function initialize() { $this->name = 'relationship'; @@ -36,18 +36,16 @@ public function initialize() { } - /* - * input_admin_enqueue_scripts - * - * description - * - * @type function - * @date 16/12/2015 - * @since 5.3.2 - * - * @param $post_id (int) - * @return $post_id (int) - */ + /** + * description + * + * @type function + * @date 16/12/2015 + * @since 5.3.2 + * + * @param $post_id (int) + * @return $post_id (int) + */ function input_admin_enqueue_scripts() { @@ -63,18 +61,16 @@ function input_admin_enqueue_scripts() { } - /* - * ajax_query - * - * description - * - * @type function - * @date 24/10/13 - * @since 5.0.0 - * - * @param $post_id (int) - * @return $post_id (int) - */ + /** + * description + * + * @type function + * @date 24/10/13 + * @since 5.0.0 + * + * @param $post_id (int) + * @return $post_id (int) + */ function ajax_query() { @@ -91,18 +87,16 @@ function ajax_query() { } - /* - * get_ajax_query - * - * This function will return an array of data formatted for use in a select2 AJAX response - * - * @type function - * @date 15/10/2014 - * @since 5.0.9 - * - * @param $options (array) - * @return (array) - */ + /** + * This function will return an array of data formatted for use in a select2 AJAX response + * + * @type function + * @date 15/10/2014 + * @since 5.0.9 + * + * @param $options (array) + * @return (array) + */ function get_ajax_query( $options = array() ) { @@ -257,19 +251,17 @@ function get_ajax_query( $options = array() ) { } - /* - * get_post_result - * - * This function will return an array containing id, text and maybe description data - * - * @type function - * @date 7/07/2016 - * @since 5.4.0 - * - * @param $id (mixed) - * @param $text (string) - * @return (array) - */ + /** + * This function will return an array containing id, text and maybe description data + * + * @type function + * @date 7/07/2016 + * @since 5.4.0 + * + * @param $id (mixed) + * @param $text (string) + * @return (array) + */ function get_post_result( $id, $text ) { @@ -284,20 +276,18 @@ function get_post_result( $id, $text ) { } - /* - * get_post_title - * - * This function returns the HTML for a result - * - * @type function - * @date 1/11/2013 - * @since 5.0.0 - * - * @param $post (object) - * @param $field (array) - * @param $post_id (int) the post_id to which this value is saved to - * @return (string) - */ + /** + * This function returns the HTML for a result + * + * @type function + * @date 1/11/2013 + * @since 5.0.0 + * + * @param $post (object) + * @param $field (array) + * @param $post_id (int) the post_id to which this value is saved to + * @return (string) + */ function get_post_title( $post, $field, $post_id = 0, $is_search = 0 ) { @@ -335,17 +325,15 @@ function get_post_title( $post, $field, $post_id = 0, $is_search = 0 ) { } - /* - * render_field() - * - * Create the HTML interface for your field - * - * @param $field - an array holding all the field's data - * - * @type action - * @since 3.6 - * @date 23/01/13 - */ + /** + * Create the HTML interface for your field + * + * @param $field - an array holding all the field's data + * + * @type action + * @since 3.6 + * @date 23/01/13 + */ function render_field( $field ) { @@ -525,18 +513,16 @@ function render_field( $field ) { } - /* - * render_field_settings() - * - * Create extra options for your field. This is rendered when editing a field. - * The value of $field['name'] can be used (like bellow) to save extra data to the $field - * - * @type action - * @since 3.6 - * @date 23/01/13 - * - * @param $field - an array holding all the field's data - */ + /** + * Create extra options for your field. This is rendered when editing a field. + * The value of $field['name'] can be used (like bellow) to save extra data to the $field + * + * @type action + * @since 3.6 + * @date 23/01/13 + * + * @param $field - an array holding all the field's data + */ function render_field_settings( $field ) { acf_render_field_setting( $field, @@ -682,21 +668,19 @@ public function render_field_advanced_settings( $field ) { acf_render_bidirectional_field_settings( $field ); } - /* - * format_value() - * - * This filter is applied to the $value after it is loaded from the db and before it is returned to the template - * - * @type filter - * @since 3.6 - * @date 23/01/13 - * - * @param $value (mixed) the value which was loaded from the database - * @param $post_id (mixed) the $post_id from which the value was loaded - * @param $field (array) the field array holding all the field options - * - * @return $value (mixed) the modified value - */ + /** + * This filter is applied to the $value after it is loaded from the db and before it is returned to the template + * + * @type filter + * @since 3.6 + * @date 23/01/13 + * + * @param $value (mixed) the value which was loaded from the database + * @param $post_id (mixed) the post_id from which the value was loaded + * @param $field (array) the field array holding all the field options + * + * @return $value (mixed) the modified value + */ function format_value( $value, $post_id, $field ) { @@ -728,18 +712,16 @@ function format_value( $value, $post_id, $field ) { } - /* - * validate_value - * - * description - * - * @type function - * @date 11/02/2014 - * @since 5.0.0 - * - * @param $post_id (int) - * @return $post_id (int) - */ + /** + * description + * + * @type function + * @date 11/02/2014 + * @since 5.0.0 + * + * @param $post_id (int) + * @return $post_id (int) + */ function validate_value( $valid, $value, $field, $input ) { @@ -764,9 +746,9 @@ function validate_value( $valid, $value, $field, $input ) { * * @since 3.6 * - * @param mixed $value The value which will be saved in the database. - * @param int $post_id The post_id of which the value will be saved. - * @param array $field The field array holding all the field options. + * @param mixed $value The value which will be saved in the database. + * @param integer $post_id The post_id of which the value will be saved. + * @param array $field The field array holding all the field options. * * @return mixed $value The modified value. */ @@ -799,11 +781,10 @@ public function update_value( $value, $post_id, $field ) { /** * Validates relationship fields updated via the REST API. * - * @param bool $valid - * @param int $value - * @param array $field - * - * @return bool|WP_Error + * @param boolean $valid The current validity booleean + * @param integer $value The value of the field + * @param array $field The field array + * @return boolean|WP_Error */ public function validate_rest_value( $valid, $value, $field ) { return acf_get_field_type( 'post_object' )->validate_rest_value( $valid, $value, $field ); @@ -841,9 +822,9 @@ public function get_rest_schema( array $field ) { /** * @see \acf_field::get_rest_links() - * @param mixed $value The raw (unformatted) field value. - * @param int|string $post_id - * @param array $field + * @param mixed $value The raw (unformatted) field value. + * @param integer|string $post_id + * @param array $field * @return array */ public function get_rest_links( $value, $post_id, array $field ) { @@ -871,9 +852,9 @@ public function get_rest_links( $value, $post_id, array $field ) { /** * Apply basic formatting to prepare the value for default REST output. * - * @param mixed $value - * @param string|int $post_id - * @param array $field + * @param mixed $value + * @param string|integer $post_id + * @param array $field * @return mixed */ public function format_value_for_rest( $value, $post_id, array $field ) { diff --git a/includes/fields/class-acf-field-select.php b/includes/fields/class-acf-field-select.php index d94e7af..affbc59 100644 --- a/includes/fields/class-acf-field-select.php +++ b/includes/fields/class-acf-field-select.php @@ -5,18 +5,16 @@ class acf_field_select extends acf_field { - /* - * __construct - * - * This function will setup the field type data - * - * @type function - * @date 5/03/2014 - * @since 5.0.0 - * - * @param n/a - * @return n/a - */ + /** + * This function will setup the field type data + * + * @type function + * @date 5/03/2014 + * @since 5.0.0 + * + * @param n/a + * @return n/a + */ function initialize() { @@ -44,18 +42,16 @@ function initialize() { } - /* - * input_admin_enqueue_scripts - * - * description - * - * @type function - * @date 16/12/2015 - * @since 5.3.2 - * - * @param $post_id (int) - * @return $post_id (int) - */ + /** + * description + * + * @type function + * @date 16/12/2015 + * @since 5.3.2 + * + * @param $post_id (int) + * @return $post_id (int) + */ function input_admin_enqueue_scripts() { @@ -119,18 +115,16 @@ function input_admin_enqueue_scripts() { } - /* - * ajax_query - * - * description - * - * @type function - * @date 24/10/13 - * @since 5.0.0 - * - * @param $post_id (int) - * @return $post_id (int) - */ + /** + * description + * + * @type function + * @date 24/10/13 + * @since 5.0.0 + * + * @param $post_id (int) + * @return $post_id (int) + */ function ajax_query() { @@ -220,17 +214,15 @@ public function get_ajax_query( $options = array() ) { } - /* - * render_field() - * - * Create the HTML interface for your field - * - * @param $field - an array holding all the field's data - * - * @type action - * @since 3.6 - * @date 23/01/13 - */ + /** + * Create the HTML interface for your field + * + * @param $field - an array holding all the field's data + * + * @type action + * @since 3.6 + * @date 23/01/13 + */ function render_field( $field ) { @@ -332,18 +324,16 @@ function render_field( $field ) { } - /* - * render_field_settings() - * - * Create extra options for your field. This is rendered when editing a field. - * The value of $field['name'] can be used (like bellow) to save extra data to the $field - * - * @type action - * @since 3.6 - * @date 23/01/13 - * - * @param $field - an array holding all the field's data - */ + /** + * Create extra options for your field. This is rendered when editing a field. + * The value of $field['name'] can be used (like bellow) to save extra data to the $field + * + * @type action + * @since 3.6 + * @date 23/01/13 + * + * @param $field - an array holding all the field's data + */ function render_field_settings( $field ) { @@ -460,20 +450,18 @@ function render_field_presentation_settings( $field ) { ); } - /* - * load_value() - * - * This filter is applied to the $value after it is loaded from the db - * - * @type filter - * @since 3.6 - * @date 23/01/13 - * - * @param $value (mixed) the value found in the database - * @param $post_id (mixed) the $post_id from which the value was loaded - * @param $field (array) the field array holding all the field options - * @return $value - */ + /** + * This filter is applied to the $value after it is loaded from the db + * + * @type filter + * @since 3.6 + * @date 23/01/13 + * + * @param $value (mixed) the value found in the database + * @param $post_id (mixed) the post_id from which the value was loaded + * @param $field (array) the field array holding all the field options + * @return $value + */ function load_value( $value, $post_id, $field ) { // Return an array when field is set for multiple. @@ -489,20 +477,19 @@ function load_value( $value, $post_id, $field ) { } - /* - * update_field() - * - * This filter is appied to the $field before it is saved to the database - * - * @type filter - * @since 3.6 - * @date 23/01/13 - * - * @param $field - the field array holding all the field options - * @param $post_id - the field group ID (post_type = acf) - * - * @return $field - the modified field - */ + /** + * + * This filter is appied to the $field before it is saved to the database + * + * @type filter + * @since 3.6 + * @date 23/01/13 + * + * @param $field - the field array holding all the field options + * @param $post_id - the field group ID (post_type = acf) + * + * @return $field - the modified field + */ function update_field( $field ) { @@ -520,21 +507,19 @@ function update_field( $field ) { } - /* - * update_value() - * - * This filter is appied to the $value before it is updated in the db - * - * @type filter - * @since 3.6 - * @date 23/01/13 - * - * @param $value - the value which will be saved in the database - * @param $post_id - the $post_id of which the value will be saved - * @param $field - the field array holding all the field options - * - * @return $value - the modified value - */ + /** + * This filter is appied to the $value before it is updated in the db + * + * @type filter + * @since 3.6 + * @date 23/01/13 + * + * @param $value - the value which will be saved in the database + * @param $post_id - the post_id of which the value will be saved + * @param $field - the field array holding all the field options + * + * @return $value - the modified value + */ function update_value( $value, $post_id, $field ) { @@ -554,18 +539,16 @@ function update_value( $value, $post_id, $field ) { } - /* - * translate_field - * - * This function will translate field settings - * - * @type function - * @date 8/03/2016 - * @since 5.3.2 - * - * @param $field (array) - * @return $field - */ + /** + * This function will translate field settings + * + * @type function + * @date 8/03/2016 + * @since 5.3.2 + * + * @param $field (array) + * @return $field + */ function translate_field( $field ) { @@ -577,21 +560,19 @@ function translate_field( $field ) { } - /* - * format_value() - * - * This filter is appied to the $value after it is loaded from the db and before it is returned to the template - * - * @type filter - * @since 3.6 - * @date 23/01/13 - * - * @param $value (mixed) the value which was loaded from the database - * @param $post_id (mixed) the $post_id from which the value was loaded - * @param $field (array) the field array holding all the field options - * - * @return $value (mixed) the modified value - */ + /** + * This filter is appied to the $value after it is loaded from the db and before it is returned to the template + * + * @type filter + * @since 3.6 + * @date 23/01/13 + * + * @param $value (mixed) the value which was loaded from the database + * @param $post_id (mixed) the post_id from which the value was loaded + * @param $field (array) the field array holding all the field options + * + * @return $value (mixed) the modified value + */ function format_value( $value, $post_id, $field ) { if ( is_array( $value ) ) { foreach ( $value as $i => $val ) { @@ -618,7 +599,6 @@ function format_value_single( $value, $post_id, $field ) { if ( $field['return_format'] == 'value' ) { // do nothing - // label } elseif ( $field['return_format'] == 'label' ) { $value = $label; @@ -638,11 +618,10 @@ function format_value_single( $value, $post_id, $field ) { /** * Validates select fields updated via the REST API. * - * @param bool $valid - * @param int $value - * @param array $field - * - * @return bool|WP_Error + * @param boolean $valid The current validity booleean + * @param integer $value The value of the field + * @param array $field The field array + * @return boolean|WP_Error */ public function validate_rest_value( $valid, $value, $field ) { // rest_validate_request_arg() handles the other types, we just worry about strings. diff --git a/includes/fields/class-acf-field-separator.php b/includes/fields/class-acf-field-separator.php index 8e48471..3ec0f3f 100644 --- a/includes/fields/class-acf-field-separator.php +++ b/includes/fields/class-acf-field-separator.php @@ -5,18 +5,16 @@ class acf_field_separator extends acf_field { - /* - * __construct - * - * This function will setup the field type data - * - * @type function - * @date 5/03/2014 - * @since 5.0.0 - * - * @param n/a - * @return n/a - */ + /** + * This function will setup the field type data + * + * @type function + * @date 5/03/2014 + * @since 5.0.0 + * + * @param n/a + * @return n/a + */ function initialize() { @@ -24,21 +22,20 @@ function initialize() { $this->name = 'separator'; $this->label = __( 'Separator', 'acf' ); $this->preview_image = acf_get_url() . '/assets/images/field-type-previews/field-preview-separator.png'; + $this->supports = array( 'required' => false ); $this->category = 'layout'; } - /* - * render_field() - * - * Create the HTML interface for your field - * - * @param $field - an array holding all the field's data - * - * @type action - * @since 3.6 - * @date 23/01/13 - */ + /** + * Create the HTML interface for your field + * + * @param $field - an array holding all the field's data + * + * @type action + * @since 3.6 + * @date 23/01/13 + */ function render_field( $field ) { @@ -46,19 +43,17 @@ function render_field( $field ) { } - /* - * load_field() - * - * This filter is appied to the $field after it is loaded from the database - * - * @type filter - * @since 3.6 - * @date 23/01/13 - * - * @param $field - the field array holding all the field options - * - * @return $field - the field array holding all the field options - */ + /** + * This filter is appied to the $field after it is loaded from the database + * + * @type filter + * @since 3.6 + * @date 23/01/13 + * + * @param $field - the field array holding all the field options + * + * @return $field - the field array holding all the field options + */ function load_field( $field ) { diff --git a/includes/fields/class-acf-field-tab.php b/includes/fields/class-acf-field-tab.php index 78e01ea..0b5dc07 100644 --- a/includes/fields/class-acf-field-tab.php +++ b/includes/fields/class-acf-field-tab.php @@ -6,18 +6,16 @@ class acf_field_tab extends acf_field { public $show_in_rest = false; - /* - * __construct - * - * This function will setup the field type data - * - * @type function - * @date 5/03/2014 - * @since 5.0.0 - * - * @param n/a - * @return n/a - */ + /** + * This function will setup the field type data + * + * @type function + * @date 5/03/2014 + * @since 5.0.0 + * + * @param n/a + * @return n/a + */ function initialize() { @@ -28,6 +26,7 @@ function initialize() { $this->description = __( 'Allows you to group fields into tabbed sections in the edit screen. Useful for keeping fields organized and structured.', 'acf' ); $this->preview_image = acf_get_url() . '/assets/images/field-type-previews/field-preview-tabs.png'; $this->doc_url = acf_add_url_utm_tags( 'https://www.advancedcustomfields.com/resources/tab/', 'docs', 'field-type-selection' ); + $this->supports = array( 'required' => false ); $this->defaults = array( 'placement' => 'top', 'endpoint' => 0, // added in 5.2.8 @@ -35,17 +34,15 @@ function initialize() { } - /* - * render_field() - * - * Create the HTML interface for your field - * - * @param $field - an array holding all the field's data - * - * @type action - * @since 3.6 - * @date 23/01/13 - */ + /** + * Create the HTML interface for your field + * + * @param $field - an array holding all the field's data + * + * @type action + * @since 3.6 + * @date 23/01/13 + */ function render_field( $field ) { @@ -69,36 +66,34 @@ function render_field( $field ) { - /* - * render_field_settings() - * - * Create extra options for your field. This is rendered when editing a field. - * The value of $field['name'] can be used (like bellow) to save extra data to the $field - * - * @param $field - an array holding all the field's data - * - * @type action - * @since 3.6 - * @date 23/01/13 - */ + /** + * Create extra options for your field. This is rendered when editing a field. + * The value of $field['name'] can be used (like bellow) to save extra data to the $field + * + * @param $field - an array holding all the field's data + * + * @type action + * @since 3.6 + * @date 23/01/13 + */ function render_field_settings( $field ) { /* - // message - $message = ''; - $message .= '

                                  ' . __( 'Use "Tab Fields" to better organize your edit screen by grouping fields together.', 'acf') . '

                                  '; - $message .= '

                                  ' . __( 'All fields following this "tab field" (or until another "tab field" is defined) will be grouped together using this field\'s label as the tab heading.','acf') . '

                                  '; - - - // default_value - acf_render_field_setting( $field, array( - 'label' => __('Instructions','acf'), - 'instructions' => '', - 'name' => 'notes', - 'type' => 'message', - 'message' => $message, - )); + // message + $message = ''; + $message .= '

                                  ' . __( 'Use "Tab Fields" to better organize your edit screen by grouping fields together.', 'acf') . '

                                  '; + $message .= '

                                  ' . __( 'All fields following this "tab field" (or until another "tab field" is defined) will be grouped together using this field\'s label as the tab heading.','acf') . '

                                  '; + + + // default_value + acf_render_field_setting( $field, array( + 'label' => __('Instructions','acf'), + 'instructions' => '', + 'name' => 'notes', + 'type' => 'message', + 'message' => $message, + )); */ // preview_size @@ -129,19 +124,17 @@ function render_field_settings( $field ) { } - /* - * load_field() - * - * This filter is appied to the $field after it is loaded from the database - * - * @type filter - * @since 3.6 - * @date 23/01/13 - * - * @param $field - the field array holding all the field options - * - * @return $field - the field array holding all the field options - */ + /** + * This filter is appied to the $field after it is loaded from the database + * + * @type filter + * @since 3.6 + * @date 23/01/13 + * + * @param $field - the field array holding all the field options + * + * @return $field - the field array holding all the field options + */ function load_field( $field ) { // remove name to avoid caching issue diff --git a/includes/fields/class-acf-field-taxonomy.php b/includes/fields/class-acf-field-taxonomy.php index f26fd2f..8a4bed5 100644 --- a/includes/fields/class-acf-field-taxonomy.php +++ b/includes/fields/class-acf-field-taxonomy.php @@ -9,11 +9,11 @@ class acf_field_taxonomy extends acf_field { /** - * This function will setup the field type data + * This function will setup the field type data * - * @type function - * @date 5/03/2014 - * @since 5.0.0 + * @type function + * @date 5/03/2014 + * @since 5.0.0 */ public function initialize() { $this->name = 'taxonomy'; @@ -48,18 +48,16 @@ public function initialize() { } - /* - * ajax_query - * - * description - * - * @type function - * @date 24/10/13 - * @since 5.0.0 - * - * @param $post_id (int) - * @return $post_id (int) - */ + /** + * description + * + * @type function + * @date 24/10/13 + * @since 5.0.0 + * + * @param $post_id (int) + * @return $post_id (int) + */ function ajax_query() { @@ -76,18 +74,16 @@ function ajax_query() { } - /* - * get_ajax_query - * - * This function will return an array of data formatted for use in a select2 AJAX response - * - * @type function - * @date 15/10/2014 - * @since 5.0.9 - * - * @param $options (array) - * @return (array) - */ + /** + * This function will return an array of data formatted for use in a select2 AJAX response + * + * @type function + * @date 15/10/2014 + * @since 5.0.9 + * + * @param $options (array) + * @return (array) + */ function get_ajax_query( $options = array() ) { @@ -206,8 +202,8 @@ function get_ajax_query( $options = array() ) { * @date 1/11/2013 * @since 5.0.0 * - * @param WP_Term $term The term object. - * @param array $field The field settings. + * @param WP_Term $term The term object. + * @param array $field The field settings. * @param mixed $post_id The post_id being edited. * @return string */ @@ -232,18 +228,16 @@ function get_term_title( $term, $field, $post_id = 0 ) { } - /* - * get_terms - * - * This function will return an array of terms for a given field value - * - * @type function - * @date 13/06/2014 - * @since 5.0.0 - * - * @param $value (array) - * @return $value - */ + /** + * This function will return an array of terms for a given field value + * + * @type function + * @date 13/06/2014 + * @since 5.0.0 + * + * @param $value (array) + * @return $value + */ function get_terms( $value, $taxonomy = 'category' ) { @@ -271,21 +265,19 @@ function get_terms( $value, $taxonomy = 'category' ) { } - /* - * load_value() - * - * This filter is appied to the $value after it is loaded from the db - * - * @type filter - * @since 3.6 - * @date 23/01/13 - * - * @param $value - the value found in the database - * @param $post_id - the $post_id from which the value was loaded from - * @param $field - the field array holding all the field options - * - * @return $value - the value to be saved in te database - */ + /** + * This filter is appied to the $value after it is loaded from the db + * + * @type filter + * @since 3.6 + * @date 23/01/13 + * + * @param $value - the value found in the database + * @param $post_id - the post_id from which the value was loaded from + * @param $field - the field array holding all the field options + * + * @return $value - the value to be saved in te database + */ function load_value( $value, $post_id, $field ) { @@ -349,10 +341,9 @@ function load_value( $value, $post_id, $field ) { * * @since 3.6 * - * @param mixed $value The value which will be saved in the database. - * @param int $post_id The post_id of which the value will be saved. - * @param array $field The field array holding all the field options. - * + * @param mixed $value The value which will be saved in the database. + * @param integer $post_id The post_id of which the value will be saved. + * @param array $field The field array holding all the field options. * @return mixed $value The modified value. */ public function update_value( $value, $post_id, $field ) { @@ -394,14 +385,12 @@ public function update_value( $value, $post_id, $field ) { /** * This function will save any terms in the save_post_terms array * - * @date 26/11/2014 * @since 5.0.9 * - * @param int $post_id - * + * @param mixed $post_id The ACF post ID to save to. * @return void */ - function save_post( $post_id ) { + public function save_post( $post_id ) { // Check for saved terms. if ( ! empty( $this->save_post_terms ) ) { /** @@ -428,21 +417,19 @@ function save_post( $post_id ) { } } - /* - * format_value() - * - * This filter is appied to the $value after it is loaded from the db and before it is returned to the template - * - * @type filter - * @since 3.6 - * @date 23/01/13 - * - * @param $value (mixed) the value which was loaded from the database - * @param $post_id (mixed) the $post_id from which the value was loaded - * @param $field (array) the field array holding all the field options - * - * @return $value (mixed) the modified value - */ + /** + * This filter is appied to the $value after it is loaded from the db and before it is returned to the template + * + * @type filter + * @since 3.6 + * @date 23/01/13 + * + * @param $value (mixed) the value which was loaded from the database + * @param $post_id (mixed) the post_id from which the value was loaded + * @param $field (array) the field array holding all the field options + * + * @return $value (mixed) the modified value + */ function format_value( $value, $post_id, $field ) { @@ -471,17 +458,15 @@ function format_value( $value, $post_id, $field ) { } - /* - * render_field() - * - * Create the HTML interface for your field - * - * @type action - * @since 3.6 - * @date 23/01/13 - * - * @param $field - an array holding all the field's data - */ + /** + * Create the HTML interface for your field + * + * @type action + * @since 3.6 + * @date 23/01/13 + * + * @param $field - an array holding all the field's data + */ function render_field( $field ) { @@ -534,17 +519,15 @@ function render_field( $field ) { } - /* - * render_field_select() - * - * Create the HTML interface for your field - * - * @type action - * @since 3.6 - * @date 23/01/13 - * - * @param $field - an array holding all the field's data - */ + /** + * Create the HTML interface for your field + * + * @type action + * @since 3.6 + * @date 23/01/13 + * + * @param $field - an array holding all the field's data + */ function render_field_select( $field ) { @@ -579,11 +562,11 @@ function render_field_select( $field ) { /** - * Create the HTML interface for your field + * Create the HTML interface for your field * - * @since 3.6 + * @since 3.6 * - * @param array $field an array holding all the field's data. + * @param array $field an array holding all the field's data. */ public function render_field_checkbox( $field ) { @@ -630,18 +613,16 @@ public function render_field_checkbox( $field ) { } - /* - * render_field_settings() - * - * Create extra options for your field. This is rendered when editing a field. - * The value of $field['name'] can be used (like bellow) to save extra data to the $field - * - * @type action - * @since 3.6 - * @date 23/01/13 - * - * @param $field - an array holding all the field's data - */ + /** + * Create extra options for your field. This is rendered when editing a field. + * The value of $field['name'] can be used (like bellow) to save extra data to the $field + * + * @type action + * @since 3.6 + * @date 23/01/13 + * + * @param $field - an array holding all the field's data + */ function render_field_settings( $field ) { acf_render_field_setting( $field, @@ -752,18 +733,16 @@ public function render_field_advanced_settings( $field ) { acf_render_bidirectional_field_settings( $field ); } - /* - * ajax_add_term - * - * description - * - * @type function - * @date 17/04/2015 - * @since 5.2.3 - * - * @param $post_id (int) - * @return $post_id (int) - */ + /** + * description + * + * @type function + * @date 17/04/2015 + * @since 5.2.3 + * + * @param $post_id (int) + * @return $post_id (int) + */ function ajax_add_term() { @@ -891,7 +870,7 @@ function ajax_add_term() { ?>

                                  - +

                                  ' . acf_get_text_input( acf_filter_attrs( $input_attrs ) ) . '
                                  '; // Display. - echo $html; + echo $html; //phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- only safe HTML output generated and escaped by functions above. } - /* - * render_field_settings() - * - * Create extra options for your field. This is rendered when editing a field. - * The value of $field['name'] can be used (like bellow) to save extra data to the $field - * - * @param $field - an array holding all the field's data - * - * @type action - * @since 3.6 - * @date 23/01/13 - */ + /** + * Create extra options for your field. This is rendered when editing a field. + * The value of $field['name'] can be used (like bellow) to save extra data to the $field + * + * @param $field - an array holding all the field's data + * + * @type action + * @since 3.6 + * @date 23/01/13 + */ function render_field_settings( $field ) { acf_render_field_setting( $field, diff --git a/includes/fields/class-acf-field-textarea.php b/includes/fields/class-acf-field-textarea.php index caf3b12..537801b 100644 --- a/includes/fields/class-acf-field-textarea.php +++ b/includes/fields/class-acf-field-textarea.php @@ -5,18 +5,16 @@ class acf_field_textarea extends acf_field { - /* - * initialize - * - * This function will setup the field type data - * - * @type function - * @date 5/03/2014 - * @since 5.0.0 - * - * @param n/a - * @return n/a - */ + /** + * This function will setup the field type data + * + * @type function + * @date 5/03/2014 + * @since 5.0.0 + * + * @param n/a + * @return n/a + */ function initialize() { @@ -36,17 +34,15 @@ function initialize() { } - /* - * render_field() - * - * Create the HTML interface for your field - * - * @param $field - an array holding all the field's data - * - * @type action - * @since 3.6 - * @date 23/01/13 - */ + /** + * Create the HTML interface for your field + * + * @param $field - an array holding all the field's data + * + * @type action + * @since 3.6 + * @date 23/01/13 + */ function render_field( $field ) { @@ -82,18 +78,16 @@ function render_field( $field ) { } - /* - * render_field_settings() - * - * Create extra options for your field. This is rendered when editing a field. - * The value of $field['name'] can be used (like bellow) to save extra data to the $field - * - * @param $field - an array holding all the field's data - * - * @type action - * @since 3.6 - * @date 23/01/13 - */ + /** + * Create extra options for your field. This is rendered when editing a field. + * The value of $field['name'] can be used (like bellow) to save extra data to the $field + * + * @param $field - an array holding all the field's data + * + * @type action + * @since 3.6 + * @date 23/01/13 + */ function render_field_settings( $field ) { acf_render_field_setting( $field, @@ -173,21 +167,19 @@ function render_field_presentation_settings( $field ) { ); } - /* - * format_value() - * - * This filter is applied to the $value after it is loaded from the db and before it is returned to the template - * - * @type filter - * @since 3.6 - * @date 23/01/13 - * - * @param $value (mixed) the value which was loaded from the database - * @param $post_id (mixed) the $post_id from which the value was loaded - * @param $field (array) the field array holding all the field options - * - * @return $value (mixed) the modified value - */ + /** + * This filter is applied to the $value after it is loaded from the db and before it is returned to the template + * + * @type filter + * @since 3.6 + * @date 23/01/13 + * + * @param $value (mixed) the value which was loaded from the database + * @param $post_id (mixed) the post_id from which the value was loaded + * @param $field (array) the field array holding all the field options + * + * @return $value (mixed) the modified value + */ function format_value( $value, $post_id, $field ) { diff --git a/includes/fields/class-acf-field-time_picker.php b/includes/fields/class-acf-field-time_picker.php index bd1f821..0126610 100644 --- a/includes/fields/class-acf-field-time_picker.php +++ b/includes/fields/class-acf-field-time_picker.php @@ -5,18 +5,16 @@ class acf_field_time_picker extends acf_field { - /* - * __construct - * - * This function will setup the field type data - * - * @type function - * @date 5/03/2014 - * @since 5.0.0 - * - * @param n/a - * @return n/a - */ + /** + * This function will setup the field type data + * + * @type function + * @date 5/03/2014 + * @since 5.0.0 + * + * @param n/a + * @return n/a + */ function initialize() { @@ -34,17 +32,15 @@ function initialize() { } - /* - * render_field() - * - * Create the HTML interface for your field - * - * @param $field - an array holding all the field's data - * - * @type action - * @since 3.6 - * @date 23/01/13 - */ + /** + * Create the HTML interface for your field + * + * @param $field - an array holding all the field's data + * + * @type action + * @since 3.6 + * @date 23/01/13 + */ function render_field( $field ) { @@ -89,18 +85,16 @@ function render_field( $field ) { } - /* - * render_field_settings() - * - * Create extra options for your field. This is rendered when editing a field. - * The value of $field['name'] can be used (like bellow) to save extra data to the $field - * - * @type action - * @since 3.6 - * @date 23/01/13 - * - * @param $field - an array holding all the field's data - */ + /** + * Create extra options for your field. This is rendered when editing a field. + * The value of $field['name'] can be used (like bellow) to save extra data to the $field + * + * @type action + * @since 3.6 + * @date 23/01/13 + * + * @param $field - an array holding all the field's data + */ function render_field_settings( $field ) { $g_i_a = date_i18n( 'g:i a' ); $H_i_s = date_i18n( 'H:i:s' ); @@ -142,40 +136,33 @@ function render_field_settings( $field ) { echo '
                            '; } - /* - * format_value() - * - * This filter is appied to the $value after it is loaded from the db and before it is returned to the template - * - * @type filter - * @since 3.6 - * @date 23/01/13 - * - * @param $value (mixed) the value which was loaded from the database - * @param $post_id (mixed) the $post_id from which the value was loaded - * @param $field (array) the field array holding all the field options - * - * @return $value (mixed) the modified value - */ - - function format_value( $value, $post_id, $field ) { - + /** + * This filter is appied to the $value after it is loaded from the db and before it is returned to the template + * + * @type filter + * @since 3.6 + * @date 23/01/13 + * + * @param $value (mixed) the value which was loaded from the database + * @param $post_id (mixed) the post_id from which the value was loaded + * @param $field (array) the field array holding all the field options + * @return $value (mixed) the modified value + */ + public function format_value( $value, $post_id, $field ) { return acf_format_date( $value, $field['return_format'] ); } /** - * This filter is applied to the $field after it is loaded from the database - * and ensures the return and display values are set. + * This filter is applied to the $field after it is loaded from the database + * and ensures the return and display values are set. * - * @type filter - * @since 5.11.0 - * @date 28/09/21 + * @type filter + * @since 5.11.0 * - * @param array $field The field array holding all the field options. - * - * @return array + * @param array $field The field array holding all the field options. + * @return array */ - function load_field( $field ) { + public function load_field( $field ) { if ( empty( $field['display_format'] ) ) { $field['display_format'] = $this->defaults['display_format']; } @@ -190,7 +177,7 @@ function load_field( $field ) { /** * Return the schema array for the REST API. * - * @param array $field + * @param array $field The field array. * @return array */ public function get_rest_schema( array $field ) { diff --git a/includes/fields/class-acf-field-true_false.php b/includes/fields/class-acf-field-true_false.php index 1e7069f..197e584 100644 --- a/includes/fields/class-acf-field-true_false.php +++ b/includes/fields/class-acf-field-true_false.php @@ -5,18 +5,16 @@ class acf_field_true_false extends acf_field { - /* - * __construct - * - * This function will setup the field type data - * - * @type function - * @date 5/03/2014 - * @since 5.0.0 - * - * @param n/a - * @return n/a - */ + /** + * This function will setup the field type data + * + * @type function + * @date 5/03/2014 + * @since 5.0.0 + * + * @param n/a + * @return n/a + */ function initialize() { @@ -37,17 +35,15 @@ function initialize() { } - /* - * render_field() - * - * Create the HTML interface for your field - * - * @param $field - an array holding all the field's data - * - * @type action - * @since 3.6 - * @date 23/01/13 - */ + /** + * Create the HTML interface for your field + * + * @param $field - an array holding all the field's data + * + * @type action + * @since 3.6 + * @date 23/01/13 + */ function render_field( $field ) { @@ -88,7 +84,6 @@ function render_field( $field ) { // update input $input['class'] .= ' acf-switch-input'; // $input['style'] = 'display:none;'; - $switch .= '
                            '; $switch .= '' . $field['ui_on_text'] . ''; $switch .= '' . $field['ui_off_text'] . ''; @@ -100,7 +95,7 @@ function render_field( $field ) {
                            ', ']]>', $value ); } diff --git a/includes/fields/class-acf-field.php b/includes/fields/class-acf-field.php old mode 100644 new mode 100755 index 40dd1b1..ddc110d --- a/includes/fields/class-acf-field.php +++ b/includes/fields/class-acf-field.php @@ -17,26 +17,22 @@ class acf_field { public $l10n = array(); public $public = true; public $show_in_rest = true; + public $supports = array( + 'escaping_html' => false, // Set true when a field handles its own HTML escaping in format_value + 'required' => true, + ); - /* - * __construct - * - * This function will initialize the field type - * - * @type function - * @date 5/03/2014 - * @since 5.0.0 - * - * @param n/a - * @return n/a - */ - - function __construct() { - - // initialize + /** + * Initializes the `acf_field` class. To initialize a field type that is + * extending this class, use the `initialize()` method in the child class instead. + * + * @since 5.0.0 + */ + public function __construct() { + // Initialize the field type. $this->initialize(); - // register info + // Register info about the field type. acf_register_field_type_info( array( 'label' => $this->label, @@ -54,7 +50,7 @@ function __construct() { // value $this->add_field_filter( 'acf/load_value', array( $this, 'load_value' ), 10, 3 ); $this->add_field_filter( 'acf/update_value', array( $this, 'update_value' ), 10, 3 ); - $this->add_field_filter( 'acf/format_value', array( $this, 'format_value' ), 10, 3 ); + $this->add_field_filter( 'acf/format_value', array( $this, 'format_value' ), 10, 4 ); $this->add_field_filter( 'acf/validate_value', array( $this, 'validate_value' ), 10, 4 ); $this->add_field_action( 'acf/delete_value', array( $this, 'delete_value' ), 10, 3 ); @@ -82,206 +78,152 @@ function __construct() { $this->add_action( 'acf/field_group/admin_head', array( $this, 'field_group_admin_head' ), 10, 0 ); $this->add_action( 'acf/field_group/admin_footer', array( $this, 'field_group_admin_footer' ), 10, 0 ); + // Most fields can use the "Required" validation setting as well as most presentation settings. + $this->add_field_action( 'acf/field_group/render_field_settings_tab/validation', array( $this, 'render_required_setting' ), 5 ); + foreach ( acf_get_combined_field_type_settings_tabs() as $tab_key => $tab_label ) { $this->add_field_action( "acf/field_group/render_field_settings_tab/{$tab_key}", array( $this, "render_field_{$tab_key}_settings" ), 9, 1 ); } } - - /* - * initialize - * - * This function will initialize the field type - * - * @type function - * @date 27/6/17 - * @since 5.6.0 - * - * @param n/a - * @return n/a - */ - - function initialize() { - + /** + * Initializes the field type. Overridden in child classes. + * + * @since 5.6.0 + */ + public function initialize() { /* do nothing */ } - - /* - * add_filter - * - * This function checks if the function is_callable before adding the filter - * - * @type function - * @date 5/03/2014 - * @since 5.0.0 - * - * @param $tag (string) - * @param $function_to_add (string) - * @param $priority (int) - * @param $accepted_args (int) - * @return n/a - */ - - function add_filter( $tag = '', $function_to_add = '', $priority = 10, $accepted_args = 1 ) { - - // bail early if no callable + /** + * Checks a function `is_callable()` before adding the filter, since + * classes that extend `acf_field` might not implement all filters. + * + * @since 5.0.0 + * + * @param string $tag The name of the filter to add the callback to. + * @param string $function_to_add The callback to be run when the filter is applied. + * @param integer $priority The priority to add the filter on. + * @param integer $accepted_args The number of args to pass to the function. + * @return void + */ + public function add_filter( $tag = '', $function_to_add = '', $priority = 10, $accepted_args = 1 ) { + // Bail early if not callable. if ( ! is_callable( $function_to_add ) ) { return; } - // add add_filter( $tag, $function_to_add, $priority, $accepted_args ); } - - /* - * add_field_filter - * - * This function will add a field type specific filter - * - * @type function - * @date 29/09/2016 - * @since 5.4.0 - * - * @param $tag (string) - * @param $function_to_add (string) - * @param $priority (int) - * @param $accepted_args (int) - * @return n/a - */ - - function add_field_filter( $tag = '', $function_to_add = '', $priority = 10, $accepted_args = 1 ) { - - // append + /** + * Adds a filter specific to the current field type. + * + * @since 5.4.0 + * + * @param string $tag The name of the filter to add the callback to. + * @param string $function_to_add The callback to be run when the filter is applied. + * @param integer $priority The priority to add the filter on. + * @param integer $accepted_args The number of args to pass to the function. + * @return void + */ + public function add_field_filter( $tag = '', $function_to_add = '', $priority = 10, $accepted_args = 1 ) { + // Append the field type name to the tag before adding the filter. $tag .= '/type=' . $this->name; - - // add $this->add_filter( $tag, $function_to_add, $priority, $accepted_args ); } - - /* - * add_action - * - * This function checks if the function is_callable before adding the action - * - * @type function - * @date 5/03/2014 - * @since 5.0.0 - * - * @param $tag (string) - * @param $function_to_add (string) - * @param $priority (int) - * @param $accepted_args (int) - * @return n/a - */ - - function add_action( $tag = '', $function_to_add = '', $priority = 10, $accepted_args = 1 ) { - - // bail early if no callable + /** + * Checks a function `is_callable()` before adding the action, since + * classes that extend `acf_field` might not implement all actions. + * + * @since 5.0.0 + * + * @param string $tag The name of the action to add the callback to. + * @param string $function_to_add The callback to be run when the action is ran. + * @param integer $priority The priority to add the action on. + * @param integer $accepted_args The number of args to pass to the function. + * @return void + */ + public function add_action( $tag = '', $function_to_add = '', $priority = 10, $accepted_args = 1 ) { + // Bail early if not callable if ( ! is_callable( $function_to_add ) ) { return; } - // add add_action( $tag, $function_to_add, $priority, $accepted_args ); } - - /* - * add_field_action - * - * This function will add a field type specific filter - * - * @type function - * @date 29/09/2016 - * @since 5.4.0 - * - * @param $tag (string) - * @param $function_to_add (string) - * @param $priority (int) - * @param $accepted_args (int) - * @return n/a - */ - - function add_field_action( $tag = '', $function_to_add = '', $priority = 10, $accepted_args = 1 ) { - - // append + /** + * Adds an action specific to the current field type. + * + * @since 5.4.0 + * + * @param string $tag The name of the action to add the callback to. + * @param string $function_to_add The callback to be run when the action is ran. + * @param integer $priority The priority to add the action on. + * @param integer $accepted_args The number of args to pass to the function. + * @return void + */ + public function add_field_action( $tag = '', $function_to_add = '', $priority = 10, $accepted_args = 1 ) { + // Append the field type name to the tag before adding the action. $tag .= '/type=' . $this->name; - - // add $this->add_action( $tag, $function_to_add, $priority, $accepted_args ); } - - /* - * validate_field - * - * This function will append default settings to a field - * - * @type filter ("acf/validate_field/type={$this->name}") - * @since 3.6 - * @date 23/01/13 - * - * @param $field (array) - * @return $field (array) - */ - - function validate_field( $field ) { - - // bail early if no defaults + /** + * Appends default settings to a field. + * Runs on `acf/validate_field/type={$this->name}`. + * + * @since 3.6 + * + * @param array $field The field array. + * @return array $field + */ + public function validate_field( $field ) { + // Bail early if no defaults. if ( ! is_array( $this->defaults ) ) { return $field; } - // merge in defaults but keep order of $field keys + // Merge in defaults but keep order of $field keys. foreach ( $this->defaults as $k => $v ) { if ( ! isset( $field[ $k ] ) ) { $field[ $k ] = $v; } } - // return return $field; } - - /* - * admin_l10n - * - * This function will append l10n text translations to an array which is later passed to JS - * - * @type filter ("acf/input/admin_l10n") - * @since 3.6 - * @date 23/01/13 - * - * @param $l10n (array) - * @return $l10n (array) - */ - - function input_admin_l10n( $l10n ) { - - // bail early if no defaults + /** + * Append l10n text translations to an array which is later passed to JS. + * Runs on `acf/input/admin_l10n`. + * + * @since 3.6 + * + * @param array $l10n + * @return array $l10n + */ + public function input_admin_l10n( $l10n ) { + // Bail early if no defaults. if ( empty( $this->l10n ) ) { return $l10n; } - // append + // Append. $l10n[ $this->name ] = $this->l10n; - // return return $l10n; } /** * Add additional validation for fields being updated via the REST API. * - * @param bool $valid - * @param mixed $value - * @param array $field - * - * @return bool|WP_Error + * @param boolean $valid The current validity booleean + * @param integer $value The value of the field + * @param array $field The field array + * @return boolean|WP_Error */ public function validate_rest_value( $valid, $value, $field ) { return $valid; @@ -313,22 +255,22 @@ public function get_rest_schema( array $field ) { * under the `_embedded` response property. * * e.g; - * [ - * [ - * 'rel' => 'acf:post', - * 'href' => 'https://example.com/wp-json/wp/v2/posts/497', - * 'embeddable' => true, - * ], - * [ - * 'rel' => 'acf:user', - * 'href' => 'https://example.com/wp-json/wp/v2/users/2', - * 'embeddable' => true, - * ], - * ] + * [ + * [ + * 'rel' => 'acf:post', + * 'href' => 'https://example.com/wp-json/wp/v2/posts/497', + * 'embeddable' => true, + * ], + * [ + * 'rel' => 'acf:user', + * 'href' => 'https://example.com/wp-json/wp/v2/users/2', + * 'embeddable' => true, + * ], + * ] * - * @param mixed $value The raw (unformatted) field value. - * @param string|int $post_id - * @param array $field + * @param mixed $value The raw (unformatted) field value. + * @param string|integer $post_id + * @param array $field * @return array */ public function get_rest_links( $value, $post_id, array $field ) { @@ -338,14 +280,44 @@ public function get_rest_links( $value, $post_id, array $field ) { /** * Apply basic formatting to prepare the value for default REST output. * - * @param mixed $value - * @param string|int $post_id - * @param array $field + * @param mixed $value + * @param string|integer $post_id + * @param array $field * @return mixed */ public function format_value_for_rest( $value, $post_id, array $field ) { return $value; } + + /** + * Renders the "Required" setting on the field type "Validation" settings tab. + * + * @since 6.2.5 + * + * @param array $field The field type being rendered. + * @return void + */ + public function render_required_setting( $field ) { + $supports_required = acf_field_type_supports( $field['type'], 'required', true ); + + // Only prevent rendering if explicitly disabled. + if ( ! $supports_required ) { + return; + } + + acf_render_field_setting( + $field, + array( + 'label' => __( 'Required', 'acf' ), + 'instructions' => '', + 'type' => 'true_false', + 'name' => 'required', + 'ui' => 1, + 'class' => 'field-required', + ), + true + ); + } } endif; // class_exists check diff --git a/includes/forms/form-attachment.php b/includes/forms/form-attachment.php index 9ebbafb..32d7121 100644 --- a/includes/forms/form-attachment.php +++ b/includes/forms/form-attachment.php @@ -1,31 +1,29 @@ 'acf-' . $field_group['ID'], - 'key' => $field_group['key'], - // 'style' => $field_group['style'], - 'label' => $field_group['label_placement'], - 'edit_url' => '', - 'edit_title' => __( 'Edit field group', 'acf' ), - // 'visibility' => $visibility - ); - - // edit_url - if ( $field_group['ID'] && acf_current_user_can_admin() ) { - $o['edit_url'] = admin_url( 'post.php?post=' . $field_group['ID'] . '&action=edit' ); - } - - ?> -
                            -

                            -
                            + // load fields + $fields = acf_get_fields( $field_group ); + + // vars + $o = array( + 'id' => 'acf-' . $field_group['ID'], + 'key' => $field_group['key'], + // 'style' => $field_group['style'], + 'label' => $field_group['label_placement'], + 'edit_url' => '', + 'edit_title' => __( 'Edit field group', 'acf' ), + // 'visibility' => $visibility + ); + + // edit_url + if ( $field_group['ID'] && acf_current_user_can_admin() ) { + $o['edit_url'] = admin_url( 'post.php?post=' . $field_group['ID'] . '&action=edit' ); + } + + ?> +
                            +

                            +
                            - + +
                            -
                            - settings();` - * - * @type function - * @date 22/03/2016 - * @since 5.3.2 - * - * @param $customizer (object) - * @return $value (mixed) - */ + /** + * This function will return an array of cutomizer settings that include ACF data + * similar to `$customizer->settings();` + * + * @type function + * @date 22/03/2016 + * @since 5.3.2 + * + * @param $customizer (object) + * @return $value (mixed) + */ function settings( $customizer ) { @@ -186,18 +178,16 @@ function settings( $customizer ) { } - /* - * customize_preview_init - * - * This function is called when customizer preview is initialized - * - * @type function - * @date 22/03/2016 - * @since 5.3.2 - * - * @param $customizer (object) - * @return n/a - */ + /** + * This function is called when customizer preview is initialized + * + * @type function + * @date 22/03/2016 + * @since 5.3.2 + * + * @param $customizer (object) + * @return n/a + */ function customize_preview_init( $customizer ) { @@ -231,15 +221,15 @@ function customize_preview_init( $customizer ) { } /** - * pre_load_value + * pre_load_value * - * Used to inject preview value + * Used to inject preview value * - * @date 2/2/18 - * @since 5.6.5 + * @date 2/2/18 + * @since 5.6.5 * - * @param type $var Description. Default. - * @return type Description. + * @param type $var Description. Default. + * @return type Description. */ function pre_load_value( $value, $post_id, $field ) { @@ -254,15 +244,15 @@ function pre_load_value( $value, $post_id, $field ) { } /** - * pre_load_reference + * pre_load_reference * - * Used to inject preview value + * Used to inject preview value * - * @date 2/2/18 - * @since 5.6.5 + * @date 2/2/18 + * @since 5.6.5 * - * @param type $var Description. Default. - * @return type Description. + * @param type $var Description. Default. + * @return type Description. */ function pre_load_reference( $field_key, $field_name, $post_id ) { @@ -277,20 +267,18 @@ function pre_load_reference( $field_key, $field_name, $post_id ) { } - /* - * customize_save - * - * This function is called when customizer saves a widget. - * Normally, the widget_update_callback filter would be used, but the customizer disables this and runs a custom action - * class-customizer-settings.php will save the widget data via the function set_root_value which uses update_option - * - * @type function - * @date 22/03/2016 - * @since 5.3.2 - * - * @param $customizer (object) - * @return n/a - */ + /** + * This function is called when customizer saves a widget. + * Normally, the widget_update_callback filter would be used, but the customizer disables this and runs a custom action + * class-customizer-settings.php will save the widget data via the function set_root_value which uses update_option + * + * @type function + * @date 22/03/2016 + * @since 5.3.2 + * + * @param $customizer (object) + * @return n/a + */ function customize_save( $customizer ) { @@ -318,18 +306,16 @@ function customize_save( $customizer ) { } - /* - * pre_update_option - * - * this function will remove the [acf] data from widget insance - * - * @type function - * @date 22/03/2016 - * @since 5.3.2 - * - * @param $post_id (int) - * @return $post_id (int) - */ + /** + * This function will remove the [acf] data from widget insance + * + * @type function + * @date 22/03/2016 + * @since 5.3.2 + * + * @param $post_id (int) + * @return $post_id (int) + */ function pre_update_option( $value, $option, $old_value ) { @@ -356,18 +342,16 @@ function pre_update_option( $value, $option, $old_value ) { } - /* - * admin_footer - * - * This function will add some custom HTML to the footer of the edit page - * - * @type function - * @date 11/06/2014 - * @since 5.0.0 - * - * @param n/a - * @return n/a - */ + /** + * This function will add some custom HTML to the footer of the edit page + * + * @type function + * @date 11/06/2014 + * @since 5.0.0 + * + * @param n/a + * @return n/a + */ function admin_footer() { diff --git a/includes/forms/form-front.php b/includes/forms/form-front.php index 743cb5e..e926dfb 100644 --- a/includes/forms/form-front.php +++ b/includes/forms/form-front.php @@ -15,18 +15,16 @@ class acf_form_front { public $fields = array(); - /* - * __construct - * - * This function will setup the class functionality - * - * @type function - * @date 5/03/2014 - * @since 5.0.0 - * - * @param n/a - * @return n/a - */ + /** + * This function will setup the class functionality + * + * @type function + * @date 5/03/2014 + * @since 5.0.0 + * + * @param n/a + * @return n/a + */ function __construct() { @@ -70,18 +68,16 @@ function __construct() { } - /* - * validate_form - * - * description - * - * @type function - * @date 28/2/17 - * @since 5.5.8 - * - * @param $post_id (int) - * @return $post_id (int) - */ + /** + * description + * + * @type function + * @date 28/2/17 + * @since 5.5.8 + * + * @param $post_id (int) + * @return $post_id (int) + */ function validate_form( $args ) { @@ -148,18 +144,16 @@ function validate_form( $args ) { } - /* - * add_form - * - * description - * - * @type function - * @date 28/2/17 - * @since 5.5.8 - * - * @param $post_id (int) - * @return $post_id (int) - */ + /** + * description + * + * @type function + * @date 28/2/17 + * @since 5.5.8 + * + * @param $post_id (int) + * @return $post_id (int) + */ function add_form( $args = array() ) { @@ -171,18 +165,16 @@ function add_form( $args = array() ) { } - /* - * get_form - * - * description - * - * @type function - * @date 28/2/17 - * @since 5.5.8 - * - * @param $post_id (int) - * @return $post_id (int) - */ + /** + * description + * + * @type function + * @date 28/2/17 + * @since 5.5.8 + * + * @param $post_id (int) + * @return $post_id (int) + */ function get_form( $id = '' ) { @@ -196,18 +188,16 @@ function get_form( $id = '' ) { } - /* - * validate_save_post - * - * This function will validate fields from the above array - * - * @type function - * @date 7/09/2016 - * @since 5.4.0 - * - * @param $post_id (int) - * @return $post_id (int) - */ + /** + * This function will validate fields from the above array + * + * @type function + * @date 7/09/2016 + * @since 5.4.0 + * + * @param $post_id (int) + * @return $post_id (int) + */ function validate_save_post() { @@ -231,18 +221,16 @@ function validate_save_post() { } - /* - * pre_save_post - * - * description - * - * @type function - * @date 7/09/2016 - * @since 5.4.0 - * - * @param $post_id (int) - * @return $post_id (int) - */ + /** + * description + * + * @type function + * @date 7/09/2016 + * @since 5.4.0 + * + * @param $post_id (int) + * @return $post_id (int) + */ function pre_save_post( $post_id, $form ) { @@ -300,18 +288,16 @@ function pre_save_post( $post_id, $form ) { } - /* - * enqueue - * - * This function will enqueue a form - * - * @type function - * @date 7/09/2016 - * @since 5.4.0 - * - * @param $post_id (int) - * @return $post_id (int) - */ + /** + * This function will enqueue a form + * + * @type function + * @date 7/09/2016 + * @since 5.4.0 + * + * @param $post_id (int) + * @return $post_id (int) + */ function enqueue_form() { @@ -323,18 +309,16 @@ function enqueue_form() { } - /* - * check_submit_form - * - * This function will maybe submit form data - * - * @type function - * @date 3/3/17 - * @since 5.5.10 - * - * @param n/a - * @return n/a - */ + /** + * This function will maybe submit form data + * + * @type function + * @date 3/3/17 + * @since 5.5.10 + * + * @param n/a + * @return n/a + */ function check_submit_form() { @@ -373,18 +357,16 @@ function check_submit_form() { } - /* - * submit_form - * - * This function will submit form data - * - * @type function - * @date 3/3/17 - * @since 5.5.10 - * - * @param n/a - * @return n/a - */ + /** + * This function will submit form data + * + * @type function + * @date 3/3/17 + * @since 5.5.10 + * + * @param n/a + * @return n/a + */ function submit_form( $form ) { @@ -420,24 +402,22 @@ function submit_form( $form ) { $return = str_replace( '%post_url%', get_permalink( $post_id ), $return ); // redirect - wp_redirect( $return ); + wp_redirect( $return ); //phpcs:ignore WordPress.Security.SafeRedirect.wp_redirect_wp_redirect -- unsafe redirects allowed. exit; } } - /* - * render - * - * description - * - * @type function - * @date 7/09/2016 - * @since 5.4.0 - * - * @param $post_id (int) - * @return $post_id (int) - */ + /** + * description + * + * @type function + * @date 7/09/2016 + * @since 5.4.0 + * + * @param $post_id (int) + * @return $post_id (int) + */ function render_form( $args = array() ) { @@ -535,7 +515,7 @@ function render_form( $args = array() ) { // Display updated_message if ( ! empty( $_GET['updated'] ) && $args['updated_message'] ) { // phpcs:ignore WordPress.Security.NonceVerification.Recommended -- Used as a flag; data not used. - printf( $args['html_updated_message'], $args['updated_message'] ); + printf( $args['html_updated_message'], $args['updated_message'] ); //phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- designed to contain potentially unsafe HTML, set by developers. } // display form @@ -555,14 +535,14 @@ function render_form( $args = array() ) { ?>
                            - + - +
                            - - + +
                            form->functions -* -* @type function -* @date 11/06/2014 -* @since 5.0.0 -* -* @param n/a -* @return n/a -*/ - - +/** + * Functions + * + * alias of acf()->form->functions + * + * @type function + * @date 11/06/2014 + * @since 5.0.0 + * + * @param n/a + * @return n/a + */ function acf_form_head() { acf()->form_front->enqueue_form(); diff --git a/includes/forms/form-gutenberg.php b/includes/forms/form-gutenberg.php index 7c8f491..d8682ee 100644 --- a/includes/forms/form-gutenberg.php +++ b/includes/forms/form-gutenberg.php @@ -9,15 +9,15 @@ class ACF_Form_Gutenberg { /** - * __construct + * __construct * - * Setup for class functionality. + * Setup for class functionality. * - * @date 13/12/18 - * @since 5.8.0 + * @date 13/12/18 + * @since 5.8.0 * - * @param void - * @return void + * @param void + * @return void */ function __construct() { @@ -30,15 +30,15 @@ function __construct() { } /** - * enqueue_block_editor_assets + * enqueue_block_editor_assets * - * Allows a safe way to customize Guten-only functionality. + * Allows a safe way to customize Guten-only functionality. * - * @date 14/12/18 - * @since 5.8.0 + * @date 14/12/18 + * @since 5.8.0 * - * @param void - * @return void + * @param void + * @return void */ function enqueue_block_editor_assets() { @@ -60,15 +60,15 @@ function enqueue_block_editor_assets() { } /** - * add_meta_boxes + * add_meta_boxes * - * Modify screen for Gutenberg. + * Modify screen for Gutenberg. * - * @date 13/12/18 - * @since 5.8.0 + * @date 13/12/18 + * @since 5.8.0 * - * @param void - * @return void + * @param void + * @return void */ function add_meta_boxes() { @@ -77,15 +77,15 @@ function add_meta_boxes() { } /** - * block_editor_meta_box_hidden_fields + * block_editor_meta_box_hidden_fields * - * Modify screen for Gutenberg. + * Modify screen for Gutenberg. * - * @date 13/12/18 - * @since 5.8.0 + * @date 13/12/18 + * @since 5.8.0 * - * @param void - * @return void + * @param void + * @return void */ function block_editor_meta_box_hidden_fields() { @@ -165,16 +165,16 @@ function modify_user_option_meta_box_order( $locations ) { } /** - * acf_validate_save_post + * acf_validate_save_post * - * Ignore errors during the Gutenberg "save metaboxes" AJAX request. - * Allows data to save and prevent UX issues. + * Ignore errors during the Gutenberg "save metaboxes" AJAX request. + * Allows data to save and prevent UX issues. * - * @date 16/12/18 - * @since 5.8.0 + * @date 16/12/18 + * @since 5.8.0 * - * @param void - * @return void + * @param void + * @return void */ function acf_validate_save_post() { diff --git a/includes/forms/form-nav-menu.php b/includes/forms/form-nav-menu.php index 4720e46..ea5bd8c 100644 --- a/includes/forms/form-nav-menu.php +++ b/includes/forms/form-nav-menu.php @@ -8,18 +8,16 @@ class acf_form_nav_menu { - /* - * __construct - * - * This function will setup the class functionality - * - * @type function - * @date 5/03/2014 - * @since 5.0.0 - * - * @param n/a - * @return n/a - */ + /** + * This function will setup the class functionality + * + * @type function + * @date 5/03/2014 + * @since 5.0.0 + * + * @param n/a + * @return n/a + */ function __construct() { @@ -35,19 +33,17 @@ function __construct() { } - /* - * admin_enqueue_scripts - * - * This action is run after post query but before any admin script / head actions. - * It is a good place to register all actions. - * - * @type action (admin_enqueue_scripts) - * @date 26/01/13 - * @since 3.6.0 - * - * @param N/A - * @return N/A - */ + /** + * This action is run after post query but before any admin script / head actions. + * It is a good place to register all actions. + * + * @type action (admin_enqueue_scripts) + * @date 26/01/13 + * @since 3.6.0 + * + * @param N/A + * @return N/A + */ function admin_enqueue_scripts() { @@ -65,15 +61,15 @@ function admin_enqueue_scripts() { /** - * wp_nav_menu_item_custom_fields + * wp_nav_menu_item_custom_fields * - * description + * description * - * @date 30/7/18 - * @since 5.6.9 + * @date 30/7/18 + * @since 5.6.9 * - * @param type $var Description. Default. - * @return type Description. + * @param type $var Description. Default. + * @return type Description. */ function wp_nav_menu_item_custom_fields( $item_id, $item, $depth, $args, $id = '' ) { @@ -121,7 +117,7 @@ function wp_nav_menu_item_custom_fields( $item_id, $item, $depth, $args, $id = ' if ( acf_is_ajax( 'add-menu-item' ) ) : ?> '; + echo '
                            '; - echo '

                            ' . $field_group['title'] . '

                            '; + echo '

                            ' . esc_html( $field_group['title'] ) . '

                            '; echo '
                            '; diff --git a/includes/forms/form-post.php b/includes/forms/form-post.php index 5fbf1ce..d0dbc0e 100644 --- a/includes/forms/form-post.php +++ b/includes/forms/form-post.php @@ -12,15 +12,15 @@ class ACF_Form_Post { var $style = ''; /** - * __construct + * __construct * - * Sets up the class functionality. + * Sets up the class functionality. * - * @date 5/03/2014 - * @since 5.0.0 + * @date 5/03/2014 + * @since 5.0.0 * - * @param void - * @return void + * @param void + * @return void */ function __construct() { @@ -35,15 +35,15 @@ function __construct() { /** - * initialize + * initialize * - * Sets up Form functionality. + * Sets up Form functionality. * - * @date 19/9/18 - * @since 5.7.6 + * @date 19/9/18 + * @since 5.7.6 * - * @param void - * @return void + * @param void + * @return void */ function initialize() { @@ -74,16 +74,16 @@ function initialize() { } /** - * add_meta_boxes + * add_meta_boxes * - * Adds ACF metaboxes for the given $post_type and $post. + * Adds ACF metaboxes for the given $post_type and $post. * - * @date 19/9/18 - * @since 5.7.6 + * @date 19/9/18 + * @since 5.7.6 * - * @param string $post_type The post type. - * @param WP_Post $post The post being edited. - * @return void + * @param string $post_type The post type. + * @param WP_Post $post The post being edited. + * @return void */ function add_meta_boxes( $post_type, $post ) { @@ -157,30 +157,25 @@ function add_meta_boxes( $post_type, $post ) { add_action( 'edit_form_after_title', array( $this, 'edit_form_after_title' ) ); /** - * Fires after metaboxes have been added. + * Fires after metaboxes have been added. * - * @date 13/12/18 - * @since 5.8.0 + * @date 13/12/18 + * @since 5.8.0 * - * @param string $post_type The post type. - * @param WP_Post $post The post being edited. - * @param array $field_groups The field groups added. + * @param string $post_type The post type. + * @param WP_Post $post The post being edited. + * @param array $field_groups The field groups added. */ do_action( 'acf/add_meta_boxes', $post_type, $post, $field_groups ); } /** - * edit_form_after_title + * Called after the title and before the content editor to render the after title metaboxes. + * Also renders the CSS required to hide the "hide-on-screen" elements on the page based on the field group settings. * - * Called after the title adn before the content editor. - * - * @date 19/9/18 - * @since 5.7.6 - * - * @param void - * @return void + * @since 5.7.6 */ - function edit_form_after_title() { + public function edit_form_after_title() { // globals global $post, $wp_meta_boxes; @@ -196,21 +191,23 @@ function edit_form_after_title() { // render 'acf_after_title' metaboxes do_meta_boxes( get_current_screen(), 'acf_after_title', $post ); - // render dynamic field group style - echo ''; + if ( ! empty( $this->style ) ) { + // render dynamic field group style, using wp_strip_all_tags as this is filterable, but should only contain valid styles and no html. + echo ''; //phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- CSS only, escaped by wp_strip_all_tags. + } } /** - * render_meta_box + * render_meta_box * - * Renders the ACF metabox HTML. + * Renders the ACF metabox HTML. * - * @date 19/9/18 - * @since 5.7.6 + * @date 19/9/18 + * @since 5.7.6 * - * @param WP_Post $post The post being edited. - * @param array metabox The add_meta_box() args. - * @return void + * @param WP_Post $post The post being edited. + * @param array metabox The add_meta_box() args. + * @return void */ function render_meta_box( $post, $metabox ) { @@ -224,16 +221,16 @@ function render_meta_box( $post, $metabox ) { } /** - * wp_insert_post_empty_content + * wp_insert_post_empty_content * - * Allows WP to insert a new post without title or post_content if ACF data exists. + * Allows WP to insert a new post without title or post_content if ACF data exists. * - * @date 16/07/2014 - * @since 5.0.1 + * @date 16/07/2014 + * @since 5.0.1 * - * @param bool $maybe_empty Whether the post should be considered "empty". - * @param array $postarr Array of post data. - * @return bool + * @param boolean $maybe_empty Whether the post should be considered "empty". + * @param array $postarr Array of post data. + * @return boolean */ function wp_insert_post_empty_content( $maybe_empty, $postarr ) { @@ -246,19 +243,17 @@ function wp_insert_post_empty_content( $maybe_empty, $postarr ) { return $maybe_empty; } - /* - * allow_save_post - * - * Checks if the $post is allowed to be saved. - * Used to avoid triggering "acf/save_post" on dynamically created posts during save. - * - * @type function - * @date 26/06/2016 - * @since 5.3.8 - * - * @param WP_Post $post The post to check. - * @return bool - */ + /** + * Checks if the $post is allowed to be saved. + * Used to avoid triggering "acf/save_post" on dynamically created posts during save. + * + * @type function + * @date 26/06/2016 + * @since 5.3.8 + * + * @param WP_Post $post The post to check. + * @return boolean + */ function allow_save_post( $post ) { // vars @@ -289,50 +284,41 @@ function allow_save_post( $post ) { return $allow; } - /* - * save_post - * - * Triggers during the 'save_post' action to save the $_POST data. - * - * @type function - * @date 23/06/12 - * @since 1.0.0 - * - * @param int $post_id The post ID - * @param WP_POST $post the post object. - * @return int - */ - - function save_post( $post_id, $post ) { - - // bail early if no allowed to save this post type + /** + * Triggers during the 'save_post' action to save the $_POST data. + * + * @since 1.0.0 + * + * @param integer $post_id The post ID. + * @param WP_Post $post The post object. + * @return integer + */ + public function save_post( $post_id, $post ) { + // Bail early if not allowed to save this post type. if ( ! $this->allow_save_post( $post ) ) { return $post_id; } - // verify nonce + // Verify nonce. if ( ! acf_verify_nonce( 'post' ) ) { return $post_id; } - // validate for published post (allow draft to save without validation) - if ( $post->post_status == 'publish' ) { - - // bail early if validation fails + // Validate for published post (allow draft to save without validation). + if ( $post->post_status === 'publish' ) { + // Bail early if validation fails. if ( ! acf_validate_save_post() ) { return; } } - // save acf_save_post( $post_id ); - // save revision - if ( post_type_supports( $post->post_type, 'revisions' ) ) { + // We handle revisions differently on WP 6.4+. + if ( version_compare( get_bloginfo( 'version' ), '6.4', '<' ) && post_type_supports( $post->post_type, 'revisions' ) ) { acf_save_post_revision( $post_id ); } - // return return $post_id; } } diff --git a/includes/forms/form-taxonomy.php b/includes/forms/form-taxonomy.php index 0e16bd6..b339e1f 100644 --- a/includes/forms/form-taxonomy.php +++ b/includes/forms/form-taxonomy.php @@ -1,15 +1,14 @@ ' . $field_group['title'] . ''; + echo '

                            ' . esc_html( $field_group['title'] ) . '

                            '; } // fields @@ -215,18 +204,16 @@ function edit_term( $term, $taxonomy ) { } - /* - * admin_footer - * - * description - * - * @type function - * @date 27/03/2015 - * @since 5.1.5 - * - * @param $post_id (int) - * @return $post_id (int) - */ + /** + * description + * + * @type function + * @date 27/03/2015 + * @since 5.1.5 + * + * @param $post_id (int) + * @return $post_id (int) + */ function admin_footer() { @@ -235,7 +222,7 @@ function admin_footer() { (function($) { // Define vars. - var view = 'view; ?>'; + var view = 'view ); ?>'; var $form = $('#' + view + 'tag'); var $submit = $('#' + view + 'tag input[type="submit"]:last'); @@ -312,18 +299,16 @@ function admin_footer() { } - /* - * save_term - * - * description - * - * @type function - * @date 8/10/13 - * @since 5.0.0 - * - * @param $post_id (int) - * @return $post_id (int) - */ + /** + * description + * + * @type function + * @date 8/10/13 + * @since 5.0.0 + * + * @param $post_id (int) + * @return $post_id (int) + */ function save_term( $term_id, $tt_id, $taxonomy ) { @@ -343,18 +328,16 @@ function save_term( $term_id, $tt_id, $taxonomy ) { } - /* - * delete_term - * - * description - * - * @type function - * @date 15/10/13 - * @since 5.0.0 - * - * @param $post_id (int) - * @return $post_id (int) - */ + /** + * description + * + * @type function + * @date 15/10/13 + * @since 5.0.0 + * + * @param $post_id (int) + * @return $post_id (int) + */ function delete_term( $term, $tt_id, $taxonomy, $deleted_term ) { diff --git a/includes/forms/form-user.php b/includes/forms/form-user.php index ca99890..d4785c3 100644 --- a/includes/forms/form-user.php +++ b/includes/forms/form-user.php @@ -12,18 +12,16 @@ class ACF_Form_User { var $view = ''; - /* - * __construct - * - * This function will setup the class functionality - * - * @type function - * @date 5/03/2014 - * @since 5.0.0 - * - * @param n/a - * @return n/a - */ + /** + * This function will setup the class functionality + * + * @type function + * @date 5/03/2014 + * @since 5.0.0 + * + * @param n/a + * @return n/a + */ function __construct() { @@ -47,15 +45,15 @@ function __construct() { /** - * admin_enqueue_scripts + * admin_enqueue_scripts * - * Checks current screen and enqueues scripts + * Checks current screen and enqueues scripts * - * @date 17/4/18 - * @since 5.6.9 + * @date 17/4/18 + * @since 5.6.9 * - * @param void - * @return void + * @param void + * @return void */ function admin_enqueue_scripts() { @@ -71,15 +69,15 @@ function admin_enqueue_scripts() { /** - * login_form_register + * login_form_register * - * Customizes and enqueues scripts + * Customizes and enqueues scripts * - * @date 17/4/18 - * @since 5.6.9 + * @date 17/4/18 + * @since 5.6.9 * - * @param void - * @return void + * @param void + * @return void */ function login_form_register() { @@ -93,18 +91,16 @@ function login_form_register() { } - /* - * register_user - * - * Called during the user register form - * - * @type function - * @date 8/10/13 - * @since 5.0.0 - * - * @param void - * @return void - */ + /** + * Called during the user register form + * + * @type function + * @date 8/10/13 + * @since 5.0.0 + * + * @param void + * @return void + */ function render_register() { @@ -119,18 +115,16 @@ function render_register() { } - /* - * render_edit - * - * Called during the user edit form - * - * @type function - * @date 8/10/13 - * @since 5.0.0 - * - * @param void - * @return void - */ + /** + * Called during the user edit form + * + * @type function + * @date 8/10/13 + * @since 5.0.0 + * + * @param void + * @return void + */ function render_edit( $user ) { @@ -150,18 +144,16 @@ function render_edit( $user ) { } - /* - * user_new_form - * - * description - * - * @type function - * @date 8/10/13 - * @since 5.0.0 - * - * @param $post_id (int) - * @return $post_id (int) - */ + /** + * description + * + * @type function + * @date 8/10/13 + * @since 5.0.0 + * + * @param $post_id (int) + * @return $post_id (int) + */ function render_new() { @@ -181,20 +173,17 @@ function render_new() { } - /* - * render - * - * This function will render ACF fields for a given $post_id parameter - * - * @type function - * @date 7/10/13 - * @since 5.0.0 - * - * @param $user_id (int) this can be set to 0 for a new user - * @param $user_form (string) used for location rule matching. edit | add | register - * @param $el (string) - * @return n/a - */ + /** + * This function will render ACF fields for a given $post_id parameter + * + * @type function + * @since 5.0.0 + * + * @param $user_id (int) this can be set to 0 for a new user + * @param $user_form (string) used for location rule matching. edit | add | register + * @param $el (string) + * @return n/a + */ function render( $args = array() ) { @@ -243,7 +232,7 @@ function render( $args = array() ) { $after = '
                            '; if ( $args['el'] == 'div' ) { - $before = '
                            '; + $before = '
                            '; $after = '
                            '; } @@ -255,13 +244,13 @@ function render( $args = array() ) { // title if ( $field_group['style'] === 'default' ) { - echo '

                            ' . $field_group['title'] . '

                            '; + echo '

                            ' . esc_html( $field_group['title'] ) . '

                            '; } // render - echo $before; + echo $before; //phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- safe HTML string. acf_render_fields( $fields, $post_id, $args['el'], $field_group['instruction_placement'] ); - echo $after; + echo $after; //phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- safe HTML string. } // actions @@ -269,18 +258,16 @@ function render( $args = array() ) { } - /* - * admin_footer - * - * description - * - * @type function - * @date 27/03/2015 - * @since 5.1.5 - * - * @param $post_id (int) - * @return $post_id (int) - */ + /** + * description + * + * @type function + * @date 27/03/2015 + * @since 5.1.5 + * + * @param $post_id (int) + * @return $post_id (int) + */ function admin_footer() { @@ -290,7 +277,7 @@ function admin_footer() { (function($) { // vars - var view = 'view; ?>'; + var view = 'view ); ?>'; // add missing spinners var $submit = $('input.button-primary'); @@ -304,18 +291,16 @@ function admin_footer() { } - /* - * save_user - * - * description - * - * @type function - * @date 8/10/13 - * @since 5.0.0 - * - * @param $post_id (int) - * @return $post_id (int) - */ + /** + * description + * + * @type function + * @date 8/10/13 + * @since 5.0.0 + * + * @param $post_id (int) + * @return $post_id (int) + */ function save_user( $user_id ) { @@ -338,9 +323,9 @@ function save_user( $user_id ) { * @date 12/7/19 * @since 5.8.1 * - * @param WP_Error $errors A WP_Error object containing any errors encountered during registration. + * @param WP_Error $errors A WP_Error object containing any errors encountered during registration. * @param string $sanitized_user_login User's username after it has been sanitized. - * @param string $user_email User's email. + * @param string $user_email User's email. * @return WP_Error */ function filter_registration_errors( $errors, $sanitized_user_login, $user_email ) { @@ -364,9 +349,9 @@ function filter_registration_errors( $errors, $sanitized_user_login, $user_email * @date 12/7/19 * @since 5.8.2 * - * @param null $null A null placeholder. + * @param null $null A null placeholder. * @param (int|string) $post_id The post id. - * @param array $field The field array. + * @param array $field The field array. * @return mixed */ function filter_pre_load_value( $null, $post_id, $field ) { diff --git a/includes/forms/form-widget.php b/includes/forms/form-widget.php index f514bf6..fcae91a 100644 --- a/includes/forms/form-widget.php +++ b/includes/forms/form-widget.php @@ -1,32 +1,29 @@ (function($) { - acf.doAction('append', $('[id^="widget"][id$="id; ?>"]') ); + acf.doAction('append', $('[id^="widget"][id$="id ); ?>"]') ); })(jQuery); @@ -197,21 +182,19 @@ function edit_widget( $widget, $return, $instance ) { } - /* - * save_widget - * - * This function will hook into the widget update filter and save ACF data - * - * @type function - * @date 27/05/2015 - * @since 5.2.3 - * - * @param $instance (array) widget settings - * @param $new_instance (array) widget settings - * @param $old_instance (array) widget settings - * @param $widget (object) widget info - * @return $instance - */ + /** + * This function will hook into the widget update filter and save ACF data + * + * @type function + * @date 27/05/2015 + * @since 5.2.3 + * + * @param $instance (array) widget settings + * @param $new_instance (array) widget settings + * @param $old_instance (array) widget settings + * @param $widget (object) widget info + * @return $instance + */ function save_widget( $instance, $new_instance, $old_instance, $widget ) { @@ -236,18 +219,16 @@ function save_widget( $instance, $new_instance, $old_instance, $widget ) { } - /* - * admin_footer - * - * This function will add some custom HTML to the footer of the edit page - * - * @type function - * @date 11/06/2014 - * @since 5.0.0 - * - * @param n/a - * @return n/a - */ + /** + * This function will add some custom HTML to the footer of the edit page + * + * @type function + * @date 11/06/2014 + * @since 5.0.0 + * + * @param n/a + * @return n/a + */ function admin_footer() { ?> diff --git a/includes/l10n.php b/includes/l10n.php index 6597792..e836341 100644 --- a/includes/l10n.php +++ b/includes/l10n.php @@ -52,9 +52,7 @@ function determine_locale() { } endif; -/* - * acf_get_locale - * +/** * Returns the current locale. * * @date 16/12/16 diff --git a/includes/legacy/legacy-locations.php b/includes/legacy/legacy-locations.php index 293391e..3d83d1a 100644 --- a/includes/legacy/legacy-locations.php +++ b/includes/legacy/legacy-locations.php @@ -15,11 +15,10 @@ class ACF_Legacy_Locations { * @since 5.9.0 * * @param string $key Key name. - * @return bool + * @return boolean */ public function __isset( $key ) { // _doing_it_wrong( __FUNCTION__, __( 'The ACF_Locations class should not be accessed directly.', 'acf' ), '5.9.0' ); - return ( $key === 'locations' ); @@ -36,7 +35,6 @@ public function __isset( $key ) { */ public function __get( $key ) { // _doing_it_wrong( __FUNCTION__, __( 'The ACF_Locations class should not be accessed directly.', 'acf' ), '5.9.0' ); - switch ( $key ) { case 'locations': return call_user_func( 'acf_get_location_types' ); @@ -50,13 +48,12 @@ public function __get( $key ) { * @date 10/4/20 * @since 5.9.0 * - * @param string $name The method name. + * @param string $name The method name. * @param array $arguments The array of arguments. * @return mixed */ public function __call( $name, $arguments ) { // _doing_it_wrong( __FUNCTION__, __( 'The ACF_Locations class should not be accessed directly.', 'acf' ), '5.9.0' ); - switch ( $name ) { case 'register_location': return call_user_func_array( 'acf_register_location_type', $arguments ); diff --git a/includes/local-fields.php b/includes/local-fields.php index b9273bb..731b9bb 100644 --- a/includes/local-fields.php +++ b/includes/local-fields.php @@ -50,7 +50,7 @@ function acf_disable_local() { * @since 5.7.10 * * @param void - * @return bool + * @return boolean */ function acf_is_local_enabled() { return ( acf_is_filter_enabled( 'local' ) && acf_get_setting( 'local' ) ); @@ -179,7 +179,7 @@ function acf_count_local_field_groups() { * @since 5.7.10 * * @param array $field_group The field group array. - * @return bool + * @return boolean */ function acf_add_local_field_group( $field_group ) { // Apply default properties needed for import. @@ -232,7 +232,7 @@ function acf_add_local_field_group( $field_group ) { * * @param array $post The main ACF post array. * @param string $post_type The post type being added. - * @return bool + * @return boolean */ function acf_add_local_internal_post_type( $post, $post_type ) { // Apply default properties needed for import. @@ -283,7 +283,7 @@ function register_field_group( $field_group ) { * @since 5.7.10 * * @param string $key The field group key. - * @return bool + * @return boolean */ function acf_remove_local_field_group( $key = '' ) { return acf_remove_local_internal_post_type( $key, 'acf-field-group' ); @@ -296,7 +296,7 @@ function acf_remove_local_field_group( $key = '' ) { * * @param string $key The ACF key. * @param string $post_type The ACF post type. - * @return bool + * @return boolean */ function acf_remove_local_internal_post_type( $key = '', $post_type = 'acf-field-group' ) { return acf_get_local_store( '', $post_type )->remove( $key ); @@ -311,7 +311,7 @@ function acf_remove_local_internal_post_type( $key = '', $post_type = 'acf-field * @since 5.7.10 * * @param string $key The field group key. - * @return bool + * @return boolean */ function acf_is_local_field_group( $key = '' ) { return acf_get_local_store( 'groups' )->has( $key ); @@ -325,7 +325,7 @@ function acf_is_local_field_group( $key = '' ) { * * @param string $key The ACF key. * @param string $post_type The ACF post type. - * @return bool + * @return boolean */ function acf_is_local_internal_post_type( $key = '', $post_type = 'acf-field-group' ) { return acf_get_local_store( '', $post_type )->has( $key ); @@ -340,7 +340,7 @@ function acf_is_local_internal_post_type( $key = '', $post_type = 'acf-field-gro * @since 5.7.10 * * @param string $key The field group key. - * @return bool + * @return boolean */ function acf_is_local_field_group_key( $key = '' ) { return acf_is_local_internal_post_type_key( $key, 'acf-field-group' ); @@ -353,7 +353,7 @@ function acf_is_local_field_group_key( $key = '' ) { * * @param string $key The ACF post key. * @param string $post_type The post type to check. - * @return bool + * @return boolean */ function acf_is_local_internal_post_type_key( $key = '', $post_type = '' ) { return acf_get_local_store( '', $post_type )->is( $key ); @@ -445,7 +445,7 @@ function acf_get_local_fields( $parent = '' ) { * @since 5.7.10 * * @param string $parent The parent key. - * @return bool + * @return boolean */ function acf_have_local_fields( $parent = '' ) { return acf_get_local_fields( $parent ) ? true : false; @@ -460,7 +460,7 @@ function acf_have_local_fields( $parent = '' ) { * @since 5.7.10 * * @param string $parent The parent key. - * @return int + * @return integer */ function acf_count_local_fields( $parent = '' ) { return count( acf_get_local_fields( $parent ) ); @@ -474,8 +474,8 @@ function acf_count_local_fields( $parent = '' ) { * @date 22/1/19 * @since 5.7.10 * - * @param array $field The field array. - * @param bool $prepared Whether or not the field has already been prepared for import. + * @param array $field The field array. + * @param boolean $prepared Whether or not the field has already been prepared for import. * @return void */ function acf_add_local_field( $field, $prepared = false ) { @@ -528,7 +528,7 @@ function acf_add_local_field( $field, $prepared = false ) { * @since 5.7.10 * * @param string $key The field key. - * @return bool + * @return boolean */ function _acf_generate_local_key( $field ) { return "{$field['key']}:{$field['parent']}"; @@ -543,7 +543,7 @@ function _acf_generate_local_key( $field ) { * @since 5.7.10 * * @param string $key The field key. - * @return bool + * @return boolean */ function acf_remove_local_field( $key = '' ) { return acf_get_local_store( 'fields' )->remove( $key ); @@ -558,7 +558,7 @@ function acf_remove_local_field( $key = '' ) { * @since 5.7.10 * * @param string $key The field group key. - * @return bool + * @return boolean */ function acf_is_local_field( $key = '' ) { return acf_get_local_store( 'fields' )->has( $key ); @@ -573,7 +573,7 @@ function acf_is_local_field( $key = '' ) { * @since 5.7.10 * * @param string $key The field group key. - * @return bool + * @return boolean */ function acf_is_local_field_key( $key = '' ) { return acf_get_local_store( 'fields' )->is( $key ); @@ -662,9 +662,9 @@ function _acf_apply_get_local_internal_posts( $posts = array(), $post_type = 'ac * @date 23/1/19 * @since 5.7.10 * - * @param bool $bool The result. - * @param string $id The identifier. - * @return bool + * @param boolean $bool The result. + * @param string $id The identifier. + * @return boolean */ function _acf_apply_is_local_field_key( $bool, $id ) { return acf_is_local_field_key( $id ); @@ -681,9 +681,9 @@ function _acf_apply_is_local_field_key( $bool, $id ) { * @date 23/1/19 * @since 5.7.10 * - * @param bool $bool The result. - * @param string $id The identifier. - * @return bool + * @param boolean $bool The result. + * @param string $id The identifier. + * @return boolean */ function _acf_apply_is_local_field_group_key( $bool, $id ) { return acf_is_local_field_group_key( $id ); @@ -694,10 +694,10 @@ function _acf_apply_is_local_field_group_key( $bool, $id ) { * * @since 6.1 * - * @param bool $bool The result. - * @param string $id The identifier. - * @param string $post_type The post type. - * @return bool + * @param boolean $bool The result. + * @param string $id The identifier. + * @param string $post_type The post type. + * @return boolean */ function _acf_apply_is_local_internal_post_type_key( $bool, $id, $post_type = 'acf-field-group' ) { return acf_is_local_internal_post_type_key( $id, $post_type ); diff --git a/includes/local-json.php b/includes/local-json.php index a2ebd37..e6bd243 100644 --- a/includes/local-json.php +++ b/includes/local-json.php @@ -58,7 +58,7 @@ public function __construct() { * @since 5.9.0 * * @param void - * @return bool. + * @return boolean */ public function is_enabled() { return (bool) acf_get_setting( 'json' ); @@ -147,7 +147,7 @@ public function update_field_group( $field_group ) { * @since 6.1 * * @param array $post The main ACF post array. - * @return bool + * @return boolean */ public function update_internal_post_type( $post ) { if ( ! $this->is_enabled() ) { @@ -173,7 +173,7 @@ public function update_internal_post_type( $post ) { * @since 5.9.0 * * @param array $field_group The field group. - * @return bool + * @return boolean */ public function delete_field_group( $field_group ) { return $this->delete_internal_post_type( $field_group ); @@ -185,7 +185,7 @@ public function delete_field_group( $field_group ) { * @since 6.1 * * @param array $post The main ACF post array. - * @return bool + * @return boolean */ public function delete_internal_post_type( $post ) { if ( ! $this->is_enabled() ) { @@ -228,8 +228,6 @@ public function include_fields() { * Includes all local JSON post types. * * @since 6.1 - * - * @return void */ public function include_post_types() { // Bail early if disabled. @@ -251,8 +249,6 @@ public function include_post_types() { * Includes all local JSON taxonomies. * * @since 6.1 - * - * @return void */ public function include_taxonomies() { // Bail early if disabled. @@ -276,7 +272,7 @@ public function include_taxonomies() { * @date 14/4/20 * @since 5.9.0 * - * @return array + * @return array */ function scan_field_groups() { return $this->scan_files( 'acf-field-group' ); @@ -376,7 +372,7 @@ public function get_files( $post_type = 'acf-field-group' ) { * * @param string $key The ACF post key. * @param array $post The main ACF post array. - * @return bool + * @return boolean */ public function save_file( $key, $post ) { $paths = $this->get_save_paths( $key, $post ); @@ -411,7 +407,7 @@ public function save_file( $key, $post ) { } foreach ( $paths as $path ) { - if ( ! is_writable( $path ) ) { + if ( ! wp_is_writable( $path ) ) { continue; } @@ -449,7 +445,7 @@ public function save_file( $key, $post ) { // Prepare for export and save the file. $post = acf_prepare_internal_post_type_for_export( $post, $post_type ); - $result = file_put_contents( $file, acf_json_encode( $post ) . apply_filters( 'acf/json/eof_newline', PHP_EOL ) ); + $result = file_put_contents( $file, acf_json_encode( $post ) . apply_filters( 'acf/json/eof_newline', PHP_EOL ) ); //phpcs:ignore WordPress.WP.AlternativeFunctions.file_system_operations_file_put_contents -- potentially could run outside of admin. // Return true if bytes were written. return is_int( $result ); @@ -463,7 +459,7 @@ public function save_file( $key, $post ) { * * @param string $key The ACF post key. * @param array $post The main ACF post array. - * @return bool + * @return boolean */ public function delete_file( $key, $post = array() ) { $paths = $this->get_save_paths( $key, $post ); @@ -471,7 +467,7 @@ public function delete_file( $key, $post = array() ) { foreach ( $paths as $path_to_check ) { $file = untrailingslashit( $path_to_check ) . '/' . $key . '.json'; - if ( is_writable( $file ) ) { + if ( wp_is_writable( $file ) ) { wp_delete_file( $file ); } } @@ -482,12 +478,9 @@ public function delete_file( $key, $post = array() ) { /** * Includes all local JSON files. * - * @date 10/03/2014 - * @since 5.0.0 + * @date 10/03/2014 + * @since 5.0.0 * @deprecated 5.9.0 - * - * @param void - * @return void */ public function include_json_folders() { _deprecated_function( __METHOD__, '5.9.0', 'ACF_Local_JSON::include_fields()' ); @@ -534,7 +527,7 @@ function acf_get_local_json_files( $post_type = 'acf-field-group' ) { * @since 5.1.5 * * @param array $field_group The field group. - * @return bool + * @return boolean */ function acf_write_json_field_group( $field_group ) { return acf_get_instance( 'ACF_Local_JSON' )->save_file( $field_group['key'], $field_group ); @@ -547,7 +540,7 @@ function acf_write_json_field_group( $field_group ) { * @since 5.1.5 * * @param string $key The field group key. - * @return bool True on success. + * @return boolean True on success. */ function acf_delete_json_field_group( $key ) { return acf_get_instance( 'ACF_Local_JSON' )->delete_file( $key ); diff --git a/includes/local-meta.php b/includes/local-meta.php old mode 100644 new mode 100755 index e175584..dd8d338 --- a/includes/local-meta.php +++ b/includes/local-meta.php @@ -42,9 +42,9 @@ function __construct() { * @date 8/10/18 * @since 5.8.0 * - * @param array $meta An array of metdata to store. - * @param mixed $post_id The post_id for this data. - * @param bool $is_main Makes this postmeta visible to get_field() without a $post_id value. + * @param array $meta An array of metdata to store. + * @param mixed $post_id The post_id for this data. + * @param boolean $is_main Makes this postmeta visible to get_field() without a $post_id value. * @return array */ function add( $meta = array(), $post_id = 0, $is_main = false ) { @@ -75,7 +75,7 @@ function add( $meta = array(), $post_id = 0, $is_main = false ) { * @since 5.7.14 * * @param array $meta An array of metdata to check. - * @return bool + * @return boolean */ function is_request( $meta = array() ) { return acf_is_field_key( key( $meta ) ); @@ -90,7 +90,7 @@ function is_request( $meta = array() ) { * @date 26/2/19 * @since 5.7.13 * - * @param array $values An array of raw values. + * @param array $values An array of raw values. * @param mixed $post_id The post_id for this data. * @return array */ @@ -122,11 +122,11 @@ function capture( $values = array(), $post_id = 0 ) { * @date 26/2/19 * @since 5.7.13 * - * @param null $null . + * @param null $null . * @param (int|string) $post_id The post id. - * @param string $name The meta name. - * @param mixed $value The meta value. - * @param bool $hidden If the meta is hidden (starts with an underscore). + * @param string $name The meta name. + * @param mixed $value The meta value. + * @param boolean $hidden If the meta is hidden (starts with an underscore). * @return false. */ function capture_update_metadata( $null, $post_id, $name, $value, $hidden ) { @@ -167,7 +167,7 @@ function remove( $post_id = 0 ) { * @date 8/10/18 * @since 5.8.0 * - * @param null $null An empty parameter. Return a non null value to short-circuit the function. + * @param null $null An empty parameter. Return a non null value to short-circuit the function. * @param mixed $post_id The post_id for this data. * @return mixed */ @@ -186,10 +186,10 @@ function pre_load_meta( $null, $post_id ) { * @date 8/10/18 * @since 5.8.0 * - * @param null $null An empty parameter. Return a non null value to short-circuit the function. + * @param null $null An empty parameter. Return a non null value to short-circuit the function. * @param (int|string) $post_id The post id. - * @param string $name The meta name. - * @param bool $hidden If the meta is hidden (starts with an underscore). + * @param string $name The meta name. + * @param boolean $hidden If the meta is hidden (starts with an underscore). * @return mixed */ function pre_load_metadata( $null, $post_id, $name, $hidden ) { @@ -211,7 +211,7 @@ function pre_load_metadata( $null, $post_id, $name, $hidden ) { * @date 8/10/18 * @since 5.8.0 * - * @param null $null An empty parameter. Return a non null value to short-circuit the function. + * @param null $null An empty parameter. Return a non null value to short-circuit the function. * @param mixed $post_id The post_id for this data. * @return mixed */ diff --git a/includes/locations.php b/includes/locations.php index b1b7b88..e7fd112 100644 --- a/includes/locations.php +++ b/includes/locations.php @@ -22,8 +22,9 @@ function acf_register_location_type( $class_name ) { // Check class exists. if ( ! class_exists( $class_name ) ) { + /* translators: %s class name for a location that could not be found */ $message = sprintf( __( 'Class "%s" does not exist.', 'acf' ), $class_name ); - _doing_it_wrong( __FUNCTION__, $message, '5.9.0' ); + _doing_it_wrong( __FUNCTION__, esc_html( $message ), '5.9.0' ); return false; } @@ -33,8 +34,9 @@ function acf_register_location_type( $class_name ) { // Check location type is unique. if ( $store->has( $name ) ) { + /* translators: %s the name of the location type */ $message = sprintf( __( 'Location type "%s" is already registered.', 'acf' ), $name ); - _doing_it_wrong( __FUNCTION__, $message, '5.9.0' ); + _doing_it_wrong( __FUNCTION__, esc_html( $message ), '5.9.0' ); return false; } @@ -238,10 +240,10 @@ function acf_get_location_rule_values( $rule ) { * @date 30/5/17 * @since 5.6.0 * - * @param array $rule The location rule. + * @param array $rule The location rule. * @param array $screen The screen args. - * @param array $field The field group array. - * @return bool + * @param array $field The field group array. + * @return boolean */ function acf_match_location_rule( $rule, $screen, $field_group ) { $result = false; @@ -276,7 +278,7 @@ function acf_match_location_rule( $rule, $screen, $field_group ) { * @date 8/4/20 * @since 5.9.0 * - * @param array $screen The screen args. + * @param array $screen The screen args. * @param array $deprecated The field group array. * @return array */ diff --git a/includes/locations/abstract-acf-legacy-location.php b/includes/locations/abstract-acf-legacy-location.php index 5e5e8a8..f5c9d91 100644 --- a/includes/locations/abstract-acf-legacy-location.php +++ b/includes/locations/abstract-acf-legacy-location.php @@ -36,7 +36,7 @@ public function __construct() { * @date 10/4/20 * @since 5.9.0 * - * @param string $name The method name. + * @param string $name The method name. * @param array $arguments The array of arguments. * @return mixed */ diff --git a/includes/locations/abstract-acf-location.php b/includes/locations/abstract-acf-location.php index fda92ff..b4c5b89 100644 --- a/includes/locations/abstract-acf-location.php +++ b/includes/locations/abstract-acf-location.php @@ -37,7 +37,7 @@ abstract class ACF_Location extends ACF_Legacy_Location { * Whether or not the location rule is publicly accessible. * * @since 5.0.0 - * @var bool + * @var boolean */ public $public = true; @@ -151,10 +151,10 @@ public function get_object_subtype( $rule ) { * @date 9/4/20 * @since 5.9.0 * - * @param array $rule The location rule. - * @param array $screen The screen args. + * @param array $rule The location rule. + * @param array $screen The screen args. * @param array $field_group The field group settings. - * @return bool + * @return boolean */ public function match( $rule, $screen, $field_group ) { return false; @@ -166,9 +166,9 @@ public function match( $rule, $screen, $field_group ) { * @date 17/9/19 * @since 5.8.1 * - * @param array $rule The location rule data. + * @param array $rule The location rule data. * @param mixed $value The value to compare against. - * @return bool + * @return boolean */ public function compare_to_rule( $value, $rule ) { $result = ( $value == $rule['value'] ); diff --git a/includes/locations/class-acf-location-attachment.php b/includes/locations/class-acf-location-attachment.php index 370b663..ab78e95 100644 --- a/includes/locations/class-acf-location-attachment.php +++ b/includes/locations/class-acf-location-attachment.php @@ -30,10 +30,10 @@ public function initialize() { * @date 9/4/20 * @since 5.9.0 * - * @param array $rule The location rule. - * @param array $screen The screen args. + * @param array $rule The location rule. + * @param array $screen The screen args. * @param array $field_group The field group settings. - * @return bool + * @return boolean */ public function match( $rule, $screen, $field_group ) { diff --git a/includes/locations/class-acf-location-comment.php b/includes/locations/class-acf-location-comment.php index 04d7ef2..4477247 100644 --- a/includes/locations/class-acf-location-comment.php +++ b/includes/locations/class-acf-location-comment.php @@ -30,10 +30,10 @@ public function initialize() { * @date 9/4/20 * @since 5.9.0 * - * @param array $rule The location rule. - * @param array $screen The screen args. + * @param array $rule The location rule. + * @param array $screen The screen args. * @param array $field_group The field group settings. - * @return bool + * @return boolean */ public function match( $rule, $screen, $field_group ) { diff --git a/includes/locations/class-acf-location-current-user-role.php b/includes/locations/class-acf-location-current-user-role.php index f4a107b..da7b9ab 100644 --- a/includes/locations/class-acf-location-current-user-role.php +++ b/includes/locations/class-acf-location-current-user-role.php @@ -29,10 +29,10 @@ public function initialize() { * @date 9/4/20 * @since 5.9.0 * - * @param array $rule The location rule. - * @param array $screen The screen args. + * @param array $rule The location rule. + * @param array $screen The screen args. * @param array $field_group The field group settings. - * @return bool + * @return boolean */ public function match( $rule, $screen, $field_group ) { diff --git a/includes/locations/class-acf-location-current-user.php b/includes/locations/class-acf-location-current-user.php index c43d81e..b2a1fa1 100644 --- a/includes/locations/class-acf-location-current-user.php +++ b/includes/locations/class-acf-location-current-user.php @@ -29,10 +29,10 @@ public function initialize() { * @date 9/4/20 * @since 5.9.0 * - * @param array $rule The location rule. - * @param array $screen The screen args. + * @param array $rule The location rule. + * @param array $screen The screen args. * @param array $field_group The field group settings. - * @return bool + * @return boolean */ public function match( $rule, $screen, $field_group ) { switch ( $rule['value'] ) { diff --git a/includes/locations/class-acf-location-nav-menu-item.php b/includes/locations/class-acf-location-nav-menu-item.php index 9eb5db8..303d8fa 100644 --- a/includes/locations/class-acf-location-nav-menu-item.php +++ b/includes/locations/class-acf-location-nav-menu-item.php @@ -30,10 +30,10 @@ public function initialize() { * @date 9/4/20 * @since 5.9.0 * - * @param array $rule The location rule. - * @param array $screen The screen args. + * @param array $rule The location rule. + * @param array $screen The screen args. * @param array $field_group The field group settings. - * @return bool + * @return boolean */ public function match( $rule, $screen, $field_group ) { diff --git a/includes/locations/class-acf-location-nav-menu.php b/includes/locations/class-acf-location-nav-menu.php index cdbc216..355ba7d 100644 --- a/includes/locations/class-acf-location-nav-menu.php +++ b/includes/locations/class-acf-location-nav-menu.php @@ -30,10 +30,10 @@ public function initialize() { * @date 9/4/20 * @since 5.9.0 * - * @param array $rule The location rule. - * @param array $screen The screen args. + * @param array $rule The location rule. + * @param array $screen The screen args. * @param array $field_group The field group settings. - * @return bool + * @return boolean */ public function match( $rule, $screen, $field_group ) { diff --git a/includes/locations/class-acf-location-page-parent.php b/includes/locations/class-acf-location-page-parent.php index 43ba51a..244f655 100644 --- a/includes/locations/class-acf-location-page-parent.php +++ b/includes/locations/class-acf-location-page-parent.php @@ -31,10 +31,10 @@ public function initialize() { * @date 9/4/20 * @since 5.9.0 * - * @param array $rule The location rule. - * @param array $screen The screen args. + * @param array $rule The location rule. + * @param array $screen The screen args. * @param array $field_group The field group settings. - * @return bool + * @return boolean */ public function match( $rule, $screen, $field_group ) { diff --git a/includes/locations/class-acf-location-page-template.php b/includes/locations/class-acf-location-page-template.php index 733e4c0..95b86e8 100644 --- a/includes/locations/class-acf-location-page-template.php +++ b/includes/locations/class-acf-location-page-template.php @@ -31,10 +31,10 @@ public function initialize() { * @date 9/4/20 * @since 5.9.0 * - * @param array $rule The location rule. - * @param array $screen The screen args. + * @param array $rule The location rule. + * @param array $screen The screen args. * @param array $field_group The field group settings. - * @return bool + * @return boolean */ public function match( $rule, $screen, $field_group ) { diff --git a/includes/locations/class-acf-location-page-type.php b/includes/locations/class-acf-location-page-type.php index 501ad16..29d0079 100644 --- a/includes/locations/class-acf-location-page-type.php +++ b/includes/locations/class-acf-location-page-type.php @@ -31,10 +31,10 @@ public function initialize() { * @date 9/4/20 * @since 5.9.0 * - * @param array $rule The location rule. - * @param array $screen The screen args. + * @param array $rule The location rule. + * @param array $screen The screen args. * @param array $field_group The field group settings. - * @return bool + * @return boolean */ public function match( $rule, $screen, $field_group ) { diff --git a/includes/locations/class-acf-location-page.php b/includes/locations/class-acf-location-page.php index 297a73a..ce7dd01 100644 --- a/includes/locations/class-acf-location-page.php +++ b/includes/locations/class-acf-location-page.php @@ -31,10 +31,10 @@ public function initialize() { * @date 9/4/20 * @since 5.9.0 * - * @param array $rule The location rule. - * @param array $screen The screen args. + * @param array $rule The location rule. + * @param array $screen The screen args. * @param array $field_group The field group settings. - * @return bool + * @return boolean */ public function match( $rule, $screen, $field_group ) { return acf_get_location_type( 'post' )->match( $rule, $screen, $field_group ); diff --git a/includes/locations/class-acf-location-post-category.php b/includes/locations/class-acf-location-post-category.php index e225a06..9bedb5d 100644 --- a/includes/locations/class-acf-location-post-category.php +++ b/includes/locations/class-acf-location-post-category.php @@ -30,10 +30,10 @@ public function initialize() { * @date 9/4/20 * @since 5.9.0 * - * @param array $rule The location rule. - * @param array $screen The screen args. + * @param array $rule The location rule. + * @param array $screen The screen args. * @param array $field_group The field group settings. - * @return bool + * @return boolean */ public function match( $rule, $screen, $field_group ) { return acf_get_location_type( 'post_taxonomy' )->match( $rule, $screen, $field_group ); diff --git a/includes/locations/class-acf-location-post-format.php b/includes/locations/class-acf-location-post-format.php index d7a0503..279df34 100644 --- a/includes/locations/class-acf-location-post-format.php +++ b/includes/locations/class-acf-location-post-format.php @@ -30,10 +30,10 @@ public function initialize() { * @date 9/4/20 * @since 5.9.0 * - * @param array $rule The location rule. - * @param array $screen The screen args. + * @param array $rule The location rule. + * @param array $screen The screen args. * @param array $field_group The field group settings. - * @return bool + * @return boolean */ public function match( $rule, $screen, $field_group ) { diff --git a/includes/locations/class-acf-location-post-status.php b/includes/locations/class-acf-location-post-status.php index cb8c0fc..fe22ea7 100644 --- a/includes/locations/class-acf-location-post-status.php +++ b/includes/locations/class-acf-location-post-status.php @@ -30,10 +30,10 @@ public function initialize() { * @date 9/4/20 * @since 5.9.0 * - * @param array $rule The location rule. - * @param array $screen The screen args. + * @param array $rule The location rule. + * @param array $screen The screen args. * @param array $field_group The field group settings. - * @return bool + * @return boolean */ public function match( $rule, $screen, $field_group ) { diff --git a/includes/locations/class-acf-location-post-taxonomy.php b/includes/locations/class-acf-location-post-taxonomy.php index b509ab9..2a85772 100644 --- a/includes/locations/class-acf-location-post-taxonomy.php +++ b/includes/locations/class-acf-location-post-taxonomy.php @@ -30,10 +30,10 @@ public function initialize() { * @date 9/4/20 * @since 5.9.0 * - * @param array $rule The location rule. - * @param array $screen The screen args. + * @param array $rule The location rule. + * @param array $screen The screen args. * @param array $field_group The field group settings. - * @return bool + * @return boolean */ public function match( $rule, $screen, $field_group ) { diff --git a/includes/locations/class-acf-location-post-template.php b/includes/locations/class-acf-location-post-template.php index 32af0fb..b7c074a 100644 --- a/includes/locations/class-acf-location-post-template.php +++ b/includes/locations/class-acf-location-post-template.php @@ -30,10 +30,10 @@ public function initialize() { * @date 9/4/20 * @since 5.9.0 * - * @param array $rule The location rule. - * @param array $screen The screen args. + * @param array $rule The location rule. + * @param array $screen The screen args. * @param array $field_group The field group settings. - * @return bool + * @return boolean */ public function match( $rule, $screen, $field_group ) { diff --git a/includes/locations/class-acf-location-post-type.php b/includes/locations/class-acf-location-post-type.php index eba3b55..3178a3d 100644 --- a/includes/locations/class-acf-location-post-type.php +++ b/includes/locations/class-acf-location-post-type.php @@ -30,10 +30,10 @@ public function initialize() { * @date 9/4/20 * @since 5.9.0 * - * @param array $rule The location rule. - * @param array $screen The screen args. + * @param array $rule The location rule. + * @param array $screen The screen args. * @param array $field_group The field group settings. - * @return bool + * @return boolean */ public function match( $rule, $screen, $field_group ) { diff --git a/includes/locations/class-acf-location-post.php b/includes/locations/class-acf-location-post.php index e0a7073..a3534f0 100644 --- a/includes/locations/class-acf-location-post.php +++ b/includes/locations/class-acf-location-post.php @@ -30,10 +30,10 @@ public function initialize() { * @date 9/4/20 * @since 5.9.0 * - * @param array $rule The location rule. - * @param array $screen The screen args. + * @param array $rule The location rule. + * @param array $screen The screen args. * @param array $field_group The field group settings. - * @return bool + * @return boolean */ public function match( $rule, $screen, $field_group ) { diff --git a/includes/locations/class-acf-location-taxonomy.php b/includes/locations/class-acf-location-taxonomy.php index ad38292..9ccb6fc 100644 --- a/includes/locations/class-acf-location-taxonomy.php +++ b/includes/locations/class-acf-location-taxonomy.php @@ -30,10 +30,10 @@ public function initialize() { * @date 9/4/20 * @since 5.9.0 * - * @param array $rule The location rule. - * @param array $screen The screen args. + * @param array $rule The location rule. + * @param array $screen The screen args. * @param array $field_group The field group settings. - * @return bool + * @return boolean */ public function match( $rule, $screen, $field_group ) { diff --git a/includes/locations/class-acf-location-user-form.php b/includes/locations/class-acf-location-user-form.php index 9946f07..879bc2b 100644 --- a/includes/locations/class-acf-location-user-form.php +++ b/includes/locations/class-acf-location-user-form.php @@ -30,10 +30,10 @@ public function initialize() { * @date 9/4/20 * @since 5.9.0 * - * @param array $rule The location rule. - * @param array $screen The screen args. + * @param array $rule The location rule. + * @param array $screen The screen args. * @param array $field_group The field group settings. - * @return bool + * @return boolean */ public function match( $rule, $screen, $field_group ) { // REST API has no forms, so we should always allow it. diff --git a/includes/locations/class-acf-location-user-role.php b/includes/locations/class-acf-location-user-role.php index 80bc27d..e28d1cc 100644 --- a/includes/locations/class-acf-location-user-role.php +++ b/includes/locations/class-acf-location-user-role.php @@ -32,10 +32,10 @@ function initialize() { * @date 9/4/20 * @since 5.9.0 * - * @param array $rule The location rule. - * @param array $screen The screen args. + * @param array $rule The location rule. + * @param array $screen The screen args. * @param array $field_group The field group settings. - * @return bool + * @return boolean */ public function match( $rule, $screen, $field_group ) { diff --git a/includes/locations/class-acf-location-widget.php b/includes/locations/class-acf-location-widget.php index cab3fed..b25d0c6 100644 --- a/includes/locations/class-acf-location-widget.php +++ b/includes/locations/class-acf-location-widget.php @@ -30,10 +30,10 @@ public function initialize() { * @date 9/4/20 * @since 5.9.0 * - * @param array $rule The location rule. - * @param array $screen The screen args. + * @param array $rule The location rule. + * @param array $screen The screen args. * @param array $field_group The field group settings. - * @return bool + * @return boolean */ public function match( $rule, $screen, $field_group ) { diff --git a/includes/loop.php b/includes/loop.php index 60b1836..308adac 100644 --- a/includes/loop.php +++ b/includes/loop.php @@ -9,18 +9,16 @@ class acf_loop { - /* - * __construct - * - * This function will setup the class functionality - * - * @type function - * @date 5/03/2014 - * @since 5.0.0 - * - * @param n/a - * @return n/a - */ + /** + * This function will setup the class functionality + * + * @type function + * @date 5/03/2014 + * @since 5.0.0 + * + * @param n/a + * @return n/a + */ function __construct() { @@ -29,18 +27,16 @@ function __construct() { } - /* - * is_empty - * - * This function will return true if no loops exist - * - * @type function - * @date 3/03/2016 - * @since 5.3.2 - * - * @param n/a - * @return (boolean) - */ + /** + * This function will return true if no loops exist + * + * @type function + * @date 3/03/2016 + * @since 5.3.2 + * + * @param n/a + * @return (boolean) + */ function is_empty() { @@ -48,18 +44,16 @@ function is_empty() { } - /* - * is_loop - * - * This function will return true if a loop exists for the given array index - * - * @type function - * @date 3/03/2016 - * @since 5.3.2 - * - * @param $i (int) - * @return (boolean) - */ + /** + * This function will return true if a loop exists for the given array index + * + * @type function + * @date 3/03/2016 + * @since 5.3.2 + * + * @param $i (int) + * @return (boolean) + */ function is_loop( $i = 0 ) { @@ -67,18 +61,16 @@ function is_loop( $i = 0 ) { } - /* - * get_i - * - * This function will return a valid array index for the given $i - * - * @type function - * @date 3/03/2016 - * @since 5.3.2 - * - * @param $i (mixed) - * @return (int) - */ + /** + * This function will return a valid array index for the given $i + * + * @type function + * @date 3/03/2016 + * @since 5.3.2 + * + * @param $i (mixed) + * @return (int) + */ function get_i( $i = 0 ) { @@ -102,18 +94,16 @@ function get_i( $i = 0 ) { } - /* - * add_loop - * - * This function will add a new loop - * - * @type function - * @date 3/03/2016 - * @since 5.3.2 - * - * @param $loop (array) - * @return n/a - */ + /** + * This function will add a new loop + * + * @type function + * @date 3/03/2016 + * @since 5.3.2 + * + * @param $loop (array) + * @return n/a + */ function add_loop( $loop = array() ) { @@ -148,20 +138,18 @@ function add_loop( $loop = array() ) { } - /* - * update_loop - * - * This function will update a loop's setting - * - * @type function - * @date 3/03/2016 - * @since 5.3.2 - * - * @param $i (mixed) - * @param $key (string) the loop setting name - * @param $value (mixed) the loop setting value - * @return (boolean) true on success - */ + /** + * This function will update a loop's setting + * + * @type function + * @date 3/03/2016 + * @since 5.3.2 + * + * @param $i (mixed) + * @param $key (string) the loop setting name + * @param $value (mixed) the loop setting value + * @return (boolean) true on success + */ function update_loop( $i = 'active', $key = null, $value = null ) { @@ -181,19 +169,17 @@ function update_loop( $i = 'active', $key = null, $value = null ) { } - /* - * get_loop - * - * This function will return a loop, or loop's setting for a given index & key - * - * @type function - * @date 3/03/2016 - * @since 5.3.2 - * - * @param $i (mixed) - * @param $key (string) the loop setting name - * @return (mixed) false on failure - */ + /** + * This function will return a loop, or loop's setting for a given index & key + * + * @type function + * @date 3/03/2016 + * @since 5.3.2 + * + * @param $i (mixed) + * @param $key (string) the loop setting name + * @return (mixed) false on failure + */ function get_loop( $i = 'active', $key = null ) { @@ -215,18 +201,16 @@ function get_loop( $i = 'active', $key = null ) { } - /* - * remove_loop - * - * This function will remove a loop - * - * @type function - * @date 3/03/2016 - * @since 5.3.2 - * - * @param $i (mixed) - * @return (boolean) true on success - */ + /** + * This function will remove a loop + * + * @type function + * @date 3/03/2016 + * @since 5.3.2 + * + * @param $i (mixed) + * @return (boolean) true on success + */ function remove_loop( $i = 'active' ) { @@ -257,76 +241,64 @@ function remove_loop( $i = 'active' ) { -/* -* acf_add_loop -* -* alias of acf()->loop->add_loop() -* -* @type function -* @date 6/10/13 -* @since 5.0.0 -* -* @param n/a -* @return n/a -*/ - +/** + * alias of acf()->loop->add_loop() + * + * @type function + * @date 6/10/13 + * @since 5.0.0 + * + * @param n/a + * @return n/a + */ function acf_add_loop( $loop = array() ) { return acf()->loop->add_loop( $loop ); } -/* -* acf_update_loop -* -* alias of acf()->loop->update_loop() -* -* @type function -* @date 6/10/13 -* @since 5.0.0 -* -* @param n/a -* @return n/a -*/ - +/** + * alias of acf()->loop->update_loop() + * + * @type function + * @date 6/10/13 + * @since 5.0.0 + * + * @param n/a + * @return n/a + */ function acf_update_loop( $i = 'active', $key = null, $value = null ) { return acf()->loop->update_loop( $i, $key, $value ); } -/* -* acf_get_loop -* -* alias of acf()->loop->get_loop() -* -* @type function -* @date 6/10/13 -* @since 5.0.0 -* -* @param n/a -* @return n/a -*/ - +/** + * alias of acf()->loop->get_loop() + * + * @type function + * @date 6/10/13 + * @since 5.0.0 + * + * @param n/a + * @return n/a + */ function acf_get_loop( $i = 'active', $key = null ) { return acf()->loop->get_loop( $i, $key ); } -/* -* acf_remove_loop -* -* alias of acf()->loop->remove_loop() -* -* @type function -* @date 6/10/13 -* @since 5.0.0 -* -* @param n/a -* @return n/a -*/ - +/** + * alias of acf()->loop->remove_loop() + * + * @type function + * @date 6/10/13 + * @since 5.0.0 + * + * @param n/a + * @return n/a + */ function acf_remove_loop( $i = 'active' ) { return acf()->loop->remove_loop( $i ); diff --git a/includes/media.php b/includes/media.php index 18ab624..82b2a94 100644 --- a/includes/media.php +++ b/includes/media.php @@ -70,7 +70,7 @@ public function enqueue_scripts() { * @date 24/10/2014 * @since 5.0.9 * - * @param string|int $post_id The post ID being saved. + * @param string|integer $post_id The post ID being saved. * @return void */ public function save_files( $post_id = 0 ) { @@ -183,9 +183,9 @@ function wp_ajax_query_attachments() { * @date 31/8/21 * @since 5.10.2 * - * @param array $response Array of prepared attachment data. + * @param array $response Array of prepared attachment data. * @param WP_Post $attachment Attachment object. - * @param array|false $meta Array of attachment meta data, or false if there is none. + * @param array|false $meta Array of attachment meta data, or false if there is none. * @return array */ function clear_acf_errors_for_core_requests( $response, $attachment, $meta ) { @@ -199,9 +199,9 @@ function clear_acf_errors_for_core_requests( $response, $attachment, $meta ) { * @date 21/5/21 * @since 5.9.7 * - * @param array $response Array of prepared attachment data. + * @param array $response Array of prepared attachment data. * @param WP_Post $attachment Attachment object. - * @param array|false $meta Array of attachment meta data, or false if there is none. + * @param array|false $meta Array of attachment meta data, or false if there is none. * @return array */ function wp_prepare_attachment_for_js( $response, $attachment, $meta ) { diff --git a/includes/post-types/class-acf-field-group.php b/includes/post-types/class-acf-field-group.php index 710ee7a..8dca388 100644 --- a/includes/post-types/class-acf-field-group.php +++ b/includes/post-types/class-acf-field-group.php @@ -101,8 +101,8 @@ public function get_settings_array() { * * @since 6.1 * - * @param int|WP_Post $id The post ID being queried. - * @return array|bool The main ACF array for the post, or false on failure. + * @param integer|WP_Post $id The post ID being queried. + * @return array|boolean The main ACF array for the post, or false on failure. */ public function get_post( $id = 0 ) { // Allow WP_Post to be passed. @@ -194,8 +194,8 @@ public function pre_update_field_group( $field_group ) { * * @since 6.1 * - * @param int|string $id The ID of the field group to delete. - * @return bool + * @param integer|string $id The ID of the field group to delete. + * @return boolean */ public function delete_post( $id = 0 ) { // Disable filters to ensure ACF loads data from DB. @@ -239,8 +239,8 @@ public function delete_post( $id = 0 ) { * * @since 6.1 * - * @param int|string $id The ID of the field group to trash. - * @return bool + * @param integer|string $id The ID of the field group to trash. + * @return boolean */ public function trash_post( $id = 0 ) { // Disable filters to ensure ACF loads data from DB. @@ -280,8 +280,8 @@ public function trash_post( $id = 0 ) { * * @since 6.1 * - * @param int|string $id The ID of the ACF post to untrash. - * @return bool + * @param integer|string $id The ID of the ACF post to untrash. + * @return boolean */ public function untrash_post( $id = 0 ) { // Disable filters to ensure ACF loads data from DB. @@ -320,8 +320,8 @@ public function untrash_post( $id = 0 ) { * * @since 6.1 * - * @param int|string $id The ID of the post to duplicate. - * @param int $new_post_id Optional post ID to override. + * @param integer|string $id The ID of the post to duplicate. + * @param integer $new_post_id Optional post ID to override. * @return array The new ACF post array. */ public function duplicate_post( $id = 0, $new_post_id = 0 ) { diff --git a/includes/post-types/class-acf-post-type.php b/includes/post-types/class-acf-post-type.php index 96f0063..e7eecd8 100644 --- a/includes/post-types/class-acf-post-type.php +++ b/includes/post-types/class-acf-post-type.php @@ -312,10 +312,14 @@ public function validate_post( $post = array() ) { * * @since 6.1 * - * @return bool validity status + * @return boolean validity status */ public function ajax_validate_values() { - $post_type_key = acf_sanitize_request_args( $_POST['acf_post_type']['post_type'] ); // phpcs:ignore WordPress.Security.NonceVerification.Missing -- Verified elsewhere. + if ( empty( $_POST['acf_post_type']['post_type'] ) ) { // phpcs:ignore WordPress.Security.NonceVerification.Missing -- Verified elsewhere. + return false; + } + + $post_type_key = acf_sanitize_request_args( wp_unslash( $_POST['acf_post_type']['post_type'] ) ); // phpcs:ignore WordPress.Security.NonceVerification.Missing -- Verified elsewhere. $post_type_key = is_string( $post_type_key ) ? $post_type_key : ''; $valid = true; @@ -336,8 +340,9 @@ public function ajax_validate_values() { acf_add_internal_post_type_validation_error( 'post_type', $message ); } else { // Check if this post key exists in the ACF store for registered post types, excluding those which failed registration. - $store = acf_get_store( $this->store ); - $post_id = (int) acf_sanitize_request_args( $_POST['post_id'] ); // phpcs:ignore WordPress.Security.NonceVerification.Missing -- Verified elsewhere. + $store = acf_get_store( $this->store ); + $post_id = (int) acf_maybe_get_POST( 'post_id', 0 ); + $matches = array_filter( $store->get_data(), function ( $item ) use ( $post_type_key ) { @@ -377,7 +382,7 @@ function ( $item ) use ( $post_id ) { * * @since 6.1 * - * @param array $post The main ACF post type settings array. + * @param array $post The main ACF post type settings array. * @param boolean $escape_labels Determines if the label values should be escaped. * @return array */ @@ -502,7 +507,6 @@ public function get_post_type_args( $post, $escape_labels = true ) { } // TODO: We don't handle the `capabilities` arg at the moment, but may in the future. - // WordPress defaults to the "title" and "editor" supports, but none can be provided by passing false (WP 3.5+). $supports = is_array( $post['supports'] ) ? $post['supports'] : array(); $supports = array_unique( array_filter( array_map( 'strval', $supports ) ) ); @@ -769,7 +773,6 @@ public function import_cptui_post_type( $args ) { } // TODO: Investigate CPTUI usage of with_feeds, pages settings. - // ACF handles capability type differently. if ( isset( $args['capability_type'] ) ) { if ( 'post' !== trim( $args['capability_type'] ) ) { diff --git a/includes/post-types/class-acf-taxonomy.php b/includes/post-types/class-acf-taxonomy.php index d2d4ecb..b591937 100644 --- a/includes/post-types/class-acf-taxonomy.php +++ b/includes/post-types/class-acf-taxonomy.php @@ -235,10 +235,14 @@ public function get_settings_array() { * * @since 6.1 * - * @return bool validity status + * @return boolean validity status */ public function ajax_validate_values() { - $taxonomy_key = acf_sanitize_request_args( $_POST['acf_taxonomy']['taxonomy'] ); // phpcs:ignore WordPress.Security.NonceVerification.Missing -- Verified elsewhere. + if ( empty( $_POST['acf_taxonomy'] ) || empty( $_POST['acf_taxonomy']['taxonomy'] ) ) { // phpcs:ignore WordPress.Security.NonceVerification.Missing -- Verified elsewhere. + return false; + } + + $taxonomy_key = acf_sanitize_request_args( wp_unslash( $_POST['acf_taxonomy']['taxonomy'] ) ); // phpcs:ignore WordPress.Security.NonceVerification.Missing -- Verified elsewhere. $taxonomy_key = is_string( $taxonomy_key ) ? $taxonomy_key : ''; $valid = true; @@ -259,8 +263,9 @@ public function ajax_validate_values() { acf_add_internal_post_type_validation_error( 'taxonomy', $message ); } else { // Check if this post key exists in the ACF store for registered post types, excluding those which failed registration. - $store = acf_get_store( $this->store ); - $post_id = (int) acf_sanitize_request_args( $_POST['post_id'] ); // phpcs:ignore WordPress.Security.NonceVerification.Missing -- Verified elsewhere. + $store = acf_get_store( $this->store ); + $post_id = (int) acf_maybe_get_POST( 'post_id', 0 ); + $matches = array_filter( $store->get_data(), function ( $item ) use ( $taxonomy_key ) { @@ -277,12 +282,10 @@ function ( $item ) use ( $post_id ) { if ( $duplicates ) { $valid = false; acf_add_internal_post_type_validation_error( 'taxonomy', __( 'This taxonomy key is already in use by another taxonomy in ACF and cannot be used.', 'acf' ) ); - } else { // If we're not already in use with another ACF taxonomy, check if we're registered, but not by ACF. - if ( empty( $matches ) && taxonomy_exists( $taxonomy_key ) ) { - $valid = false; - acf_add_internal_post_type_validation_error( 'taxonomy', __( 'This taxonomy key is already in use by another taxonomy registered outside of ACF and cannot be used.', 'acf' ) ); - } + } elseif ( empty( $matches ) && taxonomy_exists( $taxonomy_key ) ) { + $valid = false; + acf_add_internal_post_type_validation_error( 'taxonomy', __( 'This taxonomy key is already in use by another taxonomy registered outside of ACF and cannot be used.', 'acf' ) ); } } @@ -300,7 +303,7 @@ function ( $item ) use ( $post_id ) { * * @since 6.1 * - * @param array $post The main ACF taxonomy settings array. + * @param array $post The main ACF taxonomy settings array. * @param boolean $escape_labels Determines if the label values should be escaped. * @return array */ diff --git a/includes/rest-api/acf-rest-api-functions.php b/includes/rest-api/acf-rest-api-functions.php index b6c599d..d9cb14a 100644 --- a/includes/rest-api/acf-rest-api-functions.php +++ b/includes/rest-api/acf-rest-api-functions.php @@ -35,8 +35,8 @@ function acf_get_field_rest_schema( array $field ) { * @see \acf_field::get_rest_links() * @see https://developer.wordpress.org/rest-api/using-the-rest-api/linking-and-embedding/ * - * @param string|int $post_id - * @param array $field + * @param string|integer $post_id + * @param array $field * @return array */ function acf_get_field_rest_links( $post_id, array $field ) { diff --git a/includes/rest-api/class-acf-rest-api.php b/includes/rest-api/class-acf-rest-api.php index 849643b..1496ebd 100644 --- a/includes/rest-api/class-acf-rest-api.php +++ b/includes/rest-api/class-acf-rest-api.php @@ -147,7 +147,7 @@ private function get_schema() { * @param \WP_REST_Request $request * @param string $param * - * @return bool|WP_Error + * @return boolean|WP_Error */ public function validate_rest_arg( $value, $request, $param ) { // Validate all fields with default WordPress validation first. @@ -187,11 +187,11 @@ public function validate_rest_arg( $value, $request, $param ) { * Load field values into the requested object. This method is not a part of any public API and is only public as * it is required by WordPress. * - * @param array $object An array representation of the post, term, or user object. + * @param array $object An array representation of the post, term, or user object. * @param string $field_name * @param WP_REST_Request $request * @param string $object_sub_type Note that this isn't the same as $this->object_type. This variable is - * more specific and can be a post type or taxonomy. + * more specific and can be a post type or taxonomy. * @return array */ public function load_fields( $object, $field_name, $request, $object_sub_type ) { @@ -253,10 +253,10 @@ public function load_fields( $object, $field_name, $request, $object_sub_type ) * * @param array $data * @param WP_Post|WP_Term|WP_User $object - * @param string $property 'acf' + * @param string $property 'acf' * @param WP_REST_Request $request * @param string $object_sub_type This will be the post type, the taxonomy, or 'user'. - * @return bool|WP_Error + * @return boolean|WP_Error */ public function update_fields( $data, $object, $property, $request, $object_sub_type ) { // If 'acf' data object is empty, don't do anything. @@ -293,7 +293,6 @@ public function update_fields( $data, $object, $property, $request, $object_sub_ // // return true; // } - // todo - consider/discuss handling this in the request object instead // If the incoming data defines field group keys, extract it from the data. This is used to scope the // field lookup in \ACF_Rest_Api::get_field_groups_by_id(); @@ -346,8 +345,8 @@ private function is_admin_mode( $data ) { /** * Make the ACF identifier string for the given object. * - * @param int $object_id - * @param string $object_type 'user', 'term', or 'post' + * @param integer $object_id + * @param string $object_type 'user', 'term', or 'post' * @return string */ private function make_identifier( $object_id, $object_type ) { @@ -369,7 +368,7 @@ private function make_identifier( $object_id, $object_type ) { * @param array $field_group The field group to check. * @param array $location_types An array of location types. * - * @return bool + * @return boolean */ private function object_type_has_field_group( $object_type, $field_group, $location_types = array() ) { if ( ! isset( $field_group['location'] ) || ! is_array( $field_group['location'] ) ) { @@ -436,7 +435,7 @@ private function object_type_has_field_group( $object_type, $field_group, $locat /** * Get all field groups for the provided object type. * - * @param string $object_type 'user', 'term', or 'post' + * @param string $object_type 'user', 'term', or 'post' * * @return array An array of field groups that display for that location type. */ @@ -461,10 +460,10 @@ private function get_field_groups_by_object_type( $object_type ) { /** * Get all field groups for a given object. * - * @param int $object_id - * @param string $object_type 'user', 'term', or 'post' + * @param integer $object_id + * @param string $object_type 'user', 'term', or 'post' * @param string|null $object_sub_type The post type or taxonomy. When an $object_type of 'user' is in play, this can be ignored. - * @param array $scope Field group keys to limit the returned set of field groups to. This is used to scope field lookups to specific groups. + * @param array $scope Field group keys to limit the returned set of field groups to. This is used to scope field lookups to specific groups. * @return array An array of matching field groups. */ private function get_field_groups_by_id( $object_id, $object_type, $object_sub_type = null, $scope = array() ) { @@ -519,9 +518,9 @@ function ( $group ) use ( $scope ) { /** * Get all ACF fields for a given field group and allow third party filtering. * - * @param array $field_group This could technically be other possible values supported by acf_get_fields() but in this - * context, we're only using the field group arrays. - * @param null|int $object_id The ID of the object being prepared. + * @param array $field_group This could technically be other possible values supported by acf_get_fields() but in this + * context, we're only using the field group arrays. + * @param null|integer $object_id The ID of the object being prepared. * @return array */ private function get_fields( $field_group, $object_id = null ) { diff --git a/includes/rest-api/class-acf-rest-request.php b/includes/rest-api/class-acf-rest-request.php index cfb0b1c..dbea8cb 100644 --- a/includes/rest-api/class-acf-rest-request.php +++ b/includes/rest-api/class-acf-rest-request.php @@ -12,10 +12,6 @@ /** * Class ACF_Rest_Request - * - * @property-read string $object_sub_type - * @property-read string $object_type - * @property-read string $http_method */ class ACF_Rest_Request { diff --git a/includes/revisions.php b/includes/revisions.php index 8a97aae..09582a9 100644 --- a/includes/revisions.php +++ b/includes/revisions.php @@ -11,46 +11,118 @@ class acf_revisions { // vars var $cache = array(); - - /* - * __construct - * - * A good place to add actions / filters - * - * @type function - * @date 11/08/13 - * - * @param N/A - * @return N/A - */ - - function __construct() { - - // actions + /** + * Constructs the acf_revisions class. + */ + public function __construct() { add_action( 'wp_restore_post_revision', array( $this, 'wp_restore_post_revision' ), 10, 2 ); - - // filters - add_filter( 'wp_save_post_revision_check_for_changes', array( $this, 'wp_save_post_revision_check_for_changes' ), 10, 3 ); add_filter( '_wp_post_revision_fields', array( $this, 'wp_preview_post_fields' ), 10, 2 ); add_filter( '_wp_post_revision_fields', array( $this, 'wp_post_revision_fields' ), 10, 2 ); add_filter( 'acf/validate_post_id', array( $this, 'acf_validate_post_id' ), 10, 2 ); + + // WP 6.4+ handles things differently. + if ( version_compare( get_bloginfo( 'version' ), '6.4', '>=' ) ) { + add_action( '_wp_put_post_revision', array( $this, 'maybe_save_revision' ), 10, 2 ); + add_filter( 'wp_save_post_revision_post_has_changed', array( $this, 'check_acf_fields_have_changed' ), 9, 3 ); + add_filter( 'wp_post_revision_meta_keys', array( $this, 'wp_post_revision_meta_keys' ) ); + + $this->register_meta(); + } else { + add_filter( 'wp_save_post_revision_check_for_changes', array( $this, 'wp_save_post_revision_check_for_changes' ), 10, 3 ); + } } + /** + * Registers any ACF meta that should be sent the REST/Gutenberg request. + * For now, this is just our "_acf_changed" key that we use to detect if ACF fields have changed. + * + * @since 6.2.6 + */ + public function register_meta() { + register_meta( + 'post', + '_acf_changed', + array( + 'type' => 'boolean', + 'single' => true, + 'show_in_rest' => true, + 'revisions_enabled' => true, + 'auth_callback' => '__return_true', + ) + ); + } - /* - * wp_preview_post_fields - * - * This function is used to trick WP into thinking that one of the $post's fields has changed and - * will allow an autosave to be updated. - * Fixes an odd bug causing the preview page to render the non autosave post data on every odd attempt - * - * @type function - * @date 21/10/2014 - * @since 5.1.0 - * - * @param $fields (array) - * @return $fields - */ + /** + * Lets WordPress know which meta keys to include in revisions. + * For now, this is just our "_acf_changed" key, as we still handle revisions ourselves. + * + * @since 6.2.6 + * + * @param array $keys The meta keys that should be revisioned. + * @return array + */ + public function wp_post_revision_meta_keys( $keys ) { + $keys[] = '_acf_changed'; + return $keys; + } + + /** + * Helps WordPress determine if fields have changed, and if in a legacy + * metabox AJAX request, copies the metadata to the new revision. + * + * @since 6.2.6 + * + * @param boolean $post_has_changed True if the post has changed, false if not. + * @param WP_Post $last_revision The WP_Post object for the latest revision. + * @param WP_Post $post The WP_Post object for the parent post. + * @return boolean + */ + public function check_acf_fields_have_changed( $post_has_changed, $last_revision, $post ) { + if ( acf_maybe_get_GET( 'meta-box-loader', false ) ) { + // We're in a legacy AJAX request, so we copy fields over to the latest revision. + $this->maybe_save_revision( $last_revision->ID, $post->ID ); + } elseif ( acf_maybe_get_POST( '_acf_changed', false ) ) { + // We're in a classic editor save request, so notify WP that fields have changed. + $post_has_changed = true; + } + + // Let WordPress decide for REST/block editor requests. + return $post_has_changed; + } + + /** + * Copies ACF field data to the latest revision. + * + * @since 6.2.6 + * + * @param integer $revision_id The ID of the revision that was just created. + * @param integer $post_id The ID of the post being updated. + * @return void + */ + public function maybe_save_revision( $revision_id, $post_id ) { + // We don't have anything to copy over yet. + if ( ! did_action( 'acf/save_post' ) ) { + delete_metadata( 'post', $post_id, '_acf_changed' ); + delete_metadata( 'post', $revision_id, '_acf_changed' ); + return; + } + + // Copy the saved meta from the main post to the latest revision. + acf_save_post_revision( $post_id ); + } + + /** + * This function is used to trick WP into thinking that one of the $post's fields has changed and + * will allow an autosave to be updated. + * Fixes an odd bug causing the preview page to render the non autosave post data on every odd attempt + * + * @type function + * @date 21/10/2014 + * @since 5.1.0 + * + * @param $fields (array) + * @return $fields + */ function wp_preview_post_fields( $fields ) { @@ -69,20 +141,18 @@ function wp_preview_post_fields( $fields ) { } - /* - * wp_save_post_revision_check_for_changes - * - * This filter will return false and force WP to save a revision. This is required due to - * WP checking only post_title, post_excerpt and post_content values, not custom fields. - * - * @type filter - * @date 19/09/13 - * - * @param $return (boolean) defaults to true - * @param $last_revision (object) the last revision that WP will compare against - * @param $post (object) the $post that WP will compare against - * @return $return (boolean) - */ + /** + * This filter will return false and force WP to save a revision. This is required due to + * WP checking only post_title, post_excerpt and post_content values, not custom fields. + * + * @type filter + * @date 19/09/13 + * + * @param $return (boolean) defaults to true + * @param $last_revision (object) the last revision that WP will compare against + * @param $post (object) the $post object that WP will compare against + * @return $return (boolean) + */ function wp_save_post_revision_check_for_changes( $return, $last_revision, $post ) { @@ -96,19 +166,17 @@ function wp_save_post_revision_check_for_changes( $return, $last_revision, $post } - /* - * wp_post_revision_fields - * - * This filter will add the ACF fields to the returned array - * Versions 3.5 and 3.6 of WP feature different uses of the revisions filters, so there are - * some hacks to allow both versions to work correctly - * - * @type filter - * @date 11/08/13 - * - * @param $post_id (int) - * @return $post_id (int) - */ + /** + * This filter will add the ACF fields to the returned array + * Versions 3.5 and 3.6 of WP feature different uses of the revisions filters, so there are + * some hacks to allow both versions to work correctly + * + * @type filter + * @date 11/08/13 + * + * @param $post_id (int) + * @return $post_id (int) + */ function wp_post_revision_fields( $fields, $post = null ) { @@ -217,20 +285,18 @@ function wp_post_revision_fields( $fields, $post = null ) { } - /* - * wp_post_revision_field - * - * This filter will load the value for the given field and return it for rendering - * - * @type filter - * @date 11/08/13 - * - * @param $value (mixed) should be false as it has not yet been loaded - * @param $field_name (string) The name of the field - * @param $post (mixed) Holds the $post object to load from - in WP 3.5, this is not passed! - * @param $direction (string) to / from - not used - * @return $value (string) - */ + /** + * This filter will load the value for the given field and return it for rendering + * + * @type filter + * @date 11/08/13 + * + * @param $value (mixed) should be false as it has not yet been loaded + * @param $field_name (string) The name of the field + * @param post (mixed) Holds the $post object to load from - in WP 3.5, this is not passed! + * @param $direction (string) to / from - not used + * @return $value (string) + */ function wp_post_revision_field( $value, $field_name, $post = null, $direction = false ) { // bail early if is empty. @@ -261,17 +327,15 @@ function wp_post_revision_field( $value, $field_name, $post = null, $direction = } - /* - * wp_restore_post_revision - * - * This action will copy and paste the metadata from a revision to the post - * - * @type action - * @date 11/08/13 - * - * @param $parent_id (int) the destination post - * @return $revision_id (int) the source post - */ + /** + * This action will copy and paste the metadata from a revision to the post + * + * @type action + * @date 11/08/13 + * + * @param $parent_id (int) the destination post + * @return $revision_id (int) the source post + */ function wp_restore_post_revision( $post_id, $revision_id ) { @@ -291,19 +355,17 @@ function wp_restore_post_revision( $post_id, $revision_id ) { } - /* - * acf_validate_post_id - * - * This function will modify the $post_id and allow loading values from a revision - * - * @type function - * @date 6/3/17 - * @since 5.5.10 - * - * @param $post_id (int) - * @param $_post_id (int) - * @return $post_id (int) - */ + /** + * This function will modify the $post_id and allow loading values from a revision + * + * @type function + * @date 6/3/17 + * @since 5.5.10 + * + * @param $post_id (int) + * @param $_post_id (int) + * @return $post_id (int) + */ function acf_validate_post_id( $post_id, $_post_id ) { @@ -363,19 +425,16 @@ function acf_validate_post_id( $post_id, $_post_id ) { endif; // class_exists check -/* -* acf_save_post_revision -* -* This function will copy meta from a post to it's latest revision -* -* @type function -* @date 26/09/2016 -* @since 5.4.0 -* -* @param $post_id (int) -* @return n/a -*/ - +/** + * This function will copy meta from a post to it's latest revision + * + * @type function + * @date 26/09/2016 + * @since 5.4.0 + * + * @param $post_id (int) + * @return n/a + */ function acf_save_post_revision( $post_id = 0 ) { // get latest revision @@ -388,19 +447,16 @@ function acf_save_post_revision( $post_id = 0 ) { } -/* -* acf_get_post_latest_revision -* -* This function will return the latest revision for a given post -* -* @type function -* @date 25/06/2016 -* @since 5.3.8 -* -* @param $post_id (int) -* @return $post_id (int) -*/ - +/** + * This function will return the latest revision for a given post + * + * @type function + * @date 25/06/2016 + * @since 5.3.8 + * + * @param $post_id (int) + * @return $post_id (int) + */ function acf_get_post_latest_revision( $post_id ) { // vars diff --git a/includes/upgrades.php b/includes/upgrades.php index 5ddc1a9..b5b50c6 100644 --- a/includes/upgrades.php +++ b/includes/upgrades.php @@ -1,15 +1,15 @@ = 34370 && $wp_current_db_version < 34370 ) { if ( acf_version_compare( acf_get_db_version(), '>', '5.5.0' ) ) { @@ -454,15 +450,15 @@ function acf_wp_upgrade_550_termmeta( $wp_db_version, $wp_current_db_version ) { add_action( 'wp_upgrade', 'acf_wp_upgrade_550_termmeta', 10, 2 ); /** - * acf_upgrade_550_taxonomy + * acf_upgrade_550_taxonomy * - * Upgrades all ACF4 termmeta for a specific taxonomy. + * Upgrades all ACF4 termmeta for a specific taxonomy. * - * @date 24/8/18 - * @since 5.7.4 + * @date 24/8/18 + * @since 5.7.4 * - * @param string $taxonomy The taxonomy name. - * @return void + * @param string $taxonomy The taxonomy name. + * @return void */ function acf_upgrade_550_taxonomy( $taxonomy ) { @@ -499,15 +495,15 @@ function acf_upgrade_550_taxonomy( $taxonomy ) { if ( $rows ) { foreach ( $rows as $row ) { - /* - Use regex to find "(_)taxonomy_(term_id)_(field_name)" and populate $matches: - Array - ( - [0] => _category_3_color - [1] => _ - [2] => 3 - [3] => color - ) + /** + * Use regex to find "(_)taxonomy_(term_id)_(field_name)" and populate $matches: + * Array + * ( + * [0] => _category_3_color + * [1] => _ + * [2] => 3 + * [3] => color + * ) */ if ( ! preg_match( "/^(_?){$taxonomy}_(\d+)_(.+)/", is_null( $row['option_name'] ) ? '' : $row['option_name'], $matches ) ) { continue; diff --git a/includes/validation.php b/includes/validation.php index 4b292c1..12f7914 100644 --- a/includes/validation.php +++ b/includes/validation.php @@ -9,18 +9,16 @@ class acf_validation { - /* - * __construct - * - * This function will setup the class functionality - * - * @type function - * @date 5/03/2014 - * @since 5.0.0 - * - * @param n/a - * @return n/a - */ + /** + * This function will setup the class functionality + * + * @type function + * @date 5/03/2014 + * @since 5.0.0 + * + * @param n/a + * @return n/a + */ function __construct() { @@ -34,19 +32,17 @@ function __construct() { } - /* - * add_error - * - * This function will add an error message for a field - * - * @type function - * @date 25/11/2013 - * @since 5.0.0 - * - * @param $input (string) name attribute of DOM elmenet - * @param $message (string) error message - * @return $post_id (int) - */ + /** + * This function will add an error message for a field + * + * @type function + * @date 25/11/2013 + * @since 5.0.0 + * + * @param $input (string) name attribute of DOM elmenet + * @param $message (string) error message + * @return $post_id (int) + */ function add_error( $input, $message ) { @@ -58,18 +54,16 @@ function add_error( $input, $message ) { } - /* - * get_error - * - * This function will return an error for a given input - * - * @type function - * @date 5/03/2016 - * @since 5.3.2 - * - * @param $input (string) name attribute of DOM elmenet - * @return (mixed) - */ + /** + * This function will return an error for a given input + * + * @type function + * @date 5/03/2016 + * @since 5.3.2 + * + * @param $input (string) name attribute of DOM elmenet + * @return (mixed) + */ function get_error( $input ) { @@ -90,18 +84,16 @@ function get_error( $input ) { } - /* - * get_errors - * - * This function will return validation errors - * - * @type function - * @date 25/11/2013 - * @since 5.0.0 - * - * @param n/a - * @return (array|boolean) - */ + /** + * This function will return validation errors + * + * @type function + * @date 25/11/2013 + * @since 5.0.0 + * + * @param n/a + * @return (array|boolean) + */ function get_errors() { @@ -115,18 +107,16 @@ function get_errors() { } - /* - * reset_errors - * - * This function will remove all errors - * - * @type function - * @date 4/03/2016 - * @since 5.3.2 - * - * @param n/a - * @return n/a - */ + /** + * This function will remove all errors + * + * @type function + * @date 4/03/2016 + * @since 5.3.2 + * + * @param n/a + * @return n/a + */ function reset_errors() { @@ -134,18 +124,16 @@ function reset_errors() { } - /* - * ajax_validate_save_post - * - * This function will validate the $_POST data via AJAX - * - * @type function - * @date 27/10/2014 - * @since 5.0.9 - * - * @param n/a - * @return n/a - */ + /** + * This function will validate the $_POST data via AJAX + * + * @type function + * @date 27/10/2014 + * @since 5.0.9 + * + * @param n/a + * @return n/a + */ function ajax_validate_save_post() { @@ -177,8 +165,6 @@ function ajax_validate_save_post() { * Loops over $_POST data and validates ACF values. * * @since 5.4.0 - * - * @return void */ public function acf_validate_save_post() { // phpcs:disable WordPress.Security.NonceVerification.Missing -- Verified elsewhere. @@ -206,19 +192,18 @@ public function acf_validate_save_post() { endif; // class_exists check -/* -* Public functions -* -* alias of acf()->validation->function() -* -* @type function -* @date 6/10/13 -* @since 5.0.0 -* -* @param n/a -* @return n/a -*/ - +/** + * Public functions + * + * alias of acf()->validation->function() + * + * @type function + * @date 6/10/13 + * @since 5.0.0 + * + * @param n/a + * @return n/a + */ function acf_add_validation_error( $input, $message = '' ) { return acf()->validation->add_error( $input, $message ); @@ -240,19 +225,16 @@ function acf_reset_validation_errors() { } -/* -* acf_validate_save_post -* -* This function will validate $_POST data and add errors -* -* @type function -* @date 25/11/2013 -* @since 5.0.0 -* -* @param $show_errors (boolean) if true, errors will be shown via a wp_die screen -* @return (boolean) -*/ - +/** + * This function will validate $_POST data and add errors + * + * @type function + * @date 25/11/2013 + * @since 5.0.0 + * + * @param $show_errors (boolean) if true, errors will be shown via a wp_die screen + * @return (boolean) + */ function acf_validate_save_post( $show_errors = false ) { // action @@ -276,7 +258,7 @@ function acf_validate_save_post( $show_errors = false ) { $message .= ''; // die - wp_die( $message, __( 'Validation failed', 'acf' ) ); + wp_die( acf_esc_html( $message ), esc_html__( 'Validation failed', 'acf' ) ); } // return @@ -284,20 +266,17 @@ function acf_validate_save_post( $show_errors = false ) { } -/* -* acf_validate_values -* -* This function will validate an array of field values -* -* @type function -* @date 6/10/13 -* @since 5.0.0 -* -* @param values (array) -* @param $input_prefix (string) -* @return n/a -*/ - +/** + * This function will validate an array of field values + * + * @type function + * @date 6/10/13 + * @since 5.0.0 + * + * @param values (array) + * @param $input_prefix (string) + * @return n/a + */ function acf_validate_values( $values, $input_prefix = '' ) { // bail early if empty @@ -323,19 +302,16 @@ function acf_validate_values( $values, $input_prefix = '' ) { } -/* -* acf_validate_value -* -* This function will validate a field's value -* -* @type function -* @date 6/10/13 -* @since 5.0.0 -* -* @param n/a -* @return n/a -*/ - +/** + * This function will validate a field's value + * + * @type function + * @date 6/10/13 + * @since 5.0.0 + * + * @param n/a + * @return n/a + */ function acf_validate_value( $value, $field, $input ) { // vars @@ -352,15 +328,15 @@ function acf_validate_value( $value, $field, $input ) { } /** - * Filters whether the value is valid. + * Filters whether the value is valid. * - * @date 28/09/13 - * @since 5.0.0 + * @date 28/09/13 + * @since 5.0.0 * - * @param bool $valid The valid status. Return a string to display a custom error message. - * @param mixed $value The value. - * @param array $field The field array. - * @param string $input The input element's name attribute. + * @param bool $valid The valid status. Return a string to display a custom error message. + * @param mixed $value The value. + * @param array $field The field array. + * @param string $input The input element's name attribute. */ $valid = apply_filters( "acf/validate_value/type={$field['type']}", $valid, $value, $field, $input ); $valid = apply_filters( "acf/validate_value/name={$field['_name']}", $valid, $value, $field, $input ); diff --git a/includes/walkers/class-acf-walker-taxonomy-field.php b/includes/walkers/class-acf-walker-taxonomy-field.php index bb780f7..4427298 100644 --- a/includes/walkers/class-acf-walker-taxonomy-field.php +++ b/includes/walkers/class-acf-walker-taxonomy-field.php @@ -55,9 +55,9 @@ function __construct( $field ) { * * @since 1.0.0 * - * @param string $output Used to append additional content (passed by reference). - * @param int $depth Depth of category. Used for tab indentation. - * @param array $args An array of arguments. @see wp_terms_checklist() + * @param string $output Used to append additional content (passed by reference). + * @param integer $depth Depth of category. Used for tab indentation. + * @param array $args An array of arguments. @see wp_terms_checklist() */ public function start_lvl( &$output, $depth = 0, $args = array() ) { $indent = str_repeat( "\t", $depth ); @@ -71,9 +71,9 @@ public function start_lvl( &$output, $depth = 0, $args = array() ) { * * @since 1.0.0 * - * @param string $output Used to append additional content (passed by reference). - * @param int $depth Depth of category. Used for tab indentation. - * @param array $args An array of arguments. @see wp_terms_checklist() + * @param string $output Used to append additional content (passed by reference). + * @param integer $depth Depth of category. Used for tab indentation. + * @param array $args An array of arguments. @see wp_terms_checklist() */ public function end_lvl( &$output, $depth = 0, $args = array() ) { $indent = str_repeat( "\t", $depth ); @@ -87,11 +87,11 @@ public function end_lvl( &$output, $depth = 0, $args = array() ) { * * @since 1.0.0 * - * @param string $output Used to append additional content (passed by reference). - * @param WP_Term $term The current term object. - * @param int $depth Depth of the term in reference to parents. Default 0. - * @param array $args An array of arguments. @see wp_terms_checklist() - * @param int $id ID of the current term. + * @param string $output Used to append additional content (passed by reference). + * @param WP_Term $term The current term object. + * @param integer $depth Depth of the term in reference to parents. Default 0. + * @param array $args An array of arguments. @see wp_terms_checklist() + * @param integer $id ID of the current term. */ public function start_el( &$output, $term, $depth = 0, $args = array(), $id = 0 ) { $is_selected = in_array( $term->term_id, $this->field['value'] ); @@ -122,7 +122,7 @@ public function start_el( &$output, $term, $depth = 0, $args = array(), $id = 0 * * @param string $output Used to append additional content (passed by reference). * @param WP_Term $category The current term object. - * @param int $depth Depth of the term in reference to parents. Default 0. + * @param integer $depth Depth of the term in reference to parents. Default 0. * @param array $args An array of arguments. @see wp_terms_checklist() */ public function end_el( &$output, $category, $depth = 0, $args = array() ) { diff --git a/includes/wpml.php b/includes/wpml.php index 464ee3a..b1f0e95 100644 --- a/includes/wpml.php +++ b/includes/wpml.php @@ -9,15 +9,15 @@ class ACF_WPML_Compatibility { /** - * __construct + * __construct * - * Sets up the class functionality. + * Sets up the class functionality. * - * @date 23/06/12 - * @since 3.1.8 + * @date 23/06/12 + * @since 3.1.8 * - * @param void - * @return void + * @param void + * @return void */ function __construct() { @@ -55,16 +55,16 @@ function __construct() { } /** - * is_translatable + * is_translatable * - * Returns true if the acf-field-group post type is translatable. - * Also adds compatibility with ACF4 settings + * Returns true if the acf-field-group post type is translatable. + * Also adds compatibility with ACF4 settings * - * @date 10/04/2015 - * @since 5.2.3 + * @date 10/04/2015 + * @since 5.2.3 * - * @param void - * @return bool + * @param void + * @return boolean */ function is_translatable() { @@ -102,16 +102,16 @@ function is_translatable() { } /** - * upgrade_500_field_group + * upgrade_500_field_group * - * Update the icl_translations table data when creating the field groups. + * Update the icl_translations table data when creating the field groups. * - * @date 10/04/2015 - * @since 5.2.3 + * @date 10/04/2015 + * @since 5.2.3 * - * @param array $field_group The new field group array. - * @param object $ofg The old field group WP_Post object. - * @return void + * @param array $field_group The new field group array. + * @param object $ofg The old field group WP_Post object. + * @return void */ function upgrade_500_field_group( $field_group, $ofg ) { @@ -181,20 +181,20 @@ function upgrade_500_field_group( $field_group, $ofg ) { } /** - * settings_save_json + * settings_save_json * - * Modifies the json path. + * Modifies the json path. * - * @date 19/05/2014 - * @since 5.0.0 + * @date 19/05/2014 + * @since 5.0.0 * - * @param string $path The json save path. - * @return string + * @param string $path The json save path. + * @return string */ function settings_save_json( $path ) { // bail early if dir does not exist - if ( ! is_writable( $path ) ) { + if ( ! wp_is_writable( $path ) ) { return $path; } @@ -203,7 +203,7 @@ function settings_save_json( $path ) { // make dir if does not exist if ( ! file_exists( $path ) ) { - mkdir( $path, 0777, true ); + mkdir( $path, 0777, true ); //phpcs:ignore WordPress.WP.AlternativeFunctions.file_system_operations_mkdir -- Allow legacy mkdir call as this may fire outside admin. } // return @@ -211,15 +211,15 @@ function settings_save_json( $path ) { } /** - * settings_load_json + * settings_load_json * - * Modifies the json path. + * Modifies the json path. * - * @date 19/05/2014 - * @since 5.0.0 + * @date 19/05/2014 + * @since 5.0.0 * - * @param string $path The json save path. - * @return string + * @param string $path The json save path. + * @return string */ function settings_load_json( $paths ) { @@ -235,15 +235,15 @@ function settings_load_json( $paths ) { } /** - * icl_make_duplicate + * icl_make_duplicate * - * description + * description * - * @date 26/02/2014 - * @since 5.0.0 + * @date 26/02/2014 + * @since 5.0.0 * - * @param void - * @return void + * @param void + * @return void */ function icl_make_duplicate( $master_post_id, $lang, $postarr, $id ) { @@ -267,16 +267,16 @@ function icl_make_duplicate( $master_post_id, $lang, $postarr, $id ) { /** - * verify_ajax + * verify_ajax * - * Sets the correct language during AJAX requests. + * Sets the correct language during AJAX requests. * - * @type function - * @date 7/08/2015 - * @since 5.2.3 + * @type function + * @date 7/08/2015 + * @since 5.2.3 * - * @param void - * @return void + * @param void + * @return void */ function verify_ajax() { @@ -291,16 +291,16 @@ function verify_ajax() { } /** - * get_translatable_documents + * get_translatable_documents * - * Removes 'acf-field' from the available post types for translation. + * Removes 'acf-field' from the available post types for translation. * - * @type function - * @date 17/8/17 - * @since 5.6.0 + * @type function + * @date 17/8/17 + * @since 5.6.0 * - * @param array $icl_post_types The array of post types. - * @return array + * @param array $icl_post_types The array of post types. + * @return array */ function get_translatable_documents( $icl_post_types ) { diff --git a/lang/acf-ar.mo b/lang/acf-ar.mo deleted file mode 100644 index a6f745e..0000000 Binary files a/lang/acf-ar.mo and /dev/null differ diff --git a/lang/acf-ar.po b/lang/acf-ar.po deleted file mode 100644 index a05af8c..0000000 --- a/lang/acf-ar.po +++ /dev/null @@ -1,853 +0,0 @@ -# Advanced Custom Fields Translations are a combination of translate.wordpress.org contributions, -# combined with user contributed strings for the PRO version. -# Translations from translate.wordpress.org take priority over translations in this file. -# translate.wordpress.org contributions are synced at the time of each release. -# -# If you would like to contribute translations, please visit -# https://translate.wordpress.org/projects/wp-plugins/advanced-custom-fields/stable/ -# -# For additional ACF PRO strings, please submit a pull request over on the ACF GitHub repo at -# http://github.com/advancedcustomfields/acf using the .pot (and any existing .po) files in /lang/pro/ -# -# This file is distributed under the same license as Advanced Custom Fields. -msgid "" -msgstr "" -"PO-Revision-Date: 2023-11-28T09:14:32+00:00\n" -"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n" -"Language: ar\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: gettext\n" -"Project-Id-Version: Advanced Custom Fields\n" - -#: pro/acf-pro.php:27 -msgid "Advanced Custom Fields PRO" -msgstr "الحقول المخصصة المتقدمة للمحترفين" - -#: pro/blocks.php:170 -msgid "Block type name is required." -msgstr "اسم نوع الكتلة مطلوب." - -#. translators: The name of the block type -#: pro/blocks.php:178 -msgid "Block type \"%s\" is already registered." -msgstr "نوع الكتلة \"%s\" مسجل بالفعل." - -#: pro/blocks.php:726 -msgid "Switch to Edit" -msgstr "قم بالتبديل للتحرير" - -#: pro/blocks.php:727 -msgid "Switch to Preview" -msgstr "قم بالتبديل للمعاينة" - -#: pro/blocks.php:728 -msgid "Change content alignment" -msgstr "" - -#. translators: %s: Block type title -#: pro/blocks.php:731 -msgid "%s settings" -msgstr "%s الإعدادات" - -#: pro/blocks.php:936 -msgid "This block contains no editable fields." -msgstr "" - -#. translators: %s: an admin URL to the field group edit screen -#: pro/blocks.php:942 -msgid "" -"Assign a field group to add fields to " -"this block." -msgstr "" - -#: pro/options-page.php:47 -msgid "Options" -msgstr "خيارات" - -#: pro/options-page.php:77, pro/fields/class-acf-field-gallery.php:527 -msgid "Update" -msgstr "تحديث" - -#: pro/options-page.php:78 -msgid "Options Updated" -msgstr "تم تحديث الإعدادات" - -#: pro/updates.php:99 -#, fuzzy -#| msgid "" -#| "To enable updates, please enter your license key on the Updates page. If you don't have a licence key, please see details & pricing." -msgid "" -"To enable updates, please enter your license key on the Updates page. If you don't have a licence key, please see details & pricing." -msgstr "" -"لتمكين التحديثات، الرجاء إدخال مفتاح الترخيص الخاص بك على صفحة التحديثات . إذا لم يكن لديك مفتاح ترخيص، يرجى الاطلاع على التفاصيل والتسعير." - -#: pro/updates.php:159 -msgid "" -"ACF Activation Error. Your defined license key has changed, but an " -"error occurred when deactivating your old licence" -msgstr "" - -#: pro/updates.php:154 -msgid "" -"ACF Activation Error. Your defined license key has changed, but an " -"error occurred when connecting to activation server" -msgstr "" - -#: pro/updates.php:192 -msgid "ACF Activation Error" -msgstr "" - -#: pro/updates.php:187 -#, fuzzy -#| msgid "Error. Could not connect to update server" -msgid "" -"ACF Activation Error. An error occurred when connecting to activation " -"server" -msgstr "خطأ. تعذر الاتصال بخادم التحديث" - -#: pro/updates.php:279 -msgid "Check Again" -msgstr "تحقق مرة اخرى" - -#: pro/updates.php:593 -#, fuzzy -#| msgid "Error. Could not connect to update server" -msgid "ACF Activation Error. Could not connect to activation server" -msgstr "خطأ. تعذر الاتصال بخادم التحديث" - -#: pro/admin/admin-options-page.php:195 -msgid "Publish" -msgstr "نشر" - -#: pro/admin/admin-options-page.php:199 -msgid "" -"No Custom Field Groups found for this options page. Create a " -"Custom Field Group" -msgstr "" -"لم يتم العثور على أية \"مجموعات حقول مخصصة لصفحة الخيارات هذة. أنشئ مجموعة حقول مخصصة" - -#: pro/admin/admin-options-page.php:309 -msgid "Edit field group" -msgstr "تحرير مجموعة الحقول" - -#: pro/admin/admin-updates.php:52 -msgid "Error. Could not connect to update server" -msgstr "خطأ. تعذر الاتصال بخادم التحديث" - -#: pro/admin/admin-updates.php:122, -#: pro/admin/views/html-settings-updates.php:12 -msgid "Updates" -msgstr "تحديثات" - -#: pro/admin/admin-updates.php:212 -msgid "" -"Error. Could not authenticate update package. Please check again or " -"deactivate and reactivate your ACF PRO license." -msgstr "" -" خطأ . تعذرت مصادقة حزمة التحديث. يرجى التحقق مرة أخرى أو إلغاء " -"تنشيط وإعادة تنشيط ترخيص ACF PRO الخاص بك." - -#: pro/admin/admin-updates.php:199 -#, fuzzy -#| msgid "" -#| "Error. Could not authenticate update package. Please check again " -#| "or deactivate and reactivate your ACF PRO license." -msgid "" -"Error. Your license for this site has expired or been deactivated. " -"Please reactivate your ACF PRO license." -msgstr "" -" خطأ . تعذرت مصادقة حزمة التحديث. يرجى التحقق مرة أخرى أو إلغاء " -"تنشيط وإعادة تنشيط ترخيص ACF PRO الخاص بك." - -#: pro/fields/class-acf-field-clone.php:25 -msgctxt "noun" -msgid "Clone" -msgstr "تكرار" - -#: pro/fields/class-acf-field-clone.php:27, -#: pro/fields/class-acf-field-repeater.php:31 -msgid "" -"Allows you to select and display existing fields. It does not duplicate any " -"fields in the database, but loads and displays the selected fields at run-" -"time. The Clone field can either replace itself with the selected fields or " -"display the selected fields as a group of subfields." -msgstr "" - -#: pro/fields/class-acf-field-clone.php:818, -#: pro/fields/class-acf-field-flexible-content.php:78 -msgid "Fields" -msgstr "حقول" - -#: pro/fields/class-acf-field-clone.php:819 -msgid "Select one or more fields you wish to clone" -msgstr "حدد حقل واحد أو أكثر ترغب في تكراره" - -#: pro/fields/class-acf-field-clone.php:838 -msgid "Display" -msgstr "عرض" - -#: pro/fields/class-acf-field-clone.php:839 -msgid "Specify the style used to render the clone field" -msgstr "حدد النمط المستخدم لعرض حقل التكرار" - -#: pro/fields/class-acf-field-clone.php:844 -msgid "Group (displays selected fields in a group within this field)" -msgstr "المجموعة (تعرض الحقول المحددة في مجموعة ضمن هذا الحقل)" - -#: pro/fields/class-acf-field-clone.php:845 -msgid "Seamless (replaces this field with selected fields)" -msgstr "سلس (يستبدل هذا الحقل بالحقول المحددة)" - -#: pro/fields/class-acf-field-clone.php:854, -#: pro/fields/class-acf-field-flexible-content.php:558, -#: pro/fields/class-acf-field-flexible-content.php:616, -#: pro/fields/class-acf-field-repeater.php:177 -msgid "Layout" -msgstr "المخطط" - -#: pro/fields/class-acf-field-clone.php:855 -msgid "Specify the style used to render the selected fields" -msgstr "حدد النمط المستخدم لعرض الحقول المحددة" - -#: pro/fields/class-acf-field-clone.php:860, -#: pro/fields/class-acf-field-flexible-content.php:629, -#: pro/fields/class-acf-field-repeater.php:185, -#: pro/locations/class-acf-location-block.php:22 -msgid "Block" -msgstr "كتلة" - -#: pro/fields/class-acf-field-clone.php:861, -#: pro/fields/class-acf-field-flexible-content.php:628, -#: pro/fields/class-acf-field-repeater.php:184 -msgid "Table" -msgstr "جدول" - -#: pro/fields/class-acf-field-clone.php:862, -#: pro/fields/class-acf-field-flexible-content.php:630, -#: pro/fields/class-acf-field-repeater.php:186 -msgid "Row" -msgstr "صف" - -#: pro/fields/class-acf-field-clone.php:868 -msgid "Labels will be displayed as %s" -msgstr "سيتم عرض التسمية كـ %s" - -#: pro/fields/class-acf-field-clone.php:873 -msgid "Prefix Field Labels" -msgstr "بادئة تسمية الحقول" - -#: pro/fields/class-acf-field-clone.php:883 -msgid "Values will be saved as %s" -msgstr "سيتم حفظ القيم كـ %s" - -#: pro/fields/class-acf-field-clone.php:888 -msgid "Prefix Field Names" -msgstr "بادئة أسماء الحقول" - -#: pro/fields/class-acf-field-clone.php:1005 -msgid "Unknown field" -msgstr "حقل غير معروف" - -#: pro/fields/class-acf-field-clone.php:1009 -msgid "(no title)" -msgstr "(بدون عنوان)" - -#: pro/fields/class-acf-field-clone.php:1042 -msgid "Unknown field group" -msgstr "مجموعة حقول غير معروفة" - -#: pro/fields/class-acf-field-clone.php:1046 -msgid "All fields from %s field group" -msgstr "جميع الحقول من مجموعة الحقول %s" - -#: pro/fields/class-acf-field-flexible-content.php:25 -msgid "Flexible Content" -msgstr "المحتوى المرن" - -#: pro/fields/class-acf-field-flexible-content.php:27 -msgid "" -"Allows you to define, create and manage content with total control by " -"creating layouts that contain subfields that content editors can choose from." -msgstr "" - -#: pro/fields/class-acf-field-flexible-content.php:27 -msgid "We do not recommend using this field in ACF Blocks." -msgstr "" - -#: pro/fields/class-acf-field-flexible-content.php:36, -#: pro/fields/class-acf-field-repeater.php:103, -#: pro/fields/class-acf-field-repeater.php:297 -msgid "Add Row" -msgstr "إضافة صف" - -#: pro/fields/class-acf-field-flexible-content.php:76, -#: pro/fields/class-acf-field-flexible-content.php:943, -#: pro/fields/class-acf-field-flexible-content.php:1022 -msgid "layout" -msgid_plural "layouts" -msgstr[0] "التخطيط" -msgstr[1] "التخطيط" -msgstr[2] "التخطيط" -msgstr[3] "التخطيط" -msgstr[4] "التخطيط" -msgstr[5] "التخطيط" - -#: pro/fields/class-acf-field-flexible-content.php:77 -msgid "layouts" -msgstr "التخطيطات" - -#: pro/fields/class-acf-field-flexible-content.php:81, -#: pro/fields/class-acf-field-flexible-content.php:942, -#: pro/fields/class-acf-field-flexible-content.php:1021 -msgid "This field requires at least {min} {label} {identifier}" -msgstr "يتطلب هذا الحقل على الأقل {min} {label} {identifier}" - -#: pro/fields/class-acf-field-flexible-content.php:82 -msgid "This field has a limit of {max} {label} {identifier}" -msgstr "يحتوي هذا الحقل حد {max} {identifier}" - -#: pro/fields/class-acf-field-flexible-content.php:85 -msgid "{available} {label} {identifier} available (max {max})" -msgstr "{available} {label} {identifier} متاح (max {max})" - -#: pro/fields/class-acf-field-flexible-content.php:86 -msgid "{required} {label} {identifier} required (min {min})" -msgstr "{required} {label} {identifier} مطلوب (min {min})" - -#: pro/fields/class-acf-field-flexible-content.php:89 -msgid "Flexible Content requires at least 1 layout" -msgstr "يتطلب المحتوى المرن تخطيط واحد على الأقل" - -#: pro/fields/class-acf-field-flexible-content.php:282 -msgid "Click the \"%s\" button below to start creating your layout" -msgstr "انقر فوق الزر \"%s\" أدناه لبدء إنشاء التخطيط الخاص بك" - -#: pro/fields/class-acf-field-flexible-content.php:420, -#: pro/fields/class-acf-repeater-table.php:366 -msgid "Drag to reorder" -msgstr "اسحب لإعادة الترتيب" - -#: pro/fields/class-acf-field-flexible-content.php:423 -msgid "Add layout" -msgstr "إضافة مخطط جديد" - -#: pro/fields/class-acf-field-flexible-content.php:424 -#, fuzzy -#| msgid "Duplicate Layout" -msgid "Duplicate layout" -msgstr "تكرار التخطيط" - -#: pro/fields/class-acf-field-flexible-content.php:425 -msgid "Remove layout" -msgstr "إزالة المخطط" - -#: pro/fields/class-acf-field-flexible-content.php:426, -#: pro/fields/class-acf-repeater-table.php:382 -msgid "Click to toggle" -msgstr "انقر للتبديل" - -#: pro/fields/class-acf-field-flexible-content.php:562 -msgid "Delete Layout" -msgstr "حذف المخطط" - -#: pro/fields/class-acf-field-flexible-content.php:563 -msgid "Duplicate Layout" -msgstr "تكرار التخطيط" - -#: pro/fields/class-acf-field-flexible-content.php:564 -msgid "Add New Layout" -msgstr "إضافة مخطط جديد" - -#: pro/fields/class-acf-field-flexible-content.php:564 -#, fuzzy -#| msgid "Add layout" -msgid "Add Layout" -msgstr "إضافة مخطط جديد" - -#: pro/fields/class-acf-field-flexible-content.php:593 -msgid "Label" -msgstr "تسمية" - -#: pro/fields/class-acf-field-flexible-content.php:609 -msgid "Name" -msgstr "الاسم" - -#: pro/fields/class-acf-field-flexible-content.php:647 -msgid "Min" -msgstr "الحد الأدنى" - -#: pro/fields/class-acf-field-flexible-content.php:662 -msgid "Max" -msgstr "الحد أقصى" - -#: pro/fields/class-acf-field-flexible-content.php:705 -msgid "Minimum Layouts" -msgstr "الحد الأدنى للتخطيطات" - -#: pro/fields/class-acf-field-flexible-content.php:716 -msgid "Maximum Layouts" -msgstr "الحد الأقصى للتخطيطات" - -#: pro/fields/class-acf-field-flexible-content.php:727, -#: pro/fields/class-acf-field-repeater.php:293 -msgid "Button Label" -msgstr "تسمية الزر" - -#: pro/fields/class-acf-field-flexible-content.php:1710, -#: pro/fields/class-acf-field-repeater.php:918 -msgid "%s must be of type array or null." -msgstr "" - -#: pro/fields/class-acf-field-flexible-content.php:1721 -msgid "%1$s must contain at least %2$s %3$s layout." -msgid_plural "%1$s must contain at least %2$s %3$s layouts." -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" - -#: pro/fields/class-acf-field-flexible-content.php:1737 -msgid "%1$s must contain at most %2$s %3$s layout." -msgid_plural "%1$s must contain at most %2$s %3$s layouts." -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" - -#: pro/fields/class-acf-field-gallery.php:25 -msgid "Gallery" -msgstr "الالبوم" - -#: pro/fields/class-acf-field-gallery.php:27 -msgid "" -"An interactive interface for managing a collection of attachments, such as " -"images." -msgstr "" - -#: pro/fields/class-acf-field-gallery.php:77 -msgid "Add Image to Gallery" -msgstr "اضافة صورة للمعرض" - -#: pro/fields/class-acf-field-gallery.php:78 -msgid "Maximum selection reached" -msgstr "وصلت للحد الأقصى" - -#: pro/fields/class-acf-field-gallery.php:324 -msgid "Length" -msgstr "الطول" - -#: pro/fields/class-acf-field-gallery.php:339 -msgid "Edit" -msgstr "تحرير" - -#: pro/fields/class-acf-field-gallery.php:340, -#: pro/fields/class-acf-field-gallery.php:495 -msgid "Remove" -msgstr "ازالة" - -#: pro/fields/class-acf-field-gallery.php:356 -msgid "Title" -msgstr "العنوان" - -#: pro/fields/class-acf-field-gallery.php:368 -msgid "Caption" -msgstr "كلمات توضيحية" - -#: pro/fields/class-acf-field-gallery.php:380 -msgid "Alt Text" -msgstr "النص البديل" - -#: pro/fields/class-acf-field-gallery.php:392 -msgid "Description" -msgstr "الوصف" - -#: pro/fields/class-acf-field-gallery.php:504 -msgid "Add to gallery" -msgstr "اضافة الى المعرض" - -#: pro/fields/class-acf-field-gallery.php:508 -msgid "Bulk actions" -msgstr "اجراءات جماعية" - -#: pro/fields/class-acf-field-gallery.php:509 -msgid "Sort by date uploaded" -msgstr "ترتيب حسب تاريخ الرفع" - -#: pro/fields/class-acf-field-gallery.php:510 -msgid "Sort by date modified" -msgstr "ترتيب حسب تاريخ التعديل" - -#: pro/fields/class-acf-field-gallery.php:511 -msgid "Sort by title" -msgstr "ترتيب حسب العنوان" - -#: pro/fields/class-acf-field-gallery.php:512 -msgid "Reverse current order" -msgstr "عكس الترتيب الحالي" - -#: pro/fields/class-acf-field-gallery.php:524 -msgid "Close" -msgstr "إغلاق" - -#: pro/fields/class-acf-field-gallery.php:556 -msgid "Return Format" -msgstr "التنسيق المسترجع" - -#: pro/fields/class-acf-field-gallery.php:562 -msgid "Image Array" -msgstr "مصفوفة الصور" - -#: pro/fields/class-acf-field-gallery.php:563 -msgid "Image URL" -msgstr "رابط الصورة" - -#: pro/fields/class-acf-field-gallery.php:564 -msgid "Image ID" -msgstr "معرف الصورة" - -#: pro/fields/class-acf-field-gallery.php:572 -msgid "Library" -msgstr "المكتبة" - -#: pro/fields/class-acf-field-gallery.php:573 -msgid "Limit the media library choice" -msgstr "الحد من اختيار مكتبة الوسائط" - -#: pro/fields/class-acf-field-gallery.php:578, -#: pro/locations/class-acf-location-block.php:66 -msgid "All" -msgstr "الكل" - -#: pro/fields/class-acf-field-gallery.php:579 -msgid "Uploaded to post" -msgstr "مرفوع الى المقالة" - -#: pro/fields/class-acf-field-gallery.php:615 -msgid "Minimum Selection" -msgstr "الحد الأدنى للاختيار" - -#: pro/fields/class-acf-field-gallery.php:625 -msgid "Maximum Selection" -msgstr "الحد الأقصى للاختيار" - -#: pro/fields/class-acf-field-gallery.php:635 -msgid "Minimum" -msgstr "الحد الأدنى" - -#: pro/fields/class-acf-field-gallery.php:636, -#: pro/fields/class-acf-field-gallery.php:672 -msgid "Restrict which images can be uploaded" -msgstr "تقييد الصور التي يمكن رفعها" - -#: pro/fields/class-acf-field-gallery.php:639, -#: pro/fields/class-acf-field-gallery.php:675 -msgid "Width" -msgstr "العرض" - -#: pro/fields/class-acf-field-gallery.php:650, -#: pro/fields/class-acf-field-gallery.php:686 -msgid "Height" -msgstr "الإرتفاع" - -#: pro/fields/class-acf-field-gallery.php:662, -#: pro/fields/class-acf-field-gallery.php:698 -msgid "File size" -msgstr "حجم الملف" - -#: pro/fields/class-acf-field-gallery.php:671 -msgid "Maximum" -msgstr "الحد الأقصى" - -#: pro/fields/class-acf-field-gallery.php:707 -msgid "Allowed file types" -msgstr "أنواع الملفات المسموح بها" - -#: pro/fields/class-acf-field-gallery.php:708 -msgid "Comma separated list. Leave blank for all types" -msgstr "قائمة مفصولة بفواصل. اترك المساحة فارغة للسماح بالكل" - -#: pro/fields/class-acf-field-gallery.php:727 -msgid "Insert" -msgstr "إدراج" - -#: pro/fields/class-acf-field-gallery.php:728 -msgid "Specify where new attachments are added" -msgstr "حدد مكان إضافة المرفقات الجديدة" - -#: pro/fields/class-acf-field-gallery.php:732 -msgid "Append to the end" -msgstr "إلحاق بالنهاية" - -#: pro/fields/class-acf-field-gallery.php:733 -msgid "Prepend to the beginning" -msgstr "إلحاق بالبداية" - -#: pro/fields/class-acf-field-gallery.php:741 -msgid "Preview Size" -msgstr "حجم المعاينة" - -#: pro/fields/class-acf-field-gallery.php:844 -#, fuzzy -#| msgid "%s requires at least %s selection" -#| msgid_plural "%s requires at least %s selections" -msgid "%1$s requires at least %2$s selection" -msgid_plural "%1$s requires at least %2$s selections" -msgstr[0] "%s يتطلب على الأقل %s تحديد" -msgstr[1] "%s يتطلب على الأقل %s تحديد" -msgstr[2] "%s يتطلب على الأقل %s تحديدان" -msgstr[3] "%s يتطلب على الأقل %s تحديد" -msgstr[4] "%s يتطلب على الأقل %s تحديد" -msgstr[5] "%s يتطلب على الأقل %s تحديد" - -#: pro/fields/class-acf-field-repeater.php:29 -msgid "Repeater" -msgstr "المكرر" - -#: pro/fields/class-acf-field-repeater.php:66, -#: pro/fields/class-acf-field-repeater.php:463 -#, fuzzy -#| msgid "Minimum rows reached ({min} rows)" -msgid "Minimum rows not reached ({min} rows)" -msgstr "وصلت للحد الأدنى من الصفوف ({min} صف)" - -#: pro/fields/class-acf-field-repeater.php:67 -msgid "Maximum rows reached ({max} rows)" -msgstr "بلغت الحد الأقصى من الصفوف ({max} صف)" - -#: pro/fields/class-acf-field-repeater.php:68 -#, fuzzy -#| msgid "Error loading field." -msgid "Error loading page" -msgstr "خطأ في تحميل الحقل." - -#: pro/fields/class-acf-field-repeater.php:69 -msgid "Order will be assigned upon save" -msgstr "" - -#: pro/fields/class-acf-field-repeater.php:162 -msgid "Sub Fields" -msgstr "الحقول الفرعية" - -#: pro/fields/class-acf-field-repeater.php:195 -#, fuzzy -#| msgid "Position" -msgid "Pagination" -msgstr "الموضع" - -#: pro/fields/class-acf-field-repeater.php:196 -msgid "Useful for fields with a large number of rows." -msgstr "" - -#: pro/fields/class-acf-field-repeater.php:207 -#, fuzzy -#| msgid "Posts Page" -msgid "Rows Per Page" -msgstr "صفحة المقالات" - -#: pro/fields/class-acf-field-repeater.php:208 -#, fuzzy -#| msgid "Select the taxonomy to be displayed" -msgid "Set the number of rows to be displayed on a page." -msgstr "حدد التصنيف الذي سيتم عرضه" - -#: pro/fields/class-acf-field-repeater.php:240 -msgid "Minimum Rows" -msgstr "الحد الأدنى من الصفوف" - -#: pro/fields/class-acf-field-repeater.php:251 -msgid "Maximum Rows" -msgstr "الحد الأقصى من الصفوف" - -#: pro/fields/class-acf-field-repeater.php:281 -msgid "Collapsed" -msgstr "طي" - -#: pro/fields/class-acf-field-repeater.php:282 -msgid "Select a sub field to show when row is collapsed" -msgstr "حدد حقل فرعي للإظهار عند طي الصف" - -#: pro/fields/class-acf-field-repeater.php:1045 -msgid "Invalid nonce." -msgstr "غير صالح" - -#: pro/fields/class-acf-field-repeater.php:1060 -#, fuzzy -#| msgid "Invalid nonce." -msgid "Invalid field key or name." -msgstr "غير صالح" - -#: pro/fields/class-acf-field-repeater.php:1069 -msgid "There was an error retrieving the field." -msgstr "" - -#: pro/fields/class-acf-repeater-table.php:369 -#, fuzzy -#| msgid "Drag to reorder" -msgid "Click to reorder" -msgstr "اسحب لإعادة الترتيب" - -#: pro/fields/class-acf-repeater-table.php:402 -msgid "Add row" -msgstr "إضافة صف" - -#: pro/fields/class-acf-repeater-table.php:403 -#, fuzzy -#| msgid "Duplicate" -msgid "Duplicate row" -msgstr "تكرار" - -#: pro/fields/class-acf-repeater-table.php:404 -msgid "Remove row" -msgstr "إزالة صف" - -#: pro/fields/class-acf-repeater-table.php:448, -#: pro/fields/class-acf-repeater-table.php:465, -#: pro/fields/class-acf-repeater-table.php:466 -#, fuzzy -#| msgid "Current User" -msgid "Current Page" -msgstr "المستخدم الحالي" - -#: pro/fields/class-acf-repeater-table.php:456, -#: pro/fields/class-acf-repeater-table.php:457 -#, fuzzy -#| msgid "Front Page" -msgid "First Page" -msgstr "الصفحة الرئسية" - -#: pro/fields/class-acf-repeater-table.php:460, -#: pro/fields/class-acf-repeater-table.php:461 -#, fuzzy -#| msgid "Posts Page" -msgid "Previous Page" -msgstr "صفحة المقالات" - -#. translators: 1: Current page, 2: Total pages. -#: pro/fields/class-acf-repeater-table.php:470 -msgctxt "paging" -msgid "%1$s of %2$s" -msgstr "" - -#: pro/fields/class-acf-repeater-table.php:477, -#: pro/fields/class-acf-repeater-table.php:478 -#, fuzzy -#| msgid "Front Page" -msgid "Next Page" -msgstr "الصفحة الرئسية" - -#: pro/fields/class-acf-repeater-table.php:481, -#: pro/fields/class-acf-repeater-table.php:482 -#, fuzzy -#| msgid "Posts Page" -msgid "Last Page" -msgstr "صفحة المقالات" - -#: pro/locations/class-acf-location-block.php:71 -#, fuzzy -#| msgid "No options pages exist" -msgid "No block types exist" -msgstr "لا توجد صفحة خيارات" - -#: pro/locations/class-acf-location-options-page.php:22 -msgid "Options Page" -msgstr "خيارات الصفحة" - -#: pro/locations/class-acf-location-options-page.php:70 -msgid "No options pages exist" -msgstr "لا توجد صفحة خيارات" - -#: pro/admin/views/html-settings-updates.php:6 -msgid "Deactivate License" -msgstr "تعطيل الترخيص" - -#: pro/admin/views/html-settings-updates.php:6 -msgid "Activate License" -msgstr "تفعيل الترخيص" - -#: pro/admin/views/html-settings-updates.php:16 -msgid "License Information" -msgstr "معلومات الترخيص" - -#: pro/admin/views/html-settings-updates.php:34 -msgid "" -"To unlock updates, please enter your license key below. If you don't have a " -"licence key, please see details & pricing." -msgstr "" -"لتمكين التحديثات، الرجاء إدخال مفتاح الترخيص الخاص بك أدناه. إذا لم يكن لديك " -"مفتاح ترخيص، يرجى الاطلاع على التفاصيل والتسعير." - -#: pro/admin/views/html-settings-updates.php:37 -msgid "License Key" -msgstr "مفتاح الترخيص" - -#: pro/admin/views/html-settings-updates.php:22 -msgid "Your license key is defined in wp-config.php." -msgstr "" - -#: pro/admin/views/html-settings-updates.php:29 -#, fuzzy -#| msgid "Better Validation" -msgid "Retry Activation" -msgstr "تحقق افضل" - -#: pro/admin/views/html-settings-updates.php:61 -msgid "Update Information" -msgstr "معلومات التحديث" - -#: pro/admin/views/html-settings-updates.php:68 -msgid "Current Version" -msgstr "النسخة الحالية" - -#: pro/admin/views/html-settings-updates.php:76 -msgid "Latest Version" -msgstr "آخر نسخة" - -#: pro/admin/views/html-settings-updates.php:84 -msgid "Update Available" -msgstr "هنالك تحديث متاح" - -#: pro/admin/views/html-settings-updates.php:91 -msgid "No" -msgstr "لا" - -#: pro/admin/views/html-settings-updates.php:89 -msgid "Yes" -msgstr "نعم" - -#: pro/admin/views/html-settings-updates.php:98 -msgid "Upgrade Notice" -msgstr "إشعار الترقية" - -#: pro/admin/views/html-settings-updates.php:126 -msgid "Check For Updates" -msgstr "" - -#: pro/admin/views/html-settings-updates.php:121 -#, fuzzy -#| msgid "Please enter your license key above to unlock updates" -msgid "Enter your license key to unlock updates" -msgstr "يرجى إدخال مفتاح الترخيص أعلاه لإلغاء تأمين التحديثات" - -#: pro/admin/views/html-settings-updates.php:119 -msgid "Update Plugin" -msgstr "تحديث الاضافة" - -#: pro/admin/views/html-settings-updates.php:117 -#, fuzzy -#| msgid "Please enter your license key above to unlock updates" -msgid "Please reactivate your license to unlock updates" -msgstr "يرجى إدخال مفتاح الترخيص أعلاه لإلغاء تأمين التحديثات" diff --git a/lang/acf-bg_BG.mo b/lang/acf-bg_BG.mo deleted file mode 100644 index 13977ca..0000000 Binary files a/lang/acf-bg_BG.mo and /dev/null differ diff --git a/lang/acf-bg_BG.po b/lang/acf-bg_BG.po deleted file mode 100644 index 49bd55c..0000000 --- a/lang/acf-bg_BG.po +++ /dev/null @@ -1,803 +0,0 @@ -# Advanced Custom Fields Translations are a combination of translate.wordpress.org contributions, -# combined with user contributed strings for the PRO version. -# Translations from translate.wordpress.org take priority over translations in this file. -# translate.wordpress.org contributions are synced at the time of each release. -# -# If you would like to contribute translations, please visit -# https://translate.wordpress.org/projects/wp-plugins/advanced-custom-fields/stable/ -# -# For additional ACF PRO strings, please submit a pull request over on the ACF GitHub repo at -# http://github.com/advancedcustomfields/acf using the .pot (and any existing .po) files in /lang/pro/ -# -# This file is distributed under the same license as Advanced Custom Fields. -msgid "" -msgstr "" -"PO-Revision-Date: 2023-11-28T09:14:32+00:00\n" -"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n" -"Language: bg_BG\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: gettext\n" -"Project-Id-Version: Advanced Custom Fields\n" - -#: pro/acf-pro.php:27 -msgid "Advanced Custom Fields PRO" -msgstr "Advanced Custom Fields PRO" - -#: pro/blocks.php:170 -msgid "Block type name is required." -msgstr "Името за типа блок е задължително." - -#. translators: The name of the block type -#: pro/blocks.php:178 -msgid "Block type \"%s\" is already registered." -msgstr "Типа блок \"%s\" е вече регистриран." - -#: pro/blocks.php:726 -msgid "Switch to Edit" -msgstr "Отидете на Редакция" - -#: pro/blocks.php:727 -msgid "Switch to Preview" -msgstr "Отидете на Преглед" - -#: pro/blocks.php:728 -msgid "Change content alignment" -msgstr "Промяна подравняването на съдържанието." - -#. translators: %s: Block type title -#: pro/blocks.php:731 -msgid "%s settings" -msgstr "%s настройки" - -#: pro/blocks.php:936 -msgid "This block contains no editable fields." -msgstr "Този блок не съдържа полета, които могат да се променят." - -#. translators: %s: an admin URL to the field group edit screen -#: pro/blocks.php:942 -msgid "" -"Assign a field group to add fields to " -"this block." -msgstr "" -"Задайте група от полета за да добавите " -"полета към този блок." - -#: pro/options-page.php:47 -msgid "Options" -msgstr "Опции" - -#: pro/options-page.php:77, pro/fields/class-acf-field-gallery.php:527 -msgid "Update" -msgstr "Обновяване" - -#: pro/options-page.php:78 -msgid "Options Updated" -msgstr "Опциите бяха актуализирани" - -#: pro/updates.php:99 -msgid "" -"To enable updates, please enter your license key on the Updates page. If you don't have a licence key, please see details & pricing." -msgstr "" -"За да включите обновяванията, моля въведете вашия ключ за лиценз на " -"страницата за Актуализации. Ако нямате ключ за лиценз, " -"моля посетете детайли и цени" - -#: pro/updates.php:159 -msgid "" -"ACF Activation Error. Your defined license key has changed, but an " -"error occurred when deactivating your old licence" -msgstr "" -"Грешка при активацията на ACF. Вашият ключ е променен, но има грешка " -"при деактивирането на вашия стар лиценз." - -#: pro/updates.php:154 -msgid "" -"ACF Activation Error. Your defined license key has changed, but an " -"error occurred when connecting to activation server" -msgstr "" -"Грешка при активацията на ACF. Вашият ключ е променен, но има грешка " -"при свързването със сървъра." - -#: pro/updates.php:192 -msgid "ACF Activation Error" -msgstr "Грешка при активацията на ACF" - -#: pro/updates.php:187 -msgid "" -"ACF Activation Error. An error occurred when connecting to activation " -"server" -msgstr "" -"Грешка при активацията на ACF. Грешка при свързането със сървъра" - -#: pro/updates.php:279 -msgid "Check Again" -msgstr "Проверка" - -#: pro/updates.php:593 -msgid "ACF Activation Error. Could not connect to activation server" -msgstr "Грешка при активацията на ACF. Не може да се свърже със сървъра" - -#: pro/admin/admin-options-page.php:195 -msgid "Publish" -msgstr "Публикуване" - -#: pro/admin/admin-options-page.php:199 -msgid "" -"No Custom Field Groups found for this options page. Create a " -"Custom Field Group" -msgstr "" -"Няма намерени групи полета за тази страница с опции. Създаване на група полета" - -#: pro/admin/admin-options-page.php:309 -msgid "Edit field group" -msgstr "Редактиране на група полета" - -#: pro/admin/admin-updates.php:52 -msgid "Error. Could not connect to update server" -msgstr "Грешка. Неуспешно свързване със сървъра" - -#: pro/admin/admin-updates.php:122, -#: pro/admin/views/html-settings-updates.php:12 -msgid "Updates" -msgstr "Актуализации" - -#: pro/admin/admin-updates.php:212 -msgid "" -"Error. Could not authenticate update package. Please check again or " -"deactivate and reactivate your ACF PRO license." -msgstr "" -"Грешка. Не може да се удостовери ъпдейт пакета. Моля проверете отново " -"или активирайте наново вашия ACF PRO лиценз." - -#: pro/admin/admin-updates.php:199 -msgid "" -"Error. Your license for this site has expired or been deactivated. " -"Please reactivate your ACF PRO license." -msgstr "" -"Грешка. Вашият лиценз за този сайт е изтекъл или е бил деактивиран. " -"Моля активирайте наново вашият ACF PRO лиценз." - -#: pro/fields/class-acf-field-clone.php:25 -msgctxt "noun" -msgid "Clone" -msgstr "Клонирай" - -#: pro/fields/class-acf-field-clone.php:27, -#: pro/fields/class-acf-field-repeater.php:31 -msgid "" -"Allows you to select and display existing fields. It does not duplicate any " -"fields in the database, but loads and displays the selected fields at run-" -"time. The Clone field can either replace itself with the selected fields or " -"display the selected fields as a group of subfields." -msgstr "" -"Позволява ви да избирате и показвате съществуващи полета. Не дублира полета " -"в базата с данни, но зарежда и показва избраните полета по време на " -"изпълнение. \"Клонирай\" полето може да замени себе си със избраните полета " -"или да покаже избраните полета като група от подполета." - -#: pro/fields/class-acf-field-clone.php:818, -#: pro/fields/class-acf-field-flexible-content.php:78 -msgid "Fields" -msgstr "Полета" - -#: pro/fields/class-acf-field-clone.php:819 -msgid "Select one or more fields you wish to clone" -msgstr "Изберете едно или повече полета, които искате да клонирате" - -#: pro/fields/class-acf-field-clone.php:838 -msgid "Display" -msgstr "Покажи" - -#: pro/fields/class-acf-field-clone.php:839 -msgid "Specify the style used to render the clone field" -msgstr "" -"Посочете стила, който да се използва при показването на клонираното поле" - -#: pro/fields/class-acf-field-clone.php:844 -msgid "Group (displays selected fields in a group within this field)" -msgstr "Група (показва избраните полета в група в това поле)" - -#: pro/fields/class-acf-field-clone.php:845 -msgid "Seamless (replaces this field with selected fields)" -msgstr "Безпроблемно (заменя това поле с избраните полета)" - -#: pro/fields/class-acf-field-clone.php:854, -#: pro/fields/class-acf-field-flexible-content.php:558, -#: pro/fields/class-acf-field-flexible-content.php:616, -#: pro/fields/class-acf-field-repeater.php:177 -msgid "Layout" -msgstr "Шаблон" - -#: pro/fields/class-acf-field-clone.php:855 -msgid "Specify the style used to render the selected fields" -msgstr "" -"Посочете стила, който да се използва при показването на клонираните полета" - -#: pro/fields/class-acf-field-clone.php:860, -#: pro/fields/class-acf-field-flexible-content.php:629, -#: pro/fields/class-acf-field-repeater.php:185, -#: pro/locations/class-acf-location-block.php:22 -msgid "Block" -msgstr "Блок" - -#: pro/fields/class-acf-field-clone.php:861, -#: pro/fields/class-acf-field-flexible-content.php:628, -#: pro/fields/class-acf-field-repeater.php:184 -msgid "Table" -msgstr "Таблица" - -#: pro/fields/class-acf-field-clone.php:862, -#: pro/fields/class-acf-field-flexible-content.php:630, -#: pro/fields/class-acf-field-repeater.php:186 -msgid "Row" -msgstr "Ред" - -#: pro/fields/class-acf-field-clone.php:868 -msgid "Labels will be displayed as %s" -msgstr "Етикетите ще бъдат показани като %s" - -#: pro/fields/class-acf-field-clone.php:873 -msgid "Prefix Field Labels" -msgstr "Добавете в началото етикет на полето" - -#: pro/fields/class-acf-field-clone.php:883 -msgid "Values will be saved as %s" -msgstr "Стойностите ще бъдат запазени като %s" - -#: pro/fields/class-acf-field-clone.php:888 -msgid "Prefix Field Names" -msgstr "Добавете в началото име на полето" - -#: pro/fields/class-acf-field-clone.php:1005 -msgid "Unknown field" -msgstr "Непознато поле" - -#: pro/fields/class-acf-field-clone.php:1009 -msgid "(no title)" -msgstr "(без заглавие)" - -#: pro/fields/class-acf-field-clone.php:1042 -msgid "Unknown field group" -msgstr "Непозната групата полета" - -#: pro/fields/class-acf-field-clone.php:1046 -msgid "All fields from %s field group" -msgstr "Всички полета от %s група" - -#: pro/fields/class-acf-field-flexible-content.php:25 -msgid "Flexible Content" -msgstr "Гъвкаво съдържание" - -# subfield translation as подполе may not be accurate. -#: pro/fields/class-acf-field-flexible-content.php:27 -msgid "" -"Allows you to define, create and manage content with total control by " -"creating layouts that contain subfields that content editors can choose from." -msgstr "" -"Позволява ви да дефинирате, създавате и управлявате съдържание като " -"създавате шаблони, които съдържат допълнителни подполета, от които " -"редакторите на съдържанието могат да избират." - -#: pro/fields/class-acf-field-flexible-content.php:27 -msgid "We do not recommend using this field in ACF Blocks." -msgstr "Ние не препоръчваме използването на това поле в ACF Blocks." - -#: pro/fields/class-acf-field-flexible-content.php:36, -#: pro/fields/class-acf-field-repeater.php:103, -#: pro/fields/class-acf-field-repeater.php:297 -msgid "Add Row" -msgstr "Добавяне на ред" - -#: pro/fields/class-acf-field-flexible-content.php:76, -#: pro/fields/class-acf-field-flexible-content.php:943, -#: pro/fields/class-acf-field-flexible-content.php:1022 -msgid "layout" -msgid_plural "layouts" -msgstr[0] "шаблон" -msgstr[1] "шаблони" - -#: pro/fields/class-acf-field-flexible-content.php:77 -msgid "layouts" -msgstr "шаблони" - -#: pro/fields/class-acf-field-flexible-content.php:81, -#: pro/fields/class-acf-field-flexible-content.php:942, -#: pro/fields/class-acf-field-flexible-content.php:1021 -msgid "This field requires at least {min} {label} {identifier}" -msgstr "Това поле изисква поне {min} {label} {identifier}" - -#: pro/fields/class-acf-field-flexible-content.php:82 -msgid "This field has a limit of {max} {label} {identifier}" -msgstr "Това поле има лимит от {max} {identifier}" - -#: pro/fields/class-acf-field-flexible-content.php:85 -msgid "{available} {label} {identifier} available (max {max})" -msgstr "{available} {label} {identifier} налични (максимум {max})" - -#: pro/fields/class-acf-field-flexible-content.php:86 -msgid "{required} {label} {identifier} required (min {min})" -msgstr "{required} {label} {identifier} задължителни (минимум {min})" - -#: pro/fields/class-acf-field-flexible-content.php:89 -msgid "Flexible Content requires at least 1 layout" -msgstr "Полето за гъвкаво съдържание изисква поне 1 шаблон полета" - -#: pro/fields/class-acf-field-flexible-content.php:282 -msgid "Click the \"%s\" button below to start creating your layout" -msgstr "Натиснете бутона \"%s\" за да започнете да създавате вашия шаблон" - -#: pro/fields/class-acf-field-flexible-content.php:420, -#: pro/fields/class-acf-repeater-table.php:366 -msgid "Drag to reorder" -msgstr "Плъзнете, за да пренаредите" - -#: pro/fields/class-acf-field-flexible-content.php:423 -msgid "Add layout" -msgstr "Създаване на шаблон" - -#: pro/fields/class-acf-field-flexible-content.php:424 -msgid "Duplicate layout" -msgstr "Дублиране на шаблон" - -#: pro/fields/class-acf-field-flexible-content.php:425 -msgid "Remove layout" -msgstr "Премахване на шаблон" - -#: pro/fields/class-acf-field-flexible-content.php:426, -#: pro/fields/class-acf-repeater-table.php:382 -msgid "Click to toggle" -msgstr "Кликнете за да превключите" - -#: pro/fields/class-acf-field-flexible-content.php:562 -msgid "Delete Layout" -msgstr "Изтриване на шаблон" - -#: pro/fields/class-acf-field-flexible-content.php:563 -msgid "Duplicate Layout" -msgstr "Дублиране на шаблон" - -#: pro/fields/class-acf-field-flexible-content.php:564 -msgid "Add New Layout" -msgstr "Добавяне на нов шаблон" - -#: pro/fields/class-acf-field-flexible-content.php:564 -msgid "Add Layout" -msgstr "Създаване на шаблон" - -#: pro/fields/class-acf-field-flexible-content.php:593 -msgid "Label" -msgstr "Етикет" - -#: pro/fields/class-acf-field-flexible-content.php:609 -msgid "Name" -msgstr "Име" - -#: pro/fields/class-acf-field-flexible-content.php:647 -msgid "Min" -msgstr "Минимум" - -#: pro/fields/class-acf-field-flexible-content.php:662 -msgid "Max" -msgstr "Максимум" - -#: pro/fields/class-acf-field-flexible-content.php:705 -msgid "Minimum Layouts" -msgstr "Минимален брой шаблони" - -#: pro/fields/class-acf-field-flexible-content.php:716 -msgid "Maximum Layouts" -msgstr "Максимален брой шаблони" - -#: pro/fields/class-acf-field-flexible-content.php:727, -#: pro/fields/class-acf-field-repeater.php:293 -msgid "Button Label" -msgstr "Етикет на бутона" - -#: pro/fields/class-acf-field-flexible-content.php:1710, -#: pro/fields/class-acf-field-repeater.php:918 -msgid "%s must be of type array or null." -msgstr "%s трябва да бъдат от тип array или null." - -#: pro/fields/class-acf-field-flexible-content.php:1721 -msgid "%1$s must contain at least %2$s %3$s layout." -msgid_plural "%1$s must contain at least %2$s %3$s layouts." -msgstr[0] "%1$s трябва да съдържа не повече от %2$s %3$s шаблон." -msgstr[1] "" - -#: pro/fields/class-acf-field-flexible-content.php:1737 -msgid "%1$s must contain at most %2$s %3$s layout." -msgid_plural "%1$s must contain at most %2$s %3$s layouts." -msgstr[0] "%1$s трябва да съдържа не повече от %2$s %3$s шаблона." -msgstr[1] "%1$s трябва да съдържа не повече от %2$s %3$s шаблонa." - -#: pro/fields/class-acf-field-gallery.php:25 -msgid "Gallery" -msgstr "Галерия" - -#: pro/fields/class-acf-field-gallery.php:27 -msgid "" -"An interactive interface for managing a collection of attachments, such as " -"images." -msgstr "" -"Интерактивен интерфейс за управление на колекция от прикачени файлове, като " -"изображения." - -#: pro/fields/class-acf-field-gallery.php:77 -msgid "Add Image to Gallery" -msgstr "Добавяне на изображение към галерия" - -#: pro/fields/class-acf-field-gallery.php:78 -msgid "Maximum selection reached" -msgstr "Максималния брой избори бе достигнат" - -#: pro/fields/class-acf-field-gallery.php:324 -msgid "Length" -msgstr "Размер" - -#: pro/fields/class-acf-field-gallery.php:339 -msgid "Edit" -msgstr "Редактиране" - -#: pro/fields/class-acf-field-gallery.php:340, -#: pro/fields/class-acf-field-gallery.php:495 -msgid "Remove" -msgstr "Премахване" - -#: pro/fields/class-acf-field-gallery.php:356 -msgid "Title" -msgstr "Заглавие" - -#: pro/fields/class-acf-field-gallery.php:368 -msgid "Caption" -msgstr "Описание" - -#: pro/fields/class-acf-field-gallery.php:380 -msgid "Alt Text" -msgstr "Допълнителен Текст" - -#: pro/fields/class-acf-field-gallery.php:392 -msgid "Description" -msgstr "Описание" - -#: pro/fields/class-acf-field-gallery.php:504 -msgid "Add to gallery" -msgstr "Добавяне към галерия" - -#: pro/fields/class-acf-field-gallery.php:508 -msgid "Bulk actions" -msgstr "Групови действия" - -#: pro/fields/class-acf-field-gallery.php:509 -msgid "Sort by date uploaded" -msgstr "Сортиране по дата на качване" - -#: pro/fields/class-acf-field-gallery.php:510 -msgid "Sort by date modified" -msgstr "Сортиране по дата на последна промяна" - -#: pro/fields/class-acf-field-gallery.php:511 -msgid "Sort by title" -msgstr "Сортиране по заглавие" - -#: pro/fields/class-acf-field-gallery.php:512 -msgid "Reverse current order" -msgstr "Обръщане на текущия ред" - -#: pro/fields/class-acf-field-gallery.php:524 -msgid "Close" -msgstr "Затваряне" - -#: pro/fields/class-acf-field-gallery.php:556 -msgid "Return Format" -msgstr "Формат на върнатите данни" - -#: pro/fields/class-acf-field-gallery.php:562 -msgid "Image Array" -msgstr "Масив от изображения" - -#: pro/fields/class-acf-field-gallery.php:563 -msgid "Image URL" -msgstr "URL на изображението" - -#: pro/fields/class-acf-field-gallery.php:564 -msgid "Image ID" -msgstr "ID на изображението" - -#: pro/fields/class-acf-field-gallery.php:572 -msgid "Library" -msgstr "Библиотека" - -#: pro/fields/class-acf-field-gallery.php:573 -msgid "Limit the media library choice" -msgstr "Ограничаване на избора на файлове" - -#: pro/fields/class-acf-field-gallery.php:578, -#: pro/locations/class-acf-location-block.php:66 -msgid "All" -msgstr "Всички" - -#: pro/fields/class-acf-field-gallery.php:579 -msgid "Uploaded to post" -msgstr "Прикачени към публикация" - -#: pro/fields/class-acf-field-gallery.php:615 -msgid "Minimum Selection" -msgstr "Минимална селекция" - -#: pro/fields/class-acf-field-gallery.php:625 -msgid "Maximum Selection" -msgstr "Максимална селекция" - -#: pro/fields/class-acf-field-gallery.php:635 -msgid "Minimum" -msgstr "Минимум" - -#: pro/fields/class-acf-field-gallery.php:636, -#: pro/fields/class-acf-field-gallery.php:672 -msgid "Restrict which images can be uploaded" -msgstr "Ограничаване какви изображения могат да бъдат качени" - -#: pro/fields/class-acf-field-gallery.php:639, -#: pro/fields/class-acf-field-gallery.php:675 -msgid "Width" -msgstr "Ширина" - -#: pro/fields/class-acf-field-gallery.php:650, -#: pro/fields/class-acf-field-gallery.php:686 -msgid "Height" -msgstr "Височина" - -#: pro/fields/class-acf-field-gallery.php:662, -#: pro/fields/class-acf-field-gallery.php:698 -msgid "File size" -msgstr "Размер на файла" - -#: pro/fields/class-acf-field-gallery.php:671 -msgid "Maximum" -msgstr "Максимум" - -#: pro/fields/class-acf-field-gallery.php:707 -msgid "Allowed file types" -msgstr "Позволени файлови типове" - -#: pro/fields/class-acf-field-gallery.php:708 -msgid "Comma separated list. Leave blank for all types" -msgstr "Списък, разделен със запетаи. Оставете празно за всички типове" - -#: pro/fields/class-acf-field-gallery.php:727 -msgid "Insert" -msgstr "Вмъкнете" - -#: pro/fields/class-acf-field-gallery.php:728 -msgid "Specify where new attachments are added" -msgstr "Посочете къде да се добавят прикачените файлове" - -#: pro/fields/class-acf-field-gallery.php:732 -msgid "Append to the end" -msgstr "Добави в края" - -#: pro/fields/class-acf-field-gallery.php:733 -msgid "Prepend to the beginning" -msgstr "Добави в началото" - -#: pro/fields/class-acf-field-gallery.php:741 -msgid "Preview Size" -msgstr "Размер на визуализация" - -#: pro/fields/class-acf-field-gallery.php:844 -msgid "%1$s requires at least %2$s selection" -msgid_plural "%1$s requires at least %2$s selections" -msgstr[0] "%s изисква поне %s избор" -msgstr[1] "%s изисква поне %s избора" - -#: pro/fields/class-acf-field-repeater.php:29 -msgid "Repeater" -msgstr "Повторител" - -#: pro/fields/class-acf-field-repeater.php:66, -#: pro/fields/class-acf-field-repeater.php:463 -msgid "Minimum rows not reached ({min} rows)" -msgstr "Минималния брой редове не е достигнат ({min} реда)" - -#: pro/fields/class-acf-field-repeater.php:67 -msgid "Maximum rows reached ({max} rows)" -msgstr "Максималния брой редове бе достигнат ({max} реда)" - -#: pro/fields/class-acf-field-repeater.php:68 -msgid "Error loading page" -msgstr "Грешка при зареждането на страницата" - -#: pro/fields/class-acf-field-repeater.php:69 -msgid "Order will be assigned upon save" -msgstr "Реда на подреждане ще бъде създаден при запазване." - -#: pro/fields/class-acf-field-repeater.php:162 -msgid "Sub Fields" -msgstr "Вложени полета" - -#: pro/fields/class-acf-field-repeater.php:195 -msgid "Pagination" -msgstr "Страници" - -#: pro/fields/class-acf-field-repeater.php:196 -msgid "Useful for fields with a large number of rows." -msgstr "Полезно за полета с голям брой редове." - -#: pro/fields/class-acf-field-repeater.php:207 -msgid "Rows Per Page" -msgstr "Редове На Страница" - -#: pro/fields/class-acf-field-repeater.php:208 -msgid "Set the number of rows to be displayed on a page." -msgstr "Задайте номер редове, които да се показват на страница" - -#: pro/fields/class-acf-field-repeater.php:240 -msgid "Minimum Rows" -msgstr "Минимален брой редове" - -#: pro/fields/class-acf-field-repeater.php:251 -msgid "Maximum Rows" -msgstr "Максимален брой редове" - -#: pro/fields/class-acf-field-repeater.php:281 -msgid "Collapsed" -msgstr "Свит" - -#: pro/fields/class-acf-field-repeater.php:282 -msgid "Select a sub field to show when row is collapsed" -msgstr "Изберете вложено поле, което да се показва когато реда е свит" - -#: pro/fields/class-acf-field-repeater.php:1045 -msgid "Invalid nonce." -msgstr "" - -#: pro/fields/class-acf-field-repeater.php:1060 -msgid "Invalid field key or name." -msgstr "Невалиден ключ или име." - -#: pro/fields/class-acf-field-repeater.php:1069 -msgid "There was an error retrieving the field." -msgstr "Има грешка при взимането на полето." - -#: pro/fields/class-acf-repeater-table.php:369 -msgid "Click to reorder" -msgstr "Плъзнете за да пренаредите" - -#: pro/fields/class-acf-repeater-table.php:402 -msgid "Add row" -msgstr "Добавяне на ред" - -#: pro/fields/class-acf-repeater-table.php:403 -msgid "Duplicate row" -msgstr "Дублиране на ред" - -#: pro/fields/class-acf-repeater-table.php:404 -msgid "Remove row" -msgstr "Премахване на ред" - -#: pro/fields/class-acf-repeater-table.php:448, -#: pro/fields/class-acf-repeater-table.php:465, -#: pro/fields/class-acf-repeater-table.php:466 -msgid "Current Page" -msgstr "Текуща страница" - -#: pro/fields/class-acf-repeater-table.php:456, -#: pro/fields/class-acf-repeater-table.php:457 -msgid "First Page" -msgstr "Първа страница" - -#: pro/fields/class-acf-repeater-table.php:460, -#: pro/fields/class-acf-repeater-table.php:461 -msgid "Previous Page" -msgstr "Предишна страница" - -#. translators: 1: Current page, 2: Total pages. -#: pro/fields/class-acf-repeater-table.php:470 -msgctxt "paging" -msgid "%1$s of %2$s" -msgstr "%1$s от %2$s" - -#: pro/fields/class-acf-repeater-table.php:477, -#: pro/fields/class-acf-repeater-table.php:478 -msgid "Next Page" -msgstr "Следваща страница" - -#: pro/fields/class-acf-repeater-table.php:481, -#: pro/fields/class-acf-repeater-table.php:482 -msgid "Last Page" -msgstr "Последна страница" - -#: pro/locations/class-acf-location-block.php:71 -msgid "No block types exist" -msgstr "Не съществуват блокове от този тип" - -#: pro/locations/class-acf-location-options-page.php:22 -msgid "Options Page" -msgstr "Страница с опции" - -#: pro/locations/class-acf-location-options-page.php:70 -msgid "No options pages exist" -msgstr "Няма създадени страници с опции" - -#: pro/admin/views/html-settings-updates.php:6 -msgid "Deactivate License" -msgstr "Деактивиране на лиценз" - -#: pro/admin/views/html-settings-updates.php:6 -msgid "Activate License" -msgstr "Активиране на лиценз" - -#: pro/admin/views/html-settings-updates.php:16 -msgid "License Information" -msgstr "Информация за лиценза" - -#: pro/admin/views/html-settings-updates.php:34 -msgid "" -"To unlock updates, please enter your license key below. If you don't have a " -"licence key, please see details & pricing." -msgstr "" -"За да включите обновяванията, моля въведете вашия ключ за лиценз долу. Ако " -"нямате ключ за лиценз, моля посетете детайли и цени" - -#: pro/admin/views/html-settings-updates.php:37 -msgid "License Key" -msgstr "Лицензионен ключ" - -#: pro/admin/views/html-settings-updates.php:22 -msgid "Your license key is defined in wp-config.php." -msgstr "Вашият ключ за лиценза е дефиниран в wp-config.php." - -#: pro/admin/views/html-settings-updates.php:29 -msgid "Retry Activation" -msgstr "Активация наново" - -#: pro/admin/views/html-settings-updates.php:61 -msgid "Update Information" -msgstr "Информация за обновяването" - -#: pro/admin/views/html-settings-updates.php:68 -msgid "Current Version" -msgstr "Текуща версия" - -#: pro/admin/views/html-settings-updates.php:76 -msgid "Latest Version" -msgstr "Последна версия" - -#: pro/admin/views/html-settings-updates.php:84 -msgid "Update Available" -msgstr "Налице е обновяване" - -#: pro/admin/views/html-settings-updates.php:91 -msgid "No" -msgstr "Не" - -#: pro/admin/views/html-settings-updates.php:89 -msgid "Yes" -msgstr "Да" - -#: pro/admin/views/html-settings-updates.php:98 -msgid "Upgrade Notice" -msgstr "Забележки за обновяването" - -#: pro/admin/views/html-settings-updates.php:126 -msgid "Check For Updates" -msgstr "Проверка за обновявания." - -#: pro/admin/views/html-settings-updates.php:121 -msgid "Enter your license key to unlock updates" -msgstr "Моля въведете вашия ключ за лиценза за да отключите обновяванията" - -#: pro/admin/views/html-settings-updates.php:119 -msgid "Update Plugin" -msgstr "Обновяване" - -#: pro/admin/views/html-settings-updates.php:117 -msgid "Please reactivate your license to unlock updates" -msgstr "Моля активирайте наново вашия лиценз за да отключите обновяванията" diff --git a/lang/acf-ca.mo b/lang/acf-ca.mo deleted file mode 100644 index a1ba037..0000000 Binary files a/lang/acf-ca.mo and /dev/null differ diff --git a/lang/acf-ca.po b/lang/acf-ca.po deleted file mode 100644 index 2b8be98..0000000 --- a/lang/acf-ca.po +++ /dev/null @@ -1,6353 +0,0 @@ -# Advanced Custom Fields Translations are a combination of translate.wordpress.org contributions, -# combined with user contributed strings for the PRO version. -# Translations from translate.wordpress.org take priority over translations in this file. -# translate.wordpress.org contributions are synced at the time of each release. -# -# If you would like to contribute translations, please visit -# https://translate.wordpress.org/projects/wp-plugins/advanced-custom-fields/stable/ -# -# For additional ACF PRO strings, please submit a pull request over on the ACF GitHub repo at -# http://github.com/advancedcustomfields/acf using the .pot (and any existing .po) files in /lang/pro/ -# -# This file is distributed under the same license as Advanced Custom Fields. -msgid "" -msgstr "" -"PO-Revision-Date: 2023-11-28T09:14:32+00:00\n" -"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n" -"Language: ca\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: gettext\n" -"Project-Id-Version: Advanced Custom Fields\n" - -#: includes/admin/views/global/navigation.php:221 -msgid "Renew ACF PRO License" -msgstr "Renova la llicència ACF PRO" - -#: includes/admin/views/acf-field-group/pro-features.php:17 -msgid "Renew License" -msgstr "Renova la llicència" - -#: includes/admin/views/acf-field-group/pro-features.php:14 -msgid "Manage License" -msgstr "Gestiona la llicència" - -#: includes/admin/views/acf-field-group/options.php:102 -msgid "'High' position not supported in the Block Editor" -msgstr "" - -#: includes/admin/views/options-page-preview.php:30 -msgid "Upgrade to ACF PRO" -msgstr "Actualitza a ACF PRO" - -#. translators: %s URL to ACF options pages documentation -#: includes/admin/views/options-page-preview.php:7 -msgid "" -"ACF options pages are custom admin " -"pages for managing global settings via fields. You can create multiple pages " -"and sub-pages." -msgstr "" -"Les pàgines d'opcions d'ACF són pàgines " -"d'administració personalitzades per a gestionar la configuració global " -"mitjançant camps. Podeu crear diverses pàgines i subpàgines." - -#: includes/admin/views/global/header.php:35 -msgid "Add Options Page" -msgstr "Afegeix una pàgina d'opcions" - -#: includes/admin/views/acf-post-type/advanced-settings.php:703 -msgid "In the editor used as the placeholder of the title." -msgstr "A l'editor s'utilitza com a marcador de posició del títol." - -#: includes/admin/views/acf-post-type/advanced-settings.php:702 -msgid "Title Placeholder" -msgstr "Marcador de posició del títol" - -#: includes/admin/views/global/navigation.php:97 -msgid "4 Months Free" -msgstr "4 mesos gratuïts" - -#. translators: %s - A singular label for a post type or taxonomy. -#: includes/admin/views/global/form-top.php:56 -msgid " (Duplicated from %s)" -msgstr " (Duplicat de %s)" - -#: includes/admin/tools/class-acf-admin-tool-export.php:298 -msgid "Select Options Pages" -msgstr "Selecciona les pàgines d'opcions" - -#: includes/admin/post-types/admin-taxonomy.php:107 -msgid "Duplicate taxonomy" -msgstr "Duplica la taxonomia" - -#: includes/admin/post-types/admin-post-type.php:106 -#: includes/admin/post-types/admin-taxonomy.php:106 -msgid "Create taxonomy" -msgstr "Crea una taxonomia" - -#: includes/admin/post-types/admin-post-type.php:105 -msgid "Duplicate post type" -msgstr "Duplica el tipus d'entrada" - -#: includes/admin/post-types/admin-post-type.php:104 -#: includes/admin/post-types/admin-taxonomy.php:108 -msgid "Create post type" -msgstr "Crea un tipus de contingut" - -#: includes/admin/post-types/admin-post-type.php:103 -#: includes/admin/post-types/admin-taxonomy.php:105 -msgid "Link field groups" -msgstr "Enllaça grups de camps" - -#: includes/admin/post-types/admin-post-type.php:102 -#: includes/admin/post-types/admin-taxonomy.php:104 -msgid "Add fields" -msgstr "Afegeix camps" - -#: includes/admin/post-types/admin-field-group.php:121 -#: assets/build/js/acf-field-group.js:2753 -#: assets/build/js/acf-field-group.js:3236 -msgid "This Field" -msgstr "Aquest camp" - -#: includes/admin/admin.php:267 -msgid "ACF PRO" -msgstr "ACF PRO" - -#: includes/admin/admin.php:265 -msgid "Feedback" -msgstr "Opinions" - -#: includes/admin/admin.php:263 -msgid "Support" -msgstr "Suport" - -#. translators: This text is prepended by a link to ACF's website, and appended -#. by a link to WP Engine's website. -#: includes/admin/admin.php:238 -msgid "is developed and maintained by" -msgstr "és desenvolupat i mantingut per" - -#. translators: %s - either "post type" or "taxonomy" -#: includes/admin/admin-internal-post-type.php:321 -msgid "Add this %s to the location rules of the selected field groups." -msgstr "" - -#. translators: %s the URL to ACF's bidirectional relationship documentation -#: includes/acf-bidirectional-functions.php:271 -msgid "" -"Enabling the bidirectional setting allows you to update a value in the " -"target fields for each value selected for this field, adding or removing the " -"Post ID, Taxonomy ID or User ID of the item being updated. For more " -"information, please read the documentation." -msgstr "" - -#: includes/acf-bidirectional-functions.php:247 -msgid "" -"Select field(s) to store the reference back to the item being updated. You " -"may select this field. Target fields must be compatible with where this " -"field is being displayed. For example, if this field is displayed on a " -"Taxonomy, your target field should be of type Taxonomy" -msgstr "" - -#: includes/acf-bidirectional-functions.php:246 -msgid "Target Field" -msgstr "Camp de destinació" - -#: includes/acf-bidirectional-functions.php:220 -msgid "Update a field on the selected values, referencing back to this ID" -msgstr "" - -#: includes/acf-bidirectional-functions.php:219 -msgid "Bidirectional" -msgstr "Bidireccional" - -#. translators: %s A field type name, such as "Relationship" -#: includes/acf-bidirectional-functions.php:192 -msgid "%s Field" -msgstr "Camp %s" - -#: includes/fields/class-acf-field-page_link.php:517 -#: includes/fields/class-acf-field-post_object.php:426 -#: includes/fields/class-acf-field-select.php:407 -#: includes/fields/class-acf-field-user.php:82 -msgid "Select Multiple" -msgstr "Selecciona múltiples" - -#: includes/admin/views/global/navigation.php:233 -msgid "WP Engine logo" -msgstr "Logotip de WP Engine" - -#: includes/admin/views/acf-taxonomy/basic-settings.php:58 -msgid "Lower case letters, underscores and dashes only, Max 32 characters." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1136 -msgid "The capability name for assigning terms of this taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1135 -msgid "Assign Terms Capability" -msgstr "Capacitat d'assignar termes" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1119 -msgid "The capability name for deleting terms of this taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1118 -msgid "Delete Terms Capability" -msgstr "Capacitat de suprimir termes" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1102 -msgid "The capability name for editing terms of this taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1101 -msgid "Edit Terms Capability" -msgstr "Capacitat d'editar termes" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1085 -msgid "The capability name for managing terms of this taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1084 -msgid "Manage Terms Capability" -msgstr "Gestiona la capacitat dels termes" - -#: includes/admin/views/acf-post-type/advanced-settings.php:886 -msgid "" -"Sets whether posts should be excluded from search results and taxonomy " -"archive pages." -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:74 -msgid "More Tools from WP Engine" -msgstr "Més eines de WP Engine" - -#. translators: %s - WP Engine logo -#: includes/admin/views/acf-field-group/pro-features.php:69 -msgid "Built for those that build with WordPress, by the team at %s" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:6 -msgid "View Pricing & Upgrade" -msgstr "Mostra els preus i actualitzacions" - -#: includes/admin/views/acf-field-group/pro-features.php:3 -#: includes/admin/views/options-page-preview.php:29 -msgid "Learn More" -msgstr "Més informació" - -#: includes/admin/views/acf-field-group/pro-features.php:28 -msgid "" -"Speed up your workflow and develop better websites with features like ACF " -"Blocks and Options Pages, and sophisticated field types like Repeater, " -"Flexible Content, Clone, and Gallery." -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:2 -msgid "Unlock Advanced Features and Build Even More with ACF PRO" -msgstr "" - -#. translators: %s - singular label of post type/taxonomy, i.e. "Movie"/"Genre" -#: includes/admin/views/global/form-top.php:19 -msgid "%s fields" -msgstr "%s camps" - -#: includes/admin/post-types/admin-taxonomies.php:293 -msgid "No terms" -msgstr "No hi ha termes" - -#: includes/admin/post-types/admin-taxonomies.php:266 -msgid "No post types" -msgstr "No existeixen tipus d'entrada" - -#: includes/admin/post-types/admin-post-types.php:289 -msgid "No posts" -msgstr "Sense entrades" - -#: includes/admin/post-types/admin-post-types.php:263 -msgid "No taxonomies" -msgstr "No hi ha taxonomies" - -#: includes/admin/post-types/admin-post-types.php:208 -#: includes/admin/post-types/admin-taxonomies.php:208 -msgid "No field groups" -msgstr "No hi ha grups de camp" - -#: includes/admin/post-types/admin-field-groups.php:281 -msgid "No fields" -msgstr "No hi ha camps" - -#: includes/admin/post-types/admin-field-groups.php:154 -#: includes/admin/post-types/admin-post-types.php:172 -#: includes/admin/post-types/admin-taxonomies.php:172 -msgid "No description" -msgstr "No hi ha descripció" - -#: includes/fields/class-acf-field-page_link.php:484 -#: includes/fields/class-acf-field-post_object.php:389 -#: includes/fields/class-acf-field-relationship.php:601 -msgid "Any post status" -msgstr "Qualsevol estat d'entrada" - -#: includes/post-types/class-acf-taxonomy.php:284 -msgid "" -"This taxonomy key is already in use by another taxonomy registered outside " -"of ACF and cannot be used." -msgstr "" -"Aquesta clau de taxonomia ja l'està utilitzant una altra taxonomia " -"registrada fora d'ACF i no es pot utilitzar." - -#: includes/post-types/class-acf-taxonomy.php:279 -msgid "" -"This taxonomy key is already in use by another taxonomy in ACF and cannot be " -"used." -msgstr "" -"Aquesta clau de taxonomia ja l'està utilitzant una altra taxonomia a ACF i " -"no es pot fer servir." - -#: includes/post-types/class-acf-taxonomy.php:252 -msgid "" -"The taxonomy key must only contain lower case alphanumeric characters, " -"underscores or dashes." -msgstr "" -"La clau de taxonomia només ha de contenir caràcters alfanumèrics en " -"minúscules, guions baixos o guions." - -#: includes/post-types/class-acf-taxonomy.php:247 -msgid "The taxonomy key must be under 32 characters." -msgstr "La clau de taxonomia hauria de tenir menys de 20 caràcters" - -#: includes/post-types/class-acf-taxonomy.php:99 -msgid "No Taxonomies found in Trash" -msgstr "No s'ha trobat cap taxonomia a la paperera." - -#: includes/post-types/class-acf-taxonomy.php:98 -msgid "No Taxonomies found" -msgstr "No s'ha trobat cap taxonomia" - -#: includes/post-types/class-acf-taxonomy.php:97 -msgid "Search Taxonomies" -msgstr "Cerca taxonomies" - -#: includes/post-types/class-acf-taxonomy.php:96 -msgid "View Taxonomy" -msgstr "Visualitza la taxonomia" - -#: includes/post-types/class-acf-taxonomy.php:95 -msgid "New Taxonomy" -msgstr "Nova taxonomia" - -#: includes/post-types/class-acf-taxonomy.php:94 -msgid "Edit Taxonomy" -msgstr "Edita la taxonomia" - -#: includes/post-types/class-acf-taxonomy.php:93 -msgid "Add New Taxonomy" -msgstr "Afegeix una nova taxonomia" - -#: includes/post-types/class-acf-post-type.php:100 -msgid "No Post Types found in Trash" -msgstr "No s'ha trobat cap tipus de contingut a la paperera." - -#: includes/post-types/class-acf-post-type.php:99 -msgid "No Post Types found" -msgstr "No s'ha trobat cap tipus de contingut" - -#: includes/post-types/class-acf-post-type.php:98 -msgid "Search Post Types" -msgstr "Cerca tipus de contingut" - -#: includes/post-types/class-acf-post-type.php:97 -msgid "View Post Type" -msgstr "Visualitza el tipus de contingut" - -#: includes/post-types/class-acf-post-type.php:96 -msgid "New Post Type" -msgstr "Nou tipus de contingut" - -#: includes/post-types/class-acf-post-type.php:95 -msgid "Edit Post Type" -msgstr "Edita el tipus de contingut" - -#: includes/post-types/class-acf-post-type.php:94 -msgid "Add New Post Type" -msgstr "Afegeix un nou tipus de contingut" - -#: includes/post-types/class-acf-post-type.php:361 -msgid "" -"This post type key is already in use by another post type registered outside " -"of ACF and cannot be used." -msgstr "" -"Aquesta clau de tipus de contingut ja s'està utilitzant per un altre tipus " -"de contingut registrat fora d'ACF i no es pot utilitzar." - -#: includes/post-types/class-acf-post-type.php:356 -msgid "" -"This post type key is already in use by another post type in ACF and cannot " -"be used." -msgstr "" -"Aquesta clau de tipus de contingut ja s'està utilitzant en un atre tipus de " -"contingut d'ACF i no es pot utilitzar." - -#. translators: %s a link to WordPress.org's Reserved Terms page -#: includes/post-types/class-acf-post-type.php:335 -#: includes/post-types/class-acf-taxonomy.php:258 -msgid "" -"This field must not be a WordPress reserved " -"term." -msgstr "" -"Aquest camp no ha de ser un terme reservat de WordPress." - -#: includes/post-types/class-acf-post-type.php:329 -msgid "" -"The post type key must only contain lower case alphanumeric characters, " -"underscores or dashes." -msgstr "" -"La clau de tipus d'entrada només ha de contenir caràcters alfanumèrics en " -"minúscules, guions baixos o guions." - -#: includes/post-types/class-acf-post-type.php:324 -msgid "The post type key must be under 20 characters." -msgstr "La clau de tipus de contingut hauria de tenir menys de 20 caràcters." - -#: includes/fields/class-acf-field-wysiwyg.php:27 -msgid "We do not recommend using this field in ACF Blocks." -msgstr "No recomanem fer servir aquest camp en el block d'ACF" - -#: includes/fields/class-acf-field-wysiwyg.php:27 -msgid "" -"Displays the WordPress WYSIWYG editor as seen in Posts and Pages allowing " -"for a rich text-editing experience that also allows for multimedia content." -msgstr "" -"Mostra l'editor WYSIWYG de WordPress tal com es veu a publicacions i pàgines " -"que permet una experiència d'edició de text rica i que també permet " -"contingut multimèdia." - -#: includes/fields/class-acf-field-wysiwyg.php:25 -msgid "WYSIWYG Editor" -msgstr "Editor WYSIWYG" - -#: includes/fields/class-acf-field-user.php:17 -msgid "" -"Allows the selection of one or more users which can be used to create " -"relationships between data objects." -msgstr "" -"Permet la selecció d'un o més usuaris que es poden utilitzar per crear " -"relacions entre objectes de dades." - -#: includes/fields/class-acf-field-url.php:26 -msgid "A text input specifically designed for storing web addresses." -msgstr "Un camp de text dissenyat especificament per emmagatzemar adreces web." - -#: includes/fields/class-acf-field-url.php:25 -msgid "URL" -msgstr "URL" - -#: includes/fields/class-acf-field-true_false.php:27 -msgid "" -"A toggle that allows you to pick a value of 1 or 0 (on or off, true or " -"false, etc). Can be presented as a stylized switch or checkbox." -msgstr "" -"Un commutador que us permet triar un valor d'1 o 0 (activat o desactivat, " -"cert o fals, etc.). Es pot presentar com un interruptor estilitzat o una " -"casella de selecció." - -#: includes/fields/class-acf-field-time_picker.php:27 -msgid "" -"An interactive UI for picking a time. The time format can be customized " -"using the field settings." -msgstr "" -"Una interfície d'usuari interactiva per triar una hora. El format de l'hora " -"es pot personalitzar mitjançant la configuració de camp." - -#: includes/fields/class-acf-field-textarea.php:26 -msgid "A basic textarea input for storing paragraphs of text." -msgstr "Un camp d'àrea de text bàsic per emmagatzemar paràgrafs de text." - -#: includes/fields/class-acf-field-text.php:26 -msgid "A basic text input, useful for storing single string values." -msgstr "Un camp bàsic de text, útil per emmagatzemar valors de cadena simple." - -#: includes/fields/class-acf-field-taxonomy.php:22 -msgid "" -"Allows the selection of one or more taxonomy terms based on the criteria and " -"options specified in the fields settings." -msgstr "" -"Permet la selecció d'un o més termes de taxonomia en funció dels criteris i " -"opcions especificats a la configuració dels camps." - -#: includes/fields/class-acf-field-tab.php:28 -msgid "" -"Allows you to group fields into tabbed sections in the edit screen. Useful " -"for keeping fields organized and structured." -msgstr "" -"Us permet agrupar camps en seccions amb pestanyes a la pantalla d'edició. " -"Útil per mantenir els camps organitzats i estructurats." - -#: includes/fields/class-acf-field-select.php:27 -msgid "A dropdown list with a selection of choices that you specify." -msgstr "Una llista desplegable amb una selecció d'opcions que especifiqueu." - -#: includes/fields/class-acf-field-relationship.php:19 -msgid "" -"A dual-column interface to select one or more posts, pages, or custom post " -"type items to create a relationship with the item that you're currently " -"editing. Includes options to search and filter." -msgstr "" -"Una interfície de dues columnes per seleccionar una o més entrades, pàgines " -"o elements de tipus de contingut personalitzats per crear una relació amb " -"l'element que esteu editant actualment. Inclou opcions per cercar i filtrar." - -#: includes/fields/class-acf-field-range.php:26 -msgid "" -"An input for selecting a numerical value within a specified range using a " -"range slider element." -msgstr "" -"Un camp per seleccionar un valor numèric dins d'un interval especificat " -"mitjançant un element de control d'interval." - -#: includes/fields/class-acf-field-radio.php:27 -msgid "" -"A group of radio button inputs that allows the user to make a single " -"selection from values that you specify." -msgstr "" -"Un grup de camps de botons d'opció que permet a l'usuari fer una selecció " -"única dels valors que especifiqueu." - -#: includes/fields/class-acf-field-post_object.php:19 -msgid "" -"An interactive and customizable UI for picking one or many posts, pages or " -"post type items with the option to search. " -msgstr "" -"Una interfície d'usuari interactiva i personalitzable per escollir una o més " -"publicacions, pàgines o elements de tipus d'entrada amb l'opció de cercar. " - -#: includes/fields/class-acf-field-password.php:26 -msgid "An input for providing a password using a masked field." -msgstr "" -"Un camp per proporcionar una contrasenya mitjançant un camp emmascarat." - -#: includes/fields/class-acf-field-page_link.php:476 -#: includes/fields/class-acf-field-post_object.php:381 -#: includes/fields/class-acf-field-relationship.php:593 -msgid "Filter by Post Status" -msgstr "Filtra per estat d'entrada" - -#: includes/fields/class-acf-field-page_link.php:27 -msgid "" -"An interactive dropdown to select one or more posts, pages, custom post type " -"items or archive URLs, with the option to search." -msgstr "" -"Un menú desplegable interactiu per seleccionar una o més entrades, pàgines, " -"elements de tipus de contingut personalitzats o URL d'arxiu, amb l'opció de " -"cercar." - -#: includes/fields/class-acf-field-oembed.php:27 -msgid "" -"An interactive component for embedding videos, images, tweets, audio and " -"other content by making use of the native WordPress oEmbed functionality." -msgstr "" -"Un component interactiu per incrustar vídeos, imatges, tuits, àudio i altres " -"continguts fent ús de la funcionalitat nativa de WordPress oEmbed." - -#: includes/fields/class-acf-field-number.php:26 -msgid "An input limited to numerical values." -msgstr "Un camp limitat per valors numèrics." - -#: includes/fields/class-acf-field-message.php:28 -msgid "" -"Used to display a message to editors alongside other fields. Useful for " -"providing additional context or instructions around your fields." -msgstr "" -"S'utilitza per mostrar un missatge als editors juntament amb altres camps. " -"Útil per proporcionar context o instruccions addicionals al voltant dels " -"vostres camps." - -#: includes/fields/class-acf-field-link.php:27 -msgid "" -"Allows you to specify a link and its properties such as title and target " -"using the WordPress native link picker." -msgstr "" -"Us permet especificar un enllaç i les seves propietats, com ara el títol i " -"l'objectiu mitjançant el selector d'enllaços natiu de WordPress." - -#: includes/fields/class-acf-field-image.php:27 -msgid "Uses the native WordPress media picker to upload, or choose images." -msgstr "" -"Utilitza el selector de mitjans natiu de WordPress per pujar o triar imatges." - -#: includes/fields/class-acf-field-group.php:27 -msgid "" -"Provides a way to structure fields into groups to better organize the data " -"and the edit screen." -msgstr "" -"Proporciona una manera d'estructurar els camps en grups per organitzar " -"millor les dades i la pantalla d'edició." - -#: includes/fields/class-acf-field-google-map.php:27 -msgid "" -"An interactive UI for selecting a location using Google Maps. Requires a " -"Google Maps API key and additional configuration to display correctly." -msgstr "" -"Una interfície d'usuari interactiva per seleccionar una ubicació mitjançant " -"Google Maps. Requereix una clau de l'API de Google Maps i una configuració " -"addicional per mostrar-se correctament." - -#: includes/fields/class-acf-field-file.php:27 -msgid "Uses the native WordPress media picker to upload, or choose files." -msgstr "" -"Utilitza el selector multimèdia natiu de WordPress per pujar o triar fitxers." - -#: includes/fields/class-acf-field-email.php:26 -msgid "A text input specifically designed for storing email addresses." -msgstr "" -"Una camp de text dissenyat específicament per emmagatzemar adreces de correu " -"electrònic." - -#: includes/fields/class-acf-field-date_time_picker.php:27 -msgid "" -"An interactive UI for picking a date and time. The date return format can be " -"customized using the field settings." -msgstr "" -"Una interfície d'usuari interactiva per triar una data i una hora. El format " -"de devolució de la data es pot personalitzar mitjançant la configuració de " -"camp." - -#: includes/fields/class-acf-field-date_picker.php:27 -msgid "" -"An interactive UI for picking a date. The date return format can be " -"customized using the field settings." -msgstr "" -"Una interfície d'usuari interactiva per triar una data. El format de " -"devolució de la data es pot personalitzar mitjançant la configuració de camp." - -#: includes/fields/class-acf-field-color_picker.php:27 -msgid "An interactive UI for selecting a color, or specifying a Hex value." -msgstr "" -"Una interfície d'usuari interactiva per seleccionar un color o especificar " -"un valor hexadecimal." - -#: includes/fields/class-acf-field-checkbox.php:27 -msgid "" -"A group of checkbox inputs that allow the user to select one, or multiple " -"values that you specify." -msgstr "" -"Un grup de camps de caselles de selecció que permeten a l'usuari seleccionar " -"un o diversos valors que especifiqueu." - -#: includes/fields/class-acf-field-button-group.php:26 -msgid "" -"A group of buttons with values that you specify, users can choose one option " -"from the values provided." -msgstr "" -"Un grup de botons amb valors que especifiqueu, els usuaris poden triar una " -"opció entre els valors proporcionats." - -#: includes/fields/class-acf-field-accordion.php:27 -msgid "" -"Allows you to group and organize custom fields into collapsable panels that " -"are shown while editing content. Useful for keeping large datasets tidy." -msgstr "" -"Us permet agrupar i organitzar camps personalitzats en panells plegables que " -"es mostren mentre editeu el contingut. Útil per mantenir ordenats grans " -"conjunts de dades." - -#: includes/fields.php:475 -msgid "" -"This provides a solution for repeating content such as slides, team members, " -"and call-to-action tiles, by acting as a parent to a set of subfields which " -"can be repeated again and again." -msgstr "" -"Això proporciona una solució per repetir contingut com ara diapositives, " -"membres de l'equip i fitxes de crida d'acció, actuant com a pare d'un " -"conjunt de subcamps que es poden repetir una i altra vegada." - -#: includes/fields.php:465 -msgid "" -"This provides an interactive interface for managing a collection of " -"attachments. Most settings are similar to the Image field type. Additional " -"settings allow you to specify where new attachments are added in the gallery " -"and the minimum/maximum number of attachments allowed." -msgstr "" -"Això proporciona una interfície interactiva per gestionar una col·lecció de " -"fitxers adjunts. La majoria de la configuració és similar al tipus de camp " -"Imatge. La configuració addicional us permet especificar on s'afegeixen nous " -"fitxers adjunts a la galeria i el nombre mínim/màxim de fitxers adjunts " -"permesos." - -#: includes/fields.php:455 -msgid "" -"This provides a simple, structured, layout-based editor. The Flexible " -"Content field allows you to define, create and manage content with total " -"control by using layouts and subfields to design the available blocks." -msgstr "" -"Proporciona un editor senzill, estructurat i basat en dissenys. El camp " -"contingut flexible us permet definir, crear i gestionar contingut amb " -"control total mitjançant l'ús de dissenys i subcamps per dissenyar els blocs " -"disponibles." - -#: includes/fields.php:445 -msgid "" -"This allows you to select and display existing fields. It does not duplicate " -"any fields in the database, but loads and displays the selected fields at " -"run-time. The Clone field can either replace itself with the selected fields " -"or display the selected fields as a group of subfields." -msgstr "" -"Us permet seleccionar i mostrar els camps existents. No duplica cap camp de " -"la base de dades, sinó que carrega i mostra els camps seleccionats en temps " -"d'execució. El camp Clonar pot substituir-se amb els camps seleccionats o " -"mostrar els camps seleccionats com un grup de subcamps." - -#: includes/fields.php:442 -msgctxt "noun" -msgid "Clone" -msgstr "Clona" - -#: includes/admin/views/global/navigation.php:86 includes/fields.php:357 -msgid "PRO" -msgstr "PRO" - -#: includes/fields.php:355 includes/fields.php:412 -msgid "Advanced" -msgstr "Avançat" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:85 -msgid "JSON (newer)" -msgstr "JSON (més nou)" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:81 -msgid "Original" -msgstr "Original" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:55 -msgid "Invalid post ID." -msgstr "Identificador de l'entrada no vàlid." - -#: includes/ajax/class-acf-ajax-local-json-diff.php:47 -msgid "Invalid post type selected for review." -msgstr "S'ha seleccionat un tipus de contingut no vàlid per a la revisió." - -#: includes/admin/views/global/navigation.php:186 -msgid "More" -msgstr "Més" - -#: includes/admin/views/browse-fields-modal.php:86 -msgid "Tutorial" -msgstr "Tutorial" - -#: includes/admin/views/browse-fields-modal.php:75 -msgid "Available with ACF PRO" -msgstr "Disponible amb ACF PRO" - -#: includes/admin/views/browse-fields-modal.php:63 -msgid "Select Field" -msgstr "Camp selector" - -#. translators: %s: A link to the popular fields used in ACF -#: includes/admin/views/browse-fields-modal.php:50 -msgid "Try a different search term or browse %s" -msgstr "Proveu un terme de cerca diferent o navegueu per %s" - -#: includes/admin/views/browse-fields-modal.php:47 -msgid "Popular fields" -msgstr "Camps populars" - -#. translators: %s: The invalid search term -#: includes/admin/views/browse-fields-modal.php:40 -msgid "No search results for '%s'" -msgstr "No hi ha resultats de cerca per a '%s'" - -#: includes/admin/views/browse-fields-modal.php:13 -msgid "Search fields..." -msgstr "Cerca camps" - -#: includes/admin/views/browse-fields-modal.php:11 -msgid "Select Field Type" -msgstr "Selecciona un tipus de camp" - -#: includes/admin/views/browse-fields-modal.php:4 -msgid "Popular" -msgstr "Popular" - -#: includes/admin/views/acf-taxonomy/list-empty.php:7 -msgid "Add Taxonomy" -msgstr "Afegeix taxonomia" - -#: includes/admin/views/acf-taxonomy/list-empty.php:6 -msgid "Create custom taxonomies to classify post type content" -msgstr "" -"Crea taxonomies personalitzades per clasificar el contingut del tipus de " -"contingut" - -#: includes/admin/views/acf-taxonomy/list-empty.php:5 -msgid "Add Your First Taxonomy" -msgstr "Afegeix la primera taxonomia" - -#: includes/admin/views/acf-taxonomy/basic-settings.php:122 -msgid "Hierarchical taxonomies can have descendants (like categories)." -msgstr "" - -#: includes/admin/views/acf-taxonomy/basic-settings.php:107 -msgid "Makes a taxonomy visible on the frontend and in the admin dashboard." -msgstr "" - -#: includes/admin/views/acf-taxonomy/basic-settings.php:91 -msgid "One or many post types that can be classified with this taxonomy." -msgstr "" -"Un o varis tipus d'entrada que poden ser classificats amb aquesta taxonomia." - -#. translators: example taxonomy -#: includes/admin/views/acf-taxonomy/basic-settings.php:60 -msgid "genre" -msgstr "gènere" - -#. translators: example taxonomy -#: includes/admin/views/acf-taxonomy/basic-settings.php:42 -msgid "Genre" -msgstr "Gènere" - -#. translators: example taxonomy -#: includes/admin/views/acf-taxonomy/basic-settings.php:25 -msgid "Genres" -msgstr "Gèneres" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1211 -msgid "" -"Optional custom controller to use instead of `WP_REST_Terms_Controller `." -msgstr "" -"Controlador personalitzat opcional per utilitzar-lo en lloc del " -"`WP_REST_Terms_Controller `." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1155 -msgid "Expose this post type in the REST API." -msgstr "Exposa aquest tipus d'entrada a la REST API." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1055 -msgid "Customize the query variable name" -msgstr "Personalitza el nom de la variable de consulta" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1028 -msgid "" -"Terms can be accessed using the non-pretty permalink, e.g., {query_var}" -"={term_slug}." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:981 -msgid "Parent-child terms in URLs for hierarchical taxonomies." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:941 -msgid "Customize the slug used in the URL" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:924 -msgid "Permalinks for this taxonomy are disabled." -msgstr "Els enllaços permanents d'aquesta taxonomia estan desactivats." - -#. translators: this string will be appended with the new permalink structure. -#: includes/admin/views/acf-taxonomy/advanced-settings.php:921 -msgid "" -"Rewrite the URL using the taxonomy key as the slug. Your permalink structure " -"will be" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:913 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1030 -#: includes/admin/views/acf-taxonomy/basic-settings.php:57 -msgid "Taxonomy Key" -msgstr "Clau de la taxonomia" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:911 -msgid "Select the type of permalink to use for this taxonomy." -msgstr "" -"Seleccioneu el tipus d'enllaç permanent que voleu utilitzar per aquesta " -"taxonomia." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:896 -msgid "Display a column for the taxonomy on post type listing screens." -msgstr "" -"Mostra una columna per a la taxonomia a les pantalles de llista de tipus de " -"contingut." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:895 -msgid "Show Admin Column" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:882 -msgid "Show the taxonomy in the quick/bulk edit panel." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:881 -msgid "Quick Edit" -msgstr "Edició ràpida" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:868 -msgid "List the taxonomy in the Tag Cloud Widget controls." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:867 -msgid "Tag Cloud" -msgstr "Núvol d'etiquetes" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:824 -msgid "" -"A PHP function name to be called for sanitizing taxonomy data saved from a " -"meta box." -msgstr "" -"El nom de la funció PHP que s'executarà per sanejar les dades de taxonomia " -"desades a una meta box." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:823 -msgid "Meta Box Sanitization Callback" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:805 -msgid "" -"A PHP function name to be called to handle the content of a meta box on your " -"taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:804 -msgid "Register Meta Box Callback" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:763 -msgid "No Meta Box" -msgstr "Sense caixa meta" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:762 -msgid "Custom Meta Box" -msgstr "Caixa meta personalitzada" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:758 -msgid "" -"Controls the meta box on the content editor screen. By default, the " -"Categories meta box is shown for hierarchical taxonomies, and the Tags meta " -"box is shown for non-hierarchical taxonomies." -msgstr "" -"Controla la meta caixa a la pantalla de l'editor de contingut. Per defecte, " -"la meta caixa Categories es mostra per a taxonomies jeràrquiques i la meta " -"caixa Etiquetes es mostra per a taxonomies no jeràrquiques." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:757 -msgid "Meta Box" -msgstr "Caixa meta" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:746 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:767 -msgid "Categories Meta Box" -msgstr "Caixa meta de categories" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:745 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:766 -msgid "Tags Meta Box" -msgstr "Caixa meta d'etiquetes" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:704 -msgid "A link to a tag" -msgstr "Un enllaç a una etiqueta" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:703 -msgid "Describes a navigation link block variation used in the block editor." -msgstr "" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:698 -msgid "A link to a %s" -msgstr "Un enllaç a %s" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:683 -msgid "Tag Link" -msgstr "Enllaç de l'etiqueta" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:682 -msgid "" -"Assigns a title for navigation link block variation used in the block editor." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:663 -msgid "← Go to tags" -msgstr "← Ves a etiquetes" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:662 -msgid "" -"Assigns the text used to link back to the main index after updating a term." -msgstr "" -"Assigna el text utilitzat per enllaçar de nou a l'índex principal després " -"d'actualitzar un terme." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:661 -msgid "Back To Items" -msgstr "Torna a Elements" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:657 -msgid "← Go to %s" -msgstr "← Anar a %s" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:642 -msgid "Tags list" -msgstr "Llista d'etiquetes" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:641 -msgid "Assigns text to the table hidden heading." -msgstr "Assigna text a l'encapçalament ocult de la taula." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:622 -msgid "Tags list navigation" -msgstr "Navegació per la llista d'Etiquetes" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:621 -msgid "Assigns text to the table pagination hidden heading." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:597 -msgid "Filter by category" -msgstr "Filtra per Categoria" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:596 -msgid "Assigns text to the filter button in the posts lists table." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:595 -msgid "Filter By Item" -msgstr "Filtra per element" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:591 -msgid "Filter by %s" -msgstr "Filtra per %s" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:575 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:576 -msgid "" -"The description is not prominent by default; however, some themes may show " -"it." -msgstr "" -"La descripció no es mostra per defecte; no obstant, hi ha alguns temes que " -"poden mostrar-la." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:574 -msgid "Describes the Description field on the Edit Tags screen." -msgstr "Descriu el camp descripció a la pantalla d'edició d'etiquetes." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:573 -msgid "Description Field Description" -msgstr "Descripció del camp descripció" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:554 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:555 -msgid "" -"Assign a parent term to create a hierarchy. The term Jazz, for example, " -"would be the parent of Bebop and Big Band" -msgstr "" -"Assigna un terme pare per crear una jerarquia. El terme Jazz, per exemple, " -"seria el pare de Bebop i Big Band" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:553 -msgid "Describes the Parent field on the Edit Tags screen." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:552 -msgid "Parent Field Description" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:538 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:539 -msgid "" -"The \"slug\" is the URL-friendly version of the name. It is usually all " -"lower case and contains only letters, numbers, and hyphens." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:537 -msgid "Describes the Slug field on the Edit Tags screen." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:536 -msgid "Slug Field Description" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:522 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:523 -msgid "The name is how it appears on your site" -msgstr "El nom és tal com apareix al lloc web" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:521 -msgid "Describes the Name field on the Edit Tags screen." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:520 -msgid "Name Field Description" -msgstr "Descripció del camp nom" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:507 -msgid "No tags" -msgstr "Sense etiquetes" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:506 -msgid "" -"Assigns the text displayed in the posts and media list tables when no tags " -"or categories are available." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:505 -msgid "No Terms" -msgstr "No hi ha termes" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:501 -msgid "No %s" -msgstr "No hi ha %s" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:486 -msgid "No tags found" -msgstr "No s'han trobat etiquetes" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:485 -msgid "" -"Assigns the text displayed when clicking the 'choose from most used' text in " -"the taxonomy meta box when no tags are available, and assigns the text used " -"in the terms list table when there are no items for a taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:484 -msgid "Not Found" -msgstr "No s'ha trobat" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:463 -msgid "Assigns text to the Title field of the Most Used tab." -msgstr "Assigna text al camp Títol de la pestanya Més Utilitzat." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:462 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:464 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:465 -msgid "Most Used" -msgstr "Més utilitzats" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:444 -msgid "Choose from the most used tags" -msgstr "Tria entre les etiquetes més utilitzades" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:443 -msgid "" -"Assigns the 'choose from most used' text used in the meta box when " -"JavaScript is disabled. Only used on non-hierarchical taxonomies." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:442 -msgid "Choose From Most Used" -msgstr "Tria entre els més utilitzats" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:438 -msgid "Choose from the most used %s" -msgstr "Tria entre els %s més utilitzats" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:418 -msgid "Add or remove tags" -msgstr "Afegeix o suprimeix etiquetes" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:417 -msgid "" -"Assigns the add or remove items text used in the meta box when JavaScript is " -"disabled. Only used on non-hierarchical taxonomies" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:416 -msgid "Add Or Remove Items" -msgstr "Afegeix o Suprimeix Elements" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:412 -msgid "Add or remove %s" -msgstr "Afegeix o suprimeix %s" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:392 -msgid "Separate tags with commas" -msgstr "Separa les etiquetes amb comes" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:391 -msgid "" -"Assigns the separate item with commas text used in the taxonomy meta box. " -"Only used on non-hierarchical taxonomies." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:390 -msgid "Separate Items With Commas" -msgstr "Separa elements amb comes" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:386 -msgid "Separate %s with commas" -msgstr "Separa %s amb comes" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:366 -msgid "Popular Tags" -msgstr "Etiquetes populars" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:365 -msgid "Assigns popular items text. Only used for non-hierarchical taxonomies." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:364 -msgid "Popular Items" -msgstr "Elements populars" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:361 -msgid "Popular %s" -msgstr "%s populars" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:347 -msgid "Search Tags" -msgstr "Cerca etiquetes" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:346 -msgid "Assigns search items text." -msgstr "Assigna el text de cercar elements." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:323 -msgid "Parent Category:" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:322 -msgid "Assigns parent item text, but with a colon (:) added to the end." -msgstr "" -"Assigna el text de l'element pare, però afegint dos punts (:) al final." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:321 -msgid "Parent Item With Colon" -msgstr "Element pare amb dos punts" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:298 -msgid "Parent Category" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:297 -msgid "Assigns parent item text. Only used on hierarchical taxonomies." -msgstr "" -"Assigna el text de l'element pare. Només s'utilitza en taxonomies " -"jeràrquiques." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:296 -msgid "Parent Item" -msgstr "" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:293 -msgid "Parent %s" -msgstr "%s pare" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:278 -msgid "New Tag Name" -msgstr "Nom de l'etiqueta nova" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:277 -msgid "Assigns the new item name text." -msgstr "Assigna el text del nom de l'element nou." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:276 -msgid "New Item Name" -msgstr "" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:273 -msgid "New %s Name" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:258 -msgid "Add New Tag" -msgstr "Afegeix una etiqueta nova" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:257 -msgid "Assigns the add new item text." -msgstr "Assigna el text d'afegir un element nou." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:238 -msgid "Update Tag" -msgstr "Actualitza l'etiqueta" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:237 -msgid "Assigns the update item text." -msgstr "Assigna el text d'actualitzar un element." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:236 -msgid "Update Item" -msgstr "Actualiza l'element" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:233 -msgid "Update %s" -msgstr "Actualitza %s" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:218 -msgid "View Tag" -msgstr "Mostra l'etiqueta" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:217 -msgid "In the admin bar to view term during editing." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:198 -msgid "Edit Tag" -msgstr "Edita l'etiqueta" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:197 -msgid "At the top of the editor screen when editing a term." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:178 -msgid "All Tags" -msgstr "Totes les etiquetes" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:177 -msgid "Assigns the all items text." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:158 -msgid "Assigns the menu name text." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:157 -msgid "Menu Label" -msgstr "Etiqueta del menu" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:131 -msgid "Active taxonomies are enabled and registered with WordPress." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:115 -msgid "A descriptive summary of the taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:95 -msgid "A descriptive summary of the term." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:94 -msgid "Term Description" -msgstr "Descripció del terme" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:76 -msgid "Single word, no spaces. Underscores and dashes allowed." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:75 -msgid "Term Slug" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:56 -msgid "The name of the default term." -msgstr "El nom del terme per defecte." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:55 -msgid "Term Name" -msgstr "Nom del terme" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:41 -msgid "" -"Create a term for the taxonomy that cannot be deleted. It will not be " -"selected for posts by default." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:40 -msgid "Default Term" -msgstr "Terme per defecte" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:28 -msgid "" -"Whether terms in this taxonomy should be sorted in the order they are " -"provided to `wp_set_object_terms()`." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:27 -msgid "Sort Terms" -msgstr "Ordena termes" - -#: includes/admin/views/acf-post-type/list-empty.php:7 -msgid "Add Post Type" -msgstr "" - -#: includes/admin/views/acf-post-type/list-empty.php:6 -msgid "" -"Expand the functionality of WordPress beyond standard posts and pages with " -"custom post types." -msgstr "" - -#: includes/admin/views/acf-post-type/list-empty.php:5 -msgid "Add Your First Post Type" -msgstr "Afegiu el vostre primer tipus de contingut" - -#: includes/admin/views/acf-post-type/basic-settings.php:136 -#: includes/admin/views/acf-taxonomy/basic-settings.php:135 -msgid "I know what I'm doing, show me all the options." -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:135 -#: includes/admin/views/acf-taxonomy/basic-settings.php:134 -msgid "Advanced Configuration" -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:123 -msgid "Hierarchical post types can have descendants (like pages)." -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:122 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:980 -#: includes/admin/views/acf-taxonomy/basic-settings.php:121 -msgid "Hierarchical" -msgstr "Jeràrquica" - -#: includes/admin/views/acf-post-type/basic-settings.php:107 -msgid "Visible on the frontend and in the admin dashboard." -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:106 -#: includes/admin/views/acf-taxonomy/basic-settings.php:106 -msgid "Public" -msgstr "Públic" - -#. translators: example post type -#: includes/admin/views/acf-post-type/basic-settings.php:59 -msgid "movie" -msgstr "pel·lícula" - -#: includes/admin/views/acf-post-type/basic-settings.php:57 -msgid "Lower case letters, underscores and dashes only, Max 20 characters." -msgstr "" - -#. translators: example post type -#: includes/admin/views/acf-post-type/basic-settings.php:41 -msgid "Movie" -msgstr "Pel·lícula" - -#: includes/admin/views/acf-post-type/basic-settings.php:39 -#: includes/admin/views/acf-taxonomy/basic-settings.php:40 -msgid "Singular Label" -msgstr "Etiqueta singular" - -#. translators: example post type -#: includes/admin/views/acf-post-type/basic-settings.php:24 -msgid "Movies" -msgstr "Pel·lícules" - -#: includes/admin/views/acf-post-type/basic-settings.php:22 -#: includes/admin/views/acf-taxonomy/basic-settings.php:23 -msgid "Plural Label" -msgstr "Etiqueta plural" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1270 -msgid "" -"Optional custom controller to use instead of `WP_REST_Posts_Controller`." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1269 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1210 -msgid "Controller Class" -msgstr "Classe de controlador" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1251 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1191 -msgid "The namespace part of the REST API URL." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1250 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1190 -msgid "Namespace Route" -msgstr "Ruta de l'espai de noms" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1232 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1172 -msgid "The base URL for the post type REST API URLs." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1231 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1171 -msgid "Base URL" -msgstr "URL base" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1217 -msgid "" -"Exposes this post type in the REST API. Required to use the block editor." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1216 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1154 -msgid "Show In REST API" -msgstr "Mostra a l'API REST" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1195 -msgid "Customize the query variable name." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1194 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1054 -msgid "Query Variable" -msgstr "Variable de consulta" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1172 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1032 -msgid "No Query Variable Support" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1171 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1031 -msgid "Custom Query Variable" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1168 -msgid "" -"Items can be accessed using the non-pretty permalink, eg. {post_type}" -"={post_slug}." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1167 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1027 -msgid "Query Variable Support" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1142 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1003 -msgid "URLs for an item and items can be accessed with a query string." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1141 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1002 -msgid "Publicly Queryable" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1120 -msgid "Custom slug for the Archive URL." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1119 -msgid "Archive Slug" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1106 -msgid "" -"Has an item archive that can be customized with an archive template file in " -"your theme." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1105 -msgid "Archive" -msgstr "Arxiu" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1085 -msgid "Pagination support for the items URLs such as the archives." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1084 -msgid "Pagination" -msgstr "Paginació" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1067 -msgid "RSS feed URL for the post type items." -msgstr "URL del canal RSS per als elements del tipus de contingut." - -#: includes/admin/views/acf-post-type/advanced-settings.php:1066 -msgid "Feed URL" -msgstr "URL del canal" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1048 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:961 -msgid "" -"Alters the permalink structure to add the `WP_Rewrite::$front` prefix to " -"URLs." -msgstr "" -"Altera l'estructura d'enllaços permanents per afegir el prefix `WP_Rewrite::" -"$front` a les URLs." - -#: includes/admin/views/acf-post-type/advanced-settings.php:1047 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:960 -msgid "Front URL Prefix" -msgstr "Prefix de les URLs" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1028 -msgid "Customize the slug used in the URL." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1027 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:940 -msgid "URL Slug" -msgstr "Àlies d'URL" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1011 -msgid "Permalinks for this post type are disabled." -msgstr "Els enllaços permanents d'aquest tipus de contingut estan desactivats." - -#. translators: this string will be appended with the new permalink structure. -#: includes/admin/views/acf-post-type/advanced-settings.php:1010 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:923 -msgid "" -"Rewrite the URL using a custom slug defined in the input below. Your " -"permalink structure will be" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1002 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:915 -msgid "No Permalink (prevent URL rewriting)" -msgstr "Sense enllaç permanent (evita la reescriptura de URL)" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1001 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:914 -msgid "Custom Permalink" -msgstr "Enllaç permanent personalitzat" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1000 -#: includes/admin/views/acf-post-type/advanced-settings.php:1170 -#: includes/admin/views/acf-post-type/basic-settings.php:56 -msgid "Post Type Key" -msgstr "Clau del tipus de contingut" - -#. translators: this string will be appended with the new permalink structure. -#: includes/admin/views/acf-post-type/advanced-settings.php:998 -#: includes/admin/views/acf-post-type/advanced-settings.php:1008 -msgid "" -"Rewrite the URL using the post type key as the slug. Your permalink " -"structure will be" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:996 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:910 -msgid "Permalink Rewrite" -msgstr "Reescriptura d'enllaç permanent" - -#: includes/admin/views/acf-post-type/advanced-settings.php:982 -msgid "Delete items by a user when that user is deleted." -msgstr "Suprimeix els elements d'un usuari quan se suprimeixi." - -#: includes/admin/views/acf-post-type/advanced-settings.php:981 -msgid "Delete With User" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:967 -msgid "Allow the post type to be exported from 'Tools' > 'Export'." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:966 -msgid "Can Export" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:935 -msgid "Optionally provide a plural to be used in capabilities." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:934 -msgid "Plural Capability Name" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:916 -msgid "Choose another post type to base the capabilities for this post type." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:915 -msgid "Singular Capability Name" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:901 -msgid "" -"By default the capabilities of the post type will inherit the 'Post' " -"capability names, eg. edit_post, delete_posts. Enable to use post type " -"specific capabilities, eg. edit_{singular}, delete_{plural}." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:900 -msgid "Rename Capabilities" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:885 -msgid "Exclude From Search" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:872 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:854 -msgid "" -"Allow items to be added to menus in the 'Appearance' > 'Menus' screen. Must " -"be turned on in 'Screen options'." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:871 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:853 -msgid "Appearance Menus Support" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:853 -msgid "Appears as an item in the 'New' menu in the admin bar." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:852 -msgid "Show In Admin Bar" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:821 -msgid "" -"A PHP function name to be called when setting up the meta boxes for the edit " -"screen." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:820 -msgid "Custom Meta Box Callback" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:800 -msgid "Menu Icon" -msgstr "Icona de menú" - -#: includes/admin/views/acf-post-type/advanced-settings.php:782 -msgid "The position in the sidebar menu in the admin dashboard." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:781 -msgid "Menu Position" -msgstr "Posició en el menú" - -#: includes/admin/views/acf-post-type/advanced-settings.php:763 -msgid "" -"By default the post type will get a new top level item in the admin menu. If " -"an existing top level item is supplied here, the post type will be added as " -"a submenu item under it." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:762 -msgid "Admin Menu Parent" -msgstr "Menú d'administració pare" - -#. translators: %s = "dashicon class name", link to the WordPress dashicon -#. documentation. -#: includes/admin/views/acf-post-type/advanced-settings.php:750 -msgid "" -"The icon used for the post type menu item in the admin dashboard. Can be a " -"URL or %s to use for the icon." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:745 -msgid "Dashicon class name" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:734 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:734 -msgid "Admin editor navigation in the sidebar menu." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:733 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:733 -msgid "Show In Admin Menu" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:720 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:719 -msgid "Items can be edited and managed in the admin dashboard." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:719 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:718 -msgid "Show In UI" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:689 -msgid "A link to a post." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:688 -msgid "Description for a navigation link block variation." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:687 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:702 -msgid "Item Link Description" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:683 -msgid "A link to a %s." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:668 -msgid "Post Link" -msgstr "Enllaç de l'entrada" - -#: includes/admin/views/acf-post-type/advanced-settings.php:667 -msgid "Title for a navigation link block variation." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:666 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:681 -msgid "Item Link" -msgstr "Enllaç de l'element" - -#. translators: %s Singular form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:663 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:678 -msgid "%s Link" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:648 -msgid "Post updated." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:647 -msgid "In the editor notice after an item is updated." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:646 -msgid "Item Updated" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:643 -msgid "%s updated." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:628 -msgid "Post scheduled." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:627 -msgid "In the editor notice after scheduling an item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:626 -msgid "Item Scheduled" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:623 -msgid "%s scheduled." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:608 -msgid "Post reverted to draft." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:607 -msgid "In the editor notice after reverting an item to draft." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:606 -msgid "Item Reverted To Draft" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:603 -msgid "%s reverted to draft." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:588 -msgid "Post published privately." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:587 -msgid "In the editor notice after publishing a private item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:586 -msgid "Item Published Privately" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:583 -msgid "%s published privately." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:568 -msgid "Post published." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:567 -msgid "In the editor notice after publishing an item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:566 -msgid "Item Published" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:563 -msgid "%s published." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:548 -msgid "Posts list" -msgstr "Llista d'entrades" - -#: includes/admin/views/acf-post-type/advanced-settings.php:547 -msgid "Used by screen readers for the items list on the post type list screen." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:546 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:640 -msgid "Items List" -msgstr "Llista d'elements" - -#. translators: %s Plural form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:543 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:637 -msgid "%s list" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:528 -msgid "Posts list navigation" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:527 -msgid "" -"Used by screen readers for the filter list pagination on the post type list " -"screen." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:526 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:620 -msgid "Items List Navigation" -msgstr "" - -#. translators: %s Plural form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:523 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:617 -msgid "%s list navigation" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:507 -msgid "Filter posts by date" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:506 -msgid "" -"Used by screen readers for the filter by date heading on the post type list " -"screen." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:505 -msgid "Filter Items By Date" -msgstr "" - -#. translators: %s Plural form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:501 -msgid "Filter %s by date" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:486 -msgid "Filter posts list" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:485 -msgid "" -"Used by screen readers for the filter links heading on the post type list " -"screen." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:484 -msgid "Filter Items List" -msgstr "" - -#. translators: %s Plural form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:480 -msgid "Filter %s list" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:464 -msgid "In the media modal showing all media uploaded to this item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:463 -msgid "Uploaded To This Item" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:459 -msgid "Uploaded to this %s" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:444 -msgid "Insert into post" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:443 -msgid "As the button label when adding media to content." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:442 -msgid "Insert Into Media Button" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:438 -msgid "Insert into %s" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:423 -msgid "Use as featured image" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:422 -msgid "" -"As the button label for selecting to use an image as the featured image." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:421 -msgid "Use Featured Image" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:408 -msgid "Remove featured image" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:407 -msgid "As the button label when removing the featured image." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:406 -msgid "Remove Featured Image" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:393 -msgid "Set featured image" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:392 -msgid "As the button label when setting the featured image." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:391 -msgid "Set Featured Image" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:378 -msgid "Featured image" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:377 -msgid "In the editor used for the title of the featured image meta box." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:376 -msgid "Featured Image Meta Box" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:363 -msgid "Post Attributes" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:362 -msgid "In the editor used for the title of the post attributes meta box." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:361 -msgid "Attributes Meta Box" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:358 -msgid "%s Attributes" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:343 -msgid "Post Archives" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:342 -msgid "" -"Adds 'Post Type Archive' items with this label to the list of posts shown " -"when adding items to an existing menu in a CPT with archives enabled. Only " -"appears when editing menus in 'Live Preview' mode and a custom archive slug " -"has been provided." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:341 -msgid "Archives Nav Menu" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:338 -msgid "%s Archives" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:323 -msgid "No posts found in Trash" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:322 -msgid "" -"At the top of the post type list screen when there are no posts in the trash." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:321 -msgid "No Items Found in Trash" -msgstr "" - -#. translators: %s Plural form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:317 -msgid "No %s found in Trash" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:302 -msgid "No posts found" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:301 -msgid "" -"At the top of the post type list screen when there are no posts to display." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:300 -msgid "No Items Found" -msgstr "" - -#. translators: %s Plural form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:296 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:480 -msgid "No %s found" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:281 -msgid "Search Posts" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:280 -msgid "At the top of the items screen when searching for an item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:279 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:345 -msgid "Search Items" -msgstr "" - -#. translators: %s Singular form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:276 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:342 -msgid "Search %s" -msgstr "Cerca %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:261 -msgid "Parent Page:" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:260 -msgid "For hierarchical types in the post type list screen." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:259 -msgid "Parent Item Prefix" -msgstr "" - -#. translators: %s Singular form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:256 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:318 -msgid "Parent %s:" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:241 -msgid "New Post" -msgstr "Entrada nova" - -#: includes/admin/views/acf-post-type/advanced-settings.php:239 -msgid "New Item" -msgstr "Element nou" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:236 -msgid "New %s" -msgstr "Nou %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:206 -msgid "Add New Post" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:205 -msgid "At the top of the editor screen when adding a new item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:204 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:256 -msgid "Add New Item" -msgstr "" - -#. translators: %s Singular form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:201 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:253 -msgid "Add New %s" -msgstr "Afegeix nou %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:186 -msgid "View Posts" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:185 -msgid "" -"Appears in the admin bar in the 'All Posts' view, provided the post type " -"supports archives and the home page is not an archive of that post type." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:184 -msgid "View Items" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:166 -msgid "View Post" -msgstr "Mostra l'entrada" - -#: includes/admin/views/acf-post-type/advanced-settings.php:165 -msgid "In the admin bar to view item when editing it." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:164 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:216 -msgid "View Item" -msgstr "" - -#. translators: %s Singular form of post type name -#. translators: %s Plural form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:161 -#: includes/admin/views/acf-post-type/advanced-settings.php:181 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:213 -msgid "View %s" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:146 -msgid "Edit Post" -msgstr "Edita l'entrada" - -#: includes/admin/views/acf-post-type/advanced-settings.php:145 -msgid "At the top of the editor screen when editing an item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:144 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:196 -msgid "Edit Item" -msgstr "Edita l'element" - -#. translators: %s Singular form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:141 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:193 -msgid "Edit %s" -msgstr "Edita %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:126 -msgid "All Posts" -msgstr "Totes les entrades" - -#: includes/admin/views/acf-post-type/advanced-settings.php:125 -#: includes/admin/views/acf-post-type/advanced-settings.php:220 -#: includes/admin/views/acf-post-type/advanced-settings.php:240 -msgid "In the post type submenu in the admin dashboard." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:124 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:176 -msgid "All Items" -msgstr "Tots els elements" - -#. translators: %s Plural form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:121 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:173 -msgid "All %s" -msgstr "Tots %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:105 -msgid "Admin menu name for the post type." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:104 -msgid "Menu Name" -msgstr "Nom del menú" - -#: includes/admin/views/acf-post-type/advanced-settings.php:90 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:142 -msgid "Regenerate all labels using the Singular and Plural labels" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:88 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:140 -msgid "Regenerate" -msgstr "Regenera" - -#: includes/admin/views/acf-post-type/advanced-settings.php:79 -msgid "Active post types are enabled and registered with WordPress." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:63 -msgid "A descriptive summary of the post type." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:48 -msgid "Add Custom" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:42 -msgid "Enable various features in the content editor." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:31 -msgid "Post Formats" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:25 -msgid "Editor" -msgstr "Editor" - -#: includes/admin/views/acf-post-type/advanced-settings.php:24 -msgid "Trackbacks" -msgstr "Retroenllaços" - -#: includes/admin/views/acf-post-type/basic-settings.php:87 -msgid "Select existing taxonomies to classify items of the post type." -msgstr "" - -#: includes/admin/views/acf-field-group/field.php:145 -msgid "Browse Fields" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:292 -msgid "Nothing to import" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:287 -msgid ". The Custom Post Type UI plugin can be deactivated." -msgstr "" - -#. translators: %d - number of items imported from CPTUI -#: includes/admin/tools/class-acf-admin-tool-import.php:278 -msgid "Imported %d item from Custom Post Type UI -" -msgid_plural "Imported %d items from Custom Post Type UI -" -msgstr[0] "" -msgstr[1] "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:262 -msgid "Failed to import taxonomies." -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:244 -msgid "Failed to import post types." -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:233 -msgid "Nothing from Custom Post Type UI plugin selected for import." -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:209 -msgid "Imported 1 item" -msgid_plural "Imported %s items" -msgstr[0] "" -msgstr[1] "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:122 -msgid "" -"Importing a Post Type or Taxonomy with the same key as one that already " -"exists will overwrite the settings for the existing Post Type or Taxonomy " -"with those of the import." -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:111 -#: includes/admin/tools/class-acf-admin-tool-import.php:127 -msgid "Import from Custom Post Type UI" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:412 -msgid "" -"The following code can be used to register a local version of the selected " -"items. Storing field groups, post types, or taxonomies locally can provide " -"many benefits such as faster load times, version control & dynamic fields/" -"settings. Simply copy and paste the following code to your theme's functions." -"php file or include it within an external file, then deactivate or delete " -"the items from the ACF admin." -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:411 -msgid "Export - Generate PHP" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:384 -msgid "Export" -msgstr "Exporta" - -#: includes/admin/tools/class-acf-admin-tool-export.php:276 -msgid "Select Taxonomies" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:254 -msgid "Select Post Types" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:167 -msgid "Exported 1 item." -msgid_plural "Exported %s items." -msgstr[0] "" -msgstr[1] "" - -#: includes/admin/post-types/admin-taxonomy.php:129 -#: assets/build/js/acf-internal-post-type.js:182 -#: assets/build/js/acf-internal-post-type.js:256 -msgid "Category" -msgstr "Categoria" - -#: includes/admin/post-types/admin-taxonomy.php:127 -#: assets/build/js/acf-internal-post-type.js:179 -#: assets/build/js/acf-internal-post-type.js:253 -msgid "Tag" -msgstr "Etiqueta" - -#. translators: %s taxonomy name -#: includes/admin/post-types/admin-taxonomy.php:82 -msgid "%s taxonomy created" -msgstr "" - -#. translators: %s taxonomy name -#: includes/admin/post-types/admin-taxonomy.php:76 -msgid "%s taxonomy updated" -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:56 -msgid "Taxonomy draft updated." -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:55 -msgid "Taxonomy scheduled for." -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:54 -msgid "Taxonomy submitted." -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:53 -msgid "Taxonomy saved." -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:49 -msgid "Taxonomy deleted." -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:48 -msgid "Taxonomy updated." -msgstr "" - -#: includes/admin/post-types/admin-taxonomies.php:377 -#: includes/admin/post-types/admin-taxonomy.php:157 -msgid "" -"This taxonomy could not be registered because its key is in use by another " -"taxonomy registered by another plugin or theme." -msgstr "" - -#. translators: %s number of taxonomies synchronized -#: includes/admin/post-types/admin-taxonomies.php:359 -msgid "Taxonomy synchronized." -msgid_plural "%s taxonomies synchronized." -msgstr[0] "" -msgstr[1] "" - -#. translators: %s number of taxonomies duplicated -#: includes/admin/post-types/admin-taxonomies.php:352 -msgid "Taxonomy duplicated." -msgid_plural "%s taxonomies duplicated." -msgstr[0] "" -msgstr[1] "" - -#. translators: %s number of taxonomies deactivated -#: includes/admin/post-types/admin-taxonomies.php:345 -msgid "Taxonomy deactivated." -msgid_plural "%s taxonomies deactivated." -msgstr[0] "Taxonomia desactivada." -msgstr[1] "%s taxonomies desactivades." - -#. translators: %s number of taxonomies activated -#: includes/admin/post-types/admin-taxonomies.php:338 -msgid "Taxonomy activated." -msgid_plural "%s taxonomies activated." -msgstr[0] "Taxonomia activada." -msgstr[1] "%s taxonomies activades." - -#: includes/admin/post-types/admin-taxonomies.php:139 -msgid "Terms" -msgstr "Termes" - -#. translators: %s number of post types synchronized -#: includes/admin/post-types/admin-post-types.php:352 -msgid "Post type synchronized." -msgid_plural "%s post types synchronized." -msgstr[0] "Tipus de contingut sincronitzat." -msgstr[1] "%s tipus de continguts sincronitzats." - -#. translators: %s number of post types duplicated -#: includes/admin/post-types/admin-post-types.php:345 -msgid "Post type duplicated." -msgid_plural "%s post types duplicated." -msgstr[0] "Tipus de contingut duplicat." -msgstr[1] "%s tipus de continguts duplicats." - -#. translators: %s number of post types deactivated -#: includes/admin/post-types/admin-post-types.php:338 -msgid "Post type deactivated." -msgid_plural "%s post types deactivated." -msgstr[0] "" -msgstr[1] "" - -#. translators: %s number of post types activated -#: includes/admin/post-types/admin-post-types.php:331 -msgid "Post type activated." -msgid_plural "%s post types activated." -msgstr[0] "" -msgstr[1] "" - -#: includes/admin/post-types/admin-post-types.php:112 -#: includes/admin/post-types/admin-taxonomies.php:137 -#: includes/admin/tools/class-acf-admin-tool-import.php:82 -#: includes/admin/views/acf-taxonomy/basic-settings.php:82 -#: includes/post-types/class-acf-post-type.php:91 -msgid "Post Types" -msgstr "Tipus de contingut" - -#: includes/admin/post-types/admin-post-type.php:162 -#: includes/admin/post-types/admin-taxonomy.php:164 -msgid "Advanced Settings" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:161 -#: includes/admin/post-types/admin-taxonomy.php:163 -msgid "Basic Settings" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:155 -#: includes/admin/post-types/admin-post-types.php:370 -msgid "" -"This post type could not be registered because its key is in use by another " -"post type registered by another plugin or theme." -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:128 -#: assets/build/js/acf-internal-post-type.js:176 -#: assets/build/js/acf-internal-post-type.js:250 -msgid "Pages" -msgstr "Pàgines" - -#: includes/admin/admin-internal-post-type.php:355 -msgid "Link Existing Field Groups" -msgstr "" - -#. translators: %s post type name -#: includes/admin/post-types/admin-post-type.php:80 -msgid "%s post type created" -msgstr "" - -#. translators: %s taxonomy name -#: includes/admin/post-types/admin-taxonomy.php:78 -msgid "Add fields to %s" -msgstr "Afegeix camps a %s" - -#. translators: %s post type name -#: includes/admin/post-types/admin-post-type.php:76 -msgid "%s post type updated" -msgstr "Tipus de contingut %s actualitzat" - -#: includes/admin/post-types/admin-post-type.php:56 -msgid "Post type draft updated." -msgstr "S'ha actualitzat l'esborrany del tipus de contingut." - -#: includes/admin/post-types/admin-post-type.php:55 -msgid "Post type scheduled for." -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:54 -msgid "Post type submitted." -msgstr "Tipus de contingut enviat." - -#: includes/admin/post-types/admin-post-type.php:53 -msgid "Post type saved." -msgstr "Tipus de contingut desat." - -#: includes/admin/post-types/admin-post-type.php:50 -msgid "Post type updated." -msgstr "Tipus de contingut actualitzat." - -#: includes/admin/post-types/admin-post-type.php:49 -msgid "Post type deleted." -msgstr "Tipus de contingut suprimit." - -#: includes/admin/post-types/admin-field-group.php:120 -#: assets/build/js/acf-field-group.js:1146 -#: assets/build/js/acf-field-group.js:1366 -msgid "Type to search..." -msgstr "Tecleja per cercar..." - -#: includes/admin/post-types/admin-field-group.php:105 -#: assets/build/js/acf-field-group.js:1172 -#: assets/build/js/acf-field-group.js:2319 -#: assets/build/js/acf-field-group.js:1414 -#: assets/build/js/acf-field-group.js:2727 -msgid "PRO Only" -msgstr "Només a PRO" - -#: includes/admin/post-types/admin-field-group.php:97 -#: assets/build/js/acf-internal-post-type.js:308 -#: assets/build/js/acf-internal-post-type.js:417 -msgid "Field groups linked successfully." -msgstr "" - -#. translators: %s - URL to ACF tools page. -#: includes/admin/admin.php:195 -msgid "" -"Import Post Types and Taxonomies registered with Custom Post Type UI and " -"manage them with ACF. Get Started." -msgstr "" - -#: includes/admin/admin.php:48 includes/admin/admin.php:267 -msgid "ACF" -msgstr "ACF" - -#: includes/admin/admin-internal-post-type.php:322 -msgid "taxonomy" -msgstr "taxonomia" - -#: includes/admin/admin-internal-post-type.php:322 -msgid "post type" -msgstr "tipus de contingut" - -#: includes/admin/admin-internal-post-type.php:346 -msgid "Done" -msgstr "Fet" - -#: includes/admin/admin-internal-post-type.php:332 -msgid "Field Group(s)" -msgstr "Grup(s) de camp(s)" - -#: includes/admin/admin-internal-post-type.php:331 -msgid "Select one or many field groups..." -msgstr "" - -#: includes/admin/admin-internal-post-type.php:330 -msgid "Please select the field groups to link." -msgstr "Selecciona els grups de camps a enllaçar." - -#: includes/admin/admin-internal-post-type.php:288 -msgid "Field group linked successfully." -msgid_plural "Field groups linked successfully." -msgstr[0] "Grup de camps enllaçat correctament." -msgstr[1] "Grups de camps enllaçats correctament." - -#: includes/admin/admin-internal-post-type-list.php:261 -#: includes/admin/post-types/admin-post-types.php:371 -#: includes/admin/post-types/admin-taxonomies.php:378 -msgctxt "post status" -msgid "Registration Failed" -msgstr "Error de registre" - -#: includes/admin/admin-internal-post-type-list.php:260 -msgid "" -"This item could not be registered because its key is in use by another item " -"registered by another plugin or theme." -msgstr "" - -#: includes/acf-internal-post-type-functions.php:482 -#: includes/acf-internal-post-type-functions.php:511 -msgid "REST API" -msgstr "API REST" - -#: includes/acf-internal-post-type-functions.php:481 -#: includes/acf-internal-post-type-functions.php:510 -#: includes/acf-internal-post-type-functions.php:537 -msgid "Permissions" -msgstr "Permisos" - -#: includes/acf-internal-post-type-functions.php:480 -#: includes/acf-internal-post-type-functions.php:509 -msgid "URLs" -msgstr "URLs" - -#: includes/acf-internal-post-type-functions.php:479 -#: includes/acf-internal-post-type-functions.php:508 -#: includes/acf-internal-post-type-functions.php:535 -msgid "Visibility" -msgstr "Visibilitat" - -#: includes/acf-internal-post-type-functions.php:478 -#: includes/acf-internal-post-type-functions.php:507 -#: includes/acf-internal-post-type-functions.php:536 -msgid "Labels" -msgstr "Etiquetes" - -#: includes/admin/post-types/admin-field-group.php:269 -msgid "Field Settings Tabs" -msgstr "" - -#. Author URI of the plugin -msgid "" -"https://wpengine.com/?utm_source=wordpress." -"org&utm_medium=referral&utm_campaign=plugin_directory&utm_content=advanced_custom_fields" -msgstr "" - -#: includes/api/api-template.php:867 -msgid "[ACF shortcode value disabled for preview]" -msgstr "" - -#: includes/admin/admin-internal-post-type.php:298 -#: includes/admin/post-types/admin-field-group.php:571 -msgid "Close Modal" -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:96 -#: assets/build/js/acf-field-group.js:1670 -#: assets/build/js/acf-field-group.js:1993 -msgid "Field moved to other group" -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:95 -#: assets/build/js/acf.js:1437 assets/build/js/acf.js:1517 -msgid "Close modal" -msgstr "" - -#: includes/fields/class-acf-field-tab.php:125 -msgid "Start a new group of tabs at this tab." -msgstr "Comença un nou grup de pestanyes en aquesta pestanya." - -#: includes/fields/class-acf-field-tab.php:124 -msgid "New Tab Group" -msgstr "Nou grup de pestanyes" - -#: includes/fields/class-acf-field-select.php:451 -#: includes/fields/class-acf-field-true_false.php:200 -msgid "Use a stylized checkbox using select2" -msgstr "" - -#: includes/fields/class-acf-field-radio.php:260 -msgid "Save Other Choice" -msgstr "" - -#: includes/fields/class-acf-field-radio.php:249 -msgid "Allow Other Choice" -msgstr "" - -#: includes/fields/class-acf-field-checkbox.php:450 -msgid "Add Toggle All" -msgstr "" - -#: includes/fields/class-acf-field-checkbox.php:409 -msgid "Save Custom Values" -msgstr "Desa els valors personalitzats" - -#: includes/fields/class-acf-field-checkbox.php:398 -msgid "Allow Custom Values" -msgstr "Permet valors personalitzats" - -#: includes/fields/class-acf-field-checkbox.php:148 -msgid "Checkbox custom values cannot be empty. Uncheck any empty values." -msgstr "" -"Els valors personalitzats de les caselles de selecció no poden estar buits. " -"Desmarqueu els valors buits." - -#: includes/admin/views/global/navigation.php:248 -msgid "Updates" -msgstr "Actualitzacions" - -#: includes/admin/views/global/navigation.php:176 -msgid "Advanced Custom Fields logo" -msgstr "Logotip de l'Advanced Custom Fields" - -#: includes/admin/views/global/form-top.php:89 -msgid "Save Changes" -msgstr "Desa els canvis" - -#: includes/admin/views/global/form-top.php:76 -msgid "Field Group Title" -msgstr "Títol del grup de camps" - -#: includes/admin/views/acf-post-type/advanced-settings.php:704 -#: includes/admin/views/global/form-top.php:3 -msgid "Add title" -msgstr "Afegeix un títol" - -#. translators: %s url to getting started guide -#: includes/admin/views/acf-field-group/list-empty.php:20 -#: includes/admin/views/acf-post-type/list-empty.php:12 -#: includes/admin/views/acf-taxonomy/list-empty.php:12 -#: includes/admin/views/options-page-preview.php:13 -msgid "" -"New to ACF? Take a look at our getting " -"started guide." -msgstr "" -"Sou nou a l'ACF? Feu una ullada a la nostra guia d'inici." - -#: includes/admin/views/acf-field-group/list-empty.php:15 -msgid "Add Field Group" -msgstr "Afegeix un grup de camps" - -#. translators: %s url to creating a field group page -#: includes/admin/views/acf-field-group/list-empty.php:10 -msgid "" -"ACF uses field groups to group custom " -"fields together, and then attach those fields to edit screens." -msgstr "" -"L'ACF utilitza grups de camps per " -"agrupar camps personalitzats i, a continuació, adjuntar aquests camps per " -"editar pantalles." - -#: includes/admin/views/acf-field-group/list-empty.php:5 -msgid "Add Your First Field Group" -msgstr "Afegiu el vostre primer grup de camps" - -#: includes/admin/admin-options-pages-preview.php:28 -#: includes/admin/views/acf-field-group/pro-features.php:54 -#: includes/admin/views/global/navigation.php:86 -#: includes/admin/views/global/navigation.php:250 -msgid "Options Pages" -msgstr "Pàgines d'opcions" - -#: includes/admin/views/acf-field-group/pro-features.php:50 -msgid "ACF Blocks" -msgstr "Blocs ACF" - -#: includes/admin/views/acf-field-group/pro-features.php:58 -msgid "Gallery Field" -msgstr "Camp de galeria" - -#: includes/admin/views/acf-field-group/pro-features.php:38 -msgid "Flexible Content Field" -msgstr "Camp de contingut flexible" - -#: includes/admin/views/acf-field-group/pro-features.php:42 -msgid "Repeater Field" -msgstr "Camp repetible" - -#: includes/admin/views/global/navigation.php:212 -msgid "Unlock Extra Features with ACF PRO" -msgstr "Desbloquegeu característiques addicionals amb l'ACF PRO" - -#: includes/admin/views/acf-field-group/options.php:267 -msgid "Delete Field Group" -msgstr "Suprimeix el grup de camps" - -#. translators: 1: Post creation date 2: Post creation time -#: includes/admin/views/acf-field-group/options.php:261 -msgid "Created on %1$s at %2$s" -msgstr "Creat el %1$s a les %2$s" - -#: includes/acf-field-group-functions.php:497 -msgid "Group Settings" -msgstr "" - -#: includes/acf-field-group-functions.php:495 -msgid "Location Rules" -msgstr "Regles d'ubicació" - -#. translators: %s url to field types list -#: includes/admin/views/acf-field-group/fields.php:72 -msgid "" -"Choose from over 30 field types. Learn " -"more." -msgstr "" -"Trieu entre més de 30 tipus de camps. Més " -"informació." - -#: includes/admin/views/acf-field-group/fields.php:65 -msgid "" -"Get started creating new custom fields for your posts, pages, custom post " -"types and other WordPress content." -msgstr "" -"Comenceu a crear nous camps personalitzats per a les vostres entrades, " -"pàgines, tipus de contingut personalitzats i altres continguts del WordPress." - -#: includes/admin/views/acf-field-group/fields.php:64 -msgid "Add Your First Field" -msgstr "Afegiu el vostre primer camp" - -#. translators: A symbol (or text, if not available in your locale) meaning -#. "Order Number", in terms of positional placement. -#: includes/admin/views/acf-field-group/fields.php:43 -msgid "#" -msgstr "#" - -#: includes/admin/views/acf-field-group/fields.php:33 -#: includes/admin/views/acf-field-group/fields.php:67 -#: includes/admin/views/acf-field-group/fields.php:103 -#: includes/admin/views/global/form-top.php:85 -msgid "Add Field" -msgstr "Afegeix un camp" - -#: includes/acf-field-group-functions.php:496 includes/fields.php:410 -msgid "Presentation" -msgstr "Presentació" - -#: includes/fields.php:409 -msgid "Validation" -msgstr "Validació" - -#: includes/acf-internal-post-type-functions.php:477 -#: includes/acf-internal-post-type-functions.php:506 includes/fields.php:408 -msgid "General" -msgstr "General" - -#: includes/admin/tools/class-acf-admin-tool-import.php:70 -msgid "Import JSON" -msgstr "Importa JSON" - -#: includes/admin/tools/class-acf-admin-tool-export.php:392 -msgid "Export As JSON" -msgstr "Exporta com a JSON" - -#. translators: %s number of field groups deactivated -#: includes/admin/post-types/admin-field-groups.php:367 -msgid "Field group deactivated." -msgid_plural "%s field groups deactivated." -msgstr[0] "S'ha desactivat el grup de camps." -msgstr[1] "S'han desactivat %s grups de camps." - -#. translators: %s number of field groups activated -#: includes/admin/post-types/admin-field-groups.php:360 -msgid "Field group activated." -msgid_plural "%s field groups activated." -msgstr[0] "S'ha activat el grup de camps." -msgstr[1] "S'han activat %s grups de camps." - -#: includes/admin/admin-internal-post-type-list.php:452 -#: includes/admin/admin-internal-post-type-list.php:478 -msgid "Deactivate" -msgstr "Desactiva" - -#: includes/admin/admin-internal-post-type-list.php:452 -msgid "Deactivate this item" -msgstr "Desactiva aquest element" - -#: includes/admin/admin-internal-post-type-list.php:448 -#: includes/admin/admin-internal-post-type-list.php:477 -msgid "Activate" -msgstr "Activa" - -#: includes/admin/admin-internal-post-type-list.php:448 -msgid "Activate this item" -msgstr "Activa aquest element" - -#: includes/admin/post-types/admin-field-group.php:92 -#: assets/build/js/acf-field-group.js:2812 -#: assets/build/js/acf-field-group.js:3313 -msgid "Move field group to trash?" -msgstr "Voleu moure el grup de camps a la paperera?" - -#: acf.php:497 includes/admin/admin-internal-post-type-list.php:248 -#: includes/admin/post-types/admin-field-group.php:297 -#: includes/admin/post-types/admin-post-type.php:295 -#: includes/admin/post-types/admin-taxonomy.php:297 -msgctxt "post status" -msgid "Inactive" -msgstr "Inactiva" - -#. Author of the plugin -msgid "WP Engine" -msgstr "WP Engine" - -#: acf.php:555 -msgid "" -"Advanced Custom Fields and Advanced Custom Fields PRO should not be active " -"at the same time. We've automatically deactivated Advanced Custom Fields PRO." -msgstr "" -"Advanced Custom Fields i Advanced Custom Fields PRO no haurien d'estar " -"actius al mateix temps. Hem desactivat Advanced Custom Fields PRO " -"automàticament." - -#: acf.php:553 -msgid "" -"Advanced Custom Fields and Advanced Custom Fields PRO should not be active " -"at the same time. We've automatically deactivated Advanced Custom Fields." -msgstr "" -"Advanced Custom Fields i Advanced Custom Fields PRO no haurien d'estar " -"actius al mateix temps. Hem desactivat Advanced Custom Fields automàticament." - -#: includes/acf-value-functions.php:374 -msgid "" -"%1$s - We've detected one or more calls to retrieve ACF " -"field values before ACF has been initialized. This is not supported and can " -"result in malformed or missing data. Learn how to fix this." -msgstr "" -"%1$s - hem detectat una o més crides per recuperar valors " -"de camps ACF abans que ACF s'hagi inicialitzat. Això no s'admet i pot donar " -"lloc a dades malformades o que faltin. Obteniu informació sobre com solucionar-ho." - -#: includes/fields/class-acf-field-user.php:551 -msgid "%1$s must have a user with the %2$s role." -msgid_plural "%1$s must have a user with one of the following roles: %2$s" -msgstr[0] "%1$s ha de tenir un usuari amb el rol %2$s." -msgstr[1] "%1$s ha de tenir un usuari amb un dels següents rols: %2$s" - -#: includes/fields/class-acf-field-user.php:542 -msgid "%1$s must have a valid user ID." -msgstr "%1$s ha de tenir un identificador d'usuari vàlid." - -#: includes/fields/class-acf-field-user.php:380 -msgid "Invalid request." -msgstr "Sol·licitud no vàlida." - -#: includes/fields/class-acf-field-select.php:684 -msgid "%1$s is not one of %2$s" -msgstr "%1$s no és un dels %2$s" - -#: includes/fields/class-acf-field-post_object.php:700 -msgid "%1$s must have term %2$s." -msgid_plural "%1$s must have one of the following terms: %2$s" -msgstr[0] "%1$s ha de tenir el terme %2$s." -msgstr[1] "%1$s ha de tenir un dels següents termes: %2$s" - -#: includes/fields/class-acf-field-post_object.php:684 -msgid "%1$s must be of post type %2$s." -msgid_plural "%1$s must be of one of the following post types: %2$s" -msgstr[0] "%1$s ha de ser del tipus de contingut %2$s." -msgstr[1] "%1$s ha de ser d'un dels següents tipus de contingut: %2$s" - -#: includes/fields/class-acf-field-post_object.php:675 -msgid "%1$s must have a valid post ID." -msgstr "%1$s ha de tenir un identificador d'entrada vàlid." - -#: includes/fields/class-acf-field-file.php:475 -msgid "%s requires a valid attachment ID." -msgstr "%s requereix un identificador d'adjunt vàlid." - -#: includes/admin/views/acf-field-group/options.php:233 -msgid "Show in REST API" -msgstr "Mostra a l'API REST" - -#: includes/fields/class-acf-field-color_picker.php:168 -msgid "Enable Transparency" -msgstr "Activa la transparència" - -#: includes/fields/class-acf-field-color_picker.php:187 -msgid "RGBA Array" -msgstr "Matriu RGBA" - -#: includes/fields/class-acf-field-color_picker.php:98 -msgid "RGBA String" -msgstr "Cadena RGBA" - -#: includes/fields/class-acf-field-color_picker.php:97 -#: includes/fields/class-acf-field-color_picker.php:186 -msgid "Hex String" -msgstr "Cadena hexadecimal" - -#: includes/admin/views/browse-fields-modal.php:65 -msgid "Upgrade to PRO" -msgstr "Actualitza a la versió Pro" - -#: includes/admin/post-types/admin-field-group.php:297 -#: includes/admin/post-types/admin-post-type.php:295 -#: includes/admin/post-types/admin-taxonomy.php:297 -msgctxt "post status" -msgid "Active" -msgstr "Activa" - -#: includes/fields/class-acf-field-email.php:181 -msgid "'%s' is not a valid email address" -msgstr "«%s» no és una adreça electrònica vàlida" - -#: includes/fields/class-acf-field-color_picker.php:76 -msgid "Color value" -msgstr "Valor de color" - -#: includes/fields/class-acf-field-color_picker.php:74 -msgid "Select default color" -msgstr "Seleccioneu el color per defecte" - -#: includes/fields/class-acf-field-color_picker.php:72 -msgid "Clear color" -msgstr "Neteja el color" - -#: includes/acf-wp-functions.php:90 -msgid "Blocks" -msgstr "Blocs" - -#: includes/acf-wp-functions.php:86 -msgid "Options" -msgstr "Opcions" - -#: includes/acf-wp-functions.php:82 -msgid "Users" -msgstr "Usuaris" - -#: includes/acf-wp-functions.php:78 -msgid "Menu items" -msgstr "Elements del menú" - -#: includes/acf-wp-functions.php:70 -msgid "Widgets" -msgstr "Ginys" - -#: includes/acf-wp-functions.php:62 -msgid "Attachments" -msgstr "Adjunts" - -#: includes/acf-wp-functions.php:57 -#: includes/admin/post-types/admin-post-types.php:137 -#: includes/admin/post-types/admin-taxonomies.php:112 -#: includes/admin/tools/class-acf-admin-tool-import.php:93 -#: includes/admin/views/acf-post-type/basic-settings.php:86 -#: includes/post-types/class-acf-taxonomy.php:90 -#: includes/post-types/class-acf-taxonomy.php:91 -msgid "Taxonomies" -msgstr "Taxonomies" - -#: includes/acf-wp-functions.php:44 -#: includes/admin/post-types/admin-post-type.php:126 -#: includes/admin/post-types/admin-post-types.php:139 -#: includes/admin/views/acf-post-type/advanced-settings.php:106 -#: assets/build/js/acf-internal-post-type.js:173 -#: assets/build/js/acf-internal-post-type.js:247 -msgid "Posts" -msgstr "Entrades" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:76 -msgid "Last updated: %s" -msgstr "Darrera actualització: %s" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:70 -msgid "Sorry, this post is unavailable for diff comparison." -msgstr "" -"Aquest grup de camps no està disponible per a la comparació de diferències." - -#: includes/ajax/class-acf-ajax-local-json-diff.php:42 -msgid "Invalid field group parameter(s)." -msgstr "Paràmetre/s del grup de camps no vàlids." - -#: includes/admin/admin-internal-post-type-list.php:413 -msgid "Awaiting save" -msgstr "Esperant desar" - -#: includes/admin/admin-internal-post-type-list.php:410 -msgid "Saved" -msgstr "S'ha desat" - -#: includes/admin/admin-internal-post-type-list.php:406 -#: includes/admin/tools/class-acf-admin-tool-import.php:49 -msgid "Import" -msgstr "Importa" - -#: includes/admin/admin-internal-post-type-list.php:402 -msgid "Review changes" -msgstr "Revisa els canvis" - -#: includes/admin/admin-internal-post-type-list.php:378 -msgid "Located in: %s" -msgstr "Ubicat a: %s" - -#: includes/admin/admin-internal-post-type-list.php:375 -msgid "Located in plugin: %s" -msgstr "Ubicat a l'extensió: %s" - -#: includes/admin/admin-internal-post-type-list.php:372 -msgid "Located in theme: %s" -msgstr "Ubicat al tema: %s" - -#: includes/admin/post-types/admin-field-groups.php:261 -msgid "Various" -msgstr "Diversos" - -#: includes/admin/admin-internal-post-type-list.php:216 -#: includes/admin/admin-internal-post-type-list.php:485 -msgid "Sync changes" -msgstr "Sincronitza els canvis" - -#: includes/admin/admin-internal-post-type-list.php:215 -msgid "Loading diff" -msgstr "S'està carregant el diff" - -#: includes/admin/admin-internal-post-type-list.php:214 -msgid "Review local JSON changes" -msgstr "Revisa els canvis JSON locals" - -#: includes/admin/admin.php:170 -msgid "Visit website" -msgstr "Visiteu el lloc web" - -#: includes/admin/admin.php:169 -msgid "View details" -msgstr "Visualitza els detalls" - -#: includes/admin/admin.php:168 -msgid "Version %s" -msgstr "Versió %s" - -#: includes/admin/admin.php:167 -msgid "Information" -msgstr "Informació" - -#: includes/admin/admin.php:158 -msgid "" -"Help Desk. The support professionals on " -"our Help Desk will assist with your more in depth, technical challenges." -msgstr "" -"Servei d'ajuda. Els professionals de " -"suport al servei d'ajuda us ajudaran amb els problemes tècnics més profunds." - -#: includes/admin/admin.php:154 -msgid "" -"Discussions. We have an active and " -"friendly community on our Community Forums who may be able to help you " -"figure out the 'how-tos' of the ACF world." -msgstr "" -"Debats. Tenim una comunitat activa i " -"amistosa als nostres fòrums comunitaris que pot ajudar-vos a descobrir com " -"es fan les coses al món de l'ACF." - -#: includes/admin/admin.php:150 -msgid "" -"Documentation. Our extensive " -"documentation contains references and guides for most situations you may " -"encounter." -msgstr "" -"Documentació. La nostra extensa " -"documentació conté referències i guies per a la majoria de situacions que " -"podeu trobar." - -#: includes/admin/admin.php:147 -msgid "" -"We are fanatical about support, and want you to get the best out of your " -"website with ACF. If you run into any difficulties, there are several places " -"you can find help:" -msgstr "" -"Som fanàtics del suport i volem que tragueu el màxim profit del vostre lloc " -"web amb l'ACF. Si trobeu alguna dificultat, hi ha diversos llocs on podeu " -"trobar ajuda:" - -#: includes/admin/admin.php:144 includes/admin/admin.php:146 -msgid "Help & Support" -msgstr "Ajuda i suport" - -#: includes/admin/admin.php:135 -msgid "" -"Please use the Help & Support tab to get in touch should you find yourself " -"requiring assistance." -msgstr "" -"Utilitzeu la pestanya d'ajuda i suport per posar-vos en contacte amb " -"nosaltres si necessiteu ajuda." - -#: includes/admin/admin.php:132 -msgid "" -"Before creating your first Field Group, we recommend first reading our Getting started guide to familiarize " -"yourself with the plugin's philosophy and best practises." -msgstr "" -"Abans de crear el vostre primer grup de camps recomanem llegir abans la " -"nostra guia Primers passos per " -"familiaritzar-vos amb la filosofia i les millors pràctiques de l'extensió." - -#: includes/admin/admin.php:130 -msgid "" -"The Advanced Custom Fields plugin provides a visual form builder to " -"customize WordPress edit screens with extra fields, and an intuitive API to " -"display custom field values in any theme template file." -msgstr "" -"L'extensió Advanced Custom Fields proporciona un maquetador de formularis " -"visual per personalitzar les pantalles d'edició del WordPress amb camps " -"addicionals i una API intuïtiva per mostrar els valors dels camps " -"personalitzats en qualsevol fitxer de plantilla de tema." - -#: includes/admin/admin.php:127 includes/admin/admin.php:129 -msgid "Overview" -msgstr "Resum" - -#: includes/locations.php:36 -msgid "Location type \"%s\" is already registered." -msgstr "El tipus d'ubicació «%s» ja està registrat." - -#: includes/locations.php:25 -msgid "Class \"%s\" does not exist." -msgstr "La classe «%s» no existeix." - -#: includes/ajax/class-acf-ajax.php:157 -msgid "Invalid nonce." -msgstr "El nonce no és vàlid." - -#: includes/fields/class-acf-field-user.php:375 -msgid "Error loading field." -msgstr "Error en carregar el camp." - -#: assets/build/js/acf-input.js:2750 assets/build/js/acf-input.js:2819 -#: assets/build/js/acf-input.js:2926 assets/build/js/acf-input.js:3000 -msgid "Location not found: %s" -msgstr "No s'ha trobat la ubicació: %s" - -#: includes/forms/form-user.php:353 -msgid "Error: %s" -msgstr "Error: %s" - -#: includes/locations/class-acf-location-widget.php:22 -msgid "Widget" -msgstr "Giny" - -#: includes/locations/class-acf-location-user-role.php:24 -msgid "User Role" -msgstr "Rol de l'usuari" - -#: includes/locations/class-acf-location-comment.php:22 -msgid "Comment" -msgstr "Comentari" - -#: includes/locations/class-acf-location-post-format.php:22 -msgid "Post Format" -msgstr "Format de l'entrada" - -#: includes/locations/class-acf-location-nav-menu-item.php:22 -msgid "Menu Item" -msgstr "Element del menú" - -#: includes/locations/class-acf-location-post-status.php:22 -msgid "Post Status" -msgstr "Estat de l'entrada" - -#: includes/acf-wp-functions.php:74 -#: includes/locations/class-acf-location-nav-menu.php:89 -msgid "Menus" -msgstr "Menús" - -#: includes/locations/class-acf-location-nav-menu.php:80 -msgid "Menu Locations" -msgstr "Ubicacions dels menús" - -#: includes/locations/class-acf-location-nav-menu.php:22 -msgid "Menu" -msgstr "Menú" - -#: includes/locations/class-acf-location-post-taxonomy.php:22 -msgid "Post Taxonomy" -msgstr "Taxonomia de l'entrada" - -#: includes/locations/class-acf-location-page-type.php:114 -msgid "Child Page (has parent)" -msgstr "Pàgina filla (té mare)" - -#: includes/locations/class-acf-location-page-type.php:113 -msgid "Parent Page (has children)" -msgstr "Pàgina mare (té filles)" - -#: includes/locations/class-acf-location-page-type.php:112 -msgid "Top Level Page (no parent)" -msgstr "Pàgina de primer nivell (no té mare)" - -#: includes/locations/class-acf-location-page-type.php:111 -msgid "Posts Page" -msgstr "Pàgina de les entrades" - -#: includes/locations/class-acf-location-page-type.php:110 -msgid "Front Page" -msgstr "Portada" - -#: includes/locations/class-acf-location-page-type.php:22 -msgid "Page Type" -msgstr "Tipus de pàgina" - -#: includes/locations/class-acf-location-current-user.php:73 -msgid "Viewing back end" -msgstr "Veient l’administració" - -#: includes/locations/class-acf-location-current-user.php:72 -msgid "Viewing front end" -msgstr "Veient la part frontal" - -#: includes/locations/class-acf-location-current-user.php:71 -msgid "Logged in" -msgstr "Connectat" - -#: includes/locations/class-acf-location-current-user.php:22 -msgid "Current User" -msgstr "Usuari actual" - -#: includes/locations/class-acf-location-page-template.php:22 -msgid "Page Template" -msgstr "Plantilla de la pàgina" - -#: includes/locations/class-acf-location-user-form.php:74 -msgid "Register" -msgstr "Registra" - -#: includes/locations/class-acf-location-user-form.php:73 -msgid "Add / Edit" -msgstr "Afegeix / Edita" - -#: includes/locations/class-acf-location-user-form.php:22 -msgid "User Form" -msgstr "Formulari d'usuari" - -#: includes/locations/class-acf-location-page-parent.php:22 -msgid "Page Parent" -msgstr "Pàgina mare" - -#: includes/locations/class-acf-location-current-user-role.php:77 -msgid "Super Admin" -msgstr "Superadministrador" - -#: includes/locations/class-acf-location-current-user-role.php:22 -msgid "Current User Role" -msgstr "Rol de l'usuari actual" - -#: includes/locations/class-acf-location-page-template.php:73 -#: includes/locations/class-acf-location-post-template.php:85 -msgid "Default Template" -msgstr "Plantilla per defecte" - -#: includes/locations/class-acf-location-post-template.php:22 -msgid "Post Template" -msgstr "Plantilla de l'entrada" - -#: includes/locations/class-acf-location-post-category.php:22 -msgid "Post Category" -msgstr "Categoria de l'entrada" - -#: includes/locations/class-acf-location-attachment.php:84 -msgid "All %s formats" -msgstr "Tots els formats de %s" - -#: includes/locations/class-acf-location-attachment.php:22 -msgid "Attachment" -msgstr "Adjunt" - -#: includes/validation.php:366 -msgid "%s value is required" -msgstr "Cal introduir un valor a %s" - -#: includes/admin/views/acf-field-group/conditional-logic.php:59 -msgid "Show this field if" -msgstr "Mostra aquest camp si" - -#: includes/admin/views/acf-field-group/conditional-logic.php:26 -#: includes/admin/views/acf-field-group/field.php:109 includes/fields.php:411 -msgid "Conditional Logic" -msgstr "Lògica condicional" - -#: includes/admin/views/acf-field-group/conditional-logic.php:156 -#: includes/admin/views/acf-field-group/location-rule.php:92 -msgid "and" -msgstr "i" - -#: includes/admin/post-types/admin-field-groups.php:123 -#: includes/admin/post-types/admin-post-types.php:143 -#: includes/admin/post-types/admin-taxonomies.php:143 -msgid "Local JSON" -msgstr "JSON local" - -#: includes/admin/views/acf-field-group/pro-features.php:46 -msgid "Clone Field" -msgstr "Clona el camp" - -#: includes/admin/views/upgrade/notice.php:30 -msgid "" -"Please also check all premium add-ons (%s) are updated to the latest version." -msgstr "" -"Comproveu que tots els complements prèmium (%s) estan actualitzats a la " -"darrera versió." - -#: includes/admin/views/upgrade/notice.php:28 -msgid "" -"This version contains improvements to your database and requires an upgrade." -msgstr "" -"Aquesta versió inclou millores a la base de dades i necessita una " -"actualització." - -#: includes/admin/views/upgrade/notice.php:28 -msgid "Thank you for updating to %1$s v%2$s!" -msgstr "Gràcies per actualitzar a %1$s v%2$s!" - -#: includes/admin/views/upgrade/notice.php:27 -msgid "Database Upgrade Required" -msgstr "Cal actualitzar la base de dades" - -#: includes/admin/post-types/admin-field-group.php:141 -#: includes/admin/views/upgrade/notice.php:18 -msgid "Options Page" -msgstr "Pàgina d'opcions" - -#: includes/admin/views/upgrade/notice.php:15 includes/fields.php:462 -msgid "Gallery" -msgstr "Galeria" - -#: includes/admin/views/upgrade/notice.php:12 includes/fields.php:452 -msgid "Flexible Content" -msgstr "Contingut flexible" - -#: includes/admin/views/upgrade/notice.php:9 includes/fields.php:472 -msgid "Repeater" -msgstr "Repetible" - -#: includes/admin/views/tools/tools.php:24 -msgid "Back to all tools" -msgstr "Torna a totes les eines" - -#: includes/admin/views/acf-field-group/options.php:195 -msgid "" -"If multiple field groups appear on an edit screen, the first field group's " -"options will be used (the one with the lowest order number)" -msgstr "" -"Si hi ha diversos grups de camps a la pantalla d'edició, s'utilitzaran les " -"opcions del primer grup de camps (el que tingui el nombre d'ordre més baix)" - -#: includes/admin/views/acf-field-group/options.php:195 -msgid "Select items to hide them from the edit screen." -msgstr "" -"Seleccioneu els elements a amagarde la pantalla d'edició." - -#: includes/admin/views/acf-field-group/options.php:194 -msgid "Hide on screen" -msgstr "Amaga a la pantalla" - -#: includes/admin/views/acf-field-group/options.php:186 -msgid "Send Trackbacks" -msgstr "Envia retroenllaços" - -#: includes/admin/post-types/admin-taxonomy.php:128 -#: includes/admin/views/acf-field-group/options.php:185 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:159 -#: assets/build/js/acf-internal-post-type.js:180 -#: assets/build/js/acf-internal-post-type.js:254 -msgid "Tags" -msgstr "Etiquetes" - -#: includes/admin/post-types/admin-taxonomy.php:130 -#: includes/admin/views/acf-field-group/options.php:184 -#: assets/build/js/acf-internal-post-type.js:183 -#: assets/build/js/acf-internal-post-type.js:257 -msgid "Categories" -msgstr "Categories" - -#: includes/admin/views/acf-field-group/options.php:182 -#: includes/admin/views/acf-post-type/advanced-settings.php:28 -msgid "Page Attributes" -msgstr "Atributs de la pàgina" - -#: includes/admin/views/acf-field-group/options.php:181 -msgid "Format" -msgstr "Format" - -#: includes/admin/views/acf-field-group/options.php:180 -#: includes/admin/views/acf-post-type/advanced-settings.php:22 -msgid "Author" -msgstr "Autor" - -#: includes/admin/views/acf-field-group/options.php:179 -msgid "Slug" -msgstr "Àlies" - -#: includes/admin/views/acf-field-group/options.php:178 -#: includes/admin/views/acf-post-type/advanced-settings.php:27 -msgid "Revisions" -msgstr "Revisions" - -#: includes/acf-wp-functions.php:66 -#: includes/admin/views/acf-field-group/options.php:177 -#: includes/admin/views/acf-post-type/advanced-settings.php:23 -msgid "Comments" -msgstr "Comentaris" - -#: includes/admin/views/acf-field-group/options.php:176 -msgid "Discussion" -msgstr "Debats" - -#: includes/admin/views/acf-field-group/options.php:174 -#: includes/admin/views/acf-post-type/advanced-settings.php:26 -msgid "Excerpt" -msgstr "Extracte" - -#: includes/admin/views/acf-field-group/options.php:173 -msgid "Content Editor" -msgstr "Editor de contingut" - -#: includes/admin/views/acf-field-group/options.php:172 -msgid "Permalink" -msgstr "Enllaç permanent" - -#: includes/admin/views/acf-field-group/options.php:250 -msgid "Shown in field group list" -msgstr "Es mostra a la llista de grups de camps" - -#: includes/admin/views/acf-field-group/options.php:157 -msgid "Field groups with a lower order will appear first" -msgstr "Els grups de camps amb un ordre més baix apareixeran primer" - -#: includes/admin/views/acf-field-group/options.php:156 -msgid "Order No." -msgstr "Núm. d’ordre" - -#: includes/admin/views/acf-field-group/options.php:147 -msgid "Below fields" -msgstr "Sota els camps" - -#: includes/admin/views/acf-field-group/options.php:146 -msgid "Below labels" -msgstr "Sota les etiquetes" - -#: includes/admin/views/acf-field-group/options.php:139 -msgid "Instruction Placement" -msgstr "Posició de les instruccions" - -#: includes/admin/views/acf-field-group/options.php:122 -msgid "Label Placement" -msgstr "Posició de les etiquetes" - -#: includes/admin/views/acf-field-group/options.php:110 -msgid "Side" -msgstr "Lateral" - -#: includes/admin/views/acf-field-group/options.php:109 -msgid "Normal (after content)" -msgstr "Normal (després del contingut)" - -#: includes/admin/views/acf-field-group/options.php:108 -msgid "High (after title)" -msgstr "Alta (després del títol)" - -#: includes/admin/views/acf-field-group/options.php:101 -msgid "Position" -msgstr "Posició" - -#: includes/admin/views/acf-field-group/options.php:92 -msgid "Seamless (no metabox)" -msgstr "Fluid (sense la caixa meta)" - -#: includes/admin/views/acf-field-group/options.php:91 -msgid "Standard (WP metabox)" -msgstr "Estàndard (en una caixa meta de WP)" - -#: includes/admin/views/acf-field-group/options.php:84 -msgid "Style" -msgstr "Estil" - -#: includes/admin/views/acf-field-group/fields.php:55 -msgid "Type" -msgstr "Tipus" - -#: includes/admin/post-types/admin-field-groups.php:117 -#: includes/admin/post-types/admin-post-types.php:136 -#: includes/admin/post-types/admin-taxonomies.php:136 -#: includes/admin/views/acf-field-group/fields.php:54 -msgid "Key" -msgstr "Clau" - -#. translators: Hidden accessibility text for the positional order number of -#. the field. -#: includes/admin/views/acf-field-group/fields.php:48 -msgid "Order" -msgstr "Ordre" - -#: includes/admin/views/acf-field-group/field.php:322 -msgid "Close Field" -msgstr "Tanca el camp" - -#: includes/admin/views/acf-field-group/field.php:253 -msgid "id" -msgstr "id" - -#: includes/admin/views/acf-field-group/field.php:237 -msgid "class" -msgstr "classe" - -#: includes/admin/views/acf-field-group/field.php:279 -msgid "width" -msgstr "amplada" - -#: includes/admin/views/acf-field-group/field.php:273 -msgid "Wrapper Attributes" -msgstr "Atributs del contenidor" - -#: includes/admin/views/acf-field-group/field.php:196 -msgid "Required" -msgstr "Obligatori" - -#: includes/admin/views/acf-field-group/field.php:221 -msgid "Instructions for authors. Shown when submitting data" -msgstr "Instruccions per als autors. Es mostren en enviar les dades" - -#: includes/admin/views/acf-field-group/field.php:220 -msgid "Instructions" -msgstr "Instruccions" - -#: includes/admin/views/acf-field-group/field.php:129 -msgid "Field Type" -msgstr "Tipus de camp" - -#: includes/admin/views/acf-field-group/field.php:170 -msgid "Single word, no spaces. Underscores and dashes allowed" -msgstr "Una sola paraula, sense espais. S’admeten barres baixes i guions" - -#: includes/admin/views/acf-field-group/field.php:169 -msgid "Field Name" -msgstr "Nom del camp" - -#: includes/admin/views/acf-field-group/field.php:157 -msgid "This is the name which will appear on the EDIT page" -msgstr "Aquest és el nom que apareixerà a la pàgina d'edició" - -#: includes/admin/views/acf-field-group/field.php:156 -#: includes/admin/views/browse-fields-modal.php:59 -msgid "Field Label" -msgstr "Etiqueta del camp" - -#: includes/admin/views/acf-field-group/field.php:81 -msgid "Delete" -msgstr "Suprimeix" - -#: includes/admin/views/acf-field-group/field.php:81 -msgid "Delete field" -msgstr "Suprimeix el camp" - -#: includes/admin/views/acf-field-group/field.php:79 -msgid "Move" -msgstr "Mou" - -#: includes/admin/views/acf-field-group/field.php:79 -msgid "Move field to another group" -msgstr "Mou el camp a un altre grup" - -#: includes/admin/views/acf-field-group/field.php:77 -msgid "Duplicate field" -msgstr "Duplica el camp" - -#: includes/admin/views/acf-field-group/field.php:73 -#: includes/admin/views/acf-field-group/field.php:76 -msgid "Edit field" -msgstr "Edita el camp" - -#: includes/admin/views/acf-field-group/field.php:69 -msgid "Drag to reorder" -msgstr "Arrossegueu per reordenar" - -#: includes/admin/post-types/admin-field-group.php:103 -#: includes/admin/views/acf-field-group/location-group.php:3 -#: assets/build/js/acf-field-group.js:2347 -#: assets/build/js/acf-field-group.js:2763 -msgid "Show this field group if" -msgstr "Mostra aquest grup de camps si" - -#: includes/admin/views/upgrade/upgrade.php:94 -#: includes/ajax/class-acf-ajax-upgrade.php:34 -msgid "No updates available." -msgstr "No hi ha actualitzacions disponibles." - -#: includes/admin/views/upgrade/upgrade.php:33 -msgid "Database upgrade complete. See what's new" -msgstr "" -"S'ha completat l'actualització de la base de dades. Feu una " -"ullada a les novetats" - -#: includes/admin/views/upgrade/upgrade.php:30 -msgid "Reading upgrade tasks..." -msgstr "S'estan llegint les tasques d'actualització…" - -#: includes/admin/views/upgrade/network.php:165 -#: includes/admin/views/upgrade/upgrade.php:65 -msgid "Upgrade failed." -msgstr "L'actualització ha fallat." - -#: includes/admin/views/upgrade/network.php:162 -msgid "Upgrade complete." -msgstr "S'ha completat l'actualització." - -#: includes/admin/views/upgrade/network.php:148 -#: includes/admin/views/upgrade/upgrade.php:31 -msgid "Upgrading data to version %s" -msgstr "S'estan actualitzant les dades a la versió %s" - -#: includes/admin/views/upgrade/network.php:121 -#: includes/admin/views/upgrade/notice.php:44 -msgid "" -"It is strongly recommended that you backup your database before proceeding. " -"Are you sure you wish to run the updater now?" -msgstr "" -"És recomanable que feu una còpia de seguretat de la base de dades abans de " -"continuar. Segur que voleu executar l'actualitzador ara?" - -#: includes/admin/views/upgrade/network.php:117 -msgid "Please select at least one site to upgrade." -msgstr "Seleccioneu almenys un lloc web per actualitzar." - -#: includes/admin/views/upgrade/network.php:97 -msgid "" -"Database Upgrade complete. Return to network dashboard" -msgstr "" -"S'ha completat l'actualització de la base de dades. Torna al " -"tauler de la xarxa" - -#: includes/admin/views/upgrade/network.php:80 -msgid "Site is up to date" -msgstr "El lloc web està actualitzat" - -#: includes/admin/views/upgrade/network.php:78 -msgid "Site requires database upgrade from %1$s to %2$s" -msgstr "" -"El lloc web requereix una actualització de la base de dades de %1$s a %2$s" - -#: includes/admin/views/upgrade/network.php:36 -#: includes/admin/views/upgrade/network.php:47 -msgid "Site" -msgstr "Lloc" - -#: includes/admin/views/upgrade/network.php:26 -#: includes/admin/views/upgrade/network.php:27 -#: includes/admin/views/upgrade/network.php:96 -msgid "Upgrade Sites" -msgstr "Actualitza els llocs" - -#: includes/admin/views/upgrade/network.php:26 -msgid "" -"The following sites require a DB upgrade. Check the ones you want to update " -"and then click %s." -msgstr "" -"Els següents llocs web necessiten una actualització de la base de dades. " -"Marqueu els que voleu actualitzar i feu clic a %s." - -#: includes/admin/views/acf-field-group/conditional-logic.php:171 -#: includes/admin/views/acf-field-group/locations.php:38 -msgid "Add rule group" -msgstr "Afegeix un grup de regles" - -#: includes/admin/views/acf-field-group/locations.php:10 -msgid "" -"Create a set of rules to determine which edit screens will use these " -"advanced custom fields" -msgstr "" -"Crea un grup de regles que determinaran quines pantalles d’edició mostraran " -"aquests camps personalitzats" - -#: includes/admin/views/acf-field-group/locations.php:9 -msgid "Rules" -msgstr "Regles" - -#: includes/admin/tools/class-acf-admin-tool-export.php:510 -msgid "Copied" -msgstr "Copiat" - -#: includes/admin/tools/class-acf-admin-tool-export.php:486 -msgid "Copy to clipboard" -msgstr "Copia-ho al porta-retalls" - -#: includes/admin/tools/class-acf-admin-tool-export.php:385 -msgid "" -"Select the items you would like to export and then select your export " -"method. Export As JSON to export to a .json file which you can then import " -"to another ACF installation. Generate PHP to export to PHP code which you " -"can place in your theme." -msgstr "" -"Seleccioneu els grups de camps que voleu exportar i, a continuació, " -"seleccioneu el mètode d'exportació. Exporteu com a JSON per exportar a un " -"fitxer .json que després podeu importar a una altra instal·lació d'ACF. " -"Genereu PHP per exportar a codi PHP que podeu col·locar al vostre tema." - -#: includes/admin/tools/class-acf-admin-tool-export.php:233 -msgid "Select Field Groups" -msgstr "Seleccioneu grups de camps" - -#: includes/admin/tools/class-acf-admin-tool-export.php:96 -#: includes/admin/tools/class-acf-admin-tool-export.php:131 -msgid "No field groups selected" -msgstr "No s'ha seleccionat cap grup de camps" - -#: includes/admin/tools/class-acf-admin-tool-export.php:39 -#: includes/admin/tools/class-acf-admin-tool-export.php:393 -#: includes/admin/tools/class-acf-admin-tool-export.php:421 -msgid "Generate PHP" -msgstr "Genera PHP" - -#: includes/admin/tools/class-acf-admin-tool-export.php:35 -msgid "Export Field Groups" -msgstr "Exporta els grups de camps" - -#: includes/admin/tools/class-acf-admin-tool-import.php:177 -msgid "Import file empty" -msgstr "El fitxer d'importació és buit" - -#: includes/admin/tools/class-acf-admin-tool-import.php:168 -msgid "Incorrect file type" -msgstr "Tipus de fitxer incorrecte" - -#: includes/admin/tools/class-acf-admin-tool-import.php:163 -msgid "Error uploading file. Please try again" -msgstr "S'ha produït un error en penjar el fitxer. Torneu-ho a provar" - -#: includes/admin/tools/class-acf-admin-tool-import.php:50 -msgid "" -"Select the Advanced Custom Fields JSON file you would like to import. When " -"you click the import button below, ACF will import the items in that file." -msgstr "" -"Seleccioneu el fitxer JSON de l'Advanced Custom Fields que voleu importar. " -"En fer clic al botó d'importació, l'ACF importarà els grups de camps." - -#: includes/admin/tools/class-acf-admin-tool-import.php:27 -msgid "Import Field Groups" -msgstr "Importa grups de camps" - -#: includes/admin/admin-internal-post-type-list.php:401 -msgid "Sync" -msgstr "Sincronitza" - -#: includes/admin/admin-internal-post-type-list.php:858 -msgid "Select %s" -msgstr "Selecciona %s" - -#: includes/admin/admin-internal-post-type-list.php:442 -#: includes/admin/admin-internal-post-type-list.php:474 -#: includes/admin/views/acf-field-group/field.php:77 -msgid "Duplicate" -msgstr "Duplica" - -#: includes/admin/admin-internal-post-type-list.php:442 -msgid "Duplicate this item" -msgstr "Duplica aquest element" - -#: includes/admin/views/acf-post-type/advanced-settings.php:41 -msgid "Supports" -msgstr "" - -#: includes/admin/admin.php:261 includes/admin/views/browse-fields-modal.php:92 -msgid "Documentation" -msgstr "" - -#: includes/admin/post-types/admin-field-groups.php:116 -#: includes/admin/post-types/admin-post-types.php:135 -#: includes/admin/post-types/admin-taxonomies.php:135 -#: includes/admin/views/acf-field-group/options.php:249 -#: includes/admin/views/acf-post-type/advanced-settings.php:62 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:114 -#: includes/admin/views/upgrade/network.php:38 -#: includes/admin/views/upgrade/network.php:49 -msgid "Description" -msgstr "Descripció" - -#: includes/admin/admin-internal-post-type-list.php:398 -#: includes/admin/admin-internal-post-type-list.php:747 -msgid "Sync available" -msgstr "Sincronització disponible" - -#. translators: %s number of field groups synchronized -#: includes/admin/post-types/admin-field-groups.php:381 -msgid "Field group synchronized." -msgid_plural "%s field groups synchronized." -msgstr[0] "S'ha sincronitzat el grup de camps." -msgstr[1] "S'han sincronitzat %s grups de camps." - -#. translators: %s number of field groups duplicated -#: includes/admin/post-types/admin-field-groups.php:374 -msgid "Field group duplicated." -msgid_plural "%s field groups duplicated." -msgstr[0] "S'ha duplicat el grup de camps." -msgstr[1] "S'han duplicat %s grups de camps." - -#: includes/admin/admin-internal-post-type-list.php:137 -msgid "Active (%s)" -msgid_plural "Active (%s)" -msgstr[0] "Actiu (%s)" -msgstr[1] "Actius (%s)" - -#: includes/admin/admin-upgrade.php:254 -msgid "Review sites & upgrade" -msgstr "Revisa els llocs web i actualitza" - -#: includes/admin/admin-upgrade.php:59 includes/admin/admin-upgrade.php:93 -#: includes/admin/admin-upgrade.php:94 includes/admin/admin-upgrade.php:230 -#: includes/admin/views/upgrade/network.php:24 -#: includes/admin/views/upgrade/upgrade.php:26 -msgid "Upgrade Database" -msgstr "Actualitza la base de dades" - -#: includes/admin/views/acf-field-group/options.php:175 -#: includes/admin/views/acf-post-type/advanced-settings.php:30 -msgid "Custom Fields" -msgstr "Camps personalitzats" - -#: includes/admin/post-types/admin-field-group.php:616 -msgid "Move Field" -msgstr "Mou el camp" - -#: includes/admin/post-types/admin-field-group.php:605 -#: includes/admin/post-types/admin-field-group.php:609 -msgid "Please select the destination for this field" -msgstr "Seleccioneu la destinació d'aquest camp" - -#. translators: Confirmation message once a field has been moved to a different -#. field group. -#: includes/admin/post-types/admin-field-group.php:567 -msgid "The %1$s field can now be found in the %2$s field group" -msgstr "El camp %1$s ara es pot trobar al grup de camps %2$s" - -#: includes/admin/post-types/admin-field-group.php:564 -msgid "Move Complete." -msgstr "S’ha completat el moviment." - -#: includes/admin/views/acf-field-group/field.php:39 -#: includes/admin/views/acf-field-group/options.php:217 -#: includes/admin/views/acf-post-type/advanced-settings.php:78 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:130 -msgid "Active" -msgstr "Actiu" - -#: includes/admin/post-types/admin-field-group.php:266 -msgid "Field Keys" -msgstr "Claus dels camps" - -#: includes/admin/post-types/admin-field-group.php:164 -#: includes/admin/tools/class-acf-admin-tool-export.php:342 -msgid "Settings" -msgstr "Configuració" - -#: includes/admin/post-types/admin-field-groups.php:118 -msgid "Location" -msgstr "Ubicació" - -#: includes/admin/post-types/admin-field-group.php:104 -#: assets/build/js/acf-input.js:983 assets/build/js/acf-input.js:1075 -msgid "Null" -msgstr "Nul" - -#: includes/admin/post-types/admin-field-group.php:101 -#: includes/class-acf-internal-post-type.php:730 -#: includes/post-types/class-acf-field-group.php:345 -#: assets/build/js/acf-field-group.js:1510 -#: assets/build/js/acf-field-group.js:1821 -msgid "copy" -msgstr "copia" - -#: includes/admin/post-types/admin-field-group.php:100 -#: assets/build/js/acf-field-group.js:623 -#: assets/build/js/acf-field-group.js:778 -msgid "(this field)" -msgstr "(aquest camp)" - -#: includes/admin/post-types/admin-field-group.php:98 -#: assets/build/js/acf-input.js:918 assets/build/js/acf-input.js:943 -#: assets/build/js/acf-input.js:1002 assets/build/js/acf-input.js:1030 -msgid "Checked" -msgstr "Marcat" - -#: includes/admin/post-types/admin-field-group.php:94 -#: assets/build/js/acf-field-group.js:1615 -#: assets/build/js/acf-field-group.js:1933 -msgid "Move Custom Field" -msgstr "Mou el grup de camps" - -#: includes/admin/post-types/admin-field-group.php:93 -#: assets/build/js/acf-field-group.js:649 -#: assets/build/js/acf-field-group.js:804 -msgid "No toggle fields available" -msgstr "No hi ha camps commutables disponibles" - -#: includes/admin/post-types/admin-field-group.php:91 -msgid "Field group title is required" -msgstr "El títol del grup de camps és obligatori" - -#: includes/admin/post-types/admin-field-group.php:90 -#: assets/build/js/acf-field-group.js:1604 -#: assets/build/js/acf-field-group.js:1919 -msgid "This field cannot be moved until its changes have been saved" -msgstr "Aquest camp no es pot moure fins que no se n’hagin desat els canvis" - -#: includes/admin/post-types/admin-field-group.php:89 -#: assets/build/js/acf-field-group.js:1414 -#: assets/build/js/acf-field-group.js:1716 -msgid "The string \"field_\" may not be used at the start of a field name" -msgstr "La cadena «field_» no es pot utilitzar al principi del nom d'un camp" - -#: includes/admin/post-types/admin-field-group.php:71 -msgid "Field group draft updated." -msgstr "S'ha actualitzat l’esborrany del grup de camps." - -#: includes/admin/post-types/admin-field-group.php:70 -msgid "Field group scheduled for." -msgstr "S'ha programat el grup de camps." - -#: includes/admin/post-types/admin-field-group.php:69 -msgid "Field group submitted." -msgstr "S’ha tramès el grup de camps." - -#: includes/admin/post-types/admin-field-group.php:68 -msgid "Field group saved." -msgstr "S'ha desat el grup de camps." - -#: includes/admin/post-types/admin-field-group.php:67 -msgid "Field group published." -msgstr "S'ha publicat el grup de camps." - -#: includes/admin/post-types/admin-field-group.php:64 -msgid "Field group deleted." -msgstr "S'ha suprimit el grup de camps." - -#: includes/admin/post-types/admin-field-group.php:62 -#: includes/admin/post-types/admin-field-group.php:63 -#: includes/admin/post-types/admin-field-group.php:65 -msgid "Field group updated." -msgstr "S'ha actualitzat el grup de camps." - -#: includes/admin/admin-tools.php:118 -#: includes/admin/views/global/navigation.php:246 -#: includes/admin/views/tools/tools.php:21 -msgid "Tools" -msgstr "Eines" - -#: includes/locations/abstract-acf-location.php:106 -msgid "is not equal to" -msgstr "no és igual a" - -#: includes/locations/abstract-acf-location.php:105 -msgid "is equal to" -msgstr "és igual a" - -#: includes/locations.php:102 -msgid "Forms" -msgstr "Formularis" - -#: includes/admin/post-types/admin-post-type.php:127 includes/locations.php:100 -#: includes/locations/class-acf-location-page.php:22 -#: assets/build/js/acf-internal-post-type.js:175 -#: assets/build/js/acf-internal-post-type.js:249 -msgid "Page" -msgstr "Pàgina" - -#: includes/admin/post-types/admin-post-type.php:125 includes/locations.php:99 -#: includes/locations/class-acf-location-post.php:22 -#: assets/build/js/acf-internal-post-type.js:172 -#: assets/build/js/acf-internal-post-type.js:246 -msgid "Post" -msgstr "Entrada" - -#: includes/fields.php:354 -msgid "Relational" -msgstr "Relacional" - -#: includes/fields.php:353 -msgid "Choice" -msgstr "Elecció" - -#: includes/fields.php:351 -msgid "Basic" -msgstr "Bàsic" - -#: includes/fields.php:320 -msgid "Unknown" -msgstr "Desconegut" - -#: includes/fields.php:320 -msgid "Field type does not exist" -msgstr "El tipus de camp no existeix" - -#: includes/forms/form-front.php:236 -msgid "Spam Detected" -msgstr "S'ha detectat brossa" - -#: includes/forms/form-front.php:107 -msgid "Post updated" -msgstr "S'ha actualitzat l'entrada" - -#: includes/forms/form-front.php:106 -msgid "Update" -msgstr "Actualitza" - -#: includes/forms/form-front.php:57 -msgid "Validate Email" -msgstr "Valida el correu electrònic" - -#: includes/fields.php:352 includes/forms/form-front.php:49 -msgid "Content" -msgstr "Contingut" - -#: includes/admin/views/acf-post-type/advanced-settings.php:21 -#: includes/forms/form-front.php:40 -msgid "Title" -msgstr "Títol" - -#: includes/assets.php:372 includes/forms/form-comment.php:160 -#: assets/build/js/acf-input.js:7382 assets/build/js/acf-input.js:7968 -msgid "Edit field group" -msgstr "Edita el grup de camps" - -#: includes/admin/post-types/admin-field-group.php:117 -#: assets/build/js/acf-input.js:1125 assets/build/js/acf-input.js:1230 -msgid "Selection is less than" -msgstr "La selecció és inferior a" - -#: includes/admin/post-types/admin-field-group.php:116 -#: assets/build/js/acf-input.js:1106 assets/build/js/acf-input.js:1202 -msgid "Selection is greater than" -msgstr "La selecció és superior a" - -#: includes/admin/post-types/admin-field-group.php:115 -#: assets/build/js/acf-input.js:1075 assets/build/js/acf-input.js:1170 -msgid "Value is less than" -msgstr "El valor és inferior a" - -#: includes/admin/post-types/admin-field-group.php:114 -#: assets/build/js/acf-input.js:1045 assets/build/js/acf-input.js:1139 -msgid "Value is greater than" -msgstr "El valor és superior a" - -#: includes/admin/post-types/admin-field-group.php:113 -#: assets/build/js/acf-input.js:888 assets/build/js/acf-input.js:960 -msgid "Value contains" -msgstr "El valor conté" - -#: includes/admin/post-types/admin-field-group.php:112 -#: assets/build/js/acf-input.js:862 assets/build/js/acf-input.js:926 -msgid "Value matches pattern" -msgstr "El valor coincideix amb el patró" - -#: includes/admin/post-types/admin-field-group.php:111 -#: assets/build/js/acf-input.js:840 assets/build/js/acf-input.js:1023 -#: assets/build/js/acf-input.js:903 assets/build/js/acf-input.js:1116 -msgid "Value is not equal to" -msgstr "El valor no és igual a" - -#: includes/admin/post-types/admin-field-group.php:110 -#: assets/build/js/acf-input.js:810 assets/build/js/acf-input.js:964 -#: assets/build/js/acf-input.js:864 assets/build/js/acf-input.js:1053 -msgid "Value is equal to" -msgstr "El valor és igual a" - -#: includes/admin/post-types/admin-field-group.php:109 -#: assets/build/js/acf-input.js:788 assets/build/js/acf-input.js:841 -msgid "Has no value" -msgstr "No té cap valor" - -#: includes/admin/post-types/admin-field-group.php:108 -#: assets/build/js/acf-input.js:758 assets/build/js/acf-input.js:783 -msgid "Has any value" -msgstr "Té algun valor" - -#: includes/admin/admin-internal-post-type.php:345 -#: includes/admin/views/browse-fields-modal.php:62 includes/assets.php:353 -#: assets/build/js/acf.js:1564 assets/build/js/acf.js:1658 -msgid "Cancel" -msgstr "Cancel·la" - -#: includes/assets.php:349 assets/build/js/acf.js:1738 -#: assets/build/js/acf.js:1855 -msgid "Are you sure?" -msgstr "N'esteu segur?" - -#: includes/assets.php:369 assets/build/js/acf-input.js:9442 -#: assets/build/js/acf-input.js:10294 -msgid "%d fields require attention" -msgstr "Cal revisar %d camps" - -#: includes/assets.php:368 assets/build/js/acf-input.js:9440 -#: assets/build/js/acf-input.js:10290 -msgid "1 field requires attention" -msgstr "Cal revisar un camp" - -#: includes/assets.php:367 includes/validation.php:288 -#: includes/validation.php:298 assets/build/js/acf-input.js:9435 -#: assets/build/js/acf-input.js:10285 -msgid "Validation failed" -msgstr "La validació ha fallat" - -#: includes/assets.php:366 assets/build/js/acf-input.js:9603 -#: assets/build/js/acf-input.js:10473 -msgid "Validation successful" -msgstr "Validació correcta" - -#: includes/media.php:54 assets/build/js/acf-input.js:7210 -#: assets/build/js/acf-input.js:7772 -msgid "Restricted" -msgstr "Restringit" - -#: includes/media.php:53 assets/build/js/acf-input.js:7025 -#: assets/build/js/acf-input.js:7536 -msgid "Collapse Details" -msgstr "Amaga els detalls" - -#: includes/media.php:52 assets/build/js/acf-input.js:7025 -#: assets/build/js/acf-input.js:7533 -msgid "Expand Details" -msgstr "Expandeix els detalls" - -#: includes/admin/views/acf-post-type/advanced-settings.php:465 -#: includes/media.php:51 assets/build/js/acf-input.js:6892 -#: assets/build/js/acf-input.js:7381 -msgid "Uploaded to this post" -msgstr "S'ha penjat a aquesta entrada" - -#: includes/media.php:50 assets/build/js/acf-input.js:6931 -#: assets/build/js/acf-input.js:7420 -msgctxt "verb" -msgid "Update" -msgstr "Actualitza" - -#: includes/media.php:49 -msgctxt "verb" -msgid "Edit" -msgstr "Edita" - -#: includes/assets.php:363 assets/build/js/acf-input.js:9212 -#: assets/build/js/acf-input.js:10056 -msgid "The changes you made will be lost if you navigate away from this page" -msgstr "Perdreu els canvis que heu fet si abandoneu aquesta pàgina" - -#: includes/api/api-helpers.php:3395 -msgid "File type must be %s." -msgstr "El tipus de fitxer ha de ser %s." - -#: includes/admin/post-types/admin-field-group.php:102 -#: includes/admin/views/acf-field-group/conditional-logic.php:59 -#: includes/admin/views/acf-field-group/conditional-logic.php:169 -#: includes/admin/views/acf-field-group/location-group.php:3 -#: includes/admin/views/acf-field-group/locations.php:36 -#: includes/api/api-helpers.php:3391 assets/build/js/acf-field-group.js:771 -#: assets/build/js/acf-field-group.js:2385 -#: assets/build/js/acf-field-group.js:933 -#: assets/build/js/acf-field-group.js:2807 -msgid "or" -msgstr "o" - -#: includes/api/api-helpers.php:3364 -msgid "File size must not exceed %s." -msgstr "La mida del fitxer no ha de superar %s." - -#: includes/api/api-helpers.php:3359 -msgid "File size must be at least %s." -msgstr "La mida del fitxer ha de ser almenys %s." - -#: includes/api/api-helpers.php:3344 -msgid "Image height must not exceed %dpx." -msgstr "L'alçada de la imatge no pot ser superior a %dpx." - -#: includes/api/api-helpers.php:3339 -msgid "Image height must be at least %dpx." -msgstr "L'alçada de la imatge ha de ser almenys de %dpx." - -#: includes/api/api-helpers.php:3325 -msgid "Image width must not exceed %dpx." -msgstr "L'amplada de la imatge no pot ser superior a %dpx." - -#: includes/api/api-helpers.php:3320 -msgid "Image width must be at least %dpx." -msgstr "L'amplada de la imatge ha de ser almenys de %dpx." - -#: includes/api/api-helpers.php:1561 includes/api/api-term.php:147 -msgid "(no title)" -msgstr "(sense títol)" - -#: includes/api/api-helpers.php:853 -msgid "Full Size" -msgstr "Mida completa" - -#: includes/api/api-helpers.php:812 -msgid "Large" -msgstr "Gran" - -#: includes/api/api-helpers.php:811 -msgid "Medium" -msgstr "Mitjana" - -#: includes/api/api-helpers.php:810 -msgid "Thumbnail" -msgstr "Miniatura" - -#: includes/acf-field-functions.php:854 -#: includes/admin/post-types/admin-field-group.php:99 -#: assets/build/js/acf-field-group.js:1077 -#: assets/build/js/acf-field-group.js:1260 -msgid "(no label)" -msgstr "(sense etiqueta)" - -#: includes/fields/class-acf-field-textarea.php:145 -msgid "Sets the textarea height" -msgstr "Estableix l'alçada de l'àrea de text" - -#: includes/fields/class-acf-field-textarea.php:144 -msgid "Rows" -msgstr "Files" - -#: includes/fields/class-acf-field-textarea.php:25 -msgid "Text Area" -msgstr "Àrea de text" - -#: includes/fields/class-acf-field-checkbox.php:451 -msgid "Prepend an extra checkbox to toggle all choices" -msgstr "" -"Afegeix una casella de selecció addicional per commutar totes les opcions" - -#: includes/fields/class-acf-field-checkbox.php:413 -msgid "Save 'custom' values to the field's choices" -msgstr "Desa els valors personalitzats a les opcions del camp" - -#: includes/fields/class-acf-field-checkbox.php:402 -msgid "Allow 'custom' values to be added" -msgstr "Permet afegir-hi valors personalitzats" - -#: includes/fields/class-acf-field-checkbox.php:38 -msgid "Add new choice" -msgstr "Afegeix una nova opció" - -#: includes/fields/class-acf-field-checkbox.php:174 -msgid "Toggle All" -msgstr "Commuta'ls tots" - -#: includes/fields/class-acf-field-page_link.php:506 -msgid "Allow Archives URLs" -msgstr "Permet les URLs dels arxius" - -#: includes/fields/class-acf-field-page_link.php:179 -msgid "Archives" -msgstr "Arxius" - -#: includes/fields/class-acf-field-page_link.php:25 -msgid "Page Link" -msgstr "Enllaç de la pàgina" - -#: includes/fields/class-acf-field-taxonomy.php:943 -#: includes/locations/class-acf-location-user-form.php:72 -msgid "Add" -msgstr "Afegeix" - -#: includes/admin/views/acf-field-group/fields.php:53 -#: includes/fields/class-acf-field-taxonomy.php:908 -msgid "Name" -msgstr "Nom" - -#: includes/fields/class-acf-field-taxonomy.php:892 -msgid "%s added" -msgstr "%s afegit" - -#: includes/fields/class-acf-field-taxonomy.php:856 -msgid "%s already exists" -msgstr "%s ja existeix" - -#: includes/fields/class-acf-field-taxonomy.php:844 -msgid "User unable to add new %s" -msgstr "L'usuari no pot afegir nous %s" - -#: includes/fields/class-acf-field-taxonomy.php:742 -msgid "Term ID" -msgstr "Identificador de terme" - -#: includes/fields/class-acf-field-taxonomy.php:741 -msgid "Term Object" -msgstr "Objecte de terme" - -#: includes/fields/class-acf-field-taxonomy.php:726 -msgid "Load value from posts terms" -msgstr "Carrega el valor dels termes de l’entrada" - -#: includes/fields/class-acf-field-taxonomy.php:725 -msgid "Load Terms" -msgstr "Carrega els termes" - -#: includes/fields/class-acf-field-taxonomy.php:715 -msgid "Connect selected terms to the post" -msgstr "Connecta els termes seleccionats a l'entrada" - -#: includes/fields/class-acf-field-taxonomy.php:714 -msgid "Save Terms" -msgstr "Desa els termes" - -#: includes/fields/class-acf-field-taxonomy.php:704 -msgid "Allow new terms to be created whilst editing" -msgstr "Permet crear nous termes mentre s’està editant" - -#: includes/fields/class-acf-field-taxonomy.php:703 -msgid "Create Terms" -msgstr "Crea els termes" - -#: includes/fields/class-acf-field-taxonomy.php:762 -msgid "Radio Buttons" -msgstr "Botons d'opció" - -#: includes/fields/class-acf-field-taxonomy.php:761 -msgid "Single Value" -msgstr "Un sol valor" - -#: includes/fields/class-acf-field-taxonomy.php:759 -msgid "Multi Select" -msgstr "Selecció múltiple" - -#: includes/fields/class-acf-field-checkbox.php:25 -#: includes/fields/class-acf-field-taxonomy.php:758 -msgid "Checkbox" -msgstr "Casella de selecció" - -#: includes/fields/class-acf-field-taxonomy.php:757 -msgid "Multiple Values" -msgstr "Múltiples valors" - -#: includes/fields/class-acf-field-taxonomy.php:752 -msgid "Select the appearance of this field" -msgstr "Seleccioneu l'aparença d'aquest camp" - -#: includes/fields/class-acf-field-taxonomy.php:751 -msgid "Appearance" -msgstr "Aparença" - -#: includes/fields/class-acf-field-taxonomy.php:693 -msgid "Select the taxonomy to be displayed" -msgstr "Seleccioneu la taxonomia a mostrar" - -#: includes/fields/class-acf-field-taxonomy.php:654 -msgctxt "No Terms" -msgid "No %s" -msgstr "No hi ha %s" - -#: includes/fields/class-acf-field-number.php:266 -msgid "Value must be equal to or lower than %d" -msgstr "El valor ha de ser igual o inferior a %d" - -#: includes/fields/class-acf-field-number.php:259 -msgid "Value must be equal to or higher than %d" -msgstr "El valor ha de ser igual o superior a %d" - -#: includes/fields/class-acf-field-number.php:244 -msgid "Value must be a number" -msgstr "El valor ha de ser un nombre" - -#: includes/fields/class-acf-field-number.php:25 -msgid "Number" -msgstr "Número" - -#: includes/fields/class-acf-field-radio.php:264 -msgid "Save 'other' values to the field's choices" -msgstr "Desa els valors d’’Altres’ a les opcions del camp" - -#: includes/fields/class-acf-field-radio.php:253 -msgid "Add 'other' choice to allow for custom values" -msgstr "Afegeix l'opció «altres» per permetre valors personalitzats" - -#: includes/admin/views/global/navigation.php:196 -msgid "Other" -msgstr "Altres" - -#: includes/fields/class-acf-field-radio.php:25 -msgid "Radio Button" -msgstr "Botó d'opció" - -#: includes/fields/class-acf-field-accordion.php:107 -msgid "" -"Define an endpoint for the previous accordion to stop. This accordion will " -"not be visible." -msgstr "" -"Definiu un punt final per a aturar l’acordió previ. Aquest acordió no serà " -"visible." - -#: includes/fields/class-acf-field-accordion.php:96 -msgid "Allow this accordion to open without closing others." -msgstr "Permet que aquest acordió s'obri sense tancar els altres." - -#: includes/fields/class-acf-field-accordion.php:95 -msgid "Multi-Expand" -msgstr "Expansió múltiple" - -#: includes/fields/class-acf-field-accordion.php:85 -msgid "Display this accordion as open on page load." -msgstr "Mostra aquest acordió obert en carregar la pàgina." - -#: includes/fields/class-acf-field-accordion.php:84 -msgid "Open" -msgstr "Obert" - -#: includes/fields/class-acf-field-accordion.php:25 -msgid "Accordion" -msgstr "Acordió" - -#: includes/fields/class-acf-field-file.php:267 -#: includes/fields/class-acf-field-file.php:279 -msgid "Restrict which files can be uploaded" -msgstr "Restringeix quins fitxers es poden penjar" - -#: includes/fields/class-acf-field-file.php:220 -msgid "File ID" -msgstr "Identificador de fitxer" - -#: includes/fields/class-acf-field-file.php:219 -msgid "File URL" -msgstr "URL del fitxer" - -#: includes/fields/class-acf-field-file.php:218 -msgid "File Array" -msgstr "Matriu de fitxer" - -#: includes/fields/class-acf-field-file.php:186 -msgid "Add File" -msgstr "Afegeix un fitxer" - -#: includes/admin/tools/class-acf-admin-tool-import.php:156 -#: includes/fields/class-acf-field-file.php:186 -msgid "No file selected" -msgstr "No s'ha seleccionat cap fitxer" - -#: includes/fields/class-acf-field-file.php:150 -msgid "File name" -msgstr "Nom del fitxer" - -#: includes/fields/class-acf-field-file.php:63 -#: assets/build/js/acf-input.js:2474 assets/build/js/acf-input.js:2625 -msgid "Update File" -msgstr "Actualitza el fitxer" - -#: includes/fields/class-acf-field-file.php:62 -#: assets/build/js/acf-input.js:2473 assets/build/js/acf-input.js:2624 -msgid "Edit File" -msgstr "Edita el fitxer" - -#: includes/admin/tools/class-acf-admin-tool-import.php:58 -#: includes/fields/class-acf-field-file.php:61 -#: assets/build/js/acf-input.js:2447 assets/build/js/acf-input.js:2597 -msgid "Select File" -msgstr "Escull el fitxer" - -#: includes/fields/class-acf-field-file.php:25 -msgid "File" -msgstr "Fitxer" - -#: includes/fields/class-acf-field-password.php:25 -msgid "Password" -msgstr "Contrasenya" - -#: includes/fields/class-acf-field-select.php:392 -msgid "Specify the value returned" -msgstr "Especifiqueu el valor a retornar" - -#: includes/fields/class-acf-field-select.php:461 -msgid "Use AJAX to lazy load choices?" -msgstr "Usa AJAX per a carregar opcions de manera relaxada?" - -#: includes/fields/class-acf-field-checkbox.php:362 -#: includes/fields/class-acf-field-select.php:381 -msgid "Enter each default value on a new line" -msgstr "Introduïu cada valor per defecte en una línia nova" - -#: includes/fields/class-acf-field-select.php:252 includes/media.php:48 -#: assets/build/js/acf-input.js:6790 assets/build/js/acf-input.js:7266 -msgctxt "verb" -msgid "Select" -msgstr "Selecciona" - -#: includes/fields/class-acf-field-select.php:121 -msgctxt "Select2 JS load_fail" -msgid "Loading failed" -msgstr "No s'ha pogut carregar" - -#: includes/fields/class-acf-field-select.php:120 -msgctxt "Select2 JS searching" -msgid "Searching…" -msgstr "S'està cercant…" - -#: includes/fields/class-acf-field-select.php:119 -msgctxt "Select2 JS load_more" -msgid "Loading more results…" -msgstr "S'estan carregant més resultats…" - -#: includes/fields/class-acf-field-select.php:118 -msgctxt "Select2 JS selection_too_long_n" -msgid "You can only select %d items" -msgstr "Només podeu seleccionar %d elements" - -#: includes/fields/class-acf-field-select.php:117 -msgctxt "Select2 JS selection_too_long_1" -msgid "You can only select 1 item" -msgstr "Només podeu seleccionar un element" - -#: includes/fields/class-acf-field-select.php:116 -msgctxt "Select2 JS input_too_long_n" -msgid "Please delete %d characters" -msgstr "Suprimiu %d caràcters" - -#: includes/fields/class-acf-field-select.php:115 -msgctxt "Select2 JS input_too_long_1" -msgid "Please delete 1 character" -msgstr "Suprimiu un caràcter" - -#: includes/fields/class-acf-field-select.php:114 -msgctxt "Select2 JS input_too_short_n" -msgid "Please enter %d or more characters" -msgstr "Introduïu %d o més caràcters" - -#: includes/fields/class-acf-field-select.php:113 -msgctxt "Select2 JS input_too_short_1" -msgid "Please enter 1 or more characters" -msgstr "Introduïu un o més caràcters" - -#: includes/fields/class-acf-field-select.php:112 -msgctxt "Select2 JS matches_0" -msgid "No matches found" -msgstr "No s'ha trobat cap coincidència" - -#: includes/fields/class-acf-field-select.php:111 -msgctxt "Select2 JS matches_n" -msgid "%d results are available, use up and down arrow keys to navigate." -msgstr "" -"Hi ha %d resultats disponibles, utilitzeu les fletxes amunt i avall per " -"navegar-hi." - -#: includes/fields/class-acf-field-select.php:110 -msgctxt "Select2 JS matches_1" -msgid "One result is available, press enter to select it." -msgstr "Hi ha un resultat disponible, premeu retorn per seleccionar-lo." - -#: includes/fields/class-acf-field-select.php:25 -#: includes/fields/class-acf-field-taxonomy.php:763 -msgctxt "noun" -msgid "Select" -msgstr "Selecció" - -#: includes/fields/class-acf-field-user.php:73 -msgid "User ID" -msgstr "Identificador de l'usuari" - -#: includes/fields/class-acf-field-user.php:72 -msgid "User Object" -msgstr "Objecte d'usuari" - -#: includes/fields/class-acf-field-user.php:71 -msgid "User Array" -msgstr "Matriu d’usuari" - -#: includes/fields/class-acf-field-user.php:59 -msgid "All user roles" -msgstr "Tots els rols d'usuari" - -#: includes/fields/class-acf-field-user.php:51 -msgid "Filter by Role" -msgstr "Filtra per rol" - -#: includes/fields/class-acf-field-user.php:15 includes/locations.php:101 -msgid "User" -msgstr "Usuari" - -#: includes/fields/class-acf-field-separator.php:25 -msgid "Separator" -msgstr "Separador" - -#: includes/fields/class-acf-field-color_picker.php:75 -msgid "Select Color" -msgstr "Escolliu un color" - -#: includes/admin/post-types/admin-post-type.php:129 -#: includes/admin/post-types/admin-taxonomy.php:131 -#: includes/fields/class-acf-field-color_picker.php:73 -#: assets/build/js/acf-internal-post-type.js:72 -#: assets/build/js/acf-internal-post-type.js:86 -msgid "Default" -msgstr "Predeterminat" - -#: includes/admin/views/acf-post-type/advanced-settings.php:89 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:141 -#: includes/fields/class-acf-field-color_picker.php:71 -msgid "Clear" -msgstr "Neteja" - -#: includes/fields/class-acf-field-color_picker.php:25 -msgid "Color Picker" -msgstr "Selector de color" - -#: includes/fields/class-acf-field-date_time_picker.php:88 -msgctxt "Date Time Picker JS pmTextShort" -msgid "P" -msgstr "P" - -#: includes/fields/class-acf-field-date_time_picker.php:87 -msgctxt "Date Time Picker JS pmText" -msgid "PM" -msgstr "PM" - -#: includes/fields/class-acf-field-date_time_picker.php:84 -msgctxt "Date Time Picker JS amTextShort" -msgid "A" -msgstr "A" - -#: includes/fields/class-acf-field-date_time_picker.php:83 -msgctxt "Date Time Picker JS amText" -msgid "AM" -msgstr "AM" - -#: includes/fields/class-acf-field-date_time_picker.php:81 -msgctxt "Date Time Picker JS selectText" -msgid "Select" -msgstr "Selecciona" - -#: includes/fields/class-acf-field-date_time_picker.php:80 -msgctxt "Date Time Picker JS closeText" -msgid "Done" -msgstr "Fet" - -#: includes/fields/class-acf-field-date_time_picker.php:79 -msgctxt "Date Time Picker JS currentText" -msgid "Now" -msgstr "Ara" - -#: includes/fields/class-acf-field-date_time_picker.php:78 -msgctxt "Date Time Picker JS timezoneText" -msgid "Time Zone" -msgstr "Fus horari" - -#: includes/fields/class-acf-field-date_time_picker.php:77 -msgctxt "Date Time Picker JS microsecText" -msgid "Microsecond" -msgstr "Microsegon" - -#: includes/fields/class-acf-field-date_time_picker.php:76 -msgctxt "Date Time Picker JS millisecText" -msgid "Millisecond" -msgstr "Mil·lisegon" - -#: includes/fields/class-acf-field-date_time_picker.php:75 -msgctxt "Date Time Picker JS secondText" -msgid "Second" -msgstr "Segon" - -#: includes/fields/class-acf-field-date_time_picker.php:74 -msgctxt "Date Time Picker JS minuteText" -msgid "Minute" -msgstr "Minut" - -#: includes/fields/class-acf-field-date_time_picker.php:73 -msgctxt "Date Time Picker JS hourText" -msgid "Hour" -msgstr "Hora" - -#: includes/fields/class-acf-field-date_time_picker.php:72 -msgctxt "Date Time Picker JS timeText" -msgid "Time" -msgstr "Hora" - -#: includes/fields/class-acf-field-date_time_picker.php:71 -msgctxt "Date Time Picker JS timeOnlyTitle" -msgid "Choose Time" -msgstr "Trieu l'hora" - -#: includes/fields/class-acf-field-date_time_picker.php:25 -msgid "Date Time Picker" -msgstr "Selector de data i hora" - -#: includes/fields/class-acf-field-accordion.php:106 -msgid "Endpoint" -msgstr "Punt final" - -#: includes/admin/views/acf-field-group/options.php:130 -#: includes/fields/class-acf-field-tab.php:115 -msgid "Left aligned" -msgstr "Alineat a l'esquerra" - -#: includes/admin/views/acf-field-group/options.php:129 -#: includes/fields/class-acf-field-tab.php:114 -msgid "Top aligned" -msgstr "Alineat a la part superior" - -#: includes/fields/class-acf-field-tab.php:110 -msgid "Placement" -msgstr "Ubicació" - -#: includes/fields/class-acf-field-tab.php:26 -msgid "Tab" -msgstr "Pestanya" - -#: includes/fields/class-acf-field-url.php:162 -msgid "Value must be a valid URL" -msgstr "El valor ha de ser un URL vàlid" - -#: includes/fields/class-acf-field-link.php:177 -msgid "Link URL" -msgstr "URL de l'enllaç" - -#: includes/fields/class-acf-field-link.php:176 -msgid "Link Array" -msgstr "Matriu d’enllaç" - -#: includes/fields/class-acf-field-link.php:145 -msgid "Opens in a new window/tab" -msgstr "S'obre en una nova finestra/pestanya" - -#: includes/fields/class-acf-field-link.php:140 -msgid "Select Link" -msgstr "Escolliu l’enllaç" - -#: includes/fields/class-acf-field-link.php:25 -msgid "Link" -msgstr "Enllaç" - -#: includes/fields/class-acf-field-email.php:25 -msgid "Email" -msgstr "Correu electrònic" - -#: includes/fields/class-acf-field-number.php:188 -#: includes/fields/class-acf-field-range.php:217 -msgid "Step Size" -msgstr "Mida del pas" - -#: includes/fields/class-acf-field-number.php:158 -#: includes/fields/class-acf-field-range.php:195 -msgid "Maximum Value" -msgstr "Valor màxim" - -#: includes/fields/class-acf-field-number.php:148 -#: includes/fields/class-acf-field-range.php:184 -msgid "Minimum Value" -msgstr "Valor mínim" - -#: includes/fields/class-acf-field-range.php:25 -msgid "Range" -msgstr "Interval" - -#: includes/fields/class-acf-field-button-group.php:175 -#: includes/fields/class-acf-field-checkbox.php:379 -#: includes/fields/class-acf-field-radio.php:220 -#: includes/fields/class-acf-field-select.php:399 -msgid "Both (Array)" -msgstr "Ambdós (matriu)" - -#: includes/admin/views/acf-field-group/fields.php:52 -#: includes/fields/class-acf-field-button-group.php:174 -#: includes/fields/class-acf-field-checkbox.php:378 -#: includes/fields/class-acf-field-radio.php:219 -#: includes/fields/class-acf-field-select.php:398 -msgid "Label" -msgstr "Etiqueta" - -#: includes/fields/class-acf-field-button-group.php:173 -#: includes/fields/class-acf-field-checkbox.php:377 -#: includes/fields/class-acf-field-radio.php:218 -#: includes/fields/class-acf-field-select.php:397 -msgid "Value" -msgstr "Valor" - -#: includes/fields/class-acf-field-button-group.php:222 -#: includes/fields/class-acf-field-checkbox.php:441 -#: includes/fields/class-acf-field-radio.php:292 -msgid "Vertical" -msgstr "Vertical" - -#: includes/fields/class-acf-field-button-group.php:221 -#: includes/fields/class-acf-field-checkbox.php:442 -#: includes/fields/class-acf-field-radio.php:293 -msgid "Horizontal" -msgstr "Horitzontal" - -#: includes/fields/class-acf-field-button-group.php:148 -#: includes/fields/class-acf-field-checkbox.php:352 -#: includes/fields/class-acf-field-radio.php:193 -#: includes/fields/class-acf-field-select.php:370 -msgid "red : Red" -msgstr "vermell : Vermell" - -#: includes/fields/class-acf-field-button-group.php:148 -#: includes/fields/class-acf-field-checkbox.php:352 -#: includes/fields/class-acf-field-radio.php:193 -#: includes/fields/class-acf-field-select.php:370 -msgid "For more control, you may specify both a value and label like this:" -msgstr "" -"Per a més control, podeu especificar tant un valor com una etiqueta " -"d'aquesta manera:" - -#: includes/fields/class-acf-field-button-group.php:148 -#: includes/fields/class-acf-field-checkbox.php:352 -#: includes/fields/class-acf-field-radio.php:193 -#: includes/fields/class-acf-field-select.php:370 -msgid "Enter each choice on a new line." -msgstr "Introduïu cada opció en una línia nova." - -#: includes/fields/class-acf-field-button-group.php:147 -#: includes/fields/class-acf-field-checkbox.php:351 -#: includes/fields/class-acf-field-radio.php:192 -#: includes/fields/class-acf-field-select.php:369 -msgid "Choices" -msgstr "Opcions" - -#: includes/fields/class-acf-field-button-group.php:24 -msgid "Button Group" -msgstr "Grup de botons" - -#: includes/fields/class-acf-field-button-group.php:194 -#: includes/fields/class-acf-field-page_link.php:538 -#: includes/fields/class-acf-field-post_object.php:448 -#: includes/fields/class-acf-field-radio.php:238 -#: includes/fields/class-acf-field-select.php:429 -#: includes/fields/class-acf-field-taxonomy.php:772 -#: includes/fields/class-acf-field-user.php:103 -msgid "Allow Null" -msgstr "Permet nul?" - -#: includes/fields/class-acf-field-page_link.php:263 -#: includes/fields/class-acf-field-post_object.php:257 -#: includes/fields/class-acf-field-taxonomy.php:930 -msgid "Parent" -msgstr "Pare" - -#: includes/fields/class-acf-field-wysiwyg.php:390 -msgid "TinyMCE will not be initialized until field is clicked" -msgstr "El TinyMCE no s'inicialitzarà fins que no es faci clic al camp" - -#: includes/fields/class-acf-field-wysiwyg.php:389 -msgid "Delay Initialization" -msgstr "Endarrereix la inicialització?" - -#: includes/fields/class-acf-field-wysiwyg.php:378 -msgid "Show Media Upload Buttons" -msgstr "Mostra els botons de penjar mèdia?" - -#: includes/fields/class-acf-field-wysiwyg.php:362 -msgid "Toolbar" -msgstr "Barra d'eines" - -#: includes/fields/class-acf-field-wysiwyg.php:354 -msgid "Text Only" -msgstr "Només Text" - -#: includes/fields/class-acf-field-wysiwyg.php:353 -msgid "Visual Only" -msgstr "Només visual" - -#: includes/fields/class-acf-field-wysiwyg.php:352 -msgid "Visual & Text" -msgstr "Visual i text" - -#: includes/fields/class-acf-field-wysiwyg.php:347 -msgid "Tabs" -msgstr "Pestanyes" - -#: includes/fields/class-acf-field-wysiwyg.php:285 -msgid "Click to initialize TinyMCE" -msgstr "Feu clic per inicialitzar el TinyMCE" - -#: includes/fields/class-acf-field-wysiwyg.php:279 -msgctxt "Name for the Text editor tab (formerly HTML)" -msgid "Text" -msgstr "Text" - -#: includes/fields/class-acf-field-wysiwyg.php:278 -msgid "Visual" -msgstr "Visual" - -#: includes/fields/class-acf-field-text.php:189 -#: includes/fields/class-acf-field-textarea.php:236 -msgid "Value must not exceed %d characters" -msgstr "El valor no ha de superar els %d caràcters" - -#: includes/fields/class-acf-field-text.php:124 -#: includes/fields/class-acf-field-textarea.php:124 -msgid "Leave blank for no limit" -msgstr "Deixeu-lo en blanc per no establir cap límit" - -#: includes/fields/class-acf-field-text.php:123 -#: includes/fields/class-acf-field-textarea.php:123 -msgid "Character Limit" -msgstr "Límit de caràcters" - -#: includes/fields/class-acf-field-email.php:158 -#: includes/fields/class-acf-field-number.php:209 -#: includes/fields/class-acf-field-password.php:105 -#: includes/fields/class-acf-field-range.php:239 -#: includes/fields/class-acf-field-text.php:164 -msgid "Appears after the input" -msgstr "Apareix després del camp" - -#: includes/fields/class-acf-field-email.php:157 -#: includes/fields/class-acf-field-number.php:208 -#: includes/fields/class-acf-field-password.php:104 -#: includes/fields/class-acf-field-range.php:238 -#: includes/fields/class-acf-field-text.php:163 -msgid "Append" -msgstr "Afegeix al final" - -#: includes/fields/class-acf-field-email.php:148 -#: includes/fields/class-acf-field-number.php:199 -#: includes/fields/class-acf-field-password.php:95 -#: includes/fields/class-acf-field-range.php:229 -#: includes/fields/class-acf-field-text.php:154 -msgid "Appears before the input" -msgstr "Apareix abans del camp" - -#: includes/fields/class-acf-field-email.php:147 -#: includes/fields/class-acf-field-number.php:198 -#: includes/fields/class-acf-field-password.php:94 -#: includes/fields/class-acf-field-range.php:228 -#: includes/fields/class-acf-field-text.php:153 -msgid "Prepend" -msgstr "Afegeix al principi" - -#: includes/fields/class-acf-field-email.php:138 -#: includes/fields/class-acf-field-number.php:179 -#: includes/fields/class-acf-field-password.php:85 -#: includes/fields/class-acf-field-text.php:144 -#: includes/fields/class-acf-field-textarea.php:156 -#: includes/fields/class-acf-field-url.php:122 -msgid "Appears within the input" -msgstr "Apareix a dins del camp" - -#: includes/fields/class-acf-field-email.php:137 -#: includes/fields/class-acf-field-number.php:178 -#: includes/fields/class-acf-field-password.php:84 -#: includes/fields/class-acf-field-text.php:143 -#: includes/fields/class-acf-field-textarea.php:155 -#: includes/fields/class-acf-field-url.php:121 -msgid "Placeholder Text" -msgstr "Text de mostra" - -#: includes/fields/class-acf-field-button-group.php:158 -#: includes/fields/class-acf-field-email.php:118 -#: includes/fields/class-acf-field-number.php:129 -#: includes/fields/class-acf-field-radio.php:203 -#: includes/fields/class-acf-field-range.php:165 -#: includes/fields/class-acf-field-text.php:104 -#: includes/fields/class-acf-field-textarea.php:104 -#: includes/fields/class-acf-field-url.php:102 -#: includes/fields/class-acf-field-wysiwyg.php:312 -msgid "Appears when creating a new post" -msgstr "Apareix quan es crea una nova entrada" - -#: includes/fields/class-acf-field-text.php:25 -msgid "Text" -msgstr "Text" - -#: includes/fields/class-acf-field-relationship.php:794 -msgid "%1$s requires at least %2$s selection" -msgid_plural "%1$s requires at least %2$s selections" -msgstr[0] "%1$s requereix com a mínim %2$s selecció" -msgstr[1] "%1$s requereix com a mínim %2$s seleccions" - -#: includes/fields/class-acf-field-post_object.php:417 -#: includes/fields/class-acf-field-relationship.php:644 -msgid "Post ID" -msgstr "ID de l’entrada" - -#: includes/fields/class-acf-field-post_object.php:17 -#: includes/fields/class-acf-field-post_object.php:416 -#: includes/fields/class-acf-field-relationship.php:643 -msgid "Post Object" -msgstr "Objecte de l'entrada" - -#: includes/fields/class-acf-field-relationship.php:676 -msgid "Maximum Posts" -msgstr "Màxim d'entrades" - -#: includes/fields/class-acf-field-relationship.php:666 -msgid "Minimum Posts" -msgstr "Mínim d'entrades" - -#: includes/admin/views/acf-field-group/options.php:183 -#: includes/admin/views/acf-post-type/advanced-settings.php:29 -#: includes/fields/class-acf-field-relationship.php:701 -msgid "Featured Image" -msgstr "Imatge destacada" - -#: includes/fields/class-acf-field-relationship.php:697 -msgid "Selected elements will be displayed in each result" -msgstr "Els elements seleccionats es mostraran a cada resultat" - -#: includes/fields/class-acf-field-relationship.php:696 -msgid "Elements" -msgstr "Elements" - -#: includes/fields/class-acf-field-relationship.php:630 -#: includes/fields/class-acf-field-taxonomy.php:20 -#: includes/fields/class-acf-field-taxonomy.php:692 -#: includes/locations/class-acf-location-taxonomy.php:22 -msgid "Taxonomy" -msgstr "Taxonomia" - -#: includes/fields/class-acf-field-relationship.php:629 -#: includes/locations/class-acf-location-post-type.php:22 -#: includes/post-types/class-acf-post-type.php:92 -msgid "Post Type" -msgstr "Tipus de contingut" - -#: includes/fields/class-acf-field-relationship.php:623 -msgid "Filters" -msgstr "Filtres" - -#: includes/fields/class-acf-field-page_link.php:499 -#: includes/fields/class-acf-field-post_object.php:404 -#: includes/fields/class-acf-field-relationship.php:616 -msgid "All taxonomies" -msgstr "Totes les taxonomies" - -#: includes/fields/class-acf-field-page_link.php:491 -#: includes/fields/class-acf-field-post_object.php:396 -#: includes/fields/class-acf-field-relationship.php:608 -msgid "Filter by Taxonomy" -msgstr "Filtra per taxonomia" - -#: includes/fields/class-acf-field-page_link.php:469 -#: includes/fields/class-acf-field-post_object.php:374 -#: includes/fields/class-acf-field-relationship.php:586 -msgid "All post types" -msgstr "Tots els tipus de contingut" - -#: includes/fields/class-acf-field-page_link.php:461 -#: includes/fields/class-acf-field-post_object.php:366 -#: includes/fields/class-acf-field-relationship.php:578 -msgid "Filter by Post Type" -msgstr "Filtra per tipus de contingut" - -#: includes/fields/class-acf-field-relationship.php:476 -msgid "Search..." -msgstr "Cerca…" - -#: includes/fields/class-acf-field-relationship.php:406 -msgid "Select taxonomy" -msgstr "Seleccioneu una taxonomia" - -#: includes/fields/class-acf-field-relationship.php:397 -msgid "Select post type" -msgstr "Seleccioneu el tipus de contingut" - -#: includes/fields/class-acf-field-relationship.php:61 -#: assets/build/js/acf-input.js:3930 assets/build/js/acf-input.js:4214 -msgid "No matches found" -msgstr "No s'ha trobat cap coincidència" - -#: includes/fields/class-acf-field-relationship.php:60 -#: assets/build/js/acf-input.js:3913 assets/build/js/acf-input.js:4193 -msgid "Loading" -msgstr "S'està carregant" - -#: includes/fields/class-acf-field-relationship.php:59 -#: assets/build/js/acf-input.js:3818 assets/build/js/acf-input.js:4084 -msgid "Maximum values reached ( {max} values )" -msgstr "S’ha arribat al màxim de valors ({max} valors)" - -#: includes/fields/class-acf-field-relationship.php:17 -msgid "Relationship" -msgstr "Relació" - -#: includes/fields/class-acf-field-file.php:291 -#: includes/fields/class-acf-field-image.php:317 -msgid "Comma separated list. Leave blank for all types" -msgstr "Llista separada per comes. Deixeu-ho en blanc per a tots els tipus" - -#: includes/fields/class-acf-field-file.php:290 -#: includes/fields/class-acf-field-image.php:316 -msgid "Allowed File Types" -msgstr "Tipus de fitxers permesos" - -#: includes/fields/class-acf-field-file.php:278 -#: includes/fields/class-acf-field-image.php:280 -msgid "Maximum" -msgstr "Màxim" - -#: includes/fields/class-acf-field-file.php:154 -#: includes/fields/class-acf-field-file.php:270 -#: includes/fields/class-acf-field-file.php:282 -#: includes/fields/class-acf-field-image.php:271 -#: includes/fields/class-acf-field-image.php:307 -msgid "File size" -msgstr "Mida del fitxer" - -#: includes/fields/class-acf-field-image.php:245 -#: includes/fields/class-acf-field-image.php:281 -msgid "Restrict which images can be uploaded" -msgstr "Restringeix quines imatges es poden penjar" - -#: includes/fields/class-acf-field-file.php:266 -#: includes/fields/class-acf-field-image.php:244 -msgid "Minimum" -msgstr "Mínim" - -#: includes/fields/class-acf-field-file.php:235 -#: includes/fields/class-acf-field-image.php:210 -msgid "Uploaded to post" -msgstr "S'ha penjat a l'entrada" - -#: includes/fields/class-acf-field-file.php:234 -#: includes/fields/class-acf-field-image.php:209 -#: includes/locations/class-acf-location-attachment.php:73 -#: includes/locations/class-acf-location-comment.php:61 -#: includes/locations/class-acf-location-nav-menu.php:74 -#: includes/locations/class-acf-location-taxonomy.php:63 -#: includes/locations/class-acf-location-user-form.php:71 -#: includes/locations/class-acf-location-user-role.php:78 -#: includes/locations/class-acf-location-widget.php:65 -msgid "All" -msgstr "Tots" - -#: includes/fields/class-acf-field-file.php:229 -#: includes/fields/class-acf-field-image.php:204 -msgid "Limit the media library choice" -msgstr "Limita l'elecció d'elements de la mediateca" - -#: includes/fields/class-acf-field-file.php:228 -#: includes/fields/class-acf-field-image.php:203 -msgid "Library" -msgstr "Mediateca" - -#: includes/fields/class-acf-field-image.php:336 -msgid "Preview Size" -msgstr "Mida de la vista prèvia" - -#: includes/fields/class-acf-field-image.php:195 -msgid "Image ID" -msgstr "ID de la imatge" - -#: includes/fields/class-acf-field-image.php:194 -msgid "Image URL" -msgstr "URL de la imatge" - -#: includes/fields/class-acf-field-image.php:193 -msgid "Image Array" -msgstr "Matriu d'imatges" - -#: includes/fields/class-acf-field-button-group.php:168 -#: includes/fields/class-acf-field-checkbox.php:372 -#: includes/fields/class-acf-field-file.php:213 -#: includes/fields/class-acf-field-link.php:171 -#: includes/fields/class-acf-field-radio.php:213 -msgid "Specify the returned value on front end" -msgstr "Especifiqueu el valor a retornar a la interfície frontal" - -#: includes/fields/class-acf-field-button-group.php:167 -#: includes/fields/class-acf-field-checkbox.php:371 -#: includes/fields/class-acf-field-file.php:212 -#: includes/fields/class-acf-field-link.php:170 -#: includes/fields/class-acf-field-radio.php:212 -#: includes/fields/class-acf-field-taxonomy.php:736 -msgid "Return Value" -msgstr "Valor de retorn" - -#: includes/fields/class-acf-field-image.php:162 -msgid "Add Image" -msgstr "Afegeix imatge" - -#: includes/fields/class-acf-field-image.php:162 -msgid "No image selected" -msgstr "No s'ha seleccionat cap imatge" - -#: includes/assets.php:352 includes/fields/class-acf-field-file.php:162 -#: includes/fields/class-acf-field-image.php:142 -#: includes/fields/class-acf-field-link.php:145 assets/build/js/acf.js:1563 -#: assets/build/js/acf.js:1657 -msgid "Remove" -msgstr "Suprimeix" - -#: includes/admin/views/acf-field-group/field.php:76 -#: includes/fields/class-acf-field-file.php:160 -#: includes/fields/class-acf-field-image.php:140 -#: includes/fields/class-acf-field-link.php:145 -msgid "Edit" -msgstr "Edita" - -#: includes/fields/class-acf-field-image.php:70 includes/media.php:55 -#: assets/build/js/acf-input.js:6837 assets/build/js/acf-input.js:7320 -msgid "All images" -msgstr "Totes les imatges" - -#: includes/fields/class-acf-field-image.php:69 -#: assets/build/js/acf-input.js:3181 assets/build/js/acf-input.js:3399 -msgid "Update Image" -msgstr "Actualitza la imatge" - -#: includes/fields/class-acf-field-image.php:68 -#: assets/build/js/acf-input.js:3180 assets/build/js/acf-input.js:3398 -msgid "Edit Image" -msgstr "Edita la imatge" - -#: includes/fields/class-acf-field-image.php:67 -#: assets/build/js/acf-input.js:3156 assets/build/js/acf-input.js:3373 -msgid "Select Image" -msgstr "Escolliu una imatge" - -#: includes/fields/class-acf-field-image.php:25 -msgid "Image" -msgstr "Imatge" - -#: includes/fields/class-acf-field-message.php:125 -msgid "Allow HTML markup to display as visible text instead of rendering" -msgstr "" -"Permet que el marcat HTML es mostri com a text visible en comptes de " -"renderitzat" - -#: includes/fields/class-acf-field-message.php:124 -msgid "Escape HTML" -msgstr "Escapa l’HTML" - -#: includes/fields/class-acf-field-message.php:116 -#: includes/fields/class-acf-field-textarea.php:172 -msgid "No Formatting" -msgstr "Sense format" - -#: includes/fields/class-acf-field-message.php:115 -#: includes/fields/class-acf-field-textarea.php:171 -msgid "Automatically add <br>" -msgstr "Afegeix <br> automàticament" - -#: includes/fields/class-acf-field-message.php:114 -#: includes/fields/class-acf-field-textarea.php:170 -msgid "Automatically add paragraphs" -msgstr "Afegeix paràgrafs automàticament" - -#: includes/fields/class-acf-field-message.php:110 -#: includes/fields/class-acf-field-textarea.php:166 -msgid "Controls how new lines are rendered" -msgstr "Controla com es mostren les noves línies" - -#: includes/fields/class-acf-field-message.php:109 -#: includes/fields/class-acf-field-textarea.php:165 -msgid "New Lines" -msgstr "Noves línies" - -#: includes/fields/class-acf-field-date_picker.php:232 -#: includes/fields/class-acf-field-date_time_picker.php:220 -msgid "Week Starts On" -msgstr "La setmana comença el" - -#: includes/fields/class-acf-field-date_picker.php:201 -msgid "The format used when saving a value" -msgstr "El format que s’usarà en desar el valor" - -#: includes/fields/class-acf-field-date_picker.php:200 -msgid "Save Format" -msgstr "Format de desat" - -#: includes/fields/class-acf-field-date_picker.php:67 -msgctxt "Date Picker JS weekHeader" -msgid "Wk" -msgstr "Stm" - -#: includes/fields/class-acf-field-date_picker.php:66 -msgctxt "Date Picker JS prevText" -msgid "Prev" -msgstr "Anterior" - -#: includes/fields/class-acf-field-date_picker.php:65 -msgctxt "Date Picker JS nextText" -msgid "Next" -msgstr "Següent" - -#: includes/fields/class-acf-field-date_picker.php:64 -msgctxt "Date Picker JS currentText" -msgid "Today" -msgstr "Avui" - -#: includes/fields/class-acf-field-date_picker.php:63 -msgctxt "Date Picker JS closeText" -msgid "Done" -msgstr "Fet" - -#: includes/fields/class-acf-field-date_picker.php:25 -msgid "Date Picker" -msgstr "Selector de data" - -#: includes/fields/class-acf-field-image.php:248 -#: includes/fields/class-acf-field-image.php:284 -#: includes/fields/class-acf-field-oembed.php:268 -msgid "Width" -msgstr "Amplada" - -#: includes/fields/class-acf-field-oembed.php:265 -#: includes/fields/class-acf-field-oembed.php:277 -msgid "Embed Size" -msgstr "Mida de la incrustació" - -#: includes/fields/class-acf-field-oembed.php:222 -msgid "Enter URL" -msgstr "Introduïu la URL" - -#: includes/fields/class-acf-field-oembed.php:25 -msgid "oEmbed" -msgstr "oEmbed" - -#: includes/fields/class-acf-field-true_false.php:184 -msgid "Text shown when inactive" -msgstr "El text que es mostrarà quan està inactiu" - -#: includes/fields/class-acf-field-true_false.php:183 -msgid "Off Text" -msgstr "Text d’inactiu" - -#: includes/fields/class-acf-field-true_false.php:168 -msgid "Text shown when active" -msgstr "El text que es mostrarà quan està actiu" - -#: includes/fields/class-acf-field-true_false.php:167 -msgid "On Text" -msgstr "Text d’actiu" - -#: includes/fields/class-acf-field-select.php:450 -#: includes/fields/class-acf-field-true_false.php:199 -msgid "Stylized UI" -msgstr "IU estilitzada" - -#: includes/fields/class-acf-field-button-group.php:157 -#: includes/fields/class-acf-field-checkbox.php:361 -#: includes/fields/class-acf-field-color_picker.php:156 -#: includes/fields/class-acf-field-email.php:117 -#: includes/fields/class-acf-field-number.php:128 -#: includes/fields/class-acf-field-radio.php:202 -#: includes/fields/class-acf-field-range.php:164 -#: includes/fields/class-acf-field-select.php:380 -#: includes/fields/class-acf-field-text.php:103 -#: includes/fields/class-acf-field-textarea.php:103 -#: includes/fields/class-acf-field-true_false.php:147 -#: includes/fields/class-acf-field-url.php:101 -#: includes/fields/class-acf-field-wysiwyg.php:311 -msgid "Default Value" -msgstr "Valor per defecte" - -#: includes/fields/class-acf-field-true_false.php:138 -msgid "Displays text alongside the checkbox" -msgstr "Mostra el text al costat de la casella de selecció" - -#: includes/fields/class-acf-field-message.php:26 -#: includes/fields/class-acf-field-message.php:99 -#: includes/fields/class-acf-field-true_false.php:137 -msgid "Message" -msgstr "Missatge" - -#: includes/assets.php:351 includes/fields/class-acf-field-true_false.php:86 -#: includes/fields/class-acf-field-true_false.php:187 -#: assets/build/js/acf.js:1740 assets/build/js/acf.js:1857 -msgid "No" -msgstr "No" - -#: includes/assets.php:350 includes/fields/class-acf-field-true_false.php:83 -#: includes/fields/class-acf-field-true_false.php:171 -#: assets/build/js/acf.js:1739 assets/build/js/acf.js:1856 -msgid "Yes" -msgstr "Sí" - -#: includes/fields/class-acf-field-true_false.php:25 -msgid "True / False" -msgstr "Cert / Fals" - -#: includes/fields/class-acf-field-group.php:474 -msgid "Row" -msgstr "Fila" - -#: includes/fields/class-acf-field-group.php:473 -msgid "Table" -msgstr "Taula" - -#: includes/admin/post-types/admin-field-group.php:140 -#: includes/fields/class-acf-field-group.php:472 -msgid "Block" -msgstr "Bloc" - -#: includes/fields/class-acf-field-group.php:467 -msgid "Specify the style used to render the selected fields" -msgstr "Especifiqueu l’estil usat per a mostrar els camps escollits" - -#: includes/fields.php:356 includes/fields/class-acf-field-button-group.php:215 -#: includes/fields/class-acf-field-checkbox.php:435 -#: includes/fields/class-acf-field-group.php:466 -#: includes/fields/class-acf-field-radio.php:286 -msgid "Layout" -msgstr "Disposició" - -#: includes/fields/class-acf-field-group.php:450 -msgid "Sub Fields" -msgstr "Sub camps" - -#: includes/fields/class-acf-field-group.php:25 -msgid "Group" -msgstr "Grup" - -#: includes/fields/class-acf-field-google-map.php:235 -msgid "Customize the map height" -msgstr "Personalitzeu l'alçada del mapa" - -#: includes/fields/class-acf-field-google-map.php:234 -#: includes/fields/class-acf-field-image.php:259 -#: includes/fields/class-acf-field-image.php:295 -#: includes/fields/class-acf-field-oembed.php:280 -msgid "Height" -msgstr "Alçada" - -#: includes/fields/class-acf-field-google-map.php:223 -msgid "Set the initial zoom level" -msgstr "Estableix el valor inicial de zoom" - -#: includes/fields/class-acf-field-google-map.php:222 -msgid "Zoom" -msgstr "Zoom" - -#: includes/fields/class-acf-field-google-map.php:196 -#: includes/fields/class-acf-field-google-map.php:209 -msgid "Center the initial map" -msgstr "Centra el mapa inicial" - -#: includes/fields/class-acf-field-google-map.php:195 -#: includes/fields/class-acf-field-google-map.php:208 -msgid "Center" -msgstr "Centra" - -#: includes/fields/class-acf-field-google-map.php:163 -msgid "Search for address..." -msgstr "Cerca l'adreça…" - -#: includes/fields/class-acf-field-google-map.php:160 -msgid "Find current location" -msgstr "Cerca la ubicació actual" - -#: includes/fields/class-acf-field-google-map.php:159 -msgid "Clear location" -msgstr "Neteja la ubicació" - -#: includes/fields/class-acf-field-google-map.php:158 -#: includes/fields/class-acf-field-relationship.php:628 -msgid "Search" -msgstr "Cerca" - -#: includes/fields/class-acf-field-google-map.php:63 -#: assets/build/js/acf-input.js:2840 assets/build/js/acf-input.js:3026 -msgid "Sorry, this browser does not support geolocation" -msgstr "Aquest navegador no és compatible amb la geolocalització" - -#: includes/fields/class-acf-field-google-map.php:25 -msgid "Google Map" -msgstr "Mapa de Google" - -#: includes/fields/class-acf-field-date_picker.php:212 -#: includes/fields/class-acf-field-date_time_picker.php:201 -#: includes/fields/class-acf-field-time_picker.php:132 -msgid "The format returned via template functions" -msgstr "El format que es retornarà a través de les funcions del tema" - -#: includes/fields/class-acf-field-color_picker.php:180 -#: includes/fields/class-acf-field-date_picker.php:211 -#: includes/fields/class-acf-field-date_time_picker.php:200 -#: includes/fields/class-acf-field-image.php:187 -#: includes/fields/class-acf-field-post_object.php:411 -#: includes/fields/class-acf-field-relationship.php:638 -#: includes/fields/class-acf-field-select.php:391 -#: includes/fields/class-acf-field-time_picker.php:131 -#: includes/fields/class-acf-field-user.php:66 -msgid "Return Format" -msgstr "Format de retorn" - -#: includes/fields/class-acf-field-date_picker.php:190 -#: includes/fields/class-acf-field-date_picker.php:221 -#: includes/fields/class-acf-field-date_time_picker.php:192 -#: includes/fields/class-acf-field-date_time_picker.php:210 -#: includes/fields/class-acf-field-time_picker.php:123 -#: includes/fields/class-acf-field-time_picker.php:139 -msgid "Custom:" -msgstr "Personalitzat:" - -#: includes/fields/class-acf-field-date_picker.php:182 -#: includes/fields/class-acf-field-date_time_picker.php:183 -#: includes/fields/class-acf-field-time_picker.php:116 -msgid "The format displayed when editing a post" -msgstr "El format que es mostrarà quan editeu una entrada" - -#: includes/fields/class-acf-field-date_picker.php:181 -#: includes/fields/class-acf-field-date_time_picker.php:182 -#: includes/fields/class-acf-field-time_picker.php:115 -msgid "Display Format" -msgstr "Format a mostrar" - -#: includes/fields/class-acf-field-time_picker.php:25 -msgid "Time Picker" -msgstr "Selector d'hora" - -#. translators: counts for inactive field groups -#: acf.php:503 -msgid "Inactive (%s)" -msgid_plural "Inactive (%s)" -msgstr[0] "Inactiu (%s)" -msgstr[1] "Inactius (%s)" - -#: acf.php:462 -msgid "No Fields found in Trash" -msgstr "No s'ha trobat cap camp a la paperera" - -#: acf.php:461 -msgid "No Fields found" -msgstr "No s'ha trobat cap camp" - -#: acf.php:460 -msgid "Search Fields" -msgstr "Cerca camps" - -#: acf.php:459 -msgid "View Field" -msgstr "Visualitza el camp" - -#: acf.php:458 includes/admin/views/acf-field-group/fields.php:115 -msgid "New Field" -msgstr "Nou camp" - -#: acf.php:457 -msgid "Edit Field" -msgstr "Edita el camp" - -#: acf.php:456 -msgid "Add New Field" -msgstr "Afegeix un nou camp" - -#: acf.php:454 -msgid "Field" -msgstr "Camp" - -#: acf.php:453 includes/admin/post-types/admin-field-group.php:163 -#: includes/admin/post-types/admin-field-groups.php:119 -#: includes/admin/views/acf-field-group/fields.php:32 -msgid "Fields" -msgstr "Camps" - -#: acf.php:428 -msgid "No Field Groups found in Trash" -msgstr "No s'ha trobat cap grup de camps a la paperera" - -#: acf.php:427 -msgid "No Field Groups found" -msgstr "No s'ha trobat cap grup de camps" - -#: acf.php:426 -msgid "Search Field Groups" -msgstr "Cerca grups de camps" - -#: acf.php:425 -msgid "View Field Group" -msgstr "Visualitza el grup de camps" - -#: acf.php:424 -msgid "New Field Group" -msgstr "Nou grup de camps" - -#: acf.php:423 -msgid "Edit Field Group" -msgstr "Edita el grup de camps" - -#: acf.php:422 -msgid "Add New Field Group" -msgstr "Afegeix un nou grup de camps" - -#: acf.php:421 acf.php:455 -#: includes/admin/views/acf-post-type/advanced-settings.php:219 -#: includes/admin/views/acf-post-type/advanced-settings.php:221 -#: includes/post-types/class-acf-post-type.php:93 -#: includes/post-types/class-acf-taxonomy.php:92 -msgid "Add New" -msgstr "Afegeix-ne un" - -#: acf.php:420 -msgid "Field Group" -msgstr "Grup de camps" - -#: acf.php:419 includes/admin/post-types/admin-field-groups.php:78 -#: includes/admin/post-types/admin-post-types.php:138 -#: includes/admin/post-types/admin-taxonomies.php:138 -msgid "Field Groups" -msgstr "Grups de camps" - -#. Description of the plugin -msgid "Customize WordPress with powerful, professional and intuitive fields." -msgstr "" -"Personalitzeu el WordPress amb camps potents, professionals i intuïtius." - -#. Plugin URI of the plugin -msgid "https://www.advancedcustomfields.com" -msgstr "https://www.advancedcustomfields.com" - -#. Plugin Name of the plugin -#: acf.php:94 -msgid "Advanced Custom Fields" -msgstr "Advanced Custom Fields" - -#: pro/acf-pro.php:27 -msgid "Advanced Custom Fields PRO" -msgstr "Advanced Custom Fields PRO" - -#: pro/blocks.php:170 -#, fuzzy -#| msgid "%s value is required" -msgid "Block type name is required." -msgstr "Cal introduir un valor a %s" - -#. translators: The name of the block type -#: pro/blocks.php:178 -msgid "Block type \"%s\" is already registered." -msgstr "" - -#: pro/blocks.php:726 -msgid "Switch to Edit" -msgstr "Canvia a edició" - -#: pro/blocks.php:727 -msgid "Switch to Preview" -msgstr "Canvia a previsualització" - -#: pro/blocks.php:728 -msgid "Change content alignment" -msgstr "" - -#. translators: %s: Block type title -#: pro/blocks.php:731 -#, fuzzy -#| msgid "Settings" -msgid "%s settings" -msgstr "Paràmetres" - -#: pro/blocks.php:936 -msgid "This block contains no editable fields." -msgstr "" - -#. translators: %s: an admin URL to the field group edit screen -#: pro/blocks.php:942 -msgid "" -"Assign a field group to add fields to " -"this block." -msgstr "" - -#: pro/options-page.php:78 -msgid "Options Updated" -msgstr "S’han actualitzat les opcions" - -#: pro/updates.php:99 -#, fuzzy -#| msgid "" -#| "To enable updates, please enter your license key on the Updates page. If you don't have a licence key, please see details & pricing." -msgid "" -"To enable updates, please enter your license key on the Updates page. If you don't have a licence key, please see details & pricing." -msgstr "" -"Per a activar les actualitzacions, introduïu la clau de llicència a la " -"pàgina d’Actualitzacions. Si no teniu cap clau de " -"llicència, vegeu-ne elsdetalls i preu." - -#: pro/updates.php:159 -msgid "" -"ACF Activation Error. Your defined license key has changed, but an " -"error occurred when deactivating your old licence" -msgstr "" - -#: pro/updates.php:154 -msgid "" -"ACF Activation Error. Your defined license key has changed, but an " -"error occurred when connecting to activation server" -msgstr "" - -#: pro/updates.php:192 -msgid "ACF Activation Error" -msgstr "" - -#: pro/updates.php:187 -#, fuzzy -#| msgid "Error. Could not connect to update server" -msgid "" -"ACF Activation Error. An error occurred when connecting to activation " -"server" -msgstr "Error. No s’ha pogut connectar al servidor d’actualitzacions" - -#: pro/updates.php:279 -msgid "Check Again" -msgstr "Torneu-ho a comprovar" - -#: pro/updates.php:593 -#, fuzzy -#| msgid "Error. Could not connect to update server" -msgid "ACF Activation Error. Could not connect to activation server" -msgstr "Error. No s’ha pogut connectar al servidor d’actualitzacions" - -#: pro/admin/admin-options-page.php:195 -msgid "Publish" -msgstr "Publica" - -#: pro/admin/admin-options-page.php:199 -msgid "" -"No Custom Field Groups found for this options page. Create a " -"Custom Field Group" -msgstr "" -"No s’han trobat grups de camps personalitzats per a aquesta pàgina " -"d’opcions. Creeu un grup de camps nou" - -#: pro/admin/admin-updates.php:52 -msgid "Error. Could not connect to update server" -msgstr "Error. No s’ha pogut connectar al servidor d’actualitzacions" - -#: pro/admin/admin-updates.php:212 -msgid "" -"Error. Could not authenticate update package. Please check again or " -"deactivate and reactivate your ACF PRO license." -msgstr "" -"Error. No s’ha pogut verificar el paquet d’actualització. Torneu-ho a " -"intentar o desactiveu i torneu a activar la vostra llicència de l’ACF PRO." - -#: pro/admin/admin-updates.php:199 -#, fuzzy -#| msgid "" -#| "Error. Could not authenticate update package. Please check again " -#| "or deactivate and reactivate your ACF PRO license." -msgid "" -"Error. Your license for this site has expired or been deactivated. " -"Please reactivate your ACF PRO license." -msgstr "" -"Error. No s’ha pogut verificar el paquet d’actualització. Torneu-ho a " -"intentar o desactiveu i torneu a activar la vostra llicència de l’ACF PRO." - -#: pro/fields/class-acf-field-clone.php:27, -#: pro/fields/class-acf-field-repeater.php:31 -msgid "" -"Allows you to select and display existing fields. It does not duplicate any " -"fields in the database, but loads and displays the selected fields at run-" -"time. The Clone field can either replace itself with the selected fields or " -"display the selected fields as a group of subfields." -msgstr "" - -#: pro/fields/class-acf-field-clone.php:819 -msgid "Select one or more fields you wish to clone" -msgstr "Escolliu un o més camps a clonar" - -#: pro/fields/class-acf-field-clone.php:838 -msgid "Display" -msgstr "Mostra" - -#: pro/fields/class-acf-field-clone.php:839 -msgid "Specify the style used to render the clone field" -msgstr "Indiqueu l’estil que s’usarà per a mostrar el camp clonat" - -#: pro/fields/class-acf-field-clone.php:844 -msgid "Group (displays selected fields in a group within this field)" -msgstr "Grup (mostra els camps escollits en un grup dins d’aquest camp)" - -#: pro/fields/class-acf-field-clone.php:845 -msgid "Seamless (replaces this field with selected fields)" -msgstr "Fluid (reemplaça aquest camp amb els camps escollits)" - -#: pro/fields/class-acf-field-clone.php:868 -msgid "Labels will be displayed as %s" -msgstr "Les etiquetes es mostraran com a %s" - -#: pro/fields/class-acf-field-clone.php:873 -msgid "Prefix Field Labels" -msgstr "Prefixa les etiquetes dels camps" - -#: pro/fields/class-acf-field-clone.php:883 -msgid "Values will be saved as %s" -msgstr "Els valors es desaran com a %s" - -#: pro/fields/class-acf-field-clone.php:888 -msgid "Prefix Field Names" -msgstr "Prefixa els noms dels camps" - -#: pro/fields/class-acf-field-clone.php:1005 -msgid "Unknown field" -msgstr "Camp desconegut" - -#: pro/fields/class-acf-field-clone.php:1042 -msgid "Unknown field group" -msgstr "Grup de camps desconegut" - -#: pro/fields/class-acf-field-clone.php:1046 -msgid "All fields from %s field group" -msgstr "Tots els camps del grup de camps %s" - -#: pro/fields/class-acf-field-flexible-content.php:27 -msgid "" -"Allows you to define, create and manage content with total control by " -"creating layouts that contain subfields that content editors can choose from." -msgstr "" - -#: pro/fields/class-acf-field-flexible-content.php:36, -#: pro/fields/class-acf-field-repeater.php:103, -#: pro/fields/class-acf-field-repeater.php:297 -msgid "Add Row" -msgstr "Afegeix una fila" - -#: pro/fields/class-acf-field-flexible-content.php:76, -#: pro/fields/class-acf-field-flexible-content.php:943, -#: pro/fields/class-acf-field-flexible-content.php:1022 -msgid "layout" -msgid_plural "layouts" -msgstr[0] "disposició" -msgstr[1] "disposicions" - -#: pro/fields/class-acf-field-flexible-content.php:77 -msgid "layouts" -msgstr "disposicions" - -#: pro/fields/class-acf-field-flexible-content.php:81, -#: pro/fields/class-acf-field-flexible-content.php:942, -#: pro/fields/class-acf-field-flexible-content.php:1021 -msgid "This field requires at least {min} {label} {identifier}" -msgstr "Aquest camp requereix almenys {min} {label} de {identifier}" - -#: pro/fields/class-acf-field-flexible-content.php:82 -msgid "This field has a limit of {max} {label} {identifier}" -msgstr "Aquest camp té un límit de {max} {label} de {identifier}" - -#: pro/fields/class-acf-field-flexible-content.php:85 -msgid "{available} {label} {identifier} available (max {max})" -msgstr "{available} {label} de {identifier} disponible (màx {max})" - -#: pro/fields/class-acf-field-flexible-content.php:86 -msgid "{required} {label} {identifier} required (min {min})" -msgstr "{required} {label} de {identifier} necessari (mín {min})" - -#: pro/fields/class-acf-field-flexible-content.php:89 -msgid "Flexible Content requires at least 1 layout" -msgstr "El contingut flexible necessita almenys una disposició" - -#: pro/fields/class-acf-field-flexible-content.php:282 -msgid "Click the \"%s\" button below to start creating your layout" -msgstr "Feu clic al botó “%s” de sota per a començar a crear el vostre disseny" - -#: pro/fields/class-acf-field-flexible-content.php:423 -msgid "Add layout" -msgstr "Afegeix una disposició" - -#: pro/fields/class-acf-field-flexible-content.php:424 -#, fuzzy -#| msgid "Duplicate Layout" -msgid "Duplicate layout" -msgstr "Duplica la disposició" - -#: pro/fields/class-acf-field-flexible-content.php:425 -msgid "Remove layout" -msgstr "Esborra la disposició" - -#: pro/fields/class-acf-field-flexible-content.php:426, -#: pro/fields/class-acf-repeater-table.php:382 -msgid "Click to toggle" -msgstr "Feu clic per alternar" - -#: pro/fields/class-acf-field-flexible-content.php:562 -msgid "Delete Layout" -msgstr "Esborra la disposició" - -#: pro/fields/class-acf-field-flexible-content.php:563 -msgid "Duplicate Layout" -msgstr "Duplica la disposició" - -#: pro/fields/class-acf-field-flexible-content.php:564 -msgid "Add New Layout" -msgstr "Afegeix una disposició" - -#: pro/fields/class-acf-field-flexible-content.php:564 -#, fuzzy -#| msgid "Add layout" -msgid "Add Layout" -msgstr "Afegeix una disposició" - -#: pro/fields/class-acf-field-flexible-content.php:647 -msgid "Min" -msgstr "Mín" - -#: pro/fields/class-acf-field-flexible-content.php:662 -msgid "Max" -msgstr "Màx" - -#: pro/fields/class-acf-field-flexible-content.php:705 -msgid "Minimum Layouts" -msgstr "Mínim de disposicions" - -#: pro/fields/class-acf-field-flexible-content.php:716 -msgid "Maximum Layouts" -msgstr "Màxim de disposicions" - -#: pro/fields/class-acf-field-flexible-content.php:727, -#: pro/fields/class-acf-field-repeater.php:293 -msgid "Button Label" -msgstr "Etiqueta del botó" - -#: pro/fields/class-acf-field-flexible-content.php:1710, -#: pro/fields/class-acf-field-repeater.php:918 -msgid "%s must be of type array or null." -msgstr "" - -#: pro/fields/class-acf-field-flexible-content.php:1721 -msgid "%1$s must contain at least %2$s %3$s layout." -msgid_plural "%1$s must contain at least %2$s %3$s layouts." -msgstr[0] "" -msgstr[1] "" - -#: pro/fields/class-acf-field-flexible-content.php:1737 -msgid "%1$s must contain at most %2$s %3$s layout." -msgid_plural "%1$s must contain at most %2$s %3$s layouts." -msgstr[0] "" -msgstr[1] "" - -#: pro/fields/class-acf-field-gallery.php:27 -msgid "" -"An interactive interface for managing a collection of attachments, such as " -"images." -msgstr "" - -#: pro/fields/class-acf-field-gallery.php:77 -msgid "Add Image to Gallery" -msgstr "Afegeix una imatge a la galeria" - -#: pro/fields/class-acf-field-gallery.php:78 -msgid "Maximum selection reached" -msgstr "S’ha arribat al màxim d’elements seleccionats" - -#: pro/fields/class-acf-field-gallery.php:324 -msgid "Length" -msgstr "Llargada" - -#: pro/fields/class-acf-field-gallery.php:368 -msgid "Caption" -msgstr "Llegenda" - -#: pro/fields/class-acf-field-gallery.php:380 -msgid "Alt Text" -msgstr "Text alternatiu" - -#: pro/fields/class-acf-field-gallery.php:504 -msgid "Add to gallery" -msgstr "Afegeix a la galeria" - -#: pro/fields/class-acf-field-gallery.php:508 -msgid "Bulk actions" -msgstr "Accions massives" - -#: pro/fields/class-acf-field-gallery.php:509 -msgid "Sort by date uploaded" -msgstr "Ordena per la data de càrrega" - -#: pro/fields/class-acf-field-gallery.php:510 -msgid "Sort by date modified" -msgstr "Ordena per la data de modificació" - -#: pro/fields/class-acf-field-gallery.php:511 -msgid "Sort by title" -msgstr "Ordena pel títol" - -#: pro/fields/class-acf-field-gallery.php:512 -msgid "Reverse current order" -msgstr "Inverteix l’ordre actual" - -#: pro/fields/class-acf-field-gallery.php:524 -msgid "Close" -msgstr "Tanca" - -#: pro/fields/class-acf-field-gallery.php:615 -msgid "Minimum Selection" -msgstr "Selecció mínima" - -#: pro/fields/class-acf-field-gallery.php:625 -msgid "Maximum Selection" -msgstr "Selecció màxima" - -#: pro/fields/class-acf-field-gallery.php:707 -msgid "Allowed file types" -msgstr "Tipus de fitxers permesos" - -#: pro/fields/class-acf-field-gallery.php:727 -msgid "Insert" -msgstr "Insereix" - -#: pro/fields/class-acf-field-gallery.php:728 -msgid "Specify where new attachments are added" -msgstr "Especifiqueu on s’afegeixen els nous fitxers adjunts" - -#: pro/fields/class-acf-field-gallery.php:732 -msgid "Append to the end" -msgstr "Afegeix-los al final" - -#: pro/fields/class-acf-field-gallery.php:733 -msgid "Prepend to the beginning" -msgstr "Afegeix-los al principi" - -#: pro/fields/class-acf-field-repeater.php:66, -#: pro/fields/class-acf-field-repeater.php:463 -#, fuzzy -#| msgid "Minimum rows reached ({min} rows)" -msgid "Minimum rows not reached ({min} rows)" -msgstr "No s’ha arribat al mínim de files ({min} files)" - -#: pro/fields/class-acf-field-repeater.php:67 -msgid "Maximum rows reached ({max} rows)" -msgstr "S’ha superat el màxim de files ({max} files)" - -#: pro/fields/class-acf-field-repeater.php:68 -msgid "Error loading page" -msgstr "" - -#: pro/fields/class-acf-field-repeater.php:69 -msgid "Order will be assigned upon save" -msgstr "" - -#: pro/fields/class-acf-field-repeater.php:196 -msgid "Useful for fields with a large number of rows." -msgstr "" - -#: pro/fields/class-acf-field-repeater.php:207 -#, fuzzy -#| msgid "Posts Page" -msgid "Rows Per Page" -msgstr "Pàgina de les entrades" - -#: pro/fields/class-acf-field-repeater.php:208 -#, fuzzy -#| msgid "Select the taxonomy to be displayed" -msgid "Set the number of rows to be displayed on a page." -msgstr "Escolliu la taxonomia a mostrar" - -#: pro/fields/class-acf-field-repeater.php:240 -msgid "Minimum Rows" -msgstr "Mínim de files" - -#: pro/fields/class-acf-field-repeater.php:251 -msgid "Maximum Rows" -msgstr "Màxim de files" - -#: pro/fields/class-acf-field-repeater.php:281 -msgid "Collapsed" -msgstr "Replegat" - -#: pro/fields/class-acf-field-repeater.php:282 -msgid "Select a sub field to show when row is collapsed" -msgstr "Escull un subcamp per a mostrar quan la fila estigui replegada" - -#: pro/fields/class-acf-field-repeater.php:1060 -msgid "Invalid field key or name." -msgstr "" - -#: pro/fields/class-acf-field-repeater.php:1069 -msgid "There was an error retrieving the field." -msgstr "" - -#: pro/fields/class-acf-repeater-table.php:369 -#, fuzzy -#| msgid "Drag to reorder" -msgid "Click to reorder" -msgstr "Arrossegueu per a reordenar" - -#: pro/fields/class-acf-repeater-table.php:402 -msgid "Add row" -msgstr "Afegeix una fila" - -#: pro/fields/class-acf-repeater-table.php:403 -#, fuzzy -#| msgid "Duplicate" -msgid "Duplicate row" -msgstr "Duplica" - -#: pro/fields/class-acf-repeater-table.php:404 -msgid "Remove row" -msgstr "Esborra la fila" - -#: pro/fields/class-acf-repeater-table.php:448, -#: pro/fields/class-acf-repeater-table.php:465, -#: pro/fields/class-acf-repeater-table.php:466 -#, fuzzy -#| msgid "Current User" -msgid "Current Page" -msgstr "Usuari actual" - -#: pro/fields/class-acf-repeater-table.php:456, -#: pro/fields/class-acf-repeater-table.php:457 -#, fuzzy -#| msgid "Front Page" -msgid "First Page" -msgstr "Portada" - -#: pro/fields/class-acf-repeater-table.php:460, -#: pro/fields/class-acf-repeater-table.php:461 -#, fuzzy -#| msgid "Posts Page" -msgid "Previous Page" -msgstr "Pàgina de les entrades" - -#. translators: 1: Current page, 2: Total pages. -#: pro/fields/class-acf-repeater-table.php:470 -msgctxt "paging" -msgid "%1$s of %2$s" -msgstr "" - -#: pro/fields/class-acf-repeater-table.php:477, -#: pro/fields/class-acf-repeater-table.php:478 -#, fuzzy -#| msgid "Front Page" -msgid "Next Page" -msgstr "Portada" - -#: pro/fields/class-acf-repeater-table.php:481, -#: pro/fields/class-acf-repeater-table.php:482 -#, fuzzy -#| msgid "Posts Page" -msgid "Last Page" -msgstr "Pàgina de les entrades" - -#: pro/locations/class-acf-location-block.php:71 -#, fuzzy -#| msgid "No options pages exist" -msgid "No block types exist" -msgstr "No hi ha pàgines d’opcions" - -#: pro/locations/class-acf-location-options-page.php:70 -msgid "No options pages exist" -msgstr "No hi ha pàgines d’opcions" - -#: pro/admin/views/html-settings-updates.php:6 -msgid "Deactivate License" -msgstr "Desactiva la llicència" - -#: pro/admin/views/html-settings-updates.php:6 -msgid "Activate License" -msgstr "Activa la llicència" - -#: pro/admin/views/html-settings-updates.php:16 -msgid "License Information" -msgstr "Informació de la llicència" - -#: pro/admin/views/html-settings-updates.php:34 -msgid "" -"To unlock updates, please enter your license key below. If you don't have a " -"licence key, please see details & pricing." -msgstr "" -"Per a desbloquejar les actualitzacions, introduïu la clau de llicència a " -"continuació. Si no teniu cap clau de llicència, vegeu els detalls i preu." - -#: pro/admin/views/html-settings-updates.php:37 -msgid "License Key" -msgstr "Clau de llicència" - -#: pro/admin/views/html-settings-updates.php:22 -msgid "Your license key is defined in wp-config.php." -msgstr "" - -#: pro/admin/views/html-settings-updates.php:29 -#, fuzzy -#| msgid "Better Validation" -msgid "Retry Activation" -msgstr "Validació millorada" - -#: pro/admin/views/html-settings-updates.php:61 -msgid "Update Information" -msgstr "Informació de l'actualització" - -#: pro/admin/views/html-settings-updates.php:68 -msgid "Current Version" -msgstr "Versió actual" - -#: pro/admin/views/html-settings-updates.php:76 -msgid "Latest Version" -msgstr "Darrera versió" - -#: pro/admin/views/html-settings-updates.php:84 -msgid "Update Available" -msgstr "Actualització disponible" - -#: pro/admin/views/html-settings-updates.php:98 -msgid "Upgrade Notice" -msgstr "Avís d’actualització" - -#: pro/admin/views/html-settings-updates.php:126 -msgid "Check For Updates" -msgstr "" - -#: pro/admin/views/html-settings-updates.php:121 -#, fuzzy -#| msgid "Please enter your license key above to unlock updates" -msgid "Enter your license key to unlock updates" -msgstr "" -"Introduïu la clau de llicència al damunt per a desbloquejar les " -"actualitzacions" - -#: pro/admin/views/html-settings-updates.php:119 -msgid "Update Plugin" -msgstr "Actualitza l’extensió" - -#: pro/admin/views/html-settings-updates.php:117 -#, fuzzy -#| msgid "Please enter your license key above to unlock updates" -msgid "Please reactivate your license to unlock updates" -msgstr "" -"Introduïu la clau de llicència al damunt per a desbloquejar les " -"actualitzacions" diff --git a/lang/acf-cs_CZ.mo b/lang/acf-cs_CZ.mo deleted file mode 100644 index 68cb8a6..0000000 Binary files a/lang/acf-cs_CZ.mo and /dev/null differ diff --git a/lang/acf-cs_CZ.po b/lang/acf-cs_CZ.po deleted file mode 100644 index 5ce5c56..0000000 --- a/lang/acf-cs_CZ.po +++ /dev/null @@ -1,6420 +0,0 @@ -# Advanced Custom Fields Translations are a combination of translate.wordpress.org contributions, -# combined with user contributed strings for the PRO version. -# Translations from translate.wordpress.org take priority over translations in this file. -# translate.wordpress.org contributions are synced at the time of each release. -# -# If you would like to contribute translations, please visit -# https://translate.wordpress.org/projects/wp-plugins/advanced-custom-fields/stable/ -# -# For additional ACF PRO strings, please submit a pull request over on the ACF GitHub repo at -# http://github.com/advancedcustomfields/acf using the .pot (and any existing .po) files in /lang/pro/ -# -# This file is distributed under the same license as Advanced Custom Fields. -msgid "" -msgstr "" -"PO-Revision-Date: 2023-11-28T09:14:32+00:00\n" -"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n" -"Language: cs_CZ\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: gettext\n" -"Project-Id-Version: Advanced Custom Fields\n" - -#: includes/admin/views/global/navigation.php:221 -msgid "Renew ACF PRO License" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:17 -msgid "Renew License" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:14 -msgid "Manage License" -msgstr "" - -#: includes/admin/views/acf-field-group/options.php:102 -msgid "'High' position not supported in the Block Editor" -msgstr "" - -#: includes/admin/views/options-page-preview.php:30 -msgid "Upgrade to ACF PRO" -msgstr "" - -#. translators: %s URL to ACF options pages documentation -#: includes/admin/views/options-page-preview.php:7 -msgid "" -"ACF options pages are custom admin " -"pages for managing global settings via fields. You can create multiple pages " -"and sub-pages." -msgstr "" - -#: includes/admin/views/global/header.php:35 -msgid "Add Options Page" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:703 -msgid "In the editor used as the placeholder of the title." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:702 -msgid "Title Placeholder" -msgstr "" - -#: includes/admin/views/global/navigation.php:97 -msgid "4 Months Free" -msgstr "" - -#. translators: %s - A singular label for a post type or taxonomy. -#: includes/admin/views/global/form-top.php:56 -msgid " (Duplicated from %s)" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:298 -msgid "Select Options Pages" -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:107 -msgid "Duplicate taxonomy" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:106 -#: includes/admin/post-types/admin-taxonomy.php:106 -msgid "Create taxonomy" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:105 -msgid "Duplicate post type" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:104 -#: includes/admin/post-types/admin-taxonomy.php:108 -msgid "Create post type" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:103 -#: includes/admin/post-types/admin-taxonomy.php:105 -msgid "Link field groups" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:102 -#: includes/admin/post-types/admin-taxonomy.php:104 -msgid "Add fields" -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:121 -#: assets/build/js/acf-field-group.js:2753 -#: assets/build/js/acf-field-group.js:3236 -msgid "This Field" -msgstr "" - -#: includes/admin/admin.php:267 -msgid "ACF PRO" -msgstr "" - -#: includes/admin/admin.php:265 -msgid "Feedback" -msgstr "" - -#: includes/admin/admin.php:263 -msgid "Support" -msgstr "" - -#. translators: This text is prepended by a link to ACF's website, and appended -#. by a link to WP Engine's website. -#: includes/admin/admin.php:238 -msgid "is developed and maintained by" -msgstr "" - -#. translators: %s - either "post type" or "taxonomy" -#: includes/admin/admin-internal-post-type.php:321 -msgid "Add this %s to the location rules of the selected field groups." -msgstr "" - -#. translators: %s the URL to ACF's bidirectional relationship documentation -#: includes/acf-bidirectional-functions.php:271 -msgid "" -"Enabling the bidirectional setting allows you to update a value in the " -"target fields for each value selected for this field, adding or removing the " -"Post ID, Taxonomy ID or User ID of the item being updated. For more " -"information, please read the documentation." -msgstr "" - -#: includes/acf-bidirectional-functions.php:247 -msgid "" -"Select field(s) to store the reference back to the item being updated. You " -"may select this field. Target fields must be compatible with where this " -"field is being displayed. For example, if this field is displayed on a " -"Taxonomy, your target field should be of type Taxonomy" -msgstr "" - -#: includes/acf-bidirectional-functions.php:246 -msgid "Target Field" -msgstr "" - -#: includes/acf-bidirectional-functions.php:220 -msgid "Update a field on the selected values, referencing back to this ID" -msgstr "" - -#: includes/acf-bidirectional-functions.php:219 -msgid "Bidirectional" -msgstr "" - -#. translators: %s A field type name, such as "Relationship" -#: includes/acf-bidirectional-functions.php:192 -msgid "%s Field" -msgstr "" - -#: includes/fields/class-acf-field-page_link.php:517 -#: includes/fields/class-acf-field-post_object.php:426 -#: includes/fields/class-acf-field-select.php:407 -#: includes/fields/class-acf-field-user.php:82 -msgid "Select Multiple" -msgstr "Vybrat více" - -#: includes/admin/views/global/navigation.php:233 -msgid "WP Engine logo" -msgstr "Logo WP Engine" - -#: includes/admin/views/acf-taxonomy/basic-settings.php:58 -msgid "Lower case letters, underscores and dashes only, Max 32 characters." -msgstr "Pouze malá písmena, podtržítka a pomlčky, max. 32 znaků." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1136 -msgid "The capability name for assigning terms of this taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1135 -msgid "Assign Terms Capability" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1119 -msgid "The capability name for deleting terms of this taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1118 -msgid "Delete Terms Capability" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1102 -msgid "The capability name for editing terms of this taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1101 -msgid "Edit Terms Capability" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1085 -msgid "The capability name for managing terms of this taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1084 -msgid "Manage Terms Capability" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:886 -msgid "" -"Sets whether posts should be excluded from search results and taxonomy " -"archive pages." -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:74 -msgid "More Tools from WP Engine" -msgstr "Další nástroje od WP Engine" - -#. translators: %s - WP Engine logo -#: includes/admin/views/acf-field-group/pro-features.php:69 -msgid "Built for those that build with WordPress, by the team at %s" -msgstr "Vytvořeno pro ty, kteří vytvářejí ve WordPressu, týmem %s" - -#: includes/admin/views/acf-field-group/pro-features.php:6 -msgid "View Pricing & Upgrade" -msgstr "Zobrazit ceny a upgrade" - -#: includes/admin/views/acf-field-group/pro-features.php:3 -#: includes/admin/views/options-page-preview.php:29 -msgid "Learn More" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:28 -msgid "" -"Speed up your workflow and develop better websites with features like ACF " -"Blocks and Options Pages, and sophisticated field types like Repeater, " -"Flexible Content, Clone, and Gallery." -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:2 -msgid "Unlock Advanced Features and Build Even More with ACF PRO" -msgstr "" - -#. translators: %s - singular label of post type/taxonomy, i.e. "Movie"/"Genre" -#: includes/admin/views/global/form-top.php:19 -msgid "%s fields" -msgstr "Pole pro %s" - -#: includes/admin/post-types/admin-taxonomies.php:293 -msgid "No terms" -msgstr "Žádné pojmy" - -#: includes/admin/post-types/admin-taxonomies.php:266 -msgid "No post types" -msgstr "Žádné typy obsahu" - -#: includes/admin/post-types/admin-post-types.php:289 -msgid "No posts" -msgstr "Žádné příspěvky" - -#: includes/admin/post-types/admin-post-types.php:263 -msgid "No taxonomies" -msgstr "Žádné taxonomie" - -#: includes/admin/post-types/admin-post-types.php:208 -#: includes/admin/post-types/admin-taxonomies.php:208 -msgid "No field groups" -msgstr "Žádné skupiny polí" - -#: includes/admin/post-types/admin-field-groups.php:281 -msgid "No fields" -msgstr "Žádná pole" - -#: includes/admin/post-types/admin-field-groups.php:154 -#: includes/admin/post-types/admin-post-types.php:172 -#: includes/admin/post-types/admin-taxonomies.php:172 -msgid "No description" -msgstr "Bez popisu" - -#: includes/fields/class-acf-field-page_link.php:484 -#: includes/fields/class-acf-field-post_object.php:389 -#: includes/fields/class-acf-field-relationship.php:601 -msgid "Any post status" -msgstr "Jakýkoli stav příspěvku" - -#: includes/post-types/class-acf-taxonomy.php:284 -msgid "" -"This taxonomy key is already in use by another taxonomy registered outside " -"of ACF and cannot be used." -msgstr "" -"Tento klíč taxonomie je již používán jinou taxonomií registrovanou mimo ACF " -"a nelze jej použít." - -#: includes/post-types/class-acf-taxonomy.php:279 -msgid "" -"This taxonomy key is already in use by another taxonomy in ACF and cannot be " -"used." -msgstr "" -"Tento klíč taxonomie je již používán jinou taxonomií v ACF a nelze jej " -"použít." - -#: includes/post-types/class-acf-taxonomy.php:252 -msgid "" -"The taxonomy key must only contain lower case alphanumeric characters, " -"underscores or dashes." -msgstr "" -"Klíč taxonomie musí obsahovat pouze malé alfanumerické znaky, podtržítka " -"nebo pomlčky." - -#: includes/post-types/class-acf-taxonomy.php:247 -msgid "The taxonomy key must be under 32 characters." -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:99 -msgid "No Taxonomies found in Trash" -msgstr "V koši nebyly nalezeny žádné taxonomie" - -#: includes/post-types/class-acf-taxonomy.php:98 -msgid "No Taxonomies found" -msgstr "Nebyly nalezeny žádné taxonomie" - -#: includes/post-types/class-acf-taxonomy.php:97 -msgid "Search Taxonomies" -msgstr "Hledat taxonomie" - -#: includes/post-types/class-acf-taxonomy.php:96 -msgid "View Taxonomy" -msgstr "Zobrazit taxonomii" - -#: includes/post-types/class-acf-taxonomy.php:95 -msgid "New Taxonomy" -msgstr "Nová taxonomie" - -#: includes/post-types/class-acf-taxonomy.php:94 -msgid "Edit Taxonomy" -msgstr "Upravit taxonomii" - -#: includes/post-types/class-acf-taxonomy.php:93 -msgid "Add New Taxonomy" -msgstr "Přidat novou taxonomii" - -#: includes/post-types/class-acf-post-type.php:100 -msgid "No Post Types found in Trash" -msgstr "V koši nejsou žádné typy obsahu" - -#: includes/post-types/class-acf-post-type.php:99 -msgid "No Post Types found" -msgstr "Nebyly nalezeny žádné typy obsahu" - -#: includes/post-types/class-acf-post-type.php:98 -msgid "Search Post Types" -msgstr "Hledat typy obsahu" - -#: includes/post-types/class-acf-post-type.php:97 -msgid "View Post Type" -msgstr "Zobrazit typ obsahu" - -#: includes/post-types/class-acf-post-type.php:96 -msgid "New Post Type" -msgstr "Nový typ obsahu" - -#: includes/post-types/class-acf-post-type.php:95 -msgid "Edit Post Type" -msgstr "Upravit typ obsahu" - -#: includes/post-types/class-acf-post-type.php:94 -msgid "Add New Post Type" -msgstr "Přidat nový typ obsahu" - -#: includes/post-types/class-acf-post-type.php:361 -msgid "" -"This post type key is already in use by another post type registered outside " -"of ACF and cannot be used." -msgstr "" -"Tento klíč typu obsahu je již používán jiným typem obsahu registrovaným mimo " -"ACF a nelze jej použít." - -#: includes/post-types/class-acf-post-type.php:356 -msgid "" -"This post type key is already in use by another post type in ACF and cannot " -"be used." -msgstr "" -"Tento klíč typu obsahu je již používán jiným typem obsahu v ACF a nelze jej " -"použít." - -#. translators: %s a link to WordPress.org's Reserved Terms page -#: includes/post-types/class-acf-post-type.php:335 -#: includes/post-types/class-acf-taxonomy.php:258 -msgid "" -"This field must not be a WordPress reserved " -"term." -msgstr "" -"Toto pole nesmí být vyhrazený termín " -"WordPressu." - -#: includes/post-types/class-acf-post-type.php:329 -msgid "" -"The post type key must only contain lower case alphanumeric characters, " -"underscores or dashes." -msgstr "" -"Klíč typu obsahu musí obsahovat pouze malé alfanumerické znaky, podtržítka " -"nebo pomlčky." - -#: includes/post-types/class-acf-post-type.php:324 -msgid "The post type key must be under 20 characters." -msgstr "Klíč typu obsahu musí mít méně než 20 znaků." - -#: includes/fields/class-acf-field-wysiwyg.php:27 -msgid "We do not recommend using this field in ACF Blocks." -msgstr "Nedoporučujeme používat toto pole v blocích ACF." - -#: includes/fields/class-acf-field-wysiwyg.php:27 -msgid "" -"Displays the WordPress WYSIWYG editor as seen in Posts and Pages allowing " -"for a rich text-editing experience that also allows for multimedia content." -msgstr "" -"Zobrazí WYSIWYG editor WordPressu používaný k úpravám příspěvků a stránek, " -"který umožňuje bohatou editaci textu a také multimediální obsah." - -#: includes/fields/class-acf-field-wysiwyg.php:25 -msgid "WYSIWYG Editor" -msgstr "Editor WYSIWYG" - -#: includes/fields/class-acf-field-user.php:17 -msgid "" -"Allows the selection of one or more users which can be used to create " -"relationships between data objects." -msgstr "" -"Umožňuje výběr jednoho nebo více uživatelů, které lze použít k vytvoření " -"vztahů mezi datovými objekty." - -#: includes/fields/class-acf-field-url.php:26 -msgid "A text input specifically designed for storing web addresses." -msgstr "Textové pole určené speciálně pro ukládání webových adres." - -#: includes/fields/class-acf-field-url.php:25 -msgid "URL" -msgstr "URL adresa" - -#: includes/fields/class-acf-field-true_false.php:27 -msgid "" -"A toggle that allows you to pick a value of 1 or 0 (on or off, true or " -"false, etc). Can be presented as a stylized switch or checkbox." -msgstr "" -"Přepínač, který umožňuje vybrat hodnotu 1 nebo 0 (zapnuto nebo vypnuto, " -"pravda nebo nepravda atd.). Může být prezentován jako stylizovaný přepínač " -"nebo zaškrtávací políčko." - -#: includes/fields/class-acf-field-time_picker.php:27 -msgid "" -"An interactive UI for picking a time. The time format can be customized " -"using the field settings." -msgstr "" -"Interaktivní uživatelské rozhraní pro výběr času. Formát času lze " -"přizpůsobit pomocí nastavení pole." - -#: includes/fields/class-acf-field-textarea.php:26 -msgid "A basic textarea input for storing paragraphs of text." -msgstr "Základní textové pole pro ukládání odstavců textu." - -#: includes/fields/class-acf-field-text.php:26 -msgid "A basic text input, useful for storing single string values." -msgstr "" -"Základní textové pole užitečné pro ukládání jednoslovných textových hodnot." - -#: includes/fields/class-acf-field-taxonomy.php:22 -msgid "" -"Allows the selection of one or more taxonomy terms based on the criteria and " -"options specified in the fields settings." -msgstr "" -"Umožňuje výběr jednoho nebo více pojmů taxonomie na základě kritérií a " -"možností uvedených v nastavení polí." - -#: includes/fields/class-acf-field-tab.php:28 -msgid "" -"Allows you to group fields into tabbed sections in the edit screen. Useful " -"for keeping fields organized and structured." -msgstr "" -"Umožňuje seskupit pole do sekcí s kartami na obrazovce úprav. Užitečné pro " -"udržení přehlednosti a struktury polí." - -#: includes/fields/class-acf-field-select.php:27 -msgid "A dropdown list with a selection of choices that you specify." -msgstr "Rozbalovací seznam s výběrem možností, které zadáte." - -#: includes/fields/class-acf-field-relationship.php:19 -msgid "" -"A dual-column interface to select one or more posts, pages, or custom post " -"type items to create a relationship with the item that you're currently " -"editing. Includes options to search and filter." -msgstr "" -"Rozhraní se dvěma sloupci, které umožňuje vybrat jeden nebo více příspěvků, " -"stránek nebo uživatelských typů obsahu a vytvořit vztah s položkou, kterou " -"právě upravujete. Obsahuje možnosti vyhledávání a filtrování." - -#: includes/fields/class-acf-field-range.php:26 -msgid "" -"An input for selecting a numerical value within a specified range using a " -"range slider element." -msgstr "" -"Vstupní pole pro výběr číselné hodnoty v zadaném rozsahu pomocí posuvného " -"prvku rozsahu." - -#: includes/fields/class-acf-field-radio.php:27 -msgid "" -"A group of radio button inputs that allows the user to make a single " -"selection from values that you specify." -msgstr "" -"Skupina s přepínači, která umožňuje uživateli výběr jedné z hodnot, které " -"zadáte." - -#: includes/fields/class-acf-field-post_object.php:19 -msgid "" -"An interactive and customizable UI for picking one or many posts, pages or " -"post type items with the option to search. " -msgstr "" -"Interaktivní a přizpůsobitelné uživatelské rozhraní pro výběr jednoho či " -"více příspěvků, stránek nebo typů obsahu s možností vyhledávání. " - -#: includes/fields/class-acf-field-password.php:26 -msgid "An input for providing a password using a masked field." -msgstr "Vstup pro zadání hesla pomocí maskovaného pole." - -#: includes/fields/class-acf-field-page_link.php:476 -#: includes/fields/class-acf-field-post_object.php:381 -#: includes/fields/class-acf-field-relationship.php:593 -msgid "Filter by Post Status" -msgstr "Filtrovat podle stavu příspěvku" - -#: includes/fields/class-acf-field-page_link.php:27 -msgid "" -"An interactive dropdown to select one or more posts, pages, custom post type " -"items or archive URLs, with the option to search." -msgstr "" -"Interaktivní rozbalovací seznam pro výběr jednoho nebo více příspěvků, " -"stránek, uživatelských typů obsahu nebo adres URL archivu s možností " -"vyhledávání." - -#: includes/fields/class-acf-field-oembed.php:27 -msgid "" -"An interactive component for embedding videos, images, tweets, audio and " -"other content by making use of the native WordPress oEmbed functionality." -msgstr "" -"Interaktivní komponenta pro vkládání videí, obrázků, tweetů, zvuku a dalšího " -"obsahu s využitím nativní funkce WordPress oEmbed." - -#: includes/fields/class-acf-field-number.php:26 -msgid "An input limited to numerical values." -msgstr "Vstup omezený na číselné hodnoty." - -#: includes/fields/class-acf-field-message.php:28 -msgid "" -"Used to display a message to editors alongside other fields. Useful for " -"providing additional context or instructions around your fields." -msgstr "" -"Slouží k zobrazení zprávy pro editory vedle jiných polí. Užitečné pro " -"poskytnutí dalšího kontextu nebo pokynů k polím." - -#: includes/fields/class-acf-field-link.php:27 -msgid "" -"Allows you to specify a link and its properties such as title and target " -"using the WordPress native link picker." -msgstr "" -"Umožňuje zadat odkaz a jeho vlastnosti jako jsou text odkazu a jeho cíl " -"pomocí nativního nástroje pro výběr odkazů ve WordPressu." - -#: includes/fields/class-acf-field-image.php:27 -msgid "Uses the native WordPress media picker to upload, or choose images." -msgstr "" -"K nahrávání nebo výběru obrázků používá nativní nástroj pro výběr médií ve " -"WordPressu." - -#: includes/fields/class-acf-field-group.php:27 -msgid "" -"Provides a way to structure fields into groups to better organize the data " -"and the edit screen." -msgstr "" -"Umožňuje strukturovat pole do skupin a lépe tak uspořádat data a obrazovku " -"úprav." - -#: includes/fields/class-acf-field-google-map.php:27 -msgid "" -"An interactive UI for selecting a location using Google Maps. Requires a " -"Google Maps API key and additional configuration to display correctly." -msgstr "" -"Interaktivní uživatelské rozhraní pro výběr místa pomocí Map Google. Pro " -"správné zobrazení vyžaduje klíč Google Maps API a další konfiguraci." - -#: includes/fields/class-acf-field-file.php:27 -msgid "Uses the native WordPress media picker to upload, or choose files." -msgstr "" -"K nahrávání nebo výběru souborů používá nativní nástroj pro výběr médií ve " -"WordPressu." - -#: includes/fields/class-acf-field-email.php:26 -msgid "A text input specifically designed for storing email addresses." -msgstr "Textové pole určené speciálně pro ukládání e-mailových adres." - -#: includes/fields/class-acf-field-date_time_picker.php:27 -msgid "" -"An interactive UI for picking a date and time. The date return format can be " -"customized using the field settings." -msgstr "" -"Interaktivní uživatelské rozhraní pro výběr data a času. Formát vráceného " -"data lze přizpůsobit pomocí nastavení pole." - -#: includes/fields/class-acf-field-date_picker.php:27 -msgid "" -"An interactive UI for picking a date. The date return format can be " -"customized using the field settings." -msgstr "" -"Interaktivní uživatelské rozhraní pro výběr data. Formát vráceného data lze " -"přizpůsobit pomocí nastavení pole." - -#: includes/fields/class-acf-field-color_picker.php:27 -msgid "An interactive UI for selecting a color, or specifying a Hex value." -msgstr "" -"Interaktivní uživatelské rozhraní pro výběr barvy nebo zadání hodnoty Hex." - -#: includes/fields/class-acf-field-checkbox.php:27 -msgid "" -"A group of checkbox inputs that allow the user to select one, or multiple " -"values that you specify." -msgstr "" -"Skupina zaškrtávacích políček, která umožňují uživateli vybrat jednu nebo " -"více zadaných hodnot." - -#: includes/fields/class-acf-field-button-group.php:26 -msgid "" -"A group of buttons with values that you specify, users can choose one option " -"from the values provided." -msgstr "" -"Skupina tlačítek s předdefinovanými hodnotami. Uživatelé mohou vybrat jednu " -"možnost z uvedených hodnot." - -#: includes/fields/class-acf-field-accordion.php:27 -msgid "" -"Allows you to group and organize custom fields into collapsable panels that " -"are shown while editing content. Useful for keeping large datasets tidy." -msgstr "" -"Umožňuje seskupit a uspořádat vlastní pole do skládacích panelů, které se " -"zobrazují při úpravách obsahu. Užitečné pro udržování pořádku ve velkých " -"souborech dat." - -#: includes/fields.php:475 -msgid "" -"This provides a solution for repeating content such as slides, team members, " -"and call-to-action tiles, by acting as a parent to a set of subfields which " -"can be repeated again and again." -msgstr "" -"Nabízí řešení pro opakování obsahu, jako jsou snímky, členové týmu a " -"dlaždice s výzvou k akci, tím, že funguje jako nadřazené pole pro sadu " -"podpolí, která lze opakovat znovu a znovu." - -#: includes/fields.php:465 -msgid "" -"This provides an interactive interface for managing a collection of " -"attachments. Most settings are similar to the Image field type. Additional " -"settings allow you to specify where new attachments are added in the gallery " -"and the minimum/maximum number of attachments allowed." -msgstr "" -"Poskytuje interaktivní rozhraní pro správu sbírky příloh. Většina nastavení " -"je podobná typu pole Obrázek. Další nastavení umožňují určit, kam se budou v " -"galerii přidávat nové přílohy, a minimální/maximální povolený počet příloh." - -#: includes/fields.php:455 -msgid "" -"This provides a simple, structured, layout-based editor. The Flexible " -"Content field allows you to define, create and manage content with total " -"control by using layouts and subfields to design the available blocks." -msgstr "" -"Poskytuje jednoduchý, strukturovaný editor založený na rozvržení. Pole " -"Flexibilní obsah umožňuje definovat, vytvářet a spravovat obsah s naprostou " -"kontrolou pomocí rozvržení a podpolí pro návrh dostupných bloků." - -#: includes/fields.php:445 -msgid "" -"This allows you to select and display existing fields. It does not duplicate " -"any fields in the database, but loads and displays the selected fields at " -"run-time. The Clone field can either replace itself with the selected fields " -"or display the selected fields as a group of subfields." -msgstr "" -"Umožňuje vybrat a zobrazit existující pole. Neduplikuje žádná pole v " -"databázi, ale načítá a zobrazuje vybraná pole za běhu. Pole Klonování se " -"může buď nahradit vybranými poli, nebo zobrazit vybraná pole jako skupinu " -"podpolí." - -#: includes/fields.php:442 -msgctxt "noun" -msgid "Clone" -msgstr "Klonování" - -#: includes/admin/views/global/navigation.php:86 includes/fields.php:357 -msgid "PRO" -msgstr "PRO" - -#: includes/fields.php:355 includes/fields.php:412 -msgid "Advanced" -msgstr "Pokročilé" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:85 -msgid "JSON (newer)" -msgstr "JSON (novější)" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:81 -msgid "Original" -msgstr "Původní" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:55 -msgid "Invalid post ID." -msgstr "Neplatné ID příspěvku." - -#: includes/ajax/class-acf-ajax-local-json-diff.php:47 -msgid "Invalid post type selected for review." -msgstr "Ke kontrole byl vybrán neplatný typ obsahu." - -#: includes/admin/views/global/navigation.php:186 -msgid "More" -msgstr "Více" - -#: includes/admin/views/browse-fields-modal.php:86 -msgid "Tutorial" -msgstr "Tutoriál" - -#: includes/admin/views/browse-fields-modal.php:75 -msgid "Available with ACF PRO" -msgstr "Dostupné s ACF PRO" - -#: includes/admin/views/browse-fields-modal.php:63 -msgid "Select Field" -msgstr "Vybrat pole" - -#. translators: %s: A link to the popular fields used in ACF -#: includes/admin/views/browse-fields-modal.php:50 -msgid "Try a different search term or browse %s" -msgstr "Zkuste použít jiný vyhledávací výraz nebo projít %s" - -#: includes/admin/views/browse-fields-modal.php:47 -msgid "Popular fields" -msgstr "Oblíbená pole" - -#. translators: %s: The invalid search term -#: includes/admin/views/browse-fields-modal.php:40 -msgid "No search results for '%s'" -msgstr "Žádné výsledky hledání pro „%s“" - -#: includes/admin/views/browse-fields-modal.php:13 -msgid "Search fields..." -msgstr "Hledat pole..." - -#: includes/admin/views/browse-fields-modal.php:11 -msgid "Select Field Type" -msgstr "Výběr typu pole" - -#: includes/admin/views/browse-fields-modal.php:4 -msgid "Popular" -msgstr "Oblíbená" - -#: includes/admin/views/acf-taxonomy/list-empty.php:7 -msgid "Add Taxonomy" -msgstr "Přidat taxonomii" - -#: includes/admin/views/acf-taxonomy/list-empty.php:6 -msgid "Create custom taxonomies to classify post type content" -msgstr "Vytvořte vlastní taxonomie pro klasifikaci obsahu" - -#: includes/admin/views/acf-taxonomy/list-empty.php:5 -msgid "Add Your First Taxonomy" -msgstr "Přidejte první taxonomii" - -#: includes/admin/views/acf-taxonomy/basic-settings.php:122 -msgid "Hierarchical taxonomies can have descendants (like categories)." -msgstr "Hierarchické taxonomie mohou mít potomky (stejně jako rubriky)." - -#: includes/admin/views/acf-taxonomy/basic-settings.php:107 -msgid "Makes a taxonomy visible on the frontend and in the admin dashboard." -msgstr "Zviditelní taxonomii ve frontendu a na nástěnce správce." - -#: includes/admin/views/acf-taxonomy/basic-settings.php:91 -msgid "One or many post types that can be classified with this taxonomy." -msgstr "" -"Jeden nebo více typů obsahu, které lze klasifikovat pomocí této taxonomie." - -#. translators: example taxonomy -#: includes/admin/views/acf-taxonomy/basic-settings.php:60 -msgid "genre" -msgstr "žánr" - -#. translators: example taxonomy -#: includes/admin/views/acf-taxonomy/basic-settings.php:42 -msgid "Genre" -msgstr "Žánr" - -#. translators: example taxonomy -#: includes/admin/views/acf-taxonomy/basic-settings.php:25 -msgid "Genres" -msgstr "Žánry" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1211 -msgid "" -"Optional custom controller to use instead of `WP_REST_Terms_Controller `." -msgstr "" -"Volitelný kontrolér, který se použije místo `WP_REST_Terms_Controller`." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1155 -msgid "Expose this post type in the REST API." -msgstr "Zveřejněte tento typ obsahu v rozhraní REST API." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1055 -msgid "Customize the query variable name" -msgstr "Přizpůsobení názvu proměnné dotazu" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1028 -msgid "" -"Terms can be accessed using the non-pretty permalink, e.g., {query_var}" -"={term_slug}." -msgstr "" -"K pojmům lze přistupovat pomocí nepěkného trvalého odkazu, např. {query_var}" -"={term_slug}." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:981 -msgid "Parent-child terms in URLs for hierarchical taxonomies." -msgstr "Nadřazené a podřazené pojmy v adresách URL pro hierarchické taxonomie." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:941 -msgid "Customize the slug used in the URL" -msgstr "Přizpůsobení názvu použitém v adrese URL" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:924 -msgid "Permalinks for this taxonomy are disabled." -msgstr "Trvalé odkazy pro tuto taxonomii jsou zakázány." - -#. translators: this string will be appended with the new permalink structure. -#: includes/admin/views/acf-taxonomy/advanced-settings.php:921 -msgid "" -"Rewrite the URL using the taxonomy key as the slug. Your permalink structure " -"will be" -msgstr "" -"Přepište adresu URL pomocí klíče taxonomie jako názvu v URL. Struktura " -"trvalého odkazu bude následující" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:913 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1030 -#: includes/admin/views/acf-taxonomy/basic-settings.php:57 -msgid "Taxonomy Key" -msgstr "Klíč taxonomie" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:911 -msgid "Select the type of permalink to use for this taxonomy." -msgstr "Vyberte typ trvalého odkazu, který chcete pro tuto taxonomii použít." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:896 -msgid "Display a column for the taxonomy on post type listing screens." -msgstr "Zobrazení sloupce pro taxonomii na obrazovkách s výpisem typů obsahu." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:895 -msgid "Show Admin Column" -msgstr "Zobrazit sloupec správce" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:882 -msgid "Show the taxonomy in the quick/bulk edit panel." -msgstr "Zobrazení taxonomie v panelu rychlých/hromadných úprav." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:881 -msgid "Quick Edit" -msgstr "Rychlé úpravy" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:868 -msgid "List the taxonomy in the Tag Cloud Widget controls." -msgstr "Uveďte taxonomii v ovládacích prvcích bloku Shluk štítků." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:867 -msgid "Tag Cloud" -msgstr "Shluk štítků" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:824 -msgid "" -"A PHP function name to be called for sanitizing taxonomy data saved from a " -"meta box." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:823 -msgid "Meta Box Sanitization Callback" -msgstr "Callback pro sanitaci metaboxu" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:805 -msgid "" -"A PHP function name to be called to handle the content of a meta box on your " -"taxonomy." -msgstr "" -"Název funkce PHP, která se volá pro zpracování obsahu metaboxu v taxonomii." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:804 -msgid "Register Meta Box Callback" -msgstr "Registrovat callback metaboxu" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:763 -msgid "No Meta Box" -msgstr "Žádný metabox" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:762 -msgid "Custom Meta Box" -msgstr "Vlastní metabox" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:758 -msgid "" -"Controls the meta box on the content editor screen. By default, the " -"Categories meta box is shown for hierarchical taxonomies, and the Tags meta " -"box is shown for non-hierarchical taxonomies." -msgstr "" -"Ovládá pole meta na obrazovce editoru obsahu. Ve výchozím nastavení se u " -"hierarchických taxonomií zobrazuje metabox Rubriky a u nehierarchických " -"taxonomií metabox Štítky." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:757 -msgid "Meta Box" -msgstr "Metabox" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:746 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:767 -msgid "Categories Meta Box" -msgstr "Metabox pro rubriky" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:745 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:766 -msgid "Tags Meta Box" -msgstr "Metabox pro štítky" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:704 -msgid "A link to a tag" -msgstr "Odkaz na štítek" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:703 -msgid "Describes a navigation link block variation used in the block editor." -msgstr "Popisuje variantu bloku navigačního odkazu použitou v editoru bloků." - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:698 -msgid "A link to a %s" -msgstr "Odkaz na %s" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:683 -msgid "Tag Link" -msgstr "Odkaz štítku" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:682 -msgid "" -"Assigns a title for navigation link block variation used in the block editor." -msgstr "" -"Přiřadí název pro variantu bloku navigačního odkazu použitou v editoru bloků." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:663 -msgid "← Go to tags" -msgstr "← Přejít na štítky" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:662 -msgid "" -"Assigns the text used to link back to the main index after updating a term." -msgstr "" -"Přiřadí text, který se po aktualizaci pojmu použije k odkazu zpět na hlavní " -"rejstřík." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:661 -msgid "Back To Items" -msgstr "Zpět na položky" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:657 -msgid "← Go to %s" -msgstr "← Přejít na %s" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:642 -msgid "Tags list" -msgstr "Seznam štítků" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:641 -msgid "Assigns text to the table hidden heading." -msgstr "Přiřadí text skrytému záhlaví tabulky." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:622 -msgid "Tags list navigation" -msgstr "Navigace v seznamu štítků" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:621 -msgid "Assigns text to the table pagination hidden heading." -msgstr "Přiřadí text skrytému záhlaví stránkování tabulky." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:597 -msgid "Filter by category" -msgstr "Filtrovat podle rubriky" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:596 -msgid "Assigns text to the filter button in the posts lists table." -msgstr "Přiřadí text tlačítku filtru v tabulce seznamů příspěvků." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:595 -msgid "Filter By Item" -msgstr "Filtrovat podle položky" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:591 -msgid "Filter by %s" -msgstr "Filtrovat podle %s" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:575 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:576 -msgid "" -"The description is not prominent by default; however, some themes may show " -"it." -msgstr "" -"Popis není ve výchozím nastavení viditelný, některé šablony jej však mohou " -"zobrazovat." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:574 -msgid "Describes the Description field on the Edit Tags screen." -msgstr "Popisuje pole Popis na obrazovce Upravit štítky." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:573 -msgid "Description Field Description" -msgstr "Popis pole Popis" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:554 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:555 -msgid "" -"Assign a parent term to create a hierarchy. The term Jazz, for example, " -"would be the parent of Bebop and Big Band" -msgstr "" -"Přiřazením nadřazeného pojmu vytvoříte hierarchii. Například pojem Jazz bude " -"nadřazený výrazům Bebop a Big Band." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:553 -msgid "Describes the Parent field on the Edit Tags screen." -msgstr "Popisuje pole Nadřazený na obrazovce Upravit štítky." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:552 -msgid "Parent Field Description" -msgstr "Popis pole Nadřazený" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:538 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:539 -msgid "" -"The \"slug\" is the URL-friendly version of the name. It is usually all " -"lower case and contains only letters, numbers, and hyphens." -msgstr "" -"Název v URL je verze vhodná pro adresy URL. Obvykle se píše malými písmeny a " -"obsahuje pouze písmena bez diakritiky, číslice a pomlčky." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:537 -msgid "Describes the Slug field on the Edit Tags screen." -msgstr "Popisuje pole Název v URL na obrazovce Upravit štítky." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:536 -msgid "Slug Field Description" -msgstr "Popis pole Název v URL" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:522 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:523 -msgid "The name is how it appears on your site" -msgstr "Název se bude v této podobě zobrazovat na webu" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:521 -msgid "Describes the Name field on the Edit Tags screen." -msgstr "Popisuje pole Název na obrazovce Upravit štítky." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:520 -msgid "Name Field Description" -msgstr "Popis pole Název" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:507 -msgid "No tags" -msgstr "Žádné štítky" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:506 -msgid "" -"Assigns the text displayed in the posts and media list tables when no tags " -"or categories are available." -msgstr "" -"Přiřazuje text zobrazený v tabulkách seznamů příspěvků a médií, pokud nejsou " -"k dispozici žádné štítky nebo rubriky." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:505 -msgid "No Terms" -msgstr "Žádné pojmy" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:501 -msgid "No %s" -msgstr "Žádné %s" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:486 -msgid "No tags found" -msgstr "Nebyly nalezeny žádné štítky" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:485 -msgid "" -"Assigns the text displayed when clicking the 'choose from most used' text in " -"the taxonomy meta box when no tags are available, and assigns the text used " -"in the terms list table when there are no items for a taxonomy." -msgstr "" -"Přiřazuje text zobrazený po kliknutí na text „zvolit z nejpoužívanějších“ v " -"metaboxu taxonomie, pokud nejsou k dispozici žádné štítky, a přiřazuje text " -"použitý v tabulce seznamu pojmů, pokud pro taxonomii neexistují žádné " -"položky." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:484 -msgid "Not Found" -msgstr "Nenalezeno" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:463 -msgid "Assigns text to the Title field of the Most Used tab." -msgstr "Přiřadí text do pole Název na kartě Nejpoužívanější." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:462 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:464 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:465 -msgid "Most Used" -msgstr "Nejčastější" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:444 -msgid "Choose from the most used tags" -msgstr "Vyberte si z nejpoužívanějších štítků" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:443 -msgid "" -"Assigns the 'choose from most used' text used in the meta box when " -"JavaScript is disabled. Only used on non-hierarchical taxonomies." -msgstr "" -"Přiřazuje text pro „zvolit z nejpoužívanějších“, který se používá v metaboxu " -"při vypnutém JavaScriptu. Používá se pouze u nehierarchických taxonomií." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:442 -msgid "Choose From Most Used" -msgstr "Zvolit z nejpoužívanějších" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:438 -msgid "Choose from the most used %s" -msgstr "Vyberte si z nejpoužívanějších %s" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:418 -msgid "Add or remove tags" -msgstr "Přidat nebo odebrat štítky" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:417 -msgid "" -"Assigns the add or remove items text used in the meta box when JavaScript is " -"disabled. Only used on non-hierarchical taxonomies" -msgstr "" -"Přiřazuje text přidávání nebo odebírání položek použitý v metaboxu při " -"vypnutém JavaScriptu. Používá se pouze u nehierarchických taxonomií." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:416 -msgid "Add Or Remove Items" -msgstr "Přidat nebo odstranit položky" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:412 -msgid "Add or remove %s" -msgstr "Přidat nebo odstranit %s" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:392 -msgid "Separate tags with commas" -msgstr "Více štítků oddělte čárkami" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:391 -msgid "" -"Assigns the separate item with commas text used in the taxonomy meta box. " -"Only used on non-hierarchical taxonomies." -msgstr "" -"Přiřadí text pro oddělení položek čárkami používaný v metaboxu. Používá se " -"pouze u nehierarchických taxonomií." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:390 -msgid "Separate Items With Commas" -msgstr "Oddělujte položky čárkami" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:386 -msgid "Separate %s with commas" -msgstr "Oddělte %s čárkami" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:366 -msgid "Popular Tags" -msgstr "Oblíbené štítky" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:365 -msgid "Assigns popular items text. Only used for non-hierarchical taxonomies." -msgstr "" -"Přiřadí text pro oblíbené položky. Používá se pouze pro nehierarchické " -"taxonomie." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:364 -msgid "Popular Items" -msgstr "Oblíbené položky" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:361 -msgid "Popular %s" -msgstr "Oblíbené %s" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:347 -msgid "Search Tags" -msgstr "Hledat štítky" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:346 -msgid "Assigns search items text." -msgstr "Přiřadí text pro hledání položek." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:323 -msgid "Parent Category:" -msgstr "Nadřazená rubrika:" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:322 -msgid "Assigns parent item text, but with a colon (:) added to the end." -msgstr "Přiřadí text nadřazené položky, ale s dvojtečkou (:) na konci." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:321 -msgid "Parent Item With Colon" -msgstr "Nadřazená položka s dvojtečkou" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:298 -msgid "Parent Category" -msgstr "Nadřazená rubrika" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:297 -msgid "Assigns parent item text. Only used on hierarchical taxonomies." -msgstr "" -"Přiřadí text nadřazené položky. Používá se pouze u hierarchických taxonomií." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:296 -msgid "Parent Item" -msgstr "Nadřazená položka" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:293 -msgid "Parent %s" -msgstr "Nadřazený %s" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:278 -msgid "New Tag Name" -msgstr "Název nového štítku" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:277 -msgid "Assigns the new item name text." -msgstr "Přiřadí text pro název nové položky." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:276 -msgid "New Item Name" -msgstr "Název nové položky" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:273 -msgid "New %s Name" -msgstr "Název nového %s" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:258 -msgid "Add New Tag" -msgstr "Vytvořit nový štítek" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:257 -msgid "Assigns the add new item text." -msgstr "Přiřadí text pro vytvoření nové položky." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:238 -msgid "Update Tag" -msgstr "Aktualizovat štítek" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:237 -msgid "Assigns the update item text." -msgstr "Přiřadí text pro aktualizaci položky." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:236 -msgid "Update Item" -msgstr "Aktualizovat položku" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:233 -msgid "Update %s" -msgstr "Aktualizovat %s" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:218 -msgid "View Tag" -msgstr "Zobrazit štítek" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:217 -msgid "In the admin bar to view term during editing." -msgstr "Na panelu správce pro zobrazení pojmu během úprav." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:198 -msgid "Edit Tag" -msgstr "Upravit štítek" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:197 -msgid "At the top of the editor screen when editing a term." -msgstr "V horní části obrazovky editoru při úpravě položky." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:178 -msgid "All Tags" -msgstr "Všechny štítky" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:177 -msgid "Assigns the all items text." -msgstr "Přiřadí text pro všechny položky." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:158 -msgid "Assigns the menu name text." -msgstr "Přiřadí text názvu menu." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:157 -msgid "Menu Label" -msgstr "Označení menu" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:131 -msgid "Active taxonomies are enabled and registered with WordPress." -msgstr "Aktivní taxonomie jsou povoleny a zaregistrovány ve WordPressu." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:115 -msgid "A descriptive summary of the taxonomy." -msgstr "Popisné shrnutí taxonomie." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:95 -msgid "A descriptive summary of the term." -msgstr "Popisné shrnutí pojmu." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:94 -msgid "Term Description" -msgstr "Popis pojmu" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:76 -msgid "Single word, no spaces. Underscores and dashes allowed." -msgstr "Jedno slovo, bez mezer. Podtržítka a pomlčky jsou povoleny." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:75 -msgid "Term Slug" -msgstr "Název pojmu v URL" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:56 -msgid "The name of the default term." -msgstr "Název výchozího pojmu." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:55 -msgid "Term Name" -msgstr "Název pojmu" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:41 -msgid "" -"Create a term for the taxonomy that cannot be deleted. It will not be " -"selected for posts by default." -msgstr "" -"Vytvoření pojmu pro taxonomii, který nelze odstranit. Ve výchozím nastavení " -"nebude vybrán pro příspěvky." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:40 -msgid "Default Term" -msgstr "Výchozí pojem" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:28 -msgid "" -"Whether terms in this taxonomy should be sorted in the order they are " -"provided to `wp_set_object_terms()`." -msgstr "" -"Zda mají být pojmy v této taxonomii seřazeny v pořadí, v jakém byly zadány " -"do `wp_set_object_terms()`." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:27 -msgid "Sort Terms" -msgstr "Řadit pojmy" - -#: includes/admin/views/acf-post-type/list-empty.php:7 -msgid "Add Post Type" -msgstr "Přidat typ obsahu" - -#: includes/admin/views/acf-post-type/list-empty.php:6 -msgid "" -"Expand the functionality of WordPress beyond standard posts and pages with " -"custom post types." -msgstr "" -"Rozšiřte funkčnost WordPressu nad rámec standardních příspěvků a stránek " -"pomocí vlastních typů obsahu." - -#: includes/admin/views/acf-post-type/list-empty.php:5 -msgid "Add Your First Post Type" -msgstr "Přidejte první typ obsahu" - -#: includes/admin/views/acf-post-type/basic-settings.php:136 -#: includes/admin/views/acf-taxonomy/basic-settings.php:135 -msgid "I know what I'm doing, show me all the options." -msgstr "Vím, co dělám, ukažte mi všechny možnosti." - -#: includes/admin/views/acf-post-type/basic-settings.php:135 -#: includes/admin/views/acf-taxonomy/basic-settings.php:134 -msgid "Advanced Configuration" -msgstr "Pokročilá konfigurace" - -#: includes/admin/views/acf-post-type/basic-settings.php:123 -msgid "Hierarchical post types can have descendants (like pages)." -msgstr "Hierarchické typy obsahu mohou mít potomky (stejně jako stránky)." - -#: includes/admin/views/acf-post-type/basic-settings.php:122 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:980 -#: includes/admin/views/acf-taxonomy/basic-settings.php:121 -msgid "Hierarchical" -msgstr "Hierarchické" - -#: includes/admin/views/acf-post-type/basic-settings.php:107 -msgid "Visible on the frontend and in the admin dashboard." -msgstr "Je viditelný ve frontendu a na nástěnce správce." - -#: includes/admin/views/acf-post-type/basic-settings.php:106 -#: includes/admin/views/acf-taxonomy/basic-settings.php:106 -msgid "Public" -msgstr "Veřejné" - -#. translators: example post type -#: includes/admin/views/acf-post-type/basic-settings.php:59 -msgid "movie" -msgstr "film" - -#: includes/admin/views/acf-post-type/basic-settings.php:57 -msgid "Lower case letters, underscores and dashes only, Max 20 characters." -msgstr "Pouze malá písmena, podtržítka a pomlčky, max. 20 znaků." - -#. translators: example post type -#: includes/admin/views/acf-post-type/basic-settings.php:41 -msgid "Movie" -msgstr "Film" - -#: includes/admin/views/acf-post-type/basic-settings.php:39 -#: includes/admin/views/acf-taxonomy/basic-settings.php:40 -msgid "Singular Label" -msgstr "Štítek v jednotném čísle" - -#. translators: example post type -#: includes/admin/views/acf-post-type/basic-settings.php:24 -msgid "Movies" -msgstr "Filmy" - -#: includes/admin/views/acf-post-type/basic-settings.php:22 -#: includes/admin/views/acf-taxonomy/basic-settings.php:23 -msgid "Plural Label" -msgstr "Štítek pro množné číslo" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1270 -msgid "" -"Optional custom controller to use instead of `WP_REST_Posts_Controller`." -msgstr "" -"Volitelný kontrolér, který se použije místo `WP_REST_Posts_Controller`." - -#: includes/admin/views/acf-post-type/advanced-settings.php:1269 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1210 -msgid "Controller Class" -msgstr "Třída kontroléru" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1251 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1191 -msgid "The namespace part of the REST API URL." -msgstr "Část adresy URL rozhraní REST API obsahující jmenný prostor." - -#: includes/admin/views/acf-post-type/advanced-settings.php:1250 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1190 -msgid "Namespace Route" -msgstr "Cesta jmenného prostoru" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1232 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1172 -msgid "The base URL for the post type REST API URLs." -msgstr "Základní URL pro adresy daného typu obsahu v rozhraní REST API." - -#: includes/admin/views/acf-post-type/advanced-settings.php:1231 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1171 -msgid "Base URL" -msgstr "Základní URL" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1217 -msgid "" -"Exposes this post type in the REST API. Required to use the block editor." -msgstr "" -"Zveřejní tento typ obsahu v rozhraní REST API. Vyžadováno pro použití " -"editoru bloků." - -#: includes/admin/views/acf-post-type/advanced-settings.php:1216 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1154 -msgid "Show In REST API" -msgstr "Zobrazit v rozhraní REST API" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1195 -msgid "Customize the query variable name." -msgstr "Přizpůsobte název proměnné dotazu." - -#: includes/admin/views/acf-post-type/advanced-settings.php:1194 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1054 -msgid "Query Variable" -msgstr "Proměnná dotazu" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1172 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1032 -msgid "No Query Variable Support" -msgstr "Chybějící podpora proměnné dotazu" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1171 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1031 -msgid "Custom Query Variable" -msgstr "Uživatelská proměnná dotazu" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1168 -msgid "" -"Items can be accessed using the non-pretty permalink, eg. {post_type}" -"={post_slug}." -msgstr "" -"K položkám lze přistupovat pomocí nepěkného trvalého odkazu, např. " -"{post_type}={post_slug}." - -#: includes/admin/views/acf-post-type/advanced-settings.php:1167 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1027 -msgid "Query Variable Support" -msgstr "Podpora proměnné dotazu" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1142 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1003 -msgid "URLs for an item and items can be accessed with a query string." -msgstr "K adresám URL položky a položek lze přistupovat pomocí řetězce dotazů." - -#: includes/admin/views/acf-post-type/advanced-settings.php:1141 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1002 -msgid "Publicly Queryable" -msgstr "Veřejně dotazovatelné" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1120 -msgid "Custom slug for the Archive URL." -msgstr "Vlastní název v adrese URL archivu." - -#: includes/admin/views/acf-post-type/advanced-settings.php:1119 -msgid "Archive Slug" -msgstr "Název archivu v URL" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1106 -msgid "" -"Has an item archive that can be customized with an archive template file in " -"your theme." -msgstr "" -"Má archiv položek, který lze přizpůsobit pomocí souboru šablony archivu v " -"šabloně webu." - -#: includes/admin/views/acf-post-type/advanced-settings.php:1105 -msgid "Archive" -msgstr "Archiv" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1085 -msgid "Pagination support for the items URLs such as the archives." -msgstr "Podpora stránkování pro adresy URL položek jako jsou archivy." - -#: includes/admin/views/acf-post-type/advanced-settings.php:1084 -msgid "Pagination" -msgstr "Stránkování" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1067 -msgid "RSS feed URL for the post type items." -msgstr "Adresa URL zdroje RSS pro položky daného typu obsahu." - -#: includes/admin/views/acf-post-type/advanced-settings.php:1066 -msgid "Feed URL" -msgstr "Adresa URL zdroje" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1048 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:961 -msgid "" -"Alters the permalink structure to add the `WP_Rewrite::$front` prefix to " -"URLs." -msgstr "" -"Změní strukturu trvalých odkazů tak, že do adres URL přidá předponu " -"`WP_Rewrite::$front`." - -#: includes/admin/views/acf-post-type/advanced-settings.php:1047 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:960 -msgid "Front URL Prefix" -msgstr "Předpona URL" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1028 -msgid "Customize the slug used in the URL." -msgstr "Přizpůsobte název, který se používá v adrese URL." - -#: includes/admin/views/acf-post-type/advanced-settings.php:1027 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:940 -msgid "URL Slug" -msgstr "Název v URL" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1011 -msgid "Permalinks for this post type are disabled." -msgstr "Trvalé odkazy pro tento typ obsahu jsou zakázány." - -#. translators: this string will be appended with the new permalink structure. -#: includes/admin/views/acf-post-type/advanced-settings.php:1010 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:923 -msgid "" -"Rewrite the URL using a custom slug defined in the input below. Your " -"permalink structure will be" -msgstr "" -"Přepište adresu URL pomocí názvu definovaném v poli níže. Struktura trvalého " -"odkazu bude následující" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1002 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:915 -msgid "No Permalink (prevent URL rewriting)" -msgstr "Žádný trvalý odkaz (zabránění přepisování URL)" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1001 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:914 -msgid "Custom Permalink" -msgstr "Uživatelský trvalý odkaz" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1000 -#: includes/admin/views/acf-post-type/advanced-settings.php:1170 -#: includes/admin/views/acf-post-type/basic-settings.php:56 -msgid "Post Type Key" -msgstr "Klíč typu obsahu" - -#. translators: this string will be appended with the new permalink structure. -#: includes/admin/views/acf-post-type/advanced-settings.php:998 -#: includes/admin/views/acf-post-type/advanced-settings.php:1008 -msgid "" -"Rewrite the URL using the post type key as the slug. Your permalink " -"structure will be" -msgstr "" -"Přepište adresu URL pomocí klíče typu obsahu jako názvu v URL. Struktura " -"trvalého odkazu bude následující" - -#: includes/admin/views/acf-post-type/advanced-settings.php:996 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:910 -msgid "Permalink Rewrite" -msgstr "Přepsání trvalého odkazu" - -#: includes/admin/views/acf-post-type/advanced-settings.php:982 -msgid "Delete items by a user when that user is deleted." -msgstr "Smazat položky uživatele při jeho smazání." - -#: includes/admin/views/acf-post-type/advanced-settings.php:981 -msgid "Delete With User" -msgstr "Smazat s uživatelem" - -#: includes/admin/views/acf-post-type/advanced-settings.php:967 -msgid "Allow the post type to be exported from 'Tools' > 'Export'." -msgstr "Povolte exportování typu obsahu z Nástroje > Export." - -#: includes/admin/views/acf-post-type/advanced-settings.php:966 -msgid "Can Export" -msgstr "Může exportovat" - -#: includes/admin/views/acf-post-type/advanced-settings.php:935 -msgid "Optionally provide a plural to be used in capabilities." -msgstr "Volitelně uveďte množné číslo, které se použije pro oprávnění." - -#: includes/admin/views/acf-post-type/advanced-settings.php:934 -msgid "Plural Capability Name" -msgstr "Název oprávnění v množném čísle" - -#: includes/admin/views/acf-post-type/advanced-settings.php:916 -msgid "Choose another post type to base the capabilities for this post type." -msgstr "" -"Zvolte jiný typ obsahu, z něhož budou odvozeny oprávnění pro tento typ " -"obsahu." - -#: includes/admin/views/acf-post-type/advanced-settings.php:915 -msgid "Singular Capability Name" -msgstr "Název oprávnění v jednotném čísle" - -#: includes/admin/views/acf-post-type/advanced-settings.php:901 -msgid "" -"By default the capabilities of the post type will inherit the 'Post' " -"capability names, eg. edit_post, delete_posts. Enable to use post type " -"specific capabilities, eg. edit_{singular}, delete_{plural}." -msgstr "" -"Ve výchozím nastavení zdědí názvy oprávnění z typu „Příspěvek“, např. " -"edit_post, delete_posts. Povolte pro použití oprávnění specifických pro daný " -"typ obsahu, např. edit_{singular}, delete_{plural}." - -#: includes/admin/views/acf-post-type/advanced-settings.php:900 -msgid "Rename Capabilities" -msgstr "Přejmenovat oprávnění" - -#: includes/admin/views/acf-post-type/advanced-settings.php:885 -msgid "Exclude From Search" -msgstr "Vyloučit z vyhledávání" - -#: includes/admin/views/acf-post-type/advanced-settings.php:872 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:854 -msgid "" -"Allow items to be added to menus in the 'Appearance' > 'Menus' screen. Must " -"be turned on in 'Screen options'." -msgstr "" -"Povolení přidávání položek do menu na obrazovce Vzhled > Menu. Musí být " -"zapnuto v Nastavení zobrazených informací." - -#: includes/admin/views/acf-post-type/advanced-settings.php:871 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:853 -msgid "Appearance Menus Support" -msgstr "Podpora menu Vzhled" - -#: includes/admin/views/acf-post-type/advanced-settings.php:853 -msgid "Appears as an item in the 'New' menu in the admin bar." -msgstr "Zobrazí se jako položka v menu „Akce“ na panelu správce." - -#: includes/admin/views/acf-post-type/advanced-settings.php:852 -msgid "Show In Admin Bar" -msgstr "Zobrazit na panelu správce" - -#: includes/admin/views/acf-post-type/advanced-settings.php:821 -msgid "" -"A PHP function name to be called when setting up the meta boxes for the edit " -"screen." -msgstr "" -"Název funkce PHP, která se volá při nastavování metaboxů pro obrazovku úprav." - -#: includes/admin/views/acf-post-type/advanced-settings.php:820 -msgid "Custom Meta Box Callback" -msgstr "Vlastní callback metaboxu" - -#: includes/admin/views/acf-post-type/advanced-settings.php:800 -msgid "Menu Icon" -msgstr "Ikona menu" - -#: includes/admin/views/acf-post-type/advanced-settings.php:782 -msgid "The position in the sidebar menu in the admin dashboard." -msgstr "Pozice v menu postranního panelu na nástěnce správce." - -#: includes/admin/views/acf-post-type/advanced-settings.php:781 -msgid "Menu Position" -msgstr "Pozice menu" - -#: includes/admin/views/acf-post-type/advanced-settings.php:763 -msgid "" -"By default the post type will get a new top level item in the admin menu. If " -"an existing top level item is supplied here, the post type will be added as " -"a submenu item under it." -msgstr "" -"Ve výchozím nastavení získá typ obsahu novou položku nejvyšší úrovně v menu " -"správce. Pokud je zde uvedena existující položka nejvyšší úrovně, typ obsahu " -"bude přidán jako položka podřazená pod ni." - -#: includes/admin/views/acf-post-type/advanced-settings.php:762 -msgid "Admin Menu Parent" -msgstr "Nadřazené menu" - -#. translators: %s = "dashicon class name", link to the WordPress dashicon -#. documentation. -#: includes/admin/views/acf-post-type/advanced-settings.php:750 -msgid "" -"The icon used for the post type menu item in the admin dashboard. Can be a " -"URL or %s to use for the icon." -msgstr "" -"Ikona použitá pro položku menu daného typu obsahu na nástěnce správce. Může " -"to být adresa URL nebo %s, které se pro ikonu použijí." - -#: includes/admin/views/acf-post-type/advanced-settings.php:745 -msgid "Dashicon class name" -msgstr "Název třídy Dashicon" - -#: includes/admin/views/acf-post-type/advanced-settings.php:734 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:734 -msgid "Admin editor navigation in the sidebar menu." -msgstr "Navigace v editoru správce v menu postranního panelu." - -#: includes/admin/views/acf-post-type/advanced-settings.php:733 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:733 -msgid "Show In Admin Menu" -msgstr "Zobrazit v menu správce" - -#: includes/admin/views/acf-post-type/advanced-settings.php:720 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:719 -msgid "Items can be edited and managed in the admin dashboard." -msgstr "Položky lze upravovat a spravovat na nástěnce správce." - -#: includes/admin/views/acf-post-type/advanced-settings.php:719 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:718 -msgid "Show In UI" -msgstr "Zobrazit v uživatelském rozhraní" - -#: includes/admin/views/acf-post-type/advanced-settings.php:689 -msgid "A link to a post." -msgstr "Odkaz na příspěvek." - -#: includes/admin/views/acf-post-type/advanced-settings.php:688 -msgid "Description for a navigation link block variation." -msgstr "Popis varianty bloku navigačního odkazu." - -#: includes/admin/views/acf-post-type/advanced-settings.php:687 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:702 -msgid "Item Link Description" -msgstr "Popis odkazu položky" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:683 -msgid "A link to a %s." -msgstr "Odkaz na %s." - -#: includes/admin/views/acf-post-type/advanced-settings.php:668 -msgid "Post Link" -msgstr "Odkaz příspěvku" - -#: includes/admin/views/acf-post-type/advanced-settings.php:667 -msgid "Title for a navigation link block variation." -msgstr "Název varianty bloku navigačního odkazu." - -#: includes/admin/views/acf-post-type/advanced-settings.php:666 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:681 -msgid "Item Link" -msgstr "Odkaz položky" - -#. translators: %s Singular form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:663 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:678 -msgid "%s Link" -msgstr "Odkaz na %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:648 -msgid "Post updated." -msgstr "Příspěvek byl aktualizován." - -#: includes/admin/views/acf-post-type/advanced-settings.php:647 -msgid "In the editor notice after an item is updated." -msgstr "V oznámení editoru po aktualizaci položky." - -#: includes/admin/views/acf-post-type/advanced-settings.php:646 -msgid "Item Updated" -msgstr "Položka byla aktualizována" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:643 -msgid "%s updated." -msgstr "%s aktualizován." - -#: includes/admin/views/acf-post-type/advanced-settings.php:628 -msgid "Post scheduled." -msgstr "Příspěvek byl naplánován." - -#: includes/admin/views/acf-post-type/advanced-settings.php:627 -msgid "In the editor notice after scheduling an item." -msgstr "V oznámení editoru po naplánování položky." - -#: includes/admin/views/acf-post-type/advanced-settings.php:626 -msgid "Item Scheduled" -msgstr "Položka naplánována" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:623 -msgid "%s scheduled." -msgstr "%s byl naplánován." - -#: includes/admin/views/acf-post-type/advanced-settings.php:608 -msgid "Post reverted to draft." -msgstr "Příspěvek byl převeden na koncept." - -#: includes/admin/views/acf-post-type/advanced-settings.php:607 -msgid "In the editor notice after reverting an item to draft." -msgstr "V oznámení editoru po převedení položky na koncept." - -#: includes/admin/views/acf-post-type/advanced-settings.php:606 -msgid "Item Reverted To Draft" -msgstr "Položka převedena na koncept" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:603 -msgid "%s reverted to draft." -msgstr "%s byl převeden na koncept." - -#: includes/admin/views/acf-post-type/advanced-settings.php:588 -msgid "Post published privately." -msgstr "Příspěvek byl publikován soukromě." - -#: includes/admin/views/acf-post-type/advanced-settings.php:587 -msgid "In the editor notice after publishing a private item." -msgstr "V oznámení editoru po publikování položky soukromě." - -#: includes/admin/views/acf-post-type/advanced-settings.php:586 -msgid "Item Published Privately" -msgstr "Položka publikována soukromě" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:583 -msgid "%s published privately." -msgstr "%s byl publikován soukromě." - -#: includes/admin/views/acf-post-type/advanced-settings.php:568 -msgid "Post published." -msgstr "Příspěvek byl publikován." - -#: includes/admin/views/acf-post-type/advanced-settings.php:567 -msgid "In the editor notice after publishing an item." -msgstr "V oznámení editoru po publikování položky." - -#: includes/admin/views/acf-post-type/advanced-settings.php:566 -msgid "Item Published" -msgstr "Položka publikována" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:563 -msgid "%s published." -msgstr "%s publikován." - -#: includes/admin/views/acf-post-type/advanced-settings.php:548 -msgid "Posts list" -msgstr "Seznam příspěvků" - -#: includes/admin/views/acf-post-type/advanced-settings.php:547 -msgid "Used by screen readers for the items list on the post type list screen." -msgstr "" -"Používá se čtečkami obrazovky na obrazovce se seznamem položek daného typu " -"obsahu." - -#: includes/admin/views/acf-post-type/advanced-settings.php:546 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:640 -msgid "Items List" -msgstr "Seznam položek" - -#. translators: %s Plural form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:543 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:637 -msgid "%s list" -msgstr "Seznam %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:528 -msgid "Posts list navigation" -msgstr "Navigace v seznamu příspěvků" - -#: includes/admin/views/acf-post-type/advanced-settings.php:527 -msgid "" -"Used by screen readers for the filter list pagination on the post type list " -"screen." -msgstr "" -"Používá se čtečkami obrazovky pro stránkování filtru na obrazovce se " -"seznamem typů obsahu." - -#: includes/admin/views/acf-post-type/advanced-settings.php:526 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:620 -msgid "Items List Navigation" -msgstr "Navigace v seznamu položek" - -#. translators: %s Plural form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:523 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:617 -msgid "%s list navigation" -msgstr "Navigace v seznamu %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:507 -msgid "Filter posts by date" -msgstr "Filtrovat příspěvky podle data" - -#: includes/admin/views/acf-post-type/advanced-settings.php:506 -msgid "" -"Used by screen readers for the filter by date heading on the post type list " -"screen." -msgstr "" -"Používá se čtečkami obrazovky pro filtr podle data na obrazovce se seznamem " -"typů obsahu." - -#: includes/admin/views/acf-post-type/advanced-settings.php:505 -msgid "Filter Items By Date" -msgstr "Filtrovat položky podle data" - -#. translators: %s Plural form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:501 -msgid "Filter %s by date" -msgstr "Filtrovat %s podle data" - -#: includes/admin/views/acf-post-type/advanced-settings.php:486 -msgid "Filter posts list" -msgstr "Filtrovat seznam příspěvků" - -#: includes/admin/views/acf-post-type/advanced-settings.php:485 -msgid "" -"Used by screen readers for the filter links heading on the post type list " -"screen." -msgstr "" -"Používá se čtečkami obrazovky pro odkazy filtru na obrazovce se seznamem " -"typů obsahu." - -#: includes/admin/views/acf-post-type/advanced-settings.php:484 -msgid "Filter Items List" -msgstr "Filtrovat seznam položek" - -#. translators: %s Plural form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:480 -msgid "Filter %s list" -msgstr "Filtrovat seznam %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:464 -msgid "In the media modal showing all media uploaded to this item." -msgstr "V modálním okně médií se zobrazí všechna média nahraná k této položce." - -#: includes/admin/views/acf-post-type/advanced-settings.php:463 -msgid "Uploaded To This Item" -msgstr "Nahrané k této položce" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:459 -msgid "Uploaded to this %s" -msgstr "Nahráno do tohoto %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:444 -msgid "Insert into post" -msgstr "Vložit do příspěvku" - -#: includes/admin/views/acf-post-type/advanced-settings.php:443 -msgid "As the button label when adding media to content." -msgstr "Jako popisek tlačítka při přidávání médií do obsahu." - -#: includes/admin/views/acf-post-type/advanced-settings.php:442 -msgid "Insert Into Media Button" -msgstr "Tlačítko pro vložení médií" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:438 -msgid "Insert into %s" -msgstr "Vložit do %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:423 -msgid "Use as featured image" -msgstr "Použít jako náhledový obrázek" - -#: includes/admin/views/acf-post-type/advanced-settings.php:422 -msgid "" -"As the button label for selecting to use an image as the featured image." -msgstr "Jako popisek tlačítka pro výběr použití obrázku jako náhledového." - -#: includes/admin/views/acf-post-type/advanced-settings.php:421 -msgid "Use Featured Image" -msgstr "Použít náhledový obrázek" - -#: includes/admin/views/acf-post-type/advanced-settings.php:408 -msgid "Remove featured image" -msgstr "Odstranit náhledový obrázek" - -#: includes/admin/views/acf-post-type/advanced-settings.php:407 -msgid "As the button label when removing the featured image." -msgstr "Jako popisek tlačítka při odebrání náhledového obrázku." - -#: includes/admin/views/acf-post-type/advanced-settings.php:406 -msgid "Remove Featured Image" -msgstr "Odstranit náhledový obrázek" - -#: includes/admin/views/acf-post-type/advanced-settings.php:393 -msgid "Set featured image" -msgstr "Zvolit náhledový obrázek" - -#: includes/admin/views/acf-post-type/advanced-settings.php:392 -msgid "As the button label when setting the featured image." -msgstr "Jako popisek tlačítka při nastavení náhledového obrázku." - -#: includes/admin/views/acf-post-type/advanced-settings.php:391 -msgid "Set Featured Image" -msgstr "Zvolit náhledový obrázek" - -#: includes/admin/views/acf-post-type/advanced-settings.php:378 -msgid "Featured image" -msgstr "Náhledový obrázek" - -#: includes/admin/views/acf-post-type/advanced-settings.php:377 -msgid "In the editor used for the title of the featured image meta box." -msgstr "V editoru používán pro název metaboxu náhledového obrázku." - -#: includes/admin/views/acf-post-type/advanced-settings.php:376 -msgid "Featured Image Meta Box" -msgstr "Metabox náhledového obrázku" - -#: includes/admin/views/acf-post-type/advanced-settings.php:363 -msgid "Post Attributes" -msgstr "Vlastnosti příspěvku" - -#: includes/admin/views/acf-post-type/advanced-settings.php:362 -msgid "In the editor used for the title of the post attributes meta box." -msgstr "V editoru použitý pro název metaboxu s vlastnostmi příspěvku." - -#: includes/admin/views/acf-post-type/advanced-settings.php:361 -msgid "Attributes Meta Box" -msgstr "Metabox pro vlastnosti" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:358 -msgid "%s Attributes" -msgstr "Vlastnosti %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:343 -msgid "Post Archives" -msgstr "Archivy příspěvků" - -#: includes/admin/views/acf-post-type/advanced-settings.php:342 -msgid "" -"Adds 'Post Type Archive' items with this label to the list of posts shown " -"when adding items to an existing menu in a CPT with archives enabled. Only " -"appears when editing menus in 'Live Preview' mode and a custom archive slug " -"has been provided." -msgstr "" -"Přidá položky „Archiv typu obsahu“ s tímto označením do seznamu příspěvků " -"zobrazených při přidávání položek do existujícího menu v CPT s povolenými " -"archivy. Zobrazuje se pouze při úpravách menu v režimu „Aktuální náhled“ a " -"při zadání uživatelského názvu archivu v URL." - -#: includes/admin/views/acf-post-type/advanced-settings.php:341 -msgid "Archives Nav Menu" -msgstr "Navigační menu archivu" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:338 -msgid "%s Archives" -msgstr "Archivy pro %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:323 -msgid "No posts found in Trash" -msgstr "V koši nebyly nalezeny žádné příspěvky" - -#: includes/admin/views/acf-post-type/advanced-settings.php:322 -msgid "" -"At the top of the post type list screen when there are no posts in the trash." -msgstr "" -"V horní části obrazovky seznamu příspěvků daného typu, když v koši nejsou " -"žádné příspěvky." - -#: includes/admin/views/acf-post-type/advanced-settings.php:321 -msgid "No Items Found in Trash" -msgstr "V koši nebyly nalezeny žádné položky" - -#. translators: %s Plural form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:317 -msgid "No %s found in Trash" -msgstr "V koši nebyly nalezeny žádné %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:302 -msgid "No posts found" -msgstr "Nebyly nalezeny žádné příspěvky" - -#: includes/admin/views/acf-post-type/advanced-settings.php:301 -msgid "" -"At the top of the post type list screen when there are no posts to display." -msgstr "" -"V horní části obrazovky seznamu příspěvků daného typu, když nejsou žádné " -"příspěvky k zobrazení." - -#: includes/admin/views/acf-post-type/advanced-settings.php:300 -msgid "No Items Found" -msgstr "Nebyly nalezeny žádné položky" - -#. translators: %s Plural form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:296 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:480 -msgid "No %s found" -msgstr "Nenalezeny žádné položky typu %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:281 -msgid "Search Posts" -msgstr "Hledat příspěvky" - -#: includes/admin/views/acf-post-type/advanced-settings.php:280 -msgid "At the top of the items screen when searching for an item." -msgstr "V horní části obrazovky s položkami při hledání položky." - -#: includes/admin/views/acf-post-type/advanced-settings.php:279 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:345 -msgid "Search Items" -msgstr "Hledat položky" - -#. translators: %s Singular form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:276 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:342 -msgid "Search %s" -msgstr "Hledat %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:261 -msgid "Parent Page:" -msgstr "Nadřazená stránka:" - -#: includes/admin/views/acf-post-type/advanced-settings.php:260 -msgid "For hierarchical types in the post type list screen." -msgstr "Pro hierarchické typy na obrazovce se seznamem typů obsahu." - -#: includes/admin/views/acf-post-type/advanced-settings.php:259 -msgid "Parent Item Prefix" -msgstr "Předpona nadřazené položky" - -#. translators: %s Singular form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:256 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:318 -msgid "Parent %s:" -msgstr "Nadřazené %s:" - -#: includes/admin/views/acf-post-type/advanced-settings.php:241 -msgid "New Post" -msgstr "Nový příspěvek" - -#: includes/admin/views/acf-post-type/advanced-settings.php:239 -msgid "New Item" -msgstr "Nová položka" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:236 -msgid "New %s" -msgstr "Nový %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:206 -msgid "Add New Post" -msgstr "Vytvořit příspěvek" - -#: includes/admin/views/acf-post-type/advanced-settings.php:205 -msgid "At the top of the editor screen when adding a new item." -msgstr "V horní části obrazovky editoru při vytváření nové položky." - -#: includes/admin/views/acf-post-type/advanced-settings.php:204 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:256 -msgid "Add New Item" -msgstr "Vytvořit novou položku" - -#. translators: %s Singular form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:201 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:253 -msgid "Add New %s" -msgstr "Přidat nový %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:186 -msgid "View Posts" -msgstr "Zobrazit příspěvky" - -#: includes/admin/views/acf-post-type/advanced-settings.php:185 -msgid "" -"Appears in the admin bar in the 'All Posts' view, provided the post type " -"supports archives and the home page is not an archive of that post type." -msgstr "" -"Zobrazí se na panelu správce v zobrazení „Přehled příspěvků“, pokud typ " -"obsahu podporuje archivy a domovská stránka není archivem daného typu obsahu." - -#: includes/admin/views/acf-post-type/advanced-settings.php:184 -msgid "View Items" -msgstr "Zobrazit položky" - -#: includes/admin/views/acf-post-type/advanced-settings.php:166 -msgid "View Post" -msgstr "Zobrazit příspěvek" - -#: includes/admin/views/acf-post-type/advanced-settings.php:165 -msgid "In the admin bar to view item when editing it." -msgstr "Na panelu správce pro zobrazení položky při její úpravě." - -#: includes/admin/views/acf-post-type/advanced-settings.php:164 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:216 -msgid "View Item" -msgstr "Zobrazit položku" - -#. translators: %s Singular form of post type name -#. translators: %s Plural form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:161 -#: includes/admin/views/acf-post-type/advanced-settings.php:181 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:213 -msgid "View %s" -msgstr "Zobrazit %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:146 -msgid "Edit Post" -msgstr "Upravit příspěvek" - -#: includes/admin/views/acf-post-type/advanced-settings.php:145 -msgid "At the top of the editor screen when editing an item." -msgstr "V horní části obrazovky editoru při úpravě položky." - -#: includes/admin/views/acf-post-type/advanced-settings.php:144 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:196 -msgid "Edit Item" -msgstr "Upravit položku" - -#. translators: %s Singular form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:141 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:193 -msgid "Edit %s" -msgstr "Upravit %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:126 -msgid "All Posts" -msgstr "Přehled příspěvků" - -#: includes/admin/views/acf-post-type/advanced-settings.php:125 -#: includes/admin/views/acf-post-type/advanced-settings.php:220 -#: includes/admin/views/acf-post-type/advanced-settings.php:240 -msgid "In the post type submenu in the admin dashboard." -msgstr "V podmenu typu obsahu na nástěnce správce." - -#: includes/admin/views/acf-post-type/advanced-settings.php:124 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:176 -msgid "All Items" -msgstr "Všechny položky" - -#. translators: %s Plural form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:121 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:173 -msgid "All %s" -msgstr "Přehled %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:105 -msgid "Admin menu name for the post type." -msgstr "Název menu správce pro daný typ obsahu." - -#: includes/admin/views/acf-post-type/advanced-settings.php:104 -msgid "Menu Name" -msgstr "Název menu" - -#: includes/admin/views/acf-post-type/advanced-settings.php:90 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:142 -msgid "Regenerate all labels using the Singular and Plural labels" -msgstr "Přegenerovat všechny štítky pomocí štítků pro jednotné a množné číslo" - -#: includes/admin/views/acf-post-type/advanced-settings.php:88 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:140 -msgid "Regenerate" -msgstr "Přegenerovat" - -#: includes/admin/views/acf-post-type/advanced-settings.php:79 -msgid "Active post types are enabled and registered with WordPress." -msgstr "Aktivní typy obsahu jsou povoleny a zaregistrovány ve WordPressu." - -#: includes/admin/views/acf-post-type/advanced-settings.php:63 -msgid "A descriptive summary of the post type." -msgstr "Popisné shrnutí typu obsahu." - -#: includes/admin/views/acf-post-type/advanced-settings.php:48 -msgid "Add Custom" -msgstr "Přidat vlastní" - -#: includes/admin/views/acf-post-type/advanced-settings.php:42 -msgid "Enable various features in the content editor." -msgstr "Povolte různé funkce v editoru obsahu." - -#: includes/admin/views/acf-post-type/advanced-settings.php:31 -msgid "Post Formats" -msgstr "Formáty příspěvků" - -#: includes/admin/views/acf-post-type/advanced-settings.php:25 -msgid "Editor" -msgstr "Editor" - -#: includes/admin/views/acf-post-type/advanced-settings.php:24 -msgid "Trackbacks" -msgstr "Trackbacky" - -#: includes/admin/views/acf-post-type/basic-settings.php:87 -msgid "Select existing taxonomies to classify items of the post type." -msgstr "" -"Vyberte existující taxonomie pro klasifikaci položek daného typu obsahu." - -#: includes/admin/views/acf-field-group/field.php:145 -msgid "Browse Fields" -msgstr "Procházet pole" - -#: includes/admin/tools/class-acf-admin-tool-import.php:292 -msgid "Nothing to import" -msgstr "Nic k importu" - -#: includes/admin/tools/class-acf-admin-tool-import.php:287 -msgid ". The Custom Post Type UI plugin can be deactivated." -msgstr ". Plugin Custom Post Type UI lze deaktivovat." - -#. translators: %d - number of items imported from CPTUI -#: includes/admin/tools/class-acf-admin-tool-import.php:278 -msgid "Imported %d item from Custom Post Type UI -" -msgid_plural "Imported %d items from Custom Post Type UI -" -msgstr[0] "Importována %d položka z Custom Post Type UI -" -msgstr[1] "Importovány %d položky z Custom Post Type UI -" -msgstr[2] "Importováno %d položek z Custom Post Type UI -" - -#: includes/admin/tools/class-acf-admin-tool-import.php:262 -msgid "Failed to import taxonomies." -msgstr "Nepodařilo se importovat taxonomie." - -#: includes/admin/tools/class-acf-admin-tool-import.php:244 -msgid "Failed to import post types." -msgstr "Nepodařilo se importovat typy obsahu." - -#: includes/admin/tools/class-acf-admin-tool-import.php:233 -msgid "Nothing from Custom Post Type UI plugin selected for import." -msgstr "Nic z pluginu Custom Post Type UI vybráno pro import." - -#: includes/admin/tools/class-acf-admin-tool-import.php:209 -msgid "Imported 1 item" -msgid_plural "Imported %s items" -msgstr[0] "Importována 1 položka" -msgstr[1] "Importovány %s položky" -msgstr[2] "Importováno %s položek" - -#: includes/admin/tools/class-acf-admin-tool-import.php:122 -msgid "" -"Importing a Post Type or Taxonomy with the same key as one that already " -"exists will overwrite the settings for the existing Post Type or Taxonomy " -"with those of the import." -msgstr "" -"Importování typu obsahu nebo taxonomie se stejným klíčem jako u již " -"existujícího typu obsahu nebo taxonomie přepíše nastavení existujícího typu " -"obsahu nebo taxonomie těmi z importu." - -#: includes/admin/tools/class-acf-admin-tool-import.php:111 -#: includes/admin/tools/class-acf-admin-tool-import.php:127 -msgid "Import from Custom Post Type UI" -msgstr "Import z pluginu Custom Post Type UI" - -#: includes/admin/tools/class-acf-admin-tool-export.php:412 -msgid "" -"The following code can be used to register a local version of the selected " -"items. Storing field groups, post types, or taxonomies locally can provide " -"many benefits such as faster load times, version control & dynamic fields/" -"settings. Simply copy and paste the following code to your theme's functions." -"php file or include it within an external file, then deactivate or delete " -"the items from the ACF admin." -msgstr "" -"Následující kód lze použít k registraci místní verze vybraných položek. " -"Lokální uložení skupin polí, typů obsahu nebo taxonomií může přinést mnoho " -"výhod, například rychlejší načítání, správu verzí a dynamická pole/" -"nastavení. Jednoduše zkopírujte a vložte následující kód do souboru šablony " -"functions.php nebo jej zahrňte do externího souboru a poté deaktivujte nebo " -"odstraňte položky z administrace ACF." - -#: includes/admin/tools/class-acf-admin-tool-export.php:411 -msgid "Export - Generate PHP" -msgstr "Exportovat - Vytvořit PHP" - -#: includes/admin/tools/class-acf-admin-tool-export.php:384 -msgid "Export" -msgstr "Export" - -#: includes/admin/tools/class-acf-admin-tool-export.php:276 -msgid "Select Taxonomies" -msgstr "Vybrat taxonomie" - -#: includes/admin/tools/class-acf-admin-tool-export.php:254 -msgid "Select Post Types" -msgstr "Vybrat typy obsahu" - -#: includes/admin/tools/class-acf-admin-tool-export.php:167 -msgid "Exported 1 item." -msgid_plural "Exported %s items." -msgstr[0] "Exportována 1 položka." -msgstr[1] "Exportovány %s položky." -msgstr[2] "Exportováno %s položek." - -#: includes/admin/post-types/admin-taxonomy.php:129 -#: assets/build/js/acf-internal-post-type.js:182 -#: assets/build/js/acf-internal-post-type.js:256 -msgid "Category" -msgstr "Rubrika" - -#: includes/admin/post-types/admin-taxonomy.php:127 -#: assets/build/js/acf-internal-post-type.js:179 -#: assets/build/js/acf-internal-post-type.js:253 -msgid "Tag" -msgstr "Štítek" - -#. translators: %s taxonomy name -#: includes/admin/post-types/admin-taxonomy.php:82 -msgid "%s taxonomy created" -msgstr "Taxonomie %s vytvořena" - -#. translators: %s taxonomy name -#: includes/admin/post-types/admin-taxonomy.php:76 -msgid "%s taxonomy updated" -msgstr "Taxonomie %s aktualizována" - -#: includes/admin/post-types/admin-taxonomy.php:56 -msgid "Taxonomy draft updated." -msgstr "Koncept taxonomie byl aktualizován." - -#: includes/admin/post-types/admin-taxonomy.php:55 -msgid "Taxonomy scheduled for." -msgstr "Taxonomie byla naplánována." - -#: includes/admin/post-types/admin-taxonomy.php:54 -msgid "Taxonomy submitted." -msgstr "Taxonomie odeslána." - -#: includes/admin/post-types/admin-taxonomy.php:53 -msgid "Taxonomy saved." -msgstr "Taxonomie uložena." - -#: includes/admin/post-types/admin-taxonomy.php:49 -msgid "Taxonomy deleted." -msgstr "Taxonomie smazána." - -#: includes/admin/post-types/admin-taxonomy.php:48 -msgid "Taxonomy updated." -msgstr "Taxonomie aktualizována." - -#: includes/admin/post-types/admin-taxonomies.php:377 -#: includes/admin/post-types/admin-taxonomy.php:157 -msgid "" -"This taxonomy could not be registered because its key is in use by another " -"taxonomy registered by another plugin or theme." -msgstr "" -"Tuto taxonomii nebylo možné zaregistrovat, protože její klíč je používán " -"jinou taxonomií registrovanou jiným pluginem nebo šablonou." - -#. translators: %s number of taxonomies synchronized -#: includes/admin/post-types/admin-taxonomies.php:359 -msgid "Taxonomy synchronized." -msgid_plural "%s taxonomies synchronized." -msgstr[0] "Taxonomie synchronizována." -msgstr[1] "%s taxonomie synchronizovány." -msgstr[2] "%s taxonomií synchronizováno." - -#. translators: %s number of taxonomies duplicated -#: includes/admin/post-types/admin-taxonomies.php:352 -msgid "Taxonomy duplicated." -msgid_plural "%s taxonomies duplicated." -msgstr[0] "Taxonomie duplikována." -msgstr[1] "%s taxonomie duplikovány." -msgstr[2] "%s taxonomií duplikováno." - -#. translators: %s number of taxonomies deactivated -#: includes/admin/post-types/admin-taxonomies.php:345 -msgid "Taxonomy deactivated." -msgid_plural "%s taxonomies deactivated." -msgstr[0] "Taxonomie deaktivována." -msgstr[1] "%s taxonomie deaktivovány." -msgstr[2] "%s taxonomií deaktivováno." - -#. translators: %s number of taxonomies activated -#: includes/admin/post-types/admin-taxonomies.php:338 -msgid "Taxonomy activated." -msgid_plural "%s taxonomies activated." -msgstr[0] "Taxonomie aktivována." -msgstr[1] "%s taxonomie aktivovány." -msgstr[2] "%s taxonomií aktivováno." - -#: includes/admin/post-types/admin-taxonomies.php:139 -msgid "Terms" -msgstr "Pojmy" - -#. translators: %s number of post types synchronized -#: includes/admin/post-types/admin-post-types.php:352 -msgid "Post type synchronized." -msgid_plural "%s post types synchronized." -msgstr[0] "Typ obsahu synchronizován." -msgstr[1] "%s typy obsahu synchronizovány." -msgstr[2] "%s typů obsahu synchronizováno." - -#. translators: %s number of post types duplicated -#: includes/admin/post-types/admin-post-types.php:345 -msgid "Post type duplicated." -msgid_plural "%s post types duplicated." -msgstr[0] "Typ obsahu duplikován." -msgstr[1] "%s typy obsahu duplikovány." -msgstr[2] "%s typů obsahu duplikováno." - -#. translators: %s number of post types deactivated -#: includes/admin/post-types/admin-post-types.php:338 -msgid "Post type deactivated." -msgid_plural "%s post types deactivated." -msgstr[0] "Typ obsahu deaktivován." -msgstr[1] "%s typy obsahu deaktivovány." -msgstr[2] "%s typů obsahu deaktivováno." - -#. translators: %s number of post types activated -#: includes/admin/post-types/admin-post-types.php:331 -msgid "Post type activated." -msgid_plural "%s post types activated." -msgstr[0] "Typ obsahu aktivován." -msgstr[1] "%s typy obsahu aktivovány." -msgstr[2] "%s typů obsahu aktivováno." - -#: includes/admin/post-types/admin-post-types.php:112 -#: includes/admin/post-types/admin-taxonomies.php:137 -#: includes/admin/tools/class-acf-admin-tool-import.php:82 -#: includes/admin/views/acf-taxonomy/basic-settings.php:82 -#: includes/post-types/class-acf-post-type.php:91 -msgid "Post Types" -msgstr "Typy obsahu" - -#: includes/admin/post-types/admin-post-type.php:162 -#: includes/admin/post-types/admin-taxonomy.php:164 -msgid "Advanced Settings" -msgstr "Pokročilá nastavení" - -#: includes/admin/post-types/admin-post-type.php:161 -#: includes/admin/post-types/admin-taxonomy.php:163 -msgid "Basic Settings" -msgstr "Základní nastavení" - -#: includes/admin/post-types/admin-post-type.php:155 -#: includes/admin/post-types/admin-post-types.php:370 -msgid "" -"This post type could not be registered because its key is in use by another " -"post type registered by another plugin or theme." -msgstr "" -"Tento typ obsahu nemohl být zaregistrován, protože jeho klíč je používán " -"jiným typem obsahu registrovaným jiným pluginem nebo šablonou." - -#: includes/admin/post-types/admin-post-type.php:128 -#: assets/build/js/acf-internal-post-type.js:176 -#: assets/build/js/acf-internal-post-type.js:250 -msgid "Pages" -msgstr "Stránky" - -#: includes/admin/admin-internal-post-type.php:355 -msgid "Link Existing Field Groups" -msgstr "Propojení stávajících skupin polí" - -#. translators: %s post type name -#: includes/admin/post-types/admin-post-type.php:80 -msgid "%s post type created" -msgstr "Typ obsahu %s vytvořen" - -#. translators: %s taxonomy name -#: includes/admin/post-types/admin-taxonomy.php:78 -msgid "Add fields to %s" -msgstr "Přidání polí do %s" - -#. translators: %s post type name -#: includes/admin/post-types/admin-post-type.php:76 -msgid "%s post type updated" -msgstr "Typ obsahu %s aktualizován" - -#: includes/admin/post-types/admin-post-type.php:56 -msgid "Post type draft updated." -msgstr "Koncept typu obsahu byl aktualizován." - -#: includes/admin/post-types/admin-post-type.php:55 -msgid "Post type scheduled for." -msgstr "Typ obsahu byl naplánován." - -#: includes/admin/post-types/admin-post-type.php:54 -msgid "Post type submitted." -msgstr "Typ obsahu byl odeslán." - -#: includes/admin/post-types/admin-post-type.php:53 -msgid "Post type saved." -msgstr "Typ obsahu byl uložen." - -#: includes/admin/post-types/admin-post-type.php:50 -msgid "Post type updated." -msgstr "Typ obsahu byl aktualizován." - -#: includes/admin/post-types/admin-post-type.php:49 -msgid "Post type deleted." -msgstr "Typ obsahu smazán." - -#: includes/admin/post-types/admin-field-group.php:120 -#: assets/build/js/acf-field-group.js:1146 -#: assets/build/js/acf-field-group.js:1366 -msgid "Type to search..." -msgstr "Pište pro hledání..." - -#: includes/admin/post-types/admin-field-group.php:105 -#: assets/build/js/acf-field-group.js:1172 -#: assets/build/js/acf-field-group.js:2319 -#: assets/build/js/acf-field-group.js:1414 -#: assets/build/js/acf-field-group.js:2727 -msgid "PRO Only" -msgstr "Pouze PRO" - -#: includes/admin/post-types/admin-field-group.php:97 -#: assets/build/js/acf-internal-post-type.js:308 -#: assets/build/js/acf-internal-post-type.js:417 -msgid "Field groups linked successfully." -msgstr "Skupiny polí byly úspěšně propojeny." - -#. translators: %s - URL to ACF tools page. -#: includes/admin/admin.php:195 -msgid "" -"Import Post Types and Taxonomies registered with Custom Post Type UI and " -"manage them with ACF. Get Started." -msgstr "" -"Importujte typy obsahu a taxonomie registrované pomocí pluginu Custom Post " -"Type UI a spravujte je s ACF. Pusťme se do toho." - -#: includes/admin/admin.php:48 includes/admin/admin.php:267 -msgid "ACF" -msgstr "ACF" - -#: includes/admin/admin-internal-post-type.php:322 -msgid "taxonomy" -msgstr "taxonomie" - -#: includes/admin/admin-internal-post-type.php:322 -msgid "post type" -msgstr "typ obsahu" - -#: includes/admin/admin-internal-post-type.php:346 -msgid "Done" -msgstr "Hotovo" - -#: includes/admin/admin-internal-post-type.php:332 -msgid "Field Group(s)" -msgstr "Skupina(y) polí" - -#: includes/admin/admin-internal-post-type.php:331 -msgid "Select one or many field groups..." -msgstr "Vyberte jednu nebo více skupin polí..." - -#: includes/admin/admin-internal-post-type.php:330 -msgid "Please select the field groups to link." -msgstr "Vyberte skupiny polí, které chcete propojit." - -#: includes/admin/admin-internal-post-type.php:288 -msgid "Field group linked successfully." -msgid_plural "Field groups linked successfully." -msgstr[0] "Skupina polí úspěšně propojena." -msgstr[1] "Skupiny polí úspěšně propojeny." -msgstr[2] "Skupiny polí úspěšně propojeny." - -#: includes/admin/admin-internal-post-type-list.php:261 -#: includes/admin/post-types/admin-post-types.php:371 -#: includes/admin/post-types/admin-taxonomies.php:378 -msgctxt "post status" -msgid "Registration Failed" -msgstr "Registrace se nezdařila" - -#: includes/admin/admin-internal-post-type-list.php:260 -msgid "" -"This item could not be registered because its key is in use by another item " -"registered by another plugin or theme." -msgstr "" -"Tuto položku nebylo možné zaregistrovat, protože její klíč je používán jinou " -"položkou registrovanou jiným pluginem nebo šablonou." - -#: includes/acf-internal-post-type-functions.php:482 -#: includes/acf-internal-post-type-functions.php:511 -msgid "REST API" -msgstr "REST API" - -#: includes/acf-internal-post-type-functions.php:481 -#: includes/acf-internal-post-type-functions.php:510 -#: includes/acf-internal-post-type-functions.php:537 -msgid "Permissions" -msgstr "Oprávnění" - -#: includes/acf-internal-post-type-functions.php:480 -#: includes/acf-internal-post-type-functions.php:509 -msgid "URLs" -msgstr "URL adresy" - -#: includes/acf-internal-post-type-functions.php:479 -#: includes/acf-internal-post-type-functions.php:508 -#: includes/acf-internal-post-type-functions.php:535 -msgid "Visibility" -msgstr "Viditelnost" - -#: includes/acf-internal-post-type-functions.php:478 -#: includes/acf-internal-post-type-functions.php:507 -#: includes/acf-internal-post-type-functions.php:536 -msgid "Labels" -msgstr "Štítky" - -#: includes/admin/post-types/admin-field-group.php:269 -msgid "Field Settings Tabs" -msgstr "Karty nastavení pole" - -#. Author URI of the plugin -msgid "" -"https://wpengine.com/?utm_source=wordpress." -"org&utm_medium=referral&utm_campaign=plugin_directory&utm_content=advanced_custom_fields" -msgstr "" -"https://wpengine.com/?utm_source=wordpress." -"org&utm_medium=referral&utm_campaign=plugin_directory&utm_content=advanced_custom_fields" - -#: includes/api/api-template.php:867 -msgid "[ACF shortcode value disabled for preview]" -msgstr "[Hodnota zkráceného kódu ACF vypnuta pro náhled]" - -#: includes/admin/admin-internal-post-type.php:298 -#: includes/admin/post-types/admin-field-group.php:571 -msgid "Close Modal" -msgstr "Zavřít modální okno" - -#: includes/admin/post-types/admin-field-group.php:96 -#: assets/build/js/acf-field-group.js:1670 -#: assets/build/js/acf-field-group.js:1993 -msgid "Field moved to other group" -msgstr "Pole přesunuto do jiné skupiny" - -#: includes/admin/post-types/admin-field-group.php:95 -#: assets/build/js/acf.js:1437 assets/build/js/acf.js:1517 -msgid "Close modal" -msgstr "Zavřít modální okno" - -#: includes/fields/class-acf-field-tab.php:125 -msgid "Start a new group of tabs at this tab." -msgstr "Začněte novou skupinu karet na této kartě." - -#: includes/fields/class-acf-field-tab.php:124 -msgid "New Tab Group" -msgstr "Nová skupina karet" - -#: includes/fields/class-acf-field-select.php:451 -#: includes/fields/class-acf-field-true_false.php:200 -msgid "Use a stylized checkbox using select2" -msgstr "Použití stylizovaného zaškrtávacího políčka pomocí select2" - -#: includes/fields/class-acf-field-radio.php:260 -msgid "Save Other Choice" -msgstr "Uložit jinou volbu" - -#: includes/fields/class-acf-field-radio.php:249 -msgid "Allow Other Choice" -msgstr "Povolit jinou volbu" - -#: includes/fields/class-acf-field-checkbox.php:450 -msgid "Add Toggle All" -msgstr "Přidat Přepnout vše" - -#: includes/fields/class-acf-field-checkbox.php:409 -msgid "Save Custom Values" -msgstr "Uložit uživatelské hodnoty" - -#: includes/fields/class-acf-field-checkbox.php:398 -msgid "Allow Custom Values" -msgstr "Povolit uživatelské hodnoty" - -#: includes/fields/class-acf-field-checkbox.php:148 -msgid "Checkbox custom values cannot be empty. Uncheck any empty values." -msgstr "" -"Uživatelské hodnoty zaškrtávacího políčka nemohou být prázdné. Zrušte " -"zaškrtnutí všech prázdných hodnot." - -#: includes/admin/views/global/navigation.php:248 -msgid "Updates" -msgstr "Aktualizace" - -#: includes/admin/views/global/navigation.php:176 -msgid "Advanced Custom Fields logo" -msgstr "Logo Advanced Custom Fields" - -#: includes/admin/views/global/form-top.php:89 -msgid "Save Changes" -msgstr "Uložit změny" - -#: includes/admin/views/global/form-top.php:76 -msgid "Field Group Title" -msgstr "Název skupiny polí" - -#: includes/admin/views/acf-post-type/advanced-settings.php:704 -#: includes/admin/views/global/form-top.php:3 -msgid "Add title" -msgstr "Zadejte název" - -#. translators: %s url to getting started guide -#: includes/admin/views/acf-field-group/list-empty.php:20 -#: includes/admin/views/acf-post-type/list-empty.php:12 -#: includes/admin/views/acf-taxonomy/list-empty.php:12 -#: includes/admin/views/options-page-preview.php:13 -msgid "" -"New to ACF? Take a look at our getting " -"started guide." -msgstr "" -"Jste v ACF nováčkem? Podívejte se na našeho průvodce pro začátečníky." - -#: includes/admin/views/acf-field-group/list-empty.php:15 -msgid "Add Field Group" -msgstr "Přidat skupinu polí" - -#. translators: %s url to creating a field group page -#: includes/admin/views/acf-field-group/list-empty.php:10 -msgid "" -"ACF uses field groups to group custom " -"fields together, and then attach those fields to edit screens." -msgstr "" -"ACF používá skupiny polí pro seskupení " -"uživatelských polí a následné připojení těchto polí k obrazovkám úprav." - -#: includes/admin/views/acf-field-group/list-empty.php:5 -msgid "Add Your First Field Group" -msgstr "Přidejte první skupinu polí" - -#: includes/admin/admin-options-pages-preview.php:28 -#: includes/admin/views/acf-field-group/pro-features.php:54 -#: includes/admin/views/global/navigation.php:86 -#: includes/admin/views/global/navigation.php:250 -msgid "Options Pages" -msgstr "Stránky konfigurace" - -#: includes/admin/views/acf-field-group/pro-features.php:50 -msgid "ACF Blocks" -msgstr "Bloky ACF" - -#: includes/admin/views/acf-field-group/pro-features.php:58 -msgid "Gallery Field" -msgstr "Pole Galerie" - -#: includes/admin/views/acf-field-group/pro-features.php:38 -msgid "Flexible Content Field" -msgstr "Pole Flexibilní obsah" - -#: includes/admin/views/acf-field-group/pro-features.php:42 -msgid "Repeater Field" -msgstr "Pole Opakovač" - -#: includes/admin/views/global/navigation.php:212 -msgid "Unlock Extra Features with ACF PRO" -msgstr "Odemkněte další funkce s ACF PRO" - -#: includes/admin/views/acf-field-group/options.php:267 -msgid "Delete Field Group" -msgstr "Smazat skupinu polí" - -#. translators: 1: Post creation date 2: Post creation time -#: includes/admin/views/acf-field-group/options.php:261 -msgid "Created on %1$s at %2$s" -msgstr "Vytvořeno %1$s v %2$s" - -#: includes/acf-field-group-functions.php:497 -msgid "Group Settings" -msgstr "Nastavení skupiny" - -#: includes/acf-field-group-functions.php:495 -msgid "Location Rules" -msgstr "Pravidla umístění" - -#. translators: %s url to field types list -#: includes/admin/views/acf-field-group/fields.php:72 -msgid "" -"Choose from over 30 field types. Learn " -"more." -msgstr "" -"Zvolte si z více než 30 typů polí. Zjistit " -"více." - -#: includes/admin/views/acf-field-group/fields.php:65 -msgid "" -"Get started creating new custom fields for your posts, pages, custom post " -"types and other WordPress content." -msgstr "" -"Začněte vytvářet nová vlastní pole pro příspěvky, stránky, vlastní typy " -"obsahu a další obsah WordPressu." - -#: includes/admin/views/acf-field-group/fields.php:64 -msgid "Add Your First Field" -msgstr "Přidejte první pole" - -#. translators: A symbol (or text, if not available in your locale) meaning -#. "Order Number", in terms of positional placement. -#: includes/admin/views/acf-field-group/fields.php:43 -msgid "#" -msgstr "#" - -#: includes/admin/views/acf-field-group/fields.php:33 -#: includes/admin/views/acf-field-group/fields.php:67 -#: includes/admin/views/acf-field-group/fields.php:103 -#: includes/admin/views/global/form-top.php:85 -msgid "Add Field" -msgstr "Přidat pole" - -#: includes/acf-field-group-functions.php:496 includes/fields.php:410 -msgid "Presentation" -msgstr "Prezentace" - -#: includes/fields.php:409 -msgid "Validation" -msgstr "Validace" - -#: includes/acf-internal-post-type-functions.php:477 -#: includes/acf-internal-post-type-functions.php:506 includes/fields.php:408 -msgid "General" -msgstr "Obecné" - -#: includes/admin/tools/class-acf-admin-tool-import.php:70 -msgid "Import JSON" -msgstr "Importovat JSON" - -#: includes/admin/tools/class-acf-admin-tool-export.php:392 -msgid "Export As JSON" -msgstr "Exportovat jako JSON" - -#. translators: %s number of field groups deactivated -#: includes/admin/post-types/admin-field-groups.php:367 -msgid "Field group deactivated." -msgid_plural "%s field groups deactivated." -msgstr[0] "Skupina polí deaktivována." -msgstr[1] "%s skupiny polí deaktivovány." -msgstr[2] "%s skupin polí deaktivováno." - -#. translators: %s number of field groups activated -#: includes/admin/post-types/admin-field-groups.php:360 -msgid "Field group activated." -msgid_plural "%s field groups activated." -msgstr[0] "Skupina polí aktivována." -msgstr[1] "%s skupiny polí aktivovány." -msgstr[2] "%s skupin polí aktivováno." - -#: includes/admin/admin-internal-post-type-list.php:452 -#: includes/admin/admin-internal-post-type-list.php:478 -msgid "Deactivate" -msgstr "Deaktivovat" - -#: includes/admin/admin-internal-post-type-list.php:452 -msgid "Deactivate this item" -msgstr "Deaktivovat tuto položku" - -#: includes/admin/admin-internal-post-type-list.php:448 -#: includes/admin/admin-internal-post-type-list.php:477 -msgid "Activate" -msgstr "Aktivovat" - -#: includes/admin/admin-internal-post-type-list.php:448 -msgid "Activate this item" -msgstr "Aktivovat tuto položku" - -#: includes/admin/post-types/admin-field-group.php:92 -#: assets/build/js/acf-field-group.js:2812 -#: assets/build/js/acf-field-group.js:3313 -msgid "Move field group to trash?" -msgstr "Přesunout skupinu polí do koše?" - -#: acf.php:497 includes/admin/admin-internal-post-type-list.php:248 -#: includes/admin/post-types/admin-field-group.php:297 -#: includes/admin/post-types/admin-post-type.php:295 -#: includes/admin/post-types/admin-taxonomy.php:297 -msgctxt "post status" -msgid "Inactive" -msgstr "Neaktivní" - -#. Author of the plugin -msgid "WP Engine" -msgstr "WP Engine" - -#: acf.php:555 -msgid "" -"Advanced Custom Fields and Advanced Custom Fields PRO should not be active " -"at the same time. We've automatically deactivated Advanced Custom Fields PRO." -msgstr "" -"Pluginy Advanced Custom Fields a Advanced Custom Fields PRO by neměly být " -"aktivní současně. Plugin Advanced Custom Fields PRO jsme automaticky " -"deaktivovali." - -#: acf.php:553 -msgid "" -"Advanced Custom Fields and Advanced Custom Fields PRO should not be active " -"at the same time. We've automatically deactivated Advanced Custom Fields." -msgstr "" -"Pluginy Advanced Custom Fields a Advanced Custom Fields PRO by neměly být " -"aktivní současně. Plugin Advanced Custom Fields jsme automaticky " -"deaktivovali." - -#: includes/acf-value-functions.php:374 -msgid "" -"%1$s - We've detected one or more calls to retrieve ACF " -"field values before ACF has been initialized. This is not supported and can " -"result in malformed or missing data. Learn how to fix this." -msgstr "" -"%1$s – Zjistili jsme jedno nebo více volání k načtení " -"hodnot polí ACF před inicializací ACF. Toto není podporováno a může mít za " -"následek chybná nebo chybějící data. Přečtěte si, jak to opravit." - -#: includes/fields/class-acf-field-user.php:551 -msgid "%1$s must have a user with the %2$s role." -msgid_plural "%1$s must have a user with one of the following roles: %2$s" -msgstr[0] "%1$s musí mít uživatele s rolí %2$s." -msgstr[1] "%1$s musí mít uživatele s jednou z následujících rolí: %2$s" -msgstr[2] "%1$s musí mít uživatele s jednou z následujících rolí: %2$s" - -#: includes/fields/class-acf-field-user.php:542 -msgid "%1$s must have a valid user ID." -msgstr "%1$s musí mít platné ID uživatele." - -#: includes/fields/class-acf-field-user.php:380 -msgid "Invalid request." -msgstr "Neplatný požadavek." - -#: includes/fields/class-acf-field-select.php:684 -msgid "%1$s is not one of %2$s" -msgstr "%1$s není jedním z %2$s" - -#: includes/fields/class-acf-field-post_object.php:700 -msgid "%1$s must have term %2$s." -msgid_plural "%1$s must have one of the following terms: %2$s" -msgstr[0] "%1$s musí mít pojem %2$s." -msgstr[1] "%1$s musí mít jeden z následujících pojmů: %2$s" -msgstr[2] "%1$s musí mít jeden z následujících pojmů: %2$s" - -#: includes/fields/class-acf-field-post_object.php:684 -msgid "%1$s must be of post type %2$s." -msgid_plural "%1$s must be of one of the following post types: %2$s" -msgstr[0] "%1$s musí být typu %2$s." -msgstr[1] "%1$s musí být jeden z následujících typů obsahu: %2$s" -msgstr[2] "%1$s musí být jeden z následujících typů obsahu: %2$s" - -#: includes/fields/class-acf-field-post_object.php:675 -msgid "%1$s must have a valid post ID." -msgstr "%1$s musí mít platné ID příspěvku." - -#: includes/fields/class-acf-field-file.php:475 -msgid "%s requires a valid attachment ID." -msgstr "%s vyžaduje platné ID přílohy." - -#: includes/admin/views/acf-field-group/options.php:233 -msgid "Show in REST API" -msgstr "Zobrazit v REST API" - -#: includes/fields/class-acf-field-color_picker.php:168 -msgid "Enable Transparency" -msgstr "Povolit průhlednost" - -#: includes/fields/class-acf-field-color_picker.php:187 -msgid "RGBA Array" -msgstr "Pole RGBA" - -#: includes/fields/class-acf-field-color_picker.php:98 -msgid "RGBA String" -msgstr "Řetězec RGBA" - -#: includes/fields/class-acf-field-color_picker.php:97 -#: includes/fields/class-acf-field-color_picker.php:186 -msgid "Hex String" -msgstr "Řetězec Hex" - -#: includes/admin/views/browse-fields-modal.php:65 -msgid "Upgrade to PRO" -msgstr "Zakoupit PRO verzi" - -#: includes/admin/post-types/admin-field-group.php:297 -#: includes/admin/post-types/admin-post-type.php:295 -#: includes/admin/post-types/admin-taxonomy.php:297 -msgctxt "post status" -msgid "Active" -msgstr "Aktivní" - -#: includes/fields/class-acf-field-email.php:181 -msgid "'%s' is not a valid email address" -msgstr "'%s' není platná e-mailová adresa" - -#: includes/fields/class-acf-field-color_picker.php:76 -msgid "Color value" -msgstr "Hodnota barvy" - -#: includes/fields/class-acf-field-color_picker.php:74 -msgid "Select default color" -msgstr "Vyberte výchozí barvu" - -#: includes/fields/class-acf-field-color_picker.php:72 -msgid "Clear color" -msgstr "Zrušit barvu" - -#: includes/acf-wp-functions.php:90 -msgid "Blocks" -msgstr "Bloky" - -#: includes/acf-wp-functions.php:86 -msgid "Options" -msgstr "Konfigurace" - -#: includes/acf-wp-functions.php:82 -msgid "Users" -msgstr "Uživatelé" - -#: includes/acf-wp-functions.php:78 -msgid "Menu items" -msgstr "Položky menu" - -#: includes/acf-wp-functions.php:70 -msgid "Widgets" -msgstr "Widgety" - -#: includes/acf-wp-functions.php:62 -msgid "Attachments" -msgstr "Přílohy" - -#: includes/acf-wp-functions.php:57 -#: includes/admin/post-types/admin-post-types.php:137 -#: includes/admin/post-types/admin-taxonomies.php:112 -#: includes/admin/tools/class-acf-admin-tool-import.php:93 -#: includes/admin/views/acf-post-type/basic-settings.php:86 -#: includes/post-types/class-acf-taxonomy.php:90 -#: includes/post-types/class-acf-taxonomy.php:91 -msgid "Taxonomies" -msgstr "Taxonomie" - -#: includes/acf-wp-functions.php:44 -#: includes/admin/post-types/admin-post-type.php:126 -#: includes/admin/post-types/admin-post-types.php:139 -#: includes/admin/views/acf-post-type/advanced-settings.php:106 -#: assets/build/js/acf-internal-post-type.js:173 -#: assets/build/js/acf-internal-post-type.js:247 -msgid "Posts" -msgstr "Příspěvky" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:76 -msgid "Last updated: %s" -msgstr "Poslední aktualizace: %s" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:70 -msgid "Sorry, this post is unavailable for diff comparison." -msgstr "Omlouváme se, ale tento příspěvek není k dispozici pro porovnání." - -#: includes/ajax/class-acf-ajax-local-json-diff.php:42 -msgid "Invalid field group parameter(s)." -msgstr "Jeden nebo více neplatných parametrů skupiny polí." - -#: includes/admin/admin-internal-post-type-list.php:413 -msgid "Awaiting save" -msgstr "Čeká na uložení" - -#: includes/admin/admin-internal-post-type-list.php:410 -msgid "Saved" -msgstr "Uloženo" - -#: includes/admin/admin-internal-post-type-list.php:406 -#: includes/admin/tools/class-acf-admin-tool-import.php:49 -msgid "Import" -msgstr "Import" - -#: includes/admin/admin-internal-post-type-list.php:402 -msgid "Review changes" -msgstr "Zkontrolovat změny" - -#: includes/admin/admin-internal-post-type-list.php:378 -msgid "Located in: %s" -msgstr "Umístěn v: %s" - -#: includes/admin/admin-internal-post-type-list.php:375 -msgid "Located in plugin: %s" -msgstr "Nachází se v pluginu: %s" - -#: includes/admin/admin-internal-post-type-list.php:372 -msgid "Located in theme: %s" -msgstr "Nachází se v šabloně: %s" - -#: includes/admin/post-types/admin-field-groups.php:261 -msgid "Various" -msgstr "Různé" - -#: includes/admin/admin-internal-post-type-list.php:216 -#: includes/admin/admin-internal-post-type-list.php:485 -msgid "Sync changes" -msgstr "Synchronizovat změny" - -#: includes/admin/admin-internal-post-type-list.php:215 -msgid "Loading diff" -msgstr "Načítání diff" - -#: includes/admin/admin-internal-post-type-list.php:214 -msgid "Review local JSON changes" -msgstr "Přehled místních změn JSON" - -#: includes/admin/admin.php:170 -msgid "Visit website" -msgstr "Navštívit stránky" - -#: includes/admin/admin.php:169 -msgid "View details" -msgstr "Zobrazit podrobnosti" - -#: includes/admin/admin.php:168 -msgid "Version %s" -msgstr "Verze %s" - -#: includes/admin/admin.php:167 -msgid "Information" -msgstr "Informace" - -#: includes/admin/admin.php:158 -msgid "" -"Help Desk. The support professionals on " -"our Help Desk will assist with your more in depth, technical challenges." -msgstr "" -"Nápověda. Odborníci na podporu na našem " -"help desku pomohou s hlubšími technickými problémy." - -#: includes/admin/admin.php:154 -msgid "" -"Discussions. We have an active and " -"friendly community on our Community Forums who may be able to help you " -"figure out the 'how-tos' of the ACF world." -msgstr "" -"Diskuze. Na našich komunitních fórech " -"máme aktivní a přátelskou komunitu, která může pomoci zjistit „jak na to“ ve " -"světě ACF." - -#: includes/admin/admin.php:150 -msgid "" -"Documentation. Our extensive " -"documentation contains references and guides for most situations you may " -"encounter." -msgstr "" -"Dokumentace. Naše rozsáhlá dokumentace " -"obsahuje odkazy a návody pro většinu situací, se kterými se můžete setkat." - -#: includes/admin/admin.php:147 -msgid "" -"We are fanatical about support, and want you to get the best out of your " -"website with ACF. If you run into any difficulties, there are several places " -"you can find help:" -msgstr "" -"Jsme fanatici podpory a chceme, abyste ze svých webových stránek s ACF " -"dostali to nejlepší. Pokud se setkáte s jakýmikoli potížemi, můžete najít " -"pomoc na několika místech:" - -#: includes/admin/admin.php:144 includes/admin/admin.php:146 -msgid "Help & Support" -msgstr "Nápověda a podpora" - -#: includes/admin/admin.php:135 -msgid "" -"Please use the Help & Support tab to get in touch should you find yourself " -"requiring assistance." -msgstr "Pokud budete potřebovat pomoc, přejděte na záložku Nápověda a podpora." - -#: includes/admin/admin.php:132 -msgid "" -"Before creating your first Field Group, we recommend first reading our Getting started guide to familiarize " -"yourself with the plugin's philosophy and best practises." -msgstr "" -"Před vytvořením první skupiny polí doporučujeme přečíst našeho průvodce Začínáme, abyste se seznámili s filozofií " -"pluginu a osvědčenými postupy." - -#: includes/admin/admin.php:130 -msgid "" -"The Advanced Custom Fields plugin provides a visual form builder to " -"customize WordPress edit screens with extra fields, and an intuitive API to " -"display custom field values in any theme template file." -msgstr "" -"Plugin Advanced Custom Fields poskytuje vizuální nástroj pro tvorbu " -"formulářů, který umožňuje přizpůsobit editační obrazovky WordPressu pomocí " -"dalších polí. Plugin nabízí intuitivní rozhraní API pro zobrazení hodnot " -"vlastních polí v libovolném souboru šablony." - -#: includes/admin/admin.php:127 includes/admin/admin.php:129 -msgid "Overview" -msgstr "Přehled" - -#: includes/locations.php:36 -msgid "Location type \"%s\" is already registered." -msgstr "Typ umístění „%s“ je již zaregistrován." - -#: includes/locations.php:25 -msgid "Class \"%s\" does not exist." -msgstr "Třída \"%s\" neexistuje." - -#: includes/ajax/class-acf-ajax.php:157 -msgid "Invalid nonce." -msgstr "Neplatná hodnota." - -#: includes/fields/class-acf-field-user.php:375 -msgid "Error loading field." -msgstr "Při načítání pole došlo k chybě." - -#: assets/build/js/acf-input.js:2750 assets/build/js/acf-input.js:2819 -#: assets/build/js/acf-input.js:2926 assets/build/js/acf-input.js:3000 -msgid "Location not found: %s" -msgstr "Umístění nenalezeno: %s" - -#: includes/forms/form-user.php:353 -msgid "Error: %s" -msgstr "Chyba: %s" - -#: includes/locations/class-acf-location-widget.php:22 -msgid "Widget" -msgstr "Widget" - -#: includes/locations/class-acf-location-user-role.php:24 -msgid "User Role" -msgstr "Uživatelská úroveň" - -#: includes/locations/class-acf-location-comment.php:22 -msgid "Comment" -msgstr "Komentář" - -#: includes/locations/class-acf-location-post-format.php:22 -msgid "Post Format" -msgstr "Formát příspěvku" - -#: includes/locations/class-acf-location-nav-menu-item.php:22 -msgid "Menu Item" -msgstr "Položka nabídky" - -#: includes/locations/class-acf-location-post-status.php:22 -msgid "Post Status" -msgstr "Stav příspěvku" - -#: includes/acf-wp-functions.php:74 -#: includes/locations/class-acf-location-nav-menu.php:89 -msgid "Menus" -msgstr "Nabídky" - -#: includes/locations/class-acf-location-nav-menu.php:80 -msgid "Menu Locations" -msgstr "Umístění nabídky" - -#: includes/locations/class-acf-location-nav-menu.php:22 -msgid "Menu" -msgstr "Nabídka" - -#: includes/locations/class-acf-location-post-taxonomy.php:22 -msgid "Post Taxonomy" -msgstr "Taxonomie příspěvku" - -#: includes/locations/class-acf-location-page-type.php:114 -msgid "Child Page (has parent)" -msgstr "Podřazená stránka (má rodiče)" - -#: includes/locations/class-acf-location-page-type.php:113 -msgid "Parent Page (has children)" -msgstr "Rodičovská stránka (má potomky)" - -#: includes/locations/class-acf-location-page-type.php:112 -msgid "Top Level Page (no parent)" -msgstr "Stránka nejvyšší úrovně (žádný nadřazený)" - -#: includes/locations/class-acf-location-page-type.php:111 -msgid "Posts Page" -msgstr "Stránka příspěvku" - -#: includes/locations/class-acf-location-page-type.php:110 -msgid "Front Page" -msgstr "Hlavní stránka" - -#: includes/locations/class-acf-location-page-type.php:22 -msgid "Page Type" -msgstr "Typ stránky" - -#: includes/locations/class-acf-location-current-user.php:73 -msgid "Viewing back end" -msgstr "Prohlížíte backend" - -#: includes/locations/class-acf-location-current-user.php:72 -msgid "Viewing front end" -msgstr "Prohlížíte frontend" - -#: includes/locations/class-acf-location-current-user.php:71 -msgid "Logged in" -msgstr "Přihlášen" - -#: includes/locations/class-acf-location-current-user.php:22 -msgid "Current User" -msgstr "Aktuální uživatel" - -#: includes/locations/class-acf-location-page-template.php:22 -msgid "Page Template" -msgstr "Šablona stránky" - -#: includes/locations/class-acf-location-user-form.php:74 -msgid "Register" -msgstr "Registrovat" - -#: includes/locations/class-acf-location-user-form.php:73 -msgid "Add / Edit" -msgstr "Přidat / Editovat" - -#: includes/locations/class-acf-location-user-form.php:22 -msgid "User Form" -msgstr "Uživatelský formulář" - -#: includes/locations/class-acf-location-page-parent.php:22 -msgid "Page Parent" -msgstr "Rodičovská stránka" - -#: includes/locations/class-acf-location-current-user-role.php:77 -msgid "Super Admin" -msgstr "Super Admin" - -#: includes/locations/class-acf-location-current-user-role.php:22 -msgid "Current User Role" -msgstr "Aktuální uživatelská role" - -#: includes/locations/class-acf-location-page-template.php:73 -#: includes/locations/class-acf-location-post-template.php:85 -msgid "Default Template" -msgstr "Výchozí šablona" - -#: includes/locations/class-acf-location-post-template.php:22 -msgid "Post Template" -msgstr "Šablona příspěvku" - -#: includes/locations/class-acf-location-post-category.php:22 -msgid "Post Category" -msgstr "Rubrika příspěvku" - -#: includes/locations/class-acf-location-attachment.php:84 -msgid "All %s formats" -msgstr "Všechny formáty %s" - -#: includes/locations/class-acf-location-attachment.php:22 -msgid "Attachment" -msgstr "Příloha" - -#: includes/validation.php:366 -msgid "%s value is required" -msgstr "%s hodnota je vyžadována" - -#: includes/admin/views/acf-field-group/conditional-logic.php:59 -msgid "Show this field if" -msgstr "Zobrazit toto pole, pokud" - -#: includes/admin/views/acf-field-group/conditional-logic.php:26 -#: includes/admin/views/acf-field-group/field.php:109 includes/fields.php:411 -msgid "Conditional Logic" -msgstr "Podmíněná logika" - -#: includes/admin/views/acf-field-group/conditional-logic.php:156 -#: includes/admin/views/acf-field-group/location-rule.php:92 -msgid "and" -msgstr "a" - -#: includes/admin/post-types/admin-field-groups.php:123 -#: includes/admin/post-types/admin-post-types.php:143 -#: includes/admin/post-types/admin-taxonomies.php:143 -msgid "Local JSON" -msgstr "Lokální JSON" - -#: includes/admin/views/acf-field-group/pro-features.php:46 -msgid "Clone Field" -msgstr "Pole Klonování" - -#: includes/admin/views/upgrade/notice.php:30 -msgid "" -"Please also check all premium add-ons (%s) are updated to the latest version." -msgstr "" -"Zkontrolujte také, zda jsou všechna prémiová rozšíření (%s) aktualizována na " -"nejnovější verzi." - -#: includes/admin/views/upgrade/notice.php:28 -msgid "" -"This version contains improvements to your database and requires an upgrade." -msgstr "Tato verze obsahuje vylepšení databáze a vyžaduje upgrade." - -#: includes/admin/views/upgrade/notice.php:28 -msgid "Thank you for updating to %1$s v%2$s!" -msgstr "Děkujeme za aktualizaci na %1$s v%2$s!" - -#: includes/admin/views/upgrade/notice.php:27 -msgid "Database Upgrade Required" -msgstr "Vyžadován upgrade databáze" - -#: includes/admin/post-types/admin-field-group.php:141 -#: includes/admin/views/upgrade/notice.php:18 -msgid "Options Page" -msgstr "Stránka konfigurace" - -#: includes/admin/views/upgrade/notice.php:15 includes/fields.php:462 -msgid "Gallery" -msgstr "Galerie" - -#: includes/admin/views/upgrade/notice.php:12 includes/fields.php:452 -msgid "Flexible Content" -msgstr "Flexibilní obsah" - -#: includes/admin/views/upgrade/notice.php:9 includes/fields.php:472 -msgid "Repeater" -msgstr "Opakovač" - -#: includes/admin/views/tools/tools.php:24 -msgid "Back to all tools" -msgstr "Zpět na všechny nástroje" - -#: includes/admin/views/acf-field-group/options.php:195 -msgid "" -"If multiple field groups appear on an edit screen, the first field group's " -"options will be used (the one with the lowest order number)" -msgstr "" -"Pokud se na obrazovce úprav objeví více skupin polí, použije se nastavení " -"dle první skupiny polí (té s nejnižším pořadovým číslem)" - -#: includes/admin/views/acf-field-group/options.php:195 -msgid "Select items to hide them from the edit screen." -msgstr "Zvolte položky, které budou na obrazovce úprav skryté." - -#: includes/admin/views/acf-field-group/options.php:194 -msgid "Hide on screen" -msgstr "Skrýt na obrazovce" - -#: includes/admin/views/acf-field-group/options.php:186 -msgid "Send Trackbacks" -msgstr "Odesílat zpětné linkování odkazů" - -#: includes/admin/post-types/admin-taxonomy.php:128 -#: includes/admin/views/acf-field-group/options.php:185 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:159 -#: assets/build/js/acf-internal-post-type.js:180 -#: assets/build/js/acf-internal-post-type.js:254 -msgid "Tags" -msgstr "Štítky" - -#: includes/admin/post-types/admin-taxonomy.php:130 -#: includes/admin/views/acf-field-group/options.php:184 -#: assets/build/js/acf-internal-post-type.js:183 -#: assets/build/js/acf-internal-post-type.js:257 -msgid "Categories" -msgstr "Kategorie" - -#: includes/admin/views/acf-field-group/options.php:182 -#: includes/admin/views/acf-post-type/advanced-settings.php:28 -msgid "Page Attributes" -msgstr "Atributy stránky" - -#: includes/admin/views/acf-field-group/options.php:181 -msgid "Format" -msgstr "Formát" - -#: includes/admin/views/acf-field-group/options.php:180 -#: includes/admin/views/acf-post-type/advanced-settings.php:22 -msgid "Author" -msgstr "Autor" - -#: includes/admin/views/acf-field-group/options.php:179 -msgid "Slug" -msgstr "Adresa" - -#: includes/admin/views/acf-field-group/options.php:178 -#: includes/admin/views/acf-post-type/advanced-settings.php:27 -msgid "Revisions" -msgstr "Revize" - -#: includes/acf-wp-functions.php:66 -#: includes/admin/views/acf-field-group/options.php:177 -#: includes/admin/views/acf-post-type/advanced-settings.php:23 -msgid "Comments" -msgstr "Komentáře" - -#: includes/admin/views/acf-field-group/options.php:176 -msgid "Discussion" -msgstr "Diskuze" - -#: includes/admin/views/acf-field-group/options.php:174 -#: includes/admin/views/acf-post-type/advanced-settings.php:26 -msgid "Excerpt" -msgstr "Stručný výpis" - -#: includes/admin/views/acf-field-group/options.php:173 -msgid "Content Editor" -msgstr "Editor obsahu" - -#: includes/admin/views/acf-field-group/options.php:172 -msgid "Permalink" -msgstr "Trvalý odkaz" - -#: includes/admin/views/acf-field-group/options.php:250 -msgid "Shown in field group list" -msgstr "Zobrazit v seznamu skupin polí" - -#: includes/admin/views/acf-field-group/options.php:157 -msgid "Field groups with a lower order will appear first" -msgstr "Skupiny polí s nižším pořadím se zobrazí první" - -#: includes/admin/views/acf-field-group/options.php:156 -msgid "Order No." -msgstr "Pořadové č." - -#: includes/admin/views/acf-field-group/options.php:147 -msgid "Below fields" -msgstr "Pod poli" - -#: includes/admin/views/acf-field-group/options.php:146 -msgid "Below labels" -msgstr "Pod štítky" - -#: includes/admin/views/acf-field-group/options.php:139 -msgid "Instruction Placement" -msgstr "" - -#: includes/admin/views/acf-field-group/options.php:122 -msgid "Label Placement" -msgstr "" - -#: includes/admin/views/acf-field-group/options.php:110 -msgid "Side" -msgstr "Na straně" - -#: includes/admin/views/acf-field-group/options.php:109 -msgid "Normal (after content)" -msgstr "Normální (po obsahu)" - -#: includes/admin/views/acf-field-group/options.php:108 -msgid "High (after title)" -msgstr "Vysoko (po nadpisu)" - -#: includes/admin/views/acf-field-group/options.php:101 -msgid "Position" -msgstr "Pozice" - -#: includes/admin/views/acf-field-group/options.php:92 -msgid "Seamless (no metabox)" -msgstr "Bezokrajové (bez metaboxu)" - -#: includes/admin/views/acf-field-group/options.php:91 -msgid "Standard (WP metabox)" -msgstr "Standardní (WP metabox)" - -#: includes/admin/views/acf-field-group/options.php:84 -msgid "Style" -msgstr "Styl" - -#: includes/admin/views/acf-field-group/fields.php:55 -msgid "Type" -msgstr "Typ" - -#: includes/admin/post-types/admin-field-groups.php:117 -#: includes/admin/post-types/admin-post-types.php:136 -#: includes/admin/post-types/admin-taxonomies.php:136 -#: includes/admin/views/acf-field-group/fields.php:54 -msgid "Key" -msgstr "Klíč" - -#. translators: Hidden accessibility text for the positional order number of -#. the field. -#: includes/admin/views/acf-field-group/fields.php:48 -msgid "Order" -msgstr "Pořadí" - -#: includes/admin/views/acf-field-group/field.php:322 -msgid "Close Field" -msgstr "Zavřít pole" - -#: includes/admin/views/acf-field-group/field.php:253 -msgid "id" -msgstr "ID" - -#: includes/admin/views/acf-field-group/field.php:237 -msgid "class" -msgstr "třída" - -#: includes/admin/views/acf-field-group/field.php:279 -msgid "width" -msgstr "šířka" - -#: includes/admin/views/acf-field-group/field.php:273 -msgid "Wrapper Attributes" -msgstr "Atributy obalového pole" - -#: includes/admin/views/acf-field-group/field.php:196 -msgid "Required" -msgstr "Požadováno?" - -#: includes/admin/views/acf-field-group/field.php:221 -msgid "Instructions for authors. Shown when submitting data" -msgstr "Instrukce pro autory. Jsou zobrazeny při zadávání dat" - -#: includes/admin/views/acf-field-group/field.php:220 -msgid "Instructions" -msgstr "Instrukce" - -#: includes/admin/views/acf-field-group/field.php:129 -msgid "Field Type" -msgstr "Typ pole" - -#: includes/admin/views/acf-field-group/field.php:170 -msgid "Single word, no spaces. Underscores and dashes allowed" -msgstr "Jedno slovo, bez mezer. Podtržítka a pomlčky jsou povoleny" - -#: includes/admin/views/acf-field-group/field.php:169 -msgid "Field Name" -msgstr "Jméno pole" - -#: includes/admin/views/acf-field-group/field.php:157 -msgid "This is the name which will appear on the EDIT page" -msgstr "Toto je jméno, které se zobrazí na stránce úprav" - -#: includes/admin/views/acf-field-group/field.php:156 -#: includes/admin/views/browse-fields-modal.php:59 -msgid "Field Label" -msgstr "Štítek pole" - -#: includes/admin/views/acf-field-group/field.php:81 -msgid "Delete" -msgstr "Smazat" - -#: includes/admin/views/acf-field-group/field.php:81 -msgid "Delete field" -msgstr "Smazat pole" - -#: includes/admin/views/acf-field-group/field.php:79 -msgid "Move" -msgstr "Přesunout" - -#: includes/admin/views/acf-field-group/field.php:79 -msgid "Move field to another group" -msgstr "Přesunout pole do jiné skupiny" - -#: includes/admin/views/acf-field-group/field.php:77 -msgid "Duplicate field" -msgstr "Duplikovat pole" - -#: includes/admin/views/acf-field-group/field.php:73 -#: includes/admin/views/acf-field-group/field.php:76 -msgid "Edit field" -msgstr "Upravit pole" - -#: includes/admin/views/acf-field-group/field.php:69 -msgid "Drag to reorder" -msgstr "Přetažením změníte pořadí" - -#: includes/admin/post-types/admin-field-group.php:103 -#: includes/admin/views/acf-field-group/location-group.php:3 -#: assets/build/js/acf-field-group.js:2347 -#: assets/build/js/acf-field-group.js:2763 -msgid "Show this field group if" -msgstr "Zobrazit tuto skupinu polí, pokud" - -#: includes/admin/views/upgrade/upgrade.php:94 -#: includes/ajax/class-acf-ajax-upgrade.php:34 -msgid "No updates available." -msgstr "K dispozici nejsou žádné aktualizace." - -#: includes/admin/views/upgrade/upgrade.php:33 -msgid "Database upgrade complete. See what's new" -msgstr "" -"Upgrade databáze byl dokončen. Podívejte se, co je nového" - -#: includes/admin/views/upgrade/upgrade.php:30 -msgid "Reading upgrade tasks..." -msgstr "Čtení úkolů aktualizace..." - -#: includes/admin/views/upgrade/network.php:165 -#: includes/admin/views/upgrade/upgrade.php:65 -msgid "Upgrade failed." -msgstr "Upgrade se nezdařil." - -#: includes/admin/views/upgrade/network.php:162 -msgid "Upgrade complete." -msgstr "Aktualizace dokončena." - -#: includes/admin/views/upgrade/network.php:148 -#: includes/admin/views/upgrade/upgrade.php:31 -msgid "Upgrading data to version %s" -msgstr "Aktualizace dat na verzi %s" - -#: includes/admin/views/upgrade/network.php:121 -#: includes/admin/views/upgrade/notice.php:44 -msgid "" -"It is strongly recommended that you backup your database before proceeding. " -"Are you sure you wish to run the updater now?" -msgstr "" -"Důrazně doporučujeme zálohovat databázi před pokračováním. Opravdu chcete " -"aktualizaci spustit?" - -#: includes/admin/views/upgrade/network.php:117 -msgid "Please select at least one site to upgrade." -msgstr "Vyberte alespoň jednu stránku, kterou chcete upgradovat." - -#: includes/admin/views/upgrade/network.php:97 -msgid "" -"Database Upgrade complete. Return to network dashboard" -msgstr "" -"Aktualizace databáze je dokončena. Návrat na nástěnku sítě" - -#: includes/admin/views/upgrade/network.php:80 -msgid "Site is up to date" -msgstr "Stránky jsou aktuální" - -#: includes/admin/views/upgrade/network.php:78 -msgid "Site requires database upgrade from %1$s to %2$s" -msgstr "Web vyžaduje aktualizaci databáze z %1$s na %2$s" - -#: includes/admin/views/upgrade/network.php:36 -#: includes/admin/views/upgrade/network.php:47 -msgid "Site" -msgstr "Stránky" - -#: includes/admin/views/upgrade/network.php:26 -#: includes/admin/views/upgrade/network.php:27 -#: includes/admin/views/upgrade/network.php:96 -msgid "Upgrade Sites" -msgstr "Upgradovat stránky" - -#: includes/admin/views/upgrade/network.php:26 -msgid "" -"The following sites require a DB upgrade. Check the ones you want to update " -"and then click %s." -msgstr "" -"Následující stránky vyžadují upgrade DB. Zaškrtněte ty, které chcete " -"aktualizovat, a poté klikněte na %s." - -#: includes/admin/views/acf-field-group/conditional-logic.php:171 -#: includes/admin/views/acf-field-group/locations.php:38 -msgid "Add rule group" -msgstr "Přidat skupinu pravidel" - -#: includes/admin/views/acf-field-group/locations.php:10 -msgid "" -"Create a set of rules to determine which edit screens will use these " -"advanced custom fields" -msgstr "" -"Vytváří sadu pravidel pro určení, na kterých stránkách úprav budou použita " -"tato vlastní pole" - -#: includes/admin/views/acf-field-group/locations.php:9 -msgid "Rules" -msgstr "Pravidla" - -#: includes/admin/tools/class-acf-admin-tool-export.php:510 -msgid "Copied" -msgstr "Zkopírováno" - -#: includes/admin/tools/class-acf-admin-tool-export.php:486 -msgid "Copy to clipboard" -msgstr "Zkopírovat od schránky" - -#: includes/admin/tools/class-acf-admin-tool-export.php:385 -msgid "" -"Select the items you would like to export and then select your export " -"method. Export As JSON to export to a .json file which you can then import " -"to another ACF installation. Generate PHP to export to PHP code which you " -"can place in your theme." -msgstr "" -"Vyberte skupiny polí, které chcete exportovat, a vyberte způsob exportu. " -"Použijte tlačítko pro stažení pro exportování do souboru .json, který pak " -"můžete importovat do jiné instalace ACF. Pomocí tlačítka generovat můžete " -"exportovat do kódu PHP, který můžete umístit do vašeho tématu." - -#: includes/admin/tools/class-acf-admin-tool-export.php:233 -msgid "Select Field Groups" -msgstr "Vybrat skupiny polí" - -#: includes/admin/tools/class-acf-admin-tool-export.php:96 -#: includes/admin/tools/class-acf-admin-tool-export.php:131 -msgid "No field groups selected" -msgstr "Nebyly vybrány žádné skupiny polí" - -#: includes/admin/tools/class-acf-admin-tool-export.php:39 -#: includes/admin/tools/class-acf-admin-tool-export.php:393 -#: includes/admin/tools/class-acf-admin-tool-export.php:421 -msgid "Generate PHP" -msgstr "Vytvořit PHP" - -#: includes/admin/tools/class-acf-admin-tool-export.php:35 -msgid "Export Field Groups" -msgstr "Exportovat skupiny polí" - -#: includes/admin/tools/class-acf-admin-tool-import.php:177 -msgid "Import file empty" -msgstr "Importovaný soubor je prázdný" - -#: includes/admin/tools/class-acf-admin-tool-import.php:168 -msgid "Incorrect file type" -msgstr "Nesprávný typ souboru" - -#: includes/admin/tools/class-acf-admin-tool-import.php:163 -msgid "Error uploading file. Please try again" -msgstr "Chyba při nahrávání souboru. Prosím zkuste to znovu" - -#: includes/admin/tools/class-acf-admin-tool-import.php:50 -msgid "" -"Select the Advanced Custom Fields JSON file you would like to import. When " -"you click the import button below, ACF will import the items in that file." -msgstr "" -"Vyberte Advanced Custom Fields JSON soubor, který chcete importovat. Po " -"klepnutí na tlačítko importu níže bude ACF importovat skupiny polí." - -#: includes/admin/tools/class-acf-admin-tool-import.php:27 -msgid "Import Field Groups" -msgstr "Importovat skupiny polí" - -#: includes/admin/admin-internal-post-type-list.php:401 -msgid "Sync" -msgstr "Synchronizace" - -#: includes/admin/admin-internal-post-type-list.php:858 -msgid "Select %s" -msgstr "Zvolit %s" - -#: includes/admin/admin-internal-post-type-list.php:442 -#: includes/admin/admin-internal-post-type-list.php:474 -#: includes/admin/views/acf-field-group/field.php:77 -msgid "Duplicate" -msgstr "Duplikovat" - -#: includes/admin/admin-internal-post-type-list.php:442 -msgid "Duplicate this item" -msgstr "Duplikovat tuto položku" - -#: includes/admin/views/acf-post-type/advanced-settings.php:41 -msgid "Supports" -msgstr "Podporuje" - -#: includes/admin/admin.php:261 includes/admin/views/browse-fields-modal.php:92 -msgid "Documentation" -msgstr "Dokumentace" - -#: includes/admin/post-types/admin-field-groups.php:116 -#: includes/admin/post-types/admin-post-types.php:135 -#: includes/admin/post-types/admin-taxonomies.php:135 -#: includes/admin/views/acf-field-group/options.php:249 -#: includes/admin/views/acf-post-type/advanced-settings.php:62 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:114 -#: includes/admin/views/upgrade/network.php:38 -#: includes/admin/views/upgrade/network.php:49 -msgid "Description" -msgstr "Popis" - -#: includes/admin/admin-internal-post-type-list.php:398 -#: includes/admin/admin-internal-post-type-list.php:747 -msgid "Sync available" -msgstr "Synchronizace je k dispozici" - -#. translators: %s number of field groups synchronized -#: includes/admin/post-types/admin-field-groups.php:381 -msgid "Field group synchronized." -msgid_plural "%s field groups synchronized." -msgstr[0] "Skupina polí synchronizována." -msgstr[1] "%s skupiny polí synchronizovány." -msgstr[2] "%s skupin polí synchronizováno." - -#. translators: %s number of field groups duplicated -#: includes/admin/post-types/admin-field-groups.php:374 -msgid "Field group duplicated." -msgid_plural "%s field groups duplicated." -msgstr[0] "Skupina polí duplikována." -msgstr[1] "%s skupiny polí duplikovány." -msgstr[2] "%s skupin polí duplikováno." - -#: includes/admin/admin-internal-post-type-list.php:137 -msgid "Active (%s)" -msgid_plural "Active (%s)" -msgstr[0] "Aktivní (%s)" -msgstr[1] "Aktivní (%s)" -msgstr[2] "Aktivních (%s)" - -#: includes/admin/admin-upgrade.php:254 -msgid "Review sites & upgrade" -msgstr "Zkontrolujte stránky a aktualizujte" - -#: includes/admin/admin-upgrade.php:59 includes/admin/admin-upgrade.php:93 -#: includes/admin/admin-upgrade.php:94 includes/admin/admin-upgrade.php:230 -#: includes/admin/views/upgrade/network.php:24 -#: includes/admin/views/upgrade/upgrade.php:26 -msgid "Upgrade Database" -msgstr "Aktualizovat databázi" - -#: includes/admin/views/acf-field-group/options.php:175 -#: includes/admin/views/acf-post-type/advanced-settings.php:30 -msgid "Custom Fields" -msgstr "Vlastní pole" - -#: includes/admin/post-types/admin-field-group.php:616 -msgid "Move Field" -msgstr "Přesunout pole" - -#: includes/admin/post-types/admin-field-group.php:605 -#: includes/admin/post-types/admin-field-group.php:609 -msgid "Please select the destination for this field" -msgstr "Prosím zvolte umístění pro toto pole" - -#. translators: Confirmation message once a field has been moved to a different -#. field group. -#: includes/admin/post-types/admin-field-group.php:567 -msgid "The %1$s field can now be found in the %2$s field group" -msgstr "Pole %1$s lze nyní nalézt ve skupině polí %2$s." - -#: includes/admin/post-types/admin-field-group.php:564 -msgid "Move Complete." -msgstr "Přesun hotov." - -#: includes/admin/views/acf-field-group/field.php:39 -#: includes/admin/views/acf-field-group/options.php:217 -#: includes/admin/views/acf-post-type/advanced-settings.php:78 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:130 -msgid "Active" -msgstr "Aktivní" - -#: includes/admin/post-types/admin-field-group.php:266 -msgid "Field Keys" -msgstr "Klíče polí" - -#: includes/admin/post-types/admin-field-group.php:164 -#: includes/admin/tools/class-acf-admin-tool-export.php:342 -msgid "Settings" -msgstr "Nastavení" - -#: includes/admin/post-types/admin-field-groups.php:118 -msgid "Location" -msgstr "Umístění" - -#: includes/admin/post-types/admin-field-group.php:104 -#: assets/build/js/acf-input.js:983 assets/build/js/acf-input.js:1075 -msgid "Null" -msgstr "Nula" - -#: includes/admin/post-types/admin-field-group.php:101 -#: includes/class-acf-internal-post-type.php:730 -#: includes/post-types/class-acf-field-group.php:345 -#: assets/build/js/acf-field-group.js:1510 -#: assets/build/js/acf-field-group.js:1821 -msgid "copy" -msgstr "kopírovat" - -#: includes/admin/post-types/admin-field-group.php:100 -#: assets/build/js/acf-field-group.js:623 -#: assets/build/js/acf-field-group.js:778 -msgid "(this field)" -msgstr "(toto pole)" - -#: includes/admin/post-types/admin-field-group.php:98 -#: assets/build/js/acf-input.js:918 assets/build/js/acf-input.js:943 -#: assets/build/js/acf-input.js:1002 assets/build/js/acf-input.js:1030 -msgid "Checked" -msgstr "Zaškrtnuto" - -#: includes/admin/post-types/admin-field-group.php:94 -#: assets/build/js/acf-field-group.js:1615 -#: assets/build/js/acf-field-group.js:1933 -msgid "Move Custom Field" -msgstr "Přesunout vlastní pole" - -#: includes/admin/post-types/admin-field-group.php:93 -#: assets/build/js/acf-field-group.js:649 -#: assets/build/js/acf-field-group.js:804 -msgid "No toggle fields available" -msgstr "Žádné zapínatelné pole není k dispozici" - -#: includes/admin/post-types/admin-field-group.php:91 -msgid "Field group title is required" -msgstr "Vyžadován nadpis pro skupinu polí" - -#: includes/admin/post-types/admin-field-group.php:90 -#: assets/build/js/acf-field-group.js:1604 -#: assets/build/js/acf-field-group.js:1919 -msgid "This field cannot be moved until its changes have been saved" -msgstr "Toto pole nelze přesunout, dokud nebudou uloženy jeho změny" - -#: includes/admin/post-types/admin-field-group.php:89 -#: assets/build/js/acf-field-group.js:1414 -#: assets/build/js/acf-field-group.js:1716 -msgid "The string \"field_\" may not be used at the start of a field name" -msgstr "Řetězec \"pole_\" nesmí být použit na začátku názvu pole" - -#: includes/admin/post-types/admin-field-group.php:71 -msgid "Field group draft updated." -msgstr "Koncept skupiny polí aktualizován." - -#: includes/admin/post-types/admin-field-group.php:70 -msgid "Field group scheduled for." -msgstr "Skupina polí byla naplánována." - -#: includes/admin/post-types/admin-field-group.php:69 -msgid "Field group submitted." -msgstr "Skupina polí odeslána." - -#: includes/admin/post-types/admin-field-group.php:68 -msgid "Field group saved." -msgstr "Skupina polí uložena." - -#: includes/admin/post-types/admin-field-group.php:67 -msgid "Field group published." -msgstr "Skupina polí publikována." - -#: includes/admin/post-types/admin-field-group.php:64 -msgid "Field group deleted." -msgstr "Skupina polí smazána." - -#: includes/admin/post-types/admin-field-group.php:62 -#: includes/admin/post-types/admin-field-group.php:63 -#: includes/admin/post-types/admin-field-group.php:65 -msgid "Field group updated." -msgstr "Skupina polí aktualizována." - -#: includes/admin/admin-tools.php:118 -#: includes/admin/views/global/navigation.php:246 -#: includes/admin/views/tools/tools.php:21 -msgid "Tools" -msgstr "Nástroje" - -#: includes/locations/abstract-acf-location.php:106 -msgid "is not equal to" -msgstr "není rovno" - -#: includes/locations/abstract-acf-location.php:105 -msgid "is equal to" -msgstr "je rovno" - -#: includes/locations.php:102 -msgid "Forms" -msgstr "Formuláře" - -#: includes/admin/post-types/admin-post-type.php:127 includes/locations.php:100 -#: includes/locations/class-acf-location-page.php:22 -#: assets/build/js/acf-internal-post-type.js:175 -#: assets/build/js/acf-internal-post-type.js:249 -msgid "Page" -msgstr "Stránka" - -#: includes/admin/post-types/admin-post-type.php:125 includes/locations.php:99 -#: includes/locations/class-acf-location-post.php:22 -#: assets/build/js/acf-internal-post-type.js:172 -#: assets/build/js/acf-internal-post-type.js:246 -msgid "Post" -msgstr "Příspěvek" - -#: includes/fields.php:354 -msgid "Relational" -msgstr "Relační" - -#: includes/fields.php:353 -msgid "Choice" -msgstr "Volba" - -#: includes/fields.php:351 -msgid "Basic" -msgstr "Základní" - -#: includes/fields.php:320 -msgid "Unknown" -msgstr "Neznámý" - -#: includes/fields.php:320 -msgid "Field type does not exist" -msgstr "Typ pole neexistuje" - -#: includes/forms/form-front.php:236 -msgid "Spam Detected" -msgstr "Zjištěn spam" - -#: includes/forms/form-front.php:107 -msgid "Post updated" -msgstr "Příspěvek aktualizován" - -#: includes/forms/form-front.php:106 -msgid "Update" -msgstr "Aktualizace" - -#: includes/forms/form-front.php:57 -msgid "Validate Email" -msgstr "Ověřit e-mail" - -#: includes/fields.php:352 includes/forms/form-front.php:49 -msgid "Content" -msgstr "Obsah" - -#: includes/admin/views/acf-post-type/advanced-settings.php:21 -#: includes/forms/form-front.php:40 -msgid "Title" -msgstr "Název" - -#: includes/assets.php:372 includes/forms/form-comment.php:160 -#: assets/build/js/acf-input.js:7382 assets/build/js/acf-input.js:7968 -msgid "Edit field group" -msgstr "Editovat skupinu polí" - -#: includes/admin/post-types/admin-field-group.php:117 -#: assets/build/js/acf-input.js:1125 assets/build/js/acf-input.js:1230 -msgid "Selection is less than" -msgstr "Výběr je menší než" - -#: includes/admin/post-types/admin-field-group.php:116 -#: assets/build/js/acf-input.js:1106 assets/build/js/acf-input.js:1202 -msgid "Selection is greater than" -msgstr "Výběr je větší než" - -#: includes/admin/post-types/admin-field-group.php:115 -#: assets/build/js/acf-input.js:1075 assets/build/js/acf-input.js:1170 -msgid "Value is less than" -msgstr "Hodnota je menší než" - -#: includes/admin/post-types/admin-field-group.php:114 -#: assets/build/js/acf-input.js:1045 assets/build/js/acf-input.js:1139 -msgid "Value is greater than" -msgstr "Hodnota je větší než" - -#: includes/admin/post-types/admin-field-group.php:113 -#: assets/build/js/acf-input.js:888 assets/build/js/acf-input.js:960 -msgid "Value contains" -msgstr "Hodnota obsahuje" - -#: includes/admin/post-types/admin-field-group.php:112 -#: assets/build/js/acf-input.js:862 assets/build/js/acf-input.js:926 -msgid "Value matches pattern" -msgstr "Hodnota odpovídá masce" - -#: includes/admin/post-types/admin-field-group.php:111 -#: assets/build/js/acf-input.js:840 assets/build/js/acf-input.js:1023 -#: assets/build/js/acf-input.js:903 assets/build/js/acf-input.js:1116 -msgid "Value is not equal to" -msgstr "Hodnota není rovna" - -#: includes/admin/post-types/admin-field-group.php:110 -#: assets/build/js/acf-input.js:810 assets/build/js/acf-input.js:964 -#: assets/build/js/acf-input.js:864 assets/build/js/acf-input.js:1053 -msgid "Value is equal to" -msgstr "Hodnota je rovna" - -#: includes/admin/post-types/admin-field-group.php:109 -#: assets/build/js/acf-input.js:788 assets/build/js/acf-input.js:841 -msgid "Has no value" -msgstr "Nemá hodnotu" - -#: includes/admin/post-types/admin-field-group.php:108 -#: assets/build/js/acf-input.js:758 assets/build/js/acf-input.js:783 -msgid "Has any value" -msgstr "Má libovolnou hodnotu" - -#: includes/admin/admin-internal-post-type.php:345 -#: includes/admin/views/browse-fields-modal.php:62 includes/assets.php:353 -#: assets/build/js/acf.js:1564 assets/build/js/acf.js:1658 -msgid "Cancel" -msgstr "Zrušit" - -#: includes/assets.php:349 assets/build/js/acf.js:1738 -#: assets/build/js/acf.js:1855 -msgid "Are you sure?" -msgstr "Jste si jistí?" - -#: includes/assets.php:369 assets/build/js/acf-input.js:9442 -#: assets/build/js/acf-input.js:10294 -msgid "%d fields require attention" -msgstr "Několik polí vyžaduje pozornost (%d)" - -#: includes/assets.php:368 assets/build/js/acf-input.js:9440 -#: assets/build/js/acf-input.js:10290 -msgid "1 field requires attention" -msgstr "1 pole vyžaduje pozornost" - -#: includes/assets.php:367 includes/validation.php:288 -#: includes/validation.php:298 assets/build/js/acf-input.js:9435 -#: assets/build/js/acf-input.js:10285 -msgid "Validation failed" -msgstr "Ověření selhalo" - -#: includes/assets.php:366 assets/build/js/acf-input.js:9603 -#: assets/build/js/acf-input.js:10473 -msgid "Validation successful" -msgstr "Ověření úspěšné" - -#: includes/media.php:54 assets/build/js/acf-input.js:7210 -#: assets/build/js/acf-input.js:7772 -msgid "Restricted" -msgstr "Omezeno" - -#: includes/media.php:53 assets/build/js/acf-input.js:7025 -#: assets/build/js/acf-input.js:7536 -msgid "Collapse Details" -msgstr "Sbalit podrobnosti" - -#: includes/media.php:52 assets/build/js/acf-input.js:7025 -#: assets/build/js/acf-input.js:7533 -msgid "Expand Details" -msgstr "Rozbalit podrobnosti" - -#: includes/admin/views/acf-post-type/advanced-settings.php:465 -#: includes/media.php:51 assets/build/js/acf-input.js:6892 -#: assets/build/js/acf-input.js:7381 -msgid "Uploaded to this post" -msgstr "Nahrán k tomuto příspěvku" - -#: includes/media.php:50 assets/build/js/acf-input.js:6931 -#: assets/build/js/acf-input.js:7420 -msgctxt "verb" -msgid "Update" -msgstr "Aktualizace" - -#: includes/media.php:49 -msgctxt "verb" -msgid "Edit" -msgstr "Upravit" - -#: includes/assets.php:363 assets/build/js/acf-input.js:9212 -#: assets/build/js/acf-input.js:10056 -msgid "The changes you made will be lost if you navigate away from this page" -msgstr "" -"Pokud opustíte tuto stránku, změny, které jste provedli, budou ztraceny" - -#: includes/api/api-helpers.php:3395 -msgid "File type must be %s." -msgstr "Typ souboru musí být %s." - -#: includes/admin/post-types/admin-field-group.php:102 -#: includes/admin/views/acf-field-group/conditional-logic.php:59 -#: includes/admin/views/acf-field-group/conditional-logic.php:169 -#: includes/admin/views/acf-field-group/location-group.php:3 -#: includes/admin/views/acf-field-group/locations.php:36 -#: includes/api/api-helpers.php:3391 assets/build/js/acf-field-group.js:771 -#: assets/build/js/acf-field-group.js:2385 -#: assets/build/js/acf-field-group.js:933 -#: assets/build/js/acf-field-group.js:2807 -msgid "or" -msgstr "nebo" - -#: includes/api/api-helpers.php:3364 -msgid "File size must not exceed %s." -msgstr "Velikost souboru nesmí překročit %s." - -#: includes/api/api-helpers.php:3359 -msgid "File size must be at least %s." -msgstr "Velikost souboru musí být alespoň %s." - -#: includes/api/api-helpers.php:3344 -msgid "Image height must not exceed %dpx." -msgstr "Výška obrázku nesmí přesáhnout %dpx." - -#: includes/api/api-helpers.php:3339 -msgid "Image height must be at least %dpx." -msgstr "Výška obrázku musí být alespoň %dpx." - -#: includes/api/api-helpers.php:3325 -msgid "Image width must not exceed %dpx." -msgstr "Šířka obrázku nesmí přesáhnout %dpx." - -#: includes/api/api-helpers.php:3320 -msgid "Image width must be at least %dpx." -msgstr "Šířka obrázku musí být alespoň %dpx." - -#: includes/api/api-helpers.php:1561 includes/api/api-term.php:147 -msgid "(no title)" -msgstr "(bez názvu)" - -#: includes/api/api-helpers.php:853 -msgid "Full Size" -msgstr "Plná velikost" - -#: includes/api/api-helpers.php:812 -msgid "Large" -msgstr "Velký" - -#: includes/api/api-helpers.php:811 -msgid "Medium" -msgstr "Střední" - -#: includes/api/api-helpers.php:810 -msgid "Thumbnail" -msgstr "Miniatura" - -#: includes/acf-field-functions.php:854 -#: includes/admin/post-types/admin-field-group.php:99 -#: assets/build/js/acf-field-group.js:1077 -#: assets/build/js/acf-field-group.js:1260 -msgid "(no label)" -msgstr "(bez štítku)" - -#: includes/fields/class-acf-field-textarea.php:145 -msgid "Sets the textarea height" -msgstr "Nastavuje výšku textového pole" - -#: includes/fields/class-acf-field-textarea.php:144 -msgid "Rows" -msgstr "Řádky" - -#: includes/fields/class-acf-field-textarea.php:25 -msgid "Text Area" -msgstr "Textové pole" - -#: includes/fields/class-acf-field-checkbox.php:451 -msgid "Prepend an extra checkbox to toggle all choices" -msgstr "Přidat zaškrtávátko navíc pro přepnutí všech možností" - -#: includes/fields/class-acf-field-checkbox.php:413 -msgid "Save 'custom' values to the field's choices" -msgstr "Uložit 'vlastní' hodnoty do voleb polí" - -#: includes/fields/class-acf-field-checkbox.php:402 -msgid "Allow 'custom' values to be added" -msgstr "Povolit přidání 'vlastních' hodnot" - -#: includes/fields/class-acf-field-checkbox.php:38 -msgid "Add new choice" -msgstr "Přidat novou volbu" - -#: includes/fields/class-acf-field-checkbox.php:174 -msgid "Toggle All" -msgstr "Přepnout vše" - -#: includes/fields/class-acf-field-page_link.php:506 -msgid "Allow Archives URLs" -msgstr "Umožnit URL adresy archivu" - -#: includes/fields/class-acf-field-page_link.php:179 -msgid "Archives" -msgstr "Archivy" - -#: includes/fields/class-acf-field-page_link.php:25 -msgid "Page Link" -msgstr "Odkaz stránky" - -#: includes/fields/class-acf-field-taxonomy.php:943 -#: includes/locations/class-acf-location-user-form.php:72 -msgid "Add" -msgstr "Přidat" - -#: includes/admin/views/acf-field-group/fields.php:53 -#: includes/fields/class-acf-field-taxonomy.php:908 -msgid "Name" -msgstr "Jméno" - -#: includes/fields/class-acf-field-taxonomy.php:892 -msgid "%s added" -msgstr "%s přidán" - -#: includes/fields/class-acf-field-taxonomy.php:856 -msgid "%s already exists" -msgstr "%s již existuje" - -#: includes/fields/class-acf-field-taxonomy.php:844 -msgid "User unable to add new %s" -msgstr "Uživatel není schopen přidat nové %s" - -#: includes/fields/class-acf-field-taxonomy.php:742 -msgid "Term ID" -msgstr "ID pojmu" - -#: includes/fields/class-acf-field-taxonomy.php:741 -msgid "Term Object" -msgstr "Objekt pojmu" - -#: includes/fields/class-acf-field-taxonomy.php:726 -msgid "Load value from posts terms" -msgstr "Nahrát pojmy z příspěvků" - -#: includes/fields/class-acf-field-taxonomy.php:725 -msgid "Load Terms" -msgstr "Nahrát pojmy" - -#: includes/fields/class-acf-field-taxonomy.php:715 -msgid "Connect selected terms to the post" -msgstr "Připojte vybrané pojmy k příspěvku" - -#: includes/fields/class-acf-field-taxonomy.php:714 -msgid "Save Terms" -msgstr "Uložit pojmy" - -#: includes/fields/class-acf-field-taxonomy.php:704 -msgid "Allow new terms to be created whilst editing" -msgstr "Povolit vytvoření nových pojmů během editace" - -#: includes/fields/class-acf-field-taxonomy.php:703 -msgid "Create Terms" -msgstr "Vytvořit pojmy" - -#: includes/fields/class-acf-field-taxonomy.php:762 -msgid "Radio Buttons" -msgstr "Radio přepínače" - -#: includes/fields/class-acf-field-taxonomy.php:761 -msgid "Single Value" -msgstr "Jednotlivá hodnota" - -#: includes/fields/class-acf-field-taxonomy.php:759 -msgid "Multi Select" -msgstr "Vícenásobný výběr" - -#: includes/fields/class-acf-field-checkbox.php:25 -#: includes/fields/class-acf-field-taxonomy.php:758 -msgid "Checkbox" -msgstr "Zaškrtávátko" - -#: includes/fields/class-acf-field-taxonomy.php:757 -msgid "Multiple Values" -msgstr "Více hodnot" - -#: includes/fields/class-acf-field-taxonomy.php:752 -msgid "Select the appearance of this field" -msgstr "Vyberte vzhled tohoto pole" - -#: includes/fields/class-acf-field-taxonomy.php:751 -msgid "Appearance" -msgstr "Vzhled" - -#: includes/fields/class-acf-field-taxonomy.php:693 -msgid "Select the taxonomy to be displayed" -msgstr "Zvolit zobrazovanou taxonomii" - -#: includes/fields/class-acf-field-taxonomy.php:654 -msgctxt "No Terms" -msgid "No %s" -msgstr "Nic pro %s" - -#: includes/fields/class-acf-field-number.php:266 -msgid "Value must be equal to or lower than %d" -msgstr "Hodnota musí být rovna nebo menší než %d" - -#: includes/fields/class-acf-field-number.php:259 -msgid "Value must be equal to or higher than %d" -msgstr "Hodnota musí být rovna nebo větší než %d" - -#: includes/fields/class-acf-field-number.php:244 -msgid "Value must be a number" -msgstr "Hodnota musí být číslo" - -#: includes/fields/class-acf-field-number.php:25 -msgid "Number" -msgstr "Číslo" - -#: includes/fields/class-acf-field-radio.php:264 -msgid "Save 'other' values to the field's choices" -msgstr "Uložit 'jiné' hodnoty do voleb polí" - -#: includes/fields/class-acf-field-radio.php:253 -msgid "Add 'other' choice to allow for custom values" -msgstr "Přidat volbu 'jiné', která umožňuje vlastní hodnoty" - -#: includes/admin/views/global/navigation.php:196 -msgid "Other" -msgstr "Jiné" - -#: includes/fields/class-acf-field-radio.php:25 -msgid "Radio Button" -msgstr "Přepínač" - -#: includes/fields/class-acf-field-accordion.php:107 -msgid "" -"Define an endpoint for the previous accordion to stop. This accordion will " -"not be visible." -msgstr "" -"Definujte koncový bod pro předchozí akordeon. Tento akordeon nebude " -"viditelný." - -#: includes/fields/class-acf-field-accordion.php:96 -msgid "Allow this accordion to open without closing others." -msgstr "Povolit otevření tohoto akordeonu bez zavření ostatních." - -#: includes/fields/class-acf-field-accordion.php:95 -msgid "Multi-Expand" -msgstr "" - -#: includes/fields/class-acf-field-accordion.php:85 -msgid "Display this accordion as open on page load." -msgstr "Zobrazit tento akordeon jako otevřený při načtení stránky." - -#: includes/fields/class-acf-field-accordion.php:84 -msgid "Open" -msgstr "Otevřít" - -#: includes/fields/class-acf-field-accordion.php:25 -msgid "Accordion" -msgstr "Akordeon" - -#: includes/fields/class-acf-field-file.php:267 -#: includes/fields/class-acf-field-file.php:279 -msgid "Restrict which files can be uploaded" -msgstr "Omezte, které typy souborů lze nahrát" - -#: includes/fields/class-acf-field-file.php:220 -msgid "File ID" -msgstr "ID souboru" - -#: includes/fields/class-acf-field-file.php:219 -msgid "File URL" -msgstr "Adresa souboru" - -#: includes/fields/class-acf-field-file.php:218 -msgid "File Array" -msgstr "Pole souboru" - -#: includes/fields/class-acf-field-file.php:186 -msgid "Add File" -msgstr "Přidat soubor" - -#: includes/admin/tools/class-acf-admin-tool-import.php:156 -#: includes/fields/class-acf-field-file.php:186 -msgid "No file selected" -msgstr "Dokument nevybrán" - -#: includes/fields/class-acf-field-file.php:150 -msgid "File name" -msgstr "Jméno souboru" - -#: includes/fields/class-acf-field-file.php:63 -#: assets/build/js/acf-input.js:2474 assets/build/js/acf-input.js:2625 -msgid "Update File" -msgstr "Aktualizovat soubor" - -#: includes/fields/class-acf-field-file.php:62 -#: assets/build/js/acf-input.js:2473 assets/build/js/acf-input.js:2624 -msgid "Edit File" -msgstr "Upravit soubor" - -#: includes/admin/tools/class-acf-admin-tool-import.php:58 -#: includes/fields/class-acf-field-file.php:61 -#: assets/build/js/acf-input.js:2447 assets/build/js/acf-input.js:2597 -msgid "Select File" -msgstr "Vybrat soubor" - -#: includes/fields/class-acf-field-file.php:25 -msgid "File" -msgstr "Soubor" - -#: includes/fields/class-acf-field-password.php:25 -msgid "Password" -msgstr "Heslo" - -#: includes/fields/class-acf-field-select.php:392 -msgid "Specify the value returned" -msgstr "Zadat konkrétní návratovou hodnotu" - -#: includes/fields/class-acf-field-select.php:461 -msgid "Use AJAX to lazy load choices?" -msgstr "K načtení volby použít AJAX lazy load?" - -#: includes/fields/class-acf-field-checkbox.php:362 -#: includes/fields/class-acf-field-select.php:381 -msgid "Enter each default value on a new line" -msgstr "Zadejte každou výchozí hodnotu na nový řádek" - -#: includes/fields/class-acf-field-select.php:252 includes/media.php:48 -#: assets/build/js/acf-input.js:6790 assets/build/js/acf-input.js:7266 -msgctxt "verb" -msgid "Select" -msgstr "Vybrat" - -#: includes/fields/class-acf-field-select.php:121 -msgctxt "Select2 JS load_fail" -msgid "Loading failed" -msgstr "Načítání selhalo" - -#: includes/fields/class-acf-field-select.php:120 -msgctxt "Select2 JS searching" -msgid "Searching…" -msgstr "Vyhledávání…" - -#: includes/fields/class-acf-field-select.php:119 -msgctxt "Select2 JS load_more" -msgid "Loading more results…" -msgstr "Načítání dalších výsledků…" - -#: includes/fields/class-acf-field-select.php:118 -msgctxt "Select2 JS selection_too_long_n" -msgid "You can only select %d items" -msgstr "Můžete vybrat pouze %d položek" - -#: includes/fields/class-acf-field-select.php:117 -msgctxt "Select2 JS selection_too_long_1" -msgid "You can only select 1 item" -msgstr "Můžete vybrat pouze 1 položku" - -#: includes/fields/class-acf-field-select.php:116 -msgctxt "Select2 JS input_too_long_n" -msgid "Please delete %d characters" -msgstr "Prosím odstraňte %d znaků" - -#: includes/fields/class-acf-field-select.php:115 -msgctxt "Select2 JS input_too_long_1" -msgid "Please delete 1 character" -msgstr "Prosím odstraňte 1 znak" - -#: includes/fields/class-acf-field-select.php:114 -msgctxt "Select2 JS input_too_short_n" -msgid "Please enter %d or more characters" -msgstr "Prosím zadejte %d nebo více znaků" - -#: includes/fields/class-acf-field-select.php:113 -msgctxt "Select2 JS input_too_short_1" -msgid "Please enter 1 or more characters" -msgstr "Prosím zadejte 1 nebo více znaků" - -#: includes/fields/class-acf-field-select.php:112 -msgctxt "Select2 JS matches_0" -msgid "No matches found" -msgstr "Nebyly nalezeny žádné výsledky" - -#: includes/fields/class-acf-field-select.php:111 -msgctxt "Select2 JS matches_n" -msgid "%d results are available, use up and down arrow keys to navigate." -msgstr "%d výsledků je k dispozici, použijte šipky nahoru a dolů pro navigaci." - -#: includes/fields/class-acf-field-select.php:110 -msgctxt "Select2 JS matches_1" -msgid "One result is available, press enter to select it." -msgstr "" -"Jeden výsledek je k dispozici, stiskněte klávesu enter pro jeho vybrání." - -#: includes/fields/class-acf-field-select.php:25 -#: includes/fields/class-acf-field-taxonomy.php:763 -msgctxt "noun" -msgid "Select" -msgstr "Vybrat" - -#: includes/fields/class-acf-field-user.php:73 -msgid "User ID" -msgstr "ID uživatele" - -#: includes/fields/class-acf-field-user.php:72 -msgid "User Object" -msgstr "Objekt uživatele" - -#: includes/fields/class-acf-field-user.php:71 -msgid "User Array" -msgstr "Pole uživatelů" - -#: includes/fields/class-acf-field-user.php:59 -msgid "All user roles" -msgstr "Všechny uživatelské role" - -#: includes/fields/class-acf-field-user.php:51 -msgid "Filter by Role" -msgstr "" - -#: includes/fields/class-acf-field-user.php:15 includes/locations.php:101 -msgid "User" -msgstr "Uživatel" - -#: includes/fields/class-acf-field-separator.php:25 -msgid "Separator" -msgstr "Oddělovač" - -#: includes/fields/class-acf-field-color_picker.php:75 -msgid "Select Color" -msgstr "Výběr barvy" - -#: includes/admin/post-types/admin-post-type.php:129 -#: includes/admin/post-types/admin-taxonomy.php:131 -#: includes/fields/class-acf-field-color_picker.php:73 -#: assets/build/js/acf-internal-post-type.js:72 -#: assets/build/js/acf-internal-post-type.js:86 -msgid "Default" -msgstr "Výchozí nastavení" - -#: includes/admin/views/acf-post-type/advanced-settings.php:89 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:141 -#: includes/fields/class-acf-field-color_picker.php:71 -msgid "Clear" -msgstr "Vymazat" - -#: includes/fields/class-acf-field-color_picker.php:25 -msgid "Color Picker" -msgstr "Výběr barvy" - -#: includes/fields/class-acf-field-date_time_picker.php:88 -msgctxt "Date Time Picker JS pmTextShort" -msgid "P" -msgstr "do" - -#: includes/fields/class-acf-field-date_time_picker.php:87 -msgctxt "Date Time Picker JS pmText" -msgid "PM" -msgstr "odp" - -#: includes/fields/class-acf-field-date_time_picker.php:84 -msgctxt "Date Time Picker JS amTextShort" -msgid "A" -msgstr "od" - -#: includes/fields/class-acf-field-date_time_picker.php:83 -msgctxt "Date Time Picker JS amText" -msgid "AM" -msgstr "dop" - -#: includes/fields/class-acf-field-date_time_picker.php:81 -msgctxt "Date Time Picker JS selectText" -msgid "Select" -msgstr "Vybrat" - -#: includes/fields/class-acf-field-date_time_picker.php:80 -msgctxt "Date Time Picker JS closeText" -msgid "Done" -msgstr "Hotovo" - -#: includes/fields/class-acf-field-date_time_picker.php:79 -msgctxt "Date Time Picker JS currentText" -msgid "Now" -msgstr "Nyní" - -#: includes/fields/class-acf-field-date_time_picker.php:78 -msgctxt "Date Time Picker JS timezoneText" -msgid "Time Zone" -msgstr "Časové pásmo" - -#: includes/fields/class-acf-field-date_time_picker.php:77 -msgctxt "Date Time Picker JS microsecText" -msgid "Microsecond" -msgstr "Mikrosekunda" - -#: includes/fields/class-acf-field-date_time_picker.php:76 -msgctxt "Date Time Picker JS millisecText" -msgid "Millisecond" -msgstr "Milisekunda" - -#: includes/fields/class-acf-field-date_time_picker.php:75 -msgctxt "Date Time Picker JS secondText" -msgid "Second" -msgstr "Vteřina" - -#: includes/fields/class-acf-field-date_time_picker.php:74 -msgctxt "Date Time Picker JS minuteText" -msgid "Minute" -msgstr "Minuta" - -#: includes/fields/class-acf-field-date_time_picker.php:73 -msgctxt "Date Time Picker JS hourText" -msgid "Hour" -msgstr "Hodina" - -#: includes/fields/class-acf-field-date_time_picker.php:72 -msgctxt "Date Time Picker JS timeText" -msgid "Time" -msgstr "Čas" - -#: includes/fields/class-acf-field-date_time_picker.php:71 -msgctxt "Date Time Picker JS timeOnlyTitle" -msgid "Choose Time" -msgstr "Zvolit čas" - -#: includes/fields/class-acf-field-date_time_picker.php:25 -msgid "Date Time Picker" -msgstr "Výběr data a času" - -#: includes/fields/class-acf-field-accordion.php:106 -msgid "Endpoint" -msgstr "Koncový bod" - -#: includes/admin/views/acf-field-group/options.php:130 -#: includes/fields/class-acf-field-tab.php:115 -msgid "Left aligned" -msgstr "Zarovnat zleva" - -#: includes/admin/views/acf-field-group/options.php:129 -#: includes/fields/class-acf-field-tab.php:114 -msgid "Top aligned" -msgstr "Zarovnat shora" - -#: includes/fields/class-acf-field-tab.php:110 -msgid "Placement" -msgstr "Umístění" - -#: includes/fields/class-acf-field-tab.php:26 -msgid "Tab" -msgstr "Záložka" - -#: includes/fields/class-acf-field-url.php:162 -msgid "Value must be a valid URL" -msgstr "Hodnota musí být validní adresa URL" - -#: includes/fields/class-acf-field-link.php:177 -msgid "Link URL" -msgstr "URL adresa odkazu" - -#: includes/fields/class-acf-field-link.php:176 -msgid "Link Array" -msgstr "Pole odkazů" - -#: includes/fields/class-acf-field-link.php:145 -msgid "Opens in a new window/tab" -msgstr "Otevřít v novém okně/záložce" - -#: includes/fields/class-acf-field-link.php:140 -msgid "Select Link" -msgstr "Vybrat odkaz" - -#: includes/fields/class-acf-field-link.php:25 -msgid "Link" -msgstr "Odkaz" - -#: includes/fields/class-acf-field-email.php:25 -msgid "Email" -msgstr "E-mail" - -#: includes/fields/class-acf-field-number.php:188 -#: includes/fields/class-acf-field-range.php:217 -msgid "Step Size" -msgstr "Velikost kroku" - -#: includes/fields/class-acf-field-number.php:158 -#: includes/fields/class-acf-field-range.php:195 -msgid "Maximum Value" -msgstr "Maximální hodnota" - -#: includes/fields/class-acf-field-number.php:148 -#: includes/fields/class-acf-field-range.php:184 -msgid "Minimum Value" -msgstr "Minimální hodnota" - -#: includes/fields/class-acf-field-range.php:25 -msgid "Range" -msgstr "Rozmezí" - -#: includes/fields/class-acf-field-button-group.php:175 -#: includes/fields/class-acf-field-checkbox.php:379 -#: includes/fields/class-acf-field-radio.php:220 -#: includes/fields/class-acf-field-select.php:399 -msgid "Both (Array)" -msgstr "Obě (pole)" - -#: includes/admin/views/acf-field-group/fields.php:52 -#: includes/fields/class-acf-field-button-group.php:174 -#: includes/fields/class-acf-field-checkbox.php:378 -#: includes/fields/class-acf-field-radio.php:219 -#: includes/fields/class-acf-field-select.php:398 -msgid "Label" -msgstr "Štítek" - -#: includes/fields/class-acf-field-button-group.php:173 -#: includes/fields/class-acf-field-checkbox.php:377 -#: includes/fields/class-acf-field-radio.php:218 -#: includes/fields/class-acf-field-select.php:397 -msgid "Value" -msgstr "Hodnota" - -#: includes/fields/class-acf-field-button-group.php:222 -#: includes/fields/class-acf-field-checkbox.php:441 -#: includes/fields/class-acf-field-radio.php:292 -msgid "Vertical" -msgstr "Vertikální" - -#: includes/fields/class-acf-field-button-group.php:221 -#: includes/fields/class-acf-field-checkbox.php:442 -#: includes/fields/class-acf-field-radio.php:293 -msgid "Horizontal" -msgstr "Horizontální" - -#: includes/fields/class-acf-field-button-group.php:148 -#: includes/fields/class-acf-field-checkbox.php:352 -#: includes/fields/class-acf-field-radio.php:193 -#: includes/fields/class-acf-field-select.php:370 -msgid "red : Red" -msgstr "cervena : Červená" - -#: includes/fields/class-acf-field-button-group.php:148 -#: includes/fields/class-acf-field-checkbox.php:352 -#: includes/fields/class-acf-field-radio.php:193 -#: includes/fields/class-acf-field-select.php:370 -msgid "For more control, you may specify both a value and label like this:" -msgstr "Pro větší kontrolu můžete zadat jak hodnotu, tak štítek:" - -#: includes/fields/class-acf-field-button-group.php:148 -#: includes/fields/class-acf-field-checkbox.php:352 -#: includes/fields/class-acf-field-radio.php:193 -#: includes/fields/class-acf-field-select.php:370 -msgid "Enter each choice on a new line." -msgstr "Zadejte každou volbu na nový řádek." - -#: includes/fields/class-acf-field-button-group.php:147 -#: includes/fields/class-acf-field-checkbox.php:351 -#: includes/fields/class-acf-field-radio.php:192 -#: includes/fields/class-acf-field-select.php:369 -msgid "Choices" -msgstr "Možnosti" - -#: includes/fields/class-acf-field-button-group.php:24 -msgid "Button Group" -msgstr "Skupina tlačítek" - -#: includes/fields/class-acf-field-button-group.php:194 -#: includes/fields/class-acf-field-page_link.php:538 -#: includes/fields/class-acf-field-post_object.php:448 -#: includes/fields/class-acf-field-radio.php:238 -#: includes/fields/class-acf-field-select.php:429 -#: includes/fields/class-acf-field-taxonomy.php:772 -#: includes/fields/class-acf-field-user.php:103 -msgid "Allow Null" -msgstr "" - -#: includes/fields/class-acf-field-page_link.php:263 -#: includes/fields/class-acf-field-post_object.php:257 -#: includes/fields/class-acf-field-taxonomy.php:930 -msgid "Parent" -msgstr "Rodič" - -#: includes/fields/class-acf-field-wysiwyg.php:390 -msgid "TinyMCE will not be initialized until field is clicked" -msgstr "TinyMCE se inicializuje až po kliknutí na pole" - -#: includes/fields/class-acf-field-wysiwyg.php:389 -msgid "Delay Initialization" -msgstr "" - -#: includes/fields/class-acf-field-wysiwyg.php:378 -msgid "Show Media Upload Buttons" -msgstr "" - -#: includes/fields/class-acf-field-wysiwyg.php:362 -msgid "Toolbar" -msgstr "Lišta nástrojů" - -#: includes/fields/class-acf-field-wysiwyg.php:354 -msgid "Text Only" -msgstr "Pouze text" - -#: includes/fields/class-acf-field-wysiwyg.php:353 -msgid "Visual Only" -msgstr "Pouze grafika" - -#: includes/fields/class-acf-field-wysiwyg.php:352 -msgid "Visual & Text" -msgstr "Grafika a text" - -#: includes/fields/class-acf-field-wysiwyg.php:347 -msgid "Tabs" -msgstr "Záložky" - -#: includes/fields/class-acf-field-wysiwyg.php:285 -msgid "Click to initialize TinyMCE" -msgstr "Klikněte pro inicializaci TinyMCE" - -#: includes/fields/class-acf-field-wysiwyg.php:279 -msgctxt "Name for the Text editor tab (formerly HTML)" -msgid "Text" -msgstr "Text" - -#: includes/fields/class-acf-field-wysiwyg.php:278 -msgid "Visual" -msgstr "Grafika" - -#: includes/fields/class-acf-field-text.php:189 -#: includes/fields/class-acf-field-textarea.php:236 -msgid "Value must not exceed %d characters" -msgstr "Hodnota nesmí překročit %d znaků" - -#: includes/fields/class-acf-field-text.php:124 -#: includes/fields/class-acf-field-textarea.php:124 -msgid "Leave blank for no limit" -msgstr "Nechte prázdné pro nastavení bez omezení" - -#: includes/fields/class-acf-field-text.php:123 -#: includes/fields/class-acf-field-textarea.php:123 -msgid "Character Limit" -msgstr "Limit znaků" - -#: includes/fields/class-acf-field-email.php:158 -#: includes/fields/class-acf-field-number.php:209 -#: includes/fields/class-acf-field-password.php:105 -#: includes/fields/class-acf-field-range.php:239 -#: includes/fields/class-acf-field-text.php:164 -msgid "Appears after the input" -msgstr "Zobrazí se za inputem" - -#: includes/fields/class-acf-field-email.php:157 -#: includes/fields/class-acf-field-number.php:208 -#: includes/fields/class-acf-field-password.php:104 -#: includes/fields/class-acf-field-range.php:238 -#: includes/fields/class-acf-field-text.php:163 -msgid "Append" -msgstr "Zobrazit po" - -#: includes/fields/class-acf-field-email.php:148 -#: includes/fields/class-acf-field-number.php:199 -#: includes/fields/class-acf-field-password.php:95 -#: includes/fields/class-acf-field-range.php:229 -#: includes/fields/class-acf-field-text.php:154 -msgid "Appears before the input" -msgstr "Zobrazí se před inputem" - -#: includes/fields/class-acf-field-email.php:147 -#: includes/fields/class-acf-field-number.php:198 -#: includes/fields/class-acf-field-password.php:94 -#: includes/fields/class-acf-field-range.php:228 -#: includes/fields/class-acf-field-text.php:153 -msgid "Prepend" -msgstr "Zobrazit před" - -#: includes/fields/class-acf-field-email.php:138 -#: includes/fields/class-acf-field-number.php:179 -#: includes/fields/class-acf-field-password.php:85 -#: includes/fields/class-acf-field-text.php:144 -#: includes/fields/class-acf-field-textarea.php:156 -#: includes/fields/class-acf-field-url.php:122 -msgid "Appears within the input" -msgstr "Zobrazí se v inputu" - -#: includes/fields/class-acf-field-email.php:137 -#: includes/fields/class-acf-field-number.php:178 -#: includes/fields/class-acf-field-password.php:84 -#: includes/fields/class-acf-field-text.php:143 -#: includes/fields/class-acf-field-textarea.php:155 -#: includes/fields/class-acf-field-url.php:121 -msgid "Placeholder Text" -msgstr "Zástupný text" - -#: includes/fields/class-acf-field-button-group.php:158 -#: includes/fields/class-acf-field-email.php:118 -#: includes/fields/class-acf-field-number.php:129 -#: includes/fields/class-acf-field-radio.php:203 -#: includes/fields/class-acf-field-range.php:165 -#: includes/fields/class-acf-field-text.php:104 -#: includes/fields/class-acf-field-textarea.php:104 -#: includes/fields/class-acf-field-url.php:102 -#: includes/fields/class-acf-field-wysiwyg.php:312 -msgid "Appears when creating a new post" -msgstr "Objeví se při vytváření nového příspěvku" - -#: includes/fields/class-acf-field-text.php:25 -msgid "Text" -msgstr "Text" - -#: includes/fields/class-acf-field-relationship.php:794 -msgid "%1$s requires at least %2$s selection" -msgid_plural "%1$s requires at least %2$s selections" -msgstr[0] "%1$s vyžaduje alespoň %2$s volbu" -msgstr[1] "%1$s vyžaduje alespoň %2$s volby" -msgstr[2] "%1$s vyžaduje alespoň %2$s voleb" - -#: includes/fields/class-acf-field-post_object.php:417 -#: includes/fields/class-acf-field-relationship.php:644 -msgid "Post ID" -msgstr "ID příspěvku" - -#: includes/fields/class-acf-field-post_object.php:17 -#: includes/fields/class-acf-field-post_object.php:416 -#: includes/fields/class-acf-field-relationship.php:643 -msgid "Post Object" -msgstr "Objekt příspěvku" - -#: includes/fields/class-acf-field-relationship.php:676 -msgid "Maximum Posts" -msgstr "" - -#: includes/fields/class-acf-field-relationship.php:666 -msgid "Minimum Posts" -msgstr "" - -#: includes/admin/views/acf-field-group/options.php:183 -#: includes/admin/views/acf-post-type/advanced-settings.php:29 -#: includes/fields/class-acf-field-relationship.php:701 -msgid "Featured Image" -msgstr "Uživatelský obrázek" - -#: includes/fields/class-acf-field-relationship.php:697 -msgid "Selected elements will be displayed in each result" -msgstr "Vybrané prvky se zobrazí v každém výsledku" - -#: includes/fields/class-acf-field-relationship.php:696 -msgid "Elements" -msgstr "Prvky" - -#: includes/fields/class-acf-field-relationship.php:630 -#: includes/fields/class-acf-field-taxonomy.php:20 -#: includes/fields/class-acf-field-taxonomy.php:692 -#: includes/locations/class-acf-location-taxonomy.php:22 -msgid "Taxonomy" -msgstr "Taxonomie" - -#: includes/fields/class-acf-field-relationship.php:629 -#: includes/locations/class-acf-location-post-type.php:22 -#: includes/post-types/class-acf-post-type.php:92 -msgid "Post Type" -msgstr "Typ příspěvku" - -#: includes/fields/class-acf-field-relationship.php:623 -msgid "Filters" -msgstr "Filtry" - -#: includes/fields/class-acf-field-page_link.php:499 -#: includes/fields/class-acf-field-post_object.php:404 -#: includes/fields/class-acf-field-relationship.php:616 -msgid "All taxonomies" -msgstr "Všechny taxonomie" - -#: includes/fields/class-acf-field-page_link.php:491 -#: includes/fields/class-acf-field-post_object.php:396 -#: includes/fields/class-acf-field-relationship.php:608 -msgid "Filter by Taxonomy" -msgstr "Filtrovat dle taxonomie" - -#: includes/fields/class-acf-field-page_link.php:469 -#: includes/fields/class-acf-field-post_object.php:374 -#: includes/fields/class-acf-field-relationship.php:586 -msgid "All post types" -msgstr "Všechny typy příspěvků" - -#: includes/fields/class-acf-field-page_link.php:461 -#: includes/fields/class-acf-field-post_object.php:366 -#: includes/fields/class-acf-field-relationship.php:578 -msgid "Filter by Post Type" -msgstr "Filtrovat dle typu příspěvku" - -#: includes/fields/class-acf-field-relationship.php:476 -msgid "Search..." -msgstr "Hledat..." - -#: includes/fields/class-acf-field-relationship.php:406 -msgid "Select taxonomy" -msgstr "Zvolit taxonomii" - -#: includes/fields/class-acf-field-relationship.php:397 -msgid "Select post type" -msgstr "Zvolit typ příspěvku" - -#: includes/fields/class-acf-field-relationship.php:61 -#: assets/build/js/acf-input.js:3930 assets/build/js/acf-input.js:4214 -msgid "No matches found" -msgstr "Nebyly nalezeny žádné výsledky" - -#: includes/fields/class-acf-field-relationship.php:60 -#: assets/build/js/acf-input.js:3913 assets/build/js/acf-input.js:4193 -msgid "Loading" -msgstr "Načítání" - -#: includes/fields/class-acf-field-relationship.php:59 -#: assets/build/js/acf-input.js:3818 assets/build/js/acf-input.js:4084 -msgid "Maximum values reached ( {max} values )" -msgstr "Dosaženo maximálního množství hodnot ( {max} hodnot )" - -#: includes/fields/class-acf-field-relationship.php:17 -msgid "Relationship" -msgstr "Vztah" - -#: includes/fields/class-acf-field-file.php:291 -#: includes/fields/class-acf-field-image.php:317 -msgid "Comma separated list. Leave blank for all types" -msgstr "Seznam oddělený čárkami. Nechte prázdné pro povolení všech typů" - -#: includes/fields/class-acf-field-file.php:290 -#: includes/fields/class-acf-field-image.php:316 -msgid "Allowed File Types" -msgstr "" - -#: includes/fields/class-acf-field-file.php:278 -#: includes/fields/class-acf-field-image.php:280 -msgid "Maximum" -msgstr "Maximum" - -#: includes/fields/class-acf-field-file.php:154 -#: includes/fields/class-acf-field-file.php:270 -#: includes/fields/class-acf-field-file.php:282 -#: includes/fields/class-acf-field-image.php:271 -#: includes/fields/class-acf-field-image.php:307 -msgid "File size" -msgstr "Velikost souboru" - -#: includes/fields/class-acf-field-image.php:245 -#: includes/fields/class-acf-field-image.php:281 -msgid "Restrict which images can be uploaded" -msgstr "Omezte, které typy obrázků je možné nahrát" - -#: includes/fields/class-acf-field-file.php:266 -#: includes/fields/class-acf-field-image.php:244 -msgid "Minimum" -msgstr "Minimum" - -#: includes/fields/class-acf-field-file.php:235 -#: includes/fields/class-acf-field-image.php:210 -msgid "Uploaded to post" -msgstr "Nahráno k příspěvku" - -#: includes/fields/class-acf-field-file.php:234 -#: includes/fields/class-acf-field-image.php:209 -#: includes/locations/class-acf-location-attachment.php:73 -#: includes/locations/class-acf-location-comment.php:61 -#: includes/locations/class-acf-location-nav-menu.php:74 -#: includes/locations/class-acf-location-taxonomy.php:63 -#: includes/locations/class-acf-location-user-form.php:71 -#: includes/locations/class-acf-location-user-role.php:78 -#: includes/locations/class-acf-location-widget.php:65 -msgid "All" -msgstr "Vše" - -#: includes/fields/class-acf-field-file.php:229 -#: includes/fields/class-acf-field-image.php:204 -msgid "Limit the media library choice" -msgstr "Omezit výběr knihovny médií" - -#: includes/fields/class-acf-field-file.php:228 -#: includes/fields/class-acf-field-image.php:203 -msgid "Library" -msgstr "Knihovna" - -#: includes/fields/class-acf-field-image.php:336 -msgid "Preview Size" -msgstr "Velikost náhledu" - -#: includes/fields/class-acf-field-image.php:195 -msgid "Image ID" -msgstr "ID obrázku" - -#: includes/fields/class-acf-field-image.php:194 -msgid "Image URL" -msgstr "Adresa obrázku" - -#: includes/fields/class-acf-field-image.php:193 -msgid "Image Array" -msgstr "Pole obrázku" - -#: includes/fields/class-acf-field-button-group.php:168 -#: includes/fields/class-acf-field-checkbox.php:372 -#: includes/fields/class-acf-field-file.php:213 -#: includes/fields/class-acf-field-link.php:171 -#: includes/fields/class-acf-field-radio.php:213 -msgid "Specify the returned value on front end" -msgstr "Zadat konkrétní návratovou hodnotu na frontendu" - -#: includes/fields/class-acf-field-button-group.php:167 -#: includes/fields/class-acf-field-checkbox.php:371 -#: includes/fields/class-acf-field-file.php:212 -#: includes/fields/class-acf-field-link.php:170 -#: includes/fields/class-acf-field-radio.php:212 -#: includes/fields/class-acf-field-taxonomy.php:736 -msgid "Return Value" -msgstr "Vrátit hodnotu" - -#: includes/fields/class-acf-field-image.php:162 -msgid "Add Image" -msgstr "Přidat obrázek" - -#: includes/fields/class-acf-field-image.php:162 -msgid "No image selected" -msgstr "Není vybrán žádný obrázek" - -#: includes/assets.php:352 includes/fields/class-acf-field-file.php:162 -#: includes/fields/class-acf-field-image.php:142 -#: includes/fields/class-acf-field-link.php:145 assets/build/js/acf.js:1563 -#: assets/build/js/acf.js:1657 -msgid "Remove" -msgstr "Odstranit" - -#: includes/admin/views/acf-field-group/field.php:76 -#: includes/fields/class-acf-field-file.php:160 -#: includes/fields/class-acf-field-image.php:140 -#: includes/fields/class-acf-field-link.php:145 -msgid "Edit" -msgstr "Upravit" - -#: includes/fields/class-acf-field-image.php:70 includes/media.php:55 -#: assets/build/js/acf-input.js:6837 assets/build/js/acf-input.js:7320 -msgid "All images" -msgstr "Všechny obrázky" - -#: includes/fields/class-acf-field-image.php:69 -#: assets/build/js/acf-input.js:3181 assets/build/js/acf-input.js:3399 -msgid "Update Image" -msgstr "Aktualizovat obrázek" - -#: includes/fields/class-acf-field-image.php:68 -#: assets/build/js/acf-input.js:3180 assets/build/js/acf-input.js:3398 -msgid "Edit Image" -msgstr "Upravit obrázek" - -#: includes/fields/class-acf-field-image.php:67 -#: assets/build/js/acf-input.js:3156 assets/build/js/acf-input.js:3373 -msgid "Select Image" -msgstr "Vybrat obrázek" - -#: includes/fields/class-acf-field-image.php:25 -msgid "Image" -msgstr "Obrázek" - -#: includes/fields/class-acf-field-message.php:125 -msgid "Allow HTML markup to display as visible text instead of rendering" -msgstr "Nevykreslovat efekt, ale zobrazit značky HTML jako prostý text" - -#: includes/fields/class-acf-field-message.php:124 -msgid "Escape HTML" -msgstr "Escapovat HTML" - -#: includes/fields/class-acf-field-message.php:116 -#: includes/fields/class-acf-field-textarea.php:172 -msgid "No Formatting" -msgstr "Žádné formátování" - -#: includes/fields/class-acf-field-message.php:115 -#: includes/fields/class-acf-field-textarea.php:171 -msgid "Automatically add <br>" -msgstr "Automaticky přidávat <br>" - -#: includes/fields/class-acf-field-message.php:114 -#: includes/fields/class-acf-field-textarea.php:170 -msgid "Automatically add paragraphs" -msgstr "Automaticky přidávat odstavce" - -#: includes/fields/class-acf-field-message.php:110 -#: includes/fields/class-acf-field-textarea.php:166 -msgid "Controls how new lines are rendered" -msgstr "Řídí, jak se vykreslují nové řádky" - -#: includes/fields/class-acf-field-message.php:109 -#: includes/fields/class-acf-field-textarea.php:165 -msgid "New Lines" -msgstr "Nové řádky" - -#: includes/fields/class-acf-field-date_picker.php:232 -#: includes/fields/class-acf-field-date_time_picker.php:220 -msgid "Week Starts On" -msgstr "Týden začíná" - -#: includes/fields/class-acf-field-date_picker.php:201 -msgid "The format used when saving a value" -msgstr "Formát použitý při ukládání hodnoty" - -#: includes/fields/class-acf-field-date_picker.php:200 -msgid "Save Format" -msgstr "Uložit formát" - -#: includes/fields/class-acf-field-date_picker.php:67 -msgctxt "Date Picker JS weekHeader" -msgid "Wk" -msgstr "Týden" - -#: includes/fields/class-acf-field-date_picker.php:66 -msgctxt "Date Picker JS prevText" -msgid "Prev" -msgstr "Předchozí" - -#: includes/fields/class-acf-field-date_picker.php:65 -msgctxt "Date Picker JS nextText" -msgid "Next" -msgstr "Následující" - -#: includes/fields/class-acf-field-date_picker.php:64 -msgctxt "Date Picker JS currentText" -msgid "Today" -msgstr "Dnes" - -#: includes/fields/class-acf-field-date_picker.php:63 -msgctxt "Date Picker JS closeText" -msgid "Done" -msgstr "Hotovo" - -#: includes/fields/class-acf-field-date_picker.php:25 -msgid "Date Picker" -msgstr "Výběr data" - -#: includes/fields/class-acf-field-image.php:248 -#: includes/fields/class-acf-field-image.php:284 -#: includes/fields/class-acf-field-oembed.php:268 -msgid "Width" -msgstr "Šířka" - -#: includes/fields/class-acf-field-oembed.php:265 -#: includes/fields/class-acf-field-oembed.php:277 -msgid "Embed Size" -msgstr "Velikost pro Embed" - -#: includes/fields/class-acf-field-oembed.php:222 -msgid "Enter URL" -msgstr "Vložte URL" - -#: includes/fields/class-acf-field-oembed.php:25 -msgid "oEmbed" -msgstr "oEmbed" - -#: includes/fields/class-acf-field-true_false.php:184 -msgid "Text shown when inactive" -msgstr "Text zobrazený při neaktivním poli" - -#: includes/fields/class-acf-field-true_false.php:183 -msgid "Off Text" -msgstr "Text (neaktivní)" - -#: includes/fields/class-acf-field-true_false.php:168 -msgid "Text shown when active" -msgstr "Text zobrazený při aktivním poli" - -#: includes/fields/class-acf-field-true_false.php:167 -msgid "On Text" -msgstr "Text (aktivní)" - -#: includes/fields/class-acf-field-select.php:450 -#: includes/fields/class-acf-field-true_false.php:199 -msgid "Stylized UI" -msgstr "Stylizované uživatelské rozhraní" - -#: includes/fields/class-acf-field-button-group.php:157 -#: includes/fields/class-acf-field-checkbox.php:361 -#: includes/fields/class-acf-field-color_picker.php:156 -#: includes/fields/class-acf-field-email.php:117 -#: includes/fields/class-acf-field-number.php:128 -#: includes/fields/class-acf-field-radio.php:202 -#: includes/fields/class-acf-field-range.php:164 -#: includes/fields/class-acf-field-select.php:380 -#: includes/fields/class-acf-field-text.php:103 -#: includes/fields/class-acf-field-textarea.php:103 -#: includes/fields/class-acf-field-true_false.php:147 -#: includes/fields/class-acf-field-url.php:101 -#: includes/fields/class-acf-field-wysiwyg.php:311 -msgid "Default Value" -msgstr "Výchozí hodnota" - -#: includes/fields/class-acf-field-true_false.php:138 -msgid "Displays text alongside the checkbox" -msgstr "Zobrazí text vedle zaškrtávacího políčka" - -#: includes/fields/class-acf-field-message.php:26 -#: includes/fields/class-acf-field-message.php:99 -#: includes/fields/class-acf-field-true_false.php:137 -msgid "Message" -msgstr "Zpráva" - -#: includes/assets.php:351 includes/fields/class-acf-field-true_false.php:86 -#: includes/fields/class-acf-field-true_false.php:187 -#: assets/build/js/acf.js:1740 assets/build/js/acf.js:1857 -msgid "No" -msgstr "Ne" - -#: includes/assets.php:350 includes/fields/class-acf-field-true_false.php:83 -#: includes/fields/class-acf-field-true_false.php:171 -#: assets/build/js/acf.js:1739 assets/build/js/acf.js:1856 -msgid "Yes" -msgstr "Ano" - -#: includes/fields/class-acf-field-true_false.php:25 -msgid "True / False" -msgstr "Pravda / Nepravda" - -#: includes/fields/class-acf-field-group.php:474 -msgid "Row" -msgstr "Řádek" - -#: includes/fields/class-acf-field-group.php:473 -msgid "Table" -msgstr "Tabulka" - -#: includes/admin/post-types/admin-field-group.php:140 -#: includes/fields/class-acf-field-group.php:472 -msgid "Block" -msgstr "Blok" - -#: includes/fields/class-acf-field-group.php:467 -msgid "Specify the style used to render the selected fields" -msgstr "Určení stylu použitého pro vykreslení vybraných polí" - -#: includes/fields.php:356 includes/fields/class-acf-field-button-group.php:215 -#: includes/fields/class-acf-field-checkbox.php:435 -#: includes/fields/class-acf-field-group.php:466 -#: includes/fields/class-acf-field-radio.php:286 -msgid "Layout" -msgstr "Typ zobrazení" - -#: includes/fields/class-acf-field-group.php:450 -msgid "Sub Fields" -msgstr "Podřazená pole" - -#: includes/fields/class-acf-field-group.php:25 -msgid "Group" -msgstr "Skupina" - -#: includes/fields/class-acf-field-google-map.php:235 -msgid "Customize the map height" -msgstr "Přizpůsobení výšky mapy" - -#: includes/fields/class-acf-field-google-map.php:234 -#: includes/fields/class-acf-field-image.php:259 -#: includes/fields/class-acf-field-image.php:295 -#: includes/fields/class-acf-field-oembed.php:280 -msgid "Height" -msgstr "Výška" - -#: includes/fields/class-acf-field-google-map.php:223 -msgid "Set the initial zoom level" -msgstr "Nastavit počáteční úroveň přiblížení" - -#: includes/fields/class-acf-field-google-map.php:222 -msgid "Zoom" -msgstr "Přiblížení" - -#: includes/fields/class-acf-field-google-map.php:196 -#: includes/fields/class-acf-field-google-map.php:209 -msgid "Center the initial map" -msgstr "Vycentrovat počáteční zobrazení mapy" - -#: includes/fields/class-acf-field-google-map.php:195 -#: includes/fields/class-acf-field-google-map.php:208 -msgid "Center" -msgstr "Vycentrovat" - -#: includes/fields/class-acf-field-google-map.php:163 -msgid "Search for address..." -msgstr "Vyhledat adresu..." - -#: includes/fields/class-acf-field-google-map.php:160 -msgid "Find current location" -msgstr "Najít aktuální umístění" - -#: includes/fields/class-acf-field-google-map.php:159 -msgid "Clear location" -msgstr "Vymazat polohu" - -#: includes/fields/class-acf-field-google-map.php:158 -#: includes/fields/class-acf-field-relationship.php:628 -msgid "Search" -msgstr "Hledat" - -#: includes/fields/class-acf-field-google-map.php:63 -#: assets/build/js/acf-input.js:2840 assets/build/js/acf-input.js:3026 -msgid "Sorry, this browser does not support geolocation" -msgstr "Je nám líto, ale tento prohlížeč nepodporuje geolokaci" - -#: includes/fields/class-acf-field-google-map.php:25 -msgid "Google Map" -msgstr "Mapa Google" - -#: includes/fields/class-acf-field-date_picker.php:212 -#: includes/fields/class-acf-field-date_time_picker.php:201 -#: includes/fields/class-acf-field-time_picker.php:132 -msgid "The format returned via template functions" -msgstr "Formát vrácen pomocí funkcí šablony" - -#: includes/fields/class-acf-field-color_picker.php:180 -#: includes/fields/class-acf-field-date_picker.php:211 -#: includes/fields/class-acf-field-date_time_picker.php:200 -#: includes/fields/class-acf-field-image.php:187 -#: includes/fields/class-acf-field-post_object.php:411 -#: includes/fields/class-acf-field-relationship.php:638 -#: includes/fields/class-acf-field-select.php:391 -#: includes/fields/class-acf-field-time_picker.php:131 -#: includes/fields/class-acf-field-user.php:66 -msgid "Return Format" -msgstr "Formát návratové hodnoty" - -#: includes/fields/class-acf-field-date_picker.php:190 -#: includes/fields/class-acf-field-date_picker.php:221 -#: includes/fields/class-acf-field-date_time_picker.php:192 -#: includes/fields/class-acf-field-date_time_picker.php:210 -#: includes/fields/class-acf-field-time_picker.php:123 -#: includes/fields/class-acf-field-time_picker.php:139 -msgid "Custom:" -msgstr "Vlastní:" - -#: includes/fields/class-acf-field-date_picker.php:182 -#: includes/fields/class-acf-field-date_time_picker.php:183 -#: includes/fields/class-acf-field-time_picker.php:116 -msgid "The format displayed when editing a post" -msgstr "Formát zobrazený při úpravě příspěvku" - -#: includes/fields/class-acf-field-date_picker.php:181 -#: includes/fields/class-acf-field-date_time_picker.php:182 -#: includes/fields/class-acf-field-time_picker.php:115 -msgid "Display Format" -msgstr "Formát zobrazení" - -#: includes/fields/class-acf-field-time_picker.php:25 -msgid "Time Picker" -msgstr "Výběr času" - -#. translators: counts for inactive field groups -#: acf.php:503 -msgid "Inactive (%s)" -msgid_plural "Inactive (%s)" -msgstr[0] "Neaktivní (%s)" -msgstr[1] "Neaktivní (%s)" -msgstr[2] "Neaktivní (%s)" - -#: acf.php:462 -msgid "No Fields found in Trash" -msgstr "V koši nenalezeno žádné pole" - -#: acf.php:461 -msgid "No Fields found" -msgstr "Nenalezeno žádné pole" - -#: acf.php:460 -msgid "Search Fields" -msgstr "Vyhledat pole" - -#: acf.php:459 -msgid "View Field" -msgstr "Zobrazit pole" - -#: acf.php:458 includes/admin/views/acf-field-group/fields.php:115 -msgid "New Field" -msgstr "Nové pole" - -#: acf.php:457 -msgid "Edit Field" -msgstr "Upravit pole" - -#: acf.php:456 -msgid "Add New Field" -msgstr "Přidat nové pole" - -#: acf.php:454 -msgid "Field" -msgstr "Pole" - -#: acf.php:453 includes/admin/post-types/admin-field-group.php:163 -#: includes/admin/post-types/admin-field-groups.php:119 -#: includes/admin/views/acf-field-group/fields.php:32 -msgid "Fields" -msgstr "Pole" - -#: acf.php:428 -msgid "No Field Groups found in Trash" -msgstr "V koši nebyly nalezeny žádné skupiny polí" - -#: acf.php:427 -msgid "No Field Groups found" -msgstr "Nebyly nalezeny žádné skupiny polí" - -#: acf.php:426 -msgid "Search Field Groups" -msgstr "Hledat skupiny polí" - -#: acf.php:425 -msgid "View Field Group" -msgstr "Prohlížet skupinu polí" - -#: acf.php:424 -msgid "New Field Group" -msgstr "Nová skupina polí" - -#: acf.php:423 -msgid "Edit Field Group" -msgstr "Upravit skupinu polí" - -#: acf.php:422 -msgid "Add New Field Group" -msgstr "Přidat novou skupinu polí" - -#: acf.php:421 acf.php:455 -#: includes/admin/views/acf-post-type/advanced-settings.php:219 -#: includes/admin/views/acf-post-type/advanced-settings.php:221 -#: includes/post-types/class-acf-post-type.php:93 -#: includes/post-types/class-acf-taxonomy.php:92 -msgid "Add New" -msgstr "Přidat nové" - -#: acf.php:420 -msgid "Field Group" -msgstr "Skupina polí" - -#: acf.php:419 includes/admin/post-types/admin-field-groups.php:78 -#: includes/admin/post-types/admin-post-types.php:138 -#: includes/admin/post-types/admin-taxonomies.php:138 -msgid "Field Groups" -msgstr "Skupiny polí" - -#. Description of the plugin -msgid "Customize WordPress with powerful, professional and intuitive fields." -msgstr "" -"Přizpůsobte si WordPress pomocí efektivních, profesionálních a intuitivních " -"polí." - -#. Plugin URI of the plugin -msgid "https://www.advancedcustomfields.com" -msgstr "https://www.advancedcustomfields.com" - -#. Plugin Name of the plugin -#: acf.php:94 -msgid "Advanced Custom Fields" -msgstr "Advanced Custom Fields" - -#: pro/acf-pro.php:27 -msgid "Advanced Custom Fields PRO" -msgstr "Advanced Custom Fields PRO" - -#: pro/blocks.php:170 -#, fuzzy -#| msgid "%s value is required" -msgid "Block type name is required." -msgstr "%s hodnota je vyžadována" - -#. translators: The name of the block type -#: pro/blocks.php:178 -msgid "Block type \"%s\" is already registered." -msgstr "" - -#: pro/blocks.php:726 -msgid "Switch to Edit" -msgstr "" - -#: pro/blocks.php:727 -msgid "Switch to Preview" -msgstr "" - -#: pro/blocks.php:728 -msgid "Change content alignment" -msgstr "" - -#. translators: %s: Block type title -#: pro/blocks.php:731 -#, fuzzy -#| msgid "Settings" -msgid "%s settings" -msgstr "Nastavení" - -#: pro/blocks.php:936 -msgid "This block contains no editable fields." -msgstr "" - -#. translators: %s: an admin URL to the field group edit screen -#: pro/blocks.php:942 -msgid "" -"Assign a field group to add fields to " -"this block." -msgstr "" - -#: pro/options-page.php:78 -msgid "Options Updated" -msgstr "Nastavení aktualizováno" - -#: pro/updates.php:99 -#, fuzzy -#| msgid "" -#| "To enable updates, please enter your license key on the Updates page. If you don't have a licence key, please see details & pricing." -msgid "" -"To enable updates, please enter your license key on the Updates page. If you don't have a licence key, please see details & pricing." -msgstr "" -"Chcete-li povolit aktualizace, zadejte prosím licenční klíč na stránce Aktualizace. Pokud nemáte licenční klíč, přečtěte si podrobnosti a ceny." - -#: pro/updates.php:159 -msgid "" -"ACF Activation Error. Your defined license key has changed, but an " -"error occurred when deactivating your old licence" -msgstr "" - -#: pro/updates.php:154 -msgid "" -"ACF Activation Error. Your defined license key has changed, but an " -"error occurred when connecting to activation server" -msgstr "" - -#: pro/updates.php:192 -msgid "ACF Activation Error" -msgstr "" - -#: pro/updates.php:187 -#, fuzzy -#| msgid "Error. Could not connect to update server" -msgid "" -"ACF Activation Error. An error occurred when connecting to activation " -"server" -msgstr "Chyba. Nelze se připojit k serveru a aktualizovat" - -#: pro/updates.php:279 -msgid "Check Again" -msgstr "Zkontrolujte znovu" - -#: pro/updates.php:593 -#, fuzzy -#| msgid "Error. Could not connect to update server" -msgid "ACF Activation Error. Could not connect to activation server" -msgstr "Chyba. Nelze se připojit k serveru a aktualizovat" - -#: pro/admin/admin-options-page.php:195 -msgid "Publish" -msgstr "Publikovat" - -#: pro/admin/admin-options-page.php:199 -msgid "" -"No Custom Field Groups found for this options page. Create a " -"Custom Field Group" -msgstr "" -"Nebyly nalezeny žádné vlastní skupiny polí. Vytvořit vlastní " -"skupinu polí" - -#: pro/admin/admin-updates.php:52 -msgid "Error. Could not connect to update server" -msgstr "Chyba. Nelze se připojit k serveru a aktualizovat" - -#: pro/admin/admin-updates.php:212 -msgid "" -"Error. Could not authenticate update package. Please check again or " -"deactivate and reactivate your ACF PRO license." -msgstr "" - -#: pro/admin/admin-updates.php:199 -msgid "" -"Error. Your license for this site has expired or been deactivated. " -"Please reactivate your ACF PRO license." -msgstr "" - -#: pro/fields/class-acf-field-clone.php:27, -#: pro/fields/class-acf-field-repeater.php:31 -msgid "" -"Allows you to select and display existing fields. It does not duplicate any " -"fields in the database, but loads and displays the selected fields at run-" -"time. The Clone field can either replace itself with the selected fields or " -"display the selected fields as a group of subfields." -msgstr "" - -#: pro/fields/class-acf-field-clone.php:819 -msgid "Select one or more fields you wish to clone" -msgstr "Vyberte jedno nebo více polí, které chcete klonovat" - -#: pro/fields/class-acf-field-clone.php:838 -msgid "Display" -msgstr "Zobrazovat" - -#: pro/fields/class-acf-field-clone.php:839 -msgid "Specify the style used to render the clone field" -msgstr "Určení stylu použitého pro vykreslení klonovaných polí" - -#: pro/fields/class-acf-field-clone.php:844 -msgid "Group (displays selected fields in a group within this field)" -msgstr "Skupina (zobrazuje vybrané pole ve skupině v tomto poli)" - -#: pro/fields/class-acf-field-clone.php:845 -msgid "Seamless (replaces this field with selected fields)" -msgstr "Bezešvé (nahradí toto pole vybranými poli)" - -#: pro/fields/class-acf-field-clone.php:868 -msgid "Labels will be displayed as %s" -msgstr "Štítky budou zobrazeny jako %s" - -#: pro/fields/class-acf-field-clone.php:873 -msgid "Prefix Field Labels" -msgstr "Prefix štítku pole" - -#: pro/fields/class-acf-field-clone.php:883 -msgid "Values will be saved as %s" -msgstr "Hodnoty budou uloženy jako %s" - -#: pro/fields/class-acf-field-clone.php:888 -msgid "Prefix Field Names" -msgstr "Prefix jména pole" - -#: pro/fields/class-acf-field-clone.php:1005 -msgid "Unknown field" -msgstr "Neznámé pole" - -#: pro/fields/class-acf-field-clone.php:1042 -msgid "Unknown field group" -msgstr "Skupina neznámých polí" - -#: pro/fields/class-acf-field-clone.php:1046 -msgid "All fields from %s field group" -msgstr "Všechna pole z skupiny polí %s" - -#: pro/fields/class-acf-field-flexible-content.php:27 -msgid "" -"Allows you to define, create and manage content with total control by " -"creating layouts that contain subfields that content editors can choose from." -msgstr "" - -#: pro/fields/class-acf-field-flexible-content.php:36, -#: pro/fields/class-acf-field-repeater.php:103, -#: pro/fields/class-acf-field-repeater.php:297 -msgid "Add Row" -msgstr "Přidat řádek" - -#: pro/fields/class-acf-field-flexible-content.php:76, -#: pro/fields/class-acf-field-flexible-content.php:943, -#: pro/fields/class-acf-field-flexible-content.php:1022 -msgid "layout" -msgid_plural "layouts" -msgstr[0] "typ zobrazení" -msgstr[1] "typ zobrazení" -msgstr[2] "typ zobrazení" - -#: pro/fields/class-acf-field-flexible-content.php:77 -msgid "layouts" -msgstr "typy zobrazení" - -#: pro/fields/class-acf-field-flexible-content.php:81, -#: pro/fields/class-acf-field-flexible-content.php:942, -#: pro/fields/class-acf-field-flexible-content.php:1021 -msgid "This field requires at least {min} {label} {identifier}" -msgstr "Toto pole vyžaduje alespoň {min} {label} {identifier}" - -#: pro/fields/class-acf-field-flexible-content.php:82 -msgid "This field has a limit of {max} {label} {identifier}" -msgstr "Toto pole má limit {max}{label} {identifier}" - -#: pro/fields/class-acf-field-flexible-content.php:85 -msgid "{available} {label} {identifier} available (max {max})" -msgstr "{available} {label} {identifier} dostupný (max {max})" - -#: pro/fields/class-acf-field-flexible-content.php:86 -msgid "{required} {label} {identifier} required (min {min})" -msgstr "{required} {label} {identifier} povinný (min {min})" - -#: pro/fields/class-acf-field-flexible-content.php:89 -msgid "Flexible Content requires at least 1 layout" -msgstr "Flexibilní obsah vyžaduje minimálně jedno rozložení obsahu" - -#: pro/fields/class-acf-field-flexible-content.php:282 -msgid "Click the \"%s\" button below to start creating your layout" -msgstr "" -"Klikněte na tlačítko \"%s\" níže pro vytvoření vlastního typu zobrazení" - -#: pro/fields/class-acf-field-flexible-content.php:423 -msgid "Add layout" -msgstr "Přidat typ zobrazení" - -#: pro/fields/class-acf-field-flexible-content.php:424 -#, fuzzy -#| msgid "Duplicate Layout" -msgid "Duplicate layout" -msgstr "Duplikovat typ zobrazení" - -#: pro/fields/class-acf-field-flexible-content.php:425 -msgid "Remove layout" -msgstr "Odstranit typ zobrazení" - -#: pro/fields/class-acf-field-flexible-content.php:426, -#: pro/fields/class-acf-repeater-table.php:382 -msgid "Click to toggle" -msgstr "Klikněte pro přepnutí" - -#: pro/fields/class-acf-field-flexible-content.php:562 -msgid "Delete Layout" -msgstr "Smazat typ zobrazení" - -#: pro/fields/class-acf-field-flexible-content.php:563 -msgid "Duplicate Layout" -msgstr "Duplikovat typ zobrazení" - -#: pro/fields/class-acf-field-flexible-content.php:564 -msgid "Add New Layout" -msgstr "Přidat nový typ zobrazení" - -#: pro/fields/class-acf-field-flexible-content.php:564 -#, fuzzy -#| msgid "Add layout" -msgid "Add Layout" -msgstr "Přidat typ zobrazení" - -#: pro/fields/class-acf-field-flexible-content.php:647 -msgid "Min" -msgstr "Min" - -#: pro/fields/class-acf-field-flexible-content.php:662 -msgid "Max" -msgstr "Max" - -#: pro/fields/class-acf-field-flexible-content.php:705 -msgid "Minimum Layouts" -msgstr "Minimální rozložení" - -#: pro/fields/class-acf-field-flexible-content.php:716 -msgid "Maximum Layouts" -msgstr "Maximální rozložení" - -#: pro/fields/class-acf-field-flexible-content.php:727, -#: pro/fields/class-acf-field-repeater.php:293 -msgid "Button Label" -msgstr "Nápis tlačítka" - -#: pro/fields/class-acf-field-flexible-content.php:1710, -#: pro/fields/class-acf-field-repeater.php:918 -msgid "%s must be of type array or null." -msgstr "" - -#: pro/fields/class-acf-field-flexible-content.php:1721 -msgid "%1$s must contain at least %2$s %3$s layout." -msgid_plural "%1$s must contain at least %2$s %3$s layouts." -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: pro/fields/class-acf-field-flexible-content.php:1737 -msgid "%1$s must contain at most %2$s %3$s layout." -msgid_plural "%1$s must contain at most %2$s %3$s layouts." -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: pro/fields/class-acf-field-gallery.php:27 -msgid "" -"An interactive interface for managing a collection of attachments, such as " -"images." -msgstr "" - -#: pro/fields/class-acf-field-gallery.php:77 -msgid "Add Image to Gallery" -msgstr "Přidat obrázek do galerie" - -#: pro/fields/class-acf-field-gallery.php:78 -msgid "Maximum selection reached" -msgstr "Maximální výběr dosažen" - -#: pro/fields/class-acf-field-gallery.php:324 -msgid "Length" -msgstr "Délka" - -#: pro/fields/class-acf-field-gallery.php:368 -msgid "Caption" -msgstr "Popisek" - -#: pro/fields/class-acf-field-gallery.php:380 -msgid "Alt Text" -msgstr "Alternativní text" - -#: pro/fields/class-acf-field-gallery.php:504 -msgid "Add to gallery" -msgstr "Přidat do galerie" - -#: pro/fields/class-acf-field-gallery.php:508 -msgid "Bulk actions" -msgstr "Hromadné akce" - -#: pro/fields/class-acf-field-gallery.php:509 -msgid "Sort by date uploaded" -msgstr "Řadit dle data nahrání" - -#: pro/fields/class-acf-field-gallery.php:510 -msgid "Sort by date modified" -msgstr "Řadit dle data změny" - -#: pro/fields/class-acf-field-gallery.php:511 -msgid "Sort by title" -msgstr "Řadit dle názvu" - -#: pro/fields/class-acf-field-gallery.php:512 -msgid "Reverse current order" -msgstr "Převrátit aktuální pořadí" - -#: pro/fields/class-acf-field-gallery.php:524 -msgid "Close" -msgstr "Zavřít" - -#: pro/fields/class-acf-field-gallery.php:615 -msgid "Minimum Selection" -msgstr "Minimální výběr" - -#: pro/fields/class-acf-field-gallery.php:625 -msgid "Maximum Selection" -msgstr "Maximální výběr" - -#: pro/fields/class-acf-field-gallery.php:707 -msgid "Allowed file types" -msgstr "Povolené typy souborů" - -#: pro/fields/class-acf-field-gallery.php:727 -msgid "Insert" -msgstr "Vložit" - -#: pro/fields/class-acf-field-gallery.php:728 -msgid "Specify where new attachments are added" -msgstr "Určete, kde budou přidány nové přílohy" - -#: pro/fields/class-acf-field-gallery.php:732 -msgid "Append to the end" -msgstr "Přidat na konec" - -#: pro/fields/class-acf-field-gallery.php:733 -msgid "Prepend to the beginning" -msgstr "Přidat na začátek" - -#: pro/fields/class-acf-field-repeater.php:66, -#: pro/fields/class-acf-field-repeater.php:463 -#, fuzzy -#| msgid "Minimum rows reached ({min} rows)" -msgid "Minimum rows not reached ({min} rows)" -msgstr "Minimální počet řádků dosažen ({min} řádků)" - -#: pro/fields/class-acf-field-repeater.php:67 -msgid "Maximum rows reached ({max} rows)" -msgstr "Maximální počet řádků dosažen ({max} řádků)" - -#: pro/fields/class-acf-field-repeater.php:68 -msgid "Error loading page" -msgstr "" - -#: pro/fields/class-acf-field-repeater.php:69 -msgid "Order will be assigned upon save" -msgstr "" - -#: pro/fields/class-acf-field-repeater.php:196 -msgid "Useful for fields with a large number of rows." -msgstr "" - -#: pro/fields/class-acf-field-repeater.php:207 -#, fuzzy -#| msgid "Posts Page" -msgid "Rows Per Page" -msgstr "Stránka příspěvku" - -#: pro/fields/class-acf-field-repeater.php:208 -#, fuzzy -#| msgid "Select the taxonomy to be displayed" -msgid "Set the number of rows to be displayed on a page." -msgstr "Zvolit zobrazovanou taxonomii" - -#: pro/fields/class-acf-field-repeater.php:240 -msgid "Minimum Rows" -msgstr "Minimum řádků" - -#: pro/fields/class-acf-field-repeater.php:251 -msgid "Maximum Rows" -msgstr "Maximum řádků" - -#: pro/fields/class-acf-field-repeater.php:281 -msgid "Collapsed" -msgstr "Sbaleno" - -#: pro/fields/class-acf-field-repeater.php:282 -msgid "Select a sub field to show when row is collapsed" -msgstr "Zvolte dílčí pole, které se zobrazí při sbalení řádku" - -#: pro/fields/class-acf-field-repeater.php:1060 -msgid "Invalid field key or name." -msgstr "" - -#: pro/fields/class-acf-field-repeater.php:1069 -msgid "There was an error retrieving the field." -msgstr "" - -#: pro/fields/class-acf-repeater-table.php:369 -#, fuzzy -#| msgid "Drag to reorder" -msgid "Click to reorder" -msgstr "Přetažením změníte pořadí" - -#: pro/fields/class-acf-repeater-table.php:402 -msgid "Add row" -msgstr "Přidat řádek" - -#: pro/fields/class-acf-repeater-table.php:403 -#, fuzzy -#| msgid "Duplicate" -msgid "Duplicate row" -msgstr "Duplikovat" - -#: pro/fields/class-acf-repeater-table.php:404 -msgid "Remove row" -msgstr "Odebrat řádek" - -#: pro/fields/class-acf-repeater-table.php:448, -#: pro/fields/class-acf-repeater-table.php:465, -#: pro/fields/class-acf-repeater-table.php:466 -#, fuzzy -#| msgid "Parent Page" -msgid "Current Page" -msgstr "Rodičovská stránka" - -#: pro/fields/class-acf-repeater-table.php:456, -#: pro/fields/class-acf-repeater-table.php:457 -#, fuzzy -#| msgid "Front Page" -msgid "First Page" -msgstr "Hlavní stránka" - -#: pro/fields/class-acf-repeater-table.php:460, -#: pro/fields/class-acf-repeater-table.php:461 -#, fuzzy -#| msgid "Posts Page" -msgid "Previous Page" -msgstr "Stránka příspěvku" - -#. translators: 1: Current page, 2: Total pages. -#: pro/fields/class-acf-repeater-table.php:470 -msgctxt "paging" -msgid "%1$s of %2$s" -msgstr "" - -#: pro/fields/class-acf-repeater-table.php:477, -#: pro/fields/class-acf-repeater-table.php:478 -#, fuzzy -#| msgid "Parent Page" -msgid "Next Page" -msgstr "Rodičovská stránka" - -#: pro/fields/class-acf-repeater-table.php:481, -#: pro/fields/class-acf-repeater-table.php:482 -#, fuzzy -#| msgid "Posts Page" -msgid "Last Page" -msgstr "Stránka příspěvku" - -#: pro/locations/class-acf-location-block.php:71 -#, fuzzy -#| msgid "No options pages exist" -msgid "No block types exist" -msgstr "Neexistuje stránka nastavení" - -#: pro/locations/class-acf-location-options-page.php:70 -msgid "No options pages exist" -msgstr "Neexistuje stránka nastavení" - -#: pro/admin/views/html-settings-updates.php:6 -msgid "Deactivate License" -msgstr "Deaktivujte licenci" - -#: pro/admin/views/html-settings-updates.php:6 -msgid "Activate License" -msgstr "Aktivujte licenci" - -#: pro/admin/views/html-settings-updates.php:16 -msgid "License Information" -msgstr "Informace o licenci" - -#: pro/admin/views/html-settings-updates.php:34 -msgid "" -"To unlock updates, please enter your license key below. If you don't have a " -"licence key, please see details & pricing." -msgstr "" -"Chcete-li povolit aktualizace, zadejte prosím licenční klíč. Pokud nemáte " -"licenční klíč, přečtěte si podrobnosti a ceny." - -#: pro/admin/views/html-settings-updates.php:37 -msgid "License Key" -msgstr "Licenční klíč" - -#: pro/admin/views/html-settings-updates.php:22 -msgid "Your license key is defined in wp-config.php." -msgstr "" - -#: pro/admin/views/html-settings-updates.php:29 -#, fuzzy -#| msgid "Activation Code" -msgid "Retry Activation" -msgstr "Aktivační kód" - -#: pro/admin/views/html-settings-updates.php:61 -msgid "Update Information" -msgstr "Aktualizovat informace" - -#: pro/admin/views/html-settings-updates.php:68 -msgid "Current Version" -msgstr "Současná verze" - -#: pro/admin/views/html-settings-updates.php:76 -msgid "Latest Version" -msgstr "Nejnovější verze" - -#: pro/admin/views/html-settings-updates.php:84 -msgid "Update Available" -msgstr "Aktualizace je dostupná" - -#: pro/admin/views/html-settings-updates.php:98 -msgid "Upgrade Notice" -msgstr "Upozornění na aktualizaci" - -#: pro/admin/views/html-settings-updates.php:126 -msgid "Check For Updates" -msgstr "" - -#: pro/admin/views/html-settings-updates.php:121 -#, fuzzy -#| msgid "Please enter your license key above to unlock updates" -msgid "Enter your license key to unlock updates" -msgstr "Pro odemčení aktualizací zadejte prosím výše svůj licenční klíč" - -#: pro/admin/views/html-settings-updates.php:119 -msgid "Update Plugin" -msgstr "Aktualizovat plugin" - -#: pro/admin/views/html-settings-updates.php:117 -#, fuzzy -#| msgid "Please enter your license key above to unlock updates" -msgid "Please reactivate your license to unlock updates" -msgstr "Pro odemčení aktualizací zadejte prosím výše svůj licenční klíč" diff --git a/lang/acf-de_CH.mo b/lang/acf-de_CH.mo deleted file mode 100644 index 489a601..0000000 Binary files a/lang/acf-de_CH.mo and /dev/null differ diff --git a/lang/acf-de_CH.po b/lang/acf-de_CH.po deleted file mode 100644 index 84d97a8..0000000 --- a/lang/acf-de_CH.po +++ /dev/null @@ -1,856 +0,0 @@ -# Advanced Custom Fields Translations are a combination of translate.wordpress.org contributions, -# combined with user contributed strings for the PRO version. -# Translations from translate.wordpress.org take priority over translations in this file. -# translate.wordpress.org contributions are synced at the time of each release. -# -# If you would like to contribute translations, please visit -# https://translate.wordpress.org/projects/wp-plugins/advanced-custom-fields/stable/ -# -# For additional ACF PRO strings, please submit a pull request over on the ACF GitHub repo at -# http://github.com/advancedcustomfields/acf using the .pot (and any existing .po) files in /lang/pro/ -# -# This file is distributed under the same license as Advanced Custom Fields. -msgid "" -msgstr "" -"PO-Revision-Date: 2023-11-28T09:14:32+00:00\n" -"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n" -"Language: de_CH\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: gettext\n" -"Project-Id-Version: Advanced Custom Fields\n" - -#: pro/acf-pro.php:27 -msgid "Advanced Custom Fields PRO" -msgstr "Advanced Custom Fields PRO" - -#: pro/blocks.php:170 -#, fuzzy -#| msgid "%s value is required" -msgid "Block type name is required." -msgstr "%s Wert ist notwendig" - -#. translators: The name of the block type -#: pro/blocks.php:178 -msgid "Block type \"%s\" is already registered." -msgstr "" - -#: pro/blocks.php:726 -msgid "Switch to Edit" -msgstr "" - -#: pro/blocks.php:727 -msgid "Switch to Preview" -msgstr "" - -#: pro/blocks.php:728 -msgid "Change content alignment" -msgstr "" - -#. translators: %s: Block type title -#: pro/blocks.php:731 -#, fuzzy -#| msgid "Settings" -msgid "%s settings" -msgstr "Einstellungen" - -#: pro/blocks.php:936 -msgid "This block contains no editable fields." -msgstr "" - -#. translators: %s: an admin URL to the field group edit screen -#: pro/blocks.php:942 -msgid "" -"Assign a field group to add fields to " -"this block." -msgstr "" - -#: pro/options-page.php:47 -msgid "Options" -msgstr "Optionen" - -#: pro/options-page.php:77, pro/fields/class-acf-field-gallery.php:527 -msgid "Update" -msgstr "Aktualisieren" - -#: pro/options-page.php:78 -msgid "Options Updated" -msgstr "Optionen aktualisiert" - -#: pro/updates.php:99 -#, fuzzy -#| msgid "" -#| "To enable updates, please enter your license key on the Updates page. If you don't have a licence key, please see details & pricing." -msgid "" -"To enable updates, please enter your license key on the Updates page. If you don't have a licence key, please see details & pricing." -msgstr "" -"Bitte gib auf der Seite Aktualisierungen deinen " -"Lizenzschlüssel ein, um Updates zu aktivieren. Solltest du keinen " -"Lizenzschlüssel haben, findest du hier Details & Preise." - -#: pro/updates.php:159 -msgid "" -"ACF Activation Error. Your defined license key has changed, but an " -"error occurred when deactivating your old licence" -msgstr "" - -#: pro/updates.php:154 -msgid "" -"ACF Activation Error. Your defined license key has changed, but an " -"error occurred when connecting to activation server" -msgstr "" - -#: pro/updates.php:192 -msgid "ACF Activation Error" -msgstr "" - -#: pro/updates.php:187 -#, fuzzy -#| msgid "Error. Could not connect to update server" -msgid "" -"ACF Activation Error. An error occurred when connecting to activation " -"server" -msgstr "" -"Fehler. Verbindung zum Update-Server konnte nicht hergestellt werden" - -#: pro/updates.php:279 -msgid "Check Again" -msgstr "Erneut suchen" - -#: pro/updates.php:593 -#, fuzzy -#| msgid "Error. Could not connect to update server" -msgid "ACF Activation Error. Could not connect to activation server" -msgstr "" -"Fehler. Verbindung zum Update-Server konnte nicht hergestellt werden" - -#: pro/admin/admin-options-page.php:195 -msgid "Publish" -msgstr "Veröffentlichen" - -#: pro/admin/admin-options-page.php:199 -msgid "" -"No Custom Field Groups found for this options page. Create a " -"Custom Field Group" -msgstr "" -"Keine Feld-Gruppen für die Options-Seite gefunden. Erstelle " -"eine Feld-Gruppe" - -#: pro/admin/admin-options-page.php:309 -msgid "Edit field group" -msgstr "Feld-Gruppen bearbeiten" - -#: pro/admin/admin-updates.php:52 -msgid "Error. Could not connect to update server" -msgstr "" -"Fehler. Verbindung zum Update-Server konnte nicht hergestellt werden" - -#: pro/admin/admin-updates.php:122, -#: pro/admin/views/html-settings-updates.php:12 -msgid "Updates" -msgstr "Aktualisierungen" - -#: pro/admin/admin-updates.php:212 -msgid "" -"Error. Could not authenticate update package. Please check again or " -"deactivate and reactivate your ACF PRO license." -msgstr "" -"Fehler. Konnte das Update-Paket nicht authentifizieren. Bitte " -"überprüfen Sie noch einmal oder reaktivieren Sie Ihre ACF PRO-Lizenz." - -#: pro/admin/admin-updates.php:199 -#, fuzzy -#| msgid "" -#| "Error. Could not authenticate update package. Please check again " -#| "or deactivate and reactivate your ACF PRO license." -msgid "" -"Error. Your license for this site has expired or been deactivated. " -"Please reactivate your ACF PRO license." -msgstr "" -"Fehler. Konnte das Update-Paket nicht authentifizieren. Bitte " -"überprüfen Sie noch einmal oder reaktivieren Sie Ihre ACF PRO-Lizenz." - -#: pro/fields/class-acf-field-clone.php:25 -msgctxt "noun" -msgid "Clone" -msgstr "Klonen" - -#: pro/fields/class-acf-field-clone.php:27, -#: pro/fields/class-acf-field-repeater.php:31 -msgid "" -"Allows you to select and display existing fields. It does not duplicate any " -"fields in the database, but loads and displays the selected fields at run-" -"time. The Clone field can either replace itself with the selected fields or " -"display the selected fields as a group of subfields." -msgstr "" - -#: pro/fields/class-acf-field-clone.php:818, -#: pro/fields/class-acf-field-flexible-content.php:78 -msgid "Fields" -msgstr "Felder" - -#: pro/fields/class-acf-field-clone.php:819 -msgid "Select one or more fields you wish to clone" -msgstr "Wähle eines oder mehrere Felder aus, das/die du klonen willst" - -#: pro/fields/class-acf-field-clone.php:838 -msgid "Display" -msgstr "Anzeige" - -#: pro/fields/class-acf-field-clone.php:839 -msgid "Specify the style used to render the clone field" -msgstr "Gib an, wie die geklonten Felder ausgegeben werden sollen" - -#: pro/fields/class-acf-field-clone.php:844 -msgid "Group (displays selected fields in a group within this field)" -msgstr "" -"Gruppe (zeigt die ausgewählten Felder in einer Gruppe innerhalb dieses Felds " -"an)" - -#: pro/fields/class-acf-field-clone.php:845 -msgid "Seamless (replaces this field with selected fields)" -msgstr "Nahtlos (ersetzt dieses Feld mit den ausgewählten Feldern)" - -#: pro/fields/class-acf-field-clone.php:854, -#: pro/fields/class-acf-field-flexible-content.php:558, -#: pro/fields/class-acf-field-flexible-content.php:616, -#: pro/fields/class-acf-field-repeater.php:177 -msgid "Layout" -msgstr "Layout" - -#: pro/fields/class-acf-field-clone.php:855 -msgid "Specify the style used to render the selected fields" -msgstr "Gib an, wie die ausgewählten Felder angezeigt werden sollen" - -#: pro/fields/class-acf-field-clone.php:860, -#: pro/fields/class-acf-field-flexible-content.php:629, -#: pro/fields/class-acf-field-repeater.php:185, -#: pro/locations/class-acf-location-block.php:22 -msgid "Block" -msgstr "Block" - -#: pro/fields/class-acf-field-clone.php:861, -#: pro/fields/class-acf-field-flexible-content.php:628, -#: pro/fields/class-acf-field-repeater.php:184 -msgid "Table" -msgstr "Tabelle" - -#: pro/fields/class-acf-field-clone.php:862, -#: pro/fields/class-acf-field-flexible-content.php:630, -#: pro/fields/class-acf-field-repeater.php:186 -msgid "Row" -msgstr "Reihe" - -#: pro/fields/class-acf-field-clone.php:868 -msgid "Labels will be displayed as %s" -msgstr "Bezeichnungen werden angezeigt als %s" - -#: pro/fields/class-acf-field-clone.php:873 -msgid "Prefix Field Labels" -msgstr "Präfix für Feld Bezeichnungen" - -#: pro/fields/class-acf-field-clone.php:883 -msgid "Values will be saved as %s" -msgstr "Werte werden gespeichert als %s" - -#: pro/fields/class-acf-field-clone.php:888 -msgid "Prefix Field Names" -msgstr "Präfix für Feld Namen" - -#: pro/fields/class-acf-field-clone.php:1005 -msgid "Unknown field" -msgstr "Unbekanntes Feld" - -#: pro/fields/class-acf-field-clone.php:1009 -msgid "(no title)" -msgstr "(ohne Titel)" - -#: pro/fields/class-acf-field-clone.php:1042 -msgid "Unknown field group" -msgstr "Unbekannte Feld-Gruppe" - -#: pro/fields/class-acf-field-clone.php:1046 -msgid "All fields from %s field group" -msgstr "Alle Felder der %s Feld-Gruppe" - -#: pro/fields/class-acf-field-flexible-content.php:25 -msgid "Flexible Content" -msgstr "Flexible Inhalte" - -#: pro/fields/class-acf-field-flexible-content.php:27 -msgid "" -"Allows you to define, create and manage content with total control by " -"creating layouts that contain subfields that content editors can choose from." -msgstr "" - -#: pro/fields/class-acf-field-flexible-content.php:27 -msgid "We do not recommend using this field in ACF Blocks." -msgstr "" - -#: pro/fields/class-acf-field-flexible-content.php:36, -#: pro/fields/class-acf-field-repeater.php:103, -#: pro/fields/class-acf-field-repeater.php:297 -msgid "Add Row" -msgstr "Eintrag hinzufügen" - -#: pro/fields/class-acf-field-flexible-content.php:76, -#: pro/fields/class-acf-field-flexible-content.php:943, -#: pro/fields/class-acf-field-flexible-content.php:1022 -msgid "layout" -msgid_plural "layouts" -msgstr[0] "Layout" -msgstr[1] "Layouts" - -#: pro/fields/class-acf-field-flexible-content.php:77 -msgid "layouts" -msgstr "Einträge" - -#: pro/fields/class-acf-field-flexible-content.php:81, -#: pro/fields/class-acf-field-flexible-content.php:942, -#: pro/fields/class-acf-field-flexible-content.php:1021 -msgid "This field requires at least {min} {label} {identifier}" -msgstr "Dieses Feld erfordert mindestens {min} {label} {identifier}" - -#: pro/fields/class-acf-field-flexible-content.php:82 -msgid "This field has a limit of {max} {label} {identifier}" -msgstr "Dieses Feld erlaubt höchstens {max} {label} {identifier}" - -#: pro/fields/class-acf-field-flexible-content.php:85 -msgid "{available} {label} {identifier} available (max {max})" -msgstr "{available} {label} {identifier} möglich (max {max})" - -#: pro/fields/class-acf-field-flexible-content.php:86 -msgid "{required} {label} {identifier} required (min {min})" -msgstr "{required} {label} {identifier} erforderlich (min {min})" - -#: pro/fields/class-acf-field-flexible-content.php:89 -msgid "Flexible Content requires at least 1 layout" -msgstr "Flexibler Inhalt benötigt mindestens ein Layout" - -#: pro/fields/class-acf-field-flexible-content.php:282 -msgid "Click the \"%s\" button below to start creating your layout" -msgstr "Klicke \"%s\" zum Erstellen des Layouts" - -#: pro/fields/class-acf-field-flexible-content.php:420, -#: pro/fields/class-acf-repeater-table.php:366 -msgid "Drag to reorder" -msgstr "Ziehen zum Sortieren" - -#: pro/fields/class-acf-field-flexible-content.php:423 -msgid "Add layout" -msgstr "Layout hinzufügen" - -#: pro/fields/class-acf-field-flexible-content.php:424 -#, fuzzy -#| msgid "Duplicate Layout" -msgid "Duplicate layout" -msgstr "Layout duplizieren" - -#: pro/fields/class-acf-field-flexible-content.php:425 -msgid "Remove layout" -msgstr "Layout entfernen" - -#: pro/fields/class-acf-field-flexible-content.php:426, -#: pro/fields/class-acf-repeater-table.php:382 -msgid "Click to toggle" -msgstr "Zum Auswählen anklicken" - -#: pro/fields/class-acf-field-flexible-content.php:562 -msgid "Delete Layout" -msgstr "Layout löschen" - -#: pro/fields/class-acf-field-flexible-content.php:563 -msgid "Duplicate Layout" -msgstr "Layout duplizieren" - -#: pro/fields/class-acf-field-flexible-content.php:564 -msgid "Add New Layout" -msgstr "Neues Layout hinzufügen" - -#: pro/fields/class-acf-field-flexible-content.php:564 -#, fuzzy -#| msgid "Add layout" -msgid "Add Layout" -msgstr "Layout hinzufügen" - -#: pro/fields/class-acf-field-flexible-content.php:593 -msgid "Label" -msgstr "Name" - -#: pro/fields/class-acf-field-flexible-content.php:609 -msgid "Name" -msgstr "Feld-Name" - -#: pro/fields/class-acf-field-flexible-content.php:647 -msgid "Min" -msgstr "Min" - -#: pro/fields/class-acf-field-flexible-content.php:662 -msgid "Max" -msgstr "Max" - -#: pro/fields/class-acf-field-flexible-content.php:705 -msgid "Minimum Layouts" -msgstr "Minimum Layouts" - -#: pro/fields/class-acf-field-flexible-content.php:716 -msgid "Maximum Layouts" -msgstr "Maximum Layouts" - -#: pro/fields/class-acf-field-flexible-content.php:727, -#: pro/fields/class-acf-field-repeater.php:293 -msgid "Button Label" -msgstr "Button-Beschriftung" - -#: pro/fields/class-acf-field-flexible-content.php:1710, -#: pro/fields/class-acf-field-repeater.php:918 -msgid "%s must be of type array or null." -msgstr "" - -#: pro/fields/class-acf-field-flexible-content.php:1721 -msgid "%1$s must contain at least %2$s %3$s layout." -msgid_plural "%1$s must contain at least %2$s %3$s layouts." -msgstr[0] "" -msgstr[1] "" - -#: pro/fields/class-acf-field-flexible-content.php:1737 -msgid "%1$s must contain at most %2$s %3$s layout." -msgid_plural "%1$s must contain at most %2$s %3$s layouts." -msgstr[0] "" -msgstr[1] "" - -#: pro/fields/class-acf-field-gallery.php:25 -msgid "Gallery" -msgstr "Galerie" - -#: pro/fields/class-acf-field-gallery.php:27 -msgid "" -"An interactive interface for managing a collection of attachments, such as " -"images." -msgstr "" - -#: pro/fields/class-acf-field-gallery.php:77 -msgid "Add Image to Gallery" -msgstr "Bild zur Galerie hinzufügen" - -#: pro/fields/class-acf-field-gallery.php:78 -msgid "Maximum selection reached" -msgstr "Maximale Auswahl erreicht" - -#: pro/fields/class-acf-field-gallery.php:324 -msgid "Length" -msgstr "Länge" - -#: pro/fields/class-acf-field-gallery.php:339 -msgid "Edit" -msgstr "Bearbeiten" - -#: pro/fields/class-acf-field-gallery.php:340, -#: pro/fields/class-acf-field-gallery.php:495 -msgid "Remove" -msgstr "Entfernen" - -#: pro/fields/class-acf-field-gallery.php:356 -msgid "Title" -msgstr "Titel" - -#: pro/fields/class-acf-field-gallery.php:368 -msgid "Caption" -msgstr "Beschriftung" - -#: pro/fields/class-acf-field-gallery.php:380 -msgid "Alt Text" -msgstr "Alt Text" - -#: pro/fields/class-acf-field-gallery.php:392 -msgid "Description" -msgstr "Beschreibung" - -#: pro/fields/class-acf-field-gallery.php:504 -msgid "Add to gallery" -msgstr "Zur Galerie hinzufügen" - -#: pro/fields/class-acf-field-gallery.php:508 -msgid "Bulk actions" -msgstr "Massenverarbeitung" - -#: pro/fields/class-acf-field-gallery.php:509 -msgid "Sort by date uploaded" -msgstr "Sortiere nach Upload-Datum" - -#: pro/fields/class-acf-field-gallery.php:510 -msgid "Sort by date modified" -msgstr "Sortiere nach Änderungs-Datum" - -#: pro/fields/class-acf-field-gallery.php:511 -msgid "Sort by title" -msgstr "Sortiere nach Titel" - -#: pro/fields/class-acf-field-gallery.php:512 -msgid "Reverse current order" -msgstr "Aktuelle Sortierung umkehren" - -#: pro/fields/class-acf-field-gallery.php:524 -msgid "Close" -msgstr "Schliessen" - -#: pro/fields/class-acf-field-gallery.php:556 -msgid "Return Format" -msgstr "Rückgabewert" - -#: pro/fields/class-acf-field-gallery.php:562 -msgid "Image Array" -msgstr "Bild-Array" - -#: pro/fields/class-acf-field-gallery.php:563 -msgid "Image URL" -msgstr "Bild-URL" - -#: pro/fields/class-acf-field-gallery.php:564 -msgid "Image ID" -msgstr "Bild-ID" - -#: pro/fields/class-acf-field-gallery.php:572 -msgid "Library" -msgstr "Medienübersicht" - -#: pro/fields/class-acf-field-gallery.php:573 -msgid "Limit the media library choice" -msgstr "Beschränkt die Auswahl in der Medienübersicht" - -#: pro/fields/class-acf-field-gallery.php:578, -#: pro/locations/class-acf-location-block.php:66 -msgid "All" -msgstr "Alle" - -#: pro/fields/class-acf-field-gallery.php:579 -msgid "Uploaded to post" -msgstr "Für den Beitrag hochgeladen" - -#: pro/fields/class-acf-field-gallery.php:615 -msgid "Minimum Selection" -msgstr "Minimale Auswahl" - -#: pro/fields/class-acf-field-gallery.php:625 -msgid "Maximum Selection" -msgstr "Maximale Auswahl" - -#: pro/fields/class-acf-field-gallery.php:635 -msgid "Minimum" -msgstr "Minimum" - -#: pro/fields/class-acf-field-gallery.php:636, -#: pro/fields/class-acf-field-gallery.php:672 -msgid "Restrict which images can be uploaded" -msgstr "" -"Erlaubt nur das Hochladen von Bildern, die die angegebenen Eigenschaften " -"erfüllen" - -#: pro/fields/class-acf-field-gallery.php:639, -#: pro/fields/class-acf-field-gallery.php:675 -msgid "Width" -msgstr "Breite" - -#: pro/fields/class-acf-field-gallery.php:650, -#: pro/fields/class-acf-field-gallery.php:686 -msgid "Height" -msgstr "Höhe" - -#: pro/fields/class-acf-field-gallery.php:662, -#: pro/fields/class-acf-field-gallery.php:698 -msgid "File size" -msgstr "Dateigrösse" - -#: pro/fields/class-acf-field-gallery.php:671 -msgid "Maximum" -msgstr "Maximum" - -#: pro/fields/class-acf-field-gallery.php:707 -msgid "Allowed file types" -msgstr "Erlaubte Datei-Formate" - -#: pro/fields/class-acf-field-gallery.php:708 -msgid "Comma separated list. Leave blank for all types" -msgstr "" -"Komma separierte Liste; ein leeres Feld bedeutet alle Dateiformate sind " -"erlaubt" - -#: pro/fields/class-acf-field-gallery.php:727 -msgid "Insert" -msgstr "Einfügen" - -#: pro/fields/class-acf-field-gallery.php:728 -msgid "Specify where new attachments are added" -msgstr "Gib an, wo neue Anhänge eingefügt werden sollen" - -#: pro/fields/class-acf-field-gallery.php:732 -msgid "Append to the end" -msgstr "Am Schluss anhängen" - -#: pro/fields/class-acf-field-gallery.php:733 -msgid "Prepend to the beginning" -msgstr "Vor Beginn einfügen" - -#: pro/fields/class-acf-field-gallery.php:741 -msgid "Preview Size" -msgstr "Masse der Vorschau" - -#: pro/fields/class-acf-field-gallery.php:844 -#, fuzzy -#| msgid "%s requires at least %s selection" -#| msgid_plural "%s requires at least %s selections" -msgid "%1$s requires at least %2$s selection" -msgid_plural "%1$s requires at least %2$s selections" -msgstr[0] "%s benötigt mindestens %s Selektion" -msgstr[1] "%s benötigt mindestens %s Selektionen" - -#: pro/fields/class-acf-field-repeater.php:29 -msgid "Repeater" -msgstr "Wiederholung" - -#: pro/fields/class-acf-field-repeater.php:66, -#: pro/fields/class-acf-field-repeater.php:463 -#, fuzzy -#| msgid "Minimum rows reached ({min} rows)" -msgid "Minimum rows not reached ({min} rows)" -msgstr "Minimum der Einträge mit ({min} Reihen) erreicht" - -#: pro/fields/class-acf-field-repeater.php:67 -msgid "Maximum rows reached ({max} rows)" -msgstr "Maximum der Einträge mit ({max} Reihen) erreicht" - -#: pro/fields/class-acf-field-repeater.php:68 -#, fuzzy -#| msgid "Error loading update" -msgid "Error loading page" -msgstr "Fehler beim Laden des Update" - -#: pro/fields/class-acf-field-repeater.php:69 -msgid "Order will be assigned upon save" -msgstr "" - -#: pro/fields/class-acf-field-repeater.php:162 -msgid "Sub Fields" -msgstr "Wiederholungsfelder" - -#: pro/fields/class-acf-field-repeater.php:195 -#, fuzzy -#| msgid "Position" -msgid "Pagination" -msgstr "Position" - -#: pro/fields/class-acf-field-repeater.php:196 -msgid "Useful for fields with a large number of rows." -msgstr "" - -#: pro/fields/class-acf-field-repeater.php:207 -#, fuzzy -#| msgid "Posts Page" -msgid "Rows Per Page" -msgstr "Beitrags-Seite" - -#: pro/fields/class-acf-field-repeater.php:208 -#, fuzzy -#| msgid "Select the taxonomy to be displayed" -msgid "Set the number of rows to be displayed on a page." -msgstr "Wähle die Taxonomie, welche angezeigt werden soll" - -#: pro/fields/class-acf-field-repeater.php:240 -msgid "Minimum Rows" -msgstr "Minimum der Einträge" - -#: pro/fields/class-acf-field-repeater.php:251 -msgid "Maximum Rows" -msgstr "Maximum der Einträge" - -#: pro/fields/class-acf-field-repeater.php:281 -msgid "Collapsed" -msgstr "Zugeklappt" - -#: pro/fields/class-acf-field-repeater.php:282 -msgid "Select a sub field to show when row is collapsed" -msgstr "" -"Wähle welches der Wiederholungsfelder im zugeklappten Zustand angezeigt " -"werden soll" - -#: pro/fields/class-acf-field-repeater.php:1045 -msgid "Invalid nonce." -msgstr "" - -#: pro/fields/class-acf-field-repeater.php:1060 -msgid "Invalid field key or name." -msgstr "" - -#: pro/fields/class-acf-field-repeater.php:1069 -msgid "There was an error retrieving the field." -msgstr "" - -#: pro/fields/class-acf-repeater-table.php:369 -#, fuzzy -#| msgid "Drag to reorder" -msgid "Click to reorder" -msgstr "Ziehen zum Sortieren" - -#: pro/fields/class-acf-repeater-table.php:402 -msgid "Add row" -msgstr "Eintrag hinzufügen" - -#: pro/fields/class-acf-repeater-table.php:403 -#, fuzzy -#| msgid "Duplicate" -msgid "Duplicate row" -msgstr "Duplizieren" - -#: pro/fields/class-acf-repeater-table.php:404 -msgid "Remove row" -msgstr "Eintrag löschen" - -#: pro/fields/class-acf-repeater-table.php:448, -#: pro/fields/class-acf-repeater-table.php:465, -#: pro/fields/class-acf-repeater-table.php:466 -#, fuzzy -#| msgid "Current User" -msgid "Current Page" -msgstr "Aktueller Benutzer" - -#: pro/fields/class-acf-repeater-table.php:456, -#: pro/fields/class-acf-repeater-table.php:457 -#, fuzzy -#| msgid "Front Page" -msgid "First Page" -msgstr "Startseite" - -#: pro/fields/class-acf-repeater-table.php:460, -#: pro/fields/class-acf-repeater-table.php:461 -#, fuzzy -#| msgid "Posts Page" -msgid "Previous Page" -msgstr "Beitrags-Seite" - -#. translators: 1: Current page, 2: Total pages. -#: pro/fields/class-acf-repeater-table.php:470 -msgctxt "paging" -msgid "%1$s of %2$s" -msgstr "" - -#: pro/fields/class-acf-repeater-table.php:477, -#: pro/fields/class-acf-repeater-table.php:478 -#, fuzzy -#| msgid "Front Page" -msgid "Next Page" -msgstr "Startseite" - -#: pro/fields/class-acf-repeater-table.php:481, -#: pro/fields/class-acf-repeater-table.php:482 -#, fuzzy -#| msgid "Posts Page" -msgid "Last Page" -msgstr "Beitrags-Seite" - -#: pro/locations/class-acf-location-block.php:71 -#, fuzzy -#| msgid "No options pages exist" -msgid "No block types exist" -msgstr "Keine Options-Seiten vorhanden" - -#: pro/locations/class-acf-location-options-page.php:22 -msgid "Options Page" -msgstr "Options-Seite" - -#: pro/locations/class-acf-location-options-page.php:70 -msgid "No options pages exist" -msgstr "Keine Options-Seiten vorhanden" - -#: pro/admin/views/html-settings-updates.php:6 -msgid "Deactivate License" -msgstr "Lizenz deaktivieren" - -#: pro/admin/views/html-settings-updates.php:6 -msgid "Activate License" -msgstr "Lizenz aktivieren" - -#: pro/admin/views/html-settings-updates.php:16 -msgid "License Information" -msgstr "Lizenzinformationen" - -#: pro/admin/views/html-settings-updates.php:34 -msgid "" -"To unlock updates, please enter your license key below. If you don't have a " -"licence key, please see details & pricing." -msgstr "" -"Bitte gib unten deinen Lizenzschlüssel ein, um Updates freizuschalten. " -"Solltest du keinen Lizenzschlüssel haben, findest du hier Details & Preise." - -#: pro/admin/views/html-settings-updates.php:37 -msgid "License Key" -msgstr "Lizenzschlüssel" - -#: pro/admin/views/html-settings-updates.php:22 -msgid "Your license key is defined in wp-config.php." -msgstr "" - -#: pro/admin/views/html-settings-updates.php:29 -#, fuzzy -#| msgid "Better Validation" -msgid "Retry Activation" -msgstr "Bessere Validierung" - -#: pro/admin/views/html-settings-updates.php:61 -msgid "Update Information" -msgstr "Aktualisierungsinformationen" - -#: pro/admin/views/html-settings-updates.php:68 -msgid "Current Version" -msgstr "Installierte Version" - -#: pro/admin/views/html-settings-updates.php:76 -msgid "Latest Version" -msgstr "Aktuellste Version" - -#: pro/admin/views/html-settings-updates.php:84 -msgid "Update Available" -msgstr "Aktualisierung verfügbar" - -#: pro/admin/views/html-settings-updates.php:91 -msgid "No" -msgstr "Nein" - -#: pro/admin/views/html-settings-updates.php:89 -msgid "Yes" -msgstr "Ja" - -#: pro/admin/views/html-settings-updates.php:98 -msgid "Upgrade Notice" -msgstr "Aktualisierungs-Hinweis" - -#: pro/admin/views/html-settings-updates.php:126 -msgid "Check For Updates" -msgstr "" - -#: pro/admin/views/html-settings-updates.php:121 -#, fuzzy -#| msgid "Please enter your license key above to unlock updates" -msgid "Enter your license key to unlock updates" -msgstr "" -"Bitte gib oben Deinen Lizenzschlüssel ein um die Update-Fähigkeit " -"freizuschalten" - -#: pro/admin/views/html-settings-updates.php:119 -msgid "Update Plugin" -msgstr "Plugin aktualisieren" - -#: pro/admin/views/html-settings-updates.php:117 -#, fuzzy -#| msgid "Please enter your license key above to unlock updates" -msgid "Please reactivate your license to unlock updates" -msgstr "" -"Bitte gib oben Deinen Lizenzschlüssel ein um die Update-Fähigkeit " -"freizuschalten" diff --git a/lang/acf-de_DE.mo b/lang/acf-de_DE.mo deleted file mode 100644 index f983881..0000000 Binary files a/lang/acf-de_DE.mo and /dev/null differ diff --git a/lang/acf-de_DE.po b/lang/acf-de_DE.po deleted file mode 100644 index 6a8c36c..0000000 --- a/lang/acf-de_DE.po +++ /dev/null @@ -1,6334 +0,0 @@ -# Advanced Custom Fields Translations are a combination of translate.wordpress.org contributions, -# combined with user contributed strings for the PRO version. -# Translations from translate.wordpress.org take priority over translations in this file. -# translate.wordpress.org contributions are synced at the time of each release. -# -# If you would like to contribute translations, please visit -# https://translate.wordpress.org/projects/wp-plugins/advanced-custom-fields/stable/ -# -# For additional ACF PRO strings, please submit a pull request over on the ACF GitHub repo at -# http://github.com/advancedcustomfields/acf using the .pot (and any existing .po) files in /lang/pro/ -# -# This file is distributed under the same license as Advanced Custom Fields. -msgid "" -msgstr "" -"PO-Revision-Date: 2023-11-28T09:14:32+00:00\n" -"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n" -"Language: de_DE\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: gettext\n" -"Project-Id-Version: Advanced Custom Fields\n" - -#: includes/admin/views/global/navigation.php:221 -msgid "Renew ACF PRO License" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:17 -msgid "Renew License" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:14 -msgid "Manage License" -msgstr "" - -#: includes/admin/views/acf-field-group/options.php:102 -msgid "'High' position not supported in the Block Editor" -msgstr "" - -#: includes/admin/views/options-page-preview.php:30 -msgid "Upgrade to ACF PRO" -msgstr "" - -#. translators: %s URL to ACF options pages documentation -#: includes/admin/views/options-page-preview.php:7 -msgid "" -"ACF options pages are custom admin " -"pages for managing global settings via fields. You can create multiple pages " -"and sub-pages." -msgstr "" - -#: includes/admin/views/global/header.php:35 -msgid "Add Options Page" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:703 -msgid "In the editor used as the placeholder of the title." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:702 -msgid "Title Placeholder" -msgstr "" - -#: includes/admin/views/global/navigation.php:97 -msgid "4 Months Free" -msgstr "" - -#. translators: %s - A singular label for a post type or taxonomy. -#: includes/admin/views/global/form-top.php:56 -msgid " (Duplicated from %s)" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:298 -msgid "Select Options Pages" -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:107 -msgid "Duplicate taxonomy" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:106 -#: includes/admin/post-types/admin-taxonomy.php:106 -msgid "Create taxonomy" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:105 -msgid "Duplicate post type" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:104 -#: includes/admin/post-types/admin-taxonomy.php:108 -msgid "Create post type" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:103 -#: includes/admin/post-types/admin-taxonomy.php:105 -msgid "Link field groups" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:102 -#: includes/admin/post-types/admin-taxonomy.php:104 -msgid "Add fields" -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:121 -#: assets/build/js/acf-field-group.js:2753 -#: assets/build/js/acf-field-group.js:3236 -msgid "This Field" -msgstr "" - -#: includes/admin/admin.php:267 -msgid "ACF PRO" -msgstr "" - -#: includes/admin/admin.php:265 -msgid "Feedback" -msgstr "" - -#: includes/admin/admin.php:263 -msgid "Support" -msgstr "" - -#. translators: This text is prepended by a link to ACF's website, and appended -#. by a link to WP Engine's website. -#: includes/admin/admin.php:238 -msgid "is developed and maintained by" -msgstr "" - -#. translators: %s - either "post type" or "taxonomy" -#: includes/admin/admin-internal-post-type.php:321 -msgid "Add this %s to the location rules of the selected field groups." -msgstr "" - -#. translators: %s the URL to ACF's bidirectional relationship documentation -#: includes/acf-bidirectional-functions.php:271 -msgid "" -"Enabling the bidirectional setting allows you to update a value in the " -"target fields for each value selected for this field, adding or removing the " -"Post ID, Taxonomy ID or User ID of the item being updated. For more " -"information, please read the documentation." -msgstr "" - -#: includes/acf-bidirectional-functions.php:247 -msgid "" -"Select field(s) to store the reference back to the item being updated. You " -"may select this field. Target fields must be compatible with where this " -"field is being displayed. For example, if this field is displayed on a " -"Taxonomy, your target field should be of type Taxonomy" -msgstr "" - -#: includes/acf-bidirectional-functions.php:246 -msgid "Target Field" -msgstr "" - -#: includes/acf-bidirectional-functions.php:220 -msgid "Update a field on the selected values, referencing back to this ID" -msgstr "" - -#: includes/acf-bidirectional-functions.php:219 -msgid "Bidirectional" -msgstr "" - -#. translators: %s A field type name, such as "Relationship" -#: includes/acf-bidirectional-functions.php:192 -msgid "%s Field" -msgstr "" - -#: includes/fields/class-acf-field-page_link.php:517 -#: includes/fields/class-acf-field-post_object.php:426 -#: includes/fields/class-acf-field-select.php:407 -#: includes/fields/class-acf-field-user.php:82 -msgid "Select Multiple" -msgstr "" - -#: includes/admin/views/global/navigation.php:233 -msgid "WP Engine logo" -msgstr "" - -#: includes/admin/views/acf-taxonomy/basic-settings.php:58 -msgid "Lower case letters, underscores and dashes only, Max 32 characters." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1136 -msgid "The capability name for assigning terms of this taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1135 -msgid "Assign Terms Capability" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1119 -msgid "The capability name for deleting terms of this taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1118 -msgid "Delete Terms Capability" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1102 -msgid "The capability name for editing terms of this taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1101 -msgid "Edit Terms Capability" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1085 -msgid "The capability name for managing terms of this taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1084 -msgid "Manage Terms Capability" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:886 -msgid "" -"Sets whether posts should be excluded from search results and taxonomy " -"archive pages." -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:74 -msgid "More Tools from WP Engine" -msgstr "" - -#. translators: %s - WP Engine logo -#: includes/admin/views/acf-field-group/pro-features.php:69 -msgid "Built for those that build with WordPress, by the team at %s" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:6 -msgid "View Pricing & Upgrade" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:3 -#: includes/admin/views/options-page-preview.php:29 -msgid "Learn More" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:28 -msgid "" -"Speed up your workflow and develop better websites with features like ACF " -"Blocks and Options Pages, and sophisticated field types like Repeater, " -"Flexible Content, Clone, and Gallery." -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:2 -msgid "Unlock Advanced Features and Build Even More with ACF PRO" -msgstr "" - -#. translators: %s - singular label of post type/taxonomy, i.e. "Movie"/"Genre" -#: includes/admin/views/global/form-top.php:19 -msgid "%s fields" -msgstr "%s Felder" - -#: includes/admin/post-types/admin-taxonomies.php:293 -msgid "No terms" -msgstr "Keine Begriffe" - -#: includes/admin/post-types/admin-taxonomies.php:266 -msgid "No post types" -msgstr "Keine Inhaltstypen" - -#: includes/admin/post-types/admin-post-types.php:289 -msgid "No posts" -msgstr "Keine Beiträge" - -#: includes/admin/post-types/admin-post-types.php:263 -msgid "No taxonomies" -msgstr "Keine Taxonomien" - -#: includes/admin/post-types/admin-post-types.php:208 -#: includes/admin/post-types/admin-taxonomies.php:208 -msgid "No field groups" -msgstr "Keine Feldgruppen" - -#: includes/admin/post-types/admin-field-groups.php:281 -msgid "No fields" -msgstr "Keine Felder" - -#: includes/admin/post-types/admin-field-groups.php:154 -#: includes/admin/post-types/admin-post-types.php:172 -#: includes/admin/post-types/admin-taxonomies.php:172 -msgid "No description" -msgstr "Keine Beschreibung" - -#: includes/fields/class-acf-field-page_link.php:484 -#: includes/fields/class-acf-field-post_object.php:389 -#: includes/fields/class-acf-field-relationship.php:601 -msgid "Any post status" -msgstr "Jeder Beitragsstatus" - -#: includes/post-types/class-acf-taxonomy.php:284 -msgid "" -"This taxonomy key is already in use by another taxonomy registered outside " -"of ACF and cannot be used." -msgstr "" -"Dieser Taxonomie-Schlüssel stammt von einer anderen Taxonomie außerhalb von " -"ACF und kann nicht verwendet werden." - -#: includes/post-types/class-acf-taxonomy.php:279 -msgid "" -"This taxonomy key is already in use by another taxonomy in ACF and cannot be " -"used." -msgstr "" -"Dieser Taxonomie-Schlüssel stammt von einer anderen Taxonomie in ACF und " -"kann nicht verwendet werden." - -#: includes/post-types/class-acf-taxonomy.php:252 -msgid "" -"The taxonomy key must only contain lower case alphanumeric characters, " -"underscores or dashes." -msgstr "" -"Der Taxonomie-Schlüssel darf nur Kleinbuchstaben, Unterstriche und " -"Trennstriche enthalten." - -#: includes/post-types/class-acf-taxonomy.php:247 -msgid "The taxonomy key must be under 32 characters." -msgstr "Der Taxonomie-Schlüssel muss kürzer als 32 Zeichen sein." - -#: includes/post-types/class-acf-taxonomy.php:99 -msgid "No Taxonomies found in Trash" -msgstr "Es wurden keine Taxonomien im Papierkorb gefunden" - -#: includes/post-types/class-acf-taxonomy.php:98 -msgid "No Taxonomies found" -msgstr "Es wurden keine Taxonomien gefunden" - -#: includes/post-types/class-acf-taxonomy.php:97 -msgid "Search Taxonomies" -msgstr "Suche Taxonomien" - -#: includes/post-types/class-acf-taxonomy.php:96 -msgid "View Taxonomy" -msgstr "Taxonomie anzeigen" - -#: includes/post-types/class-acf-taxonomy.php:95 -msgid "New Taxonomy" -msgstr "Neue Taxonomie" - -#: includes/post-types/class-acf-taxonomy.php:94 -msgid "Edit Taxonomy" -msgstr "Taxonomie bearbeiten" - -#: includes/post-types/class-acf-taxonomy.php:93 -msgid "Add New Taxonomy" -msgstr "Neue Taxonomie hinzufügen" - -#: includes/post-types/class-acf-post-type.php:100 -msgid "No Post Types found in Trash" -msgstr "Es wurden keine Inhaltstypen im Papierkorb gefunden" - -#: includes/post-types/class-acf-post-type.php:99 -msgid "No Post Types found" -msgstr "Es wurden keine Inhaltstypen gefunden" - -#: includes/post-types/class-acf-post-type.php:98 -msgid "Search Post Types" -msgstr "Inhaltstypen suchen" - -#: includes/post-types/class-acf-post-type.php:97 -msgid "View Post Type" -msgstr "Inhaltstyp anzeigen" - -#: includes/post-types/class-acf-post-type.php:96 -msgid "New Post Type" -msgstr "Neuer Inhaltstyp" - -#: includes/post-types/class-acf-post-type.php:95 -msgid "Edit Post Type" -msgstr "Inhaltstyp bearbeiten" - -#: includes/post-types/class-acf-post-type.php:94 -msgid "Add New Post Type" -msgstr "Neuen Inhaltstyp hinzufügen" - -#: includes/post-types/class-acf-post-type.php:361 -msgid "" -"This post type key is already in use by another post type registered outside " -"of ACF and cannot be used." -msgstr "" -"Dieser Inhaltstyp-Schlüssel stammt von einem anderen Inhaltstyp außerhalb " -"von ACF und kann nicht verwendet werden." - -#: includes/post-types/class-acf-post-type.php:356 -msgid "" -"This post type key is already in use by another post type in ACF and cannot " -"be used." -msgstr "" -"Dieser Inhaltstyp-Schlüssel stammt von einem anderen Inhaltstyp in ACF und " -"kann nicht verwendet werden." - -#. translators: %s a link to WordPress.org's Reserved Terms page -#: includes/post-types/class-acf-post-type.php:335 -#: includes/post-types/class-acf-taxonomy.php:258 -msgid "" -"This field must not be a WordPress reserved " -"term." -msgstr "" -"Dieses Feld darf kein von WordPress reservierter Begriff sein." - -#: includes/post-types/class-acf-post-type.php:329 -msgid "" -"The post type key must only contain lower case alphanumeric characters, " -"underscores or dashes." -msgstr "" -"Der Inhaltstyp-Schlüssel darf nur Kleinbuchstaben, Unterstriche und " -"Trennstriche enthalten." - -#: includes/post-types/class-acf-post-type.php:324 -msgid "The post type key must be under 20 characters." -msgstr "Der Inhaltstyp-Schlüssel muss kürzer als 20 Zeichen sein." - -#: includes/fields/class-acf-field-wysiwyg.php:27 -msgid "We do not recommend using this field in ACF Blocks." -msgstr "Es wird nicht empfohlen, dieses Feld in ACF-Blöcken zu verwenden." - -#: includes/fields/class-acf-field-wysiwyg.php:27 -msgid "" -"Displays the WordPress WYSIWYG editor as seen in Posts and Pages allowing " -"for a rich text-editing experience that also allows for multimedia content." -msgstr "" -"Zeigt den WordPress-WYSIWYG-Editor an, wie er in Beiträgen und Seiten zu " -"sehen ist, und ermöglicht so eine umfangreiche Textbearbeitung, die auch " -"Multimedia-Inhalte zulässt." - -#: includes/fields/class-acf-field-wysiwyg.php:25 -msgid "WYSIWYG Editor" -msgstr "WYSIWYG-Editor" - -#: includes/fields/class-acf-field-user.php:17 -msgid "" -"Allows the selection of one or more users which can be used to create " -"relationships between data objects." -msgstr "" -"Ermöglicht die Auswahl von einem oder mehreren Benutzern, die zur Erstellung " -"von Beziehungen zwischen Datenobjekten verwendet werden können." - -#: includes/fields/class-acf-field-url.php:26 -msgid "A text input specifically designed for storing web addresses." -msgstr "" -"Eine Texteingabe, die speziell für die Speicherung von Webadressen " -"entwickelt wurde." - -#: includes/fields/class-acf-field-url.php:25 -msgid "URL" -msgstr "URL" - -#: includes/fields/class-acf-field-true_false.php:27 -msgid "" -"A toggle that allows you to pick a value of 1 or 0 (on or off, true or " -"false, etc). Can be presented as a stylized switch or checkbox." -msgstr "" -"Ein Schalter, mit dem ein Wert von 1 oder 0 (ein oder aus, wahr oder falsch " -"usw.) auswählt werden kann. Kann als stilisierter Schalter oder " -"Kontrollkästchen dargestellt werden." - -#: includes/fields/class-acf-field-time_picker.php:27 -msgid "" -"An interactive UI for picking a time. The time format can be customized " -"using the field settings." -msgstr "" -"Eine interaktive Benutzeroberfläche zum Auswählen einer Zeit. Das Zeitformat " -"kann in den Feldeinstellungen angepasst werden." - -#: includes/fields/class-acf-field-textarea.php:26 -msgid "A basic textarea input for storing paragraphs of text." -msgstr "" -"Eine einfache Eingabe in Form eines Textbereiches zum Speichern von " -"Textabsätzen." - -#: includes/fields/class-acf-field-text.php:26 -msgid "A basic text input, useful for storing single string values." -msgstr "" -"Eine einfache Texteingabe, nützlich für die Speicherung einzelner " -"Zeichenfolgen." - -#: includes/fields/class-acf-field-taxonomy.php:22 -msgid "" -"Allows the selection of one or more taxonomy terms based on the criteria and " -"options specified in the fields settings." -msgstr "" -"Ermöglicht die Auswahl von einem oder mehreren Taxonomiebegriffen auf der " -"Grundlage der in den Feldeinstellungen angegebenen Kriterien und Optionen." - -#: includes/fields/class-acf-field-tab.php:28 -msgid "" -"Allows you to group fields into tabbed sections in the edit screen. Useful " -"for keeping fields organized and structured." -msgstr "" - -#: includes/fields/class-acf-field-select.php:27 -msgid "A dropdown list with a selection of choices that you specify." -msgstr "" - -#: includes/fields/class-acf-field-relationship.php:19 -msgid "" -"A dual-column interface to select one or more posts, pages, or custom post " -"type items to create a relationship with the item that you're currently " -"editing. Includes options to search and filter." -msgstr "" - -#: includes/fields/class-acf-field-range.php:26 -msgid "" -"An input for selecting a numerical value within a specified range using a " -"range slider element." -msgstr "" -"Ein Schieberegler-Eingabefeld für numerische Zahlenwerte in einem " -"festgelegten Bereich." - -#: includes/fields/class-acf-field-radio.php:27 -msgid "" -"A group of radio button inputs that allows the user to make a single " -"selection from values that you specify." -msgstr "" -"Eine Gruppe von Radiobuttons, die es dem Benutzer ermöglichen, eine einzelne " -"Auswahl aus von dir angegebenen Werten zu treffen." - -#: includes/fields/class-acf-field-post_object.php:19 -msgid "" -"An interactive and customizable UI for picking one or many posts, pages or " -"post type items with the option to search. " -msgstr "" -"Eine interaktive und anpassbare Benutzeroberfläche zur Auswahl einer " -"beliebigen Anzahl von Beiträgen, Seiten oder Inhaltstypen-Elemente mit der " -"Option zum Suchen. " - -#: includes/fields/class-acf-field-password.php:26 -msgid "An input for providing a password using a masked field." -msgstr "Ein Passwort-Feld, das die Eingabe maskiert." - -#: includes/fields/class-acf-field-page_link.php:476 -#: includes/fields/class-acf-field-post_object.php:381 -#: includes/fields/class-acf-field-relationship.php:593 -msgid "Filter by Post Status" -msgstr "Nach Beitragsstatus filtern" - -#: includes/fields/class-acf-field-page_link.php:27 -msgid "" -"An interactive dropdown to select one or more posts, pages, custom post type " -"items or archive URLs, with the option to search." -msgstr "" -"Ein interaktives Drop-down-Menü zur Auswahl von einem oder mehreren " -"Beiträgen, Seiten, individuellen Inhaltstypen oder Archiv-URLs mit der " -"Option zur Suche." - -#: includes/fields/class-acf-field-oembed.php:27 -msgid "" -"An interactive component for embedding videos, images, tweets, audio and " -"other content by making use of the native WordPress oEmbed functionality." -msgstr "" -"Ein interaktives Feld zum Einbetten von Videos, Bildern, Tweets, Audio und " -"anderen Inhalten unter Verwendung der nativen WordPress-oEmbed-" -"Funktionalität." - -#: includes/fields/class-acf-field-number.php:26 -msgid "An input limited to numerical values." -msgstr "Eine auf numerische Werte beschränkte Eingabe." - -#: includes/fields/class-acf-field-message.php:28 -msgid "" -"Used to display a message to editors alongside other fields. Useful for " -"providing additional context or instructions around your fields." -msgstr "" - -#: includes/fields/class-acf-field-link.php:27 -msgid "" -"Allows you to specify a link and its properties such as title and target " -"using the WordPress native link picker." -msgstr "" - -#: includes/fields/class-acf-field-image.php:27 -msgid "Uses the native WordPress media picker to upload, or choose images." -msgstr "" -"Nutzt den nativen WordPress-Mediendialog zum Hochladen oder Auswählen von " -"Bildern." - -#: includes/fields/class-acf-field-group.php:27 -msgid "" -"Provides a way to structure fields into groups to better organize the data " -"and the edit screen." -msgstr "" -"Bietet die Möglichkeit zur Gruppierung von Feldern, um Daten und den " -"Bearbeiten-Bildschirm besser zu strukturieren." - -#: includes/fields/class-acf-field-google-map.php:27 -msgid "" -"An interactive UI for selecting a location using Google Maps. Requires a " -"Google Maps API key and additional configuration to display correctly." -msgstr "" -"Eine interaktive Benutzeroberfläche zur Auswahl eines Standortes unter " -"Verwendung von Google Maps. Benötigt einen Google-Maps-API-Schlüssel und " -"eine zusätzliche Konfiguration für eine korrekte Anzeige." - -#: includes/fields/class-acf-field-file.php:27 -msgid "Uses the native WordPress media picker to upload, or choose files." -msgstr "" -"Nutzt den nativen WordPress-Mediendialog zum Hochladen oder Auswählen von " -"Dateien." - -#: includes/fields/class-acf-field-email.php:26 -msgid "A text input specifically designed for storing email addresses." -msgstr "" -"Ein Texteingabefeld, das speziell für die Speicherung von E-Mail-Adressen " -"entwickelt wurde." - -#: includes/fields/class-acf-field-date_time_picker.php:27 -msgid "" -"An interactive UI for picking a date and time. The date return format can be " -"customized using the field settings." -msgstr "" -"Eine interaktive Benutzeroberfläche zur Auswahl von Datum und Uhrzeit. Das " -"zurückgegebene Datumsformat kann in den Feldeinstellungen angepasst werden." - -#: includes/fields/class-acf-field-date_picker.php:27 -msgid "" -"An interactive UI for picking a date. The date return format can be " -"customized using the field settings." -msgstr "" -"Eine interaktive Benutzeroberfläche zur Auswahl eines Datums. Das " -"zurückgegebene Datumsformat kann in den Feldeinstellungen angepasst werden." - -#: includes/fields/class-acf-field-color_picker.php:27 -msgid "An interactive UI for selecting a color, or specifying a Hex value." -msgstr "" -"Eine interaktive Benutzeroberfläche zur Auswahl einer Farbe, oder zur " -"Eingabe eines Hex-Wertes." - -#: includes/fields/class-acf-field-checkbox.php:27 -msgid "" -"A group of checkbox inputs that allow the user to select one, or multiple " -"values that you specify." -msgstr "" -"Eine Gruppe von Auswahlkästchen, die du festlegst, aus denen der Benutzer " -"einen oder mehrere Werte auswählen kann." - -#: includes/fields/class-acf-field-button-group.php:26 -msgid "" -"A group of buttons with values that you specify, users can choose one option " -"from the values provided." -msgstr "" -"Eine Gruppe von Buttons mit von dir festgelegten Werten. Die Benutzer können " -"eine Option aus den angegebenen Werten auswählen." - -#: includes/fields/class-acf-field-accordion.php:27 -msgid "" -"Allows you to group and organize custom fields into collapsable panels that " -"are shown while editing content. Useful for keeping large datasets tidy." -msgstr "" - -#: includes/fields.php:475 -msgid "" -"This provides a solution for repeating content such as slides, team members, " -"and call-to-action tiles, by acting as a parent to a set of subfields which " -"can be repeated again and again." -msgstr "" - -#: includes/fields.php:465 -msgid "" -"This provides an interactive interface for managing a collection of " -"attachments. Most settings are similar to the Image field type. Additional " -"settings allow you to specify where new attachments are added in the gallery " -"and the minimum/maximum number of attachments allowed." -msgstr "" - -#: includes/fields.php:455 -msgid "" -"This provides a simple, structured, layout-based editor. The Flexible " -"Content field allows you to define, create and manage content with total " -"control by using layouts and subfields to design the available blocks." -msgstr "" - -#: includes/fields.php:445 -msgid "" -"This allows you to select and display existing fields. It does not duplicate " -"any fields in the database, but loads and displays the selected fields at " -"run-time. The Clone field can either replace itself with the selected fields " -"or display the selected fields as a group of subfields." -msgstr "" - -#: includes/fields.php:442 -msgctxt "noun" -msgid "Clone" -msgstr "Klon" - -#: includes/admin/views/global/navigation.php:86 includes/fields.php:357 -msgid "PRO" -msgstr "PRO" - -#: includes/fields.php:355 includes/fields.php:412 -msgid "Advanced" -msgstr "Erweitert" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:85 -msgid "JSON (newer)" -msgstr "JSON (neuer)" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:81 -msgid "Original" -msgstr "Original" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:55 -msgid "Invalid post ID." -msgstr "Ungültige Beitrags-ID." - -#: includes/ajax/class-acf-ajax-local-json-diff.php:47 -msgid "Invalid post type selected for review." -msgstr "Der für die Betrachtung ausgewählte Inhaltstyp ist ungültig." - -#: includes/admin/views/global/navigation.php:186 -msgid "More" -msgstr "Mehr" - -#: includes/admin/views/browse-fields-modal.php:86 -msgid "Tutorial" -msgstr "Anleitung" - -#: includes/admin/views/browse-fields-modal.php:75 -msgid "Available with ACF PRO" -msgstr "Verfügbar mit ACF PRO" - -#: includes/admin/views/browse-fields-modal.php:63 -msgid "Select Field" -msgstr "Feld auswählen" - -#. translators: %s: A link to the popular fields used in ACF -#: includes/admin/views/browse-fields-modal.php:50 -msgid "Try a different search term or browse %s" -msgstr "Probiere es mit einem anderen Suchbegriff oder durchsuche %s" - -#: includes/admin/views/browse-fields-modal.php:47 -msgid "Popular fields" -msgstr "Beliebte Felder" - -#. translators: %s: The invalid search term -#: includes/admin/views/browse-fields-modal.php:40 -msgid "No search results for '%s'" -msgstr "Es wurden keine Suchergebnisse für ‚%s‘ gefunden" - -#: includes/admin/views/browse-fields-modal.php:13 -msgid "Search fields..." -msgstr "Felder suchen ..." - -#: includes/admin/views/browse-fields-modal.php:11 -msgid "Select Field Type" -msgstr "Feldtyp auswählen" - -#: includes/admin/views/browse-fields-modal.php:4 -msgid "Popular" -msgstr "Beliebt" - -#: includes/admin/views/acf-taxonomy/list-empty.php:7 -msgid "Add Taxonomy" -msgstr "Taxonomie hinzufügen" - -#: includes/admin/views/acf-taxonomy/list-empty.php:6 -msgid "Create custom taxonomies to classify post type content" -msgstr "" -"Erstelle individuelle Taxonomien, um die Inhalte von Inhaltstypen zu " -"kategorisieren" - -#: includes/admin/views/acf-taxonomy/list-empty.php:5 -msgid "Add Your First Taxonomy" -msgstr "Deine erste Taxonomie hinzufügen" - -#: includes/admin/views/acf-taxonomy/basic-settings.php:122 -msgid "Hierarchical taxonomies can have descendants (like categories)." -msgstr "" - -#: includes/admin/views/acf-taxonomy/basic-settings.php:107 -msgid "Makes a taxonomy visible on the frontend and in the admin dashboard." -msgstr "" - -#: includes/admin/views/acf-taxonomy/basic-settings.php:91 -msgid "One or many post types that can be classified with this taxonomy." -msgstr "" - -#. translators: example taxonomy -#: includes/admin/views/acf-taxonomy/basic-settings.php:60 -msgid "genre" -msgstr "genre" - -#. translators: example taxonomy -#: includes/admin/views/acf-taxonomy/basic-settings.php:42 -msgid "Genre" -msgstr "Genre" - -#. translators: example taxonomy -#: includes/admin/views/acf-taxonomy/basic-settings.php:25 -msgid "Genres" -msgstr "Genres" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1211 -msgid "" -"Optional custom controller to use instead of `WP_REST_Terms_Controller `." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1155 -msgid "Expose this post type in the REST API." -msgstr "Diesen Inhaltstyp in der REST-API anzeigen." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1055 -msgid "Customize the query variable name" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1028 -msgid "" -"Terms can be accessed using the non-pretty permalink, e.g., {query_var}" -"={term_slug}." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:981 -msgid "Parent-child terms in URLs for hierarchical taxonomies." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:941 -msgid "Customize the slug used in the URL" -msgstr "Passe die Titelform an, die in der URL genutzt wird" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:924 -msgid "Permalinks for this taxonomy are disabled." -msgstr "Permalinks sind für diese Taxonomie deaktiviert." - -#. translators: this string will be appended with the new permalink structure. -#: includes/admin/views/acf-taxonomy/advanced-settings.php:921 -msgid "" -"Rewrite the URL using the taxonomy key as the slug. Your permalink structure " -"will be" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:913 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1030 -#: includes/admin/views/acf-taxonomy/basic-settings.php:57 -msgid "Taxonomy Key" -msgstr "Taxonomie-Schlüssel" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:911 -msgid "Select the type of permalink to use for this taxonomy." -msgstr "Wähle den Permalink-Typ, der für diese Taxonomie genutzt werden soll." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:896 -msgid "Display a column for the taxonomy on post type listing screens." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:895 -msgid "Show Admin Column" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:882 -msgid "Show the taxonomy in the quick/bulk edit panel." -msgstr "Die Taxonomie im Schnell- und Mehrfach-Bearbeitungsbereich anzeigen." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:881 -msgid "Quick Edit" -msgstr "QuickEdit" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:868 -msgid "List the taxonomy in the Tag Cloud Widget controls." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:867 -msgid "Tag Cloud" -msgstr "Schlagwort-Wolke" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:824 -msgid "" -"A PHP function name to be called for sanitizing taxonomy data saved from a " -"meta box." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:823 -msgid "Meta Box Sanitization Callback" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:805 -msgid "" -"A PHP function name to be called to handle the content of a meta box on your " -"taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:804 -msgid "Register Meta Box Callback" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:763 -msgid "No Meta Box" -msgstr "Keine Metabox" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:762 -msgid "Custom Meta Box" -msgstr "Individuelle Metabox" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:758 -msgid "" -"Controls the meta box on the content editor screen. By default, the " -"Categories meta box is shown for hierarchical taxonomies, and the Tags meta " -"box is shown for non-hierarchical taxonomies." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:757 -msgid "Meta Box" -msgstr "Metabox" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:746 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:767 -msgid "Categories Meta Box" -msgstr "Kategorien-Metabox" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:745 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:766 -msgid "Tags Meta Box" -msgstr "Schlagwörter-Metabox" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:704 -msgid "A link to a tag" -msgstr "Ein Link zu einem Schlagwort" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:703 -msgid "Describes a navigation link block variation used in the block editor." -msgstr "" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:698 -msgid "A link to a %s" -msgstr "Ein Link zu einer Taxonomie %s" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:683 -msgid "Tag Link" -msgstr "Schlagwort-Link" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:682 -msgid "" -"Assigns a title for navigation link block variation used in the block editor." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:663 -msgid "← Go to tags" -msgstr "← Zu Schlagwörtern gehen" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:662 -msgid "" -"Assigns the text used to link back to the main index after updating a term." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:661 -msgid "Back To Items" -msgstr "Zurück zu den Elementen" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:657 -msgid "← Go to %s" -msgstr "← Zu %s gehen" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:642 -msgid "Tags list" -msgstr "Schlagwörter-Liste" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:641 -msgid "Assigns text to the table hidden heading." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:622 -msgid "Tags list navigation" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:621 -msgid "Assigns text to the table pagination hidden heading." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:597 -msgid "Filter by category" -msgstr "Nach Kategorie filtern" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:596 -msgid "Assigns text to the filter button in the posts lists table." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:595 -msgid "Filter By Item" -msgstr "" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:591 -msgid "Filter by %s" -msgstr "Nach %s filtern" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:575 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:576 -msgid "" -"The description is not prominent by default; however, some themes may show " -"it." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:574 -msgid "Describes the Description field on the Edit Tags screen." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:573 -msgid "Description Field Description" -msgstr "Beschreibung des Beschreibungfeldes" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:554 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:555 -msgid "" -"Assign a parent term to create a hierarchy. The term Jazz, for example, " -"would be the parent of Bebop and Big Band" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:553 -msgid "Describes the Parent field on the Edit Tags screen." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:552 -msgid "Parent Field Description" -msgstr "Beschreibung des übergeordneten Feldes" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:538 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:539 -msgid "" -"The \"slug\" is the URL-friendly version of the name. It is usually all " -"lower case and contains only letters, numbers, and hyphens." -msgstr "" -"Die Titelform ist die URL-freundliche Version des Namens. Sie besteht " -"üblicherweise aus Kleinbuchstaben und zudem nur aus Buchstaben, Zahlen und " -"Bindestrichen." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:537 -msgid "Describes the Slug field on the Edit Tags screen." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:536 -msgid "Slug Field Description" -msgstr "Beschreibung des Titelformfeldes" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:522 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:523 -msgid "The name is how it appears on your site" -msgstr "Der Name ist das, was auf deiner Website angezeigt wird" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:521 -msgid "Describes the Name field on the Edit Tags screen." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:520 -msgid "Name Field Description" -msgstr "Beschreibung des Namenfeldes" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:507 -msgid "No tags" -msgstr "Keine Schlagwörter" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:506 -msgid "" -"Assigns the text displayed in the posts and media list tables when no tags " -"or categories are available." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:505 -msgid "No Terms" -msgstr "Keine Begriffe" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:501 -msgid "No %s" -msgstr "Keine %s-Taxonomien" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:486 -msgid "No tags found" -msgstr "Es wurden keine Schlagwörter gefunden" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:485 -msgid "" -"Assigns the text displayed when clicking the 'choose from most used' text in " -"the taxonomy meta box when no tags are available, and assigns the text used " -"in the terms list table when there are no items for a taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:484 -msgid "Not Found" -msgstr "Es wurde nichts gefunden" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:463 -msgid "Assigns text to the Title field of the Most Used tab." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:462 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:464 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:465 -msgid "Most Used" -msgstr "Am häufigsten verwendet" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:444 -msgid "Choose from the most used tags" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:443 -msgid "" -"Assigns the 'choose from most used' text used in the meta box when " -"JavaScript is disabled. Only used on non-hierarchical taxonomies." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:442 -msgid "Choose From Most Used" -msgstr "" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:438 -msgid "Choose from the most used %s" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:418 -msgid "Add or remove tags" -msgstr "Schlagwörter hinzufügen oder entfernen" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:417 -msgid "" -"Assigns the add or remove items text used in the meta box when JavaScript is " -"disabled. Only used on non-hierarchical taxonomies" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:416 -msgid "Add Or Remove Items" -msgstr "Elemente hinzufügen oder entfernen" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:412 -msgid "Add or remove %s" -msgstr "%s hinzufügen oder entfernen" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:392 -msgid "Separate tags with commas" -msgstr "Schlagwörter durch Kommas trennen" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:391 -msgid "" -"Assigns the separate item with commas text used in the taxonomy meta box. " -"Only used on non-hierarchical taxonomies." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:390 -msgid "Separate Items With Commas" -msgstr "" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:386 -msgid "Separate %s with commas" -msgstr "Trenne %s durch Kommas" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:366 -msgid "Popular Tags" -msgstr "Beliebte Schlagwörter" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:365 -msgid "Assigns popular items text. Only used for non-hierarchical taxonomies." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:364 -msgid "Popular Items" -msgstr "Beliebte Elemente" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:361 -msgid "Popular %s" -msgstr "Beliebte %s" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:347 -msgid "Search Tags" -msgstr "Schlagwörter suchen" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:346 -msgid "Assigns search items text." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:323 -msgid "Parent Category:" -msgstr "Übergeordnete Kategorie:" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:322 -msgid "Assigns parent item text, but with a colon (:) added to the end." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:321 -msgid "Parent Item With Colon" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:298 -msgid "Parent Category" -msgstr "Übergeordnete Kategorie" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:297 -msgid "Assigns parent item text. Only used on hierarchical taxonomies." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:296 -msgid "Parent Item" -msgstr "Übergeordnetes Element" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:293 -msgid "Parent %s" -msgstr "Übergeordnete Taxonomie %s" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:278 -msgid "New Tag Name" -msgstr "Neuer Schlagwortname" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:277 -msgid "Assigns the new item name text." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:276 -msgid "New Item Name" -msgstr "" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:273 -msgid "New %s Name" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:258 -msgid "Add New Tag" -msgstr "Ein neues Schlagwort hinzufügen" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:257 -msgid "Assigns the add new item text." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:238 -msgid "Update Tag" -msgstr "Schlagwort aktualisieren" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:237 -msgid "Assigns the update item text." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:236 -msgid "Update Item" -msgstr "Element aktualisieren" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:233 -msgid "Update %s" -msgstr "%s aktualisieren" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:218 -msgid "View Tag" -msgstr "Schlagwort anzeigen" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:217 -msgid "In the admin bar to view term during editing." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:198 -msgid "Edit Tag" -msgstr "Schlagwort bearbeiten" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:197 -msgid "At the top of the editor screen when editing a term." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:178 -msgid "All Tags" -msgstr "Alle Schlagwörter" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:177 -msgid "Assigns the all items text." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:158 -msgid "Assigns the menu name text." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:157 -msgid "Menu Label" -msgstr "Menü-Beschriftung" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:131 -msgid "Active taxonomies are enabled and registered with WordPress." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:115 -msgid "A descriptive summary of the taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:95 -msgid "A descriptive summary of the term." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:94 -msgid "Term Description" -msgstr "Beschreibung des Begriffs" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:76 -msgid "Single word, no spaces. Underscores and dashes allowed." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:75 -msgid "Term Slug" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:56 -msgid "The name of the default term." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:55 -msgid "Term Name" -msgstr "Name des Begriffs" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:41 -msgid "" -"Create a term for the taxonomy that cannot be deleted. It will not be " -"selected for posts by default." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:40 -msgid "Default Term" -msgstr "Standardbegriff" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:28 -msgid "" -"Whether terms in this taxonomy should be sorted in the order they are " -"provided to `wp_set_object_terms()`." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:27 -msgid "Sort Terms" -msgstr "" - -#: includes/admin/views/acf-post-type/list-empty.php:7 -msgid "Add Post Type" -msgstr "Inhaltstyp hinzufügen" - -#: includes/admin/views/acf-post-type/list-empty.php:6 -msgid "" -"Expand the functionality of WordPress beyond standard posts and pages with " -"custom post types." -msgstr "" - -#: includes/admin/views/acf-post-type/list-empty.php:5 -msgid "Add Your First Post Type" -msgstr "Deinen ersten Inhaltstyp hinzufügen" - -#: includes/admin/views/acf-post-type/basic-settings.php:136 -#: includes/admin/views/acf-taxonomy/basic-settings.php:135 -msgid "I know what I'm doing, show me all the options." -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:135 -#: includes/admin/views/acf-taxonomy/basic-settings.php:134 -msgid "Advanced Configuration" -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:123 -msgid "Hierarchical post types can have descendants (like pages)." -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:122 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:980 -#: includes/admin/views/acf-taxonomy/basic-settings.php:121 -msgid "Hierarchical" -msgstr "Hierarchisch" - -#: includes/admin/views/acf-post-type/basic-settings.php:107 -msgid "Visible on the frontend and in the admin dashboard." -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:106 -#: includes/admin/views/acf-taxonomy/basic-settings.php:106 -msgid "Public" -msgstr "Öffentlich" - -#. translators: example post type -#: includes/admin/views/acf-post-type/basic-settings.php:59 -msgid "movie" -msgstr "Film" - -#: includes/admin/views/acf-post-type/basic-settings.php:57 -msgid "Lower case letters, underscores and dashes only, Max 20 characters." -msgstr "" - -#. translators: example post type -#: includes/admin/views/acf-post-type/basic-settings.php:41 -msgid "Movie" -msgstr "Film" - -#: includes/admin/views/acf-post-type/basic-settings.php:39 -#: includes/admin/views/acf-taxonomy/basic-settings.php:40 -msgid "Singular Label" -msgstr "" - -#. translators: example post type -#: includes/admin/views/acf-post-type/basic-settings.php:24 -msgid "Movies" -msgstr "Filme" - -#: includes/admin/views/acf-post-type/basic-settings.php:22 -#: includes/admin/views/acf-taxonomy/basic-settings.php:23 -msgid "Plural Label" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1270 -msgid "" -"Optional custom controller to use instead of `WP_REST_Posts_Controller`." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1269 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1210 -msgid "Controller Class" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1251 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1191 -msgid "The namespace part of the REST API URL." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1250 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1190 -msgid "Namespace Route" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1232 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1172 -msgid "The base URL for the post type REST API URLs." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1231 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1171 -msgid "Base URL" -msgstr "Basis-URL" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1217 -msgid "" -"Exposes this post type in the REST API. Required to use the block editor." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1216 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1154 -msgid "Show In REST API" -msgstr "Im REST-API anzeigen" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1195 -msgid "Customize the query variable name." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1194 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1054 -msgid "Query Variable" -msgstr "Abfrage-Variable" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1172 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1032 -msgid "No Query Variable Support" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1171 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1031 -msgid "Custom Query Variable" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1168 -msgid "" -"Items can be accessed using the non-pretty permalink, eg. {post_type}" -"={post_slug}." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1167 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1027 -msgid "Query Variable Support" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1142 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1003 -msgid "URLs for an item and items can be accessed with a query string." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1141 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1002 -msgid "Publicly Queryable" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1120 -msgid "Custom slug for the Archive URL." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1119 -msgid "Archive Slug" -msgstr "Archiv-Titelform" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1106 -msgid "" -"Has an item archive that can be customized with an archive template file in " -"your theme." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1105 -msgid "Archive" -msgstr "Archiv" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1085 -msgid "Pagination support for the items URLs such as the archives." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1084 -msgid "Pagination" -msgstr "Seitennummerierung" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1067 -msgid "RSS feed URL for the post type items." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1066 -msgid "Feed URL" -msgstr "Feed-URL" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1048 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:961 -msgid "" -"Alters the permalink structure to add the `WP_Rewrite::$front` prefix to " -"URLs." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1047 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:960 -msgid "Front URL Prefix" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1028 -msgid "Customize the slug used in the URL." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1027 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:940 -msgid "URL Slug" -msgstr "URL-Titelform" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1011 -msgid "Permalinks for this post type are disabled." -msgstr "" - -#. translators: this string will be appended with the new permalink structure. -#: includes/admin/views/acf-post-type/advanced-settings.php:1010 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:923 -msgid "" -"Rewrite the URL using a custom slug defined in the input below. Your " -"permalink structure will be" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1002 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:915 -msgid "No Permalink (prevent URL rewriting)" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1001 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:914 -msgid "Custom Permalink" -msgstr "Individueller Permalink" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1000 -#: includes/admin/views/acf-post-type/advanced-settings.php:1170 -#: includes/admin/views/acf-post-type/basic-settings.php:56 -msgid "Post Type Key" -msgstr "Inhaltstyp-Schlüssel" - -#. translators: this string will be appended with the new permalink structure. -#: includes/admin/views/acf-post-type/advanced-settings.php:998 -#: includes/admin/views/acf-post-type/advanced-settings.php:1008 -msgid "" -"Rewrite the URL using the post type key as the slug. Your permalink " -"structure will be" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:996 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:910 -msgid "Permalink Rewrite" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:982 -msgid "Delete items by a user when that user is deleted." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:981 -msgid "Delete With User" -msgstr "Zusammen mit dem Benutzer löschen" - -#: includes/admin/views/acf-post-type/advanced-settings.php:967 -msgid "Allow the post type to be exported from 'Tools' > 'Export'." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:966 -msgid "Can Export" -msgstr "Kann exportieren" - -#: includes/admin/views/acf-post-type/advanced-settings.php:935 -msgid "Optionally provide a plural to be used in capabilities." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:934 -msgid "Plural Capability Name" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:916 -msgid "Choose another post type to base the capabilities for this post type." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:915 -msgid "Singular Capability Name" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:901 -msgid "" -"By default the capabilities of the post type will inherit the 'Post' " -"capability names, eg. edit_post, delete_posts. Enable to use post type " -"specific capabilities, eg. edit_{singular}, delete_{plural}." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:900 -msgid "Rename Capabilities" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:885 -msgid "Exclude From Search" -msgstr "Von der Suche ausschließen" - -#: includes/admin/views/acf-post-type/advanced-settings.php:872 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:854 -msgid "" -"Allow items to be added to menus in the 'Appearance' > 'Menus' screen. Must " -"be turned on in 'Screen options'." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:871 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:853 -msgid "Appearance Menus Support" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:853 -msgid "Appears as an item in the 'New' menu in the admin bar." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:852 -msgid "Show In Admin Bar" -msgstr "In der Adminleiste anzeigen" - -#: includes/admin/views/acf-post-type/advanced-settings.php:821 -msgid "" -"A PHP function name to be called when setting up the meta boxes for the edit " -"screen." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:820 -msgid "Custom Meta Box Callback" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:800 -msgid "Menu Icon" -msgstr "Menü-Icon" - -#: includes/admin/views/acf-post-type/advanced-settings.php:782 -msgid "The position in the sidebar menu in the admin dashboard." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:781 -msgid "Menu Position" -msgstr "Menü-Position" - -#: includes/admin/views/acf-post-type/advanced-settings.php:763 -msgid "" -"By default the post type will get a new top level item in the admin menu. If " -"an existing top level item is supplied here, the post type will be added as " -"a submenu item under it." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:762 -msgid "Admin Menu Parent" -msgstr "" - -#. translators: %s = "dashicon class name", link to the WordPress dashicon -#. documentation. -#: includes/admin/views/acf-post-type/advanced-settings.php:750 -msgid "" -"The icon used for the post type menu item in the admin dashboard. Can be a " -"URL or %s to use for the icon." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:745 -msgid "Dashicon class name" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:734 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:734 -msgid "Admin editor navigation in the sidebar menu." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:733 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:733 -msgid "Show In Admin Menu" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:720 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:719 -msgid "Items can be edited and managed in the admin dashboard." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:719 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:718 -msgid "Show In UI" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:689 -msgid "A link to a post." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:688 -msgid "Description for a navigation link block variation." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:687 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:702 -msgid "Item Link Description" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:683 -msgid "A link to a %s." -msgstr "Ein Link zu einem Inhaltstyp %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:668 -msgid "Post Link" -msgstr "Beitragslink" - -#: includes/admin/views/acf-post-type/advanced-settings.php:667 -msgid "Title for a navigation link block variation." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:666 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:681 -msgid "Item Link" -msgstr "Element-Link" - -#. translators: %s Singular form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:663 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:678 -msgid "%s Link" -msgstr "%s-Link" - -#: includes/admin/views/acf-post-type/advanced-settings.php:648 -msgid "Post updated." -msgstr "Der Beitrag wurde aktualisiert." - -#: includes/admin/views/acf-post-type/advanced-settings.php:647 -msgid "In the editor notice after an item is updated." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:646 -msgid "Item Updated" -msgstr "Das Element wurde aktualisiert" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:643 -msgid "%s updated." -msgstr "%s wurde aktualisiert." - -#: includes/admin/views/acf-post-type/advanced-settings.php:628 -msgid "Post scheduled." -msgstr "Die Beiträge wurden geplant." - -#: includes/admin/views/acf-post-type/advanced-settings.php:627 -msgid "In the editor notice after scheduling an item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:626 -msgid "Item Scheduled" -msgstr "Das Element wurde geplant" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:623 -msgid "%s scheduled." -msgstr "%s wurde geplant." - -#: includes/admin/views/acf-post-type/advanced-settings.php:608 -msgid "Post reverted to draft." -msgstr "Der Beitrag wurde auf Entwurf zurückgesetzt." - -#: includes/admin/views/acf-post-type/advanced-settings.php:607 -msgid "In the editor notice after reverting an item to draft." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:606 -msgid "Item Reverted To Draft" -msgstr "Das Element wurde auf Entwurf zurückgesetzt" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:603 -msgid "%s reverted to draft." -msgstr "%s wurde auf Entwurf zurückgesetzt." - -#: includes/admin/views/acf-post-type/advanced-settings.php:588 -msgid "Post published privately." -msgstr "Der Beitrag wurde privat veröffentlicht." - -#: includes/admin/views/acf-post-type/advanced-settings.php:587 -msgid "In the editor notice after publishing a private item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:586 -msgid "Item Published Privately" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:583 -msgid "%s published privately." -msgstr "%s wurde privat veröffentlicht." - -#: includes/admin/views/acf-post-type/advanced-settings.php:568 -msgid "Post published." -msgstr "Der Beitrag wurde veröffentlicht." - -#: includes/admin/views/acf-post-type/advanced-settings.php:567 -msgid "In the editor notice after publishing an item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:566 -msgid "Item Published" -msgstr "Das Element wurde veröffentlicht" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:563 -msgid "%s published." -msgstr "%s wurde veröffentlicht." - -#: includes/admin/views/acf-post-type/advanced-settings.php:548 -msgid "Posts list" -msgstr "Liste der Beiträge" - -#: includes/admin/views/acf-post-type/advanced-settings.php:547 -msgid "Used by screen readers for the items list on the post type list screen." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:546 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:640 -msgid "Items List" -msgstr "Elementliste" - -#. translators: %s Plural form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:543 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:637 -msgid "%s list" -msgstr "%s-Liste" - -#: includes/admin/views/acf-post-type/advanced-settings.php:528 -msgid "Posts list navigation" -msgstr "Navigation der Beiträge-Liste" - -#: includes/admin/views/acf-post-type/advanced-settings.php:527 -msgid "" -"Used by screen readers for the filter list pagination on the post type list " -"screen." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:526 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:620 -msgid "Items List Navigation" -msgstr "Navigation der Elementliste" - -#. translators: %s Plural form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:523 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:617 -msgid "%s list navigation" -msgstr "%s-Listen-Navigation" - -#: includes/admin/views/acf-post-type/advanced-settings.php:507 -msgid "Filter posts by date" -msgstr "Beiträge nach Datum filtern" - -#: includes/admin/views/acf-post-type/advanced-settings.php:506 -msgid "" -"Used by screen readers for the filter by date heading on the post type list " -"screen." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:505 -msgid "Filter Items By Date" -msgstr "Elemente nach Datum filtern" - -#. translators: %s Plural form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:501 -msgid "Filter %s by date" -msgstr "%s nach Datum filtern" - -#: includes/admin/views/acf-post-type/advanced-settings.php:486 -msgid "Filter posts list" -msgstr "Liste mit Beiträgen filtern" - -#: includes/admin/views/acf-post-type/advanced-settings.php:485 -msgid "" -"Used by screen readers for the filter links heading on the post type list " -"screen." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:484 -msgid "Filter Items List" -msgstr "Elemente-Liste filtern" - -#. translators: %s Plural form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:480 -msgid "Filter %s list" -msgstr "%s-Liste filtern" - -#: includes/admin/views/acf-post-type/advanced-settings.php:464 -msgid "In the media modal showing all media uploaded to this item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:463 -msgid "Uploaded To This Item" -msgstr "Zu diesem Element hochgeladen" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:459 -msgid "Uploaded to this %s" -msgstr "Zu diesem %s hochgeladen" - -#: includes/admin/views/acf-post-type/advanced-settings.php:444 -msgid "Insert into post" -msgstr "In den Beitrag einfügen" - -#: includes/admin/views/acf-post-type/advanced-settings.php:443 -msgid "As the button label when adding media to content." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:442 -msgid "Insert Into Media Button" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:438 -msgid "Insert into %s" -msgstr "In %s einfügen" - -#: includes/admin/views/acf-post-type/advanced-settings.php:423 -msgid "Use as featured image" -msgstr "Als Beitragsbild verwenden" - -#: includes/admin/views/acf-post-type/advanced-settings.php:422 -msgid "" -"As the button label for selecting to use an image as the featured image." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:421 -msgid "Use Featured Image" -msgstr "Beitragsbild verwenden" - -#: includes/admin/views/acf-post-type/advanced-settings.php:408 -msgid "Remove featured image" -msgstr "Beitragsbild entfernen" - -#: includes/admin/views/acf-post-type/advanced-settings.php:407 -msgid "As the button label when removing the featured image." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:406 -msgid "Remove Featured Image" -msgstr "Beitragsbild entfernen" - -#: includes/admin/views/acf-post-type/advanced-settings.php:393 -msgid "Set featured image" -msgstr "Beitragsbild festlegen" - -#: includes/admin/views/acf-post-type/advanced-settings.php:392 -msgid "As the button label when setting the featured image." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:391 -msgid "Set Featured Image" -msgstr "Beitragsbild festlegen" - -#: includes/admin/views/acf-post-type/advanced-settings.php:378 -msgid "Featured image" -msgstr "Beitragsbild" - -#: includes/admin/views/acf-post-type/advanced-settings.php:377 -msgid "In the editor used for the title of the featured image meta box." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:376 -msgid "Featured Image Meta Box" -msgstr "Beitragsbild-Metabox" - -#: includes/admin/views/acf-post-type/advanced-settings.php:363 -msgid "Post Attributes" -msgstr "Beitrags-Attribute" - -#: includes/admin/views/acf-post-type/advanced-settings.php:362 -msgid "In the editor used for the title of the post attributes meta box." -msgstr "" -"In dem Editor, der für den Titel der Beitragsattribute-Metabox verwendet " -"wird." - -#: includes/admin/views/acf-post-type/advanced-settings.php:361 -msgid "Attributes Meta Box" -msgstr "Metabox-Attribute" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:358 -msgid "%s Attributes" -msgstr "%s-Attribute" - -#: includes/admin/views/acf-post-type/advanced-settings.php:343 -msgid "Post Archives" -msgstr "Beitrags-Archive" - -#: includes/admin/views/acf-post-type/advanced-settings.php:342 -msgid "" -"Adds 'Post Type Archive' items with this label to the list of posts shown " -"when adding items to an existing menu in a CPT with archives enabled. Only " -"appears when editing menus in 'Live Preview' mode and a custom archive slug " -"has been provided." -msgstr "" -"Fügt ‚Inhaltstyp-Archiv‘-Elemente mit dieser Beschriftung zur Liste der " -"Beiträge hinzu, die beim Hinzufügen von Elementen zu einem bestehenden Menü " -"in einem individuellen Inhaltstyp mit aktivierten Archiven angezeigt werden. " -"Erscheint nur, wenn Menüs im Modus „Live-Vorschau“ bearbeitet werden und " -"eine individuelle Archiv-Titelform angegeben wurde." - -#: includes/admin/views/acf-post-type/advanced-settings.php:341 -msgid "Archives Nav Menu" -msgstr "Navigations-Menü der Archive" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:338 -msgid "%s Archives" -msgstr "%s-Archive" - -#: includes/admin/views/acf-post-type/advanced-settings.php:323 -msgid "No posts found in Trash" -msgstr "Es wurden keine Beiträge im Papierkorb gefunden" - -#: includes/admin/views/acf-post-type/advanced-settings.php:322 -msgid "" -"At the top of the post type list screen when there are no posts in the trash." -msgstr "" -"Oben in der Listen-Ansicht des Inhaltstyps, wenn keine Beiträge im " -"Papierkorb vorhanden sind." - -#: includes/admin/views/acf-post-type/advanced-settings.php:321 -msgid "No Items Found in Trash" -msgstr "Es wurden keine Elemente im Papierkorb gefunden" - -#. translators: %s Plural form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:317 -msgid "No %s found in Trash" -msgstr "%s konnten nicht im Papierkorb gefunden werden" - -#: includes/admin/views/acf-post-type/advanced-settings.php:302 -msgid "No posts found" -msgstr "Es wurden keine Beiträge gefunden" - -#: includes/admin/views/acf-post-type/advanced-settings.php:301 -msgid "" -"At the top of the post type list screen when there are no posts to display." -msgstr "" -"Oben in der Listenansicht für Inhaltstypen, wenn es keine Beiträge zum " -"Anzeigen gibt." - -#: includes/admin/views/acf-post-type/advanced-settings.php:300 -msgid "No Items Found" -msgstr "Es wurden keine Elemente gefunden" - -#. translators: %s Plural form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:296 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:480 -msgid "No %s found" -msgstr "%s konnten nicht gefunden werden" - -#: includes/admin/views/acf-post-type/advanced-settings.php:281 -msgid "Search Posts" -msgstr "Beiträge suchen" - -#: includes/admin/views/acf-post-type/advanced-settings.php:280 -msgid "At the top of the items screen when searching for an item." -msgstr "Oben in der Elementansicht, während der Suche nach einem Element." - -#: includes/admin/views/acf-post-type/advanced-settings.php:279 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:345 -msgid "Search Items" -msgstr "Elemente suchen" - -#. translators: %s Singular form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:276 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:342 -msgid "Search %s" -msgstr "%s suchen" - -#: includes/admin/views/acf-post-type/advanced-settings.php:261 -msgid "Parent Page:" -msgstr "Übergeordnete Seite:" - -#: includes/admin/views/acf-post-type/advanced-settings.php:260 -msgid "For hierarchical types in the post type list screen." -msgstr "Für hierarchische Typen in der Listenansicht der Inhaltstypen." - -#: includes/admin/views/acf-post-type/advanced-settings.php:259 -msgid "Parent Item Prefix" -msgstr "Präfix des übergeordneten Elementes" - -#. translators: %s Singular form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:256 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:318 -msgid "Parent %s:" -msgstr "%s, übergeordnet:" - -#: includes/admin/views/acf-post-type/advanced-settings.php:241 -msgid "New Post" -msgstr "Neuer Beitrag" - -#: includes/admin/views/acf-post-type/advanced-settings.php:239 -msgid "New Item" -msgstr "Neues Element" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:236 -msgid "New %s" -msgstr "Neuer Inhaltstyp %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:206 -msgid "Add New Post" -msgstr "Neuen Beitrag hinzufügen" - -#: includes/admin/views/acf-post-type/advanced-settings.php:205 -msgid "At the top of the editor screen when adding a new item." -msgstr "Oben in der Editoransicht, wenn ein neues Element hinzugefügt wird." - -#: includes/admin/views/acf-post-type/advanced-settings.php:204 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:256 -msgid "Add New Item" -msgstr "Neues Element hinzufügen" - -#. translators: %s Singular form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:201 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:253 -msgid "Add New %s" -msgstr "Neu hinzufügen: %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:186 -msgid "View Posts" -msgstr "Beiträge anzeigen" - -#: includes/admin/views/acf-post-type/advanced-settings.php:185 -msgid "" -"Appears in the admin bar in the 'All Posts' view, provided the post type " -"supports archives and the home page is not an archive of that post type." -msgstr "" -"Wird in der Adminleiste in der Ansicht „Alle Beiträge“ angezeigt, sofern der " -"Inhaltstyp Archive unterstützt und die Homepage kein Archiv dieses " -"Inhaltstyps ist." - -#: includes/admin/views/acf-post-type/advanced-settings.php:184 -msgid "View Items" -msgstr "Elemente anzeigen" - -#: includes/admin/views/acf-post-type/advanced-settings.php:166 -msgid "View Post" -msgstr "Beitrag anzeigen" - -#: includes/admin/views/acf-post-type/advanced-settings.php:165 -msgid "In the admin bar to view item when editing it." -msgstr "In der Adminleiste, um das Element beim Bearbeiten anzuzeigen." - -#: includes/admin/views/acf-post-type/advanced-settings.php:164 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:216 -msgid "View Item" -msgstr "Element anzeigen" - -#. translators: %s Singular form of post type name -#. translators: %s Plural form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:161 -#: includes/admin/views/acf-post-type/advanced-settings.php:181 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:213 -msgid "View %s" -msgstr "%s anzeigen" - -#: includes/admin/views/acf-post-type/advanced-settings.php:146 -msgid "Edit Post" -msgstr "Beitrag bearbeiten" - -#: includes/admin/views/acf-post-type/advanced-settings.php:145 -msgid "At the top of the editor screen when editing an item." -msgstr "Oben in der Editoransicht, wenn ein Element bearbeitet wird." - -#: includes/admin/views/acf-post-type/advanced-settings.php:144 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:196 -msgid "Edit Item" -msgstr "Element bearbeiten" - -#. translators: %s Singular form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:141 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:193 -msgid "Edit %s" -msgstr "%s bearbeiten" - -#: includes/admin/views/acf-post-type/advanced-settings.php:126 -msgid "All Posts" -msgstr "Alle Beiträge" - -#: includes/admin/views/acf-post-type/advanced-settings.php:125 -#: includes/admin/views/acf-post-type/advanced-settings.php:220 -#: includes/admin/views/acf-post-type/advanced-settings.php:240 -msgid "In the post type submenu in the admin dashboard." -msgstr "Im Untermenü des Inhaltstyps im Admin-Dashboard." - -#: includes/admin/views/acf-post-type/advanced-settings.php:124 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:176 -msgid "All Items" -msgstr "Alle Elemente" - -#. translators: %s Plural form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:121 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:173 -msgid "All %s" -msgstr "Alle %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:105 -msgid "Admin menu name for the post type." -msgstr "Name des Admin-Menüs für den Inhaltstyp." - -#: includes/admin/views/acf-post-type/advanced-settings.php:104 -msgid "Menu Name" -msgstr "Menüname" - -#: includes/admin/views/acf-post-type/advanced-settings.php:90 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:142 -msgid "Regenerate all labels using the Singular and Plural labels" -msgstr "" -"Alle Beschriftungen unter Verwendung der Einzahl- und Mehrzahl-" -"Beschriftungen neu generieren" - -#: includes/admin/views/acf-post-type/advanced-settings.php:88 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:140 -msgid "Regenerate" -msgstr "Neu generieren" - -#: includes/admin/views/acf-post-type/advanced-settings.php:79 -msgid "Active post types are enabled and registered with WordPress." -msgstr "Aktive Inhaltstypen sind aktiviert und in WordPress registriert." - -#: includes/admin/views/acf-post-type/advanced-settings.php:63 -msgid "A descriptive summary of the post type." -msgstr "Eine beschreibende Zusammenfassung des Inhaltstyps." - -#: includes/admin/views/acf-post-type/advanced-settings.php:48 -msgid "Add Custom" -msgstr "Individuell hinzufügen" - -#: includes/admin/views/acf-post-type/advanced-settings.php:42 -msgid "Enable various features in the content editor." -msgstr "Verschiedene Funktionen im Inhalts-Editor aktivieren." - -#: includes/admin/views/acf-post-type/advanced-settings.php:31 -msgid "Post Formats" -msgstr "Beitragsformate" - -#: includes/admin/views/acf-post-type/advanced-settings.php:25 -msgid "Editor" -msgstr "Editor" - -#: includes/admin/views/acf-post-type/advanced-settings.php:24 -msgid "Trackbacks" -msgstr "Trackbacks" - -#: includes/admin/views/acf-post-type/basic-settings.php:87 -msgid "Select existing taxonomies to classify items of the post type." -msgstr "" -"Vorhandene Taxonomien auswählen, um Elemente des Inhaltstyps zu " -"kategorisieren." - -#: includes/admin/views/acf-field-group/field.php:145 -msgid "Browse Fields" -msgstr "Felder durchsuchen" - -#: includes/admin/tools/class-acf-admin-tool-import.php:292 -msgid "Nothing to import" -msgstr "Es gibt nichts zu importieren" - -#: includes/admin/tools/class-acf-admin-tool-import.php:287 -msgid ". The Custom Post Type UI plugin can be deactivated." -msgstr ". Das Plugin Custom Post Type UI kann deaktiviert werden." - -#. translators: %d - number of items imported from CPTUI -#: includes/admin/tools/class-acf-admin-tool-import.php:278 -msgid "Imported %d item from Custom Post Type UI -" -msgid_plural "Imported %d items from Custom Post Type UI -" -msgstr[0] "Es wurde %d Element von Custom Post Type UI importiert -" -msgstr[1] "Es wurden %d Elemente von Custom Post Type UI importiert -" - -#: includes/admin/tools/class-acf-admin-tool-import.php:262 -msgid "Failed to import taxonomies." -msgstr "Der Import der Taxonomien ist fehlgeschlagen." - -#: includes/admin/tools/class-acf-admin-tool-import.php:244 -msgid "Failed to import post types." -msgstr "Der Import der Inhaltstypen ist fehlgeschlagen." - -#: includes/admin/tools/class-acf-admin-tool-import.php:233 -msgid "Nothing from Custom Post Type UI plugin selected for import." -msgstr "" -"Es wurde nichts aus dem Plugin Custom Post Type UI für den Import ausgewählt." - -#: includes/admin/tools/class-acf-admin-tool-import.php:209 -msgid "Imported 1 item" -msgid_plural "Imported %s items" -msgstr[0] "1 Element wurde importiert" -msgstr[1] "%s Elemente wurden importiert" - -#: includes/admin/tools/class-acf-admin-tool-import.php:122 -msgid "" -"Importing a Post Type or Taxonomy with the same key as one that already " -"exists will overwrite the settings for the existing Post Type or Taxonomy " -"with those of the import." -msgstr "" -"Wenn ein Inhaltstyp oder eine Taxonomie mit einem Schlüssel importiert wird, " -"der bereits vorhanden ist, werden die Einstellungen des vorhandenen " -"Inhaltstyps oder der vorhandenen Taxonomie mit denen des Imports " -"überschrieben." - -#: includes/admin/tools/class-acf-admin-tool-import.php:111 -#: includes/admin/tools/class-acf-admin-tool-import.php:127 -msgid "Import from Custom Post Type UI" -msgstr "Aus Custom Post Type UI importieren" - -#: includes/admin/tools/class-acf-admin-tool-export.php:412 -msgid "" -"The following code can be used to register a local version of the selected " -"items. Storing field groups, post types, or taxonomies locally can provide " -"many benefits such as faster load times, version control & dynamic fields/" -"settings. Simply copy and paste the following code to your theme's functions." -"php file or include it within an external file, then deactivate or delete " -"the items from the ACF admin." -msgstr "" -"Der folgende Code kann verwendet werden, um eine lokale Version der " -"ausgewählten Elemente zu registrieren. Die lokale Speicherung von " -"Feldgruppen, Inhaltstypen oder Taxonomien kann viele Vorteile bieten, wie " -"z. B. schnellere Ladezeiten, Versionskontrolle und dynamische Felder/" -"Einstellungen. Kopiere den folgenden Code in die Datei functions.php deines " -"Themes oder füge ihn in eine externe Datei ein und deaktiviere oder lösche " -"anschließend die Elemente in der ACF-Administration." - -#: includes/admin/tools/class-acf-admin-tool-export.php:411 -msgid "Export - Generate PHP" -msgstr "Export – PHP generieren" - -#: includes/admin/tools/class-acf-admin-tool-export.php:384 -msgid "Export" -msgstr "Export" - -#: includes/admin/tools/class-acf-admin-tool-export.php:276 -msgid "Select Taxonomies" -msgstr "Taxonomien auswählen" - -#: includes/admin/tools/class-acf-admin-tool-export.php:254 -msgid "Select Post Types" -msgstr "Inhaltstypen auswählen" - -#: includes/admin/tools/class-acf-admin-tool-export.php:167 -msgid "Exported 1 item." -msgid_plural "Exported %s items." -msgstr[0] "1 ELement wurde exportiert." -msgstr[1] "%s Elemente wurden exportiert." - -#: includes/admin/post-types/admin-taxonomy.php:129 -#: assets/build/js/acf-internal-post-type.js:182 -#: assets/build/js/acf-internal-post-type.js:256 -msgid "Category" -msgstr "Kategorie" - -#: includes/admin/post-types/admin-taxonomy.php:127 -#: assets/build/js/acf-internal-post-type.js:179 -#: assets/build/js/acf-internal-post-type.js:253 -msgid "Tag" -msgstr "Schlagwort" - -#. translators: %s taxonomy name -#: includes/admin/post-types/admin-taxonomy.php:82 -msgid "%s taxonomy created" -msgstr "Die Taxonomie %s wurde erstellt" - -#. translators: %s taxonomy name -#: includes/admin/post-types/admin-taxonomy.php:76 -msgid "%s taxonomy updated" -msgstr "Die Taxonomie %s wurde aktualisiert" - -#: includes/admin/post-types/admin-taxonomy.php:56 -msgid "Taxonomy draft updated." -msgstr "Der Taxonomie-Entwurf wurde aktualisiert." - -#: includes/admin/post-types/admin-taxonomy.php:55 -msgid "Taxonomy scheduled for." -msgstr "Die Taxonomie wurde geplant für." - -#: includes/admin/post-types/admin-taxonomy.php:54 -msgid "Taxonomy submitted." -msgstr "Die Taxonomie wurde übermittelt." - -#: includes/admin/post-types/admin-taxonomy.php:53 -msgid "Taxonomy saved." -msgstr "Die Taxonomie wurde gespeichert." - -#: includes/admin/post-types/admin-taxonomy.php:49 -msgid "Taxonomy deleted." -msgstr "Die Taxonomie wurde gelöscht." - -#: includes/admin/post-types/admin-taxonomy.php:48 -msgid "Taxonomy updated." -msgstr "Die Taxonomie wurde aktualisiert." - -#: includes/admin/post-types/admin-taxonomies.php:377 -#: includes/admin/post-types/admin-taxonomy.php:157 -msgid "" -"This taxonomy could not be registered because its key is in use by another " -"taxonomy registered by another plugin or theme." -msgstr "" -"Diese Taxonomie konnte nicht registriert werden, da der Schlüssel von einer " -"anderen Taxonomie, die von einem anderen Plugin oder Theme registriert " -"wurde, genutzt wird." - -#. translators: %s number of taxonomies synchronized -#: includes/admin/post-types/admin-taxonomies.php:359 -msgid "Taxonomy synchronized." -msgid_plural "%s taxonomies synchronized." -msgstr[0] "Die Taxonomie wurde synchronisiert." -msgstr[1] "%s Taxonomien wurden synchronisiert." - -#. translators: %s number of taxonomies duplicated -#: includes/admin/post-types/admin-taxonomies.php:352 -msgid "Taxonomy duplicated." -msgid_plural "%s taxonomies duplicated." -msgstr[0] "Die Taxonomie wurde dupliziert." -msgstr[1] "%s Taxonomien wurden dupliziert." - -#. translators: %s number of taxonomies deactivated -#: includes/admin/post-types/admin-taxonomies.php:345 -msgid "Taxonomy deactivated." -msgid_plural "%s taxonomies deactivated." -msgstr[0] "Die Taxonomie wurde deaktiviert." -msgstr[1] "%s Taxonomien wurden deaktiviert." - -#. translators: %s number of taxonomies activated -#: includes/admin/post-types/admin-taxonomies.php:338 -msgid "Taxonomy activated." -msgid_plural "%s taxonomies activated." -msgstr[0] "Die Taxonomie wurde aktiviert." -msgstr[1] "%s Taxonomien wurden aktiviert." - -#: includes/admin/post-types/admin-taxonomies.php:139 -msgid "Terms" -msgstr "Begriffe" - -#. translators: %s number of post types synchronized -#: includes/admin/post-types/admin-post-types.php:352 -msgid "Post type synchronized." -msgid_plural "%s post types synchronized." -msgstr[0] "Der Inhaltstyp wurde synchronisiert." -msgstr[1] "%s Inhaltstypen wurden synchronisiert." - -#. translators: %s number of post types duplicated -#: includes/admin/post-types/admin-post-types.php:345 -msgid "Post type duplicated." -msgid_plural "%s post types duplicated." -msgstr[0] "Der Inhaltstyp wurde dupliziert." -msgstr[1] "%s Inhaltstypen wurden dupliziert." - -#. translators: %s number of post types deactivated -#: includes/admin/post-types/admin-post-types.php:338 -msgid "Post type deactivated." -msgid_plural "%s post types deactivated." -msgstr[0] "Der Inhaltstyp wurde deaktiviert." -msgstr[1] "%s Inhaltstypen wurden deaktiviert." - -#. translators: %s number of post types activated -#: includes/admin/post-types/admin-post-types.php:331 -msgid "Post type activated." -msgid_plural "%s post types activated." -msgstr[0] "Der Inhaltstyp wurde aktiviert." -msgstr[1] "%s Inhaltstypen wurden aktiviert." - -#: includes/admin/post-types/admin-post-types.php:112 -#: includes/admin/post-types/admin-taxonomies.php:137 -#: includes/admin/tools/class-acf-admin-tool-import.php:82 -#: includes/admin/views/acf-taxonomy/basic-settings.php:82 -#: includes/post-types/class-acf-post-type.php:91 -msgid "Post Types" -msgstr "Inhaltstypen" - -#: includes/admin/post-types/admin-post-type.php:162 -#: includes/admin/post-types/admin-taxonomy.php:164 -msgid "Advanced Settings" -msgstr "Erweiterte Einstellungen" - -#: includes/admin/post-types/admin-post-type.php:161 -#: includes/admin/post-types/admin-taxonomy.php:163 -msgid "Basic Settings" -msgstr "Grundlegende Einstellungen" - -#: includes/admin/post-types/admin-post-type.php:155 -#: includes/admin/post-types/admin-post-types.php:370 -msgid "" -"This post type could not be registered because its key is in use by another " -"post type registered by another plugin or theme." -msgstr "" -"Dieser Inhaltstyp konnte nicht registriert werden, da dessen Schlüssel von " -"einem anderen Inhaltstyp, der von einem anderen Plugin oder Theme " -"registriert wurde, genutzt wird." - -#: includes/admin/post-types/admin-post-type.php:128 -#: assets/build/js/acf-internal-post-type.js:176 -#: assets/build/js/acf-internal-post-type.js:250 -msgid "Pages" -msgstr "Seiten" - -#: includes/admin/admin-internal-post-type.php:355 -msgid "Link Existing Field Groups" -msgstr "" - -#. translators: %s post type name -#: includes/admin/post-types/admin-post-type.php:80 -msgid "%s post type created" -msgstr "Der Inhaltstyp %s wurde erstellt" - -#. translators: %s taxonomy name -#: includes/admin/post-types/admin-taxonomy.php:78 -msgid "Add fields to %s" -msgstr "Felder zu %s hinzufügen" - -#. translators: %s post type name -#: includes/admin/post-types/admin-post-type.php:76 -msgid "%s post type updated" -msgstr "Der Inhaltstyp %s wurde aktualisiert" - -#: includes/admin/post-types/admin-post-type.php:56 -msgid "Post type draft updated." -msgstr "Der Inhaltstyp-Entwurf wurde aktualisiert." - -#: includes/admin/post-types/admin-post-type.php:55 -msgid "Post type scheduled for." -msgstr "Der Inhaltstyp wurde geplant für." - -#: includes/admin/post-types/admin-post-type.php:54 -msgid "Post type submitted." -msgstr "Der Inhaltstyp wurde übermittelt." - -#: includes/admin/post-types/admin-post-type.php:53 -msgid "Post type saved." -msgstr "Der Inhaltstyp wurde gespeichert." - -#: includes/admin/post-types/admin-post-type.php:50 -msgid "Post type updated." -msgstr "Der Inhaltstyp wurde aktualisiert." - -#: includes/admin/post-types/admin-post-type.php:49 -msgid "Post type deleted." -msgstr "Der Inhaltstyp wurde gelöscht." - -#: includes/admin/post-types/admin-field-group.php:120 -#: assets/build/js/acf-field-group.js:1146 -#: assets/build/js/acf-field-group.js:1366 -msgid "Type to search..." -msgstr "Tippen, um zu suchen …" - -#: includes/admin/post-types/admin-field-group.php:105 -#: assets/build/js/acf-field-group.js:1172 -#: assets/build/js/acf-field-group.js:2319 -#: assets/build/js/acf-field-group.js:1414 -#: assets/build/js/acf-field-group.js:2727 -msgid "PRO Only" -msgstr "Nur Pro" - -#: includes/admin/post-types/admin-field-group.php:97 -#: assets/build/js/acf-internal-post-type.js:308 -#: assets/build/js/acf-internal-post-type.js:417 -msgid "Field groups linked successfully." -msgstr "Die Feldgruppen wurden erfolgreich verlinkt." - -#. translators: %s - URL to ACF tools page. -#: includes/admin/admin.php:195 -msgid "" -"Import Post Types and Taxonomies registered with Custom Post Type UI and " -"manage them with ACF. Get Started." -msgstr "" -"Importiere Inhaltstypen und Taxonomien, die mit Custom Post Type UI " -"registriert wurden, und verwalte sie mit ACF. Jetzt starten." - -#: includes/admin/admin.php:48 includes/admin/admin.php:267 -msgid "ACF" -msgstr "ACF" - -#: includes/admin/admin-internal-post-type.php:322 -msgid "taxonomy" -msgstr "Taxonomie" - -#: includes/admin/admin-internal-post-type.php:322 -msgid "post type" -msgstr "Inhaltstyp" - -#: includes/admin/admin-internal-post-type.php:346 -msgid "Done" -msgstr "Erledigt" - -#: includes/admin/admin-internal-post-type.php:332 -msgid "Field Group(s)" -msgstr "" - -#: includes/admin/admin-internal-post-type.php:331 -msgid "Select one or many field groups..." -msgstr "Wähle eine Feldgruppe oder mehrere ..." - -#: includes/admin/admin-internal-post-type.php:330 -msgid "Please select the field groups to link." -msgstr "Bitte wähle die Feldgruppe zum Verlinken aus." - -#: includes/admin/admin-internal-post-type.php:288 -msgid "Field group linked successfully." -msgid_plural "Field groups linked successfully." -msgstr[0] "Die Feldgruppe wurde erfolgreich verlinkt." -msgstr[1] "Die Feldgruppen wurden erfolgreich verlinkt." - -#: includes/admin/admin-internal-post-type-list.php:261 -#: includes/admin/post-types/admin-post-types.php:371 -#: includes/admin/post-types/admin-taxonomies.php:378 -msgctxt "post status" -msgid "Registration Failed" -msgstr "Die Registrierung ist fehlgeschlagen" - -#: includes/admin/admin-internal-post-type-list.php:260 -msgid "" -"This item could not be registered because its key is in use by another item " -"registered by another plugin or theme." -msgstr "" -"Dieses Element konnte nicht registriert werden, da dessen Schlüssel von " -"einem anderen Element, das von einem anderen Plugin oder Theme registriert " -"wurde, genutzt wird." - -#: includes/acf-internal-post-type-functions.php:482 -#: includes/acf-internal-post-type-functions.php:511 -msgid "REST API" -msgstr "REST-API" - -#: includes/acf-internal-post-type-functions.php:481 -#: includes/acf-internal-post-type-functions.php:510 -#: includes/acf-internal-post-type-functions.php:537 -msgid "Permissions" -msgstr "Berechtigungen" - -#: includes/acf-internal-post-type-functions.php:480 -#: includes/acf-internal-post-type-functions.php:509 -msgid "URLs" -msgstr "URLs" - -#: includes/acf-internal-post-type-functions.php:479 -#: includes/acf-internal-post-type-functions.php:508 -#: includes/acf-internal-post-type-functions.php:535 -msgid "Visibility" -msgstr "Sichtbarkeit" - -#: includes/acf-internal-post-type-functions.php:478 -#: includes/acf-internal-post-type-functions.php:507 -#: includes/acf-internal-post-type-functions.php:536 -msgid "Labels" -msgstr "Beschriftungen" - -#: includes/admin/post-types/admin-field-group.php:269 -msgid "Field Settings Tabs" -msgstr "Tabs für Feldeinstellungen" - -#. Author URI of the plugin -msgid "" -"https://wpengine.com/?utm_source=wordpress." -"org&utm_medium=referral&utm_campaign=plugin_directory&utm_content=advanced_custom_fields" -msgstr "" -"https://wpengine.com/?utm_source=wordpress." -"org&utm_medium=referral&utm_campaign=plugin_directory&utm_content=advanced_custom_fields" - -#: includes/api/api-template.php:867 -msgid "[ACF shortcode value disabled for preview]" -msgstr "[Die Vorschau des ACF-Shortcodes wurde deaktiviert]" - -#: includes/admin/admin-internal-post-type.php:298 -#: includes/admin/post-types/admin-field-group.php:571 -msgid "Close Modal" -msgstr "Modal schließen" - -#: includes/admin/post-types/admin-field-group.php:96 -#: assets/build/js/acf-field-group.js:1670 -#: assets/build/js/acf-field-group.js:1993 -msgid "Field moved to other group" -msgstr "Das Feld wurde zu einer anderen Gruppe verschoben" - -#: includes/admin/post-types/admin-field-group.php:95 -#: assets/build/js/acf.js:1437 assets/build/js/acf.js:1517 -msgid "Close modal" -msgstr "Modal schließen" - -#: includes/fields/class-acf-field-tab.php:125 -msgid "Start a new group of tabs at this tab." -msgstr "Eine neue Gruppe von Tabs in diesem Tab beginnen." - -#: includes/fields/class-acf-field-tab.php:124 -msgid "New Tab Group" -msgstr "Neue Tab-Gruppe" - -#: includes/fields/class-acf-field-select.php:451 -#: includes/fields/class-acf-field-true_false.php:200 -msgid "Use a stylized checkbox using select2" -msgstr "Ein stylisches Auswahlkästchen mit select2 verwenden" - -#: includes/fields/class-acf-field-radio.php:260 -msgid "Save Other Choice" -msgstr "Eine andere Auswahlmöglichkeit speichern" - -#: includes/fields/class-acf-field-radio.php:249 -msgid "Allow Other Choice" -msgstr "Eine andere Auswahlmöglichkeit erlauben" - -#: includes/fields/class-acf-field-checkbox.php:450 -msgid "Add Toggle All" -msgstr "„Alles umschalten“ hinzufügen" - -#: includes/fields/class-acf-field-checkbox.php:409 -msgid "Save Custom Values" -msgstr "Individuelle Werte speichern" - -#: includes/fields/class-acf-field-checkbox.php:398 -msgid "Allow Custom Values" -msgstr "Individuelle Werte zulassen" - -#: includes/fields/class-acf-field-checkbox.php:148 -msgid "Checkbox custom values cannot be empty. Uncheck any empty values." -msgstr "" -"Individuelle Werte von Auswahlkästchen dürfen nicht leer sein. Deaktiviere " -"alle leeren Werte." - -#: includes/admin/views/global/navigation.php:248 -msgid "Updates" -msgstr "Aktualisierungen" - -#: includes/admin/views/global/navigation.php:176 -msgid "Advanced Custom Fields logo" -msgstr "Advanced-Custom-Fields-Logo" - -#: includes/admin/views/global/form-top.php:89 -msgid "Save Changes" -msgstr "Änderungen speichern" - -#: includes/admin/views/global/form-top.php:76 -msgid "Field Group Title" -msgstr "Feldgruppen-Titel" - -#: includes/admin/views/acf-post-type/advanced-settings.php:704 -#: includes/admin/views/global/form-top.php:3 -msgid "Add title" -msgstr "Titel hinzufügen" - -#. translators: %s url to getting started guide -#: includes/admin/views/acf-field-group/list-empty.php:20 -#: includes/admin/views/acf-post-type/list-empty.php:12 -#: includes/admin/views/acf-taxonomy/list-empty.php:12 -#: includes/admin/views/options-page-preview.php:13 -msgid "" -"New to ACF? Take a look at our getting " -"started guide." -msgstr "" -"Neu bei ACF? Wirf einen Blick auf die " -"Anleitung zum Starten (engl.)." - -#: includes/admin/views/acf-field-group/list-empty.php:15 -msgid "Add Field Group" -msgstr "Feldgruppe hinzufügen" - -#. translators: %s url to creating a field group page -#: includes/admin/views/acf-field-group/list-empty.php:10 -msgid "" -"ACF uses field groups to group custom " -"fields together, and then attach those fields to edit screens." -msgstr "" -"ACF verwendet Feldgruppen, um " -"individuelle Felder zu gruppieren und diese dann in Bearbeitungsansichten " -"anzuhängen." - -#: includes/admin/views/acf-field-group/list-empty.php:5 -msgid "Add Your First Field Group" -msgstr "Deine erste Feldgruppe hinzufügen" - -#: includes/admin/admin-options-pages-preview.php:28 -#: includes/admin/views/acf-field-group/pro-features.php:54 -#: includes/admin/views/global/navigation.php:86 -#: includes/admin/views/global/navigation.php:250 -msgid "Options Pages" -msgstr "Optionen-Seiten" - -#: includes/admin/views/acf-field-group/pro-features.php:50 -msgid "ACF Blocks" -msgstr "ACF-Blöcke" - -#: includes/admin/views/acf-field-group/pro-features.php:58 -msgid "Gallery Field" -msgstr "Galerie-Feld" - -#: includes/admin/views/acf-field-group/pro-features.php:38 -msgid "Flexible Content Field" -msgstr "Feld „Flexibler Inhalt“" - -#: includes/admin/views/acf-field-group/pro-features.php:42 -msgid "Repeater Field" -msgstr "Wiederholungs-Feld" - -#: includes/admin/views/global/navigation.php:212 -msgid "Unlock Extra Features with ACF PRO" -msgstr "Zusatzfunktionen mit ACF PRO freischalten" - -#: includes/admin/views/acf-field-group/options.php:267 -msgid "Delete Field Group" -msgstr "Feldgruppe löschen" - -#. translators: 1: Post creation date 2: Post creation time -#: includes/admin/views/acf-field-group/options.php:261 -msgid "Created on %1$s at %2$s" -msgstr "Erstellt am %1$s um %2$s" - -#: includes/acf-field-group-functions.php:497 -msgid "Group Settings" -msgstr "Gruppeneinstellungen" - -#: includes/acf-field-group-functions.php:495 -msgid "Location Rules" -msgstr "Regeln für die Position" - -#. translators: %s url to field types list -#: includes/admin/views/acf-field-group/fields.php:72 -msgid "" -"Choose from over 30 field types. Learn " -"more." -msgstr "" -"Wähle aus mehr als 30 Feldtypen. Mehr " -"erfahren (engl.)." - -#: includes/admin/views/acf-field-group/fields.php:65 -msgid "" -"Get started creating new custom fields for your posts, pages, custom post " -"types and other WordPress content." -msgstr "" -"Beginne mit der Erstellung neuer individueller Felder für deine Beiträge, " -"Seiten, individuellen Inhaltstypen und sonstigen WordPress-Inhalten." - -#: includes/admin/views/acf-field-group/fields.php:64 -msgid "Add Your First Field" -msgstr "Füge dein erstes Feld hinzu" - -#. translators: A symbol (or text, if not available in your locale) meaning -#. "Order Number", in terms of positional placement. -#: includes/admin/views/acf-field-group/fields.php:43 -msgid "#" -msgstr "#" - -#: includes/admin/views/acf-field-group/fields.php:33 -#: includes/admin/views/acf-field-group/fields.php:67 -#: includes/admin/views/acf-field-group/fields.php:103 -#: includes/admin/views/global/form-top.php:85 -msgid "Add Field" -msgstr "Feld hinzufügen" - -#: includes/acf-field-group-functions.php:496 includes/fields.php:410 -msgid "Presentation" -msgstr "Präsentation" - -#: includes/fields.php:409 -msgid "Validation" -msgstr "Validierung" - -#: includes/acf-internal-post-type-functions.php:477 -#: includes/acf-internal-post-type-functions.php:506 includes/fields.php:408 -msgid "General" -msgstr "Allgemein" - -#: includes/admin/tools/class-acf-admin-tool-import.php:70 -msgid "Import JSON" -msgstr "JSON importieren" - -#: includes/admin/tools/class-acf-admin-tool-export.php:392 -msgid "Export As JSON" -msgstr "Als JSON exportieren" - -#. translators: %s number of field groups deactivated -#: includes/admin/post-types/admin-field-groups.php:367 -msgid "Field group deactivated." -msgid_plural "%s field groups deactivated." -msgstr[0] "Die Feldgruppe wurde deaktiviert." -msgstr[1] "%s Feldgruppen wurden deaktiviert." - -#. translators: %s number of field groups activated -#: includes/admin/post-types/admin-field-groups.php:360 -msgid "Field group activated." -msgid_plural "%s field groups activated." -msgstr[0] "Die Feldgruppe wurde aktiviert." -msgstr[1] "%s Feldgruppen wurden aktiviert." - -#: includes/admin/admin-internal-post-type-list.php:452 -#: includes/admin/admin-internal-post-type-list.php:478 -msgid "Deactivate" -msgstr "Deaktivieren" - -#: includes/admin/admin-internal-post-type-list.php:452 -msgid "Deactivate this item" -msgstr "Dieses Element deaktivieren" - -#: includes/admin/admin-internal-post-type-list.php:448 -#: includes/admin/admin-internal-post-type-list.php:477 -msgid "Activate" -msgstr "Aktivieren" - -#: includes/admin/admin-internal-post-type-list.php:448 -msgid "Activate this item" -msgstr "Dieses Element aktivieren" - -#: includes/admin/post-types/admin-field-group.php:92 -#: assets/build/js/acf-field-group.js:2812 -#: assets/build/js/acf-field-group.js:3313 -msgid "Move field group to trash?" -msgstr "Soll die Feldgruppe in den Papierkorb verschoben werden?" - -#: acf.php:497 includes/admin/admin-internal-post-type-list.php:248 -#: includes/admin/post-types/admin-field-group.php:297 -#: includes/admin/post-types/admin-post-type.php:295 -#: includes/admin/post-types/admin-taxonomy.php:297 -msgctxt "post status" -msgid "Inactive" -msgstr "Inaktiv" - -#. Author of the plugin -msgid "WP Engine" -msgstr "WP Engine" - -#: acf.php:555 -msgid "" -"Advanced Custom Fields and Advanced Custom Fields PRO should not be active " -"at the same time. We've automatically deactivated Advanced Custom Fields PRO." -msgstr "" -"Advanced Custom Fields und Advanced Custom Fields PRO sollten nicht " -"gleichzeitig aktiviert sein. Advanced Custom Fields PRO wurde automatisch " -"deaktiviert." - -#: acf.php:553 -msgid "" -"Advanced Custom Fields and Advanced Custom Fields PRO should not be active " -"at the same time. We've automatically deactivated Advanced Custom Fields." -msgstr "" -"Advanced Custom Fields und Advanced Custom Fields PRO sollten nicht " -"gleichzeitig aktiviert sein. Advanced Custom Fields wurde automatisch " -"deaktiviert." - -#: includes/acf-value-functions.php:374 -msgid "" -"%1$s - We've detected one or more calls to retrieve ACF " -"field values before ACF has been initialized. This is not supported and can " -"result in malformed or missing data. Learn how to fix this." -msgstr "" -"%1$s – Es wurde mindestens ein Versuch festgestellt, ACF-" -"Feldwerte abzurufen, bevor ACF initialisiert wurde. Dies wird nicht " -"unterstützt und kann zu fehlerhaften oder fehlenden Daten führen. Lerne, wie du das beheben kannst (engl.)." - -#: includes/fields/class-acf-field-user.php:551 -msgid "%1$s must have a user with the %2$s role." -msgid_plural "%1$s must have a user with one of the following roles: %2$s" -msgstr[0] "%1$s muss einen Benutzer mit der %2$s-Rolle haben." -msgstr[1] "%1$s muss einen Benutzer mit einer der folgenden rollen haben: %2$s" - -#: includes/fields/class-acf-field-user.php:542 -msgid "%1$s must have a valid user ID." -msgstr "%1$s muss eine gültige Benutzer-ID haben." - -#: includes/fields/class-acf-field-user.php:380 -msgid "Invalid request." -msgstr "Ungültige Anfrage." - -#: includes/fields/class-acf-field-select.php:684 -msgid "%1$s is not one of %2$s" -msgstr "%1$s ist nicht eins von %2$s" - -#: includes/fields/class-acf-field-post_object.php:700 -msgid "%1$s must have term %2$s." -msgid_plural "%1$s must have one of the following terms: %2$s" -msgstr[0] "%1$s muss den Begriff %2$s haben." -msgstr[1] "%1$s muss einen der folgenden Begriffe haben: %2$s" - -#: includes/fields/class-acf-field-post_object.php:684 -msgid "%1$s must be of post type %2$s." -msgid_plural "%1$s must be of one of the following post types: %2$s" -msgstr[0] "%1$s muss vom Inhaltstyp %2$s sein." -msgstr[1] "%1$s muss einer der folgenden Inhaltstypen sein: %2$s" - -#: includes/fields/class-acf-field-post_object.php:675 -msgid "%1$s must have a valid post ID." -msgstr "%1$s muss eine gültige Beitrags-ID haben." - -#: includes/fields/class-acf-field-file.php:475 -msgid "%s requires a valid attachment ID." -msgstr "%s erfordert eine gültige Anhangs-ID." - -#: includes/admin/views/acf-field-group/options.php:233 -msgid "Show in REST API" -msgstr "Im REST-API anzeigen" - -#: includes/fields/class-acf-field-color_picker.php:168 -msgid "Enable Transparency" -msgstr "Transparenz aktivieren" - -#: includes/fields/class-acf-field-color_picker.php:187 -msgid "RGBA Array" -msgstr "RGBA-Array" - -#: includes/fields/class-acf-field-color_picker.php:98 -msgid "RGBA String" -msgstr "RGBA-Zeichenfolge" - -#: includes/fields/class-acf-field-color_picker.php:97 -#: includes/fields/class-acf-field-color_picker.php:186 -msgid "Hex String" -msgstr "Hex-Zeichenfolge" - -#: includes/admin/views/browse-fields-modal.php:65 -msgid "Upgrade to PRO" -msgstr "Upgrade auf PRO" - -#: includes/admin/post-types/admin-field-group.php:297 -#: includes/admin/post-types/admin-post-type.php:295 -#: includes/admin/post-types/admin-taxonomy.php:297 -msgctxt "post status" -msgid "Active" -msgstr "Aktiv" - -#: includes/fields/class-acf-field-email.php:181 -msgid "'%s' is not a valid email address" -msgstr "‚%s‘ ist keine gültige E-Mail-Adresse" - -#: includes/fields/class-acf-field-color_picker.php:76 -msgid "Color value" -msgstr "Farbwert" - -#: includes/fields/class-acf-field-color_picker.php:74 -msgid "Select default color" -msgstr "Standardfarbe auswählen" - -#: includes/fields/class-acf-field-color_picker.php:72 -msgid "Clear color" -msgstr "Farbe entfernen" - -#: includes/acf-wp-functions.php:90 -msgid "Blocks" -msgstr "Blöcke" - -#: includes/acf-wp-functions.php:86 -msgid "Options" -msgstr "Optionen" - -#: includes/acf-wp-functions.php:82 -msgid "Users" -msgstr "Benutzer" - -#: includes/acf-wp-functions.php:78 -msgid "Menu items" -msgstr "Menüelemente" - -#: includes/acf-wp-functions.php:70 -msgid "Widgets" -msgstr "Widgets" - -#: includes/acf-wp-functions.php:62 -msgid "Attachments" -msgstr "Anhänge" - -#: includes/acf-wp-functions.php:57 -#: includes/admin/post-types/admin-post-types.php:137 -#: includes/admin/post-types/admin-taxonomies.php:112 -#: includes/admin/tools/class-acf-admin-tool-import.php:93 -#: includes/admin/views/acf-post-type/basic-settings.php:86 -#: includes/post-types/class-acf-taxonomy.php:90 -#: includes/post-types/class-acf-taxonomy.php:91 -msgid "Taxonomies" -msgstr "Taxonomien" - -#: includes/acf-wp-functions.php:44 -#: includes/admin/post-types/admin-post-type.php:126 -#: includes/admin/post-types/admin-post-types.php:139 -#: includes/admin/views/acf-post-type/advanced-settings.php:106 -#: assets/build/js/acf-internal-post-type.js:173 -#: assets/build/js/acf-internal-post-type.js:247 -msgid "Posts" -msgstr "Beiträge" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:76 -msgid "Last updated: %s" -msgstr "Zuletzt aktualisiert: %s" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:70 -msgid "Sorry, this post is unavailable for diff comparison." -msgstr "" -"Leider steht diese Feldgruppe nicht für einen Diff-Vergleich zur Verfügung." - -#: includes/ajax/class-acf-ajax-local-json-diff.php:42 -msgid "Invalid field group parameter(s)." -msgstr "Ungültige(r) Feldgruppen-Parameter." - -#: includes/admin/admin-internal-post-type-list.php:413 -msgid "Awaiting save" -msgstr "Ein Speichern wird erwartet" - -#: includes/admin/admin-internal-post-type-list.php:410 -msgid "Saved" -msgstr "Gespeichert" - -#: includes/admin/admin-internal-post-type-list.php:406 -#: includes/admin/tools/class-acf-admin-tool-import.php:49 -msgid "Import" -msgstr "Importieren" - -#: includes/admin/admin-internal-post-type-list.php:402 -msgid "Review changes" -msgstr "Änderungen überprüfen" - -#: includes/admin/admin-internal-post-type-list.php:378 -msgid "Located in: %s" -msgstr "Ist zu finden in: %s" - -#: includes/admin/admin-internal-post-type-list.php:375 -msgid "Located in plugin: %s" -msgstr "Liegt im Plugin: %s" - -#: includes/admin/admin-internal-post-type-list.php:372 -msgid "Located in theme: %s" -msgstr "Liegt im Theme: %s" - -#: includes/admin/post-types/admin-field-groups.php:261 -msgid "Various" -msgstr "Verschiedene" - -#: includes/admin/admin-internal-post-type-list.php:216 -#: includes/admin/admin-internal-post-type-list.php:485 -msgid "Sync changes" -msgstr "Änderungen synchronisieren" - -#: includes/admin/admin-internal-post-type-list.php:215 -msgid "Loading diff" -msgstr "Diff laden" - -#: includes/admin/admin-internal-post-type-list.php:214 -msgid "Review local JSON changes" -msgstr "Lokale JSON-Änderungen überprüfen" - -#: includes/admin/admin.php:170 -msgid "Visit website" -msgstr "Website besuchen" - -#: includes/admin/admin.php:169 -msgid "View details" -msgstr "Details anzeigen" - -#: includes/admin/admin.php:168 -msgid "Version %s" -msgstr "Version %s" - -#: includes/admin/admin.php:167 -msgid "Information" -msgstr "Information" - -#: includes/admin/admin.php:158 -msgid "" -"Help Desk. The support professionals on " -"our Help Desk will assist with your more in depth, technical challenges." -msgstr "" -"Help-Desk. Die Support-Experten unseres " -"Help-Desks werden dir bei komplexeren technischen Herausforderungen " -"unterstützend zur Seite stehen." - -#: includes/admin/admin.php:154 -msgid "" -"Discussions. We have an active and " -"friendly community on our Community Forums who may be able to help you " -"figure out the 'how-tos' of the ACF world." -msgstr "" -"Diskussionen. Wir haben eine aktive und " -"freundliche Community in unseren Community-Foren, die dir vielleicht dabei " -"helfen kann, dich mit den „How-tos“ der ACF-Welt vertraut zu machen." - -#: includes/admin/admin.php:150 -msgid "" -"Documentation. Our extensive " -"documentation contains references and guides for most situations you may " -"encounter." -msgstr "" -"Dokumentation (engl.). Diese umfassende " -"Dokumentation beinhaltet Referenzen und Leitfäden zu den meisten " -"Situationen, die du vorfinden wirst." - -#: includes/admin/admin.php:147 -msgid "" -"We are fanatical about support, and want you to get the best out of your " -"website with ACF. If you run into any difficulties, there are several places " -"you can find help:" -msgstr "" -"Wir legen großen Wert auf Support und möchten, dass du mit ACF das Beste aus " -"deiner Website herausholst. Wenn du auf Schwierigkeiten stößt, gibt es " -"mehrere Stellen, an denen du Hilfe finden kannst:" - -#: includes/admin/admin.php:144 includes/admin/admin.php:146 -msgid "Help & Support" -msgstr "Hilfe und Support" - -#: includes/admin/admin.php:135 -msgid "" -"Please use the Help & Support tab to get in touch should you find yourself " -"requiring assistance." -msgstr "" -"Falls du Hilfe benötigst, nutze bitte den Tab „Hilfe und Support“, um dich " -"mit uns in Verbindung zu setzen." - -#: includes/admin/admin.php:132 -msgid "" -"Before creating your first Field Group, we recommend first reading our Getting started guide to familiarize " -"yourself with the plugin's philosophy and best practises." -msgstr "" -"Bevor du deine erste Feldgruppe erstellst, wird empfohlen, vorab die " -"Anleitung Erste Schritte (engl.) " -"durchzulesen, um dich mit der Philosophie hinter dem Plugin und den besten " -"Praktiken vertraut zu machen." - -#: includes/admin/admin.php:130 -msgid "" -"The Advanced Custom Fields plugin provides a visual form builder to " -"customize WordPress edit screens with extra fields, and an intuitive API to " -"display custom field values in any theme template file." -msgstr "" -"Das Advanced-Custom-Fields-Plugin bietet einen visuellen Formular-Builder, " -"um WordPress-Bearbeitungsansichten mit weiteren Feldern zu individualisieren " -"und eine intuitive API, um individuelle Feldwerte in beliebigen Theme-" -"Template-Dateien anzuzeigen." - -#: includes/admin/admin.php:127 includes/admin/admin.php:129 -msgid "Overview" -msgstr "Übersicht" - -#: includes/locations.php:36 -msgid "Location type \"%s\" is already registered." -msgstr "Positions-Typ „%s“ ist bereits registriert." - -#: includes/locations.php:25 -msgid "Class \"%s\" does not exist." -msgstr "Die Klasse „%s“ existiert nicht." - -#: includes/ajax/class-acf-ajax.php:157 -msgid "Invalid nonce." -msgstr "Ungültiger Nonce." - -#: includes/fields/class-acf-field-user.php:375 -msgid "Error loading field." -msgstr "Fehler beim Laden des Felds." - -#: assets/build/js/acf-input.js:2750 assets/build/js/acf-input.js:2819 -#: assets/build/js/acf-input.js:2926 assets/build/js/acf-input.js:3000 -msgid "Location not found: %s" -msgstr "Die Position wurde nicht gefunden: %s" - -#: includes/forms/form-user.php:353 -msgid "Error: %s" -msgstr "Fehler: %s" - -#: includes/locations/class-acf-location-widget.php:22 -msgid "Widget" -msgstr "Widget" - -#: includes/locations/class-acf-location-user-role.php:24 -msgid "User Role" -msgstr "Benutzerrolle" - -#: includes/locations/class-acf-location-comment.php:22 -msgid "Comment" -msgstr "Kommentar" - -#: includes/locations/class-acf-location-post-format.php:22 -msgid "Post Format" -msgstr "Beitragsformat" - -#: includes/locations/class-acf-location-nav-menu-item.php:22 -msgid "Menu Item" -msgstr "Menüelement" - -#: includes/locations/class-acf-location-post-status.php:22 -msgid "Post Status" -msgstr "Beitragsstatus" - -#: includes/acf-wp-functions.php:74 -#: includes/locations/class-acf-location-nav-menu.php:89 -msgid "Menus" -msgstr "Menüs" - -#: includes/locations/class-acf-location-nav-menu.php:80 -msgid "Menu Locations" -msgstr "Menüpositionen" - -#: includes/locations/class-acf-location-nav-menu.php:22 -msgid "Menu" -msgstr "Menü" - -#: includes/locations/class-acf-location-post-taxonomy.php:22 -msgid "Post Taxonomy" -msgstr "Beitrags-Taxonomie" - -#: includes/locations/class-acf-location-page-type.php:114 -msgid "Child Page (has parent)" -msgstr "Unterseite (hat übergeordnete Seite)" - -#: includes/locations/class-acf-location-page-type.php:113 -msgid "Parent Page (has children)" -msgstr "Übergeordnete Seite (hat Unterseiten)" - -#: includes/locations/class-acf-location-page-type.php:112 -msgid "Top Level Page (no parent)" -msgstr "Seite der ersten Ebene (keine übergeordnete)" - -#: includes/locations/class-acf-location-page-type.php:111 -msgid "Posts Page" -msgstr "Beitrags-Seite" - -#: includes/locations/class-acf-location-page-type.php:110 -msgid "Front Page" -msgstr "Startseite" - -#: includes/locations/class-acf-location-page-type.php:22 -msgid "Page Type" -msgstr "Seitentyp" - -#: includes/locations/class-acf-location-current-user.php:73 -msgid "Viewing back end" -msgstr "Backend anzeigen" - -#: includes/locations/class-acf-location-current-user.php:72 -msgid "Viewing front end" -msgstr "Frontend anzeigen" - -#: includes/locations/class-acf-location-current-user.php:71 -msgid "Logged in" -msgstr "Angemeldet" - -#: includes/locations/class-acf-location-current-user.php:22 -msgid "Current User" -msgstr "Aktueller Benutzer" - -#: includes/locations/class-acf-location-page-template.php:22 -msgid "Page Template" -msgstr "Seiten-Template" - -#: includes/locations/class-acf-location-user-form.php:74 -msgid "Register" -msgstr "Registrieren" - -#: includes/locations/class-acf-location-user-form.php:73 -msgid "Add / Edit" -msgstr "Hinzufügen/bearbeiten" - -#: includes/locations/class-acf-location-user-form.php:22 -msgid "User Form" -msgstr "Benutzerformular" - -#: includes/locations/class-acf-location-page-parent.php:22 -msgid "Page Parent" -msgstr "Übergeordnete Seite" - -#: includes/locations/class-acf-location-current-user-role.php:77 -msgid "Super Admin" -msgstr "Super-Administrator" - -#: includes/locations/class-acf-location-current-user-role.php:22 -msgid "Current User Role" -msgstr "Aktuelle Benutzerrolle" - -#: includes/locations/class-acf-location-page-template.php:73 -#: includes/locations/class-acf-location-post-template.php:85 -msgid "Default Template" -msgstr "Standard-Template" - -#: includes/locations/class-acf-location-post-template.php:22 -msgid "Post Template" -msgstr "Beitrags-Template" - -#: includes/locations/class-acf-location-post-category.php:22 -msgid "Post Category" -msgstr "Beitragskategorie" - -#: includes/locations/class-acf-location-attachment.php:84 -msgid "All %s formats" -msgstr "Alle %s Formate" - -#: includes/locations/class-acf-location-attachment.php:22 -msgid "Attachment" -msgstr "Anhang" - -#: includes/validation.php:366 -msgid "%s value is required" -msgstr "%s Wert ist erforderlich" - -#: includes/admin/views/acf-field-group/conditional-logic.php:59 -msgid "Show this field if" -msgstr "Dieses Feld anzeigen, falls" - -#: includes/admin/views/acf-field-group/conditional-logic.php:26 -#: includes/admin/views/acf-field-group/field.php:109 includes/fields.php:411 -msgid "Conditional Logic" -msgstr "Bedingte Logik" - -#: includes/admin/views/acf-field-group/conditional-logic.php:156 -#: includes/admin/views/acf-field-group/location-rule.php:92 -msgid "and" -msgstr "und" - -#: includes/admin/post-types/admin-field-groups.php:123 -#: includes/admin/post-types/admin-post-types.php:143 -#: includes/admin/post-types/admin-taxonomies.php:143 -msgid "Local JSON" -msgstr "Lokales JSON" - -#: includes/admin/views/acf-field-group/pro-features.php:46 -msgid "Clone Field" -msgstr "Feld duplizieren" - -#: includes/admin/views/upgrade/notice.php:30 -msgid "" -"Please also check all premium add-ons (%s) are updated to the latest version." -msgstr "" -"Stelle bitte ebenfalls sicher, dass alle Premium-Add-ons (%s) auf die " -"neueste Version aktualisiert wurden." - -#: includes/admin/views/upgrade/notice.php:28 -msgid "" -"This version contains improvements to your database and requires an upgrade." -msgstr "" -"Diese Version enthält Verbesserungen für deine Datenbank und erfordert ein " -"Upgrade." - -#: includes/admin/views/upgrade/notice.php:28 -msgid "Thank you for updating to %1$s v%2$s!" -msgstr "Danke für die Aktualisierung auf %1$s v%2$s!" - -#: includes/admin/views/upgrade/notice.php:27 -msgid "Database Upgrade Required" -msgstr "Ein Upgrade der Datenbank ist erforderlich" - -#: includes/admin/post-types/admin-field-group.php:141 -#: includes/admin/views/upgrade/notice.php:18 -msgid "Options Page" -msgstr "Optionen-Seite" - -#: includes/admin/views/upgrade/notice.php:15 includes/fields.php:462 -msgid "Gallery" -msgstr "Galerie" - -#: includes/admin/views/upgrade/notice.php:12 includes/fields.php:452 -msgid "Flexible Content" -msgstr "Flexibler Inhalt" - -#: includes/admin/views/upgrade/notice.php:9 includes/fields.php:472 -msgid "Repeater" -msgstr "Wiederholung" - -#: includes/admin/views/tools/tools.php:24 -msgid "Back to all tools" -msgstr "Zurück zur Werkzeugübersicht" - -#: includes/admin/views/acf-field-group/options.php:195 -msgid "" -"If multiple field groups appear on an edit screen, the first field group's " -"options will be used (the one with the lowest order number)" -msgstr "" -"Werden in der Bearbeitungsansicht mehrere Feldgruppen angezeigt, werden die " -"Optionen der ersten Feldgruppe verwendet (die mit der niedrigsten " -"Sortierungs-Nummer)" - -#: includes/admin/views/acf-field-group/options.php:195 -msgid "Select items to hide them from the edit screen." -msgstr "" -"Die Elemente auswählen, die in der Bearbeitungsansicht verborgen werden sollen." - -#: includes/admin/views/acf-field-group/options.php:194 -msgid "Hide on screen" -msgstr "In der Ansicht ausblenden" - -#: includes/admin/views/acf-field-group/options.php:186 -msgid "Send Trackbacks" -msgstr "Trackbacks senden" - -#: includes/admin/post-types/admin-taxonomy.php:128 -#: includes/admin/views/acf-field-group/options.php:185 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:159 -#: assets/build/js/acf-internal-post-type.js:180 -#: assets/build/js/acf-internal-post-type.js:254 -msgid "Tags" -msgstr "Schlagwörter" - -#: includes/admin/post-types/admin-taxonomy.php:130 -#: includes/admin/views/acf-field-group/options.php:184 -#: assets/build/js/acf-internal-post-type.js:183 -#: assets/build/js/acf-internal-post-type.js:257 -msgid "Categories" -msgstr "Kategorien" - -#: includes/admin/views/acf-field-group/options.php:182 -#: includes/admin/views/acf-post-type/advanced-settings.php:28 -msgid "Page Attributes" -msgstr "Seiten-Attribute" - -#: includes/admin/views/acf-field-group/options.php:181 -msgid "Format" -msgstr "Format" - -#: includes/admin/views/acf-field-group/options.php:180 -#: includes/admin/views/acf-post-type/advanced-settings.php:22 -msgid "Author" -msgstr "Autor" - -#: includes/admin/views/acf-field-group/options.php:179 -msgid "Slug" -msgstr "Titelform" - -#: includes/admin/views/acf-field-group/options.php:178 -#: includes/admin/views/acf-post-type/advanced-settings.php:27 -msgid "Revisions" -msgstr "Revisionen" - -#: includes/acf-wp-functions.php:66 -#: includes/admin/views/acf-field-group/options.php:177 -#: includes/admin/views/acf-post-type/advanced-settings.php:23 -msgid "Comments" -msgstr "Kommentare" - -#: includes/admin/views/acf-field-group/options.php:176 -msgid "Discussion" -msgstr "Diskussion" - -#: includes/admin/views/acf-field-group/options.php:174 -#: includes/admin/views/acf-post-type/advanced-settings.php:26 -msgid "Excerpt" -msgstr "Textauszug" - -#: includes/admin/views/acf-field-group/options.php:173 -msgid "Content Editor" -msgstr "Inhalts-Editor" - -#: includes/admin/views/acf-field-group/options.php:172 -msgid "Permalink" -msgstr "Permalink" - -#: includes/admin/views/acf-field-group/options.php:250 -msgid "Shown in field group list" -msgstr "Wird in der Feldgruppen-Liste angezeigt" - -#: includes/admin/views/acf-field-group/options.php:157 -msgid "Field groups with a lower order will appear first" -msgstr "Die Feldgruppen mit niedrigerer Ordnung werden zuerst angezeigt" - -#: includes/admin/views/acf-field-group/options.php:156 -msgid "Order No." -msgstr "Sortierungs-Nr." - -#: includes/admin/views/acf-field-group/options.php:147 -msgid "Below fields" -msgstr "Unterhalb der Felder" - -#: includes/admin/views/acf-field-group/options.php:146 -msgid "Below labels" -msgstr "Unterhalb der Beschriftungen" - -#: includes/admin/views/acf-field-group/options.php:139 -msgid "Instruction Placement" -msgstr "Platzierung der Anweisungen" - -#: includes/admin/views/acf-field-group/options.php:122 -msgid "Label Placement" -msgstr "Platzierung der Beschriftung" - -#: includes/admin/views/acf-field-group/options.php:110 -msgid "Side" -msgstr "Seite" - -#: includes/admin/views/acf-field-group/options.php:109 -msgid "Normal (after content)" -msgstr "Normal (nach Inhalt)" - -#: includes/admin/views/acf-field-group/options.php:108 -msgid "High (after title)" -msgstr "Hoch (nach dem Titel)" - -#: includes/admin/views/acf-field-group/options.php:101 -msgid "Position" -msgstr "Position" - -#: includes/admin/views/acf-field-group/options.php:92 -msgid "Seamless (no metabox)" -msgstr "Übergangslos (keine Metabox)" - -#: includes/admin/views/acf-field-group/options.php:91 -msgid "Standard (WP metabox)" -msgstr "Standard (WP-Metabox)" - -#: includes/admin/views/acf-field-group/options.php:84 -msgid "Style" -msgstr "Stil" - -#: includes/admin/views/acf-field-group/fields.php:55 -msgid "Type" -msgstr "Typ" - -#: includes/admin/post-types/admin-field-groups.php:117 -#: includes/admin/post-types/admin-post-types.php:136 -#: includes/admin/post-types/admin-taxonomies.php:136 -#: includes/admin/views/acf-field-group/fields.php:54 -msgid "Key" -msgstr "Schlüssel" - -#. translators: Hidden accessibility text for the positional order number of -#. the field. -#: includes/admin/views/acf-field-group/fields.php:48 -msgid "Order" -msgstr "Reihenfolge" - -#: includes/admin/views/acf-field-group/field.php:322 -msgid "Close Field" -msgstr "Feld schließen" - -#: includes/admin/views/acf-field-group/field.php:253 -msgid "id" -msgstr "ID" - -#: includes/admin/views/acf-field-group/field.php:237 -msgid "class" -msgstr "Klasse" - -#: includes/admin/views/acf-field-group/field.php:279 -msgid "width" -msgstr "Breite" - -#: includes/admin/views/acf-field-group/field.php:273 -msgid "Wrapper Attributes" -msgstr "Wrapper-Attribute" - -#: includes/admin/views/acf-field-group/field.php:196 -msgid "Required" -msgstr "Erforderlich" - -#: includes/admin/views/acf-field-group/field.php:221 -msgid "Instructions for authors. Shown when submitting data" -msgstr "" -"Anleitungen für Autoren. Das wird angezeigt, wenn Daten übermittelt werden" - -#: includes/admin/views/acf-field-group/field.php:220 -msgid "Instructions" -msgstr "Anweisungen" - -#: includes/admin/views/acf-field-group/field.php:129 -msgid "Field Type" -msgstr "Feldtyp" - -#: includes/admin/views/acf-field-group/field.php:170 -msgid "Single word, no spaces. Underscores and dashes allowed" -msgstr "" -"Einzelnes Wort ohne Leerzeichen. Unterstriche und Bindestriche sind erlaubt" - -#: includes/admin/views/acf-field-group/field.php:169 -msgid "Field Name" -msgstr "Feldname" - -#: includes/admin/views/acf-field-group/field.php:157 -msgid "This is the name which will appear on the EDIT page" -msgstr "Dies ist der Name, der auf der BEARBEITUNGS-Seite erscheinen wird" - -#: includes/admin/views/acf-field-group/field.php:156 -#: includes/admin/views/browse-fields-modal.php:59 -msgid "Field Label" -msgstr "Feldbeschriftung" - -#: includes/admin/views/acf-field-group/field.php:81 -msgid "Delete" -msgstr "Löschen" - -#: includes/admin/views/acf-field-group/field.php:81 -msgid "Delete field" -msgstr "Feld löschen" - -#: includes/admin/views/acf-field-group/field.php:79 -msgid "Move" -msgstr "Verschieben" - -#: includes/admin/views/acf-field-group/field.php:79 -msgid "Move field to another group" -msgstr "Feld in eine andere Gruppe verschieben" - -#: includes/admin/views/acf-field-group/field.php:77 -msgid "Duplicate field" -msgstr "Feld duplizieren" - -#: includes/admin/views/acf-field-group/field.php:73 -#: includes/admin/views/acf-field-group/field.php:76 -msgid "Edit field" -msgstr "Feld bearbeiten" - -#: includes/admin/views/acf-field-group/field.php:69 -msgid "Drag to reorder" -msgstr "Ziehen zum Sortieren" - -#: includes/admin/post-types/admin-field-group.php:103 -#: includes/admin/views/acf-field-group/location-group.php:3 -#: assets/build/js/acf-field-group.js:2347 -#: assets/build/js/acf-field-group.js:2763 -msgid "Show this field group if" -msgstr "Diese Feldgruppe anzeigen, falls" - -#: includes/admin/views/upgrade/upgrade.php:94 -#: includes/ajax/class-acf-ajax-upgrade.php:34 -msgid "No updates available." -msgstr "Es sind keine Aktualisierungen verfügbar." - -#: includes/admin/views/upgrade/upgrade.php:33 -msgid "Database upgrade complete. See what's new" -msgstr "" -"Das Datenbank-Upgrade wurde abgeschlossen. Schau nach was es " -"Neues gibt" - -#: includes/admin/views/upgrade/upgrade.php:30 -msgid "Reading upgrade tasks..." -msgstr "Aufgaben für das Upgrade einlesen ..." - -#: includes/admin/views/upgrade/network.php:165 -#: includes/admin/views/upgrade/upgrade.php:65 -msgid "Upgrade failed." -msgstr "Das Upgrade ist fehlgeschlagen." - -#: includes/admin/views/upgrade/network.php:162 -msgid "Upgrade complete." -msgstr "Das Upgrade wurde abgeschlossen." - -#: includes/admin/views/upgrade/network.php:148 -#: includes/admin/views/upgrade/upgrade.php:31 -msgid "Upgrading data to version %s" -msgstr "Das Upgrade der Daten auf Version %s wird ausgeführt" - -#: includes/admin/views/upgrade/network.php:121 -#: includes/admin/views/upgrade/notice.php:44 -msgid "" -"It is strongly recommended that you backup your database before proceeding. " -"Are you sure you wish to run the updater now?" -msgstr "" -"Es wird dringend empfohlen, dass du deine Datenbank sicherst, bevor du " -"fortfährst. Bist du sicher, dass du die Aktualisierung jetzt durchführen " -"möchtest?" - -#: includes/admin/views/upgrade/network.php:117 -msgid "Please select at least one site to upgrade." -msgstr "Bitte mindestens eine Website für das Upgrade auswählen." - -#: includes/admin/views/upgrade/network.php:97 -msgid "" -"Database Upgrade complete. Return to network dashboard" -msgstr "" -"Das Upgrade der Datenbank wurde fertiggestellt. Zurück zum " -"Netzwerk-Dashboard" - -#: includes/admin/views/upgrade/network.php:80 -msgid "Site is up to date" -msgstr "Die Website ist aktuell" - -#: includes/admin/views/upgrade/network.php:78 -msgid "Site requires database upgrade from %1$s to %2$s" -msgstr "Die Website erfordert ein Upgrade der Datenbank von %1$s auf %2$s" - -#: includes/admin/views/upgrade/network.php:36 -#: includes/admin/views/upgrade/network.php:47 -msgid "Site" -msgstr "Website" - -#: includes/admin/views/upgrade/network.php:26 -#: includes/admin/views/upgrade/network.php:27 -#: includes/admin/views/upgrade/network.php:96 -msgid "Upgrade Sites" -msgstr "Upgrade der Websites" - -#: includes/admin/views/upgrade/network.php:26 -msgid "" -"The following sites require a DB upgrade. Check the ones you want to update " -"and then click %s." -msgstr "" -"Folgende Websites erfordern ein Upgrade der Datenbank. Markiere die, die du " -"aktualisieren möchtest und klick dann auf %s." - -#: includes/admin/views/acf-field-group/conditional-logic.php:171 -#: includes/admin/views/acf-field-group/locations.php:38 -msgid "Add rule group" -msgstr "Eine Regelgruppe hinzufügen" - -#: includes/admin/views/acf-field-group/locations.php:10 -msgid "" -"Create a set of rules to determine which edit screens will use these " -"advanced custom fields" -msgstr "" -"Erstelle einen Satz von Regeln, um festzulegen, in welchen " -"Bearbeitungsansichten diese „advanced custom fields“ genutzt werden" - -#: includes/admin/views/acf-field-group/locations.php:9 -msgid "Rules" -msgstr "Regeln" - -#: includes/admin/tools/class-acf-admin-tool-export.php:510 -msgid "Copied" -msgstr "Kopiert" - -#: includes/admin/tools/class-acf-admin-tool-export.php:486 -msgid "Copy to clipboard" -msgstr "In die Zwischenablage kopieren" - -#: includes/admin/tools/class-acf-admin-tool-export.php:385 -msgid "" -"Select the items you would like to export and then select your export " -"method. Export As JSON to export to a .json file which you can then import " -"to another ACF installation. Generate PHP to export to PHP code which you " -"can place in your theme." -msgstr "" -"Wähle, welche Feldgruppen du exportieren möchtest und wähle dann die " -"Exportmethode. Exportiere als JSON, um eine JSON-Datei zu exportieren, die " -"du im Anschluss in eine andere ACF-Installation importieren kannst. Verwende " -"den „PHP erstellen“-Button, um den resultierenden PHP-Code zu exportieren, " -"den du in dein Theme einfügen kannst." - -#: includes/admin/tools/class-acf-admin-tool-export.php:233 -msgid "Select Field Groups" -msgstr "Feldgruppen auswählen" - -#: includes/admin/tools/class-acf-admin-tool-export.php:96 -#: includes/admin/tools/class-acf-admin-tool-export.php:131 -msgid "No field groups selected" -msgstr "Es wurden keine Feldgruppen ausgewählt" - -#: includes/admin/tools/class-acf-admin-tool-export.php:39 -#: includes/admin/tools/class-acf-admin-tool-export.php:393 -#: includes/admin/tools/class-acf-admin-tool-export.php:421 -msgid "Generate PHP" -msgstr "PHP erstellen" - -#: includes/admin/tools/class-acf-admin-tool-export.php:35 -msgid "Export Field Groups" -msgstr "Feldgruppen exportieren" - -#: includes/admin/tools/class-acf-admin-tool-import.php:177 -msgid "Import file empty" -msgstr "Die importierte Datei ist leer" - -#: includes/admin/tools/class-acf-admin-tool-import.php:168 -msgid "Incorrect file type" -msgstr "Inkorrekter Dateityp" - -#: includes/admin/tools/class-acf-admin-tool-import.php:163 -msgid "Error uploading file. Please try again" -msgstr "Fehler beim Upload der Datei. Bitte erneut versuchen" - -#: includes/admin/tools/class-acf-admin-tool-import.php:50 -msgid "" -"Select the Advanced Custom Fields JSON file you would like to import. When " -"you click the import button below, ACF will import the items in that file." -msgstr "" -"Wähle die Advanced-Custom-Fields-JSON-Datei, die du importieren möchtest. " -"Wenn du den Import-Button unten anklickst, wird ACF die Feldgruppen " -"importieren." - -#: includes/admin/tools/class-acf-admin-tool-import.php:27 -msgid "Import Field Groups" -msgstr "Feldgruppen importieren" - -#: includes/admin/admin-internal-post-type-list.php:401 -msgid "Sync" -msgstr "Synchronisieren" - -#: includes/admin/admin-internal-post-type-list.php:858 -msgid "Select %s" -msgstr "%s auswählen" - -#: includes/admin/admin-internal-post-type-list.php:442 -#: includes/admin/admin-internal-post-type-list.php:474 -#: includes/admin/views/acf-field-group/field.php:77 -msgid "Duplicate" -msgstr "Duplizieren" - -#: includes/admin/admin-internal-post-type-list.php:442 -msgid "Duplicate this item" -msgstr "Dieses Element duplizieren" - -#: includes/admin/views/acf-post-type/advanced-settings.php:41 -msgid "Supports" -msgstr "Hilfe" - -#: includes/admin/admin.php:261 includes/admin/views/browse-fields-modal.php:92 -msgid "Documentation" -msgstr "Dokumentation" - -#: includes/admin/post-types/admin-field-groups.php:116 -#: includes/admin/post-types/admin-post-types.php:135 -#: includes/admin/post-types/admin-taxonomies.php:135 -#: includes/admin/views/acf-field-group/options.php:249 -#: includes/admin/views/acf-post-type/advanced-settings.php:62 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:114 -#: includes/admin/views/upgrade/network.php:38 -#: includes/admin/views/upgrade/network.php:49 -msgid "Description" -msgstr "Beschreibung" - -#: includes/admin/admin-internal-post-type-list.php:398 -#: includes/admin/admin-internal-post-type-list.php:747 -msgid "Sync available" -msgstr "Synchronisierung verfügbar" - -#. translators: %s number of field groups synchronized -#: includes/admin/post-types/admin-field-groups.php:381 -msgid "Field group synchronized." -msgid_plural "%s field groups synchronized." -msgstr[0] "Die Feldgruppe wurde synchronisiert." -msgstr[1] "%s Feldgruppen wurden synchronisiert." - -#. translators: %s number of field groups duplicated -#: includes/admin/post-types/admin-field-groups.php:374 -msgid "Field group duplicated." -msgid_plural "%s field groups duplicated." -msgstr[0] "Die Feldgruppe wurde dupliziert." -msgstr[1] "%s Feldgruppen wurden dupliziert." - -#: includes/admin/admin-internal-post-type-list.php:137 -msgid "Active (%s)" -msgid_plural "Active (%s)" -msgstr[0] "Aktiv (%s)" -msgstr[1] "Aktiv (%s)" - -#: includes/admin/admin-upgrade.php:254 -msgid "Review sites & upgrade" -msgstr "Websites prüfen und ein Upgrade durchführen" - -#: includes/admin/admin-upgrade.php:59 includes/admin/admin-upgrade.php:93 -#: includes/admin/admin-upgrade.php:94 includes/admin/admin-upgrade.php:230 -#: includes/admin/views/upgrade/network.php:24 -#: includes/admin/views/upgrade/upgrade.php:26 -msgid "Upgrade Database" -msgstr "Upgrade der Datenbank" - -#: includes/admin/views/acf-field-group/options.php:175 -#: includes/admin/views/acf-post-type/advanced-settings.php:30 -msgid "Custom Fields" -msgstr "Individuelle Felder" - -#: includes/admin/post-types/admin-field-group.php:616 -msgid "Move Field" -msgstr "Feld verschieben" - -#: includes/admin/post-types/admin-field-group.php:605 -#: includes/admin/post-types/admin-field-group.php:609 -msgid "Please select the destination for this field" -msgstr "Bitte das Ziel für dieses Feld auswählen" - -#. translators: Confirmation message once a field has been moved to a different -#. field group. -#: includes/admin/post-types/admin-field-group.php:567 -msgid "The %1$s field can now be found in the %2$s field group" -msgstr "Das %1$s-Feld kann jetzt in der %2$s-Feldgruppe gefunden werden" - -#: includes/admin/post-types/admin-field-group.php:564 -msgid "Move Complete." -msgstr "Das Verschieben ist abgeschlossen." - -#: includes/admin/views/acf-field-group/field.php:39 -#: includes/admin/views/acf-field-group/options.php:217 -#: includes/admin/views/acf-post-type/advanced-settings.php:78 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:130 -msgid "Active" -msgstr "Aktiv" - -#: includes/admin/post-types/admin-field-group.php:266 -msgid "Field Keys" -msgstr "Feldschlüssel" - -#: includes/admin/post-types/admin-field-group.php:164 -#: includes/admin/tools/class-acf-admin-tool-export.php:342 -msgid "Settings" -msgstr "Einstellungen" - -#: includes/admin/post-types/admin-field-groups.php:118 -msgid "Location" -msgstr "Position" - -#: includes/admin/post-types/admin-field-group.php:104 -#: assets/build/js/acf-input.js:983 assets/build/js/acf-input.js:1075 -msgid "Null" -msgstr "Null" - -#: includes/admin/post-types/admin-field-group.php:101 -#: includes/class-acf-internal-post-type.php:730 -#: includes/post-types/class-acf-field-group.php:345 -#: assets/build/js/acf-field-group.js:1510 -#: assets/build/js/acf-field-group.js:1821 -msgid "copy" -msgstr "kopieren" - -#: includes/admin/post-types/admin-field-group.php:100 -#: assets/build/js/acf-field-group.js:623 -#: assets/build/js/acf-field-group.js:778 -msgid "(this field)" -msgstr "(dieses Feld)" - -#: includes/admin/post-types/admin-field-group.php:98 -#: assets/build/js/acf-input.js:918 assets/build/js/acf-input.js:943 -#: assets/build/js/acf-input.js:1002 assets/build/js/acf-input.js:1030 -msgid "Checked" -msgstr "Ausgewählt" - -#: includes/admin/post-types/admin-field-group.php:94 -#: assets/build/js/acf-field-group.js:1615 -#: assets/build/js/acf-field-group.js:1933 -msgid "Move Custom Field" -msgstr "Individuelles Feld verschieben" - -#: includes/admin/post-types/admin-field-group.php:93 -#: assets/build/js/acf-field-group.js:649 -#: assets/build/js/acf-field-group.js:804 -msgid "No toggle fields available" -msgstr "Es sind keine Felder zum Umschalten verfügbar" - -#: includes/admin/post-types/admin-field-group.php:91 -msgid "Field group title is required" -msgstr "Ein Titel für die Feldgruppe ist erforderlich" - -#: includes/admin/post-types/admin-field-group.php:90 -#: assets/build/js/acf-field-group.js:1604 -#: assets/build/js/acf-field-group.js:1919 -msgid "This field cannot be moved until its changes have been saved" -msgstr "" -"Dieses Feld kann erst verschoben werden, wenn dessen Änderungen gespeichert " -"wurden" - -#: includes/admin/post-types/admin-field-group.php:89 -#: assets/build/js/acf-field-group.js:1414 -#: assets/build/js/acf-field-group.js:1716 -msgid "The string \"field_\" may not be used at the start of a field name" -msgstr "Die Zeichenfolge „field_“ darf nicht am Beginn eines Feldnamens stehen" - -#: includes/admin/post-types/admin-field-group.php:71 -msgid "Field group draft updated." -msgstr "Der Entwurf der Feldgruppe wurde aktualisiert." - -#: includes/admin/post-types/admin-field-group.php:70 -msgid "Field group scheduled for." -msgstr "Feldgruppe geplant für." - -#: includes/admin/post-types/admin-field-group.php:69 -msgid "Field group submitted." -msgstr "Die Feldgruppe wurde übertragen." - -#: includes/admin/post-types/admin-field-group.php:68 -msgid "Field group saved." -msgstr "Die Feldgruppe wurde gespeichert." - -#: includes/admin/post-types/admin-field-group.php:67 -msgid "Field group published." -msgstr "Die Feldgruppe wurde veröffentlicht." - -#: includes/admin/post-types/admin-field-group.php:64 -msgid "Field group deleted." -msgstr "Die Feldgruppe wurde gelöscht." - -#: includes/admin/post-types/admin-field-group.php:62 -#: includes/admin/post-types/admin-field-group.php:63 -#: includes/admin/post-types/admin-field-group.php:65 -msgid "Field group updated." -msgstr "Die Feldgruppe wurde aktualisiert." - -#: includes/admin/admin-tools.php:118 -#: includes/admin/views/global/navigation.php:246 -#: includes/admin/views/tools/tools.php:21 -msgid "Tools" -msgstr "Werkzeuge" - -#: includes/locations/abstract-acf-location.php:106 -msgid "is not equal to" -msgstr "ist ungleich" - -#: includes/locations/abstract-acf-location.php:105 -msgid "is equal to" -msgstr "ist gleich" - -#: includes/locations.php:102 -msgid "Forms" -msgstr "Formulare" - -#: includes/admin/post-types/admin-post-type.php:127 includes/locations.php:100 -#: includes/locations/class-acf-location-page.php:22 -#: assets/build/js/acf-internal-post-type.js:175 -#: assets/build/js/acf-internal-post-type.js:249 -msgid "Page" -msgstr "Seite" - -#: includes/admin/post-types/admin-post-type.php:125 includes/locations.php:99 -#: includes/locations/class-acf-location-post.php:22 -#: assets/build/js/acf-internal-post-type.js:172 -#: assets/build/js/acf-internal-post-type.js:246 -msgid "Post" -msgstr "Beitrag" - -#: includes/fields.php:354 -msgid "Relational" -msgstr "Relational" - -#: includes/fields.php:353 -msgid "Choice" -msgstr "Auswahl" - -#: includes/fields.php:351 -msgid "Basic" -msgstr "Grundlegend" - -#: includes/fields.php:320 -msgid "Unknown" -msgstr "Unbekannt" - -#: includes/fields.php:320 -msgid "Field type does not exist" -msgstr "Der Feldtyp existiert nicht" - -#: includes/forms/form-front.php:236 -msgid "Spam Detected" -msgstr "Es wurde Spam entdeckt" - -#: includes/forms/form-front.php:107 -msgid "Post updated" -msgstr "Der Beitrag wurde aktualisiert" - -#: includes/forms/form-front.php:106 -msgid "Update" -msgstr "Aktualisieren" - -#: includes/forms/form-front.php:57 -msgid "Validate Email" -msgstr "E-Mail-Adresse bestätigen" - -#: includes/fields.php:352 includes/forms/form-front.php:49 -msgid "Content" -msgstr "Inhalt" - -#: includes/admin/views/acf-post-type/advanced-settings.php:21 -#: includes/forms/form-front.php:40 -msgid "Title" -msgstr "Titel" - -#: includes/assets.php:372 includes/forms/form-comment.php:160 -#: assets/build/js/acf-input.js:7382 assets/build/js/acf-input.js:7968 -msgid "Edit field group" -msgstr "Feldgruppe bearbeiten" - -#: includes/admin/post-types/admin-field-group.php:117 -#: assets/build/js/acf-input.js:1125 assets/build/js/acf-input.js:1230 -msgid "Selection is less than" -msgstr "Die Auswahl ist kleiner als" - -#: includes/admin/post-types/admin-field-group.php:116 -#: assets/build/js/acf-input.js:1106 assets/build/js/acf-input.js:1202 -msgid "Selection is greater than" -msgstr "Die Auswahl ist größer als" - -#: includes/admin/post-types/admin-field-group.php:115 -#: assets/build/js/acf-input.js:1075 assets/build/js/acf-input.js:1170 -msgid "Value is less than" -msgstr "Der Wert ist kleiner als" - -#: includes/admin/post-types/admin-field-group.php:114 -#: assets/build/js/acf-input.js:1045 assets/build/js/acf-input.js:1139 -msgid "Value is greater than" -msgstr "Der Wert ist größer als" - -#: includes/admin/post-types/admin-field-group.php:113 -#: assets/build/js/acf-input.js:888 assets/build/js/acf-input.js:960 -msgid "Value contains" -msgstr "Der Wert enthält" - -#: includes/admin/post-types/admin-field-group.php:112 -#: assets/build/js/acf-input.js:862 assets/build/js/acf-input.js:926 -msgid "Value matches pattern" -msgstr "Der Wert entspricht dem Muster" - -#: includes/admin/post-types/admin-field-group.php:111 -#: assets/build/js/acf-input.js:840 assets/build/js/acf-input.js:1023 -#: assets/build/js/acf-input.js:903 assets/build/js/acf-input.js:1116 -msgid "Value is not equal to" -msgstr "Wert ist ungleich" - -#: includes/admin/post-types/admin-field-group.php:110 -#: assets/build/js/acf-input.js:810 assets/build/js/acf-input.js:964 -#: assets/build/js/acf-input.js:864 assets/build/js/acf-input.js:1053 -msgid "Value is equal to" -msgstr "Der Wert ist gleich" - -#: includes/admin/post-types/admin-field-group.php:109 -#: assets/build/js/acf-input.js:788 assets/build/js/acf-input.js:841 -msgid "Has no value" -msgstr "Hat keinen Wert" - -#: includes/admin/post-types/admin-field-group.php:108 -#: assets/build/js/acf-input.js:758 assets/build/js/acf-input.js:783 -msgid "Has any value" -msgstr "Hat einen Wert" - -#: includes/admin/admin-internal-post-type.php:345 -#: includes/admin/views/browse-fields-modal.php:62 includes/assets.php:353 -#: assets/build/js/acf.js:1564 assets/build/js/acf.js:1658 -msgid "Cancel" -msgstr "Abbrechen" - -#: includes/assets.php:349 assets/build/js/acf.js:1738 -#: assets/build/js/acf.js:1855 -msgid "Are you sure?" -msgstr "Bist du sicher?" - -#: includes/assets.php:369 assets/build/js/acf-input.js:9442 -#: assets/build/js/acf-input.js:10294 -msgid "%d fields require attention" -msgstr "%d Felder erfordern Aufmerksamkeit" - -#: includes/assets.php:368 assets/build/js/acf-input.js:9440 -#: assets/build/js/acf-input.js:10290 -msgid "1 field requires attention" -msgstr "1 Feld erfordert Aufmerksamkeit" - -#: includes/assets.php:367 includes/validation.php:288 -#: includes/validation.php:298 assets/build/js/acf-input.js:9435 -#: assets/build/js/acf-input.js:10285 -msgid "Validation failed" -msgstr "Die Überprüfung ist fehlgeschlagen" - -#: includes/assets.php:366 assets/build/js/acf-input.js:9603 -#: assets/build/js/acf-input.js:10473 -msgid "Validation successful" -msgstr "Die Überprüfung war erfolgreich" - -#: includes/media.php:54 assets/build/js/acf-input.js:7210 -#: assets/build/js/acf-input.js:7772 -msgid "Restricted" -msgstr "Eingeschränkt" - -#: includes/media.php:53 assets/build/js/acf-input.js:7025 -#: assets/build/js/acf-input.js:7536 -msgid "Collapse Details" -msgstr "Details ausblenden" - -#: includes/media.php:52 assets/build/js/acf-input.js:7025 -#: assets/build/js/acf-input.js:7533 -msgid "Expand Details" -msgstr "Details einblenden" - -#: includes/admin/views/acf-post-type/advanced-settings.php:465 -#: includes/media.php:51 assets/build/js/acf-input.js:6892 -#: assets/build/js/acf-input.js:7381 -msgid "Uploaded to this post" -msgstr "Zu diesem Beitrag hochgeladen" - -#: includes/media.php:50 assets/build/js/acf-input.js:6931 -#: assets/build/js/acf-input.js:7420 -msgctxt "verb" -msgid "Update" -msgstr "Aktualisieren" - -#: includes/media.php:49 -msgctxt "verb" -msgid "Edit" -msgstr "Bearbeiten" - -#: includes/assets.php:363 assets/build/js/acf-input.js:9212 -#: assets/build/js/acf-input.js:10056 -msgid "The changes you made will be lost if you navigate away from this page" -msgstr "Deine Änderungen werden verlorengehen, wenn du diese Seite verlässt" - -#: includes/api/api-helpers.php:3395 -msgid "File type must be %s." -msgstr "Der Dateityp muss %s sein." - -#: includes/admin/post-types/admin-field-group.php:102 -#: includes/admin/views/acf-field-group/conditional-logic.php:59 -#: includes/admin/views/acf-field-group/conditional-logic.php:169 -#: includes/admin/views/acf-field-group/location-group.php:3 -#: includes/admin/views/acf-field-group/locations.php:36 -#: includes/api/api-helpers.php:3391 assets/build/js/acf-field-group.js:771 -#: assets/build/js/acf-field-group.js:2385 -#: assets/build/js/acf-field-group.js:933 -#: assets/build/js/acf-field-group.js:2807 -msgid "or" -msgstr "oder" - -#: includes/api/api-helpers.php:3364 -msgid "File size must not exceed %s." -msgstr "Die Dateigröße darf nicht größer als %s sein." - -#: includes/api/api-helpers.php:3359 -msgid "File size must be at least %s." -msgstr "Die Dateigröße muss mindestens %s sein." - -#: includes/api/api-helpers.php:3344 -msgid "Image height must not exceed %dpx." -msgstr "Die Höhe des Bild darf %dpx nicht überschreiten." - -#: includes/api/api-helpers.php:3339 -msgid "Image height must be at least %dpx." -msgstr "Die Höhe des Bildes muss mindestens %dpx sein." - -#: includes/api/api-helpers.php:3325 -msgid "Image width must not exceed %dpx." -msgstr "Die Breite des Bildes darf %dpx nicht überschreiten." - -#: includes/api/api-helpers.php:3320 -msgid "Image width must be at least %dpx." -msgstr "Die Breite des Bildes muss mindestens %dpx sein." - -#: includes/api/api-helpers.php:1561 includes/api/api-term.php:147 -msgid "(no title)" -msgstr "(ohne Titel)" - -#: includes/api/api-helpers.php:853 -msgid "Full Size" -msgstr "Volle Größe" - -#: includes/api/api-helpers.php:812 -msgid "Large" -msgstr "Groß" - -#: includes/api/api-helpers.php:811 -msgid "Medium" -msgstr "Mittel" - -#: includes/api/api-helpers.php:810 -msgid "Thumbnail" -msgstr "Vorschaubild" - -#: includes/acf-field-functions.php:854 -#: includes/admin/post-types/admin-field-group.php:99 -#: assets/build/js/acf-field-group.js:1077 -#: assets/build/js/acf-field-group.js:1260 -msgid "(no label)" -msgstr "(keine Beschriftung)" - -#: includes/fields/class-acf-field-textarea.php:145 -msgid "Sets the textarea height" -msgstr "Legt die Höhe des Textbereichs fest" - -#: includes/fields/class-acf-field-textarea.php:144 -msgid "Rows" -msgstr "Zeilen" - -#: includes/fields/class-acf-field-textarea.php:25 -msgid "Text Area" -msgstr "Textbereich" - -#: includes/fields/class-acf-field-checkbox.php:451 -msgid "Prepend an extra checkbox to toggle all choices" -msgstr "" -"Ein zusätzliches Auswahlfeld voranstellen, um alle Optionen auszuwählen" - -#: includes/fields/class-acf-field-checkbox.php:413 -msgid "Save 'custom' values to the field's choices" -msgstr "Individuelle Werte in den Auswahlmöglichkeiten des Feldes speichern" - -#: includes/fields/class-acf-field-checkbox.php:402 -msgid "Allow 'custom' values to be added" -msgstr "Das Hinzufügen individueller Werte erlauben" - -#: includes/fields/class-acf-field-checkbox.php:38 -msgid "Add new choice" -msgstr "Eine neue Auswahlmöglichkeit hinzufügen" - -#: includes/fields/class-acf-field-checkbox.php:174 -msgid "Toggle All" -msgstr "Alle umschalten" - -#: includes/fields/class-acf-field-page_link.php:506 -msgid "Allow Archives URLs" -msgstr "Archiv-URLs erlauben" - -#: includes/fields/class-acf-field-page_link.php:179 -msgid "Archives" -msgstr "Archive" - -#: includes/fields/class-acf-field-page_link.php:25 -msgid "Page Link" -msgstr "Seiten-Link" - -#: includes/fields/class-acf-field-taxonomy.php:943 -#: includes/locations/class-acf-location-user-form.php:72 -msgid "Add" -msgstr "Hinzufügen" - -#: includes/admin/views/acf-field-group/fields.php:53 -#: includes/fields/class-acf-field-taxonomy.php:908 -msgid "Name" -msgstr "Name" - -#: includes/fields/class-acf-field-taxonomy.php:892 -msgid "%s added" -msgstr "%s hinzugefügt" - -#: includes/fields/class-acf-field-taxonomy.php:856 -msgid "%s already exists" -msgstr "%s ist bereits vorhanden" - -#: includes/fields/class-acf-field-taxonomy.php:844 -msgid "User unable to add new %s" -msgstr "Der Benutzer kann keine neue %s hinzufügen" - -#: includes/fields/class-acf-field-taxonomy.php:742 -msgid "Term ID" -msgstr "Begriffs-ID" - -#: includes/fields/class-acf-field-taxonomy.php:741 -msgid "Term Object" -msgstr "Begriffs-Objekt" - -#: includes/fields/class-acf-field-taxonomy.php:726 -msgid "Load value from posts terms" -msgstr "Den Wert aus den Begriffen des Beitrags laden" - -#: includes/fields/class-acf-field-taxonomy.php:725 -msgid "Load Terms" -msgstr "Begriffe laden" - -#: includes/fields/class-acf-field-taxonomy.php:715 -msgid "Connect selected terms to the post" -msgstr "Verbinde die ausgewählten Begriffe mit dem Beitrag" - -#: includes/fields/class-acf-field-taxonomy.php:714 -msgid "Save Terms" -msgstr "Begriffe speichern" - -#: includes/fields/class-acf-field-taxonomy.php:704 -msgid "Allow new terms to be created whilst editing" -msgstr "Erlaubt das Erstellen neuer Begriffe während des Bearbeitens" - -#: includes/fields/class-acf-field-taxonomy.php:703 -msgid "Create Terms" -msgstr "Begriffe erstellen" - -#: includes/fields/class-acf-field-taxonomy.php:762 -msgid "Radio Buttons" -msgstr "Radiobuttons" - -#: includes/fields/class-acf-field-taxonomy.php:761 -msgid "Single Value" -msgstr "Einzelner Wert" - -#: includes/fields/class-acf-field-taxonomy.php:759 -msgid "Multi Select" -msgstr "Mehrfachauswahl" - -#: includes/fields/class-acf-field-checkbox.php:25 -#: includes/fields/class-acf-field-taxonomy.php:758 -msgid "Checkbox" -msgstr "Auswahlkästchen" - -#: includes/fields/class-acf-field-taxonomy.php:757 -msgid "Multiple Values" -msgstr "Mehrere Werte" - -#: includes/fields/class-acf-field-taxonomy.php:752 -msgid "Select the appearance of this field" -msgstr "Das Design für dieses Feld auswählen" - -#: includes/fields/class-acf-field-taxonomy.php:751 -msgid "Appearance" -msgstr "Design" - -#: includes/fields/class-acf-field-taxonomy.php:693 -msgid "Select the taxonomy to be displayed" -msgstr "Wähle die Taxonomie, welche angezeigt werden soll" - -#: includes/fields/class-acf-field-taxonomy.php:654 -msgctxt "No Terms" -msgid "No %s" -msgstr "Keine %s" - -#: includes/fields/class-acf-field-number.php:266 -msgid "Value must be equal to or lower than %d" -msgstr "Der Wert muss kleiner oder gleich %d sein" - -#: includes/fields/class-acf-field-number.php:259 -msgid "Value must be equal to or higher than %d" -msgstr "Der Wert muss größer oder gleich %d sein" - -#: includes/fields/class-acf-field-number.php:244 -msgid "Value must be a number" -msgstr "Der Wert muss eine Zahl sein" - -#: includes/fields/class-acf-field-number.php:25 -msgid "Number" -msgstr "Numerisch" - -#: includes/fields/class-acf-field-radio.php:264 -msgid "Save 'other' values to the field's choices" -msgstr "Weitere Werte unter den Auswahlmöglichkeiten des Feldes speichern" - -#: includes/fields/class-acf-field-radio.php:253 -msgid "Add 'other' choice to allow for custom values" -msgstr "" -"Das Hinzufügen der Auswahlmöglichkeit ‚weitere‘ erlaubt individuelle Werte" - -#: includes/admin/views/global/navigation.php:196 -msgid "Other" -msgstr "Weitere" - -#: includes/fields/class-acf-field-radio.php:25 -msgid "Radio Button" -msgstr "Radiobutton" - -#: includes/fields/class-acf-field-accordion.php:107 -msgid "" -"Define an endpoint for the previous accordion to stop. This accordion will " -"not be visible." -msgstr "" -"Definiert einen Endpunkt, an dem das vorangegangene Akkordeon endet. Dieses " -"Akkordeon wird nicht sichtbar sein." - -#: includes/fields/class-acf-field-accordion.php:96 -msgid "Allow this accordion to open without closing others." -msgstr "Dieses Akkordeon öffnen, ohne die anderen zu schließen." - -#: includes/fields/class-acf-field-accordion.php:95 -msgid "Multi-Expand" -msgstr "" - -#: includes/fields/class-acf-field-accordion.php:85 -msgid "Display this accordion as open on page load." -msgstr "Dieses Akkordeon beim Laden der Seite in geöffnetem Zustand anzeigen." - -#: includes/fields/class-acf-field-accordion.php:84 -msgid "Open" -msgstr "Geöffnet" - -#: includes/fields/class-acf-field-accordion.php:25 -msgid "Accordion" -msgstr "Akkordeon" - -#: includes/fields/class-acf-field-file.php:267 -#: includes/fields/class-acf-field-file.php:279 -msgid "Restrict which files can be uploaded" -msgstr "Beschränkt, welche Dateien hochgeladen werden können" - -#: includes/fields/class-acf-field-file.php:220 -msgid "File ID" -msgstr "Datei-ID" - -#: includes/fields/class-acf-field-file.php:219 -msgid "File URL" -msgstr "Datei-URL" - -#: includes/fields/class-acf-field-file.php:218 -msgid "File Array" -msgstr "Datei-Array" - -#: includes/fields/class-acf-field-file.php:186 -msgid "Add File" -msgstr "Datei hinzufügen" - -#: includes/admin/tools/class-acf-admin-tool-import.php:156 -#: includes/fields/class-acf-field-file.php:186 -msgid "No file selected" -msgstr "Es wurde keine Datei ausgewählt" - -#: includes/fields/class-acf-field-file.php:150 -msgid "File name" -msgstr "Dateiname" - -#: includes/fields/class-acf-field-file.php:63 -#: assets/build/js/acf-input.js:2474 assets/build/js/acf-input.js:2625 -msgid "Update File" -msgstr "Datei aktualisieren" - -#: includes/fields/class-acf-field-file.php:62 -#: assets/build/js/acf-input.js:2473 assets/build/js/acf-input.js:2624 -msgid "Edit File" -msgstr "Datei bearbeiten" - -#: includes/admin/tools/class-acf-admin-tool-import.php:58 -#: includes/fields/class-acf-field-file.php:61 -#: assets/build/js/acf-input.js:2447 assets/build/js/acf-input.js:2597 -msgid "Select File" -msgstr "Datei auswählen" - -#: includes/fields/class-acf-field-file.php:25 -msgid "File" -msgstr "Datei" - -#: includes/fields/class-acf-field-password.php:25 -msgid "Password" -msgstr "Passwort" - -#: includes/fields/class-acf-field-select.php:392 -msgid "Specify the value returned" -msgstr "Lege den Rückgabewert fest" - -#: includes/fields/class-acf-field-select.php:461 -msgid "Use AJAX to lazy load choices?" -msgstr "Soll AJAX genutzt werden, um Auswahlen verzögert zu laden?" - -#: includes/fields/class-acf-field-checkbox.php:362 -#: includes/fields/class-acf-field-select.php:381 -msgid "Enter each default value on a new line" -msgstr "Jeden Standardwert in einer neuen Zeile eingeben" - -#: includes/fields/class-acf-field-select.php:252 includes/media.php:48 -#: assets/build/js/acf-input.js:6790 assets/build/js/acf-input.js:7266 -msgctxt "verb" -msgid "Select" -msgstr "Auswählen" - -#: includes/fields/class-acf-field-select.php:121 -msgctxt "Select2 JS load_fail" -msgid "Loading failed" -msgstr "Das Laden ist fehlgeschlagen" - -#: includes/fields/class-acf-field-select.php:120 -msgctxt "Select2 JS searching" -msgid "Searching…" -msgstr "Suchen…" - -#: includes/fields/class-acf-field-select.php:119 -msgctxt "Select2 JS load_more" -msgid "Loading more results…" -msgstr "Mehr Ergebnisse laden…" - -#: includes/fields/class-acf-field-select.php:118 -msgctxt "Select2 JS selection_too_long_n" -msgid "You can only select %d items" -msgstr "Du kannst nur %d Elemente auswählen" - -#: includes/fields/class-acf-field-select.php:117 -msgctxt "Select2 JS selection_too_long_1" -msgid "You can only select 1 item" -msgstr "Du kannst nur ein Element auswählen" - -#: includes/fields/class-acf-field-select.php:116 -msgctxt "Select2 JS input_too_long_n" -msgid "Please delete %d characters" -msgstr "Lösche bitte %d Zeichen" - -#: includes/fields/class-acf-field-select.php:115 -msgctxt "Select2 JS input_too_long_1" -msgid "Please delete 1 character" -msgstr "Lösche bitte ein Zeichen" - -#: includes/fields/class-acf-field-select.php:114 -msgctxt "Select2 JS input_too_short_n" -msgid "Please enter %d or more characters" -msgstr "Gib bitte %d oder mehr Zeichen ein" - -#: includes/fields/class-acf-field-select.php:113 -msgctxt "Select2 JS input_too_short_1" -msgid "Please enter 1 or more characters" -msgstr "Gib bitte ein oder mehr Zeichen ein" - -#: includes/fields/class-acf-field-select.php:112 -msgctxt "Select2 JS matches_0" -msgid "No matches found" -msgstr "Es wurden keine Übereinstimmungen gefunden" - -#: includes/fields/class-acf-field-select.php:111 -msgctxt "Select2 JS matches_n" -msgid "%d results are available, use up and down arrow keys to navigate." -msgstr "" -"Es sind %d Ergebnisse verfügbar, benutze die Pfeiltasten um nach oben und " -"unten zu navigieren." - -#: includes/fields/class-acf-field-select.php:110 -msgctxt "Select2 JS matches_1" -msgid "One result is available, press enter to select it." -msgstr "Ein Ergebnis ist verfügbar, Eingabetaste drücken, um es auszuwählen." - -#: includes/fields/class-acf-field-select.php:25 -#: includes/fields/class-acf-field-taxonomy.php:763 -msgctxt "noun" -msgid "Select" -msgstr "Auswahl" - -#: includes/fields/class-acf-field-user.php:73 -msgid "User ID" -msgstr "Benutzer-ID" - -#: includes/fields/class-acf-field-user.php:72 -msgid "User Object" -msgstr "Benutzer-Objekt" - -#: includes/fields/class-acf-field-user.php:71 -msgid "User Array" -msgstr "Benutzer-Array" - -#: includes/fields/class-acf-field-user.php:59 -msgid "All user roles" -msgstr "Alle Benutzerrollen" - -#: includes/fields/class-acf-field-user.php:51 -msgid "Filter by Role" -msgstr "Nach Rolle filtern" - -#: includes/fields/class-acf-field-user.php:15 includes/locations.php:101 -msgid "User" -msgstr "Benutzer" - -#: includes/fields/class-acf-field-separator.php:25 -msgid "Separator" -msgstr "Trennzeichen" - -#: includes/fields/class-acf-field-color_picker.php:75 -msgid "Select Color" -msgstr "Farbe auswählen" - -#: includes/admin/post-types/admin-post-type.php:129 -#: includes/admin/post-types/admin-taxonomy.php:131 -#: includes/fields/class-acf-field-color_picker.php:73 -#: assets/build/js/acf-internal-post-type.js:72 -#: assets/build/js/acf-internal-post-type.js:86 -msgid "Default" -msgstr "Standard" - -#: includes/admin/views/acf-post-type/advanced-settings.php:89 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:141 -#: includes/fields/class-acf-field-color_picker.php:71 -msgid "Clear" -msgstr "Leeren" - -#: includes/fields/class-acf-field-color_picker.php:25 -msgid "Color Picker" -msgstr "Farbpicker" - -#: includes/fields/class-acf-field-date_time_picker.php:88 -msgctxt "Date Time Picker JS pmTextShort" -msgid "P" -msgstr "P" - -#: includes/fields/class-acf-field-date_time_picker.php:87 -msgctxt "Date Time Picker JS pmText" -msgid "PM" -msgstr "PM" - -#: includes/fields/class-acf-field-date_time_picker.php:84 -msgctxt "Date Time Picker JS amTextShort" -msgid "A" -msgstr "A" - -#: includes/fields/class-acf-field-date_time_picker.php:83 -msgctxt "Date Time Picker JS amText" -msgid "AM" -msgstr "AM" - -#: includes/fields/class-acf-field-date_time_picker.php:81 -msgctxt "Date Time Picker JS selectText" -msgid "Select" -msgstr "Auswählen" - -#: includes/fields/class-acf-field-date_time_picker.php:80 -msgctxt "Date Time Picker JS closeText" -msgid "Done" -msgstr "Fertig" - -#: includes/fields/class-acf-field-date_time_picker.php:79 -msgctxt "Date Time Picker JS currentText" -msgid "Now" -msgstr "Jetzt" - -#: includes/fields/class-acf-field-date_time_picker.php:78 -msgctxt "Date Time Picker JS timezoneText" -msgid "Time Zone" -msgstr "Zeitzone" - -#: includes/fields/class-acf-field-date_time_picker.php:77 -msgctxt "Date Time Picker JS microsecText" -msgid "Microsecond" -msgstr "Mikrosekunde" - -#: includes/fields/class-acf-field-date_time_picker.php:76 -msgctxt "Date Time Picker JS millisecText" -msgid "Millisecond" -msgstr "Millisekunde" - -#: includes/fields/class-acf-field-date_time_picker.php:75 -msgctxt "Date Time Picker JS secondText" -msgid "Second" -msgstr "Sekunde" - -#: includes/fields/class-acf-field-date_time_picker.php:74 -msgctxt "Date Time Picker JS minuteText" -msgid "Minute" -msgstr "Minute" - -#: includes/fields/class-acf-field-date_time_picker.php:73 -msgctxt "Date Time Picker JS hourText" -msgid "Hour" -msgstr "Stunde" - -#: includes/fields/class-acf-field-date_time_picker.php:72 -msgctxt "Date Time Picker JS timeText" -msgid "Time" -msgstr "Zeit" - -#: includes/fields/class-acf-field-date_time_picker.php:71 -msgctxt "Date Time Picker JS timeOnlyTitle" -msgid "Choose Time" -msgstr "Zeit wählen" - -#: includes/fields/class-acf-field-date_time_picker.php:25 -msgid "Date Time Picker" -msgstr "Datums- und Zeitauswahl" - -#: includes/fields/class-acf-field-accordion.php:106 -msgid "Endpoint" -msgstr "Endpunkt" - -#: includes/admin/views/acf-field-group/options.php:130 -#: includes/fields/class-acf-field-tab.php:115 -msgid "Left aligned" -msgstr "Linksbündig" - -#: includes/admin/views/acf-field-group/options.php:129 -#: includes/fields/class-acf-field-tab.php:114 -msgid "Top aligned" -msgstr "Oben ausgerichtet" - -#: includes/fields/class-acf-field-tab.php:110 -msgid "Placement" -msgstr "Platzierung" - -#: includes/fields/class-acf-field-tab.php:26 -msgid "Tab" -msgstr "Tab" - -#: includes/fields/class-acf-field-url.php:162 -msgid "Value must be a valid URL" -msgstr "Der Wert muss eine gültige URL sein" - -#: includes/fields/class-acf-field-link.php:177 -msgid "Link URL" -msgstr "Link-URL" - -#: includes/fields/class-acf-field-link.php:176 -msgid "Link Array" -msgstr "Link-Array" - -#: includes/fields/class-acf-field-link.php:145 -msgid "Opens in a new window/tab" -msgstr "In einem neuen Fenster/Tab öffnen" - -#: includes/fields/class-acf-field-link.php:140 -msgid "Select Link" -msgstr "Link auswählen" - -#: includes/fields/class-acf-field-link.php:25 -msgid "Link" -msgstr "Link" - -#: includes/fields/class-acf-field-email.php:25 -msgid "Email" -msgstr "E-Mail-Adresse" - -#: includes/fields/class-acf-field-number.php:188 -#: includes/fields/class-acf-field-range.php:217 -msgid "Step Size" -msgstr "Schrittweite" - -#: includes/fields/class-acf-field-number.php:158 -#: includes/fields/class-acf-field-range.php:195 -msgid "Maximum Value" -msgstr "Maximalwert" - -#: includes/fields/class-acf-field-number.php:148 -#: includes/fields/class-acf-field-range.php:184 -msgid "Minimum Value" -msgstr "Mindestwert" - -#: includes/fields/class-acf-field-range.php:25 -msgid "Range" -msgstr "Bereich" - -#: includes/fields/class-acf-field-button-group.php:175 -#: includes/fields/class-acf-field-checkbox.php:379 -#: includes/fields/class-acf-field-radio.php:220 -#: includes/fields/class-acf-field-select.php:399 -msgid "Both (Array)" -msgstr "Beide (Array)" - -#: includes/admin/views/acf-field-group/fields.php:52 -#: includes/fields/class-acf-field-button-group.php:174 -#: includes/fields/class-acf-field-checkbox.php:378 -#: includes/fields/class-acf-field-radio.php:219 -#: includes/fields/class-acf-field-select.php:398 -msgid "Label" -msgstr "Beschriftung" - -#: includes/fields/class-acf-field-button-group.php:173 -#: includes/fields/class-acf-field-checkbox.php:377 -#: includes/fields/class-acf-field-radio.php:218 -#: includes/fields/class-acf-field-select.php:397 -msgid "Value" -msgstr "Wert" - -#: includes/fields/class-acf-field-button-group.php:222 -#: includes/fields/class-acf-field-checkbox.php:441 -#: includes/fields/class-acf-field-radio.php:292 -msgid "Vertical" -msgstr "Vertikal" - -#: includes/fields/class-acf-field-button-group.php:221 -#: includes/fields/class-acf-field-checkbox.php:442 -#: includes/fields/class-acf-field-radio.php:293 -msgid "Horizontal" -msgstr "Horizontal" - -#: includes/fields/class-acf-field-button-group.php:148 -#: includes/fields/class-acf-field-checkbox.php:352 -#: includes/fields/class-acf-field-radio.php:193 -#: includes/fields/class-acf-field-select.php:370 -msgid "red : Red" -msgstr "rot : Rot" - -#: includes/fields/class-acf-field-button-group.php:148 -#: includes/fields/class-acf-field-checkbox.php:352 -#: includes/fields/class-acf-field-radio.php:193 -#: includes/fields/class-acf-field-select.php:370 -msgid "For more control, you may specify both a value and label like this:" -msgstr "" -"Für mehr Kontrolle kannst du sowohl einen Wert als auch eine Beschriftung " -"wie folgt angeben:" - -#: includes/fields/class-acf-field-button-group.php:148 -#: includes/fields/class-acf-field-checkbox.php:352 -#: includes/fields/class-acf-field-radio.php:193 -#: includes/fields/class-acf-field-select.php:370 -msgid "Enter each choice on a new line." -msgstr "Jede Option in eine neue Zeile eintragen." - -#: includes/fields/class-acf-field-button-group.php:147 -#: includes/fields/class-acf-field-checkbox.php:351 -#: includes/fields/class-acf-field-radio.php:192 -#: includes/fields/class-acf-field-select.php:369 -msgid "Choices" -msgstr "Auswahlmöglichkeiten" - -#: includes/fields/class-acf-field-button-group.php:24 -msgid "Button Group" -msgstr "Button-Gruppe" - -#: includes/fields/class-acf-field-button-group.php:194 -#: includes/fields/class-acf-field-page_link.php:538 -#: includes/fields/class-acf-field-post_object.php:448 -#: includes/fields/class-acf-field-radio.php:238 -#: includes/fields/class-acf-field-select.php:429 -#: includes/fields/class-acf-field-taxonomy.php:772 -#: includes/fields/class-acf-field-user.php:103 -msgid "Allow Null" -msgstr "NULL-Werte zulassen?" - -#: includes/fields/class-acf-field-page_link.php:263 -#: includes/fields/class-acf-field-post_object.php:257 -#: includes/fields/class-acf-field-taxonomy.php:930 -msgid "Parent" -msgstr "Übergeordnet" - -#: includes/fields/class-acf-field-wysiwyg.php:390 -msgid "TinyMCE will not be initialized until field is clicked" -msgstr "TinyMCE wird erst initialisiert, wenn das Feld geklickt wird" - -#: includes/fields/class-acf-field-wysiwyg.php:389 -msgid "Delay Initialization" -msgstr "Soll die Initialisierung verzögert werden?" - -#: includes/fields/class-acf-field-wysiwyg.php:378 -msgid "Show Media Upload Buttons" -msgstr "Sollen Buttons zum Hochladen von Medien anzeigt werden?" - -#: includes/fields/class-acf-field-wysiwyg.php:362 -msgid "Toolbar" -msgstr "Werkzeugleiste" - -#: includes/fields/class-acf-field-wysiwyg.php:354 -msgid "Text Only" -msgstr "Nur Text" - -#: includes/fields/class-acf-field-wysiwyg.php:353 -msgid "Visual Only" -msgstr "Nur visuell" - -#: includes/fields/class-acf-field-wysiwyg.php:352 -msgid "Visual & Text" -msgstr "Visuell und Text" - -#: includes/fields/class-acf-field-wysiwyg.php:347 -msgid "Tabs" -msgstr "Tabs" - -#: includes/fields/class-acf-field-wysiwyg.php:285 -msgid "Click to initialize TinyMCE" -msgstr "Klicken, um TinyMCE zu initialisieren" - -#: includes/fields/class-acf-field-wysiwyg.php:279 -msgctxt "Name for the Text editor tab (formerly HTML)" -msgid "Text" -msgstr "Text" - -#: includes/fields/class-acf-field-wysiwyg.php:278 -msgid "Visual" -msgstr "Visuell" - -#: includes/fields/class-acf-field-text.php:189 -#: includes/fields/class-acf-field-textarea.php:236 -msgid "Value must not exceed %d characters" -msgstr "Der Wert darf %d Zeichen nicht überschreiten" - -#: includes/fields/class-acf-field-text.php:124 -#: includes/fields/class-acf-field-textarea.php:124 -msgid "Leave blank for no limit" -msgstr "Leer lassen, wenn es keine Begrenzung gibt" - -#: includes/fields/class-acf-field-text.php:123 -#: includes/fields/class-acf-field-textarea.php:123 -msgid "Character Limit" -msgstr "Zeichenbegrenzung" - -#: includes/fields/class-acf-field-email.php:158 -#: includes/fields/class-acf-field-number.php:209 -#: includes/fields/class-acf-field-password.php:105 -#: includes/fields/class-acf-field-range.php:239 -#: includes/fields/class-acf-field-text.php:164 -msgid "Appears after the input" -msgstr "Wird nach dem Eingabefeld angezeigt" - -#: includes/fields/class-acf-field-email.php:157 -#: includes/fields/class-acf-field-number.php:208 -#: includes/fields/class-acf-field-password.php:104 -#: includes/fields/class-acf-field-range.php:238 -#: includes/fields/class-acf-field-text.php:163 -msgid "Append" -msgstr "Anhängen" - -#: includes/fields/class-acf-field-email.php:148 -#: includes/fields/class-acf-field-number.php:199 -#: includes/fields/class-acf-field-password.php:95 -#: includes/fields/class-acf-field-range.php:229 -#: includes/fields/class-acf-field-text.php:154 -msgid "Appears before the input" -msgstr "Wird dem Eingabefeld vorangestellt" - -#: includes/fields/class-acf-field-email.php:147 -#: includes/fields/class-acf-field-number.php:198 -#: includes/fields/class-acf-field-password.php:94 -#: includes/fields/class-acf-field-range.php:228 -#: includes/fields/class-acf-field-text.php:153 -msgid "Prepend" -msgstr "Voranstellen" - -#: includes/fields/class-acf-field-email.php:138 -#: includes/fields/class-acf-field-number.php:179 -#: includes/fields/class-acf-field-password.php:85 -#: includes/fields/class-acf-field-text.php:144 -#: includes/fields/class-acf-field-textarea.php:156 -#: includes/fields/class-acf-field-url.php:122 -msgid "Appears within the input" -msgstr "Wird innerhalb des Eingabefeldes angezeigt" - -#: includes/fields/class-acf-field-email.php:137 -#: includes/fields/class-acf-field-number.php:178 -#: includes/fields/class-acf-field-password.php:84 -#: includes/fields/class-acf-field-text.php:143 -#: includes/fields/class-acf-field-textarea.php:155 -#: includes/fields/class-acf-field-url.php:121 -msgid "Placeholder Text" -msgstr "Platzhaltertext" - -#: includes/fields/class-acf-field-button-group.php:158 -#: includes/fields/class-acf-field-email.php:118 -#: includes/fields/class-acf-field-number.php:129 -#: includes/fields/class-acf-field-radio.php:203 -#: includes/fields/class-acf-field-range.php:165 -#: includes/fields/class-acf-field-text.php:104 -#: includes/fields/class-acf-field-textarea.php:104 -#: includes/fields/class-acf-field-url.php:102 -#: includes/fields/class-acf-field-wysiwyg.php:312 -msgid "Appears when creating a new post" -msgstr "Wird bei der Erstellung eines neuen Beitrags angezeigt" - -#: includes/fields/class-acf-field-text.php:25 -msgid "Text" -msgstr "Text" - -#: includes/fields/class-acf-field-relationship.php:794 -msgid "%1$s requires at least %2$s selection" -msgid_plural "%1$s requires at least %2$s selections" -msgstr[0] "%1$s erfordert mindestens %2$s Auswahl" -msgstr[1] "%1$s erfordert mindestens %2$s Auswahlen" - -#: includes/fields/class-acf-field-post_object.php:417 -#: includes/fields/class-acf-field-relationship.php:644 -msgid "Post ID" -msgstr "Beitrags-ID" - -#: includes/fields/class-acf-field-post_object.php:17 -#: includes/fields/class-acf-field-post_object.php:416 -#: includes/fields/class-acf-field-relationship.php:643 -msgid "Post Object" -msgstr "Beitrags-Objekt" - -#: includes/fields/class-acf-field-relationship.php:676 -msgid "Maximum Posts" -msgstr "Höchstzahl an Beiträgen" - -#: includes/fields/class-acf-field-relationship.php:666 -msgid "Minimum Posts" -msgstr "Mindestzahl an Beiträgen" - -#: includes/admin/views/acf-field-group/options.php:183 -#: includes/admin/views/acf-post-type/advanced-settings.php:29 -#: includes/fields/class-acf-field-relationship.php:701 -msgid "Featured Image" -msgstr "Beitragsbild" - -#: includes/fields/class-acf-field-relationship.php:697 -msgid "Selected elements will be displayed in each result" -msgstr "Die ausgewählten Elemente werden in jedem Ergebnis angezeigt" - -#: includes/fields/class-acf-field-relationship.php:696 -msgid "Elements" -msgstr "Elemente" - -#: includes/fields/class-acf-field-relationship.php:630 -#: includes/fields/class-acf-field-taxonomy.php:20 -#: includes/fields/class-acf-field-taxonomy.php:692 -#: includes/locations/class-acf-location-taxonomy.php:22 -msgid "Taxonomy" -msgstr "Taxonomie" - -#: includes/fields/class-acf-field-relationship.php:629 -#: includes/locations/class-acf-location-post-type.php:22 -#: includes/post-types/class-acf-post-type.php:92 -msgid "Post Type" -msgstr "Inhaltstyp" - -#: includes/fields/class-acf-field-relationship.php:623 -msgid "Filters" -msgstr "Filter" - -#: includes/fields/class-acf-field-page_link.php:499 -#: includes/fields/class-acf-field-post_object.php:404 -#: includes/fields/class-acf-field-relationship.php:616 -msgid "All taxonomies" -msgstr "Alle Taxonomien" - -#: includes/fields/class-acf-field-page_link.php:491 -#: includes/fields/class-acf-field-post_object.php:396 -#: includes/fields/class-acf-field-relationship.php:608 -msgid "Filter by Taxonomy" -msgstr "Nach Taxonomie filtern" - -#: includes/fields/class-acf-field-page_link.php:469 -#: includes/fields/class-acf-field-post_object.php:374 -#: includes/fields/class-acf-field-relationship.php:586 -msgid "All post types" -msgstr "Alle Inhaltstypen" - -#: includes/fields/class-acf-field-page_link.php:461 -#: includes/fields/class-acf-field-post_object.php:366 -#: includes/fields/class-acf-field-relationship.php:578 -msgid "Filter by Post Type" -msgstr "Nach Inhaltstyp filtern" - -#: includes/fields/class-acf-field-relationship.php:476 -msgid "Search..." -msgstr "Suche ..." - -#: includes/fields/class-acf-field-relationship.php:406 -msgid "Select taxonomy" -msgstr "Taxonomie auswählen" - -#: includes/fields/class-acf-field-relationship.php:397 -msgid "Select post type" -msgstr "Inhaltstyp auswählen" - -#: includes/fields/class-acf-field-relationship.php:61 -#: assets/build/js/acf-input.js:3930 assets/build/js/acf-input.js:4214 -msgid "No matches found" -msgstr "Es wurde keine Übereinstimmung gefunden" - -#: includes/fields/class-acf-field-relationship.php:60 -#: assets/build/js/acf-input.js:3913 assets/build/js/acf-input.js:4193 -msgid "Loading" -msgstr "Wird geladen" - -#: includes/fields/class-acf-field-relationship.php:59 -#: assets/build/js/acf-input.js:3818 assets/build/js/acf-input.js:4084 -msgid "Maximum values reached ( {max} values )" -msgstr "Die maximal möglichen Werte wurden erreicht ({max} Werte)" - -#: includes/fields/class-acf-field-relationship.php:17 -msgid "Relationship" -msgstr "Beziehung" - -#: includes/fields/class-acf-field-file.php:291 -#: includes/fields/class-acf-field-image.php:317 -msgid "Comma separated list. Leave blank for all types" -msgstr "" -"Eine durch Kommata getrennte Liste. Leer lassen, um alle Typen zu erlauben" - -#: includes/fields/class-acf-field-file.php:290 -#: includes/fields/class-acf-field-image.php:316 -msgid "Allowed File Types" -msgstr "Erlaubte Dateiformate" - -#: includes/fields/class-acf-field-file.php:278 -#: includes/fields/class-acf-field-image.php:280 -msgid "Maximum" -msgstr "Maximum" - -#: includes/fields/class-acf-field-file.php:154 -#: includes/fields/class-acf-field-file.php:270 -#: includes/fields/class-acf-field-file.php:282 -#: includes/fields/class-acf-field-image.php:271 -#: includes/fields/class-acf-field-image.php:307 -msgid "File size" -msgstr "Dateigröße" - -#: includes/fields/class-acf-field-image.php:245 -#: includes/fields/class-acf-field-image.php:281 -msgid "Restrict which images can be uploaded" -msgstr "Beschränkt, welche Bilder hochgeladen werden können" - -#: includes/fields/class-acf-field-file.php:266 -#: includes/fields/class-acf-field-image.php:244 -msgid "Minimum" -msgstr "Minimum" - -#: includes/fields/class-acf-field-file.php:235 -#: includes/fields/class-acf-field-image.php:210 -msgid "Uploaded to post" -msgstr "Wurde zum Beitrag hochgeladen" - -#: includes/fields/class-acf-field-file.php:234 -#: includes/fields/class-acf-field-image.php:209 -#: includes/locations/class-acf-location-attachment.php:73 -#: includes/locations/class-acf-location-comment.php:61 -#: includes/locations/class-acf-location-nav-menu.php:74 -#: includes/locations/class-acf-location-taxonomy.php:63 -#: includes/locations/class-acf-location-user-form.php:71 -#: includes/locations/class-acf-location-user-role.php:78 -#: includes/locations/class-acf-location-widget.php:65 -msgid "All" -msgstr "Alle" - -#: includes/fields/class-acf-field-file.php:229 -#: includes/fields/class-acf-field-image.php:204 -msgid "Limit the media library choice" -msgstr "Beschränkt die Auswahl in der Mediathek" - -#: includes/fields/class-acf-field-file.php:228 -#: includes/fields/class-acf-field-image.php:203 -msgid "Library" -msgstr "Mediathek" - -#: includes/fields/class-acf-field-image.php:336 -msgid "Preview Size" -msgstr "Vorschau-Größe" - -#: includes/fields/class-acf-field-image.php:195 -msgid "Image ID" -msgstr "Bild-ID" - -#: includes/fields/class-acf-field-image.php:194 -msgid "Image URL" -msgstr "Bild-URL" - -#: includes/fields/class-acf-field-image.php:193 -msgid "Image Array" -msgstr "Bild-Array" - -#: includes/fields/class-acf-field-button-group.php:168 -#: includes/fields/class-acf-field-checkbox.php:372 -#: includes/fields/class-acf-field-file.php:213 -#: includes/fields/class-acf-field-link.php:171 -#: includes/fields/class-acf-field-radio.php:213 -msgid "Specify the returned value on front end" -msgstr "Legt den Rückgabewert für das Frontend fest" - -#: includes/fields/class-acf-field-button-group.php:167 -#: includes/fields/class-acf-field-checkbox.php:371 -#: includes/fields/class-acf-field-file.php:212 -#: includes/fields/class-acf-field-link.php:170 -#: includes/fields/class-acf-field-radio.php:212 -#: includes/fields/class-acf-field-taxonomy.php:736 -msgid "Return Value" -msgstr "Rückgabewert" - -#: includes/fields/class-acf-field-image.php:162 -msgid "Add Image" -msgstr "Bild hinzufügen" - -#: includes/fields/class-acf-field-image.php:162 -msgid "No image selected" -msgstr "Es wurde kein Bild ausgewählt" - -#: includes/assets.php:352 includes/fields/class-acf-field-file.php:162 -#: includes/fields/class-acf-field-image.php:142 -#: includes/fields/class-acf-field-link.php:145 assets/build/js/acf.js:1563 -#: assets/build/js/acf.js:1657 -msgid "Remove" -msgstr "Entfernen" - -#: includes/admin/views/acf-field-group/field.php:76 -#: includes/fields/class-acf-field-file.php:160 -#: includes/fields/class-acf-field-image.php:140 -#: includes/fields/class-acf-field-link.php:145 -msgid "Edit" -msgstr "Bearbeiten" - -#: includes/fields/class-acf-field-image.php:70 includes/media.php:55 -#: assets/build/js/acf-input.js:6837 assets/build/js/acf-input.js:7320 -msgid "All images" -msgstr "Alle Bilder" - -#: includes/fields/class-acf-field-image.php:69 -#: assets/build/js/acf-input.js:3181 assets/build/js/acf-input.js:3399 -msgid "Update Image" -msgstr "Bild aktualisieren" - -#: includes/fields/class-acf-field-image.php:68 -#: assets/build/js/acf-input.js:3180 assets/build/js/acf-input.js:3398 -msgid "Edit Image" -msgstr "Bild bearbeiten" - -#: includes/fields/class-acf-field-image.php:67 -#: assets/build/js/acf-input.js:3156 assets/build/js/acf-input.js:3373 -msgid "Select Image" -msgstr "Bild auswählen" - -#: includes/fields/class-acf-field-image.php:25 -msgid "Image" -msgstr "Bild" - -#: includes/fields/class-acf-field-message.php:125 -msgid "Allow HTML markup to display as visible text instead of rendering" -msgstr "HTML-Markup als sichtbaren Text anzeigen, anstatt es zu rendern" - -#: includes/fields/class-acf-field-message.php:124 -msgid "Escape HTML" -msgstr "HTML maskieren" - -#: includes/fields/class-acf-field-message.php:116 -#: includes/fields/class-acf-field-textarea.php:172 -msgid "No Formatting" -msgstr "Keine Formatierung" - -#: includes/fields/class-acf-field-message.php:115 -#: includes/fields/class-acf-field-textarea.php:171 -msgid "Automatically add <br>" -msgstr "Automatisches Hinzufügen von <br>" - -#: includes/fields/class-acf-field-message.php:114 -#: includes/fields/class-acf-field-textarea.php:170 -msgid "Automatically add paragraphs" -msgstr "Absätze automatisch hinzufügen" - -#: includes/fields/class-acf-field-message.php:110 -#: includes/fields/class-acf-field-textarea.php:166 -msgid "Controls how new lines are rendered" -msgstr "Legt fest, wie Zeilenumbrüche gerendert werden" - -#: includes/fields/class-acf-field-message.php:109 -#: includes/fields/class-acf-field-textarea.php:165 -msgid "New Lines" -msgstr "Zeilenumbrüche" - -#: includes/fields/class-acf-field-date_picker.php:232 -#: includes/fields/class-acf-field-date_time_picker.php:220 -msgid "Week Starts On" -msgstr "Die Woche beginnt am" - -#: includes/fields/class-acf-field-date_picker.php:201 -msgid "The format used when saving a value" -msgstr "Das Format für das Speichern eines Wertes" - -#: includes/fields/class-acf-field-date_picker.php:200 -msgid "Save Format" -msgstr "Format speichern" - -#: includes/fields/class-acf-field-date_picker.php:67 -msgctxt "Date Picker JS weekHeader" -msgid "Wk" -msgstr "W" - -#: includes/fields/class-acf-field-date_picker.php:66 -msgctxt "Date Picker JS prevText" -msgid "Prev" -msgstr "Vorheriges" - -#: includes/fields/class-acf-field-date_picker.php:65 -msgctxt "Date Picker JS nextText" -msgid "Next" -msgstr "Nächstes" - -#: includes/fields/class-acf-field-date_picker.php:64 -msgctxt "Date Picker JS currentText" -msgid "Today" -msgstr "Heute" - -#: includes/fields/class-acf-field-date_picker.php:63 -msgctxt "Date Picker JS closeText" -msgid "Done" -msgstr "Fertig" - -#: includes/fields/class-acf-field-date_picker.php:25 -msgid "Date Picker" -msgstr "Datumspicker" - -#: includes/fields/class-acf-field-image.php:248 -#: includes/fields/class-acf-field-image.php:284 -#: includes/fields/class-acf-field-oembed.php:268 -msgid "Width" -msgstr "Breite" - -#: includes/fields/class-acf-field-oembed.php:265 -#: includes/fields/class-acf-field-oembed.php:277 -msgid "Embed Size" -msgstr "Einbettungs-Größe" - -#: includes/fields/class-acf-field-oembed.php:222 -msgid "Enter URL" -msgstr "URL eingeben" - -#: includes/fields/class-acf-field-oembed.php:25 -msgid "oEmbed" -msgstr "oEmbed" - -#: includes/fields/class-acf-field-true_false.php:184 -msgid "Text shown when inactive" -msgstr "Der Text, der im aktiven Zustand angezeigt wird" - -#: includes/fields/class-acf-field-true_false.php:183 -msgid "Off Text" -msgstr "Wenn inaktiv" - -#: includes/fields/class-acf-field-true_false.php:168 -msgid "Text shown when active" -msgstr "Der Text, der im inaktiven Zustand angezeigt wird" - -#: includes/fields/class-acf-field-true_false.php:167 -msgid "On Text" -msgstr "Wenn aktiv" - -#: includes/fields/class-acf-field-select.php:450 -#: includes/fields/class-acf-field-true_false.php:199 -msgid "Stylized UI" -msgstr "Gestylte UI" - -#: includes/fields/class-acf-field-button-group.php:157 -#: includes/fields/class-acf-field-checkbox.php:361 -#: includes/fields/class-acf-field-color_picker.php:156 -#: includes/fields/class-acf-field-email.php:117 -#: includes/fields/class-acf-field-number.php:128 -#: includes/fields/class-acf-field-radio.php:202 -#: includes/fields/class-acf-field-range.php:164 -#: includes/fields/class-acf-field-select.php:380 -#: includes/fields/class-acf-field-text.php:103 -#: includes/fields/class-acf-field-textarea.php:103 -#: includes/fields/class-acf-field-true_false.php:147 -#: includes/fields/class-acf-field-url.php:101 -#: includes/fields/class-acf-field-wysiwyg.php:311 -msgid "Default Value" -msgstr "Standardwert" - -#: includes/fields/class-acf-field-true_false.php:138 -msgid "Displays text alongside the checkbox" -msgstr "Zeigt den Text neben dem Auswahlkästchen an" - -#: includes/fields/class-acf-field-message.php:26 -#: includes/fields/class-acf-field-message.php:99 -#: includes/fields/class-acf-field-true_false.php:137 -msgid "Message" -msgstr "Mitteilung" - -#: includes/assets.php:351 includes/fields/class-acf-field-true_false.php:86 -#: includes/fields/class-acf-field-true_false.php:187 -#: assets/build/js/acf.js:1740 assets/build/js/acf.js:1857 -msgid "No" -msgstr "Nein" - -#: includes/assets.php:350 includes/fields/class-acf-field-true_false.php:83 -#: includes/fields/class-acf-field-true_false.php:171 -#: assets/build/js/acf.js:1739 assets/build/js/acf.js:1856 -msgid "Yes" -msgstr "Ja" - -#: includes/fields/class-acf-field-true_false.php:25 -msgid "True / False" -msgstr "Wahr/falsch" - -#: includes/fields/class-acf-field-group.php:474 -msgid "Row" -msgstr "Reihe" - -#: includes/fields/class-acf-field-group.php:473 -msgid "Table" -msgstr "Tabelle" - -#: includes/admin/post-types/admin-field-group.php:140 -#: includes/fields/class-acf-field-group.php:472 -msgid "Block" -msgstr "Block" - -#: includes/fields/class-acf-field-group.php:467 -msgid "Specify the style used to render the selected fields" -msgstr "Lege den Stil für die Darstellung der ausgewählten Felder fest" - -#: includes/fields.php:356 includes/fields/class-acf-field-button-group.php:215 -#: includes/fields/class-acf-field-checkbox.php:435 -#: includes/fields/class-acf-field-group.php:466 -#: includes/fields/class-acf-field-radio.php:286 -msgid "Layout" -msgstr "Layout" - -#: includes/fields/class-acf-field-group.php:450 -msgid "Sub Fields" -msgstr "Untergeordnete Felder" - -#: includes/fields/class-acf-field-group.php:25 -msgid "Group" -msgstr "Gruppe" - -#: includes/fields/class-acf-field-google-map.php:235 -msgid "Customize the map height" -msgstr "Kartenhöhe anpassen" - -#: includes/fields/class-acf-field-google-map.php:234 -#: includes/fields/class-acf-field-image.php:259 -#: includes/fields/class-acf-field-image.php:295 -#: includes/fields/class-acf-field-oembed.php:280 -msgid "Height" -msgstr "Höhe" - -#: includes/fields/class-acf-field-google-map.php:223 -msgid "Set the initial zoom level" -msgstr "Den Anfangswert für Zoom einstellen" - -#: includes/fields/class-acf-field-google-map.php:222 -msgid "Zoom" -msgstr "Zoom" - -#: includes/fields/class-acf-field-google-map.php:196 -#: includes/fields/class-acf-field-google-map.php:209 -msgid "Center the initial map" -msgstr "Ausgangskarte zentrieren" - -#: includes/fields/class-acf-field-google-map.php:195 -#: includes/fields/class-acf-field-google-map.php:208 -msgid "Center" -msgstr "Zentriert" - -#: includes/fields/class-acf-field-google-map.php:163 -msgid "Search for address..." -msgstr "Nach der Adresse suchen ..." - -#: includes/fields/class-acf-field-google-map.php:160 -msgid "Find current location" -msgstr "Aktuelle Position finden" - -#: includes/fields/class-acf-field-google-map.php:159 -msgid "Clear location" -msgstr "Position löschen" - -#: includes/fields/class-acf-field-google-map.php:158 -#: includes/fields/class-acf-field-relationship.php:628 -msgid "Search" -msgstr "Suchen" - -#: includes/fields/class-acf-field-google-map.php:63 -#: assets/build/js/acf-input.js:2840 assets/build/js/acf-input.js:3026 -msgid "Sorry, this browser does not support geolocation" -msgstr "Dieser Browser unterstützt leider keine Standortbestimmung" - -#: includes/fields/class-acf-field-google-map.php:25 -msgid "Google Map" -msgstr "Google Maps" - -#: includes/fields/class-acf-field-date_picker.php:212 -#: includes/fields/class-acf-field-date_time_picker.php:201 -#: includes/fields/class-acf-field-time_picker.php:132 -msgid "The format returned via template functions" -msgstr "Das über Template-Funktionen zurückgegebene Format" - -#: includes/fields/class-acf-field-color_picker.php:180 -#: includes/fields/class-acf-field-date_picker.php:211 -#: includes/fields/class-acf-field-date_time_picker.php:200 -#: includes/fields/class-acf-field-image.php:187 -#: includes/fields/class-acf-field-post_object.php:411 -#: includes/fields/class-acf-field-relationship.php:638 -#: includes/fields/class-acf-field-select.php:391 -#: includes/fields/class-acf-field-time_picker.php:131 -#: includes/fields/class-acf-field-user.php:66 -msgid "Return Format" -msgstr "Rückgabeformat" - -#: includes/fields/class-acf-field-date_picker.php:190 -#: includes/fields/class-acf-field-date_picker.php:221 -#: includes/fields/class-acf-field-date_time_picker.php:192 -#: includes/fields/class-acf-field-date_time_picker.php:210 -#: includes/fields/class-acf-field-time_picker.php:123 -#: includes/fields/class-acf-field-time_picker.php:139 -msgid "Custom:" -msgstr "Individuell:" - -#: includes/fields/class-acf-field-date_picker.php:182 -#: includes/fields/class-acf-field-date_time_picker.php:183 -#: includes/fields/class-acf-field-time_picker.php:116 -msgid "The format displayed when editing a post" -msgstr "Das angezeigte Format beim Bearbeiten eines Beitrags" - -#: includes/fields/class-acf-field-date_picker.php:181 -#: includes/fields/class-acf-field-date_time_picker.php:182 -#: includes/fields/class-acf-field-time_picker.php:115 -msgid "Display Format" -msgstr "Darstellungsformat" - -#: includes/fields/class-acf-field-time_picker.php:25 -msgid "Time Picker" -msgstr "Zeitpicker" - -#. translators: counts for inactive field groups -#: acf.php:503 -msgid "Inactive (%s)" -msgid_plural "Inactive (%s)" -msgstr[0] "Deaktiviert (%s)" -msgstr[1] "Deaktiviert (%s)" - -#: acf.php:462 -msgid "No Fields found in Trash" -msgstr "Es wurden keine Felder im Papierkorb gefunden" - -#: acf.php:461 -msgid "No Fields found" -msgstr "Es wurden keine Felder gefunden" - -#: acf.php:460 -msgid "Search Fields" -msgstr "Felder suchen" - -#: acf.php:459 -msgid "View Field" -msgstr "Feld anzeigen" - -#: acf.php:458 includes/admin/views/acf-field-group/fields.php:115 -msgid "New Field" -msgstr "Neues Feld" - -#: acf.php:457 -msgid "Edit Field" -msgstr "Feld bearbeiten" - -#: acf.php:456 -msgid "Add New Field" -msgstr "Neues Feld hinzufügen" - -#: acf.php:454 -msgid "Field" -msgstr "Feld" - -#: acf.php:453 includes/admin/post-types/admin-field-group.php:163 -#: includes/admin/post-types/admin-field-groups.php:119 -#: includes/admin/views/acf-field-group/fields.php:32 -msgid "Fields" -msgstr "Felder" - -#: acf.php:428 -msgid "No Field Groups found in Trash" -msgstr "Es wurden keine Feldgruppen im Papierkorb gefunden" - -#: acf.php:427 -msgid "No Field Groups found" -msgstr "Es wurden keine Feldgruppen gefunden" - -#: acf.php:426 -msgid "Search Field Groups" -msgstr "Feldgruppen durchsuchen" - -#: acf.php:425 -msgid "View Field Group" -msgstr "Feldgruppe anzeigen" - -#: acf.php:424 -msgid "New Field Group" -msgstr "Neue Feldgruppe" - -#: acf.php:423 -msgid "Edit Field Group" -msgstr "Feldgruppe bearbeiten" - -#: acf.php:422 -msgid "Add New Field Group" -msgstr "Neue Feldgruppe hinzufügen" - -#: acf.php:421 acf.php:455 -#: includes/admin/views/acf-post-type/advanced-settings.php:219 -#: includes/admin/views/acf-post-type/advanced-settings.php:221 -#: includes/post-types/class-acf-post-type.php:93 -#: includes/post-types/class-acf-taxonomy.php:92 -msgid "Add New" -msgstr "Neu hinzufügen" - -#: acf.php:420 -msgid "Field Group" -msgstr "Feldgruppe" - -#: acf.php:419 includes/admin/post-types/admin-field-groups.php:78 -#: includes/admin/post-types/admin-post-types.php:138 -#: includes/admin/post-types/admin-taxonomies.php:138 -msgid "Field Groups" -msgstr "Feldgruppen" - -#. Description of the plugin -msgid "Customize WordPress with powerful, professional and intuitive fields." -msgstr "" -"WordPress durch leistungsfähige, professionelle und zugleich intuitive " -"Felder erweitern." - -#. Plugin URI of the plugin -msgid "https://www.advancedcustomfields.com" -msgstr "https://www.advancedcustomfields.com" - -#. Plugin Name of the plugin -#: acf.php:94 -msgid "Advanced Custom Fields" -msgstr "Advanced Custom Fields" - -#: pro/acf-pro.php:27 -msgid "Advanced Custom Fields PRO" -msgstr "Advanced Custom Fields PRO" - -#: pro/blocks.php:170 -msgid "Block type name is required." -msgstr "Name des Block-Typs wird benötigt." - -#. translators: The name of the block type -#: pro/blocks.php:178 -msgid "Block type \"%s\" is already registered." -msgstr "Block-Typ „%s“ ist bereits registriert." - -#: pro/blocks.php:726 -msgid "Switch to Edit" -msgstr "Zum Bearbeiten wechseln" - -#: pro/blocks.php:727 -msgid "Switch to Preview" -msgstr "Zur Vorschau wechseln" - -#: pro/blocks.php:728 -msgid "Change content alignment" -msgstr "Ausrichtung des Inhalts ändern" - -#. translators: %s: Block type title -#: pro/blocks.php:731 -msgid "%s settings" -msgstr "%s Einstellungen" - -#: pro/blocks.php:936 -msgid "This block contains no editable fields." -msgstr "" - -#. translators: %s: an admin URL to the field group edit screen -#: pro/blocks.php:942 -msgid "" -"Assign a field group to add fields to " -"this block." -msgstr "" - -#: pro/options-page.php:78 -msgid "Options Updated" -msgstr "Optionen aktualisiert" - -#: pro/updates.php:99 -msgid "" -"To enable updates, please enter your license key on the Updates page. If you don't have a licence key, please see details & pricing." -msgstr "" - -#: pro/updates.php:159 -msgid "" -"ACF Activation Error. Your defined license key has changed, but an " -"error occurred when deactivating your old licence" -msgstr "" - -#: pro/updates.php:154 -msgid "" -"ACF Activation Error. Your defined license key has changed, but an " -"error occurred when connecting to activation server" -msgstr "" - -#: pro/updates.php:192 -msgid "ACF Activation Error" -msgstr "" - -#: pro/updates.php:187 -msgid "" -"ACF Activation Error. An error occurred when connecting to activation " -"server" -msgstr "" - -#: pro/updates.php:279 -msgid "Check Again" -msgstr "Erneut suchen" - -#: pro/updates.php:593 -msgid "ACF Activation Error. Could not connect to activation server" -msgstr "" - -#: pro/admin/admin-options-page.php:195 -msgid "Publish" -msgstr "Veröffentlichen" - -#: pro/admin/admin-options-page.php:199 -msgid "" -"No Custom Field Groups found for this options page. Create a " -"Custom Field Group" -msgstr "" -"Keine Feldgruppen für diese Options-Seite gefunden. Eine " -"Feldgruppe erstellen" - -#: pro/admin/admin-updates.php:52 -msgid "Error. Could not connect to update server" -msgstr "" -"Fehler. Es konnte keine Verbindung zum Aktualisierungsserver " -"hergestellt werden" - -#: pro/admin/admin-updates.php:212 -msgid "" -"Error. Could not authenticate update package. Please check again or " -"deactivate and reactivate your ACF PRO license." -msgstr "" -"Fehler. Das Aktualisierungspaket konnte nicht authentifiziert werden. " -"Bitte probiere es nochmal oder deaktiviere und reaktiviere deine ACF PRO-" -"Lizenz." - -#: pro/admin/admin-updates.php:199 -msgid "" -"Error. Your license for this site has expired or been deactivated. " -"Please reactivate your ACF PRO license." -msgstr "" - -#: pro/fields/class-acf-field-clone.php:27, -#: pro/fields/class-acf-field-repeater.php:31 -msgid "" -"Allows you to select and display existing fields. It does not duplicate any " -"fields in the database, but loads and displays the selected fields at run-" -"time. The Clone field can either replace itself with the selected fields or " -"display the selected fields as a group of subfields." -msgstr "" - -#: pro/fields/class-acf-field-clone.php:819 -msgid "Select one or more fields you wish to clone" -msgstr "Wähle ein oder mehrere Felder aus die Du klonen möchtest" - -#: pro/fields/class-acf-field-clone.php:838 -msgid "Display" -msgstr "Anzeige" - -#: pro/fields/class-acf-field-clone.php:839 -msgid "Specify the style used to render the clone field" -msgstr "Gib den Stil an mit dem das Klon-Feld angezeigt werden soll" - -#: pro/fields/class-acf-field-clone.php:844 -msgid "Group (displays selected fields in a group within this field)" -msgstr "" -"Gruppe (zeigt die ausgewählten Felder in einer Gruppe innerhalb dieses " -"Feldes an)" - -#: pro/fields/class-acf-field-clone.php:845 -msgid "Seamless (replaces this field with selected fields)" -msgstr "Nahtlos (ersetzt dieses Feld mit den ausgewählten Feldern)" - -#: pro/fields/class-acf-field-clone.php:868 -msgid "Labels will be displayed as %s" -msgstr "Beschriftungen werden als %s angezeigt" - -#: pro/fields/class-acf-field-clone.php:873 -msgid "Prefix Field Labels" -msgstr "Präfix für Feldbeschriftungen" - -#: pro/fields/class-acf-field-clone.php:883 -msgid "Values will be saved as %s" -msgstr "Werte werden als %s gespeichert" - -#: pro/fields/class-acf-field-clone.php:888 -msgid "Prefix Field Names" -msgstr "Präfix für Feldnamen" - -#: pro/fields/class-acf-field-clone.php:1005 -msgid "Unknown field" -msgstr "Unbekanntes Feld" - -#: pro/fields/class-acf-field-clone.php:1042 -msgid "Unknown field group" -msgstr "Unbekannte Feldgruppe" - -#: pro/fields/class-acf-field-clone.php:1046 -msgid "All fields from %s field group" -msgstr "Alle Felder der Feldgruppe %s" - -#: pro/fields/class-acf-field-flexible-content.php:27 -msgid "" -"Allows you to define, create and manage content with total control by " -"creating layouts that contain subfields that content editors can choose from." -msgstr "" - -#: pro/fields/class-acf-field-flexible-content.php:36, -#: pro/fields/class-acf-field-repeater.php:103, -#: pro/fields/class-acf-field-repeater.php:297 -msgid "Add Row" -msgstr "Eintrag hinzufügen" - -#: pro/fields/class-acf-field-flexible-content.php:76, -#: pro/fields/class-acf-field-flexible-content.php:943, -#: pro/fields/class-acf-field-flexible-content.php:1022 -msgid "layout" -msgid_plural "layouts" -msgstr[0] "Layout" -msgstr[1] "Layouts" - -#: pro/fields/class-acf-field-flexible-content.php:77 -msgid "layouts" -msgstr "Einträge" - -#: pro/fields/class-acf-field-flexible-content.php:81, -#: pro/fields/class-acf-field-flexible-content.php:942, -#: pro/fields/class-acf-field-flexible-content.php:1021 -msgid "This field requires at least {min} {label} {identifier}" -msgstr "Dieses Feld erfordert mindestens {min} {label} {identifier}" - -#: pro/fields/class-acf-field-flexible-content.php:82 -msgid "This field has a limit of {max} {label} {identifier}" -msgstr "Dieses Feld erlaubt höchstens {max} {label} {identifier}" - -#: pro/fields/class-acf-field-flexible-content.php:85 -msgid "{available} {label} {identifier} available (max {max})" -msgstr "{available} {label} {identifier} möglich (max {max})" - -#: pro/fields/class-acf-field-flexible-content.php:86 -msgid "{required} {label} {identifier} required (min {min})" -msgstr "{required} {label} {identifier} erforderlich (min {min})" - -#: pro/fields/class-acf-field-flexible-content.php:89 -msgid "Flexible Content requires at least 1 layout" -msgstr "Flexibler Inhalt benötigt mindestens ein Layout" - -#: pro/fields/class-acf-field-flexible-content.php:282 -msgid "Click the \"%s\" button below to start creating your layout" -msgstr "Klicke \"%s\" zum Erstellen des Layouts" - -#: pro/fields/class-acf-field-flexible-content.php:423 -msgid "Add layout" -msgstr "Layout hinzufügen" - -#: pro/fields/class-acf-field-flexible-content.php:424 -msgid "Duplicate layout" -msgstr "Layout duplizieren" - -#: pro/fields/class-acf-field-flexible-content.php:425 -msgid "Remove layout" -msgstr "Layout entfernen" - -#: pro/fields/class-acf-field-flexible-content.php:426, -#: pro/fields/class-acf-repeater-table.php:382 -msgid "Click to toggle" -msgstr "Zum Auswählen anklicken" - -#: pro/fields/class-acf-field-flexible-content.php:562 -msgid "Delete Layout" -msgstr "Layout löschen" - -#: pro/fields/class-acf-field-flexible-content.php:563 -msgid "Duplicate Layout" -msgstr "Layout duplizieren" - -#: pro/fields/class-acf-field-flexible-content.php:564 -msgid "Add New Layout" -msgstr "Neues Layout hinzufügen" - -#: pro/fields/class-acf-field-flexible-content.php:564 -#, fuzzy -#| msgid "Add layout" -msgid "Add Layout" -msgstr "Layout hinzufügen" - -#: pro/fields/class-acf-field-flexible-content.php:647 -msgid "Min" -msgstr "Min" - -#: pro/fields/class-acf-field-flexible-content.php:662 -msgid "Max" -msgstr "Max" - -#: pro/fields/class-acf-field-flexible-content.php:705 -msgid "Minimum Layouts" -msgstr "Mindestzahl an Layouts" - -#: pro/fields/class-acf-field-flexible-content.php:716 -msgid "Maximum Layouts" -msgstr "Höchstzahl an Layouts" - -#: pro/fields/class-acf-field-flexible-content.php:727, -#: pro/fields/class-acf-field-repeater.php:293 -msgid "Button Label" -msgstr "Button-Beschriftung" - -#: pro/fields/class-acf-field-flexible-content.php:1710, -#: pro/fields/class-acf-field-repeater.php:918 -msgid "%s must be of type array or null." -msgstr "" - -#: pro/fields/class-acf-field-flexible-content.php:1721 -msgid "%1$s must contain at least %2$s %3$s layout." -msgid_plural "%1$s must contain at least %2$s %3$s layouts." -msgstr[0] "" -msgstr[1] "" - -#: pro/fields/class-acf-field-flexible-content.php:1737 -msgid "%1$s must contain at most %2$s %3$s layout." -msgid_plural "%1$s must contain at most %2$s %3$s layouts." -msgstr[0] "" -msgstr[1] "" - -#: pro/fields/class-acf-field-gallery.php:27 -msgid "" -"An interactive interface for managing a collection of attachments, such as " -"images." -msgstr "" - -#: pro/fields/class-acf-field-gallery.php:77 -msgid "Add Image to Gallery" -msgstr "Bild zur Galerie hinzufügen" - -#: pro/fields/class-acf-field-gallery.php:78 -msgid "Maximum selection reached" -msgstr "Maximale Auswahl erreicht" - -#: pro/fields/class-acf-field-gallery.php:324 -msgid "Length" -msgstr "Länge" - -#: pro/fields/class-acf-field-gallery.php:368 -msgid "Caption" -msgstr "Bildunterschrift" - -#: pro/fields/class-acf-field-gallery.php:380 -msgid "Alt Text" -msgstr "Alt Text" - -#: pro/fields/class-acf-field-gallery.php:504 -msgid "Add to gallery" -msgstr "Zur Galerie hinzufügen" - -#: pro/fields/class-acf-field-gallery.php:508 -msgid "Bulk actions" -msgstr "Massenverarbeitung" - -#: pro/fields/class-acf-field-gallery.php:509 -msgid "Sort by date uploaded" -msgstr "Sortiere nach Upload-Datum" - -#: pro/fields/class-acf-field-gallery.php:510 -msgid "Sort by date modified" -msgstr "Sortiere nach Änderungs-Datum" - -#: pro/fields/class-acf-field-gallery.php:511 -msgid "Sort by title" -msgstr "Sortiere nach Titel" - -#: pro/fields/class-acf-field-gallery.php:512 -msgid "Reverse current order" -msgstr "Aktuelle Sortierung umkehren" - -#: pro/fields/class-acf-field-gallery.php:524 -msgid "Close" -msgstr "Schließen" - -#: pro/fields/class-acf-field-gallery.php:615 -msgid "Minimum Selection" -msgstr "Minimale Auswahl" - -#: pro/fields/class-acf-field-gallery.php:625 -msgid "Maximum Selection" -msgstr "Maximale Auswahl" - -#: pro/fields/class-acf-field-gallery.php:707 -msgid "Allowed file types" -msgstr "Erlaubte Dateiformate" - -#: pro/fields/class-acf-field-gallery.php:727 -msgid "Insert" -msgstr "Einfügen" - -#: pro/fields/class-acf-field-gallery.php:728 -msgid "Specify where new attachments are added" -msgstr "Gib an wo neue Anhänge hinzugefügt werden sollen" - -#: pro/fields/class-acf-field-gallery.php:732 -msgid "Append to the end" -msgstr "Anhängen" - -#: pro/fields/class-acf-field-gallery.php:733 -msgid "Prepend to the beginning" -msgstr "Voranstellen" - -#: pro/fields/class-acf-field-repeater.php:66, -#: pro/fields/class-acf-field-repeater.php:463 -#, fuzzy -#| msgid "Minimum rows reached ({min} rows)" -msgid "Minimum rows not reached ({min} rows)" -msgstr "Mindestzahl der Einträge hat ({min} Reihen) erreicht" - -#: pro/fields/class-acf-field-repeater.php:67 -msgid "Maximum rows reached ({max} rows)" -msgstr "Höchstzahl der Einträge hat ({max} Reihen) erreicht" - -#: pro/fields/class-acf-field-repeater.php:68 -msgid "Error loading page" -msgstr "" - -#: pro/fields/class-acf-field-repeater.php:69 -msgid "Order will be assigned upon save" -msgstr "" - -#: pro/fields/class-acf-field-repeater.php:196 -msgid "Useful for fields with a large number of rows." -msgstr "" - -#: pro/fields/class-acf-field-repeater.php:207 -msgid "Rows Per Page" -msgstr "" - -#: pro/fields/class-acf-field-repeater.php:208 -msgid "Set the number of rows to be displayed on a page." -msgstr "" - -#: pro/fields/class-acf-field-repeater.php:240 -msgid "Minimum Rows" -msgstr "Mindestzahl der Einträge" - -#: pro/fields/class-acf-field-repeater.php:251 -msgid "Maximum Rows" -msgstr "Höchstzahl der Einträge" - -#: pro/fields/class-acf-field-repeater.php:281 -msgid "Collapsed" -msgstr "Zugeklappt" - -#: pro/fields/class-acf-field-repeater.php:282 -msgid "Select a sub field to show when row is collapsed" -msgstr "" -"Wähle ein Unterfelder welches im zugeklappten Zustand angezeigt werden soll" - -#: pro/fields/class-acf-field-repeater.php:1060 -#, fuzzy -#| msgid "Invalid field group ID." -msgid "Invalid field key or name." -msgstr "Ungültige Feldgruppen-ID." - -#: pro/fields/class-acf-field-repeater.php:1069 -msgid "There was an error retrieving the field." -msgstr "" - -#: pro/fields/class-acf-repeater-table.php:369 -#, fuzzy -#| msgid "Drag to reorder" -msgid "Click to reorder" -msgstr "Ziehen zum Sortieren" - -#: pro/fields/class-acf-repeater-table.php:402 -msgid "Add row" -msgstr "Eintrag hinzufügen" - -#: pro/fields/class-acf-repeater-table.php:403 -msgid "Duplicate row" -msgstr "Zeile duplizieren" - -#: pro/fields/class-acf-repeater-table.php:404 -msgid "Remove row" -msgstr "Eintrag entfernen" - -#: pro/fields/class-acf-repeater-table.php:448, -#: pro/fields/class-acf-repeater-table.php:465, -#: pro/fields/class-acf-repeater-table.php:466 -msgid "Current Page" -msgstr "" - -#: pro/fields/class-acf-repeater-table.php:456, -#: pro/fields/class-acf-repeater-table.php:457 -#, fuzzy -#| msgid "Front Page" -msgid "First Page" -msgstr "Startseite" - -#: pro/fields/class-acf-repeater-table.php:460, -#: pro/fields/class-acf-repeater-table.php:461 -#, fuzzy -#| msgid "Posts Page" -msgid "Previous Page" -msgstr "Beitrags-Seite" - -#. translators: 1: Current page, 2: Total pages. -#: pro/fields/class-acf-repeater-table.php:470 -msgctxt "paging" -msgid "%1$s of %2$s" -msgstr "" - -#: pro/fields/class-acf-repeater-table.php:477, -#: pro/fields/class-acf-repeater-table.php:478 -#, fuzzy -#| msgid "Front Page" -msgid "Next Page" -msgstr "Startseite" - -#: pro/fields/class-acf-repeater-table.php:481, -#: pro/fields/class-acf-repeater-table.php:482 -#, fuzzy -#| msgid "Posts Page" -msgid "Last Page" -msgstr "Beitrags-Seite" - -#: pro/locations/class-acf-location-block.php:71 -msgid "No block types exist" -msgstr "Keine Blocktypen vorhanden" - -#: pro/locations/class-acf-location-options-page.php:70 -msgid "No options pages exist" -msgstr "Keine Options-Seiten vorhanden" - -#: pro/admin/views/html-settings-updates.php:6 -msgid "Deactivate License" -msgstr "Lizenz deaktivieren" - -#: pro/admin/views/html-settings-updates.php:6 -msgid "Activate License" -msgstr "Lizenz aktivieren" - -#: pro/admin/views/html-settings-updates.php:16 -msgid "License Information" -msgstr "Lizenzinformation" - -#: pro/admin/views/html-settings-updates.php:34 -msgid "" -"To unlock updates, please enter your license key below. If you don't have a " -"licence key, please see details & pricing." -msgstr "" -"Um die Aktualisierungsfähigkeit freizuschalten gib bitte unten Deinen " -"Lizenzschlüssel ein. Falls Du keinen besitzen solltest informiere Dich bitte " -"hier hinsichtlich Preisen und aller " -"weiteren Details." - -#: pro/admin/views/html-settings-updates.php:37 -msgid "License Key" -msgstr "Lizenzschlüssel" - -#: pro/admin/views/html-settings-updates.php:22 -msgid "Your license key is defined in wp-config.php." -msgstr "" - -#: pro/admin/views/html-settings-updates.php:29 -msgid "Retry Activation" -msgstr "" - -#: pro/admin/views/html-settings-updates.php:61 -msgid "Update Information" -msgstr "Aktualisierungsinformationen" - -#: pro/admin/views/html-settings-updates.php:68 -msgid "Current Version" -msgstr "Installierte Version" - -#: pro/admin/views/html-settings-updates.php:76 -msgid "Latest Version" -msgstr "Aktuellste Version" - -#: pro/admin/views/html-settings-updates.php:84 -msgid "Update Available" -msgstr "Aktualisierung verfügbar" - -#: pro/admin/views/html-settings-updates.php:98 -msgid "Upgrade Notice" -msgstr "Hinweis zum Upgrade" - -#: pro/admin/views/html-settings-updates.php:126 -msgid "Check For Updates" -msgstr "" - -#: pro/admin/views/html-settings-updates.php:121 -#, fuzzy -#| msgid "Please enter your license key above to unlock updates" -msgid "Enter your license key to unlock updates" -msgstr "" -"Bitte gib oben Deinen Lizenzschlüssel ein um die Aktualisierungsfähigkeit " -"freizuschalten" - -#: pro/admin/views/html-settings-updates.php:119 -msgid "Update Plugin" -msgstr "Plugin aktualisieren" - -#: pro/admin/views/html-settings-updates.php:117 -msgid "Please reactivate your license to unlock updates" -msgstr "" diff --git a/lang/acf-de_DE_formal.mo b/lang/acf-de_DE_formal.mo deleted file mode 100644 index 256e40e..0000000 Binary files a/lang/acf-de_DE_formal.mo and /dev/null differ diff --git a/lang/acf-de_DE_formal.po b/lang/acf-de_DE_formal.po deleted file mode 100644 index d5f9410..0000000 --- a/lang/acf-de_DE_formal.po +++ /dev/null @@ -1,6334 +0,0 @@ -# Advanced Custom Fields Translations are a combination of translate.wordpress.org contributions, -# combined with user contributed strings for the PRO version. -# Translations from translate.wordpress.org take priority over translations in this file. -# translate.wordpress.org contributions are synced at the time of each release. -# -# If you would like to contribute translations, please visit -# https://translate.wordpress.org/projects/wp-plugins/advanced-custom-fields/stable/ -# -# For additional ACF PRO strings, please submit a pull request over on the ACF GitHub repo at -# http://github.com/advancedcustomfields/acf using the .pot (and any existing .po) files in /lang/pro/ -# -# This file is distributed under the same license as Advanced Custom Fields. -msgid "" -msgstr "" -"PO-Revision-Date: 2023-11-28T09:14:32+00:00\n" -"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n" -"Language: de_DE_formal\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: gettext\n" -"Project-Id-Version: Advanced Custom Fields\n" - -#: includes/admin/views/global/navigation.php:221 -msgid "Renew ACF PRO License" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:17 -msgid "Renew License" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:14 -msgid "Manage License" -msgstr "" - -#: includes/admin/views/acf-field-group/options.php:102 -msgid "'High' position not supported in the Block Editor" -msgstr "" - -#: includes/admin/views/options-page-preview.php:30 -msgid "Upgrade to ACF PRO" -msgstr "" - -#. translators: %s URL to ACF options pages documentation -#: includes/admin/views/options-page-preview.php:7 -msgid "" -"ACF options pages are custom admin " -"pages for managing global settings via fields. You can create multiple pages " -"and sub-pages." -msgstr "" - -#: includes/admin/views/global/header.php:35 -msgid "Add Options Page" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:703 -msgid "In the editor used as the placeholder of the title." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:702 -msgid "Title Placeholder" -msgstr "" - -#: includes/admin/views/global/navigation.php:97 -msgid "4 Months Free" -msgstr "" - -#. translators: %s - A singular label for a post type or taxonomy. -#: includes/admin/views/global/form-top.php:56 -msgid " (Duplicated from %s)" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:298 -msgid "Select Options Pages" -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:107 -msgid "Duplicate taxonomy" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:106 -#: includes/admin/post-types/admin-taxonomy.php:106 -msgid "Create taxonomy" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:105 -msgid "Duplicate post type" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:104 -#: includes/admin/post-types/admin-taxonomy.php:108 -msgid "Create post type" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:103 -#: includes/admin/post-types/admin-taxonomy.php:105 -msgid "Link field groups" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:102 -#: includes/admin/post-types/admin-taxonomy.php:104 -msgid "Add fields" -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:121 -#: assets/build/js/acf-field-group.js:2753 -#: assets/build/js/acf-field-group.js:3236 -msgid "This Field" -msgstr "" - -#: includes/admin/admin.php:267 -msgid "ACF PRO" -msgstr "" - -#: includes/admin/admin.php:265 -msgid "Feedback" -msgstr "" - -#: includes/admin/admin.php:263 -msgid "Support" -msgstr "" - -#. translators: This text is prepended by a link to ACF's website, and appended -#. by a link to WP Engine's website. -#: includes/admin/admin.php:238 -msgid "is developed and maintained by" -msgstr "" - -#. translators: %s - either "post type" or "taxonomy" -#: includes/admin/admin-internal-post-type.php:321 -msgid "Add this %s to the location rules of the selected field groups." -msgstr "" - -#. translators: %s the URL to ACF's bidirectional relationship documentation -#: includes/acf-bidirectional-functions.php:271 -msgid "" -"Enabling the bidirectional setting allows you to update a value in the " -"target fields for each value selected for this field, adding or removing the " -"Post ID, Taxonomy ID or User ID of the item being updated. For more " -"information, please read the documentation." -msgstr "" - -#: includes/acf-bidirectional-functions.php:247 -msgid "" -"Select field(s) to store the reference back to the item being updated. You " -"may select this field. Target fields must be compatible with where this " -"field is being displayed. For example, if this field is displayed on a " -"Taxonomy, your target field should be of type Taxonomy" -msgstr "" - -#: includes/acf-bidirectional-functions.php:246 -msgid "Target Field" -msgstr "" - -#: includes/acf-bidirectional-functions.php:220 -msgid "Update a field on the selected values, referencing back to this ID" -msgstr "" - -#: includes/acf-bidirectional-functions.php:219 -msgid "Bidirectional" -msgstr "" - -#. translators: %s A field type name, such as "Relationship" -#: includes/acf-bidirectional-functions.php:192 -msgid "%s Field" -msgstr "" - -#: includes/fields/class-acf-field-page_link.php:517 -#: includes/fields/class-acf-field-post_object.php:426 -#: includes/fields/class-acf-field-select.php:407 -#: includes/fields/class-acf-field-user.php:82 -msgid "Select Multiple" -msgstr "" - -#: includes/admin/views/global/navigation.php:233 -msgid "WP Engine logo" -msgstr "" - -#: includes/admin/views/acf-taxonomy/basic-settings.php:58 -msgid "Lower case letters, underscores and dashes only, Max 32 characters." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1136 -msgid "The capability name for assigning terms of this taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1135 -msgid "Assign Terms Capability" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1119 -msgid "The capability name for deleting terms of this taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1118 -msgid "Delete Terms Capability" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1102 -msgid "The capability name for editing terms of this taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1101 -msgid "Edit Terms Capability" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1085 -msgid "The capability name for managing terms of this taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1084 -msgid "Manage Terms Capability" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:886 -msgid "" -"Sets whether posts should be excluded from search results and taxonomy " -"archive pages." -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:74 -msgid "More Tools from WP Engine" -msgstr "" - -#. translators: %s - WP Engine logo -#: includes/admin/views/acf-field-group/pro-features.php:69 -msgid "Built for those that build with WordPress, by the team at %s" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:6 -msgid "View Pricing & Upgrade" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:3 -#: includes/admin/views/options-page-preview.php:29 -msgid "Learn More" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:28 -msgid "" -"Speed up your workflow and develop better websites with features like ACF " -"Blocks and Options Pages, and sophisticated field types like Repeater, " -"Flexible Content, Clone, and Gallery." -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:2 -msgid "Unlock Advanced Features and Build Even More with ACF PRO" -msgstr "" - -#. translators: %s - singular label of post type/taxonomy, i.e. "Movie"/"Genre" -#: includes/admin/views/global/form-top.php:19 -msgid "%s fields" -msgstr "%s Felder" - -#: includes/admin/post-types/admin-taxonomies.php:293 -msgid "No terms" -msgstr "Keine Begriffe" - -#: includes/admin/post-types/admin-taxonomies.php:266 -msgid "No post types" -msgstr "Keine Inhaltstypen" - -#: includes/admin/post-types/admin-post-types.php:289 -msgid "No posts" -msgstr "Keine Beiträge" - -#: includes/admin/post-types/admin-post-types.php:263 -msgid "No taxonomies" -msgstr "Keine Taxonomien" - -#: includes/admin/post-types/admin-post-types.php:208 -#: includes/admin/post-types/admin-taxonomies.php:208 -msgid "No field groups" -msgstr "Keine Feldgruppen" - -#: includes/admin/post-types/admin-field-groups.php:281 -msgid "No fields" -msgstr "Keine Felder" - -#: includes/admin/post-types/admin-field-groups.php:154 -#: includes/admin/post-types/admin-post-types.php:172 -#: includes/admin/post-types/admin-taxonomies.php:172 -msgid "No description" -msgstr "Keine Beschreibung" - -#: includes/fields/class-acf-field-page_link.php:484 -#: includes/fields/class-acf-field-post_object.php:389 -#: includes/fields/class-acf-field-relationship.php:601 -msgid "Any post status" -msgstr "Jeder Beitragsstatus" - -#: includes/post-types/class-acf-taxonomy.php:284 -msgid "" -"This taxonomy key is already in use by another taxonomy registered outside " -"of ACF and cannot be used." -msgstr "" -"Dieser Taxonomie-Schlüssel stammt von einer anderen Taxonomie außerhalb von " -"ACF und kann nicht verwendet werden." - -#: includes/post-types/class-acf-taxonomy.php:279 -msgid "" -"This taxonomy key is already in use by another taxonomy in ACF and cannot be " -"used." -msgstr "" -"Dieser Taxonomie-Schlüssel stammt von einer anderen Taxonomie in ACF und " -"kann nicht verwendet werden." - -#: includes/post-types/class-acf-taxonomy.php:252 -msgid "" -"The taxonomy key must only contain lower case alphanumeric characters, " -"underscores or dashes." -msgstr "" -"Der Taxonomie-Schlüssel darf nur Kleinbuchstaben, Unterstriche und " -"Trennstriche enthalten." - -#: includes/post-types/class-acf-taxonomy.php:247 -msgid "The taxonomy key must be under 32 characters." -msgstr "Der Taxonomie-Schlüssel muss kürzer als 32 Zeichen sein." - -#: includes/post-types/class-acf-taxonomy.php:99 -msgid "No Taxonomies found in Trash" -msgstr "Es wurden keine Taxonomien im Papierkorb gefunden" - -#: includes/post-types/class-acf-taxonomy.php:98 -msgid "No Taxonomies found" -msgstr "Es wurden keine Taxonomien gefunden" - -#: includes/post-types/class-acf-taxonomy.php:97 -msgid "Search Taxonomies" -msgstr "Suche Taxonomien" - -#: includes/post-types/class-acf-taxonomy.php:96 -msgid "View Taxonomy" -msgstr "Taxonomie anzeigen" - -#: includes/post-types/class-acf-taxonomy.php:95 -msgid "New Taxonomy" -msgstr "Neue Taxonomie" - -#: includes/post-types/class-acf-taxonomy.php:94 -msgid "Edit Taxonomy" -msgstr "Taxonomie bearbeiten" - -#: includes/post-types/class-acf-taxonomy.php:93 -msgid "Add New Taxonomy" -msgstr "Neue Taxonomie hinzufügen" - -#: includes/post-types/class-acf-post-type.php:100 -msgid "No Post Types found in Trash" -msgstr "Es wurden keine Inhaltstypen im Papierkorb gefunden" - -#: includes/post-types/class-acf-post-type.php:99 -msgid "No Post Types found" -msgstr "Es wurden keine Inhaltstypen gefunden" - -#: includes/post-types/class-acf-post-type.php:98 -msgid "Search Post Types" -msgstr "Inhaltstypen suchen" - -#: includes/post-types/class-acf-post-type.php:97 -msgid "View Post Type" -msgstr "Inhaltstyp anzeigen" - -#: includes/post-types/class-acf-post-type.php:96 -msgid "New Post Type" -msgstr "Neuer Inhaltstyp" - -#: includes/post-types/class-acf-post-type.php:95 -msgid "Edit Post Type" -msgstr "Inhaltstyp bearbeiten" - -#: includes/post-types/class-acf-post-type.php:94 -msgid "Add New Post Type" -msgstr "Neuen Inhaltstyp hinzufügen" - -#: includes/post-types/class-acf-post-type.php:361 -msgid "" -"This post type key is already in use by another post type registered outside " -"of ACF and cannot be used." -msgstr "" -"Dieser Inhaltstyp-Schlüssel stammt von einem anderen Inhaltstyp außerhalb " -"von ACF und kann nicht verwendet werden." - -#: includes/post-types/class-acf-post-type.php:356 -msgid "" -"This post type key is already in use by another post type in ACF and cannot " -"be used." -msgstr "" -"Dieser Inhaltstyp-Schlüssel stammt von einem anderen Inhaltstyp in ACF und " -"kann nicht verwendet werden." - -#. translators: %s a link to WordPress.org's Reserved Terms page -#: includes/post-types/class-acf-post-type.php:335 -#: includes/post-types/class-acf-taxonomy.php:258 -msgid "" -"This field must not be a WordPress reserved " -"term." -msgstr "" -"Dieses Feld darf kein von WordPress reservierter Begriff sein." - -#: includes/post-types/class-acf-post-type.php:329 -msgid "" -"The post type key must only contain lower case alphanumeric characters, " -"underscores or dashes." -msgstr "" -"Der Inhaltstyp-Schlüssel darf nur Kleinbuchstaben, Unterstriche und " -"Trennstriche enthalten." - -#: includes/post-types/class-acf-post-type.php:324 -msgid "The post type key must be under 20 characters." -msgstr "Der Inhaltstyp-Schlüssel muss kürzer als 20 Zeichen sein." - -#: includes/fields/class-acf-field-wysiwyg.php:27 -msgid "We do not recommend using this field in ACF Blocks." -msgstr "Es wird nicht empfohlen, dieses Feld in ACF-Blöcken zu verwenden." - -#: includes/fields/class-acf-field-wysiwyg.php:27 -msgid "" -"Displays the WordPress WYSIWYG editor as seen in Posts and Pages allowing " -"for a rich text-editing experience that also allows for multimedia content." -msgstr "" -"Zeigt den WordPress-WYSIWYG-Editor an, wie er in Beiträgen und Seiten zu " -"sehen ist, und ermöglicht so eine umfangreiche Textbearbeitung, die auch " -"Multimedia-Inhalte zulässt." - -#: includes/fields/class-acf-field-wysiwyg.php:25 -msgid "WYSIWYG Editor" -msgstr "WYSIWYG-Editor" - -#: includes/fields/class-acf-field-user.php:17 -msgid "" -"Allows the selection of one or more users which can be used to create " -"relationships between data objects." -msgstr "" -"Ermöglicht die Auswahl von einem oder mehreren Benutzern, die zur Erstellung " -"von Beziehungen zwischen Datenobjekten verwendet werden können." - -#: includes/fields/class-acf-field-url.php:26 -msgid "A text input specifically designed for storing web addresses." -msgstr "" -"Eine Texteingabe, die speziell für die Speicherung von Webadressen " -"entwickelt wurde." - -#: includes/fields/class-acf-field-url.php:25 -msgid "URL" -msgstr "URL" - -#: includes/fields/class-acf-field-true_false.php:27 -msgid "" -"A toggle that allows you to pick a value of 1 or 0 (on or off, true or " -"false, etc). Can be presented as a stylized switch or checkbox." -msgstr "" -"Ein Schalter, mit dem ein Wert von 1 oder 0 (ein oder aus, wahr oder falsch " -"usw.) auswählt werden kann. Kann als stilisierter Schalter oder " -"Kontrollkästchen dargestellt werden." - -#: includes/fields/class-acf-field-time_picker.php:27 -msgid "" -"An interactive UI for picking a time. The time format can be customized " -"using the field settings." -msgstr "" -"Eine interaktive Benutzeroberfläche zum Auswählen einer Zeit. Das Zeitformat " -"kann in den Feldeinstellungen angepasst werden." - -#: includes/fields/class-acf-field-textarea.php:26 -msgid "A basic textarea input for storing paragraphs of text." -msgstr "" -"Eine einfache Eingabe in Form eines Textbereiches zum Speichern von " -"Textabsätzen." - -#: includes/fields/class-acf-field-text.php:26 -msgid "A basic text input, useful for storing single string values." -msgstr "" -"Eine einfache Texteingabe, nützlich für die Speicherung einzelner " -"Zeichenfolgen." - -#: includes/fields/class-acf-field-taxonomy.php:22 -msgid "" -"Allows the selection of one or more taxonomy terms based on the criteria and " -"options specified in the fields settings." -msgstr "" -"Ermöglicht die Auswahl von einem oder mehreren Taxonomiebegriffen auf der " -"Grundlage der in den Feldeinstellungen angegebenen Kriterien und Optionen." - -#: includes/fields/class-acf-field-tab.php:28 -msgid "" -"Allows you to group fields into tabbed sections in the edit screen. Useful " -"for keeping fields organized and structured." -msgstr "" - -#: includes/fields/class-acf-field-select.php:27 -msgid "A dropdown list with a selection of choices that you specify." -msgstr "" - -#: includes/fields/class-acf-field-relationship.php:19 -msgid "" -"A dual-column interface to select one or more posts, pages, or custom post " -"type items to create a relationship with the item that you're currently " -"editing. Includes options to search and filter." -msgstr "" - -#: includes/fields/class-acf-field-range.php:26 -msgid "" -"An input for selecting a numerical value within a specified range using a " -"range slider element." -msgstr "" -"Ein Schieberegler-Eingabefeld für numerische Zahlenwerte in einem " -"festgelegten Bereich." - -#: includes/fields/class-acf-field-radio.php:27 -msgid "" -"A group of radio button inputs that allows the user to make a single " -"selection from values that you specify." -msgstr "" -"Eine Gruppe von Radiobuttons, die es dem Benutzer ermöglichen, eine einzelne " -"Auswahl aus von dir angegebenen Werten zu treffen." - -#: includes/fields/class-acf-field-post_object.php:19 -msgid "" -"An interactive and customizable UI for picking one or many posts, pages or " -"post type items with the option to search. " -msgstr "" -"Eine interaktive und anpassbare Benutzeroberfläche zur Auswahl einer " -"beliebigen Anzahl von Beiträgen, Seiten oder Inhaltstypen-Elemente mit der " -"Option zum Suchen. " - -#: includes/fields/class-acf-field-password.php:26 -msgid "An input for providing a password using a masked field." -msgstr "Ein Passwort-Feld, das die Eingabe maskiert." - -#: includes/fields/class-acf-field-page_link.php:476 -#: includes/fields/class-acf-field-post_object.php:381 -#: includes/fields/class-acf-field-relationship.php:593 -msgid "Filter by Post Status" -msgstr "Nach Beitragsstatus filtern" - -#: includes/fields/class-acf-field-page_link.php:27 -msgid "" -"An interactive dropdown to select one or more posts, pages, custom post type " -"items or archive URLs, with the option to search." -msgstr "" -"Ein interaktives Drop-down-Menü zur Auswahl von einem oder mehreren " -"Beiträgen, Seiten, individuellen Inhaltstypen oder Archiv-URLs mit der " -"Option zur Suche." - -#: includes/fields/class-acf-field-oembed.php:27 -msgid "" -"An interactive component for embedding videos, images, tweets, audio and " -"other content by making use of the native WordPress oEmbed functionality." -msgstr "" -"Ein interaktives Feld zum Einbetten von Videos, Bildern, Tweets, Audio und " -"anderen Inhalten unter Verwendung der nativen WordPress-oEmbed-" -"Funktionalität." - -#: includes/fields/class-acf-field-number.php:26 -msgid "An input limited to numerical values." -msgstr "Eine auf numerische Werte beschränkte Eingabe." - -#: includes/fields/class-acf-field-message.php:28 -msgid "" -"Used to display a message to editors alongside other fields. Useful for " -"providing additional context or instructions around your fields." -msgstr "" - -#: includes/fields/class-acf-field-link.php:27 -msgid "" -"Allows you to specify a link and its properties such as title and target " -"using the WordPress native link picker." -msgstr "" - -#: includes/fields/class-acf-field-image.php:27 -msgid "Uses the native WordPress media picker to upload, or choose images." -msgstr "" -"Nutzt den nativen WordPress-Mediendialog zum Hochladen oder Auswählen von " -"Bildern." - -#: includes/fields/class-acf-field-group.php:27 -msgid "" -"Provides a way to structure fields into groups to better organize the data " -"and the edit screen." -msgstr "" -"Bietet die Möglichkeit zur Gruppierung von Feldern, um Daten und den " -"Bearbeiten-Bildschirm besser zu strukturieren." - -#: includes/fields/class-acf-field-google-map.php:27 -msgid "" -"An interactive UI for selecting a location using Google Maps. Requires a " -"Google Maps API key and additional configuration to display correctly." -msgstr "" -"Eine interaktive Benutzeroberfläche zur Auswahl eines Standortes unter " -"Verwendung von Google Maps. Benötigt einen Google-Maps-API-Schlüssel und " -"eine zusätzliche Konfiguration für eine korrekte Anzeige." - -#: includes/fields/class-acf-field-file.php:27 -msgid "Uses the native WordPress media picker to upload, or choose files." -msgstr "" -"Nutzt den nativen WordPress-Mediendialog zum Hochladen oder Auswählen von " -"Dateien." - -#: includes/fields/class-acf-field-email.php:26 -msgid "A text input specifically designed for storing email addresses." -msgstr "" -"Ein Texteingabefeld, das speziell für die Speicherung von E-Mail-Adressen " -"entwickelt wurde." - -#: includes/fields/class-acf-field-date_time_picker.php:27 -msgid "" -"An interactive UI for picking a date and time. The date return format can be " -"customized using the field settings." -msgstr "" -"Eine interaktive Benutzeroberfläche zur Auswahl von Datum und Uhrzeit. Das " -"zurückgegebene Datumsformat kann in den Feldeinstellungen angepasst werden." - -#: includes/fields/class-acf-field-date_picker.php:27 -msgid "" -"An interactive UI for picking a date. The date return format can be " -"customized using the field settings." -msgstr "" -"Eine interaktive Benutzeroberfläche zur Auswahl eines Datums. Das " -"zurückgegebene Datumsformat kann in den Feldeinstellungen angepasst werden." - -#: includes/fields/class-acf-field-color_picker.php:27 -msgid "An interactive UI for selecting a color, or specifying a Hex value." -msgstr "" -"Eine interaktive Benutzeroberfläche zur Auswahl einer Farbe, oder zur " -"Eingabe eines Hex-Wertes." - -#: includes/fields/class-acf-field-checkbox.php:27 -msgid "" -"A group of checkbox inputs that allow the user to select one, or multiple " -"values that you specify." -msgstr "" -"Eine Gruppe von Auswahlkästchen, die du festlegst, aus denen der Benutzer " -"einen oder mehrere Werte auswählen kann." - -#: includes/fields/class-acf-field-button-group.php:26 -msgid "" -"A group of buttons with values that you specify, users can choose one option " -"from the values provided." -msgstr "" -"Eine Gruppe von Buttons mit von dir festgelegten Werten. Die Benutzer können " -"eine Option aus den angegebenen Werten auswählen." - -#: includes/fields/class-acf-field-accordion.php:27 -msgid "" -"Allows you to group and organize custom fields into collapsable panels that " -"are shown while editing content. Useful for keeping large datasets tidy." -msgstr "" - -#: includes/fields.php:475 -msgid "" -"This provides a solution for repeating content such as slides, team members, " -"and call-to-action tiles, by acting as a parent to a set of subfields which " -"can be repeated again and again." -msgstr "" - -#: includes/fields.php:465 -msgid "" -"This provides an interactive interface for managing a collection of " -"attachments. Most settings are similar to the Image field type. Additional " -"settings allow you to specify where new attachments are added in the gallery " -"and the minimum/maximum number of attachments allowed." -msgstr "" - -#: includes/fields.php:455 -msgid "" -"This provides a simple, structured, layout-based editor. The Flexible " -"Content field allows you to define, create and manage content with total " -"control by using layouts and subfields to design the available blocks." -msgstr "" - -#: includes/fields.php:445 -msgid "" -"This allows you to select and display existing fields. It does not duplicate " -"any fields in the database, but loads and displays the selected fields at " -"run-time. The Clone field can either replace itself with the selected fields " -"or display the selected fields as a group of subfields." -msgstr "" - -#: includes/fields.php:442 -msgctxt "noun" -msgid "Clone" -msgstr "Klon" - -#: includes/admin/views/global/navigation.php:86 includes/fields.php:357 -msgid "PRO" -msgstr "PRO" - -#: includes/fields.php:355 includes/fields.php:412 -msgid "Advanced" -msgstr "Erweitert" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:85 -msgid "JSON (newer)" -msgstr "JSON (neuer)" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:81 -msgid "Original" -msgstr "Original" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:55 -msgid "Invalid post ID." -msgstr "Ungültige Beitrags-ID." - -#: includes/ajax/class-acf-ajax-local-json-diff.php:47 -msgid "Invalid post type selected for review." -msgstr "Der für die Betrachtung ausgewählte Inhaltstyp ist ungültig." - -#: includes/admin/views/global/navigation.php:186 -msgid "More" -msgstr "Mehr" - -#: includes/admin/views/browse-fields-modal.php:86 -msgid "Tutorial" -msgstr "Anleitung" - -#: includes/admin/views/browse-fields-modal.php:75 -msgid "Available with ACF PRO" -msgstr "Verfügbar mit ACF PRO" - -#: includes/admin/views/browse-fields-modal.php:63 -msgid "Select Field" -msgstr "Feld auswählen" - -#. translators: %s: A link to the popular fields used in ACF -#: includes/admin/views/browse-fields-modal.php:50 -msgid "Try a different search term or browse %s" -msgstr "Probiere es mit einem anderen Suchbegriff oder durchsuche %s" - -#: includes/admin/views/browse-fields-modal.php:47 -msgid "Popular fields" -msgstr "Beliebte Felder" - -#. translators: %s: The invalid search term -#: includes/admin/views/browse-fields-modal.php:40 -msgid "No search results for '%s'" -msgstr "Es wurden keine Suchergebnisse für ‚%s‘ gefunden" - -#: includes/admin/views/browse-fields-modal.php:13 -msgid "Search fields..." -msgstr "Felder suchen ..." - -#: includes/admin/views/browse-fields-modal.php:11 -msgid "Select Field Type" -msgstr "Feldtyp auswählen" - -#: includes/admin/views/browse-fields-modal.php:4 -msgid "Popular" -msgstr "Beliebt" - -#: includes/admin/views/acf-taxonomy/list-empty.php:7 -msgid "Add Taxonomy" -msgstr "Taxonomie hinzufügen" - -#: includes/admin/views/acf-taxonomy/list-empty.php:6 -msgid "Create custom taxonomies to classify post type content" -msgstr "" -"Erstelle individuelle Taxonomien, um die Inhalte von Inhaltstypen zu " -"kategorisieren" - -#: includes/admin/views/acf-taxonomy/list-empty.php:5 -msgid "Add Your First Taxonomy" -msgstr "Deine erste Taxonomie hinzufügen" - -#: includes/admin/views/acf-taxonomy/basic-settings.php:122 -msgid "Hierarchical taxonomies can have descendants (like categories)." -msgstr "" - -#: includes/admin/views/acf-taxonomy/basic-settings.php:107 -msgid "Makes a taxonomy visible on the frontend and in the admin dashboard." -msgstr "" - -#: includes/admin/views/acf-taxonomy/basic-settings.php:91 -msgid "One or many post types that can be classified with this taxonomy." -msgstr "" - -#. translators: example taxonomy -#: includes/admin/views/acf-taxonomy/basic-settings.php:60 -msgid "genre" -msgstr "genre" - -#. translators: example taxonomy -#: includes/admin/views/acf-taxonomy/basic-settings.php:42 -msgid "Genre" -msgstr "Genre" - -#. translators: example taxonomy -#: includes/admin/views/acf-taxonomy/basic-settings.php:25 -msgid "Genres" -msgstr "Genres" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1211 -msgid "" -"Optional custom controller to use instead of `WP_REST_Terms_Controller `." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1155 -msgid "Expose this post type in the REST API." -msgstr "Diesen Inhaltstyp in der REST-API anzeigen." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1055 -msgid "Customize the query variable name" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1028 -msgid "" -"Terms can be accessed using the non-pretty permalink, e.g., {query_var}" -"={term_slug}." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:981 -msgid "Parent-child terms in URLs for hierarchical taxonomies." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:941 -msgid "Customize the slug used in the URL" -msgstr "Passe die Titelform an, die in der URL genutzt wird" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:924 -msgid "Permalinks for this taxonomy are disabled." -msgstr "Permalinks sind für diese Taxonomie deaktiviert." - -#. translators: this string will be appended with the new permalink structure. -#: includes/admin/views/acf-taxonomy/advanced-settings.php:921 -msgid "" -"Rewrite the URL using the taxonomy key as the slug. Your permalink structure " -"will be" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:913 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1030 -#: includes/admin/views/acf-taxonomy/basic-settings.php:57 -msgid "Taxonomy Key" -msgstr "Taxonomie-Schlüssel" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:911 -msgid "Select the type of permalink to use for this taxonomy." -msgstr "Wähle den Permalink-Typ, der für diese Taxonomie genutzt werden soll." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:896 -msgid "Display a column for the taxonomy on post type listing screens." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:895 -msgid "Show Admin Column" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:882 -msgid "Show the taxonomy in the quick/bulk edit panel." -msgstr "Die Taxonomie im Schnell- und Mehrfach-Bearbeitungsbereich anzeigen." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:881 -msgid "Quick Edit" -msgstr "QuickEdit" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:868 -msgid "List the taxonomy in the Tag Cloud Widget controls." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:867 -msgid "Tag Cloud" -msgstr "Schlagwort-Wolke" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:824 -msgid "" -"A PHP function name to be called for sanitizing taxonomy data saved from a " -"meta box." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:823 -msgid "Meta Box Sanitization Callback" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:805 -msgid "" -"A PHP function name to be called to handle the content of a meta box on your " -"taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:804 -msgid "Register Meta Box Callback" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:763 -msgid "No Meta Box" -msgstr "Keine Metabox" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:762 -msgid "Custom Meta Box" -msgstr "Individuelle Metabox" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:758 -msgid "" -"Controls the meta box on the content editor screen. By default, the " -"Categories meta box is shown for hierarchical taxonomies, and the Tags meta " -"box is shown for non-hierarchical taxonomies." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:757 -msgid "Meta Box" -msgstr "Metabox" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:746 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:767 -msgid "Categories Meta Box" -msgstr "Kategorien-Metabox" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:745 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:766 -msgid "Tags Meta Box" -msgstr "Schlagwörter-Metabox" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:704 -msgid "A link to a tag" -msgstr "Ein Link zu einem Schlagwort" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:703 -msgid "Describes a navigation link block variation used in the block editor." -msgstr "" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:698 -msgid "A link to a %s" -msgstr "Ein Link zu einer Taxonomie %s" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:683 -msgid "Tag Link" -msgstr "Schlagwort-Link" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:682 -msgid "" -"Assigns a title for navigation link block variation used in the block editor." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:663 -msgid "← Go to tags" -msgstr "← Zu Schlagwörtern gehen" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:662 -msgid "" -"Assigns the text used to link back to the main index after updating a term." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:661 -msgid "Back To Items" -msgstr "Zurück zu den Elementen" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:657 -msgid "← Go to %s" -msgstr "← Zu %s gehen" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:642 -msgid "Tags list" -msgstr "Schlagwörter-Liste" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:641 -msgid "Assigns text to the table hidden heading." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:622 -msgid "Tags list navigation" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:621 -msgid "Assigns text to the table pagination hidden heading." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:597 -msgid "Filter by category" -msgstr "Nach Kategorie filtern" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:596 -msgid "Assigns text to the filter button in the posts lists table." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:595 -msgid "Filter By Item" -msgstr "" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:591 -msgid "Filter by %s" -msgstr "Nach %s filtern" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:575 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:576 -msgid "" -"The description is not prominent by default; however, some themes may show " -"it." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:574 -msgid "Describes the Description field on the Edit Tags screen." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:573 -msgid "Description Field Description" -msgstr "Beschreibung des Beschreibungfeldes" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:554 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:555 -msgid "" -"Assign a parent term to create a hierarchy. The term Jazz, for example, " -"would be the parent of Bebop and Big Band" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:553 -msgid "Describes the Parent field on the Edit Tags screen." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:552 -msgid "Parent Field Description" -msgstr "Beschreibung des übergeordneten Feldes" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:538 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:539 -msgid "" -"The \"slug\" is the URL-friendly version of the name. It is usually all " -"lower case and contains only letters, numbers, and hyphens." -msgstr "" -"Die Titelform ist die URL-freundliche Version des Namens. Sie besteht " -"üblicherweise aus Kleinbuchstaben und zudem nur aus Buchstaben, Zahlen und " -"Bindestrichen." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:537 -msgid "Describes the Slug field on the Edit Tags screen." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:536 -msgid "Slug Field Description" -msgstr "Beschreibung des Titelformfeldes" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:522 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:523 -msgid "The name is how it appears on your site" -msgstr "Der Name ist das, was auf deiner Website angezeigt wird" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:521 -msgid "Describes the Name field on the Edit Tags screen." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:520 -msgid "Name Field Description" -msgstr "Beschreibung des Namenfeldes" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:507 -msgid "No tags" -msgstr "Keine Schlagwörter" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:506 -msgid "" -"Assigns the text displayed in the posts and media list tables when no tags " -"or categories are available." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:505 -msgid "No Terms" -msgstr "Keine Begriffe" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:501 -msgid "No %s" -msgstr "Keine %s-Taxonomien" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:486 -msgid "No tags found" -msgstr "Es wurden keine Schlagwörter gefunden" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:485 -msgid "" -"Assigns the text displayed when clicking the 'choose from most used' text in " -"the taxonomy meta box when no tags are available, and assigns the text used " -"in the terms list table when there are no items for a taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:484 -msgid "Not Found" -msgstr "Es wurde nichts gefunden" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:463 -msgid "Assigns text to the Title field of the Most Used tab." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:462 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:464 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:465 -msgid "Most Used" -msgstr "Am häufigsten verwendet" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:444 -msgid "Choose from the most used tags" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:443 -msgid "" -"Assigns the 'choose from most used' text used in the meta box when " -"JavaScript is disabled. Only used on non-hierarchical taxonomies." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:442 -msgid "Choose From Most Used" -msgstr "" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:438 -msgid "Choose from the most used %s" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:418 -msgid "Add or remove tags" -msgstr "Schlagwörter hinzufügen oder entfernen" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:417 -msgid "" -"Assigns the add or remove items text used in the meta box when JavaScript is " -"disabled. Only used on non-hierarchical taxonomies" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:416 -msgid "Add Or Remove Items" -msgstr "Elemente hinzufügen oder entfernen" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:412 -msgid "Add or remove %s" -msgstr "%s hinzufügen oder entfernen" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:392 -msgid "Separate tags with commas" -msgstr "Schlagwörter durch Kommas trennen" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:391 -msgid "" -"Assigns the separate item with commas text used in the taxonomy meta box. " -"Only used on non-hierarchical taxonomies." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:390 -msgid "Separate Items With Commas" -msgstr "" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:386 -msgid "Separate %s with commas" -msgstr "Trenne %s durch Kommas" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:366 -msgid "Popular Tags" -msgstr "Beliebte Schlagwörter" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:365 -msgid "Assigns popular items text. Only used for non-hierarchical taxonomies." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:364 -msgid "Popular Items" -msgstr "Beliebte Elemente" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:361 -msgid "Popular %s" -msgstr "Beliebte %s" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:347 -msgid "Search Tags" -msgstr "Schlagwörter suchen" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:346 -msgid "Assigns search items text." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:323 -msgid "Parent Category:" -msgstr "Übergeordnete Kategorie:" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:322 -msgid "Assigns parent item text, but with a colon (:) added to the end." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:321 -msgid "Parent Item With Colon" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:298 -msgid "Parent Category" -msgstr "Übergeordnete Kategorie" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:297 -msgid "Assigns parent item text. Only used on hierarchical taxonomies." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:296 -msgid "Parent Item" -msgstr "Übergeordnetes Element" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:293 -msgid "Parent %s" -msgstr "Übergeordnete Taxonomie %s" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:278 -msgid "New Tag Name" -msgstr "Neuer Schlagwortname" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:277 -msgid "Assigns the new item name text." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:276 -msgid "New Item Name" -msgstr "" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:273 -msgid "New %s Name" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:258 -msgid "Add New Tag" -msgstr "Ein neues Schlagwort hinzufügen" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:257 -msgid "Assigns the add new item text." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:238 -msgid "Update Tag" -msgstr "Schlagwort aktualisieren" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:237 -msgid "Assigns the update item text." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:236 -msgid "Update Item" -msgstr "Element aktualisieren" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:233 -msgid "Update %s" -msgstr "%s aktualisieren" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:218 -msgid "View Tag" -msgstr "Schlagwort anzeigen" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:217 -msgid "In the admin bar to view term during editing." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:198 -msgid "Edit Tag" -msgstr "Schlagwort bearbeiten" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:197 -msgid "At the top of the editor screen when editing a term." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:178 -msgid "All Tags" -msgstr "Alle Schlagwörter" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:177 -msgid "Assigns the all items text." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:158 -msgid "Assigns the menu name text." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:157 -msgid "Menu Label" -msgstr "Menü-Beschriftung" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:131 -msgid "Active taxonomies are enabled and registered with WordPress." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:115 -msgid "A descriptive summary of the taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:95 -msgid "A descriptive summary of the term." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:94 -msgid "Term Description" -msgstr "Beschreibung des Begriffs" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:76 -msgid "Single word, no spaces. Underscores and dashes allowed." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:75 -msgid "Term Slug" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:56 -msgid "The name of the default term." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:55 -msgid "Term Name" -msgstr "Name des Begriffs" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:41 -msgid "" -"Create a term for the taxonomy that cannot be deleted. It will not be " -"selected for posts by default." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:40 -msgid "Default Term" -msgstr "Standardbegriff" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:28 -msgid "" -"Whether terms in this taxonomy should be sorted in the order they are " -"provided to `wp_set_object_terms()`." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:27 -msgid "Sort Terms" -msgstr "" - -#: includes/admin/views/acf-post-type/list-empty.php:7 -msgid "Add Post Type" -msgstr "Inhaltstyp hinzufügen" - -#: includes/admin/views/acf-post-type/list-empty.php:6 -msgid "" -"Expand the functionality of WordPress beyond standard posts and pages with " -"custom post types." -msgstr "" - -#: includes/admin/views/acf-post-type/list-empty.php:5 -msgid "Add Your First Post Type" -msgstr "Deinen ersten Inhaltstyp hinzufügen" - -#: includes/admin/views/acf-post-type/basic-settings.php:136 -#: includes/admin/views/acf-taxonomy/basic-settings.php:135 -msgid "I know what I'm doing, show me all the options." -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:135 -#: includes/admin/views/acf-taxonomy/basic-settings.php:134 -msgid "Advanced Configuration" -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:123 -msgid "Hierarchical post types can have descendants (like pages)." -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:122 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:980 -#: includes/admin/views/acf-taxonomy/basic-settings.php:121 -msgid "Hierarchical" -msgstr "Hierarchisch" - -#: includes/admin/views/acf-post-type/basic-settings.php:107 -msgid "Visible on the frontend and in the admin dashboard." -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:106 -#: includes/admin/views/acf-taxonomy/basic-settings.php:106 -msgid "Public" -msgstr "Öffentlich" - -#. translators: example post type -#: includes/admin/views/acf-post-type/basic-settings.php:59 -msgid "movie" -msgstr "Film" - -#: includes/admin/views/acf-post-type/basic-settings.php:57 -msgid "Lower case letters, underscores and dashes only, Max 20 characters." -msgstr "" - -#. translators: example post type -#: includes/admin/views/acf-post-type/basic-settings.php:41 -msgid "Movie" -msgstr "Film" - -#: includes/admin/views/acf-post-type/basic-settings.php:39 -#: includes/admin/views/acf-taxonomy/basic-settings.php:40 -msgid "Singular Label" -msgstr "" - -#. translators: example post type -#: includes/admin/views/acf-post-type/basic-settings.php:24 -msgid "Movies" -msgstr "Filme" - -#: includes/admin/views/acf-post-type/basic-settings.php:22 -#: includes/admin/views/acf-taxonomy/basic-settings.php:23 -msgid "Plural Label" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1270 -msgid "" -"Optional custom controller to use instead of `WP_REST_Posts_Controller`." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1269 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1210 -msgid "Controller Class" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1251 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1191 -msgid "The namespace part of the REST API URL." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1250 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1190 -msgid "Namespace Route" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1232 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1172 -msgid "The base URL for the post type REST API URLs." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1231 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1171 -msgid "Base URL" -msgstr "Basis-URL" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1217 -msgid "" -"Exposes this post type in the REST API. Required to use the block editor." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1216 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1154 -msgid "Show In REST API" -msgstr "Im REST-API anzeigen" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1195 -msgid "Customize the query variable name." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1194 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1054 -msgid "Query Variable" -msgstr "Abfrage-Variable" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1172 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1032 -msgid "No Query Variable Support" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1171 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1031 -msgid "Custom Query Variable" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1168 -msgid "" -"Items can be accessed using the non-pretty permalink, eg. {post_type}" -"={post_slug}." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1167 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1027 -msgid "Query Variable Support" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1142 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1003 -msgid "URLs for an item and items can be accessed with a query string." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1141 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1002 -msgid "Publicly Queryable" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1120 -msgid "Custom slug for the Archive URL." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1119 -msgid "Archive Slug" -msgstr "Archiv-Titelform" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1106 -msgid "" -"Has an item archive that can be customized with an archive template file in " -"your theme." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1105 -msgid "Archive" -msgstr "Archiv" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1085 -msgid "Pagination support for the items URLs such as the archives." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1084 -msgid "Pagination" -msgstr "Seitennummerierung" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1067 -msgid "RSS feed URL for the post type items." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1066 -msgid "Feed URL" -msgstr "Feed-URL" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1048 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:961 -msgid "" -"Alters the permalink structure to add the `WP_Rewrite::$front` prefix to " -"URLs." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1047 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:960 -msgid "Front URL Prefix" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1028 -msgid "Customize the slug used in the URL." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1027 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:940 -msgid "URL Slug" -msgstr "URL-Titelform" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1011 -msgid "Permalinks for this post type are disabled." -msgstr "" - -#. translators: this string will be appended with the new permalink structure. -#: includes/admin/views/acf-post-type/advanced-settings.php:1010 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:923 -msgid "" -"Rewrite the URL using a custom slug defined in the input below. Your " -"permalink structure will be" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1002 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:915 -msgid "No Permalink (prevent URL rewriting)" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1001 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:914 -msgid "Custom Permalink" -msgstr "Individueller Permalink" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1000 -#: includes/admin/views/acf-post-type/advanced-settings.php:1170 -#: includes/admin/views/acf-post-type/basic-settings.php:56 -msgid "Post Type Key" -msgstr "Inhaltstyp-Schlüssel" - -#. translators: this string will be appended with the new permalink structure. -#: includes/admin/views/acf-post-type/advanced-settings.php:998 -#: includes/admin/views/acf-post-type/advanced-settings.php:1008 -msgid "" -"Rewrite the URL using the post type key as the slug. Your permalink " -"structure will be" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:996 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:910 -msgid "Permalink Rewrite" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:982 -msgid "Delete items by a user when that user is deleted." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:981 -msgid "Delete With User" -msgstr "Zusammen mit dem Benutzer löschen" - -#: includes/admin/views/acf-post-type/advanced-settings.php:967 -msgid "Allow the post type to be exported from 'Tools' > 'Export'." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:966 -msgid "Can Export" -msgstr "Kann exportieren" - -#: includes/admin/views/acf-post-type/advanced-settings.php:935 -msgid "Optionally provide a plural to be used in capabilities." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:934 -msgid "Plural Capability Name" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:916 -msgid "Choose another post type to base the capabilities for this post type." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:915 -msgid "Singular Capability Name" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:901 -msgid "" -"By default the capabilities of the post type will inherit the 'Post' " -"capability names, eg. edit_post, delete_posts. Enable to use post type " -"specific capabilities, eg. edit_{singular}, delete_{plural}." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:900 -msgid "Rename Capabilities" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:885 -msgid "Exclude From Search" -msgstr "Von der Suche ausschließen" - -#: includes/admin/views/acf-post-type/advanced-settings.php:872 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:854 -msgid "" -"Allow items to be added to menus in the 'Appearance' > 'Menus' screen. Must " -"be turned on in 'Screen options'." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:871 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:853 -msgid "Appearance Menus Support" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:853 -msgid "Appears as an item in the 'New' menu in the admin bar." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:852 -msgid "Show In Admin Bar" -msgstr "In der Adminleiste anzeigen" - -#: includes/admin/views/acf-post-type/advanced-settings.php:821 -msgid "" -"A PHP function name to be called when setting up the meta boxes for the edit " -"screen." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:820 -msgid "Custom Meta Box Callback" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:800 -msgid "Menu Icon" -msgstr "Menü-Icon" - -#: includes/admin/views/acf-post-type/advanced-settings.php:782 -msgid "The position in the sidebar menu in the admin dashboard." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:781 -msgid "Menu Position" -msgstr "Menü-Position" - -#: includes/admin/views/acf-post-type/advanced-settings.php:763 -msgid "" -"By default the post type will get a new top level item in the admin menu. If " -"an existing top level item is supplied here, the post type will be added as " -"a submenu item under it." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:762 -msgid "Admin Menu Parent" -msgstr "" - -#. translators: %s = "dashicon class name", link to the WordPress dashicon -#. documentation. -#: includes/admin/views/acf-post-type/advanced-settings.php:750 -msgid "" -"The icon used for the post type menu item in the admin dashboard. Can be a " -"URL or %s to use for the icon." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:745 -msgid "Dashicon class name" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:734 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:734 -msgid "Admin editor navigation in the sidebar menu." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:733 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:733 -msgid "Show In Admin Menu" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:720 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:719 -msgid "Items can be edited and managed in the admin dashboard." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:719 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:718 -msgid "Show In UI" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:689 -msgid "A link to a post." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:688 -msgid "Description for a navigation link block variation." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:687 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:702 -msgid "Item Link Description" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:683 -msgid "A link to a %s." -msgstr "Ein Link zu einem Inhaltstyp %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:668 -msgid "Post Link" -msgstr "Beitragslink" - -#: includes/admin/views/acf-post-type/advanced-settings.php:667 -msgid "Title for a navigation link block variation." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:666 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:681 -msgid "Item Link" -msgstr "Element-Link" - -#. translators: %s Singular form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:663 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:678 -msgid "%s Link" -msgstr "%s-Link" - -#: includes/admin/views/acf-post-type/advanced-settings.php:648 -msgid "Post updated." -msgstr "Der Beitrag wurde aktualisiert." - -#: includes/admin/views/acf-post-type/advanced-settings.php:647 -msgid "In the editor notice after an item is updated." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:646 -msgid "Item Updated" -msgstr "Das Element wurde aktualisiert" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:643 -msgid "%s updated." -msgstr "%s wurde aktualisiert." - -#: includes/admin/views/acf-post-type/advanced-settings.php:628 -msgid "Post scheduled." -msgstr "Die Beiträge wurden geplant." - -#: includes/admin/views/acf-post-type/advanced-settings.php:627 -msgid "In the editor notice after scheduling an item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:626 -msgid "Item Scheduled" -msgstr "Das Element wurde geplant" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:623 -msgid "%s scheduled." -msgstr "%s wurde geplant." - -#: includes/admin/views/acf-post-type/advanced-settings.php:608 -msgid "Post reverted to draft." -msgstr "Der Beitrag wurde auf Entwurf zurückgesetzt." - -#: includes/admin/views/acf-post-type/advanced-settings.php:607 -msgid "In the editor notice after reverting an item to draft." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:606 -msgid "Item Reverted To Draft" -msgstr "Das Element wurde auf Entwurf zurückgesetzt" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:603 -msgid "%s reverted to draft." -msgstr "%s wurde auf Entwurf zurückgesetzt." - -#: includes/admin/views/acf-post-type/advanced-settings.php:588 -msgid "Post published privately." -msgstr "Der Beitrag wurde privat veröffentlicht." - -#: includes/admin/views/acf-post-type/advanced-settings.php:587 -msgid "In the editor notice after publishing a private item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:586 -msgid "Item Published Privately" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:583 -msgid "%s published privately." -msgstr "%s wurde privat veröffentlicht." - -#: includes/admin/views/acf-post-type/advanced-settings.php:568 -msgid "Post published." -msgstr "Der Beitrag wurde veröffentlicht." - -#: includes/admin/views/acf-post-type/advanced-settings.php:567 -msgid "In the editor notice after publishing an item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:566 -msgid "Item Published" -msgstr "Das Element wurde veröffentlicht" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:563 -msgid "%s published." -msgstr "%s wurde veröffentlicht." - -#: includes/admin/views/acf-post-type/advanced-settings.php:548 -msgid "Posts list" -msgstr "Liste der Beiträge" - -#: includes/admin/views/acf-post-type/advanced-settings.php:547 -msgid "Used by screen readers for the items list on the post type list screen." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:546 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:640 -msgid "Items List" -msgstr "Elementliste" - -#. translators: %s Plural form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:543 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:637 -msgid "%s list" -msgstr "%s-Liste" - -#: includes/admin/views/acf-post-type/advanced-settings.php:528 -msgid "Posts list navigation" -msgstr "Navigation der Beiträge-Liste" - -#: includes/admin/views/acf-post-type/advanced-settings.php:527 -msgid "" -"Used by screen readers for the filter list pagination on the post type list " -"screen." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:526 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:620 -msgid "Items List Navigation" -msgstr "Navigation der Elementliste" - -#. translators: %s Plural form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:523 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:617 -msgid "%s list navigation" -msgstr "%s-Listen-Navigation" - -#: includes/admin/views/acf-post-type/advanced-settings.php:507 -msgid "Filter posts by date" -msgstr "Beiträge nach Datum filtern" - -#: includes/admin/views/acf-post-type/advanced-settings.php:506 -msgid "" -"Used by screen readers for the filter by date heading on the post type list " -"screen." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:505 -msgid "Filter Items By Date" -msgstr "Elemente nach Datum filtern" - -#. translators: %s Plural form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:501 -msgid "Filter %s by date" -msgstr "%s nach Datum filtern" - -#: includes/admin/views/acf-post-type/advanced-settings.php:486 -msgid "Filter posts list" -msgstr "Liste mit Beiträgen filtern" - -#: includes/admin/views/acf-post-type/advanced-settings.php:485 -msgid "" -"Used by screen readers for the filter links heading on the post type list " -"screen." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:484 -msgid "Filter Items List" -msgstr "Elemente-Liste filtern" - -#. translators: %s Plural form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:480 -msgid "Filter %s list" -msgstr "%s-Liste filtern" - -#: includes/admin/views/acf-post-type/advanced-settings.php:464 -msgid "In the media modal showing all media uploaded to this item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:463 -msgid "Uploaded To This Item" -msgstr "Zu diesem Element hochgeladen" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:459 -msgid "Uploaded to this %s" -msgstr "Zu diesem %s hochgeladen" - -#: includes/admin/views/acf-post-type/advanced-settings.php:444 -msgid "Insert into post" -msgstr "In den Beitrag einfügen" - -#: includes/admin/views/acf-post-type/advanced-settings.php:443 -msgid "As the button label when adding media to content." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:442 -msgid "Insert Into Media Button" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:438 -msgid "Insert into %s" -msgstr "In %s einfügen" - -#: includes/admin/views/acf-post-type/advanced-settings.php:423 -msgid "Use as featured image" -msgstr "Als Beitragsbild verwenden" - -#: includes/admin/views/acf-post-type/advanced-settings.php:422 -msgid "" -"As the button label for selecting to use an image as the featured image." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:421 -msgid "Use Featured Image" -msgstr "Beitragsbild verwenden" - -#: includes/admin/views/acf-post-type/advanced-settings.php:408 -msgid "Remove featured image" -msgstr "Beitragsbild entfernen" - -#: includes/admin/views/acf-post-type/advanced-settings.php:407 -msgid "As the button label when removing the featured image." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:406 -msgid "Remove Featured Image" -msgstr "Beitragsbild entfernen" - -#: includes/admin/views/acf-post-type/advanced-settings.php:393 -msgid "Set featured image" -msgstr "Beitragsbild festlegen" - -#: includes/admin/views/acf-post-type/advanced-settings.php:392 -msgid "As the button label when setting the featured image." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:391 -msgid "Set Featured Image" -msgstr "Beitragsbild festlegen" - -#: includes/admin/views/acf-post-type/advanced-settings.php:378 -msgid "Featured image" -msgstr "Beitragsbild" - -#: includes/admin/views/acf-post-type/advanced-settings.php:377 -msgid "In the editor used for the title of the featured image meta box." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:376 -msgid "Featured Image Meta Box" -msgstr "Beitragsbild-Metabox" - -#: includes/admin/views/acf-post-type/advanced-settings.php:363 -msgid "Post Attributes" -msgstr "Beitrags-Attribute" - -#: includes/admin/views/acf-post-type/advanced-settings.php:362 -msgid "In the editor used for the title of the post attributes meta box." -msgstr "" -"In dem Editor, der für den Titel der Beitragsattribute-Metabox verwendet " -"wird." - -#: includes/admin/views/acf-post-type/advanced-settings.php:361 -msgid "Attributes Meta Box" -msgstr "Metabox-Attribute" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:358 -msgid "%s Attributes" -msgstr "%s-Attribute" - -#: includes/admin/views/acf-post-type/advanced-settings.php:343 -msgid "Post Archives" -msgstr "Beitrags-Archive" - -#: includes/admin/views/acf-post-type/advanced-settings.php:342 -msgid "" -"Adds 'Post Type Archive' items with this label to the list of posts shown " -"when adding items to an existing menu in a CPT with archives enabled. Only " -"appears when editing menus in 'Live Preview' mode and a custom archive slug " -"has been provided." -msgstr "" -"Fügt ‚Inhaltstyp-Archiv‘-Elemente mit dieser Beschriftung zur Liste der " -"Beiträge hinzu, die beim Hinzufügen von Elementen zu einem bestehenden Menü " -"in einem individuellen Inhaltstyp mit aktivierten Archiven angezeigt werden. " -"Erscheint nur, wenn Menüs im Modus „Live-Vorschau“ bearbeitet werden und " -"eine individuelle Archiv-Titelform angegeben wurde." - -#: includes/admin/views/acf-post-type/advanced-settings.php:341 -msgid "Archives Nav Menu" -msgstr "Navigations-Menü der Archive" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:338 -msgid "%s Archives" -msgstr "%s-Archive" - -#: includes/admin/views/acf-post-type/advanced-settings.php:323 -msgid "No posts found in Trash" -msgstr "Es wurden keine Beiträge im Papierkorb gefunden" - -#: includes/admin/views/acf-post-type/advanced-settings.php:322 -msgid "" -"At the top of the post type list screen when there are no posts in the trash." -msgstr "" -"Oben in der Listen-Ansicht des Inhaltstyps, wenn keine Beiträge im " -"Papierkorb vorhanden sind." - -#: includes/admin/views/acf-post-type/advanced-settings.php:321 -msgid "No Items Found in Trash" -msgstr "Es wurden keine Elemente im Papierkorb gefunden" - -#. translators: %s Plural form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:317 -msgid "No %s found in Trash" -msgstr "%s konnten nicht im Papierkorb gefunden werden" - -#: includes/admin/views/acf-post-type/advanced-settings.php:302 -msgid "No posts found" -msgstr "Es wurden keine Beiträge gefunden" - -#: includes/admin/views/acf-post-type/advanced-settings.php:301 -msgid "" -"At the top of the post type list screen when there are no posts to display." -msgstr "" -"Oben in der Listenansicht für Inhaltstypen, wenn es keine Beiträge zum " -"Anzeigen gibt." - -#: includes/admin/views/acf-post-type/advanced-settings.php:300 -msgid "No Items Found" -msgstr "Es wurden keine Elemente gefunden" - -#. translators: %s Plural form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:296 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:480 -msgid "No %s found" -msgstr "%s konnten nicht gefunden werden" - -#: includes/admin/views/acf-post-type/advanced-settings.php:281 -msgid "Search Posts" -msgstr "Beiträge suchen" - -#: includes/admin/views/acf-post-type/advanced-settings.php:280 -msgid "At the top of the items screen when searching for an item." -msgstr "Oben in der Elementansicht, während der Suche nach einem Element." - -#: includes/admin/views/acf-post-type/advanced-settings.php:279 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:345 -msgid "Search Items" -msgstr "Elemente suchen" - -#. translators: %s Singular form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:276 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:342 -msgid "Search %s" -msgstr "%s suchen" - -#: includes/admin/views/acf-post-type/advanced-settings.php:261 -msgid "Parent Page:" -msgstr "Übergeordnete Seite:" - -#: includes/admin/views/acf-post-type/advanced-settings.php:260 -msgid "For hierarchical types in the post type list screen." -msgstr "Für hierarchische Typen in der Listenansicht der Inhaltstypen." - -#: includes/admin/views/acf-post-type/advanced-settings.php:259 -msgid "Parent Item Prefix" -msgstr "Präfix des übergeordneten Elementes" - -#. translators: %s Singular form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:256 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:318 -msgid "Parent %s:" -msgstr "%s, übergeordnet:" - -#: includes/admin/views/acf-post-type/advanced-settings.php:241 -msgid "New Post" -msgstr "Neuer Beitrag" - -#: includes/admin/views/acf-post-type/advanced-settings.php:239 -msgid "New Item" -msgstr "Neues Element" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:236 -msgid "New %s" -msgstr "Neuer Inhaltstyp %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:206 -msgid "Add New Post" -msgstr "Neuen Beitrag hinzufügen" - -#: includes/admin/views/acf-post-type/advanced-settings.php:205 -msgid "At the top of the editor screen when adding a new item." -msgstr "Oben in der Editoransicht, wenn ein neues Element hinzugefügt wird." - -#: includes/admin/views/acf-post-type/advanced-settings.php:204 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:256 -msgid "Add New Item" -msgstr "Neues Element hinzufügen" - -#. translators: %s Singular form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:201 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:253 -msgid "Add New %s" -msgstr "Neu hinzufügen: %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:186 -msgid "View Posts" -msgstr "Beiträge anzeigen" - -#: includes/admin/views/acf-post-type/advanced-settings.php:185 -msgid "" -"Appears in the admin bar in the 'All Posts' view, provided the post type " -"supports archives and the home page is not an archive of that post type." -msgstr "" -"Wird in der Adminleiste in der Ansicht „Alle Beiträge“ angezeigt, sofern der " -"Inhaltstyp Archive unterstützt und die Homepage kein Archiv dieses " -"Inhaltstyps ist." - -#: includes/admin/views/acf-post-type/advanced-settings.php:184 -msgid "View Items" -msgstr "Elemente anzeigen" - -#: includes/admin/views/acf-post-type/advanced-settings.php:166 -msgid "View Post" -msgstr "Beitrag anzeigen" - -#: includes/admin/views/acf-post-type/advanced-settings.php:165 -msgid "In the admin bar to view item when editing it." -msgstr "In der Adminleiste, um das Element beim Bearbeiten anzuzeigen." - -#: includes/admin/views/acf-post-type/advanced-settings.php:164 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:216 -msgid "View Item" -msgstr "Element anzeigen" - -#. translators: %s Singular form of post type name -#. translators: %s Plural form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:161 -#: includes/admin/views/acf-post-type/advanced-settings.php:181 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:213 -msgid "View %s" -msgstr "%s anzeigen" - -#: includes/admin/views/acf-post-type/advanced-settings.php:146 -msgid "Edit Post" -msgstr "Beitrag bearbeiten" - -#: includes/admin/views/acf-post-type/advanced-settings.php:145 -msgid "At the top of the editor screen when editing an item." -msgstr "Oben in der Editoransicht, wenn ein Element bearbeitet wird." - -#: includes/admin/views/acf-post-type/advanced-settings.php:144 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:196 -msgid "Edit Item" -msgstr "Element bearbeiten" - -#. translators: %s Singular form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:141 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:193 -msgid "Edit %s" -msgstr "%s bearbeiten" - -#: includes/admin/views/acf-post-type/advanced-settings.php:126 -msgid "All Posts" -msgstr "Alle Beiträge" - -#: includes/admin/views/acf-post-type/advanced-settings.php:125 -#: includes/admin/views/acf-post-type/advanced-settings.php:220 -#: includes/admin/views/acf-post-type/advanced-settings.php:240 -msgid "In the post type submenu in the admin dashboard." -msgstr "Im Untermenü des Inhaltstyps im Admin-Dashboard." - -#: includes/admin/views/acf-post-type/advanced-settings.php:124 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:176 -msgid "All Items" -msgstr "Alle Elemente" - -#. translators: %s Plural form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:121 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:173 -msgid "All %s" -msgstr "Alle %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:105 -msgid "Admin menu name for the post type." -msgstr "Name des Admin-Menüs für den Inhaltstyp." - -#: includes/admin/views/acf-post-type/advanced-settings.php:104 -msgid "Menu Name" -msgstr "Menüname" - -#: includes/admin/views/acf-post-type/advanced-settings.php:90 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:142 -msgid "Regenerate all labels using the Singular and Plural labels" -msgstr "" -"Alle Beschriftungen unter Verwendung der Einzahl- und Mehrzahl-" -"Beschriftungen neu generieren" - -#: includes/admin/views/acf-post-type/advanced-settings.php:88 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:140 -msgid "Regenerate" -msgstr "Neu generieren" - -#: includes/admin/views/acf-post-type/advanced-settings.php:79 -msgid "Active post types are enabled and registered with WordPress." -msgstr "Aktive Inhaltstypen sind aktiviert und in WordPress registriert." - -#: includes/admin/views/acf-post-type/advanced-settings.php:63 -msgid "A descriptive summary of the post type." -msgstr "Eine beschreibende Zusammenfassung des Inhaltstyps." - -#: includes/admin/views/acf-post-type/advanced-settings.php:48 -msgid "Add Custom" -msgstr "Individuell hinzufügen" - -#: includes/admin/views/acf-post-type/advanced-settings.php:42 -msgid "Enable various features in the content editor." -msgstr "Verschiedene Funktionen im Inhalts-Editor aktivieren." - -#: includes/admin/views/acf-post-type/advanced-settings.php:31 -msgid "Post Formats" -msgstr "Beitragsformate" - -#: includes/admin/views/acf-post-type/advanced-settings.php:25 -msgid "Editor" -msgstr "Editor" - -#: includes/admin/views/acf-post-type/advanced-settings.php:24 -msgid "Trackbacks" -msgstr "Trackbacks" - -#: includes/admin/views/acf-post-type/basic-settings.php:87 -msgid "Select existing taxonomies to classify items of the post type." -msgstr "" -"Vorhandene Taxonomien auswählen, um Elemente des Inhaltstyps zu " -"kategorisieren." - -#: includes/admin/views/acf-field-group/field.php:145 -msgid "Browse Fields" -msgstr "Felder durchsuchen" - -#: includes/admin/tools/class-acf-admin-tool-import.php:292 -msgid "Nothing to import" -msgstr "Es gibt nichts zu importieren" - -#: includes/admin/tools/class-acf-admin-tool-import.php:287 -msgid ". The Custom Post Type UI plugin can be deactivated." -msgstr ". Das Plugin Custom Post Type UI kann deaktiviert werden." - -#. translators: %d - number of items imported from CPTUI -#: includes/admin/tools/class-acf-admin-tool-import.php:278 -msgid "Imported %d item from Custom Post Type UI -" -msgid_plural "Imported %d items from Custom Post Type UI -" -msgstr[0] "Es wurde %d Element von Custom Post Type UI importiert -" -msgstr[1] "Es wurden %d Elemente von Custom Post Type UI importiert -" - -#: includes/admin/tools/class-acf-admin-tool-import.php:262 -msgid "Failed to import taxonomies." -msgstr "Der Import der Taxonomien ist fehlgeschlagen." - -#: includes/admin/tools/class-acf-admin-tool-import.php:244 -msgid "Failed to import post types." -msgstr "Der Import der Inhaltstypen ist fehlgeschlagen." - -#: includes/admin/tools/class-acf-admin-tool-import.php:233 -msgid "Nothing from Custom Post Type UI plugin selected for import." -msgstr "" -"Es wurde nichts aus dem Plugin Custom Post Type UI für den Import ausgewählt." - -#: includes/admin/tools/class-acf-admin-tool-import.php:209 -msgid "Imported 1 item" -msgid_plural "Imported %s items" -msgstr[0] "1 Element wurde importiert" -msgstr[1] "%s Elemente wurden importiert" - -#: includes/admin/tools/class-acf-admin-tool-import.php:122 -msgid "" -"Importing a Post Type or Taxonomy with the same key as one that already " -"exists will overwrite the settings for the existing Post Type or Taxonomy " -"with those of the import." -msgstr "" -"Wenn ein Inhaltstyp oder eine Taxonomie mit einem Schlüssel importiert wird, " -"der bereits vorhanden ist, werden die Einstellungen des vorhandenen " -"Inhaltstyps oder der vorhandenen Taxonomie mit denen des Imports " -"überschrieben." - -#: includes/admin/tools/class-acf-admin-tool-import.php:111 -#: includes/admin/tools/class-acf-admin-tool-import.php:127 -msgid "Import from Custom Post Type UI" -msgstr "Aus Custom Post Type UI importieren" - -#: includes/admin/tools/class-acf-admin-tool-export.php:412 -msgid "" -"The following code can be used to register a local version of the selected " -"items. Storing field groups, post types, or taxonomies locally can provide " -"many benefits such as faster load times, version control & dynamic fields/" -"settings. Simply copy and paste the following code to your theme's functions." -"php file or include it within an external file, then deactivate or delete " -"the items from the ACF admin." -msgstr "" -"Der folgende Code kann verwendet werden, um eine lokale Version der " -"ausgewählten Elemente zu registrieren. Die lokale Speicherung von " -"Feldgruppen, Inhaltstypen oder Taxonomien kann viele Vorteile bieten, wie " -"z. B. schnellere Ladezeiten, Versionskontrolle und dynamische Felder/" -"Einstellungen. Kopiere den folgenden Code in die Datei functions.php deines " -"Themes oder füge ihn in eine externe Datei ein und deaktiviere oder lösche " -"anschließend die Elemente in der ACF-Administration." - -#: includes/admin/tools/class-acf-admin-tool-export.php:411 -msgid "Export - Generate PHP" -msgstr "Export – PHP generieren" - -#: includes/admin/tools/class-acf-admin-tool-export.php:384 -msgid "Export" -msgstr "Export" - -#: includes/admin/tools/class-acf-admin-tool-export.php:276 -msgid "Select Taxonomies" -msgstr "Taxonomien auswählen" - -#: includes/admin/tools/class-acf-admin-tool-export.php:254 -msgid "Select Post Types" -msgstr "Inhaltstypen auswählen" - -#: includes/admin/tools/class-acf-admin-tool-export.php:167 -msgid "Exported 1 item." -msgid_plural "Exported %s items." -msgstr[0] "1 ELement wurde exportiert." -msgstr[1] "%s Elemente wurden exportiert." - -#: includes/admin/post-types/admin-taxonomy.php:129 -#: assets/build/js/acf-internal-post-type.js:182 -#: assets/build/js/acf-internal-post-type.js:256 -msgid "Category" -msgstr "Kategorie" - -#: includes/admin/post-types/admin-taxonomy.php:127 -#: assets/build/js/acf-internal-post-type.js:179 -#: assets/build/js/acf-internal-post-type.js:253 -msgid "Tag" -msgstr "Schlagwort" - -#. translators: %s taxonomy name -#: includes/admin/post-types/admin-taxonomy.php:82 -msgid "%s taxonomy created" -msgstr "Die Taxonomie %s wurde erstellt" - -#. translators: %s taxonomy name -#: includes/admin/post-types/admin-taxonomy.php:76 -msgid "%s taxonomy updated" -msgstr "Die Taxonomie %s wurde aktualisiert" - -#: includes/admin/post-types/admin-taxonomy.php:56 -msgid "Taxonomy draft updated." -msgstr "Der Taxonomie-Entwurf wurde aktualisiert." - -#: includes/admin/post-types/admin-taxonomy.php:55 -msgid "Taxonomy scheduled for." -msgstr "Die Taxonomie wurde geplant für." - -#: includes/admin/post-types/admin-taxonomy.php:54 -msgid "Taxonomy submitted." -msgstr "Die Taxonomie wurde übermittelt." - -#: includes/admin/post-types/admin-taxonomy.php:53 -msgid "Taxonomy saved." -msgstr "Die Taxonomie wurde gespeichert." - -#: includes/admin/post-types/admin-taxonomy.php:49 -msgid "Taxonomy deleted." -msgstr "Die Taxonomie wurde gelöscht." - -#: includes/admin/post-types/admin-taxonomy.php:48 -msgid "Taxonomy updated." -msgstr "Die Taxonomie wurde aktualisiert." - -#: includes/admin/post-types/admin-taxonomies.php:377 -#: includes/admin/post-types/admin-taxonomy.php:157 -msgid "" -"This taxonomy could not be registered because its key is in use by another " -"taxonomy registered by another plugin or theme." -msgstr "" -"Diese Taxonomie konnte nicht registriert werden, da der Schlüssel von einer " -"anderen Taxonomie, die von einem anderen Plugin oder Theme registriert " -"wurde, genutzt wird." - -#. translators: %s number of taxonomies synchronized -#: includes/admin/post-types/admin-taxonomies.php:359 -msgid "Taxonomy synchronized." -msgid_plural "%s taxonomies synchronized." -msgstr[0] "Die Taxonomie wurde synchronisiert." -msgstr[1] "%s Taxonomien wurden synchronisiert." - -#. translators: %s number of taxonomies duplicated -#: includes/admin/post-types/admin-taxonomies.php:352 -msgid "Taxonomy duplicated." -msgid_plural "%s taxonomies duplicated." -msgstr[0] "Die Taxonomie wurde dupliziert." -msgstr[1] "%s Taxonomien wurden dupliziert." - -#. translators: %s number of taxonomies deactivated -#: includes/admin/post-types/admin-taxonomies.php:345 -msgid "Taxonomy deactivated." -msgid_plural "%s taxonomies deactivated." -msgstr[0] "Die Taxonomie wurde deaktiviert." -msgstr[1] "%s Taxonomien wurden deaktiviert." - -#. translators: %s number of taxonomies activated -#: includes/admin/post-types/admin-taxonomies.php:338 -msgid "Taxonomy activated." -msgid_plural "%s taxonomies activated." -msgstr[0] "Die Taxonomie wurde aktiviert." -msgstr[1] "%s Taxonomien wurden aktiviert." - -#: includes/admin/post-types/admin-taxonomies.php:139 -msgid "Terms" -msgstr "Begriffe" - -#. translators: %s number of post types synchronized -#: includes/admin/post-types/admin-post-types.php:352 -msgid "Post type synchronized." -msgid_plural "%s post types synchronized." -msgstr[0] "Der Inhaltstyp wurde synchronisiert." -msgstr[1] "%s Inhaltstypen wurden synchronisiert." - -#. translators: %s number of post types duplicated -#: includes/admin/post-types/admin-post-types.php:345 -msgid "Post type duplicated." -msgid_plural "%s post types duplicated." -msgstr[0] "Der Inhaltstyp wurde dupliziert." -msgstr[1] "%s Inhaltstypen wurden dupliziert." - -#. translators: %s number of post types deactivated -#: includes/admin/post-types/admin-post-types.php:338 -msgid "Post type deactivated." -msgid_plural "%s post types deactivated." -msgstr[0] "Der Inhaltstyp wurde deaktiviert." -msgstr[1] "%s Inhaltstypen wurden deaktiviert." - -#. translators: %s number of post types activated -#: includes/admin/post-types/admin-post-types.php:331 -msgid "Post type activated." -msgid_plural "%s post types activated." -msgstr[0] "Der Inhaltstyp wurde aktiviert." -msgstr[1] "%s Inhaltstypen wurden aktiviert." - -#: includes/admin/post-types/admin-post-types.php:112 -#: includes/admin/post-types/admin-taxonomies.php:137 -#: includes/admin/tools/class-acf-admin-tool-import.php:82 -#: includes/admin/views/acf-taxonomy/basic-settings.php:82 -#: includes/post-types/class-acf-post-type.php:91 -msgid "Post Types" -msgstr "Inhaltstypen" - -#: includes/admin/post-types/admin-post-type.php:162 -#: includes/admin/post-types/admin-taxonomy.php:164 -msgid "Advanced Settings" -msgstr "Erweiterte Einstellungen" - -#: includes/admin/post-types/admin-post-type.php:161 -#: includes/admin/post-types/admin-taxonomy.php:163 -msgid "Basic Settings" -msgstr "Grundlegende Einstellungen" - -#: includes/admin/post-types/admin-post-type.php:155 -#: includes/admin/post-types/admin-post-types.php:370 -msgid "" -"This post type could not be registered because its key is in use by another " -"post type registered by another plugin or theme." -msgstr "" -"Dieser Inhaltstyp konnte nicht registriert werden, da dessen Schlüssel von " -"einem anderen Inhaltstyp, der von einem anderen Plugin oder Theme " -"registriert wurde, genutzt wird." - -#: includes/admin/post-types/admin-post-type.php:128 -#: assets/build/js/acf-internal-post-type.js:176 -#: assets/build/js/acf-internal-post-type.js:250 -msgid "Pages" -msgstr "Seiten" - -#: includes/admin/admin-internal-post-type.php:355 -msgid "Link Existing Field Groups" -msgstr "" - -#. translators: %s post type name -#: includes/admin/post-types/admin-post-type.php:80 -msgid "%s post type created" -msgstr "Der Inhaltstyp %s wurde erstellt" - -#. translators: %s taxonomy name -#: includes/admin/post-types/admin-taxonomy.php:78 -msgid "Add fields to %s" -msgstr "Felder zu %s hinzufügen" - -#. translators: %s post type name -#: includes/admin/post-types/admin-post-type.php:76 -msgid "%s post type updated" -msgstr "Der Inhaltstyp %s wurde aktualisiert" - -#: includes/admin/post-types/admin-post-type.php:56 -msgid "Post type draft updated." -msgstr "Der Inhaltstyp-Entwurf wurde aktualisiert." - -#: includes/admin/post-types/admin-post-type.php:55 -msgid "Post type scheduled for." -msgstr "Der Inhaltstyp wurde geplant für." - -#: includes/admin/post-types/admin-post-type.php:54 -msgid "Post type submitted." -msgstr "Der Inhaltstyp wurde übermittelt." - -#: includes/admin/post-types/admin-post-type.php:53 -msgid "Post type saved." -msgstr "Der Inhaltstyp wurde gespeichert." - -#: includes/admin/post-types/admin-post-type.php:50 -msgid "Post type updated." -msgstr "Der Inhaltstyp wurde aktualisiert." - -#: includes/admin/post-types/admin-post-type.php:49 -msgid "Post type deleted." -msgstr "Der Inhaltstyp wurde gelöscht." - -#: includes/admin/post-types/admin-field-group.php:120 -#: assets/build/js/acf-field-group.js:1146 -#: assets/build/js/acf-field-group.js:1366 -msgid "Type to search..." -msgstr "Tippen, um zu suchen …" - -#: includes/admin/post-types/admin-field-group.php:105 -#: assets/build/js/acf-field-group.js:1172 -#: assets/build/js/acf-field-group.js:2319 -#: assets/build/js/acf-field-group.js:1414 -#: assets/build/js/acf-field-group.js:2727 -msgid "PRO Only" -msgstr "Nur Pro" - -#: includes/admin/post-types/admin-field-group.php:97 -#: assets/build/js/acf-internal-post-type.js:308 -#: assets/build/js/acf-internal-post-type.js:417 -msgid "Field groups linked successfully." -msgstr "Die Feldgruppen wurden erfolgreich verlinkt." - -#. translators: %s - URL to ACF tools page. -#: includes/admin/admin.php:195 -msgid "" -"Import Post Types and Taxonomies registered with Custom Post Type UI and " -"manage them with ACF. Get Started." -msgstr "" -"Importiere Inhaltstypen und Taxonomien, die mit Custom Post Type UI " -"registriert wurden, und verwalte sie mit ACF. Jetzt starten." - -#: includes/admin/admin.php:48 includes/admin/admin.php:267 -msgid "ACF" -msgstr "ACF" - -#: includes/admin/admin-internal-post-type.php:322 -msgid "taxonomy" -msgstr "Taxonomie" - -#: includes/admin/admin-internal-post-type.php:322 -msgid "post type" -msgstr "Inhaltstyp" - -#: includes/admin/admin-internal-post-type.php:346 -msgid "Done" -msgstr "Erledigt" - -#: includes/admin/admin-internal-post-type.php:332 -msgid "Field Group(s)" -msgstr "" - -#: includes/admin/admin-internal-post-type.php:331 -msgid "Select one or many field groups..." -msgstr "Wähle eine Feldgruppe oder mehrere ..." - -#: includes/admin/admin-internal-post-type.php:330 -msgid "Please select the field groups to link." -msgstr "Bitte wähle die Feldgruppe zum Verlinken aus." - -#: includes/admin/admin-internal-post-type.php:288 -msgid "Field group linked successfully." -msgid_plural "Field groups linked successfully." -msgstr[0] "Die Feldgruppe wurde erfolgreich verlinkt." -msgstr[1] "Die Feldgruppen wurden erfolgreich verlinkt." - -#: includes/admin/admin-internal-post-type-list.php:261 -#: includes/admin/post-types/admin-post-types.php:371 -#: includes/admin/post-types/admin-taxonomies.php:378 -msgctxt "post status" -msgid "Registration Failed" -msgstr "Die Registrierung ist fehlgeschlagen" - -#: includes/admin/admin-internal-post-type-list.php:260 -msgid "" -"This item could not be registered because its key is in use by another item " -"registered by another plugin or theme." -msgstr "" -"Dieses Element konnte nicht registriert werden, da dessen Schlüssel von " -"einem anderen Element, das von einem anderen Plugin oder Theme registriert " -"wurde, genutzt wird." - -#: includes/acf-internal-post-type-functions.php:482 -#: includes/acf-internal-post-type-functions.php:511 -msgid "REST API" -msgstr "REST-API" - -#: includes/acf-internal-post-type-functions.php:481 -#: includes/acf-internal-post-type-functions.php:510 -#: includes/acf-internal-post-type-functions.php:537 -msgid "Permissions" -msgstr "Berechtigungen" - -#: includes/acf-internal-post-type-functions.php:480 -#: includes/acf-internal-post-type-functions.php:509 -msgid "URLs" -msgstr "URLs" - -#: includes/acf-internal-post-type-functions.php:479 -#: includes/acf-internal-post-type-functions.php:508 -#: includes/acf-internal-post-type-functions.php:535 -msgid "Visibility" -msgstr "Sichtbarkeit" - -#: includes/acf-internal-post-type-functions.php:478 -#: includes/acf-internal-post-type-functions.php:507 -#: includes/acf-internal-post-type-functions.php:536 -msgid "Labels" -msgstr "Beschriftungen" - -#: includes/admin/post-types/admin-field-group.php:269 -msgid "Field Settings Tabs" -msgstr "Tabs für Feldeinstellungen" - -#. Author URI of the plugin -msgid "" -"https://wpengine.com/?utm_source=wordpress." -"org&utm_medium=referral&utm_campaign=plugin_directory&utm_content=advanced_custom_fields" -msgstr "" -"https://wpengine.com/?utm_source=wordpress." -"org&utm_medium=referral&utm_campaign=plugin_directory&utm_content=advanced_custom_fields" - -#: includes/api/api-template.php:867 -msgid "[ACF shortcode value disabled for preview]" -msgstr "[Die Vorschau des ACF-Shortcodes wurde deaktiviert]" - -#: includes/admin/admin-internal-post-type.php:298 -#: includes/admin/post-types/admin-field-group.php:571 -msgid "Close Modal" -msgstr "Modal schließen" - -#: includes/admin/post-types/admin-field-group.php:96 -#: assets/build/js/acf-field-group.js:1670 -#: assets/build/js/acf-field-group.js:1993 -msgid "Field moved to other group" -msgstr "Das Feld wurde zu einer anderen Gruppe verschoben" - -#: includes/admin/post-types/admin-field-group.php:95 -#: assets/build/js/acf.js:1437 assets/build/js/acf.js:1517 -msgid "Close modal" -msgstr "Modal schließen" - -#: includes/fields/class-acf-field-tab.php:125 -msgid "Start a new group of tabs at this tab." -msgstr "Eine neue Gruppe von Tabs in diesem Tab beginnen." - -#: includes/fields/class-acf-field-tab.php:124 -msgid "New Tab Group" -msgstr "Neue Tab-Gruppe" - -#: includes/fields/class-acf-field-select.php:451 -#: includes/fields/class-acf-field-true_false.php:200 -msgid "Use a stylized checkbox using select2" -msgstr "Ein stylisches Auswahlkästchen mit select2 verwenden" - -#: includes/fields/class-acf-field-radio.php:260 -msgid "Save Other Choice" -msgstr "Eine andere Auswahlmöglichkeit speichern" - -#: includes/fields/class-acf-field-radio.php:249 -msgid "Allow Other Choice" -msgstr "Eine andere Auswahlmöglichkeit erlauben" - -#: includes/fields/class-acf-field-checkbox.php:450 -msgid "Add Toggle All" -msgstr "„Alles umschalten“ hinzufügen" - -#: includes/fields/class-acf-field-checkbox.php:409 -msgid "Save Custom Values" -msgstr "Individuelle Werte speichern" - -#: includes/fields/class-acf-field-checkbox.php:398 -msgid "Allow Custom Values" -msgstr "Individuelle Werte zulassen" - -#: includes/fields/class-acf-field-checkbox.php:148 -msgid "Checkbox custom values cannot be empty. Uncheck any empty values." -msgstr "" -"Individuelle Werte von Auswahlkästchen dürfen nicht leer sein. Deaktiviere " -"alle leeren Werte." - -#: includes/admin/views/global/navigation.php:248 -msgid "Updates" -msgstr "Aktualisierungen" - -#: includes/admin/views/global/navigation.php:176 -msgid "Advanced Custom Fields logo" -msgstr "Advanced-Custom-Fields-Logo" - -#: includes/admin/views/global/form-top.php:89 -msgid "Save Changes" -msgstr "Änderungen speichern" - -#: includes/admin/views/global/form-top.php:76 -msgid "Field Group Title" -msgstr "Feldgruppen-Titel" - -#: includes/admin/views/acf-post-type/advanced-settings.php:704 -#: includes/admin/views/global/form-top.php:3 -msgid "Add title" -msgstr "Titel hinzufügen" - -#. translators: %s url to getting started guide -#: includes/admin/views/acf-field-group/list-empty.php:20 -#: includes/admin/views/acf-post-type/list-empty.php:12 -#: includes/admin/views/acf-taxonomy/list-empty.php:12 -#: includes/admin/views/options-page-preview.php:13 -msgid "" -"New to ACF? Take a look at our getting " -"started guide." -msgstr "" -"Neu bei ACF? Wirf einen Blick auf die " -"Anleitung zum Starten (engl.)." - -#: includes/admin/views/acf-field-group/list-empty.php:15 -msgid "Add Field Group" -msgstr "Feldgruppe hinzufügen" - -#. translators: %s url to creating a field group page -#: includes/admin/views/acf-field-group/list-empty.php:10 -msgid "" -"ACF uses field groups to group custom " -"fields together, and then attach those fields to edit screens." -msgstr "" -"ACF verwendet Feldgruppen, um " -"individuelle Felder zu gruppieren und diese dann in Bearbeitungsansichten " -"anzuhängen." - -#: includes/admin/views/acf-field-group/list-empty.php:5 -msgid "Add Your First Field Group" -msgstr "Deine erste Feldgruppe hinzufügen" - -#: includes/admin/admin-options-pages-preview.php:28 -#: includes/admin/views/acf-field-group/pro-features.php:54 -#: includes/admin/views/global/navigation.php:86 -#: includes/admin/views/global/navigation.php:250 -msgid "Options Pages" -msgstr "Optionen-Seiten" - -#: includes/admin/views/acf-field-group/pro-features.php:50 -msgid "ACF Blocks" -msgstr "ACF-Blöcke" - -#: includes/admin/views/acf-field-group/pro-features.php:58 -msgid "Gallery Field" -msgstr "Galerie-Feld" - -#: includes/admin/views/acf-field-group/pro-features.php:38 -msgid "Flexible Content Field" -msgstr "Feld „Flexibler Inhalt“" - -#: includes/admin/views/acf-field-group/pro-features.php:42 -msgid "Repeater Field" -msgstr "Wiederholungs-Feld" - -#: includes/admin/views/global/navigation.php:212 -msgid "Unlock Extra Features with ACF PRO" -msgstr "Zusatzfunktionen mit ACF PRO freischalten" - -#: includes/admin/views/acf-field-group/options.php:267 -msgid "Delete Field Group" -msgstr "Feldgruppe löschen" - -#. translators: 1: Post creation date 2: Post creation time -#: includes/admin/views/acf-field-group/options.php:261 -msgid "Created on %1$s at %2$s" -msgstr "Erstellt am %1$s um %2$s" - -#: includes/acf-field-group-functions.php:497 -msgid "Group Settings" -msgstr "Gruppeneinstellungen" - -#: includes/acf-field-group-functions.php:495 -msgid "Location Rules" -msgstr "Regeln für die Position" - -#. translators: %s url to field types list -#: includes/admin/views/acf-field-group/fields.php:72 -msgid "" -"Choose from over 30 field types. Learn " -"more." -msgstr "" -"Wähle aus mehr als 30 Feldtypen. Mehr " -"erfahren (engl.)." - -#: includes/admin/views/acf-field-group/fields.php:65 -msgid "" -"Get started creating new custom fields for your posts, pages, custom post " -"types and other WordPress content." -msgstr "" -"Beginne mit der Erstellung neuer individueller Felder für deine Beiträge, " -"Seiten, individuellen Inhaltstypen und sonstigen WordPress-Inhalten." - -#: includes/admin/views/acf-field-group/fields.php:64 -msgid "Add Your First Field" -msgstr "Füge dein erstes Feld hinzu" - -#. translators: A symbol (or text, if not available in your locale) meaning -#. "Order Number", in terms of positional placement. -#: includes/admin/views/acf-field-group/fields.php:43 -msgid "#" -msgstr "#" - -#: includes/admin/views/acf-field-group/fields.php:33 -#: includes/admin/views/acf-field-group/fields.php:67 -#: includes/admin/views/acf-field-group/fields.php:103 -#: includes/admin/views/global/form-top.php:85 -msgid "Add Field" -msgstr "Feld hinzufügen" - -#: includes/acf-field-group-functions.php:496 includes/fields.php:410 -msgid "Presentation" -msgstr "Präsentation" - -#: includes/fields.php:409 -msgid "Validation" -msgstr "Validierung" - -#: includes/acf-internal-post-type-functions.php:477 -#: includes/acf-internal-post-type-functions.php:506 includes/fields.php:408 -msgid "General" -msgstr "Allgemein" - -#: includes/admin/tools/class-acf-admin-tool-import.php:70 -msgid "Import JSON" -msgstr "JSON importieren" - -#: includes/admin/tools/class-acf-admin-tool-export.php:392 -msgid "Export As JSON" -msgstr "Als JSON exportieren" - -#. translators: %s number of field groups deactivated -#: includes/admin/post-types/admin-field-groups.php:367 -msgid "Field group deactivated." -msgid_plural "%s field groups deactivated." -msgstr[0] "Die Feldgruppe wurde deaktiviert." -msgstr[1] "%s Feldgruppen wurden deaktiviert." - -#. translators: %s number of field groups activated -#: includes/admin/post-types/admin-field-groups.php:360 -msgid "Field group activated." -msgid_plural "%s field groups activated." -msgstr[0] "Die Feldgruppe wurde aktiviert." -msgstr[1] "%s Feldgruppen wurden aktiviert." - -#: includes/admin/admin-internal-post-type-list.php:452 -#: includes/admin/admin-internal-post-type-list.php:478 -msgid "Deactivate" -msgstr "Deaktivieren" - -#: includes/admin/admin-internal-post-type-list.php:452 -msgid "Deactivate this item" -msgstr "Dieses Element deaktivieren" - -#: includes/admin/admin-internal-post-type-list.php:448 -#: includes/admin/admin-internal-post-type-list.php:477 -msgid "Activate" -msgstr "Aktivieren" - -#: includes/admin/admin-internal-post-type-list.php:448 -msgid "Activate this item" -msgstr "Dieses Element aktivieren" - -#: includes/admin/post-types/admin-field-group.php:92 -#: assets/build/js/acf-field-group.js:2812 -#: assets/build/js/acf-field-group.js:3313 -msgid "Move field group to trash?" -msgstr "Soll die Feldgruppe in den Papierkorb verschoben werden?" - -#: acf.php:497 includes/admin/admin-internal-post-type-list.php:248 -#: includes/admin/post-types/admin-field-group.php:297 -#: includes/admin/post-types/admin-post-type.php:295 -#: includes/admin/post-types/admin-taxonomy.php:297 -msgctxt "post status" -msgid "Inactive" -msgstr "Inaktiv" - -#. Author of the plugin -msgid "WP Engine" -msgstr "WP Engine" - -#: acf.php:555 -msgid "" -"Advanced Custom Fields and Advanced Custom Fields PRO should not be active " -"at the same time. We've automatically deactivated Advanced Custom Fields PRO." -msgstr "" -"Advanced Custom Fields und Advanced Custom Fields PRO sollten nicht " -"gleichzeitig aktiviert sein. Advanced Custom Fields PRO wurde automatisch " -"deaktiviert." - -#: acf.php:553 -msgid "" -"Advanced Custom Fields and Advanced Custom Fields PRO should not be active " -"at the same time. We've automatically deactivated Advanced Custom Fields." -msgstr "" -"Advanced Custom Fields und Advanced Custom Fields PRO sollten nicht " -"gleichzeitig aktiviert sein. Advanced Custom Fields wurde automatisch " -"deaktiviert." - -#: includes/acf-value-functions.php:374 -msgid "" -"%1$s - We've detected one or more calls to retrieve ACF " -"field values before ACF has been initialized. This is not supported and can " -"result in malformed or missing data. Learn how to fix this." -msgstr "" -"%1$s – Es wurde mindestens ein Versuch festgestellt, ACF-" -"Feldwerte abzurufen, bevor ACF initialisiert wurde. Dies wird nicht " -"unterstützt und kann zu fehlerhaften oder fehlenden Daten führen. Lerne, wie du das beheben kannst (engl.)." - -#: includes/fields/class-acf-field-user.php:551 -msgid "%1$s must have a user with the %2$s role." -msgid_plural "%1$s must have a user with one of the following roles: %2$s" -msgstr[0] "%1$s muss einen Benutzer mit der %2$s-Rolle haben." -msgstr[1] "%1$s muss einen Benutzer mit einer der folgenden rollen haben: %2$s" - -#: includes/fields/class-acf-field-user.php:542 -msgid "%1$s must have a valid user ID." -msgstr "%1$s muss eine gültige Benutzer-ID haben." - -#: includes/fields/class-acf-field-user.php:380 -msgid "Invalid request." -msgstr "Ungültige Anfrage." - -#: includes/fields/class-acf-field-select.php:684 -msgid "%1$s is not one of %2$s" -msgstr "%1$s ist nicht eins von %2$s" - -#: includes/fields/class-acf-field-post_object.php:700 -msgid "%1$s must have term %2$s." -msgid_plural "%1$s must have one of the following terms: %2$s" -msgstr[0] "%1$s muss den Begriff %2$s haben." -msgstr[1] "%1$s muss einen der folgenden Begriffe haben: %2$s" - -#: includes/fields/class-acf-field-post_object.php:684 -msgid "%1$s must be of post type %2$s." -msgid_plural "%1$s must be of one of the following post types: %2$s" -msgstr[0] "%1$s muss vom Inhaltstyp %2$s sein." -msgstr[1] "%1$s muss einer der folgenden Inhaltstypen sein: %2$s" - -#: includes/fields/class-acf-field-post_object.php:675 -msgid "%1$s must have a valid post ID." -msgstr "%1$s muss eine gültige Beitrags-ID haben." - -#: includes/fields/class-acf-field-file.php:475 -msgid "%s requires a valid attachment ID." -msgstr "%s erfordert eine gültige Anhangs-ID." - -#: includes/admin/views/acf-field-group/options.php:233 -msgid "Show in REST API" -msgstr "Im REST-API anzeigen" - -#: includes/fields/class-acf-field-color_picker.php:168 -msgid "Enable Transparency" -msgstr "Transparenz aktivieren" - -#: includes/fields/class-acf-field-color_picker.php:187 -msgid "RGBA Array" -msgstr "RGBA-Array" - -#: includes/fields/class-acf-field-color_picker.php:98 -msgid "RGBA String" -msgstr "RGBA-Zeichenfolge" - -#: includes/fields/class-acf-field-color_picker.php:97 -#: includes/fields/class-acf-field-color_picker.php:186 -msgid "Hex String" -msgstr "Hex-Zeichenfolge" - -#: includes/admin/views/browse-fields-modal.php:65 -msgid "Upgrade to PRO" -msgstr "Upgrade auf PRO" - -#: includes/admin/post-types/admin-field-group.php:297 -#: includes/admin/post-types/admin-post-type.php:295 -#: includes/admin/post-types/admin-taxonomy.php:297 -msgctxt "post status" -msgid "Active" -msgstr "Aktiv" - -#: includes/fields/class-acf-field-email.php:181 -msgid "'%s' is not a valid email address" -msgstr "‚%s‘ ist keine gültige E-Mail-Adresse" - -#: includes/fields/class-acf-field-color_picker.php:76 -msgid "Color value" -msgstr "Farbwert" - -#: includes/fields/class-acf-field-color_picker.php:74 -msgid "Select default color" -msgstr "Standardfarbe auswählen" - -#: includes/fields/class-acf-field-color_picker.php:72 -msgid "Clear color" -msgstr "Farbe entfernen" - -#: includes/acf-wp-functions.php:90 -msgid "Blocks" -msgstr "Blöcke" - -#: includes/acf-wp-functions.php:86 -msgid "Options" -msgstr "Optionen" - -#: includes/acf-wp-functions.php:82 -msgid "Users" -msgstr "Benutzer" - -#: includes/acf-wp-functions.php:78 -msgid "Menu items" -msgstr "Menüelemente" - -#: includes/acf-wp-functions.php:70 -msgid "Widgets" -msgstr "Widgets" - -#: includes/acf-wp-functions.php:62 -msgid "Attachments" -msgstr "Anhänge" - -#: includes/acf-wp-functions.php:57 -#: includes/admin/post-types/admin-post-types.php:137 -#: includes/admin/post-types/admin-taxonomies.php:112 -#: includes/admin/tools/class-acf-admin-tool-import.php:93 -#: includes/admin/views/acf-post-type/basic-settings.php:86 -#: includes/post-types/class-acf-taxonomy.php:90 -#: includes/post-types/class-acf-taxonomy.php:91 -msgid "Taxonomies" -msgstr "Taxonomien" - -#: includes/acf-wp-functions.php:44 -#: includes/admin/post-types/admin-post-type.php:126 -#: includes/admin/post-types/admin-post-types.php:139 -#: includes/admin/views/acf-post-type/advanced-settings.php:106 -#: assets/build/js/acf-internal-post-type.js:173 -#: assets/build/js/acf-internal-post-type.js:247 -msgid "Posts" -msgstr "Beiträge" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:76 -msgid "Last updated: %s" -msgstr "Zuletzt aktualisiert: %s" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:70 -msgid "Sorry, this post is unavailable for diff comparison." -msgstr "" -"Leider steht diese Feldgruppe nicht für einen Diff-Vergleich zur Verfügung." - -#: includes/ajax/class-acf-ajax-local-json-diff.php:42 -msgid "Invalid field group parameter(s)." -msgstr "Ungültige(r) Feldgruppen-Parameter." - -#: includes/admin/admin-internal-post-type-list.php:413 -msgid "Awaiting save" -msgstr "Ein Speichern wird erwartet" - -#: includes/admin/admin-internal-post-type-list.php:410 -msgid "Saved" -msgstr "Gespeichert" - -#: includes/admin/admin-internal-post-type-list.php:406 -#: includes/admin/tools/class-acf-admin-tool-import.php:49 -msgid "Import" -msgstr "Importieren" - -#: includes/admin/admin-internal-post-type-list.php:402 -msgid "Review changes" -msgstr "Änderungen überprüfen" - -#: includes/admin/admin-internal-post-type-list.php:378 -msgid "Located in: %s" -msgstr "Ist zu finden in: %s" - -#: includes/admin/admin-internal-post-type-list.php:375 -msgid "Located in plugin: %s" -msgstr "Liegt im Plugin: %s" - -#: includes/admin/admin-internal-post-type-list.php:372 -msgid "Located in theme: %s" -msgstr "Liegt im Theme: %s" - -#: includes/admin/post-types/admin-field-groups.php:261 -msgid "Various" -msgstr "Verschiedene" - -#: includes/admin/admin-internal-post-type-list.php:216 -#: includes/admin/admin-internal-post-type-list.php:485 -msgid "Sync changes" -msgstr "Änderungen synchronisieren" - -#: includes/admin/admin-internal-post-type-list.php:215 -msgid "Loading diff" -msgstr "Diff laden" - -#: includes/admin/admin-internal-post-type-list.php:214 -msgid "Review local JSON changes" -msgstr "Lokale JSON-Änderungen überprüfen" - -#: includes/admin/admin.php:170 -msgid "Visit website" -msgstr "Website besuchen" - -#: includes/admin/admin.php:169 -msgid "View details" -msgstr "Details anzeigen" - -#: includes/admin/admin.php:168 -msgid "Version %s" -msgstr "Version %s" - -#: includes/admin/admin.php:167 -msgid "Information" -msgstr "Information" - -#: includes/admin/admin.php:158 -msgid "" -"Help Desk. The support professionals on " -"our Help Desk will assist with your more in depth, technical challenges." -msgstr "" -"Help-Desk. Die Support-Experten unseres " -"Help-Desks werden dir bei komplexeren technischen Herausforderungen " -"unterstützend zur Seite stehen." - -#: includes/admin/admin.php:154 -msgid "" -"Discussions. We have an active and " -"friendly community on our Community Forums who may be able to help you " -"figure out the 'how-tos' of the ACF world." -msgstr "" -"Diskussionen. Wir haben eine aktive und " -"freundliche Community in unseren Community-Foren, die dir vielleicht dabei " -"helfen kann, dich mit den „How-tos“ der ACF-Welt vertraut zu machen." - -#: includes/admin/admin.php:150 -msgid "" -"Documentation. Our extensive " -"documentation contains references and guides for most situations you may " -"encounter." -msgstr "" -"Dokumentation (engl.). Diese umfassende " -"Dokumentation beinhaltet Referenzen und Leitfäden zu den meisten " -"Situationen, die du vorfinden wirst." - -#: includes/admin/admin.php:147 -msgid "" -"We are fanatical about support, and want you to get the best out of your " -"website with ACF. If you run into any difficulties, there are several places " -"you can find help:" -msgstr "" -"Wir legen großen Wert auf Support und möchten, dass du mit ACF das Beste aus " -"deiner Website herausholst. Wenn du auf Schwierigkeiten stößt, gibt es " -"mehrere Stellen, an denen du Hilfe finden kannst:" - -#: includes/admin/admin.php:144 includes/admin/admin.php:146 -msgid "Help & Support" -msgstr "Hilfe und Support" - -#: includes/admin/admin.php:135 -msgid "" -"Please use the Help & Support tab to get in touch should you find yourself " -"requiring assistance." -msgstr "" -"Falls du Hilfe benötigst, nutze bitte den Tab „Hilfe und Support“, um dich " -"mit uns in Verbindung zu setzen." - -#: includes/admin/admin.php:132 -msgid "" -"Before creating your first Field Group, we recommend first reading our Getting started guide to familiarize " -"yourself with the plugin's philosophy and best practises." -msgstr "" -"Bevor du deine erste Feldgruppe erstellst, wird empfohlen, vorab die " -"Anleitung Erste Schritte (engl.) " -"durchzulesen, um dich mit der Philosophie hinter dem Plugin und den besten " -"Praktiken vertraut zu machen." - -#: includes/admin/admin.php:130 -msgid "" -"The Advanced Custom Fields plugin provides a visual form builder to " -"customize WordPress edit screens with extra fields, and an intuitive API to " -"display custom field values in any theme template file." -msgstr "" -"Das Advanced-Custom-Fields-Plugin bietet einen visuellen Formular-Builder, " -"um WordPress-Bearbeitungsansichten mit weiteren Feldern zu individualisieren " -"und eine intuitive API, um individuelle Feldwerte in beliebigen Theme-" -"Template-Dateien anzuzeigen." - -#: includes/admin/admin.php:127 includes/admin/admin.php:129 -msgid "Overview" -msgstr "Übersicht" - -#: includes/locations.php:36 -msgid "Location type \"%s\" is already registered." -msgstr "Positions-Typ „%s“ ist bereits registriert." - -#: includes/locations.php:25 -msgid "Class \"%s\" does not exist." -msgstr "Die Klasse „%s“ existiert nicht." - -#: includes/ajax/class-acf-ajax.php:157 -msgid "Invalid nonce." -msgstr "Ungültiger Nonce." - -#: includes/fields/class-acf-field-user.php:375 -msgid "Error loading field." -msgstr "Fehler beim Laden des Felds." - -#: assets/build/js/acf-input.js:2750 assets/build/js/acf-input.js:2819 -#: assets/build/js/acf-input.js:2926 assets/build/js/acf-input.js:3000 -msgid "Location not found: %s" -msgstr "Die Position wurde nicht gefunden: %s" - -#: includes/forms/form-user.php:353 -msgid "Error: %s" -msgstr "Fehler: %s" - -#: includes/locations/class-acf-location-widget.php:22 -msgid "Widget" -msgstr "Widget" - -#: includes/locations/class-acf-location-user-role.php:24 -msgid "User Role" -msgstr "Benutzerrolle" - -#: includes/locations/class-acf-location-comment.php:22 -msgid "Comment" -msgstr "Kommentar" - -#: includes/locations/class-acf-location-post-format.php:22 -msgid "Post Format" -msgstr "Beitragsformat" - -#: includes/locations/class-acf-location-nav-menu-item.php:22 -msgid "Menu Item" -msgstr "Menüelement" - -#: includes/locations/class-acf-location-post-status.php:22 -msgid "Post Status" -msgstr "Beitragsstatus" - -#: includes/acf-wp-functions.php:74 -#: includes/locations/class-acf-location-nav-menu.php:89 -msgid "Menus" -msgstr "Menüs" - -#: includes/locations/class-acf-location-nav-menu.php:80 -msgid "Menu Locations" -msgstr "Menüpositionen" - -#: includes/locations/class-acf-location-nav-menu.php:22 -msgid "Menu" -msgstr "Menü" - -#: includes/locations/class-acf-location-post-taxonomy.php:22 -msgid "Post Taxonomy" -msgstr "Beitrags-Taxonomie" - -#: includes/locations/class-acf-location-page-type.php:114 -msgid "Child Page (has parent)" -msgstr "Unterseite (hat übergeordnete Seite)" - -#: includes/locations/class-acf-location-page-type.php:113 -msgid "Parent Page (has children)" -msgstr "Übergeordnete Seite (hat Unterseiten)" - -#: includes/locations/class-acf-location-page-type.php:112 -msgid "Top Level Page (no parent)" -msgstr "Seite der ersten Ebene (keine übergeordnete)" - -#: includes/locations/class-acf-location-page-type.php:111 -msgid "Posts Page" -msgstr "Beitrags-Seite" - -#: includes/locations/class-acf-location-page-type.php:110 -msgid "Front Page" -msgstr "Startseite" - -#: includes/locations/class-acf-location-page-type.php:22 -msgid "Page Type" -msgstr "Seitentyp" - -#: includes/locations/class-acf-location-current-user.php:73 -msgid "Viewing back end" -msgstr "Backend anzeigen" - -#: includes/locations/class-acf-location-current-user.php:72 -msgid "Viewing front end" -msgstr "Frontend anzeigen" - -#: includes/locations/class-acf-location-current-user.php:71 -msgid "Logged in" -msgstr "Angemeldet" - -#: includes/locations/class-acf-location-current-user.php:22 -msgid "Current User" -msgstr "Aktueller Benutzer" - -#: includes/locations/class-acf-location-page-template.php:22 -msgid "Page Template" -msgstr "Seiten-Template" - -#: includes/locations/class-acf-location-user-form.php:74 -msgid "Register" -msgstr "Registrieren" - -#: includes/locations/class-acf-location-user-form.php:73 -msgid "Add / Edit" -msgstr "Hinzufügen/bearbeiten" - -#: includes/locations/class-acf-location-user-form.php:22 -msgid "User Form" -msgstr "Benutzerformular" - -#: includes/locations/class-acf-location-page-parent.php:22 -msgid "Page Parent" -msgstr "Übergeordnete Seite" - -#: includes/locations/class-acf-location-current-user-role.php:77 -msgid "Super Admin" -msgstr "Super-Administrator" - -#: includes/locations/class-acf-location-current-user-role.php:22 -msgid "Current User Role" -msgstr "Aktuelle Benutzerrolle" - -#: includes/locations/class-acf-location-page-template.php:73 -#: includes/locations/class-acf-location-post-template.php:85 -msgid "Default Template" -msgstr "Standard-Template" - -#: includes/locations/class-acf-location-post-template.php:22 -msgid "Post Template" -msgstr "Beitrags-Template" - -#: includes/locations/class-acf-location-post-category.php:22 -msgid "Post Category" -msgstr "Beitragskategorie" - -#: includes/locations/class-acf-location-attachment.php:84 -msgid "All %s formats" -msgstr "Alle %s Formate" - -#: includes/locations/class-acf-location-attachment.php:22 -msgid "Attachment" -msgstr "Anhang" - -#: includes/validation.php:366 -msgid "%s value is required" -msgstr "%s Wert ist erforderlich" - -#: includes/admin/views/acf-field-group/conditional-logic.php:59 -msgid "Show this field if" -msgstr "Dieses Feld anzeigen, falls" - -#: includes/admin/views/acf-field-group/conditional-logic.php:26 -#: includes/admin/views/acf-field-group/field.php:109 includes/fields.php:411 -msgid "Conditional Logic" -msgstr "Bedingte Logik" - -#: includes/admin/views/acf-field-group/conditional-logic.php:156 -#: includes/admin/views/acf-field-group/location-rule.php:92 -msgid "and" -msgstr "und" - -#: includes/admin/post-types/admin-field-groups.php:123 -#: includes/admin/post-types/admin-post-types.php:143 -#: includes/admin/post-types/admin-taxonomies.php:143 -msgid "Local JSON" -msgstr "Lokales JSON" - -#: includes/admin/views/acf-field-group/pro-features.php:46 -msgid "Clone Field" -msgstr "Feld duplizieren" - -#: includes/admin/views/upgrade/notice.php:30 -msgid "" -"Please also check all premium add-ons (%s) are updated to the latest version." -msgstr "" -"Stelle bitte ebenfalls sicher, dass alle Premium-Add-ons (%s) auf die " -"neueste Version aktualisiert wurden." - -#: includes/admin/views/upgrade/notice.php:28 -msgid "" -"This version contains improvements to your database and requires an upgrade." -msgstr "" -"Diese Version enthält Verbesserungen für deine Datenbank und erfordert ein " -"Upgrade." - -#: includes/admin/views/upgrade/notice.php:28 -msgid "Thank you for updating to %1$s v%2$s!" -msgstr "Danke für die Aktualisierung auf %1$s v%2$s!" - -#: includes/admin/views/upgrade/notice.php:27 -msgid "Database Upgrade Required" -msgstr "Ein Upgrade der Datenbank ist erforderlich" - -#: includes/admin/post-types/admin-field-group.php:141 -#: includes/admin/views/upgrade/notice.php:18 -msgid "Options Page" -msgstr "Optionen-Seite" - -#: includes/admin/views/upgrade/notice.php:15 includes/fields.php:462 -msgid "Gallery" -msgstr "Galerie" - -#: includes/admin/views/upgrade/notice.php:12 includes/fields.php:452 -msgid "Flexible Content" -msgstr "Flexibler Inhalt" - -#: includes/admin/views/upgrade/notice.php:9 includes/fields.php:472 -msgid "Repeater" -msgstr "Wiederholung" - -#: includes/admin/views/tools/tools.php:24 -msgid "Back to all tools" -msgstr "Zurück zur Werkzeugübersicht" - -#: includes/admin/views/acf-field-group/options.php:195 -msgid "" -"If multiple field groups appear on an edit screen, the first field group's " -"options will be used (the one with the lowest order number)" -msgstr "" -"Werden in der Bearbeitungsansicht mehrere Feldgruppen angezeigt, werden die " -"Optionen der ersten Feldgruppe verwendet (die mit der niedrigsten " -"Sortierungs-Nummer)" - -#: includes/admin/views/acf-field-group/options.php:195 -msgid "Select items to hide them from the edit screen." -msgstr "" -"Die Elemente auswählen, die in der Bearbeitungsansicht verborgen werden sollen." - -#: includes/admin/views/acf-field-group/options.php:194 -msgid "Hide on screen" -msgstr "In der Ansicht ausblenden" - -#: includes/admin/views/acf-field-group/options.php:186 -msgid "Send Trackbacks" -msgstr "Trackbacks senden" - -#: includes/admin/post-types/admin-taxonomy.php:128 -#: includes/admin/views/acf-field-group/options.php:185 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:159 -#: assets/build/js/acf-internal-post-type.js:180 -#: assets/build/js/acf-internal-post-type.js:254 -msgid "Tags" -msgstr "Schlagwörter" - -#: includes/admin/post-types/admin-taxonomy.php:130 -#: includes/admin/views/acf-field-group/options.php:184 -#: assets/build/js/acf-internal-post-type.js:183 -#: assets/build/js/acf-internal-post-type.js:257 -msgid "Categories" -msgstr "Kategorien" - -#: includes/admin/views/acf-field-group/options.php:182 -#: includes/admin/views/acf-post-type/advanced-settings.php:28 -msgid "Page Attributes" -msgstr "Seiten-Attribute" - -#: includes/admin/views/acf-field-group/options.php:181 -msgid "Format" -msgstr "Format" - -#: includes/admin/views/acf-field-group/options.php:180 -#: includes/admin/views/acf-post-type/advanced-settings.php:22 -msgid "Author" -msgstr "Autor" - -#: includes/admin/views/acf-field-group/options.php:179 -msgid "Slug" -msgstr "Titelform" - -#: includes/admin/views/acf-field-group/options.php:178 -#: includes/admin/views/acf-post-type/advanced-settings.php:27 -msgid "Revisions" -msgstr "Revisionen" - -#: includes/acf-wp-functions.php:66 -#: includes/admin/views/acf-field-group/options.php:177 -#: includes/admin/views/acf-post-type/advanced-settings.php:23 -msgid "Comments" -msgstr "Kommentare" - -#: includes/admin/views/acf-field-group/options.php:176 -msgid "Discussion" -msgstr "Diskussion" - -#: includes/admin/views/acf-field-group/options.php:174 -#: includes/admin/views/acf-post-type/advanced-settings.php:26 -msgid "Excerpt" -msgstr "Textauszug" - -#: includes/admin/views/acf-field-group/options.php:173 -msgid "Content Editor" -msgstr "Inhalts-Editor" - -#: includes/admin/views/acf-field-group/options.php:172 -msgid "Permalink" -msgstr "Permalink" - -#: includes/admin/views/acf-field-group/options.php:250 -msgid "Shown in field group list" -msgstr "Wird in der Feldgruppen-Liste angezeigt" - -#: includes/admin/views/acf-field-group/options.php:157 -msgid "Field groups with a lower order will appear first" -msgstr "Die Feldgruppen mit niedrigerer Ordnung werden zuerst angezeigt" - -#: includes/admin/views/acf-field-group/options.php:156 -msgid "Order No." -msgstr "Sortierungs-Nr." - -#: includes/admin/views/acf-field-group/options.php:147 -msgid "Below fields" -msgstr "Unterhalb der Felder" - -#: includes/admin/views/acf-field-group/options.php:146 -msgid "Below labels" -msgstr "Unterhalb der Beschriftungen" - -#: includes/admin/views/acf-field-group/options.php:139 -msgid "Instruction Placement" -msgstr "Platzierung der Anweisungen" - -#: includes/admin/views/acf-field-group/options.php:122 -msgid "Label Placement" -msgstr "Platzierung der Beschriftung" - -#: includes/admin/views/acf-field-group/options.php:110 -msgid "Side" -msgstr "Seite" - -#: includes/admin/views/acf-field-group/options.php:109 -msgid "Normal (after content)" -msgstr "Normal (nach Inhalt)" - -#: includes/admin/views/acf-field-group/options.php:108 -msgid "High (after title)" -msgstr "Hoch (nach dem Titel)" - -#: includes/admin/views/acf-field-group/options.php:101 -msgid "Position" -msgstr "Position" - -#: includes/admin/views/acf-field-group/options.php:92 -msgid "Seamless (no metabox)" -msgstr "Übergangslos (keine Metabox)" - -#: includes/admin/views/acf-field-group/options.php:91 -msgid "Standard (WP metabox)" -msgstr "Standard (WP-Metabox)" - -#: includes/admin/views/acf-field-group/options.php:84 -msgid "Style" -msgstr "Stil" - -#: includes/admin/views/acf-field-group/fields.php:55 -msgid "Type" -msgstr "Typ" - -#: includes/admin/post-types/admin-field-groups.php:117 -#: includes/admin/post-types/admin-post-types.php:136 -#: includes/admin/post-types/admin-taxonomies.php:136 -#: includes/admin/views/acf-field-group/fields.php:54 -msgid "Key" -msgstr "Schlüssel" - -#. translators: Hidden accessibility text for the positional order number of -#. the field. -#: includes/admin/views/acf-field-group/fields.php:48 -msgid "Order" -msgstr "Reihenfolge" - -#: includes/admin/views/acf-field-group/field.php:322 -msgid "Close Field" -msgstr "Feld schließen" - -#: includes/admin/views/acf-field-group/field.php:253 -msgid "id" -msgstr "ID" - -#: includes/admin/views/acf-field-group/field.php:237 -msgid "class" -msgstr "Klasse" - -#: includes/admin/views/acf-field-group/field.php:279 -msgid "width" -msgstr "Breite" - -#: includes/admin/views/acf-field-group/field.php:273 -msgid "Wrapper Attributes" -msgstr "Wrapper-Attribute" - -#: includes/admin/views/acf-field-group/field.php:196 -msgid "Required" -msgstr "Erforderlich" - -#: includes/admin/views/acf-field-group/field.php:221 -msgid "Instructions for authors. Shown when submitting data" -msgstr "" -"Anleitungen für Autoren. Das wird angezeigt, wenn Daten übermittelt werden" - -#: includes/admin/views/acf-field-group/field.php:220 -msgid "Instructions" -msgstr "Anweisungen" - -#: includes/admin/views/acf-field-group/field.php:129 -msgid "Field Type" -msgstr "Feldtyp" - -#: includes/admin/views/acf-field-group/field.php:170 -msgid "Single word, no spaces. Underscores and dashes allowed" -msgstr "" -"Einzelnes Wort ohne Leerzeichen. Unterstriche und Bindestriche sind erlaubt" - -#: includes/admin/views/acf-field-group/field.php:169 -msgid "Field Name" -msgstr "Feldname" - -#: includes/admin/views/acf-field-group/field.php:157 -msgid "This is the name which will appear on the EDIT page" -msgstr "Dies ist der Name, der auf der BEARBEITUNGS-Seite erscheinen wird" - -#: includes/admin/views/acf-field-group/field.php:156 -#: includes/admin/views/browse-fields-modal.php:59 -msgid "Field Label" -msgstr "Feldbeschriftung" - -#: includes/admin/views/acf-field-group/field.php:81 -msgid "Delete" -msgstr "Löschen" - -#: includes/admin/views/acf-field-group/field.php:81 -msgid "Delete field" -msgstr "Feld löschen" - -#: includes/admin/views/acf-field-group/field.php:79 -msgid "Move" -msgstr "Verschieben" - -#: includes/admin/views/acf-field-group/field.php:79 -msgid "Move field to another group" -msgstr "Feld in eine andere Gruppe verschieben" - -#: includes/admin/views/acf-field-group/field.php:77 -msgid "Duplicate field" -msgstr "Feld duplizieren" - -#: includes/admin/views/acf-field-group/field.php:73 -#: includes/admin/views/acf-field-group/field.php:76 -msgid "Edit field" -msgstr "Feld bearbeiten" - -#: includes/admin/views/acf-field-group/field.php:69 -msgid "Drag to reorder" -msgstr "Ziehen zum Sortieren" - -#: includes/admin/post-types/admin-field-group.php:103 -#: includes/admin/views/acf-field-group/location-group.php:3 -#: assets/build/js/acf-field-group.js:2347 -#: assets/build/js/acf-field-group.js:2763 -msgid "Show this field group if" -msgstr "Diese Feldgruppe anzeigen, falls" - -#: includes/admin/views/upgrade/upgrade.php:94 -#: includes/ajax/class-acf-ajax-upgrade.php:34 -msgid "No updates available." -msgstr "Es sind keine Aktualisierungen verfügbar." - -#: includes/admin/views/upgrade/upgrade.php:33 -msgid "Database upgrade complete. See what's new" -msgstr "" -"Das Datenbank-Upgrade wurde abgeschlossen. Schau nach was es " -"Neues gibt" - -#: includes/admin/views/upgrade/upgrade.php:30 -msgid "Reading upgrade tasks..." -msgstr "Aufgaben für das Upgrade einlesen ..." - -#: includes/admin/views/upgrade/network.php:165 -#: includes/admin/views/upgrade/upgrade.php:65 -msgid "Upgrade failed." -msgstr "Das Upgrade ist fehlgeschlagen." - -#: includes/admin/views/upgrade/network.php:162 -msgid "Upgrade complete." -msgstr "Das Upgrade wurde abgeschlossen." - -#: includes/admin/views/upgrade/network.php:148 -#: includes/admin/views/upgrade/upgrade.php:31 -msgid "Upgrading data to version %s" -msgstr "Das Upgrade der Daten auf Version %s wird ausgeführt" - -#: includes/admin/views/upgrade/network.php:121 -#: includes/admin/views/upgrade/notice.php:44 -msgid "" -"It is strongly recommended that you backup your database before proceeding. " -"Are you sure you wish to run the updater now?" -msgstr "" -"Es wird dringend empfohlen, dass du deine Datenbank sicherst, bevor du " -"fortfährst. Bist du sicher, dass du die Aktualisierung jetzt durchführen " -"möchtest?" - -#: includes/admin/views/upgrade/network.php:117 -msgid "Please select at least one site to upgrade." -msgstr "Bitte mindestens eine Website für das Upgrade auswählen." - -#: includes/admin/views/upgrade/network.php:97 -msgid "" -"Database Upgrade complete. Return to network dashboard" -msgstr "" -"Das Upgrade der Datenbank wurde fertiggestellt. Zurück zum " -"Netzwerk-Dashboard" - -#: includes/admin/views/upgrade/network.php:80 -msgid "Site is up to date" -msgstr "Die Website ist aktuell" - -#: includes/admin/views/upgrade/network.php:78 -msgid "Site requires database upgrade from %1$s to %2$s" -msgstr "Die Website erfordert ein Upgrade der Datenbank von %1$s auf %2$s" - -#: includes/admin/views/upgrade/network.php:36 -#: includes/admin/views/upgrade/network.php:47 -msgid "Site" -msgstr "Website" - -#: includes/admin/views/upgrade/network.php:26 -#: includes/admin/views/upgrade/network.php:27 -#: includes/admin/views/upgrade/network.php:96 -msgid "Upgrade Sites" -msgstr "Upgrade der Websites" - -#: includes/admin/views/upgrade/network.php:26 -msgid "" -"The following sites require a DB upgrade. Check the ones you want to update " -"and then click %s." -msgstr "" -"Folgende Websites erfordern ein Upgrade der Datenbank. Markiere die, die du " -"aktualisieren möchtest und klick dann auf %s." - -#: includes/admin/views/acf-field-group/conditional-logic.php:171 -#: includes/admin/views/acf-field-group/locations.php:38 -msgid "Add rule group" -msgstr "Eine Regelgruppe hinzufügen" - -#: includes/admin/views/acf-field-group/locations.php:10 -msgid "" -"Create a set of rules to determine which edit screens will use these " -"advanced custom fields" -msgstr "" -"Erstelle einen Satz von Regeln, um festzulegen, in welchen " -"Bearbeitungsansichten diese „advanced custom fields“ genutzt werden" - -#: includes/admin/views/acf-field-group/locations.php:9 -msgid "Rules" -msgstr "Regeln" - -#: includes/admin/tools/class-acf-admin-tool-export.php:510 -msgid "Copied" -msgstr "Kopiert" - -#: includes/admin/tools/class-acf-admin-tool-export.php:486 -msgid "Copy to clipboard" -msgstr "In die Zwischenablage kopieren" - -#: includes/admin/tools/class-acf-admin-tool-export.php:385 -msgid "" -"Select the items you would like to export and then select your export " -"method. Export As JSON to export to a .json file which you can then import " -"to another ACF installation. Generate PHP to export to PHP code which you " -"can place in your theme." -msgstr "" -"Wähle, welche Feldgruppen du exportieren möchtest und wähle dann die " -"Exportmethode. Exportiere als JSON, um eine JSON-Datei zu exportieren, die " -"du im Anschluss in eine andere ACF-Installation importieren kannst. Verwende " -"den „PHP erstellen“-Button, um den resultierenden PHP-Code zu exportieren, " -"den du in dein Theme einfügen kannst." - -#: includes/admin/tools/class-acf-admin-tool-export.php:233 -msgid "Select Field Groups" -msgstr "Feldgruppen auswählen" - -#: includes/admin/tools/class-acf-admin-tool-export.php:96 -#: includes/admin/tools/class-acf-admin-tool-export.php:131 -msgid "No field groups selected" -msgstr "Es wurden keine Feldgruppen ausgewählt" - -#: includes/admin/tools/class-acf-admin-tool-export.php:39 -#: includes/admin/tools/class-acf-admin-tool-export.php:393 -#: includes/admin/tools/class-acf-admin-tool-export.php:421 -msgid "Generate PHP" -msgstr "PHP erstellen" - -#: includes/admin/tools/class-acf-admin-tool-export.php:35 -msgid "Export Field Groups" -msgstr "Feldgruppen exportieren" - -#: includes/admin/tools/class-acf-admin-tool-import.php:177 -msgid "Import file empty" -msgstr "Die importierte Datei ist leer" - -#: includes/admin/tools/class-acf-admin-tool-import.php:168 -msgid "Incorrect file type" -msgstr "Inkorrekter Dateityp" - -#: includes/admin/tools/class-acf-admin-tool-import.php:163 -msgid "Error uploading file. Please try again" -msgstr "Fehler beim Upload der Datei. Bitte erneut versuchen" - -#: includes/admin/tools/class-acf-admin-tool-import.php:50 -msgid "" -"Select the Advanced Custom Fields JSON file you would like to import. When " -"you click the import button below, ACF will import the items in that file." -msgstr "" -"Wähle die Advanced-Custom-Fields-JSON-Datei, die du importieren möchtest. " -"Wenn du den Import-Button unten anklickst, wird ACF die Feldgruppen " -"importieren." - -#: includes/admin/tools/class-acf-admin-tool-import.php:27 -msgid "Import Field Groups" -msgstr "Feldgruppen importieren" - -#: includes/admin/admin-internal-post-type-list.php:401 -msgid "Sync" -msgstr "Synchronisieren" - -#: includes/admin/admin-internal-post-type-list.php:858 -msgid "Select %s" -msgstr "%s auswählen" - -#: includes/admin/admin-internal-post-type-list.php:442 -#: includes/admin/admin-internal-post-type-list.php:474 -#: includes/admin/views/acf-field-group/field.php:77 -msgid "Duplicate" -msgstr "Duplizieren" - -#: includes/admin/admin-internal-post-type-list.php:442 -msgid "Duplicate this item" -msgstr "Dieses Element duplizieren" - -#: includes/admin/views/acf-post-type/advanced-settings.php:41 -msgid "Supports" -msgstr "Hilfe" - -#: includes/admin/admin.php:261 includes/admin/views/browse-fields-modal.php:92 -msgid "Documentation" -msgstr "Dokumentation" - -#: includes/admin/post-types/admin-field-groups.php:116 -#: includes/admin/post-types/admin-post-types.php:135 -#: includes/admin/post-types/admin-taxonomies.php:135 -#: includes/admin/views/acf-field-group/options.php:249 -#: includes/admin/views/acf-post-type/advanced-settings.php:62 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:114 -#: includes/admin/views/upgrade/network.php:38 -#: includes/admin/views/upgrade/network.php:49 -msgid "Description" -msgstr "Beschreibung" - -#: includes/admin/admin-internal-post-type-list.php:398 -#: includes/admin/admin-internal-post-type-list.php:747 -msgid "Sync available" -msgstr "Synchronisierung verfügbar" - -#. translators: %s number of field groups synchronized -#: includes/admin/post-types/admin-field-groups.php:381 -msgid "Field group synchronized." -msgid_plural "%s field groups synchronized." -msgstr[0] "Die Feldgruppe wurde synchronisiert." -msgstr[1] "%s Feldgruppen wurden synchronisiert." - -#. translators: %s number of field groups duplicated -#: includes/admin/post-types/admin-field-groups.php:374 -msgid "Field group duplicated." -msgid_plural "%s field groups duplicated." -msgstr[0] "Die Feldgruppe wurde dupliziert." -msgstr[1] "%s Feldgruppen wurden dupliziert." - -#: includes/admin/admin-internal-post-type-list.php:137 -msgid "Active (%s)" -msgid_plural "Active (%s)" -msgstr[0] "Aktiv (%s)" -msgstr[1] "Aktiv (%s)" - -#: includes/admin/admin-upgrade.php:254 -msgid "Review sites & upgrade" -msgstr "Websites prüfen und ein Upgrade durchführen" - -#: includes/admin/admin-upgrade.php:59 includes/admin/admin-upgrade.php:93 -#: includes/admin/admin-upgrade.php:94 includes/admin/admin-upgrade.php:230 -#: includes/admin/views/upgrade/network.php:24 -#: includes/admin/views/upgrade/upgrade.php:26 -msgid "Upgrade Database" -msgstr "Upgrade der Datenbank" - -#: includes/admin/views/acf-field-group/options.php:175 -#: includes/admin/views/acf-post-type/advanced-settings.php:30 -msgid "Custom Fields" -msgstr "Individuelle Felder" - -#: includes/admin/post-types/admin-field-group.php:616 -msgid "Move Field" -msgstr "Feld verschieben" - -#: includes/admin/post-types/admin-field-group.php:605 -#: includes/admin/post-types/admin-field-group.php:609 -msgid "Please select the destination for this field" -msgstr "Bitte das Ziel für dieses Feld auswählen" - -#. translators: Confirmation message once a field has been moved to a different -#. field group. -#: includes/admin/post-types/admin-field-group.php:567 -msgid "The %1$s field can now be found in the %2$s field group" -msgstr "Das %1$s-Feld kann jetzt in der %2$s-Feldgruppe gefunden werden" - -#: includes/admin/post-types/admin-field-group.php:564 -msgid "Move Complete." -msgstr "Das Verschieben ist abgeschlossen." - -#: includes/admin/views/acf-field-group/field.php:39 -#: includes/admin/views/acf-field-group/options.php:217 -#: includes/admin/views/acf-post-type/advanced-settings.php:78 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:130 -msgid "Active" -msgstr "Aktiv" - -#: includes/admin/post-types/admin-field-group.php:266 -msgid "Field Keys" -msgstr "Feldschlüssel" - -#: includes/admin/post-types/admin-field-group.php:164 -#: includes/admin/tools/class-acf-admin-tool-export.php:342 -msgid "Settings" -msgstr "Einstellungen" - -#: includes/admin/post-types/admin-field-groups.php:118 -msgid "Location" -msgstr "Position" - -#: includes/admin/post-types/admin-field-group.php:104 -#: assets/build/js/acf-input.js:983 assets/build/js/acf-input.js:1075 -msgid "Null" -msgstr "Null" - -#: includes/admin/post-types/admin-field-group.php:101 -#: includes/class-acf-internal-post-type.php:730 -#: includes/post-types/class-acf-field-group.php:345 -#: assets/build/js/acf-field-group.js:1510 -#: assets/build/js/acf-field-group.js:1821 -msgid "copy" -msgstr "kopieren" - -#: includes/admin/post-types/admin-field-group.php:100 -#: assets/build/js/acf-field-group.js:623 -#: assets/build/js/acf-field-group.js:778 -msgid "(this field)" -msgstr "(dieses Feld)" - -#: includes/admin/post-types/admin-field-group.php:98 -#: assets/build/js/acf-input.js:918 assets/build/js/acf-input.js:943 -#: assets/build/js/acf-input.js:1002 assets/build/js/acf-input.js:1030 -msgid "Checked" -msgstr "Ausgewählt" - -#: includes/admin/post-types/admin-field-group.php:94 -#: assets/build/js/acf-field-group.js:1615 -#: assets/build/js/acf-field-group.js:1933 -msgid "Move Custom Field" -msgstr "Individuelles Feld verschieben" - -#: includes/admin/post-types/admin-field-group.php:93 -#: assets/build/js/acf-field-group.js:649 -#: assets/build/js/acf-field-group.js:804 -msgid "No toggle fields available" -msgstr "Es sind keine Felder zum Umschalten verfügbar" - -#: includes/admin/post-types/admin-field-group.php:91 -msgid "Field group title is required" -msgstr "Ein Titel für die Feldgruppe ist erforderlich" - -#: includes/admin/post-types/admin-field-group.php:90 -#: assets/build/js/acf-field-group.js:1604 -#: assets/build/js/acf-field-group.js:1919 -msgid "This field cannot be moved until its changes have been saved" -msgstr "" -"Dieses Feld kann erst verschoben werden, wenn dessen Änderungen gespeichert " -"wurden" - -#: includes/admin/post-types/admin-field-group.php:89 -#: assets/build/js/acf-field-group.js:1414 -#: assets/build/js/acf-field-group.js:1716 -msgid "The string \"field_\" may not be used at the start of a field name" -msgstr "Die Zeichenfolge „field_“ darf nicht am Beginn eines Feldnamens stehen" - -#: includes/admin/post-types/admin-field-group.php:71 -msgid "Field group draft updated." -msgstr "Der Entwurf der Feldgruppe wurde aktualisiert." - -#: includes/admin/post-types/admin-field-group.php:70 -msgid "Field group scheduled for." -msgstr "Feldgruppe geplant für." - -#: includes/admin/post-types/admin-field-group.php:69 -msgid "Field group submitted." -msgstr "Die Feldgruppe wurde übertragen." - -#: includes/admin/post-types/admin-field-group.php:68 -msgid "Field group saved." -msgstr "Die Feldgruppe wurde gespeichert." - -#: includes/admin/post-types/admin-field-group.php:67 -msgid "Field group published." -msgstr "Die Feldgruppe wurde veröffentlicht." - -#: includes/admin/post-types/admin-field-group.php:64 -msgid "Field group deleted." -msgstr "Die Feldgruppe wurde gelöscht." - -#: includes/admin/post-types/admin-field-group.php:62 -#: includes/admin/post-types/admin-field-group.php:63 -#: includes/admin/post-types/admin-field-group.php:65 -msgid "Field group updated." -msgstr "Die Feldgruppe wurde aktualisiert." - -#: includes/admin/admin-tools.php:118 -#: includes/admin/views/global/navigation.php:246 -#: includes/admin/views/tools/tools.php:21 -msgid "Tools" -msgstr "Werkzeuge" - -#: includes/locations/abstract-acf-location.php:106 -msgid "is not equal to" -msgstr "ist ungleich" - -#: includes/locations/abstract-acf-location.php:105 -msgid "is equal to" -msgstr "ist gleich" - -#: includes/locations.php:102 -msgid "Forms" -msgstr "Formulare" - -#: includes/admin/post-types/admin-post-type.php:127 includes/locations.php:100 -#: includes/locations/class-acf-location-page.php:22 -#: assets/build/js/acf-internal-post-type.js:175 -#: assets/build/js/acf-internal-post-type.js:249 -msgid "Page" -msgstr "Seite" - -#: includes/admin/post-types/admin-post-type.php:125 includes/locations.php:99 -#: includes/locations/class-acf-location-post.php:22 -#: assets/build/js/acf-internal-post-type.js:172 -#: assets/build/js/acf-internal-post-type.js:246 -msgid "Post" -msgstr "Beitrag" - -#: includes/fields.php:354 -msgid "Relational" -msgstr "Relational" - -#: includes/fields.php:353 -msgid "Choice" -msgstr "Auswahl" - -#: includes/fields.php:351 -msgid "Basic" -msgstr "Grundlegend" - -#: includes/fields.php:320 -msgid "Unknown" -msgstr "Unbekannt" - -#: includes/fields.php:320 -msgid "Field type does not exist" -msgstr "Der Feldtyp existiert nicht" - -#: includes/forms/form-front.php:236 -msgid "Spam Detected" -msgstr "Es wurde Spam entdeckt" - -#: includes/forms/form-front.php:107 -msgid "Post updated" -msgstr "Der Beitrag wurde aktualisiert" - -#: includes/forms/form-front.php:106 -msgid "Update" -msgstr "Aktualisieren" - -#: includes/forms/form-front.php:57 -msgid "Validate Email" -msgstr "E-Mail-Adresse bestätigen" - -#: includes/fields.php:352 includes/forms/form-front.php:49 -msgid "Content" -msgstr "Inhalt" - -#: includes/admin/views/acf-post-type/advanced-settings.php:21 -#: includes/forms/form-front.php:40 -msgid "Title" -msgstr "Titel" - -#: includes/assets.php:372 includes/forms/form-comment.php:160 -#: assets/build/js/acf-input.js:7382 assets/build/js/acf-input.js:7968 -msgid "Edit field group" -msgstr "Feldgruppe bearbeiten" - -#: includes/admin/post-types/admin-field-group.php:117 -#: assets/build/js/acf-input.js:1125 assets/build/js/acf-input.js:1230 -msgid "Selection is less than" -msgstr "Die Auswahl ist kleiner als" - -#: includes/admin/post-types/admin-field-group.php:116 -#: assets/build/js/acf-input.js:1106 assets/build/js/acf-input.js:1202 -msgid "Selection is greater than" -msgstr "Die Auswahl ist größer als" - -#: includes/admin/post-types/admin-field-group.php:115 -#: assets/build/js/acf-input.js:1075 assets/build/js/acf-input.js:1170 -msgid "Value is less than" -msgstr "Der Wert ist kleiner als" - -#: includes/admin/post-types/admin-field-group.php:114 -#: assets/build/js/acf-input.js:1045 assets/build/js/acf-input.js:1139 -msgid "Value is greater than" -msgstr "Der Wert ist größer als" - -#: includes/admin/post-types/admin-field-group.php:113 -#: assets/build/js/acf-input.js:888 assets/build/js/acf-input.js:960 -msgid "Value contains" -msgstr "Der Wert enthält" - -#: includes/admin/post-types/admin-field-group.php:112 -#: assets/build/js/acf-input.js:862 assets/build/js/acf-input.js:926 -msgid "Value matches pattern" -msgstr "Der Wert entspricht dem Muster" - -#: includes/admin/post-types/admin-field-group.php:111 -#: assets/build/js/acf-input.js:840 assets/build/js/acf-input.js:1023 -#: assets/build/js/acf-input.js:903 assets/build/js/acf-input.js:1116 -msgid "Value is not equal to" -msgstr "Wert ist ungleich" - -#: includes/admin/post-types/admin-field-group.php:110 -#: assets/build/js/acf-input.js:810 assets/build/js/acf-input.js:964 -#: assets/build/js/acf-input.js:864 assets/build/js/acf-input.js:1053 -msgid "Value is equal to" -msgstr "Der Wert ist gleich" - -#: includes/admin/post-types/admin-field-group.php:109 -#: assets/build/js/acf-input.js:788 assets/build/js/acf-input.js:841 -msgid "Has no value" -msgstr "Hat keinen Wert" - -#: includes/admin/post-types/admin-field-group.php:108 -#: assets/build/js/acf-input.js:758 assets/build/js/acf-input.js:783 -msgid "Has any value" -msgstr "Hat einen Wert" - -#: includes/admin/admin-internal-post-type.php:345 -#: includes/admin/views/browse-fields-modal.php:62 includes/assets.php:353 -#: assets/build/js/acf.js:1564 assets/build/js/acf.js:1658 -msgid "Cancel" -msgstr "Abbrechen" - -#: includes/assets.php:349 assets/build/js/acf.js:1738 -#: assets/build/js/acf.js:1855 -msgid "Are you sure?" -msgstr "Bist du sicher?" - -#: includes/assets.php:369 assets/build/js/acf-input.js:9442 -#: assets/build/js/acf-input.js:10294 -msgid "%d fields require attention" -msgstr "%d Felder erfordern Aufmerksamkeit" - -#: includes/assets.php:368 assets/build/js/acf-input.js:9440 -#: assets/build/js/acf-input.js:10290 -msgid "1 field requires attention" -msgstr "1 Feld erfordert Aufmerksamkeit" - -#: includes/assets.php:367 includes/validation.php:288 -#: includes/validation.php:298 assets/build/js/acf-input.js:9435 -#: assets/build/js/acf-input.js:10285 -msgid "Validation failed" -msgstr "Die Überprüfung ist fehlgeschlagen" - -#: includes/assets.php:366 assets/build/js/acf-input.js:9603 -#: assets/build/js/acf-input.js:10473 -msgid "Validation successful" -msgstr "Die Überprüfung war erfolgreich" - -#: includes/media.php:54 assets/build/js/acf-input.js:7210 -#: assets/build/js/acf-input.js:7772 -msgid "Restricted" -msgstr "Eingeschränkt" - -#: includes/media.php:53 assets/build/js/acf-input.js:7025 -#: assets/build/js/acf-input.js:7536 -msgid "Collapse Details" -msgstr "Details ausblenden" - -#: includes/media.php:52 assets/build/js/acf-input.js:7025 -#: assets/build/js/acf-input.js:7533 -msgid "Expand Details" -msgstr "Details einblenden" - -#: includes/admin/views/acf-post-type/advanced-settings.php:465 -#: includes/media.php:51 assets/build/js/acf-input.js:6892 -#: assets/build/js/acf-input.js:7381 -msgid "Uploaded to this post" -msgstr "Zu diesem Beitrag hochgeladen" - -#: includes/media.php:50 assets/build/js/acf-input.js:6931 -#: assets/build/js/acf-input.js:7420 -msgctxt "verb" -msgid "Update" -msgstr "Aktualisieren" - -#: includes/media.php:49 -msgctxt "verb" -msgid "Edit" -msgstr "Bearbeiten" - -#: includes/assets.php:363 assets/build/js/acf-input.js:9212 -#: assets/build/js/acf-input.js:10056 -msgid "The changes you made will be lost if you navigate away from this page" -msgstr "Deine Änderungen werden verlorengehen, wenn du diese Seite verlässt" - -#: includes/api/api-helpers.php:3395 -msgid "File type must be %s." -msgstr "Der Dateityp muss %s sein." - -#: includes/admin/post-types/admin-field-group.php:102 -#: includes/admin/views/acf-field-group/conditional-logic.php:59 -#: includes/admin/views/acf-field-group/conditional-logic.php:169 -#: includes/admin/views/acf-field-group/location-group.php:3 -#: includes/admin/views/acf-field-group/locations.php:36 -#: includes/api/api-helpers.php:3391 assets/build/js/acf-field-group.js:771 -#: assets/build/js/acf-field-group.js:2385 -#: assets/build/js/acf-field-group.js:933 -#: assets/build/js/acf-field-group.js:2807 -msgid "or" -msgstr "oder" - -#: includes/api/api-helpers.php:3364 -msgid "File size must not exceed %s." -msgstr "Die Dateigröße darf nicht größer als %s sein." - -#: includes/api/api-helpers.php:3359 -msgid "File size must be at least %s." -msgstr "Die Dateigröße muss mindestens %s sein." - -#: includes/api/api-helpers.php:3344 -msgid "Image height must not exceed %dpx." -msgstr "Die Höhe des Bild darf %dpx nicht überschreiten." - -#: includes/api/api-helpers.php:3339 -msgid "Image height must be at least %dpx." -msgstr "Die Höhe des Bildes muss mindestens %dpx sein." - -#: includes/api/api-helpers.php:3325 -msgid "Image width must not exceed %dpx." -msgstr "Die Breite des Bildes darf %dpx nicht überschreiten." - -#: includes/api/api-helpers.php:3320 -msgid "Image width must be at least %dpx." -msgstr "Die Breite des Bildes muss mindestens %dpx sein." - -#: includes/api/api-helpers.php:1561 includes/api/api-term.php:147 -msgid "(no title)" -msgstr "(ohne Titel)" - -#: includes/api/api-helpers.php:853 -msgid "Full Size" -msgstr "Volle Größe" - -#: includes/api/api-helpers.php:812 -msgid "Large" -msgstr "Groß" - -#: includes/api/api-helpers.php:811 -msgid "Medium" -msgstr "Mittel" - -#: includes/api/api-helpers.php:810 -msgid "Thumbnail" -msgstr "Vorschaubild" - -#: includes/acf-field-functions.php:854 -#: includes/admin/post-types/admin-field-group.php:99 -#: assets/build/js/acf-field-group.js:1077 -#: assets/build/js/acf-field-group.js:1260 -msgid "(no label)" -msgstr "(keine Beschriftung)" - -#: includes/fields/class-acf-field-textarea.php:145 -msgid "Sets the textarea height" -msgstr "Legt die Höhe des Textbereichs fest" - -#: includes/fields/class-acf-field-textarea.php:144 -msgid "Rows" -msgstr "Zeilen" - -#: includes/fields/class-acf-field-textarea.php:25 -msgid "Text Area" -msgstr "Textbereich" - -#: includes/fields/class-acf-field-checkbox.php:451 -msgid "Prepend an extra checkbox to toggle all choices" -msgstr "" -"Ein zusätzliches Auswahlfeld voranstellen, um alle Optionen auszuwählen" - -#: includes/fields/class-acf-field-checkbox.php:413 -msgid "Save 'custom' values to the field's choices" -msgstr "Individuelle Werte in den Auswahlmöglichkeiten des Feldes speichern" - -#: includes/fields/class-acf-field-checkbox.php:402 -msgid "Allow 'custom' values to be added" -msgstr "Das Hinzufügen individueller Werte erlauben" - -#: includes/fields/class-acf-field-checkbox.php:38 -msgid "Add new choice" -msgstr "Eine neue Auswahlmöglichkeit hinzufügen" - -#: includes/fields/class-acf-field-checkbox.php:174 -msgid "Toggle All" -msgstr "Alle umschalten" - -#: includes/fields/class-acf-field-page_link.php:506 -msgid "Allow Archives URLs" -msgstr "Archiv-URLs erlauben" - -#: includes/fields/class-acf-field-page_link.php:179 -msgid "Archives" -msgstr "Archive" - -#: includes/fields/class-acf-field-page_link.php:25 -msgid "Page Link" -msgstr "Seiten-Link" - -#: includes/fields/class-acf-field-taxonomy.php:943 -#: includes/locations/class-acf-location-user-form.php:72 -msgid "Add" -msgstr "Hinzufügen" - -#: includes/admin/views/acf-field-group/fields.php:53 -#: includes/fields/class-acf-field-taxonomy.php:908 -msgid "Name" -msgstr "Name" - -#: includes/fields/class-acf-field-taxonomy.php:892 -msgid "%s added" -msgstr "%s hinzugefügt" - -#: includes/fields/class-acf-field-taxonomy.php:856 -msgid "%s already exists" -msgstr "%s ist bereits vorhanden" - -#: includes/fields/class-acf-field-taxonomy.php:844 -msgid "User unable to add new %s" -msgstr "Der Benutzer kann keine neue %s hinzufügen" - -#: includes/fields/class-acf-field-taxonomy.php:742 -msgid "Term ID" -msgstr "Begriffs-ID" - -#: includes/fields/class-acf-field-taxonomy.php:741 -msgid "Term Object" -msgstr "Begriffs-Objekt" - -#: includes/fields/class-acf-field-taxonomy.php:726 -msgid "Load value from posts terms" -msgstr "Den Wert aus den Begriffen des Beitrags laden" - -#: includes/fields/class-acf-field-taxonomy.php:725 -msgid "Load Terms" -msgstr "Begriffe laden" - -#: includes/fields/class-acf-field-taxonomy.php:715 -msgid "Connect selected terms to the post" -msgstr "Verbinde die ausgewählten Begriffe mit dem Beitrag" - -#: includes/fields/class-acf-field-taxonomy.php:714 -msgid "Save Terms" -msgstr "Begriffe speichern" - -#: includes/fields/class-acf-field-taxonomy.php:704 -msgid "Allow new terms to be created whilst editing" -msgstr "Erlaubt das Erstellen neuer Begriffe während des Bearbeitens" - -#: includes/fields/class-acf-field-taxonomy.php:703 -msgid "Create Terms" -msgstr "Begriffe erstellen" - -#: includes/fields/class-acf-field-taxonomy.php:762 -msgid "Radio Buttons" -msgstr "Radiobuttons" - -#: includes/fields/class-acf-field-taxonomy.php:761 -msgid "Single Value" -msgstr "Einzelner Wert" - -#: includes/fields/class-acf-field-taxonomy.php:759 -msgid "Multi Select" -msgstr "Mehrfachauswahl" - -#: includes/fields/class-acf-field-checkbox.php:25 -#: includes/fields/class-acf-field-taxonomy.php:758 -msgid "Checkbox" -msgstr "Auswahlkästchen" - -#: includes/fields/class-acf-field-taxonomy.php:757 -msgid "Multiple Values" -msgstr "Mehrere Werte" - -#: includes/fields/class-acf-field-taxonomy.php:752 -msgid "Select the appearance of this field" -msgstr "Das Design für dieses Feld auswählen" - -#: includes/fields/class-acf-field-taxonomy.php:751 -msgid "Appearance" -msgstr "Design" - -#: includes/fields/class-acf-field-taxonomy.php:693 -msgid "Select the taxonomy to be displayed" -msgstr "Wähle die Taxonomie, welche angezeigt werden soll" - -#: includes/fields/class-acf-field-taxonomy.php:654 -msgctxt "No Terms" -msgid "No %s" -msgstr "Keine %s" - -#: includes/fields/class-acf-field-number.php:266 -msgid "Value must be equal to or lower than %d" -msgstr "Der Wert muss kleiner oder gleich %d sein" - -#: includes/fields/class-acf-field-number.php:259 -msgid "Value must be equal to or higher than %d" -msgstr "Der Wert muss größer oder gleich %d sein" - -#: includes/fields/class-acf-field-number.php:244 -msgid "Value must be a number" -msgstr "Der Wert muss eine Zahl sein" - -#: includes/fields/class-acf-field-number.php:25 -msgid "Number" -msgstr "Numerisch" - -#: includes/fields/class-acf-field-radio.php:264 -msgid "Save 'other' values to the field's choices" -msgstr "Weitere Werte unter den Auswahlmöglichkeiten des Feldes speichern" - -#: includes/fields/class-acf-field-radio.php:253 -msgid "Add 'other' choice to allow for custom values" -msgstr "" -"Das Hinzufügen der Auswahlmöglichkeit ‚weitere‘ erlaubt individuelle Werte" - -#: includes/admin/views/global/navigation.php:196 -msgid "Other" -msgstr "Weitere" - -#: includes/fields/class-acf-field-radio.php:25 -msgid "Radio Button" -msgstr "Radiobutton" - -#: includes/fields/class-acf-field-accordion.php:107 -msgid "" -"Define an endpoint for the previous accordion to stop. This accordion will " -"not be visible." -msgstr "" -"Definiert einen Endpunkt, an dem das vorangegangene Akkordeon endet. Dieses " -"Akkordeon wird nicht sichtbar sein." - -#: includes/fields/class-acf-field-accordion.php:96 -msgid "Allow this accordion to open without closing others." -msgstr "Dieses Akkordeon öffnen, ohne die anderen zu schließen." - -#: includes/fields/class-acf-field-accordion.php:95 -msgid "Multi-Expand" -msgstr "" - -#: includes/fields/class-acf-field-accordion.php:85 -msgid "Display this accordion as open on page load." -msgstr "Dieses Akkordeon beim Laden der Seite in geöffnetem Zustand anzeigen." - -#: includes/fields/class-acf-field-accordion.php:84 -msgid "Open" -msgstr "Geöffnet" - -#: includes/fields/class-acf-field-accordion.php:25 -msgid "Accordion" -msgstr "Akkordeon" - -#: includes/fields/class-acf-field-file.php:267 -#: includes/fields/class-acf-field-file.php:279 -msgid "Restrict which files can be uploaded" -msgstr "Beschränkt, welche Dateien hochgeladen werden können" - -#: includes/fields/class-acf-field-file.php:220 -msgid "File ID" -msgstr "Datei-ID" - -#: includes/fields/class-acf-field-file.php:219 -msgid "File URL" -msgstr "Datei-URL" - -#: includes/fields/class-acf-field-file.php:218 -msgid "File Array" -msgstr "Datei-Array" - -#: includes/fields/class-acf-field-file.php:186 -msgid "Add File" -msgstr "Datei hinzufügen" - -#: includes/admin/tools/class-acf-admin-tool-import.php:156 -#: includes/fields/class-acf-field-file.php:186 -msgid "No file selected" -msgstr "Es wurde keine Datei ausgewählt" - -#: includes/fields/class-acf-field-file.php:150 -msgid "File name" -msgstr "Dateiname" - -#: includes/fields/class-acf-field-file.php:63 -#: assets/build/js/acf-input.js:2474 assets/build/js/acf-input.js:2625 -msgid "Update File" -msgstr "Datei aktualisieren" - -#: includes/fields/class-acf-field-file.php:62 -#: assets/build/js/acf-input.js:2473 assets/build/js/acf-input.js:2624 -msgid "Edit File" -msgstr "Datei bearbeiten" - -#: includes/admin/tools/class-acf-admin-tool-import.php:58 -#: includes/fields/class-acf-field-file.php:61 -#: assets/build/js/acf-input.js:2447 assets/build/js/acf-input.js:2597 -msgid "Select File" -msgstr "Datei auswählen" - -#: includes/fields/class-acf-field-file.php:25 -msgid "File" -msgstr "Datei" - -#: includes/fields/class-acf-field-password.php:25 -msgid "Password" -msgstr "Passwort" - -#: includes/fields/class-acf-field-select.php:392 -msgid "Specify the value returned" -msgstr "Lege den Rückgabewert fest" - -#: includes/fields/class-acf-field-select.php:461 -msgid "Use AJAX to lazy load choices?" -msgstr "Soll AJAX genutzt werden, um Auswahlen verzögert zu laden?" - -#: includes/fields/class-acf-field-checkbox.php:362 -#: includes/fields/class-acf-field-select.php:381 -msgid "Enter each default value on a new line" -msgstr "Jeden Standardwert in einer neuen Zeile eingeben" - -#: includes/fields/class-acf-field-select.php:252 includes/media.php:48 -#: assets/build/js/acf-input.js:6790 assets/build/js/acf-input.js:7266 -msgctxt "verb" -msgid "Select" -msgstr "Auswählen" - -#: includes/fields/class-acf-field-select.php:121 -msgctxt "Select2 JS load_fail" -msgid "Loading failed" -msgstr "Das Laden ist fehlgeschlagen" - -#: includes/fields/class-acf-field-select.php:120 -msgctxt "Select2 JS searching" -msgid "Searching…" -msgstr "Suchen…" - -#: includes/fields/class-acf-field-select.php:119 -msgctxt "Select2 JS load_more" -msgid "Loading more results…" -msgstr "Mehr Ergebnisse laden…" - -#: includes/fields/class-acf-field-select.php:118 -msgctxt "Select2 JS selection_too_long_n" -msgid "You can only select %d items" -msgstr "Du kannst nur %d Elemente auswählen" - -#: includes/fields/class-acf-field-select.php:117 -msgctxt "Select2 JS selection_too_long_1" -msgid "You can only select 1 item" -msgstr "Du kannst nur ein Element auswählen" - -#: includes/fields/class-acf-field-select.php:116 -msgctxt "Select2 JS input_too_long_n" -msgid "Please delete %d characters" -msgstr "Lösche bitte %d Zeichen" - -#: includes/fields/class-acf-field-select.php:115 -msgctxt "Select2 JS input_too_long_1" -msgid "Please delete 1 character" -msgstr "Lösche bitte ein Zeichen" - -#: includes/fields/class-acf-field-select.php:114 -msgctxt "Select2 JS input_too_short_n" -msgid "Please enter %d or more characters" -msgstr "Gib bitte %d oder mehr Zeichen ein" - -#: includes/fields/class-acf-field-select.php:113 -msgctxt "Select2 JS input_too_short_1" -msgid "Please enter 1 or more characters" -msgstr "Gib bitte ein oder mehr Zeichen ein" - -#: includes/fields/class-acf-field-select.php:112 -msgctxt "Select2 JS matches_0" -msgid "No matches found" -msgstr "Es wurden keine Übereinstimmungen gefunden" - -#: includes/fields/class-acf-field-select.php:111 -msgctxt "Select2 JS matches_n" -msgid "%d results are available, use up and down arrow keys to navigate." -msgstr "" -"Es sind %d Ergebnisse verfügbar, benutze die Pfeiltasten um nach oben und " -"unten zu navigieren." - -#: includes/fields/class-acf-field-select.php:110 -msgctxt "Select2 JS matches_1" -msgid "One result is available, press enter to select it." -msgstr "Ein Ergebnis ist verfügbar, Eingabetaste drücken, um es auszuwählen." - -#: includes/fields/class-acf-field-select.php:25 -#: includes/fields/class-acf-field-taxonomy.php:763 -msgctxt "noun" -msgid "Select" -msgstr "Auswahl" - -#: includes/fields/class-acf-field-user.php:73 -msgid "User ID" -msgstr "Benutzer-ID" - -#: includes/fields/class-acf-field-user.php:72 -msgid "User Object" -msgstr "Benutzer-Objekt" - -#: includes/fields/class-acf-field-user.php:71 -msgid "User Array" -msgstr "Benutzer-Array" - -#: includes/fields/class-acf-field-user.php:59 -msgid "All user roles" -msgstr "Alle Benutzerrollen" - -#: includes/fields/class-acf-field-user.php:51 -msgid "Filter by Role" -msgstr "Nach Rolle filtern" - -#: includes/fields/class-acf-field-user.php:15 includes/locations.php:101 -msgid "User" -msgstr "Benutzer" - -#: includes/fields/class-acf-field-separator.php:25 -msgid "Separator" -msgstr "Trennzeichen" - -#: includes/fields/class-acf-field-color_picker.php:75 -msgid "Select Color" -msgstr "Farbe auswählen" - -#: includes/admin/post-types/admin-post-type.php:129 -#: includes/admin/post-types/admin-taxonomy.php:131 -#: includes/fields/class-acf-field-color_picker.php:73 -#: assets/build/js/acf-internal-post-type.js:72 -#: assets/build/js/acf-internal-post-type.js:86 -msgid "Default" -msgstr "Standard" - -#: includes/admin/views/acf-post-type/advanced-settings.php:89 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:141 -#: includes/fields/class-acf-field-color_picker.php:71 -msgid "Clear" -msgstr "Leeren" - -#: includes/fields/class-acf-field-color_picker.php:25 -msgid "Color Picker" -msgstr "Farbpicker" - -#: includes/fields/class-acf-field-date_time_picker.php:88 -msgctxt "Date Time Picker JS pmTextShort" -msgid "P" -msgstr "P" - -#: includes/fields/class-acf-field-date_time_picker.php:87 -msgctxt "Date Time Picker JS pmText" -msgid "PM" -msgstr "PM" - -#: includes/fields/class-acf-field-date_time_picker.php:84 -msgctxt "Date Time Picker JS amTextShort" -msgid "A" -msgstr "A" - -#: includes/fields/class-acf-field-date_time_picker.php:83 -msgctxt "Date Time Picker JS amText" -msgid "AM" -msgstr "AM" - -#: includes/fields/class-acf-field-date_time_picker.php:81 -msgctxt "Date Time Picker JS selectText" -msgid "Select" -msgstr "Auswählen" - -#: includes/fields/class-acf-field-date_time_picker.php:80 -msgctxt "Date Time Picker JS closeText" -msgid "Done" -msgstr "Fertig" - -#: includes/fields/class-acf-field-date_time_picker.php:79 -msgctxt "Date Time Picker JS currentText" -msgid "Now" -msgstr "Jetzt" - -#: includes/fields/class-acf-field-date_time_picker.php:78 -msgctxt "Date Time Picker JS timezoneText" -msgid "Time Zone" -msgstr "Zeitzone" - -#: includes/fields/class-acf-field-date_time_picker.php:77 -msgctxt "Date Time Picker JS microsecText" -msgid "Microsecond" -msgstr "Mikrosekunde" - -#: includes/fields/class-acf-field-date_time_picker.php:76 -msgctxt "Date Time Picker JS millisecText" -msgid "Millisecond" -msgstr "Millisekunde" - -#: includes/fields/class-acf-field-date_time_picker.php:75 -msgctxt "Date Time Picker JS secondText" -msgid "Second" -msgstr "Sekunde" - -#: includes/fields/class-acf-field-date_time_picker.php:74 -msgctxt "Date Time Picker JS minuteText" -msgid "Minute" -msgstr "Minute" - -#: includes/fields/class-acf-field-date_time_picker.php:73 -msgctxt "Date Time Picker JS hourText" -msgid "Hour" -msgstr "Stunde" - -#: includes/fields/class-acf-field-date_time_picker.php:72 -msgctxt "Date Time Picker JS timeText" -msgid "Time" -msgstr "Zeit" - -#: includes/fields/class-acf-field-date_time_picker.php:71 -msgctxt "Date Time Picker JS timeOnlyTitle" -msgid "Choose Time" -msgstr "Zeit wählen" - -#: includes/fields/class-acf-field-date_time_picker.php:25 -msgid "Date Time Picker" -msgstr "Datums- und Zeitauswahl" - -#: includes/fields/class-acf-field-accordion.php:106 -msgid "Endpoint" -msgstr "Endpunkt" - -#: includes/admin/views/acf-field-group/options.php:130 -#: includes/fields/class-acf-field-tab.php:115 -msgid "Left aligned" -msgstr "Linksbündig" - -#: includes/admin/views/acf-field-group/options.php:129 -#: includes/fields/class-acf-field-tab.php:114 -msgid "Top aligned" -msgstr "Oben ausgerichtet" - -#: includes/fields/class-acf-field-tab.php:110 -msgid "Placement" -msgstr "Platzierung" - -#: includes/fields/class-acf-field-tab.php:26 -msgid "Tab" -msgstr "Tab" - -#: includes/fields/class-acf-field-url.php:162 -msgid "Value must be a valid URL" -msgstr "Der Wert muss eine gültige URL sein" - -#: includes/fields/class-acf-field-link.php:177 -msgid "Link URL" -msgstr "Link-URL" - -#: includes/fields/class-acf-field-link.php:176 -msgid "Link Array" -msgstr "Link-Array" - -#: includes/fields/class-acf-field-link.php:145 -msgid "Opens in a new window/tab" -msgstr "In einem neuen Fenster/Tab öffnen" - -#: includes/fields/class-acf-field-link.php:140 -msgid "Select Link" -msgstr "Link auswählen" - -#: includes/fields/class-acf-field-link.php:25 -msgid "Link" -msgstr "Link" - -#: includes/fields/class-acf-field-email.php:25 -msgid "Email" -msgstr "E-Mail-Adresse" - -#: includes/fields/class-acf-field-number.php:188 -#: includes/fields/class-acf-field-range.php:217 -msgid "Step Size" -msgstr "Schrittweite" - -#: includes/fields/class-acf-field-number.php:158 -#: includes/fields/class-acf-field-range.php:195 -msgid "Maximum Value" -msgstr "Maximalwert" - -#: includes/fields/class-acf-field-number.php:148 -#: includes/fields/class-acf-field-range.php:184 -msgid "Minimum Value" -msgstr "Mindestwert" - -#: includes/fields/class-acf-field-range.php:25 -msgid "Range" -msgstr "Bereich" - -#: includes/fields/class-acf-field-button-group.php:175 -#: includes/fields/class-acf-field-checkbox.php:379 -#: includes/fields/class-acf-field-radio.php:220 -#: includes/fields/class-acf-field-select.php:399 -msgid "Both (Array)" -msgstr "Beide (Array)" - -#: includes/admin/views/acf-field-group/fields.php:52 -#: includes/fields/class-acf-field-button-group.php:174 -#: includes/fields/class-acf-field-checkbox.php:378 -#: includes/fields/class-acf-field-radio.php:219 -#: includes/fields/class-acf-field-select.php:398 -msgid "Label" -msgstr "Beschriftung" - -#: includes/fields/class-acf-field-button-group.php:173 -#: includes/fields/class-acf-field-checkbox.php:377 -#: includes/fields/class-acf-field-radio.php:218 -#: includes/fields/class-acf-field-select.php:397 -msgid "Value" -msgstr "Wert" - -#: includes/fields/class-acf-field-button-group.php:222 -#: includes/fields/class-acf-field-checkbox.php:441 -#: includes/fields/class-acf-field-radio.php:292 -msgid "Vertical" -msgstr "Vertikal" - -#: includes/fields/class-acf-field-button-group.php:221 -#: includes/fields/class-acf-field-checkbox.php:442 -#: includes/fields/class-acf-field-radio.php:293 -msgid "Horizontal" -msgstr "Horizontal" - -#: includes/fields/class-acf-field-button-group.php:148 -#: includes/fields/class-acf-field-checkbox.php:352 -#: includes/fields/class-acf-field-radio.php:193 -#: includes/fields/class-acf-field-select.php:370 -msgid "red : Red" -msgstr "rot : Rot" - -#: includes/fields/class-acf-field-button-group.php:148 -#: includes/fields/class-acf-field-checkbox.php:352 -#: includes/fields/class-acf-field-radio.php:193 -#: includes/fields/class-acf-field-select.php:370 -msgid "For more control, you may specify both a value and label like this:" -msgstr "" -"Für mehr Kontrolle kannst du sowohl einen Wert als auch eine Beschriftung " -"wie folgt angeben:" - -#: includes/fields/class-acf-field-button-group.php:148 -#: includes/fields/class-acf-field-checkbox.php:352 -#: includes/fields/class-acf-field-radio.php:193 -#: includes/fields/class-acf-field-select.php:370 -msgid "Enter each choice on a new line." -msgstr "Jede Option in eine neue Zeile eintragen." - -#: includes/fields/class-acf-field-button-group.php:147 -#: includes/fields/class-acf-field-checkbox.php:351 -#: includes/fields/class-acf-field-radio.php:192 -#: includes/fields/class-acf-field-select.php:369 -msgid "Choices" -msgstr "Auswahlmöglichkeiten" - -#: includes/fields/class-acf-field-button-group.php:24 -msgid "Button Group" -msgstr "Button-Gruppe" - -#: includes/fields/class-acf-field-button-group.php:194 -#: includes/fields/class-acf-field-page_link.php:538 -#: includes/fields/class-acf-field-post_object.php:448 -#: includes/fields/class-acf-field-radio.php:238 -#: includes/fields/class-acf-field-select.php:429 -#: includes/fields/class-acf-field-taxonomy.php:772 -#: includes/fields/class-acf-field-user.php:103 -msgid "Allow Null" -msgstr "NULL-Werte zulassen?" - -#: includes/fields/class-acf-field-page_link.php:263 -#: includes/fields/class-acf-field-post_object.php:257 -#: includes/fields/class-acf-field-taxonomy.php:930 -msgid "Parent" -msgstr "Übergeordnet" - -#: includes/fields/class-acf-field-wysiwyg.php:390 -msgid "TinyMCE will not be initialized until field is clicked" -msgstr "TinyMCE wird erst initialisiert, wenn das Feld geklickt wird" - -#: includes/fields/class-acf-field-wysiwyg.php:389 -msgid "Delay Initialization" -msgstr "Soll die Initialisierung verzögert werden?" - -#: includes/fields/class-acf-field-wysiwyg.php:378 -msgid "Show Media Upload Buttons" -msgstr "Sollen Buttons zum Hochladen von Medien anzeigt werden?" - -#: includes/fields/class-acf-field-wysiwyg.php:362 -msgid "Toolbar" -msgstr "Werkzeugleiste" - -#: includes/fields/class-acf-field-wysiwyg.php:354 -msgid "Text Only" -msgstr "Nur Text" - -#: includes/fields/class-acf-field-wysiwyg.php:353 -msgid "Visual Only" -msgstr "Nur visuell" - -#: includes/fields/class-acf-field-wysiwyg.php:352 -msgid "Visual & Text" -msgstr "Visuell und Text" - -#: includes/fields/class-acf-field-wysiwyg.php:347 -msgid "Tabs" -msgstr "Tabs" - -#: includes/fields/class-acf-field-wysiwyg.php:285 -msgid "Click to initialize TinyMCE" -msgstr "Klicken, um TinyMCE zu initialisieren" - -#: includes/fields/class-acf-field-wysiwyg.php:279 -msgctxt "Name for the Text editor tab (formerly HTML)" -msgid "Text" -msgstr "Text" - -#: includes/fields/class-acf-field-wysiwyg.php:278 -msgid "Visual" -msgstr "Visuell" - -#: includes/fields/class-acf-field-text.php:189 -#: includes/fields/class-acf-field-textarea.php:236 -msgid "Value must not exceed %d characters" -msgstr "Der Wert darf %d Zeichen nicht überschreiten" - -#: includes/fields/class-acf-field-text.php:124 -#: includes/fields/class-acf-field-textarea.php:124 -msgid "Leave blank for no limit" -msgstr "Leer lassen, wenn es keine Begrenzung gibt" - -#: includes/fields/class-acf-field-text.php:123 -#: includes/fields/class-acf-field-textarea.php:123 -msgid "Character Limit" -msgstr "Zeichenbegrenzung" - -#: includes/fields/class-acf-field-email.php:158 -#: includes/fields/class-acf-field-number.php:209 -#: includes/fields/class-acf-field-password.php:105 -#: includes/fields/class-acf-field-range.php:239 -#: includes/fields/class-acf-field-text.php:164 -msgid "Appears after the input" -msgstr "Wird nach dem Eingabefeld angezeigt" - -#: includes/fields/class-acf-field-email.php:157 -#: includes/fields/class-acf-field-number.php:208 -#: includes/fields/class-acf-field-password.php:104 -#: includes/fields/class-acf-field-range.php:238 -#: includes/fields/class-acf-field-text.php:163 -msgid "Append" -msgstr "Anhängen" - -#: includes/fields/class-acf-field-email.php:148 -#: includes/fields/class-acf-field-number.php:199 -#: includes/fields/class-acf-field-password.php:95 -#: includes/fields/class-acf-field-range.php:229 -#: includes/fields/class-acf-field-text.php:154 -msgid "Appears before the input" -msgstr "Wird dem Eingabefeld vorangestellt" - -#: includes/fields/class-acf-field-email.php:147 -#: includes/fields/class-acf-field-number.php:198 -#: includes/fields/class-acf-field-password.php:94 -#: includes/fields/class-acf-field-range.php:228 -#: includes/fields/class-acf-field-text.php:153 -msgid "Prepend" -msgstr "Voranstellen" - -#: includes/fields/class-acf-field-email.php:138 -#: includes/fields/class-acf-field-number.php:179 -#: includes/fields/class-acf-field-password.php:85 -#: includes/fields/class-acf-field-text.php:144 -#: includes/fields/class-acf-field-textarea.php:156 -#: includes/fields/class-acf-field-url.php:122 -msgid "Appears within the input" -msgstr "Wird innerhalb des Eingabefeldes angezeigt" - -#: includes/fields/class-acf-field-email.php:137 -#: includes/fields/class-acf-field-number.php:178 -#: includes/fields/class-acf-field-password.php:84 -#: includes/fields/class-acf-field-text.php:143 -#: includes/fields/class-acf-field-textarea.php:155 -#: includes/fields/class-acf-field-url.php:121 -msgid "Placeholder Text" -msgstr "Platzhaltertext" - -#: includes/fields/class-acf-field-button-group.php:158 -#: includes/fields/class-acf-field-email.php:118 -#: includes/fields/class-acf-field-number.php:129 -#: includes/fields/class-acf-field-radio.php:203 -#: includes/fields/class-acf-field-range.php:165 -#: includes/fields/class-acf-field-text.php:104 -#: includes/fields/class-acf-field-textarea.php:104 -#: includes/fields/class-acf-field-url.php:102 -#: includes/fields/class-acf-field-wysiwyg.php:312 -msgid "Appears when creating a new post" -msgstr "Wird bei der Erstellung eines neuen Beitrags angezeigt" - -#: includes/fields/class-acf-field-text.php:25 -msgid "Text" -msgstr "Text" - -#: includes/fields/class-acf-field-relationship.php:794 -msgid "%1$s requires at least %2$s selection" -msgid_plural "%1$s requires at least %2$s selections" -msgstr[0] "%1$s erfordert mindestens %2$s Auswahl" -msgstr[1] "%1$s erfordert mindestens %2$s Auswahlen" - -#: includes/fields/class-acf-field-post_object.php:417 -#: includes/fields/class-acf-field-relationship.php:644 -msgid "Post ID" -msgstr "Beitrags-ID" - -#: includes/fields/class-acf-field-post_object.php:17 -#: includes/fields/class-acf-field-post_object.php:416 -#: includes/fields/class-acf-field-relationship.php:643 -msgid "Post Object" -msgstr "Beitrags-Objekt" - -#: includes/fields/class-acf-field-relationship.php:676 -msgid "Maximum Posts" -msgstr "Höchstzahl an Beiträgen" - -#: includes/fields/class-acf-field-relationship.php:666 -msgid "Minimum Posts" -msgstr "Mindestzahl an Beiträgen" - -#: includes/admin/views/acf-field-group/options.php:183 -#: includes/admin/views/acf-post-type/advanced-settings.php:29 -#: includes/fields/class-acf-field-relationship.php:701 -msgid "Featured Image" -msgstr "Beitragsbild" - -#: includes/fields/class-acf-field-relationship.php:697 -msgid "Selected elements will be displayed in each result" -msgstr "Die ausgewählten Elemente werden in jedem Ergebnis angezeigt" - -#: includes/fields/class-acf-field-relationship.php:696 -msgid "Elements" -msgstr "Elemente" - -#: includes/fields/class-acf-field-relationship.php:630 -#: includes/fields/class-acf-field-taxonomy.php:20 -#: includes/fields/class-acf-field-taxonomy.php:692 -#: includes/locations/class-acf-location-taxonomy.php:22 -msgid "Taxonomy" -msgstr "Taxonomie" - -#: includes/fields/class-acf-field-relationship.php:629 -#: includes/locations/class-acf-location-post-type.php:22 -#: includes/post-types/class-acf-post-type.php:92 -msgid "Post Type" -msgstr "Inhaltstyp" - -#: includes/fields/class-acf-field-relationship.php:623 -msgid "Filters" -msgstr "Filter" - -#: includes/fields/class-acf-field-page_link.php:499 -#: includes/fields/class-acf-field-post_object.php:404 -#: includes/fields/class-acf-field-relationship.php:616 -msgid "All taxonomies" -msgstr "Alle Taxonomien" - -#: includes/fields/class-acf-field-page_link.php:491 -#: includes/fields/class-acf-field-post_object.php:396 -#: includes/fields/class-acf-field-relationship.php:608 -msgid "Filter by Taxonomy" -msgstr "Nach Taxonomie filtern" - -#: includes/fields/class-acf-field-page_link.php:469 -#: includes/fields/class-acf-field-post_object.php:374 -#: includes/fields/class-acf-field-relationship.php:586 -msgid "All post types" -msgstr "Alle Inhaltstypen" - -#: includes/fields/class-acf-field-page_link.php:461 -#: includes/fields/class-acf-field-post_object.php:366 -#: includes/fields/class-acf-field-relationship.php:578 -msgid "Filter by Post Type" -msgstr "Nach Inhaltstyp filtern" - -#: includes/fields/class-acf-field-relationship.php:476 -msgid "Search..." -msgstr "Suche ..." - -#: includes/fields/class-acf-field-relationship.php:406 -msgid "Select taxonomy" -msgstr "Taxonomie auswählen" - -#: includes/fields/class-acf-field-relationship.php:397 -msgid "Select post type" -msgstr "Inhaltstyp auswählen" - -#: includes/fields/class-acf-field-relationship.php:61 -#: assets/build/js/acf-input.js:3930 assets/build/js/acf-input.js:4214 -msgid "No matches found" -msgstr "Es wurde keine Übereinstimmung gefunden" - -#: includes/fields/class-acf-field-relationship.php:60 -#: assets/build/js/acf-input.js:3913 assets/build/js/acf-input.js:4193 -msgid "Loading" -msgstr "Wird geladen" - -#: includes/fields/class-acf-field-relationship.php:59 -#: assets/build/js/acf-input.js:3818 assets/build/js/acf-input.js:4084 -msgid "Maximum values reached ( {max} values )" -msgstr "Die maximal möglichen Werte wurden erreicht ({max} Werte)" - -#: includes/fields/class-acf-field-relationship.php:17 -msgid "Relationship" -msgstr "Beziehung" - -#: includes/fields/class-acf-field-file.php:291 -#: includes/fields/class-acf-field-image.php:317 -msgid "Comma separated list. Leave blank for all types" -msgstr "" -"Eine durch Kommata getrennte Liste. Leer lassen, um alle Typen zu erlauben" - -#: includes/fields/class-acf-field-file.php:290 -#: includes/fields/class-acf-field-image.php:316 -msgid "Allowed File Types" -msgstr "Erlaubte Dateiformate" - -#: includes/fields/class-acf-field-file.php:278 -#: includes/fields/class-acf-field-image.php:280 -msgid "Maximum" -msgstr "Maximum" - -#: includes/fields/class-acf-field-file.php:154 -#: includes/fields/class-acf-field-file.php:270 -#: includes/fields/class-acf-field-file.php:282 -#: includes/fields/class-acf-field-image.php:271 -#: includes/fields/class-acf-field-image.php:307 -msgid "File size" -msgstr "Dateigröße" - -#: includes/fields/class-acf-field-image.php:245 -#: includes/fields/class-acf-field-image.php:281 -msgid "Restrict which images can be uploaded" -msgstr "Beschränkt, welche Bilder hochgeladen werden können" - -#: includes/fields/class-acf-field-file.php:266 -#: includes/fields/class-acf-field-image.php:244 -msgid "Minimum" -msgstr "Minimum" - -#: includes/fields/class-acf-field-file.php:235 -#: includes/fields/class-acf-field-image.php:210 -msgid "Uploaded to post" -msgstr "Wurde zum Beitrag hochgeladen" - -#: includes/fields/class-acf-field-file.php:234 -#: includes/fields/class-acf-field-image.php:209 -#: includes/locations/class-acf-location-attachment.php:73 -#: includes/locations/class-acf-location-comment.php:61 -#: includes/locations/class-acf-location-nav-menu.php:74 -#: includes/locations/class-acf-location-taxonomy.php:63 -#: includes/locations/class-acf-location-user-form.php:71 -#: includes/locations/class-acf-location-user-role.php:78 -#: includes/locations/class-acf-location-widget.php:65 -msgid "All" -msgstr "Alle" - -#: includes/fields/class-acf-field-file.php:229 -#: includes/fields/class-acf-field-image.php:204 -msgid "Limit the media library choice" -msgstr "Beschränkt die Auswahl in der Mediathek" - -#: includes/fields/class-acf-field-file.php:228 -#: includes/fields/class-acf-field-image.php:203 -msgid "Library" -msgstr "Mediathek" - -#: includes/fields/class-acf-field-image.php:336 -msgid "Preview Size" -msgstr "Vorschau-Größe" - -#: includes/fields/class-acf-field-image.php:195 -msgid "Image ID" -msgstr "Bild-ID" - -#: includes/fields/class-acf-field-image.php:194 -msgid "Image URL" -msgstr "Bild-URL" - -#: includes/fields/class-acf-field-image.php:193 -msgid "Image Array" -msgstr "Bild-Array" - -#: includes/fields/class-acf-field-button-group.php:168 -#: includes/fields/class-acf-field-checkbox.php:372 -#: includes/fields/class-acf-field-file.php:213 -#: includes/fields/class-acf-field-link.php:171 -#: includes/fields/class-acf-field-radio.php:213 -msgid "Specify the returned value on front end" -msgstr "Legt den Rückgabewert für das Frontend fest" - -#: includes/fields/class-acf-field-button-group.php:167 -#: includes/fields/class-acf-field-checkbox.php:371 -#: includes/fields/class-acf-field-file.php:212 -#: includes/fields/class-acf-field-link.php:170 -#: includes/fields/class-acf-field-radio.php:212 -#: includes/fields/class-acf-field-taxonomy.php:736 -msgid "Return Value" -msgstr "Rückgabewert" - -#: includes/fields/class-acf-field-image.php:162 -msgid "Add Image" -msgstr "Bild hinzufügen" - -#: includes/fields/class-acf-field-image.php:162 -msgid "No image selected" -msgstr "Es wurde kein Bild ausgewählt" - -#: includes/assets.php:352 includes/fields/class-acf-field-file.php:162 -#: includes/fields/class-acf-field-image.php:142 -#: includes/fields/class-acf-field-link.php:145 assets/build/js/acf.js:1563 -#: assets/build/js/acf.js:1657 -msgid "Remove" -msgstr "Entfernen" - -#: includes/admin/views/acf-field-group/field.php:76 -#: includes/fields/class-acf-field-file.php:160 -#: includes/fields/class-acf-field-image.php:140 -#: includes/fields/class-acf-field-link.php:145 -msgid "Edit" -msgstr "Bearbeiten" - -#: includes/fields/class-acf-field-image.php:70 includes/media.php:55 -#: assets/build/js/acf-input.js:6837 assets/build/js/acf-input.js:7320 -msgid "All images" -msgstr "Alle Bilder" - -#: includes/fields/class-acf-field-image.php:69 -#: assets/build/js/acf-input.js:3181 assets/build/js/acf-input.js:3399 -msgid "Update Image" -msgstr "Bild aktualisieren" - -#: includes/fields/class-acf-field-image.php:68 -#: assets/build/js/acf-input.js:3180 assets/build/js/acf-input.js:3398 -msgid "Edit Image" -msgstr "Bild bearbeiten" - -#: includes/fields/class-acf-field-image.php:67 -#: assets/build/js/acf-input.js:3156 assets/build/js/acf-input.js:3373 -msgid "Select Image" -msgstr "Bild auswählen" - -#: includes/fields/class-acf-field-image.php:25 -msgid "Image" -msgstr "Bild" - -#: includes/fields/class-acf-field-message.php:125 -msgid "Allow HTML markup to display as visible text instead of rendering" -msgstr "HTML-Markup als sichtbaren Text anzeigen, anstatt es zu rendern" - -#: includes/fields/class-acf-field-message.php:124 -msgid "Escape HTML" -msgstr "HTML maskieren" - -#: includes/fields/class-acf-field-message.php:116 -#: includes/fields/class-acf-field-textarea.php:172 -msgid "No Formatting" -msgstr "Keine Formatierung" - -#: includes/fields/class-acf-field-message.php:115 -#: includes/fields/class-acf-field-textarea.php:171 -msgid "Automatically add <br>" -msgstr "Automatisches Hinzufügen von <br>" - -#: includes/fields/class-acf-field-message.php:114 -#: includes/fields/class-acf-field-textarea.php:170 -msgid "Automatically add paragraphs" -msgstr "Absätze automatisch hinzufügen" - -#: includes/fields/class-acf-field-message.php:110 -#: includes/fields/class-acf-field-textarea.php:166 -msgid "Controls how new lines are rendered" -msgstr "Legt fest, wie Zeilenumbrüche gerendert werden" - -#: includes/fields/class-acf-field-message.php:109 -#: includes/fields/class-acf-field-textarea.php:165 -msgid "New Lines" -msgstr "Zeilenumbrüche" - -#: includes/fields/class-acf-field-date_picker.php:232 -#: includes/fields/class-acf-field-date_time_picker.php:220 -msgid "Week Starts On" -msgstr "Die Woche beginnt am" - -#: includes/fields/class-acf-field-date_picker.php:201 -msgid "The format used when saving a value" -msgstr "Das Format für das Speichern eines Wertes" - -#: includes/fields/class-acf-field-date_picker.php:200 -msgid "Save Format" -msgstr "Format speichern" - -#: includes/fields/class-acf-field-date_picker.php:67 -msgctxt "Date Picker JS weekHeader" -msgid "Wk" -msgstr "W" - -#: includes/fields/class-acf-field-date_picker.php:66 -msgctxt "Date Picker JS prevText" -msgid "Prev" -msgstr "Vorheriges" - -#: includes/fields/class-acf-field-date_picker.php:65 -msgctxt "Date Picker JS nextText" -msgid "Next" -msgstr "Nächstes" - -#: includes/fields/class-acf-field-date_picker.php:64 -msgctxt "Date Picker JS currentText" -msgid "Today" -msgstr "Heute" - -#: includes/fields/class-acf-field-date_picker.php:63 -msgctxt "Date Picker JS closeText" -msgid "Done" -msgstr "Fertig" - -#: includes/fields/class-acf-field-date_picker.php:25 -msgid "Date Picker" -msgstr "Datumspicker" - -#: includes/fields/class-acf-field-image.php:248 -#: includes/fields/class-acf-field-image.php:284 -#: includes/fields/class-acf-field-oembed.php:268 -msgid "Width" -msgstr "Breite" - -#: includes/fields/class-acf-field-oembed.php:265 -#: includes/fields/class-acf-field-oembed.php:277 -msgid "Embed Size" -msgstr "Einbettungs-Größe" - -#: includes/fields/class-acf-field-oembed.php:222 -msgid "Enter URL" -msgstr "URL eingeben" - -#: includes/fields/class-acf-field-oembed.php:25 -msgid "oEmbed" -msgstr "oEmbed" - -#: includes/fields/class-acf-field-true_false.php:184 -msgid "Text shown when inactive" -msgstr "Der Text, der im aktiven Zustand angezeigt wird" - -#: includes/fields/class-acf-field-true_false.php:183 -msgid "Off Text" -msgstr "Wenn inaktiv" - -#: includes/fields/class-acf-field-true_false.php:168 -msgid "Text shown when active" -msgstr "Der Text, der im inaktiven Zustand angezeigt wird" - -#: includes/fields/class-acf-field-true_false.php:167 -msgid "On Text" -msgstr "Wenn aktiv" - -#: includes/fields/class-acf-field-select.php:450 -#: includes/fields/class-acf-field-true_false.php:199 -msgid "Stylized UI" -msgstr "Gestylte UI" - -#: includes/fields/class-acf-field-button-group.php:157 -#: includes/fields/class-acf-field-checkbox.php:361 -#: includes/fields/class-acf-field-color_picker.php:156 -#: includes/fields/class-acf-field-email.php:117 -#: includes/fields/class-acf-field-number.php:128 -#: includes/fields/class-acf-field-radio.php:202 -#: includes/fields/class-acf-field-range.php:164 -#: includes/fields/class-acf-field-select.php:380 -#: includes/fields/class-acf-field-text.php:103 -#: includes/fields/class-acf-field-textarea.php:103 -#: includes/fields/class-acf-field-true_false.php:147 -#: includes/fields/class-acf-field-url.php:101 -#: includes/fields/class-acf-field-wysiwyg.php:311 -msgid "Default Value" -msgstr "Standardwert" - -#: includes/fields/class-acf-field-true_false.php:138 -msgid "Displays text alongside the checkbox" -msgstr "Zeigt den Text neben dem Auswahlkästchen an" - -#: includes/fields/class-acf-field-message.php:26 -#: includes/fields/class-acf-field-message.php:99 -#: includes/fields/class-acf-field-true_false.php:137 -msgid "Message" -msgstr "Mitteilung" - -#: includes/assets.php:351 includes/fields/class-acf-field-true_false.php:86 -#: includes/fields/class-acf-field-true_false.php:187 -#: assets/build/js/acf.js:1740 assets/build/js/acf.js:1857 -msgid "No" -msgstr "Nein" - -#: includes/assets.php:350 includes/fields/class-acf-field-true_false.php:83 -#: includes/fields/class-acf-field-true_false.php:171 -#: assets/build/js/acf.js:1739 assets/build/js/acf.js:1856 -msgid "Yes" -msgstr "Ja" - -#: includes/fields/class-acf-field-true_false.php:25 -msgid "True / False" -msgstr "Wahr/falsch" - -#: includes/fields/class-acf-field-group.php:474 -msgid "Row" -msgstr "Reihe" - -#: includes/fields/class-acf-field-group.php:473 -msgid "Table" -msgstr "Tabelle" - -#: includes/admin/post-types/admin-field-group.php:140 -#: includes/fields/class-acf-field-group.php:472 -msgid "Block" -msgstr "Block" - -#: includes/fields/class-acf-field-group.php:467 -msgid "Specify the style used to render the selected fields" -msgstr "Lege den Stil für die Darstellung der ausgewählten Felder fest" - -#: includes/fields.php:356 includes/fields/class-acf-field-button-group.php:215 -#: includes/fields/class-acf-field-checkbox.php:435 -#: includes/fields/class-acf-field-group.php:466 -#: includes/fields/class-acf-field-radio.php:286 -msgid "Layout" -msgstr "Layout" - -#: includes/fields/class-acf-field-group.php:450 -msgid "Sub Fields" -msgstr "Untergeordnete Felder" - -#: includes/fields/class-acf-field-group.php:25 -msgid "Group" -msgstr "Gruppe" - -#: includes/fields/class-acf-field-google-map.php:235 -msgid "Customize the map height" -msgstr "Kartenhöhe anpassen" - -#: includes/fields/class-acf-field-google-map.php:234 -#: includes/fields/class-acf-field-image.php:259 -#: includes/fields/class-acf-field-image.php:295 -#: includes/fields/class-acf-field-oembed.php:280 -msgid "Height" -msgstr "Höhe" - -#: includes/fields/class-acf-field-google-map.php:223 -msgid "Set the initial zoom level" -msgstr "Den Anfangswert für Zoom einstellen" - -#: includes/fields/class-acf-field-google-map.php:222 -msgid "Zoom" -msgstr "Zoom" - -#: includes/fields/class-acf-field-google-map.php:196 -#: includes/fields/class-acf-field-google-map.php:209 -msgid "Center the initial map" -msgstr "Ausgangskarte zentrieren" - -#: includes/fields/class-acf-field-google-map.php:195 -#: includes/fields/class-acf-field-google-map.php:208 -msgid "Center" -msgstr "Zentriert" - -#: includes/fields/class-acf-field-google-map.php:163 -msgid "Search for address..." -msgstr "Nach der Adresse suchen ..." - -#: includes/fields/class-acf-field-google-map.php:160 -msgid "Find current location" -msgstr "Aktuelle Position finden" - -#: includes/fields/class-acf-field-google-map.php:159 -msgid "Clear location" -msgstr "Position löschen" - -#: includes/fields/class-acf-field-google-map.php:158 -#: includes/fields/class-acf-field-relationship.php:628 -msgid "Search" -msgstr "Suchen" - -#: includes/fields/class-acf-field-google-map.php:63 -#: assets/build/js/acf-input.js:2840 assets/build/js/acf-input.js:3026 -msgid "Sorry, this browser does not support geolocation" -msgstr "Dieser Browser unterstützt leider keine Standortbestimmung" - -#: includes/fields/class-acf-field-google-map.php:25 -msgid "Google Map" -msgstr "Google Maps" - -#: includes/fields/class-acf-field-date_picker.php:212 -#: includes/fields/class-acf-field-date_time_picker.php:201 -#: includes/fields/class-acf-field-time_picker.php:132 -msgid "The format returned via template functions" -msgstr "Das über Template-Funktionen zurückgegebene Format" - -#: includes/fields/class-acf-field-color_picker.php:180 -#: includes/fields/class-acf-field-date_picker.php:211 -#: includes/fields/class-acf-field-date_time_picker.php:200 -#: includes/fields/class-acf-field-image.php:187 -#: includes/fields/class-acf-field-post_object.php:411 -#: includes/fields/class-acf-field-relationship.php:638 -#: includes/fields/class-acf-field-select.php:391 -#: includes/fields/class-acf-field-time_picker.php:131 -#: includes/fields/class-acf-field-user.php:66 -msgid "Return Format" -msgstr "Rückgabeformat" - -#: includes/fields/class-acf-field-date_picker.php:190 -#: includes/fields/class-acf-field-date_picker.php:221 -#: includes/fields/class-acf-field-date_time_picker.php:192 -#: includes/fields/class-acf-field-date_time_picker.php:210 -#: includes/fields/class-acf-field-time_picker.php:123 -#: includes/fields/class-acf-field-time_picker.php:139 -msgid "Custom:" -msgstr "Individuell:" - -#: includes/fields/class-acf-field-date_picker.php:182 -#: includes/fields/class-acf-field-date_time_picker.php:183 -#: includes/fields/class-acf-field-time_picker.php:116 -msgid "The format displayed when editing a post" -msgstr "Das angezeigte Format beim Bearbeiten eines Beitrags" - -#: includes/fields/class-acf-field-date_picker.php:181 -#: includes/fields/class-acf-field-date_time_picker.php:182 -#: includes/fields/class-acf-field-time_picker.php:115 -msgid "Display Format" -msgstr "Darstellungsformat" - -#: includes/fields/class-acf-field-time_picker.php:25 -msgid "Time Picker" -msgstr "Zeitpicker" - -#. translators: counts for inactive field groups -#: acf.php:503 -msgid "Inactive (%s)" -msgid_plural "Inactive (%s)" -msgstr[0] "Deaktiviert (%s)" -msgstr[1] "Deaktiviert (%s)" - -#: acf.php:462 -msgid "No Fields found in Trash" -msgstr "Es wurden keine Felder im Papierkorb gefunden" - -#: acf.php:461 -msgid "No Fields found" -msgstr "Es wurden keine Felder gefunden" - -#: acf.php:460 -msgid "Search Fields" -msgstr "Felder suchen" - -#: acf.php:459 -msgid "View Field" -msgstr "Feld anzeigen" - -#: acf.php:458 includes/admin/views/acf-field-group/fields.php:115 -msgid "New Field" -msgstr "Neues Feld" - -#: acf.php:457 -msgid "Edit Field" -msgstr "Feld bearbeiten" - -#: acf.php:456 -msgid "Add New Field" -msgstr "Neues Feld hinzufügen" - -#: acf.php:454 -msgid "Field" -msgstr "Feld" - -#: acf.php:453 includes/admin/post-types/admin-field-group.php:163 -#: includes/admin/post-types/admin-field-groups.php:119 -#: includes/admin/views/acf-field-group/fields.php:32 -msgid "Fields" -msgstr "Felder" - -#: acf.php:428 -msgid "No Field Groups found in Trash" -msgstr "Es wurden keine Feldgruppen im Papierkorb gefunden" - -#: acf.php:427 -msgid "No Field Groups found" -msgstr "Es wurden keine Feldgruppen gefunden" - -#: acf.php:426 -msgid "Search Field Groups" -msgstr "Feldgruppen durchsuchen" - -#: acf.php:425 -msgid "View Field Group" -msgstr "Feldgruppe anzeigen" - -#: acf.php:424 -msgid "New Field Group" -msgstr "Neue Feldgruppe" - -#: acf.php:423 -msgid "Edit Field Group" -msgstr "Feldgruppe bearbeiten" - -#: acf.php:422 -msgid "Add New Field Group" -msgstr "Neue Feldgruppe hinzufügen" - -#: acf.php:421 acf.php:455 -#: includes/admin/views/acf-post-type/advanced-settings.php:219 -#: includes/admin/views/acf-post-type/advanced-settings.php:221 -#: includes/post-types/class-acf-post-type.php:93 -#: includes/post-types/class-acf-taxonomy.php:92 -msgid "Add New" -msgstr "Neu hinzufügen" - -#: acf.php:420 -msgid "Field Group" -msgstr "Feldgruppe" - -#: acf.php:419 includes/admin/post-types/admin-field-groups.php:78 -#: includes/admin/post-types/admin-post-types.php:138 -#: includes/admin/post-types/admin-taxonomies.php:138 -msgid "Field Groups" -msgstr "Feldgruppen" - -#. Description of the plugin -msgid "Customize WordPress with powerful, professional and intuitive fields." -msgstr "" -"WordPress durch leistungsfähige, professionelle und zugleich intuitive " -"Felder erweitern." - -#. Plugin URI of the plugin -msgid "https://www.advancedcustomfields.com" -msgstr "https://www.advancedcustomfields.com" - -#. Plugin Name of the plugin -#: acf.php:94 -msgid "Advanced Custom Fields" -msgstr "Advanced Custom Fields" - -#: pro/acf-pro.php:27 -msgid "Advanced Custom Fields PRO" -msgstr "Advanced Custom Fields PRO" - -#: pro/blocks.php:170 -msgid "Block type name is required." -msgstr "Name des Block-Typs wird benötigt." - -#. translators: The name of the block type -#: pro/blocks.php:178 -msgid "Block type \"%s\" is already registered." -msgstr "Block-Typ „%s“ ist bereits registriert." - -#: pro/blocks.php:726 -msgid "Switch to Edit" -msgstr "Zum Bearbeiten wechseln" - -#: pro/blocks.php:727 -msgid "Switch to Preview" -msgstr "Zur Vorschau wechseln" - -#: pro/blocks.php:728 -msgid "Change content alignment" -msgstr "Ausrichtung des Inhalts ändern" - -#. translators: %s: Block type title -#: pro/blocks.php:731 -msgid "%s settings" -msgstr "%s Einstellungen" - -#: pro/blocks.php:936 -msgid "This block contains no editable fields." -msgstr "" - -#. translators: %s: an admin URL to the field group edit screen -#: pro/blocks.php:942 -msgid "" -"Assign a field group to add fields to " -"this block." -msgstr "" - -#: pro/options-page.php:78 -msgid "Options Updated" -msgstr "Optionen aktualisiert" - -#: pro/updates.php:99 -msgid "" -"To enable updates, please enter your license key on the Updates page. If you don't have a licence key, please see details & pricing." -msgstr "" - -#: pro/updates.php:159 -msgid "" -"ACF Activation Error. Your defined license key has changed, but an " -"error occurred when deactivating your old licence" -msgstr "" - -#: pro/updates.php:154 -msgid "" -"ACF Activation Error. Your defined license key has changed, but an " -"error occurred when connecting to activation server" -msgstr "" - -#: pro/updates.php:192 -msgid "ACF Activation Error" -msgstr "" - -#: pro/updates.php:187 -msgid "" -"ACF Activation Error. An error occurred when connecting to activation " -"server" -msgstr "" - -#: pro/updates.php:279 -msgid "Check Again" -msgstr "Erneut suchen" - -#: pro/updates.php:593 -msgid "ACF Activation Error. Could not connect to activation server" -msgstr "" - -#: pro/admin/admin-options-page.php:195 -msgid "Publish" -msgstr "Veröffentlichen" - -#: pro/admin/admin-options-page.php:199 -msgid "" -"No Custom Field Groups found for this options page. Create a " -"Custom Field Group" -msgstr "" -"Keine Feldgruppen für diese Options-Seite gefunden. Eine " -"Feldgruppe erstellen" - -#: pro/admin/admin-updates.php:52 -msgid "Error. Could not connect to update server" -msgstr "" -"Fehler. Es konnte keine Verbindung zum Aktualisierungsserver " -"hergestellt werden" - -#: pro/admin/admin-updates.php:212 -msgid "" -"Error. Could not authenticate update package. Please check again or " -"deactivate and reactivate your ACF PRO license." -msgstr "" -"Fehler. Das Aktualisierungspaket konnte nicht authentifiziert werden. " -"Bitte probieren Sie es nochmal oder deaktivieren und reaktivieren Sie ihre " -"ACF PRO-Lizenz." - -#: pro/admin/admin-updates.php:199 -msgid "" -"Error. Your license for this site has expired or been deactivated. " -"Please reactivate your ACF PRO license." -msgstr "" - -#: pro/fields/class-acf-field-clone.php:27, -#: pro/fields/class-acf-field-repeater.php:31 -msgid "" -"Allows you to select and display existing fields. It does not duplicate any " -"fields in the database, but loads and displays the selected fields at run-" -"time. The Clone field can either replace itself with the selected fields or " -"display the selected fields as a group of subfields." -msgstr "" - -#: pro/fields/class-acf-field-clone.php:819 -msgid "Select one or more fields you wish to clone" -msgstr "Wählen Sie ein oder mehrere Felder aus die Sie klonen möchten" - -#: pro/fields/class-acf-field-clone.php:838 -msgid "Display" -msgstr "Anzeige" - -#: pro/fields/class-acf-field-clone.php:839 -msgid "Specify the style used to render the clone field" -msgstr "Geben Sie den Stil an mit dem das Klon-Feld angezeigt werden soll" - -#: pro/fields/class-acf-field-clone.php:844 -msgid "Group (displays selected fields in a group within this field)" -msgstr "" -"Gruppe (zeigt die ausgewählten Felder in einer Gruppe innerhalb dieses " -"Feldes an)" - -#: pro/fields/class-acf-field-clone.php:845 -msgid "Seamless (replaces this field with selected fields)" -msgstr "Nahtlos (ersetzt dieses Feld mit den ausgewählten Feldern)" - -#: pro/fields/class-acf-field-clone.php:868 -msgid "Labels will be displayed as %s" -msgstr "Beschriftungen werden als %s angezeigt" - -#: pro/fields/class-acf-field-clone.php:873 -msgid "Prefix Field Labels" -msgstr "Präfix für Feldbeschriftungen" - -#: pro/fields/class-acf-field-clone.php:883 -msgid "Values will be saved as %s" -msgstr "Werte werden als %s gespeichert" - -#: pro/fields/class-acf-field-clone.php:888 -msgid "Prefix Field Names" -msgstr "Präfix für Feldnamen" - -#: pro/fields/class-acf-field-clone.php:1005 -msgid "Unknown field" -msgstr "Unbekanntes Feld" - -#: pro/fields/class-acf-field-clone.php:1042 -msgid "Unknown field group" -msgstr "Unbekannte Feldgruppe" - -#: pro/fields/class-acf-field-clone.php:1046 -msgid "All fields from %s field group" -msgstr "Alle Felder der Feldgruppe %s" - -#: pro/fields/class-acf-field-flexible-content.php:27 -msgid "" -"Allows you to define, create and manage content with total control by " -"creating layouts that contain subfields that content editors can choose from." -msgstr "" - -#: pro/fields/class-acf-field-flexible-content.php:36, -#: pro/fields/class-acf-field-repeater.php:103, -#: pro/fields/class-acf-field-repeater.php:297 -msgid "Add Row" -msgstr "Eintrag hinzufügen" - -#: pro/fields/class-acf-field-flexible-content.php:76, -#: pro/fields/class-acf-field-flexible-content.php:943, -#: pro/fields/class-acf-field-flexible-content.php:1022 -msgid "layout" -msgid_plural "layouts" -msgstr[0] "Layout" -msgstr[1] "Layouts" - -#: pro/fields/class-acf-field-flexible-content.php:77 -msgid "layouts" -msgstr "Einträge" - -#: pro/fields/class-acf-field-flexible-content.php:81, -#: pro/fields/class-acf-field-flexible-content.php:942, -#: pro/fields/class-acf-field-flexible-content.php:1021 -msgid "This field requires at least {min} {label} {identifier}" -msgstr "Dieses Feld erfordert mindestens {min} {label} {identifier}" - -#: pro/fields/class-acf-field-flexible-content.php:82 -msgid "This field has a limit of {max} {label} {identifier}" -msgstr "Dieses Feld erlaubt höchstens {max} {label} {identifier}" - -#: pro/fields/class-acf-field-flexible-content.php:85 -msgid "{available} {label} {identifier} available (max {max})" -msgstr "{available} {label} {identifier} möglich (max {max})" - -#: pro/fields/class-acf-field-flexible-content.php:86 -msgid "{required} {label} {identifier} required (min {min})" -msgstr "{required} {label} {identifier} erforderlich (min {min})" - -#: pro/fields/class-acf-field-flexible-content.php:89 -msgid "Flexible Content requires at least 1 layout" -msgstr "Flexibler Inhalt benötigt mindestens ein Layout" - -#: pro/fields/class-acf-field-flexible-content.php:282 -msgid "Click the \"%s\" button below to start creating your layout" -msgstr "Klicke \"%s\" zum Erstellen des Layouts" - -#: pro/fields/class-acf-field-flexible-content.php:423 -msgid "Add layout" -msgstr "Layout hinzufügen" - -#: pro/fields/class-acf-field-flexible-content.php:424 -msgid "Duplicate layout" -msgstr "Layout duplizieren" - -#: pro/fields/class-acf-field-flexible-content.php:425 -msgid "Remove layout" -msgstr "Layout entfernen" - -#: pro/fields/class-acf-field-flexible-content.php:426, -#: pro/fields/class-acf-repeater-table.php:382 -msgid "Click to toggle" -msgstr "Zum Auswählen anklicken" - -#: pro/fields/class-acf-field-flexible-content.php:562 -msgid "Delete Layout" -msgstr "Layout löschen" - -#: pro/fields/class-acf-field-flexible-content.php:563 -msgid "Duplicate Layout" -msgstr "Layout duplizieren" - -#: pro/fields/class-acf-field-flexible-content.php:564 -msgid "Add New Layout" -msgstr "Neues Layout hinzufügen" - -#: pro/fields/class-acf-field-flexible-content.php:564 -#, fuzzy -#| msgid "Add layout" -msgid "Add Layout" -msgstr "Layout hinzufügen" - -#: pro/fields/class-acf-field-flexible-content.php:647 -msgid "Min" -msgstr "Min" - -#: pro/fields/class-acf-field-flexible-content.php:662 -msgid "Max" -msgstr "Max" - -#: pro/fields/class-acf-field-flexible-content.php:705 -msgid "Minimum Layouts" -msgstr "Mindestzahl an Layouts" - -#: pro/fields/class-acf-field-flexible-content.php:716 -msgid "Maximum Layouts" -msgstr "Höchstzahl an Layouts" - -#: pro/fields/class-acf-field-flexible-content.php:727, -#: pro/fields/class-acf-field-repeater.php:293 -msgid "Button Label" -msgstr "Button-Beschriftung" - -#: pro/fields/class-acf-field-flexible-content.php:1710, -#: pro/fields/class-acf-field-repeater.php:918 -msgid "%s must be of type array or null." -msgstr "" - -#: pro/fields/class-acf-field-flexible-content.php:1721 -msgid "%1$s must contain at least %2$s %3$s layout." -msgid_plural "%1$s must contain at least %2$s %3$s layouts." -msgstr[0] "" -msgstr[1] "" - -#: pro/fields/class-acf-field-flexible-content.php:1737 -msgid "%1$s must contain at most %2$s %3$s layout." -msgid_plural "%1$s must contain at most %2$s %3$s layouts." -msgstr[0] "" -msgstr[1] "" - -#: pro/fields/class-acf-field-gallery.php:27 -msgid "" -"An interactive interface for managing a collection of attachments, such as " -"images." -msgstr "" - -#: pro/fields/class-acf-field-gallery.php:77 -msgid "Add Image to Gallery" -msgstr "Bild zur Galerie hinzufügen" - -#: pro/fields/class-acf-field-gallery.php:78 -msgid "Maximum selection reached" -msgstr "Maximale Auswahl erreicht" - -#: pro/fields/class-acf-field-gallery.php:324 -msgid "Length" -msgstr "Länge" - -#: pro/fields/class-acf-field-gallery.php:368 -msgid "Caption" -msgstr "Bildunterschrift" - -#: pro/fields/class-acf-field-gallery.php:380 -msgid "Alt Text" -msgstr "Alt Text" - -#: pro/fields/class-acf-field-gallery.php:504 -msgid "Add to gallery" -msgstr "Zur Galerie hinzufügen" - -#: pro/fields/class-acf-field-gallery.php:508 -msgid "Bulk actions" -msgstr "Massenverarbeitung" - -#: pro/fields/class-acf-field-gallery.php:509 -msgid "Sort by date uploaded" -msgstr "Sortiere nach Upload-Datum" - -#: pro/fields/class-acf-field-gallery.php:510 -msgid "Sort by date modified" -msgstr "Sortiere nach Änderungs-Datum" - -#: pro/fields/class-acf-field-gallery.php:511 -msgid "Sort by title" -msgstr "Sortiere nach Titel" - -#: pro/fields/class-acf-field-gallery.php:512 -msgid "Reverse current order" -msgstr "Aktuelle Sortierung umkehren" - -#: pro/fields/class-acf-field-gallery.php:524 -msgid "Close" -msgstr "Schließen" - -#: pro/fields/class-acf-field-gallery.php:615 -msgid "Minimum Selection" -msgstr "Minimale Auswahl" - -#: pro/fields/class-acf-field-gallery.php:625 -msgid "Maximum Selection" -msgstr "Maximale Auswahl" - -#: pro/fields/class-acf-field-gallery.php:707 -msgid "Allowed file types" -msgstr "Erlaubte Dateiformate" - -#: pro/fields/class-acf-field-gallery.php:727 -msgid "Insert" -msgstr "Einfügen" - -#: pro/fields/class-acf-field-gallery.php:728 -msgid "Specify where new attachments are added" -msgstr "Geben Sie an wo neue Anhänge hinzugefügt werden sollen" - -#: pro/fields/class-acf-field-gallery.php:732 -msgid "Append to the end" -msgstr "Anhängen" - -#: pro/fields/class-acf-field-gallery.php:733 -msgid "Prepend to the beginning" -msgstr "Voranstellen" - -#: pro/fields/class-acf-field-repeater.php:66, -#: pro/fields/class-acf-field-repeater.php:463 -#, fuzzy -#| msgid "Minimum rows reached ({min} rows)" -msgid "Minimum rows not reached ({min} rows)" -msgstr "Mindestzahl der Einträge hat ({min} Reihen) erreicht" - -#: pro/fields/class-acf-field-repeater.php:67 -msgid "Maximum rows reached ({max} rows)" -msgstr "Höchstzahl der Einträge hat ({max} Reihen) erreicht" - -#: pro/fields/class-acf-field-repeater.php:68 -msgid "Error loading page" -msgstr "" - -#: pro/fields/class-acf-field-repeater.php:69 -msgid "Order will be assigned upon save" -msgstr "" - -#: pro/fields/class-acf-field-repeater.php:196 -msgid "Useful for fields with a large number of rows." -msgstr "" - -#: pro/fields/class-acf-field-repeater.php:207 -msgid "Rows Per Page" -msgstr "" - -#: pro/fields/class-acf-field-repeater.php:208 -msgid "Set the number of rows to be displayed on a page." -msgstr "" - -#: pro/fields/class-acf-field-repeater.php:240 -msgid "Minimum Rows" -msgstr "Mindestzahl der Einträge" - -#: pro/fields/class-acf-field-repeater.php:251 -msgid "Maximum Rows" -msgstr "Höchstzahl der Einträge" - -#: pro/fields/class-acf-field-repeater.php:281 -msgid "Collapsed" -msgstr "Zugeklappt" - -#: pro/fields/class-acf-field-repeater.php:282 -msgid "Select a sub field to show when row is collapsed" -msgstr "" -"Wähle ein Unterfelder welches im zugeklappten Zustand angezeigt werden soll" - -#: pro/fields/class-acf-field-repeater.php:1060 -#, fuzzy -#| msgid "Invalid field group ID." -msgid "Invalid field key or name." -msgstr "Ungültige Feldgruppen-ID." - -#: pro/fields/class-acf-field-repeater.php:1069 -msgid "There was an error retrieving the field." -msgstr "" - -#: pro/fields/class-acf-repeater-table.php:369 -#, fuzzy -#| msgid "Drag to reorder" -msgid "Click to reorder" -msgstr "Ziehen zum Sortieren" - -#: pro/fields/class-acf-repeater-table.php:402 -msgid "Add row" -msgstr "Eintrag hinzufügen" - -#: pro/fields/class-acf-repeater-table.php:403 -msgid "Duplicate row" -msgstr "Zeile duplizieren" - -#: pro/fields/class-acf-repeater-table.php:404 -msgid "Remove row" -msgstr "Eintrag löschen" - -#: pro/fields/class-acf-repeater-table.php:448, -#: pro/fields/class-acf-repeater-table.php:465, -#: pro/fields/class-acf-repeater-table.php:466 -msgid "Current Page" -msgstr "" - -#: pro/fields/class-acf-repeater-table.php:456, -#: pro/fields/class-acf-repeater-table.php:457 -#, fuzzy -#| msgid "Front Page" -msgid "First Page" -msgstr "Startseite" - -#: pro/fields/class-acf-repeater-table.php:460, -#: pro/fields/class-acf-repeater-table.php:461 -#, fuzzy -#| msgid "Posts Page" -msgid "Previous Page" -msgstr "Beitrags-Seite" - -#. translators: 1: Current page, 2: Total pages. -#: pro/fields/class-acf-repeater-table.php:470 -msgctxt "paging" -msgid "%1$s of %2$s" -msgstr "" - -#: pro/fields/class-acf-repeater-table.php:477, -#: pro/fields/class-acf-repeater-table.php:478 -#, fuzzy -#| msgid "Front Page" -msgid "Next Page" -msgstr "Startseite" - -#: pro/fields/class-acf-repeater-table.php:481, -#: pro/fields/class-acf-repeater-table.php:482 -#, fuzzy -#| msgid "Posts Page" -msgid "Last Page" -msgstr "Beitrags-Seite" - -#: pro/locations/class-acf-location-block.php:71 -msgid "No block types exist" -msgstr "Keine Blocktypen vorhanden" - -#: pro/locations/class-acf-location-options-page.php:70 -msgid "No options pages exist" -msgstr "Keine Options-Seiten vorhanden" - -#: pro/admin/views/html-settings-updates.php:6 -msgid "Deactivate License" -msgstr "Lizenz deaktivieren" - -#: pro/admin/views/html-settings-updates.php:6 -msgid "Activate License" -msgstr "Lizenz aktivieren" - -#: pro/admin/views/html-settings-updates.php:16 -msgid "License Information" -msgstr "Lizenzinformation" - -#: pro/admin/views/html-settings-updates.php:34 -msgid "" -"To unlock updates, please enter your license key below. If you don't have a " -"licence key, please see details & pricing." -msgstr "" -"Um die Aktualisierungsfähigkeit freizuschalten geben Sie bitte unten Ihren " -"Lizenzschlüssel ein. Falls Sie keinen besitzen sollten informieren Sie sich " -"bitte hier hinsichtlich Preisen und aller " -"weiteren Details." - -#: pro/admin/views/html-settings-updates.php:37 -msgid "License Key" -msgstr "Lizenzschlüssel" - -#: pro/admin/views/html-settings-updates.php:22 -msgid "Your license key is defined in wp-config.php." -msgstr "" - -#: pro/admin/views/html-settings-updates.php:29 -msgid "Retry Activation" -msgstr "" - -#: pro/admin/views/html-settings-updates.php:61 -msgid "Update Information" -msgstr "Aktualisierungsinformationen" - -#: pro/admin/views/html-settings-updates.php:68 -msgid "Current Version" -msgstr "Installierte Version" - -#: pro/admin/views/html-settings-updates.php:76 -msgid "Latest Version" -msgstr "Aktuellste Version" - -#: pro/admin/views/html-settings-updates.php:84 -msgid "Update Available" -msgstr "Aktualisierung verfügbar" - -#: pro/admin/views/html-settings-updates.php:98 -msgid "Upgrade Notice" -msgstr "Hinweis zum Upgrade" - -#: pro/admin/views/html-settings-updates.php:126 -msgid "Check For Updates" -msgstr "" - -#: pro/admin/views/html-settings-updates.php:121 -#, fuzzy -#| msgid "Please enter your license key above to unlock updates" -msgid "Enter your license key to unlock updates" -msgstr "" -"Bitte geben Sie oben Ihren Lizenzschlüssel ein um die " -"Aktualisierungsfähigkeit freizuschalten" - -#: pro/admin/views/html-settings-updates.php:119 -msgid "Update Plugin" -msgstr "Plugin aktualisieren" - -#: pro/admin/views/html-settings-updates.php:117 -msgid "Please reactivate your license to unlock updates" -msgstr "" diff --git a/lang/acf-el.mo b/lang/acf-el.mo deleted file mode 100644 index 2907f13..0000000 Binary files a/lang/acf-el.mo and /dev/null differ diff --git a/lang/acf-el.po b/lang/acf-el.po deleted file mode 100644 index a3b388b..0000000 --- a/lang/acf-el.po +++ /dev/null @@ -1,5623 +0,0 @@ -# Advanced Custom Fields Translations are a combination of translate.wordpress.org contributions, -# combined with user contributed strings for the PRO version. -# Translations from translate.wordpress.org take priority over translations in this file. -# translate.wordpress.org contributions are synced at the time of each release. -# -# If you would like to contribute translations, please visit -# https://translate.wordpress.org/projects/wp-plugins/advanced-custom-fields/stable/ -# -# For additional ACF PRO strings, please submit a pull request over on the ACF GitHub repo at -# http://github.com/advancedcustomfields/acf using the .pot (and any existing .po) files in /lang/pro/ -# -# This file is distributed under the same license as Advanced Custom Fields. -msgid "" -msgstr "" -"PO-Revision-Date: 2023-11-28T09:14:32+00:00\n" -"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n" -"Language: el\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: gettext\n" -"Project-Id-Version: Advanced Custom Fields\n" - -#: includes/admin/views/global/navigation.php:221 -msgid "Renew ACF PRO License" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:17 -msgid "Renew License" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:14 -msgid "Manage License" -msgstr "" - -#: includes/admin/views/acf-field-group/options.php:102 -msgid "'High' position not supported in the Block Editor" -msgstr "" - -#: includes/admin/views/options-page-preview.php:30 -msgid "Upgrade to ACF PRO" -msgstr "" - -#. translators: %s URL to ACF options pages documentation -#: includes/admin/views/options-page-preview.php:7 -msgid "" -"ACF options pages are custom admin " -"pages for managing global settings via fields. You can create multiple pages " -"and sub-pages." -msgstr "" - -#: includes/admin/views/global/header.php:35 -msgid "Add Options Page" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:703 -msgid "In the editor used as the placeholder of the title." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:702 -msgid "Title Placeholder" -msgstr "" - -#: includes/admin/views/global/navigation.php:97 -msgid "4 Months Free" -msgstr "" - -#. translators: %s - A singular label for a post type or taxonomy. -#: includes/admin/views/global/form-top.php:56 -msgid " (Duplicated from %s)" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:298 -msgid "Select Options Pages" -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:107 -msgid "Duplicate taxonomy" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:106 -#: includes/admin/post-types/admin-taxonomy.php:106 -msgid "Create taxonomy" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:105 -msgid "Duplicate post type" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:104 -#: includes/admin/post-types/admin-taxonomy.php:108 -msgid "Create post type" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:103 -#: includes/admin/post-types/admin-taxonomy.php:105 -msgid "Link field groups" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:102 -#: includes/admin/post-types/admin-taxonomy.php:104 -msgid "Add fields" -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:121 -#: assets/build/js/acf-field-group.js:2753 -#: assets/build/js/acf-field-group.js:3236 -msgid "This Field" -msgstr "" - -#: includes/admin/admin.php:267 -msgid "ACF PRO" -msgstr "" - -#: includes/admin/admin.php:265 -msgid "Feedback" -msgstr "" - -#: includes/admin/admin.php:263 -msgid "Support" -msgstr "" - -#. translators: This text is prepended by a link to ACF's website, and appended -#. by a link to WP Engine's website. -#: includes/admin/admin.php:238 -msgid "is developed and maintained by" -msgstr "" - -#. translators: %s - either "post type" or "taxonomy" -#: includes/admin/admin-internal-post-type.php:321 -msgid "Add this %s to the location rules of the selected field groups." -msgstr "" - -#. translators: %s the URL to ACF's bidirectional relationship documentation -#: includes/acf-bidirectional-functions.php:271 -msgid "" -"Enabling the bidirectional setting allows you to update a value in the " -"target fields for each value selected for this field, adding or removing the " -"Post ID, Taxonomy ID or User ID of the item being updated. For more " -"information, please read the documentation." -msgstr "" - -#: includes/acf-bidirectional-functions.php:247 -msgid "" -"Select field(s) to store the reference back to the item being updated. You " -"may select this field. Target fields must be compatible with where this " -"field is being displayed. For example, if this field is displayed on a " -"Taxonomy, your target field should be of type Taxonomy" -msgstr "" - -#: includes/acf-bidirectional-functions.php:246 -msgid "Target Field" -msgstr "" - -#: includes/acf-bidirectional-functions.php:220 -msgid "Update a field on the selected values, referencing back to this ID" -msgstr "" - -#: includes/acf-bidirectional-functions.php:219 -msgid "Bidirectional" -msgstr "" - -#. translators: %s A field type name, such as "Relationship" -#: includes/acf-bidirectional-functions.php:192 -msgid "%s Field" -msgstr "" - -#: includes/fields/class-acf-field-page_link.php:517 -#: includes/fields/class-acf-field-post_object.php:426 -#: includes/fields/class-acf-field-select.php:407 -#: includes/fields/class-acf-field-user.php:82 -msgid "Select Multiple" -msgstr "" - -#: includes/admin/views/global/navigation.php:233 -msgid "WP Engine logo" -msgstr "" - -#: includes/admin/views/acf-taxonomy/basic-settings.php:58 -msgid "Lower case letters, underscores and dashes only, Max 32 characters." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1136 -msgid "The capability name for assigning terms of this taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1135 -msgid "Assign Terms Capability" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1119 -msgid "The capability name for deleting terms of this taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1118 -msgid "Delete Terms Capability" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1102 -msgid "The capability name for editing terms of this taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1101 -msgid "Edit Terms Capability" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1085 -msgid "The capability name for managing terms of this taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1084 -msgid "Manage Terms Capability" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:886 -msgid "" -"Sets whether posts should be excluded from search results and taxonomy " -"archive pages." -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:74 -msgid "More Tools from WP Engine" -msgstr "" - -#. translators: %s - WP Engine logo -#: includes/admin/views/acf-field-group/pro-features.php:69 -msgid "Built for those that build with WordPress, by the team at %s" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:6 -msgid "View Pricing & Upgrade" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:3 -#: includes/admin/views/options-page-preview.php:29 -msgid "Learn More" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:28 -msgid "" -"Speed up your workflow and develop better websites with features like ACF " -"Blocks and Options Pages, and sophisticated field types like Repeater, " -"Flexible Content, Clone, and Gallery." -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:2 -msgid "Unlock Advanced Features and Build Even More with ACF PRO" -msgstr "" - -#. translators: %s - singular label of post type/taxonomy, i.e. "Movie"/"Genre" -#: includes/admin/views/global/form-top.php:19 -msgid "%s fields" -msgstr "" - -#: includes/admin/post-types/admin-taxonomies.php:293 -msgid "No terms" -msgstr "" - -#: includes/admin/post-types/admin-taxonomies.php:266 -msgid "No post types" -msgstr "" - -#: includes/admin/post-types/admin-post-types.php:289 -msgid "No posts" -msgstr "" - -#: includes/admin/post-types/admin-post-types.php:263 -msgid "No taxonomies" -msgstr "" - -#: includes/admin/post-types/admin-post-types.php:208 -#: includes/admin/post-types/admin-taxonomies.php:208 -msgid "No field groups" -msgstr "" - -#: includes/admin/post-types/admin-field-groups.php:281 -msgid "No fields" -msgstr "" - -#: includes/admin/post-types/admin-field-groups.php:154 -#: includes/admin/post-types/admin-post-types.php:172 -#: includes/admin/post-types/admin-taxonomies.php:172 -msgid "No description" -msgstr "" - -#: includes/fields/class-acf-field-page_link.php:484 -#: includes/fields/class-acf-field-post_object.php:389 -#: includes/fields/class-acf-field-relationship.php:601 -msgid "Any post status" -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:284 -msgid "" -"This taxonomy key is already in use by another taxonomy registered outside " -"of ACF and cannot be used." -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:279 -msgid "" -"This taxonomy key is already in use by another taxonomy in ACF and cannot be " -"used." -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:252 -msgid "" -"The taxonomy key must only contain lower case alphanumeric characters, " -"underscores or dashes." -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:247 -msgid "The taxonomy key must be under 32 characters." -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:99 -msgid "No Taxonomies found in Trash" -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:98 -msgid "No Taxonomies found" -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:97 -msgid "Search Taxonomies" -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:96 -msgid "View Taxonomy" -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:95 -msgid "New Taxonomy" -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:94 -msgid "Edit Taxonomy" -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:93 -msgid "Add New Taxonomy" -msgstr "" - -#: includes/post-types/class-acf-post-type.php:100 -msgid "No Post Types found in Trash" -msgstr "" - -#: includes/post-types/class-acf-post-type.php:99 -msgid "No Post Types found" -msgstr "" - -#: includes/post-types/class-acf-post-type.php:98 -msgid "Search Post Types" -msgstr "" - -#: includes/post-types/class-acf-post-type.php:97 -msgid "View Post Type" -msgstr "" - -#: includes/post-types/class-acf-post-type.php:96 -msgid "New Post Type" -msgstr "" - -#: includes/post-types/class-acf-post-type.php:95 -msgid "Edit Post Type" -msgstr "" - -#: includes/post-types/class-acf-post-type.php:94 -msgid "Add New Post Type" -msgstr "" - -#: includes/post-types/class-acf-post-type.php:361 -msgid "" -"This post type key is already in use by another post type registered outside " -"of ACF and cannot be used." -msgstr "" - -#: includes/post-types/class-acf-post-type.php:356 -msgid "" -"This post type key is already in use by another post type in ACF and cannot " -"be used." -msgstr "" - -#. translators: %s a link to WordPress.org's Reserved Terms page -#: includes/post-types/class-acf-post-type.php:335 -#: includes/post-types/class-acf-taxonomy.php:258 -msgid "" -"This field must not be a WordPress reserved " -"term." -msgstr "" - -#: includes/post-types/class-acf-post-type.php:329 -msgid "" -"The post type key must only contain lower case alphanumeric characters, " -"underscores or dashes." -msgstr "" - -#: includes/post-types/class-acf-post-type.php:324 -msgid "The post type key must be under 20 characters." -msgstr "" - -#: includes/fields/class-acf-field-wysiwyg.php:27 -msgid "We do not recommend using this field in ACF Blocks." -msgstr "" - -#: includes/fields/class-acf-field-wysiwyg.php:27 -msgid "" -"Displays the WordPress WYSIWYG editor as seen in Posts and Pages allowing " -"for a rich text-editing experience that also allows for multimedia content." -msgstr "" - -#: includes/fields/class-acf-field-wysiwyg.php:25 -msgid "WYSIWYG Editor" -msgstr "" - -#: includes/fields/class-acf-field-user.php:17 -msgid "" -"Allows the selection of one or more users which can be used to create " -"relationships between data objects." -msgstr "" - -#: includes/fields/class-acf-field-url.php:26 -msgid "A text input specifically designed for storing web addresses." -msgstr "" - -#: includes/fields/class-acf-field-url.php:25 -msgid "URL" -msgstr "" - -#: includes/fields/class-acf-field-true_false.php:27 -msgid "" -"A toggle that allows you to pick a value of 1 or 0 (on or off, true or " -"false, etc). Can be presented as a stylized switch or checkbox." -msgstr "" - -#: includes/fields/class-acf-field-time_picker.php:27 -msgid "" -"An interactive UI for picking a time. The time format can be customized " -"using the field settings." -msgstr "" - -#: includes/fields/class-acf-field-textarea.php:26 -msgid "A basic textarea input for storing paragraphs of text." -msgstr "" - -#: includes/fields/class-acf-field-text.php:26 -msgid "A basic text input, useful for storing single string values." -msgstr "" - -#: includes/fields/class-acf-field-taxonomy.php:22 -msgid "" -"Allows the selection of one or more taxonomy terms based on the criteria and " -"options specified in the fields settings." -msgstr "" - -#: includes/fields/class-acf-field-tab.php:28 -msgid "" -"Allows you to group fields into tabbed sections in the edit screen. Useful " -"for keeping fields organized and structured." -msgstr "" - -#: includes/fields/class-acf-field-select.php:27 -msgid "A dropdown list with a selection of choices that you specify." -msgstr "" - -#: includes/fields/class-acf-field-relationship.php:19 -msgid "" -"A dual-column interface to select one or more posts, pages, or custom post " -"type items to create a relationship with the item that you're currently " -"editing. Includes options to search and filter." -msgstr "" - -#: includes/fields/class-acf-field-range.php:26 -msgid "" -"An input for selecting a numerical value within a specified range using a " -"range slider element." -msgstr "" - -#: includes/fields/class-acf-field-radio.php:27 -msgid "" -"A group of radio button inputs that allows the user to make a single " -"selection from values that you specify." -msgstr "" - -#: includes/fields/class-acf-field-post_object.php:19 -msgid "" -"An interactive and customizable UI for picking one or many posts, pages or " -"post type items with the option to search. " -msgstr "" - -#: includes/fields/class-acf-field-password.php:26 -msgid "An input for providing a password using a masked field." -msgstr "" - -#: includes/fields/class-acf-field-page_link.php:476 -#: includes/fields/class-acf-field-post_object.php:381 -#: includes/fields/class-acf-field-relationship.php:593 -msgid "Filter by Post Status" -msgstr "" - -#: includes/fields/class-acf-field-page_link.php:27 -msgid "" -"An interactive dropdown to select one or more posts, pages, custom post type " -"items or archive URLs, with the option to search." -msgstr "" - -#: includes/fields/class-acf-field-oembed.php:27 -msgid "" -"An interactive component for embedding videos, images, tweets, audio and " -"other content by making use of the native WordPress oEmbed functionality." -msgstr "" - -#: includes/fields/class-acf-field-number.php:26 -msgid "An input limited to numerical values." -msgstr "" - -#: includes/fields/class-acf-field-message.php:28 -msgid "" -"Used to display a message to editors alongside other fields. Useful for " -"providing additional context or instructions around your fields." -msgstr "" - -#: includes/fields/class-acf-field-link.php:27 -msgid "" -"Allows you to specify a link and its properties such as title and target " -"using the WordPress native link picker." -msgstr "" - -#: includes/fields/class-acf-field-image.php:27 -msgid "Uses the native WordPress media picker to upload, or choose images." -msgstr "" - -#: includes/fields/class-acf-field-group.php:27 -msgid "" -"Provides a way to structure fields into groups to better organize the data " -"and the edit screen." -msgstr "" - -#: includes/fields/class-acf-field-google-map.php:27 -msgid "" -"An interactive UI for selecting a location using Google Maps. Requires a " -"Google Maps API key and additional configuration to display correctly." -msgstr "" - -#: includes/fields/class-acf-field-file.php:27 -msgid "Uses the native WordPress media picker to upload, or choose files." -msgstr "" - -#: includes/fields/class-acf-field-email.php:26 -msgid "A text input specifically designed for storing email addresses." -msgstr "" - -#: includes/fields/class-acf-field-date_time_picker.php:27 -msgid "" -"An interactive UI for picking a date and time. The date return format can be " -"customized using the field settings." -msgstr "" - -#: includes/fields/class-acf-field-date_picker.php:27 -msgid "" -"An interactive UI for picking a date. The date return format can be " -"customized using the field settings." -msgstr "" - -#: includes/fields/class-acf-field-color_picker.php:27 -msgid "An interactive UI for selecting a color, or specifying a Hex value." -msgstr "" - -#: includes/fields/class-acf-field-checkbox.php:27 -msgid "" -"A group of checkbox inputs that allow the user to select one, or multiple " -"values that you specify." -msgstr "" - -#: includes/fields/class-acf-field-button-group.php:26 -msgid "" -"A group of buttons with values that you specify, users can choose one option " -"from the values provided." -msgstr "" - -#: includes/fields/class-acf-field-accordion.php:27 -msgid "" -"Allows you to group and organize custom fields into collapsable panels that " -"are shown while editing content. Useful for keeping large datasets tidy." -msgstr "" - -#: includes/fields.php:475 -msgid "" -"This provides a solution for repeating content such as slides, team members, " -"and call-to-action tiles, by acting as a parent to a set of subfields which " -"can be repeated again and again." -msgstr "" - -#: includes/fields.php:465 -msgid "" -"This provides an interactive interface for managing a collection of " -"attachments. Most settings are similar to the Image field type. Additional " -"settings allow you to specify where new attachments are added in the gallery " -"and the minimum/maximum number of attachments allowed." -msgstr "" - -#: includes/fields.php:455 -msgid "" -"This provides a simple, structured, layout-based editor. The Flexible " -"Content field allows you to define, create and manage content with total " -"control by using layouts and subfields to design the available blocks." -msgstr "" - -#: includes/fields.php:445 -msgid "" -"This allows you to select and display existing fields. It does not duplicate " -"any fields in the database, but loads and displays the selected fields at " -"run-time. The Clone field can either replace itself with the selected fields " -"or display the selected fields as a group of subfields." -msgstr "" - -#: includes/fields.php:442 -msgctxt "noun" -msgid "Clone" -msgstr "" - -#: includes/admin/views/global/navigation.php:86 includes/fields.php:357 -msgid "PRO" -msgstr "" - -#: includes/fields.php:355 includes/fields.php:412 -msgid "Advanced" -msgstr "" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:85 -msgid "JSON (newer)" -msgstr "" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:81 -msgid "Original" -msgstr "" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:55 -msgid "Invalid post ID." -msgstr "" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:47 -msgid "Invalid post type selected for review." -msgstr "" - -#: includes/admin/views/global/navigation.php:186 -msgid "More" -msgstr "" - -#: includes/admin/views/browse-fields-modal.php:86 -msgid "Tutorial" -msgstr "" - -#: includes/admin/views/browse-fields-modal.php:75 -msgid "Available with ACF PRO" -msgstr "" - -#: includes/admin/views/browse-fields-modal.php:63 -msgid "Select Field" -msgstr "" - -#. translators: %s: A link to the popular fields used in ACF -#: includes/admin/views/browse-fields-modal.php:50 -msgid "Try a different search term or browse %s" -msgstr "" - -#: includes/admin/views/browse-fields-modal.php:47 -msgid "Popular fields" -msgstr "" - -#. translators: %s: The invalid search term -#: includes/admin/views/browse-fields-modal.php:40 -msgid "No search results for '%s'" -msgstr "" - -#: includes/admin/views/browse-fields-modal.php:13 -msgid "Search fields..." -msgstr "" - -#: includes/admin/views/browse-fields-modal.php:11 -msgid "Select Field Type" -msgstr "" - -#: includes/admin/views/browse-fields-modal.php:4 -msgid "Popular" -msgstr "" - -#: includes/admin/views/acf-taxonomy/list-empty.php:7 -msgid "Add Taxonomy" -msgstr "" - -#: includes/admin/views/acf-taxonomy/list-empty.php:6 -msgid "Create custom taxonomies to classify post type content" -msgstr "" - -#: includes/admin/views/acf-taxonomy/list-empty.php:5 -msgid "Add Your First Taxonomy" -msgstr "" - -#: includes/admin/views/acf-taxonomy/basic-settings.php:122 -msgid "Hierarchical taxonomies can have descendants (like categories)." -msgstr "" - -#: includes/admin/views/acf-taxonomy/basic-settings.php:107 -msgid "Makes a taxonomy visible on the frontend and in the admin dashboard." -msgstr "" - -#: includes/admin/views/acf-taxonomy/basic-settings.php:91 -msgid "One or many post types that can be classified with this taxonomy." -msgstr "" - -#. translators: example taxonomy -#: includes/admin/views/acf-taxonomy/basic-settings.php:60 -msgid "genre" -msgstr "" - -#. translators: example taxonomy -#: includes/admin/views/acf-taxonomy/basic-settings.php:42 -msgid "Genre" -msgstr "" - -#. translators: example taxonomy -#: includes/admin/views/acf-taxonomy/basic-settings.php:25 -msgid "Genres" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1211 -msgid "" -"Optional custom controller to use instead of `WP_REST_Terms_Controller `." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1155 -msgid "Expose this post type in the REST API." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1055 -msgid "Customize the query variable name" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1028 -msgid "" -"Terms can be accessed using the non-pretty permalink, e.g., {query_var}" -"={term_slug}." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:981 -msgid "Parent-child terms in URLs for hierarchical taxonomies." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:941 -msgid "Customize the slug used in the URL" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:924 -msgid "Permalinks for this taxonomy are disabled." -msgstr "" - -#. translators: this string will be appended with the new permalink structure. -#: includes/admin/views/acf-taxonomy/advanced-settings.php:921 -msgid "" -"Rewrite the URL using the taxonomy key as the slug. Your permalink structure " -"will be" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:913 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1030 -#: includes/admin/views/acf-taxonomy/basic-settings.php:57 -msgid "Taxonomy Key" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:911 -msgid "Select the type of permalink to use for this taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:896 -msgid "Display a column for the taxonomy on post type listing screens." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:895 -msgid "Show Admin Column" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:882 -msgid "Show the taxonomy in the quick/bulk edit panel." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:881 -msgid "Quick Edit" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:868 -msgid "List the taxonomy in the Tag Cloud Widget controls." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:867 -msgid "Tag Cloud" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:824 -msgid "" -"A PHP function name to be called for sanitizing taxonomy data saved from a " -"meta box." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:823 -msgid "Meta Box Sanitization Callback" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:805 -msgid "" -"A PHP function name to be called to handle the content of a meta box on your " -"taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:804 -msgid "Register Meta Box Callback" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:763 -msgid "No Meta Box" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:762 -msgid "Custom Meta Box" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:758 -msgid "" -"Controls the meta box on the content editor screen. By default, the " -"Categories meta box is shown for hierarchical taxonomies, and the Tags meta " -"box is shown for non-hierarchical taxonomies." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:757 -msgid "Meta Box" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:746 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:767 -msgid "Categories Meta Box" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:745 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:766 -msgid "Tags Meta Box" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:704 -msgid "A link to a tag" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:703 -msgid "Describes a navigation link block variation used in the block editor." -msgstr "" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:698 -msgid "A link to a %s" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:683 -msgid "Tag Link" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:682 -msgid "" -"Assigns a title for navigation link block variation used in the block editor." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:663 -msgid "← Go to tags" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:662 -msgid "" -"Assigns the text used to link back to the main index after updating a term." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:661 -msgid "Back To Items" -msgstr "" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:657 -msgid "← Go to %s" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:642 -msgid "Tags list" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:641 -msgid "Assigns text to the table hidden heading." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:622 -msgid "Tags list navigation" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:621 -msgid "Assigns text to the table pagination hidden heading." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:597 -msgid "Filter by category" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:596 -msgid "Assigns text to the filter button in the posts lists table." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:595 -msgid "Filter By Item" -msgstr "" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:591 -msgid "Filter by %s" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:575 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:576 -msgid "" -"The description is not prominent by default; however, some themes may show " -"it." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:574 -msgid "Describes the Description field on the Edit Tags screen." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:573 -msgid "Description Field Description" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:554 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:555 -msgid "" -"Assign a parent term to create a hierarchy. The term Jazz, for example, " -"would be the parent of Bebop and Big Band" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:553 -msgid "Describes the Parent field on the Edit Tags screen." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:552 -msgid "Parent Field Description" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:538 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:539 -msgid "" -"The \"slug\" is the URL-friendly version of the name. It is usually all " -"lower case and contains only letters, numbers, and hyphens." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:537 -msgid "Describes the Slug field on the Edit Tags screen." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:536 -msgid "Slug Field Description" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:522 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:523 -msgid "The name is how it appears on your site" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:521 -msgid "Describes the Name field on the Edit Tags screen." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:520 -msgid "Name Field Description" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:507 -msgid "No tags" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:506 -msgid "" -"Assigns the text displayed in the posts and media list tables when no tags " -"or categories are available." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:505 -msgid "No Terms" -msgstr "" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:501 -msgid "No %s" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:486 -msgid "No tags found" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:485 -msgid "" -"Assigns the text displayed when clicking the 'choose from most used' text in " -"the taxonomy meta box when no tags are available, and assigns the text used " -"in the terms list table when there are no items for a taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:484 -msgid "Not Found" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:463 -msgid "Assigns text to the Title field of the Most Used tab." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:462 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:464 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:465 -msgid "Most Used" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:444 -msgid "Choose from the most used tags" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:443 -msgid "" -"Assigns the 'choose from most used' text used in the meta box when " -"JavaScript is disabled. Only used on non-hierarchical taxonomies." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:442 -msgid "Choose From Most Used" -msgstr "" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:438 -msgid "Choose from the most used %s" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:418 -msgid "Add or remove tags" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:417 -msgid "" -"Assigns the add or remove items text used in the meta box when JavaScript is " -"disabled. Only used on non-hierarchical taxonomies" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:416 -msgid "Add Or Remove Items" -msgstr "" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:412 -msgid "Add or remove %s" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:392 -msgid "Separate tags with commas" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:391 -msgid "" -"Assigns the separate item with commas text used in the taxonomy meta box. " -"Only used on non-hierarchical taxonomies." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:390 -msgid "Separate Items With Commas" -msgstr "" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:386 -msgid "Separate %s with commas" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:366 -msgid "Popular Tags" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:365 -msgid "Assigns popular items text. Only used for non-hierarchical taxonomies." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:364 -msgid "Popular Items" -msgstr "" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:361 -msgid "Popular %s" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:347 -msgid "Search Tags" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:346 -msgid "Assigns search items text." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:323 -msgid "Parent Category:" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:322 -msgid "Assigns parent item text, but with a colon (:) added to the end." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:321 -msgid "Parent Item With Colon" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:298 -msgid "Parent Category" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:297 -msgid "Assigns parent item text. Only used on hierarchical taxonomies." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:296 -msgid "Parent Item" -msgstr "" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:293 -msgid "Parent %s" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:278 -msgid "New Tag Name" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:277 -msgid "Assigns the new item name text." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:276 -msgid "New Item Name" -msgstr "" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:273 -msgid "New %s Name" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:258 -msgid "Add New Tag" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:257 -msgid "Assigns the add new item text." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:238 -msgid "Update Tag" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:237 -msgid "Assigns the update item text." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:236 -msgid "Update Item" -msgstr "" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:233 -msgid "Update %s" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:218 -msgid "View Tag" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:217 -msgid "In the admin bar to view term during editing." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:198 -msgid "Edit Tag" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:197 -msgid "At the top of the editor screen when editing a term." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:178 -msgid "All Tags" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:177 -msgid "Assigns the all items text." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:158 -msgid "Assigns the menu name text." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:157 -msgid "Menu Label" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:131 -msgid "Active taxonomies are enabled and registered with WordPress." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:115 -msgid "A descriptive summary of the taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:95 -msgid "A descriptive summary of the term." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:94 -msgid "Term Description" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:76 -msgid "Single word, no spaces. Underscores and dashes allowed." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:75 -msgid "Term Slug" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:56 -msgid "The name of the default term." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:55 -msgid "Term Name" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:41 -msgid "" -"Create a term for the taxonomy that cannot be deleted. It will not be " -"selected for posts by default." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:40 -msgid "Default Term" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:28 -msgid "" -"Whether terms in this taxonomy should be sorted in the order they are " -"provided to `wp_set_object_terms()`." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:27 -msgid "Sort Terms" -msgstr "" - -#: includes/admin/views/acf-post-type/list-empty.php:7 -msgid "Add Post Type" -msgstr "" - -#: includes/admin/views/acf-post-type/list-empty.php:6 -msgid "" -"Expand the functionality of WordPress beyond standard posts and pages with " -"custom post types." -msgstr "" - -#: includes/admin/views/acf-post-type/list-empty.php:5 -msgid "Add Your First Post Type" -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:136 -#: includes/admin/views/acf-taxonomy/basic-settings.php:135 -msgid "I know what I'm doing, show me all the options." -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:135 -#: includes/admin/views/acf-taxonomy/basic-settings.php:134 -msgid "Advanced Configuration" -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:123 -msgid "Hierarchical post types can have descendants (like pages)." -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:122 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:980 -#: includes/admin/views/acf-taxonomy/basic-settings.php:121 -msgid "Hierarchical" -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:107 -msgid "Visible on the frontend and in the admin dashboard." -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:106 -#: includes/admin/views/acf-taxonomy/basic-settings.php:106 -msgid "Public" -msgstr "" - -#. translators: example post type -#: includes/admin/views/acf-post-type/basic-settings.php:59 -msgid "movie" -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:57 -msgid "Lower case letters, underscores and dashes only, Max 20 characters." -msgstr "" - -#. translators: example post type -#: includes/admin/views/acf-post-type/basic-settings.php:41 -msgid "Movie" -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:39 -#: includes/admin/views/acf-taxonomy/basic-settings.php:40 -msgid "Singular Label" -msgstr "" - -#. translators: example post type -#: includes/admin/views/acf-post-type/basic-settings.php:24 -msgid "Movies" -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:22 -#: includes/admin/views/acf-taxonomy/basic-settings.php:23 -msgid "Plural Label" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1270 -msgid "" -"Optional custom controller to use instead of `WP_REST_Posts_Controller`." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1269 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1210 -msgid "Controller Class" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1251 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1191 -msgid "The namespace part of the REST API URL." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1250 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1190 -msgid "Namespace Route" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1232 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1172 -msgid "The base URL for the post type REST API URLs." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1231 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1171 -msgid "Base URL" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1217 -msgid "" -"Exposes this post type in the REST API. Required to use the block editor." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1216 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1154 -msgid "Show In REST API" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1195 -msgid "Customize the query variable name." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1194 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1054 -msgid "Query Variable" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1172 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1032 -msgid "No Query Variable Support" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1171 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1031 -msgid "Custom Query Variable" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1168 -msgid "" -"Items can be accessed using the non-pretty permalink, eg. {post_type}" -"={post_slug}." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1167 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1027 -msgid "Query Variable Support" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1142 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1003 -msgid "URLs for an item and items can be accessed with a query string." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1141 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1002 -msgid "Publicly Queryable" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1120 -msgid "Custom slug for the Archive URL." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1119 -msgid "Archive Slug" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1106 -msgid "" -"Has an item archive that can be customized with an archive template file in " -"your theme." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1105 -msgid "Archive" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1085 -msgid "Pagination support for the items URLs such as the archives." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1084 -msgid "Pagination" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1067 -msgid "RSS feed URL for the post type items." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1066 -msgid "Feed URL" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1048 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:961 -msgid "" -"Alters the permalink structure to add the `WP_Rewrite::$front` prefix to " -"URLs." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1047 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:960 -msgid "Front URL Prefix" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1028 -msgid "Customize the slug used in the URL." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1027 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:940 -msgid "URL Slug" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1011 -msgid "Permalinks for this post type are disabled." -msgstr "" - -#. translators: this string will be appended with the new permalink structure. -#: includes/admin/views/acf-post-type/advanced-settings.php:1010 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:923 -msgid "" -"Rewrite the URL using a custom slug defined in the input below. Your " -"permalink structure will be" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1002 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:915 -msgid "No Permalink (prevent URL rewriting)" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1001 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:914 -msgid "Custom Permalink" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1000 -#: includes/admin/views/acf-post-type/advanced-settings.php:1170 -#: includes/admin/views/acf-post-type/basic-settings.php:56 -msgid "Post Type Key" -msgstr "" - -#. translators: this string will be appended with the new permalink structure. -#: includes/admin/views/acf-post-type/advanced-settings.php:998 -#: includes/admin/views/acf-post-type/advanced-settings.php:1008 -msgid "" -"Rewrite the URL using the post type key as the slug. Your permalink " -"structure will be" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:996 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:910 -msgid "Permalink Rewrite" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:982 -msgid "Delete items by a user when that user is deleted." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:981 -msgid "Delete With User" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:967 -msgid "Allow the post type to be exported from 'Tools' > 'Export'." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:966 -msgid "Can Export" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:935 -msgid "Optionally provide a plural to be used in capabilities." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:934 -msgid "Plural Capability Name" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:916 -msgid "Choose another post type to base the capabilities for this post type." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:915 -msgid "Singular Capability Name" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:901 -msgid "" -"By default the capabilities of the post type will inherit the 'Post' " -"capability names, eg. edit_post, delete_posts. Enable to use post type " -"specific capabilities, eg. edit_{singular}, delete_{plural}." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:900 -msgid "Rename Capabilities" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:885 -msgid "Exclude From Search" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:872 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:854 -msgid "" -"Allow items to be added to menus in the 'Appearance' > 'Menus' screen. Must " -"be turned on in 'Screen options'." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:871 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:853 -msgid "Appearance Menus Support" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:853 -msgid "Appears as an item in the 'New' menu in the admin bar." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:852 -msgid "Show In Admin Bar" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:821 -msgid "" -"A PHP function name to be called when setting up the meta boxes for the edit " -"screen." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:820 -msgid "Custom Meta Box Callback" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:800 -msgid "Menu Icon" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:782 -msgid "The position in the sidebar menu in the admin dashboard." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:781 -msgid "Menu Position" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:763 -msgid "" -"By default the post type will get a new top level item in the admin menu. If " -"an existing top level item is supplied here, the post type will be added as " -"a submenu item under it." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:762 -msgid "Admin Menu Parent" -msgstr "" - -#. translators: %s = "dashicon class name", link to the WordPress dashicon -#. documentation. -#: includes/admin/views/acf-post-type/advanced-settings.php:750 -msgid "" -"The icon used for the post type menu item in the admin dashboard. Can be a " -"URL or %s to use for the icon." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:745 -msgid "Dashicon class name" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:734 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:734 -msgid "Admin editor navigation in the sidebar menu." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:733 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:733 -msgid "Show In Admin Menu" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:720 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:719 -msgid "Items can be edited and managed in the admin dashboard." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:719 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:718 -msgid "Show In UI" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:689 -msgid "A link to a post." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:688 -msgid "Description for a navigation link block variation." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:687 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:702 -msgid "Item Link Description" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:683 -msgid "A link to a %s." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:668 -msgid "Post Link" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:667 -msgid "Title for a navigation link block variation." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:666 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:681 -msgid "Item Link" -msgstr "" - -#. translators: %s Singular form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:663 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:678 -msgid "%s Link" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:648 -msgid "Post updated." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:647 -msgid "In the editor notice after an item is updated." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:646 -msgid "Item Updated" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:643 -msgid "%s updated." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:628 -msgid "Post scheduled." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:627 -msgid "In the editor notice after scheduling an item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:626 -msgid "Item Scheduled" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:623 -msgid "%s scheduled." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:608 -msgid "Post reverted to draft." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:607 -msgid "In the editor notice after reverting an item to draft." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:606 -msgid "Item Reverted To Draft" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:603 -msgid "%s reverted to draft." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:588 -msgid "Post published privately." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:587 -msgid "In the editor notice after publishing a private item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:586 -msgid "Item Published Privately" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:583 -msgid "%s published privately." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:568 -msgid "Post published." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:567 -msgid "In the editor notice after publishing an item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:566 -msgid "Item Published" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:563 -msgid "%s published." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:548 -msgid "Posts list" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:547 -msgid "Used by screen readers for the items list on the post type list screen." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:546 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:640 -msgid "Items List" -msgstr "" - -#. translators: %s Plural form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:543 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:637 -msgid "%s list" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:528 -msgid "Posts list navigation" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:527 -msgid "" -"Used by screen readers for the filter list pagination on the post type list " -"screen." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:526 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:620 -msgid "Items List Navigation" -msgstr "" - -#. translators: %s Plural form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:523 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:617 -msgid "%s list navigation" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:507 -msgid "Filter posts by date" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:506 -msgid "" -"Used by screen readers for the filter by date heading on the post type list " -"screen." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:505 -msgid "Filter Items By Date" -msgstr "" - -#. translators: %s Plural form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:501 -msgid "Filter %s by date" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:486 -msgid "Filter posts list" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:485 -msgid "" -"Used by screen readers for the filter links heading on the post type list " -"screen." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:484 -msgid "Filter Items List" -msgstr "" - -#. translators: %s Plural form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:480 -msgid "Filter %s list" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:464 -msgid "In the media modal showing all media uploaded to this item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:463 -msgid "Uploaded To This Item" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:459 -msgid "Uploaded to this %s" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:444 -msgid "Insert into post" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:443 -msgid "As the button label when adding media to content." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:442 -msgid "Insert Into Media Button" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:438 -msgid "Insert into %s" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:423 -msgid "Use as featured image" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:422 -msgid "" -"As the button label for selecting to use an image as the featured image." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:421 -msgid "Use Featured Image" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:408 -msgid "Remove featured image" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:407 -msgid "As the button label when removing the featured image." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:406 -msgid "Remove Featured Image" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:393 -msgid "Set featured image" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:392 -msgid "As the button label when setting the featured image." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:391 -msgid "Set Featured Image" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:378 -msgid "Featured image" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:377 -msgid "In the editor used for the title of the featured image meta box." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:376 -msgid "Featured Image Meta Box" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:363 -msgid "Post Attributes" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:362 -msgid "In the editor used for the title of the post attributes meta box." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:361 -msgid "Attributes Meta Box" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:358 -msgid "%s Attributes" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:343 -msgid "Post Archives" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:342 -msgid "" -"Adds 'Post Type Archive' items with this label to the list of posts shown " -"when adding items to an existing menu in a CPT with archives enabled. Only " -"appears when editing menus in 'Live Preview' mode and a custom archive slug " -"has been provided." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:341 -msgid "Archives Nav Menu" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:338 -msgid "%s Archives" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:323 -msgid "No posts found in Trash" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:322 -msgid "" -"At the top of the post type list screen when there are no posts in the trash." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:321 -msgid "No Items Found in Trash" -msgstr "" - -#. translators: %s Plural form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:317 -msgid "No %s found in Trash" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:302 -msgid "No posts found" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:301 -msgid "" -"At the top of the post type list screen when there are no posts to display." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:300 -msgid "No Items Found" -msgstr "" - -#. translators: %s Plural form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:296 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:480 -msgid "No %s found" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:281 -msgid "Search Posts" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:280 -msgid "At the top of the items screen when searching for an item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:279 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:345 -msgid "Search Items" -msgstr "" - -#. translators: %s Singular form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:276 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:342 -msgid "Search %s" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:261 -msgid "Parent Page:" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:260 -msgid "For hierarchical types in the post type list screen." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:259 -msgid "Parent Item Prefix" -msgstr "" - -#. translators: %s Singular form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:256 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:318 -msgid "Parent %s:" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:241 -msgid "New Post" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:239 -msgid "New Item" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:236 -msgid "New %s" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:206 -msgid "Add New Post" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:205 -msgid "At the top of the editor screen when adding a new item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:204 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:256 -msgid "Add New Item" -msgstr "" - -#. translators: %s Singular form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:201 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:253 -msgid "Add New %s" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:186 -msgid "View Posts" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:185 -msgid "" -"Appears in the admin bar in the 'All Posts' view, provided the post type " -"supports archives and the home page is not an archive of that post type." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:184 -msgid "View Items" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:166 -msgid "View Post" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:165 -msgid "In the admin bar to view item when editing it." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:164 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:216 -msgid "View Item" -msgstr "" - -#. translators: %s Singular form of post type name -#. translators: %s Plural form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:161 -#: includes/admin/views/acf-post-type/advanced-settings.php:181 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:213 -msgid "View %s" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:146 -msgid "Edit Post" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:145 -msgid "At the top of the editor screen when editing an item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:144 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:196 -msgid "Edit Item" -msgstr "" - -#. translators: %s Singular form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:141 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:193 -msgid "Edit %s" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:126 -msgid "All Posts" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:125 -#: includes/admin/views/acf-post-type/advanced-settings.php:220 -#: includes/admin/views/acf-post-type/advanced-settings.php:240 -msgid "In the post type submenu in the admin dashboard." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:124 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:176 -msgid "All Items" -msgstr "" - -#. translators: %s Plural form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:121 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:173 -msgid "All %s" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:105 -msgid "Admin menu name for the post type." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:104 -msgid "Menu Name" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:90 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:142 -msgid "Regenerate all labels using the Singular and Plural labels" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:88 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:140 -msgid "Regenerate" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:79 -msgid "Active post types are enabled and registered with WordPress." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:63 -msgid "A descriptive summary of the post type." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:48 -msgid "Add Custom" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:42 -msgid "Enable various features in the content editor." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:31 -msgid "Post Formats" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:25 -msgid "Editor" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:24 -msgid "Trackbacks" -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:87 -msgid "Select existing taxonomies to classify items of the post type." -msgstr "" - -#: includes/admin/views/acf-field-group/field.php:145 -msgid "Browse Fields" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:292 -msgid "Nothing to import" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:287 -msgid ". The Custom Post Type UI plugin can be deactivated." -msgstr "" - -#. translators: %d - number of items imported from CPTUI -#: includes/admin/tools/class-acf-admin-tool-import.php:278 -msgid "Imported %d item from Custom Post Type UI -" -msgid_plural "Imported %d items from Custom Post Type UI -" -msgstr[0] "" -msgstr[1] "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:262 -msgid "Failed to import taxonomies." -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:244 -msgid "Failed to import post types." -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:233 -msgid "Nothing from Custom Post Type UI plugin selected for import." -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:209 -msgid "Imported 1 item" -msgid_plural "Imported %s items" -msgstr[0] "" -msgstr[1] "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:122 -msgid "" -"Importing a Post Type or Taxonomy with the same key as one that already " -"exists will overwrite the settings for the existing Post Type or Taxonomy " -"with those of the import." -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:111 -#: includes/admin/tools/class-acf-admin-tool-import.php:127 -msgid "Import from Custom Post Type UI" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:412 -msgid "" -"The following code can be used to register a local version of the selected " -"items. Storing field groups, post types, or taxonomies locally can provide " -"many benefits such as faster load times, version control & dynamic fields/" -"settings. Simply copy and paste the following code to your theme's functions." -"php file or include it within an external file, then deactivate or delete " -"the items from the ACF admin." -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:411 -msgid "Export - Generate PHP" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:384 -msgid "Export" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:276 -msgid "Select Taxonomies" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:254 -msgid "Select Post Types" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:167 -msgid "Exported 1 item." -msgid_plural "Exported %s items." -msgstr[0] "" -msgstr[1] "" - -#: includes/admin/post-types/admin-taxonomy.php:129 -#: assets/build/js/acf-internal-post-type.js:182 -#: assets/build/js/acf-internal-post-type.js:256 -msgid "Category" -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:127 -#: assets/build/js/acf-internal-post-type.js:179 -#: assets/build/js/acf-internal-post-type.js:253 -msgid "Tag" -msgstr "" - -#. translators: %s taxonomy name -#: includes/admin/post-types/admin-taxonomy.php:82 -msgid "%s taxonomy created" -msgstr "" - -#. translators: %s taxonomy name -#: includes/admin/post-types/admin-taxonomy.php:76 -msgid "%s taxonomy updated" -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:56 -msgid "Taxonomy draft updated." -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:55 -msgid "Taxonomy scheduled for." -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:54 -msgid "Taxonomy submitted." -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:53 -msgid "Taxonomy saved." -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:49 -msgid "Taxonomy deleted." -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:48 -msgid "Taxonomy updated." -msgstr "" - -#: includes/admin/post-types/admin-taxonomies.php:377 -#: includes/admin/post-types/admin-taxonomy.php:157 -msgid "" -"This taxonomy could not be registered because its key is in use by another " -"taxonomy registered by another plugin or theme." -msgstr "" - -#. translators: %s number of taxonomies synchronized -#: includes/admin/post-types/admin-taxonomies.php:359 -msgid "Taxonomy synchronized." -msgid_plural "%s taxonomies synchronized." -msgstr[0] "" -msgstr[1] "" - -#. translators: %s number of taxonomies duplicated -#: includes/admin/post-types/admin-taxonomies.php:352 -msgid "Taxonomy duplicated." -msgid_plural "%s taxonomies duplicated." -msgstr[0] "" -msgstr[1] "" - -#. translators: %s number of taxonomies deactivated -#: includes/admin/post-types/admin-taxonomies.php:345 -msgid "Taxonomy deactivated." -msgid_plural "%s taxonomies deactivated." -msgstr[0] "" -msgstr[1] "" - -#. translators: %s number of taxonomies activated -#: includes/admin/post-types/admin-taxonomies.php:338 -msgid "Taxonomy activated." -msgid_plural "%s taxonomies activated." -msgstr[0] "" -msgstr[1] "" - -#: includes/admin/post-types/admin-taxonomies.php:139 -msgid "Terms" -msgstr "" - -#. translators: %s number of post types synchronized -#: includes/admin/post-types/admin-post-types.php:352 -msgid "Post type synchronized." -msgid_plural "%s post types synchronized." -msgstr[0] "" -msgstr[1] "" - -#. translators: %s number of post types duplicated -#: includes/admin/post-types/admin-post-types.php:345 -msgid "Post type duplicated." -msgid_plural "%s post types duplicated." -msgstr[0] "" -msgstr[1] "" - -#. translators: %s number of post types deactivated -#: includes/admin/post-types/admin-post-types.php:338 -msgid "Post type deactivated." -msgid_plural "%s post types deactivated." -msgstr[0] "" -msgstr[1] "" - -#. translators: %s number of post types activated -#: includes/admin/post-types/admin-post-types.php:331 -msgid "Post type activated." -msgid_plural "%s post types activated." -msgstr[0] "" -msgstr[1] "" - -#: includes/admin/post-types/admin-post-types.php:112 -#: includes/admin/post-types/admin-taxonomies.php:137 -#: includes/admin/tools/class-acf-admin-tool-import.php:82 -#: includes/admin/views/acf-taxonomy/basic-settings.php:82 -#: includes/post-types/class-acf-post-type.php:91 -msgid "Post Types" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:162 -#: includes/admin/post-types/admin-taxonomy.php:164 -msgid "Advanced Settings" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:161 -#: includes/admin/post-types/admin-taxonomy.php:163 -msgid "Basic Settings" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:155 -#: includes/admin/post-types/admin-post-types.php:370 -msgid "" -"This post type could not be registered because its key is in use by another " -"post type registered by another plugin or theme." -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:128 -#: assets/build/js/acf-internal-post-type.js:176 -#: assets/build/js/acf-internal-post-type.js:250 -msgid "Pages" -msgstr "" - -#: includes/admin/admin-internal-post-type.php:355 -msgid "Link Existing Field Groups" -msgstr "" - -#. translators: %s post type name -#: includes/admin/post-types/admin-post-type.php:80 -msgid "%s post type created" -msgstr "" - -#. translators: %s taxonomy name -#: includes/admin/post-types/admin-taxonomy.php:78 -msgid "Add fields to %s" -msgstr "" - -#. translators: %s post type name -#: includes/admin/post-types/admin-post-type.php:76 -msgid "%s post type updated" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:56 -msgid "Post type draft updated." -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:55 -msgid "Post type scheduled for." -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:54 -msgid "Post type submitted." -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:53 -msgid "Post type saved." -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:50 -msgid "Post type updated." -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:49 -msgid "Post type deleted." -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:120 -#: assets/build/js/acf-field-group.js:1146 -#: assets/build/js/acf-field-group.js:1366 -msgid "Type to search..." -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:105 -#: assets/build/js/acf-field-group.js:1172 -#: assets/build/js/acf-field-group.js:2319 -#: assets/build/js/acf-field-group.js:1414 -#: assets/build/js/acf-field-group.js:2727 -msgid "PRO Only" -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:97 -#: assets/build/js/acf-internal-post-type.js:308 -#: assets/build/js/acf-internal-post-type.js:417 -msgid "Field groups linked successfully." -msgstr "" - -#. translators: %s - URL to ACF tools page. -#: includes/admin/admin.php:195 -msgid "" -"Import Post Types and Taxonomies registered with Custom Post Type UI and " -"manage them with ACF. Get Started." -msgstr "" - -#: includes/admin/admin.php:48 includes/admin/admin.php:267 -msgid "ACF" -msgstr "" - -#: includes/admin/admin-internal-post-type.php:322 -msgid "taxonomy" -msgstr "" - -#: includes/admin/admin-internal-post-type.php:322 -msgid "post type" -msgstr "" - -#: includes/admin/admin-internal-post-type.php:346 -msgid "Done" -msgstr "" - -#: includes/admin/admin-internal-post-type.php:332 -msgid "Field Group(s)" -msgstr "" - -#: includes/admin/admin-internal-post-type.php:331 -msgid "Select one or many field groups..." -msgstr "" - -#: includes/admin/admin-internal-post-type.php:330 -msgid "Please select the field groups to link." -msgstr "" - -#: includes/admin/admin-internal-post-type.php:288 -msgid "Field group linked successfully." -msgid_plural "Field groups linked successfully." -msgstr[0] "" -msgstr[1] "" - -#: includes/admin/admin-internal-post-type-list.php:261 -#: includes/admin/post-types/admin-post-types.php:371 -#: includes/admin/post-types/admin-taxonomies.php:378 -msgctxt "post status" -msgid "Registration Failed" -msgstr "" - -#: includes/admin/admin-internal-post-type-list.php:260 -msgid "" -"This item could not be registered because its key is in use by another item " -"registered by another plugin or theme." -msgstr "" - -#: includes/acf-internal-post-type-functions.php:482 -#: includes/acf-internal-post-type-functions.php:511 -msgid "REST API" -msgstr "" - -#: includes/acf-internal-post-type-functions.php:481 -#: includes/acf-internal-post-type-functions.php:510 -#: includes/acf-internal-post-type-functions.php:537 -msgid "Permissions" -msgstr "" - -#: includes/acf-internal-post-type-functions.php:480 -#: includes/acf-internal-post-type-functions.php:509 -msgid "URLs" -msgstr "" - -#: includes/acf-internal-post-type-functions.php:479 -#: includes/acf-internal-post-type-functions.php:508 -#: includes/acf-internal-post-type-functions.php:535 -msgid "Visibility" -msgstr "" - -#: includes/acf-internal-post-type-functions.php:478 -#: includes/acf-internal-post-type-functions.php:507 -#: includes/acf-internal-post-type-functions.php:536 -msgid "Labels" -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:269 -msgid "Field Settings Tabs" -msgstr "" - -#. Author URI of the plugin -msgid "" -"https://wpengine.com/?utm_source=wordpress." -"org&utm_medium=referral&utm_campaign=plugin_directory&utm_content=advanced_custom_fields" -msgstr "" -"https://wpengine.com/?utm_source=wordpress." -"org&utm_medium=referral&utm_campaign=plugin_directory&utm_content=advanced_custom_fields" - -#: includes/api/api-template.php:867 -msgid "[ACF shortcode value disabled for preview]" -msgstr "[η προεπισκόπηση σύντομου κώδικα απενεργοποιήθηκε]" - -#: includes/admin/admin-internal-post-type.php:298 -#: includes/admin/post-types/admin-field-group.php:571 -msgid "Close Modal" -msgstr "Κλείσιμο αναδυομένου" - -#: includes/admin/post-types/admin-field-group.php:96 -#: assets/build/js/acf-field-group.js:1670 -#: assets/build/js/acf-field-group.js:1993 -msgid "Field moved to other group" -msgstr "Το πεδίο μετακινήθηκε σε άλλη ομάδα" - -#: includes/admin/post-types/admin-field-group.php:95 -#: assets/build/js/acf.js:1437 assets/build/js/acf.js:1517 -msgid "Close modal" -msgstr "Κλείσιμο αναδυομένου" - -#: includes/fields/class-acf-field-tab.php:125 -msgid "Start a new group of tabs at this tab." -msgstr "Ξεκινήστε μια νέα ομάδα από καρτέλες σε αυτή την καρτέλα." - -#: includes/fields/class-acf-field-tab.php:124 -msgid "New Tab Group" -msgstr "Νέα Ομάδα Καρτελών" - -#: includes/fields/class-acf-field-select.php:451 -#: includes/fields/class-acf-field-true_false.php:200 -msgid "Use a stylized checkbox using select2" -msgstr "Παρουσιάστε τα checkbox στυλιζαρισμένα χρησιμοποιώντας το select2" - -#: includes/fields/class-acf-field-radio.php:260 -msgid "Save Other Choice" -msgstr "Αποθήκευση Άλλης Επιλογής" - -#: includes/fields/class-acf-field-radio.php:249 -msgid "Allow Other Choice" -msgstr "Να Επιτρέπονται Άλλες Επιλογές" - -#: includes/fields/class-acf-field-checkbox.php:450 -msgid "Add Toggle All" -msgstr "Προσθήκη Εναλλαγής Όλων" - -#: includes/fields/class-acf-field-checkbox.php:409 -msgid "Save Custom Values" -msgstr "Αποθήκευση Προσαρμοσμένων Τιμών" - -#: includes/fields/class-acf-field-checkbox.php:398 -msgid "Allow Custom Values" -msgstr "Να Επιτρέπονται Προσαρμοσμένες Τιμές" - -#: includes/fields/class-acf-field-checkbox.php:148 -msgid "Checkbox custom values cannot be empty. Uncheck any empty values." -msgstr "" -"Οι προσαρμοσμένες τιμές των checkbox δεν επιτρέπεται να είναι κενές. " -"Αποεπιλέξετε τις κενές τιμές." - -#: includes/admin/views/global/navigation.php:248 -msgid "Updates" -msgstr "Ανανεώσεις" - -#: includes/admin/views/global/navigation.php:176 -msgid "Advanced Custom Fields logo" -msgstr "Λογότυπος Advanced Custom Fields" - -#: includes/admin/views/global/form-top.php:89 -msgid "Save Changes" -msgstr "Αποθήκευση Αλλαγών" - -#: includes/admin/views/global/form-top.php:76 -msgid "Field Group Title" -msgstr "Τίτλος Ομάδας Πεδίων" - -#: includes/admin/views/acf-post-type/advanced-settings.php:704 -#: includes/admin/views/global/form-top.php:3 -msgid "Add title" -msgstr "Προσθήκη τίτλου" - -#. translators: %s url to getting started guide -#: includes/admin/views/acf-field-group/list-empty.php:20 -#: includes/admin/views/acf-post-type/list-empty.php:12 -#: includes/admin/views/acf-taxonomy/list-empty.php:12 -#: includes/admin/views/options-page-preview.php:13 -msgid "" -"New to ACF? Take a look at our getting " -"started guide." -msgstr "" -"Είστε καινούριοι στο ACF; Κάνετε μια περιήγηση στον οδηγό εκκίνησης για νέους." - -#: includes/admin/views/acf-field-group/list-empty.php:15 -msgid "Add Field Group" -msgstr "Προσθήκη Ομάδας Πεδίων" - -#. translators: %s url to creating a field group page -#: includes/admin/views/acf-field-group/list-empty.php:10 -msgid "" -"ACF uses field groups to group custom " -"fields together, and then attach those fields to edit screens." -msgstr "" -"To ACF χρησιμοποιεί ομάδες πεδίων για " -"να ομαδοποιήσει προσαρμοσμένα πεδία και να τα παρουσιάσει στις οθόνες " -"επεξεργασίας." - -#: includes/admin/views/acf-field-group/list-empty.php:5 -msgid "Add Your First Field Group" -msgstr "Προσθέστε την Πρώτη σας Ομάδα Πεδίων" - -#: includes/admin/admin-options-pages-preview.php:28 -#: includes/admin/views/acf-field-group/pro-features.php:54 -#: includes/admin/views/global/navigation.php:86 -#: includes/admin/views/global/navigation.php:250 -msgid "Options Pages" -msgstr "Σελίδες Ρυθμίσεων" - -#: includes/admin/views/acf-field-group/pro-features.php:50 -msgid "ACF Blocks" -msgstr "ACF Blocks" - -#: includes/admin/views/acf-field-group/pro-features.php:58 -msgid "Gallery Field" -msgstr "Πεδίο Gallery" - -#: includes/admin/views/acf-field-group/pro-features.php:38 -msgid "Flexible Content Field" -msgstr "Πεδίο Flexible Content" - -#: includes/admin/views/acf-field-group/pro-features.php:42 -msgid "Repeater Field" -msgstr "Πεδίο Repeater" - -#: includes/admin/views/global/navigation.php:212 -msgid "Unlock Extra Features with ACF PRO" -msgstr "Ξεκλειδώστε Επιπλέον Δυνατότητες με το ACF PRO" - -#: includes/admin/views/acf-field-group/options.php:267 -msgid "Delete Field Group" -msgstr "Διαγραφή Ομάδας Πεδίων" - -#. translators: 1: Post creation date 2: Post creation time -#: includes/admin/views/acf-field-group/options.php:261 -msgid "Created on %1$s at %2$s" -msgstr "Δημιουργήθηκε την %1$s στις %2$s" - -#: includes/acf-field-group-functions.php:497 -msgid "Group Settings" -msgstr "Ρυθμίσεις Ομάδας" - -#: includes/acf-field-group-functions.php:495 -msgid "Location Rules" -msgstr "Κανόνες Τοποθεσίας" - -#. translators: %s url to field types list -#: includes/admin/views/acf-field-group/fields.php:72 -msgid "" -"Choose from over 30 field types. Learn " -"more." -msgstr "" -"Επιλέξτε από περισσότερους από 30 τύπους πεδίων. Μάθετε περισσότερα." - -#: includes/admin/views/acf-field-group/fields.php:65 -msgid "" -"Get started creating new custom fields for your posts, pages, custom post " -"types and other WordPress content." -msgstr "" -"Ξεκινήστε να δημιουργείτε νέα προσαρμοσμένα πεδία για τα άρθρα, τις σελίδες, " -"τα custom post types και γενικότερα το περιεχόμενο του WordPress." - -#: includes/admin/views/acf-field-group/fields.php:64 -msgid "Add Your First Field" -msgstr "Προσθέστε το Πρώτο σας Πεδίο" - -#. translators: A symbol (or text, if not available in your locale) meaning -#. "Order Number", in terms of positional placement. -#: includes/admin/views/acf-field-group/fields.php:43 -msgid "#" -msgstr "#" - -#: includes/admin/views/acf-field-group/fields.php:33 -#: includes/admin/views/acf-field-group/fields.php:67 -#: includes/admin/views/acf-field-group/fields.php:103 -#: includes/admin/views/global/form-top.php:85 -msgid "Add Field" -msgstr "Προσθήκη Πεδίου" - -#: includes/acf-field-group-functions.php:496 includes/fields.php:410 -msgid "Presentation" -msgstr "Παρουσίαση" - -#: includes/fields.php:409 -msgid "Validation" -msgstr "Επικύρωση" - -#: includes/acf-internal-post-type-functions.php:477 -#: includes/acf-internal-post-type-functions.php:506 includes/fields.php:408 -msgid "General" -msgstr "Γενικά" - -#: includes/admin/tools/class-acf-admin-tool-import.php:70 -msgid "Import JSON" -msgstr "Εισαγωγή JSON" - -#: includes/admin/tools/class-acf-admin-tool-export.php:392 -msgid "Export As JSON" -msgstr "Εξαγωγή ως JSON" - -#. translators: %s number of field groups deactivated -#: includes/admin/post-types/admin-field-groups.php:367 -msgid "Field group deactivated." -msgid_plural "%s field groups deactivated." -msgstr[0] "Η ομάδα πεδίων έχει απενεργοποιηθεί." -msgstr[1] "%s ομάδες πεδίων έχουν απενεργοποιηθεί." - -#. translators: %s number of field groups activated -#: includes/admin/post-types/admin-field-groups.php:360 -msgid "Field group activated." -msgid_plural "%s field groups activated." -msgstr[0] "Η ομάδα πεδίων ενεργοποιήθηκε." -msgstr[1] "%s ομάδες πεδίων ενεργοποιήθηκαν." - -#: includes/admin/admin-internal-post-type-list.php:452 -#: includes/admin/admin-internal-post-type-list.php:478 -msgid "Deactivate" -msgstr "Απενεργοποίηση" - -#: includes/admin/admin-internal-post-type-list.php:452 -msgid "Deactivate this item" -msgstr "Απενεργοποιήστε αυτό το αντικείμενο" - -#: includes/admin/admin-internal-post-type-list.php:448 -#: includes/admin/admin-internal-post-type-list.php:477 -msgid "Activate" -msgstr "Ενεργοποίηση" - -#: includes/admin/admin-internal-post-type-list.php:448 -msgid "Activate this item" -msgstr "Ενεργοποιήστε αυτό το αντικείμενο" - -#: includes/admin/post-types/admin-field-group.php:92 -#: assets/build/js/acf-field-group.js:2812 -#: assets/build/js/acf-field-group.js:3313 -msgid "Move field group to trash?" -msgstr "Να μεταφερθεί αυτή η ομάδα πεδίων στον κάδο;" - -#: acf.php:497 includes/admin/admin-internal-post-type-list.php:248 -#: includes/admin/post-types/admin-field-group.php:297 -#: includes/admin/post-types/admin-post-type.php:295 -#: includes/admin/post-types/admin-taxonomy.php:297 -msgctxt "post status" -msgid "Inactive" -msgstr "Ανενεργό" - -#. Author of the plugin -msgid "WP Engine" -msgstr "WP Engine" - -#: acf.php:555 -msgid "" -"Advanced Custom Fields and Advanced Custom Fields PRO should not be active " -"at the same time. We've automatically deactivated Advanced Custom Fields PRO." -msgstr "" - -#: acf.php:553 -msgid "" -"Advanced Custom Fields and Advanced Custom Fields PRO should not be active " -"at the same time. We've automatically deactivated Advanced Custom Fields." -msgstr "" - -#: includes/acf-value-functions.php:374 -msgid "" -"%1$s - We've detected one or more calls to retrieve ACF " -"field values before ACF has been initialized. This is not supported and can " -"result in malformed or missing data. Learn how to fix this." -msgstr "" -"%1$s - Ανιχνεύθηκαν μία ή περισσότερες κλήσεις για ανάκτηση " -"τιμών πεδίων ACF προτού το ACF αρχικοποιηθεί. Αυτό δεν υποστηρίζεται και " -"μπορεί να καταλήξει σε παραποιημένα ή κενά. Μάθετε πώς να το διορθώσετε." - -#: includes/fields/class-acf-field-user.php:551 -msgid "%1$s must have a user with the %2$s role." -msgid_plural "%1$s must have a user with one of the following roles: %2$s" -msgstr[0] "Το %1$s πρέπει να έχει έναν χρήστη με ρόλο %2$s." -msgstr[1] "" -"Το %1$s πρέπει να έχει έναν χρήστη με έναν από τους παρακάτω ρόλους: %2$s." - -#: includes/fields/class-acf-field-user.php:542 -msgid "%1$s must have a valid user ID." -msgstr "Το %1$s πρέπει να έχει ένα έγκυρο ID χρήστη." - -#: includes/fields/class-acf-field-user.php:380 -msgid "Invalid request." -msgstr "Μη έγκυρο αίτημα." - -#: includes/fields/class-acf-field-select.php:684 -msgid "%1$s is not one of %2$s" -msgstr "Το %1$s δεν είναι ένα από τα %2$s." - -#: includes/fields/class-acf-field-post_object.php:700 -msgid "%1$s must have term %2$s." -msgid_plural "%1$s must have one of the following terms: %2$s" -msgstr[0] "To %1$s πρέπει να έχει τον όρο %2$s." -msgstr[1] "To %1$s πρέπει να έχει έναν από τους παρακάτω όρους: %2$s." - -#: includes/fields/class-acf-field-post_object.php:684 -msgid "%1$s must be of post type %2$s." -msgid_plural "%1$s must be of one of the following post types: %2$s" -msgstr[0] "Το %1$s πρέπει να έχει post type %2$s." -msgstr[1] "Το %1$s πρέπει να έχει ένα από τα παρακάτω post type: %2$s." - -#: includes/fields/class-acf-field-post_object.php:675 -msgid "%1$s must have a valid post ID." -msgstr "Το %1$s πρέπει να έχει ένα έγκυρο post ID." - -#: includes/fields/class-acf-field-file.php:475 -msgid "%s requires a valid attachment ID." -msgstr "Το %s απαιτεί ένα έγκυρο attachment ID." - -#: includes/admin/views/acf-field-group/options.php:233 -msgid "Show in REST API" -msgstr "Να εμφανίζεται στο REST API" - -#: includes/fields/class-acf-field-color_picker.php:168 -msgid "Enable Transparency" -msgstr "Ενεργοποίηση Διαφάνειας" - -#: includes/fields/class-acf-field-color_picker.php:187 -msgid "RGBA Array" -msgstr "RGBA Array" - -#: includes/fields/class-acf-field-color_picker.php:98 -msgid "RGBA String" -msgstr "RGBA String" - -#: includes/fields/class-acf-field-color_picker.php:97 -#: includes/fields/class-acf-field-color_picker.php:186 -msgid "Hex String" -msgstr "Hex String" - -#: includes/admin/views/browse-fields-modal.php:65 -msgid "Upgrade to PRO" -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:297 -#: includes/admin/post-types/admin-post-type.php:295 -#: includes/admin/post-types/admin-taxonomy.php:297 -msgctxt "post status" -msgid "Active" -msgstr "Ενεργό" - -#: includes/fields/class-acf-field-email.php:181 -msgid "'%s' is not a valid email address" -msgstr "Το '%s' δεν είναι έγκυρη διεύθυνση email." - -#: includes/fields/class-acf-field-color_picker.php:76 -msgid "Color value" -msgstr "Τιμή χρώματος" - -#: includes/fields/class-acf-field-color_picker.php:74 -msgid "Select default color" -msgstr "Επιλέξτε το προεπιλεγμένο χρώμα" - -#: includes/fields/class-acf-field-color_picker.php:72 -msgid "Clear color" -msgstr "Εκκαθάριση χρώματος" - -#: includes/acf-wp-functions.php:90 -msgid "Blocks" -msgstr "Μπλοκ" - -#: includes/acf-wp-functions.php:86 -msgid "Options" -msgstr "Επιλογές" - -#: includes/acf-wp-functions.php:82 -msgid "Users" -msgstr "Χρήστες" - -#: includes/acf-wp-functions.php:78 -msgid "Menu items" -msgstr "Στοιχεία μενού" - -#: includes/acf-wp-functions.php:70 -msgid "Widgets" -msgstr "Μικροεφαρμογές" - -#: includes/acf-wp-functions.php:62 -msgid "Attachments" -msgstr "Συνημμένα" - -#: includes/acf-wp-functions.php:57 -#: includes/admin/post-types/admin-post-types.php:137 -#: includes/admin/post-types/admin-taxonomies.php:112 -#: includes/admin/tools/class-acf-admin-tool-import.php:93 -#: includes/admin/views/acf-post-type/basic-settings.php:86 -#: includes/post-types/class-acf-taxonomy.php:90 -#: includes/post-types/class-acf-taxonomy.php:91 -msgid "Taxonomies" -msgstr "Ταξινομίες" - -#: includes/acf-wp-functions.php:44 -#: includes/admin/post-types/admin-post-type.php:126 -#: includes/admin/post-types/admin-post-types.php:139 -#: includes/admin/views/acf-post-type/advanced-settings.php:106 -#: assets/build/js/acf-internal-post-type.js:173 -#: assets/build/js/acf-internal-post-type.js:247 -msgid "Posts" -msgstr "Άρθρα" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:76 -msgid "Last updated: %s" -msgstr "Τελευταία ενημέρωση: %s" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:70 -msgid "Sorry, this post is unavailable for diff comparison." -msgstr "" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:42 -msgid "Invalid field group parameter(s)." -msgstr "Μη έγκυρες παράμετροι field group." - -#: includes/admin/admin-internal-post-type-list.php:413 -msgid "Awaiting save" -msgstr "Αναμονή αποθήκευσης" - -#: includes/admin/admin-internal-post-type-list.php:410 -msgid "Saved" -msgstr "Αποθηκεύτηκε" - -#: includes/admin/admin-internal-post-type-list.php:406 -#: includes/admin/tools/class-acf-admin-tool-import.php:49 -msgid "Import" -msgstr "Εισαγωγή" - -#: includes/admin/admin-internal-post-type-list.php:402 -msgid "Review changes" -msgstr "Ανασκόπηση αλλαγών" - -#: includes/admin/admin-internal-post-type-list.php:378 -msgid "Located in: %s" -msgstr "Βρίσκεται στο: %s" - -#: includes/admin/admin-internal-post-type-list.php:375 -msgid "Located in plugin: %s" -msgstr "Βρίσκεται στο πρόσθετο: %s" - -#: includes/admin/admin-internal-post-type-list.php:372 -msgid "Located in theme: %s" -msgstr "Βρίσκεται στο θέμα: %s" - -#: includes/admin/post-types/admin-field-groups.php:261 -msgid "Various" -msgstr "Διάφορα" - -#: includes/admin/admin-internal-post-type-list.php:216 -#: includes/admin/admin-internal-post-type-list.php:485 -msgid "Sync changes" -msgstr "Συγχρονισμός αλλαγών" - -#: includes/admin/admin-internal-post-type-list.php:215 -msgid "Loading diff" -msgstr "Φόρτωση διαφορών" - -#: includes/admin/admin-internal-post-type-list.php:214 -msgid "Review local JSON changes" -msgstr "Ανασκόπηση τοπικών αλλαγών στο JSON" - -#: includes/admin/admin.php:170 -msgid "Visit website" -msgstr "Επισκεφθείτε τον ιστότοπο" - -#: includes/admin/admin.php:169 -msgid "View details" -msgstr "Προβολή λεπτομερειών" - -#: includes/admin/admin.php:168 -msgid "Version %s" -msgstr "Έκδοση %s" - -#: includes/admin/admin.php:167 -msgid "Information" -msgstr "Πληροφορία" - -#: includes/admin/admin.php:158 -msgid "" -"Help Desk. The support professionals on " -"our Help Desk will assist with your more in depth, technical challenges." -msgstr "" -"Υποστήριξη. Οι επαγγελματίες στην " -"Υποστήριξή μας θα σας βοηθήσουν με τις πιο προχωρημένες τεχνικές δυσκολίες " -"σας." - -#: includes/admin/admin.php:154 -msgid "" -"Discussions. We have an active and " -"friendly community on our Community Forums who may be able to help you " -"figure out the 'how-tos' of the ACF world." -msgstr "" - -#: includes/admin/admin.php:150 -msgid "" -"Documentation. Our extensive " -"documentation contains references and guides for most situations you may " -"encounter." -msgstr "" -"Τεκμηρίωση. Η εκτεταμένη μας τεκμηρίωσή " -"περιέχει αναφορές και οδηγούς για τις περισσότερες από τις περιπτώσεις που " -"τυχόν συναντήσετε. " - -#: includes/admin/admin.php:147 -msgid "" -"We are fanatical about support, and want you to get the best out of your " -"website with ACF. If you run into any difficulties, there are several places " -"you can find help:" -msgstr "" -"Είμαστε παθιασμένοι σχετικά με την υποστήριξη και θέλουμε να καταφέρετε το " -"καλύτερο μέσα από τον ιστότοπό σας με το ACF. Αν συναντήσετε δυσκολίες, " -"υπάρχουν πολλά σημεία στα οποία μπορείτε να αναζητήσετε βοήθεια:" - -#: includes/admin/admin.php:144 includes/admin/admin.php:146 -msgid "Help & Support" -msgstr "Βοήθεια & Υποστήριξη" - -#: includes/admin/admin.php:135 -msgid "" -"Please use the Help & Support tab to get in touch should you find yourself " -"requiring assistance." -msgstr "" -"Χρησιμοποιήστε την καρτέλα Βοήθεια & Υποστήριξη για να επικοινωνήστε μαζί " -"μας στην περίπτωση που χρειαστείτε βοήθεια. " - -#: includes/admin/admin.php:132 -msgid "" -"Before creating your first Field Group, we recommend first reading our Getting started guide to familiarize " -"yourself with the plugin's philosophy and best practises." -msgstr "" -"Προτού δημιουργήσετε το πρώτο σας Field Group, σας συστήνουμε να διαβάσετε " -"τον οδηγό μας Getting started για να " -"εξοικειωθείτε με τη φιλοσοφία του προσθέτου και τις βέλτιστες πρακτικές του. " - -#: includes/admin/admin.php:130 -msgid "" -"The Advanced Custom Fields plugin provides a visual form builder to " -"customize WordPress edit screens with extra fields, and an intuitive API to " -"display custom field values in any theme template file." -msgstr "" -"Το πρόσθετο Advanced Custom Fields παρέχει έναν οπτικό κατασκευαστή φορμών " -"που σας επιτρέπει να προσαρμόζετε τις οθόνες επεξεργασίας του WordPress με " -"νέα πεδία, καθώς και ένα διαισθητικό API για να παρουσιάζετε τις τιμές των " -"custom field σε οποιοδήποτε template file ενός θέματος. " - -#: includes/admin/admin.php:127 includes/admin/admin.php:129 -msgid "Overview" -msgstr "Επισκόπηση" - -#: includes/locations.php:36 -msgid "Location type \"%s\" is already registered." -msgstr "Ο τύπος τοποθεσίας \"%s\" είναι ήδη καταχωρημένος." - -#: includes/locations.php:25 -msgid "Class \"%s\" does not exist." -msgstr "Η κλάση \"%s\" δεν υπάρχει." - -#: includes/ajax/class-acf-ajax.php:157 -msgid "Invalid nonce." -msgstr "Μη έγκυρο nonce." - -#: includes/fields/class-acf-field-user.php:375 -msgid "Error loading field." -msgstr "Σφάλμα κατά τη φόρτωση του πεδίου." - -#: assets/build/js/acf-input.js:2750 assets/build/js/acf-input.js:2819 -#: assets/build/js/acf-input.js:2926 assets/build/js/acf-input.js:3000 -msgid "Location not found: %s" -msgstr "Δεν βρέθηκε η τοποθεσία: %s" - -#: includes/forms/form-user.php:353 -msgid "Error: %s" -msgstr "Σφάλμα: %s" - -#: includes/locations/class-acf-location-widget.php:22 -msgid "Widget" -msgstr "Μικροεφαρμογή" - -#: includes/locations/class-acf-location-user-role.php:24 -msgid "User Role" -msgstr "Ρόλος Χρήστη" - -#: includes/locations/class-acf-location-comment.php:22 -msgid "Comment" -msgstr "Σχόλιο" - -#: includes/locations/class-acf-location-post-format.php:22 -msgid "Post Format" -msgstr "Μορφή Άρθρου" - -#: includes/locations/class-acf-location-nav-menu-item.php:22 -msgid "Menu Item" -msgstr "Στοιχείο Μενού" - -#: includes/locations/class-acf-location-post-status.php:22 -msgid "Post Status" -msgstr "Κατάσταση Άρθρου" - -#: includes/acf-wp-functions.php:74 -#: includes/locations/class-acf-location-nav-menu.php:89 -msgid "Menus" -msgstr "Μενού" - -#: includes/locations/class-acf-location-nav-menu.php:80 -msgid "Menu Locations" -msgstr "Τοποθεσίες Μενού" - -#: includes/locations/class-acf-location-nav-menu.php:22 -msgid "Menu" -msgstr "Μενού" - -#: includes/locations/class-acf-location-post-taxonomy.php:22 -msgid "Post Taxonomy" -msgstr "Ταξινομία Άρθρου" - -#: includes/locations/class-acf-location-page-type.php:114 -msgid "Child Page (has parent)" -msgstr "Υποσελίδα (έχει γονέα)" - -#: includes/locations/class-acf-location-page-type.php:113 -msgid "Parent Page (has children)" -msgstr "Γονική Σελίδα (έχει απογόνους)" - -#: includes/locations/class-acf-location-page-type.php:112 -msgid "Top Level Page (no parent)" -msgstr "Σελίδα Ανωτάτου Επιπέδου (χωρίς γονέα)" - -#: includes/locations/class-acf-location-page-type.php:111 -msgid "Posts Page" -msgstr "Σελίδα Άρθρων" - -#: includes/locations/class-acf-location-page-type.php:110 -msgid "Front Page" -msgstr "Αρχική Σελίδα" - -#: includes/locations/class-acf-location-page-type.php:22 -msgid "Page Type" -msgstr "Τύπος Άρθρου" - -#: includes/locations/class-acf-location-current-user.php:73 -msgid "Viewing back end" -msgstr "Προβολή του back end" - -#: includes/locations/class-acf-location-current-user.php:72 -msgid "Viewing front end" -msgstr "Προβολή του front end" - -#: includes/locations/class-acf-location-current-user.php:71 -msgid "Logged in" -msgstr "Συνδεδεμένος" - -#: includes/locations/class-acf-location-current-user.php:22 -msgid "Current User" -msgstr "Τρέχων Χρήστης" - -#: includes/locations/class-acf-location-page-template.php:22 -msgid "Page Template" -msgstr "Πρότυπο Σελίδας" - -#: includes/locations/class-acf-location-user-form.php:74 -msgid "Register" -msgstr "Εγγραφή" - -#: includes/locations/class-acf-location-user-form.php:73 -msgid "Add / Edit" -msgstr "Προσθήκη / Επεξεργασία" - -#: includes/locations/class-acf-location-user-form.php:22 -msgid "User Form" -msgstr "Φόρμα Χρήστη" - -#: includes/locations/class-acf-location-page-parent.php:22 -msgid "Page Parent" -msgstr "Γονέας Σελίδας" - -#: includes/locations/class-acf-location-current-user-role.php:77 -msgid "Super Admin" -msgstr "Υπερδιαχειριστής" - -#: includes/locations/class-acf-location-current-user-role.php:22 -msgid "Current User Role" -msgstr "Ρόλος Τρέχοντος Χρήστη" - -#: includes/locations/class-acf-location-page-template.php:73 -#: includes/locations/class-acf-location-post-template.php:85 -msgid "Default Template" -msgstr "Προεπιλεγμένο Πρότυπο" - -#: includes/locations/class-acf-location-post-template.php:22 -msgid "Post Template" -msgstr "Πρότυπο Άρθρου" - -#: includes/locations/class-acf-location-post-category.php:22 -msgid "Post Category" -msgstr "Κατηγορία Άρθρου" - -#: includes/locations/class-acf-location-attachment.php:84 -msgid "All %s formats" -msgstr "Όλες οι %s μορφές" - -#: includes/locations/class-acf-location-attachment.php:22 -msgid "Attachment" -msgstr "Συνημμένο" - -#: includes/validation.php:366 -msgid "%s value is required" -msgstr "Η τιμή του %s είναι υποχρεωτική" - -#: includes/admin/views/acf-field-group/conditional-logic.php:59 -msgid "Show this field if" -msgstr "Εμφάνιση αυτού του πεδίου αν" - -#: includes/admin/views/acf-field-group/conditional-logic.php:26 -#: includes/admin/views/acf-field-group/field.php:109 includes/fields.php:411 -msgid "Conditional Logic" -msgstr "Λογική Υπό Συνθήκες" - -#: includes/admin/views/acf-field-group/conditional-logic.php:156 -#: includes/admin/views/acf-field-group/location-rule.php:92 -msgid "and" -msgstr "και" - -#: includes/admin/post-types/admin-field-groups.php:123 -#: includes/admin/post-types/admin-post-types.php:143 -#: includes/admin/post-types/admin-taxonomies.php:143 -msgid "Local JSON" -msgstr "Τοπικό JSON" - -#: includes/admin/views/acf-field-group/pro-features.php:46 -msgid "Clone Field" -msgstr "Πεδίο Κλώνου" - -#: includes/admin/views/upgrade/notice.php:30 -msgid "" -"Please also check all premium add-ons (%s) are updated to the latest version." -msgstr "" -"Επιβεβαιώστε επίσης ότι όλα τα επί πληρωμή πρόσθετα (%s) είναι ενημερωμένα " -"στην τελευταία τους έκδοση." - -#: includes/admin/views/upgrade/notice.php:28 -msgid "" -"This version contains improvements to your database and requires an upgrade." -msgstr "" -"Αυτή η έκδοση περιέχει βελτιώσεις στη βάση δεδομένων σας κι απαιτεί μια " -"αναβάθμιση." - -#: includes/admin/views/upgrade/notice.php:28 -msgid "Thank you for updating to %1$s v%2$s!" -msgstr "Ευχαριστούμε που αναβαθμίσατε στο %1$s v%2$s!" - -#: includes/admin/views/upgrade/notice.php:27 -msgid "Database Upgrade Required" -msgstr "Απαιτείται Αναβάθμιση Βάσης Δεδομένων" - -#: includes/admin/post-types/admin-field-group.php:141 -#: includes/admin/views/upgrade/notice.php:18 -msgid "Options Page" -msgstr "Σελίδα Επιλογών" - -#: includes/admin/views/upgrade/notice.php:15 includes/fields.php:462 -msgid "Gallery" -msgstr "Συλλογή" - -#: includes/admin/views/upgrade/notice.php:12 includes/fields.php:452 -msgid "Flexible Content" -msgstr "Ευέλικτο Περιεχόμενο" - -#: includes/admin/views/upgrade/notice.php:9 includes/fields.php:472 -msgid "Repeater" -msgstr "Επαναλήπτης" - -#: includes/admin/views/tools/tools.php:24 -msgid "Back to all tools" -msgstr "Πίσω σε όλα τα εργαλεία" - -#: includes/admin/views/acf-field-group/options.php:195 -msgid "" -"If multiple field groups appear on an edit screen, the first field group's " -"options will be used (the one with the lowest order number)" -msgstr "" -"Αν περισσότερα από ένα field group εμφανίζονται στην οθόνη επεξεργασίας, " -"τότε θα χρησιμοποιηθούν οι ρυθμίσεις του πρώτου (αυτού με το χαμηλότερον " -"αριθμό σειράς)" - -#: includes/admin/views/acf-field-group/options.php:195 -msgid "Select items to hide them from the edit screen." -msgstr "" -"Επιλέξτε στοιχεία για να τα αποκρύψετε από την οθόνη " -"τροποποίησης." - -#: includes/admin/views/acf-field-group/options.php:194 -msgid "Hide on screen" -msgstr "Απόκρυψη σε οθόνη" - -#: includes/admin/views/acf-field-group/options.php:186 -msgid "Send Trackbacks" -msgstr "Αποστολή Παραπομπών" - -#: includes/admin/post-types/admin-taxonomy.php:128 -#: includes/admin/views/acf-field-group/options.php:185 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:159 -#: assets/build/js/acf-internal-post-type.js:180 -#: assets/build/js/acf-internal-post-type.js:254 -msgid "Tags" -msgstr "Ετικέτες" - -#: includes/admin/post-types/admin-taxonomy.php:130 -#: includes/admin/views/acf-field-group/options.php:184 -#: assets/build/js/acf-internal-post-type.js:183 -#: assets/build/js/acf-internal-post-type.js:257 -msgid "Categories" -msgstr "Κατηγορίες" - -#: includes/admin/views/acf-field-group/options.php:182 -#: includes/admin/views/acf-post-type/advanced-settings.php:28 -msgid "Page Attributes" -msgstr "Χαρακτηριστικά Σελίδας" - -#: includes/admin/views/acf-field-group/options.php:181 -msgid "Format" -msgstr "Μορφή" - -#: includes/admin/views/acf-field-group/options.php:180 -#: includes/admin/views/acf-post-type/advanced-settings.php:22 -msgid "Author" -msgstr "Συντάκτης" - -#: includes/admin/views/acf-field-group/options.php:179 -msgid "Slug" -msgstr "Σύντομο όνομα" - -#: includes/admin/views/acf-field-group/options.php:178 -#: includes/admin/views/acf-post-type/advanced-settings.php:27 -msgid "Revisions" -msgstr "Αναθεωρήσεις" - -#: includes/acf-wp-functions.php:66 -#: includes/admin/views/acf-field-group/options.php:177 -#: includes/admin/views/acf-post-type/advanced-settings.php:23 -msgid "Comments" -msgstr "Σχόλια" - -#: includes/admin/views/acf-field-group/options.php:176 -msgid "Discussion" -msgstr "Συζήτηση" - -#: includes/admin/views/acf-field-group/options.php:174 -#: includes/admin/views/acf-post-type/advanced-settings.php:26 -msgid "Excerpt" -msgstr "Απόσπασμα" - -#: includes/admin/views/acf-field-group/options.php:173 -msgid "Content Editor" -msgstr "Επεξεργαστής Περιεχομένου" - -#: includes/admin/views/acf-field-group/options.php:172 -msgid "Permalink" -msgstr "Μόνιμος σύνδεσμος" - -#: includes/admin/views/acf-field-group/options.php:250 -msgid "Shown in field group list" -msgstr "Εμφανίζεται στη λίστα ομάδας πεδίων" - -#: includes/admin/views/acf-field-group/options.php:157 -msgid "Field groups with a lower order will appear first" -msgstr "Ομάδες πεδίων με χαμηλότερη σειρά θα εμφανιστούν πρώτες" - -#: includes/admin/views/acf-field-group/options.php:156 -msgid "Order No." -msgstr "Αρ. Παραγγελίας" - -#: includes/admin/views/acf-field-group/options.php:147 -msgid "Below fields" -msgstr "Παρακάτω πεδία" - -#: includes/admin/views/acf-field-group/options.php:146 -msgid "Below labels" -msgstr "Παρακάτω ετικέτες" - -#: includes/admin/views/acf-field-group/options.php:139 -msgid "Instruction Placement" -msgstr "" - -#: includes/admin/views/acf-field-group/options.php:122 -msgid "Label Placement" -msgstr "" - -#: includes/admin/views/acf-field-group/options.php:110 -msgid "Side" -msgstr "Πλάι" - -#: includes/admin/views/acf-field-group/options.php:109 -msgid "Normal (after content)" -msgstr "Κανονικό (μετά το περιεχόμενο)" - -#: includes/admin/views/acf-field-group/options.php:108 -msgid "High (after title)" -msgstr "Ψηλά (μετά τον τίτλο)" - -#: includes/admin/views/acf-field-group/options.php:101 -msgid "Position" -msgstr "Τοποθεσία" - -#: includes/admin/views/acf-field-group/options.php:92 -msgid "Seamless (no metabox)" -msgstr "Ενοποιημένη (χωρίς metabox)" - -#: includes/admin/views/acf-field-group/options.php:91 -msgid "Standard (WP metabox)" -msgstr "Κλασική (με WP metabox)" - -#: includes/admin/views/acf-field-group/options.php:84 -msgid "Style" -msgstr "Στυλ" - -#: includes/admin/views/acf-field-group/fields.php:55 -msgid "Type" -msgstr "Τύπος" - -#: includes/admin/post-types/admin-field-groups.php:117 -#: includes/admin/post-types/admin-post-types.php:136 -#: includes/admin/post-types/admin-taxonomies.php:136 -#: includes/admin/views/acf-field-group/fields.php:54 -msgid "Key" -msgstr "Κλειδί" - -#. translators: Hidden accessibility text for the positional order number of -#. the field. -#: includes/admin/views/acf-field-group/fields.php:48 -msgid "Order" -msgstr "Σειρά" - -#: includes/admin/views/acf-field-group/field.php:322 -msgid "Close Field" -msgstr "Κλείσιμο Πεδίου" - -#: includes/admin/views/acf-field-group/field.php:253 -msgid "id" -msgstr "id" - -#: includes/admin/views/acf-field-group/field.php:237 -msgid "class" -msgstr "κλάση" - -#: includes/admin/views/acf-field-group/field.php:279 -msgid "width" -msgstr "πλάτος" - -#: includes/admin/views/acf-field-group/field.php:273 -msgid "Wrapper Attributes" -msgstr "Ιδιότητες Πλαισίου" - -#: includes/admin/views/acf-field-group/field.php:196 -msgid "Required" -msgstr "Απαιτείται" - -#: includes/admin/views/acf-field-group/field.php:221 -msgid "Instructions for authors. Shown when submitting data" -msgstr "Οδηγίες προς τους συγγραφείς. Ορατό όταν υποβάλλοντα τα δεδομένα" - -#: includes/admin/views/acf-field-group/field.php:220 -msgid "Instructions" -msgstr "Οδηγίες" - -#: includes/admin/views/acf-field-group/field.php:129 -msgid "Field Type" -msgstr "Τύπος Πεδίου" - -#: includes/admin/views/acf-field-group/field.php:170 -msgid "Single word, no spaces. Underscores and dashes allowed" -msgstr "Μια λέξη, χωρίς κενά. Επιτρέπονται κάτω παύλες και παύλες" - -#: includes/admin/views/acf-field-group/field.php:169 -msgid "Field Name" -msgstr "Όνομα Πεδίου" - -#: includes/admin/views/acf-field-group/field.php:157 -msgid "This is the name which will appear on the EDIT page" -msgstr "Αυτό είναι το όνομα που θα εμφανιστεί στην σελίδα ΤΡΟΠΟΠΟΙΗΣΗΣ." - -#: includes/admin/views/acf-field-group/field.php:156 -#: includes/admin/views/browse-fields-modal.php:59 -msgid "Field Label" -msgstr "Επιγραφή Πεδίου" - -#: includes/admin/views/acf-field-group/field.php:81 -msgid "Delete" -msgstr "Διαγραφή" - -#: includes/admin/views/acf-field-group/field.php:81 -msgid "Delete field" -msgstr "Διαγραφή πεδίου" - -#: includes/admin/views/acf-field-group/field.php:79 -msgid "Move" -msgstr "Μετακίνηση" - -#: includes/admin/views/acf-field-group/field.php:79 -msgid "Move field to another group" -msgstr "Μετακίνηση του πεδίου σε άλλο group" - -#: includes/admin/views/acf-field-group/field.php:77 -msgid "Duplicate field" -msgstr "Δημιουργία αντιγράφου του πεδίου" - -#: includes/admin/views/acf-field-group/field.php:73 -#: includes/admin/views/acf-field-group/field.php:76 -msgid "Edit field" -msgstr "Τροποποίηση πεδίου" - -#: includes/admin/views/acf-field-group/field.php:69 -msgid "Drag to reorder" -msgstr "Σύρετε για αναδιάταξη" - -#: includes/admin/post-types/admin-field-group.php:103 -#: includes/admin/views/acf-field-group/location-group.php:3 -#: assets/build/js/acf-field-group.js:2347 -#: assets/build/js/acf-field-group.js:2763 -msgid "Show this field group if" -msgstr "Εμφάνιση αυτής της ομάδας πεδίου αν" - -#: includes/admin/views/upgrade/upgrade.php:94 -#: includes/ajax/class-acf-ajax-upgrade.php:34 -msgid "No updates available." -msgstr "Δεν υπάρχουν διαθέσιμες ενημερώσεις." - -#: includes/admin/views/upgrade/upgrade.php:33 -msgid "Database upgrade complete. See what's new" -msgstr "" -"Η αναβάθμιση της βάσης δεδομένων ολοκληρώθηκε. Δείτε τι νέο " -"υπάρχει" - -#: includes/admin/views/upgrade/upgrade.php:30 -msgid "Reading upgrade tasks..." -msgstr "Πραγματοποιείται ανάγνωση εργασιών αναβάθμισης..." - -#: includes/admin/views/upgrade/network.php:165 -#: includes/admin/views/upgrade/upgrade.php:65 -msgid "Upgrade failed." -msgstr "Η αναβάθμιση απέτυχε." - -#: includes/admin/views/upgrade/network.php:162 -msgid "Upgrade complete." -msgstr "Η αναβάθμιση ολοκληρώθηκε." - -#: includes/admin/views/upgrade/network.php:148 -#: includes/admin/views/upgrade/upgrade.php:31 -msgid "Upgrading data to version %s" -msgstr "Πραγματοποιείται αναβάθμιση δεδομένων στην έκδοση %s" - -#: includes/admin/views/upgrade/network.php:121 -#: includes/admin/views/upgrade/notice.php:44 -msgid "" -"It is strongly recommended that you backup your database before proceeding. " -"Are you sure you wish to run the updater now?" -msgstr "" -"Συνιστάται ιδιαίτερα να πάρετε αντίγραφο ασφαλείας της βάσης δεδομένων σας " -"προτού να συνεχίσετε. Είστε βέβαιοι ότι θέλετε να εκτελέσετε την ενημέρωση " -"τώρα;" - -#: includes/admin/views/upgrade/network.php:117 -msgid "Please select at least one site to upgrade." -msgstr "Παρακαλούμε επιλέξτε τουλάχιστον έναν ιστότοπο για αναβάθμιση." - -#: includes/admin/views/upgrade/network.php:97 -msgid "" -"Database Upgrade complete. Return to network dashboard" -msgstr "" -"Η Αναβάθμιση της Βάσης Δεδομένων ολοκληρώθηκε. Επιστροφή στον " -"πίνακα ελέγχου του δικτύου" - -#: includes/admin/views/upgrade/network.php:80 -msgid "Site is up to date" -msgstr "Ο ιστότοπος είναι ενημερωμένος" - -#: includes/admin/views/upgrade/network.php:78 -msgid "Site requires database upgrade from %1$s to %2$s" -msgstr "Ο ιστότοπος απαιτεί αναβάθμιση της βάσης δεδομένων από %1$s σε%2$s" - -#: includes/admin/views/upgrade/network.php:36 -#: includes/admin/views/upgrade/network.php:47 -msgid "Site" -msgstr "Ιστότοπος" - -#: includes/admin/views/upgrade/network.php:26 -#: includes/admin/views/upgrade/network.php:27 -#: includes/admin/views/upgrade/network.php:96 -msgid "Upgrade Sites" -msgstr "Αναβάθμιση Ιστοτόπων" - -#: includes/admin/views/upgrade/network.php:26 -msgid "" -"The following sites require a DB upgrade. Check the ones you want to update " -"and then click %s." -msgstr "" -"Οι παρακάτω ιστότοποι απαιτούν αναβάθμιση της Βάσης Δεδομένων. Επιλέξτε " -"αυτούς που θέλετε να ενημερώσετε και πατήστε το %s." - -#: includes/admin/views/acf-field-group/conditional-logic.php:171 -#: includes/admin/views/acf-field-group/locations.php:38 -msgid "Add rule group" -msgstr "Προσθήκη ομάδας κανόνων" - -#: includes/admin/views/acf-field-group/locations.php:10 -msgid "" -"Create a set of rules to determine which edit screens will use these " -"advanced custom fields" -msgstr "" -"Δημιουργήστε μια ομάδα κανόνων που θα καθορίζουν ποιες επεξεργασίας θα " -"χρησιμοποιούν αυτά τα πεδία" - -#: includes/admin/views/acf-field-group/locations.php:9 -msgid "Rules" -msgstr "Κανόνες" - -#: includes/admin/tools/class-acf-admin-tool-export.php:510 -msgid "Copied" -msgstr "Αντιγράφηκε" - -#: includes/admin/tools/class-acf-admin-tool-export.php:486 -msgid "Copy to clipboard" -msgstr "Αντιγραφή στο πρόχειρο" - -#: includes/admin/tools/class-acf-admin-tool-export.php:385 -msgid "" -"Select the items you would like to export and then select your export " -"method. Export As JSON to export to a .json file which you can then import " -"to another ACF installation. Generate PHP to export to PHP code which you " -"can place in your theme." -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:233 -msgid "Select Field Groups" -msgstr "Επιλογή ομάδων πεδίων" - -#: includes/admin/tools/class-acf-admin-tool-export.php:96 -#: includes/admin/tools/class-acf-admin-tool-export.php:131 -msgid "No field groups selected" -msgstr "Δεν επιλέχθηκε καμία ομάδα πεδίων" - -#: includes/admin/tools/class-acf-admin-tool-export.php:39 -#: includes/admin/tools/class-acf-admin-tool-export.php:393 -#: includes/admin/tools/class-acf-admin-tool-export.php:421 -msgid "Generate PHP" -msgstr "Δημιουργία PHP" - -#: includes/admin/tools/class-acf-admin-tool-export.php:35 -msgid "Export Field Groups" -msgstr "Εξαγωγή Ομάδων Πεδίων" - -#: includes/admin/tools/class-acf-admin-tool-import.php:177 -msgid "Import file empty" -msgstr "Εισαγωγή κενού αρχείου" - -#: includes/admin/tools/class-acf-admin-tool-import.php:168 -msgid "Incorrect file type" -msgstr "Εσφαλμένος τύπος αρχείου" - -#: includes/admin/tools/class-acf-admin-tool-import.php:163 -msgid "Error uploading file. Please try again" -msgstr "Σφάλμα μεταφόρτωσης αρχείου. Παρακαλούμε δοκιμάστε πάλι" - -#: includes/admin/tools/class-acf-admin-tool-import.php:50 -msgid "" -"Select the Advanced Custom Fields JSON file you would like to import. When " -"you click the import button below, ACF will import the items in that file." -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:27 -msgid "Import Field Groups" -msgstr "Εισαγωγή Ομάδων Πεδίων" - -#: includes/admin/admin-internal-post-type-list.php:401 -msgid "Sync" -msgstr "Συγχρονισμός" - -#: includes/admin/admin-internal-post-type-list.php:858 -msgid "Select %s" -msgstr "Επιλογή %s" - -#: includes/admin/admin-internal-post-type-list.php:442 -#: includes/admin/admin-internal-post-type-list.php:474 -#: includes/admin/views/acf-field-group/field.php:77 -msgid "Duplicate" -msgstr "Δημιουργία αντιγράφου" - -#: includes/admin/admin-internal-post-type-list.php:442 -msgid "Duplicate this item" -msgstr "Δημιουργία αντιγράφου αυτού του στοιχείου" - -#: includes/admin/views/acf-post-type/advanced-settings.php:41 -msgid "Supports" -msgstr "" - -#: includes/admin/admin.php:261 includes/admin/views/browse-fields-modal.php:92 -msgid "Documentation" -msgstr "Τεκμηρίωση" - -#: includes/admin/post-types/admin-field-groups.php:116 -#: includes/admin/post-types/admin-post-types.php:135 -#: includes/admin/post-types/admin-taxonomies.php:135 -#: includes/admin/views/acf-field-group/options.php:249 -#: includes/admin/views/acf-post-type/advanced-settings.php:62 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:114 -#: includes/admin/views/upgrade/network.php:38 -#: includes/admin/views/upgrade/network.php:49 -msgid "Description" -msgstr "Περιγραφή" - -#: includes/admin/admin-internal-post-type-list.php:398 -#: includes/admin/admin-internal-post-type-list.php:747 -msgid "Sync available" -msgstr "Διαθέσιμος συγχρονισμός" - -#. translators: %s number of field groups synchronized -#: includes/admin/post-types/admin-field-groups.php:381 -msgid "Field group synchronized." -msgid_plural "%s field groups synchronized." -msgstr[0] "" -msgstr[1] "" - -#. translators: %s number of field groups duplicated -#: includes/admin/post-types/admin-field-groups.php:374 -msgid "Field group duplicated." -msgid_plural "%s field groups duplicated." -msgstr[0] "Δημιουργήθηκε αντίγραφο της ομάδας πεδίων." -msgstr[1] "Δημιουργήθηκαν αντίγραφα %s ομάδων πεδίων." - -#: includes/admin/admin-internal-post-type-list.php:137 -msgid "Active (%s)" -msgid_plural "Active (%s)" -msgstr[0] "Ενεργό (%s)" -msgstr[1] "Ενεργά (%s)" - -#: includes/admin/admin-upgrade.php:254 -msgid "Review sites & upgrade" -msgstr "Ανασκόπηση ιστοτόπων & αναβάθμιση" - -#: includes/admin/admin-upgrade.php:59 includes/admin/admin-upgrade.php:93 -#: includes/admin/admin-upgrade.php:94 includes/admin/admin-upgrade.php:230 -#: includes/admin/views/upgrade/network.php:24 -#: includes/admin/views/upgrade/upgrade.php:26 -msgid "Upgrade Database" -msgstr "Αναβάθμιση Βάσης Δεδομένων" - -#: includes/admin/views/acf-field-group/options.php:175 -#: includes/admin/views/acf-post-type/advanced-settings.php:30 -msgid "Custom Fields" -msgstr "Custom Fields" - -#: includes/admin/post-types/admin-field-group.php:616 -msgid "Move Field" -msgstr "Μετακίνηση Πεδίου" - -#: includes/admin/post-types/admin-field-group.php:605 -#: includes/admin/post-types/admin-field-group.php:609 -msgid "Please select the destination for this field" -msgstr "Παρακαλούμε επιλέξτε τον προορισμό γι' αυτό το πεδίο" - -#. translators: Confirmation message once a field has been moved to a different -#. field group. -#: includes/admin/post-types/admin-field-group.php:567 -msgid "The %1$s field can now be found in the %2$s field group" -msgstr "Το πεδίο %1$s μπορεί πλέον να βρεθεί στην ομάδα πεδίων %2$s" - -#: includes/admin/post-types/admin-field-group.php:564 -msgid "Move Complete." -msgstr "Η Μετακίνηση Ολοκληρώθηκε." - -#: includes/admin/views/acf-field-group/field.php:39 -#: includes/admin/views/acf-field-group/options.php:217 -#: includes/admin/views/acf-post-type/advanced-settings.php:78 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:130 -msgid "Active" -msgstr "Ενεργό" - -#: includes/admin/post-types/admin-field-group.php:266 -msgid "Field Keys" -msgstr "Field Keys" - -#: includes/admin/post-types/admin-field-group.php:164 -#: includes/admin/tools/class-acf-admin-tool-export.php:342 -msgid "Settings" -msgstr "Ρυθμίσεις" - -#: includes/admin/post-types/admin-field-groups.php:118 -msgid "Location" -msgstr "Τοποθεσία" - -#: includes/admin/post-types/admin-field-group.php:104 -#: assets/build/js/acf-input.js:983 assets/build/js/acf-input.js:1075 -msgid "Null" -msgstr "Null" - -#: includes/admin/post-types/admin-field-group.php:101 -#: includes/class-acf-internal-post-type.php:730 -#: includes/post-types/class-acf-field-group.php:345 -#: assets/build/js/acf-field-group.js:1510 -#: assets/build/js/acf-field-group.js:1821 -msgid "copy" -msgstr "αντιγραφή" - -#: includes/admin/post-types/admin-field-group.php:100 -#: assets/build/js/acf-field-group.js:623 -#: assets/build/js/acf-field-group.js:778 -msgid "(this field)" -msgstr "(αυτό το πεδίο)" - -#: includes/admin/post-types/admin-field-group.php:98 -#: assets/build/js/acf-input.js:918 assets/build/js/acf-input.js:943 -#: assets/build/js/acf-input.js:1002 assets/build/js/acf-input.js:1030 -msgid "Checked" -msgstr "Επιλεγμένο" - -#: includes/admin/post-types/admin-field-group.php:94 -#: assets/build/js/acf-field-group.js:1615 -#: assets/build/js/acf-field-group.js:1933 -msgid "Move Custom Field" -msgstr "Μετακίνηση Προσαρμοσμένου Πεδίου" - -#: includes/admin/post-types/admin-field-group.php:93 -#: assets/build/js/acf-field-group.js:649 -#: assets/build/js/acf-field-group.js:804 -msgid "No toggle fields available" -msgstr "Δεν υπάρχουν διαθέσιμα πεδία εναλλαγής" - -#: includes/admin/post-types/admin-field-group.php:91 -msgid "Field group title is required" -msgstr "Ο τίτλος του field group είναι απαραίτητος" - -#: includes/admin/post-types/admin-field-group.php:90 -#: assets/build/js/acf-field-group.js:1604 -#: assets/build/js/acf-field-group.js:1919 -msgid "This field cannot be moved until its changes have been saved" -msgstr "" -"Αυτό το πεδίο δεν μπορεί να μετακινηθεί μέχρι να αποθηκευτούν οι αλλαγές του" - -#: includes/admin/post-types/admin-field-group.php:89 -#: assets/build/js/acf-field-group.js:1414 -#: assets/build/js/acf-field-group.js:1716 -msgid "The string \"field_\" may not be used at the start of a field name" -msgstr "" -"Το αλφαριθμητικό \"field_\" δεν μπορεί να χρησιμοποιηθεί στην αρχή ενός " -"ονόματος πεδίου" - -#: includes/admin/post-types/admin-field-group.php:71 -msgid "Field group draft updated." -msgstr "Το πρόχειρο field group ενημερώθηκε" - -#: includes/admin/post-types/admin-field-group.php:70 -msgid "Field group scheduled for." -msgstr "Το field group προγραμματίστηκε." - -#: includes/admin/post-types/admin-field-group.php:69 -msgid "Field group submitted." -msgstr "Το field group καταχωρήθηκε." - -#: includes/admin/post-types/admin-field-group.php:68 -msgid "Field group saved." -msgstr "Το field group αποθηκεύτηκε. " - -#: includes/admin/post-types/admin-field-group.php:67 -msgid "Field group published." -msgstr "Το field group δημοσιεύθηκε." - -#: includes/admin/post-types/admin-field-group.php:64 -msgid "Field group deleted." -msgstr "Το field group διαγράφηκε." - -#: includes/admin/post-types/admin-field-group.php:62 -#: includes/admin/post-types/admin-field-group.php:63 -#: includes/admin/post-types/admin-field-group.php:65 -msgid "Field group updated." -msgstr "Το field group ενημερώθηκε." - -#: includes/admin/admin-tools.php:118 -#: includes/admin/views/global/navigation.php:246 -#: includes/admin/views/tools/tools.php:21 -msgid "Tools" -msgstr "Εργαλεία" - -#: includes/locations/abstract-acf-location.php:106 -msgid "is not equal to" -msgstr "δεν είναι ίσο με" - -#: includes/locations/abstract-acf-location.php:105 -msgid "is equal to" -msgstr "είναι ίσο με" - -#: includes/locations.php:102 -msgid "Forms" -msgstr "Φόρμες" - -#: includes/admin/post-types/admin-post-type.php:127 includes/locations.php:100 -#: includes/locations/class-acf-location-page.php:22 -#: assets/build/js/acf-internal-post-type.js:175 -#: assets/build/js/acf-internal-post-type.js:249 -msgid "Page" -msgstr "Σελίδα" - -#: includes/admin/post-types/admin-post-type.php:125 includes/locations.php:99 -#: includes/locations/class-acf-location-post.php:22 -#: assets/build/js/acf-internal-post-type.js:172 -#: assets/build/js/acf-internal-post-type.js:246 -msgid "Post" -msgstr "Άρθρο" - -#: includes/fields.php:354 -msgid "Relational" -msgstr "Υπό Συνθήκες" - -#: includes/fields.php:353 -msgid "Choice" -msgstr "Επιλογή" - -#: includes/fields.php:351 -msgid "Basic" -msgstr "Βασικό" - -#: includes/fields.php:320 -msgid "Unknown" -msgstr "Άγνωστο" - -#: includes/fields.php:320 -msgid "Field type does not exist" -msgstr "Ο τύπος πεδίου δεν υπάρχει" - -#: includes/forms/form-front.php:236 -msgid "Spam Detected" -msgstr "Άνιχνεύθηκε Spam" - -#: includes/forms/form-front.php:107 -msgid "Post updated" -msgstr "Το άρθρο ενημερώθηκε" - -#: includes/forms/form-front.php:106 -msgid "Update" -msgstr "Ενημέρωση" - -#: includes/forms/form-front.php:57 -msgid "Validate Email" -msgstr "Επιβεβαίωση Ηλεκτρονικού Ταχυδρομείου" - -#: includes/fields.php:352 includes/forms/form-front.php:49 -msgid "Content" -msgstr "Περιεχόμενο" - -#: includes/admin/views/acf-post-type/advanced-settings.php:21 -#: includes/forms/form-front.php:40 -msgid "Title" -msgstr "Τίτλος" - -#: includes/assets.php:372 includes/forms/form-comment.php:160 -#: assets/build/js/acf-input.js:7382 assets/build/js/acf-input.js:7968 -msgid "Edit field group" -msgstr "Επεξεργασία field group" - -#: includes/admin/post-types/admin-field-group.php:117 -#: assets/build/js/acf-input.js:1125 assets/build/js/acf-input.js:1230 -msgid "Selection is less than" -msgstr "Η επιλογή να είναι μικρότερη από" - -#: includes/admin/post-types/admin-field-group.php:116 -#: assets/build/js/acf-input.js:1106 assets/build/js/acf-input.js:1202 -msgid "Selection is greater than" -msgstr "Η επιλογή να είναι μεγαλύτερη από" - -#: includes/admin/post-types/admin-field-group.php:115 -#: assets/build/js/acf-input.js:1075 assets/build/js/acf-input.js:1170 -msgid "Value is less than" -msgstr "Η τιμή να είναι μικρότερη από" - -#: includes/admin/post-types/admin-field-group.php:114 -#: assets/build/js/acf-input.js:1045 assets/build/js/acf-input.js:1139 -msgid "Value is greater than" -msgstr "Η τιμή να είναι μεγαλύτερη από" - -#: includes/admin/post-types/admin-field-group.php:113 -#: assets/build/js/acf-input.js:888 assets/build/js/acf-input.js:960 -msgid "Value contains" -msgstr "Η τιμη να περιέχει" - -#: includes/admin/post-types/admin-field-group.php:112 -#: assets/build/js/acf-input.js:862 assets/build/js/acf-input.js:926 -msgid "Value matches pattern" -msgstr "Η τιμή να ικανοποιεί το μοτίβο" - -#: includes/admin/post-types/admin-field-group.php:111 -#: assets/build/js/acf-input.js:840 assets/build/js/acf-input.js:1023 -#: assets/build/js/acf-input.js:903 assets/build/js/acf-input.js:1116 -msgid "Value is not equal to" -msgstr "Η τιμή να μην είναι ίση με" - -#: includes/admin/post-types/admin-field-group.php:110 -#: assets/build/js/acf-input.js:810 assets/build/js/acf-input.js:964 -#: assets/build/js/acf-input.js:864 assets/build/js/acf-input.js:1053 -msgid "Value is equal to" -msgstr "Η τιμή να είναι ίση με" - -#: includes/admin/post-types/admin-field-group.php:109 -#: assets/build/js/acf-input.js:788 assets/build/js/acf-input.js:841 -msgid "Has no value" -msgstr "Να μην έχει καμία τιμή" - -#: includes/admin/post-types/admin-field-group.php:108 -#: assets/build/js/acf-input.js:758 assets/build/js/acf-input.js:783 -msgid "Has any value" -msgstr "Να έχει οποιαδήποτε τιμή" - -#: includes/admin/admin-internal-post-type.php:345 -#: includes/admin/views/browse-fields-modal.php:62 includes/assets.php:353 -#: assets/build/js/acf.js:1564 assets/build/js/acf.js:1658 -msgid "Cancel" -msgstr "Ακύρωση" - -#: includes/assets.php:349 assets/build/js/acf.js:1738 -#: assets/build/js/acf.js:1855 -msgid "Are you sure?" -msgstr "Είστε σίγουροι;" - -#: includes/assets.php:369 assets/build/js/acf-input.js:9442 -#: assets/build/js/acf-input.js:10294 -msgid "%d fields require attention" -msgstr "%d πεδία χρήζουν προσοχής" - -#: includes/assets.php:368 assets/build/js/acf-input.js:9440 -#: assets/build/js/acf-input.js:10290 -msgid "1 field requires attention" -msgstr "1 πεδίο χρήζει προσοχής" - -#: includes/assets.php:367 includes/validation.php:288 -#: includes/validation.php:298 assets/build/js/acf-input.js:9435 -#: assets/build/js/acf-input.js:10285 -msgid "Validation failed" -msgstr "Ο έλεγχος απέτυχε" - -#: includes/assets.php:366 assets/build/js/acf-input.js:9603 -#: assets/build/js/acf-input.js:10473 -msgid "Validation successful" -msgstr "Ο έλεγχος πέτυχε" - -#: includes/media.php:54 assets/build/js/acf-input.js:7210 -#: assets/build/js/acf-input.js:7772 -msgid "Restricted" -msgstr "Περιορισμένος" - -#: includes/media.php:53 assets/build/js/acf-input.js:7025 -#: assets/build/js/acf-input.js:7536 -msgid "Collapse Details" -msgstr "Σύμπτυξη Λεπτομερειών" - -#: includes/media.php:52 assets/build/js/acf-input.js:7025 -#: assets/build/js/acf-input.js:7533 -msgid "Expand Details" -msgstr "Ανάπτυξη Λεπτομερειών" - -#: includes/admin/views/acf-post-type/advanced-settings.php:465 -#: includes/media.php:51 assets/build/js/acf-input.js:6892 -#: assets/build/js/acf-input.js:7381 -msgid "Uploaded to this post" -msgstr "Να έχουν μεταφορτωθεί σε αυτή την ανάρτηση" - -#: includes/media.php:50 assets/build/js/acf-input.js:6931 -#: assets/build/js/acf-input.js:7420 -msgctxt "verb" -msgid "Update" -msgstr "Ενημέρωση" - -#: includes/media.php:49 -msgctxt "verb" -msgid "Edit" -msgstr "Επεξεργασία" - -#: includes/assets.php:363 assets/build/js/acf-input.js:9212 -#: assets/build/js/acf-input.js:10056 -msgid "The changes you made will be lost if you navigate away from this page" -msgstr "Οι αλλαγές που έχετε κάνει θα χαθούν αν φύγετε από αυτή τη σελίδα." - -#: includes/api/api-helpers.php:3395 -msgid "File type must be %s." -msgstr "Ο τύπος του πεδίου πρέπει να είναι %s." - -#: includes/admin/post-types/admin-field-group.php:102 -#: includes/admin/views/acf-field-group/conditional-logic.php:59 -#: includes/admin/views/acf-field-group/conditional-logic.php:169 -#: includes/admin/views/acf-field-group/location-group.php:3 -#: includes/admin/views/acf-field-group/locations.php:36 -#: includes/api/api-helpers.php:3391 assets/build/js/acf-field-group.js:771 -#: assets/build/js/acf-field-group.js:2385 -#: assets/build/js/acf-field-group.js:933 -#: assets/build/js/acf-field-group.js:2807 -msgid "or" -msgstr "ή" - -#: includes/api/api-helpers.php:3364 -msgid "File size must not exceed %s." -msgstr "Το μέγεθος του αρχείου πρέπει να το πολύ %s." - -#: includes/api/api-helpers.php:3359 -msgid "File size must be at least %s." -msgstr "Το μέγεθος το αρχείου πρέπει να είναι τουλάχιστον %s." - -#: includes/api/api-helpers.php:3344 -msgid "Image height must not exceed %dpx." -msgstr "Το ύψος της εικόνας πρέπει να είναι το πολύ %dpx." - -#: includes/api/api-helpers.php:3339 -msgid "Image height must be at least %dpx." -msgstr "Το ύψος της εικόνας πρέπει να είναι τουλάχιστον %dpx." - -#: includes/api/api-helpers.php:3325 -msgid "Image width must not exceed %dpx." -msgstr "Το πλάτος της εικόνας πρέπει να είναι το πολύ %dpx." - -#: includes/api/api-helpers.php:3320 -msgid "Image width must be at least %dpx." -msgstr "Το πλάτος της εικόνας πρέπει να είναι τουλάχιστον %dpx." - -#: includes/api/api-helpers.php:1561 includes/api/api-term.php:147 -msgid "(no title)" -msgstr "(χωρίς τίτλο)" - -#: includes/api/api-helpers.php:853 -msgid "Full Size" -msgstr "Πλήρες μέγεθος" - -#: includes/api/api-helpers.php:812 -msgid "Large" -msgstr "Μεγάλο" - -#: includes/api/api-helpers.php:811 -msgid "Medium" -msgstr "Μεσαίο" - -#: includes/api/api-helpers.php:810 -msgid "Thumbnail" -msgstr "Μικρογραφία" - -#: includes/acf-field-functions.php:854 -#: includes/admin/post-types/admin-field-group.php:99 -#: assets/build/js/acf-field-group.js:1077 -#: assets/build/js/acf-field-group.js:1260 -msgid "(no label)" -msgstr "(χωρίς ετικέτα)" - -#: includes/fields/class-acf-field-textarea.php:145 -msgid "Sets the textarea height" -msgstr "Θέτει το ύψος του πεδίου κειμένου" - -#: includes/fields/class-acf-field-textarea.php:144 -msgid "Rows" -msgstr "Γραμμές" - -#: includes/fields/class-acf-field-textarea.php:25 -msgid "Text Area" -msgstr "Πεδίο κειμένου πολλών γραμμών" - -#: includes/fields/class-acf-field-checkbox.php:451 -msgid "Prepend an extra checkbox to toggle all choices" -msgstr "Εμφάνιση επιπλέον πεδίου checkbox που εναλλάσσει όλες τις επιλογές" - -#: includes/fields/class-acf-field-checkbox.php:413 -msgid "Save 'custom' values to the field's choices" -msgstr "Αποθήκευση των 'custom' τιμών στις επιλογές του πεδίου" - -#: includes/fields/class-acf-field-checkbox.php:402 -msgid "Allow 'custom' values to be added" -msgstr "Να επιτρέπεται η προσθήκη 'custom' τιμών" - -#: includes/fields/class-acf-field-checkbox.php:38 -msgid "Add new choice" -msgstr "Προσθήκη νέας τιμής" - -#: includes/fields/class-acf-field-checkbox.php:174 -msgid "Toggle All" -msgstr "Εναλλαγή Όλων" - -#: includes/fields/class-acf-field-page_link.php:506 -msgid "Allow Archives URLs" -msgstr "Να Επιτρέπονται τα URL των Archive" - -#: includes/fields/class-acf-field-page_link.php:179 -msgid "Archives" -msgstr "Archive" - -#: includes/fields/class-acf-field-page_link.php:25 -msgid "Page Link" -msgstr "Σύνδεσμος Σελίδας" - -#: includes/fields/class-acf-field-taxonomy.php:943 -#: includes/locations/class-acf-location-user-form.php:72 -msgid "Add" -msgstr "Προσθήκη" - -#: includes/admin/views/acf-field-group/fields.php:53 -#: includes/fields/class-acf-field-taxonomy.php:908 -msgid "Name" -msgstr "Όνομα" - -#: includes/fields/class-acf-field-taxonomy.php:892 -msgid "%s added" -msgstr "%s προστέθηκε" - -#: includes/fields/class-acf-field-taxonomy.php:856 -msgid "%s already exists" -msgstr "%s υπάρχει ήδη" - -#: includes/fields/class-acf-field-taxonomy.php:844 -msgid "User unable to add new %s" -msgstr "Ο Χρήστης δεν ήταν δυνατό να προσθέσει νέο %s" - -#: includes/fields/class-acf-field-taxonomy.php:742 -msgid "Term ID" -msgstr "ID όρου" - -#: includes/fields/class-acf-field-taxonomy.php:741 -msgid "Term Object" -msgstr "Object όρου" - -#: includes/fields/class-acf-field-taxonomy.php:726 -msgid "Load value from posts terms" -msgstr "Φόρτωση τιμής από τους όρους της ανάρτησης" - -#: includes/fields/class-acf-field-taxonomy.php:725 -msgid "Load Terms" -msgstr "Φόρτωση Όρων" - -#: includes/fields/class-acf-field-taxonomy.php:715 -msgid "Connect selected terms to the post" -msgstr "Σύνδεση επιλεγμένων όρων στο άρθρο" - -#: includes/fields/class-acf-field-taxonomy.php:714 -msgid "Save Terms" -msgstr "Αποθήκευση Όρων" - -#: includes/fields/class-acf-field-taxonomy.php:704 -msgid "Allow new terms to be created whilst editing" -msgstr "Να επιτρέπεται η δημιουργία νέων όρων κατά την επεξεργασία" - -#: includes/fields/class-acf-field-taxonomy.php:703 -msgid "Create Terms" -msgstr "Δημιουργία Όρων" - -#: includes/fields/class-acf-field-taxonomy.php:762 -msgid "Radio Buttons" -msgstr "Radio Button" - -#: includes/fields/class-acf-field-taxonomy.php:761 -msgid "Single Value" -msgstr "Μοναδική Τιμή" - -#: includes/fields/class-acf-field-taxonomy.php:759 -msgid "Multi Select" -msgstr "Πολλαπλή Επιλογή" - -#: includes/fields/class-acf-field-checkbox.php:25 -#: includes/fields/class-acf-field-taxonomy.php:758 -msgid "Checkbox" -msgstr "Checkbox" - -#: includes/fields/class-acf-field-taxonomy.php:757 -msgid "Multiple Values" -msgstr "Πολλαπλές Τιμές" - -#: includes/fields/class-acf-field-taxonomy.php:752 -msgid "Select the appearance of this field" -msgstr "Επιλέξτε την εμφάνιση αυτού του πεδίου" - -#: includes/fields/class-acf-field-taxonomy.php:751 -msgid "Appearance" -msgstr "Εμφάνιση" - -#: includes/fields/class-acf-field-taxonomy.php:693 -msgid "Select the taxonomy to be displayed" -msgstr "Επιλέξτε την ταξινομία οπυ θέλετε να εμφανιστεί" - -#: includes/fields/class-acf-field-taxonomy.php:654 -msgctxt "No Terms" -msgid "No %s" -msgstr "Κανένα %s" - -#: includes/fields/class-acf-field-number.php:266 -msgid "Value must be equal to or lower than %d" -msgstr "Η τιμή πρέπι να είναι ίση ή μικρότερη από %d" - -#: includes/fields/class-acf-field-number.php:259 -msgid "Value must be equal to or higher than %d" -msgstr "Η τιμή πρέπει να είναι ίση ή μεγαλύτερη από %d" - -#: includes/fields/class-acf-field-number.php:244 -msgid "Value must be a number" -msgstr "Η τιμή πρέπει να είναι αριθμός" - -#: includes/fields/class-acf-field-number.php:25 -msgid "Number" -msgstr "Αριθμός" - -#: includes/fields/class-acf-field-radio.php:264 -msgid "Save 'other' values to the field's choices" -msgstr "Αποθήκευση των \"άλλων\" τιμών στις επιλογές του πεδίου" - -#: includes/fields/class-acf-field-radio.php:253 -msgid "Add 'other' choice to allow for custom values" -msgstr "Προσθήκη επιλογής \"άλλο\" ώστε να επιτρέπονται προσαρμοσμένες τιμές" - -#: includes/admin/views/global/navigation.php:196 -msgid "Other" -msgstr "Άλλο" - -#: includes/fields/class-acf-field-radio.php:25 -msgid "Radio Button" -msgstr "Radio Button" - -#: includes/fields/class-acf-field-accordion.php:107 -msgid "" -"Define an endpoint for the previous accordion to stop. This accordion will " -"not be visible." -msgstr "" -"Προσδιορίστε ένα σημείο άκρου στο οποίο το προηγούμενο accordion κλείνει. " -"Αυτό δε θα είναι κάτι ορατό." - -#: includes/fields/class-acf-field-accordion.php:96 -msgid "Allow this accordion to open without closing others." -msgstr "Επιτρέψτε σε αυτό το accordion να ανοίγει χωρίς να κλείνουν τα άλλα." - -#: includes/fields/class-acf-field-accordion.php:95 -msgid "Multi-Expand" -msgstr "" - -#: includes/fields/class-acf-field-accordion.php:85 -msgid "Display this accordion as open on page load." -msgstr "Αυτό το accordion να είναι ανοιχτό κατά τη φόρτωση της σελίδας." - -#: includes/fields/class-acf-field-accordion.php:84 -msgid "Open" -msgstr "Άνοιγμα" - -#: includes/fields/class-acf-field-accordion.php:25 -msgid "Accordion" -msgstr "Ακορντεόν" - -#: includes/fields/class-acf-field-file.php:267 -#: includes/fields/class-acf-field-file.php:279 -msgid "Restrict which files can be uploaded" -msgstr "Περιορίστε τα είδη των αρχείων που επιτρέπονται για μεταφόρτωση" - -#: includes/fields/class-acf-field-file.php:220 -msgid "File ID" -msgstr "ID Αρχείου" - -#: includes/fields/class-acf-field-file.php:219 -msgid "File URL" -msgstr "URL Αρχείου" - -#: includes/fields/class-acf-field-file.php:218 -msgid "File Array" -msgstr "Array Αρχείων" - -#: includes/fields/class-acf-field-file.php:186 -msgid "Add File" -msgstr "Προσθήκη Αρχείου" - -#: includes/admin/tools/class-acf-admin-tool-import.php:156 -#: includes/fields/class-acf-field-file.php:186 -msgid "No file selected" -msgstr "Δεν επιλέχθηκε αρχείο" - -#: includes/fields/class-acf-field-file.php:150 -msgid "File name" -msgstr "Όνομα αρχείου" - -#: includes/fields/class-acf-field-file.php:63 -#: assets/build/js/acf-input.js:2474 assets/build/js/acf-input.js:2625 -msgid "Update File" -msgstr "Ενημέρωση Αρχείου" - -#: includes/fields/class-acf-field-file.php:62 -#: assets/build/js/acf-input.js:2473 assets/build/js/acf-input.js:2624 -msgid "Edit File" -msgstr "Επεξεργασία Αρχείου" - -#: includes/admin/tools/class-acf-admin-tool-import.php:58 -#: includes/fields/class-acf-field-file.php:61 -#: assets/build/js/acf-input.js:2447 assets/build/js/acf-input.js:2597 -msgid "Select File" -msgstr "Επιλογή Αρχείου" - -#: includes/fields/class-acf-field-file.php:25 -msgid "File" -msgstr "Αρχείο" - -#: includes/fields/class-acf-field-password.php:25 -msgid "Password" -msgstr "Συνθηματικό" - -#: includes/fields/class-acf-field-select.php:392 -msgid "Specify the value returned" -msgstr "Προσδιορίστε την επιστρεφόμενη τιμή" - -#: includes/fields/class-acf-field-select.php:461 -msgid "Use AJAX to lazy load choices?" -msgstr "Χρήση AJAX για τη φόρτωση των τιμών με καθυστέρηση;" - -#: includes/fields/class-acf-field-checkbox.php:362 -#: includes/fields/class-acf-field-select.php:381 -msgid "Enter each default value on a new line" -msgstr "Εισαγάγετε την κάθε προεπιλεγμένη τιμή σε μια νέα γραμμή" - -#: includes/fields/class-acf-field-select.php:252 includes/media.php:48 -#: assets/build/js/acf-input.js:6790 assets/build/js/acf-input.js:7266 -msgctxt "verb" -msgid "Select" -msgstr "Επιλέξτε" - -#: includes/fields/class-acf-field-select.php:121 -msgctxt "Select2 JS load_fail" -msgid "Loading failed" -msgstr "Η φόρτωση απέτυχε" - -#: includes/fields/class-acf-field-select.php:120 -msgctxt "Select2 JS searching" -msgid "Searching…" -msgstr "Αναζήτηση…" - -#: includes/fields/class-acf-field-select.php:119 -msgctxt "Select2 JS load_more" -msgid "Loading more results…" -msgstr "Φόρτωση περισσότερων αποτελεσμάτων…" - -#: includes/fields/class-acf-field-select.php:118 -msgctxt "Select2 JS selection_too_long_n" -msgid "You can only select %d items" -msgstr "Μπορείτε να επιλέξετε μόνο %d αντικείμενα" - -#: includes/fields/class-acf-field-select.php:117 -msgctxt "Select2 JS selection_too_long_1" -msgid "You can only select 1 item" -msgstr "Μπορείτε να επιλέξετε μόνο 1 αντικείμενο" - -#: includes/fields/class-acf-field-select.php:116 -msgctxt "Select2 JS input_too_long_n" -msgid "Please delete %d characters" -msgstr "Παρακαλούμε διαγράψτε %d χαρακτήρες" - -#: includes/fields/class-acf-field-select.php:115 -msgctxt "Select2 JS input_too_long_1" -msgid "Please delete 1 character" -msgstr "Παρακαλούμε διαγράψτε 1 χαρακτήρα" - -#: includes/fields/class-acf-field-select.php:114 -msgctxt "Select2 JS input_too_short_n" -msgid "Please enter %d or more characters" -msgstr "Παρακαλούμε εισαγάγετε %d ή περισσότερους χαρακτήρες" - -#: includes/fields/class-acf-field-select.php:113 -msgctxt "Select2 JS input_too_short_1" -msgid "Please enter 1 or more characters" -msgstr "Παρακαλούμε εισαγάγετε 1 ή περισσότερους χαρακτήρες" - -#: includes/fields/class-acf-field-select.php:112 -msgctxt "Select2 JS matches_0" -msgid "No matches found" -msgstr "Δε βρέθηκαν αποτελέσματα που να ταιριάζουν" - -#: includes/fields/class-acf-field-select.php:111 -msgctxt "Select2 JS matches_n" -msgid "%d results are available, use up and down arrow keys to navigate." -msgstr "" -"Υπάρχουν %d αποτελέσματα διαθέσιμα, χρησιμοποιήσετε τα πλήκτρα πάνω και κάτω " -"για να μεταβείτε σε αυτά." - -#: includes/fields/class-acf-field-select.php:110 -msgctxt "Select2 JS matches_1" -msgid "One result is available, press enter to select it." -msgstr "Ένα αποτέλεσμα είναι διαθέσιμο, πατήστε enter για να το επιλέξετε." - -#: includes/fields/class-acf-field-select.php:25 -#: includes/fields/class-acf-field-taxonomy.php:763 -msgctxt "noun" -msgid "Select" -msgstr "Επιλογή" - -#: includes/fields/class-acf-field-user.php:73 -msgid "User ID" -msgstr "ID Χρήστη" - -#: includes/fields/class-acf-field-user.php:72 -msgid "User Object" -msgstr "Object Χρήστη" - -#: includes/fields/class-acf-field-user.php:71 -msgid "User Array" -msgstr "Array Χρήστη" - -#: includes/fields/class-acf-field-user.php:59 -msgid "All user roles" -msgstr "Όλοι οι ρόλοι χρηστών" - -#: includes/fields/class-acf-field-user.php:51 -msgid "Filter by Role" -msgstr "" - -#: includes/fields/class-acf-field-user.php:15 includes/locations.php:101 -msgid "User" -msgstr "Χρήστης" - -#: includes/fields/class-acf-field-separator.php:25 -msgid "Separator" -msgstr "Διαχωριστικό" - -#: includes/fields/class-acf-field-color_picker.php:75 -msgid "Select Color" -msgstr "Επιλογή Χρώματος" - -#: includes/admin/post-types/admin-post-type.php:129 -#: includes/admin/post-types/admin-taxonomy.php:131 -#: includes/fields/class-acf-field-color_picker.php:73 -#: assets/build/js/acf-internal-post-type.js:72 -#: assets/build/js/acf-internal-post-type.js:86 -msgid "Default" -msgstr "Προεπιλογή" - -#: includes/admin/views/acf-post-type/advanced-settings.php:89 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:141 -#: includes/fields/class-acf-field-color_picker.php:71 -msgid "Clear" -msgstr "Καθαρισμός" - -#: includes/fields/class-acf-field-color_picker.php:25 -msgid "Color Picker" -msgstr "Επιλογέας Χρωμάτων" - -#: includes/fields/class-acf-field-date_time_picker.php:88 -msgctxt "Date Time Picker JS pmTextShort" -msgid "P" -msgstr "ΜΜ" - -#: includes/fields/class-acf-field-date_time_picker.php:87 -msgctxt "Date Time Picker JS pmText" -msgid "PM" -msgstr "ΜΜ" - -#: includes/fields/class-acf-field-date_time_picker.php:84 -msgctxt "Date Time Picker JS amTextShort" -msgid "A" -msgstr "ΠΜ" - -#: includes/fields/class-acf-field-date_time_picker.php:83 -msgctxt "Date Time Picker JS amText" -msgid "AM" -msgstr "ΠΜ" - -#: includes/fields/class-acf-field-date_time_picker.php:81 -msgctxt "Date Time Picker JS selectText" -msgid "Select" -msgstr "Επιλογή" - -#: includes/fields/class-acf-field-date_time_picker.php:80 -msgctxt "Date Time Picker JS closeText" -msgid "Done" -msgstr "Ολοκληρώθηκε" - -#: includes/fields/class-acf-field-date_time_picker.php:79 -msgctxt "Date Time Picker JS currentText" -msgid "Now" -msgstr "Τώρα" - -#: includes/fields/class-acf-field-date_time_picker.php:78 -msgctxt "Date Time Picker JS timezoneText" -msgid "Time Zone" -msgstr "Ζώνη Ώρας" - -#: includes/fields/class-acf-field-date_time_picker.php:77 -msgctxt "Date Time Picker JS microsecText" -msgid "Microsecond" -msgstr "Μικροδευτερόλεπτο" - -#: includes/fields/class-acf-field-date_time_picker.php:76 -msgctxt "Date Time Picker JS millisecText" -msgid "Millisecond" -msgstr "Χιλιοστό του δευτερολέπτου" - -#: includes/fields/class-acf-field-date_time_picker.php:75 -msgctxt "Date Time Picker JS secondText" -msgid "Second" -msgstr "Δευτερόλεπτο" - -#: includes/fields/class-acf-field-date_time_picker.php:74 -msgctxt "Date Time Picker JS minuteText" -msgid "Minute" -msgstr "Λεπτό" - -#: includes/fields/class-acf-field-date_time_picker.php:73 -msgctxt "Date Time Picker JS hourText" -msgid "Hour" -msgstr "Ώρα" - -#: includes/fields/class-acf-field-date_time_picker.php:72 -msgctxt "Date Time Picker JS timeText" -msgid "Time" -msgstr "Ώρα" - -#: includes/fields/class-acf-field-date_time_picker.php:71 -msgctxt "Date Time Picker JS timeOnlyTitle" -msgid "Choose Time" -msgstr "Επιλέξτε Ώρα" - -#: includes/fields/class-acf-field-date_time_picker.php:25 -msgid "Date Time Picker" -msgstr "Επιλογέας Ημερομηνίας και Ώρας" - -#: includes/fields/class-acf-field-accordion.php:106 -msgid "Endpoint" -msgstr "Endpoint" - -#: includes/admin/views/acf-field-group/options.php:130 -#: includes/fields/class-acf-field-tab.php:115 -msgid "Left aligned" -msgstr "Αριστερή στοίχιση" - -#: includes/admin/views/acf-field-group/options.php:129 -#: includes/fields/class-acf-field-tab.php:114 -msgid "Top aligned" -msgstr "Στοίχιση στην κορυφή" - -#: includes/fields/class-acf-field-tab.php:110 -msgid "Placement" -msgstr "Τοποθέτηση" - -#: includes/fields/class-acf-field-tab.php:26 -msgid "Tab" -msgstr "Καρτέλα" - -#: includes/fields/class-acf-field-url.php:162 -msgid "Value must be a valid URL" -msgstr "Η τιμή πρέπει να είναι ένα έγκυρο URL " - -#: includes/fields/class-acf-field-link.php:177 -msgid "Link URL" -msgstr "Σύνδεσμος URL" - -#: includes/fields/class-acf-field-link.php:176 -msgid "Link Array" -msgstr "Link Array" - -#: includes/fields/class-acf-field-link.php:145 -msgid "Opens in a new window/tab" -msgstr "Ανοίγει σε νέο παράθυρο/καρτέλα" - -#: includes/fields/class-acf-field-link.php:140 -msgid "Select Link" -msgstr "Επιλογή Συνδέσμου" - -#: includes/fields/class-acf-field-link.php:25 -msgid "Link" -msgstr "Σύνδεσμος" - -#: includes/fields/class-acf-field-email.php:25 -msgid "Email" -msgstr "Email" - -#: includes/fields/class-acf-field-number.php:188 -#: includes/fields/class-acf-field-range.php:217 -msgid "Step Size" -msgstr "Μέγεθος Βήματος" - -#: includes/fields/class-acf-field-number.php:158 -#: includes/fields/class-acf-field-range.php:195 -msgid "Maximum Value" -msgstr "Μέγιστη Τιμή" - -#: includes/fields/class-acf-field-number.php:148 -#: includes/fields/class-acf-field-range.php:184 -msgid "Minimum Value" -msgstr "Ελάχιστη Τιμή" - -#: includes/fields/class-acf-field-range.php:25 -msgid "Range" -msgstr "Εύρος" - -#: includes/fields/class-acf-field-button-group.php:175 -#: includes/fields/class-acf-field-checkbox.php:379 -#: includes/fields/class-acf-field-radio.php:220 -#: includes/fields/class-acf-field-select.php:399 -msgid "Both (Array)" -msgstr "Και τα δύο (Array)" - -#: includes/admin/views/acf-field-group/fields.php:52 -#: includes/fields/class-acf-field-button-group.php:174 -#: includes/fields/class-acf-field-checkbox.php:378 -#: includes/fields/class-acf-field-radio.php:219 -#: includes/fields/class-acf-field-select.php:398 -msgid "Label" -msgstr "Ετικέτα" - -#: includes/fields/class-acf-field-button-group.php:173 -#: includes/fields/class-acf-field-checkbox.php:377 -#: includes/fields/class-acf-field-radio.php:218 -#: includes/fields/class-acf-field-select.php:397 -msgid "Value" -msgstr "Τιμή" - -#: includes/fields/class-acf-field-button-group.php:222 -#: includes/fields/class-acf-field-checkbox.php:441 -#: includes/fields/class-acf-field-radio.php:292 -msgid "Vertical" -msgstr "Κατακόρυφα" - -#: includes/fields/class-acf-field-button-group.php:221 -#: includes/fields/class-acf-field-checkbox.php:442 -#: includes/fields/class-acf-field-radio.php:293 -msgid "Horizontal" -msgstr "Οριζόντια" - -#: includes/fields/class-acf-field-button-group.php:148 -#: includes/fields/class-acf-field-checkbox.php:352 -#: includes/fields/class-acf-field-radio.php:193 -#: includes/fields/class-acf-field-select.php:370 -msgid "red : Red" -msgstr "κόκκινο : Κόκκινο" - -#: includes/fields/class-acf-field-button-group.php:148 -#: includes/fields/class-acf-field-checkbox.php:352 -#: includes/fields/class-acf-field-radio.php:193 -#: includes/fields/class-acf-field-select.php:370 -msgid "For more control, you may specify both a value and label like this:" -msgstr "" -"Για μεγαλύτερο έλεγχο μπορείτε να δηλώσετε μια τιμή και μια ετικέτα ως εξής:" - -#: includes/fields/class-acf-field-button-group.php:148 -#: includes/fields/class-acf-field-checkbox.php:352 -#: includes/fields/class-acf-field-radio.php:193 -#: includes/fields/class-acf-field-select.php:370 -msgid "Enter each choice on a new line." -msgstr "Προσθέστε κάθε επιλογή σε μια νέα γραμμή." - -#: includes/fields/class-acf-field-button-group.php:147 -#: includes/fields/class-acf-field-checkbox.php:351 -#: includes/fields/class-acf-field-radio.php:192 -#: includes/fields/class-acf-field-select.php:369 -msgid "Choices" -msgstr "Επιλογές" - -#: includes/fields/class-acf-field-button-group.php:24 -msgid "Button Group" -msgstr "Ομάδα Κουμπιών" - -#: includes/fields/class-acf-field-button-group.php:194 -#: includes/fields/class-acf-field-page_link.php:538 -#: includes/fields/class-acf-field-post_object.php:448 -#: includes/fields/class-acf-field-radio.php:238 -#: includes/fields/class-acf-field-select.php:429 -#: includes/fields/class-acf-field-taxonomy.php:772 -#: includes/fields/class-acf-field-user.php:103 -msgid "Allow Null" -msgstr "" - -#: includes/fields/class-acf-field-page_link.php:263 -#: includes/fields/class-acf-field-post_object.php:257 -#: includes/fields/class-acf-field-taxonomy.php:930 -msgid "Parent" -msgstr "Γονέας" - -#: includes/fields/class-acf-field-wysiwyg.php:390 -msgid "TinyMCE will not be initialized until field is clicked" -msgstr "Ο TinyMCE δε θα αρχικοποιηθεί έως ότου ο χρήστης κλικάρει το πεδίο" - -#: includes/fields/class-acf-field-wysiwyg.php:389 -msgid "Delay Initialization" -msgstr "" - -#: includes/fields/class-acf-field-wysiwyg.php:378 -msgid "Show Media Upload Buttons" -msgstr "" - -#: includes/fields/class-acf-field-wysiwyg.php:362 -msgid "Toolbar" -msgstr "Γραμμή εργαλείων" - -#: includes/fields/class-acf-field-wysiwyg.php:354 -msgid "Text Only" -msgstr "Μόνο Κείμενο" - -#: includes/fields/class-acf-field-wysiwyg.php:353 -msgid "Visual Only" -msgstr "Μόνο Οπτικός" - -#: includes/fields/class-acf-field-wysiwyg.php:352 -msgid "Visual & Text" -msgstr "Οπτικός & Κείμενο" - -#: includes/fields/class-acf-field-wysiwyg.php:347 -msgid "Tabs" -msgstr "Καρτέλες" - -#: includes/fields/class-acf-field-wysiwyg.php:285 -msgid "Click to initialize TinyMCE" -msgstr "Κάνετε κλικ για να αρχικοποιηθεί ο TinyMCE" - -#: includes/fields/class-acf-field-wysiwyg.php:279 -msgctxt "Name for the Text editor tab (formerly HTML)" -msgid "Text" -msgstr "Κείμενο" - -#: includes/fields/class-acf-field-wysiwyg.php:278 -msgid "Visual" -msgstr "Οπτικός" - -#: includes/fields/class-acf-field-text.php:189 -#: includes/fields/class-acf-field-textarea.php:236 -msgid "Value must not exceed %d characters" -msgstr "Η τιμή πρέπει να μην ξεπερνά τους %d χαρακτήρες" - -#: includes/fields/class-acf-field-text.php:124 -#: includes/fields/class-acf-field-textarea.php:124 -msgid "Leave blank for no limit" -msgstr "Αφήστε κενό για να μην υπάρχει όριο" - -#: includes/fields/class-acf-field-text.php:123 -#: includes/fields/class-acf-field-textarea.php:123 -msgid "Character Limit" -msgstr "Όριο Χαρακτήρων" - -#: includes/fields/class-acf-field-email.php:158 -#: includes/fields/class-acf-field-number.php:209 -#: includes/fields/class-acf-field-password.php:105 -#: includes/fields/class-acf-field-range.php:239 -#: includes/fields/class-acf-field-text.php:164 -msgid "Appears after the input" -msgstr "Εμφανίζεται μετά το πεδίο εισαγωγής" - -#: includes/fields/class-acf-field-email.php:157 -#: includes/fields/class-acf-field-number.php:208 -#: includes/fields/class-acf-field-password.php:104 -#: includes/fields/class-acf-field-range.php:238 -#: includes/fields/class-acf-field-text.php:163 -msgid "Append" -msgstr "Προσάρτηση στο τέλος" - -#: includes/fields/class-acf-field-email.php:148 -#: includes/fields/class-acf-field-number.php:199 -#: includes/fields/class-acf-field-password.php:95 -#: includes/fields/class-acf-field-range.php:229 -#: includes/fields/class-acf-field-text.php:154 -msgid "Appears before the input" -msgstr "Εμφανίζεται πριν το πεδίο εισαγωγής" - -#: includes/fields/class-acf-field-email.php:147 -#: includes/fields/class-acf-field-number.php:198 -#: includes/fields/class-acf-field-password.php:94 -#: includes/fields/class-acf-field-range.php:228 -#: includes/fields/class-acf-field-text.php:153 -msgid "Prepend" -msgstr "Προσάρτηση στην αρχή" - -#: includes/fields/class-acf-field-email.php:138 -#: includes/fields/class-acf-field-number.php:179 -#: includes/fields/class-acf-field-password.php:85 -#: includes/fields/class-acf-field-text.php:144 -#: includes/fields/class-acf-field-textarea.php:156 -#: includes/fields/class-acf-field-url.php:122 -msgid "Appears within the input" -msgstr "Εμφανίζεται εντός του πεδίου εισαγωγής" - -#: includes/fields/class-acf-field-email.php:137 -#: includes/fields/class-acf-field-number.php:178 -#: includes/fields/class-acf-field-password.php:84 -#: includes/fields/class-acf-field-text.php:143 -#: includes/fields/class-acf-field-textarea.php:155 -#: includes/fields/class-acf-field-url.php:121 -msgid "Placeholder Text" -msgstr "Υποκατάστατο Κείμενο" - -#: includes/fields/class-acf-field-button-group.php:158 -#: includes/fields/class-acf-field-email.php:118 -#: includes/fields/class-acf-field-number.php:129 -#: includes/fields/class-acf-field-radio.php:203 -#: includes/fields/class-acf-field-range.php:165 -#: includes/fields/class-acf-field-text.php:104 -#: includes/fields/class-acf-field-textarea.php:104 -#: includes/fields/class-acf-field-url.php:102 -#: includes/fields/class-acf-field-wysiwyg.php:312 -msgid "Appears when creating a new post" -msgstr "Εμφανίζεται κατά τη δημιουργία νέου post" - -#: includes/fields/class-acf-field-text.php:25 -msgid "Text" -msgstr "Κείμενο" - -#: includes/fields/class-acf-field-relationship.php:794 -msgid "%1$s requires at least %2$s selection" -msgid_plural "%1$s requires at least %2$s selections" -msgstr[0] "Το %1$s απαιτεί τουλάχιστον %2$s επιλογή" -msgstr[1] "Το %1$s απαιτεί τουλάχιστον %2$s επιλογές" - -#: includes/fields/class-acf-field-post_object.php:417 -#: includes/fields/class-acf-field-relationship.php:644 -msgid "Post ID" -msgstr "Post ID" - -#: includes/fields/class-acf-field-post_object.php:17 -#: includes/fields/class-acf-field-post_object.php:416 -#: includes/fields/class-acf-field-relationship.php:643 -msgid "Post Object" -msgstr "Post Object" - -#: includes/fields/class-acf-field-relationship.php:676 -msgid "Maximum Posts" -msgstr "" - -#: includes/fields/class-acf-field-relationship.php:666 -msgid "Minimum Posts" -msgstr "" - -#: includes/admin/views/acf-field-group/options.php:183 -#: includes/admin/views/acf-post-type/advanced-settings.php:29 -#: includes/fields/class-acf-field-relationship.php:701 -msgid "Featured Image" -msgstr "Επιλεγμένη Εικόνα" - -#: includes/fields/class-acf-field-relationship.php:697 -msgid "Selected elements will be displayed in each result" -msgstr "Τα επιλεγμένα αντικείμενα θα εμφανίζονται σε κάθε αποτέλεσμα" - -#: includes/fields/class-acf-field-relationship.php:696 -msgid "Elements" -msgstr "Αντικείμενα" - -#: includes/fields/class-acf-field-relationship.php:630 -#: includes/fields/class-acf-field-taxonomy.php:20 -#: includes/fields/class-acf-field-taxonomy.php:692 -#: includes/locations/class-acf-location-taxonomy.php:22 -msgid "Taxonomy" -msgstr "Ταξινομία" - -#: includes/fields/class-acf-field-relationship.php:629 -#: includes/locations/class-acf-location-post-type.php:22 -#: includes/post-types/class-acf-post-type.php:92 -msgid "Post Type" -msgstr "Τύπος Άρθρου" - -#: includes/fields/class-acf-field-relationship.php:623 -msgid "Filters" -msgstr "Φίλτρα" - -#: includes/fields/class-acf-field-page_link.php:499 -#: includes/fields/class-acf-field-post_object.php:404 -#: includes/fields/class-acf-field-relationship.php:616 -msgid "All taxonomies" -msgstr "Όλες οι Ταξινομίες" - -#: includes/fields/class-acf-field-page_link.php:491 -#: includes/fields/class-acf-field-post_object.php:396 -#: includes/fields/class-acf-field-relationship.php:608 -msgid "Filter by Taxonomy" -msgstr "Φιλτράρισμα κατά Ταξινομία" - -#: includes/fields/class-acf-field-page_link.php:469 -#: includes/fields/class-acf-field-post_object.php:374 -#: includes/fields/class-acf-field-relationship.php:586 -msgid "All post types" -msgstr "Όλοι οι τύποι άρθρων" - -#: includes/fields/class-acf-field-page_link.php:461 -#: includes/fields/class-acf-field-post_object.php:366 -#: includes/fields/class-acf-field-relationship.php:578 -msgid "Filter by Post Type" -msgstr "Φιλτράρισμα κατά Τύπο Άρθρου" - -#: includes/fields/class-acf-field-relationship.php:476 -msgid "Search..." -msgstr "Αναζήτηση..." - -#: includes/fields/class-acf-field-relationship.php:406 -msgid "Select taxonomy" -msgstr "Επιλογή ταξινομίας" - -#: includes/fields/class-acf-field-relationship.php:397 -msgid "Select post type" -msgstr "Επιλογή τύπου άρθρου" - -#: includes/fields/class-acf-field-relationship.php:61 -#: assets/build/js/acf-input.js:3930 assets/build/js/acf-input.js:4214 -msgid "No matches found" -msgstr "Δεν βρέθηκαν αντιστοιχίες" - -#: includes/fields/class-acf-field-relationship.php:60 -#: assets/build/js/acf-input.js:3913 assets/build/js/acf-input.js:4193 -msgid "Loading" -msgstr "Φόρτωση" - -#: includes/fields/class-acf-field-relationship.php:59 -#: assets/build/js/acf-input.js:3818 assets/build/js/acf-input.js:4084 -msgid "Maximum values reached ( {max} values )" -msgstr "Αγγίξατε το μέγιστο πλήθος τιμών ( {max} τιμές )" - -#: includes/fields/class-acf-field-relationship.php:17 -msgid "Relationship" -msgstr "Σχέση" - -#: includes/fields/class-acf-field-file.php:291 -#: includes/fields/class-acf-field-image.php:317 -msgid "Comma separated list. Leave blank for all types" -msgstr "Λίστα διαχωρισμένη με κόμμα. Αφήστε κενό για όλους τους τύπους" - -#: includes/fields/class-acf-field-file.php:290 -#: includes/fields/class-acf-field-image.php:316 -msgid "Allowed File Types" -msgstr "" - -#: includes/fields/class-acf-field-file.php:278 -#: includes/fields/class-acf-field-image.php:280 -msgid "Maximum" -msgstr "Μέγιστο" - -#: includes/fields/class-acf-field-file.php:154 -#: includes/fields/class-acf-field-file.php:270 -#: includes/fields/class-acf-field-file.php:282 -#: includes/fields/class-acf-field-image.php:271 -#: includes/fields/class-acf-field-image.php:307 -msgid "File size" -msgstr "Μέγεθος αρχείου" - -#: includes/fields/class-acf-field-image.php:245 -#: includes/fields/class-acf-field-image.php:281 -msgid "Restrict which images can be uploaded" -msgstr "Περιορίστε ποιες εικόνες μπορούν να μεταφορτωθούν" - -#: includes/fields/class-acf-field-file.php:266 -#: includes/fields/class-acf-field-image.php:244 -msgid "Minimum" -msgstr "Ελάχιστο" - -#: includes/fields/class-acf-field-file.php:235 -#: includes/fields/class-acf-field-image.php:210 -msgid "Uploaded to post" -msgstr "Μεταφορτώθηκε στο άρθρο" - -#: includes/fields/class-acf-field-file.php:234 -#: includes/fields/class-acf-field-image.php:209 -#: includes/locations/class-acf-location-attachment.php:73 -#: includes/locations/class-acf-location-comment.php:61 -#: includes/locations/class-acf-location-nav-menu.php:74 -#: includes/locations/class-acf-location-taxonomy.php:63 -#: includes/locations/class-acf-location-user-form.php:71 -#: includes/locations/class-acf-location-user-role.php:78 -#: includes/locations/class-acf-location-widget.php:65 -msgid "All" -msgstr "Όλα" - -#: includes/fields/class-acf-field-file.php:229 -#: includes/fields/class-acf-field-image.php:204 -msgid "Limit the media library choice" -msgstr "Περιορισμός της επιλογής βιβλιοθήκης πολυμέσων" - -#: includes/fields/class-acf-field-file.php:228 -#: includes/fields/class-acf-field-image.php:203 -msgid "Library" -msgstr "Βιβλιοθήκη" - -#: includes/fields/class-acf-field-image.php:336 -msgid "Preview Size" -msgstr "Μέγεθος Προεπισκόπησης" - -#: includes/fields/class-acf-field-image.php:195 -msgid "Image ID" -msgstr "Image ID" - -#: includes/fields/class-acf-field-image.php:194 -msgid "Image URL" -msgstr "URL Εικόνας" - -#: includes/fields/class-acf-field-image.php:193 -msgid "Image Array" -msgstr "Image Array" - -#: includes/fields/class-acf-field-button-group.php:168 -#: includes/fields/class-acf-field-checkbox.php:372 -#: includes/fields/class-acf-field-file.php:213 -#: includes/fields/class-acf-field-link.php:171 -#: includes/fields/class-acf-field-radio.php:213 -msgid "Specify the returned value on front end" -msgstr "Προσδιορίστε την επιστρεφόμενη τιμή παρουσίασης" - -#: includes/fields/class-acf-field-button-group.php:167 -#: includes/fields/class-acf-field-checkbox.php:371 -#: includes/fields/class-acf-field-file.php:212 -#: includes/fields/class-acf-field-link.php:170 -#: includes/fields/class-acf-field-radio.php:212 -#: includes/fields/class-acf-field-taxonomy.php:736 -msgid "Return Value" -msgstr "Επιστρεφόμενη Τιμή" - -#: includes/fields/class-acf-field-image.php:162 -msgid "Add Image" -msgstr "Προσθήκη Εικόνας" - -#: includes/fields/class-acf-field-image.php:162 -msgid "No image selected" -msgstr "Δεν επιλέχθηκε εικόνα" - -#: includes/assets.php:352 includes/fields/class-acf-field-file.php:162 -#: includes/fields/class-acf-field-image.php:142 -#: includes/fields/class-acf-field-link.php:145 assets/build/js/acf.js:1563 -#: assets/build/js/acf.js:1657 -msgid "Remove" -msgstr "Αφαίρεση" - -#: includes/admin/views/acf-field-group/field.php:76 -#: includes/fields/class-acf-field-file.php:160 -#: includes/fields/class-acf-field-image.php:140 -#: includes/fields/class-acf-field-link.php:145 -msgid "Edit" -msgstr "Επεξεργασία" - -#: includes/fields/class-acf-field-image.php:70 includes/media.php:55 -#: assets/build/js/acf-input.js:6837 assets/build/js/acf-input.js:7320 -msgid "All images" -msgstr "Όλες οι εικόνες" - -#: includes/fields/class-acf-field-image.php:69 -#: assets/build/js/acf-input.js:3181 assets/build/js/acf-input.js:3399 -msgid "Update Image" -msgstr "Ενημέρωση Εικόνας" - -#: includes/fields/class-acf-field-image.php:68 -#: assets/build/js/acf-input.js:3180 assets/build/js/acf-input.js:3398 -msgid "Edit Image" -msgstr "Επεξεργασία Εικόνας" - -#: includes/fields/class-acf-field-image.php:67 -#: assets/build/js/acf-input.js:3156 assets/build/js/acf-input.js:3373 -msgid "Select Image" -msgstr "Επιλογή Εικόνας" - -#: includes/fields/class-acf-field-image.php:25 -msgid "Image" -msgstr "Εικόνα" - -#: includes/fields/class-acf-field-message.php:125 -msgid "Allow HTML markup to display as visible text instead of rendering" -msgstr "" -"Να επιτρέπεται η HTML markup να παρουσιαστεί ως ορατό κείμενο αντί να " -"αποδοθεί" - -#: includes/fields/class-acf-field-message.php:124 -msgid "Escape HTML" -msgstr "Escape HTML" - -#: includes/fields/class-acf-field-message.php:116 -#: includes/fields/class-acf-field-textarea.php:172 -msgid "No Formatting" -msgstr "Χωρίς Μορφοποίηση" - -#: includes/fields/class-acf-field-message.php:115 -#: includes/fields/class-acf-field-textarea.php:171 -msgid "Automatically add <br>" -msgstr "Αυτόματη προσθήκη <br>" - -#: includes/fields/class-acf-field-message.php:114 -#: includes/fields/class-acf-field-textarea.php:170 -msgid "Automatically add paragraphs" -msgstr "Αυτόματη προσθήκη παραγράφων" - -#: includes/fields/class-acf-field-message.php:110 -#: includes/fields/class-acf-field-textarea.php:166 -msgid "Controls how new lines are rendered" -msgstr "Ελέγχει πώς αποδίδονται οι αλλαγές γραμμής" - -#: includes/fields/class-acf-field-message.php:109 -#: includes/fields/class-acf-field-textarea.php:165 -msgid "New Lines" -msgstr "Αλλαγές Γραμμής" - -#: includes/fields/class-acf-field-date_picker.php:232 -#: includes/fields/class-acf-field-date_time_picker.php:220 -msgid "Week Starts On" -msgstr "Η Εβδομάδα Αρχίζει Την" - -#: includes/fields/class-acf-field-date_picker.php:201 -msgid "The format used when saving a value" -msgstr "Η μορφή που χρησιμοποιείται στην αποθήκευση μιας τιμής" - -#: includes/fields/class-acf-field-date_picker.php:200 -msgid "Save Format" -msgstr "Μορφή Αποθήκευσης" - -#: includes/fields/class-acf-field-date_picker.php:67 -msgctxt "Date Picker JS weekHeader" -msgid "Wk" -msgstr "ΣΚ" - -#: includes/fields/class-acf-field-date_picker.php:66 -msgctxt "Date Picker JS prevText" -msgid "Prev" -msgstr "Προηγούμενο" - -#: includes/fields/class-acf-field-date_picker.php:65 -msgctxt "Date Picker JS nextText" -msgid "Next" -msgstr "Επόμενο" - -#: includes/fields/class-acf-field-date_picker.php:64 -msgctxt "Date Picker JS currentText" -msgid "Today" -msgstr "Σήμερα" - -#: includes/fields/class-acf-field-date_picker.php:63 -msgctxt "Date Picker JS closeText" -msgid "Done" -msgstr "Ολοκλήρωση" - -#: includes/fields/class-acf-field-date_picker.php:25 -msgid "Date Picker" -msgstr "Επιλογέας Ημερομηνίας" - -#: includes/fields/class-acf-field-image.php:248 -#: includes/fields/class-acf-field-image.php:284 -#: includes/fields/class-acf-field-oembed.php:268 -msgid "Width" -msgstr "Πλάτος" - -#: includes/fields/class-acf-field-oembed.php:265 -#: includes/fields/class-acf-field-oembed.php:277 -msgid "Embed Size" -msgstr "Διαστάσεις Embed" - -#: includes/fields/class-acf-field-oembed.php:222 -msgid "Enter URL" -msgstr "Εισάγετε URL" - -#: includes/fields/class-acf-field-oembed.php:25 -msgid "oEmbed" -msgstr "oEmbed" - -#: includes/fields/class-acf-field-true_false.php:184 -msgid "Text shown when inactive" -msgstr "Κείμενο που εμφανίζεται όταν είναι ανενεργό" - -#: includes/fields/class-acf-field-true_false.php:183 -msgid "Off Text" -msgstr "Ανενεργό Κείμενο" - -#: includes/fields/class-acf-field-true_false.php:168 -msgid "Text shown when active" -msgstr "Κείμενο που εμφανίζεται όταν είναι ενεργό" - -#: includes/fields/class-acf-field-true_false.php:167 -msgid "On Text" -msgstr "Ενεργό Κείμενο" - -#: includes/fields/class-acf-field-select.php:450 -#: includes/fields/class-acf-field-true_false.php:199 -msgid "Stylized UI" -msgstr "Στυλιζαρισμένο" - -#: includes/fields/class-acf-field-button-group.php:157 -#: includes/fields/class-acf-field-checkbox.php:361 -#: includes/fields/class-acf-field-color_picker.php:156 -#: includes/fields/class-acf-field-email.php:117 -#: includes/fields/class-acf-field-number.php:128 -#: includes/fields/class-acf-field-radio.php:202 -#: includes/fields/class-acf-field-range.php:164 -#: includes/fields/class-acf-field-select.php:380 -#: includes/fields/class-acf-field-text.php:103 -#: includes/fields/class-acf-field-textarea.php:103 -#: includes/fields/class-acf-field-true_false.php:147 -#: includes/fields/class-acf-field-url.php:101 -#: includes/fields/class-acf-field-wysiwyg.php:311 -msgid "Default Value" -msgstr "Προεπιλεγμένη Τιμή" - -#: includes/fields/class-acf-field-true_false.php:138 -msgid "Displays text alongside the checkbox" -msgstr "Εμφανίζει κείμενο δίπλα στο πεδίο επιλογής" - -#: includes/fields/class-acf-field-message.php:26 -#: includes/fields/class-acf-field-message.php:99 -#: includes/fields/class-acf-field-true_false.php:137 -msgid "Message" -msgstr "Μήνυμα" - -#: includes/assets.php:351 includes/fields/class-acf-field-true_false.php:86 -#: includes/fields/class-acf-field-true_false.php:187 -#: assets/build/js/acf.js:1740 assets/build/js/acf.js:1857 -msgid "No" -msgstr "Όχι" - -#: includes/assets.php:350 includes/fields/class-acf-field-true_false.php:83 -#: includes/fields/class-acf-field-true_false.php:171 -#: assets/build/js/acf.js:1739 assets/build/js/acf.js:1856 -msgid "Yes" -msgstr "Ναι" - -#: includes/fields/class-acf-field-true_false.php:25 -msgid "True / False" -msgstr "True / False" - -#: includes/fields/class-acf-field-group.php:474 -msgid "Row" -msgstr "Γραμμή" - -#: includes/fields/class-acf-field-group.php:473 -msgid "Table" -msgstr "Πίνακας" - -#: includes/admin/post-types/admin-field-group.php:140 -#: includes/fields/class-acf-field-group.php:472 -msgid "Block" -msgstr "Μπλοκ" - -#: includes/fields/class-acf-field-group.php:467 -msgid "Specify the style used to render the selected fields" -msgstr "" -"Επιλογή του στυλ που θα χρησιμοποιηθεί για την εμφάνιση των επιλεγμένων " -"πεδίων" - -#: includes/fields.php:356 includes/fields/class-acf-field-button-group.php:215 -#: includes/fields/class-acf-field-checkbox.php:435 -#: includes/fields/class-acf-field-group.php:466 -#: includes/fields/class-acf-field-radio.php:286 -msgid "Layout" -msgstr "Διάταξη" - -#: includes/fields/class-acf-field-group.php:450 -msgid "Sub Fields" -msgstr "Υποπεδία" - -#: includes/fields/class-acf-field-group.php:25 -msgid "Group" -msgstr "Ομάδα" - -#: includes/fields/class-acf-field-google-map.php:235 -msgid "Customize the map height" -msgstr "Τροποποίηση ύψους χάρτη" - -#: includes/fields/class-acf-field-google-map.php:234 -#: includes/fields/class-acf-field-image.php:259 -#: includes/fields/class-acf-field-image.php:295 -#: includes/fields/class-acf-field-oembed.php:280 -msgid "Height" -msgstr "Ύψος" - -#: includes/fields/class-acf-field-google-map.php:223 -msgid "Set the initial zoom level" -msgstr "Ορισμός αρχικού επιπέδου μεγέθυνσης" - -#: includes/fields/class-acf-field-google-map.php:222 -msgid "Zoom" -msgstr "Μεγέθυνση" - -#: includes/fields/class-acf-field-google-map.php:196 -#: includes/fields/class-acf-field-google-map.php:209 -msgid "Center the initial map" -msgstr "Κεντράρισμα αρχικού χάρτη" - -#: includes/fields/class-acf-field-google-map.php:195 -#: includes/fields/class-acf-field-google-map.php:208 -msgid "Center" -msgstr "Κεντράρισμα" - -#: includes/fields/class-acf-field-google-map.php:163 -msgid "Search for address..." -msgstr "Αναζήτηση διεύθυνσης..." - -#: includes/fields/class-acf-field-google-map.php:160 -msgid "Find current location" -msgstr "Εύρεση τρέχουσας τοποθεσίας" - -#: includes/fields/class-acf-field-google-map.php:159 -msgid "Clear location" -msgstr "Καθαρισμός τοποθεσίας" - -#: includes/fields/class-acf-field-google-map.php:158 -#: includes/fields/class-acf-field-relationship.php:628 -msgid "Search" -msgstr "Αναζήτηση" - -#: includes/fields/class-acf-field-google-map.php:63 -#: assets/build/js/acf-input.js:2840 assets/build/js/acf-input.js:3026 -msgid "Sorry, this browser does not support geolocation" -msgstr "" -"Λυπούμαστε, αυτός ο περιηγητής δεν υποστηρίζει λειτουργία γεωεντοπισμού" - -#: includes/fields/class-acf-field-google-map.php:25 -msgid "Google Map" -msgstr "Χάρτης Google" - -#: includes/fields/class-acf-field-date_picker.php:212 -#: includes/fields/class-acf-field-date_time_picker.php:201 -#: includes/fields/class-acf-field-time_picker.php:132 -msgid "The format returned via template functions" -msgstr "Ο τύπος που επιστρέφεται μέσω των template functions" - -#: includes/fields/class-acf-field-color_picker.php:180 -#: includes/fields/class-acf-field-date_picker.php:211 -#: includes/fields/class-acf-field-date_time_picker.php:200 -#: includes/fields/class-acf-field-image.php:187 -#: includes/fields/class-acf-field-post_object.php:411 -#: includes/fields/class-acf-field-relationship.php:638 -#: includes/fields/class-acf-field-select.php:391 -#: includes/fields/class-acf-field-time_picker.php:131 -#: includes/fields/class-acf-field-user.php:66 -msgid "Return Format" -msgstr "Επιστρεφόμενος Τύπος" - -#: includes/fields/class-acf-field-date_picker.php:190 -#: includes/fields/class-acf-field-date_picker.php:221 -#: includes/fields/class-acf-field-date_time_picker.php:192 -#: includes/fields/class-acf-field-date_time_picker.php:210 -#: includes/fields/class-acf-field-time_picker.php:123 -#: includes/fields/class-acf-field-time_picker.php:139 -msgid "Custom:" -msgstr "Προσαρμοσμένο:" - -#: includes/fields/class-acf-field-date_picker.php:182 -#: includes/fields/class-acf-field-date_time_picker.php:183 -#: includes/fields/class-acf-field-time_picker.php:116 -msgid "The format displayed when editing a post" -msgstr "Ο τύπος που εμφανίζεται κατά την επεξεργασία ενός post" - -#: includes/fields/class-acf-field-date_picker.php:181 -#: includes/fields/class-acf-field-date_time_picker.php:182 -#: includes/fields/class-acf-field-time_picker.php:115 -msgid "Display Format" -msgstr "Μορφή Εμφάνισης" - -#: includes/fields/class-acf-field-time_picker.php:25 -msgid "Time Picker" -msgstr "Επιλογέας Ώρας" - -#. translators: counts for inactive field groups -#: acf.php:503 -msgid "Inactive (%s)" -msgid_plural "Inactive (%s)" -msgstr[0] "Ανενεργό (%s)" -msgstr[1] "Ανενεργά (%s)" - -#: acf.php:462 -msgid "No Fields found in Trash" -msgstr "Δεν βρέθηκαν Πεδία στα Διεγραμμένα" - -#: acf.php:461 -msgid "No Fields found" -msgstr "Δεν βρέθηκαν Πεδία" - -#: acf.php:460 -msgid "Search Fields" -msgstr "Αναζήτηση Πεδίων" - -#: acf.php:459 -msgid "View Field" -msgstr "Προβολή Πεδίων" - -#: acf.php:458 includes/admin/views/acf-field-group/fields.php:115 -msgid "New Field" -msgstr "Νέο Πεδίο" - -#: acf.php:457 -msgid "Edit Field" -msgstr "Επεξεργασία Πεδίου" - -#: acf.php:456 -msgid "Add New Field" -msgstr "Προσθήκη Νέου Πεδίου" - -#: acf.php:454 -msgid "Field" -msgstr "Πεδίο" - -#: acf.php:453 includes/admin/post-types/admin-field-group.php:163 -#: includes/admin/post-types/admin-field-groups.php:119 -#: includes/admin/views/acf-field-group/fields.php:32 -msgid "Fields" -msgstr "Πεδία" - -#: acf.php:428 -msgid "No Field Groups found in Trash" -msgstr "Δεν βρέθηκαν Ομάδες Πεδίων στα Διεγραμμένα" - -#: acf.php:427 -msgid "No Field Groups found" -msgstr "Δεν βρέθηκαν Ομάδες Πεδίων" - -#: acf.php:426 -msgid "Search Field Groups" -msgstr "Αναζήτηση Ομάδων Πεδίων " - -#: acf.php:425 -msgid "View Field Group" -msgstr "Προβολή Ομάδας Πεδίων" - -#: acf.php:424 -msgid "New Field Group" -msgstr "Νέα Ομάδα Πεδίων" - -#: acf.php:423 -msgid "Edit Field Group" -msgstr "Επεξεργασίας Ομάδας Πεδίων" - -#: acf.php:422 -msgid "Add New Field Group" -msgstr "Προσθήκη Νέας Ομάδας Πεδίων" - -#: acf.php:421 acf.php:455 -#: includes/admin/views/acf-post-type/advanced-settings.php:219 -#: includes/admin/views/acf-post-type/advanced-settings.php:221 -#: includes/post-types/class-acf-post-type.php:93 -#: includes/post-types/class-acf-taxonomy.php:92 -msgid "Add New" -msgstr "Προσθήκη Νέου" - -#: acf.php:420 -msgid "Field Group" -msgstr "Ομάδα Πεδίου" - -#: acf.php:419 includes/admin/post-types/admin-field-groups.php:78 -#: includes/admin/post-types/admin-post-types.php:138 -#: includes/admin/post-types/admin-taxonomies.php:138 -msgid "Field Groups" -msgstr "Ομάδες Πεδίων" - -#. Description of the plugin -msgid "Customize WordPress with powerful, professional and intuitive fields." -msgstr "Προσαρμόστε το WordPress με ισχυρά, επαγγελματικά και εύχρηστα πεδία." - -#. Plugin URI of the plugin -msgid "https://www.advancedcustomfields.com" -msgstr "https://www.advancedcustomfields.com" - -#. Plugin Name of the plugin -#: acf.php:94 -msgid "Advanced Custom Fields" -msgstr "Advanced Custom Fields" diff --git a/lang/acf-en_CA.mo b/lang/acf-en_CA.mo deleted file mode 100644 index b61b5eb..0000000 Binary files a/lang/acf-en_CA.mo and /dev/null differ diff --git a/lang/acf-en_CA.po b/lang/acf-en_CA.po deleted file mode 100644 index 94776e4..0000000 --- a/lang/acf-en_CA.po +++ /dev/null @@ -1,5583 +0,0 @@ -# Advanced Custom Fields Translations are a combination of translate.wordpress.org contributions, -# combined with user contributed strings for the PRO version. -# Translations from translate.wordpress.org take priority over translations in this file. -# translate.wordpress.org contributions are synced at the time of each release. -# -# If you would like to contribute translations, please visit -# https://translate.wordpress.org/projects/wp-plugins/advanced-custom-fields/stable/ -# -# For additional ACF PRO strings, please submit a pull request over on the ACF GitHub repo at -# http://github.com/advancedcustomfields/acf using the .pot (and any existing .po) files in /lang/pro/ -# -# This file is distributed under the same license as Advanced Custom Fields. -msgid "" -msgstr "" -"PO-Revision-Date: 2023-11-28T09:14:32+00:00\n" -"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n" -"Language: en_CA\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: gettext\n" -"Project-Id-Version: Advanced Custom Fields\n" - -#: includes/admin/views/global/navigation.php:221 -msgid "Renew ACF PRO License" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:17 -msgid "Renew License" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:14 -msgid "Manage License" -msgstr "" - -#: includes/admin/views/acf-field-group/options.php:102 -msgid "'High' position not supported in the Block Editor" -msgstr "" - -#: includes/admin/views/options-page-preview.php:30 -msgid "Upgrade to ACF PRO" -msgstr "" - -#. translators: %s URL to ACF options pages documentation -#: includes/admin/views/options-page-preview.php:7 -msgid "" -"ACF options pages are custom admin " -"pages for managing global settings via fields. You can create multiple pages " -"and sub-pages." -msgstr "" - -#: includes/admin/views/global/header.php:35 -msgid "Add Options Page" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:703 -msgid "In the editor used as the placeholder of the title." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:702 -msgid "Title Placeholder" -msgstr "" - -#: includes/admin/views/global/navigation.php:97 -msgid "4 Months Free" -msgstr "" - -#. translators: %s - A singular label for a post type or taxonomy. -#: includes/admin/views/global/form-top.php:56 -msgid " (Duplicated from %s)" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:298 -msgid "Select Options Pages" -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:107 -msgid "Duplicate taxonomy" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:106 -#: includes/admin/post-types/admin-taxonomy.php:106 -msgid "Create taxonomy" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:105 -msgid "Duplicate post type" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:104 -#: includes/admin/post-types/admin-taxonomy.php:108 -msgid "Create post type" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:103 -#: includes/admin/post-types/admin-taxonomy.php:105 -msgid "Link field groups" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:102 -#: includes/admin/post-types/admin-taxonomy.php:104 -msgid "Add fields" -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:121 -#: assets/build/js/acf-field-group.js:2753 -#: assets/build/js/acf-field-group.js:3236 -msgid "This Field" -msgstr "" - -#: includes/admin/admin.php:267 -msgid "ACF PRO" -msgstr "" - -#: includes/admin/admin.php:265 -msgid "Feedback" -msgstr "" - -#: includes/admin/admin.php:263 -msgid "Support" -msgstr "" - -#. translators: This text is prepended by a link to ACF's website, and appended -#. by a link to WP Engine's website. -#: includes/admin/admin.php:238 -msgid "is developed and maintained by" -msgstr "" - -#. translators: %s - either "post type" or "taxonomy" -#: includes/admin/admin-internal-post-type.php:321 -msgid "Add this %s to the location rules of the selected field groups." -msgstr "" - -#. translators: %s the URL to ACF's bidirectional relationship documentation -#: includes/acf-bidirectional-functions.php:271 -msgid "" -"Enabling the bidirectional setting allows you to update a value in the " -"target fields for each value selected for this field, adding or removing the " -"Post ID, Taxonomy ID or User ID of the item being updated. For more " -"information, please read the documentation." -msgstr "" - -#: includes/acf-bidirectional-functions.php:247 -msgid "" -"Select field(s) to store the reference back to the item being updated. You " -"may select this field. Target fields must be compatible with where this " -"field is being displayed. For example, if this field is displayed on a " -"Taxonomy, your target field should be of type Taxonomy" -msgstr "" - -#: includes/acf-bidirectional-functions.php:246 -msgid "Target Field" -msgstr "" - -#: includes/acf-bidirectional-functions.php:220 -msgid "Update a field on the selected values, referencing back to this ID" -msgstr "" - -#: includes/acf-bidirectional-functions.php:219 -msgid "Bidirectional" -msgstr "" - -#. translators: %s A field type name, such as "Relationship" -#: includes/acf-bidirectional-functions.php:192 -msgid "%s Field" -msgstr "" - -#: includes/fields/class-acf-field-page_link.php:517 -#: includes/fields/class-acf-field-post_object.php:426 -#: includes/fields/class-acf-field-select.php:407 -#: includes/fields/class-acf-field-user.php:82 -msgid "Select Multiple" -msgstr "" - -#: includes/admin/views/global/navigation.php:233 -msgid "WP Engine logo" -msgstr "" - -#: includes/admin/views/acf-taxonomy/basic-settings.php:58 -msgid "Lower case letters, underscores and dashes only, Max 32 characters." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1136 -msgid "The capability name for assigning terms of this taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1135 -msgid "Assign Terms Capability" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1119 -msgid "The capability name for deleting terms of this taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1118 -msgid "Delete Terms Capability" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1102 -msgid "The capability name for editing terms of this taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1101 -msgid "Edit Terms Capability" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1085 -msgid "The capability name for managing terms of this taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1084 -msgid "Manage Terms Capability" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:886 -msgid "" -"Sets whether posts should be excluded from search results and taxonomy " -"archive pages." -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:74 -msgid "More Tools from WP Engine" -msgstr "" - -#. translators: %s - WP Engine logo -#: includes/admin/views/acf-field-group/pro-features.php:69 -msgid "Built for those that build with WordPress, by the team at %s" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:6 -msgid "View Pricing & Upgrade" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:3 -#: includes/admin/views/options-page-preview.php:29 -msgid "Learn More" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:28 -msgid "" -"Speed up your workflow and develop better websites with features like ACF " -"Blocks and Options Pages, and sophisticated field types like Repeater, " -"Flexible Content, Clone, and Gallery." -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:2 -msgid "Unlock Advanced Features and Build Even More with ACF PRO" -msgstr "" - -#. translators: %s - singular label of post type/taxonomy, i.e. "Movie"/"Genre" -#: includes/admin/views/global/form-top.php:19 -msgid "%s fields" -msgstr "" - -#: includes/admin/post-types/admin-taxonomies.php:293 -msgid "No terms" -msgstr "" - -#: includes/admin/post-types/admin-taxonomies.php:266 -msgid "No post types" -msgstr "" - -#: includes/admin/post-types/admin-post-types.php:289 -msgid "No posts" -msgstr "" - -#: includes/admin/post-types/admin-post-types.php:263 -msgid "No taxonomies" -msgstr "" - -#: includes/admin/post-types/admin-post-types.php:208 -#: includes/admin/post-types/admin-taxonomies.php:208 -msgid "No field groups" -msgstr "" - -#: includes/admin/post-types/admin-field-groups.php:281 -msgid "No fields" -msgstr "" - -#: includes/admin/post-types/admin-field-groups.php:154 -#: includes/admin/post-types/admin-post-types.php:172 -#: includes/admin/post-types/admin-taxonomies.php:172 -msgid "No description" -msgstr "" - -#: includes/fields/class-acf-field-page_link.php:484 -#: includes/fields/class-acf-field-post_object.php:389 -#: includes/fields/class-acf-field-relationship.php:601 -msgid "Any post status" -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:284 -msgid "" -"This taxonomy key is already in use by another taxonomy registered outside " -"of ACF and cannot be used." -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:279 -msgid "" -"This taxonomy key is already in use by another taxonomy in ACF and cannot be " -"used." -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:252 -msgid "" -"The taxonomy key must only contain lower case alphanumeric characters, " -"underscores or dashes." -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:247 -msgid "The taxonomy key must be under 32 characters." -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:99 -msgid "No Taxonomies found in Trash" -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:98 -msgid "No Taxonomies found" -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:97 -msgid "Search Taxonomies" -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:96 -msgid "View Taxonomy" -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:95 -msgid "New Taxonomy" -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:94 -msgid "Edit Taxonomy" -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:93 -msgid "Add New Taxonomy" -msgstr "" - -#: includes/post-types/class-acf-post-type.php:100 -msgid "No Post Types found in Trash" -msgstr "" - -#: includes/post-types/class-acf-post-type.php:99 -msgid "No Post Types found" -msgstr "" - -#: includes/post-types/class-acf-post-type.php:98 -msgid "Search Post Types" -msgstr "" - -#: includes/post-types/class-acf-post-type.php:97 -msgid "View Post Type" -msgstr "" - -#: includes/post-types/class-acf-post-type.php:96 -msgid "New Post Type" -msgstr "" - -#: includes/post-types/class-acf-post-type.php:95 -msgid "Edit Post Type" -msgstr "" - -#: includes/post-types/class-acf-post-type.php:94 -msgid "Add New Post Type" -msgstr "" - -#: includes/post-types/class-acf-post-type.php:361 -msgid "" -"This post type key is already in use by another post type registered outside " -"of ACF and cannot be used." -msgstr "" - -#: includes/post-types/class-acf-post-type.php:356 -msgid "" -"This post type key is already in use by another post type in ACF and cannot " -"be used." -msgstr "" - -#. translators: %s a link to WordPress.org's Reserved Terms page -#: includes/post-types/class-acf-post-type.php:335 -#: includes/post-types/class-acf-taxonomy.php:258 -msgid "" -"This field must not be a WordPress reserved " -"term." -msgstr "" - -#: includes/post-types/class-acf-post-type.php:329 -msgid "" -"The post type key must only contain lower case alphanumeric characters, " -"underscores or dashes." -msgstr "" - -#: includes/post-types/class-acf-post-type.php:324 -msgid "The post type key must be under 20 characters." -msgstr "" - -#: includes/fields/class-acf-field-wysiwyg.php:27 -msgid "We do not recommend using this field in ACF Blocks." -msgstr "" - -#: includes/fields/class-acf-field-wysiwyg.php:27 -msgid "" -"Displays the WordPress WYSIWYG editor as seen in Posts and Pages allowing " -"for a rich text-editing experience that also allows for multimedia content." -msgstr "" - -#: includes/fields/class-acf-field-wysiwyg.php:25 -msgid "WYSIWYG Editor" -msgstr "" - -#: includes/fields/class-acf-field-user.php:17 -msgid "" -"Allows the selection of one or more users which can be used to create " -"relationships between data objects." -msgstr "" - -#: includes/fields/class-acf-field-url.php:26 -msgid "A text input specifically designed for storing web addresses." -msgstr "" - -#: includes/fields/class-acf-field-url.php:25 -msgid "URL" -msgstr "" - -#: includes/fields/class-acf-field-true_false.php:27 -msgid "" -"A toggle that allows you to pick a value of 1 or 0 (on or off, true or " -"false, etc). Can be presented as a stylized switch or checkbox." -msgstr "" - -#: includes/fields/class-acf-field-time_picker.php:27 -msgid "" -"An interactive UI for picking a time. The time format can be customized " -"using the field settings." -msgstr "" - -#: includes/fields/class-acf-field-textarea.php:26 -msgid "A basic textarea input for storing paragraphs of text." -msgstr "" - -#: includes/fields/class-acf-field-text.php:26 -msgid "A basic text input, useful for storing single string values." -msgstr "" - -#: includes/fields/class-acf-field-taxonomy.php:22 -msgid "" -"Allows the selection of one or more taxonomy terms based on the criteria and " -"options specified in the fields settings." -msgstr "" - -#: includes/fields/class-acf-field-tab.php:28 -msgid "" -"Allows you to group fields into tabbed sections in the edit screen. Useful " -"for keeping fields organized and structured." -msgstr "" - -#: includes/fields/class-acf-field-select.php:27 -msgid "A dropdown list with a selection of choices that you specify." -msgstr "" - -#: includes/fields/class-acf-field-relationship.php:19 -msgid "" -"A dual-column interface to select one or more posts, pages, or custom post " -"type items to create a relationship with the item that you're currently " -"editing. Includes options to search and filter." -msgstr "" - -#: includes/fields/class-acf-field-range.php:26 -msgid "" -"An input for selecting a numerical value within a specified range using a " -"range slider element." -msgstr "" - -#: includes/fields/class-acf-field-radio.php:27 -msgid "" -"A group of radio button inputs that allows the user to make a single " -"selection from values that you specify." -msgstr "" - -#: includes/fields/class-acf-field-post_object.php:19 -msgid "" -"An interactive and customizable UI for picking one or many posts, pages or " -"post type items with the option to search. " -msgstr "" - -#: includes/fields/class-acf-field-password.php:26 -msgid "An input for providing a password using a masked field." -msgstr "" - -#: includes/fields/class-acf-field-page_link.php:476 -#: includes/fields/class-acf-field-post_object.php:381 -#: includes/fields/class-acf-field-relationship.php:593 -msgid "Filter by Post Status" -msgstr "" - -#: includes/fields/class-acf-field-page_link.php:27 -msgid "" -"An interactive dropdown to select one or more posts, pages, custom post type " -"items or archive URLs, with the option to search." -msgstr "" - -#: includes/fields/class-acf-field-oembed.php:27 -msgid "" -"An interactive component for embedding videos, images, tweets, audio and " -"other content by making use of the native WordPress oEmbed functionality." -msgstr "" - -#: includes/fields/class-acf-field-number.php:26 -msgid "An input limited to numerical values." -msgstr "" - -#: includes/fields/class-acf-field-message.php:28 -msgid "" -"Used to display a message to editors alongside other fields. Useful for " -"providing additional context or instructions around your fields." -msgstr "" - -#: includes/fields/class-acf-field-link.php:27 -msgid "" -"Allows you to specify a link and its properties such as title and target " -"using the WordPress native link picker." -msgstr "" - -#: includes/fields/class-acf-field-image.php:27 -msgid "Uses the native WordPress media picker to upload, or choose images." -msgstr "" - -#: includes/fields/class-acf-field-group.php:27 -msgid "" -"Provides a way to structure fields into groups to better organize the data " -"and the edit screen." -msgstr "" - -#: includes/fields/class-acf-field-google-map.php:27 -msgid "" -"An interactive UI for selecting a location using Google Maps. Requires a " -"Google Maps API key and additional configuration to display correctly." -msgstr "" - -#: includes/fields/class-acf-field-file.php:27 -msgid "Uses the native WordPress media picker to upload, or choose files." -msgstr "" - -#: includes/fields/class-acf-field-email.php:26 -msgid "A text input specifically designed for storing email addresses." -msgstr "" - -#: includes/fields/class-acf-field-date_time_picker.php:27 -msgid "" -"An interactive UI for picking a date and time. The date return format can be " -"customized using the field settings." -msgstr "" - -#: includes/fields/class-acf-field-date_picker.php:27 -msgid "" -"An interactive UI for picking a date. The date return format can be " -"customized using the field settings." -msgstr "" - -#: includes/fields/class-acf-field-color_picker.php:27 -msgid "An interactive UI for selecting a color, or specifying a Hex value." -msgstr "" - -#: includes/fields/class-acf-field-checkbox.php:27 -msgid "" -"A group of checkbox inputs that allow the user to select one, or multiple " -"values that you specify." -msgstr "" - -#: includes/fields/class-acf-field-button-group.php:26 -msgid "" -"A group of buttons with values that you specify, users can choose one option " -"from the values provided." -msgstr "" - -#: includes/fields/class-acf-field-accordion.php:27 -msgid "" -"Allows you to group and organize custom fields into collapsable panels that " -"are shown while editing content. Useful for keeping large datasets tidy." -msgstr "" - -#: includes/fields.php:475 -msgid "" -"This provides a solution for repeating content such as slides, team members, " -"and call-to-action tiles, by acting as a parent to a set of subfields which " -"can be repeated again and again." -msgstr "" - -#: includes/fields.php:465 -msgid "" -"This provides an interactive interface for managing a collection of " -"attachments. Most settings are similar to the Image field type. Additional " -"settings allow you to specify where new attachments are added in the gallery " -"and the minimum/maximum number of attachments allowed." -msgstr "" - -#: includes/fields.php:455 -msgid "" -"This provides a simple, structured, layout-based editor. The Flexible " -"Content field allows you to define, create and manage content with total " -"control by using layouts and subfields to design the available blocks." -msgstr "" - -#: includes/fields.php:445 -msgid "" -"This allows you to select and display existing fields. It does not duplicate " -"any fields in the database, but loads and displays the selected fields at " -"run-time. The Clone field can either replace itself with the selected fields " -"or display the selected fields as a group of subfields." -msgstr "" - -#: includes/fields.php:442 -msgctxt "noun" -msgid "Clone" -msgstr "" - -#: includes/admin/views/global/navigation.php:86 includes/fields.php:357 -msgid "PRO" -msgstr "" - -#: includes/fields.php:355 includes/fields.php:412 -msgid "Advanced" -msgstr "" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:85 -msgid "JSON (newer)" -msgstr "" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:81 -msgid "Original" -msgstr "" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:55 -msgid "Invalid post ID." -msgstr "" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:47 -msgid "Invalid post type selected for review." -msgstr "" - -#: includes/admin/views/global/navigation.php:186 -msgid "More" -msgstr "" - -#: includes/admin/views/browse-fields-modal.php:86 -msgid "Tutorial" -msgstr "" - -#: includes/admin/views/browse-fields-modal.php:75 -msgid "Available with ACF PRO" -msgstr "" - -#: includes/admin/views/browse-fields-modal.php:63 -msgid "Select Field" -msgstr "" - -#. translators: %s: A link to the popular fields used in ACF -#: includes/admin/views/browse-fields-modal.php:50 -msgid "Try a different search term or browse %s" -msgstr "" - -#: includes/admin/views/browse-fields-modal.php:47 -msgid "Popular fields" -msgstr "" - -#. translators: %s: The invalid search term -#: includes/admin/views/browse-fields-modal.php:40 -msgid "No search results for '%s'" -msgstr "" - -#: includes/admin/views/browse-fields-modal.php:13 -msgid "Search fields..." -msgstr "" - -#: includes/admin/views/browse-fields-modal.php:11 -msgid "Select Field Type" -msgstr "" - -#: includes/admin/views/browse-fields-modal.php:4 -msgid "Popular" -msgstr "" - -#: includes/admin/views/acf-taxonomy/list-empty.php:7 -msgid "Add Taxonomy" -msgstr "" - -#: includes/admin/views/acf-taxonomy/list-empty.php:6 -msgid "Create custom taxonomies to classify post type content" -msgstr "" - -#: includes/admin/views/acf-taxonomy/list-empty.php:5 -msgid "Add Your First Taxonomy" -msgstr "" - -#: includes/admin/views/acf-taxonomy/basic-settings.php:122 -msgid "Hierarchical taxonomies can have descendants (like categories)." -msgstr "" - -#: includes/admin/views/acf-taxonomy/basic-settings.php:107 -msgid "Makes a taxonomy visible on the frontend and in the admin dashboard." -msgstr "" - -#: includes/admin/views/acf-taxonomy/basic-settings.php:91 -msgid "One or many post types that can be classified with this taxonomy." -msgstr "" - -#. translators: example taxonomy -#: includes/admin/views/acf-taxonomy/basic-settings.php:60 -msgid "genre" -msgstr "" - -#. translators: example taxonomy -#: includes/admin/views/acf-taxonomy/basic-settings.php:42 -msgid "Genre" -msgstr "" - -#. translators: example taxonomy -#: includes/admin/views/acf-taxonomy/basic-settings.php:25 -msgid "Genres" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1211 -msgid "" -"Optional custom controller to use instead of `WP_REST_Terms_Controller `." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1155 -msgid "Expose this post type in the REST API." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1055 -msgid "Customize the query variable name" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1028 -msgid "" -"Terms can be accessed using the non-pretty permalink, e.g., {query_var}" -"={term_slug}." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:981 -msgid "Parent-child terms in URLs for hierarchical taxonomies." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:941 -msgid "Customize the slug used in the URL" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:924 -msgid "Permalinks for this taxonomy are disabled." -msgstr "" - -#. translators: this string will be appended with the new permalink structure. -#: includes/admin/views/acf-taxonomy/advanced-settings.php:921 -msgid "" -"Rewrite the URL using the taxonomy key as the slug. Your permalink structure " -"will be" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:913 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1030 -#: includes/admin/views/acf-taxonomy/basic-settings.php:57 -msgid "Taxonomy Key" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:911 -msgid "Select the type of permalink to use for this taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:896 -msgid "Display a column for the taxonomy on post type listing screens." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:895 -msgid "Show Admin Column" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:882 -msgid "Show the taxonomy in the quick/bulk edit panel." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:881 -msgid "Quick Edit" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:868 -msgid "List the taxonomy in the Tag Cloud Widget controls." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:867 -msgid "Tag Cloud" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:824 -msgid "" -"A PHP function name to be called for sanitizing taxonomy data saved from a " -"meta box." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:823 -msgid "Meta Box Sanitization Callback" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:805 -msgid "" -"A PHP function name to be called to handle the content of a meta box on your " -"taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:804 -msgid "Register Meta Box Callback" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:763 -msgid "No Meta Box" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:762 -msgid "Custom Meta Box" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:758 -msgid "" -"Controls the meta box on the content editor screen. By default, the " -"Categories meta box is shown for hierarchical taxonomies, and the Tags meta " -"box is shown for non-hierarchical taxonomies." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:757 -msgid "Meta Box" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:746 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:767 -msgid "Categories Meta Box" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:745 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:766 -msgid "Tags Meta Box" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:704 -msgid "A link to a tag" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:703 -msgid "Describes a navigation link block variation used in the block editor." -msgstr "" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:698 -msgid "A link to a %s" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:683 -msgid "Tag Link" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:682 -msgid "" -"Assigns a title for navigation link block variation used in the block editor." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:663 -msgid "← Go to tags" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:662 -msgid "" -"Assigns the text used to link back to the main index after updating a term." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:661 -msgid "Back To Items" -msgstr "" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:657 -msgid "← Go to %s" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:642 -msgid "Tags list" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:641 -msgid "Assigns text to the table hidden heading." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:622 -msgid "Tags list navigation" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:621 -msgid "Assigns text to the table pagination hidden heading." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:597 -msgid "Filter by category" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:596 -msgid "Assigns text to the filter button in the posts lists table." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:595 -msgid "Filter By Item" -msgstr "" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:591 -msgid "Filter by %s" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:575 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:576 -msgid "" -"The description is not prominent by default; however, some themes may show " -"it." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:574 -msgid "Describes the Description field on the Edit Tags screen." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:573 -msgid "Description Field Description" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:554 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:555 -msgid "" -"Assign a parent term to create a hierarchy. The term Jazz, for example, " -"would be the parent of Bebop and Big Band" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:553 -msgid "Describes the Parent field on the Edit Tags screen." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:552 -msgid "Parent Field Description" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:538 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:539 -msgid "" -"The \"slug\" is the URL-friendly version of the name. It is usually all " -"lower case and contains only letters, numbers, and hyphens." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:537 -msgid "Describes the Slug field on the Edit Tags screen." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:536 -msgid "Slug Field Description" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:522 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:523 -msgid "The name is how it appears on your site" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:521 -msgid "Describes the Name field on the Edit Tags screen." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:520 -msgid "Name Field Description" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:507 -msgid "No tags" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:506 -msgid "" -"Assigns the text displayed in the posts and media list tables when no tags " -"or categories are available." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:505 -msgid "No Terms" -msgstr "" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:501 -msgid "No %s" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:486 -msgid "No tags found" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:485 -msgid "" -"Assigns the text displayed when clicking the 'choose from most used' text in " -"the taxonomy meta box when no tags are available, and assigns the text used " -"in the terms list table when there are no items for a taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:484 -msgid "Not Found" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:463 -msgid "Assigns text to the Title field of the Most Used tab." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:462 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:464 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:465 -msgid "Most Used" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:444 -msgid "Choose from the most used tags" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:443 -msgid "" -"Assigns the 'choose from most used' text used in the meta box when " -"JavaScript is disabled. Only used on non-hierarchical taxonomies." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:442 -msgid "Choose From Most Used" -msgstr "" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:438 -msgid "Choose from the most used %s" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:418 -msgid "Add or remove tags" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:417 -msgid "" -"Assigns the add or remove items text used in the meta box when JavaScript is " -"disabled. Only used on non-hierarchical taxonomies" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:416 -msgid "Add Or Remove Items" -msgstr "" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:412 -msgid "Add or remove %s" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:392 -msgid "Separate tags with commas" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:391 -msgid "" -"Assigns the separate item with commas text used in the taxonomy meta box. " -"Only used on non-hierarchical taxonomies." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:390 -msgid "Separate Items With Commas" -msgstr "" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:386 -msgid "Separate %s with commas" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:366 -msgid "Popular Tags" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:365 -msgid "Assigns popular items text. Only used for non-hierarchical taxonomies." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:364 -msgid "Popular Items" -msgstr "" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:361 -msgid "Popular %s" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:347 -msgid "Search Tags" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:346 -msgid "Assigns search items text." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:323 -msgid "Parent Category:" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:322 -msgid "Assigns parent item text, but with a colon (:) added to the end." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:321 -msgid "Parent Item With Colon" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:298 -msgid "Parent Category" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:297 -msgid "Assigns parent item text. Only used on hierarchical taxonomies." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:296 -msgid "Parent Item" -msgstr "" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:293 -msgid "Parent %s" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:278 -msgid "New Tag Name" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:277 -msgid "Assigns the new item name text." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:276 -msgid "New Item Name" -msgstr "" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:273 -msgid "New %s Name" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:258 -msgid "Add New Tag" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:257 -msgid "Assigns the add new item text." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:238 -msgid "Update Tag" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:237 -msgid "Assigns the update item text." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:236 -msgid "Update Item" -msgstr "" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:233 -msgid "Update %s" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:218 -msgid "View Tag" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:217 -msgid "In the admin bar to view term during editing." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:198 -msgid "Edit Tag" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:197 -msgid "At the top of the editor screen when editing a term." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:178 -msgid "All Tags" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:177 -msgid "Assigns the all items text." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:158 -msgid "Assigns the menu name text." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:157 -msgid "Menu Label" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:131 -msgid "Active taxonomies are enabled and registered with WordPress." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:115 -msgid "A descriptive summary of the taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:95 -msgid "A descriptive summary of the term." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:94 -msgid "Term Description" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:76 -msgid "Single word, no spaces. Underscores and dashes allowed." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:75 -msgid "Term Slug" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:56 -msgid "The name of the default term." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:55 -msgid "Term Name" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:41 -msgid "" -"Create a term for the taxonomy that cannot be deleted. It will not be " -"selected for posts by default." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:40 -msgid "Default Term" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:28 -msgid "" -"Whether terms in this taxonomy should be sorted in the order they are " -"provided to `wp_set_object_terms()`." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:27 -msgid "Sort Terms" -msgstr "" - -#: includes/admin/views/acf-post-type/list-empty.php:7 -msgid "Add Post Type" -msgstr "" - -#: includes/admin/views/acf-post-type/list-empty.php:6 -msgid "" -"Expand the functionality of WordPress beyond standard posts and pages with " -"custom post types." -msgstr "" - -#: includes/admin/views/acf-post-type/list-empty.php:5 -msgid "Add Your First Post Type" -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:136 -#: includes/admin/views/acf-taxonomy/basic-settings.php:135 -msgid "I know what I'm doing, show me all the options." -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:135 -#: includes/admin/views/acf-taxonomy/basic-settings.php:134 -msgid "Advanced Configuration" -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:123 -msgid "Hierarchical post types can have descendants (like pages)." -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:122 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:980 -#: includes/admin/views/acf-taxonomy/basic-settings.php:121 -msgid "Hierarchical" -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:107 -msgid "Visible on the frontend and in the admin dashboard." -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:106 -#: includes/admin/views/acf-taxonomy/basic-settings.php:106 -msgid "Public" -msgstr "" - -#. translators: example post type -#: includes/admin/views/acf-post-type/basic-settings.php:59 -msgid "movie" -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:57 -msgid "Lower case letters, underscores and dashes only, Max 20 characters." -msgstr "" - -#. translators: example post type -#: includes/admin/views/acf-post-type/basic-settings.php:41 -msgid "Movie" -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:39 -#: includes/admin/views/acf-taxonomy/basic-settings.php:40 -msgid "Singular Label" -msgstr "" - -#. translators: example post type -#: includes/admin/views/acf-post-type/basic-settings.php:24 -msgid "Movies" -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:22 -#: includes/admin/views/acf-taxonomy/basic-settings.php:23 -msgid "Plural Label" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1270 -msgid "" -"Optional custom controller to use instead of `WP_REST_Posts_Controller`." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1269 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1210 -msgid "Controller Class" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1251 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1191 -msgid "The namespace part of the REST API URL." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1250 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1190 -msgid "Namespace Route" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1232 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1172 -msgid "The base URL for the post type REST API URLs." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1231 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1171 -msgid "Base URL" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1217 -msgid "" -"Exposes this post type in the REST API. Required to use the block editor." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1216 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1154 -msgid "Show In REST API" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1195 -msgid "Customize the query variable name." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1194 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1054 -msgid "Query Variable" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1172 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1032 -msgid "No Query Variable Support" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1171 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1031 -msgid "Custom Query Variable" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1168 -msgid "" -"Items can be accessed using the non-pretty permalink, eg. {post_type}" -"={post_slug}." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1167 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1027 -msgid "Query Variable Support" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1142 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1003 -msgid "URLs for an item and items can be accessed with a query string." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1141 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1002 -msgid "Publicly Queryable" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1120 -msgid "Custom slug for the Archive URL." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1119 -msgid "Archive Slug" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1106 -msgid "" -"Has an item archive that can be customized with an archive template file in " -"your theme." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1105 -msgid "Archive" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1085 -msgid "Pagination support for the items URLs such as the archives." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1084 -msgid "Pagination" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1067 -msgid "RSS feed URL for the post type items." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1066 -msgid "Feed URL" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1048 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:961 -msgid "" -"Alters the permalink structure to add the `WP_Rewrite::$front` prefix to " -"URLs." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1047 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:960 -msgid "Front URL Prefix" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1028 -msgid "Customize the slug used in the URL." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1027 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:940 -msgid "URL Slug" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1011 -msgid "Permalinks for this post type are disabled." -msgstr "" - -#. translators: this string will be appended with the new permalink structure. -#: includes/admin/views/acf-post-type/advanced-settings.php:1010 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:923 -msgid "" -"Rewrite the URL using a custom slug defined in the input below. Your " -"permalink structure will be" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1002 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:915 -msgid "No Permalink (prevent URL rewriting)" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1001 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:914 -msgid "Custom Permalink" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1000 -#: includes/admin/views/acf-post-type/advanced-settings.php:1170 -#: includes/admin/views/acf-post-type/basic-settings.php:56 -msgid "Post Type Key" -msgstr "" - -#. translators: this string will be appended with the new permalink structure. -#: includes/admin/views/acf-post-type/advanced-settings.php:998 -#: includes/admin/views/acf-post-type/advanced-settings.php:1008 -msgid "" -"Rewrite the URL using the post type key as the slug. Your permalink " -"structure will be" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:996 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:910 -msgid "Permalink Rewrite" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:982 -msgid "Delete items by a user when that user is deleted." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:981 -msgid "Delete With User" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:967 -msgid "Allow the post type to be exported from 'Tools' > 'Export'." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:966 -msgid "Can Export" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:935 -msgid "Optionally provide a plural to be used in capabilities." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:934 -msgid "Plural Capability Name" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:916 -msgid "Choose another post type to base the capabilities for this post type." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:915 -msgid "Singular Capability Name" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:901 -msgid "" -"By default the capabilities of the post type will inherit the 'Post' " -"capability names, eg. edit_post, delete_posts. Enable to use post type " -"specific capabilities, eg. edit_{singular}, delete_{plural}." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:900 -msgid "Rename Capabilities" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:885 -msgid "Exclude From Search" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:872 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:854 -msgid "" -"Allow items to be added to menus in the 'Appearance' > 'Menus' screen. Must " -"be turned on in 'Screen options'." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:871 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:853 -msgid "Appearance Menus Support" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:853 -msgid "Appears as an item in the 'New' menu in the admin bar." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:852 -msgid "Show In Admin Bar" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:821 -msgid "" -"A PHP function name to be called when setting up the meta boxes for the edit " -"screen." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:820 -msgid "Custom Meta Box Callback" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:800 -msgid "Menu Icon" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:782 -msgid "The position in the sidebar menu in the admin dashboard." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:781 -msgid "Menu Position" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:763 -msgid "" -"By default the post type will get a new top level item in the admin menu. If " -"an existing top level item is supplied here, the post type will be added as " -"a submenu item under it." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:762 -msgid "Admin Menu Parent" -msgstr "" - -#. translators: %s = "dashicon class name", link to the WordPress dashicon -#. documentation. -#: includes/admin/views/acf-post-type/advanced-settings.php:750 -msgid "" -"The icon used for the post type menu item in the admin dashboard. Can be a " -"URL or %s to use for the icon." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:745 -msgid "Dashicon class name" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:734 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:734 -msgid "Admin editor navigation in the sidebar menu." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:733 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:733 -msgid "Show In Admin Menu" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:720 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:719 -msgid "Items can be edited and managed in the admin dashboard." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:719 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:718 -msgid "Show In UI" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:689 -msgid "A link to a post." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:688 -msgid "Description for a navigation link block variation." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:687 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:702 -msgid "Item Link Description" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:683 -msgid "A link to a %s." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:668 -msgid "Post Link" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:667 -msgid "Title for a navigation link block variation." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:666 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:681 -msgid "Item Link" -msgstr "" - -#. translators: %s Singular form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:663 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:678 -msgid "%s Link" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:648 -msgid "Post updated." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:647 -msgid "In the editor notice after an item is updated." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:646 -msgid "Item Updated" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:643 -msgid "%s updated." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:628 -msgid "Post scheduled." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:627 -msgid "In the editor notice after scheduling an item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:626 -msgid "Item Scheduled" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:623 -msgid "%s scheduled." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:608 -msgid "Post reverted to draft." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:607 -msgid "In the editor notice after reverting an item to draft." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:606 -msgid "Item Reverted To Draft" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:603 -msgid "%s reverted to draft." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:588 -msgid "Post published privately." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:587 -msgid "In the editor notice after publishing a private item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:586 -msgid "Item Published Privately" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:583 -msgid "%s published privately." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:568 -msgid "Post published." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:567 -msgid "In the editor notice after publishing an item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:566 -msgid "Item Published" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:563 -msgid "%s published." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:548 -msgid "Posts list" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:547 -msgid "Used by screen readers for the items list on the post type list screen." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:546 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:640 -msgid "Items List" -msgstr "" - -#. translators: %s Plural form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:543 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:637 -msgid "%s list" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:528 -msgid "Posts list navigation" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:527 -msgid "" -"Used by screen readers for the filter list pagination on the post type list " -"screen." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:526 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:620 -msgid "Items List Navigation" -msgstr "" - -#. translators: %s Plural form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:523 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:617 -msgid "%s list navigation" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:507 -msgid "Filter posts by date" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:506 -msgid "" -"Used by screen readers for the filter by date heading on the post type list " -"screen." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:505 -msgid "Filter Items By Date" -msgstr "" - -#. translators: %s Plural form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:501 -msgid "Filter %s by date" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:486 -msgid "Filter posts list" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:485 -msgid "" -"Used by screen readers for the filter links heading on the post type list " -"screen." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:484 -msgid "Filter Items List" -msgstr "" - -#. translators: %s Plural form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:480 -msgid "Filter %s list" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:464 -msgid "In the media modal showing all media uploaded to this item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:463 -msgid "Uploaded To This Item" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:459 -msgid "Uploaded to this %s" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:444 -msgid "Insert into post" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:443 -msgid "As the button label when adding media to content." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:442 -msgid "Insert Into Media Button" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:438 -msgid "Insert into %s" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:423 -msgid "Use as featured image" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:422 -msgid "" -"As the button label for selecting to use an image as the featured image." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:421 -msgid "Use Featured Image" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:408 -msgid "Remove featured image" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:407 -msgid "As the button label when removing the featured image." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:406 -msgid "Remove Featured Image" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:393 -msgid "Set featured image" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:392 -msgid "As the button label when setting the featured image." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:391 -msgid "Set Featured Image" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:378 -msgid "Featured image" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:377 -msgid "In the editor used for the title of the featured image meta box." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:376 -msgid "Featured Image Meta Box" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:363 -msgid "Post Attributes" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:362 -msgid "In the editor used for the title of the post attributes meta box." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:361 -msgid "Attributes Meta Box" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:358 -msgid "%s Attributes" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:343 -msgid "Post Archives" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:342 -msgid "" -"Adds 'Post Type Archive' items with this label to the list of posts shown " -"when adding items to an existing menu in a CPT with archives enabled. Only " -"appears when editing menus in 'Live Preview' mode and a custom archive slug " -"has been provided." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:341 -msgid "Archives Nav Menu" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:338 -msgid "%s Archives" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:323 -msgid "No posts found in Trash" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:322 -msgid "" -"At the top of the post type list screen when there are no posts in the trash." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:321 -msgid "No Items Found in Trash" -msgstr "" - -#. translators: %s Plural form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:317 -msgid "No %s found in Trash" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:302 -msgid "No posts found" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:301 -msgid "" -"At the top of the post type list screen when there are no posts to display." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:300 -msgid "No Items Found" -msgstr "" - -#. translators: %s Plural form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:296 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:480 -msgid "No %s found" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:281 -msgid "Search Posts" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:280 -msgid "At the top of the items screen when searching for an item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:279 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:345 -msgid "Search Items" -msgstr "" - -#. translators: %s Singular form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:276 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:342 -msgid "Search %s" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:261 -msgid "Parent Page:" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:260 -msgid "For hierarchical types in the post type list screen." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:259 -msgid "Parent Item Prefix" -msgstr "" - -#. translators: %s Singular form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:256 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:318 -msgid "Parent %s:" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:241 -msgid "New Post" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:239 -msgid "New Item" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:236 -msgid "New %s" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:206 -msgid "Add New Post" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:205 -msgid "At the top of the editor screen when adding a new item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:204 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:256 -msgid "Add New Item" -msgstr "" - -#. translators: %s Singular form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:201 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:253 -msgid "Add New %s" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:186 -msgid "View Posts" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:185 -msgid "" -"Appears in the admin bar in the 'All Posts' view, provided the post type " -"supports archives and the home page is not an archive of that post type." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:184 -msgid "View Items" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:166 -msgid "View Post" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:165 -msgid "In the admin bar to view item when editing it." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:164 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:216 -msgid "View Item" -msgstr "" - -#. translators: %s Singular form of post type name -#. translators: %s Plural form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:161 -#: includes/admin/views/acf-post-type/advanced-settings.php:181 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:213 -msgid "View %s" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:146 -msgid "Edit Post" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:145 -msgid "At the top of the editor screen when editing an item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:144 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:196 -msgid "Edit Item" -msgstr "" - -#. translators: %s Singular form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:141 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:193 -msgid "Edit %s" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:126 -msgid "All Posts" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:125 -#: includes/admin/views/acf-post-type/advanced-settings.php:220 -#: includes/admin/views/acf-post-type/advanced-settings.php:240 -msgid "In the post type submenu in the admin dashboard." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:124 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:176 -msgid "All Items" -msgstr "" - -#. translators: %s Plural form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:121 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:173 -msgid "All %s" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:105 -msgid "Admin menu name for the post type." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:104 -msgid "Menu Name" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:90 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:142 -msgid "Regenerate all labels using the Singular and Plural labels" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:88 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:140 -msgid "Regenerate" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:79 -msgid "Active post types are enabled and registered with WordPress." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:63 -msgid "A descriptive summary of the post type." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:48 -msgid "Add Custom" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:42 -msgid "Enable various features in the content editor." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:31 -msgid "Post Formats" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:25 -msgid "Editor" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:24 -msgid "Trackbacks" -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:87 -msgid "Select existing taxonomies to classify items of the post type." -msgstr "" - -#: includes/admin/views/acf-field-group/field.php:145 -msgid "Browse Fields" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:292 -msgid "Nothing to import" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:287 -msgid ". The Custom Post Type UI plugin can be deactivated." -msgstr "" - -#. translators: %d - number of items imported from CPTUI -#: includes/admin/tools/class-acf-admin-tool-import.php:278 -msgid "Imported %d item from Custom Post Type UI -" -msgid_plural "Imported %d items from Custom Post Type UI -" -msgstr[0] "" -msgstr[1] "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:262 -msgid "Failed to import taxonomies." -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:244 -msgid "Failed to import post types." -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:233 -msgid "Nothing from Custom Post Type UI plugin selected for import." -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:209 -msgid "Imported 1 item" -msgid_plural "Imported %s items" -msgstr[0] "" -msgstr[1] "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:122 -msgid "" -"Importing a Post Type or Taxonomy with the same key as one that already " -"exists will overwrite the settings for the existing Post Type or Taxonomy " -"with those of the import." -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:111 -#: includes/admin/tools/class-acf-admin-tool-import.php:127 -msgid "Import from Custom Post Type UI" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:412 -msgid "" -"The following code can be used to register a local version of the selected " -"items. Storing field groups, post types, or taxonomies locally can provide " -"many benefits such as faster load times, version control & dynamic fields/" -"settings. Simply copy and paste the following code to your theme's functions." -"php file or include it within an external file, then deactivate or delete " -"the items from the ACF admin." -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:411 -msgid "Export - Generate PHP" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:384 -msgid "Export" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:276 -msgid "Select Taxonomies" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:254 -msgid "Select Post Types" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:167 -msgid "Exported 1 item." -msgid_plural "Exported %s items." -msgstr[0] "" -msgstr[1] "" - -#: includes/admin/post-types/admin-taxonomy.php:129 -#: assets/build/js/acf-internal-post-type.js:182 -#: assets/build/js/acf-internal-post-type.js:256 -msgid "Category" -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:127 -#: assets/build/js/acf-internal-post-type.js:179 -#: assets/build/js/acf-internal-post-type.js:253 -msgid "Tag" -msgstr "" - -#. translators: %s taxonomy name -#: includes/admin/post-types/admin-taxonomy.php:82 -msgid "%s taxonomy created" -msgstr "" - -#. translators: %s taxonomy name -#: includes/admin/post-types/admin-taxonomy.php:76 -msgid "%s taxonomy updated" -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:56 -msgid "Taxonomy draft updated." -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:55 -msgid "Taxonomy scheduled for." -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:54 -msgid "Taxonomy submitted." -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:53 -msgid "Taxonomy saved." -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:49 -msgid "Taxonomy deleted." -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:48 -msgid "Taxonomy updated." -msgstr "" - -#: includes/admin/post-types/admin-taxonomies.php:377 -#: includes/admin/post-types/admin-taxonomy.php:157 -msgid "" -"This taxonomy could not be registered because its key is in use by another " -"taxonomy registered by another plugin or theme." -msgstr "" - -#. translators: %s number of taxonomies synchronized -#: includes/admin/post-types/admin-taxonomies.php:359 -msgid "Taxonomy synchronized." -msgid_plural "%s taxonomies synchronized." -msgstr[0] "" -msgstr[1] "" - -#. translators: %s number of taxonomies duplicated -#: includes/admin/post-types/admin-taxonomies.php:352 -msgid "Taxonomy duplicated." -msgid_plural "%s taxonomies duplicated." -msgstr[0] "" -msgstr[1] "" - -#. translators: %s number of taxonomies deactivated -#: includes/admin/post-types/admin-taxonomies.php:345 -msgid "Taxonomy deactivated." -msgid_plural "%s taxonomies deactivated." -msgstr[0] "" -msgstr[1] "" - -#. translators: %s number of taxonomies activated -#: includes/admin/post-types/admin-taxonomies.php:338 -msgid "Taxonomy activated." -msgid_plural "%s taxonomies activated." -msgstr[0] "" -msgstr[1] "" - -#: includes/admin/post-types/admin-taxonomies.php:139 -msgid "Terms" -msgstr "" - -#. translators: %s number of post types synchronized -#: includes/admin/post-types/admin-post-types.php:352 -msgid "Post type synchronized." -msgid_plural "%s post types synchronized." -msgstr[0] "" -msgstr[1] "" - -#. translators: %s number of post types duplicated -#: includes/admin/post-types/admin-post-types.php:345 -msgid "Post type duplicated." -msgid_plural "%s post types duplicated." -msgstr[0] "" -msgstr[1] "" - -#. translators: %s number of post types deactivated -#: includes/admin/post-types/admin-post-types.php:338 -msgid "Post type deactivated." -msgid_plural "%s post types deactivated." -msgstr[0] "" -msgstr[1] "" - -#. translators: %s number of post types activated -#: includes/admin/post-types/admin-post-types.php:331 -msgid "Post type activated." -msgid_plural "%s post types activated." -msgstr[0] "" -msgstr[1] "" - -#: includes/admin/post-types/admin-post-types.php:112 -#: includes/admin/post-types/admin-taxonomies.php:137 -#: includes/admin/tools/class-acf-admin-tool-import.php:82 -#: includes/admin/views/acf-taxonomy/basic-settings.php:82 -#: includes/post-types/class-acf-post-type.php:91 -msgid "Post Types" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:162 -#: includes/admin/post-types/admin-taxonomy.php:164 -msgid "Advanced Settings" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:161 -#: includes/admin/post-types/admin-taxonomy.php:163 -msgid "Basic Settings" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:155 -#: includes/admin/post-types/admin-post-types.php:370 -msgid "" -"This post type could not be registered because its key is in use by another " -"post type registered by another plugin or theme." -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:128 -#: assets/build/js/acf-internal-post-type.js:176 -#: assets/build/js/acf-internal-post-type.js:250 -msgid "Pages" -msgstr "" - -#: includes/admin/admin-internal-post-type.php:355 -msgid "Link Existing Field Groups" -msgstr "" - -#. translators: %s post type name -#: includes/admin/post-types/admin-post-type.php:80 -msgid "%s post type created" -msgstr "" - -#. translators: %s taxonomy name -#: includes/admin/post-types/admin-taxonomy.php:78 -msgid "Add fields to %s" -msgstr "" - -#. translators: %s post type name -#: includes/admin/post-types/admin-post-type.php:76 -msgid "%s post type updated" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:56 -msgid "Post type draft updated." -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:55 -msgid "Post type scheduled for." -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:54 -msgid "Post type submitted." -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:53 -msgid "Post type saved." -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:50 -msgid "Post type updated." -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:49 -msgid "Post type deleted." -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:120 -#: assets/build/js/acf-field-group.js:1146 -#: assets/build/js/acf-field-group.js:1366 -msgid "Type to search..." -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:105 -#: assets/build/js/acf-field-group.js:1172 -#: assets/build/js/acf-field-group.js:2319 -#: assets/build/js/acf-field-group.js:1414 -#: assets/build/js/acf-field-group.js:2727 -msgid "PRO Only" -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:97 -#: assets/build/js/acf-internal-post-type.js:308 -#: assets/build/js/acf-internal-post-type.js:417 -msgid "Field groups linked successfully." -msgstr "" - -#. translators: %s - URL to ACF tools page. -#: includes/admin/admin.php:195 -msgid "" -"Import Post Types and Taxonomies registered with Custom Post Type UI and " -"manage them with ACF. Get Started." -msgstr "" - -#: includes/admin/admin.php:48 includes/admin/admin.php:267 -msgid "ACF" -msgstr "" - -#: includes/admin/admin-internal-post-type.php:322 -msgid "taxonomy" -msgstr "" - -#: includes/admin/admin-internal-post-type.php:322 -msgid "post type" -msgstr "" - -#: includes/admin/admin-internal-post-type.php:346 -msgid "Done" -msgstr "" - -#: includes/admin/admin-internal-post-type.php:332 -msgid "Field Group(s)" -msgstr "" - -#: includes/admin/admin-internal-post-type.php:331 -msgid "Select one or many field groups..." -msgstr "" - -#: includes/admin/admin-internal-post-type.php:330 -msgid "Please select the field groups to link." -msgstr "" - -#: includes/admin/admin-internal-post-type.php:288 -msgid "Field group linked successfully." -msgid_plural "Field groups linked successfully." -msgstr[0] "" -msgstr[1] "" - -#: includes/admin/admin-internal-post-type-list.php:261 -#: includes/admin/post-types/admin-post-types.php:371 -#: includes/admin/post-types/admin-taxonomies.php:378 -msgctxt "post status" -msgid "Registration Failed" -msgstr "" - -#: includes/admin/admin-internal-post-type-list.php:260 -msgid "" -"This item could not be registered because its key is in use by another item " -"registered by another plugin or theme." -msgstr "" - -#: includes/acf-internal-post-type-functions.php:482 -#: includes/acf-internal-post-type-functions.php:511 -msgid "REST API" -msgstr "" - -#: includes/acf-internal-post-type-functions.php:481 -#: includes/acf-internal-post-type-functions.php:510 -#: includes/acf-internal-post-type-functions.php:537 -msgid "Permissions" -msgstr "" - -#: includes/acf-internal-post-type-functions.php:480 -#: includes/acf-internal-post-type-functions.php:509 -msgid "URLs" -msgstr "" - -#: includes/acf-internal-post-type-functions.php:479 -#: includes/acf-internal-post-type-functions.php:508 -#: includes/acf-internal-post-type-functions.php:535 -msgid "Visibility" -msgstr "" - -#: includes/acf-internal-post-type-functions.php:478 -#: includes/acf-internal-post-type-functions.php:507 -#: includes/acf-internal-post-type-functions.php:536 -msgid "Labels" -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:269 -msgid "Field Settings Tabs" -msgstr "" - -#. Author URI of the plugin -msgid "" -"https://wpengine.com/?utm_source=wordpress." -"org&utm_medium=referral&utm_campaign=plugin_directory&utm_content=advanced_custom_fields" -msgstr "" - -#: includes/api/api-template.php:867 -msgid "[ACF shortcode value disabled for preview]" -msgstr "" - -#: includes/admin/admin-internal-post-type.php:298 -#: includes/admin/post-types/admin-field-group.php:571 -msgid "Close Modal" -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:96 -#: assets/build/js/acf-field-group.js:1670 -#: assets/build/js/acf-field-group.js:1993 -msgid "Field moved to other group" -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:95 -#: assets/build/js/acf.js:1437 assets/build/js/acf.js:1517 -msgid "Close modal" -msgstr "" - -#: includes/fields/class-acf-field-tab.php:125 -msgid "Start a new group of tabs at this tab." -msgstr "" - -#: includes/fields/class-acf-field-tab.php:124 -msgid "New Tab Group" -msgstr "" - -#: includes/fields/class-acf-field-select.php:451 -#: includes/fields/class-acf-field-true_false.php:200 -msgid "Use a stylized checkbox using select2" -msgstr "" - -#: includes/fields/class-acf-field-radio.php:260 -msgid "Save Other Choice" -msgstr "" - -#: includes/fields/class-acf-field-radio.php:249 -msgid "Allow Other Choice" -msgstr "" - -#: includes/fields/class-acf-field-checkbox.php:450 -msgid "Add Toggle All" -msgstr "" - -#: includes/fields/class-acf-field-checkbox.php:409 -msgid "Save Custom Values" -msgstr "" - -#: includes/fields/class-acf-field-checkbox.php:398 -msgid "Allow Custom Values" -msgstr "" - -#: includes/fields/class-acf-field-checkbox.php:148 -msgid "Checkbox custom values cannot be empty. Uncheck any empty values." -msgstr "" - -#: includes/admin/views/global/navigation.php:248 -msgid "Updates" -msgstr "" - -#: includes/admin/views/global/navigation.php:176 -msgid "Advanced Custom Fields logo" -msgstr "" - -#: includes/admin/views/global/form-top.php:89 -msgid "Save Changes" -msgstr "" - -#: includes/admin/views/global/form-top.php:76 -msgid "Field Group Title" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:704 -#: includes/admin/views/global/form-top.php:3 -msgid "Add title" -msgstr "" - -#. translators: %s url to getting started guide -#: includes/admin/views/acf-field-group/list-empty.php:20 -#: includes/admin/views/acf-post-type/list-empty.php:12 -#: includes/admin/views/acf-taxonomy/list-empty.php:12 -#: includes/admin/views/options-page-preview.php:13 -msgid "" -"New to ACF? Take a look at our getting " -"started guide." -msgstr "" - -#: includes/admin/views/acf-field-group/list-empty.php:15 -msgid "Add Field Group" -msgstr "" - -#. translators: %s url to creating a field group page -#: includes/admin/views/acf-field-group/list-empty.php:10 -msgid "" -"ACF uses field groups to group custom " -"fields together, and then attach those fields to edit screens." -msgstr "" - -#: includes/admin/views/acf-field-group/list-empty.php:5 -msgid "Add Your First Field Group" -msgstr "" - -#: includes/admin/admin-options-pages-preview.php:28 -#: includes/admin/views/acf-field-group/pro-features.php:54 -#: includes/admin/views/global/navigation.php:86 -#: includes/admin/views/global/navigation.php:250 -msgid "Options Pages" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:50 -msgid "ACF Blocks" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:58 -msgid "Gallery Field" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:38 -msgid "Flexible Content Field" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:42 -msgid "Repeater Field" -msgstr "" - -#: includes/admin/views/global/navigation.php:212 -msgid "Unlock Extra Features with ACF PRO" -msgstr "" - -#: includes/admin/views/acf-field-group/options.php:267 -msgid "Delete Field Group" -msgstr "" - -#. translators: 1: Post creation date 2: Post creation time -#: includes/admin/views/acf-field-group/options.php:261 -msgid "Created on %1$s at %2$s" -msgstr "" - -#: includes/acf-field-group-functions.php:497 -msgid "Group Settings" -msgstr "" - -#: includes/acf-field-group-functions.php:495 -msgid "Location Rules" -msgstr "" - -#. translators: %s url to field types list -#: includes/admin/views/acf-field-group/fields.php:72 -msgid "" -"Choose from over 30 field types. Learn " -"more." -msgstr "" - -#: includes/admin/views/acf-field-group/fields.php:65 -msgid "" -"Get started creating new custom fields for your posts, pages, custom post " -"types and other WordPress content." -msgstr "" - -#: includes/admin/views/acf-field-group/fields.php:64 -msgid "Add Your First Field" -msgstr "" - -#. translators: A symbol (or text, if not available in your locale) meaning -#. "Order Number", in terms of positional placement. -#: includes/admin/views/acf-field-group/fields.php:43 -msgid "#" -msgstr "" - -#: includes/admin/views/acf-field-group/fields.php:33 -#: includes/admin/views/acf-field-group/fields.php:67 -#: includes/admin/views/acf-field-group/fields.php:103 -#: includes/admin/views/global/form-top.php:85 -msgid "Add Field" -msgstr "" - -#: includes/acf-field-group-functions.php:496 includes/fields.php:410 -msgid "Presentation" -msgstr "" - -#: includes/fields.php:409 -msgid "Validation" -msgstr "" - -#: includes/acf-internal-post-type-functions.php:477 -#: includes/acf-internal-post-type-functions.php:506 includes/fields.php:408 -msgid "General" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:70 -msgid "Import JSON" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:392 -msgid "Export As JSON" -msgstr "" - -#. translators: %s number of field groups deactivated -#: includes/admin/post-types/admin-field-groups.php:367 -msgid "Field group deactivated." -msgid_plural "%s field groups deactivated." -msgstr[0] "" -msgstr[1] "" - -#. translators: %s number of field groups activated -#: includes/admin/post-types/admin-field-groups.php:360 -msgid "Field group activated." -msgid_plural "%s field groups activated." -msgstr[0] "" -msgstr[1] "" - -#: includes/admin/admin-internal-post-type-list.php:452 -#: includes/admin/admin-internal-post-type-list.php:478 -msgid "Deactivate" -msgstr "" - -#: includes/admin/admin-internal-post-type-list.php:452 -msgid "Deactivate this item" -msgstr "" - -#: includes/admin/admin-internal-post-type-list.php:448 -#: includes/admin/admin-internal-post-type-list.php:477 -msgid "Activate" -msgstr "" - -#: includes/admin/admin-internal-post-type-list.php:448 -msgid "Activate this item" -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:92 -#: assets/build/js/acf-field-group.js:2812 -#: assets/build/js/acf-field-group.js:3313 -msgid "Move field group to trash?" -msgstr "" - -#: acf.php:497 includes/admin/admin-internal-post-type-list.php:248 -#: includes/admin/post-types/admin-field-group.php:297 -#: includes/admin/post-types/admin-post-type.php:295 -#: includes/admin/post-types/admin-taxonomy.php:297 -msgctxt "post status" -msgid "Inactive" -msgstr "" - -#. Author of the plugin -msgid "WP Engine" -msgstr "" - -#: acf.php:555 -msgid "" -"Advanced Custom Fields and Advanced Custom Fields PRO should not be active " -"at the same time. We've automatically deactivated Advanced Custom Fields PRO." -msgstr "" - -#: acf.php:553 -msgid "" -"Advanced Custom Fields and Advanced Custom Fields PRO should not be active " -"at the same time. We've automatically deactivated Advanced Custom Fields." -msgstr "" - -#: includes/acf-value-functions.php:374 -msgid "" -"%1$s - We've detected one or more calls to retrieve ACF " -"field values before ACF has been initialized. This is not supported and can " -"result in malformed or missing data. Learn how to fix this." -msgstr "" - -#: includes/fields/class-acf-field-user.php:551 -msgid "%1$s must have a user with the %2$s role." -msgid_plural "%1$s must have a user with one of the following roles: %2$s" -msgstr[0] "" -msgstr[1] "" - -#: includes/fields/class-acf-field-user.php:542 -msgid "%1$s must have a valid user ID." -msgstr "" - -#: includes/fields/class-acf-field-user.php:380 -msgid "Invalid request." -msgstr "" - -#: includes/fields/class-acf-field-select.php:684 -msgid "%1$s is not one of %2$s" -msgstr "" - -#: includes/fields/class-acf-field-post_object.php:700 -msgid "%1$s must have term %2$s." -msgid_plural "%1$s must have one of the following terms: %2$s" -msgstr[0] "" -msgstr[1] "" - -#: includes/fields/class-acf-field-post_object.php:684 -msgid "%1$s must be of post type %2$s." -msgid_plural "%1$s must be of one of the following post types: %2$s" -msgstr[0] "" -msgstr[1] "" - -#: includes/fields/class-acf-field-post_object.php:675 -msgid "%1$s must have a valid post ID." -msgstr "" - -#: includes/fields/class-acf-field-file.php:475 -msgid "%s requires a valid attachment ID." -msgstr "" - -#: includes/admin/views/acf-field-group/options.php:233 -msgid "Show in REST API" -msgstr "" - -#: includes/fields/class-acf-field-color_picker.php:168 -msgid "Enable Transparency" -msgstr "" - -#: includes/fields/class-acf-field-color_picker.php:187 -msgid "RGBA Array" -msgstr "" - -#: includes/fields/class-acf-field-color_picker.php:98 -msgid "RGBA String" -msgstr "" - -#: includes/fields/class-acf-field-color_picker.php:97 -#: includes/fields/class-acf-field-color_picker.php:186 -msgid "Hex String" -msgstr "" - -#: includes/admin/views/browse-fields-modal.php:65 -msgid "Upgrade to PRO" -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:297 -#: includes/admin/post-types/admin-post-type.php:295 -#: includes/admin/post-types/admin-taxonomy.php:297 -msgctxt "post status" -msgid "Active" -msgstr "" - -#: includes/fields/class-acf-field-email.php:181 -msgid "'%s' is not a valid email address" -msgstr "'%s' is not a valid email address" - -#: includes/fields/class-acf-field-color_picker.php:76 -msgid "Color value" -msgstr "Colour value" - -#: includes/fields/class-acf-field-color_picker.php:74 -msgid "Select default color" -msgstr "Select default colour" - -#: includes/fields/class-acf-field-color_picker.php:72 -msgid "Clear color" -msgstr "Clear colour" - -#: includes/acf-wp-functions.php:90 -msgid "Blocks" -msgstr "Blocks" - -#: includes/acf-wp-functions.php:86 -msgid "Options" -msgstr "Options" - -#: includes/acf-wp-functions.php:82 -msgid "Users" -msgstr "Users" - -#: includes/acf-wp-functions.php:78 -msgid "Menu items" -msgstr "Menu items" - -#: includes/acf-wp-functions.php:70 -msgid "Widgets" -msgstr "Widgets" - -#: includes/acf-wp-functions.php:62 -msgid "Attachments" -msgstr "Attachments" - -#: includes/acf-wp-functions.php:57 -#: includes/admin/post-types/admin-post-types.php:137 -#: includes/admin/post-types/admin-taxonomies.php:112 -#: includes/admin/tools/class-acf-admin-tool-import.php:93 -#: includes/admin/views/acf-post-type/basic-settings.php:86 -#: includes/post-types/class-acf-taxonomy.php:90 -#: includes/post-types/class-acf-taxonomy.php:91 -msgid "Taxonomies" -msgstr "Taxonomies" - -#: includes/acf-wp-functions.php:44 -#: includes/admin/post-types/admin-post-type.php:126 -#: includes/admin/post-types/admin-post-types.php:139 -#: includes/admin/views/acf-post-type/advanced-settings.php:106 -#: assets/build/js/acf-internal-post-type.js:173 -#: assets/build/js/acf-internal-post-type.js:247 -msgid "Posts" -msgstr "Posts" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:76 -msgid "Last updated: %s" -msgstr "Last updated: %s" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:70 -msgid "Sorry, this post is unavailable for diff comparison." -msgstr "" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:42 -msgid "Invalid field group parameter(s)." -msgstr "Invalid field group parameter(s)." - -#: includes/admin/admin-internal-post-type-list.php:413 -msgid "Awaiting save" -msgstr "Awaiting save" - -#: includes/admin/admin-internal-post-type-list.php:410 -msgid "Saved" -msgstr "Saved" - -#: includes/admin/admin-internal-post-type-list.php:406 -#: includes/admin/tools/class-acf-admin-tool-import.php:49 -msgid "Import" -msgstr "Import" - -#: includes/admin/admin-internal-post-type-list.php:402 -msgid "Review changes" -msgstr "Review changes" - -#: includes/admin/admin-internal-post-type-list.php:378 -msgid "Located in: %s" -msgstr "Located in: %s" - -#: includes/admin/admin-internal-post-type-list.php:375 -msgid "Located in plugin: %s" -msgstr "Located in plugin: %s" - -#: includes/admin/admin-internal-post-type-list.php:372 -msgid "Located in theme: %s" -msgstr "Located in theme: %s" - -#: includes/admin/post-types/admin-field-groups.php:261 -msgid "Various" -msgstr "Various" - -#: includes/admin/admin-internal-post-type-list.php:216 -#: includes/admin/admin-internal-post-type-list.php:485 -msgid "Sync changes" -msgstr "Sync changes" - -#: includes/admin/admin-internal-post-type-list.php:215 -msgid "Loading diff" -msgstr "Loading diff" - -#: includes/admin/admin-internal-post-type-list.php:214 -msgid "Review local JSON changes" -msgstr "Review local JSON changes" - -#: includes/admin/admin.php:170 -msgid "Visit website" -msgstr "Visit website" - -#: includes/admin/admin.php:169 -msgid "View details" -msgstr "View details" - -#: includes/admin/admin.php:168 -msgid "Version %s" -msgstr "Version %s" - -#: includes/admin/admin.php:167 -msgid "Information" -msgstr "Information" - -#: includes/admin/admin.php:158 -msgid "" -"Help Desk. The support professionals on " -"our Help Desk will assist with your more in depth, technical challenges." -msgstr "" -"Help Desk. The support professionals on " -"our Help Desk will assist with your more in depth, technical challenges." - -#: includes/admin/admin.php:154 -msgid "" -"Discussions. We have an active and " -"friendly community on our Community Forums who may be able to help you " -"figure out the 'how-tos' of the ACF world." -msgstr "" - -#: includes/admin/admin.php:150 -msgid "" -"Documentation. Our extensive " -"documentation contains references and guides for most situations you may " -"encounter." -msgstr "" -"Documentation. Our extensive " -"documentation contains references and guides for most situations you may " -"encounter." - -#: includes/admin/admin.php:147 -msgid "" -"We are fanatical about support, and want you to get the best out of your " -"website with ACF. If you run into any difficulties, there are several places " -"you can find help:" -msgstr "" -"We are fanatical about support, and want you to get the best out of your " -"website with ACF. If you run into any difficulties, there are several places " -"you can find help:" - -#: includes/admin/admin.php:144 includes/admin/admin.php:146 -msgid "Help & Support" -msgstr "Help & Support" - -#: includes/admin/admin.php:135 -msgid "" -"Please use the Help & Support tab to get in touch should you find yourself " -"requiring assistance." -msgstr "" -"Please use the Help & Support tab to get in touch should you find yourself " -"requiring assistance." - -#: includes/admin/admin.php:132 -msgid "" -"Before creating your first Field Group, we recommend first reading our Getting started guide to familiarize " -"yourself with the plugin's philosophy and best practises." -msgstr "" -"Before creating your first Field Group, we recommend first reading our Getting started guide to familiarize " -"yourself with the plugin's philosophy and best practises." - -#: includes/admin/admin.php:130 -msgid "" -"The Advanced Custom Fields plugin provides a visual form builder to " -"customize WordPress edit screens with extra fields, and an intuitive API to " -"display custom field values in any theme template file." -msgstr "" -"The Advanced Custom Fields plugin provides a visual form builder to " -"customize WordPress edit screens with extra fields, and an intuitive API to " -"display custom field values in any theme template file." - -#: includes/admin/admin.php:127 includes/admin/admin.php:129 -msgid "Overview" -msgstr "Overview" - -#: includes/locations.php:36 -msgid "Location type \"%s\" is already registered." -msgstr "Location type \"%s\" is already registered." - -#: includes/locations.php:25 -msgid "Class \"%s\" does not exist." -msgstr "Class \"%s\" does not exist." - -#: includes/ajax/class-acf-ajax.php:157 -msgid "Invalid nonce." -msgstr "Invalid nonce." - -#: includes/fields/class-acf-field-user.php:375 -msgid "Error loading field." -msgstr "Error loading field." - -#: assets/build/js/acf-input.js:2750 assets/build/js/acf-input.js:2819 -#: assets/build/js/acf-input.js:2926 assets/build/js/acf-input.js:3000 -msgid "Location not found: %s" -msgstr "Location not found: %s" - -#: includes/forms/form-user.php:353 -msgid "Error: %s" -msgstr "Error: %s" - -#: includes/locations/class-acf-location-widget.php:22 -msgid "Widget" -msgstr "Widget" - -#: includes/locations/class-acf-location-user-role.php:24 -msgid "User Role" -msgstr "User Role" - -#: includes/locations/class-acf-location-comment.php:22 -msgid "Comment" -msgstr "Comment" - -#: includes/locations/class-acf-location-post-format.php:22 -msgid "Post Format" -msgstr "Post Format" - -#: includes/locations/class-acf-location-nav-menu-item.php:22 -msgid "Menu Item" -msgstr "Menu Item" - -#: includes/locations/class-acf-location-post-status.php:22 -msgid "Post Status" -msgstr "Post Status" - -#: includes/acf-wp-functions.php:74 -#: includes/locations/class-acf-location-nav-menu.php:89 -msgid "Menus" -msgstr "Menus" - -#: includes/locations/class-acf-location-nav-menu.php:80 -msgid "Menu Locations" -msgstr "Menu Locations" - -#: includes/locations/class-acf-location-nav-menu.php:22 -msgid "Menu" -msgstr "Menu" - -#: includes/locations/class-acf-location-post-taxonomy.php:22 -msgid "Post Taxonomy" -msgstr "Post Taxonomy" - -#: includes/locations/class-acf-location-page-type.php:114 -msgid "Child Page (has parent)" -msgstr "Child Page (has parent)" - -#: includes/locations/class-acf-location-page-type.php:113 -msgid "Parent Page (has children)" -msgstr "Parent Page (has children)" - -#: includes/locations/class-acf-location-page-type.php:112 -msgid "Top Level Page (no parent)" -msgstr "Top Level Page (no parent)" - -#: includes/locations/class-acf-location-page-type.php:111 -msgid "Posts Page" -msgstr "Posts Page" - -#: includes/locations/class-acf-location-page-type.php:110 -msgid "Front Page" -msgstr "Front Page" - -#: includes/locations/class-acf-location-page-type.php:22 -msgid "Page Type" -msgstr "Page Type" - -#: includes/locations/class-acf-location-current-user.php:73 -msgid "Viewing back end" -msgstr "Viewing back end" - -#: includes/locations/class-acf-location-current-user.php:72 -msgid "Viewing front end" -msgstr "Viewing front end" - -#: includes/locations/class-acf-location-current-user.php:71 -msgid "Logged in" -msgstr "Logged in" - -#: includes/locations/class-acf-location-current-user.php:22 -msgid "Current User" -msgstr "Current User" - -#: includes/locations/class-acf-location-page-template.php:22 -msgid "Page Template" -msgstr "Page Template" - -#: includes/locations/class-acf-location-user-form.php:74 -msgid "Register" -msgstr "Register" - -#: includes/locations/class-acf-location-user-form.php:73 -msgid "Add / Edit" -msgstr "Add / Edit" - -#: includes/locations/class-acf-location-user-form.php:22 -msgid "User Form" -msgstr "User Form" - -#: includes/locations/class-acf-location-page-parent.php:22 -msgid "Page Parent" -msgstr "Page Parent" - -#: includes/locations/class-acf-location-current-user-role.php:77 -msgid "Super Admin" -msgstr "Super Admin" - -#: includes/locations/class-acf-location-current-user-role.php:22 -msgid "Current User Role" -msgstr "Current User Role" - -#: includes/locations/class-acf-location-page-template.php:73 -#: includes/locations/class-acf-location-post-template.php:85 -msgid "Default Template" -msgstr "Default Template" - -#: includes/locations/class-acf-location-post-template.php:22 -msgid "Post Template" -msgstr "Post Template" - -#: includes/locations/class-acf-location-post-category.php:22 -msgid "Post Category" -msgstr "Post Category" - -#: includes/locations/class-acf-location-attachment.php:84 -msgid "All %s formats" -msgstr "All %s formats" - -#: includes/locations/class-acf-location-attachment.php:22 -msgid "Attachment" -msgstr "Attachment" - -#: includes/validation.php:366 -msgid "%s value is required" -msgstr "%s value is required" - -#: includes/admin/views/acf-field-group/conditional-logic.php:59 -msgid "Show this field if" -msgstr "Show this field if" - -#: includes/admin/views/acf-field-group/conditional-logic.php:26 -#: includes/admin/views/acf-field-group/field.php:109 includes/fields.php:411 -msgid "Conditional Logic" -msgstr "Conditional Logic" - -#: includes/admin/views/acf-field-group/conditional-logic.php:156 -#: includes/admin/views/acf-field-group/location-rule.php:92 -msgid "and" -msgstr "and" - -#: includes/admin/post-types/admin-field-groups.php:123 -#: includes/admin/post-types/admin-post-types.php:143 -#: includes/admin/post-types/admin-taxonomies.php:143 -msgid "Local JSON" -msgstr "Local JSON" - -#: includes/admin/views/acf-field-group/pro-features.php:46 -msgid "Clone Field" -msgstr "Clone Field" - -#: includes/admin/views/upgrade/notice.php:30 -msgid "" -"Please also check all premium add-ons (%s) are updated to the latest version." -msgstr "" -"Please also check all premium add-ons (%s) are updated to the latest version." - -#: includes/admin/views/upgrade/notice.php:28 -msgid "" -"This version contains improvements to your database and requires an upgrade." -msgstr "" -"This version contains improvements to your database and requires an upgrade." - -#: includes/admin/views/upgrade/notice.php:28 -msgid "Thank you for updating to %1$s v%2$s!" -msgstr "Thank you for updating to %1$s v%2$s!" - -#: includes/admin/views/upgrade/notice.php:27 -msgid "Database Upgrade Required" -msgstr "Database Upgrade Required" - -#: includes/admin/post-types/admin-field-group.php:141 -#: includes/admin/views/upgrade/notice.php:18 -msgid "Options Page" -msgstr "Options Page" - -#: includes/admin/views/upgrade/notice.php:15 includes/fields.php:462 -msgid "Gallery" -msgstr "Gallery" - -#: includes/admin/views/upgrade/notice.php:12 includes/fields.php:452 -msgid "Flexible Content" -msgstr "Flexible Content" - -#: includes/admin/views/upgrade/notice.php:9 includes/fields.php:472 -msgid "Repeater" -msgstr "Repeater" - -#: includes/admin/views/tools/tools.php:24 -msgid "Back to all tools" -msgstr "Back to all tools" - -#: includes/admin/views/acf-field-group/options.php:195 -msgid "" -"If multiple field groups appear on an edit screen, the first field group's " -"options will be used (the one with the lowest order number)" -msgstr "" -"If multiple field groups appear on an edit screen, the first field group's " -"options will be used (the one with the lowest order number)" - -#: includes/admin/views/acf-field-group/options.php:195 -msgid "Select items to hide them from the edit screen." -msgstr "Select items to hide them from the edit screen." - -#: includes/admin/views/acf-field-group/options.php:194 -msgid "Hide on screen" -msgstr "Hide on screen" - -#: includes/admin/views/acf-field-group/options.php:186 -msgid "Send Trackbacks" -msgstr "Send Trackbacks" - -#: includes/admin/post-types/admin-taxonomy.php:128 -#: includes/admin/views/acf-field-group/options.php:185 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:159 -#: assets/build/js/acf-internal-post-type.js:180 -#: assets/build/js/acf-internal-post-type.js:254 -msgid "Tags" -msgstr "Tags" - -#: includes/admin/post-types/admin-taxonomy.php:130 -#: includes/admin/views/acf-field-group/options.php:184 -#: assets/build/js/acf-internal-post-type.js:183 -#: assets/build/js/acf-internal-post-type.js:257 -msgid "Categories" -msgstr "Categories" - -#: includes/admin/views/acf-field-group/options.php:182 -#: includes/admin/views/acf-post-type/advanced-settings.php:28 -msgid "Page Attributes" -msgstr "Page Attributes" - -#: includes/admin/views/acf-field-group/options.php:181 -msgid "Format" -msgstr "Format" - -#: includes/admin/views/acf-field-group/options.php:180 -#: includes/admin/views/acf-post-type/advanced-settings.php:22 -msgid "Author" -msgstr "Author" - -#: includes/admin/views/acf-field-group/options.php:179 -msgid "Slug" -msgstr "Slug" - -#: includes/admin/views/acf-field-group/options.php:178 -#: includes/admin/views/acf-post-type/advanced-settings.php:27 -msgid "Revisions" -msgstr "Revisions" - -#: includes/acf-wp-functions.php:66 -#: includes/admin/views/acf-field-group/options.php:177 -#: includes/admin/views/acf-post-type/advanced-settings.php:23 -msgid "Comments" -msgstr "Comments" - -#: includes/admin/views/acf-field-group/options.php:176 -msgid "Discussion" -msgstr "Discussion" - -#: includes/admin/views/acf-field-group/options.php:174 -#: includes/admin/views/acf-post-type/advanced-settings.php:26 -msgid "Excerpt" -msgstr "Excerpt" - -#: includes/admin/views/acf-field-group/options.php:173 -msgid "Content Editor" -msgstr "Content Editor" - -#: includes/admin/views/acf-field-group/options.php:172 -msgid "Permalink" -msgstr "Permalink" - -#: includes/admin/views/acf-field-group/options.php:250 -msgid "Shown in field group list" -msgstr "Shown in field group list" - -#: includes/admin/views/acf-field-group/options.php:157 -msgid "Field groups with a lower order will appear first" -msgstr "Field groups with a lower order will appear first" - -#: includes/admin/views/acf-field-group/options.php:156 -msgid "Order No." -msgstr "Order No." - -#: includes/admin/views/acf-field-group/options.php:147 -msgid "Below fields" -msgstr "Below fields" - -#: includes/admin/views/acf-field-group/options.php:146 -msgid "Below labels" -msgstr "Below labels" - -#: includes/admin/views/acf-field-group/options.php:139 -msgid "Instruction Placement" -msgstr "" - -#: includes/admin/views/acf-field-group/options.php:122 -msgid "Label Placement" -msgstr "" - -#: includes/admin/views/acf-field-group/options.php:110 -msgid "Side" -msgstr "Side" - -#: includes/admin/views/acf-field-group/options.php:109 -msgid "Normal (after content)" -msgstr "Normal (after content)" - -#: includes/admin/views/acf-field-group/options.php:108 -msgid "High (after title)" -msgstr "High (after title)" - -#: includes/admin/views/acf-field-group/options.php:101 -msgid "Position" -msgstr "Position" - -#: includes/admin/views/acf-field-group/options.php:92 -msgid "Seamless (no metabox)" -msgstr "Seamless (no metabox)" - -#: includes/admin/views/acf-field-group/options.php:91 -msgid "Standard (WP metabox)" -msgstr "Standard (WP metabox)" - -#: includes/admin/views/acf-field-group/options.php:84 -msgid "Style" -msgstr "Style" - -#: includes/admin/views/acf-field-group/fields.php:55 -msgid "Type" -msgstr "Type" - -#: includes/admin/post-types/admin-field-groups.php:117 -#: includes/admin/post-types/admin-post-types.php:136 -#: includes/admin/post-types/admin-taxonomies.php:136 -#: includes/admin/views/acf-field-group/fields.php:54 -msgid "Key" -msgstr "Key" - -#. translators: Hidden accessibility text for the positional order number of -#. the field. -#: includes/admin/views/acf-field-group/fields.php:48 -msgid "Order" -msgstr "Order" - -#: includes/admin/views/acf-field-group/field.php:322 -msgid "Close Field" -msgstr "Close Field" - -#: includes/admin/views/acf-field-group/field.php:253 -msgid "id" -msgstr "id" - -#: includes/admin/views/acf-field-group/field.php:237 -msgid "class" -msgstr "class" - -#: includes/admin/views/acf-field-group/field.php:279 -msgid "width" -msgstr "width" - -#: includes/admin/views/acf-field-group/field.php:273 -msgid "Wrapper Attributes" -msgstr "Wrapper Attributes" - -#: includes/admin/views/acf-field-group/field.php:196 -msgid "Required" -msgstr "" - -#: includes/admin/views/acf-field-group/field.php:221 -msgid "Instructions for authors. Shown when submitting data" -msgstr "Instructions for authors. Shown when submitting data" - -#: includes/admin/views/acf-field-group/field.php:220 -msgid "Instructions" -msgstr "Instructions" - -#: includes/admin/views/acf-field-group/field.php:129 -msgid "Field Type" -msgstr "Field Type" - -#: includes/admin/views/acf-field-group/field.php:170 -msgid "Single word, no spaces. Underscores and dashes allowed" -msgstr "Single word, no spaces. Underscores and dashes allowed" - -#: includes/admin/views/acf-field-group/field.php:169 -msgid "Field Name" -msgstr "Field Name" - -#: includes/admin/views/acf-field-group/field.php:157 -msgid "This is the name which will appear on the EDIT page" -msgstr "This is the name which will appear on the EDIT page" - -#: includes/admin/views/acf-field-group/field.php:156 -#: includes/admin/views/browse-fields-modal.php:59 -msgid "Field Label" -msgstr "Field Label" - -#: includes/admin/views/acf-field-group/field.php:81 -msgid "Delete" -msgstr "Delete" - -#: includes/admin/views/acf-field-group/field.php:81 -msgid "Delete field" -msgstr "Delete field" - -#: includes/admin/views/acf-field-group/field.php:79 -msgid "Move" -msgstr "Move" - -#: includes/admin/views/acf-field-group/field.php:79 -msgid "Move field to another group" -msgstr "Move field to another group" - -#: includes/admin/views/acf-field-group/field.php:77 -msgid "Duplicate field" -msgstr "Duplicate field" - -#: includes/admin/views/acf-field-group/field.php:73 -#: includes/admin/views/acf-field-group/field.php:76 -msgid "Edit field" -msgstr "Edit field" - -#: includes/admin/views/acf-field-group/field.php:69 -msgid "Drag to reorder" -msgstr "Drag to reorder" - -#: includes/admin/post-types/admin-field-group.php:103 -#: includes/admin/views/acf-field-group/location-group.php:3 -#: assets/build/js/acf-field-group.js:2347 -#: assets/build/js/acf-field-group.js:2763 -msgid "Show this field group if" -msgstr "Show this field group if" - -#: includes/admin/views/upgrade/upgrade.php:94 -#: includes/ajax/class-acf-ajax-upgrade.php:34 -msgid "No updates available." -msgstr "No updates available." - -#: includes/admin/views/upgrade/upgrade.php:33 -msgid "Database upgrade complete. See what's new" -msgstr "Database upgrade complete. See what's new" - -#: includes/admin/views/upgrade/upgrade.php:30 -msgid "Reading upgrade tasks..." -msgstr "Reading upgrade tasks…" - -#: includes/admin/views/upgrade/network.php:165 -#: includes/admin/views/upgrade/upgrade.php:65 -msgid "Upgrade failed." -msgstr "Upgrade failed." - -#: includes/admin/views/upgrade/network.php:162 -msgid "Upgrade complete." -msgstr "Upgrade complete." - -#: includes/admin/views/upgrade/network.php:148 -#: includes/admin/views/upgrade/upgrade.php:31 -msgid "Upgrading data to version %s" -msgstr "Upgrading data to version %s" - -#: includes/admin/views/upgrade/network.php:121 -#: includes/admin/views/upgrade/notice.php:44 -msgid "" -"It is strongly recommended that you backup your database before proceeding. " -"Are you sure you wish to run the updater now?" -msgstr "" -"It is strongly recommended that you backup your database before proceeding. " -"Are you sure you wish to run the updater now?" - -#: includes/admin/views/upgrade/network.php:117 -msgid "Please select at least one site to upgrade." -msgstr "Please select at least one site to upgrade." - -#: includes/admin/views/upgrade/network.php:97 -msgid "" -"Database Upgrade complete. Return to network dashboard" -msgstr "" -"Database Upgrade complete. Return to network dashboard" - -#: includes/admin/views/upgrade/network.php:80 -msgid "Site is up to date" -msgstr "Site is up to date" - -#: includes/admin/views/upgrade/network.php:78 -msgid "Site requires database upgrade from %1$s to %2$s" -msgstr "Site requires database upgrade from %1$s to %2$s" - -#: includes/admin/views/upgrade/network.php:36 -#: includes/admin/views/upgrade/network.php:47 -msgid "Site" -msgstr "Site" - -#: includes/admin/views/upgrade/network.php:26 -#: includes/admin/views/upgrade/network.php:27 -#: includes/admin/views/upgrade/network.php:96 -msgid "Upgrade Sites" -msgstr "Upgrade Sites" - -#: includes/admin/views/upgrade/network.php:26 -msgid "" -"The following sites require a DB upgrade. Check the ones you want to update " -"and then click %s." -msgstr "" -"The following sites require a DB upgrade. Check the ones you want to update " -"and then click %s." - -#: includes/admin/views/acf-field-group/conditional-logic.php:171 -#: includes/admin/views/acf-field-group/locations.php:38 -msgid "Add rule group" -msgstr "Add rule group" - -#: includes/admin/views/acf-field-group/locations.php:10 -msgid "" -"Create a set of rules to determine which edit screens will use these " -"advanced custom fields" -msgstr "" -"Create a set of rules to determine which edit screens will use these " -"advanced custom fields" - -#: includes/admin/views/acf-field-group/locations.php:9 -msgid "Rules" -msgstr "Rules" - -#: includes/admin/tools/class-acf-admin-tool-export.php:510 -msgid "Copied" -msgstr "Copied" - -#: includes/admin/tools/class-acf-admin-tool-export.php:486 -msgid "Copy to clipboard" -msgstr "Copy to clipboard" - -#: includes/admin/tools/class-acf-admin-tool-export.php:385 -msgid "" -"Select the items you would like to export and then select your export " -"method. Export As JSON to export to a .json file which you can then import " -"to another ACF installation. Generate PHP to export to PHP code which you " -"can place in your theme." -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:233 -msgid "Select Field Groups" -msgstr "Select Field Groups" - -#: includes/admin/tools/class-acf-admin-tool-export.php:96 -#: includes/admin/tools/class-acf-admin-tool-export.php:131 -msgid "No field groups selected" -msgstr "No field groups selected" - -#: includes/admin/tools/class-acf-admin-tool-export.php:39 -#: includes/admin/tools/class-acf-admin-tool-export.php:393 -#: includes/admin/tools/class-acf-admin-tool-export.php:421 -msgid "Generate PHP" -msgstr "Generate PHP" - -#: includes/admin/tools/class-acf-admin-tool-export.php:35 -msgid "Export Field Groups" -msgstr "Export Field Groups" - -#: includes/admin/tools/class-acf-admin-tool-import.php:177 -msgid "Import file empty" -msgstr "Import file empty" - -#: includes/admin/tools/class-acf-admin-tool-import.php:168 -msgid "Incorrect file type" -msgstr "Incorrect file type" - -#: includes/admin/tools/class-acf-admin-tool-import.php:163 -msgid "Error uploading file. Please try again" -msgstr "Error uploading file. Please try again" - -#: includes/admin/tools/class-acf-admin-tool-import.php:50 -msgid "" -"Select the Advanced Custom Fields JSON file you would like to import. When " -"you click the import button below, ACF will import the items in that file." -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:27 -msgid "Import Field Groups" -msgstr "Import Field Groups" - -#: includes/admin/admin-internal-post-type-list.php:401 -msgid "Sync" -msgstr "Sync" - -#: includes/admin/admin-internal-post-type-list.php:858 -msgid "Select %s" -msgstr "Select %s" - -#: includes/admin/admin-internal-post-type-list.php:442 -#: includes/admin/admin-internal-post-type-list.php:474 -#: includes/admin/views/acf-field-group/field.php:77 -msgid "Duplicate" -msgstr "Duplicate" - -#: includes/admin/admin-internal-post-type-list.php:442 -msgid "Duplicate this item" -msgstr "Duplicate this item" - -#: includes/admin/views/acf-post-type/advanced-settings.php:41 -msgid "Supports" -msgstr "" - -#: includes/admin/admin.php:261 includes/admin/views/browse-fields-modal.php:92 -msgid "Documentation" -msgstr "Documentation" - -#: includes/admin/post-types/admin-field-groups.php:116 -#: includes/admin/post-types/admin-post-types.php:135 -#: includes/admin/post-types/admin-taxonomies.php:135 -#: includes/admin/views/acf-field-group/options.php:249 -#: includes/admin/views/acf-post-type/advanced-settings.php:62 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:114 -#: includes/admin/views/upgrade/network.php:38 -#: includes/admin/views/upgrade/network.php:49 -msgid "Description" -msgstr "Description" - -#: includes/admin/admin-internal-post-type-list.php:398 -#: includes/admin/admin-internal-post-type-list.php:747 -msgid "Sync available" -msgstr "Sync available" - -#. translators: %s number of field groups synchronized -#: includes/admin/post-types/admin-field-groups.php:381 -msgid "Field group synchronized." -msgid_plural "%s field groups synchronized." -msgstr[0] "" -msgstr[1] "" - -#. translators: %s number of field groups duplicated -#: includes/admin/post-types/admin-field-groups.php:374 -msgid "Field group duplicated." -msgid_plural "%s field groups duplicated." -msgstr[0] "Field group duplicated." -msgstr[1] "%s field groups duplicated." - -#: includes/admin/admin-internal-post-type-list.php:137 -msgid "Active (%s)" -msgid_plural "Active (%s)" -msgstr[0] "Active (%s)" -msgstr[1] "Active (%s)" - -#: includes/admin/admin-upgrade.php:254 -msgid "Review sites & upgrade" -msgstr "Review sites & upgrade" - -#: includes/admin/admin-upgrade.php:59 includes/admin/admin-upgrade.php:93 -#: includes/admin/admin-upgrade.php:94 includes/admin/admin-upgrade.php:230 -#: includes/admin/views/upgrade/network.php:24 -#: includes/admin/views/upgrade/upgrade.php:26 -msgid "Upgrade Database" -msgstr "Upgrade Database" - -#: includes/admin/views/acf-field-group/options.php:175 -#: includes/admin/views/acf-post-type/advanced-settings.php:30 -msgid "Custom Fields" -msgstr "Custom Fields" - -#: includes/admin/post-types/admin-field-group.php:616 -msgid "Move Field" -msgstr "Move Field" - -#: includes/admin/post-types/admin-field-group.php:605 -#: includes/admin/post-types/admin-field-group.php:609 -msgid "Please select the destination for this field" -msgstr "Please select the destination for this field" - -#. translators: Confirmation message once a field has been moved to a different -#. field group. -#: includes/admin/post-types/admin-field-group.php:567 -msgid "The %1$s field can now be found in the %2$s field group" -msgstr "The %1$s field can now be found in the %2$s field group" - -#: includes/admin/post-types/admin-field-group.php:564 -msgid "Move Complete." -msgstr "Move Complete." - -#: includes/admin/views/acf-field-group/field.php:39 -#: includes/admin/views/acf-field-group/options.php:217 -#: includes/admin/views/acf-post-type/advanced-settings.php:78 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:130 -msgid "Active" -msgstr "Active" - -#: includes/admin/post-types/admin-field-group.php:266 -msgid "Field Keys" -msgstr "Field Keys" - -#: includes/admin/post-types/admin-field-group.php:164 -#: includes/admin/tools/class-acf-admin-tool-export.php:342 -msgid "Settings" -msgstr "Settings" - -#: includes/admin/post-types/admin-field-groups.php:118 -msgid "Location" -msgstr "Location" - -#: includes/admin/post-types/admin-field-group.php:104 -#: assets/build/js/acf-input.js:983 assets/build/js/acf-input.js:1075 -msgid "Null" -msgstr "Null" - -#: includes/admin/post-types/admin-field-group.php:101 -#: includes/class-acf-internal-post-type.php:730 -#: includes/post-types/class-acf-field-group.php:345 -#: assets/build/js/acf-field-group.js:1510 -#: assets/build/js/acf-field-group.js:1821 -msgid "copy" -msgstr "copy" - -#: includes/admin/post-types/admin-field-group.php:100 -#: assets/build/js/acf-field-group.js:623 -#: assets/build/js/acf-field-group.js:778 -msgid "(this field)" -msgstr "(this field)" - -#: includes/admin/post-types/admin-field-group.php:98 -#: assets/build/js/acf-input.js:918 assets/build/js/acf-input.js:943 -#: assets/build/js/acf-input.js:1002 assets/build/js/acf-input.js:1030 -msgid "Checked" -msgstr "Checked" - -#: includes/admin/post-types/admin-field-group.php:94 -#: assets/build/js/acf-field-group.js:1615 -#: assets/build/js/acf-field-group.js:1933 -msgid "Move Custom Field" -msgstr "Move Custom Field" - -#: includes/admin/post-types/admin-field-group.php:93 -#: assets/build/js/acf-field-group.js:649 -#: assets/build/js/acf-field-group.js:804 -msgid "No toggle fields available" -msgstr "No toggle fields available" - -#: includes/admin/post-types/admin-field-group.php:91 -msgid "Field group title is required" -msgstr "Field group title is required" - -#: includes/admin/post-types/admin-field-group.php:90 -#: assets/build/js/acf-field-group.js:1604 -#: assets/build/js/acf-field-group.js:1919 -msgid "This field cannot be moved until its changes have been saved" -msgstr "This field cannot be moved until its changes have been saved" - -#: includes/admin/post-types/admin-field-group.php:89 -#: assets/build/js/acf-field-group.js:1414 -#: assets/build/js/acf-field-group.js:1716 -msgid "The string \"field_\" may not be used at the start of a field name" -msgstr "The string \"field_\" may not be used at the start of a field name" - -#: includes/admin/post-types/admin-field-group.php:71 -msgid "Field group draft updated." -msgstr "Field group draft updated." - -#: includes/admin/post-types/admin-field-group.php:70 -msgid "Field group scheduled for." -msgstr "Field group scheduled for." - -#: includes/admin/post-types/admin-field-group.php:69 -msgid "Field group submitted." -msgstr "Field group submitted." - -#: includes/admin/post-types/admin-field-group.php:68 -msgid "Field group saved." -msgstr "Field group saved." - -#: includes/admin/post-types/admin-field-group.php:67 -msgid "Field group published." -msgstr "Field group published." - -#: includes/admin/post-types/admin-field-group.php:64 -msgid "Field group deleted." -msgstr "Field group deleted." - -#: includes/admin/post-types/admin-field-group.php:62 -#: includes/admin/post-types/admin-field-group.php:63 -#: includes/admin/post-types/admin-field-group.php:65 -msgid "Field group updated." -msgstr "Field group updated." - -#: includes/admin/admin-tools.php:118 -#: includes/admin/views/global/navigation.php:246 -#: includes/admin/views/tools/tools.php:21 -msgid "Tools" -msgstr "Tools" - -#: includes/locations/abstract-acf-location.php:106 -msgid "is not equal to" -msgstr "is not equal to" - -#: includes/locations/abstract-acf-location.php:105 -msgid "is equal to" -msgstr "is equal to" - -#: includes/locations.php:102 -msgid "Forms" -msgstr "Forms" - -#: includes/admin/post-types/admin-post-type.php:127 includes/locations.php:100 -#: includes/locations/class-acf-location-page.php:22 -#: assets/build/js/acf-internal-post-type.js:175 -#: assets/build/js/acf-internal-post-type.js:249 -msgid "Page" -msgstr "Page" - -#: includes/admin/post-types/admin-post-type.php:125 includes/locations.php:99 -#: includes/locations/class-acf-location-post.php:22 -#: assets/build/js/acf-internal-post-type.js:172 -#: assets/build/js/acf-internal-post-type.js:246 -msgid "Post" -msgstr "Post" - -#: includes/fields.php:354 -msgid "Relational" -msgstr "Relational" - -#: includes/fields.php:353 -msgid "Choice" -msgstr "Choice" - -#: includes/fields.php:351 -msgid "Basic" -msgstr "Basic" - -#: includes/fields.php:320 -msgid "Unknown" -msgstr "Unknown" - -#: includes/fields.php:320 -msgid "Field type does not exist" -msgstr "Field type does not exist" - -#: includes/forms/form-front.php:236 -msgid "Spam Detected" -msgstr "Spam Detected" - -#: includes/forms/form-front.php:107 -msgid "Post updated" -msgstr "Post updated" - -#: includes/forms/form-front.php:106 -msgid "Update" -msgstr "Update" - -#: includes/forms/form-front.php:57 -msgid "Validate Email" -msgstr "Validate Email" - -#: includes/fields.php:352 includes/forms/form-front.php:49 -msgid "Content" -msgstr "Content" - -#: includes/admin/views/acf-post-type/advanced-settings.php:21 -#: includes/forms/form-front.php:40 -msgid "Title" -msgstr "Title" - -#: includes/assets.php:372 includes/forms/form-comment.php:160 -#: assets/build/js/acf-input.js:7382 assets/build/js/acf-input.js:7968 -msgid "Edit field group" -msgstr "Edit field group" - -#: includes/admin/post-types/admin-field-group.php:117 -#: assets/build/js/acf-input.js:1125 assets/build/js/acf-input.js:1230 -msgid "Selection is less than" -msgstr "Selection is less than" - -#: includes/admin/post-types/admin-field-group.php:116 -#: assets/build/js/acf-input.js:1106 assets/build/js/acf-input.js:1202 -msgid "Selection is greater than" -msgstr "Selection is greater than" - -#: includes/admin/post-types/admin-field-group.php:115 -#: assets/build/js/acf-input.js:1075 assets/build/js/acf-input.js:1170 -msgid "Value is less than" -msgstr "Value is less than" - -#: includes/admin/post-types/admin-field-group.php:114 -#: assets/build/js/acf-input.js:1045 assets/build/js/acf-input.js:1139 -msgid "Value is greater than" -msgstr "Value is greater than" - -#: includes/admin/post-types/admin-field-group.php:113 -#: assets/build/js/acf-input.js:888 assets/build/js/acf-input.js:960 -msgid "Value contains" -msgstr "Value contains" - -#: includes/admin/post-types/admin-field-group.php:112 -#: assets/build/js/acf-input.js:862 assets/build/js/acf-input.js:926 -msgid "Value matches pattern" -msgstr "Value matches pattern" - -#: includes/admin/post-types/admin-field-group.php:111 -#: assets/build/js/acf-input.js:840 assets/build/js/acf-input.js:1023 -#: assets/build/js/acf-input.js:903 assets/build/js/acf-input.js:1116 -msgid "Value is not equal to" -msgstr "Value is not equal to" - -#: includes/admin/post-types/admin-field-group.php:110 -#: assets/build/js/acf-input.js:810 assets/build/js/acf-input.js:964 -#: assets/build/js/acf-input.js:864 assets/build/js/acf-input.js:1053 -msgid "Value is equal to" -msgstr "Value is equal to" - -#: includes/admin/post-types/admin-field-group.php:109 -#: assets/build/js/acf-input.js:788 assets/build/js/acf-input.js:841 -msgid "Has no value" -msgstr "Has no value" - -#: includes/admin/post-types/admin-field-group.php:108 -#: assets/build/js/acf-input.js:758 assets/build/js/acf-input.js:783 -msgid "Has any value" -msgstr "Has any value" - -#: includes/admin/admin-internal-post-type.php:345 -#: includes/admin/views/browse-fields-modal.php:62 includes/assets.php:353 -#: assets/build/js/acf.js:1564 assets/build/js/acf.js:1658 -msgid "Cancel" -msgstr "Cancel" - -#: includes/assets.php:349 assets/build/js/acf.js:1738 -#: assets/build/js/acf.js:1855 -msgid "Are you sure?" -msgstr "Are you sure?" - -#: includes/assets.php:369 assets/build/js/acf-input.js:9442 -#: assets/build/js/acf-input.js:10294 -msgid "%d fields require attention" -msgstr "%d fields require attention" - -#: includes/assets.php:368 assets/build/js/acf-input.js:9440 -#: assets/build/js/acf-input.js:10290 -msgid "1 field requires attention" -msgstr "1 field requires attention" - -#: includes/assets.php:367 includes/validation.php:288 -#: includes/validation.php:298 assets/build/js/acf-input.js:9435 -#: assets/build/js/acf-input.js:10285 -msgid "Validation failed" -msgstr "Validation failed" - -#: includes/assets.php:366 assets/build/js/acf-input.js:9603 -#: assets/build/js/acf-input.js:10473 -msgid "Validation successful" -msgstr "Validation successful" - -#: includes/media.php:54 assets/build/js/acf-input.js:7210 -#: assets/build/js/acf-input.js:7772 -msgid "Restricted" -msgstr "Restricted" - -#: includes/media.php:53 assets/build/js/acf-input.js:7025 -#: assets/build/js/acf-input.js:7536 -msgid "Collapse Details" -msgstr "Collapse Details" - -#: includes/media.php:52 assets/build/js/acf-input.js:7025 -#: assets/build/js/acf-input.js:7533 -msgid "Expand Details" -msgstr "Expand Details" - -#: includes/admin/views/acf-post-type/advanced-settings.php:465 -#: includes/media.php:51 assets/build/js/acf-input.js:6892 -#: assets/build/js/acf-input.js:7381 -msgid "Uploaded to this post" -msgstr "Uploaded to this post" - -#: includes/media.php:50 assets/build/js/acf-input.js:6931 -#: assets/build/js/acf-input.js:7420 -msgctxt "verb" -msgid "Update" -msgstr "Update" - -#: includes/media.php:49 -msgctxt "verb" -msgid "Edit" -msgstr "Edit" - -#: includes/assets.php:363 assets/build/js/acf-input.js:9212 -#: assets/build/js/acf-input.js:10056 -msgid "The changes you made will be lost if you navigate away from this page" -msgstr "The changes you made will be lost if you navigate away from this page" - -#: includes/api/api-helpers.php:3395 -msgid "File type must be %s." -msgstr "File type must be %s." - -#: includes/admin/post-types/admin-field-group.php:102 -#: includes/admin/views/acf-field-group/conditional-logic.php:59 -#: includes/admin/views/acf-field-group/conditional-logic.php:169 -#: includes/admin/views/acf-field-group/location-group.php:3 -#: includes/admin/views/acf-field-group/locations.php:36 -#: includes/api/api-helpers.php:3391 assets/build/js/acf-field-group.js:771 -#: assets/build/js/acf-field-group.js:2385 -#: assets/build/js/acf-field-group.js:933 -#: assets/build/js/acf-field-group.js:2807 -msgid "or" -msgstr "or" - -#: includes/api/api-helpers.php:3364 -msgid "File size must not exceed %s." -msgstr "File size must not exceed %s." - -#: includes/api/api-helpers.php:3359 -msgid "File size must be at least %s." -msgstr "File size must be at least %s." - -#: includes/api/api-helpers.php:3344 -msgid "Image height must not exceed %dpx." -msgstr "Image height must not exceed %dpx." - -#: includes/api/api-helpers.php:3339 -msgid "Image height must be at least %dpx." -msgstr "Image height must be at least %dpx." - -#: includes/api/api-helpers.php:3325 -msgid "Image width must not exceed %dpx." -msgstr "Image width must not exceed %dpx." - -#: includes/api/api-helpers.php:3320 -msgid "Image width must be at least %dpx." -msgstr "Image width must be at least %dpx." - -#: includes/api/api-helpers.php:1561 includes/api/api-term.php:147 -msgid "(no title)" -msgstr "(no title)" - -#: includes/api/api-helpers.php:853 -msgid "Full Size" -msgstr "Full Size" - -#: includes/api/api-helpers.php:812 -msgid "Large" -msgstr "Large" - -#: includes/api/api-helpers.php:811 -msgid "Medium" -msgstr "Medium" - -#: includes/api/api-helpers.php:810 -msgid "Thumbnail" -msgstr "Thumbnail" - -#: includes/acf-field-functions.php:854 -#: includes/admin/post-types/admin-field-group.php:99 -#: assets/build/js/acf-field-group.js:1077 -#: assets/build/js/acf-field-group.js:1260 -msgid "(no label)" -msgstr "(no label)" - -#: includes/fields/class-acf-field-textarea.php:145 -msgid "Sets the textarea height" -msgstr "Sets the textarea height" - -#: includes/fields/class-acf-field-textarea.php:144 -msgid "Rows" -msgstr "Rows" - -#: includes/fields/class-acf-field-textarea.php:25 -msgid "Text Area" -msgstr "Text Area" - -#: includes/fields/class-acf-field-checkbox.php:451 -msgid "Prepend an extra checkbox to toggle all choices" -msgstr "Prepend an extra checkbox to toggle all choices" - -#: includes/fields/class-acf-field-checkbox.php:413 -msgid "Save 'custom' values to the field's choices" -msgstr "Save 'custom' values to the field's choices" - -#: includes/fields/class-acf-field-checkbox.php:402 -msgid "Allow 'custom' values to be added" -msgstr "Allow 'custom' values to be added" - -#: includes/fields/class-acf-field-checkbox.php:38 -msgid "Add new choice" -msgstr "Add new choice" - -#: includes/fields/class-acf-field-checkbox.php:174 -msgid "Toggle All" -msgstr "Toggle All" - -#: includes/fields/class-acf-field-page_link.php:506 -msgid "Allow Archives URLs" -msgstr "Allow Archives URLs" - -#: includes/fields/class-acf-field-page_link.php:179 -msgid "Archives" -msgstr "Archives" - -#: includes/fields/class-acf-field-page_link.php:25 -msgid "Page Link" -msgstr "Page Link" - -#: includes/fields/class-acf-field-taxonomy.php:943 -#: includes/locations/class-acf-location-user-form.php:72 -msgid "Add" -msgstr "Add" - -#: includes/admin/views/acf-field-group/fields.php:53 -#: includes/fields/class-acf-field-taxonomy.php:908 -msgid "Name" -msgstr "Name" - -#: includes/fields/class-acf-field-taxonomy.php:892 -msgid "%s added" -msgstr "%s added" - -#: includes/fields/class-acf-field-taxonomy.php:856 -msgid "%s already exists" -msgstr "%s already exists" - -#: includes/fields/class-acf-field-taxonomy.php:844 -msgid "User unable to add new %s" -msgstr "User unable to add new %s" - -#: includes/fields/class-acf-field-taxonomy.php:742 -msgid "Term ID" -msgstr "Term ID" - -#: includes/fields/class-acf-field-taxonomy.php:741 -msgid "Term Object" -msgstr "Term Object" - -#: includes/fields/class-acf-field-taxonomy.php:726 -msgid "Load value from posts terms" -msgstr "Load value from posts terms" - -#: includes/fields/class-acf-field-taxonomy.php:725 -msgid "Load Terms" -msgstr "Load Terms" - -#: includes/fields/class-acf-field-taxonomy.php:715 -msgid "Connect selected terms to the post" -msgstr "Connect selected terms to the post" - -#: includes/fields/class-acf-field-taxonomy.php:714 -msgid "Save Terms" -msgstr "Save Terms" - -#: includes/fields/class-acf-field-taxonomy.php:704 -msgid "Allow new terms to be created whilst editing" -msgstr "Allow new terms to be created whilst editing" - -#: includes/fields/class-acf-field-taxonomy.php:703 -msgid "Create Terms" -msgstr "Create Terms" - -#: includes/fields/class-acf-field-taxonomy.php:762 -msgid "Radio Buttons" -msgstr "Radio Buttons" - -#: includes/fields/class-acf-field-taxonomy.php:761 -msgid "Single Value" -msgstr "Single Value" - -#: includes/fields/class-acf-field-taxonomy.php:759 -msgid "Multi Select" -msgstr "Multi Select" - -#: includes/fields/class-acf-field-checkbox.php:25 -#: includes/fields/class-acf-field-taxonomy.php:758 -msgid "Checkbox" -msgstr "Checkbox" - -#: includes/fields/class-acf-field-taxonomy.php:757 -msgid "Multiple Values" -msgstr "Multiple Values" - -#: includes/fields/class-acf-field-taxonomy.php:752 -msgid "Select the appearance of this field" -msgstr "Select the appearance of this field" - -#: includes/fields/class-acf-field-taxonomy.php:751 -msgid "Appearance" -msgstr "Appearance" - -#: includes/fields/class-acf-field-taxonomy.php:693 -msgid "Select the taxonomy to be displayed" -msgstr "Select the taxonomy to be displayed" - -#: includes/fields/class-acf-field-taxonomy.php:654 -msgctxt "No Terms" -msgid "No %s" -msgstr "" - -#: includes/fields/class-acf-field-number.php:266 -msgid "Value must be equal to or lower than %d" -msgstr "Value must be equal to or lower than %d" - -#: includes/fields/class-acf-field-number.php:259 -msgid "Value must be equal to or higher than %d" -msgstr "Value must be equal to or higher than %d" - -#: includes/fields/class-acf-field-number.php:244 -msgid "Value must be a number" -msgstr "Value must be a number" - -#: includes/fields/class-acf-field-number.php:25 -msgid "Number" -msgstr "Number" - -#: includes/fields/class-acf-field-radio.php:264 -msgid "Save 'other' values to the field's choices" -msgstr "Save 'other' values to the field's choices" - -#: includes/fields/class-acf-field-radio.php:253 -msgid "Add 'other' choice to allow for custom values" -msgstr "Add 'other' choice to allow for custom values" - -#: includes/admin/views/global/navigation.php:196 -msgid "Other" -msgstr "Other" - -#: includes/fields/class-acf-field-radio.php:25 -msgid "Radio Button" -msgstr "Radio Button" - -#: includes/fields/class-acf-field-accordion.php:107 -msgid "" -"Define an endpoint for the previous accordion to stop. This accordion will " -"not be visible." -msgstr "" -"Define an endpoint for the previous accordion to stop. This accordion will " -"not be visible." - -#: includes/fields/class-acf-field-accordion.php:96 -msgid "Allow this accordion to open without closing others." -msgstr "Allow this accordion to open without closing others." - -#: includes/fields/class-acf-field-accordion.php:95 -msgid "Multi-Expand" -msgstr "" - -#: includes/fields/class-acf-field-accordion.php:85 -msgid "Display this accordion as open on page load." -msgstr "Display this accordion as open on page load." - -#: includes/fields/class-acf-field-accordion.php:84 -msgid "Open" -msgstr "Open" - -#: includes/fields/class-acf-field-accordion.php:25 -msgid "Accordion" -msgstr "Accordion" - -#: includes/fields/class-acf-field-file.php:267 -#: includes/fields/class-acf-field-file.php:279 -msgid "Restrict which files can be uploaded" -msgstr "Restrict which files can be uploaded" - -#: includes/fields/class-acf-field-file.php:220 -msgid "File ID" -msgstr "File ID" - -#: includes/fields/class-acf-field-file.php:219 -msgid "File URL" -msgstr "File URL" - -#: includes/fields/class-acf-field-file.php:218 -msgid "File Array" -msgstr "File Array" - -#: includes/fields/class-acf-field-file.php:186 -msgid "Add File" -msgstr "Add File" - -#: includes/admin/tools/class-acf-admin-tool-import.php:156 -#: includes/fields/class-acf-field-file.php:186 -msgid "No file selected" -msgstr "No file selected" - -#: includes/fields/class-acf-field-file.php:150 -msgid "File name" -msgstr "File name" - -#: includes/fields/class-acf-field-file.php:63 -#: assets/build/js/acf-input.js:2474 assets/build/js/acf-input.js:2625 -msgid "Update File" -msgstr "Update File" - -#: includes/fields/class-acf-field-file.php:62 -#: assets/build/js/acf-input.js:2473 assets/build/js/acf-input.js:2624 -msgid "Edit File" -msgstr "Edit File" - -#: includes/admin/tools/class-acf-admin-tool-import.php:58 -#: includes/fields/class-acf-field-file.php:61 -#: assets/build/js/acf-input.js:2447 assets/build/js/acf-input.js:2597 -msgid "Select File" -msgstr "Select File" - -#: includes/fields/class-acf-field-file.php:25 -msgid "File" -msgstr "File" - -#: includes/fields/class-acf-field-password.php:25 -msgid "Password" -msgstr "Password" - -#: includes/fields/class-acf-field-select.php:392 -msgid "Specify the value returned" -msgstr "Specify the value returned" - -#: includes/fields/class-acf-field-select.php:461 -msgid "Use AJAX to lazy load choices?" -msgstr "Use AJAX to lazy load choices?" - -#: includes/fields/class-acf-field-checkbox.php:362 -#: includes/fields/class-acf-field-select.php:381 -msgid "Enter each default value on a new line" -msgstr "Enter each default value on a new line" - -#: includes/fields/class-acf-field-select.php:252 includes/media.php:48 -#: assets/build/js/acf-input.js:6790 assets/build/js/acf-input.js:7266 -msgctxt "verb" -msgid "Select" -msgstr "Select" - -#: includes/fields/class-acf-field-select.php:121 -msgctxt "Select2 JS load_fail" -msgid "Loading failed" -msgstr "Loading failed" - -#: includes/fields/class-acf-field-select.php:120 -msgctxt "Select2 JS searching" -msgid "Searching…" -msgstr "Searching…" - -#: includes/fields/class-acf-field-select.php:119 -msgctxt "Select2 JS load_more" -msgid "Loading more results…" -msgstr "Loading more results…" - -#: includes/fields/class-acf-field-select.php:118 -msgctxt "Select2 JS selection_too_long_n" -msgid "You can only select %d items" -msgstr "You can only select %d items" - -#: includes/fields/class-acf-field-select.php:117 -msgctxt "Select2 JS selection_too_long_1" -msgid "You can only select 1 item" -msgstr "You can only select 1 item" - -#: includes/fields/class-acf-field-select.php:116 -msgctxt "Select2 JS input_too_long_n" -msgid "Please delete %d characters" -msgstr "Please delete %d characters" - -#: includes/fields/class-acf-field-select.php:115 -msgctxt "Select2 JS input_too_long_1" -msgid "Please delete 1 character" -msgstr "Please delete 1 character" - -#: includes/fields/class-acf-field-select.php:114 -msgctxt "Select2 JS input_too_short_n" -msgid "Please enter %d or more characters" -msgstr "Please enter %d or more characters" - -#: includes/fields/class-acf-field-select.php:113 -msgctxt "Select2 JS input_too_short_1" -msgid "Please enter 1 or more characters" -msgstr "Please enter 1 or more characters" - -#: includes/fields/class-acf-field-select.php:112 -msgctxt "Select2 JS matches_0" -msgid "No matches found" -msgstr "No matches found" - -#: includes/fields/class-acf-field-select.php:111 -msgctxt "Select2 JS matches_n" -msgid "%d results are available, use up and down arrow keys to navigate." -msgstr "%d results are available, use up and down arrow keys to navigate." - -#: includes/fields/class-acf-field-select.php:110 -msgctxt "Select2 JS matches_1" -msgid "One result is available, press enter to select it." -msgstr "One result is available, press enter to select it." - -#: includes/fields/class-acf-field-select.php:25 -#: includes/fields/class-acf-field-taxonomy.php:763 -msgctxt "noun" -msgid "Select" -msgstr "Select" - -#: includes/fields/class-acf-field-user.php:73 -msgid "User ID" -msgstr "User ID" - -#: includes/fields/class-acf-field-user.php:72 -msgid "User Object" -msgstr "User Object" - -#: includes/fields/class-acf-field-user.php:71 -msgid "User Array" -msgstr "User Array" - -#: includes/fields/class-acf-field-user.php:59 -msgid "All user roles" -msgstr "All user roles" - -#: includes/fields/class-acf-field-user.php:51 -msgid "Filter by Role" -msgstr "" - -#: includes/fields/class-acf-field-user.php:15 includes/locations.php:101 -msgid "User" -msgstr "User" - -#: includes/fields/class-acf-field-separator.php:25 -msgid "Separator" -msgstr "Separator" - -#: includes/fields/class-acf-field-color_picker.php:75 -msgid "Select Color" -msgstr "Select Colour" - -#: includes/admin/post-types/admin-post-type.php:129 -#: includes/admin/post-types/admin-taxonomy.php:131 -#: includes/fields/class-acf-field-color_picker.php:73 -#: assets/build/js/acf-internal-post-type.js:72 -#: assets/build/js/acf-internal-post-type.js:86 -msgid "Default" -msgstr "Default" - -#: includes/admin/views/acf-post-type/advanced-settings.php:89 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:141 -#: includes/fields/class-acf-field-color_picker.php:71 -msgid "Clear" -msgstr "Clear" - -#: includes/fields/class-acf-field-color_picker.php:25 -msgid "Color Picker" -msgstr "Colour Picker" - -#: includes/fields/class-acf-field-date_time_picker.php:88 -msgctxt "Date Time Picker JS pmTextShort" -msgid "P" -msgstr "P" - -#: includes/fields/class-acf-field-date_time_picker.php:87 -msgctxt "Date Time Picker JS pmText" -msgid "PM" -msgstr "PM" - -#: includes/fields/class-acf-field-date_time_picker.php:84 -msgctxt "Date Time Picker JS amTextShort" -msgid "A" -msgstr "A" - -#: includes/fields/class-acf-field-date_time_picker.php:83 -msgctxt "Date Time Picker JS amText" -msgid "AM" -msgstr "AM" - -#: includes/fields/class-acf-field-date_time_picker.php:81 -msgctxt "Date Time Picker JS selectText" -msgid "Select" -msgstr "Select" - -#: includes/fields/class-acf-field-date_time_picker.php:80 -msgctxt "Date Time Picker JS closeText" -msgid "Done" -msgstr "Done" - -#: includes/fields/class-acf-field-date_time_picker.php:79 -msgctxt "Date Time Picker JS currentText" -msgid "Now" -msgstr "Now" - -#: includes/fields/class-acf-field-date_time_picker.php:78 -msgctxt "Date Time Picker JS timezoneText" -msgid "Time Zone" -msgstr "Time Zone" - -#: includes/fields/class-acf-field-date_time_picker.php:77 -msgctxt "Date Time Picker JS microsecText" -msgid "Microsecond" -msgstr "Microsecond" - -#: includes/fields/class-acf-field-date_time_picker.php:76 -msgctxt "Date Time Picker JS millisecText" -msgid "Millisecond" -msgstr "Millisecond" - -#: includes/fields/class-acf-field-date_time_picker.php:75 -msgctxt "Date Time Picker JS secondText" -msgid "Second" -msgstr "Second" - -#: includes/fields/class-acf-field-date_time_picker.php:74 -msgctxt "Date Time Picker JS minuteText" -msgid "Minute" -msgstr "Minute" - -#: includes/fields/class-acf-field-date_time_picker.php:73 -msgctxt "Date Time Picker JS hourText" -msgid "Hour" -msgstr "Hour" - -#: includes/fields/class-acf-field-date_time_picker.php:72 -msgctxt "Date Time Picker JS timeText" -msgid "Time" -msgstr "Time" - -#: includes/fields/class-acf-field-date_time_picker.php:71 -msgctxt "Date Time Picker JS timeOnlyTitle" -msgid "Choose Time" -msgstr "Choose Time" - -#: includes/fields/class-acf-field-date_time_picker.php:25 -msgid "Date Time Picker" -msgstr "Date Time Picker" - -#: includes/fields/class-acf-field-accordion.php:106 -msgid "Endpoint" -msgstr "Endpoint" - -#: includes/admin/views/acf-field-group/options.php:130 -#: includes/fields/class-acf-field-tab.php:115 -msgid "Left aligned" -msgstr "Left aligned" - -#: includes/admin/views/acf-field-group/options.php:129 -#: includes/fields/class-acf-field-tab.php:114 -msgid "Top aligned" -msgstr "Top aligned" - -#: includes/fields/class-acf-field-tab.php:110 -msgid "Placement" -msgstr "Placement" - -#: includes/fields/class-acf-field-tab.php:26 -msgid "Tab" -msgstr "Tab" - -#: includes/fields/class-acf-field-url.php:162 -msgid "Value must be a valid URL" -msgstr "Value must be a valid URL" - -#: includes/fields/class-acf-field-link.php:177 -msgid "Link URL" -msgstr "Link URL" - -#: includes/fields/class-acf-field-link.php:176 -msgid "Link Array" -msgstr "Link Array" - -#: includes/fields/class-acf-field-link.php:145 -msgid "Opens in a new window/tab" -msgstr "Opens in a new window/tab" - -#: includes/fields/class-acf-field-link.php:140 -msgid "Select Link" -msgstr "Select Link" - -#: includes/fields/class-acf-field-link.php:25 -msgid "Link" -msgstr "Link" - -#: includes/fields/class-acf-field-email.php:25 -msgid "Email" -msgstr "Email" - -#: includes/fields/class-acf-field-number.php:188 -#: includes/fields/class-acf-field-range.php:217 -msgid "Step Size" -msgstr "Step Size" - -#: includes/fields/class-acf-field-number.php:158 -#: includes/fields/class-acf-field-range.php:195 -msgid "Maximum Value" -msgstr "Maximum Value" - -#: includes/fields/class-acf-field-number.php:148 -#: includes/fields/class-acf-field-range.php:184 -msgid "Minimum Value" -msgstr "Minimum Value" - -#: includes/fields/class-acf-field-range.php:25 -msgid "Range" -msgstr "Range" - -#: includes/fields/class-acf-field-button-group.php:175 -#: includes/fields/class-acf-field-checkbox.php:379 -#: includes/fields/class-acf-field-radio.php:220 -#: includes/fields/class-acf-field-select.php:399 -msgid "Both (Array)" -msgstr "Both (Array)" - -#: includes/admin/views/acf-field-group/fields.php:52 -#: includes/fields/class-acf-field-button-group.php:174 -#: includes/fields/class-acf-field-checkbox.php:378 -#: includes/fields/class-acf-field-radio.php:219 -#: includes/fields/class-acf-field-select.php:398 -msgid "Label" -msgstr "Label" - -#: includes/fields/class-acf-field-button-group.php:173 -#: includes/fields/class-acf-field-checkbox.php:377 -#: includes/fields/class-acf-field-radio.php:218 -#: includes/fields/class-acf-field-select.php:397 -msgid "Value" -msgstr "Value" - -#: includes/fields/class-acf-field-button-group.php:222 -#: includes/fields/class-acf-field-checkbox.php:441 -#: includes/fields/class-acf-field-radio.php:292 -msgid "Vertical" -msgstr "Vertical" - -#: includes/fields/class-acf-field-button-group.php:221 -#: includes/fields/class-acf-field-checkbox.php:442 -#: includes/fields/class-acf-field-radio.php:293 -msgid "Horizontal" -msgstr "Horizontal" - -#: includes/fields/class-acf-field-button-group.php:148 -#: includes/fields/class-acf-field-checkbox.php:352 -#: includes/fields/class-acf-field-radio.php:193 -#: includes/fields/class-acf-field-select.php:370 -msgid "red : Red" -msgstr "red : Red" - -#: includes/fields/class-acf-field-button-group.php:148 -#: includes/fields/class-acf-field-checkbox.php:352 -#: includes/fields/class-acf-field-radio.php:193 -#: includes/fields/class-acf-field-select.php:370 -msgid "For more control, you may specify both a value and label like this:" -msgstr "For more control, you may specify both a value and label like this:" - -#: includes/fields/class-acf-field-button-group.php:148 -#: includes/fields/class-acf-field-checkbox.php:352 -#: includes/fields/class-acf-field-radio.php:193 -#: includes/fields/class-acf-field-select.php:370 -msgid "Enter each choice on a new line." -msgstr "Enter each choice on a new line." - -#: includes/fields/class-acf-field-button-group.php:147 -#: includes/fields/class-acf-field-checkbox.php:351 -#: includes/fields/class-acf-field-radio.php:192 -#: includes/fields/class-acf-field-select.php:369 -msgid "Choices" -msgstr "Choices" - -#: includes/fields/class-acf-field-button-group.php:24 -msgid "Button Group" -msgstr "Button Group" - -#: includes/fields/class-acf-field-button-group.php:194 -#: includes/fields/class-acf-field-page_link.php:538 -#: includes/fields/class-acf-field-post_object.php:448 -#: includes/fields/class-acf-field-radio.php:238 -#: includes/fields/class-acf-field-select.php:429 -#: includes/fields/class-acf-field-taxonomy.php:772 -#: includes/fields/class-acf-field-user.php:103 -msgid "Allow Null" -msgstr "" - -#: includes/fields/class-acf-field-page_link.php:263 -#: includes/fields/class-acf-field-post_object.php:257 -#: includes/fields/class-acf-field-taxonomy.php:930 -msgid "Parent" -msgstr "Parent" - -#: includes/fields/class-acf-field-wysiwyg.php:390 -msgid "TinyMCE will not be initialized until field is clicked" -msgstr "TinyMCE will not be initialized until field is clicked" - -#: includes/fields/class-acf-field-wysiwyg.php:389 -msgid "Delay Initialization" -msgstr "" - -#: includes/fields/class-acf-field-wysiwyg.php:378 -msgid "Show Media Upload Buttons" -msgstr "" - -#: includes/fields/class-acf-field-wysiwyg.php:362 -msgid "Toolbar" -msgstr "Toolbar" - -#: includes/fields/class-acf-field-wysiwyg.php:354 -msgid "Text Only" -msgstr "Text Only" - -#: includes/fields/class-acf-field-wysiwyg.php:353 -msgid "Visual Only" -msgstr "Visual Only" - -#: includes/fields/class-acf-field-wysiwyg.php:352 -msgid "Visual & Text" -msgstr "Visual & Text" - -#: includes/fields/class-acf-field-wysiwyg.php:347 -msgid "Tabs" -msgstr "Tabs" - -#: includes/fields/class-acf-field-wysiwyg.php:285 -msgid "Click to initialize TinyMCE" -msgstr "Click to initialize TinyMCE" - -#: includes/fields/class-acf-field-wysiwyg.php:279 -msgctxt "Name for the Text editor tab (formerly HTML)" -msgid "Text" -msgstr "Text" - -#: includes/fields/class-acf-field-wysiwyg.php:278 -msgid "Visual" -msgstr "Visual" - -#: includes/fields/class-acf-field-text.php:189 -#: includes/fields/class-acf-field-textarea.php:236 -msgid "Value must not exceed %d characters" -msgstr "Value must not exceed %d characters" - -#: includes/fields/class-acf-field-text.php:124 -#: includes/fields/class-acf-field-textarea.php:124 -msgid "Leave blank for no limit" -msgstr "Leave blank for no limit" - -#: includes/fields/class-acf-field-text.php:123 -#: includes/fields/class-acf-field-textarea.php:123 -msgid "Character Limit" -msgstr "Character Limit" - -#: includes/fields/class-acf-field-email.php:158 -#: includes/fields/class-acf-field-number.php:209 -#: includes/fields/class-acf-field-password.php:105 -#: includes/fields/class-acf-field-range.php:239 -#: includes/fields/class-acf-field-text.php:164 -msgid "Appears after the input" -msgstr "Appears after the input" - -#: includes/fields/class-acf-field-email.php:157 -#: includes/fields/class-acf-field-number.php:208 -#: includes/fields/class-acf-field-password.php:104 -#: includes/fields/class-acf-field-range.php:238 -#: includes/fields/class-acf-field-text.php:163 -msgid "Append" -msgstr "Append" - -#: includes/fields/class-acf-field-email.php:148 -#: includes/fields/class-acf-field-number.php:199 -#: includes/fields/class-acf-field-password.php:95 -#: includes/fields/class-acf-field-range.php:229 -#: includes/fields/class-acf-field-text.php:154 -msgid "Appears before the input" -msgstr "Appears before the input" - -#: includes/fields/class-acf-field-email.php:147 -#: includes/fields/class-acf-field-number.php:198 -#: includes/fields/class-acf-field-password.php:94 -#: includes/fields/class-acf-field-range.php:228 -#: includes/fields/class-acf-field-text.php:153 -msgid "Prepend" -msgstr "Prepend" - -#: includes/fields/class-acf-field-email.php:138 -#: includes/fields/class-acf-field-number.php:179 -#: includes/fields/class-acf-field-password.php:85 -#: includes/fields/class-acf-field-text.php:144 -#: includes/fields/class-acf-field-textarea.php:156 -#: includes/fields/class-acf-field-url.php:122 -msgid "Appears within the input" -msgstr "Appears within the input" - -#: includes/fields/class-acf-field-email.php:137 -#: includes/fields/class-acf-field-number.php:178 -#: includes/fields/class-acf-field-password.php:84 -#: includes/fields/class-acf-field-text.php:143 -#: includes/fields/class-acf-field-textarea.php:155 -#: includes/fields/class-acf-field-url.php:121 -msgid "Placeholder Text" -msgstr "Placeholder Text" - -#: includes/fields/class-acf-field-button-group.php:158 -#: includes/fields/class-acf-field-email.php:118 -#: includes/fields/class-acf-field-number.php:129 -#: includes/fields/class-acf-field-radio.php:203 -#: includes/fields/class-acf-field-range.php:165 -#: includes/fields/class-acf-field-text.php:104 -#: includes/fields/class-acf-field-textarea.php:104 -#: includes/fields/class-acf-field-url.php:102 -#: includes/fields/class-acf-field-wysiwyg.php:312 -msgid "Appears when creating a new post" -msgstr "Appears when creating a new post" - -#: includes/fields/class-acf-field-text.php:25 -msgid "Text" -msgstr "Text" - -#: includes/fields/class-acf-field-relationship.php:794 -msgid "%1$s requires at least %2$s selection" -msgid_plural "%1$s requires at least %2$s selections" -msgstr[0] "%1$s requires at least %2$s selection" -msgstr[1] "%1$s requires at least %2$s selections" - -#: includes/fields/class-acf-field-post_object.php:417 -#: includes/fields/class-acf-field-relationship.php:644 -msgid "Post ID" -msgstr "Post ID" - -#: includes/fields/class-acf-field-post_object.php:17 -#: includes/fields/class-acf-field-post_object.php:416 -#: includes/fields/class-acf-field-relationship.php:643 -msgid "Post Object" -msgstr "Post Object" - -#: includes/fields/class-acf-field-relationship.php:676 -msgid "Maximum Posts" -msgstr "" - -#: includes/fields/class-acf-field-relationship.php:666 -msgid "Minimum Posts" -msgstr "" - -#: includes/admin/views/acf-field-group/options.php:183 -#: includes/admin/views/acf-post-type/advanced-settings.php:29 -#: includes/fields/class-acf-field-relationship.php:701 -msgid "Featured Image" -msgstr "Featured Image" - -#: includes/fields/class-acf-field-relationship.php:697 -msgid "Selected elements will be displayed in each result" -msgstr "Selected elements will be displayed in each result" - -#: includes/fields/class-acf-field-relationship.php:696 -msgid "Elements" -msgstr "Elements" - -#: includes/fields/class-acf-field-relationship.php:630 -#: includes/fields/class-acf-field-taxonomy.php:20 -#: includes/fields/class-acf-field-taxonomy.php:692 -#: includes/locations/class-acf-location-taxonomy.php:22 -msgid "Taxonomy" -msgstr "Taxonomy" - -#: includes/fields/class-acf-field-relationship.php:629 -#: includes/locations/class-acf-location-post-type.php:22 -#: includes/post-types/class-acf-post-type.php:92 -msgid "Post Type" -msgstr "Post Type" - -#: includes/fields/class-acf-field-relationship.php:623 -msgid "Filters" -msgstr "Filters" - -#: includes/fields/class-acf-field-page_link.php:499 -#: includes/fields/class-acf-field-post_object.php:404 -#: includes/fields/class-acf-field-relationship.php:616 -msgid "All taxonomies" -msgstr "All taxonomies" - -#: includes/fields/class-acf-field-page_link.php:491 -#: includes/fields/class-acf-field-post_object.php:396 -#: includes/fields/class-acf-field-relationship.php:608 -msgid "Filter by Taxonomy" -msgstr "Filter by Taxonomy" - -#: includes/fields/class-acf-field-page_link.php:469 -#: includes/fields/class-acf-field-post_object.php:374 -#: includes/fields/class-acf-field-relationship.php:586 -msgid "All post types" -msgstr "All post types" - -#: includes/fields/class-acf-field-page_link.php:461 -#: includes/fields/class-acf-field-post_object.php:366 -#: includes/fields/class-acf-field-relationship.php:578 -msgid "Filter by Post Type" -msgstr "Filter by Post Type" - -#: includes/fields/class-acf-field-relationship.php:476 -msgid "Search..." -msgstr "Search…" - -#: includes/fields/class-acf-field-relationship.php:406 -msgid "Select taxonomy" -msgstr "Select taxonomy" - -#: includes/fields/class-acf-field-relationship.php:397 -msgid "Select post type" -msgstr "Select post type" - -#: includes/fields/class-acf-field-relationship.php:61 -#: assets/build/js/acf-input.js:3930 assets/build/js/acf-input.js:4214 -msgid "No matches found" -msgstr "No matches found" - -#: includes/fields/class-acf-field-relationship.php:60 -#: assets/build/js/acf-input.js:3913 assets/build/js/acf-input.js:4193 -msgid "Loading" -msgstr "Loading" - -#: includes/fields/class-acf-field-relationship.php:59 -#: assets/build/js/acf-input.js:3818 assets/build/js/acf-input.js:4084 -msgid "Maximum values reached ( {max} values )" -msgstr "Maximum values reached ( {max} values )" - -#: includes/fields/class-acf-field-relationship.php:17 -msgid "Relationship" -msgstr "Relationship" - -#: includes/fields/class-acf-field-file.php:291 -#: includes/fields/class-acf-field-image.php:317 -msgid "Comma separated list. Leave blank for all types" -msgstr "Comma separated list. Leave blank for all types" - -#: includes/fields/class-acf-field-file.php:290 -#: includes/fields/class-acf-field-image.php:316 -msgid "Allowed File Types" -msgstr "" - -#: includes/fields/class-acf-field-file.php:278 -#: includes/fields/class-acf-field-image.php:280 -msgid "Maximum" -msgstr "Maximum" - -#: includes/fields/class-acf-field-file.php:154 -#: includes/fields/class-acf-field-file.php:270 -#: includes/fields/class-acf-field-file.php:282 -#: includes/fields/class-acf-field-image.php:271 -#: includes/fields/class-acf-field-image.php:307 -msgid "File size" -msgstr "File size" - -#: includes/fields/class-acf-field-image.php:245 -#: includes/fields/class-acf-field-image.php:281 -msgid "Restrict which images can be uploaded" -msgstr "Restrict which images can be uploaded" - -#: includes/fields/class-acf-field-file.php:266 -#: includes/fields/class-acf-field-image.php:244 -msgid "Minimum" -msgstr "Minimum" - -#: includes/fields/class-acf-field-file.php:235 -#: includes/fields/class-acf-field-image.php:210 -msgid "Uploaded to post" -msgstr "Uploaded to post" - -#: includes/fields/class-acf-field-file.php:234 -#: includes/fields/class-acf-field-image.php:209 -#: includes/locations/class-acf-location-attachment.php:73 -#: includes/locations/class-acf-location-comment.php:61 -#: includes/locations/class-acf-location-nav-menu.php:74 -#: includes/locations/class-acf-location-taxonomy.php:63 -#: includes/locations/class-acf-location-user-form.php:71 -#: includes/locations/class-acf-location-user-role.php:78 -#: includes/locations/class-acf-location-widget.php:65 -msgid "All" -msgstr "All" - -#: includes/fields/class-acf-field-file.php:229 -#: includes/fields/class-acf-field-image.php:204 -msgid "Limit the media library choice" -msgstr "Limit the media library choice" - -#: includes/fields/class-acf-field-file.php:228 -#: includes/fields/class-acf-field-image.php:203 -msgid "Library" -msgstr "Library" - -#: includes/fields/class-acf-field-image.php:336 -msgid "Preview Size" -msgstr "Preview Size" - -#: includes/fields/class-acf-field-image.php:195 -msgid "Image ID" -msgstr "Image ID" - -#: includes/fields/class-acf-field-image.php:194 -msgid "Image URL" -msgstr "Image URL" - -#: includes/fields/class-acf-field-image.php:193 -msgid "Image Array" -msgstr "Image Array" - -#: includes/fields/class-acf-field-button-group.php:168 -#: includes/fields/class-acf-field-checkbox.php:372 -#: includes/fields/class-acf-field-file.php:213 -#: includes/fields/class-acf-field-link.php:171 -#: includes/fields/class-acf-field-radio.php:213 -msgid "Specify the returned value on front end" -msgstr "Specify the returned value on front end" - -#: includes/fields/class-acf-field-button-group.php:167 -#: includes/fields/class-acf-field-checkbox.php:371 -#: includes/fields/class-acf-field-file.php:212 -#: includes/fields/class-acf-field-link.php:170 -#: includes/fields/class-acf-field-radio.php:212 -#: includes/fields/class-acf-field-taxonomy.php:736 -msgid "Return Value" -msgstr "Return Value" - -#: includes/fields/class-acf-field-image.php:162 -msgid "Add Image" -msgstr "Add Image" - -#: includes/fields/class-acf-field-image.php:162 -msgid "No image selected" -msgstr "No image selected" - -#: includes/assets.php:352 includes/fields/class-acf-field-file.php:162 -#: includes/fields/class-acf-field-image.php:142 -#: includes/fields/class-acf-field-link.php:145 assets/build/js/acf.js:1563 -#: assets/build/js/acf.js:1657 -msgid "Remove" -msgstr "Remove" - -#: includes/admin/views/acf-field-group/field.php:76 -#: includes/fields/class-acf-field-file.php:160 -#: includes/fields/class-acf-field-image.php:140 -#: includes/fields/class-acf-field-link.php:145 -msgid "Edit" -msgstr "Edit" - -#: includes/fields/class-acf-field-image.php:70 includes/media.php:55 -#: assets/build/js/acf-input.js:6837 assets/build/js/acf-input.js:7320 -msgid "All images" -msgstr "All images" - -#: includes/fields/class-acf-field-image.php:69 -#: assets/build/js/acf-input.js:3181 assets/build/js/acf-input.js:3399 -msgid "Update Image" -msgstr "Update Image" - -#: includes/fields/class-acf-field-image.php:68 -#: assets/build/js/acf-input.js:3180 assets/build/js/acf-input.js:3398 -msgid "Edit Image" -msgstr "Edit Image" - -#: includes/fields/class-acf-field-image.php:67 -#: assets/build/js/acf-input.js:3156 assets/build/js/acf-input.js:3373 -msgid "Select Image" -msgstr "Select Image" - -#: includes/fields/class-acf-field-image.php:25 -msgid "Image" -msgstr "Image" - -#: includes/fields/class-acf-field-message.php:125 -msgid "Allow HTML markup to display as visible text instead of rendering" -msgstr "Allow HTML markup to display as visible text instead of rendering" - -#: includes/fields/class-acf-field-message.php:124 -msgid "Escape HTML" -msgstr "Escape HTML" - -#: includes/fields/class-acf-field-message.php:116 -#: includes/fields/class-acf-field-textarea.php:172 -msgid "No Formatting" -msgstr "No Formatting" - -#: includes/fields/class-acf-field-message.php:115 -#: includes/fields/class-acf-field-textarea.php:171 -msgid "Automatically add <br>" -msgstr "Automatically add <br>" - -#: includes/fields/class-acf-field-message.php:114 -#: includes/fields/class-acf-field-textarea.php:170 -msgid "Automatically add paragraphs" -msgstr "Automatically add paragraphs" - -#: includes/fields/class-acf-field-message.php:110 -#: includes/fields/class-acf-field-textarea.php:166 -msgid "Controls how new lines are rendered" -msgstr "Controls how new lines are rendered" - -#: includes/fields/class-acf-field-message.php:109 -#: includes/fields/class-acf-field-textarea.php:165 -msgid "New Lines" -msgstr "New Lines" - -#: includes/fields/class-acf-field-date_picker.php:232 -#: includes/fields/class-acf-field-date_time_picker.php:220 -msgid "Week Starts On" -msgstr "Week Starts On" - -#: includes/fields/class-acf-field-date_picker.php:201 -msgid "The format used when saving a value" -msgstr "The format used when saving a value" - -#: includes/fields/class-acf-field-date_picker.php:200 -msgid "Save Format" -msgstr "Save Format" - -#: includes/fields/class-acf-field-date_picker.php:67 -msgctxt "Date Picker JS weekHeader" -msgid "Wk" -msgstr "Wk" - -#: includes/fields/class-acf-field-date_picker.php:66 -msgctxt "Date Picker JS prevText" -msgid "Prev" -msgstr "Prev" - -#: includes/fields/class-acf-field-date_picker.php:65 -msgctxt "Date Picker JS nextText" -msgid "Next" -msgstr "Next" - -#: includes/fields/class-acf-field-date_picker.php:64 -msgctxt "Date Picker JS currentText" -msgid "Today" -msgstr "Today" - -#: includes/fields/class-acf-field-date_picker.php:63 -msgctxt "Date Picker JS closeText" -msgid "Done" -msgstr "Done" - -#: includes/fields/class-acf-field-date_picker.php:25 -msgid "Date Picker" -msgstr "Date Picker" - -#: includes/fields/class-acf-field-image.php:248 -#: includes/fields/class-acf-field-image.php:284 -#: includes/fields/class-acf-field-oembed.php:268 -msgid "Width" -msgstr "Width" - -#: includes/fields/class-acf-field-oembed.php:265 -#: includes/fields/class-acf-field-oembed.php:277 -msgid "Embed Size" -msgstr "Embed Size" - -#: includes/fields/class-acf-field-oembed.php:222 -msgid "Enter URL" -msgstr "Enter URL" - -#: includes/fields/class-acf-field-oembed.php:25 -msgid "oEmbed" -msgstr "oEmbed" - -#: includes/fields/class-acf-field-true_false.php:184 -msgid "Text shown when inactive" -msgstr "Text shown when inactive" - -#: includes/fields/class-acf-field-true_false.php:183 -msgid "Off Text" -msgstr "Off Text" - -#: includes/fields/class-acf-field-true_false.php:168 -msgid "Text shown when active" -msgstr "Text shown when active" - -#: includes/fields/class-acf-field-true_false.php:167 -msgid "On Text" -msgstr "On Text" - -#: includes/fields/class-acf-field-select.php:450 -#: includes/fields/class-acf-field-true_false.php:199 -msgid "Stylized UI" -msgstr "" - -#: includes/fields/class-acf-field-button-group.php:157 -#: includes/fields/class-acf-field-checkbox.php:361 -#: includes/fields/class-acf-field-color_picker.php:156 -#: includes/fields/class-acf-field-email.php:117 -#: includes/fields/class-acf-field-number.php:128 -#: includes/fields/class-acf-field-radio.php:202 -#: includes/fields/class-acf-field-range.php:164 -#: includes/fields/class-acf-field-select.php:380 -#: includes/fields/class-acf-field-text.php:103 -#: includes/fields/class-acf-field-textarea.php:103 -#: includes/fields/class-acf-field-true_false.php:147 -#: includes/fields/class-acf-field-url.php:101 -#: includes/fields/class-acf-field-wysiwyg.php:311 -msgid "Default Value" -msgstr "Default Value" - -#: includes/fields/class-acf-field-true_false.php:138 -msgid "Displays text alongside the checkbox" -msgstr "Displays text alongside the checkbox" - -#: includes/fields/class-acf-field-message.php:26 -#: includes/fields/class-acf-field-message.php:99 -#: includes/fields/class-acf-field-true_false.php:137 -msgid "Message" -msgstr "Message" - -#: includes/assets.php:351 includes/fields/class-acf-field-true_false.php:86 -#: includes/fields/class-acf-field-true_false.php:187 -#: assets/build/js/acf.js:1740 assets/build/js/acf.js:1857 -msgid "No" -msgstr "No" - -#: includes/assets.php:350 includes/fields/class-acf-field-true_false.php:83 -#: includes/fields/class-acf-field-true_false.php:171 -#: assets/build/js/acf.js:1739 assets/build/js/acf.js:1856 -msgid "Yes" -msgstr "Yes" - -#: includes/fields/class-acf-field-true_false.php:25 -msgid "True / False" -msgstr "True / False" - -#: includes/fields/class-acf-field-group.php:474 -msgid "Row" -msgstr "Row" - -#: includes/fields/class-acf-field-group.php:473 -msgid "Table" -msgstr "Table" - -#: includes/admin/post-types/admin-field-group.php:140 -#: includes/fields/class-acf-field-group.php:472 -msgid "Block" -msgstr "Block" - -#: includes/fields/class-acf-field-group.php:467 -msgid "Specify the style used to render the selected fields" -msgstr "Specify the style used to render the selected fields" - -#: includes/fields.php:356 includes/fields/class-acf-field-button-group.php:215 -#: includes/fields/class-acf-field-checkbox.php:435 -#: includes/fields/class-acf-field-group.php:466 -#: includes/fields/class-acf-field-radio.php:286 -msgid "Layout" -msgstr "Layout" - -#: includes/fields/class-acf-field-group.php:450 -msgid "Sub Fields" -msgstr "Sub Fields" - -#: includes/fields/class-acf-field-group.php:25 -msgid "Group" -msgstr "Group" - -#: includes/fields/class-acf-field-google-map.php:235 -msgid "Customize the map height" -msgstr "Customize the map height" - -#: includes/fields/class-acf-field-google-map.php:234 -#: includes/fields/class-acf-field-image.php:259 -#: includes/fields/class-acf-field-image.php:295 -#: includes/fields/class-acf-field-oembed.php:280 -msgid "Height" -msgstr "Height" - -#: includes/fields/class-acf-field-google-map.php:223 -msgid "Set the initial zoom level" -msgstr "Set the initial zoom level" - -#: includes/fields/class-acf-field-google-map.php:222 -msgid "Zoom" -msgstr "Zoom" - -#: includes/fields/class-acf-field-google-map.php:196 -#: includes/fields/class-acf-field-google-map.php:209 -msgid "Center the initial map" -msgstr "Centre the initial map" - -#: includes/fields/class-acf-field-google-map.php:195 -#: includes/fields/class-acf-field-google-map.php:208 -msgid "Center" -msgstr "Centre" - -#: includes/fields/class-acf-field-google-map.php:163 -msgid "Search for address..." -msgstr "Search for address…" - -#: includes/fields/class-acf-field-google-map.php:160 -msgid "Find current location" -msgstr "Find current location" - -#: includes/fields/class-acf-field-google-map.php:159 -msgid "Clear location" -msgstr "Clear location" - -#: includes/fields/class-acf-field-google-map.php:158 -#: includes/fields/class-acf-field-relationship.php:628 -msgid "Search" -msgstr "Search" - -#: includes/fields/class-acf-field-google-map.php:63 -#: assets/build/js/acf-input.js:2840 assets/build/js/acf-input.js:3026 -msgid "Sorry, this browser does not support geolocation" -msgstr "Sorry, this browser does not support geolocation" - -#: includes/fields/class-acf-field-google-map.php:25 -msgid "Google Map" -msgstr "Google Map" - -#: includes/fields/class-acf-field-date_picker.php:212 -#: includes/fields/class-acf-field-date_time_picker.php:201 -#: includes/fields/class-acf-field-time_picker.php:132 -msgid "The format returned via template functions" -msgstr "The format returned via template functions" - -#: includes/fields/class-acf-field-color_picker.php:180 -#: includes/fields/class-acf-field-date_picker.php:211 -#: includes/fields/class-acf-field-date_time_picker.php:200 -#: includes/fields/class-acf-field-image.php:187 -#: includes/fields/class-acf-field-post_object.php:411 -#: includes/fields/class-acf-field-relationship.php:638 -#: includes/fields/class-acf-field-select.php:391 -#: includes/fields/class-acf-field-time_picker.php:131 -#: includes/fields/class-acf-field-user.php:66 -msgid "Return Format" -msgstr "Return Format" - -#: includes/fields/class-acf-field-date_picker.php:190 -#: includes/fields/class-acf-field-date_picker.php:221 -#: includes/fields/class-acf-field-date_time_picker.php:192 -#: includes/fields/class-acf-field-date_time_picker.php:210 -#: includes/fields/class-acf-field-time_picker.php:123 -#: includes/fields/class-acf-field-time_picker.php:139 -msgid "Custom:" -msgstr "Custom:" - -#: includes/fields/class-acf-field-date_picker.php:182 -#: includes/fields/class-acf-field-date_time_picker.php:183 -#: includes/fields/class-acf-field-time_picker.php:116 -msgid "The format displayed when editing a post" -msgstr "The format displayed when editing a post" - -#: includes/fields/class-acf-field-date_picker.php:181 -#: includes/fields/class-acf-field-date_time_picker.php:182 -#: includes/fields/class-acf-field-time_picker.php:115 -msgid "Display Format" -msgstr "Display Format" - -#: includes/fields/class-acf-field-time_picker.php:25 -msgid "Time Picker" -msgstr "Time Picker" - -#. translators: counts for inactive field groups -#: acf.php:503 -msgid "Inactive (%s)" -msgid_plural "Inactive (%s)" -msgstr[0] "" -msgstr[1] "" - -#: acf.php:462 -msgid "No Fields found in Trash" -msgstr "No Fields found in Trash" - -#: acf.php:461 -msgid "No Fields found" -msgstr "No Fields found" - -#: acf.php:460 -msgid "Search Fields" -msgstr "Search Fields" - -#: acf.php:459 -msgid "View Field" -msgstr "View Field" - -#: acf.php:458 includes/admin/views/acf-field-group/fields.php:115 -msgid "New Field" -msgstr "New Field" - -#: acf.php:457 -msgid "Edit Field" -msgstr "Edit Field" - -#: acf.php:456 -msgid "Add New Field" -msgstr "Add New Field" - -#: acf.php:454 -msgid "Field" -msgstr "Field" - -#: acf.php:453 includes/admin/post-types/admin-field-group.php:163 -#: includes/admin/post-types/admin-field-groups.php:119 -#: includes/admin/views/acf-field-group/fields.php:32 -msgid "Fields" -msgstr "Fields" - -#: acf.php:428 -msgid "No Field Groups found in Trash" -msgstr "No Field Groups found in Trash" - -#: acf.php:427 -msgid "No Field Groups found" -msgstr "No Field Groups found" - -#: acf.php:426 -msgid "Search Field Groups" -msgstr "Search Field Groups" - -#: acf.php:425 -msgid "View Field Group" -msgstr "View Field Group" - -#: acf.php:424 -msgid "New Field Group" -msgstr "New Field Group" - -#: acf.php:423 -msgid "Edit Field Group" -msgstr "Edit Field Group" - -#: acf.php:422 -msgid "Add New Field Group" -msgstr "Add New Field Group" - -#: acf.php:421 acf.php:455 -#: includes/admin/views/acf-post-type/advanced-settings.php:219 -#: includes/admin/views/acf-post-type/advanced-settings.php:221 -#: includes/post-types/class-acf-post-type.php:93 -#: includes/post-types/class-acf-taxonomy.php:92 -msgid "Add New" -msgstr "Add New" - -#: acf.php:420 -msgid "Field Group" -msgstr "Field Group" - -#: acf.php:419 includes/admin/post-types/admin-field-groups.php:78 -#: includes/admin/post-types/admin-post-types.php:138 -#: includes/admin/post-types/admin-taxonomies.php:138 -msgid "Field Groups" -msgstr "Field Groups" - -#. Description of the plugin -msgid "Customize WordPress with powerful, professional and intuitive fields." -msgstr "Customize WordPress with powerful, professional and intuitive fields." - -#. Plugin URI of the plugin -msgid "https://www.advancedcustomfields.com" -msgstr "https://www.advancedcustomfields.com" - -#. Plugin Name of the plugin -#: acf.php:94 -msgid "Advanced Custom Fields" -msgstr "Advanced Custom Fields" diff --git a/lang/acf-en_GB.mo b/lang/acf-en_GB.mo deleted file mode 100644 index 6d7e374..0000000 Binary files a/lang/acf-en_GB.mo and /dev/null differ diff --git a/lang/acf-en_GB.po b/lang/acf-en_GB.po deleted file mode 100644 index 4588e56..0000000 --- a/lang/acf-en_GB.po +++ /dev/null @@ -1,6773 +0,0 @@ -# Advanced Custom Fields Translations are a combination of translate.wordpress.org contributions, -# combined with user contributed strings for the PRO version. -# Translations from translate.wordpress.org take priority over translations in this file. -# translate.wordpress.org contributions are synced at the time of each release. -# -# If you would like to contribute translations, please visit -# https://translate.wordpress.org/projects/wp-plugins/advanced-custom-fields/stable/ -# -# For additional ACF PRO strings, please submit a pull request over on the ACF GitHub repo at -# http://github.com/advancedcustomfields/acf using the .pot (and any existing .po) files in /lang/pro/ -# -# This file is distributed under the same license as Advanced Custom Fields. -msgid "" -msgstr "" -"PO-Revision-Date: 2023-11-28T09:17:30+00:00\n" -"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n" -"Language: en_GB\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: gettext\n" -"Project-Id-Version: Advanced Custom Fields\n" - -#: includes/admin/views/global/navigation.php:221 -msgid "Renew ACF PRO License" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:17 -msgid "Renew License" -msgstr "" - -#: pro/acf-pro.php:211, pro/admin/views/html-settings-updates.php:114 -msgid "Manage License" -msgstr "Manage Licence" - -#: includes/admin/views/acf-field-group/options.php:102 -msgid "'High' position not supported in the Block Editor" -msgstr "" - -#: includes/admin/views/options-page-preview.php:30 -msgid "Upgrade to ACF PRO" -msgstr "" - -#. translators: %s URL to ACF options pages documentation -#: includes/admin/views/options-page-preview.php:7 -msgid "" -"ACF options pages are custom admin " -"pages for managing global settings via fields. You can create multiple pages " -"and sub-pages." -msgstr "" - -#: includes/admin/views/global/header.php:35 -msgid "Add Options Page" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:703 -msgid "In the editor used as the placeholder of the title." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:702 -msgid "Title Placeholder" -msgstr "" - -#: includes/admin/views/global/navigation.php:97 -msgid "4 Months Free" -msgstr "" - -#. translators: %s - A singular label for a post type or taxonomy. -#: includes/admin/views/global/form-top.php:56 -msgid " (Duplicated from %s)" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:298 -msgid "Select Options Pages" -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:107 -msgid "Duplicate taxonomy" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:106 -#: includes/admin/post-types/admin-taxonomy.php:106 -msgid "Create taxonomy" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:105 -msgid "Duplicate post type" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:104 -#: includes/admin/post-types/admin-taxonomy.php:108 -msgid "Create post type" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:103 -#: includes/admin/post-types/admin-taxonomy.php:105 -msgid "Link field groups" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:102 -#: includes/admin/post-types/admin-taxonomy.php:104 -msgid "Add fields" -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:121 -#: assets/build/js/acf-field-group.js:2753 -#: assets/build/js/acf-field-group.js:3236 -msgid "This Field" -msgstr "" - -#: includes/admin/admin.php:267 -msgid "ACF PRO" -msgstr "" - -#: includes/admin/admin.php:265 -msgid "Feedback" -msgstr "" - -#: includes/admin/admin.php:263 -msgid "Support" -msgstr "" - -#. translators: This text is prepended by a link to ACF's website, and appended -#. by a link to WP Engine's website. -#: includes/admin/admin.php:238 -msgid "is developed and maintained by" -msgstr "" - -#. translators: %s - either "post type" or "taxonomy" -#: includes/admin/admin-internal-post-type.php:321 -msgid "Add this %s to the location rules of the selected field groups." -msgstr "" - -#. translators: %s the URL to ACF's bidirectional relationship documentation -#: includes/acf-bidirectional-functions.php:271 -msgid "" -"Enabling the bidirectional setting allows you to update a value in the " -"target fields for each value selected for this field, adding or removing the " -"Post ID, Taxonomy ID or User ID of the item being updated. For more " -"information, please read the documentation." -msgstr "" - -#: includes/acf-bidirectional-functions.php:247 -msgid "" -"Select field(s) to store the reference back to the item being updated. You " -"may select this field. Target fields must be compatible with where this " -"field is being displayed. For example, if this field is displayed on a " -"Taxonomy, your target field should be of type Taxonomy" -msgstr "" - -#: includes/acf-bidirectional-functions.php:246 -msgid "Target Field" -msgstr "" - -#: includes/acf-bidirectional-functions.php:220 -msgid "Update a field on the selected values, referencing back to this ID" -msgstr "" - -#: includes/acf-bidirectional-functions.php:219 -msgid "Bidirectional" -msgstr "" - -#. translators: %s A field type name, such as "Relationship" -#: includes/acf-bidirectional-functions.php:192 -msgid "%s Field" -msgstr "" - -#: includes/fields/class-acf-field-page_link.php:517 -#: includes/fields/class-acf-field-post_object.php:426 -#: includes/fields/class-acf-field-select.php:407 -#: includes/fields/class-acf-field-user.php:82 -msgid "Select Multiple" -msgstr "Select Multiple" - -#: includes/admin/views/global/navigation.php:233 -msgid "WP Engine logo" -msgstr "WP Engine logo" - -#: includes/admin/views/acf-taxonomy/basic-settings.php:58 -msgid "Lower case letters, underscores and dashes only, Max 32 characters." -msgstr "Lower case letters, underscores and dashes only, Max 32 characters." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1136 -msgid "The capability name for assigning terms of this taxonomy." -msgstr "The capability name for assigning terms of this taxonomy." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1135 -msgid "Assign Terms Capability" -msgstr "Assign Terms Capability" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1119 -msgid "The capability name for deleting terms of this taxonomy." -msgstr "The capability name for deleting terms of this taxonomy." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1118 -msgid "Delete Terms Capability" -msgstr "Delete Terms Capability" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1102 -msgid "The capability name for editing terms of this taxonomy." -msgstr "The capability name for editing terms of this taxonomy." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1101 -msgid "Edit Terms Capability" -msgstr "Edit Terms Capability" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1085 -msgid "The capability name for managing terms of this taxonomy." -msgstr "The capability name for managing terms of this taxonomy." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1084 -msgid "Manage Terms Capability" -msgstr "Manage Terms Capability" - -#: includes/admin/views/acf-post-type/advanced-settings.php:886 -msgid "" -"Sets whether posts should be excluded from search results and taxonomy " -"archive pages." -msgstr "" -"Sets whether posts should be excluded from search results and taxonomy " -"archive pages." - -#: includes/admin/views/acf-field-group/pro-features.php:74 -msgid "More Tools from WP Engine" -msgstr "More Tools from WP Engine" - -#. translators: %s - WP Engine logo -#: includes/admin/views/acf-field-group/pro-features.php:69 -msgid "Built for those that build with WordPress, by the team at %s" -msgstr "Built for those that build with WordPress, by the team at %s" - -#: includes/admin/views/acf-field-group/pro-features.php:6 -msgid "View Pricing & Upgrade" -msgstr "View Pricing & Upgrade" - -#: includes/admin/views/acf-field-group/pro-features.php:3 -#: includes/admin/views/options-page-preview.php:29 -msgid "Learn More" -msgstr "Learn More" - -#: includes/admin/views/acf-field-group/pro-features.php:28 -msgid "" -"Speed up your workflow and develop better websites with features like ACF " -"Blocks and Options Pages, and sophisticated field types like Repeater, " -"Flexible Content, Clone, and Gallery." -msgstr "" -"Speed up your workflow and develop better websites with features like ACF " -"Blocks and Options Pages, and sophisticated field types like Repeater, " -"Flexible Content, Clone, and Gallery." - -#: includes/admin/views/acf-field-group/pro-features.php:2 -msgid "Unlock Advanced Features and Build Even More with ACF PRO" -msgstr "Unlock Advanced Features and Build Even More with ACF PRO" - -#. translators: %s - singular label of post type/taxonomy, i.e. "Movie"/"Genre" -#: includes/admin/views/global/form-top.php:19 -msgid "%s fields" -msgstr "%s fields" - -#: includes/admin/post-types/admin-taxonomies.php:293 -msgid "No terms" -msgstr "No terms" - -#: includes/admin/post-types/admin-taxonomies.php:266 -msgid "No post types" -msgstr "No post types" - -#: includes/admin/post-types/admin-post-types.php:289 -msgid "No posts" -msgstr "No posts" - -#: includes/admin/post-types/admin-post-types.php:263 -msgid "No taxonomies" -msgstr "No taxonomies" - -#: includes/admin/post-types/admin-post-types.php:208 -#: includes/admin/post-types/admin-taxonomies.php:208 -msgid "No field groups" -msgstr "No field groups" - -#: includes/admin/post-types/admin-field-groups.php:281 -msgid "No fields" -msgstr "No fields" - -#: includes/admin/post-types/admin-field-groups.php:154 -#: includes/admin/post-types/admin-post-types.php:172 -#: includes/admin/post-types/admin-taxonomies.php:172 -msgid "No description" -msgstr "No description" - -#: includes/fields/class-acf-field-page_link.php:484 -#: includes/fields/class-acf-field-post_object.php:389 -#: includes/fields/class-acf-field-relationship.php:601 -msgid "Any post status" -msgstr "Any post status" - -#: includes/post-types/class-acf-taxonomy.php:284 -msgid "" -"This taxonomy key is already in use by another taxonomy registered outside " -"of ACF and cannot be used." -msgstr "" -"This taxonomy key is already in use by another taxonomy registered outside " -"of ACF and cannot be used." - -#: includes/post-types/class-acf-taxonomy.php:279 -msgid "" -"This taxonomy key is already in use by another taxonomy in ACF and cannot be " -"used." -msgstr "" -"This taxonomy key is already in use by another taxonomy in ACF and cannot be " -"used." - -#: includes/post-types/class-acf-taxonomy.php:252 -msgid "" -"The taxonomy key must only contain lower case alphanumeric characters, " -"underscores or dashes." -msgstr "" -"The taxonomy key must only contain lower case alphanumeric characters, " -"underscores or dashes." - -#: includes/post-types/class-acf-taxonomy.php:247 -msgid "The taxonomy key must be under 32 characters." -msgstr "The taxonomy key must be under 32 characters." - -#: includes/post-types/class-acf-taxonomy.php:99 -msgid "No Taxonomies found in Trash" -msgstr "No Taxonomies found in the bin" - -#: includes/post-types/class-acf-taxonomy.php:98 -msgid "No Taxonomies found" -msgstr "No Taxonomies found" - -#: includes/post-types/class-acf-taxonomy.php:97 -msgid "Search Taxonomies" -msgstr "Search Taxonomies" - -#: includes/post-types/class-acf-taxonomy.php:96 -msgid "View Taxonomy" -msgstr "View Taxonomy" - -#: includes/post-types/class-acf-taxonomy.php:95 -msgid "New Taxonomy" -msgstr "New Taxonomy" - -#: includes/post-types/class-acf-taxonomy.php:94 -msgid "Edit Taxonomy" -msgstr "Edit Taxonomy" - -#: includes/post-types/class-acf-taxonomy.php:93 -msgid "Add New Taxonomy" -msgstr "Add New Taxonomy" - -#: includes/post-types/class-acf-post-type.php:100 -msgid "No Post Types found in Trash" -msgstr "No Post Types found in the bin" - -#: includes/post-types/class-acf-post-type.php:99 -msgid "No Post Types found" -msgstr "No Post Types found" - -#: includes/post-types/class-acf-post-type.php:98 -msgid "Search Post Types" -msgstr "Search Post Types" - -#: includes/post-types/class-acf-post-type.php:97 -msgid "View Post Type" -msgstr "View Post Type" - -#: includes/post-types/class-acf-post-type.php:96 -msgid "New Post Type" -msgstr "New Post Type" - -#: includes/post-types/class-acf-post-type.php:95 -msgid "Edit Post Type" -msgstr "Edit Post Type" - -#: includes/post-types/class-acf-post-type.php:94 -msgid "Add New Post Type" -msgstr "Add New Post Type" - -#: includes/post-types/class-acf-post-type.php:361 -msgid "" -"This post type key is already in use by another post type registered outside " -"of ACF and cannot be used." -msgstr "" -"This post type key is already in use by another post type registered outside " -"of ACF and cannot be used." - -#: includes/post-types/class-acf-post-type.php:356 -msgid "" -"This post type key is already in use by another post type in ACF and cannot " -"be used." -msgstr "" -"This post type key is already in use by another post type in ACF and cannot " -"be used." - -#. translators: %s a link to WordPress.org's Reserved Terms page -#: includes/post-types/class-acf-post-type.php:335 -#: includes/post-types/class-acf-taxonomy.php:258 -msgid "" -"This field must not be a WordPress reserved " -"term." -msgstr "" -"This field must not be a WordPress reserved " -"term." - -#: includes/post-types/class-acf-post-type.php:329 -msgid "" -"The post type key must only contain lower case alphanumeric characters, " -"underscores or dashes." -msgstr "" -"The post type key must only contain lower case alphanumeric characters, " -"underscores or dashes." - -#: includes/post-types/class-acf-post-type.php:324 -msgid "The post type key must be under 20 characters." -msgstr "The post type key must be under 20 characters." - -#: includes/fields/class-acf-field-wysiwyg.php:27 -msgid "We do not recommend using this field in ACF Blocks." -msgstr "We do not recommend using this field in ACF Blocks." - -#: includes/fields/class-acf-field-wysiwyg.php:27 -msgid "" -"Displays the WordPress WYSIWYG editor as seen in Posts and Pages allowing " -"for a rich text-editing experience that also allows for multimedia content." -msgstr "" -"Displays the WordPress WYSIWYG editor as seen in Posts and Pages allowing " -"for a rich text-editing experience that also allows for multimedia content." - -#: includes/fields/class-acf-field-wysiwyg.php:25 -msgid "WYSIWYG Editor" -msgstr "WYSIWYG Editor" - -#: includes/fields/class-acf-field-user.php:17 -msgid "" -"Allows the selection of one or more users which can be used to create " -"relationships between data objects." -msgstr "" -"Allows the selection of one or more users which can be used to create " -"relationships between data objects." - -#: includes/fields/class-acf-field-url.php:26 -msgid "A text input specifically designed for storing web addresses." -msgstr "A text input specifically designed for storing web addresses." - -#: includes/fields/class-acf-field-url.php:25 -msgid "URL" -msgstr "URL" - -#: includes/fields/class-acf-field-true_false.php:27 -msgid "" -"A toggle that allows you to pick a value of 1 or 0 (on or off, true or " -"false, etc). Can be presented as a stylized switch or checkbox." -msgstr "" -"A toggle that allows you to pick a value of 1 or 0 (on or off, true or " -"false, etc). Can be presented as a stylised switch or checkbox." - -#: includes/fields/class-acf-field-time_picker.php:27 -msgid "" -"An interactive UI for picking a time. The time format can be customized " -"using the field settings." -msgstr "" -"An interactive UI for picking a time. The time format can be customised " -"using the field settings." - -#: includes/fields/class-acf-field-textarea.php:26 -msgid "A basic textarea input for storing paragraphs of text." -msgstr "A basic textarea input for storing paragraphs of text." - -#: includes/fields/class-acf-field-text.php:26 -msgid "A basic text input, useful for storing single string values." -msgstr "A basic text input, useful for storing single string values." - -#: includes/fields/class-acf-field-taxonomy.php:22 -msgid "" -"Allows the selection of one or more taxonomy terms based on the criteria and " -"options specified in the fields settings." -msgstr "" -"Allows the selection of one or more taxonomy terms based on the criteria and " -"options specified in the fields settings." - -#: includes/fields/class-acf-field-tab.php:28 -msgid "" -"Allows you to group fields into tabbed sections in the edit screen. Useful " -"for keeping fields organized and structured." -msgstr "" -"Allows you to group fields into tabbed sections in the edit screen. Useful " -"for keeping fields organised and structured." - -#: includes/fields/class-acf-field-select.php:27 -msgid "A dropdown list with a selection of choices that you specify." -msgstr "A dropdown list with a selection of choices that you specify." - -#: includes/fields/class-acf-field-relationship.php:19 -msgid "" -"A dual-column interface to select one or more posts, pages, or custom post " -"type items to create a relationship with the item that you're currently " -"editing. Includes options to search and filter." -msgstr "" -"A dual-column interface to select one or more posts, pages, or custom post " -"type items to create a relationship with the item that you're currently " -"editing. Includes options to search and filter." - -#: includes/fields/class-acf-field-range.php:26 -msgid "" -"An input for selecting a numerical value within a specified range using a " -"range slider element." -msgstr "" -"An input for selecting a numerical value within a specified range using a " -"range slider element." - -#: includes/fields/class-acf-field-radio.php:27 -msgid "" -"A group of radio button inputs that allows the user to make a single " -"selection from values that you specify." -msgstr "" -"A group of radio button inputs that allows the user to make a single " -"selection from values that you specify." - -#: includes/fields/class-acf-field-post_object.php:19 -msgid "" -"An interactive and customizable UI for picking one or many posts, pages or " -"post type items with the option to search. " -msgstr "" -"An interactive and customisable UI for picking one or many posts, pages or " -"post type items with the option to search. " - -#: includes/fields/class-acf-field-password.php:26 -msgid "An input for providing a password using a masked field." -msgstr "An input for providing a password using a masked field." - -#: includes/fields/class-acf-field-page_link.php:476 -#: includes/fields/class-acf-field-post_object.php:381 -#: includes/fields/class-acf-field-relationship.php:593 -msgid "Filter by Post Status" -msgstr "Filter by Post Status" - -#: includes/fields/class-acf-field-page_link.php:27 -msgid "" -"An interactive dropdown to select one or more posts, pages, custom post type " -"items or archive URLs, with the option to search." -msgstr "" -"An interactive dropdown to select one or more posts, pages, custom post type " -"items or archive URLs, with the option to search." - -#: includes/fields/class-acf-field-oembed.php:27 -msgid "" -"An interactive component for embedding videos, images, tweets, audio and " -"other content by making use of the native WordPress oEmbed functionality." -msgstr "" -"An interactive component for embedding videos, images, tweets, audio and " -"other content by making use of the native WordPress oEmbed functionality." - -#: includes/fields/class-acf-field-number.php:26 -msgid "An input limited to numerical values." -msgstr "An input limited to numerical values." - -#: includes/fields/class-acf-field-message.php:28 -msgid "" -"Used to display a message to editors alongside other fields. Useful for " -"providing additional context or instructions around your fields." -msgstr "" -"Used to display a message to editors alongside other fields. Useful for " -"providing additional context or instructions around your fields." - -#: includes/fields/class-acf-field-link.php:27 -msgid "" -"Allows you to specify a link and its properties such as title and target " -"using the WordPress native link picker." -msgstr "" -"Allows you to specify a link and its properties such as title and target " -"using the WordPress native link picker." - -#: includes/fields/class-acf-field-image.php:27 -msgid "Uses the native WordPress media picker to upload, or choose images." -msgstr "Uses the native WordPress media picker to upload, or choose images." - -#: includes/fields/class-acf-field-group.php:27 -msgid "" -"Provides a way to structure fields into groups to better organize the data " -"and the edit screen." -msgstr "" -"Provides a way to structure fields into groups to better organise the data " -"and the edit screen." - -#: includes/fields/class-acf-field-google-map.php:27 -msgid "" -"An interactive UI for selecting a location using Google Maps. Requires a " -"Google Maps API key and additional configuration to display correctly." -msgstr "" -"An interactive UI for selecting a location using Google Maps. Requires a " -"Google Maps API key and additional configuration to display correctly." - -#: includes/fields/class-acf-field-file.php:27 -msgid "Uses the native WordPress media picker to upload, or choose files." -msgstr "Uses the native WordPress media picker to upload, or choose files." - -#: includes/fields/class-acf-field-email.php:26 -msgid "A text input specifically designed for storing email addresses." -msgstr "A text input specifically designed for storing email addresses." - -#: includes/fields/class-acf-field-date_time_picker.php:27 -msgid "" -"An interactive UI for picking a date and time. The date return format can be " -"customized using the field settings." -msgstr "" -"An interactive UI for picking a date and time. The date return format can be " -"customised using the field settings." - -#: includes/fields/class-acf-field-date_picker.php:27 -msgid "" -"An interactive UI for picking a date. The date return format can be " -"customized using the field settings." -msgstr "" -"An interactive UI for picking a date. The date return format can be " -"customised using the field settings." - -#: includes/fields/class-acf-field-color_picker.php:27 -msgid "An interactive UI for selecting a color, or specifying a Hex value." -msgstr "An interactive UI for selecting a colour, or specifying a Hex value." - -#: includes/fields/class-acf-field-checkbox.php:27 -msgid "" -"A group of checkbox inputs that allow the user to select one, or multiple " -"values that you specify." -msgstr "" -"A group of checkbox inputs that allow the user to select one, or multiple " -"values that you specify." - -#: includes/fields/class-acf-field-button-group.php:26 -msgid "" -"A group of buttons with values that you specify, users can choose one option " -"from the values provided." -msgstr "" -"A group of buttons with values that you specify, users can choose one option " -"from the values provided." - -#: includes/fields/class-acf-field-accordion.php:27 -msgid "" -"Allows you to group and organize custom fields into collapsable panels that " -"are shown while editing content. Useful for keeping large datasets tidy." -msgstr "" -"Allows you to group and organise custom fields into collapsable panels that " -"are shown while editing content. Useful for keeping large datasets tidy." - -#: includes/fields.php:475 -msgid "" -"This provides a solution for repeating content such as slides, team members, " -"and call-to-action tiles, by acting as a parent to a set of subfields which " -"can be repeated again and again." -msgstr "" -"This provides a solution for repeating content such as slides, team members, " -"and call-to-action tiles, by acting as a parent to a set of subfields which " -"can be repeated again and again." - -#: includes/fields.php:465 -msgid "" -"This provides an interactive interface for managing a collection of " -"attachments. Most settings are similar to the Image field type. Additional " -"settings allow you to specify where new attachments are added in the gallery " -"and the minimum/maximum number of attachments allowed." -msgstr "" -"This provides an interactive interface for managing a collection of " -"attachments. Most settings are similar to the Image field type. Additional " -"settings allow you to specify where new attachments are added in the gallery " -"and the minimum/maximum number of attachments allowed." - -#: includes/fields.php:455 -msgid "" -"This provides a simple, structured, layout-based editor. The Flexible " -"Content field allows you to define, create and manage content with total " -"control by using layouts and subfields to design the available blocks." -msgstr "" -"This provides a simple, structured, layout-based editor. The Flexible " -"Content field allows you to define, create and manage content with total " -"control by using layouts and subfields to design the available blocks." - -#: includes/fields.php:445 -msgid "" -"This allows you to select and display existing fields. It does not duplicate " -"any fields in the database, but loads and displays the selected fields at " -"run-time. The Clone field can either replace itself with the selected fields " -"or display the selected fields as a group of subfields." -msgstr "" -"This allows you to select and display existing fields. It does not duplicate " -"any fields in the database, but loads and displays the selected fields at " -"run-time. The Clone field can either replace itself with the selected fields " -"or display the selected fields as a group of subfields." - -#: includes/fields.php:442 -msgctxt "noun" -msgid "Clone" -msgstr "Clone" - -#: includes/admin/views/global/navigation.php:86 includes/fields.php:357 -msgid "PRO" -msgstr "PRO" - -#: includes/fields.php:355 includes/fields.php:412 -msgid "Advanced" -msgstr "Advanced" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:85 -msgid "JSON (newer)" -msgstr "JSON (newer)" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:81 -msgid "Original" -msgstr "Original" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:55 -msgid "Invalid post ID." -msgstr "Invalid post ID." - -#: includes/ajax/class-acf-ajax-local-json-diff.php:47 -msgid "Invalid post type selected for review." -msgstr "Invalid post type selected for review." - -#: includes/admin/views/global/navigation.php:186 -msgid "More" -msgstr "More" - -#: includes/admin/views/browse-fields-modal.php:86 -msgid "Tutorial" -msgstr "Tutorial" - -#: includes/admin/views/browse-fields-modal.php:75 -msgid "Available with ACF PRO" -msgstr "Available with ACF PRO" - -#: includes/admin/views/browse-fields-modal.php:63 -msgid "Select Field" -msgstr "Select Field" - -#. translators: %s: A link to the popular fields used in ACF -#: includes/admin/views/browse-fields-modal.php:50 -msgid "Try a different search term or browse %s" -msgstr "Try a different search term or browse %s" - -#: includes/admin/views/browse-fields-modal.php:47 -msgid "Popular fields" -msgstr "Popular fields" - -#. translators: %s: The invalid search term -#: includes/admin/views/browse-fields-modal.php:40 -msgid "No search results for '%s'" -msgstr "No search results for '%s'" - -#: includes/admin/views/browse-fields-modal.php:13 -msgid "Search fields..." -msgstr "Search fields..." - -#: includes/admin/views/browse-fields-modal.php:11 -msgid "Select Field Type" -msgstr "Select Field Type" - -#: includes/admin/views/browse-fields-modal.php:4 -msgid "Popular" -msgstr "Popular" - -#: includes/admin/views/acf-taxonomy/list-empty.php:7 -msgid "Add Taxonomy" -msgstr "Add Taxonomy" - -#: includes/admin/views/acf-taxonomy/list-empty.php:6 -msgid "Create custom taxonomies to classify post type content" -msgstr "Create custom taxonomies to classify post type content" - -#: includes/admin/views/acf-taxonomy/list-empty.php:5 -msgid "Add Your First Taxonomy" -msgstr "Add Your First Taxonomy" - -#: includes/admin/views/acf-taxonomy/basic-settings.php:122 -msgid "Hierarchical taxonomies can have descendants (like categories)." -msgstr "Hierarchical taxonomies can have descendants (like categories)." - -#: includes/admin/views/acf-taxonomy/basic-settings.php:107 -msgid "Makes a taxonomy visible on the frontend and in the admin dashboard." -msgstr "Makes a taxonomy visible on the frontend and in the admin dashboard." - -#: includes/admin/views/acf-taxonomy/basic-settings.php:91 -msgid "One or many post types that can be classified with this taxonomy." -msgstr "One or many post types that can be classified with this taxonomy." - -#. translators: example taxonomy -#: includes/admin/views/acf-taxonomy/basic-settings.php:60 -msgid "genre" -msgstr "genre" - -#. translators: example taxonomy -#: includes/admin/views/acf-taxonomy/basic-settings.php:42 -msgid "Genre" -msgstr "Genre" - -#. translators: example taxonomy -#: includes/admin/views/acf-taxonomy/basic-settings.php:25 -msgid "Genres" -msgstr "Genres" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1211 -msgid "" -"Optional custom controller to use instead of `WP_REST_Terms_Controller `." -msgstr "" -"Optional custom controller to use instead of `WP_REST_Terms_Controller `." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1155 -msgid "Expose this post type in the REST API." -msgstr "Expose this post type in the REST API." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1055 -msgid "Customize the query variable name" -msgstr "Customise the query variable name" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1028 -msgid "" -"Terms can be accessed using the non-pretty permalink, e.g., {query_var}" -"={term_slug}." -msgstr "" -"Terms can be accessed using the non-pretty permalink, e.g., {query_var}" -"={term_slug}." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:981 -msgid "Parent-child terms in URLs for hierarchical taxonomies." -msgstr "Parent-child terms in URLs for hierarchical taxonomies." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:941 -msgid "Customize the slug used in the URL" -msgstr "Customise the slug used in the URL" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:924 -msgid "Permalinks for this taxonomy are disabled." -msgstr "Permalinks for this taxonomy are disabled." - -#. translators: this string will be appended with the new permalink structure. -#: includes/admin/views/acf-taxonomy/advanced-settings.php:921 -msgid "" -"Rewrite the URL using the taxonomy key as the slug. Your permalink structure " -"will be" -msgstr "" -"Rewrite the URL using the taxonomy key as the slug. Your permalink structure " -"will be" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:913 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1030 -#: includes/admin/views/acf-taxonomy/basic-settings.php:57 -msgid "Taxonomy Key" -msgstr "Taxonomy Key" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:911 -msgid "Select the type of permalink to use for this taxonomy." -msgstr "Select the type of permalink to use for this taxonomy." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:896 -msgid "Display a column for the taxonomy on post type listing screens." -msgstr "Display a column for the taxonomy on post type listing screens." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:895 -msgid "Show Admin Column" -msgstr "Show Admin Column" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:882 -msgid "Show the taxonomy in the quick/bulk edit panel." -msgstr "Show the taxonomy in the quick/bulk edit panel." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:881 -msgid "Quick Edit" -msgstr "Quick Edit" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:868 -msgid "List the taxonomy in the Tag Cloud Widget controls." -msgstr "List the taxonomy in the Tag Cloud Widget controls." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:867 -msgid "Tag Cloud" -msgstr "Tag Cloud" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:824 -msgid "" -"A PHP function name to be called for sanitizing taxonomy data saved from a " -"meta box." -msgstr "" -"A PHP function name to be called for sanitising taxonomy data saved from a " -"meta box." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:823 -msgid "Meta Box Sanitization Callback" -msgstr "Meta Box Sanitisation Callback" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:805 -msgid "" -"A PHP function name to be called to handle the content of a meta box on your " -"taxonomy." -msgstr "" -"A PHP function name to be called to handle the content of a meta box on your " -"taxonomy." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:804 -msgid "Register Meta Box Callback" -msgstr "Register Meta Box Callback" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:763 -msgid "No Meta Box" -msgstr "No Meta Box" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:762 -msgid "Custom Meta Box" -msgstr "Custom Meta Box" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:758 -msgid "" -"Controls the meta box on the content editor screen. By default, the " -"Categories meta box is shown for hierarchical taxonomies, and the Tags meta " -"box is shown for non-hierarchical taxonomies." -msgstr "" -"Controls the meta box on the content editor screen. By default, the " -"Categories meta box is shown for hierarchical taxonomies, and the Tags meta " -"box is shown for non-hierarchical taxonomies." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:757 -msgid "Meta Box" -msgstr "Meta Box" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:746 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:767 -msgid "Categories Meta Box" -msgstr "Categories Meta Box" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:745 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:766 -msgid "Tags Meta Box" -msgstr "Tags Meta Box" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:704 -msgid "A link to a tag" -msgstr "A link to a tag" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:703 -msgid "Describes a navigation link block variation used in the block editor." -msgstr "Describes a navigation link block variation used in the block editor." - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:698 -msgid "A link to a %s" -msgstr "A link to a %s" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:683 -msgid "Tag Link" -msgstr "Tag Link" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:682 -msgid "" -"Assigns a title for navigation link block variation used in the block editor." -msgstr "" -"Assigns a title for navigation link block variation used in the block editor." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:663 -msgid "← Go to tags" -msgstr "← Go to tags" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:662 -msgid "" -"Assigns the text used to link back to the main index after updating a term." -msgstr "" -"Assigns the text used to link back to the main index after updating a term." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:661 -msgid "Back To Items" -msgstr "Back To Items" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:657 -msgid "← Go to %s" -msgstr "← Go to %s" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:642 -msgid "Tags list" -msgstr "Tags list" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:641 -msgid "Assigns text to the table hidden heading." -msgstr "Assigns text to the table hidden heading." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:622 -msgid "Tags list navigation" -msgstr "Tags list navigation" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:621 -msgid "Assigns text to the table pagination hidden heading." -msgstr "Assigns text to the table pagination hidden heading." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:597 -msgid "Filter by category" -msgstr "Filter by category" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:596 -msgid "Assigns text to the filter button in the posts lists table." -msgstr "Assigns text to the filter button in the posts lists table." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:595 -msgid "Filter By Item" -msgstr "Filter By Item" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:591 -msgid "Filter by %s" -msgstr "Filter by %s" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:575 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:576 -msgid "" -"The description is not prominent by default; however, some themes may show " -"it." -msgstr "" -"The description is not prominent by default; however, some themes may show " -"it." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:574 -msgid "Describes the Description field on the Edit Tags screen." -msgstr "Describes the Description field on the Edit Tags screen." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:573 -msgid "Description Field Description" -msgstr "Description Field Description" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:554 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:555 -msgid "" -"Assign a parent term to create a hierarchy. The term Jazz, for example, " -"would be the parent of Bebop and Big Band" -msgstr "" -"Assign a parent term to create a hierarchy. The term Jazz, for example, " -"would be the parent of Bebop and Big Band" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:553 -msgid "Describes the Parent field on the Edit Tags screen." -msgstr "Describes the Parent field on the Edit Tags screen." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:552 -msgid "Parent Field Description" -msgstr "Parent Field Description" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:538 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:539 -msgid "" -"The \"slug\" is the URL-friendly version of the name. It is usually all " -"lower case and contains only letters, numbers, and hyphens." -msgstr "" -"The \"slug\" is the URL-friendly version of the name. It is usually all " -"lower case and contains only letters, numbers, and hyphens." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:537 -msgid "Describes the Slug field on the Edit Tags screen." -msgstr "Describes the Slug field on the Edit Tags screen." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:536 -msgid "Slug Field Description" -msgstr "Slug Field Description" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:522 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:523 -msgid "The name is how it appears on your site" -msgstr "The name is how it appears on your site" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:521 -msgid "Describes the Name field on the Edit Tags screen." -msgstr "Describes the Name field on the Edit Tags screen." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:520 -msgid "Name Field Description" -msgstr "Name Field Description" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:507 -msgid "No tags" -msgstr "No tags" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:506 -msgid "" -"Assigns the text displayed in the posts and media list tables when no tags " -"or categories are available." -msgstr "" -"Assigns the text displayed in the posts and media list tables when no tags " -"or categories are available." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:505 -msgid "No Terms" -msgstr "No Terms" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:501 -msgid "No %s" -msgstr "No %s" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:486 -msgid "No tags found" -msgstr "No tags found" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:485 -msgid "" -"Assigns the text displayed when clicking the 'choose from most used' text in " -"the taxonomy meta box when no tags are available, and assigns the text used " -"in the terms list table when there are no items for a taxonomy." -msgstr "" -"Assigns the text displayed when clicking the 'choose from most used' text in " -"the taxonomy meta box when no tags are available, and assigns the text used " -"in the terms list table when there are no items for a taxonomy." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:484 -msgid "Not Found" -msgstr "Not Found" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:463 -msgid "Assigns text to the Title field of the Most Used tab." -msgstr "Assigns text to the Title field of the Most Used tab." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:462 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:464 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:465 -msgid "Most Used" -msgstr "Most Used" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:444 -msgid "Choose from the most used tags" -msgstr "Choose from the most used tags" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:443 -msgid "" -"Assigns the 'choose from most used' text used in the meta box when " -"JavaScript is disabled. Only used on non-hierarchical taxonomies." -msgstr "" -"Assigns the 'choose from most used' text used in the meta box when " -"JavaScript is disabled. Only used on non-hierarchical taxonomies." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:442 -msgid "Choose From Most Used" -msgstr "Choose From Most Used" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:438 -msgid "Choose from the most used %s" -msgstr "Choose from the most used %s" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:418 -msgid "Add or remove tags" -msgstr "Add or remove tags" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:417 -msgid "" -"Assigns the add or remove items text used in the meta box when JavaScript is " -"disabled. Only used on non-hierarchical taxonomies" -msgstr "" -"Assigns the add or remove items text used in the meta box when JavaScript is " -"disabled. Only used on non-hierarchical taxonomies" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:416 -msgid "Add Or Remove Items" -msgstr "Add Or Remove Items" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:412 -msgid "Add or remove %s" -msgstr "Add or remove %s" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:392 -msgid "Separate tags with commas" -msgstr "Separate tags with commas" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:391 -msgid "" -"Assigns the separate item with commas text used in the taxonomy meta box. " -"Only used on non-hierarchical taxonomies." -msgstr "" -"Assigns the separate item with commas text used in the taxonomy meta box. " -"Only used on non-hierarchical taxonomies." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:390 -msgid "Separate Items With Commas" -msgstr "Separate Items With Commas" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:386 -msgid "Separate %s with commas" -msgstr "Separate %s with commas" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:366 -msgid "Popular Tags" -msgstr "Popular Tags" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:365 -msgid "Assigns popular items text. Only used for non-hierarchical taxonomies." -msgstr "Assigns popular items text. Only used for non-hierarchical taxonomies." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:364 -msgid "Popular Items" -msgstr "Popular Items" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:361 -msgid "Popular %s" -msgstr "Popular %s" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:347 -msgid "Search Tags" -msgstr "Search Tags" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:346 -msgid "Assigns search items text." -msgstr "Assigns search items text." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:323 -msgid "Parent Category:" -msgstr "Parent Category:" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:322 -msgid "Assigns parent item text, but with a colon (:) added to the end." -msgstr "Assigns parent item text, but with a colon (:) added to the end." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:321 -msgid "Parent Item With Colon" -msgstr "Parent Item With Colon" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:298 -msgid "Parent Category" -msgstr "Parent Category" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:297 -msgid "Assigns parent item text. Only used on hierarchical taxonomies." -msgstr "Assigns parent item text. Only used on hierarchical taxonomies." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:296 -msgid "Parent Item" -msgstr "Parent Item" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:293 -msgid "Parent %s" -msgstr "Parent %s" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:278 -msgid "New Tag Name" -msgstr "New Tag Name" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:277 -msgid "Assigns the new item name text." -msgstr "Assigns the new item name text." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:276 -msgid "New Item Name" -msgstr "New Item Name" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:273 -msgid "New %s Name" -msgstr "New %s Name" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:258 -msgid "Add New Tag" -msgstr "Add New Tag" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:257 -msgid "Assigns the add new item text." -msgstr "Assigns the add new item text." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:238 -msgid "Update Tag" -msgstr "Update Tag" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:237 -msgid "Assigns the update item text." -msgstr "Assigns the update item text." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:236 -msgid "Update Item" -msgstr "Update Item" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:233 -msgid "Update %s" -msgstr "Update %s" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:218 -msgid "View Tag" -msgstr "View Tag" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:217 -msgid "In the admin bar to view term during editing." -msgstr "In the admin bar to view term during editing." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:198 -msgid "Edit Tag" -msgstr "Edit Tag" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:197 -msgid "At the top of the editor screen when editing a term." -msgstr "At the top of the editor screen when editing a term." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:178 -msgid "All Tags" -msgstr "All Tags" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:177 -msgid "Assigns the all items text." -msgstr "Assigns the all items text." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:158 -msgid "Assigns the menu name text." -msgstr "Assigns the menu name text." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:157 -msgid "Menu Label" -msgstr "Menu Label" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:131 -msgid "Active taxonomies are enabled and registered with WordPress." -msgstr "Active taxonomies are enabled and registered with WordPress." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:115 -msgid "A descriptive summary of the taxonomy." -msgstr "A descriptive summary of the taxonomy." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:95 -msgid "A descriptive summary of the term." -msgstr "A descriptive summary of the term." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:94 -msgid "Term Description" -msgstr "Term Description" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:76 -msgid "Single word, no spaces. Underscores and dashes allowed." -msgstr "Single word, no spaces. Underscores and dashes allowed." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:75 -msgid "Term Slug" -msgstr "Term Slug" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:56 -msgid "The name of the default term." -msgstr "The name of the default term." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:55 -msgid "Term Name" -msgstr "Term Name" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:41 -msgid "" -"Create a term for the taxonomy that cannot be deleted. It will not be " -"selected for posts by default." -msgstr "" -"Create a term for the taxonomy that cannot be deleted. It will not be " -"selected for posts by default." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:40 -msgid "Default Term" -msgstr "Default Term" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:28 -msgid "" -"Whether terms in this taxonomy should be sorted in the order they are " -"provided to `wp_set_object_terms()`." -msgstr "" -"Whether terms in this taxonomy should be sorted in the order they are " -"provided to `wp_set_object_terms()`." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:27 -msgid "Sort Terms" -msgstr "Sort Terms" - -#: includes/admin/views/acf-post-type/list-empty.php:7 -msgid "Add Post Type" -msgstr "Add Post Type" - -#: includes/admin/views/acf-post-type/list-empty.php:6 -msgid "" -"Expand the functionality of WordPress beyond standard posts and pages with " -"custom post types." -msgstr "" -"Expand the functionality of WordPress beyond standard posts and pages with " -"custom post types." - -#: includes/admin/views/acf-post-type/list-empty.php:5 -msgid "Add Your First Post Type" -msgstr "Add Your First Post Type" - -#: includes/admin/views/acf-post-type/basic-settings.php:136 -#: includes/admin/views/acf-taxonomy/basic-settings.php:135 -msgid "I know what I'm doing, show me all the options." -msgstr "I know what I'm doing, show me all the options." - -#: includes/admin/views/acf-post-type/basic-settings.php:135 -#: includes/admin/views/acf-taxonomy/basic-settings.php:134 -msgid "Advanced Configuration" -msgstr "Advanced Configuration" - -#: includes/admin/views/acf-post-type/basic-settings.php:123 -msgid "Hierarchical post types can have descendants (like pages)." -msgstr "Hierarchical post types can have descendants (like pages)." - -#: includes/admin/views/acf-post-type/basic-settings.php:122 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:980 -#: includes/admin/views/acf-taxonomy/basic-settings.php:121 -msgid "Hierarchical" -msgstr "Hierarchical" - -#: includes/admin/views/acf-post-type/basic-settings.php:107 -msgid "Visible on the frontend and in the admin dashboard." -msgstr "Visible on the frontend and in the admin dashboard." - -#: includes/admin/views/acf-post-type/basic-settings.php:106 -#: includes/admin/views/acf-taxonomy/basic-settings.php:106 -msgid "Public" -msgstr "Public" - -#. translators: example post type -#: includes/admin/views/acf-post-type/basic-settings.php:59 -msgid "movie" -msgstr "movie" - -#: includes/admin/views/acf-post-type/basic-settings.php:57 -msgid "Lower case letters, underscores and dashes only, Max 20 characters." -msgstr "Lower case letters, underscores and dashes only, Max 20 characters." - -#. translators: example post type -#: includes/admin/views/acf-post-type/basic-settings.php:41 -msgid "Movie" -msgstr "Movie" - -#: includes/admin/views/acf-post-type/basic-settings.php:39 -#: includes/admin/views/acf-taxonomy/basic-settings.php:40 -msgid "Singular Label" -msgstr "Singular Label" - -#. translators: example post type -#: includes/admin/views/acf-post-type/basic-settings.php:24 -msgid "Movies" -msgstr "Movies" - -#: includes/admin/views/acf-post-type/basic-settings.php:22 -#: includes/admin/views/acf-taxonomy/basic-settings.php:23 -msgid "Plural Label" -msgstr "Plural Label" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1270 -msgid "" -"Optional custom controller to use instead of `WP_REST_Posts_Controller`." -msgstr "" -"Optional custom controller to use instead of `WP_REST_Posts_Controller`." - -#: includes/admin/views/acf-post-type/advanced-settings.php:1269 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1210 -msgid "Controller Class" -msgstr "Controller Class" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1251 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1191 -msgid "The namespace part of the REST API URL." -msgstr "The namespace part of the REST API URL." - -#: includes/admin/views/acf-post-type/advanced-settings.php:1250 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1190 -msgid "Namespace Route" -msgstr "Namespace Route" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1232 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1172 -msgid "The base URL for the post type REST API URLs." -msgstr "The base URL for the post type REST API URLs." - -#: includes/admin/views/acf-post-type/advanced-settings.php:1231 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1171 -msgid "Base URL" -msgstr "Base URL" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1217 -msgid "" -"Exposes this post type in the REST API. Required to use the block editor." -msgstr "" -"Exposes this post type in the REST API. Required to use the block editor." - -#: includes/admin/views/acf-post-type/advanced-settings.php:1216 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1154 -msgid "Show In REST API" -msgstr "Show In REST API" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1195 -msgid "Customize the query variable name." -msgstr "Customise the query variable name." - -#: includes/admin/views/acf-post-type/advanced-settings.php:1194 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1054 -msgid "Query Variable" -msgstr "Query Variable" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1172 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1032 -msgid "No Query Variable Support" -msgstr "No Query Variable Support" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1171 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1031 -msgid "Custom Query Variable" -msgstr "Custom Query Variable" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1168 -msgid "" -"Items can be accessed using the non-pretty permalink, eg. {post_type}" -"={post_slug}." -msgstr "" -"Items can be accessed using the non-pretty permalink, eg. {post_type}" -"={post_slug}." - -#: includes/admin/views/acf-post-type/advanced-settings.php:1167 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1027 -msgid "Query Variable Support" -msgstr "Query Variable Support" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1142 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1003 -msgid "URLs for an item and items can be accessed with a query string." -msgstr "URLs for an item and items can be accessed with a query string." - -#: includes/admin/views/acf-post-type/advanced-settings.php:1141 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1002 -msgid "Publicly Queryable" -msgstr "Publicly Queryable" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1120 -msgid "Custom slug for the Archive URL." -msgstr "Custom slug for the Archive URL." - -#: includes/admin/views/acf-post-type/advanced-settings.php:1119 -msgid "Archive Slug" -msgstr "Archive Slug" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1106 -msgid "" -"Has an item archive that can be customized with an archive template file in " -"your theme." -msgstr "" -"Has an item archive that can be customised with an archive template file in " -"your theme." - -#: includes/admin/views/acf-post-type/advanced-settings.php:1105 -msgid "Archive" -msgstr "Archive" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1085 -msgid "Pagination support for the items URLs such as the archives." -msgstr "Pagination support for the items URLs such as the archives." - -#: includes/admin/views/acf-post-type/advanced-settings.php:1084 -msgid "Pagination" -msgstr "Pagination" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1067 -msgid "RSS feed URL for the post type items." -msgstr "RSS feed URL for the post type items." - -#: includes/admin/views/acf-post-type/advanced-settings.php:1066 -msgid "Feed URL" -msgstr "Feed URL" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1048 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:961 -msgid "" -"Alters the permalink structure to add the `WP_Rewrite::$front` prefix to " -"URLs." -msgstr "" -"Alters the permalink structure to add the `WP_Rewrite::$front` prefix to " -"URLs." - -#: includes/admin/views/acf-post-type/advanced-settings.php:1047 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:960 -msgid "Front URL Prefix" -msgstr "Front URL Prefix" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1028 -msgid "Customize the slug used in the URL." -msgstr "Customise the slug used in the URL." - -#: includes/admin/views/acf-post-type/advanced-settings.php:1027 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:940 -msgid "URL Slug" -msgstr "URL Slug" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1011 -msgid "Permalinks for this post type are disabled." -msgstr "Permalinks for this post type are disabled." - -#. translators: this string will be appended with the new permalink structure. -#: includes/admin/views/acf-post-type/advanced-settings.php:1010 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:923 -msgid "" -"Rewrite the URL using a custom slug defined in the input below. Your " -"permalink structure will be" -msgstr "" -"Rewrite the URL using a custom slug defined in the input below. Your " -"permalink structure will be" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1002 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:915 -msgid "No Permalink (prevent URL rewriting)" -msgstr "No Permalink (prevent URL rewriting)" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1001 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:914 -msgid "Custom Permalink" -msgstr "Custom Permalink" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1000 -#: includes/admin/views/acf-post-type/advanced-settings.php:1170 -#: includes/admin/views/acf-post-type/basic-settings.php:56 -msgid "Post Type Key" -msgstr "Post Type Key" - -#. translators: this string will be appended with the new permalink structure. -#: includes/admin/views/acf-post-type/advanced-settings.php:998 -#: includes/admin/views/acf-post-type/advanced-settings.php:1008 -msgid "" -"Rewrite the URL using the post type key as the slug. Your permalink " -"structure will be" -msgstr "" -"Rewrite the URL using the post type key as the slug. Your permalink " -"structure will be" - -#: includes/admin/views/acf-post-type/advanced-settings.php:996 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:910 -msgid "Permalink Rewrite" -msgstr "Permalink Rewrite" - -#: includes/admin/views/acf-post-type/advanced-settings.php:982 -msgid "Delete items by a user when that user is deleted." -msgstr "Delete items by a user when that user is deleted." - -#: includes/admin/views/acf-post-type/advanced-settings.php:981 -msgid "Delete With User" -msgstr "Delete With User" - -#: includes/admin/views/acf-post-type/advanced-settings.php:967 -msgid "Allow the post type to be exported from 'Tools' > 'Export'." -msgstr "Allow the post type to be exported from 'Tools' > 'Export'." - -#: includes/admin/views/acf-post-type/advanced-settings.php:966 -msgid "Can Export" -msgstr "Can Export" - -#: includes/admin/views/acf-post-type/advanced-settings.php:935 -msgid "Optionally provide a plural to be used in capabilities." -msgstr "Optionally provide a plural to be used in capabilities." - -#: includes/admin/views/acf-post-type/advanced-settings.php:934 -msgid "Plural Capability Name" -msgstr "Plural Capability Name" - -#: includes/admin/views/acf-post-type/advanced-settings.php:916 -msgid "Choose another post type to base the capabilities for this post type." -msgstr "Choose another post type to base the capabilities for this post type." - -#: includes/admin/views/acf-post-type/advanced-settings.php:915 -msgid "Singular Capability Name" -msgstr "Singular Capability Name" - -#: includes/admin/views/acf-post-type/advanced-settings.php:901 -msgid "" -"By default the capabilities of the post type will inherit the 'Post' " -"capability names, eg. edit_post, delete_posts. Enable to use post type " -"specific capabilities, eg. edit_{singular}, delete_{plural}." -msgstr "" -"By default the capabilities of the post type will inherit the 'Post' " -"capability names, eg. edit_post, delete_posts. Enable to use post type " -"specific capabilities, eg. edit_{singular}, delete_{plural}." - -#: includes/admin/views/acf-post-type/advanced-settings.php:900 -msgid "Rename Capabilities" -msgstr "Rename Capabilities" - -#: includes/admin/views/acf-post-type/advanced-settings.php:885 -msgid "Exclude From Search" -msgstr "Exclude From Search" - -#: includes/admin/views/acf-post-type/advanced-settings.php:872 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:854 -msgid "" -"Allow items to be added to menus in the 'Appearance' > 'Menus' screen. Must " -"be turned on in 'Screen options'." -msgstr "" -"Allow items to be added to menus in the 'Appearance' > 'Menus' screen. Must " -"be turned on in 'Screen options'." - -#: includes/admin/views/acf-post-type/advanced-settings.php:871 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:853 -msgid "Appearance Menus Support" -msgstr "Appearance Menus Support" - -#: includes/admin/views/acf-post-type/advanced-settings.php:853 -msgid "Appears as an item in the 'New' menu in the admin bar." -msgstr "Appears as an item in the 'New' menu in the admin bar." - -#: includes/admin/views/acf-post-type/advanced-settings.php:852 -msgid "Show In Admin Bar" -msgstr "Show In Admin Bar" - -#: includes/admin/views/acf-post-type/advanced-settings.php:821 -msgid "" -"A PHP function name to be called when setting up the meta boxes for the edit " -"screen." -msgstr "" -"A PHP function name to be called when setting up the meta boxes for the edit " -"screen." - -#: includes/admin/views/acf-post-type/advanced-settings.php:820 -msgid "Custom Meta Box Callback" -msgstr "Custom Meta Box Callback" - -#: includes/admin/views/acf-post-type/advanced-settings.php:800 -msgid "Menu Icon" -msgstr "Menu Icon" - -#: includes/admin/views/acf-post-type/advanced-settings.php:782 -msgid "The position in the sidebar menu in the admin dashboard." -msgstr "The position in the sidebar menu in the admin dashboard." - -#: includes/admin/views/acf-post-type/advanced-settings.php:781 -msgid "Menu Position" -msgstr "Menu Position" - -#: includes/admin/views/acf-post-type/advanced-settings.php:763 -msgid "" -"By default the post type will get a new top level item in the admin menu. If " -"an existing top level item is supplied here, the post type will be added as " -"a submenu item under it." -msgstr "" -"By default the post type will get a new top level item in the admin menu. If " -"an existing top level item is supplied here, the post type will be added as " -"a submenu item under it." - -#: includes/admin/views/acf-post-type/advanced-settings.php:762 -msgid "Admin Menu Parent" -msgstr "Admin Menu Parent" - -#. translators: %s = "dashicon class name", link to the WordPress dashicon -#. documentation. -#: includes/admin/views/acf-post-type/advanced-settings.php:750 -msgid "" -"The icon used for the post type menu item in the admin dashboard. Can be a " -"URL or %s to use for the icon." -msgstr "" -"The icon used for the post type menu item in the admin dashboard. Can be a " -"URL or %s to use for the icon." - -#: includes/admin/views/acf-post-type/advanced-settings.php:745 -msgid "Dashicon class name" -msgstr "Dashicon class name" - -#: includes/admin/views/acf-post-type/advanced-settings.php:734 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:734 -msgid "Admin editor navigation in the sidebar menu." -msgstr "Admin editor navigation in the sidebar menu." - -#: includes/admin/views/acf-post-type/advanced-settings.php:733 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:733 -msgid "Show In Admin Menu" -msgstr "Show In Admin Menu" - -#: includes/admin/views/acf-post-type/advanced-settings.php:720 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:719 -msgid "Items can be edited and managed in the admin dashboard." -msgstr "Items can be edited and managed in the admin dashboard." - -#: includes/admin/views/acf-post-type/advanced-settings.php:719 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:718 -msgid "Show In UI" -msgstr "Show In UI" - -#: includes/admin/views/acf-post-type/advanced-settings.php:689 -msgid "A link to a post." -msgstr "A link to a post." - -#: includes/admin/views/acf-post-type/advanced-settings.php:688 -msgid "Description for a navigation link block variation." -msgstr "Description for a navigation link block variation." - -#: includes/admin/views/acf-post-type/advanced-settings.php:687 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:702 -msgid "Item Link Description" -msgstr "Item Link Description" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:683 -msgid "A link to a %s." -msgstr "A link to a %s." - -#: includes/admin/views/acf-post-type/advanced-settings.php:668 -msgid "Post Link" -msgstr "Post Link" - -#: includes/admin/views/acf-post-type/advanced-settings.php:667 -msgid "Title for a navigation link block variation." -msgstr "Title for a navigation link block variation." - -#: includes/admin/views/acf-post-type/advanced-settings.php:666 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:681 -msgid "Item Link" -msgstr "Item Link" - -#. translators: %s Singular form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:663 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:678 -msgid "%s Link" -msgstr "%s Link" - -#: includes/admin/views/acf-post-type/advanced-settings.php:648 -msgid "Post updated." -msgstr "Post updated." - -#: includes/admin/views/acf-post-type/advanced-settings.php:647 -msgid "In the editor notice after an item is updated." -msgstr "In the editor notice after an item is updated." - -#: includes/admin/views/acf-post-type/advanced-settings.php:646 -msgid "Item Updated" -msgstr "Item Updated" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:643 -msgid "%s updated." -msgstr "%s updated." - -#: includes/admin/views/acf-post-type/advanced-settings.php:628 -msgid "Post scheduled." -msgstr "Post scheduled." - -#: includes/admin/views/acf-post-type/advanced-settings.php:627 -msgid "In the editor notice after scheduling an item." -msgstr "In the editor notice after scheduling an item." - -#: includes/admin/views/acf-post-type/advanced-settings.php:626 -msgid "Item Scheduled" -msgstr "Item Scheduled" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:623 -msgid "%s scheduled." -msgstr "%s scheduled." - -#: includes/admin/views/acf-post-type/advanced-settings.php:608 -msgid "Post reverted to draft." -msgstr "Post reverted to draft." - -#: includes/admin/views/acf-post-type/advanced-settings.php:607 -msgid "In the editor notice after reverting an item to draft." -msgstr "In the editor notice after reverting an item to draft." - -#: includes/admin/views/acf-post-type/advanced-settings.php:606 -msgid "Item Reverted To Draft" -msgstr "Item Reverted To Draft" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:603 -msgid "%s reverted to draft." -msgstr "%s reverted to draft." - -#: includes/admin/views/acf-post-type/advanced-settings.php:588 -msgid "Post published privately." -msgstr "Post published privately." - -#: includes/admin/views/acf-post-type/advanced-settings.php:587 -msgid "In the editor notice after publishing a private item." -msgstr "In the editor notice after publishing a private item." - -#: includes/admin/views/acf-post-type/advanced-settings.php:586 -msgid "Item Published Privately" -msgstr "Item Published Privately" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:583 -msgid "%s published privately." -msgstr "%s published privately." - -#: includes/admin/views/acf-post-type/advanced-settings.php:568 -msgid "Post published." -msgstr "Post published." - -#: includes/admin/views/acf-post-type/advanced-settings.php:567 -msgid "In the editor notice after publishing an item." -msgstr "In the editor notice after publishing an item." - -#: includes/admin/views/acf-post-type/advanced-settings.php:566 -msgid "Item Published" -msgstr "Item Published" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:563 -msgid "%s published." -msgstr "%s published." - -#: includes/admin/views/acf-post-type/advanced-settings.php:548 -msgid "Posts list" -msgstr "Posts list" - -#: includes/admin/views/acf-post-type/advanced-settings.php:547 -msgid "Used by screen readers for the items list on the post type list screen." -msgstr "" -"Used by screen readers for the items list on the post type list screen." - -#: includes/admin/views/acf-post-type/advanced-settings.php:546 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:640 -msgid "Items List" -msgstr "Items List" - -#. translators: %s Plural form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:543 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:637 -msgid "%s list" -msgstr "%s list" - -#: includes/admin/views/acf-post-type/advanced-settings.php:528 -msgid "Posts list navigation" -msgstr "Posts list navigation" - -#: includes/admin/views/acf-post-type/advanced-settings.php:527 -msgid "" -"Used by screen readers for the filter list pagination on the post type list " -"screen." -msgstr "" -"Used by screen readers for the filter list pagination on the post type list " -"screen." - -#: includes/admin/views/acf-post-type/advanced-settings.php:526 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:620 -msgid "Items List Navigation" -msgstr "Items List Navigation" - -#. translators: %s Plural form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:523 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:617 -msgid "%s list navigation" -msgstr "%s list navigation" - -#: includes/admin/views/acf-post-type/advanced-settings.php:507 -msgid "Filter posts by date" -msgstr "Filter posts by date" - -#: includes/admin/views/acf-post-type/advanced-settings.php:506 -msgid "" -"Used by screen readers for the filter by date heading on the post type list " -"screen." -msgstr "" -"Used by screen readers for the filter by date heading on the post type list " -"screen." - -#: includes/admin/views/acf-post-type/advanced-settings.php:505 -msgid "Filter Items By Date" -msgstr "Filter Items By Date" - -#. translators: %s Plural form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:501 -msgid "Filter %s by date" -msgstr "Filter %s by date" - -#: includes/admin/views/acf-post-type/advanced-settings.php:486 -msgid "Filter posts list" -msgstr "Filter posts list" - -#: includes/admin/views/acf-post-type/advanced-settings.php:485 -msgid "" -"Used by screen readers for the filter links heading on the post type list " -"screen." -msgstr "" -"Used by screen readers for the filter links heading on the post type list " -"screen." - -#: includes/admin/views/acf-post-type/advanced-settings.php:484 -msgid "Filter Items List" -msgstr "Filter Items List" - -#. translators: %s Plural form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:480 -msgid "Filter %s list" -msgstr "Filter %s list" - -#: includes/admin/views/acf-post-type/advanced-settings.php:464 -msgid "In the media modal showing all media uploaded to this item." -msgstr "In the media modal showing all media uploaded to this item." - -#: includes/admin/views/acf-post-type/advanced-settings.php:463 -msgid "Uploaded To This Item" -msgstr "Uploaded To This Item" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:459 -msgid "Uploaded to this %s" -msgstr "Uploaded to this %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:444 -msgid "Insert into post" -msgstr "Insert into post" - -#: includes/admin/views/acf-post-type/advanced-settings.php:443 -msgid "As the button label when adding media to content." -msgstr "As the button label when adding media to content." - -#: includes/admin/views/acf-post-type/advanced-settings.php:442 -msgid "Insert Into Media Button" -msgstr "Insert Into Media Button" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:438 -msgid "Insert into %s" -msgstr "Insert into %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:423 -msgid "Use as featured image" -msgstr "Use as featured image" - -#: includes/admin/views/acf-post-type/advanced-settings.php:422 -msgid "" -"As the button label for selecting to use an image as the featured image." -msgstr "" -"As the button label for selecting to use an image as the featured image." - -#: includes/admin/views/acf-post-type/advanced-settings.php:421 -msgid "Use Featured Image" -msgstr "Use Featured Image" - -#: includes/admin/views/acf-post-type/advanced-settings.php:408 -msgid "Remove featured image" -msgstr "Remove featured image" - -#: includes/admin/views/acf-post-type/advanced-settings.php:407 -msgid "As the button label when removing the featured image." -msgstr "As the button label when removing the featured image." - -#: includes/admin/views/acf-post-type/advanced-settings.php:406 -msgid "Remove Featured Image" -msgstr "Remove Featured Image" - -#: includes/admin/views/acf-post-type/advanced-settings.php:393 -msgid "Set featured image" -msgstr "Set featured image" - -#: includes/admin/views/acf-post-type/advanced-settings.php:392 -msgid "As the button label when setting the featured image." -msgstr "As the button label when setting the featured image." - -#: includes/admin/views/acf-post-type/advanced-settings.php:391 -msgid "Set Featured Image" -msgstr "Set Featured Image" - -#: includes/admin/views/acf-post-type/advanced-settings.php:378 -msgid "Featured image" -msgstr "Featured image" - -#: includes/admin/views/acf-post-type/advanced-settings.php:377 -msgid "In the editor used for the title of the featured image meta box." -msgstr "In the editor used for the title of the featured image meta box." - -#: includes/admin/views/acf-post-type/advanced-settings.php:376 -msgid "Featured Image Meta Box" -msgstr "Featured Image Meta Box" - -#: includes/admin/views/acf-post-type/advanced-settings.php:363 -msgid "Post Attributes" -msgstr "Post Attributes" - -#: includes/admin/views/acf-post-type/advanced-settings.php:362 -msgid "In the editor used for the title of the post attributes meta box." -msgstr "In the editor used for the title of the post attributes meta box." - -#: includes/admin/views/acf-post-type/advanced-settings.php:361 -msgid "Attributes Meta Box" -msgstr "Attributes Meta Box" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:358 -msgid "%s Attributes" -msgstr "%s Attributes" - -#: includes/admin/views/acf-post-type/advanced-settings.php:343 -msgid "Post Archives" -msgstr "Post Archives" - -#: includes/admin/views/acf-post-type/advanced-settings.php:342 -msgid "" -"Adds 'Post Type Archive' items with this label to the list of posts shown " -"when adding items to an existing menu in a CPT with archives enabled. Only " -"appears when editing menus in 'Live Preview' mode and a custom archive slug " -"has been provided." -msgstr "" -"Adds 'Post Type Archive' items with this label to the list of posts shown " -"when adding items to an existing menu in a post type with archives enabled. " -"Only appears when editing menus in 'Live Preview' mode and a custom archive " -"slug has been provided." - -#: includes/admin/views/acf-post-type/advanced-settings.php:341 -msgid "Archives Nav Menu" -msgstr "Archives Nav Menu" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:338 -msgid "%s Archives" -msgstr "%s Archives" - -#: includes/admin/views/acf-post-type/advanced-settings.php:323 -msgid "No posts found in Trash" -msgstr "No posts found in the bin" - -#: includes/admin/views/acf-post-type/advanced-settings.php:322 -msgid "" -"At the top of the post type list screen when there are no posts in the trash." -msgstr "" -"At the top of the post type list screen when there are no posts in the bin." - -#: includes/admin/views/acf-post-type/advanced-settings.php:321 -msgid "No Items Found in Trash" -msgstr "No Items Found in the bin" - -#. translators: %s Plural form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:317 -msgid "No %s found in Trash" -msgstr "No %s found in the bin" - -#: includes/admin/views/acf-post-type/advanced-settings.php:302 -msgid "No posts found" -msgstr "No posts found" - -#: includes/admin/views/acf-post-type/advanced-settings.php:301 -msgid "" -"At the top of the post type list screen when there are no posts to display." -msgstr "" -"At the top of the post type list screen when there are no posts to display." - -#: includes/admin/views/acf-post-type/advanced-settings.php:300 -msgid "No Items Found" -msgstr "No Items Found" - -#. translators: %s Plural form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:296 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:480 -msgid "No %s found" -msgstr "No %s found" - -#: includes/admin/views/acf-post-type/advanced-settings.php:281 -msgid "Search Posts" -msgstr "Search Posts" - -#: includes/admin/views/acf-post-type/advanced-settings.php:280 -msgid "At the top of the items screen when searching for an item." -msgstr "At the top of the items screen when searching for an item." - -#: includes/admin/views/acf-post-type/advanced-settings.php:279 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:345 -msgid "Search Items" -msgstr "Search Items" - -#. translators: %s Singular form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:276 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:342 -msgid "Search %s" -msgstr "Search %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:261 -msgid "Parent Page:" -msgstr "Parent Page:" - -#: includes/admin/views/acf-post-type/advanced-settings.php:260 -msgid "For hierarchical types in the post type list screen." -msgstr "For hierarchical types in the post type list screen." - -#: includes/admin/views/acf-post-type/advanced-settings.php:259 -msgid "Parent Item Prefix" -msgstr "Parent Item Prefix" - -#. translators: %s Singular form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:256 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:318 -msgid "Parent %s:" -msgstr "Parent %s:" - -#: includes/admin/views/acf-post-type/advanced-settings.php:241 -msgid "New Post" -msgstr "New Post" - -#: includes/admin/views/acf-post-type/advanced-settings.php:239 -msgid "New Item" -msgstr "New Item" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:236 -msgid "New %s" -msgstr "New %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:206 -msgid "Add New Post" -msgstr "Add New Post" - -#: includes/admin/views/acf-post-type/advanced-settings.php:205 -msgid "At the top of the editor screen when adding a new item." -msgstr "At the top of the editor screen when adding a new item." - -#: includes/admin/views/acf-post-type/advanced-settings.php:204 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:256 -msgid "Add New Item" -msgstr "Add New Item" - -#. translators: %s Singular form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:201 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:253 -msgid "Add New %s" -msgstr "Add New %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:186 -msgid "View Posts" -msgstr "View Posts" - -#: includes/admin/views/acf-post-type/advanced-settings.php:185 -msgid "" -"Appears in the admin bar in the 'All Posts' view, provided the post type " -"supports archives and the home page is not an archive of that post type." -msgstr "" -"Appears in the admin bar in the 'All Posts' view, provided the post type " -"supports archives and the home page is not an archive of that post type." - -#: includes/admin/views/acf-post-type/advanced-settings.php:184 -msgid "View Items" -msgstr "View Items" - -#: includes/admin/views/acf-post-type/advanced-settings.php:166 -msgid "View Post" -msgstr "View Post" - -#: includes/admin/views/acf-post-type/advanced-settings.php:165 -msgid "In the admin bar to view item when editing it." -msgstr "In the admin bar to view item when editing it." - -#: includes/admin/views/acf-post-type/advanced-settings.php:164 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:216 -msgid "View Item" -msgstr "View Item" - -#. translators: %s Singular form of post type name -#. translators: %s Plural form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:161 -#: includes/admin/views/acf-post-type/advanced-settings.php:181 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:213 -msgid "View %s" -msgstr "View %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:146 -msgid "Edit Post" -msgstr "Edit Post" - -#: includes/admin/views/acf-post-type/advanced-settings.php:145 -msgid "At the top of the editor screen when editing an item." -msgstr "At the top of the editor screen when editing an item." - -#: includes/admin/views/acf-post-type/advanced-settings.php:144 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:196 -msgid "Edit Item" -msgstr "Edit Item" - -#. translators: %s Singular form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:141 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:193 -msgid "Edit %s" -msgstr "Edit %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:126 -msgid "All Posts" -msgstr "All Posts" - -#: includes/admin/views/acf-post-type/advanced-settings.php:125 -#: includes/admin/views/acf-post-type/advanced-settings.php:220 -#: includes/admin/views/acf-post-type/advanced-settings.php:240 -msgid "In the post type submenu in the admin dashboard." -msgstr "In the post type submenu in the admin dashboard." - -#: includes/admin/views/acf-post-type/advanced-settings.php:124 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:176 -msgid "All Items" -msgstr "All Items" - -#. translators: %s Plural form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:121 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:173 -msgid "All %s" -msgstr "All %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:105 -msgid "Admin menu name for the post type." -msgstr "Admin menu name for the post type." - -#: includes/admin/views/acf-post-type/advanced-settings.php:104 -msgid "Menu Name" -msgstr "Menu Name" - -#: includes/admin/views/acf-post-type/advanced-settings.php:90 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:142 -msgid "Regenerate all labels using the Singular and Plural labels" -msgstr "Regenerate all labels using the Singular and Plural labels" - -#: includes/admin/views/acf-post-type/advanced-settings.php:88 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:140 -msgid "Regenerate" -msgstr "Regenerate" - -#: includes/admin/views/acf-post-type/advanced-settings.php:79 -msgid "Active post types are enabled and registered with WordPress." -msgstr "Active post types are enabled and registered with WordPress." - -#: includes/admin/views/acf-post-type/advanced-settings.php:63 -msgid "A descriptive summary of the post type." -msgstr "A descriptive summary of the post type." - -#: includes/admin/views/acf-post-type/advanced-settings.php:48 -msgid "Add Custom" -msgstr "Add Custom" - -#: includes/admin/views/acf-post-type/advanced-settings.php:42 -msgid "Enable various features in the content editor." -msgstr "Enable various features in the content editor." - -#: includes/admin/views/acf-post-type/advanced-settings.php:31 -msgid "Post Formats" -msgstr "Post Formats" - -#: includes/admin/views/acf-post-type/advanced-settings.php:25 -msgid "Editor" -msgstr "Editor" - -#: includes/admin/views/acf-post-type/advanced-settings.php:24 -msgid "Trackbacks" -msgstr "Trackbacks" - -#: includes/admin/views/acf-post-type/basic-settings.php:87 -msgid "Select existing taxonomies to classify items of the post type." -msgstr "Select existing taxonomies to classify items of the post type." - -#: includes/admin/views/acf-field-group/field.php:145 -msgid "Browse Fields" -msgstr "Browse Fields" - -#: includes/admin/tools/class-acf-admin-tool-import.php:292 -msgid "Nothing to import" -msgstr "Nothing to import" - -#: includes/admin/tools/class-acf-admin-tool-import.php:287 -msgid ". The Custom Post Type UI plugin can be deactivated." -msgstr ". The Custom Post Type UI plugin can be deactivated." - -#. translators: %d - number of items imported from CPTUI -#: includes/admin/tools/class-acf-admin-tool-import.php:278 -msgid "Imported %d item from Custom Post Type UI -" -msgid_plural "Imported %d items from Custom Post Type UI -" -msgstr[0] "Imported %d item from Custom Post Type UI -" -msgstr[1] "Imported %d items from Custom Post Type UI -" - -#: includes/admin/tools/class-acf-admin-tool-import.php:262 -msgid "Failed to import taxonomies." -msgstr "Failed to import taxonomies." - -#: includes/admin/tools/class-acf-admin-tool-import.php:244 -msgid "Failed to import post types." -msgstr "Failed to import post types." - -#: includes/admin/tools/class-acf-admin-tool-import.php:233 -msgid "Nothing from Custom Post Type UI plugin selected for import." -msgstr "Nothing from Custom Post Type UI plugin selected for import." - -#: includes/admin/tools/class-acf-admin-tool-import.php:209 -msgid "Imported 1 item" -msgid_plural "Imported %s items" -msgstr[0] "Imported 1 item" -msgstr[1] "Imported %s items" - -#: includes/admin/tools/class-acf-admin-tool-import.php:122 -msgid "" -"Importing a Post Type or Taxonomy with the same key as one that already " -"exists will overwrite the settings for the existing Post Type or Taxonomy " -"with those of the import." -msgstr "" -"Importing a Post Type or Taxonomy with the same key as one that already " -"exists will overwrite the settings for the existing Post Type or Taxonomy " -"with those of the import." - -#: includes/admin/tools/class-acf-admin-tool-import.php:111 -#: includes/admin/tools/class-acf-admin-tool-import.php:127 -msgid "Import from Custom Post Type UI" -msgstr "Import from Custom Post Type UI" - -#: includes/admin/tools/class-acf-admin-tool-export.php:412 -msgid "" -"The following code can be used to register a local version of the selected " -"items. Storing field groups, post types, or taxonomies locally can provide " -"many benefits such as faster load times, version control & dynamic fields/" -"settings. Simply copy and paste the following code to your theme's functions." -"php file or include it within an external file, then deactivate or delete " -"the items from the ACF admin." -msgstr "" -"The following code can be used to register a local version of the selected " -"items. Storing field groups, post types, or taxonomies locally can provide " -"many benefits such as faster load times, version control & dynamic fields/" -"settings. Simply copy and paste the following code to your theme's functions." -"php file or include it within an external file, then deactivate or delete " -"the items from the ACF admin." - -#: includes/admin/tools/class-acf-admin-tool-export.php:411 -msgid "Export - Generate PHP" -msgstr "Export - Generate PHP" - -#: includes/admin/tools/class-acf-admin-tool-export.php:384 -msgid "Export" -msgstr "Export" - -#: includes/admin/tools/class-acf-admin-tool-export.php:276 -msgid "Select Taxonomies" -msgstr "Select Taxonomies" - -#: includes/admin/tools/class-acf-admin-tool-export.php:254 -msgid "Select Post Types" -msgstr "Select Post Types" - -#: includes/admin/tools/class-acf-admin-tool-export.php:167 -msgid "Exported 1 item." -msgid_plural "Exported %s items." -msgstr[0] "Exported 1 item." -msgstr[1] "Exported %s items." - -#: includes/admin/post-types/admin-taxonomy.php:129 -#: assets/build/js/acf-internal-post-type.js:182 -#: assets/build/js/acf-internal-post-type.js:256 -msgid "Category" -msgstr "Category" - -#: includes/admin/post-types/admin-taxonomy.php:127 -#: assets/build/js/acf-internal-post-type.js:179 -#: assets/build/js/acf-internal-post-type.js:253 -msgid "Tag" -msgstr "Tag" - -#. translators: %s taxonomy name -#: includes/admin/post-types/admin-taxonomy.php:82 -msgid "%s taxonomy created" -msgstr "%s taxonomy created" - -#. translators: %s taxonomy name -#: includes/admin/post-types/admin-taxonomy.php:76 -msgid "%s taxonomy updated" -msgstr "%s taxonomy updated" - -#: includes/admin/post-types/admin-taxonomy.php:56 -msgid "Taxonomy draft updated." -msgstr "Taxonomy draft updated." - -#: includes/admin/post-types/admin-taxonomy.php:55 -msgid "Taxonomy scheduled for." -msgstr "Taxonomy scheduled for." - -#: includes/admin/post-types/admin-taxonomy.php:54 -msgid "Taxonomy submitted." -msgstr "Taxonomy submitted." - -#: includes/admin/post-types/admin-taxonomy.php:53 -msgid "Taxonomy saved." -msgstr "Taxonomy saved." - -#: includes/admin/post-types/admin-taxonomy.php:49 -msgid "Taxonomy deleted." -msgstr "Taxonomy deleted." - -#: includes/admin/post-types/admin-taxonomy.php:48 -msgid "Taxonomy updated." -msgstr "Taxonomy updated." - -#: includes/admin/post-types/admin-taxonomies.php:377 -#: includes/admin/post-types/admin-taxonomy.php:157 -msgid "" -"This taxonomy could not be registered because its key is in use by another " -"taxonomy registered by another plugin or theme." -msgstr "" -"This taxonomy could not be registered because its key is in use by another " -"taxonomy registered by another plugin or theme." - -#. translators: %s number of taxonomies synchronized -#: includes/admin/post-types/admin-taxonomies.php:359 -msgid "Taxonomy synchronized." -msgid_plural "%s taxonomies synchronized." -msgstr[0] "Taxonomy synchronised." -msgstr[1] "%s taxonomies synchronised." - -#. translators: %s number of taxonomies duplicated -#: includes/admin/post-types/admin-taxonomies.php:352 -msgid "Taxonomy duplicated." -msgid_plural "%s taxonomies duplicated." -msgstr[0] "Taxonomy duplicated." -msgstr[1] "%s taxonomies duplicated." - -#. translators: %s number of taxonomies deactivated -#: includes/admin/post-types/admin-taxonomies.php:345 -msgid "Taxonomy deactivated." -msgid_plural "%s taxonomies deactivated." -msgstr[0] "Taxonomy deactivated." -msgstr[1] "%s taxonomies deactivated." - -#. translators: %s number of taxonomies activated -#: includes/admin/post-types/admin-taxonomies.php:338 -msgid "Taxonomy activated." -msgid_plural "%s taxonomies activated." -msgstr[0] "Taxonomy activated." -msgstr[1] "%s taxonomies activated." - -#: includes/admin/post-types/admin-taxonomies.php:139 -msgid "Terms" -msgstr "Terms" - -#. translators: %s number of post types synchronized -#: includes/admin/post-types/admin-post-types.php:352 -msgid "Post type synchronized." -msgid_plural "%s post types synchronized." -msgstr[0] "Post type synchronised." -msgstr[1] "%s post types synchronised." - -#. translators: %s number of post types duplicated -#: includes/admin/post-types/admin-post-types.php:345 -msgid "Post type duplicated." -msgid_plural "%s post types duplicated." -msgstr[0] "Post type duplicated." -msgstr[1] "%s post types duplicated." - -#. translators: %s number of post types deactivated -#: includes/admin/post-types/admin-post-types.php:338 -msgid "Post type deactivated." -msgid_plural "%s post types deactivated." -msgstr[0] "Post type deactivated." -msgstr[1] "%s post types deactivated." - -#. translators: %s number of post types activated -#: includes/admin/post-types/admin-post-types.php:331 -msgid "Post type activated." -msgid_plural "%s post types activated." -msgstr[0] "Post type activated." -msgstr[1] "%s post types activated." - -#: includes/admin/post-types/admin-post-types.php:112 -#: includes/admin/post-types/admin-taxonomies.php:137 -#: includes/admin/tools/class-acf-admin-tool-import.php:82 -#: includes/admin/views/acf-taxonomy/basic-settings.php:82 -#: includes/post-types/class-acf-post-type.php:91 -msgid "Post Types" -msgstr "Post Types" - -#: includes/admin/post-types/admin-post-type.php:162 -#: includes/admin/post-types/admin-taxonomy.php:164 -msgid "Advanced Settings" -msgstr "Advanced Settings" - -#: includes/admin/post-types/admin-post-type.php:161 -#: includes/admin/post-types/admin-taxonomy.php:163 -msgid "Basic Settings" -msgstr "Basic Settings" - -#: includes/admin/post-types/admin-post-type.php:155 -#: includes/admin/post-types/admin-post-types.php:370 -msgid "" -"This post type could not be registered because its key is in use by another " -"post type registered by another plugin or theme." -msgstr "" -"This post type could not be registered because its key is in use by another " -"post type registered by another plugin or theme." - -#: includes/admin/post-types/admin-post-type.php:128 -#: assets/build/js/acf-internal-post-type.js:176 -#: assets/build/js/acf-internal-post-type.js:250 -msgid "Pages" -msgstr "Pages" - -#: includes/admin/admin-internal-post-type.php:355 -msgid "Link Existing Field Groups" -msgstr "" - -#. translators: %s post type name -#: includes/admin/post-types/admin-post-type.php:80 -msgid "%s post type created" -msgstr "%s post type created" - -#. translators: %s taxonomy name -#: includes/admin/post-types/admin-taxonomy.php:78 -msgid "Add fields to %s" -msgstr "Add fields to %s" - -#. translators: %s post type name -#: includes/admin/post-types/admin-post-type.php:76 -msgid "%s post type updated" -msgstr "%s post type updated" - -#: includes/admin/post-types/admin-post-type.php:56 -msgid "Post type draft updated." -msgstr "Post type draft updated." - -#: includes/admin/post-types/admin-post-type.php:55 -msgid "Post type scheduled for." -msgstr "Post type scheduled for." - -#: includes/admin/post-types/admin-post-type.php:54 -msgid "Post type submitted." -msgstr "Post type submitted." - -#: includes/admin/post-types/admin-post-type.php:53 -msgid "Post type saved." -msgstr "Post type saved." - -#: includes/admin/post-types/admin-post-type.php:50 -msgid "Post type updated." -msgstr "Post type updated." - -#: includes/admin/post-types/admin-post-type.php:49 -msgid "Post type deleted." -msgstr "Post type deleted." - -#: includes/admin/post-types/admin-field-group.php:120 -#: assets/build/js/acf-field-group.js:1146 -#: assets/build/js/acf-field-group.js:1366 -msgid "Type to search..." -msgstr "Type to search..." - -#: includes/admin/post-types/admin-field-group.php:105 -#: assets/build/js/acf-field-group.js:1172 -#: assets/build/js/acf-field-group.js:2319 -#: assets/build/js/acf-field-group.js:1414 -#: assets/build/js/acf-field-group.js:2727 -msgid "PRO Only" -msgstr "PRO Only" - -#: includes/admin/post-types/admin-field-group.php:97 -#: assets/build/js/acf-internal-post-type.js:308 -#: assets/build/js/acf-internal-post-type.js:417 -msgid "Field groups linked successfully." -msgstr "Field groups linked successfully." - -#. translators: %s - URL to ACF tools page. -#: includes/admin/admin.php:195 -msgid "" -"Import Post Types and Taxonomies registered with Custom Post Type UI and " -"manage them with ACF. Get Started." -msgstr "" -"Import Post Types and Taxonomies registered with Custom Post Type UI and " -"manage them with ACF. Get Started." - -#: includes/admin/admin.php:48 includes/admin/admin.php:267 -msgid "ACF" -msgstr "ACF" - -#: includes/admin/admin-internal-post-type.php:322 -msgid "taxonomy" -msgstr "taxonomy" - -#: includes/admin/admin-internal-post-type.php:322 -msgid "post type" -msgstr "post type" - -#: includes/admin/admin-internal-post-type.php:346 -msgid "Done" -msgstr "Done" - -#: includes/admin/admin-internal-post-type.php:332 -msgid "Field Group(s)" -msgstr "" - -#: includes/admin/admin-internal-post-type.php:331 -msgid "Select one or many field groups..." -msgstr "Select one or many field groups..." - -#: includes/admin/admin-internal-post-type.php:330 -msgid "Please select the field groups to link." -msgstr "Please select the field groups to link." - -#: includes/admin/admin-internal-post-type.php:288 -msgid "Field group linked successfully." -msgid_plural "Field groups linked successfully." -msgstr[0] "Field group linked successfully." -msgstr[1] "Field groups linked successfully." - -#: includes/admin/admin-internal-post-type-list.php:261 -#: includes/admin/post-types/admin-post-types.php:371 -#: includes/admin/post-types/admin-taxonomies.php:378 -msgctxt "post status" -msgid "Registration Failed" -msgstr "Registration Failed" - -#: includes/admin/admin-internal-post-type-list.php:260 -msgid "" -"This item could not be registered because its key is in use by another item " -"registered by another plugin or theme." -msgstr "" -"This item could not be registered because its key is in use by another item " -"registered by another plugin or theme." - -#: includes/acf-internal-post-type-functions.php:482 -#: includes/acf-internal-post-type-functions.php:511 -msgid "REST API" -msgstr "REST API" - -#: includes/acf-internal-post-type-functions.php:481 -#: includes/acf-internal-post-type-functions.php:510 -#: includes/acf-internal-post-type-functions.php:537 -msgid "Permissions" -msgstr "Permissions" - -#: includes/acf-internal-post-type-functions.php:480 -#: includes/acf-internal-post-type-functions.php:509 -msgid "URLs" -msgstr "URLs" - -#: includes/acf-internal-post-type-functions.php:479 -#: includes/acf-internal-post-type-functions.php:508 -#: includes/acf-internal-post-type-functions.php:535 -msgid "Visibility" -msgstr "Visibility" - -#: includes/acf-internal-post-type-functions.php:478 -#: includes/acf-internal-post-type-functions.php:507 -#: includes/acf-internal-post-type-functions.php:536 -msgid "Labels" -msgstr "Labels" - -#: includes/admin/post-types/admin-field-group.php:269 -msgid "Field Settings Tabs" -msgstr "Field Settings Tabs" - -#. Author URI of the plugin -msgid "" -"https://wpengine.com/?utm_source=wordpress." -"org&utm_medium=referral&utm_campaign=plugin_directory&utm_content=advanced_custom_fields" -msgstr "" -"https://wpengine.com/?utm_source=wordpress." -"org&utm_medium=referral&utm_campaign=plugin_directory&utm_content=advanced_custom_fields" - -#: includes/api/api-template.php:867 -msgid "[ACF shortcode value disabled for preview]" -msgstr "[ACF shortcode value disabled for preview]" - -#: includes/admin/admin-internal-post-type.php:298 -#: includes/admin/post-types/admin-field-group.php:571 -msgid "Close Modal" -msgstr "Close Modal" - -#: includes/admin/post-types/admin-field-group.php:96 -#: assets/build/js/acf-field-group.js:1670 -#: assets/build/js/acf-field-group.js:1993 -msgid "Field moved to other group" -msgstr "Field moved to other group" - -#: includes/admin/post-types/admin-field-group.php:95 -#: assets/build/js/acf.js:1437 assets/build/js/acf.js:1517 -msgid "Close modal" -msgstr "Close modal" - -#: includes/fields/class-acf-field-tab.php:125 -msgid "Start a new group of tabs at this tab." -msgstr "Start a new group of tabs at this tab." - -#: includes/fields/class-acf-field-tab.php:124 -msgid "New Tab Group" -msgstr "New Tab Group" - -#: includes/fields/class-acf-field-select.php:451 -#: includes/fields/class-acf-field-true_false.php:200 -msgid "Use a stylized checkbox using select2" -msgstr "Use a stylised checkbox using select2" - -#: includes/fields/class-acf-field-radio.php:260 -msgid "Save Other Choice" -msgstr "Save Other Choice" - -#: includes/fields/class-acf-field-radio.php:249 -msgid "Allow Other Choice" -msgstr "Allow Other Choice" - -#: includes/fields/class-acf-field-checkbox.php:450 -msgid "Add Toggle All" -msgstr "Add Toggle All" - -#: includes/fields/class-acf-field-checkbox.php:409 -msgid "Save Custom Values" -msgstr "Save Custom Values" - -#: includes/fields/class-acf-field-checkbox.php:398 -msgid "Allow Custom Values" -msgstr "Allow Custom Values" - -#: includes/fields/class-acf-field-checkbox.php:148 -msgid "Checkbox custom values cannot be empty. Uncheck any empty values." -msgstr "Checkbox custom values cannot be empty. Uncheck any empty values." - -#: includes/admin/views/global/navigation.php:248 -msgid "Updates" -msgstr "Updates" - -#: includes/admin/views/global/navigation.php:176 -msgid "Advanced Custom Fields logo" -msgstr "Advanced Custom Fields logo" - -#: includes/admin/views/global/form-top.php:89 -msgid "Save Changes" -msgstr "Save Changes" - -#: includes/admin/views/global/form-top.php:76 -msgid "Field Group Title" -msgstr "Field Group Title" - -#: includes/admin/views/acf-post-type/advanced-settings.php:704 -#: includes/admin/views/global/form-top.php:3 -msgid "Add title" -msgstr "Add title" - -#. translators: %s url to getting started guide -#: includes/admin/views/acf-field-group/list-empty.php:20 -#: includes/admin/views/acf-post-type/list-empty.php:12 -#: includes/admin/views/acf-taxonomy/list-empty.php:12 -#: includes/admin/views/options-page-preview.php:13 -msgid "" -"New to ACF? Take a look at our getting " -"started guide." -msgstr "" -"New to ACF? Take a look at our getting " -"started guide." - -#: includes/admin/views/acf-field-group/list-empty.php:15 -msgid "Add Field Group" -msgstr "Add Field Group" - -#. translators: %s url to creating a field group page -#: includes/admin/views/acf-field-group/list-empty.php:10 -msgid "" -"ACF uses field groups to group custom " -"fields together, and then attach those fields to edit screens." -msgstr "" -"ACF uses field groups to group custom " -"fields together, and then attach those fields to edit screens." - -#: includes/admin/views/acf-field-group/list-empty.php:5 -msgid "Add Your First Field Group" -msgstr "Add Your First Field Group" - -#: includes/admin/admin-options-pages-preview.php:28 -#: includes/admin/views/acf-field-group/pro-features.php:54 -#: includes/admin/views/global/navigation.php:86 -#: includes/admin/views/global/navigation.php:250 -msgid "Options Pages" -msgstr "Options Pages" - -#: includes/admin/views/acf-field-group/pro-features.php:50 -msgid "ACF Blocks" -msgstr "ACF Blocks" - -#: includes/admin/views/acf-field-group/pro-features.php:58 -msgid "Gallery Field" -msgstr "Gallery Field" - -#: includes/admin/views/acf-field-group/pro-features.php:38 -msgid "Flexible Content Field" -msgstr "Flexible Content Field" - -#: includes/admin/views/acf-field-group/pro-features.php:42 -msgid "Repeater Field" -msgstr "Repeater Field" - -#: includes/admin/views/global/navigation.php:212 -msgid "Unlock Extra Features with ACF PRO" -msgstr "Unlock Extra Features with ACF PRO" - -#: includes/admin/views/acf-field-group/options.php:267 -msgid "Delete Field Group" -msgstr "Delete Field Group" - -#. translators: 1: Post creation date 2: Post creation time -#: includes/admin/views/acf-field-group/options.php:261 -msgid "Created on %1$s at %2$s" -msgstr "Created on %1$s at %2$s" - -#: includes/acf-field-group-functions.php:497 -msgid "Group Settings" -msgstr "Group Settings" - -#: includes/acf-field-group-functions.php:495 -msgid "Location Rules" -msgstr "Location Rules" - -#. translators: %s url to field types list -#: includes/admin/views/acf-field-group/fields.php:72 -msgid "" -"Choose from over 30 field types. Learn " -"more." -msgstr "" -"Choose from over 30 field types. Learn " -"more." - -#: includes/admin/views/acf-field-group/fields.php:65 -msgid "" -"Get started creating new custom fields for your posts, pages, custom post " -"types and other WordPress content." -msgstr "" -"Get started creating new custom fields for your posts, pages, custom post " -"types and other WordPress content." - -#: includes/admin/views/acf-field-group/fields.php:64 -msgid "Add Your First Field" -msgstr "Add Your First Field" - -#. translators: A symbol (or text, if not available in your locale) meaning -#. "Order Number", in terms of positional placement. -#: includes/admin/views/acf-field-group/fields.php:43 -msgid "#" -msgstr "#" - -#: includes/admin/views/acf-field-group/fields.php:33 -#: includes/admin/views/acf-field-group/fields.php:67 -#: includes/admin/views/acf-field-group/fields.php:103 -#: includes/admin/views/global/form-top.php:85 -msgid "Add Field" -msgstr "Add Field" - -#: includes/acf-field-group-functions.php:496 includes/fields.php:410 -msgid "Presentation" -msgstr "Presentation" - -#: includes/fields.php:409 -msgid "Validation" -msgstr "Validation" - -#: includes/acf-internal-post-type-functions.php:477 -#: includes/acf-internal-post-type-functions.php:506 includes/fields.php:408 -msgid "General" -msgstr "General" - -#: includes/admin/tools/class-acf-admin-tool-import.php:70 -msgid "Import JSON" -msgstr "Import JSON" - -#: includes/admin/tools/class-acf-admin-tool-export.php:392 -msgid "Export As JSON" -msgstr "Export As JSON" - -#. translators: %s number of field groups deactivated -#: includes/admin/post-types/admin-field-groups.php:367 -msgid "Field group deactivated." -msgid_plural "%s field groups deactivated." -msgstr[0] "Field group deactivated." -msgstr[1] "%s field groups deactivated." - -#. translators: %s number of field groups activated -#: includes/admin/post-types/admin-field-groups.php:360 -msgid "Field group activated." -msgid_plural "%s field groups activated." -msgstr[0] "Field group activated." -msgstr[1] "%s field groups activated." - -#: includes/admin/admin-internal-post-type-list.php:452 -#: includes/admin/admin-internal-post-type-list.php:478 -msgid "Deactivate" -msgstr "Deactivate" - -#: includes/admin/admin-internal-post-type-list.php:452 -msgid "Deactivate this item" -msgstr "Deactivate this item" - -#: includes/admin/admin-internal-post-type-list.php:448 -#: includes/admin/admin-internal-post-type-list.php:477 -msgid "Activate" -msgstr "Activate" - -#: includes/admin/admin-internal-post-type-list.php:448 -msgid "Activate this item" -msgstr "Activate this item" - -#: includes/admin/post-types/admin-field-group.php:92 -#: assets/build/js/acf-field-group.js:2812 -#: assets/build/js/acf-field-group.js:3313 -msgid "Move field group to trash?" -msgstr "Move field group to trash?" - -#: acf.php:497 includes/admin/admin-internal-post-type-list.php:248 -#: includes/admin/post-types/admin-field-group.php:297 -#: includes/admin/post-types/admin-post-type.php:295 -#: includes/admin/post-types/admin-taxonomy.php:297 -msgctxt "post status" -msgid "Inactive" -msgstr "Inactive" - -#. Author of the plugin -msgid "WP Engine" -msgstr "WP Engine" - -#: acf.php:555 -msgid "" -"Advanced Custom Fields and Advanced Custom Fields PRO should not be active " -"at the same time. We've automatically deactivated Advanced Custom Fields PRO." -msgstr "" -"Advanced Custom Fields and Advanced Custom Fields PRO should not be active " -"at the same time. We've automatically deactivated Advanced Custom Fields PRO." - -#: acf.php:553 -msgid "" -"Advanced Custom Fields and Advanced Custom Fields PRO should not be active " -"at the same time. We've automatically deactivated Advanced Custom Fields." -msgstr "" -"Advanced Custom Fields and Advanced Custom Fields PRO should not be active " -"at the same time. We've automatically deactivated Advanced Custom Fields." - -#: includes/acf-value-functions.php:374 -msgid "" -"%1$s - We've detected one or more calls to retrieve ACF " -"field values before ACF has been initialized. This is not supported and can " -"result in malformed or missing data. Learn how to fix this." -msgstr "" -"%1$s - We've detected one or more calls to retrieve ACF " -"field values before ACF has been initialised. This is not supported and can " -"result in malformed or missing data. Learn how to fix this." - -#: includes/fields/class-acf-field-user.php:551 -msgid "%1$s must have a user with the %2$s role." -msgid_plural "%1$s must have a user with one of the following roles: %2$s" -msgstr[0] "%1$s must have a user with the %2$s role." -msgstr[1] "%1$s must have a user with one of the following roles: %2$s" - -#: includes/fields/class-acf-field-user.php:542 -msgid "%1$s must have a valid user ID." -msgstr "%1$s must have a valid user ID." - -#: includes/fields/class-acf-field-user.php:380 -msgid "Invalid request." -msgstr "Invalid request." - -#: includes/fields/class-acf-field-select.php:684 -msgid "%1$s is not one of %2$s" -msgstr "%1$s is not one of %2$s" - -#: includes/fields/class-acf-field-post_object.php:700 -msgid "%1$s must have term %2$s." -msgid_plural "%1$s must have one of the following terms: %2$s" -msgstr[0] "%1$s must have term %2$s." -msgstr[1] "%1$s must have one of the following terms: %2$s" - -#: includes/fields/class-acf-field-post_object.php:684 -msgid "%1$s must be of post type %2$s." -msgid_plural "%1$s must be of one of the following post types: %2$s" -msgstr[0] "%1$s must be of post type %2$s." -msgstr[1] "%1$s must be of one of the following post types: %2$s" - -#: includes/fields/class-acf-field-post_object.php:675 -msgid "%1$s must have a valid post ID." -msgstr "%1$s must have a valid post ID." - -#: includes/fields/class-acf-field-file.php:475 -msgid "%s requires a valid attachment ID." -msgstr "%s requires a valid attachment ID." - -#: includes/admin/views/acf-field-group/options.php:233 -msgid "Show in REST API" -msgstr "Show in REST API" - -#: includes/fields/class-acf-field-color_picker.php:168 -msgid "Enable Transparency" -msgstr "Enable Transparency" - -#: includes/fields/class-acf-field-color_picker.php:187 -msgid "RGBA Array" -msgstr "RGBA Array" - -#: includes/fields/class-acf-field-color_picker.php:98 -msgid "RGBA String" -msgstr "RGBA String" - -#: includes/fields/class-acf-field-color_picker.php:97 -#: includes/fields/class-acf-field-color_picker.php:186 -msgid "Hex String" -msgstr "Hex String" - -#: includes/admin/views/browse-fields-modal.php:65 -msgid "Upgrade to PRO" -msgstr "Upgrade to PRO" - -#: includes/admin/post-types/admin-field-group.php:297 -#: includes/admin/post-types/admin-post-type.php:295 -#: includes/admin/post-types/admin-taxonomy.php:297 -msgctxt "post status" -msgid "Active" -msgstr "Active" - -#: includes/fields/class-acf-field-email.php:181 -msgid "'%s' is not a valid email address" -msgstr "'%s' is not a valid email address" - -#: includes/fields/class-acf-field-color_picker.php:76 -msgid "Color value" -msgstr "Colour value" - -#: includes/fields/class-acf-field-color_picker.php:74 -msgid "Select default color" -msgstr "Select default colour" - -#: includes/fields/class-acf-field-color_picker.php:72 -msgid "Clear color" -msgstr "Clear colour" - -#: includes/acf-wp-functions.php:90 -msgid "Blocks" -msgstr "Blocks" - -#: includes/acf-wp-functions.php:86 -msgid "Options" -msgstr "Options" - -#: includes/acf-wp-functions.php:82 -msgid "Users" -msgstr "Users" - -#: includes/acf-wp-functions.php:78 -msgid "Menu items" -msgstr "Menu items" - -#: includes/acf-wp-functions.php:70 -msgid "Widgets" -msgstr "Widgets" - -#: includes/acf-wp-functions.php:62 -msgid "Attachments" -msgstr "Attachments" - -#: includes/acf-wp-functions.php:57 -#: includes/admin/post-types/admin-post-types.php:137 -#: includes/admin/post-types/admin-taxonomies.php:112 -#: includes/admin/tools/class-acf-admin-tool-import.php:93 -#: includes/admin/views/acf-post-type/basic-settings.php:86 -#: includes/post-types/class-acf-taxonomy.php:90 -#: includes/post-types/class-acf-taxonomy.php:91 -msgid "Taxonomies" -msgstr "Taxonomies" - -#: includes/acf-wp-functions.php:44 -#: includes/admin/post-types/admin-post-type.php:126 -#: includes/admin/post-types/admin-post-types.php:139 -#: includes/admin/views/acf-post-type/advanced-settings.php:106 -#: assets/build/js/acf-internal-post-type.js:173 -#: assets/build/js/acf-internal-post-type.js:247 -msgid "Posts" -msgstr "Posts" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:76 -msgid "Last updated: %s" -msgstr "Last updated: %s" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:70 -msgid "Sorry, this post is unavailable for diff comparison." -msgstr "Sorry, this post is unavailable for diff comparison." - -#: includes/ajax/class-acf-ajax-local-json-diff.php:42 -msgid "Invalid field group parameter(s)." -msgstr "Invalid field group parameter(s)." - -#: includes/admin/admin-internal-post-type-list.php:413 -msgid "Awaiting save" -msgstr "Awaiting save" - -#: includes/admin/admin-internal-post-type-list.php:410 -msgid "Saved" -msgstr "Saved" - -#: includes/admin/admin-internal-post-type-list.php:406 -#: includes/admin/tools/class-acf-admin-tool-import.php:49 -msgid "Import" -msgstr "Import" - -#: includes/admin/admin-internal-post-type-list.php:402 -msgid "Review changes" -msgstr "Review changes" - -#: includes/admin/admin-internal-post-type-list.php:378 -msgid "Located in: %s" -msgstr "Located in: %s" - -#: includes/admin/admin-internal-post-type-list.php:375 -msgid "Located in plugin: %s" -msgstr "Located in plugin: %s" - -#: includes/admin/admin-internal-post-type-list.php:372 -msgid "Located in theme: %s" -msgstr "Located in theme: %s" - -#: includes/admin/post-types/admin-field-groups.php:261 -msgid "Various" -msgstr "Various" - -#: includes/admin/admin-internal-post-type-list.php:216 -#: includes/admin/admin-internal-post-type-list.php:485 -msgid "Sync changes" -msgstr "Sync changes" - -#: includes/admin/admin-internal-post-type-list.php:215 -msgid "Loading diff" -msgstr "Loading diff" - -#: includes/admin/admin-internal-post-type-list.php:214 -msgid "Review local JSON changes" -msgstr "Review local JSON changes" - -#: includes/admin/admin.php:170 -msgid "Visit website" -msgstr "Visit website" - -#: includes/admin/admin.php:169 -msgid "View details" -msgstr "View details" - -#: includes/admin/admin.php:168 -msgid "Version %s" -msgstr "Version %s" - -#: includes/admin/admin.php:167 -msgid "Information" -msgstr "Information" - -#: includes/admin/admin.php:158 -msgid "" -"Help Desk. The support professionals on " -"our Help Desk will assist with your more in depth, technical challenges." -msgstr "" -"Help Desk. The support professionals on " -"our Help Desk will assist with your more in depth, technical challenges." - -#: includes/admin/admin.php:154 -msgid "" -"Discussions. We have an active and " -"friendly community on our Community Forums who may be able to help you " -"figure out the 'how-tos' of the ACF world." -msgstr "" -"Discussions. We have an active and " -"friendly community on our Community Forums who may be able to help you " -"figure out the 'how-tos' of the ACF world." - -#: includes/admin/admin.php:150 -msgid "" -"Documentation. Our extensive " -"documentation contains references and guides for most situations you may " -"encounter." -msgstr "" -"Documentation. Our extensive " -"documentation contains references and guides for most situations you may " -"encounter." - -#: includes/admin/admin.php:147 -msgid "" -"We are fanatical about support, and want you to get the best out of your " -"website with ACF. If you run into any difficulties, there are several places " -"you can find help:" -msgstr "" -"We are fanatical about support, and want you to get the best out of your " -"website with ACF. If you run into any difficulties, there are several places " -"you can find help:" - -#: includes/admin/admin.php:144 includes/admin/admin.php:146 -msgid "Help & Support" -msgstr "Help & Support" - -#: includes/admin/admin.php:135 -msgid "" -"Please use the Help & Support tab to get in touch should you find yourself " -"requiring assistance." -msgstr "" -"Please use the Help & Support tab to get in touch should you find yourself " -"requiring assistance." - -#: includes/admin/admin.php:132 -msgid "" -"Before creating your first Field Group, we recommend first reading our Getting started guide to familiarize " -"yourself with the plugin's philosophy and best practises." -msgstr "" -"Before creating your first Field Group, we recommend first reading our Getting started guide to familiarise " -"yourself with the plugin's philosophy and best practises." - -#: includes/admin/admin.php:130 -msgid "" -"The Advanced Custom Fields plugin provides a visual form builder to " -"customize WordPress edit screens with extra fields, and an intuitive API to " -"display custom field values in any theme template file." -msgstr "" -"The Advanced Custom Fields plugin provides a visual form builder to " -"customise WordPress edit screens with extra fields, and an intuitive API to " -"display custom field values in any theme template file." - -#: includes/admin/admin.php:127 includes/admin/admin.php:129 -msgid "Overview" -msgstr "Overview" - -#: includes/locations.php:36 -msgid "Location type \"%s\" is already registered." -msgstr "Location type \"%s\" is already registered." - -#: includes/locations.php:25 -msgid "Class \"%s\" does not exist." -msgstr "Class \"%s\" does not exist." - -#: includes/ajax/class-acf-ajax.php:157 -msgid "Invalid nonce." -msgstr "Invalid nonce." - -#: includes/fields/class-acf-field-user.php:375 -msgid "Error loading field." -msgstr "Error loading field." - -#: assets/build/js/acf-input.js:2750 assets/build/js/acf-input.js:2819 -#: assets/build/js/acf-input.js:2926 assets/build/js/acf-input.js:3000 -msgid "Location not found: %s" -msgstr "Location not found: %s" - -#: includes/forms/form-user.php:353 -msgid "Error: %s" -msgstr "Error: %s" - -#: includes/locations/class-acf-location-widget.php:22 -msgid "Widget" -msgstr "Widget" - -#: includes/locations/class-acf-location-user-role.php:24 -msgid "User Role" -msgstr "User Role" - -#: includes/locations/class-acf-location-comment.php:22 -msgid "Comment" -msgstr "Comment" - -#: includes/locations/class-acf-location-post-format.php:22 -msgid "Post Format" -msgstr "Post Format" - -#: includes/locations/class-acf-location-nav-menu-item.php:22 -msgid "Menu Item" -msgstr "Menu Item" - -#: includes/locations/class-acf-location-post-status.php:22 -msgid "Post Status" -msgstr "Post Status" - -#: includes/acf-wp-functions.php:74 -#: includes/locations/class-acf-location-nav-menu.php:89 -msgid "Menus" -msgstr "Menus" - -#: includes/locations/class-acf-location-nav-menu.php:80 -msgid "Menu Locations" -msgstr "Menu Locations" - -#: includes/locations/class-acf-location-nav-menu.php:22 -msgid "Menu" -msgstr "Menu" - -#: includes/locations/class-acf-location-post-taxonomy.php:22 -msgid "Post Taxonomy" -msgstr "Post Taxonomy" - -#: includes/locations/class-acf-location-page-type.php:114 -msgid "Child Page (has parent)" -msgstr "Child Page (has parent)" - -#: includes/locations/class-acf-location-page-type.php:113 -msgid "Parent Page (has children)" -msgstr "Parent Page (has children)" - -#: includes/locations/class-acf-location-page-type.php:112 -msgid "Top Level Page (no parent)" -msgstr "Top Level Page (no parent)" - -#: includes/locations/class-acf-location-page-type.php:111 -msgid "Posts Page" -msgstr "Posts Page" - -#: includes/locations/class-acf-location-page-type.php:110 -msgid "Front Page" -msgstr "Front Page" - -#: includes/locations/class-acf-location-page-type.php:22 -msgid "Page Type" -msgstr "Page Type" - -#: includes/locations/class-acf-location-current-user.php:73 -msgid "Viewing back end" -msgstr "Viewing back end" - -#: includes/locations/class-acf-location-current-user.php:72 -msgid "Viewing front end" -msgstr "Viewing front end" - -#: includes/locations/class-acf-location-current-user.php:71 -msgid "Logged in" -msgstr "Logged in" - -#: includes/locations/class-acf-location-current-user.php:22 -msgid "Current User" -msgstr "Current User" - -#: includes/locations/class-acf-location-page-template.php:22 -msgid "Page Template" -msgstr "Page Template" - -#: includes/locations/class-acf-location-user-form.php:74 -msgid "Register" -msgstr "Register" - -#: includes/locations/class-acf-location-user-form.php:73 -msgid "Add / Edit" -msgstr "Add / Edit" - -#: includes/locations/class-acf-location-user-form.php:22 -msgid "User Form" -msgstr "User Form" - -#: includes/locations/class-acf-location-page-parent.php:22 -msgid "Page Parent" -msgstr "Page Parent" - -#: includes/locations/class-acf-location-current-user-role.php:77 -msgid "Super Admin" -msgstr "Super Admin" - -#: includes/locations/class-acf-location-current-user-role.php:22 -msgid "Current User Role" -msgstr "Current User Role" - -#: includes/locations/class-acf-location-page-template.php:73 -#: includes/locations/class-acf-location-post-template.php:85 -msgid "Default Template" -msgstr "Default Template" - -#: includes/locations/class-acf-location-post-template.php:22 -msgid "Post Template" -msgstr "Post Template" - -#: includes/locations/class-acf-location-post-category.php:22 -msgid "Post Category" -msgstr "Post Category" - -#: includes/locations/class-acf-location-attachment.php:84 -msgid "All %s formats" -msgstr "All %s formats" - -#: includes/locations/class-acf-location-attachment.php:22 -msgid "Attachment" -msgstr "Attachment" - -#: includes/validation.php:366 -msgid "%s value is required" -msgstr "%s value is required" - -#: includes/admin/views/acf-field-group/conditional-logic.php:59 -msgid "Show this field if" -msgstr "Show this field if" - -#: includes/admin/views/acf-field-group/conditional-logic.php:26 -#: includes/admin/views/acf-field-group/field.php:109 includes/fields.php:411 -msgid "Conditional Logic" -msgstr "Conditional Logic" - -#: includes/admin/views/acf-field-group/conditional-logic.php:156 -#: includes/admin/views/acf-field-group/location-rule.php:92 -msgid "and" -msgstr "and" - -#: includes/admin/post-types/admin-field-groups.php:123 -#: includes/admin/post-types/admin-post-types.php:143 -#: includes/admin/post-types/admin-taxonomies.php:143 -msgid "Local JSON" -msgstr "Local JSON" - -#: includes/admin/views/acf-field-group/pro-features.php:46 -msgid "Clone Field" -msgstr "Clone Field" - -#: includes/admin/views/upgrade/notice.php:30 -msgid "" -"Please also check all premium add-ons (%s) are updated to the latest version." -msgstr "" -"Please also check all premium add-ons (%s) are updated to the latest version." - -#: includes/admin/views/upgrade/notice.php:28 -msgid "" -"This version contains improvements to your database and requires an upgrade." -msgstr "" -"This version contains improvements to your database and requires an upgrade." - -#: includes/admin/views/upgrade/notice.php:28 -msgid "Thank you for updating to %1$s v%2$s!" -msgstr "Thank you for updating to %1$s v%2$s!" - -#: includes/admin/views/upgrade/notice.php:27 -msgid "Database Upgrade Required" -msgstr "Database Upgrade Required" - -#: includes/admin/post-types/admin-field-group.php:141 -#: includes/admin/views/upgrade/notice.php:18 -msgid "Options Page" -msgstr "Options Page" - -#: includes/admin/views/upgrade/notice.php:15 includes/fields.php:462 -msgid "Gallery" -msgstr "Gallery" - -#: includes/admin/views/upgrade/notice.php:12 includes/fields.php:452 -msgid "Flexible Content" -msgstr "Flexible Content" - -#: includes/admin/views/upgrade/notice.php:9 includes/fields.php:472 -msgid "Repeater" -msgstr "Repeater" - -#: includes/admin/views/tools/tools.php:24 -msgid "Back to all tools" -msgstr "Back to all tools" - -#: includes/admin/views/acf-field-group/options.php:195 -msgid "" -"If multiple field groups appear on an edit screen, the first field group's " -"options will be used (the one with the lowest order number)" -msgstr "" -"If multiple field groups appear on an edit screen, the first field group's " -"options will be used (the one with the lowest order number)" - -#: includes/admin/views/acf-field-group/options.php:195 -msgid "Select items to hide them from the edit screen." -msgstr "Select items to hide them from the edit screen." - -#: includes/admin/views/acf-field-group/options.php:194 -msgid "Hide on screen" -msgstr "Hide on screen" - -#: includes/admin/views/acf-field-group/options.php:186 -msgid "Send Trackbacks" -msgstr "Send Trackbacks" - -#: includes/admin/post-types/admin-taxonomy.php:128 -#: includes/admin/views/acf-field-group/options.php:185 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:159 -#: assets/build/js/acf-internal-post-type.js:180 -#: assets/build/js/acf-internal-post-type.js:254 -msgid "Tags" -msgstr "Tags" - -#: includes/admin/post-types/admin-taxonomy.php:130 -#: includes/admin/views/acf-field-group/options.php:184 -#: assets/build/js/acf-internal-post-type.js:183 -#: assets/build/js/acf-internal-post-type.js:257 -msgid "Categories" -msgstr "Categories" - -#: includes/admin/views/acf-field-group/options.php:182 -#: includes/admin/views/acf-post-type/advanced-settings.php:28 -msgid "Page Attributes" -msgstr "Page Attributes" - -#: includes/admin/views/acf-field-group/options.php:181 -msgid "Format" -msgstr "Format" - -#: includes/admin/views/acf-field-group/options.php:180 -#: includes/admin/views/acf-post-type/advanced-settings.php:22 -msgid "Author" -msgstr "Author" - -#: includes/admin/views/acf-field-group/options.php:179 -msgid "Slug" -msgstr "Slug" - -#: includes/admin/views/acf-field-group/options.php:178 -#: includes/admin/views/acf-post-type/advanced-settings.php:27 -msgid "Revisions" -msgstr "Revisions" - -#: includes/acf-wp-functions.php:66 -#: includes/admin/views/acf-field-group/options.php:177 -#: includes/admin/views/acf-post-type/advanced-settings.php:23 -msgid "Comments" -msgstr "Comments" - -#: includes/admin/views/acf-field-group/options.php:176 -msgid "Discussion" -msgstr "Discussion" - -#: includes/admin/views/acf-field-group/options.php:174 -#: includes/admin/views/acf-post-type/advanced-settings.php:26 -msgid "Excerpt" -msgstr "Excerpt" - -#: includes/admin/views/acf-field-group/options.php:173 -msgid "Content Editor" -msgstr "Content Editor" - -#: includes/admin/views/acf-field-group/options.php:172 -msgid "Permalink" -msgstr "Permalink" - -#: includes/admin/views/acf-field-group/options.php:250 -msgid "Shown in field group list" -msgstr "Shown in field group list" - -#: includes/admin/views/acf-field-group/options.php:157 -msgid "Field groups with a lower order will appear first" -msgstr "Field groups with a lower order will appear first" - -#: includes/admin/views/acf-field-group/options.php:156 -msgid "Order No." -msgstr "Order No." - -#: includes/admin/views/acf-field-group/options.php:147 -msgid "Below fields" -msgstr "Below fields" - -#: includes/admin/views/acf-field-group/options.php:146 -msgid "Below labels" -msgstr "Below labels" - -#: includes/admin/views/acf-field-group/options.php:139 -msgid "Instruction Placement" -msgstr "Instruction Placement" - -#: includes/admin/views/acf-field-group/options.php:122 -msgid "Label Placement" -msgstr "Label Placement" - -#: includes/admin/views/acf-field-group/options.php:110 -msgid "Side" -msgstr "Side" - -#: includes/admin/views/acf-field-group/options.php:109 -msgid "Normal (after content)" -msgstr "Normal (after content)" - -#: includes/admin/views/acf-field-group/options.php:108 -msgid "High (after title)" -msgstr "High (after title)" - -#: includes/admin/views/acf-field-group/options.php:101 -msgid "Position" -msgstr "Position" - -#: includes/admin/views/acf-field-group/options.php:92 -msgid "Seamless (no metabox)" -msgstr "Seamless (no metabox)" - -#: includes/admin/views/acf-field-group/options.php:91 -msgid "Standard (WP metabox)" -msgstr "Standard (WP metabox)" - -#: includes/admin/views/acf-field-group/options.php:84 -msgid "Style" -msgstr "Style" - -#: includes/admin/views/acf-field-group/fields.php:55 -msgid "Type" -msgstr "Type" - -#: includes/admin/post-types/admin-field-groups.php:117 -#: includes/admin/post-types/admin-post-types.php:136 -#: includes/admin/post-types/admin-taxonomies.php:136 -#: includes/admin/views/acf-field-group/fields.php:54 -msgid "Key" -msgstr "Key" - -#. translators: Hidden accessibility text for the positional order number of -#. the field. -#: includes/admin/views/acf-field-group/fields.php:48 -msgid "Order" -msgstr "Order" - -#: includes/admin/views/acf-field-group/field.php:322 -msgid "Close Field" -msgstr "Close Field" - -#: includes/admin/views/acf-field-group/field.php:253 -msgid "id" -msgstr "id" - -#: includes/admin/views/acf-field-group/field.php:237 -msgid "class" -msgstr "class" - -#: includes/admin/views/acf-field-group/field.php:279 -msgid "width" -msgstr "width" - -#: includes/admin/views/acf-field-group/field.php:273 -msgid "Wrapper Attributes" -msgstr "Wrapper Attributes" - -#: includes/admin/views/acf-field-group/field.php:196 -msgid "Required" -msgstr "Required" - -#: includes/admin/views/acf-field-group/field.php:221 -msgid "Instructions for authors. Shown when submitting data" -msgstr "Instructions for authors. Shown when submitting data" - -#: includes/admin/views/acf-field-group/field.php:220 -msgid "Instructions" -msgstr "Instructions" - -#: includes/admin/views/acf-field-group/field.php:129 -msgid "Field Type" -msgstr "Field Type" - -#: includes/admin/views/acf-field-group/field.php:170 -msgid "Single word, no spaces. Underscores and dashes allowed" -msgstr "Single word, no spaces. Underscores and dashes allowed" - -#: includes/admin/views/acf-field-group/field.php:169 -msgid "Field Name" -msgstr "Field Name" - -#: includes/admin/views/acf-field-group/field.php:157 -msgid "This is the name which will appear on the EDIT page" -msgstr "This is the name which will appear on the EDIT page" - -#: includes/admin/views/acf-field-group/field.php:156 -#: includes/admin/views/browse-fields-modal.php:59 -msgid "Field Label" -msgstr "Field Label" - -#: includes/admin/views/acf-field-group/field.php:81 -msgid "Delete" -msgstr "Delete" - -#: includes/admin/views/acf-field-group/field.php:81 -msgid "Delete field" -msgstr "Delete field" - -#: includes/admin/views/acf-field-group/field.php:79 -msgid "Move" -msgstr "Move" - -#: includes/admin/views/acf-field-group/field.php:79 -msgid "Move field to another group" -msgstr "Move field to another group" - -#: includes/admin/views/acf-field-group/field.php:77 -msgid "Duplicate field" -msgstr "Duplicate field" - -#: includes/admin/views/acf-field-group/field.php:73 -#: includes/admin/views/acf-field-group/field.php:76 -msgid "Edit field" -msgstr "Edit field" - -#: includes/admin/views/acf-field-group/field.php:69 -msgid "Drag to reorder" -msgstr "Drag to reorder" - -#: includes/admin/post-types/admin-field-group.php:103 -#: includes/admin/views/acf-field-group/location-group.php:3 -#: assets/build/js/acf-field-group.js:2347 -#: assets/build/js/acf-field-group.js:2763 -msgid "Show this field group if" -msgstr "Show this field group if" - -#: includes/admin/views/upgrade/upgrade.php:94 -#: includes/ajax/class-acf-ajax-upgrade.php:34 -msgid "No updates available." -msgstr "No updates available." - -#: includes/admin/views/upgrade/upgrade.php:33 -msgid "Database upgrade complete. See what's new" -msgstr "Database upgrade complete. See what's new" - -#: includes/admin/views/upgrade/upgrade.php:30 -msgid "Reading upgrade tasks..." -msgstr "Reading upgrade tasks..." - -#: includes/admin/views/upgrade/network.php:165 -#: includes/admin/views/upgrade/upgrade.php:65 -msgid "Upgrade failed." -msgstr "Upgrade failed." - -#: includes/admin/views/upgrade/network.php:162 -msgid "Upgrade complete." -msgstr "Upgrade complete." - -#: includes/admin/views/upgrade/network.php:148 -#: includes/admin/views/upgrade/upgrade.php:31 -msgid "Upgrading data to version %s" -msgstr "Upgrading data to version %s" - -#: includes/admin/views/upgrade/network.php:121 -#: includes/admin/views/upgrade/notice.php:44 -msgid "" -"It is strongly recommended that you backup your database before proceeding. " -"Are you sure you wish to run the updater now?" -msgstr "" -"It is strongly recommended that you backup your database before proceeding. " -"Are you sure you wish to run the updater now?" - -#: includes/admin/views/upgrade/network.php:117 -msgid "Please select at least one site to upgrade." -msgstr "Please select at least one site to upgrade." - -#: includes/admin/views/upgrade/network.php:97 -msgid "" -"Database Upgrade complete. Return to network dashboard" -msgstr "" -"Database Upgrade complete. Return to network dashboard" - -#: includes/admin/views/upgrade/network.php:80 -msgid "Site is up to date" -msgstr "Site is up to date" - -#: includes/admin/views/upgrade/network.php:78 -msgid "Site requires database upgrade from %1$s to %2$s" -msgstr "Site requires database upgrade from %1$s to %2$s" - -#: includes/admin/views/upgrade/network.php:36 -#: includes/admin/views/upgrade/network.php:47 -msgid "Site" -msgstr "Site" - -#: includes/admin/views/upgrade/network.php:26 -#: includes/admin/views/upgrade/network.php:27 -#: includes/admin/views/upgrade/network.php:96 -msgid "Upgrade Sites" -msgstr "Upgrade Sites" - -#: includes/admin/views/upgrade/network.php:26 -msgid "" -"The following sites require a DB upgrade. Check the ones you want to update " -"and then click %s." -msgstr "" -"The following sites require a DB upgrade. Check the ones you want to update " -"and then click %s." - -#: includes/admin/views/acf-field-group/conditional-logic.php:171 -#: includes/admin/views/acf-field-group/locations.php:38 -msgid "Add rule group" -msgstr "Add rule group" - -#: includes/admin/views/acf-field-group/locations.php:10 -msgid "" -"Create a set of rules to determine which edit screens will use these " -"advanced custom fields" -msgstr "" -"Create a set of rules to determine which edit screens will use these " -"advanced custom fields" - -#: includes/admin/views/acf-field-group/locations.php:9 -msgid "Rules" -msgstr "Rules" - -#: includes/admin/tools/class-acf-admin-tool-export.php:510 -msgid "Copied" -msgstr "Copied" - -#: includes/admin/tools/class-acf-admin-tool-export.php:486 -msgid "Copy to clipboard" -msgstr "Copy to clipboard" - -#: includes/admin/tools/class-acf-admin-tool-export.php:385 -msgid "" -"Select the items you would like to export and then select your export " -"method. Export As JSON to export to a .json file which you can then import " -"to another ACF installation. Generate PHP to export to PHP code which you " -"can place in your theme." -msgstr "" -"Select the items you would like to export and then select your export " -"method. Export As JSON to export to a .json file which you can then import " -"to another ACF installation. Generate PHP to export to PHP code which you " -"can place in your theme." - -#: includes/admin/tools/class-acf-admin-tool-export.php:233 -msgid "Select Field Groups" -msgstr "Select Field Groups" - -#: includes/admin/tools/class-acf-admin-tool-export.php:96 -#: includes/admin/tools/class-acf-admin-tool-export.php:131 -msgid "No field groups selected" -msgstr "No field groups selected" - -#: includes/admin/tools/class-acf-admin-tool-export.php:39 -#: includes/admin/tools/class-acf-admin-tool-export.php:393 -#: includes/admin/tools/class-acf-admin-tool-export.php:421 -msgid "Generate PHP" -msgstr "Generate PHP" - -#: includes/admin/tools/class-acf-admin-tool-export.php:35 -msgid "Export Field Groups" -msgstr "Export Field Groups" - -#: includes/admin/tools/class-acf-admin-tool-import.php:177 -msgid "Import file empty" -msgstr "Import file empty" - -#: includes/admin/tools/class-acf-admin-tool-import.php:168 -msgid "Incorrect file type" -msgstr "Incorrect file type" - -#: includes/admin/tools/class-acf-admin-tool-import.php:163 -msgid "Error uploading file. Please try again" -msgstr "Error uploading file. Please try again" - -#: includes/admin/tools/class-acf-admin-tool-import.php:50 -msgid "" -"Select the Advanced Custom Fields JSON file you would like to import. When " -"you click the import button below, ACF will import the items in that file." -msgstr "" -"Select the Advanced Custom Fields JSON file you would like to import. When " -"you click the import button below, ACF will import the items in that file." - -#: includes/admin/tools/class-acf-admin-tool-import.php:27 -msgid "Import Field Groups" -msgstr "Import Field Groups" - -#: includes/admin/admin-internal-post-type-list.php:401 -msgid "Sync" -msgstr "Sync" - -#: includes/admin/admin-internal-post-type-list.php:858 -msgid "Select %s" -msgstr "Select %s" - -#: includes/admin/admin-internal-post-type-list.php:442 -#: includes/admin/admin-internal-post-type-list.php:474 -#: includes/admin/views/acf-field-group/field.php:77 -msgid "Duplicate" -msgstr "Duplicate" - -#: includes/admin/admin-internal-post-type-list.php:442 -msgid "Duplicate this item" -msgstr "Duplicate this item" - -#: includes/admin/views/acf-post-type/advanced-settings.php:41 -msgid "Supports" -msgstr "Supports" - -#: includes/admin/admin.php:261 includes/admin/views/browse-fields-modal.php:92 -msgid "Documentation" -msgstr "Documentation" - -#: includes/admin/post-types/admin-field-groups.php:116 -#: includes/admin/post-types/admin-post-types.php:135 -#: includes/admin/post-types/admin-taxonomies.php:135 -#: includes/admin/views/acf-field-group/options.php:249 -#: includes/admin/views/acf-post-type/advanced-settings.php:62 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:114 -#: includes/admin/views/upgrade/network.php:38 -#: includes/admin/views/upgrade/network.php:49 -msgid "Description" -msgstr "Description" - -#: includes/admin/admin-internal-post-type-list.php:398 -#: includes/admin/admin-internal-post-type-list.php:747 -msgid "Sync available" -msgstr "Sync available" - -#. translators: %s number of field groups synchronized -#: includes/admin/post-types/admin-field-groups.php:381 -msgid "Field group synchronized." -msgid_plural "%s field groups synchronized." -msgstr[0] "Field group synchronised." -msgstr[1] "%s field groups synchronised." - -#. translators: %s number of field groups duplicated -#: includes/admin/post-types/admin-field-groups.php:374 -msgid "Field group duplicated." -msgid_plural "%s field groups duplicated." -msgstr[0] "Field group duplicated." -msgstr[1] "%s field groups duplicated." - -#: includes/admin/admin-internal-post-type-list.php:137 -msgid "Active (%s)" -msgid_plural "Active (%s)" -msgstr[0] "Active (%s)" -msgstr[1] "Active (%s)" - -#: includes/admin/admin-upgrade.php:254 -msgid "Review sites & upgrade" -msgstr "Review sites & upgrade" - -#: includes/admin/admin-upgrade.php:59 includes/admin/admin-upgrade.php:93 -#: includes/admin/admin-upgrade.php:94 includes/admin/admin-upgrade.php:230 -#: includes/admin/views/upgrade/network.php:24 -#: includes/admin/views/upgrade/upgrade.php:26 -msgid "Upgrade Database" -msgstr "Upgrade Database" - -#: includes/admin/views/acf-field-group/options.php:175 -#: includes/admin/views/acf-post-type/advanced-settings.php:30 -msgid "Custom Fields" -msgstr "Custom Fields" - -#: includes/admin/post-types/admin-field-group.php:616 -msgid "Move Field" -msgstr "Move Field" - -#: includes/admin/post-types/admin-field-group.php:605 -#: includes/admin/post-types/admin-field-group.php:609 -msgid "Please select the destination for this field" -msgstr "Please select the destination for this field" - -#. translators: Confirmation message once a field has been moved to a different -#. field group. -#: includes/admin/post-types/admin-field-group.php:567 -msgid "The %1$s field can now be found in the %2$s field group" -msgstr "The %1$s field can now be found in the %2$s field group" - -#: includes/admin/post-types/admin-field-group.php:564 -msgid "Move Complete." -msgstr "Move Complete." - -#: includes/admin/views/acf-field-group/field.php:39 -#: includes/admin/views/acf-field-group/options.php:217 -#: includes/admin/views/acf-post-type/advanced-settings.php:78 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:130 -msgid "Active" -msgstr "Active" - -#: includes/admin/post-types/admin-field-group.php:266 -msgid "Field Keys" -msgstr "Field Keys" - -#: includes/admin/post-types/admin-field-group.php:164 -#: includes/admin/tools/class-acf-admin-tool-export.php:342 -msgid "Settings" -msgstr "Settings" - -#: includes/admin/post-types/admin-field-groups.php:118 -msgid "Location" -msgstr "Location" - -#: includes/admin/post-types/admin-field-group.php:104 -#: assets/build/js/acf-input.js:983 assets/build/js/acf-input.js:1075 -msgid "Null" -msgstr "Null" - -#: includes/admin/post-types/admin-field-group.php:101 -#: includes/class-acf-internal-post-type.php:730 -#: includes/post-types/class-acf-field-group.php:345 -#: assets/build/js/acf-field-group.js:1510 -#: assets/build/js/acf-field-group.js:1821 -msgid "copy" -msgstr "copy" - -#: includes/admin/post-types/admin-field-group.php:100 -#: assets/build/js/acf-field-group.js:623 -#: assets/build/js/acf-field-group.js:778 -msgid "(this field)" -msgstr "(this field)" - -#: includes/admin/post-types/admin-field-group.php:98 -#: assets/build/js/acf-input.js:918 assets/build/js/acf-input.js:943 -#: assets/build/js/acf-input.js:1002 assets/build/js/acf-input.js:1030 -msgid "Checked" -msgstr "Checked" - -#: includes/admin/post-types/admin-field-group.php:94 -#: assets/build/js/acf-field-group.js:1615 -#: assets/build/js/acf-field-group.js:1933 -msgid "Move Custom Field" -msgstr "Move Custom Field" - -#: includes/admin/post-types/admin-field-group.php:93 -#: assets/build/js/acf-field-group.js:649 -#: assets/build/js/acf-field-group.js:804 -msgid "No toggle fields available" -msgstr "No toggle fields available" - -#: includes/admin/post-types/admin-field-group.php:91 -msgid "Field group title is required" -msgstr "Field group title is required" - -#: includes/admin/post-types/admin-field-group.php:90 -#: assets/build/js/acf-field-group.js:1604 -#: assets/build/js/acf-field-group.js:1919 -msgid "This field cannot be moved until its changes have been saved" -msgstr "This field cannot be moved until its changes have been saved" - -#: includes/admin/post-types/admin-field-group.php:89 -#: assets/build/js/acf-field-group.js:1414 -#: assets/build/js/acf-field-group.js:1716 -msgid "The string \"field_\" may not be used at the start of a field name" -msgstr "The string \"field_\" may not be used at the start of a field name" - -#: includes/admin/post-types/admin-field-group.php:71 -msgid "Field group draft updated." -msgstr "Field group draft updated." - -#: includes/admin/post-types/admin-field-group.php:70 -msgid "Field group scheduled for." -msgstr "Field group scheduled for." - -#: includes/admin/post-types/admin-field-group.php:69 -msgid "Field group submitted." -msgstr "Field group submitted." - -#: includes/admin/post-types/admin-field-group.php:68 -msgid "Field group saved." -msgstr "Field group saved." - -#: includes/admin/post-types/admin-field-group.php:67 -msgid "Field group published." -msgstr "Field group published." - -#: includes/admin/post-types/admin-field-group.php:64 -msgid "Field group deleted." -msgstr "Field group deleted." - -#: includes/admin/post-types/admin-field-group.php:62 -#: includes/admin/post-types/admin-field-group.php:63 -#: includes/admin/post-types/admin-field-group.php:65 -msgid "Field group updated." -msgstr "Field group updated." - -#: includes/admin/admin-tools.php:118 -#: includes/admin/views/global/navigation.php:246 -#: includes/admin/views/tools/tools.php:21 -msgid "Tools" -msgstr "Tools" - -#: includes/locations/abstract-acf-location.php:106 -msgid "is not equal to" -msgstr "is not equal to" - -#: includes/locations/abstract-acf-location.php:105 -msgid "is equal to" -msgstr "is equal to" - -#: includes/locations.php:102 -msgid "Forms" -msgstr "Forms" - -#: includes/admin/post-types/admin-post-type.php:127 includes/locations.php:100 -#: includes/locations/class-acf-location-page.php:22 -#: assets/build/js/acf-internal-post-type.js:175 -#: assets/build/js/acf-internal-post-type.js:249 -msgid "Page" -msgstr "Page" - -#: includes/admin/post-types/admin-post-type.php:125 includes/locations.php:99 -#: includes/locations/class-acf-location-post.php:22 -#: assets/build/js/acf-internal-post-type.js:172 -#: assets/build/js/acf-internal-post-type.js:246 -msgid "Post" -msgstr "Post" - -#: includes/fields.php:354 -msgid "Relational" -msgstr "Relational" - -#: includes/fields.php:353 -msgid "Choice" -msgstr "Choice" - -#: includes/fields.php:351 -msgid "Basic" -msgstr "Basic" - -#: includes/fields.php:320 -msgid "Unknown" -msgstr "Unknown" - -#: includes/fields.php:320 -msgid "Field type does not exist" -msgstr "Field type does not exist" - -#: includes/forms/form-front.php:236 -msgid "Spam Detected" -msgstr "Spam Detected" - -#: includes/forms/form-front.php:107 -msgid "Post updated" -msgstr "Post updated" - -#: includes/forms/form-front.php:106 -msgid "Update" -msgstr "Update" - -#: includes/forms/form-front.php:57 -msgid "Validate Email" -msgstr "Validate Email" - -#: includes/fields.php:352 includes/forms/form-front.php:49 -msgid "Content" -msgstr "Content" - -#: includes/admin/views/acf-post-type/advanced-settings.php:21 -#: includes/forms/form-front.php:40 -msgid "Title" -msgstr "Title" - -#: includes/assets.php:372 includes/forms/form-comment.php:160 -#: assets/build/js/acf-input.js:7382 assets/build/js/acf-input.js:7968 -msgid "Edit field group" -msgstr "Edit field group" - -#: includes/admin/post-types/admin-field-group.php:117 -#: assets/build/js/acf-input.js:1125 assets/build/js/acf-input.js:1230 -msgid "Selection is less than" -msgstr "Selection is less than" - -#: includes/admin/post-types/admin-field-group.php:116 -#: assets/build/js/acf-input.js:1106 assets/build/js/acf-input.js:1202 -msgid "Selection is greater than" -msgstr "Selection is greater than" - -#: includes/admin/post-types/admin-field-group.php:115 -#: assets/build/js/acf-input.js:1075 assets/build/js/acf-input.js:1170 -msgid "Value is less than" -msgstr "Value is less than" - -#: includes/admin/post-types/admin-field-group.php:114 -#: assets/build/js/acf-input.js:1045 assets/build/js/acf-input.js:1139 -msgid "Value is greater than" -msgstr "Value is greater than" - -#: includes/admin/post-types/admin-field-group.php:113 -#: assets/build/js/acf-input.js:888 assets/build/js/acf-input.js:960 -msgid "Value contains" -msgstr "Value contains" - -#: includes/admin/post-types/admin-field-group.php:112 -#: assets/build/js/acf-input.js:862 assets/build/js/acf-input.js:926 -msgid "Value matches pattern" -msgstr "Value matches pattern" - -#: includes/admin/post-types/admin-field-group.php:111 -#: assets/build/js/acf-input.js:840 assets/build/js/acf-input.js:1023 -#: assets/build/js/acf-input.js:903 assets/build/js/acf-input.js:1116 -msgid "Value is not equal to" -msgstr "Value is not equal to" - -#: includes/admin/post-types/admin-field-group.php:110 -#: assets/build/js/acf-input.js:810 assets/build/js/acf-input.js:964 -#: assets/build/js/acf-input.js:864 assets/build/js/acf-input.js:1053 -msgid "Value is equal to" -msgstr "Value is equal to" - -#: includes/admin/post-types/admin-field-group.php:109 -#: assets/build/js/acf-input.js:788 assets/build/js/acf-input.js:841 -msgid "Has no value" -msgstr "Has no value" - -#: includes/admin/post-types/admin-field-group.php:108 -#: assets/build/js/acf-input.js:758 assets/build/js/acf-input.js:783 -msgid "Has any value" -msgstr "Has any value" - -#: includes/admin/admin-internal-post-type.php:345 -#: includes/admin/views/browse-fields-modal.php:62 includes/assets.php:353 -#: assets/build/js/acf.js:1564 assets/build/js/acf.js:1658 -msgid "Cancel" -msgstr "Cancel" - -#: includes/assets.php:349 assets/build/js/acf.js:1738 -#: assets/build/js/acf.js:1855 -msgid "Are you sure?" -msgstr "Are you sure?" - -#: includes/assets.php:369 assets/build/js/acf-input.js:9442 -#: assets/build/js/acf-input.js:10294 -msgid "%d fields require attention" -msgstr "%d fields require attention" - -#: includes/assets.php:368 assets/build/js/acf-input.js:9440 -#: assets/build/js/acf-input.js:10290 -msgid "1 field requires attention" -msgstr "1 field requires attention" - -#: includes/assets.php:367 includes/validation.php:288 -#: includes/validation.php:298 assets/build/js/acf-input.js:9435 -#: assets/build/js/acf-input.js:10285 -msgid "Validation failed" -msgstr "Validation failed" - -#: includes/assets.php:366 assets/build/js/acf-input.js:9603 -#: assets/build/js/acf-input.js:10473 -msgid "Validation successful" -msgstr "Validation successful" - -#: includes/media.php:54 assets/build/js/acf-input.js:7210 -#: assets/build/js/acf-input.js:7772 -msgid "Restricted" -msgstr "Restricted" - -#: includes/media.php:53 assets/build/js/acf-input.js:7025 -#: assets/build/js/acf-input.js:7536 -msgid "Collapse Details" -msgstr "Collapse Details" - -#: includes/media.php:52 assets/build/js/acf-input.js:7025 -#: assets/build/js/acf-input.js:7533 -msgid "Expand Details" -msgstr "Expand Details" - -#: includes/admin/views/acf-post-type/advanced-settings.php:465 -#: includes/media.php:51 assets/build/js/acf-input.js:6892 -#: assets/build/js/acf-input.js:7381 -msgid "Uploaded to this post" -msgstr "Uploaded to this post" - -#: includes/media.php:50 assets/build/js/acf-input.js:6931 -#: assets/build/js/acf-input.js:7420 -msgctxt "verb" -msgid "Update" -msgstr "Update" - -#: includes/media.php:49 -msgctxt "verb" -msgid "Edit" -msgstr "Edit" - -#: includes/assets.php:363 assets/build/js/acf-input.js:9212 -#: assets/build/js/acf-input.js:10056 -msgid "The changes you made will be lost if you navigate away from this page" -msgstr "The changes you made will be lost if you navigate away from this page" - -#: includes/api/api-helpers.php:3395 -msgid "File type must be %s." -msgstr "File type must be %s." - -#: includes/admin/post-types/admin-field-group.php:102 -#: includes/admin/views/acf-field-group/conditional-logic.php:59 -#: includes/admin/views/acf-field-group/conditional-logic.php:169 -#: includes/admin/views/acf-field-group/location-group.php:3 -#: includes/admin/views/acf-field-group/locations.php:36 -#: includes/api/api-helpers.php:3391 assets/build/js/acf-field-group.js:771 -#: assets/build/js/acf-field-group.js:2385 -#: assets/build/js/acf-field-group.js:933 -#: assets/build/js/acf-field-group.js:2807 -msgid "or" -msgstr "or" - -#: includes/api/api-helpers.php:3364 -msgid "File size must not exceed %s." -msgstr "File size must not exceed %s." - -#: includes/api/api-helpers.php:3359 -msgid "File size must be at least %s." -msgstr "File size must be at least %s." - -#: includes/api/api-helpers.php:3344 -msgid "Image height must not exceed %dpx." -msgstr "Image height must not exceed %dpx." - -#: includes/api/api-helpers.php:3339 -msgid "Image height must be at least %dpx." -msgstr "Image height must be at least %dpx." - -#: includes/api/api-helpers.php:3325 -msgid "Image width must not exceed %dpx." -msgstr "Image width must not exceed %dpx." - -#: includes/api/api-helpers.php:3320 -msgid "Image width must be at least %dpx." -msgstr "Image width must be at least %dpx." - -#: includes/api/api-helpers.php:1561 includes/api/api-term.php:147 -msgid "(no title)" -msgstr "(no title)" - -#: includes/api/api-helpers.php:853 -msgid "Full Size" -msgstr "Full Size" - -#: includes/api/api-helpers.php:812 -msgid "Large" -msgstr "Large" - -#: includes/api/api-helpers.php:811 -msgid "Medium" -msgstr "Medium" - -#: includes/api/api-helpers.php:810 -msgid "Thumbnail" -msgstr "Thumbnail" - -#: includes/acf-field-functions.php:854 -#: includes/admin/post-types/admin-field-group.php:99 -#: assets/build/js/acf-field-group.js:1077 -#: assets/build/js/acf-field-group.js:1260 -msgid "(no label)" -msgstr "(no label)" - -#: includes/fields/class-acf-field-textarea.php:145 -msgid "Sets the textarea height" -msgstr "Sets the textarea height" - -#: includes/fields/class-acf-field-textarea.php:144 -msgid "Rows" -msgstr "Rows" - -#: includes/fields/class-acf-field-textarea.php:25 -msgid "Text Area" -msgstr "Text Area" - -#: includes/fields/class-acf-field-checkbox.php:451 -msgid "Prepend an extra checkbox to toggle all choices" -msgstr "Prepend an extra checkbox to toggle all choices" - -#: includes/fields/class-acf-field-checkbox.php:413 -msgid "Save 'custom' values to the field's choices" -msgstr "Save 'custom' values to the field's choices" - -#: includes/fields/class-acf-field-checkbox.php:402 -msgid "Allow 'custom' values to be added" -msgstr "Allow 'custom' values to be added" - -#: includes/fields/class-acf-field-checkbox.php:38 -msgid "Add new choice" -msgstr "Add new choice" - -#: includes/fields/class-acf-field-checkbox.php:174 -msgid "Toggle All" -msgstr "Toggle All" - -#: includes/fields/class-acf-field-page_link.php:506 -msgid "Allow Archives URLs" -msgstr "Allow Archive URLs" - -#: includes/fields/class-acf-field-page_link.php:179 -msgid "Archives" -msgstr "Archives" - -#: includes/fields/class-acf-field-page_link.php:25 -msgid "Page Link" -msgstr "Page Link" - -#: includes/fields/class-acf-field-taxonomy.php:943 -#: includes/locations/class-acf-location-user-form.php:72 -msgid "Add" -msgstr "Add" - -#: includes/admin/views/acf-field-group/fields.php:53 -#: includes/fields/class-acf-field-taxonomy.php:908 -msgid "Name" -msgstr "Name" - -#: includes/fields/class-acf-field-taxonomy.php:892 -msgid "%s added" -msgstr "%s added" - -#: includes/fields/class-acf-field-taxonomy.php:856 -msgid "%s already exists" -msgstr "%s already exists" - -#: includes/fields/class-acf-field-taxonomy.php:844 -msgid "User unable to add new %s" -msgstr "User unable to add new %s" - -#: includes/fields/class-acf-field-taxonomy.php:742 -msgid "Term ID" -msgstr "Term ID" - -#: includes/fields/class-acf-field-taxonomy.php:741 -msgid "Term Object" -msgstr "Term Object" - -#: includes/fields/class-acf-field-taxonomy.php:726 -msgid "Load value from posts terms" -msgstr "Load value from posts terms" - -#: includes/fields/class-acf-field-taxonomy.php:725 -msgid "Load Terms" -msgstr "Load Terms" - -#: includes/fields/class-acf-field-taxonomy.php:715 -msgid "Connect selected terms to the post" -msgstr "Connect selected terms to the post" - -#: includes/fields/class-acf-field-taxonomy.php:714 -msgid "Save Terms" -msgstr "Save Terms" - -#: includes/fields/class-acf-field-taxonomy.php:704 -msgid "Allow new terms to be created whilst editing" -msgstr "Allow new terms to be created whilst editing" - -#: includes/fields/class-acf-field-taxonomy.php:703 -msgid "Create Terms" -msgstr "Create Terms" - -#: includes/fields/class-acf-field-taxonomy.php:762 -msgid "Radio Buttons" -msgstr "Radio Buttons" - -#: includes/fields/class-acf-field-taxonomy.php:761 -msgid "Single Value" -msgstr "Single Value" - -#: includes/fields/class-acf-field-taxonomy.php:759 -msgid "Multi Select" -msgstr "Multi Select" - -#: includes/fields/class-acf-field-checkbox.php:25 -#: includes/fields/class-acf-field-taxonomy.php:758 -msgid "Checkbox" -msgstr "Checkbox" - -#: includes/fields/class-acf-field-taxonomy.php:757 -msgid "Multiple Values" -msgstr "Multiple Values" - -#: includes/fields/class-acf-field-taxonomy.php:752 -msgid "Select the appearance of this field" -msgstr "Select the appearance of this field" - -#: includes/fields/class-acf-field-taxonomy.php:751 -msgid "Appearance" -msgstr "Appearance" - -#: includes/fields/class-acf-field-taxonomy.php:693 -msgid "Select the taxonomy to be displayed" -msgstr "Select the taxonomy to be displayed" - -#: includes/fields/class-acf-field-taxonomy.php:654 -msgctxt "No Terms" -msgid "No %s" -msgstr "No %s" - -#: includes/fields/class-acf-field-number.php:266 -msgid "Value must be equal to or lower than %d" -msgstr "Value must be equal to or lower than %d" - -#: includes/fields/class-acf-field-number.php:259 -msgid "Value must be equal to or higher than %d" -msgstr "Value must be equal to or higher than %d" - -#: includes/fields/class-acf-field-number.php:244 -msgid "Value must be a number" -msgstr "Value must be a number" - -#: includes/fields/class-acf-field-number.php:25 -msgid "Number" -msgstr "Number" - -#: includes/fields/class-acf-field-radio.php:264 -msgid "Save 'other' values to the field's choices" -msgstr "Save 'other' values to the field's choices" - -#: includes/fields/class-acf-field-radio.php:253 -msgid "Add 'other' choice to allow for custom values" -msgstr "Add 'other' choice to allow for custom values" - -#: includes/admin/views/global/navigation.php:196 -msgid "Other" -msgstr "Other" - -#: includes/fields/class-acf-field-radio.php:25 -msgid "Radio Button" -msgstr "Radio Button" - -#: includes/fields/class-acf-field-accordion.php:107 -msgid "" -"Define an endpoint for the previous accordion to stop. This accordion will " -"not be visible." -msgstr "" -"Define an endpoint for the previous accordion to stop. This accordion will " -"not be visible." - -#: includes/fields/class-acf-field-accordion.php:96 -msgid "Allow this accordion to open without closing others." -msgstr "Allow this accordion to open without closing others." - -#: includes/fields/class-acf-field-accordion.php:95 -msgid "Multi-Expand" -msgstr "Multi-Expand" - -#: includes/fields/class-acf-field-accordion.php:85 -msgid "Display this accordion as open on page load." -msgstr "Display this accordion as open on page load." - -#: includes/fields/class-acf-field-accordion.php:84 -msgid "Open" -msgstr "Open" - -#: includes/fields/class-acf-field-accordion.php:25 -msgid "Accordion" -msgstr "Accordion" - -#: includes/fields/class-acf-field-file.php:267 -#: includes/fields/class-acf-field-file.php:279 -msgid "Restrict which files can be uploaded" -msgstr "Restrict which files can be uploaded" - -#: includes/fields/class-acf-field-file.php:220 -msgid "File ID" -msgstr "File ID" - -#: includes/fields/class-acf-field-file.php:219 -msgid "File URL" -msgstr "File URL" - -#: includes/fields/class-acf-field-file.php:218 -msgid "File Array" -msgstr "File Array" - -#: includes/fields/class-acf-field-file.php:186 -msgid "Add File" -msgstr "Add File" - -#: includes/admin/tools/class-acf-admin-tool-import.php:156 -#: includes/fields/class-acf-field-file.php:186 -msgid "No file selected" -msgstr "No file selected" - -#: includes/fields/class-acf-field-file.php:150 -msgid "File name" -msgstr "File name" - -#: includes/fields/class-acf-field-file.php:63 -#: assets/build/js/acf-input.js:2474 assets/build/js/acf-input.js:2625 -msgid "Update File" -msgstr "Update File" - -#: includes/fields/class-acf-field-file.php:62 -#: assets/build/js/acf-input.js:2473 assets/build/js/acf-input.js:2624 -msgid "Edit File" -msgstr "Edit File" - -#: includes/admin/tools/class-acf-admin-tool-import.php:58 -#: includes/fields/class-acf-field-file.php:61 -#: assets/build/js/acf-input.js:2447 assets/build/js/acf-input.js:2597 -msgid "Select File" -msgstr "Select File" - -#: includes/fields/class-acf-field-file.php:25 -msgid "File" -msgstr "File" - -#: includes/fields/class-acf-field-password.php:25 -msgid "Password" -msgstr "Password" - -#: includes/fields/class-acf-field-select.php:392 -msgid "Specify the value returned" -msgstr "Specify the value returned" - -#: includes/fields/class-acf-field-select.php:461 -msgid "Use AJAX to lazy load choices?" -msgstr "Use AJAX to lazy load choices?" - -#: includes/fields/class-acf-field-checkbox.php:362 -#: includes/fields/class-acf-field-select.php:381 -msgid "Enter each default value on a new line" -msgstr "Enter each default value on a new line" - -#: includes/fields/class-acf-field-select.php:252 includes/media.php:48 -#: assets/build/js/acf-input.js:6790 assets/build/js/acf-input.js:7266 -msgctxt "verb" -msgid "Select" -msgstr "Select" - -#: includes/fields/class-acf-field-select.php:121 -msgctxt "Select2 JS load_fail" -msgid "Loading failed" -msgstr "Loading failed" - -#: includes/fields/class-acf-field-select.php:120 -msgctxt "Select2 JS searching" -msgid "Searching…" -msgstr "Searching…" - -#: includes/fields/class-acf-field-select.php:119 -msgctxt "Select2 JS load_more" -msgid "Loading more results…" -msgstr "Loading more results…" - -#: includes/fields/class-acf-field-select.php:118 -msgctxt "Select2 JS selection_too_long_n" -msgid "You can only select %d items" -msgstr "You can only select %d items" - -#: includes/fields/class-acf-field-select.php:117 -msgctxt "Select2 JS selection_too_long_1" -msgid "You can only select 1 item" -msgstr "You can only select 1 item" - -#: includes/fields/class-acf-field-select.php:116 -msgctxt "Select2 JS input_too_long_n" -msgid "Please delete %d characters" -msgstr "Please delete %d characters" - -#: includes/fields/class-acf-field-select.php:115 -msgctxt "Select2 JS input_too_long_1" -msgid "Please delete 1 character" -msgstr "Please delete 1 character" - -#: includes/fields/class-acf-field-select.php:114 -msgctxt "Select2 JS input_too_short_n" -msgid "Please enter %d or more characters" -msgstr "Please enter %d or more characters" - -#: includes/fields/class-acf-field-select.php:113 -msgctxt "Select2 JS input_too_short_1" -msgid "Please enter 1 or more characters" -msgstr "Please enter 1 or more characters" - -#: includes/fields/class-acf-field-select.php:112 -msgctxt "Select2 JS matches_0" -msgid "No matches found" -msgstr "No matches found" - -#: includes/fields/class-acf-field-select.php:111 -msgctxt "Select2 JS matches_n" -msgid "%d results are available, use up and down arrow keys to navigate." -msgstr "%d results are available, use up and down arrow keys to navigate." - -#: includes/fields/class-acf-field-select.php:110 -msgctxt "Select2 JS matches_1" -msgid "One result is available, press enter to select it." -msgstr "One result is available, press enter to select it." - -#: includes/fields/class-acf-field-select.php:25 -#: includes/fields/class-acf-field-taxonomy.php:763 -msgctxt "noun" -msgid "Select" -msgstr "Select" - -#: includes/fields/class-acf-field-user.php:73 -msgid "User ID" -msgstr "User ID" - -#: includes/fields/class-acf-field-user.php:72 -msgid "User Object" -msgstr "User Object" - -#: includes/fields/class-acf-field-user.php:71 -msgid "User Array" -msgstr "User Array" - -#: includes/fields/class-acf-field-user.php:59 -msgid "All user roles" -msgstr "All user roles" - -#: includes/fields/class-acf-field-user.php:51 -msgid "Filter by Role" -msgstr "Filter by Role" - -#: includes/fields/class-acf-field-user.php:15 includes/locations.php:101 -msgid "User" -msgstr "User" - -#: includes/fields/class-acf-field-separator.php:25 -msgid "Separator" -msgstr "Separator" - -#: includes/fields/class-acf-field-color_picker.php:75 -msgid "Select Color" -msgstr "Select Colour" - -#: includes/admin/post-types/admin-post-type.php:129 -#: includes/admin/post-types/admin-taxonomy.php:131 -#: includes/fields/class-acf-field-color_picker.php:73 -#: assets/build/js/acf-internal-post-type.js:72 -#: assets/build/js/acf-internal-post-type.js:86 -msgid "Default" -msgstr "Default" - -#: includes/admin/views/acf-post-type/advanced-settings.php:89 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:141 -#: includes/fields/class-acf-field-color_picker.php:71 -msgid "Clear" -msgstr "Clear" - -#: includes/fields/class-acf-field-color_picker.php:25 -msgid "Color Picker" -msgstr "Colour Picker" - -#: includes/fields/class-acf-field-date_time_picker.php:88 -msgctxt "Date Time Picker JS pmTextShort" -msgid "P" -msgstr "P" - -#: includes/fields/class-acf-field-date_time_picker.php:87 -msgctxt "Date Time Picker JS pmText" -msgid "PM" -msgstr "PM" - -#: includes/fields/class-acf-field-date_time_picker.php:84 -msgctxt "Date Time Picker JS amTextShort" -msgid "A" -msgstr "A" - -#: includes/fields/class-acf-field-date_time_picker.php:83 -msgctxt "Date Time Picker JS amText" -msgid "AM" -msgstr "AM" - -#: includes/fields/class-acf-field-date_time_picker.php:81 -msgctxt "Date Time Picker JS selectText" -msgid "Select" -msgstr "Select" - -#: includes/fields/class-acf-field-date_time_picker.php:80 -msgctxt "Date Time Picker JS closeText" -msgid "Done" -msgstr "Done" - -#: includes/fields/class-acf-field-date_time_picker.php:79 -msgctxt "Date Time Picker JS currentText" -msgid "Now" -msgstr "Now" - -#: includes/fields/class-acf-field-date_time_picker.php:78 -msgctxt "Date Time Picker JS timezoneText" -msgid "Time Zone" -msgstr "Time Zone" - -#: includes/fields/class-acf-field-date_time_picker.php:77 -msgctxt "Date Time Picker JS microsecText" -msgid "Microsecond" -msgstr "Microsecond" - -#: includes/fields/class-acf-field-date_time_picker.php:76 -msgctxt "Date Time Picker JS millisecText" -msgid "Millisecond" -msgstr "Millisecond" - -#: includes/fields/class-acf-field-date_time_picker.php:75 -msgctxt "Date Time Picker JS secondText" -msgid "Second" -msgstr "Second" - -#: includes/fields/class-acf-field-date_time_picker.php:74 -msgctxt "Date Time Picker JS minuteText" -msgid "Minute" -msgstr "Minute" - -#: includes/fields/class-acf-field-date_time_picker.php:73 -msgctxt "Date Time Picker JS hourText" -msgid "Hour" -msgstr "Hour" - -#: includes/fields/class-acf-field-date_time_picker.php:72 -msgctxt "Date Time Picker JS timeText" -msgid "Time" -msgstr "Time" - -#: includes/fields/class-acf-field-date_time_picker.php:71 -msgctxt "Date Time Picker JS timeOnlyTitle" -msgid "Choose Time" -msgstr "Choose Time" - -#: includes/fields/class-acf-field-date_time_picker.php:25 -msgid "Date Time Picker" -msgstr "Date Time Picker" - -#: includes/fields/class-acf-field-accordion.php:106 -msgid "Endpoint" -msgstr "Endpoint" - -#: includes/admin/views/acf-field-group/options.php:130 -#: includes/fields/class-acf-field-tab.php:115 -msgid "Left aligned" -msgstr "Left aligned" - -#: includes/admin/views/acf-field-group/options.php:129 -#: includes/fields/class-acf-field-tab.php:114 -msgid "Top aligned" -msgstr "Top aligned" - -#: includes/fields/class-acf-field-tab.php:110 -msgid "Placement" -msgstr "Placement" - -#: includes/fields/class-acf-field-tab.php:26 -msgid "Tab" -msgstr "Tab" - -#: includes/fields/class-acf-field-url.php:162 -msgid "Value must be a valid URL" -msgstr "Value must be a valid URL" - -#: includes/fields/class-acf-field-link.php:177 -msgid "Link URL" -msgstr "Link URL" - -#: includes/fields/class-acf-field-link.php:176 -msgid "Link Array" -msgstr "Link Array" - -#: includes/fields/class-acf-field-link.php:145 -msgid "Opens in a new window/tab" -msgstr "Opens in a new window/tab" - -#: includes/fields/class-acf-field-link.php:140 -msgid "Select Link" -msgstr "Select Link" - -#: includes/fields/class-acf-field-link.php:25 -msgid "Link" -msgstr "Link" - -#: includes/fields/class-acf-field-email.php:25 -msgid "Email" -msgstr "Email" - -#: includes/fields/class-acf-field-number.php:188 -#: includes/fields/class-acf-field-range.php:217 -msgid "Step Size" -msgstr "Step Size" - -#: includes/fields/class-acf-field-number.php:158 -#: includes/fields/class-acf-field-range.php:195 -msgid "Maximum Value" -msgstr "Maximum Value" - -#: includes/fields/class-acf-field-number.php:148 -#: includes/fields/class-acf-field-range.php:184 -msgid "Minimum Value" -msgstr "Minimum Value" - -#: includes/fields/class-acf-field-range.php:25 -msgid "Range" -msgstr "Range" - -#: includes/fields/class-acf-field-button-group.php:175 -#: includes/fields/class-acf-field-checkbox.php:379 -#: includes/fields/class-acf-field-radio.php:220 -#: includes/fields/class-acf-field-select.php:399 -msgid "Both (Array)" -msgstr "Both (Array)" - -#: includes/admin/views/acf-field-group/fields.php:52 -#: includes/fields/class-acf-field-button-group.php:174 -#: includes/fields/class-acf-field-checkbox.php:378 -#: includes/fields/class-acf-field-radio.php:219 -#: includes/fields/class-acf-field-select.php:398 -msgid "Label" -msgstr "Label" - -#: includes/fields/class-acf-field-button-group.php:173 -#: includes/fields/class-acf-field-checkbox.php:377 -#: includes/fields/class-acf-field-radio.php:218 -#: includes/fields/class-acf-field-select.php:397 -msgid "Value" -msgstr "Value" - -#: includes/fields/class-acf-field-button-group.php:222 -#: includes/fields/class-acf-field-checkbox.php:441 -#: includes/fields/class-acf-field-radio.php:292 -msgid "Vertical" -msgstr "Vertical" - -#: includes/fields/class-acf-field-button-group.php:221 -#: includes/fields/class-acf-field-checkbox.php:442 -#: includes/fields/class-acf-field-radio.php:293 -msgid "Horizontal" -msgstr "Horizontal" - -#: includes/fields/class-acf-field-button-group.php:148 -#: includes/fields/class-acf-field-checkbox.php:352 -#: includes/fields/class-acf-field-radio.php:193 -#: includes/fields/class-acf-field-select.php:370 -msgid "red : Red" -msgstr "red : Red" - -#: includes/fields/class-acf-field-button-group.php:148 -#: includes/fields/class-acf-field-checkbox.php:352 -#: includes/fields/class-acf-field-radio.php:193 -#: includes/fields/class-acf-field-select.php:370 -msgid "For more control, you may specify both a value and label like this:" -msgstr "For more control, you may specify both a value and label like this:" - -#: includes/fields/class-acf-field-button-group.php:148 -#: includes/fields/class-acf-field-checkbox.php:352 -#: includes/fields/class-acf-field-radio.php:193 -#: includes/fields/class-acf-field-select.php:370 -msgid "Enter each choice on a new line." -msgstr "Enter each choice on a new line." - -#: includes/fields/class-acf-field-button-group.php:147 -#: includes/fields/class-acf-field-checkbox.php:351 -#: includes/fields/class-acf-field-radio.php:192 -#: includes/fields/class-acf-field-select.php:369 -msgid "Choices" -msgstr "Choices" - -#: includes/fields/class-acf-field-button-group.php:24 -msgid "Button Group" -msgstr "Button Group" - -#: includes/fields/class-acf-field-button-group.php:194 -#: includes/fields/class-acf-field-page_link.php:538 -#: includes/fields/class-acf-field-post_object.php:448 -#: includes/fields/class-acf-field-radio.php:238 -#: includes/fields/class-acf-field-select.php:429 -#: includes/fields/class-acf-field-taxonomy.php:772 -#: includes/fields/class-acf-field-user.php:103 -msgid "Allow Null" -msgstr "Allow Null" - -#: includes/fields/class-acf-field-page_link.php:263 -#: includes/fields/class-acf-field-post_object.php:257 -#: includes/fields/class-acf-field-taxonomy.php:930 -msgid "Parent" -msgstr "Parent" - -#: includes/fields/class-acf-field-wysiwyg.php:390 -msgid "TinyMCE will not be initialized until field is clicked" -msgstr "TinyMCE will not be initialised until field is clicked" - -#: includes/fields/class-acf-field-wysiwyg.php:389 -msgid "Delay Initialization" -msgstr "Delay Initialisation" - -#: includes/fields/class-acf-field-wysiwyg.php:378 -msgid "Show Media Upload Buttons" -msgstr "Show Media Upload Buttons" - -#: includes/fields/class-acf-field-wysiwyg.php:362 -msgid "Toolbar" -msgstr "Toolbar" - -#: includes/fields/class-acf-field-wysiwyg.php:354 -msgid "Text Only" -msgstr "Text Only" - -#: includes/fields/class-acf-field-wysiwyg.php:353 -msgid "Visual Only" -msgstr "Visual Only" - -#: includes/fields/class-acf-field-wysiwyg.php:352 -msgid "Visual & Text" -msgstr "Visual and Text" - -#: includes/fields/class-acf-field-wysiwyg.php:347 -msgid "Tabs" -msgstr "Tabs" - -#: includes/fields/class-acf-field-wysiwyg.php:285 -msgid "Click to initialize TinyMCE" -msgstr "Click to initialise TinyMCE" - -#: includes/fields/class-acf-field-wysiwyg.php:279 -msgctxt "Name for the Text editor tab (formerly HTML)" -msgid "Text" -msgstr "Text" - -#: includes/fields/class-acf-field-wysiwyg.php:278 -msgid "Visual" -msgstr "Visual" - -#: includes/fields/class-acf-field-text.php:189 -#: includes/fields/class-acf-field-textarea.php:236 -msgid "Value must not exceed %d characters" -msgstr "Value must not exceed %d characters" - -#: includes/fields/class-acf-field-text.php:124 -#: includes/fields/class-acf-field-textarea.php:124 -msgid "Leave blank for no limit" -msgstr "Leave blank for no limit" - -#: includes/fields/class-acf-field-text.php:123 -#: includes/fields/class-acf-field-textarea.php:123 -msgid "Character Limit" -msgstr "Character Limit" - -#: includes/fields/class-acf-field-email.php:158 -#: includes/fields/class-acf-field-number.php:209 -#: includes/fields/class-acf-field-password.php:105 -#: includes/fields/class-acf-field-range.php:239 -#: includes/fields/class-acf-field-text.php:164 -msgid "Appears after the input" -msgstr "Appears after the input" - -#: includes/fields/class-acf-field-email.php:157 -#: includes/fields/class-acf-field-number.php:208 -#: includes/fields/class-acf-field-password.php:104 -#: includes/fields/class-acf-field-range.php:238 -#: includes/fields/class-acf-field-text.php:163 -msgid "Append" -msgstr "Append" - -#: includes/fields/class-acf-field-email.php:148 -#: includes/fields/class-acf-field-number.php:199 -#: includes/fields/class-acf-field-password.php:95 -#: includes/fields/class-acf-field-range.php:229 -#: includes/fields/class-acf-field-text.php:154 -msgid "Appears before the input" -msgstr "Appears before the input" - -#: includes/fields/class-acf-field-email.php:147 -#: includes/fields/class-acf-field-number.php:198 -#: includes/fields/class-acf-field-password.php:94 -#: includes/fields/class-acf-field-range.php:228 -#: includes/fields/class-acf-field-text.php:153 -msgid "Prepend" -msgstr "Prepend" - -#: includes/fields/class-acf-field-email.php:138 -#: includes/fields/class-acf-field-number.php:179 -#: includes/fields/class-acf-field-password.php:85 -#: includes/fields/class-acf-field-text.php:144 -#: includes/fields/class-acf-field-textarea.php:156 -#: includes/fields/class-acf-field-url.php:122 -msgid "Appears within the input" -msgstr "Appears within the input" - -#: includes/fields/class-acf-field-email.php:137 -#: includes/fields/class-acf-field-number.php:178 -#: includes/fields/class-acf-field-password.php:84 -#: includes/fields/class-acf-field-text.php:143 -#: includes/fields/class-acf-field-textarea.php:155 -#: includes/fields/class-acf-field-url.php:121 -msgid "Placeholder Text" -msgstr "Placeholder Text" - -#: includes/fields/class-acf-field-button-group.php:158 -#: includes/fields/class-acf-field-email.php:118 -#: includes/fields/class-acf-field-number.php:129 -#: includes/fields/class-acf-field-radio.php:203 -#: includes/fields/class-acf-field-range.php:165 -#: includes/fields/class-acf-field-text.php:104 -#: includes/fields/class-acf-field-textarea.php:104 -#: includes/fields/class-acf-field-url.php:102 -#: includes/fields/class-acf-field-wysiwyg.php:312 -msgid "Appears when creating a new post" -msgstr "Appears when creating a new post" - -#: includes/fields/class-acf-field-text.php:25 -msgid "Text" -msgstr "Text" - -#: includes/fields/class-acf-field-relationship.php:794 -msgid "%1$s requires at least %2$s selection" -msgid_plural "%1$s requires at least %2$s selections" -msgstr[0] "%1$s requires at least %2$s selection" -msgstr[1] "%1$s requires at least %2$s selections" - -#: includes/fields/class-acf-field-post_object.php:417 -#: includes/fields/class-acf-field-relationship.php:644 -msgid "Post ID" -msgstr "Post ID" - -#: includes/fields/class-acf-field-post_object.php:17 -#: includes/fields/class-acf-field-post_object.php:416 -#: includes/fields/class-acf-field-relationship.php:643 -msgid "Post Object" -msgstr "Post Object" - -#: includes/fields/class-acf-field-relationship.php:676 -msgid "Maximum Posts" -msgstr "Maximum Posts" - -#: includes/fields/class-acf-field-relationship.php:666 -msgid "Minimum Posts" -msgstr "Minimum Posts" - -#: includes/admin/views/acf-field-group/options.php:183 -#: includes/admin/views/acf-post-type/advanced-settings.php:29 -#: includes/fields/class-acf-field-relationship.php:701 -msgid "Featured Image" -msgstr "Featured Image" - -#: includes/fields/class-acf-field-relationship.php:697 -msgid "Selected elements will be displayed in each result" -msgstr "Selected elements will be displayed in each result" - -#: includes/fields/class-acf-field-relationship.php:696 -msgid "Elements" -msgstr "Elements" - -#: includes/fields/class-acf-field-relationship.php:630 -#: includes/fields/class-acf-field-taxonomy.php:20 -#: includes/fields/class-acf-field-taxonomy.php:692 -#: includes/locations/class-acf-location-taxonomy.php:22 -msgid "Taxonomy" -msgstr "Taxonomy" - -#: includes/fields/class-acf-field-relationship.php:629 -#: includes/locations/class-acf-location-post-type.php:22 -#: includes/post-types/class-acf-post-type.php:92 -msgid "Post Type" -msgstr "Post Type" - -#: includes/fields/class-acf-field-relationship.php:623 -msgid "Filters" -msgstr "Filters" - -#: includes/fields/class-acf-field-page_link.php:499 -#: includes/fields/class-acf-field-post_object.php:404 -#: includes/fields/class-acf-field-relationship.php:616 -msgid "All taxonomies" -msgstr "All taxonomies" - -#: includes/fields/class-acf-field-page_link.php:491 -#: includes/fields/class-acf-field-post_object.php:396 -#: includes/fields/class-acf-field-relationship.php:608 -msgid "Filter by Taxonomy" -msgstr "Filter by Taxonomy" - -#: includes/fields/class-acf-field-page_link.php:469 -#: includes/fields/class-acf-field-post_object.php:374 -#: includes/fields/class-acf-field-relationship.php:586 -msgid "All post types" -msgstr "All post types" - -#: includes/fields/class-acf-field-page_link.php:461 -#: includes/fields/class-acf-field-post_object.php:366 -#: includes/fields/class-acf-field-relationship.php:578 -msgid "Filter by Post Type" -msgstr "Filter by Post Type" - -#: includes/fields/class-acf-field-relationship.php:476 -msgid "Search..." -msgstr "Search..." - -#: includes/fields/class-acf-field-relationship.php:406 -msgid "Select taxonomy" -msgstr "Select taxonomy" - -#: includes/fields/class-acf-field-relationship.php:397 -msgid "Select post type" -msgstr "Select post type" - -#: includes/fields/class-acf-field-relationship.php:61 -#: assets/build/js/acf-input.js:3930 assets/build/js/acf-input.js:4214 -msgid "No matches found" -msgstr "No matches found" - -#: includes/fields/class-acf-field-relationship.php:60 -#: assets/build/js/acf-input.js:3913 assets/build/js/acf-input.js:4193 -msgid "Loading" -msgstr "Loading" - -#: includes/fields/class-acf-field-relationship.php:59 -#: assets/build/js/acf-input.js:3818 assets/build/js/acf-input.js:4084 -msgid "Maximum values reached ( {max} values )" -msgstr "Maximum values reached ( {max} values )" - -#: includes/fields/class-acf-field-relationship.php:17 -msgid "Relationship" -msgstr "Relationship" - -#: includes/fields/class-acf-field-file.php:291 -#: includes/fields/class-acf-field-image.php:317 -msgid "Comma separated list. Leave blank for all types" -msgstr "Comma separated list. Leave blank for all types" - -#: includes/fields/class-acf-field-file.php:290 -#: includes/fields/class-acf-field-image.php:316 -msgid "Allowed File Types" -msgstr "Allowed File Types" - -#: includes/fields/class-acf-field-file.php:278 -#: includes/fields/class-acf-field-image.php:280 -msgid "Maximum" -msgstr "Maximum" - -#: includes/fields/class-acf-field-file.php:154 -#: includes/fields/class-acf-field-file.php:270 -#: includes/fields/class-acf-field-file.php:282 -#: includes/fields/class-acf-field-image.php:271 -#: includes/fields/class-acf-field-image.php:307 -msgid "File size" -msgstr "File size" - -#: includes/fields/class-acf-field-image.php:245 -#: includes/fields/class-acf-field-image.php:281 -msgid "Restrict which images can be uploaded" -msgstr "Restrict which images can be uploaded" - -#: includes/fields/class-acf-field-file.php:266 -#: includes/fields/class-acf-field-image.php:244 -msgid "Minimum" -msgstr "Minimum" - -#: includes/fields/class-acf-field-file.php:235 -#: includes/fields/class-acf-field-image.php:210 -msgid "Uploaded to post" -msgstr "Uploaded to post" - -#: includes/fields/class-acf-field-file.php:234 -#: includes/fields/class-acf-field-image.php:209 -#: includes/locations/class-acf-location-attachment.php:73 -#: includes/locations/class-acf-location-comment.php:61 -#: includes/locations/class-acf-location-nav-menu.php:74 -#: includes/locations/class-acf-location-taxonomy.php:63 -#: includes/locations/class-acf-location-user-form.php:71 -#: includes/locations/class-acf-location-user-role.php:78 -#: includes/locations/class-acf-location-widget.php:65 -msgid "All" -msgstr "All" - -#: includes/fields/class-acf-field-file.php:229 -#: includes/fields/class-acf-field-image.php:204 -msgid "Limit the media library choice" -msgstr "Limit the media library choice" - -#: includes/fields/class-acf-field-file.php:228 -#: includes/fields/class-acf-field-image.php:203 -msgid "Library" -msgstr "Library" - -#: includes/fields/class-acf-field-image.php:336 -msgid "Preview Size" -msgstr "Preview Size" - -#: includes/fields/class-acf-field-image.php:195 -msgid "Image ID" -msgstr "Image ID" - -#: includes/fields/class-acf-field-image.php:194 -msgid "Image URL" -msgstr "Image URL" - -#: includes/fields/class-acf-field-image.php:193 -msgid "Image Array" -msgstr "Image Array" - -#: includes/fields/class-acf-field-button-group.php:168 -#: includes/fields/class-acf-field-checkbox.php:372 -#: includes/fields/class-acf-field-file.php:213 -#: includes/fields/class-acf-field-link.php:171 -#: includes/fields/class-acf-field-radio.php:213 -msgid "Specify the returned value on front end" -msgstr "Specify the returned value on front end" - -#: includes/fields/class-acf-field-button-group.php:167 -#: includes/fields/class-acf-field-checkbox.php:371 -#: includes/fields/class-acf-field-file.php:212 -#: includes/fields/class-acf-field-link.php:170 -#: includes/fields/class-acf-field-radio.php:212 -#: includes/fields/class-acf-field-taxonomy.php:736 -msgid "Return Value" -msgstr "Return Value" - -#: includes/fields/class-acf-field-image.php:162 -msgid "Add Image" -msgstr "Add Image" - -#: includes/fields/class-acf-field-image.php:162 -msgid "No image selected" -msgstr "No image selected" - -#: includes/assets.php:352 includes/fields/class-acf-field-file.php:162 -#: includes/fields/class-acf-field-image.php:142 -#: includes/fields/class-acf-field-link.php:145 assets/build/js/acf.js:1563 -#: assets/build/js/acf.js:1657 -msgid "Remove" -msgstr "Remove" - -#: includes/admin/views/acf-field-group/field.php:76 -#: includes/fields/class-acf-field-file.php:160 -#: includes/fields/class-acf-field-image.php:140 -#: includes/fields/class-acf-field-link.php:145 -msgid "Edit" -msgstr "Edit" - -#: includes/fields/class-acf-field-image.php:70 includes/media.php:55 -#: assets/build/js/acf-input.js:6837 assets/build/js/acf-input.js:7320 -msgid "All images" -msgstr "All images" - -#: includes/fields/class-acf-field-image.php:69 -#: assets/build/js/acf-input.js:3181 assets/build/js/acf-input.js:3399 -msgid "Update Image" -msgstr "Update Image" - -#: includes/fields/class-acf-field-image.php:68 -#: assets/build/js/acf-input.js:3180 assets/build/js/acf-input.js:3398 -msgid "Edit Image" -msgstr "Edit Image" - -#: includes/fields/class-acf-field-image.php:67 -#: assets/build/js/acf-input.js:3156 assets/build/js/acf-input.js:3373 -msgid "Select Image" -msgstr "Select Image" - -#: includes/fields/class-acf-field-image.php:25 -msgid "Image" -msgstr "Image" - -#: includes/fields/class-acf-field-message.php:125 -msgid "Allow HTML markup to display as visible text instead of rendering" -msgstr "Allow HTML markup to display as visible text instead of rendering" - -#: includes/fields/class-acf-field-message.php:124 -msgid "Escape HTML" -msgstr "Escape HTML" - -#: includes/fields/class-acf-field-message.php:116 -#: includes/fields/class-acf-field-textarea.php:172 -msgid "No Formatting" -msgstr "No Formatting" - -#: includes/fields/class-acf-field-message.php:115 -#: includes/fields/class-acf-field-textarea.php:171 -msgid "Automatically add <br>" -msgstr "Automatically add <br>" - -#: includes/fields/class-acf-field-message.php:114 -#: includes/fields/class-acf-field-textarea.php:170 -msgid "Automatically add paragraphs" -msgstr "Automatically add paragraphs" - -#: includes/fields/class-acf-field-message.php:110 -#: includes/fields/class-acf-field-textarea.php:166 -msgid "Controls how new lines are rendered" -msgstr "Controls how new lines are rendered" - -#: includes/fields/class-acf-field-message.php:109 -#: includes/fields/class-acf-field-textarea.php:165 -msgid "New Lines" -msgstr "New Lines" - -#: includes/fields/class-acf-field-date_picker.php:232 -#: includes/fields/class-acf-field-date_time_picker.php:220 -msgid "Week Starts On" -msgstr "Week Starts On" - -#: includes/fields/class-acf-field-date_picker.php:201 -msgid "The format used when saving a value" -msgstr "The format used when saving a value" - -#: includes/fields/class-acf-field-date_picker.php:200 -msgid "Save Format" -msgstr "Save Format" - -#: includes/fields/class-acf-field-date_picker.php:67 -msgctxt "Date Picker JS weekHeader" -msgid "Wk" -msgstr "Wk" - -#: includes/fields/class-acf-field-date_picker.php:66 -msgctxt "Date Picker JS prevText" -msgid "Prev" -msgstr "Prev" - -#: includes/fields/class-acf-field-date_picker.php:65 -msgctxt "Date Picker JS nextText" -msgid "Next" -msgstr "Next" - -#: includes/fields/class-acf-field-date_picker.php:64 -msgctxt "Date Picker JS currentText" -msgid "Today" -msgstr "Today" - -#: includes/fields/class-acf-field-date_picker.php:63 -msgctxt "Date Picker JS closeText" -msgid "Done" -msgstr "Done" - -#: includes/fields/class-acf-field-date_picker.php:25 -msgid "Date Picker" -msgstr "Date Picker" - -#: includes/fields/class-acf-field-image.php:248 -#: includes/fields/class-acf-field-image.php:284 -#: includes/fields/class-acf-field-oembed.php:268 -msgid "Width" -msgstr "Width" - -#: includes/fields/class-acf-field-oembed.php:265 -#: includes/fields/class-acf-field-oembed.php:277 -msgid "Embed Size" -msgstr "Embed Size" - -#: includes/fields/class-acf-field-oembed.php:222 -msgid "Enter URL" -msgstr "Enter URL" - -#: includes/fields/class-acf-field-oembed.php:25 -msgid "oEmbed" -msgstr "oEmbed" - -#: includes/fields/class-acf-field-true_false.php:184 -msgid "Text shown when inactive" -msgstr "Text shown when inactive" - -#: includes/fields/class-acf-field-true_false.php:183 -msgid "Off Text" -msgstr "Off Text" - -#: includes/fields/class-acf-field-true_false.php:168 -msgid "Text shown when active" -msgstr "Text shown when active" - -#: includes/fields/class-acf-field-true_false.php:167 -msgid "On Text" -msgstr "On Text" - -#: includes/fields/class-acf-field-select.php:450 -#: includes/fields/class-acf-field-true_false.php:199 -msgid "Stylized UI" -msgstr "Stylised UI" - -#: includes/fields/class-acf-field-button-group.php:157 -#: includes/fields/class-acf-field-checkbox.php:361 -#: includes/fields/class-acf-field-color_picker.php:156 -#: includes/fields/class-acf-field-email.php:117 -#: includes/fields/class-acf-field-number.php:128 -#: includes/fields/class-acf-field-radio.php:202 -#: includes/fields/class-acf-field-range.php:164 -#: includes/fields/class-acf-field-select.php:380 -#: includes/fields/class-acf-field-text.php:103 -#: includes/fields/class-acf-field-textarea.php:103 -#: includes/fields/class-acf-field-true_false.php:147 -#: includes/fields/class-acf-field-url.php:101 -#: includes/fields/class-acf-field-wysiwyg.php:311 -msgid "Default Value" -msgstr "Default Value" - -#: includes/fields/class-acf-field-true_false.php:138 -msgid "Displays text alongside the checkbox" -msgstr "Displays text alongside the checkbox" - -#: includes/fields/class-acf-field-message.php:26 -#: includes/fields/class-acf-field-message.php:99 -#: includes/fields/class-acf-field-true_false.php:137 -msgid "Message" -msgstr "Message" - -#: includes/assets.php:351 includes/fields/class-acf-field-true_false.php:86 -#: includes/fields/class-acf-field-true_false.php:187 -#: assets/build/js/acf.js:1740 assets/build/js/acf.js:1857 -msgid "No" -msgstr "No" - -#: includes/assets.php:350 includes/fields/class-acf-field-true_false.php:83 -#: includes/fields/class-acf-field-true_false.php:171 -#: assets/build/js/acf.js:1739 assets/build/js/acf.js:1856 -msgid "Yes" -msgstr "Yes" - -#: includes/fields/class-acf-field-true_false.php:25 -msgid "True / False" -msgstr "True / False" - -#: includes/fields/class-acf-field-group.php:474 -msgid "Row" -msgstr "Row" - -#: includes/fields/class-acf-field-group.php:473 -msgid "Table" -msgstr "Table" - -#: includes/admin/post-types/admin-field-group.php:140 -#: includes/fields/class-acf-field-group.php:472 -msgid "Block" -msgstr "Block" - -#: includes/fields/class-acf-field-group.php:467 -msgid "Specify the style used to render the selected fields" -msgstr "Specify the style used to render the selected fields" - -#: includes/fields.php:356 includes/fields/class-acf-field-button-group.php:215 -#: includes/fields/class-acf-field-checkbox.php:435 -#: includes/fields/class-acf-field-group.php:466 -#: includes/fields/class-acf-field-radio.php:286 -msgid "Layout" -msgstr "Layout" - -#: includes/fields/class-acf-field-group.php:450 -msgid "Sub Fields" -msgstr "Sub Fields" - -#: includes/fields/class-acf-field-group.php:25 -msgid "Group" -msgstr "Group" - -#: includes/fields/class-acf-field-google-map.php:235 -msgid "Customize the map height" -msgstr "Customise the map height" - -#: includes/fields/class-acf-field-google-map.php:234 -#: includes/fields/class-acf-field-image.php:259 -#: includes/fields/class-acf-field-image.php:295 -#: includes/fields/class-acf-field-oembed.php:280 -msgid "Height" -msgstr "Height" - -#: includes/fields/class-acf-field-google-map.php:223 -msgid "Set the initial zoom level" -msgstr "Set the initial zoom level" - -#: includes/fields/class-acf-field-google-map.php:222 -msgid "Zoom" -msgstr "Zoom" - -#: includes/fields/class-acf-field-google-map.php:196 -#: includes/fields/class-acf-field-google-map.php:209 -msgid "Center the initial map" -msgstr "Centre the initial map" - -#: includes/fields/class-acf-field-google-map.php:195 -#: includes/fields/class-acf-field-google-map.php:208 -msgid "Center" -msgstr "Centre" - -#: includes/fields/class-acf-field-google-map.php:163 -msgid "Search for address..." -msgstr "Search for address..." - -#: includes/fields/class-acf-field-google-map.php:160 -msgid "Find current location" -msgstr "Find current location" - -#: includes/fields/class-acf-field-google-map.php:159 -msgid "Clear location" -msgstr "Clear location" - -#: includes/fields/class-acf-field-google-map.php:158 -#: includes/fields/class-acf-field-relationship.php:628 -msgid "Search" -msgstr "Search" - -#: includes/fields/class-acf-field-google-map.php:63 -#: assets/build/js/acf-input.js:2840 assets/build/js/acf-input.js:3026 -msgid "Sorry, this browser does not support geolocation" -msgstr "Sorry, this browser does not support geolocation" - -#: includes/fields/class-acf-field-google-map.php:25 -msgid "Google Map" -msgstr "Google Map" - -#: includes/fields/class-acf-field-date_picker.php:212 -#: includes/fields/class-acf-field-date_time_picker.php:201 -#: includes/fields/class-acf-field-time_picker.php:132 -msgid "The format returned via template functions" -msgstr "The format returned via template functions" - -#: includes/fields/class-acf-field-color_picker.php:180 -#: includes/fields/class-acf-field-date_picker.php:211 -#: includes/fields/class-acf-field-date_time_picker.php:200 -#: includes/fields/class-acf-field-image.php:187 -#: includes/fields/class-acf-field-post_object.php:411 -#: includes/fields/class-acf-field-relationship.php:638 -#: includes/fields/class-acf-field-select.php:391 -#: includes/fields/class-acf-field-time_picker.php:131 -#: includes/fields/class-acf-field-user.php:66 -msgid "Return Format" -msgstr "Return Format" - -#: includes/fields/class-acf-field-date_picker.php:190 -#: includes/fields/class-acf-field-date_picker.php:221 -#: includes/fields/class-acf-field-date_time_picker.php:192 -#: includes/fields/class-acf-field-date_time_picker.php:210 -#: includes/fields/class-acf-field-time_picker.php:123 -#: includes/fields/class-acf-field-time_picker.php:139 -msgid "Custom:" -msgstr "Custom:" - -#: includes/fields/class-acf-field-date_picker.php:182 -#: includes/fields/class-acf-field-date_time_picker.php:183 -#: includes/fields/class-acf-field-time_picker.php:116 -msgid "The format displayed when editing a post" -msgstr "The format displayed when editing a post" - -#: includes/fields/class-acf-field-date_picker.php:181 -#: includes/fields/class-acf-field-date_time_picker.php:182 -#: includes/fields/class-acf-field-time_picker.php:115 -msgid "Display Format" -msgstr "Display Format" - -#: includes/fields/class-acf-field-time_picker.php:25 -msgid "Time Picker" -msgstr "Time Picker" - -#. translators: counts for inactive field groups -#: acf.php:503 -msgid "Inactive (%s)" -msgid_plural "Inactive (%s)" -msgstr[0] "Inactive (%s)" -msgstr[1] "Inactive (%s)" - -#: acf.php:462 -msgid "No Fields found in Trash" -msgstr "No Fields found in bin" - -#: acf.php:461 -msgid "No Fields found" -msgstr "No Fields found" - -#: acf.php:460 -msgid "Search Fields" -msgstr "Search Fields" - -#: acf.php:459 -msgid "View Field" -msgstr "View Field" - -#: acf.php:458 includes/admin/views/acf-field-group/fields.php:115 -msgid "New Field" -msgstr "New Field" - -#: acf.php:457 -msgid "Edit Field" -msgstr "Edit Field" - -#: acf.php:456 -msgid "Add New Field" -msgstr "Add New Field" - -#: acf.php:454 -msgid "Field" -msgstr "Field" - -#: acf.php:453 includes/admin/post-types/admin-field-group.php:163 -#: includes/admin/post-types/admin-field-groups.php:119 -#: includes/admin/views/acf-field-group/fields.php:32 -msgid "Fields" -msgstr "Fields" - -#: acf.php:428 -msgid "No Field Groups found in Trash" -msgstr "No Field Groups found in bin" - -#: acf.php:427 -msgid "No Field Groups found" -msgstr "No Field Groups found" - -#: acf.php:426 -msgid "Search Field Groups" -msgstr "Search Field Groups" - -#: acf.php:425 -msgid "View Field Group" -msgstr "View Field Group" - -#: acf.php:424 -msgid "New Field Group" -msgstr "New Field Group" - -#: acf.php:423 -msgid "Edit Field Group" -msgstr "Edit Field Group" - -#: acf.php:422 -msgid "Add New Field Group" -msgstr "Add New Field Group" - -#: acf.php:421 acf.php:455 -#: includes/admin/views/acf-post-type/advanced-settings.php:219 -#: includes/admin/views/acf-post-type/advanced-settings.php:221 -#: includes/post-types/class-acf-post-type.php:93 -#: includes/post-types/class-acf-taxonomy.php:92 -msgid "Add New" -msgstr "Add New" - -#: acf.php:420 -msgid "Field Group" -msgstr "Field Group" - -#: acf.php:419 includes/admin/post-types/admin-field-groups.php:78 -#: includes/admin/post-types/admin-post-types.php:138 -#: includes/admin/post-types/admin-taxonomies.php:138 -msgid "Field Groups" -msgstr "Field Groups" - -#. Description of the plugin -msgid "Customize WordPress with powerful, professional and intuitive fields." -msgstr "Customise WordPress with powerful, professional and intuitive fields." - -#. Plugin URI of the plugin -msgid "https://www.advancedcustomfields.com" -msgstr "https://www.advancedcustomfields.com" - -#. Plugin Name of the plugin -#: acf.php:94 -msgid "Advanced Custom Fields" -msgstr "Advanced Custom Fields" - -#: pro/acf-pro.php:27 -msgid "Advanced Custom Fields PRO" -msgstr "" - -#: pro/acf-pro.php:196 -msgid "" -"Your license has expired. Please renew to continue to have access to " -"updates, support & PRO features." -msgstr "" -"Your licence has expired. Please renew to continue to have access to " -"updates, support & PRO features." - -#: pro/acf-pro.php:193 -msgid "" -"Activate your license to enable access to updates, support & PRO " -"features." -msgstr "" -"Activate your licence to enable access to updates, support & PRO " -"features." - -#: pro/blocks.php:172 -msgid "Block type name is required." -msgstr "" - -#. translators: The name of the block type -#: pro/blocks.php:180 -msgid "Block type \"%s\" is already registered." -msgstr "" - -#: pro/blocks.php:726 -msgid "Switch to Edit" -msgstr "" - -#: pro/blocks.php:727 -msgid "Switch to Preview" -msgstr "" - -#: pro/blocks.php:728 -msgid "Change content alignment" -msgstr "" - -#. translators: %s: Block type title -#: pro/blocks.php:731 -msgid "%s settings" -msgstr "" - -#: pro/blocks.php:939 -msgid "This block contains no editable fields." -msgstr "" - -#. translators: %s: an admin URL to the field group edit screen -#: pro/blocks.php:945 -msgid "" -"Assign a field group to add fields to " -"this block." -msgstr "" - -#: pro/options-page.php:77, pro/post-types/acf-ui-options-page.php:173 -msgid "Options Updated" -msgstr "" - -#. translators: %1 A link to the updates page. %2 link to the pricing page -#: pro/updates.php:74 -msgid "" -"To enable updates, please enter your license key on the Updates page. If you don't have a license key, please see details & pricing." -msgstr "" -"To enable updates, please enter your licence key on the Updates page. If you don’t have a licence key, please see details & pricing." - -#: pro/updates.php:70 -msgid "" -"To enable updates, please enter your license key on the Updates page of the main site. If you don't have a license key, " -"please see details & pricing." -msgstr "" -"To enable updates, please enter your licence key on the Updates page of the main site. If you don’t have a licence " -"key, please see details & pricing." - -#: pro/updates.php:136 -msgid "" -"Your defined license key has changed, but an error occurred when " -"deactivating your old license" -msgstr "" -"Your defined licence key has changed, but an error occurred when " -"deactivating your old licence" - -#: pro/updates.php:133 -msgid "" -"Your defined license key has changed, but an error occurred when connecting " -"to activation server" -msgstr "" -"Your defined licence key has changed, but an error occurred when connecting " -"to activation server" - -#: pro/updates.php:177 -msgid "" -"ACF PRO — Your license key has been activated " -"successfully. Access to updates, support & PRO features is now enabled." -msgstr "" -"ACF PRO — Your licence key has been activated " -"successfully. Access to updates, support & PRO features is now enabled." - -#: pro/updates.php:168 -msgid "There was an issue activating your license key." -msgstr "There was an issue activating your licence key." - -#: pro/updates.php:164 -msgid "An error occurred when connecting to activation server" -msgstr "An error occurred when connecting to activation server" - -#: pro/updates.php:265 -msgid "" -"An internal error occurred when trying to check your license key. Please try " -"again later." -msgstr "" -"An internal error occurred when trying to check your licence key. Please try " -"again later." - -#: pro/updates.php:263 -msgid "" -"The ACF activation server is temporarily unavailable for scheduled " -"maintenance. Please try again later." -msgstr "" - -#: pro/updates.php:233 -msgid "You have reached the activation limit for the license." -msgstr "You have reached the activation limit for the licence." - -#: pro/updates.php:242, pro/updates.php:214 -msgid "View your licenses" -msgstr "View your licences" - -#: pro/updates.php:255 -msgid "check again" -msgstr "" - -#: pro/updates.php:259 -msgid "%1$s or %2$s." -msgstr "" - -#: pro/updates.php:219 -msgid "Your license key has expired and cannot be activated." -msgstr "Your licence key has expired and cannot be activated." - -#: pro/updates.php:228 -msgid "View your subscriptions" -msgstr "" - -#: pro/updates.php:205 -msgid "" -"License key not found. Make sure you have copied your license key exactly as " -"it appears in your receipt or your account." -msgstr "" -"Licence key not found. Make sure you have copied your licence key exactly as " -"it appears in your receipt or your account." - -#: pro/updates.php:203 -msgid "Your license key has been deactivated." -msgstr "Your licence key has been deactivated." - -#: pro/updates.php:201 -msgid "" -"Your license key has been activated successfully. Access to updates, support " -"& PRO features is now enabled." -msgstr "" -"Your licence key has been activated successfully. Access to updates, support " -"& PRO features is now enabled." - -#. translators: %s an untranslatable internal upstream error message -#: pro/updates.php:269 -msgid "An unknown error occurred while trying to validate your license: %s." -msgstr "An unknown error occurred while trying to validate your licence: %s." - -#: pro/updates.php:343 -msgid "ACF PRO — " -msgstr "" - -#: pro/updates.php:353 -msgid "Check again" -msgstr "" - -#: pro/updates.php:683 -msgid "Could not connect to the activation server" -msgstr "" - -#. translators: %s - URL to ACF updates page -#: pro/updates.php:727 -msgid "" -"Your license key is valid but not activated on this site. Please deactivate and then reactivate the license." -msgstr "" -"Your licence key is valid but not activated on this site. Please deactivate and then reactivate the licence." - -#: pro/updates.php:931 -msgid "" -"Your site URL has changed since last activating your license. We've " -"automatically activated it for this site URL." -msgstr "" -"Your site URL has changed since last activating your licence. We’ve " -"automatically activated it for this site URL." - -#: pro/updates.php:923 -msgid "" -"Your site URL has changed since last activating your license, but we weren't " -"able to automatically reactivate it: %s" -msgstr "" -"Your site URL has changed since last activating your licence, but we weren’t " -"able to automatically reactivate it: %s" - -#: pro/admin/admin-options-page.php:194 -msgid "Publish" -msgstr "" - -#: pro/admin/admin-options-page.php:197 -msgid "" -"No Custom Field Groups found for this options page. Create a " -"Custom Field Group" -msgstr "" - -#: pro/admin/admin-updates.php:52 -msgid "Error. Could not connect to the update server" -msgstr "" - -#. translators: %s the version of WordPress required for this ACF update -#: pro/admin/admin-updates.php:196 -msgid "" -"An update to ACF is available, but it is not compatible with your version of " -"WordPress. Please upgrade to WordPress %s or newer to update ACF." -msgstr "" - -#: pro/admin/admin-updates.php:217 -msgid "" -"Error. Could not authenticate update package. Please check " -"again or deactivate and reactivate your ACF PRO license." -msgstr "" -"Error. Could not authenticate update package. Please check " -"again or deactivate and reactivate your ACF PRO licence." - -#: pro/admin/admin-updates.php:207 -msgid "" -"Error. Your license for this site has expired or been " -"deactivated. Please reactivate your ACF PRO license." -msgstr "" -"Error. Your licence for this site has expired or been " -"deactivated. Please reactivate your ACF PRO licence." - -#: pro/fields/class-acf-field-clone.php:27, -#: pro/fields/class-acf-field-repeater.php:31 -msgid "" -"Allows you to select and display existing fields. It does not duplicate any " -"fields in the database, but loads and displays the selected fields at run-" -"time. The Clone field can either replace itself with the selected fields or " -"display the selected fields as a group of subfields." -msgstr "" - -#: pro/fields/class-acf-field-clone.php:771 -msgid "Select one or more fields you wish to clone" -msgstr "" - -#: pro/fields/class-acf-field-clone.php:790 -msgid "Display" -msgstr "" - -#: pro/fields/class-acf-field-clone.php:791 -msgid "Specify the style used to render the clone field" -msgstr "" - -#: pro/fields/class-acf-field-clone.php:796 -msgid "Group (displays selected fields in a group within this field)" -msgstr "" - -#: pro/fields/class-acf-field-clone.php:797 -msgid "Seamless (replaces this field with selected fields)" -msgstr "" - -#: pro/fields/class-acf-field-clone.php:820 -msgid "Labels will be displayed as %s" -msgstr "" - -#: pro/fields/class-acf-field-clone.php:825 -msgid "Prefix Field Labels" -msgstr "" - -#: pro/fields/class-acf-field-clone.php:835 -msgid "Values will be saved as %s" -msgstr "" - -#: pro/fields/class-acf-field-clone.php:840 -msgid "Prefix Field Names" -msgstr "" - -#: pro/fields/class-acf-field-clone.php:946 -msgid "Unknown field" -msgstr "" - -#: pro/fields/class-acf-field-clone.php:982 -msgid "Unknown field group" -msgstr "" - -#: pro/fields/class-acf-field-clone.php:986 -msgid "All fields from %s field group" -msgstr "" - -#: pro/fields/class-acf-field-flexible-content.php:27 -msgid "" -"Allows you to define, create and manage content with total control by " -"creating layouts that contain subfields that content editors can choose from." -msgstr "" - -#: pro/fields/class-acf-field-flexible-content.php:36, -#: pro/fields/class-acf-field-repeater.php:103, -#: pro/fields/class-acf-field-repeater.php:297 -msgid "Add Row" -msgstr "" - -#: pro/fields/class-acf-field-flexible-content.php:75, -#: pro/fields/class-acf-field-flexible-content.php:906, -#: pro/fields/class-acf-field-flexible-content.php:984 -msgid "layout" -msgid_plural "layouts" -msgstr[0] "" -msgstr[1] "" - -#: pro/fields/class-acf-field-flexible-content.php:76 -msgid "layouts" -msgstr "" - -#: pro/fields/class-acf-field-flexible-content.php:80, -#: pro/fields/class-acf-field-flexible-content.php:905, -#: pro/fields/class-acf-field-flexible-content.php:983 -msgid "This field requires at least {min} {label} {identifier}" -msgstr "" - -#: pro/fields/class-acf-field-flexible-content.php:81 -msgid "This field has a limit of {max} {label} {identifier}" -msgstr "" - -#: pro/fields/class-acf-field-flexible-content.php:84 -msgid "{available} {label} {identifier} available (max {max})" -msgstr "" - -#: pro/fields/class-acf-field-flexible-content.php:85 -msgid "{required} {label} {identifier} required (min {min})" -msgstr "" - -#: pro/fields/class-acf-field-flexible-content.php:88 -msgid "Flexible Content requires at least 1 layout" -msgstr "" - -#: pro/fields/class-acf-field-flexible-content.php:270 -msgid "Click the \"%s\" button below to start creating your layout" -msgstr "" - -#: pro/fields/class-acf-field-flexible-content.php:400 -msgid "Add layout" -msgstr "" - -#: pro/fields/class-acf-field-flexible-content.php:401 -msgid "Duplicate layout" -msgstr "" - -#: pro/fields/class-acf-field-flexible-content.php:402 -msgid "Remove layout" -msgstr "" - -#: pro/fields/class-acf-field-flexible-content.php:403, -#: pro/fields/class-acf-repeater-table.php:382 -msgid "Click to toggle" -msgstr "" - -#: pro/fields/class-acf-field-flexible-content.php:539 -msgid "Delete Layout" -msgstr "" - -#: pro/fields/class-acf-field-flexible-content.php:540 -msgid "Duplicate Layout" -msgstr "" - -#: pro/fields/class-acf-field-flexible-content.php:541 -msgid "Add New Layout" -msgstr "" - -#: pro/fields/class-acf-field-flexible-content.php:541 -msgid "Add Layout" -msgstr "" - -#: pro/fields/class-acf-field-flexible-content.php:625 -msgid "Min" -msgstr "" - -#: pro/fields/class-acf-field-flexible-content.php:640 -msgid "Max" -msgstr "" - -#: pro/fields/class-acf-field-flexible-content.php:683 -msgid "Minimum Layouts" -msgstr "" - -#: pro/fields/class-acf-field-flexible-content.php:694 -msgid "Maximum Layouts" -msgstr "" - -#: pro/fields/class-acf-field-flexible-content.php:705, -#: pro/fields/class-acf-field-repeater.php:293 -msgid "Button Label" -msgstr "" - -#: pro/fields/class-acf-field-flexible-content.php:1628, -#: pro/fields/class-acf-field-repeater.php:918 -msgid "%s must be of type array or null." -msgstr "" - -#: pro/fields/class-acf-field-flexible-content.php:1639 -msgid "%1$s must contain at least %2$s %3$s layout." -msgid_plural "%1$s must contain at least %2$s %3$s layouts." -msgstr[0] "" -msgstr[1] "" - -#: pro/fields/class-acf-field-flexible-content.php:1655 -msgid "%1$s must contain at most %2$s %3$s layout." -msgid_plural "%1$s must contain at most %2$s %3$s layouts." -msgstr[0] "" -msgstr[1] "" - -#: pro/fields/class-acf-field-gallery.php:27 -msgid "" -"An interactive interface for managing a collection of attachments, such as " -"images." -msgstr "" - -#: pro/fields/class-acf-field-gallery.php:77 -msgid "Add Image to Gallery" -msgstr "" - -#: pro/fields/class-acf-field-gallery.php:78 -msgid "Maximum selection reached" -msgstr "" - -#: pro/fields/class-acf-field-gallery.php:309 -msgid "Length" -msgstr "" - -#: pro/fields/class-acf-field-gallery.php:353 -msgid "Caption" -msgstr "" - -#: pro/fields/class-acf-field-gallery.php:365 -msgid "Alt Text" -msgstr "" - -#: pro/fields/class-acf-field-gallery.php:489 -msgid "Add to gallery" -msgstr "" - -#: pro/fields/class-acf-field-gallery.php:493 -msgid "Bulk actions" -msgstr "" - -#: pro/fields/class-acf-field-gallery.php:494 -msgid "Sort by date uploaded" -msgstr "" - -#: pro/fields/class-acf-field-gallery.php:495 -msgid "Sort by date modified" -msgstr "" - -#: pro/fields/class-acf-field-gallery.php:496 -msgid "Sort by title" -msgstr "" - -#: pro/fields/class-acf-field-gallery.php:497 -msgid "Reverse current order" -msgstr "" - -#: pro/fields/class-acf-field-gallery.php:509 -msgid "Close" -msgstr "" - -#: pro/fields/class-acf-field-gallery.php:599 -msgid "Minimum Selection" -msgstr "" - -#: pro/fields/class-acf-field-gallery.php:609 -msgid "Maximum Selection" -msgstr "" - -#: pro/fields/class-acf-field-gallery.php:711 -msgid "Insert" -msgstr "" - -#: pro/fields/class-acf-field-gallery.php:712 -msgid "Specify where new attachments are added" -msgstr "" - -#: pro/fields/class-acf-field-gallery.php:716 -msgid "Append to the end" -msgstr "" - -#: pro/fields/class-acf-field-gallery.php:717 -msgid "Prepend to the beginning" -msgstr "" - -#: pro/fields/class-acf-field-repeater.php:66, -#: pro/fields/class-acf-field-repeater.php:463 -msgid "Minimum rows not reached ({min} rows)" -msgstr "" - -#: pro/fields/class-acf-field-repeater.php:67 -msgid "Maximum rows reached ({max} rows)" -msgstr "" - -#: pro/fields/class-acf-field-repeater.php:68 -msgid "Error loading page" -msgstr "" - -#: pro/fields/class-acf-field-repeater.php:69 -msgid "Order will be assigned upon save" -msgstr "" - -#: pro/fields/class-acf-field-repeater.php:196 -msgid "Useful for fields with a large number of rows." -msgstr "" - -#: pro/fields/class-acf-field-repeater.php:207 -msgid "Rows Per Page" -msgstr "" - -#: pro/fields/class-acf-field-repeater.php:208 -msgid "Set the number of rows to be displayed on a page." -msgstr "" - -#: pro/fields/class-acf-field-repeater.php:240 -msgid "Minimum Rows" -msgstr "" - -#: pro/fields/class-acf-field-repeater.php:251 -msgid "Maximum Rows" -msgstr "" - -#: pro/fields/class-acf-field-repeater.php:281 -msgid "Collapsed" -msgstr "" - -#: pro/fields/class-acf-field-repeater.php:282 -msgid "Select a sub field to show when row is collapsed" -msgstr "" - -#: pro/fields/class-acf-field-repeater.php:1060 -msgid "Invalid field key or name." -msgstr "" - -#: pro/fields/class-acf-field-repeater.php:1069 -msgid "There was an error retrieving the field." -msgstr "" - -#: pro/fields/class-acf-repeater-table.php:369 -msgid "Click to reorder" -msgstr "" - -#: pro/fields/class-acf-repeater-table.php:402 -msgid "Add row" -msgstr "" - -#: pro/fields/class-acf-repeater-table.php:403 -msgid "Duplicate row" -msgstr "" - -#: pro/fields/class-acf-repeater-table.php:404 -msgid "Remove row" -msgstr "" - -#: pro/fields/class-acf-repeater-table.php:448, -#: pro/fields/class-acf-repeater-table.php:465, -#: pro/fields/class-acf-repeater-table.php:466 -msgid "Current Page" -msgstr "" - -#: pro/fields/class-acf-repeater-table.php:456, -#: pro/fields/class-acf-repeater-table.php:457 -msgid "First Page" -msgstr "" - -#: pro/fields/class-acf-repeater-table.php:460, -#: pro/fields/class-acf-repeater-table.php:461 -msgid "Previous Page" -msgstr "" - -#. translators: 1: Current page, 2: Total pages. -#: pro/fields/class-acf-repeater-table.php:470 -msgctxt "paging" -msgid "%1$s of %2$s" -msgstr "" - -#: pro/fields/class-acf-repeater-table.php:477, -#: pro/fields/class-acf-repeater-table.php:478 -msgid "Next Page" -msgstr "" - -#: pro/fields/class-acf-repeater-table.php:481, -#: pro/fields/class-acf-repeater-table.php:482 -msgid "Last Page" -msgstr "" - -#: pro/locations/class-acf-location-block.php:71 -msgid "No block types exist" -msgstr "" - -#: pro/locations/class-acf-location-options-page.php:70 -msgid "Select options page..." -msgstr "" - -#: pro/locations/class-acf-location-options-page.php:74, -#: pro/post-types/acf-ui-options-page.php:95, -#: pro/admin/post-types/admin-ui-options-page.php:492 -msgid "Add New Options Page" -msgstr "" - -#: pro/post-types/acf-ui-options-page.php:96 -msgid "Edit Options Page" -msgstr "" - -#: pro/post-types/acf-ui-options-page.php:97 -msgid "New Options Page" -msgstr "" - -#: pro/post-types/acf-ui-options-page.php:98 -msgid "View Options Page" -msgstr "" - -#: pro/post-types/acf-ui-options-page.php:99 -msgid "Search Options Pages" -msgstr "" - -#: pro/post-types/acf-ui-options-page.php:100 -msgid "No Options Pages found" -msgstr "" - -#: pro/post-types/acf-ui-options-page.php:101 -msgid "No Options Pages found in Trash" -msgstr "No Options Pages found in Bin" - -#: pro/post-types/acf-ui-options-page.php:198 -msgid "" -"The menu slug must only contain lower case alphanumeric characters, " -"underscores or dashes." -msgstr "" - -#: pro/post-types/acf-ui-options-page.php:230 -msgid "This Menu Slug is already in use by another ACF Options Page." -msgstr "" - -#: pro/admin/post-types/admin-ui-options-page.php:56 -msgid "Options page deleted." -msgstr "" - -#: pro/admin/post-types/admin-ui-options-page.php:57 -msgid "Options page updated." -msgstr "" - -#: pro/admin/post-types/admin-ui-options-page.php:60 -msgid "Options page saved." -msgstr "" - -#: pro/admin/post-types/admin-ui-options-page.php:61 -msgid "Options page submitted." -msgstr "" - -#: pro/admin/post-types/admin-ui-options-page.php:62 -msgid "Options page scheduled for." -msgstr "" - -#: pro/admin/post-types/admin-ui-options-page.php:63 -msgid "Options page draft updated." -msgstr "" - -#. translators: %s options page name -#: pro/admin/post-types/admin-ui-options-page.php:83 -msgid "%s options page updated" -msgstr "" - -#. translators: %s options page name -#: pro/admin/post-types/admin-ui-options-page.php:89 -msgid "%s options page created" -msgstr "" - -#: pro/admin/post-types/admin-ui-options-page.php:102 -msgid "Link existing field groups" -msgstr "" - -#: pro/admin/post-types/admin-ui-options-page.php:377 -msgid "No Parent" -msgstr "" - -#: pro/admin/post-types/admin-ui-options-page.php:460 -msgid "The provided Menu Slug already exists." -msgstr "" - -#. translators: %s number of post types activated -#: pro/admin/post-types/admin-ui-options-pages.php:183 -msgid "Options page activated." -msgid_plural "%s options pages activated." -msgstr[0] "" -msgstr[1] "" - -#. translators: %s number of post types deactivated -#: pro/admin/post-types/admin-ui-options-pages.php:190 -msgid "Options page deactivated." -msgid_plural "%s options pages deactivated." -msgstr[0] "" -msgstr[1] "" - -#. translators: %s number of post types duplicated -#: pro/admin/post-types/admin-ui-options-pages.php:197 -msgid "Options page duplicated." -msgid_plural "%s options pages duplicated." -msgstr[0] "" -msgstr[1] "" - -#. translators: %s number of post types synchronized -#: pro/admin/post-types/admin-ui-options-pages.php:204 -msgid "Options page synchronized." -msgid_plural "%s options pages synchronized." -msgstr[0] "" -msgstr[1] "" - -#: pro/admin/views/html-settings-updates.php:9 -msgid "Deactivate License" -msgstr "Deactivate Licence" - -#: pro/admin/views/html-settings-updates.php:9 -msgid "Activate License" -msgstr "Activate Licence" - -#: pro/admin/views/html-settings-updates.php:26 -msgctxt "license status" -msgid "Inactive" -msgstr "" - -#: pro/admin/views/html-settings-updates.php:34 -msgctxt "license status" -msgid "Cancelled" -msgstr "" - -#: pro/admin/views/html-settings-updates.php:32 -msgctxt "license status" -msgid "Expired" -msgstr "" - -#: pro/admin/views/html-settings-updates.php:30 -msgctxt "license status" -msgid "Active" -msgstr "" - -#: pro/admin/views/html-settings-updates.php:47 -msgid "Subscription Status" -msgstr "" - -#: pro/admin/views/html-settings-updates.php:45 -msgid "License Status" -msgstr "Licence Status" - -#: pro/admin/views/html-settings-updates.php:60 -msgid "Subscription Type" -msgstr "" - -#: pro/admin/views/html-settings-updates.php:58 -msgid "License Type" -msgstr "Licence Type" - -#: pro/admin/views/html-settings-updates.php:67 -msgid "Lifetime - " -msgstr "" - -#: pro/admin/views/html-settings-updates.php:81 -msgid "Subscription Expires" -msgstr "" - -#: pro/admin/views/html-settings-updates.php:79 -msgid "Subscription Expired" -msgstr "" - -#: pro/admin/views/html-settings-updates.php:118 -msgid "Renew Subscription" -msgstr "" - -#: pro/admin/views/html-settings-updates.php:136 -msgid "License Information" -msgstr "Licence Information" - -#: pro/admin/views/html-settings-updates.php:170 -msgid "License Key" -msgstr "Licence Key" - -#: pro/admin/views/html-settings-updates.php:190, -#: pro/admin/views/html-settings-updates.php:157 -msgid "Recheck License" -msgstr "Recheck Licence" - -#: pro/admin/views/html-settings-updates.php:142 -msgid "Your license key is defined in wp-config.php." -msgstr "Your licence key is defined in wp-config.php." - -#: pro/admin/views/html-settings-updates.php:210 -msgid "View pricing & purchase" -msgstr "" - -#. translators: %s - link to ACF website -#: pro/admin/views/html-settings-updates.php:218 -msgid "Don't have an ACF PRO license? %s" -msgstr "Don’t have an ACF PRO licence? %s" - -#: pro/admin/views/html-settings-updates.php:232 -msgid "Update Information" -msgstr "" - -#: pro/admin/views/html-settings-updates.php:239 -msgid "Current Version" -msgstr "" - -#: pro/admin/views/html-settings-updates.php:247 -msgid "Latest Version" -msgstr "" - -#: pro/admin/views/html-settings-updates.php:255 -msgid "Update Available" -msgstr "" - -#: pro/admin/views/html-settings-updates.php:269 -msgid "Upgrade Notice" -msgstr "" - -#: pro/admin/views/html-settings-updates.php:298 -msgid "Check For Updates" -msgstr "" - -#: pro/admin/views/html-settings-updates.php:295 -msgid "Enter your license key to unlock updates" -msgstr "Enter your licence key to unlock updates" - -#: pro/admin/views/html-settings-updates.php:293 -msgid "Update Plugin" -msgstr "" - -#: pro/admin/views/html-settings-updates.php:291 -msgid "Update ACF in Network Admin" -msgstr "" - -#: pro/admin/views/html-settings-updates.php:289 -msgid "Please reactivate your license to unlock updates" -msgstr "Please reactivate your licence to unlock updates" - -#: pro/admin/views/html-settings-updates.php:287 -msgid "Please upgrade WordPress to update ACF" -msgstr "" - -#. translators: %s = "dashicon class name", link to the WordPress dashicon documentation. -#: pro/admin/views/acf-ui-options-page/advanced-settings.php:25 -msgid "" -"The icon used for the options page menu item in the admin dashboard. Can be " -"a URL or %s to use for the icon." -msgstr "" - -#: pro/admin/views/acf-ui-options-page/advanced-settings.php:52 -msgid "Menu Title" -msgstr "" - -#: pro/admin/views/acf-ui-options-page/advanced-settings.php:66 -msgid "Learn more about menu positions." -msgstr "" - -#. translators: %s - link to WordPress docs to learn more about menu positions. -#: pro/admin/views/acf-ui-options-page/advanced-settings.php:70, -#: pro/admin/views/acf-ui-options-page/advanced-settings.php:76 -msgid "The position in the menu where this page should appear. %s" -msgstr "" - -#: pro/admin/views/acf-ui-options-page/advanced-settings.php:80 -msgid "" -"The position in the menu where this child page should appear. The first " -"child page is 0, the next is 1, etc." -msgstr "" - -#: pro/admin/views/acf-ui-options-page/advanced-settings.php:101 -msgid "Redirect to Child Page" -msgstr "" - -#: pro/admin/views/acf-ui-options-page/advanced-settings.php:102 -msgid "" -"When child pages exist for this parent page, this page will redirect to the " -"first child page." -msgstr "" - -#: pro/admin/views/acf-ui-options-page/advanced-settings.php:126 -msgid "A descriptive summary of the options page." -msgstr "" - -#: pro/admin/views/acf-ui-options-page/advanced-settings.php:135 -msgid "Update Button Label" -msgstr "" - -#: pro/admin/views/acf-ui-options-page/advanced-settings.php:136 -msgid "" -"The label used for the submit button which updates the fields on the options " -"page." -msgstr "" - -#: pro/admin/views/acf-ui-options-page/advanced-settings.php:150 -msgid "Updated Message" -msgstr "" - -#: pro/admin/views/acf-ui-options-page/advanced-settings.php:151 -msgid "" -"The message that is displayed after successfully updating the options page." -msgstr "" - -#: pro/admin/views/acf-ui-options-page/advanced-settings.php:152 -msgid "Updated Options" -msgstr "" - -#: pro/admin/views/acf-ui-options-page/advanced-settings.php:189 -msgid "Capability" -msgstr "" - -#: pro/admin/views/acf-ui-options-page/advanced-settings.php:190 -msgid "The capability required for this menu to be displayed to the user." -msgstr "" - -#: pro/admin/views/acf-ui-options-page/advanced-settings.php:206 -msgid "Data Storage" -msgstr "" - -#: pro/admin/views/acf-ui-options-page/advanced-settings.php:207 -msgid "" -"By default, the option page stores field data in the options table. You can " -"make the page load field data from a post, user, or term." -msgstr "" - -#: pro/admin/views/acf-ui-options-page/advanced-settings.php:210, -#: pro/admin/views/acf-ui-options-page/advanced-settings.php:241 -msgid "Custom Storage" -msgstr "" - -#: pro/admin/views/acf-ui-options-page/advanced-settings.php:230 -msgid "Learn more about available settings." -msgstr "" - -#. translators: %s = link to learn more about storage locations. -#: pro/admin/views/acf-ui-options-page/advanced-settings.php:235 -msgid "" -"Set a custom storage location. Can be a numeric post ID (123), or a string " -"(`user_2`). %s" -msgstr "" - -#: pro/admin/views/acf-ui-options-page/advanced-settings.php:260 -msgid "Autoload Options" -msgstr "" - -#: pro/admin/views/acf-ui-options-page/advanced-settings.php:261 -msgid "" -"Improve performance by loading the fields in the option records " -"automatically when WordPress loads." -msgstr "" - -#: pro/admin/views/acf-ui-options-page/basic-settings.php:6, -#: pro/admin/views/acf-ui-options-page/create-options-page-modal.php:16 -msgid "Page Title" -msgstr "" - -#. translators: example options page name -#: pro/admin/views/acf-ui-options-page/basic-settings.php:8, -#: pro/admin/views/acf-ui-options-page/create-options-page-modal.php:18 -msgid "Site Settings" -msgstr "" - -#: pro/admin/views/acf-ui-options-page/basic-settings.php:23, -#: pro/admin/views/acf-ui-options-page/create-options-page-modal.php:33 -msgid "Menu Slug" -msgstr "" - -#: pro/admin/views/acf-ui-options-page/basic-settings.php:38, -#: pro/admin/views/acf-ui-options-page/create-options-page-modal.php:47 -msgid "Parent Page" -msgstr "" - -#: pro/admin/views/acf-ui-options-page/list-empty.php:18 -msgid "Add Your First Options Page" -msgstr "" diff --git a/lang/acf-en_ZA.mo b/lang/acf-en_ZA.mo deleted file mode 100644 index 96ec30c..0000000 Binary files a/lang/acf-en_ZA.mo and /dev/null differ diff --git a/lang/acf-en_ZA.po b/lang/acf-en_ZA.po deleted file mode 100644 index 4a1fc38..0000000 --- a/lang/acf-en_ZA.po +++ /dev/null @@ -1,5583 +0,0 @@ -# Advanced Custom Fields Translations are a combination of translate.wordpress.org contributions, -# combined with user contributed strings for the PRO version. -# Translations from translate.wordpress.org take priority over translations in this file. -# translate.wordpress.org contributions are synced at the time of each release. -# -# If you would like to contribute translations, please visit -# https://translate.wordpress.org/projects/wp-plugins/advanced-custom-fields/stable/ -# -# For additional ACF PRO strings, please submit a pull request over on the ACF GitHub repo at -# http://github.com/advancedcustomfields/acf using the .pot (and any existing .po) files in /lang/pro/ -# -# This file is distributed under the same license as Advanced Custom Fields. -msgid "" -msgstr "" -"PO-Revision-Date: 2023-11-28T09:14:32+00:00\n" -"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n" -"Language: en_ZA\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: gettext\n" -"Project-Id-Version: Advanced Custom Fields\n" - -#: includes/admin/views/global/navigation.php:221 -msgid "Renew ACF PRO License" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:17 -msgid "Renew License" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:14 -msgid "Manage License" -msgstr "" - -#: includes/admin/views/acf-field-group/options.php:102 -msgid "'High' position not supported in the Block Editor" -msgstr "" - -#: includes/admin/views/options-page-preview.php:30 -msgid "Upgrade to ACF PRO" -msgstr "" - -#. translators: %s URL to ACF options pages documentation -#: includes/admin/views/options-page-preview.php:7 -msgid "" -"ACF options pages are custom admin " -"pages for managing global settings via fields. You can create multiple pages " -"and sub-pages." -msgstr "" - -#: includes/admin/views/global/header.php:35 -msgid "Add Options Page" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:703 -msgid "In the editor used as the placeholder of the title." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:702 -msgid "Title Placeholder" -msgstr "" - -#: includes/admin/views/global/navigation.php:97 -msgid "4 Months Free" -msgstr "" - -#. translators: %s - A singular label for a post type or taxonomy. -#: includes/admin/views/global/form-top.php:56 -msgid " (Duplicated from %s)" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:298 -msgid "Select Options Pages" -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:107 -msgid "Duplicate taxonomy" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:106 -#: includes/admin/post-types/admin-taxonomy.php:106 -msgid "Create taxonomy" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:105 -msgid "Duplicate post type" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:104 -#: includes/admin/post-types/admin-taxonomy.php:108 -msgid "Create post type" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:103 -#: includes/admin/post-types/admin-taxonomy.php:105 -msgid "Link field groups" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:102 -#: includes/admin/post-types/admin-taxonomy.php:104 -msgid "Add fields" -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:121 -#: assets/build/js/acf-field-group.js:2753 -#: assets/build/js/acf-field-group.js:3236 -msgid "This Field" -msgstr "" - -#: includes/admin/admin.php:267 -msgid "ACF PRO" -msgstr "" - -#: includes/admin/admin.php:265 -msgid "Feedback" -msgstr "" - -#: includes/admin/admin.php:263 -msgid "Support" -msgstr "" - -#. translators: This text is prepended by a link to ACF's website, and appended -#. by a link to WP Engine's website. -#: includes/admin/admin.php:238 -msgid "is developed and maintained by" -msgstr "" - -#. translators: %s - either "post type" or "taxonomy" -#: includes/admin/admin-internal-post-type.php:321 -msgid "Add this %s to the location rules of the selected field groups." -msgstr "" - -#. translators: %s the URL to ACF's bidirectional relationship documentation -#: includes/acf-bidirectional-functions.php:271 -msgid "" -"Enabling the bidirectional setting allows you to update a value in the " -"target fields for each value selected for this field, adding or removing the " -"Post ID, Taxonomy ID or User ID of the item being updated. For more " -"information, please read the documentation." -msgstr "" - -#: includes/acf-bidirectional-functions.php:247 -msgid "" -"Select field(s) to store the reference back to the item being updated. You " -"may select this field. Target fields must be compatible with where this " -"field is being displayed. For example, if this field is displayed on a " -"Taxonomy, your target field should be of type Taxonomy" -msgstr "" - -#: includes/acf-bidirectional-functions.php:246 -msgid "Target Field" -msgstr "" - -#: includes/acf-bidirectional-functions.php:220 -msgid "Update a field on the selected values, referencing back to this ID" -msgstr "" - -#: includes/acf-bidirectional-functions.php:219 -msgid "Bidirectional" -msgstr "" - -#. translators: %s A field type name, such as "Relationship" -#: includes/acf-bidirectional-functions.php:192 -msgid "%s Field" -msgstr "" - -#: includes/fields/class-acf-field-page_link.php:517 -#: includes/fields/class-acf-field-post_object.php:426 -#: includes/fields/class-acf-field-select.php:407 -#: includes/fields/class-acf-field-user.php:82 -msgid "Select Multiple" -msgstr "" - -#: includes/admin/views/global/navigation.php:233 -msgid "WP Engine logo" -msgstr "" - -#: includes/admin/views/acf-taxonomy/basic-settings.php:58 -msgid "Lower case letters, underscores and dashes only, Max 32 characters." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1136 -msgid "The capability name for assigning terms of this taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1135 -msgid "Assign Terms Capability" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1119 -msgid "The capability name for deleting terms of this taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1118 -msgid "Delete Terms Capability" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1102 -msgid "The capability name for editing terms of this taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1101 -msgid "Edit Terms Capability" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1085 -msgid "The capability name for managing terms of this taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1084 -msgid "Manage Terms Capability" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:886 -msgid "" -"Sets whether posts should be excluded from search results and taxonomy " -"archive pages." -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:74 -msgid "More Tools from WP Engine" -msgstr "" - -#. translators: %s - WP Engine logo -#: includes/admin/views/acf-field-group/pro-features.php:69 -msgid "Built for those that build with WordPress, by the team at %s" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:6 -msgid "View Pricing & Upgrade" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:3 -#: includes/admin/views/options-page-preview.php:29 -msgid "Learn More" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:28 -msgid "" -"Speed up your workflow and develop better websites with features like ACF " -"Blocks and Options Pages, and sophisticated field types like Repeater, " -"Flexible Content, Clone, and Gallery." -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:2 -msgid "Unlock Advanced Features and Build Even More with ACF PRO" -msgstr "" - -#. translators: %s - singular label of post type/taxonomy, i.e. "Movie"/"Genre" -#: includes/admin/views/global/form-top.php:19 -msgid "%s fields" -msgstr "" - -#: includes/admin/post-types/admin-taxonomies.php:293 -msgid "No terms" -msgstr "" - -#: includes/admin/post-types/admin-taxonomies.php:266 -msgid "No post types" -msgstr "" - -#: includes/admin/post-types/admin-post-types.php:289 -msgid "No posts" -msgstr "" - -#: includes/admin/post-types/admin-post-types.php:263 -msgid "No taxonomies" -msgstr "" - -#: includes/admin/post-types/admin-post-types.php:208 -#: includes/admin/post-types/admin-taxonomies.php:208 -msgid "No field groups" -msgstr "" - -#: includes/admin/post-types/admin-field-groups.php:281 -msgid "No fields" -msgstr "" - -#: includes/admin/post-types/admin-field-groups.php:154 -#: includes/admin/post-types/admin-post-types.php:172 -#: includes/admin/post-types/admin-taxonomies.php:172 -msgid "No description" -msgstr "" - -#: includes/fields/class-acf-field-page_link.php:484 -#: includes/fields/class-acf-field-post_object.php:389 -#: includes/fields/class-acf-field-relationship.php:601 -msgid "Any post status" -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:284 -msgid "" -"This taxonomy key is already in use by another taxonomy registered outside " -"of ACF and cannot be used." -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:279 -msgid "" -"This taxonomy key is already in use by another taxonomy in ACF and cannot be " -"used." -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:252 -msgid "" -"The taxonomy key must only contain lower case alphanumeric characters, " -"underscores or dashes." -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:247 -msgid "The taxonomy key must be under 32 characters." -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:99 -msgid "No Taxonomies found in Trash" -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:98 -msgid "No Taxonomies found" -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:97 -msgid "Search Taxonomies" -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:96 -msgid "View Taxonomy" -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:95 -msgid "New Taxonomy" -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:94 -msgid "Edit Taxonomy" -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:93 -msgid "Add New Taxonomy" -msgstr "" - -#: includes/post-types/class-acf-post-type.php:100 -msgid "No Post Types found in Trash" -msgstr "" - -#: includes/post-types/class-acf-post-type.php:99 -msgid "No Post Types found" -msgstr "" - -#: includes/post-types/class-acf-post-type.php:98 -msgid "Search Post Types" -msgstr "" - -#: includes/post-types/class-acf-post-type.php:97 -msgid "View Post Type" -msgstr "" - -#: includes/post-types/class-acf-post-type.php:96 -msgid "New Post Type" -msgstr "" - -#: includes/post-types/class-acf-post-type.php:95 -msgid "Edit Post Type" -msgstr "" - -#: includes/post-types/class-acf-post-type.php:94 -msgid "Add New Post Type" -msgstr "" - -#: includes/post-types/class-acf-post-type.php:361 -msgid "" -"This post type key is already in use by another post type registered outside " -"of ACF and cannot be used." -msgstr "" - -#: includes/post-types/class-acf-post-type.php:356 -msgid "" -"This post type key is already in use by another post type in ACF and cannot " -"be used." -msgstr "" - -#. translators: %s a link to WordPress.org's Reserved Terms page -#: includes/post-types/class-acf-post-type.php:335 -#: includes/post-types/class-acf-taxonomy.php:258 -msgid "" -"This field must not be a WordPress reserved " -"term." -msgstr "" - -#: includes/post-types/class-acf-post-type.php:329 -msgid "" -"The post type key must only contain lower case alphanumeric characters, " -"underscores or dashes." -msgstr "" - -#: includes/post-types/class-acf-post-type.php:324 -msgid "The post type key must be under 20 characters." -msgstr "" - -#: includes/fields/class-acf-field-wysiwyg.php:27 -msgid "We do not recommend using this field in ACF Blocks." -msgstr "" - -#: includes/fields/class-acf-field-wysiwyg.php:27 -msgid "" -"Displays the WordPress WYSIWYG editor as seen in Posts and Pages allowing " -"for a rich text-editing experience that also allows for multimedia content." -msgstr "" - -#: includes/fields/class-acf-field-wysiwyg.php:25 -msgid "WYSIWYG Editor" -msgstr "" - -#: includes/fields/class-acf-field-user.php:17 -msgid "" -"Allows the selection of one or more users which can be used to create " -"relationships between data objects." -msgstr "" - -#: includes/fields/class-acf-field-url.php:26 -msgid "A text input specifically designed for storing web addresses." -msgstr "" - -#: includes/fields/class-acf-field-url.php:25 -msgid "URL" -msgstr "" - -#: includes/fields/class-acf-field-true_false.php:27 -msgid "" -"A toggle that allows you to pick a value of 1 or 0 (on or off, true or " -"false, etc). Can be presented as a stylized switch or checkbox." -msgstr "" - -#: includes/fields/class-acf-field-time_picker.php:27 -msgid "" -"An interactive UI for picking a time. The time format can be customized " -"using the field settings." -msgstr "" - -#: includes/fields/class-acf-field-textarea.php:26 -msgid "A basic textarea input for storing paragraphs of text." -msgstr "" - -#: includes/fields/class-acf-field-text.php:26 -msgid "A basic text input, useful for storing single string values." -msgstr "" - -#: includes/fields/class-acf-field-taxonomy.php:22 -msgid "" -"Allows the selection of one or more taxonomy terms based on the criteria and " -"options specified in the fields settings." -msgstr "" - -#: includes/fields/class-acf-field-tab.php:28 -msgid "" -"Allows you to group fields into tabbed sections in the edit screen. Useful " -"for keeping fields organized and structured." -msgstr "" - -#: includes/fields/class-acf-field-select.php:27 -msgid "A dropdown list with a selection of choices that you specify." -msgstr "" - -#: includes/fields/class-acf-field-relationship.php:19 -msgid "" -"A dual-column interface to select one or more posts, pages, or custom post " -"type items to create a relationship with the item that you're currently " -"editing. Includes options to search and filter." -msgstr "" - -#: includes/fields/class-acf-field-range.php:26 -msgid "" -"An input for selecting a numerical value within a specified range using a " -"range slider element." -msgstr "" - -#: includes/fields/class-acf-field-radio.php:27 -msgid "" -"A group of radio button inputs that allows the user to make a single " -"selection from values that you specify." -msgstr "" - -#: includes/fields/class-acf-field-post_object.php:19 -msgid "" -"An interactive and customizable UI for picking one or many posts, pages or " -"post type items with the option to search. " -msgstr "" - -#: includes/fields/class-acf-field-password.php:26 -msgid "An input for providing a password using a masked field." -msgstr "" - -#: includes/fields/class-acf-field-page_link.php:476 -#: includes/fields/class-acf-field-post_object.php:381 -#: includes/fields/class-acf-field-relationship.php:593 -msgid "Filter by Post Status" -msgstr "" - -#: includes/fields/class-acf-field-page_link.php:27 -msgid "" -"An interactive dropdown to select one or more posts, pages, custom post type " -"items or archive URLs, with the option to search." -msgstr "" - -#: includes/fields/class-acf-field-oembed.php:27 -msgid "" -"An interactive component for embedding videos, images, tweets, audio and " -"other content by making use of the native WordPress oEmbed functionality." -msgstr "" - -#: includes/fields/class-acf-field-number.php:26 -msgid "An input limited to numerical values." -msgstr "" - -#: includes/fields/class-acf-field-message.php:28 -msgid "" -"Used to display a message to editors alongside other fields. Useful for " -"providing additional context or instructions around your fields." -msgstr "" - -#: includes/fields/class-acf-field-link.php:27 -msgid "" -"Allows you to specify a link and its properties such as title and target " -"using the WordPress native link picker." -msgstr "" - -#: includes/fields/class-acf-field-image.php:27 -msgid "Uses the native WordPress media picker to upload, or choose images." -msgstr "" - -#: includes/fields/class-acf-field-group.php:27 -msgid "" -"Provides a way to structure fields into groups to better organize the data " -"and the edit screen." -msgstr "" - -#: includes/fields/class-acf-field-google-map.php:27 -msgid "" -"An interactive UI for selecting a location using Google Maps. Requires a " -"Google Maps API key and additional configuration to display correctly." -msgstr "" - -#: includes/fields/class-acf-field-file.php:27 -msgid "Uses the native WordPress media picker to upload, or choose files." -msgstr "" - -#: includes/fields/class-acf-field-email.php:26 -msgid "A text input specifically designed for storing email addresses." -msgstr "" - -#: includes/fields/class-acf-field-date_time_picker.php:27 -msgid "" -"An interactive UI for picking a date and time. The date return format can be " -"customized using the field settings." -msgstr "" - -#: includes/fields/class-acf-field-date_picker.php:27 -msgid "" -"An interactive UI for picking a date. The date return format can be " -"customized using the field settings." -msgstr "" - -#: includes/fields/class-acf-field-color_picker.php:27 -msgid "An interactive UI for selecting a color, or specifying a Hex value." -msgstr "" - -#: includes/fields/class-acf-field-checkbox.php:27 -msgid "" -"A group of checkbox inputs that allow the user to select one, or multiple " -"values that you specify." -msgstr "" - -#: includes/fields/class-acf-field-button-group.php:26 -msgid "" -"A group of buttons with values that you specify, users can choose one option " -"from the values provided." -msgstr "" - -#: includes/fields/class-acf-field-accordion.php:27 -msgid "" -"Allows you to group and organize custom fields into collapsable panels that " -"are shown while editing content. Useful for keeping large datasets tidy." -msgstr "" - -#: includes/fields.php:475 -msgid "" -"This provides a solution for repeating content such as slides, team members, " -"and call-to-action tiles, by acting as a parent to a set of subfields which " -"can be repeated again and again." -msgstr "" - -#: includes/fields.php:465 -msgid "" -"This provides an interactive interface for managing a collection of " -"attachments. Most settings are similar to the Image field type. Additional " -"settings allow you to specify where new attachments are added in the gallery " -"and the minimum/maximum number of attachments allowed." -msgstr "" - -#: includes/fields.php:455 -msgid "" -"This provides a simple, structured, layout-based editor. The Flexible " -"Content field allows you to define, create and manage content with total " -"control by using layouts and subfields to design the available blocks." -msgstr "" - -#: includes/fields.php:445 -msgid "" -"This allows you to select and display existing fields. It does not duplicate " -"any fields in the database, but loads and displays the selected fields at " -"run-time. The Clone field can either replace itself with the selected fields " -"or display the selected fields as a group of subfields." -msgstr "" - -#: includes/fields.php:442 -msgctxt "noun" -msgid "Clone" -msgstr "" - -#: includes/admin/views/global/navigation.php:86 includes/fields.php:357 -msgid "PRO" -msgstr "" - -#: includes/fields.php:355 includes/fields.php:412 -msgid "Advanced" -msgstr "" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:85 -msgid "JSON (newer)" -msgstr "" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:81 -msgid "Original" -msgstr "" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:55 -msgid "Invalid post ID." -msgstr "" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:47 -msgid "Invalid post type selected for review." -msgstr "" - -#: includes/admin/views/global/navigation.php:186 -msgid "More" -msgstr "" - -#: includes/admin/views/browse-fields-modal.php:86 -msgid "Tutorial" -msgstr "" - -#: includes/admin/views/browse-fields-modal.php:75 -msgid "Available with ACF PRO" -msgstr "" - -#: includes/admin/views/browse-fields-modal.php:63 -msgid "Select Field" -msgstr "" - -#. translators: %s: A link to the popular fields used in ACF -#: includes/admin/views/browse-fields-modal.php:50 -msgid "Try a different search term or browse %s" -msgstr "" - -#: includes/admin/views/browse-fields-modal.php:47 -msgid "Popular fields" -msgstr "" - -#. translators: %s: The invalid search term -#: includes/admin/views/browse-fields-modal.php:40 -msgid "No search results for '%s'" -msgstr "" - -#: includes/admin/views/browse-fields-modal.php:13 -msgid "Search fields..." -msgstr "" - -#: includes/admin/views/browse-fields-modal.php:11 -msgid "Select Field Type" -msgstr "" - -#: includes/admin/views/browse-fields-modal.php:4 -msgid "Popular" -msgstr "" - -#: includes/admin/views/acf-taxonomy/list-empty.php:7 -msgid "Add Taxonomy" -msgstr "" - -#: includes/admin/views/acf-taxonomy/list-empty.php:6 -msgid "Create custom taxonomies to classify post type content" -msgstr "" - -#: includes/admin/views/acf-taxonomy/list-empty.php:5 -msgid "Add Your First Taxonomy" -msgstr "" - -#: includes/admin/views/acf-taxonomy/basic-settings.php:122 -msgid "Hierarchical taxonomies can have descendants (like categories)." -msgstr "" - -#: includes/admin/views/acf-taxonomy/basic-settings.php:107 -msgid "Makes a taxonomy visible on the frontend and in the admin dashboard." -msgstr "" - -#: includes/admin/views/acf-taxonomy/basic-settings.php:91 -msgid "One or many post types that can be classified with this taxonomy." -msgstr "" - -#. translators: example taxonomy -#: includes/admin/views/acf-taxonomy/basic-settings.php:60 -msgid "genre" -msgstr "" - -#. translators: example taxonomy -#: includes/admin/views/acf-taxonomy/basic-settings.php:42 -msgid "Genre" -msgstr "" - -#. translators: example taxonomy -#: includes/admin/views/acf-taxonomy/basic-settings.php:25 -msgid "Genres" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1211 -msgid "" -"Optional custom controller to use instead of `WP_REST_Terms_Controller `." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1155 -msgid "Expose this post type in the REST API." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1055 -msgid "Customize the query variable name" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1028 -msgid "" -"Terms can be accessed using the non-pretty permalink, e.g., {query_var}" -"={term_slug}." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:981 -msgid "Parent-child terms in URLs for hierarchical taxonomies." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:941 -msgid "Customize the slug used in the URL" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:924 -msgid "Permalinks for this taxonomy are disabled." -msgstr "" - -#. translators: this string will be appended with the new permalink structure. -#: includes/admin/views/acf-taxonomy/advanced-settings.php:921 -msgid "" -"Rewrite the URL using the taxonomy key as the slug. Your permalink structure " -"will be" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:913 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1030 -#: includes/admin/views/acf-taxonomy/basic-settings.php:57 -msgid "Taxonomy Key" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:911 -msgid "Select the type of permalink to use for this taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:896 -msgid "Display a column for the taxonomy on post type listing screens." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:895 -msgid "Show Admin Column" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:882 -msgid "Show the taxonomy in the quick/bulk edit panel." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:881 -msgid "Quick Edit" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:868 -msgid "List the taxonomy in the Tag Cloud Widget controls." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:867 -msgid "Tag Cloud" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:824 -msgid "" -"A PHP function name to be called for sanitizing taxonomy data saved from a " -"meta box." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:823 -msgid "Meta Box Sanitization Callback" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:805 -msgid "" -"A PHP function name to be called to handle the content of a meta box on your " -"taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:804 -msgid "Register Meta Box Callback" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:763 -msgid "No Meta Box" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:762 -msgid "Custom Meta Box" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:758 -msgid "" -"Controls the meta box on the content editor screen. By default, the " -"Categories meta box is shown for hierarchical taxonomies, and the Tags meta " -"box is shown for non-hierarchical taxonomies." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:757 -msgid "Meta Box" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:746 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:767 -msgid "Categories Meta Box" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:745 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:766 -msgid "Tags Meta Box" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:704 -msgid "A link to a tag" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:703 -msgid "Describes a navigation link block variation used in the block editor." -msgstr "" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:698 -msgid "A link to a %s" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:683 -msgid "Tag Link" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:682 -msgid "" -"Assigns a title for navigation link block variation used in the block editor." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:663 -msgid "← Go to tags" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:662 -msgid "" -"Assigns the text used to link back to the main index after updating a term." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:661 -msgid "Back To Items" -msgstr "" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:657 -msgid "← Go to %s" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:642 -msgid "Tags list" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:641 -msgid "Assigns text to the table hidden heading." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:622 -msgid "Tags list navigation" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:621 -msgid "Assigns text to the table pagination hidden heading." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:597 -msgid "Filter by category" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:596 -msgid "Assigns text to the filter button in the posts lists table." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:595 -msgid "Filter By Item" -msgstr "" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:591 -msgid "Filter by %s" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:575 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:576 -msgid "" -"The description is not prominent by default; however, some themes may show " -"it." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:574 -msgid "Describes the Description field on the Edit Tags screen." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:573 -msgid "Description Field Description" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:554 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:555 -msgid "" -"Assign a parent term to create a hierarchy. The term Jazz, for example, " -"would be the parent of Bebop and Big Band" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:553 -msgid "Describes the Parent field on the Edit Tags screen." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:552 -msgid "Parent Field Description" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:538 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:539 -msgid "" -"The \"slug\" is the URL-friendly version of the name. It is usually all " -"lower case and contains only letters, numbers, and hyphens." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:537 -msgid "Describes the Slug field on the Edit Tags screen." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:536 -msgid "Slug Field Description" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:522 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:523 -msgid "The name is how it appears on your site" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:521 -msgid "Describes the Name field on the Edit Tags screen." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:520 -msgid "Name Field Description" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:507 -msgid "No tags" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:506 -msgid "" -"Assigns the text displayed in the posts and media list tables when no tags " -"or categories are available." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:505 -msgid "No Terms" -msgstr "" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:501 -msgid "No %s" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:486 -msgid "No tags found" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:485 -msgid "" -"Assigns the text displayed when clicking the 'choose from most used' text in " -"the taxonomy meta box when no tags are available, and assigns the text used " -"in the terms list table when there are no items for a taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:484 -msgid "Not Found" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:463 -msgid "Assigns text to the Title field of the Most Used tab." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:462 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:464 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:465 -msgid "Most Used" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:444 -msgid "Choose from the most used tags" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:443 -msgid "" -"Assigns the 'choose from most used' text used in the meta box when " -"JavaScript is disabled. Only used on non-hierarchical taxonomies." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:442 -msgid "Choose From Most Used" -msgstr "" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:438 -msgid "Choose from the most used %s" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:418 -msgid "Add or remove tags" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:417 -msgid "" -"Assigns the add or remove items text used in the meta box when JavaScript is " -"disabled. Only used on non-hierarchical taxonomies" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:416 -msgid "Add Or Remove Items" -msgstr "" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:412 -msgid "Add or remove %s" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:392 -msgid "Separate tags with commas" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:391 -msgid "" -"Assigns the separate item with commas text used in the taxonomy meta box. " -"Only used on non-hierarchical taxonomies." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:390 -msgid "Separate Items With Commas" -msgstr "" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:386 -msgid "Separate %s with commas" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:366 -msgid "Popular Tags" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:365 -msgid "Assigns popular items text. Only used for non-hierarchical taxonomies." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:364 -msgid "Popular Items" -msgstr "" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:361 -msgid "Popular %s" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:347 -msgid "Search Tags" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:346 -msgid "Assigns search items text." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:323 -msgid "Parent Category:" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:322 -msgid "Assigns parent item text, but with a colon (:) added to the end." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:321 -msgid "Parent Item With Colon" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:298 -msgid "Parent Category" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:297 -msgid "Assigns parent item text. Only used on hierarchical taxonomies." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:296 -msgid "Parent Item" -msgstr "" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:293 -msgid "Parent %s" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:278 -msgid "New Tag Name" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:277 -msgid "Assigns the new item name text." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:276 -msgid "New Item Name" -msgstr "" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:273 -msgid "New %s Name" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:258 -msgid "Add New Tag" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:257 -msgid "Assigns the add new item text." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:238 -msgid "Update Tag" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:237 -msgid "Assigns the update item text." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:236 -msgid "Update Item" -msgstr "" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:233 -msgid "Update %s" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:218 -msgid "View Tag" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:217 -msgid "In the admin bar to view term during editing." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:198 -msgid "Edit Tag" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:197 -msgid "At the top of the editor screen when editing a term." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:178 -msgid "All Tags" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:177 -msgid "Assigns the all items text." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:158 -msgid "Assigns the menu name text." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:157 -msgid "Menu Label" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:131 -msgid "Active taxonomies are enabled and registered with WordPress." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:115 -msgid "A descriptive summary of the taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:95 -msgid "A descriptive summary of the term." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:94 -msgid "Term Description" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:76 -msgid "Single word, no spaces. Underscores and dashes allowed." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:75 -msgid "Term Slug" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:56 -msgid "The name of the default term." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:55 -msgid "Term Name" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:41 -msgid "" -"Create a term for the taxonomy that cannot be deleted. It will not be " -"selected for posts by default." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:40 -msgid "Default Term" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:28 -msgid "" -"Whether terms in this taxonomy should be sorted in the order they are " -"provided to `wp_set_object_terms()`." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:27 -msgid "Sort Terms" -msgstr "" - -#: includes/admin/views/acf-post-type/list-empty.php:7 -msgid "Add Post Type" -msgstr "" - -#: includes/admin/views/acf-post-type/list-empty.php:6 -msgid "" -"Expand the functionality of WordPress beyond standard posts and pages with " -"custom post types." -msgstr "" - -#: includes/admin/views/acf-post-type/list-empty.php:5 -msgid "Add Your First Post Type" -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:136 -#: includes/admin/views/acf-taxonomy/basic-settings.php:135 -msgid "I know what I'm doing, show me all the options." -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:135 -#: includes/admin/views/acf-taxonomy/basic-settings.php:134 -msgid "Advanced Configuration" -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:123 -msgid "Hierarchical post types can have descendants (like pages)." -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:122 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:980 -#: includes/admin/views/acf-taxonomy/basic-settings.php:121 -msgid "Hierarchical" -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:107 -msgid "Visible on the frontend and in the admin dashboard." -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:106 -#: includes/admin/views/acf-taxonomy/basic-settings.php:106 -msgid "Public" -msgstr "" - -#. translators: example post type -#: includes/admin/views/acf-post-type/basic-settings.php:59 -msgid "movie" -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:57 -msgid "Lower case letters, underscores and dashes only, Max 20 characters." -msgstr "" - -#. translators: example post type -#: includes/admin/views/acf-post-type/basic-settings.php:41 -msgid "Movie" -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:39 -#: includes/admin/views/acf-taxonomy/basic-settings.php:40 -msgid "Singular Label" -msgstr "" - -#. translators: example post type -#: includes/admin/views/acf-post-type/basic-settings.php:24 -msgid "Movies" -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:22 -#: includes/admin/views/acf-taxonomy/basic-settings.php:23 -msgid "Plural Label" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1270 -msgid "" -"Optional custom controller to use instead of `WP_REST_Posts_Controller`." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1269 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1210 -msgid "Controller Class" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1251 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1191 -msgid "The namespace part of the REST API URL." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1250 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1190 -msgid "Namespace Route" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1232 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1172 -msgid "The base URL for the post type REST API URLs." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1231 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1171 -msgid "Base URL" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1217 -msgid "" -"Exposes this post type in the REST API. Required to use the block editor." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1216 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1154 -msgid "Show In REST API" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1195 -msgid "Customize the query variable name." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1194 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1054 -msgid "Query Variable" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1172 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1032 -msgid "No Query Variable Support" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1171 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1031 -msgid "Custom Query Variable" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1168 -msgid "" -"Items can be accessed using the non-pretty permalink, eg. {post_type}" -"={post_slug}." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1167 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1027 -msgid "Query Variable Support" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1142 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1003 -msgid "URLs for an item and items can be accessed with a query string." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1141 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1002 -msgid "Publicly Queryable" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1120 -msgid "Custom slug for the Archive URL." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1119 -msgid "Archive Slug" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1106 -msgid "" -"Has an item archive that can be customized with an archive template file in " -"your theme." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1105 -msgid "Archive" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1085 -msgid "Pagination support for the items URLs such as the archives." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1084 -msgid "Pagination" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1067 -msgid "RSS feed URL for the post type items." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1066 -msgid "Feed URL" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1048 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:961 -msgid "" -"Alters the permalink structure to add the `WP_Rewrite::$front` prefix to " -"URLs." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1047 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:960 -msgid "Front URL Prefix" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1028 -msgid "Customize the slug used in the URL." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1027 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:940 -msgid "URL Slug" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1011 -msgid "Permalinks for this post type are disabled." -msgstr "" - -#. translators: this string will be appended with the new permalink structure. -#: includes/admin/views/acf-post-type/advanced-settings.php:1010 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:923 -msgid "" -"Rewrite the URL using a custom slug defined in the input below. Your " -"permalink structure will be" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1002 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:915 -msgid "No Permalink (prevent URL rewriting)" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1001 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:914 -msgid "Custom Permalink" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1000 -#: includes/admin/views/acf-post-type/advanced-settings.php:1170 -#: includes/admin/views/acf-post-type/basic-settings.php:56 -msgid "Post Type Key" -msgstr "" - -#. translators: this string will be appended with the new permalink structure. -#: includes/admin/views/acf-post-type/advanced-settings.php:998 -#: includes/admin/views/acf-post-type/advanced-settings.php:1008 -msgid "" -"Rewrite the URL using the post type key as the slug. Your permalink " -"structure will be" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:996 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:910 -msgid "Permalink Rewrite" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:982 -msgid "Delete items by a user when that user is deleted." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:981 -msgid "Delete With User" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:967 -msgid "Allow the post type to be exported from 'Tools' > 'Export'." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:966 -msgid "Can Export" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:935 -msgid "Optionally provide a plural to be used in capabilities." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:934 -msgid "Plural Capability Name" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:916 -msgid "Choose another post type to base the capabilities for this post type." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:915 -msgid "Singular Capability Name" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:901 -msgid "" -"By default the capabilities of the post type will inherit the 'Post' " -"capability names, eg. edit_post, delete_posts. Enable to use post type " -"specific capabilities, eg. edit_{singular}, delete_{plural}." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:900 -msgid "Rename Capabilities" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:885 -msgid "Exclude From Search" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:872 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:854 -msgid "" -"Allow items to be added to menus in the 'Appearance' > 'Menus' screen. Must " -"be turned on in 'Screen options'." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:871 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:853 -msgid "Appearance Menus Support" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:853 -msgid "Appears as an item in the 'New' menu in the admin bar." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:852 -msgid "Show In Admin Bar" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:821 -msgid "" -"A PHP function name to be called when setting up the meta boxes for the edit " -"screen." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:820 -msgid "Custom Meta Box Callback" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:800 -msgid "Menu Icon" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:782 -msgid "The position in the sidebar menu in the admin dashboard." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:781 -msgid "Menu Position" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:763 -msgid "" -"By default the post type will get a new top level item in the admin menu. If " -"an existing top level item is supplied here, the post type will be added as " -"a submenu item under it." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:762 -msgid "Admin Menu Parent" -msgstr "" - -#. translators: %s = "dashicon class name", link to the WordPress dashicon -#. documentation. -#: includes/admin/views/acf-post-type/advanced-settings.php:750 -msgid "" -"The icon used for the post type menu item in the admin dashboard. Can be a " -"URL or %s to use for the icon." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:745 -msgid "Dashicon class name" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:734 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:734 -msgid "Admin editor navigation in the sidebar menu." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:733 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:733 -msgid "Show In Admin Menu" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:720 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:719 -msgid "Items can be edited and managed in the admin dashboard." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:719 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:718 -msgid "Show In UI" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:689 -msgid "A link to a post." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:688 -msgid "Description for a navigation link block variation." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:687 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:702 -msgid "Item Link Description" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:683 -msgid "A link to a %s." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:668 -msgid "Post Link" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:667 -msgid "Title for a navigation link block variation." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:666 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:681 -msgid "Item Link" -msgstr "" - -#. translators: %s Singular form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:663 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:678 -msgid "%s Link" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:648 -msgid "Post updated." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:647 -msgid "In the editor notice after an item is updated." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:646 -msgid "Item Updated" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:643 -msgid "%s updated." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:628 -msgid "Post scheduled." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:627 -msgid "In the editor notice after scheduling an item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:626 -msgid "Item Scheduled" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:623 -msgid "%s scheduled." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:608 -msgid "Post reverted to draft." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:607 -msgid "In the editor notice after reverting an item to draft." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:606 -msgid "Item Reverted To Draft" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:603 -msgid "%s reverted to draft." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:588 -msgid "Post published privately." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:587 -msgid "In the editor notice after publishing a private item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:586 -msgid "Item Published Privately" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:583 -msgid "%s published privately." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:568 -msgid "Post published." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:567 -msgid "In the editor notice after publishing an item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:566 -msgid "Item Published" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:563 -msgid "%s published." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:548 -msgid "Posts list" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:547 -msgid "Used by screen readers for the items list on the post type list screen." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:546 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:640 -msgid "Items List" -msgstr "" - -#. translators: %s Plural form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:543 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:637 -msgid "%s list" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:528 -msgid "Posts list navigation" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:527 -msgid "" -"Used by screen readers for the filter list pagination on the post type list " -"screen." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:526 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:620 -msgid "Items List Navigation" -msgstr "" - -#. translators: %s Plural form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:523 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:617 -msgid "%s list navigation" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:507 -msgid "Filter posts by date" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:506 -msgid "" -"Used by screen readers for the filter by date heading on the post type list " -"screen." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:505 -msgid "Filter Items By Date" -msgstr "" - -#. translators: %s Plural form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:501 -msgid "Filter %s by date" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:486 -msgid "Filter posts list" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:485 -msgid "" -"Used by screen readers for the filter links heading on the post type list " -"screen." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:484 -msgid "Filter Items List" -msgstr "" - -#. translators: %s Plural form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:480 -msgid "Filter %s list" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:464 -msgid "In the media modal showing all media uploaded to this item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:463 -msgid "Uploaded To This Item" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:459 -msgid "Uploaded to this %s" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:444 -msgid "Insert into post" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:443 -msgid "As the button label when adding media to content." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:442 -msgid "Insert Into Media Button" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:438 -msgid "Insert into %s" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:423 -msgid "Use as featured image" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:422 -msgid "" -"As the button label for selecting to use an image as the featured image." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:421 -msgid "Use Featured Image" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:408 -msgid "Remove featured image" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:407 -msgid "As the button label when removing the featured image." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:406 -msgid "Remove Featured Image" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:393 -msgid "Set featured image" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:392 -msgid "As the button label when setting the featured image." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:391 -msgid "Set Featured Image" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:378 -msgid "Featured image" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:377 -msgid "In the editor used for the title of the featured image meta box." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:376 -msgid "Featured Image Meta Box" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:363 -msgid "Post Attributes" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:362 -msgid "In the editor used for the title of the post attributes meta box." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:361 -msgid "Attributes Meta Box" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:358 -msgid "%s Attributes" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:343 -msgid "Post Archives" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:342 -msgid "" -"Adds 'Post Type Archive' items with this label to the list of posts shown " -"when adding items to an existing menu in a CPT with archives enabled. Only " -"appears when editing menus in 'Live Preview' mode and a custom archive slug " -"has been provided." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:341 -msgid "Archives Nav Menu" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:338 -msgid "%s Archives" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:323 -msgid "No posts found in Trash" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:322 -msgid "" -"At the top of the post type list screen when there are no posts in the trash." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:321 -msgid "No Items Found in Trash" -msgstr "" - -#. translators: %s Plural form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:317 -msgid "No %s found in Trash" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:302 -msgid "No posts found" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:301 -msgid "" -"At the top of the post type list screen when there are no posts to display." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:300 -msgid "No Items Found" -msgstr "" - -#. translators: %s Plural form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:296 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:480 -msgid "No %s found" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:281 -msgid "Search Posts" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:280 -msgid "At the top of the items screen when searching for an item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:279 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:345 -msgid "Search Items" -msgstr "" - -#. translators: %s Singular form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:276 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:342 -msgid "Search %s" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:261 -msgid "Parent Page:" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:260 -msgid "For hierarchical types in the post type list screen." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:259 -msgid "Parent Item Prefix" -msgstr "" - -#. translators: %s Singular form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:256 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:318 -msgid "Parent %s:" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:241 -msgid "New Post" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:239 -msgid "New Item" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:236 -msgid "New %s" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:206 -msgid "Add New Post" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:205 -msgid "At the top of the editor screen when adding a new item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:204 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:256 -msgid "Add New Item" -msgstr "" - -#. translators: %s Singular form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:201 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:253 -msgid "Add New %s" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:186 -msgid "View Posts" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:185 -msgid "" -"Appears in the admin bar in the 'All Posts' view, provided the post type " -"supports archives and the home page is not an archive of that post type." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:184 -msgid "View Items" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:166 -msgid "View Post" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:165 -msgid "In the admin bar to view item when editing it." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:164 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:216 -msgid "View Item" -msgstr "" - -#. translators: %s Singular form of post type name -#. translators: %s Plural form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:161 -#: includes/admin/views/acf-post-type/advanced-settings.php:181 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:213 -msgid "View %s" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:146 -msgid "Edit Post" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:145 -msgid "At the top of the editor screen when editing an item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:144 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:196 -msgid "Edit Item" -msgstr "" - -#. translators: %s Singular form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:141 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:193 -msgid "Edit %s" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:126 -msgid "All Posts" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:125 -#: includes/admin/views/acf-post-type/advanced-settings.php:220 -#: includes/admin/views/acf-post-type/advanced-settings.php:240 -msgid "In the post type submenu in the admin dashboard." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:124 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:176 -msgid "All Items" -msgstr "" - -#. translators: %s Plural form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:121 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:173 -msgid "All %s" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:105 -msgid "Admin menu name for the post type." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:104 -msgid "Menu Name" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:90 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:142 -msgid "Regenerate all labels using the Singular and Plural labels" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:88 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:140 -msgid "Regenerate" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:79 -msgid "Active post types are enabled and registered with WordPress." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:63 -msgid "A descriptive summary of the post type." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:48 -msgid "Add Custom" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:42 -msgid "Enable various features in the content editor." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:31 -msgid "Post Formats" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:25 -msgid "Editor" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:24 -msgid "Trackbacks" -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:87 -msgid "Select existing taxonomies to classify items of the post type." -msgstr "" - -#: includes/admin/views/acf-field-group/field.php:145 -msgid "Browse Fields" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:292 -msgid "Nothing to import" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:287 -msgid ". The Custom Post Type UI plugin can be deactivated." -msgstr "" - -#. translators: %d - number of items imported from CPTUI -#: includes/admin/tools/class-acf-admin-tool-import.php:278 -msgid "Imported %d item from Custom Post Type UI -" -msgid_plural "Imported %d items from Custom Post Type UI -" -msgstr[0] "" -msgstr[1] "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:262 -msgid "Failed to import taxonomies." -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:244 -msgid "Failed to import post types." -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:233 -msgid "Nothing from Custom Post Type UI plugin selected for import." -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:209 -msgid "Imported 1 item" -msgid_plural "Imported %s items" -msgstr[0] "" -msgstr[1] "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:122 -msgid "" -"Importing a Post Type or Taxonomy with the same key as one that already " -"exists will overwrite the settings for the existing Post Type or Taxonomy " -"with those of the import." -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:111 -#: includes/admin/tools/class-acf-admin-tool-import.php:127 -msgid "Import from Custom Post Type UI" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:412 -msgid "" -"The following code can be used to register a local version of the selected " -"items. Storing field groups, post types, or taxonomies locally can provide " -"many benefits such as faster load times, version control & dynamic fields/" -"settings. Simply copy and paste the following code to your theme's functions." -"php file or include it within an external file, then deactivate or delete " -"the items from the ACF admin." -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:411 -msgid "Export - Generate PHP" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:384 -msgid "Export" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:276 -msgid "Select Taxonomies" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:254 -msgid "Select Post Types" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:167 -msgid "Exported 1 item." -msgid_plural "Exported %s items." -msgstr[0] "" -msgstr[1] "" - -#: includes/admin/post-types/admin-taxonomy.php:129 -#: assets/build/js/acf-internal-post-type.js:182 -#: assets/build/js/acf-internal-post-type.js:256 -msgid "Category" -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:127 -#: assets/build/js/acf-internal-post-type.js:179 -#: assets/build/js/acf-internal-post-type.js:253 -msgid "Tag" -msgstr "" - -#. translators: %s taxonomy name -#: includes/admin/post-types/admin-taxonomy.php:82 -msgid "%s taxonomy created" -msgstr "" - -#. translators: %s taxonomy name -#: includes/admin/post-types/admin-taxonomy.php:76 -msgid "%s taxonomy updated" -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:56 -msgid "Taxonomy draft updated." -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:55 -msgid "Taxonomy scheduled for." -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:54 -msgid "Taxonomy submitted." -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:53 -msgid "Taxonomy saved." -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:49 -msgid "Taxonomy deleted." -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:48 -msgid "Taxonomy updated." -msgstr "" - -#: includes/admin/post-types/admin-taxonomies.php:377 -#: includes/admin/post-types/admin-taxonomy.php:157 -msgid "" -"This taxonomy could not be registered because its key is in use by another " -"taxonomy registered by another plugin or theme." -msgstr "" - -#. translators: %s number of taxonomies synchronized -#: includes/admin/post-types/admin-taxonomies.php:359 -msgid "Taxonomy synchronized." -msgid_plural "%s taxonomies synchronized." -msgstr[0] "" -msgstr[1] "" - -#. translators: %s number of taxonomies duplicated -#: includes/admin/post-types/admin-taxonomies.php:352 -msgid "Taxonomy duplicated." -msgid_plural "%s taxonomies duplicated." -msgstr[0] "" -msgstr[1] "" - -#. translators: %s number of taxonomies deactivated -#: includes/admin/post-types/admin-taxonomies.php:345 -msgid "Taxonomy deactivated." -msgid_plural "%s taxonomies deactivated." -msgstr[0] "" -msgstr[1] "" - -#. translators: %s number of taxonomies activated -#: includes/admin/post-types/admin-taxonomies.php:338 -msgid "Taxonomy activated." -msgid_plural "%s taxonomies activated." -msgstr[0] "" -msgstr[1] "" - -#: includes/admin/post-types/admin-taxonomies.php:139 -msgid "Terms" -msgstr "" - -#. translators: %s number of post types synchronized -#: includes/admin/post-types/admin-post-types.php:352 -msgid "Post type synchronized." -msgid_plural "%s post types synchronized." -msgstr[0] "" -msgstr[1] "" - -#. translators: %s number of post types duplicated -#: includes/admin/post-types/admin-post-types.php:345 -msgid "Post type duplicated." -msgid_plural "%s post types duplicated." -msgstr[0] "" -msgstr[1] "" - -#. translators: %s number of post types deactivated -#: includes/admin/post-types/admin-post-types.php:338 -msgid "Post type deactivated." -msgid_plural "%s post types deactivated." -msgstr[0] "" -msgstr[1] "" - -#. translators: %s number of post types activated -#: includes/admin/post-types/admin-post-types.php:331 -msgid "Post type activated." -msgid_plural "%s post types activated." -msgstr[0] "" -msgstr[1] "" - -#: includes/admin/post-types/admin-post-types.php:112 -#: includes/admin/post-types/admin-taxonomies.php:137 -#: includes/admin/tools/class-acf-admin-tool-import.php:82 -#: includes/admin/views/acf-taxonomy/basic-settings.php:82 -#: includes/post-types/class-acf-post-type.php:91 -msgid "Post Types" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:162 -#: includes/admin/post-types/admin-taxonomy.php:164 -msgid "Advanced Settings" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:161 -#: includes/admin/post-types/admin-taxonomy.php:163 -msgid "Basic Settings" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:155 -#: includes/admin/post-types/admin-post-types.php:370 -msgid "" -"This post type could not be registered because its key is in use by another " -"post type registered by another plugin or theme." -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:128 -#: assets/build/js/acf-internal-post-type.js:176 -#: assets/build/js/acf-internal-post-type.js:250 -msgid "Pages" -msgstr "" - -#: includes/admin/admin-internal-post-type.php:355 -msgid "Link Existing Field Groups" -msgstr "" - -#. translators: %s post type name -#: includes/admin/post-types/admin-post-type.php:80 -msgid "%s post type created" -msgstr "" - -#. translators: %s taxonomy name -#: includes/admin/post-types/admin-taxonomy.php:78 -msgid "Add fields to %s" -msgstr "" - -#. translators: %s post type name -#: includes/admin/post-types/admin-post-type.php:76 -msgid "%s post type updated" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:56 -msgid "Post type draft updated." -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:55 -msgid "Post type scheduled for." -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:54 -msgid "Post type submitted." -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:53 -msgid "Post type saved." -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:50 -msgid "Post type updated." -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:49 -msgid "Post type deleted." -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:120 -#: assets/build/js/acf-field-group.js:1146 -#: assets/build/js/acf-field-group.js:1366 -msgid "Type to search..." -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:105 -#: assets/build/js/acf-field-group.js:1172 -#: assets/build/js/acf-field-group.js:2319 -#: assets/build/js/acf-field-group.js:1414 -#: assets/build/js/acf-field-group.js:2727 -msgid "PRO Only" -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:97 -#: assets/build/js/acf-internal-post-type.js:308 -#: assets/build/js/acf-internal-post-type.js:417 -msgid "Field groups linked successfully." -msgstr "" - -#. translators: %s - URL to ACF tools page. -#: includes/admin/admin.php:195 -msgid "" -"Import Post Types and Taxonomies registered with Custom Post Type UI and " -"manage them with ACF. Get Started." -msgstr "" - -#: includes/admin/admin.php:48 includes/admin/admin.php:267 -msgid "ACF" -msgstr "" - -#: includes/admin/admin-internal-post-type.php:322 -msgid "taxonomy" -msgstr "" - -#: includes/admin/admin-internal-post-type.php:322 -msgid "post type" -msgstr "" - -#: includes/admin/admin-internal-post-type.php:346 -msgid "Done" -msgstr "" - -#: includes/admin/admin-internal-post-type.php:332 -msgid "Field Group(s)" -msgstr "" - -#: includes/admin/admin-internal-post-type.php:331 -msgid "Select one or many field groups..." -msgstr "" - -#: includes/admin/admin-internal-post-type.php:330 -msgid "Please select the field groups to link." -msgstr "" - -#: includes/admin/admin-internal-post-type.php:288 -msgid "Field group linked successfully." -msgid_plural "Field groups linked successfully." -msgstr[0] "" -msgstr[1] "" - -#: includes/admin/admin-internal-post-type-list.php:261 -#: includes/admin/post-types/admin-post-types.php:371 -#: includes/admin/post-types/admin-taxonomies.php:378 -msgctxt "post status" -msgid "Registration Failed" -msgstr "" - -#: includes/admin/admin-internal-post-type-list.php:260 -msgid "" -"This item could not be registered because its key is in use by another item " -"registered by another plugin or theme." -msgstr "" - -#: includes/acf-internal-post-type-functions.php:482 -#: includes/acf-internal-post-type-functions.php:511 -msgid "REST API" -msgstr "" - -#: includes/acf-internal-post-type-functions.php:481 -#: includes/acf-internal-post-type-functions.php:510 -#: includes/acf-internal-post-type-functions.php:537 -msgid "Permissions" -msgstr "" - -#: includes/acf-internal-post-type-functions.php:480 -#: includes/acf-internal-post-type-functions.php:509 -msgid "URLs" -msgstr "" - -#: includes/acf-internal-post-type-functions.php:479 -#: includes/acf-internal-post-type-functions.php:508 -#: includes/acf-internal-post-type-functions.php:535 -msgid "Visibility" -msgstr "" - -#: includes/acf-internal-post-type-functions.php:478 -#: includes/acf-internal-post-type-functions.php:507 -#: includes/acf-internal-post-type-functions.php:536 -msgid "Labels" -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:269 -msgid "Field Settings Tabs" -msgstr "" - -#. Author URI of the plugin -msgid "" -"https://wpengine.com/?utm_source=wordpress." -"org&utm_medium=referral&utm_campaign=plugin_directory&utm_content=advanced_custom_fields" -msgstr "" - -#: includes/api/api-template.php:867 -msgid "[ACF shortcode value disabled for preview]" -msgstr "" - -#: includes/admin/admin-internal-post-type.php:298 -#: includes/admin/post-types/admin-field-group.php:571 -msgid "Close Modal" -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:96 -#: assets/build/js/acf-field-group.js:1670 -#: assets/build/js/acf-field-group.js:1993 -msgid "Field moved to other group" -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:95 -#: assets/build/js/acf.js:1437 assets/build/js/acf.js:1517 -msgid "Close modal" -msgstr "" - -#: includes/fields/class-acf-field-tab.php:125 -msgid "Start a new group of tabs at this tab." -msgstr "" - -#: includes/fields/class-acf-field-tab.php:124 -msgid "New Tab Group" -msgstr "" - -#: includes/fields/class-acf-field-select.php:451 -#: includes/fields/class-acf-field-true_false.php:200 -msgid "Use a stylized checkbox using select2" -msgstr "" - -#: includes/fields/class-acf-field-radio.php:260 -msgid "Save Other Choice" -msgstr "" - -#: includes/fields/class-acf-field-radio.php:249 -msgid "Allow Other Choice" -msgstr "" - -#: includes/fields/class-acf-field-checkbox.php:450 -msgid "Add Toggle All" -msgstr "" - -#: includes/fields/class-acf-field-checkbox.php:409 -msgid "Save Custom Values" -msgstr "" - -#: includes/fields/class-acf-field-checkbox.php:398 -msgid "Allow Custom Values" -msgstr "" - -#: includes/fields/class-acf-field-checkbox.php:148 -msgid "Checkbox custom values cannot be empty. Uncheck any empty values." -msgstr "" - -#: includes/admin/views/global/navigation.php:248 -msgid "Updates" -msgstr "" - -#: includes/admin/views/global/navigation.php:176 -msgid "Advanced Custom Fields logo" -msgstr "" - -#: includes/admin/views/global/form-top.php:89 -msgid "Save Changes" -msgstr "" - -#: includes/admin/views/global/form-top.php:76 -msgid "Field Group Title" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:704 -#: includes/admin/views/global/form-top.php:3 -msgid "Add title" -msgstr "" - -#. translators: %s url to getting started guide -#: includes/admin/views/acf-field-group/list-empty.php:20 -#: includes/admin/views/acf-post-type/list-empty.php:12 -#: includes/admin/views/acf-taxonomy/list-empty.php:12 -#: includes/admin/views/options-page-preview.php:13 -msgid "" -"New to ACF? Take a look at our getting " -"started guide." -msgstr "" - -#: includes/admin/views/acf-field-group/list-empty.php:15 -msgid "Add Field Group" -msgstr "" - -#. translators: %s url to creating a field group page -#: includes/admin/views/acf-field-group/list-empty.php:10 -msgid "" -"ACF uses field groups to group custom " -"fields together, and then attach those fields to edit screens." -msgstr "" - -#: includes/admin/views/acf-field-group/list-empty.php:5 -msgid "Add Your First Field Group" -msgstr "" - -#: includes/admin/admin-options-pages-preview.php:28 -#: includes/admin/views/acf-field-group/pro-features.php:54 -#: includes/admin/views/global/navigation.php:86 -#: includes/admin/views/global/navigation.php:250 -msgid "Options Pages" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:50 -msgid "ACF Blocks" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:58 -msgid "Gallery Field" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:38 -msgid "Flexible Content Field" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:42 -msgid "Repeater Field" -msgstr "" - -#: includes/admin/views/global/navigation.php:212 -msgid "Unlock Extra Features with ACF PRO" -msgstr "" - -#: includes/admin/views/acf-field-group/options.php:267 -msgid "Delete Field Group" -msgstr "" - -#. translators: 1: Post creation date 2: Post creation time -#: includes/admin/views/acf-field-group/options.php:261 -msgid "Created on %1$s at %2$s" -msgstr "" - -#: includes/acf-field-group-functions.php:497 -msgid "Group Settings" -msgstr "" - -#: includes/acf-field-group-functions.php:495 -msgid "Location Rules" -msgstr "" - -#. translators: %s url to field types list -#: includes/admin/views/acf-field-group/fields.php:72 -msgid "" -"Choose from over 30 field types. Learn " -"more." -msgstr "" - -#: includes/admin/views/acf-field-group/fields.php:65 -msgid "" -"Get started creating new custom fields for your posts, pages, custom post " -"types and other WordPress content." -msgstr "" - -#: includes/admin/views/acf-field-group/fields.php:64 -msgid "Add Your First Field" -msgstr "" - -#. translators: A symbol (or text, if not available in your locale) meaning -#. "Order Number", in terms of positional placement. -#: includes/admin/views/acf-field-group/fields.php:43 -msgid "#" -msgstr "" - -#: includes/admin/views/acf-field-group/fields.php:33 -#: includes/admin/views/acf-field-group/fields.php:67 -#: includes/admin/views/acf-field-group/fields.php:103 -#: includes/admin/views/global/form-top.php:85 -msgid "Add Field" -msgstr "" - -#: includes/acf-field-group-functions.php:496 includes/fields.php:410 -msgid "Presentation" -msgstr "" - -#: includes/fields.php:409 -msgid "Validation" -msgstr "" - -#: includes/acf-internal-post-type-functions.php:477 -#: includes/acf-internal-post-type-functions.php:506 includes/fields.php:408 -msgid "General" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:70 -msgid "Import JSON" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:392 -msgid "Export As JSON" -msgstr "" - -#. translators: %s number of field groups deactivated -#: includes/admin/post-types/admin-field-groups.php:367 -msgid "Field group deactivated." -msgid_plural "%s field groups deactivated." -msgstr[0] "" -msgstr[1] "" - -#. translators: %s number of field groups activated -#: includes/admin/post-types/admin-field-groups.php:360 -msgid "Field group activated." -msgid_plural "%s field groups activated." -msgstr[0] "" -msgstr[1] "" - -#: includes/admin/admin-internal-post-type-list.php:452 -#: includes/admin/admin-internal-post-type-list.php:478 -msgid "Deactivate" -msgstr "" - -#: includes/admin/admin-internal-post-type-list.php:452 -msgid "Deactivate this item" -msgstr "" - -#: includes/admin/admin-internal-post-type-list.php:448 -#: includes/admin/admin-internal-post-type-list.php:477 -msgid "Activate" -msgstr "" - -#: includes/admin/admin-internal-post-type-list.php:448 -msgid "Activate this item" -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:92 -#: assets/build/js/acf-field-group.js:2812 -#: assets/build/js/acf-field-group.js:3313 -msgid "Move field group to trash?" -msgstr "" - -#: acf.php:497 includes/admin/admin-internal-post-type-list.php:248 -#: includes/admin/post-types/admin-field-group.php:297 -#: includes/admin/post-types/admin-post-type.php:295 -#: includes/admin/post-types/admin-taxonomy.php:297 -msgctxt "post status" -msgid "Inactive" -msgstr "" - -#. Author of the plugin -msgid "WP Engine" -msgstr "" - -#: acf.php:555 -msgid "" -"Advanced Custom Fields and Advanced Custom Fields PRO should not be active " -"at the same time. We've automatically deactivated Advanced Custom Fields PRO." -msgstr "" - -#: acf.php:553 -msgid "" -"Advanced Custom Fields and Advanced Custom Fields PRO should not be active " -"at the same time. We've automatically deactivated Advanced Custom Fields." -msgstr "" - -#: includes/acf-value-functions.php:374 -msgid "" -"%1$s - We've detected one or more calls to retrieve ACF " -"field values before ACF has been initialized. This is not supported and can " -"result in malformed or missing data. Learn how to fix this." -msgstr "" - -#: includes/fields/class-acf-field-user.php:551 -msgid "%1$s must have a user with the %2$s role." -msgid_plural "%1$s must have a user with one of the following roles: %2$s" -msgstr[0] "" -msgstr[1] "" - -#: includes/fields/class-acf-field-user.php:542 -msgid "%1$s must have a valid user ID." -msgstr "" - -#: includes/fields/class-acf-field-user.php:380 -msgid "Invalid request." -msgstr "" - -#: includes/fields/class-acf-field-select.php:684 -msgid "%1$s is not one of %2$s" -msgstr "" - -#: includes/fields/class-acf-field-post_object.php:700 -msgid "%1$s must have term %2$s." -msgid_plural "%1$s must have one of the following terms: %2$s" -msgstr[0] "" -msgstr[1] "" - -#: includes/fields/class-acf-field-post_object.php:684 -msgid "%1$s must be of post type %2$s." -msgid_plural "%1$s must be of one of the following post types: %2$s" -msgstr[0] "" -msgstr[1] "" - -#: includes/fields/class-acf-field-post_object.php:675 -msgid "%1$s must have a valid post ID." -msgstr "" - -#: includes/fields/class-acf-field-file.php:475 -msgid "%s requires a valid attachment ID." -msgstr "" - -#: includes/admin/views/acf-field-group/options.php:233 -msgid "Show in REST API" -msgstr "" - -#: includes/fields/class-acf-field-color_picker.php:168 -msgid "Enable Transparency" -msgstr "Enable Transparency" - -#: includes/fields/class-acf-field-color_picker.php:187 -msgid "RGBA Array" -msgstr "RGBA Array" - -#: includes/fields/class-acf-field-color_picker.php:98 -msgid "RGBA String" -msgstr "RGBA String" - -#: includes/fields/class-acf-field-color_picker.php:97 -#: includes/fields/class-acf-field-color_picker.php:186 -msgid "Hex String" -msgstr "Hex String" - -#: includes/admin/views/browse-fields-modal.php:65 -msgid "Upgrade to PRO" -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:297 -#: includes/admin/post-types/admin-post-type.php:295 -#: includes/admin/post-types/admin-taxonomy.php:297 -msgctxt "post status" -msgid "Active" -msgstr "Active" - -#: includes/fields/class-acf-field-email.php:181 -msgid "'%s' is not a valid email address" -msgstr "'%s' is not a valid email address" - -#: includes/fields/class-acf-field-color_picker.php:76 -msgid "Color value" -msgstr "Colour value" - -#: includes/fields/class-acf-field-color_picker.php:74 -msgid "Select default color" -msgstr "Select default colour" - -#: includes/fields/class-acf-field-color_picker.php:72 -msgid "Clear color" -msgstr "Clear colour" - -#: includes/acf-wp-functions.php:90 -msgid "Blocks" -msgstr "Blocks" - -#: includes/acf-wp-functions.php:86 -msgid "Options" -msgstr "Options" - -#: includes/acf-wp-functions.php:82 -msgid "Users" -msgstr "Users" - -#: includes/acf-wp-functions.php:78 -msgid "Menu items" -msgstr "Menu items" - -#: includes/acf-wp-functions.php:70 -msgid "Widgets" -msgstr "Widgets" - -#: includes/acf-wp-functions.php:62 -msgid "Attachments" -msgstr "Attachments" - -#: includes/acf-wp-functions.php:57 -#: includes/admin/post-types/admin-post-types.php:137 -#: includes/admin/post-types/admin-taxonomies.php:112 -#: includes/admin/tools/class-acf-admin-tool-import.php:93 -#: includes/admin/views/acf-post-type/basic-settings.php:86 -#: includes/post-types/class-acf-taxonomy.php:90 -#: includes/post-types/class-acf-taxonomy.php:91 -msgid "Taxonomies" -msgstr "Taxonomies" - -#: includes/acf-wp-functions.php:44 -#: includes/admin/post-types/admin-post-type.php:126 -#: includes/admin/post-types/admin-post-types.php:139 -#: includes/admin/views/acf-post-type/advanced-settings.php:106 -#: assets/build/js/acf-internal-post-type.js:173 -#: assets/build/js/acf-internal-post-type.js:247 -msgid "Posts" -msgstr "Posts" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:76 -msgid "Last updated: %s" -msgstr "Last Updated: %s ago" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:70 -msgid "Sorry, this post is unavailable for diff comparison." -msgstr "" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:42 -msgid "Invalid field group parameter(s)." -msgstr "Invalid field group parameter(s)." - -#: includes/admin/admin-internal-post-type-list.php:413 -msgid "Awaiting save" -msgstr "Awaiting save" - -#: includes/admin/admin-internal-post-type-list.php:410 -msgid "Saved" -msgstr "Saved" - -#: includes/admin/admin-internal-post-type-list.php:406 -#: includes/admin/tools/class-acf-admin-tool-import.php:49 -msgid "Import" -msgstr "Import" - -#: includes/admin/admin-internal-post-type-list.php:402 -msgid "Review changes" -msgstr "Review changes" - -#: includes/admin/admin-internal-post-type-list.php:378 -msgid "Located in: %s" -msgstr "Located in: %s" - -#: includes/admin/admin-internal-post-type-list.php:375 -msgid "Located in plugin: %s" -msgstr "Located in plugin: %s" - -#: includes/admin/admin-internal-post-type-list.php:372 -msgid "Located in theme: %s" -msgstr "Located in theme: %s" - -#: includes/admin/post-types/admin-field-groups.php:261 -msgid "Various" -msgstr "Various" - -#: includes/admin/admin-internal-post-type-list.php:216 -#: includes/admin/admin-internal-post-type-list.php:485 -msgid "Sync changes" -msgstr "Sync changes" - -#: includes/admin/admin-internal-post-type-list.php:215 -msgid "Loading diff" -msgstr "Loading diff" - -#: includes/admin/admin-internal-post-type-list.php:214 -msgid "Review local JSON changes" -msgstr "Review local JSON changes" - -#: includes/admin/admin.php:170 -msgid "Visit website" -msgstr "Visit website" - -#: includes/admin/admin.php:169 -msgid "View details" -msgstr "View details" - -#: includes/admin/admin.php:168 -msgid "Version %s" -msgstr "Version %s" - -#: includes/admin/admin.php:167 -msgid "Information" -msgstr "Information" - -#: includes/admin/admin.php:158 -msgid "" -"Help Desk. The support professionals on " -"our Help Desk will assist with your more in depth, technical challenges." -msgstr "" -"Help Desk. The support professionals on " -"our Help Desk will assist with your more in depth, technical challenges." - -#: includes/admin/admin.php:154 -msgid "" -"Discussions. We have an active and " -"friendly community on our Community Forums who may be able to help you " -"figure out the 'how-tos' of the ACF world." -msgstr "" - -#: includes/admin/admin.php:150 -msgid "" -"Documentation. Our extensive " -"documentation contains references and guides for most situations you may " -"encounter." -msgstr "" -"Documentation. Our extensive " -"documentation contains references and guides for most situations you may " -"encounter." - -#: includes/admin/admin.php:147 -msgid "" -"We are fanatical about support, and want you to get the best out of your " -"website with ACF. If you run into any difficulties, there are several places " -"you can find help:" -msgstr "" -"We are fanatical about support, and want you to get the best out of your " -"website with ACF. If you run into any difficulties, there are several places " -"you can find help:" - -#: includes/admin/admin.php:144 includes/admin/admin.php:146 -msgid "Help & Support" -msgstr "Help & Support" - -#: includes/admin/admin.php:135 -msgid "" -"Please use the Help & Support tab to get in touch should you find yourself " -"requiring assistance." -msgstr "" -"Please use the Help & Support tab to get in touch should you find yourself " -"requiring assistance." - -#: includes/admin/admin.php:132 -msgid "" -"Before creating your first Field Group, we recommend first reading our Getting started guide to familiarize " -"yourself with the plugin's philosophy and best practises." -msgstr "" -"Before creating your first Field Group, we recommend first reading our Getting started guide to familiarise " -"yourself with the plugin's philosophy and best practises." - -#: includes/admin/admin.php:130 -msgid "" -"The Advanced Custom Fields plugin provides a visual form builder to " -"customize WordPress edit screens with extra fields, and an intuitive API to " -"display custom field values in any theme template file." -msgstr "" -"The Advanced Custom Fields plugin provides a visual form builder to " -"customise WordPress edit screens with extra fields, and an intuitive API to " -"display custom field values in any theme template file." - -#: includes/admin/admin.php:127 includes/admin/admin.php:129 -msgid "Overview" -msgstr "Overview" - -#: includes/locations.php:36 -msgid "Location type \"%s\" is already registered." -msgstr "Location type \"%s\" is already registered." - -#: includes/locations.php:25 -msgid "Class \"%s\" does not exist." -msgstr "Class \"%s\" does not exist." - -#: includes/ajax/class-acf-ajax.php:157 -msgid "Invalid nonce." -msgstr "Invalid nonce." - -#: includes/fields/class-acf-field-user.php:375 -msgid "Error loading field." -msgstr "Error loading field." - -#: assets/build/js/acf-input.js:2750 assets/build/js/acf-input.js:2819 -#: assets/build/js/acf-input.js:2926 assets/build/js/acf-input.js:3000 -msgid "Location not found: %s" -msgstr "Location not found: %s" - -#: includes/forms/form-user.php:353 -msgid "Error: %s" -msgstr "Error: %s" - -#: includes/locations/class-acf-location-widget.php:22 -msgid "Widget" -msgstr "Widget" - -#: includes/locations/class-acf-location-user-role.php:24 -msgid "User Role" -msgstr "User Role" - -#: includes/locations/class-acf-location-comment.php:22 -msgid "Comment" -msgstr "Comment" - -#: includes/locations/class-acf-location-post-format.php:22 -msgid "Post Format" -msgstr "Post Format" - -#: includes/locations/class-acf-location-nav-menu-item.php:22 -msgid "Menu Item" -msgstr "Menu Item" - -#: includes/locations/class-acf-location-post-status.php:22 -msgid "Post Status" -msgstr "Post Status" - -#: includes/acf-wp-functions.php:74 -#: includes/locations/class-acf-location-nav-menu.php:89 -msgid "Menus" -msgstr "Menus" - -#: includes/locations/class-acf-location-nav-menu.php:80 -msgid "Menu Locations" -msgstr "Menu Locations" - -#: includes/locations/class-acf-location-nav-menu.php:22 -msgid "Menu" -msgstr "Menu" - -#: includes/locations/class-acf-location-post-taxonomy.php:22 -msgid "Post Taxonomy" -msgstr "Post Taxonomy" - -#: includes/locations/class-acf-location-page-type.php:114 -msgid "Child Page (has parent)" -msgstr "Child Page (has parent)" - -#: includes/locations/class-acf-location-page-type.php:113 -msgid "Parent Page (has children)" -msgstr "Parent Page (has children)" - -#: includes/locations/class-acf-location-page-type.php:112 -msgid "Top Level Page (no parent)" -msgstr "Top Level Page (no parent)" - -#: includes/locations/class-acf-location-page-type.php:111 -msgid "Posts Page" -msgstr "Posts Page" - -#: includes/locations/class-acf-location-page-type.php:110 -msgid "Front Page" -msgstr "Front Page Info" - -#: includes/locations/class-acf-location-page-type.php:22 -msgid "Page Type" -msgstr "Page Type" - -#: includes/locations/class-acf-location-current-user.php:73 -msgid "Viewing back end" -msgstr "Viewing back end" - -#: includes/locations/class-acf-location-current-user.php:72 -msgid "Viewing front end" -msgstr "Viewing front end" - -#: includes/locations/class-acf-location-current-user.php:71 -msgid "Logged in" -msgstr "Logged in" - -#: includes/locations/class-acf-location-current-user.php:22 -msgid "Current User" -msgstr "Current User" - -#: includes/locations/class-acf-location-page-template.php:22 -msgid "Page Template" -msgstr "Page Template" - -#: includes/locations/class-acf-location-user-form.php:74 -msgid "Register" -msgstr "Register" - -#: includes/locations/class-acf-location-user-form.php:73 -msgid "Add / Edit" -msgstr "Add / Edit" - -#: includes/locations/class-acf-location-user-form.php:22 -msgid "User Form" -msgstr "User Form" - -#: includes/locations/class-acf-location-page-parent.php:22 -msgid "Page Parent" -msgstr "Page Parent" - -#: includes/locations/class-acf-location-current-user-role.php:77 -msgid "Super Admin" -msgstr "Super Admin" - -#: includes/locations/class-acf-location-current-user-role.php:22 -msgid "Current User Role" -msgstr "Current User Role" - -#: includes/locations/class-acf-location-page-template.php:73 -#: includes/locations/class-acf-location-post-template.php:85 -msgid "Default Template" -msgstr "Default Template" - -#: includes/locations/class-acf-location-post-template.php:22 -msgid "Post Template" -msgstr "Post Template" - -#: includes/locations/class-acf-location-post-category.php:22 -msgid "Post Category" -msgstr "Post Category" - -#: includes/locations/class-acf-location-attachment.php:84 -msgid "All %s formats" -msgstr "All %s formats" - -#: includes/locations/class-acf-location-attachment.php:22 -msgid "Attachment" -msgstr "Attachment" - -#: includes/validation.php:366 -msgid "%s value is required" -msgstr "%s value is required" - -#: includes/admin/views/acf-field-group/conditional-logic.php:59 -msgid "Show this field if" -msgstr "Show this field if" - -#: includes/admin/views/acf-field-group/conditional-logic.php:26 -#: includes/admin/views/acf-field-group/field.php:109 includes/fields.php:411 -msgid "Conditional Logic" -msgstr "Conditional Logic" - -#: includes/admin/views/acf-field-group/conditional-logic.php:156 -#: includes/admin/views/acf-field-group/location-rule.php:92 -msgid "and" -msgstr "and" - -#: includes/admin/post-types/admin-field-groups.php:123 -#: includes/admin/post-types/admin-post-types.php:143 -#: includes/admin/post-types/admin-taxonomies.php:143 -msgid "Local JSON" -msgstr "Local JSON" - -#: includes/admin/views/acf-field-group/pro-features.php:46 -msgid "Clone Field" -msgstr "" - -#: includes/admin/views/upgrade/notice.php:30 -msgid "" -"Please also check all premium add-ons (%s) are updated to the latest version." -msgstr "" -"Please also check all premium add-ons (%s) are updated to the latest version." - -#: includes/admin/views/upgrade/notice.php:28 -msgid "" -"This version contains improvements to your database and requires an upgrade." -msgstr "" -"This version contains improvements to your database and requires an upgrade." - -#: includes/admin/views/upgrade/notice.php:28 -msgid "Thank you for updating to %1$s v%2$s!" -msgstr "Thank you for updating to %1$s v%2$s!" - -#: includes/admin/views/upgrade/notice.php:27 -msgid "Database Upgrade Required" -msgstr "Database Upgrade Required" - -#: includes/admin/post-types/admin-field-group.php:141 -#: includes/admin/views/upgrade/notice.php:18 -msgid "Options Page" -msgstr "Options Page" - -#: includes/admin/views/upgrade/notice.php:15 includes/fields.php:462 -msgid "Gallery" -msgstr "Gallery" - -#: includes/admin/views/upgrade/notice.php:12 includes/fields.php:452 -msgid "Flexible Content" -msgstr "Flexible Content" - -#: includes/admin/views/upgrade/notice.php:9 includes/fields.php:472 -msgid "Repeater" -msgstr "Repeater" - -#: includes/admin/views/tools/tools.php:24 -msgid "Back to all tools" -msgstr "Back to all tools" - -#: includes/admin/views/acf-field-group/options.php:195 -msgid "" -"If multiple field groups appear on an edit screen, the first field group's " -"options will be used (the one with the lowest order number)" -msgstr "" -"If multiple field groups appear on an edit screen, the first field group's " -"options will be used (the one with the lowest order number)" - -#: includes/admin/views/acf-field-group/options.php:195 -msgid "Select items to hide them from the edit screen." -msgstr "Select items to hide them from the edit screen." - -#: includes/admin/views/acf-field-group/options.php:194 -msgid "Hide on screen" -msgstr "Hide on screen" - -#: includes/admin/views/acf-field-group/options.php:186 -msgid "Send Trackbacks" -msgstr "Send Trackbacks" - -#: includes/admin/post-types/admin-taxonomy.php:128 -#: includes/admin/views/acf-field-group/options.php:185 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:159 -#: assets/build/js/acf-internal-post-type.js:180 -#: assets/build/js/acf-internal-post-type.js:254 -msgid "Tags" -msgstr "Tags" - -#: includes/admin/post-types/admin-taxonomy.php:130 -#: includes/admin/views/acf-field-group/options.php:184 -#: assets/build/js/acf-internal-post-type.js:183 -#: assets/build/js/acf-internal-post-type.js:257 -msgid "Categories" -msgstr "Categories" - -#: includes/admin/views/acf-field-group/options.php:182 -#: includes/admin/views/acf-post-type/advanced-settings.php:28 -msgid "Page Attributes" -msgstr "Page Attributes" - -#: includes/admin/views/acf-field-group/options.php:181 -msgid "Format" -msgstr "Format" - -#: includes/admin/views/acf-field-group/options.php:180 -#: includes/admin/views/acf-post-type/advanced-settings.php:22 -msgid "Author" -msgstr "Author" - -#: includes/admin/views/acf-field-group/options.php:179 -msgid "Slug" -msgstr "Slug" - -#: includes/admin/views/acf-field-group/options.php:178 -#: includes/admin/views/acf-post-type/advanced-settings.php:27 -msgid "Revisions" -msgstr "Revisions" - -#: includes/acf-wp-functions.php:66 -#: includes/admin/views/acf-field-group/options.php:177 -#: includes/admin/views/acf-post-type/advanced-settings.php:23 -msgid "Comments" -msgstr "Comments" - -#: includes/admin/views/acf-field-group/options.php:176 -msgid "Discussion" -msgstr "Discussion" - -#: includes/admin/views/acf-field-group/options.php:174 -#: includes/admin/views/acf-post-type/advanced-settings.php:26 -msgid "Excerpt" -msgstr "Excerpt" - -#: includes/admin/views/acf-field-group/options.php:173 -msgid "Content Editor" -msgstr "Content Editor" - -#: includes/admin/views/acf-field-group/options.php:172 -msgid "Permalink" -msgstr "Permalink" - -#: includes/admin/views/acf-field-group/options.php:250 -msgid "Shown in field group list" -msgstr "Shown in field group list" - -#: includes/admin/views/acf-field-group/options.php:157 -msgid "Field groups with a lower order will appear first" -msgstr "Field groups with a lower order will appear first" - -#: includes/admin/views/acf-field-group/options.php:156 -msgid "Order No." -msgstr "Order No." - -#: includes/admin/views/acf-field-group/options.php:147 -msgid "Below fields" -msgstr "Below fields" - -#: includes/admin/views/acf-field-group/options.php:146 -msgid "Below labels" -msgstr "Below labels" - -#: includes/admin/views/acf-field-group/options.php:139 -msgid "Instruction Placement" -msgstr "" - -#: includes/admin/views/acf-field-group/options.php:122 -msgid "Label Placement" -msgstr "" - -#: includes/admin/views/acf-field-group/options.php:110 -msgid "Side" -msgstr "Side" - -#: includes/admin/views/acf-field-group/options.php:109 -msgid "Normal (after content)" -msgstr "Normal (after content)" - -#: includes/admin/views/acf-field-group/options.php:108 -msgid "High (after title)" -msgstr "High (after title)" - -#: includes/admin/views/acf-field-group/options.php:101 -msgid "Position" -msgstr "Position" - -#: includes/admin/views/acf-field-group/options.php:92 -msgid "Seamless (no metabox)" -msgstr "Seamless (no metabox)" - -#: includes/admin/views/acf-field-group/options.php:91 -msgid "Standard (WP metabox)" -msgstr "Standard (WP metabox)" - -#: includes/admin/views/acf-field-group/options.php:84 -msgid "Style" -msgstr "Style" - -#: includes/admin/views/acf-field-group/fields.php:55 -msgid "Type" -msgstr "Type" - -#: includes/admin/post-types/admin-field-groups.php:117 -#: includes/admin/post-types/admin-post-types.php:136 -#: includes/admin/post-types/admin-taxonomies.php:136 -#: includes/admin/views/acf-field-group/fields.php:54 -msgid "Key" -msgstr "Key" - -#. translators: Hidden accessibility text for the positional order number of -#. the field. -#: includes/admin/views/acf-field-group/fields.php:48 -msgid "Order" -msgstr "Order" - -#: includes/admin/views/acf-field-group/field.php:322 -msgid "Close Field" -msgstr "Close Field" - -#: includes/admin/views/acf-field-group/field.php:253 -msgid "id" -msgstr "id" - -#: includes/admin/views/acf-field-group/field.php:237 -msgid "class" -msgstr "class" - -#: includes/admin/views/acf-field-group/field.php:279 -msgid "width" -msgstr "width" - -#: includes/admin/views/acf-field-group/field.php:273 -msgid "Wrapper Attributes" -msgstr "Wrapper Attributes" - -#: includes/admin/views/acf-field-group/field.php:196 -msgid "Required" -msgstr "" - -#: includes/admin/views/acf-field-group/field.php:221 -msgid "Instructions for authors. Shown when submitting data" -msgstr "Instructions for authors. Shown when submitting data" - -#: includes/admin/views/acf-field-group/field.php:220 -msgid "Instructions" -msgstr "Instructions" - -#: includes/admin/views/acf-field-group/field.php:129 -msgid "Field Type" -msgstr "Field Type" - -#: includes/admin/views/acf-field-group/field.php:170 -msgid "Single word, no spaces. Underscores and dashes allowed" -msgstr "Single word, no spaces. Underscores and dashes allowed" - -#: includes/admin/views/acf-field-group/field.php:169 -msgid "Field Name" -msgstr "Field Name" - -#: includes/admin/views/acf-field-group/field.php:157 -msgid "This is the name which will appear on the EDIT page" -msgstr "This is the name which will appear on the EDIT page" - -#: includes/admin/views/acf-field-group/field.php:156 -#: includes/admin/views/browse-fields-modal.php:59 -msgid "Field Label" -msgstr "Field Label" - -#: includes/admin/views/acf-field-group/field.php:81 -msgid "Delete" -msgstr "Delete" - -#: includes/admin/views/acf-field-group/field.php:81 -msgid "Delete field" -msgstr "Delete field" - -#: includes/admin/views/acf-field-group/field.php:79 -msgid "Move" -msgstr "Move" - -#: includes/admin/views/acf-field-group/field.php:79 -msgid "Move field to another group" -msgstr "Move field to another group" - -#: includes/admin/views/acf-field-group/field.php:77 -msgid "Duplicate field" -msgstr "Duplicate field" - -#: includes/admin/views/acf-field-group/field.php:73 -#: includes/admin/views/acf-field-group/field.php:76 -msgid "Edit field" -msgstr "Edit field" - -#: includes/admin/views/acf-field-group/field.php:69 -msgid "Drag to reorder" -msgstr "Drag to reorder" - -#: includes/admin/post-types/admin-field-group.php:103 -#: includes/admin/views/acf-field-group/location-group.php:3 -#: assets/build/js/acf-field-group.js:2347 -#: assets/build/js/acf-field-group.js:2763 -msgid "Show this field group if" -msgstr "Show this field group if" - -#: includes/admin/views/upgrade/upgrade.php:94 -#: includes/ajax/class-acf-ajax-upgrade.php:34 -msgid "No updates available." -msgstr "No updates available." - -#: includes/admin/views/upgrade/upgrade.php:33 -msgid "Database upgrade complete. See what's new" -msgstr "Database upgrade complete. See what's new" - -#: includes/admin/views/upgrade/upgrade.php:30 -msgid "Reading upgrade tasks..." -msgstr "Reading upgrade tasks..." - -#: includes/admin/views/upgrade/network.php:165 -#: includes/admin/views/upgrade/upgrade.php:65 -msgid "Upgrade failed." -msgstr "Upgrade failed." - -#: includes/admin/views/upgrade/network.php:162 -msgid "Upgrade complete." -msgstr "Upgrade complete." - -#: includes/admin/views/upgrade/network.php:148 -#: includes/admin/views/upgrade/upgrade.php:31 -msgid "Upgrading data to version %s" -msgstr "Upgrading data to version %s" - -#: includes/admin/views/upgrade/network.php:121 -#: includes/admin/views/upgrade/notice.php:44 -msgid "" -"It is strongly recommended that you backup your database before proceeding. " -"Are you sure you wish to run the updater now?" -msgstr "" -"It is strongly recommended that you backup your database before proceeding. " -"Are you sure you wish to run the updater now?" - -#: includes/admin/views/upgrade/network.php:117 -msgid "Please select at least one site to upgrade." -msgstr "Please select at least one site to upgrade." - -#: includes/admin/views/upgrade/network.php:97 -msgid "" -"Database Upgrade complete. Return to network dashboard" -msgstr "" -"Database Upgrade complete. Return to network dashboard" - -#: includes/admin/views/upgrade/network.php:80 -msgid "Site is up to date" -msgstr "Site is up to date" - -#: includes/admin/views/upgrade/network.php:78 -msgid "Site requires database upgrade from %1$s to %2$s" -msgstr "Site requires database upgrade from %1$s to %2$s" - -#: includes/admin/views/upgrade/network.php:36 -#: includes/admin/views/upgrade/network.php:47 -msgid "Site" -msgstr "Site" - -#: includes/admin/views/upgrade/network.php:26 -#: includes/admin/views/upgrade/network.php:27 -#: includes/admin/views/upgrade/network.php:96 -msgid "Upgrade Sites" -msgstr "Upgrade Sites" - -#: includes/admin/views/upgrade/network.php:26 -msgid "" -"The following sites require a DB upgrade. Check the ones you want to update " -"and then click %s." -msgstr "" -"The following sites require a DB upgrade. Check the ones you want to update " -"and then click %s." - -#: includes/admin/views/acf-field-group/conditional-logic.php:171 -#: includes/admin/views/acf-field-group/locations.php:38 -msgid "Add rule group" -msgstr "Add rule group" - -#: includes/admin/views/acf-field-group/locations.php:10 -msgid "" -"Create a set of rules to determine which edit screens will use these " -"advanced custom fields" -msgstr "" -"Create a set of rules to determine which edit screens will use these " -"advanced custom fields" - -#: includes/admin/views/acf-field-group/locations.php:9 -msgid "Rules" -msgstr "Rules" - -#: includes/admin/tools/class-acf-admin-tool-export.php:510 -msgid "Copied" -msgstr "Copied" - -#: includes/admin/tools/class-acf-admin-tool-export.php:486 -msgid "Copy to clipboard" -msgstr "Copy to clipboard" - -#: includes/admin/tools/class-acf-admin-tool-export.php:385 -msgid "" -"Select the items you would like to export and then select your export " -"method. Export As JSON to export to a .json file which you can then import " -"to another ACF installation. Generate PHP to export to PHP code which you " -"can place in your theme." -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:233 -msgid "Select Field Groups" -msgstr "Select Field Groups" - -#: includes/admin/tools/class-acf-admin-tool-export.php:96 -#: includes/admin/tools/class-acf-admin-tool-export.php:131 -msgid "No field groups selected" -msgstr "No field groups selected" - -#: includes/admin/tools/class-acf-admin-tool-export.php:39 -#: includes/admin/tools/class-acf-admin-tool-export.php:393 -#: includes/admin/tools/class-acf-admin-tool-export.php:421 -msgid "Generate PHP" -msgstr "Generate PHP" - -#: includes/admin/tools/class-acf-admin-tool-export.php:35 -msgid "Export Field Groups" -msgstr "Export Field Groups" - -#: includes/admin/tools/class-acf-admin-tool-import.php:177 -msgid "Import file empty" -msgstr "Import file empty" - -#: includes/admin/tools/class-acf-admin-tool-import.php:168 -msgid "Incorrect file type" -msgstr "Incorrect file type" - -#: includes/admin/tools/class-acf-admin-tool-import.php:163 -msgid "Error uploading file. Please try again" -msgstr "Error uploading file. Please try again" - -#: includes/admin/tools/class-acf-admin-tool-import.php:50 -msgid "" -"Select the Advanced Custom Fields JSON file you would like to import. When " -"you click the import button below, ACF will import the items in that file." -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:27 -msgid "Import Field Groups" -msgstr "Import Field Groups" - -#: includes/admin/admin-internal-post-type-list.php:401 -msgid "Sync" -msgstr "Sync" - -#: includes/admin/admin-internal-post-type-list.php:858 -msgid "Select %s" -msgstr "Select %s" - -#: includes/admin/admin-internal-post-type-list.php:442 -#: includes/admin/admin-internal-post-type-list.php:474 -#: includes/admin/views/acf-field-group/field.php:77 -msgid "Duplicate" -msgstr "Duplicate" - -#: includes/admin/admin-internal-post-type-list.php:442 -msgid "Duplicate this item" -msgstr "Duplicate this item" - -#: includes/admin/views/acf-post-type/advanced-settings.php:41 -msgid "Supports" -msgstr "" - -#: includes/admin/admin.php:261 includes/admin/views/browse-fields-modal.php:92 -msgid "Documentation" -msgstr "" - -#: includes/admin/post-types/admin-field-groups.php:116 -#: includes/admin/post-types/admin-post-types.php:135 -#: includes/admin/post-types/admin-taxonomies.php:135 -#: includes/admin/views/acf-field-group/options.php:249 -#: includes/admin/views/acf-post-type/advanced-settings.php:62 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:114 -#: includes/admin/views/upgrade/network.php:38 -#: includes/admin/views/upgrade/network.php:49 -msgid "Description" -msgstr "Description" - -#: includes/admin/admin-internal-post-type-list.php:398 -#: includes/admin/admin-internal-post-type-list.php:747 -msgid "Sync available" -msgstr "Sync available" - -#. translators: %s number of field groups synchronized -#: includes/admin/post-types/admin-field-groups.php:381 -msgid "Field group synchronized." -msgid_plural "%s field groups synchronized." -msgstr[0] "" -msgstr[1] "" - -#. translators: %s number of field groups duplicated -#: includes/admin/post-types/admin-field-groups.php:374 -msgid "Field group duplicated." -msgid_plural "%s field groups duplicated." -msgstr[0] "Field group duplicated." -msgstr[1] "%s field groups duplicated." - -#: includes/admin/admin-internal-post-type-list.php:137 -msgid "Active (%s)" -msgid_plural "Active (%s)" -msgstr[0] "Active (%s)" -msgstr[1] "Active (%s)" - -#: includes/admin/admin-upgrade.php:254 -msgid "Review sites & upgrade" -msgstr "Review sites & upgrade" - -#: includes/admin/admin-upgrade.php:59 includes/admin/admin-upgrade.php:93 -#: includes/admin/admin-upgrade.php:94 includes/admin/admin-upgrade.php:230 -#: includes/admin/views/upgrade/network.php:24 -#: includes/admin/views/upgrade/upgrade.php:26 -msgid "Upgrade Database" -msgstr "Upgrade Database" - -#: includes/admin/views/acf-field-group/options.php:175 -#: includes/admin/views/acf-post-type/advanced-settings.php:30 -msgid "Custom Fields" -msgstr "Custom Fields" - -#: includes/admin/post-types/admin-field-group.php:616 -msgid "Move Field" -msgstr "Move Field" - -#: includes/admin/post-types/admin-field-group.php:605 -#: includes/admin/post-types/admin-field-group.php:609 -msgid "Please select the destination for this field" -msgstr "Please select the destination for this field" - -#. translators: Confirmation message once a field has been moved to a different -#. field group. -#: includes/admin/post-types/admin-field-group.php:567 -msgid "The %1$s field can now be found in the %2$s field group" -msgstr "The %1$s field can now be found in the %2$s field group" - -#: includes/admin/post-types/admin-field-group.php:564 -msgid "Move Complete." -msgstr "Move Complete." - -#: includes/admin/views/acf-field-group/field.php:39 -#: includes/admin/views/acf-field-group/options.php:217 -#: includes/admin/views/acf-post-type/advanced-settings.php:78 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:130 -msgid "Active" -msgstr "Active" - -#: includes/admin/post-types/admin-field-group.php:266 -msgid "Field Keys" -msgstr "Field Keys" - -#: includes/admin/post-types/admin-field-group.php:164 -#: includes/admin/tools/class-acf-admin-tool-export.php:342 -msgid "Settings" -msgstr "Settings" - -#: includes/admin/post-types/admin-field-groups.php:118 -msgid "Location" -msgstr "Location" - -#: includes/admin/post-types/admin-field-group.php:104 -#: assets/build/js/acf-input.js:983 assets/build/js/acf-input.js:1075 -msgid "Null" -msgstr "Null" - -#: includes/admin/post-types/admin-field-group.php:101 -#: includes/class-acf-internal-post-type.php:730 -#: includes/post-types/class-acf-field-group.php:345 -#: assets/build/js/acf-field-group.js:1510 -#: assets/build/js/acf-field-group.js:1821 -msgid "copy" -msgstr "copy" - -#: includes/admin/post-types/admin-field-group.php:100 -#: assets/build/js/acf-field-group.js:623 -#: assets/build/js/acf-field-group.js:778 -msgid "(this field)" -msgstr "(this field)" - -#: includes/admin/post-types/admin-field-group.php:98 -#: assets/build/js/acf-input.js:918 assets/build/js/acf-input.js:943 -#: assets/build/js/acf-input.js:1002 assets/build/js/acf-input.js:1030 -msgid "Checked" -msgstr "Checked" - -#: includes/admin/post-types/admin-field-group.php:94 -#: assets/build/js/acf-field-group.js:1615 -#: assets/build/js/acf-field-group.js:1933 -msgid "Move Custom Field" -msgstr "Move Custom Field" - -#: includes/admin/post-types/admin-field-group.php:93 -#: assets/build/js/acf-field-group.js:649 -#: assets/build/js/acf-field-group.js:804 -msgid "No toggle fields available" -msgstr "No toggle fields available" - -#: includes/admin/post-types/admin-field-group.php:91 -msgid "Field group title is required" -msgstr "Field group title is required" - -#: includes/admin/post-types/admin-field-group.php:90 -#: assets/build/js/acf-field-group.js:1604 -#: assets/build/js/acf-field-group.js:1919 -msgid "This field cannot be moved until its changes have been saved" -msgstr "This field cannot be moved until its changes have been saved" - -#: includes/admin/post-types/admin-field-group.php:89 -#: assets/build/js/acf-field-group.js:1414 -#: assets/build/js/acf-field-group.js:1716 -msgid "The string \"field_\" may not be used at the start of a field name" -msgstr "The string \"field_\" may not be used at the start of a field name" - -#: includes/admin/post-types/admin-field-group.php:71 -msgid "Field group draft updated." -msgstr "Field group draft updated." - -#: includes/admin/post-types/admin-field-group.php:70 -msgid "Field group scheduled for." -msgstr "Field group scheduled for." - -#: includes/admin/post-types/admin-field-group.php:69 -msgid "Field group submitted." -msgstr "Field group submitted." - -#: includes/admin/post-types/admin-field-group.php:68 -msgid "Field group saved." -msgstr "Field group saved." - -#: includes/admin/post-types/admin-field-group.php:67 -msgid "Field group published." -msgstr "Field group published." - -#: includes/admin/post-types/admin-field-group.php:64 -msgid "Field group deleted." -msgstr "Field group deleted." - -#: includes/admin/post-types/admin-field-group.php:62 -#: includes/admin/post-types/admin-field-group.php:63 -#: includes/admin/post-types/admin-field-group.php:65 -msgid "Field group updated." -msgstr "Field group updated." - -#: includes/admin/admin-tools.php:118 -#: includes/admin/views/global/navigation.php:246 -#: includes/admin/views/tools/tools.php:21 -msgid "Tools" -msgstr "Tools" - -#: includes/locations/abstract-acf-location.php:106 -msgid "is not equal to" -msgstr "is not equal to" - -#: includes/locations/abstract-acf-location.php:105 -msgid "is equal to" -msgstr "is equal to" - -#: includes/locations.php:102 -msgid "Forms" -msgstr "Forms" - -#: includes/admin/post-types/admin-post-type.php:127 includes/locations.php:100 -#: includes/locations/class-acf-location-page.php:22 -#: assets/build/js/acf-internal-post-type.js:175 -#: assets/build/js/acf-internal-post-type.js:249 -msgid "Page" -msgstr "Page" - -#: includes/admin/post-types/admin-post-type.php:125 includes/locations.php:99 -#: includes/locations/class-acf-location-post.php:22 -#: assets/build/js/acf-internal-post-type.js:172 -#: assets/build/js/acf-internal-post-type.js:246 -msgid "Post" -msgstr "Post" - -#: includes/fields.php:354 -msgid "Relational" -msgstr "Relational" - -#: includes/fields.php:353 -msgid "Choice" -msgstr "Choice" - -#: includes/fields.php:351 -msgid "Basic" -msgstr "Basic" - -#: includes/fields.php:320 -msgid "Unknown" -msgstr "Unknown" - -#: includes/fields.php:320 -msgid "Field type does not exist" -msgstr "Field type does not exist" - -#: includes/forms/form-front.php:236 -msgid "Spam Detected" -msgstr "Spam Detected" - -#: includes/forms/form-front.php:107 -msgid "Post updated" -msgstr "Post updated" - -#: includes/forms/form-front.php:106 -msgid "Update" -msgstr "Update" - -#: includes/forms/form-front.php:57 -msgid "Validate Email" -msgstr "Validate Email" - -#: includes/fields.php:352 includes/forms/form-front.php:49 -msgid "Content" -msgstr "Content" - -#: includes/admin/views/acf-post-type/advanced-settings.php:21 -#: includes/forms/form-front.php:40 -msgid "Title" -msgstr "Title" - -#: includes/assets.php:372 includes/forms/form-comment.php:160 -#: assets/build/js/acf-input.js:7382 assets/build/js/acf-input.js:7968 -msgid "Edit field group" -msgstr "Edit field group" - -#: includes/admin/post-types/admin-field-group.php:117 -#: assets/build/js/acf-input.js:1125 assets/build/js/acf-input.js:1230 -msgid "Selection is less than" -msgstr "Selection is less than" - -#: includes/admin/post-types/admin-field-group.php:116 -#: assets/build/js/acf-input.js:1106 assets/build/js/acf-input.js:1202 -msgid "Selection is greater than" -msgstr "Selection is greater than" - -#: includes/admin/post-types/admin-field-group.php:115 -#: assets/build/js/acf-input.js:1075 assets/build/js/acf-input.js:1170 -msgid "Value is less than" -msgstr "Value is less than" - -#: includes/admin/post-types/admin-field-group.php:114 -#: assets/build/js/acf-input.js:1045 assets/build/js/acf-input.js:1139 -msgid "Value is greater than" -msgstr "Value is greater than" - -#: includes/admin/post-types/admin-field-group.php:113 -#: assets/build/js/acf-input.js:888 assets/build/js/acf-input.js:960 -msgid "Value contains" -msgstr "Value contains" - -#: includes/admin/post-types/admin-field-group.php:112 -#: assets/build/js/acf-input.js:862 assets/build/js/acf-input.js:926 -msgid "Value matches pattern" -msgstr "Value matches pattern" - -#: includes/admin/post-types/admin-field-group.php:111 -#: assets/build/js/acf-input.js:840 assets/build/js/acf-input.js:1023 -#: assets/build/js/acf-input.js:903 assets/build/js/acf-input.js:1116 -msgid "Value is not equal to" -msgstr "Value is not equal to" - -#: includes/admin/post-types/admin-field-group.php:110 -#: assets/build/js/acf-input.js:810 assets/build/js/acf-input.js:964 -#: assets/build/js/acf-input.js:864 assets/build/js/acf-input.js:1053 -msgid "Value is equal to" -msgstr "Value is equal to" - -#: includes/admin/post-types/admin-field-group.php:109 -#: assets/build/js/acf-input.js:788 assets/build/js/acf-input.js:841 -msgid "Has no value" -msgstr "Has no value" - -#: includes/admin/post-types/admin-field-group.php:108 -#: assets/build/js/acf-input.js:758 assets/build/js/acf-input.js:783 -msgid "Has any value" -msgstr "Has any value" - -#: includes/admin/admin-internal-post-type.php:345 -#: includes/admin/views/browse-fields-modal.php:62 includes/assets.php:353 -#: assets/build/js/acf.js:1564 assets/build/js/acf.js:1658 -msgid "Cancel" -msgstr "Cancel" - -#: includes/assets.php:349 assets/build/js/acf.js:1738 -#: assets/build/js/acf.js:1855 -msgid "Are you sure?" -msgstr "Are you sure?" - -#: includes/assets.php:369 assets/build/js/acf-input.js:9442 -#: assets/build/js/acf-input.js:10294 -msgid "%d fields require attention" -msgstr "%d fields require attention" - -#: includes/assets.php:368 assets/build/js/acf-input.js:9440 -#: assets/build/js/acf-input.js:10290 -msgid "1 field requires attention" -msgstr "1 field requires attention" - -#: includes/assets.php:367 includes/validation.php:288 -#: includes/validation.php:298 assets/build/js/acf-input.js:9435 -#: assets/build/js/acf-input.js:10285 -msgid "Validation failed" -msgstr "Validation failed" - -#: includes/assets.php:366 assets/build/js/acf-input.js:9603 -#: assets/build/js/acf-input.js:10473 -msgid "Validation successful" -msgstr "Validation successful" - -#: includes/media.php:54 assets/build/js/acf-input.js:7210 -#: assets/build/js/acf-input.js:7772 -msgid "Restricted" -msgstr "Restricted" - -#: includes/media.php:53 assets/build/js/acf-input.js:7025 -#: assets/build/js/acf-input.js:7536 -msgid "Collapse Details" -msgstr "Collapse Details" - -#: includes/media.php:52 assets/build/js/acf-input.js:7025 -#: assets/build/js/acf-input.js:7533 -msgid "Expand Details" -msgstr "Expand Details" - -#: includes/admin/views/acf-post-type/advanced-settings.php:465 -#: includes/media.php:51 assets/build/js/acf-input.js:6892 -#: assets/build/js/acf-input.js:7381 -msgid "Uploaded to this post" -msgstr "Uploaded to this post" - -#: includes/media.php:50 assets/build/js/acf-input.js:6931 -#: assets/build/js/acf-input.js:7420 -msgctxt "verb" -msgid "Update" -msgstr "Update" - -#: includes/media.php:49 -msgctxt "verb" -msgid "Edit" -msgstr "Edit" - -#: includes/assets.php:363 assets/build/js/acf-input.js:9212 -#: assets/build/js/acf-input.js:10056 -msgid "The changes you made will be lost if you navigate away from this page" -msgstr "The changes you made will be lost if you navigate away from this page" - -#: includes/api/api-helpers.php:3395 -msgid "File type must be %s." -msgstr "File type must be %s." - -#: includes/admin/post-types/admin-field-group.php:102 -#: includes/admin/views/acf-field-group/conditional-logic.php:59 -#: includes/admin/views/acf-field-group/conditional-logic.php:169 -#: includes/admin/views/acf-field-group/location-group.php:3 -#: includes/admin/views/acf-field-group/locations.php:36 -#: includes/api/api-helpers.php:3391 assets/build/js/acf-field-group.js:771 -#: assets/build/js/acf-field-group.js:2385 -#: assets/build/js/acf-field-group.js:933 -#: assets/build/js/acf-field-group.js:2807 -msgid "or" -msgstr "or" - -#: includes/api/api-helpers.php:3364 -msgid "File size must not exceed %s." -msgstr "File size must not exceed %s." - -#: includes/api/api-helpers.php:3359 -msgid "File size must be at least %s." -msgstr "File size must be at least %s." - -#: includes/api/api-helpers.php:3344 -msgid "Image height must not exceed %dpx." -msgstr "Image height must not exceed %dpx." - -#: includes/api/api-helpers.php:3339 -msgid "Image height must be at least %dpx." -msgstr "Image height must be at least %dpx." - -#: includes/api/api-helpers.php:3325 -msgid "Image width must not exceed %dpx." -msgstr "Image width must not exceed %dpx." - -#: includes/api/api-helpers.php:3320 -msgid "Image width must be at least %dpx." -msgstr "Image width must be at least %dpx." - -#: includes/api/api-helpers.php:1561 includes/api/api-term.php:147 -msgid "(no title)" -msgstr "(no title)" - -#: includes/api/api-helpers.php:853 -msgid "Full Size" -msgstr "Full Size" - -#: includes/api/api-helpers.php:812 -msgid "Large" -msgstr "Large" - -#: includes/api/api-helpers.php:811 -msgid "Medium" -msgstr "Medium" - -#: includes/api/api-helpers.php:810 -msgid "Thumbnail" -msgstr "Thumbnail" - -#: includes/acf-field-functions.php:854 -#: includes/admin/post-types/admin-field-group.php:99 -#: assets/build/js/acf-field-group.js:1077 -#: assets/build/js/acf-field-group.js:1260 -msgid "(no label)" -msgstr "(no label)" - -#: includes/fields/class-acf-field-textarea.php:145 -msgid "Sets the textarea height" -msgstr "Sets the textarea height" - -#: includes/fields/class-acf-field-textarea.php:144 -msgid "Rows" -msgstr "Rows" - -#: includes/fields/class-acf-field-textarea.php:25 -msgid "Text Area" -msgstr "Text Area" - -#: includes/fields/class-acf-field-checkbox.php:451 -msgid "Prepend an extra checkbox to toggle all choices" -msgstr "Prepend an extra checkbox to toggle all choices" - -#: includes/fields/class-acf-field-checkbox.php:413 -msgid "Save 'custom' values to the field's choices" -msgstr "Save 'custom' values to the field's choices" - -#: includes/fields/class-acf-field-checkbox.php:402 -msgid "Allow 'custom' values to be added" -msgstr "Allow 'custom' values to be added" - -#: includes/fields/class-acf-field-checkbox.php:38 -msgid "Add new choice" -msgstr "Add new choice" - -#: includes/fields/class-acf-field-checkbox.php:174 -msgid "Toggle All" -msgstr "Toggle All" - -#: includes/fields/class-acf-field-page_link.php:506 -msgid "Allow Archives URLs" -msgstr "Allow Archives URLs" - -#: includes/fields/class-acf-field-page_link.php:179 -msgid "Archives" -msgstr "Archives" - -#: includes/fields/class-acf-field-page_link.php:25 -msgid "Page Link" -msgstr "Page Link" - -#: includes/fields/class-acf-field-taxonomy.php:943 -#: includes/locations/class-acf-location-user-form.php:72 -msgid "Add" -msgstr "Add" - -#: includes/admin/views/acf-field-group/fields.php:53 -#: includes/fields/class-acf-field-taxonomy.php:908 -msgid "Name" -msgstr "Name" - -#: includes/fields/class-acf-field-taxonomy.php:892 -msgid "%s added" -msgstr "%s added" - -#: includes/fields/class-acf-field-taxonomy.php:856 -msgid "%s already exists" -msgstr "%s already exists" - -#: includes/fields/class-acf-field-taxonomy.php:844 -msgid "User unable to add new %s" -msgstr "User unable to add new %s" - -#: includes/fields/class-acf-field-taxonomy.php:742 -msgid "Term ID" -msgstr "Term ID" - -#: includes/fields/class-acf-field-taxonomy.php:741 -msgid "Term Object" -msgstr "Term Object" - -#: includes/fields/class-acf-field-taxonomy.php:726 -msgid "Load value from posts terms" -msgstr "Load value from posts terms" - -#: includes/fields/class-acf-field-taxonomy.php:725 -msgid "Load Terms" -msgstr "Load Terms" - -#: includes/fields/class-acf-field-taxonomy.php:715 -msgid "Connect selected terms to the post" -msgstr "Connect selected terms to the post" - -#: includes/fields/class-acf-field-taxonomy.php:714 -msgid "Save Terms" -msgstr "Save Terms" - -#: includes/fields/class-acf-field-taxonomy.php:704 -msgid "Allow new terms to be created whilst editing" -msgstr "Allow new terms to be created whilst editing" - -#: includes/fields/class-acf-field-taxonomy.php:703 -msgid "Create Terms" -msgstr "Create Terms" - -#: includes/fields/class-acf-field-taxonomy.php:762 -msgid "Radio Buttons" -msgstr "Radio Buttons" - -#: includes/fields/class-acf-field-taxonomy.php:761 -msgid "Single Value" -msgstr "Single Value" - -#: includes/fields/class-acf-field-taxonomy.php:759 -msgid "Multi Select" -msgstr "Multi Select" - -#: includes/fields/class-acf-field-checkbox.php:25 -#: includes/fields/class-acf-field-taxonomy.php:758 -msgid "Checkbox" -msgstr "Checkbox" - -#: includes/fields/class-acf-field-taxonomy.php:757 -msgid "Multiple Values" -msgstr "Multiple Values" - -#: includes/fields/class-acf-field-taxonomy.php:752 -msgid "Select the appearance of this field" -msgstr "Select the appearance of this field" - -#: includes/fields/class-acf-field-taxonomy.php:751 -msgid "Appearance" -msgstr "Appearance" - -#: includes/fields/class-acf-field-taxonomy.php:693 -msgid "Select the taxonomy to be displayed" -msgstr "Select the taxonomy to be displayed" - -#: includes/fields/class-acf-field-taxonomy.php:654 -msgctxt "No Terms" -msgid "No %s" -msgstr "" - -#: includes/fields/class-acf-field-number.php:266 -msgid "Value must be equal to or lower than %d" -msgstr "Value must be equal to or lower than %d" - -#: includes/fields/class-acf-field-number.php:259 -msgid "Value must be equal to or higher than %d" -msgstr "Value must be equal to or higher than %d" - -#: includes/fields/class-acf-field-number.php:244 -msgid "Value must be a number" -msgstr "Value must be a number" - -#: includes/fields/class-acf-field-number.php:25 -msgid "Number" -msgstr "Number" - -#: includes/fields/class-acf-field-radio.php:264 -msgid "Save 'other' values to the field's choices" -msgstr "Save 'other' values to the field's choices" - -#: includes/fields/class-acf-field-radio.php:253 -msgid "Add 'other' choice to allow for custom values" -msgstr "Add 'other' choice to allow for custom values" - -#: includes/admin/views/global/navigation.php:196 -msgid "Other" -msgstr "Other" - -#: includes/fields/class-acf-field-radio.php:25 -msgid "Radio Button" -msgstr "Radio Button" - -#: includes/fields/class-acf-field-accordion.php:107 -msgid "" -"Define an endpoint for the previous accordion to stop. This accordion will " -"not be visible." -msgstr "" -"Define an endpoint for the previous accordion to stop. This accordion will " -"not be visible." - -#: includes/fields/class-acf-field-accordion.php:96 -msgid "Allow this accordion to open without closing others." -msgstr "Allow this accordion to open without closing others." - -#: includes/fields/class-acf-field-accordion.php:95 -msgid "Multi-Expand" -msgstr "" - -#: includes/fields/class-acf-field-accordion.php:85 -msgid "Display this accordion as open on page load." -msgstr "Display this accordion as open on page load." - -#: includes/fields/class-acf-field-accordion.php:84 -msgid "Open" -msgstr "Open" - -#: includes/fields/class-acf-field-accordion.php:25 -msgid "Accordion" -msgstr "Accordion" - -#: includes/fields/class-acf-field-file.php:267 -#: includes/fields/class-acf-field-file.php:279 -msgid "Restrict which files can be uploaded" -msgstr "Restrict which files can be uploaded" - -#: includes/fields/class-acf-field-file.php:220 -msgid "File ID" -msgstr "File ID" - -#: includes/fields/class-acf-field-file.php:219 -msgid "File URL" -msgstr "File URL" - -#: includes/fields/class-acf-field-file.php:218 -msgid "File Array" -msgstr "File Array" - -#: includes/fields/class-acf-field-file.php:186 -msgid "Add File" -msgstr "Add File" - -#: includes/admin/tools/class-acf-admin-tool-import.php:156 -#: includes/fields/class-acf-field-file.php:186 -msgid "No file selected" -msgstr "No file selected" - -#: includes/fields/class-acf-field-file.php:150 -msgid "File name" -msgstr "File name" - -#: includes/fields/class-acf-field-file.php:63 -#: assets/build/js/acf-input.js:2474 assets/build/js/acf-input.js:2625 -msgid "Update File" -msgstr "Update File" - -#: includes/fields/class-acf-field-file.php:62 -#: assets/build/js/acf-input.js:2473 assets/build/js/acf-input.js:2624 -msgid "Edit File" -msgstr "Edit File" - -#: includes/admin/tools/class-acf-admin-tool-import.php:58 -#: includes/fields/class-acf-field-file.php:61 -#: assets/build/js/acf-input.js:2447 assets/build/js/acf-input.js:2597 -msgid "Select File" -msgstr "Select File" - -#: includes/fields/class-acf-field-file.php:25 -msgid "File" -msgstr "File" - -#: includes/fields/class-acf-field-password.php:25 -msgid "Password" -msgstr "Password" - -#: includes/fields/class-acf-field-select.php:392 -msgid "Specify the value returned" -msgstr "Specify the value returned" - -#: includes/fields/class-acf-field-select.php:461 -msgid "Use AJAX to lazy load choices?" -msgstr "Use AJAX to lazy load choices?" - -#: includes/fields/class-acf-field-checkbox.php:362 -#: includes/fields/class-acf-field-select.php:381 -msgid "Enter each default value on a new line" -msgstr "Enter each default value on a new line" - -#: includes/fields/class-acf-field-select.php:252 includes/media.php:48 -#: assets/build/js/acf-input.js:6790 assets/build/js/acf-input.js:7266 -msgctxt "verb" -msgid "Select" -msgstr "Select" - -#: includes/fields/class-acf-field-select.php:121 -msgctxt "Select2 JS load_fail" -msgid "Loading failed" -msgstr "Loading failed" - -#: includes/fields/class-acf-field-select.php:120 -msgctxt "Select2 JS searching" -msgid "Searching…" -msgstr "Searching…" - -#: includes/fields/class-acf-field-select.php:119 -msgctxt "Select2 JS load_more" -msgid "Loading more results…" -msgstr "Loading more results…" - -#: includes/fields/class-acf-field-select.php:118 -msgctxt "Select2 JS selection_too_long_n" -msgid "You can only select %d items" -msgstr "You can only select %d items" - -#: includes/fields/class-acf-field-select.php:117 -msgctxt "Select2 JS selection_too_long_1" -msgid "You can only select 1 item" -msgstr "You can only select 1 item" - -#: includes/fields/class-acf-field-select.php:116 -msgctxt "Select2 JS input_too_long_n" -msgid "Please delete %d characters" -msgstr "Please delete %d characters" - -#: includes/fields/class-acf-field-select.php:115 -msgctxt "Select2 JS input_too_long_1" -msgid "Please delete 1 character" -msgstr "Please delete 1 character" - -#: includes/fields/class-acf-field-select.php:114 -msgctxt "Select2 JS input_too_short_n" -msgid "Please enter %d or more characters" -msgstr "Please enter %d or more characters" - -#: includes/fields/class-acf-field-select.php:113 -msgctxt "Select2 JS input_too_short_1" -msgid "Please enter 1 or more characters" -msgstr "Please enter 1 or more characters" - -#: includes/fields/class-acf-field-select.php:112 -msgctxt "Select2 JS matches_0" -msgid "No matches found" -msgstr "No matches found" - -#: includes/fields/class-acf-field-select.php:111 -msgctxt "Select2 JS matches_n" -msgid "%d results are available, use up and down arrow keys to navigate." -msgstr "%d results are available, use up and down arrow keys to navigate." - -#: includes/fields/class-acf-field-select.php:110 -msgctxt "Select2 JS matches_1" -msgid "One result is available, press enter to select it." -msgstr "One result is available, press enter to select it." - -#: includes/fields/class-acf-field-select.php:25 -#: includes/fields/class-acf-field-taxonomy.php:763 -msgctxt "noun" -msgid "Select" -msgstr "Select" - -#: includes/fields/class-acf-field-user.php:73 -msgid "User ID" -msgstr "User ID" - -#: includes/fields/class-acf-field-user.php:72 -msgid "User Object" -msgstr "User Object" - -#: includes/fields/class-acf-field-user.php:71 -msgid "User Array" -msgstr "User Array" - -#: includes/fields/class-acf-field-user.php:59 -msgid "All user roles" -msgstr "All user roles" - -#: includes/fields/class-acf-field-user.php:51 -msgid "Filter by Role" -msgstr "" - -#: includes/fields/class-acf-field-user.php:15 includes/locations.php:101 -msgid "User" -msgstr "User" - -#: includes/fields/class-acf-field-separator.php:25 -msgid "Separator" -msgstr "Separator" - -#: includes/fields/class-acf-field-color_picker.php:75 -msgid "Select Color" -msgstr "Select Colour" - -#: includes/admin/post-types/admin-post-type.php:129 -#: includes/admin/post-types/admin-taxonomy.php:131 -#: includes/fields/class-acf-field-color_picker.php:73 -#: assets/build/js/acf-internal-post-type.js:72 -#: assets/build/js/acf-internal-post-type.js:86 -msgid "Default" -msgstr "Default" - -#: includes/admin/views/acf-post-type/advanced-settings.php:89 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:141 -#: includes/fields/class-acf-field-color_picker.php:71 -msgid "Clear" -msgstr "Clear" - -#: includes/fields/class-acf-field-color_picker.php:25 -msgid "Color Picker" -msgstr "Colour Picker" - -#: includes/fields/class-acf-field-date_time_picker.php:88 -msgctxt "Date Time Picker JS pmTextShort" -msgid "P" -msgstr "P" - -#: includes/fields/class-acf-field-date_time_picker.php:87 -msgctxt "Date Time Picker JS pmText" -msgid "PM" -msgstr "PM" - -#: includes/fields/class-acf-field-date_time_picker.php:84 -msgctxt "Date Time Picker JS amTextShort" -msgid "A" -msgstr "A" - -#: includes/fields/class-acf-field-date_time_picker.php:83 -msgctxt "Date Time Picker JS amText" -msgid "AM" -msgstr "AM" - -#: includes/fields/class-acf-field-date_time_picker.php:81 -msgctxt "Date Time Picker JS selectText" -msgid "Select" -msgstr "Select" - -#: includes/fields/class-acf-field-date_time_picker.php:80 -msgctxt "Date Time Picker JS closeText" -msgid "Done" -msgstr "Done" - -#: includes/fields/class-acf-field-date_time_picker.php:79 -msgctxt "Date Time Picker JS currentText" -msgid "Now" -msgstr "Now" - -#: includes/fields/class-acf-field-date_time_picker.php:78 -msgctxt "Date Time Picker JS timezoneText" -msgid "Time Zone" -msgstr "Time Zone" - -#: includes/fields/class-acf-field-date_time_picker.php:77 -msgctxt "Date Time Picker JS microsecText" -msgid "Microsecond" -msgstr "Microsecond" - -#: includes/fields/class-acf-field-date_time_picker.php:76 -msgctxt "Date Time Picker JS millisecText" -msgid "Millisecond" -msgstr "Millisecond" - -#: includes/fields/class-acf-field-date_time_picker.php:75 -msgctxt "Date Time Picker JS secondText" -msgid "Second" -msgstr "Second" - -#: includes/fields/class-acf-field-date_time_picker.php:74 -msgctxt "Date Time Picker JS minuteText" -msgid "Minute" -msgstr "Minute" - -#: includes/fields/class-acf-field-date_time_picker.php:73 -msgctxt "Date Time Picker JS hourText" -msgid "Hour" -msgstr "Hour" - -#: includes/fields/class-acf-field-date_time_picker.php:72 -msgctxt "Date Time Picker JS timeText" -msgid "Time" -msgstr "Time" - -#: includes/fields/class-acf-field-date_time_picker.php:71 -msgctxt "Date Time Picker JS timeOnlyTitle" -msgid "Choose Time" -msgstr "Choose Time" - -#: includes/fields/class-acf-field-date_time_picker.php:25 -msgid "Date Time Picker" -msgstr "Date Time Picker" - -#: includes/fields/class-acf-field-accordion.php:106 -msgid "Endpoint" -msgstr "Endpoint" - -#: includes/admin/views/acf-field-group/options.php:130 -#: includes/fields/class-acf-field-tab.php:115 -msgid "Left aligned" -msgstr "Left aligned" - -#: includes/admin/views/acf-field-group/options.php:129 -#: includes/fields/class-acf-field-tab.php:114 -msgid "Top aligned" -msgstr "Top aligned" - -#: includes/fields/class-acf-field-tab.php:110 -msgid "Placement" -msgstr "Placement" - -#: includes/fields/class-acf-field-tab.php:26 -msgid "Tab" -msgstr "Tab" - -#: includes/fields/class-acf-field-url.php:162 -msgid "Value must be a valid URL" -msgstr "Value must be a valid URL" - -#: includes/fields/class-acf-field-link.php:177 -msgid "Link URL" -msgstr "Link URL" - -#: includes/fields/class-acf-field-link.php:176 -msgid "Link Array" -msgstr "Link Array" - -#: includes/fields/class-acf-field-link.php:145 -msgid "Opens in a new window/tab" -msgstr "Opens in a new window/tab" - -#: includes/fields/class-acf-field-link.php:140 -msgid "Select Link" -msgstr "Select Link" - -#: includes/fields/class-acf-field-link.php:25 -msgid "Link" -msgstr "Link" - -#: includes/fields/class-acf-field-email.php:25 -msgid "Email" -msgstr "Email" - -#: includes/fields/class-acf-field-number.php:188 -#: includes/fields/class-acf-field-range.php:217 -msgid "Step Size" -msgstr "Step Size" - -#: includes/fields/class-acf-field-number.php:158 -#: includes/fields/class-acf-field-range.php:195 -msgid "Maximum Value" -msgstr "Maximum Value" - -#: includes/fields/class-acf-field-number.php:148 -#: includes/fields/class-acf-field-range.php:184 -msgid "Minimum Value" -msgstr "Minimum Value" - -#: includes/fields/class-acf-field-range.php:25 -msgid "Range" -msgstr "Range" - -#: includes/fields/class-acf-field-button-group.php:175 -#: includes/fields/class-acf-field-checkbox.php:379 -#: includes/fields/class-acf-field-radio.php:220 -#: includes/fields/class-acf-field-select.php:399 -msgid "Both (Array)" -msgstr "Both (Array)" - -#: includes/admin/views/acf-field-group/fields.php:52 -#: includes/fields/class-acf-field-button-group.php:174 -#: includes/fields/class-acf-field-checkbox.php:378 -#: includes/fields/class-acf-field-radio.php:219 -#: includes/fields/class-acf-field-select.php:398 -msgid "Label" -msgstr "Label" - -#: includes/fields/class-acf-field-button-group.php:173 -#: includes/fields/class-acf-field-checkbox.php:377 -#: includes/fields/class-acf-field-radio.php:218 -#: includes/fields/class-acf-field-select.php:397 -msgid "Value" -msgstr "Value" - -#: includes/fields/class-acf-field-button-group.php:222 -#: includes/fields/class-acf-field-checkbox.php:441 -#: includes/fields/class-acf-field-radio.php:292 -msgid "Vertical" -msgstr "Vertical" - -#: includes/fields/class-acf-field-button-group.php:221 -#: includes/fields/class-acf-field-checkbox.php:442 -#: includes/fields/class-acf-field-radio.php:293 -msgid "Horizontal" -msgstr "Horizontal" - -#: includes/fields/class-acf-field-button-group.php:148 -#: includes/fields/class-acf-field-checkbox.php:352 -#: includes/fields/class-acf-field-radio.php:193 -#: includes/fields/class-acf-field-select.php:370 -msgid "red : Red" -msgstr "red : Red" - -#: includes/fields/class-acf-field-button-group.php:148 -#: includes/fields/class-acf-field-checkbox.php:352 -#: includes/fields/class-acf-field-radio.php:193 -#: includes/fields/class-acf-field-select.php:370 -msgid "For more control, you may specify both a value and label like this:" -msgstr "For more control, you may specify both a value and label like this:" - -#: includes/fields/class-acf-field-button-group.php:148 -#: includes/fields/class-acf-field-checkbox.php:352 -#: includes/fields/class-acf-field-radio.php:193 -#: includes/fields/class-acf-field-select.php:370 -msgid "Enter each choice on a new line." -msgstr "Enter each choice on a new line." - -#: includes/fields/class-acf-field-button-group.php:147 -#: includes/fields/class-acf-field-checkbox.php:351 -#: includes/fields/class-acf-field-radio.php:192 -#: includes/fields/class-acf-field-select.php:369 -msgid "Choices" -msgstr "Choices" - -#: includes/fields/class-acf-field-button-group.php:24 -msgid "Button Group" -msgstr "Button Group" - -#: includes/fields/class-acf-field-button-group.php:194 -#: includes/fields/class-acf-field-page_link.php:538 -#: includes/fields/class-acf-field-post_object.php:448 -#: includes/fields/class-acf-field-radio.php:238 -#: includes/fields/class-acf-field-select.php:429 -#: includes/fields/class-acf-field-taxonomy.php:772 -#: includes/fields/class-acf-field-user.php:103 -msgid "Allow Null" -msgstr "" - -#: includes/fields/class-acf-field-page_link.php:263 -#: includes/fields/class-acf-field-post_object.php:257 -#: includes/fields/class-acf-field-taxonomy.php:930 -msgid "Parent" -msgstr "Parent" - -#: includes/fields/class-acf-field-wysiwyg.php:390 -msgid "TinyMCE will not be initialized until field is clicked" -msgstr "TinyMCE will not be initialised until field is clicked" - -#: includes/fields/class-acf-field-wysiwyg.php:389 -msgid "Delay Initialization" -msgstr "" - -#: includes/fields/class-acf-field-wysiwyg.php:378 -msgid "Show Media Upload Buttons" -msgstr "" - -#: includes/fields/class-acf-field-wysiwyg.php:362 -msgid "Toolbar" -msgstr "Toolbar" - -#: includes/fields/class-acf-field-wysiwyg.php:354 -msgid "Text Only" -msgstr "Text Only" - -#: includes/fields/class-acf-field-wysiwyg.php:353 -msgid "Visual Only" -msgstr "Visual Only" - -#: includes/fields/class-acf-field-wysiwyg.php:352 -msgid "Visual & Text" -msgstr "Visual & Text" - -#: includes/fields/class-acf-field-wysiwyg.php:347 -msgid "Tabs" -msgstr "Tabs" - -#: includes/fields/class-acf-field-wysiwyg.php:285 -msgid "Click to initialize TinyMCE" -msgstr "Click to initialise TinyMCE" - -#: includes/fields/class-acf-field-wysiwyg.php:279 -msgctxt "Name for the Text editor tab (formerly HTML)" -msgid "Text" -msgstr "Text" - -#: includes/fields/class-acf-field-wysiwyg.php:278 -msgid "Visual" -msgstr "Visual" - -#: includes/fields/class-acf-field-text.php:189 -#: includes/fields/class-acf-field-textarea.php:236 -msgid "Value must not exceed %d characters" -msgstr "Value must not exceed %d characters" - -#: includes/fields/class-acf-field-text.php:124 -#: includes/fields/class-acf-field-textarea.php:124 -msgid "Leave blank for no limit" -msgstr "Leave blank for no limit" - -#: includes/fields/class-acf-field-text.php:123 -#: includes/fields/class-acf-field-textarea.php:123 -msgid "Character Limit" -msgstr "Character Limit" - -#: includes/fields/class-acf-field-email.php:158 -#: includes/fields/class-acf-field-number.php:209 -#: includes/fields/class-acf-field-password.php:105 -#: includes/fields/class-acf-field-range.php:239 -#: includes/fields/class-acf-field-text.php:164 -msgid "Appears after the input" -msgstr "Appears after the input" - -#: includes/fields/class-acf-field-email.php:157 -#: includes/fields/class-acf-field-number.php:208 -#: includes/fields/class-acf-field-password.php:104 -#: includes/fields/class-acf-field-range.php:238 -#: includes/fields/class-acf-field-text.php:163 -msgid "Append" -msgstr "Append" - -#: includes/fields/class-acf-field-email.php:148 -#: includes/fields/class-acf-field-number.php:199 -#: includes/fields/class-acf-field-password.php:95 -#: includes/fields/class-acf-field-range.php:229 -#: includes/fields/class-acf-field-text.php:154 -msgid "Appears before the input" -msgstr "Appears before the input" - -#: includes/fields/class-acf-field-email.php:147 -#: includes/fields/class-acf-field-number.php:198 -#: includes/fields/class-acf-field-password.php:94 -#: includes/fields/class-acf-field-range.php:228 -#: includes/fields/class-acf-field-text.php:153 -msgid "Prepend" -msgstr "Prepend" - -#: includes/fields/class-acf-field-email.php:138 -#: includes/fields/class-acf-field-number.php:179 -#: includes/fields/class-acf-field-password.php:85 -#: includes/fields/class-acf-field-text.php:144 -#: includes/fields/class-acf-field-textarea.php:156 -#: includes/fields/class-acf-field-url.php:122 -msgid "Appears within the input" -msgstr "Appears within the input" - -#: includes/fields/class-acf-field-email.php:137 -#: includes/fields/class-acf-field-number.php:178 -#: includes/fields/class-acf-field-password.php:84 -#: includes/fields/class-acf-field-text.php:143 -#: includes/fields/class-acf-field-textarea.php:155 -#: includes/fields/class-acf-field-url.php:121 -msgid "Placeholder Text" -msgstr "Placeholder Text" - -#: includes/fields/class-acf-field-button-group.php:158 -#: includes/fields/class-acf-field-email.php:118 -#: includes/fields/class-acf-field-number.php:129 -#: includes/fields/class-acf-field-radio.php:203 -#: includes/fields/class-acf-field-range.php:165 -#: includes/fields/class-acf-field-text.php:104 -#: includes/fields/class-acf-field-textarea.php:104 -#: includes/fields/class-acf-field-url.php:102 -#: includes/fields/class-acf-field-wysiwyg.php:312 -msgid "Appears when creating a new post" -msgstr "Appears when creating a new post" - -#: includes/fields/class-acf-field-text.php:25 -msgid "Text" -msgstr "Text" - -#: includes/fields/class-acf-field-relationship.php:794 -msgid "%1$s requires at least %2$s selection" -msgid_plural "%1$s requires at least %2$s selections" -msgstr[0] "%1$s requires at least %2$s selection" -msgstr[1] "%1$s requires at least %2$s selections" - -#: includes/fields/class-acf-field-post_object.php:417 -#: includes/fields/class-acf-field-relationship.php:644 -msgid "Post ID" -msgstr "Post ID" - -#: includes/fields/class-acf-field-post_object.php:17 -#: includes/fields/class-acf-field-post_object.php:416 -#: includes/fields/class-acf-field-relationship.php:643 -msgid "Post Object" -msgstr "Post Object" - -#: includes/fields/class-acf-field-relationship.php:676 -msgid "Maximum Posts" -msgstr "" - -#: includes/fields/class-acf-field-relationship.php:666 -msgid "Minimum Posts" -msgstr "" - -#: includes/admin/views/acf-field-group/options.php:183 -#: includes/admin/views/acf-post-type/advanced-settings.php:29 -#: includes/fields/class-acf-field-relationship.php:701 -msgid "Featured Image" -msgstr "Featured image" - -#: includes/fields/class-acf-field-relationship.php:697 -msgid "Selected elements will be displayed in each result" -msgstr "Selected elements will be displayed in each result" - -#: includes/fields/class-acf-field-relationship.php:696 -msgid "Elements" -msgstr "Elements" - -#: includes/fields/class-acf-field-relationship.php:630 -#: includes/fields/class-acf-field-taxonomy.php:20 -#: includes/fields/class-acf-field-taxonomy.php:692 -#: includes/locations/class-acf-location-taxonomy.php:22 -msgid "Taxonomy" -msgstr "Taxonomy" - -#: includes/fields/class-acf-field-relationship.php:629 -#: includes/locations/class-acf-location-post-type.php:22 -#: includes/post-types/class-acf-post-type.php:92 -msgid "Post Type" -msgstr "Post Type" - -#: includes/fields/class-acf-field-relationship.php:623 -msgid "Filters" -msgstr "Filters" - -#: includes/fields/class-acf-field-page_link.php:499 -#: includes/fields/class-acf-field-post_object.php:404 -#: includes/fields/class-acf-field-relationship.php:616 -msgid "All taxonomies" -msgstr "All taxonomies" - -#: includes/fields/class-acf-field-page_link.php:491 -#: includes/fields/class-acf-field-post_object.php:396 -#: includes/fields/class-acf-field-relationship.php:608 -msgid "Filter by Taxonomy" -msgstr "Filter by Taxonomy" - -#: includes/fields/class-acf-field-page_link.php:469 -#: includes/fields/class-acf-field-post_object.php:374 -#: includes/fields/class-acf-field-relationship.php:586 -msgid "All post types" -msgstr "All post types" - -#: includes/fields/class-acf-field-page_link.php:461 -#: includes/fields/class-acf-field-post_object.php:366 -#: includes/fields/class-acf-field-relationship.php:578 -msgid "Filter by Post Type" -msgstr "Filter by Post Type" - -#: includes/fields/class-acf-field-relationship.php:476 -msgid "Search..." -msgstr "Search..." - -#: includes/fields/class-acf-field-relationship.php:406 -msgid "Select taxonomy" -msgstr "Select taxonomy" - -#: includes/fields/class-acf-field-relationship.php:397 -msgid "Select post type" -msgstr "Select post type" - -#: includes/fields/class-acf-field-relationship.php:61 -#: assets/build/js/acf-input.js:3930 assets/build/js/acf-input.js:4214 -msgid "No matches found" -msgstr "No matches found" - -#: includes/fields/class-acf-field-relationship.php:60 -#: assets/build/js/acf-input.js:3913 assets/build/js/acf-input.js:4193 -msgid "Loading" -msgstr "Loading" - -#: includes/fields/class-acf-field-relationship.php:59 -#: assets/build/js/acf-input.js:3818 assets/build/js/acf-input.js:4084 -msgid "Maximum values reached ( {max} values )" -msgstr "Maximum values reached ( {max} values )" - -#: includes/fields/class-acf-field-relationship.php:17 -msgid "Relationship" -msgstr "Relationship" - -#: includes/fields/class-acf-field-file.php:291 -#: includes/fields/class-acf-field-image.php:317 -msgid "Comma separated list. Leave blank for all types" -msgstr "Comma separated list. Leave blank for all types" - -#: includes/fields/class-acf-field-file.php:290 -#: includes/fields/class-acf-field-image.php:316 -msgid "Allowed File Types" -msgstr "" - -#: includes/fields/class-acf-field-file.php:278 -#: includes/fields/class-acf-field-image.php:280 -msgid "Maximum" -msgstr "Maximum" - -#: includes/fields/class-acf-field-file.php:154 -#: includes/fields/class-acf-field-file.php:270 -#: includes/fields/class-acf-field-file.php:282 -#: includes/fields/class-acf-field-image.php:271 -#: includes/fields/class-acf-field-image.php:307 -msgid "File size" -msgstr "File size" - -#: includes/fields/class-acf-field-image.php:245 -#: includes/fields/class-acf-field-image.php:281 -msgid "Restrict which images can be uploaded" -msgstr "Restrict which images can be uploaded" - -#: includes/fields/class-acf-field-file.php:266 -#: includes/fields/class-acf-field-image.php:244 -msgid "Minimum" -msgstr "Minimum" - -#: includes/fields/class-acf-field-file.php:235 -#: includes/fields/class-acf-field-image.php:210 -msgid "Uploaded to post" -msgstr "Uploaded to post" - -#: includes/fields/class-acf-field-file.php:234 -#: includes/fields/class-acf-field-image.php:209 -#: includes/locations/class-acf-location-attachment.php:73 -#: includes/locations/class-acf-location-comment.php:61 -#: includes/locations/class-acf-location-nav-menu.php:74 -#: includes/locations/class-acf-location-taxonomy.php:63 -#: includes/locations/class-acf-location-user-form.php:71 -#: includes/locations/class-acf-location-user-role.php:78 -#: includes/locations/class-acf-location-widget.php:65 -msgid "All" -msgstr "All" - -#: includes/fields/class-acf-field-file.php:229 -#: includes/fields/class-acf-field-image.php:204 -msgid "Limit the media library choice" -msgstr "Limit the media library choice" - -#: includes/fields/class-acf-field-file.php:228 -#: includes/fields/class-acf-field-image.php:203 -msgid "Library" -msgstr "Library" - -#: includes/fields/class-acf-field-image.php:336 -msgid "Preview Size" -msgstr "Preview Size" - -#: includes/fields/class-acf-field-image.php:195 -msgid "Image ID" -msgstr "Image ID" - -#: includes/fields/class-acf-field-image.php:194 -msgid "Image URL" -msgstr "Image URL" - -#: includes/fields/class-acf-field-image.php:193 -msgid "Image Array" -msgstr "Image Array" - -#: includes/fields/class-acf-field-button-group.php:168 -#: includes/fields/class-acf-field-checkbox.php:372 -#: includes/fields/class-acf-field-file.php:213 -#: includes/fields/class-acf-field-link.php:171 -#: includes/fields/class-acf-field-radio.php:213 -msgid "Specify the returned value on front end" -msgstr "Specify the returned value on front end" - -#: includes/fields/class-acf-field-button-group.php:167 -#: includes/fields/class-acf-field-checkbox.php:371 -#: includes/fields/class-acf-field-file.php:212 -#: includes/fields/class-acf-field-link.php:170 -#: includes/fields/class-acf-field-radio.php:212 -#: includes/fields/class-acf-field-taxonomy.php:736 -msgid "Return Value" -msgstr "Return Value" - -#: includes/fields/class-acf-field-image.php:162 -msgid "Add Image" -msgstr "Add Image" - -#: includes/fields/class-acf-field-image.php:162 -msgid "No image selected" -msgstr "No image selected" - -#: includes/assets.php:352 includes/fields/class-acf-field-file.php:162 -#: includes/fields/class-acf-field-image.php:142 -#: includes/fields/class-acf-field-link.php:145 assets/build/js/acf.js:1563 -#: assets/build/js/acf.js:1657 -msgid "Remove" -msgstr "Remove" - -#: includes/admin/views/acf-field-group/field.php:76 -#: includes/fields/class-acf-field-file.php:160 -#: includes/fields/class-acf-field-image.php:140 -#: includes/fields/class-acf-field-link.php:145 -msgid "Edit" -msgstr "Edit" - -#: includes/fields/class-acf-field-image.php:70 includes/media.php:55 -#: assets/build/js/acf-input.js:6837 assets/build/js/acf-input.js:7320 -msgid "All images" -msgstr "All images" - -#: includes/fields/class-acf-field-image.php:69 -#: assets/build/js/acf-input.js:3181 assets/build/js/acf-input.js:3399 -msgid "Update Image" -msgstr "Update Image" - -#: includes/fields/class-acf-field-image.php:68 -#: assets/build/js/acf-input.js:3180 assets/build/js/acf-input.js:3398 -msgid "Edit Image" -msgstr "Edit Image" - -#: includes/fields/class-acf-field-image.php:67 -#: assets/build/js/acf-input.js:3156 assets/build/js/acf-input.js:3373 -msgid "Select Image" -msgstr "Select Image" - -#: includes/fields/class-acf-field-image.php:25 -msgid "Image" -msgstr "Image" - -#: includes/fields/class-acf-field-message.php:125 -msgid "Allow HTML markup to display as visible text instead of rendering" -msgstr "Allow HTML markup to display as visible text instead of rendering" - -#: includes/fields/class-acf-field-message.php:124 -msgid "Escape HTML" -msgstr "Escape HTML" - -#: includes/fields/class-acf-field-message.php:116 -#: includes/fields/class-acf-field-textarea.php:172 -msgid "No Formatting" -msgstr "No Formatting" - -#: includes/fields/class-acf-field-message.php:115 -#: includes/fields/class-acf-field-textarea.php:171 -msgid "Automatically add <br>" -msgstr "Automatically add <br>" - -#: includes/fields/class-acf-field-message.php:114 -#: includes/fields/class-acf-field-textarea.php:170 -msgid "Automatically add paragraphs" -msgstr "Automatically add paragraphs" - -#: includes/fields/class-acf-field-message.php:110 -#: includes/fields/class-acf-field-textarea.php:166 -msgid "Controls how new lines are rendered" -msgstr "Controls how new lines are rendered" - -#: includes/fields/class-acf-field-message.php:109 -#: includes/fields/class-acf-field-textarea.php:165 -msgid "New Lines" -msgstr "New Lines" - -#: includes/fields/class-acf-field-date_picker.php:232 -#: includes/fields/class-acf-field-date_time_picker.php:220 -msgid "Week Starts On" -msgstr "Week Starts On" - -#: includes/fields/class-acf-field-date_picker.php:201 -msgid "The format used when saving a value" -msgstr "The format used when saving a value" - -#: includes/fields/class-acf-field-date_picker.php:200 -msgid "Save Format" -msgstr "Save Format" - -#: includes/fields/class-acf-field-date_picker.php:67 -msgctxt "Date Picker JS weekHeader" -msgid "Wk" -msgstr "Wk" - -#: includes/fields/class-acf-field-date_picker.php:66 -msgctxt "Date Picker JS prevText" -msgid "Prev" -msgstr "Prev" - -#: includes/fields/class-acf-field-date_picker.php:65 -msgctxt "Date Picker JS nextText" -msgid "Next" -msgstr "Next" - -#: includes/fields/class-acf-field-date_picker.php:64 -msgctxt "Date Picker JS currentText" -msgid "Today" -msgstr "Today" - -#: includes/fields/class-acf-field-date_picker.php:63 -msgctxt "Date Picker JS closeText" -msgid "Done" -msgstr "Done" - -#: includes/fields/class-acf-field-date_picker.php:25 -msgid "Date Picker" -msgstr "Date Picker" - -#: includes/fields/class-acf-field-image.php:248 -#: includes/fields/class-acf-field-image.php:284 -#: includes/fields/class-acf-field-oembed.php:268 -msgid "Width" -msgstr "Width" - -#: includes/fields/class-acf-field-oembed.php:265 -#: includes/fields/class-acf-field-oembed.php:277 -msgid "Embed Size" -msgstr "Embed Size" - -#: includes/fields/class-acf-field-oembed.php:222 -msgid "Enter URL" -msgstr "Enter URL" - -#: includes/fields/class-acf-field-oembed.php:25 -msgid "oEmbed" -msgstr "oEmbed" - -#: includes/fields/class-acf-field-true_false.php:184 -msgid "Text shown when inactive" -msgstr "Text shown when inactive" - -#: includes/fields/class-acf-field-true_false.php:183 -msgid "Off Text" -msgstr "Off Text" - -#: includes/fields/class-acf-field-true_false.php:168 -msgid "Text shown when active" -msgstr "Text shown when active" - -#: includes/fields/class-acf-field-true_false.php:167 -msgid "On Text" -msgstr "On Text" - -#: includes/fields/class-acf-field-select.php:450 -#: includes/fields/class-acf-field-true_false.php:199 -msgid "Stylized UI" -msgstr "" - -#: includes/fields/class-acf-field-button-group.php:157 -#: includes/fields/class-acf-field-checkbox.php:361 -#: includes/fields/class-acf-field-color_picker.php:156 -#: includes/fields/class-acf-field-email.php:117 -#: includes/fields/class-acf-field-number.php:128 -#: includes/fields/class-acf-field-radio.php:202 -#: includes/fields/class-acf-field-range.php:164 -#: includes/fields/class-acf-field-select.php:380 -#: includes/fields/class-acf-field-text.php:103 -#: includes/fields/class-acf-field-textarea.php:103 -#: includes/fields/class-acf-field-true_false.php:147 -#: includes/fields/class-acf-field-url.php:101 -#: includes/fields/class-acf-field-wysiwyg.php:311 -msgid "Default Value" -msgstr "Default Value" - -#: includes/fields/class-acf-field-true_false.php:138 -msgid "Displays text alongside the checkbox" -msgstr "Displays text alongside the checkbox" - -#: includes/fields/class-acf-field-message.php:26 -#: includes/fields/class-acf-field-message.php:99 -#: includes/fields/class-acf-field-true_false.php:137 -msgid "Message" -msgstr "Message" - -#: includes/assets.php:351 includes/fields/class-acf-field-true_false.php:86 -#: includes/fields/class-acf-field-true_false.php:187 -#: assets/build/js/acf.js:1740 assets/build/js/acf.js:1857 -msgid "No" -msgstr "No" - -#: includes/assets.php:350 includes/fields/class-acf-field-true_false.php:83 -#: includes/fields/class-acf-field-true_false.php:171 -#: assets/build/js/acf.js:1739 assets/build/js/acf.js:1856 -msgid "Yes" -msgstr "Yes" - -#: includes/fields/class-acf-field-true_false.php:25 -msgid "True / False" -msgstr "True / False" - -#: includes/fields/class-acf-field-group.php:474 -msgid "Row" -msgstr "Row" - -#: includes/fields/class-acf-field-group.php:473 -msgid "Table" -msgstr "Table" - -#: includes/admin/post-types/admin-field-group.php:140 -#: includes/fields/class-acf-field-group.php:472 -msgid "Block" -msgstr "Block" - -#: includes/fields/class-acf-field-group.php:467 -msgid "Specify the style used to render the selected fields" -msgstr "Specify the style used to render the selected fields" - -#: includes/fields.php:356 includes/fields/class-acf-field-button-group.php:215 -#: includes/fields/class-acf-field-checkbox.php:435 -#: includes/fields/class-acf-field-group.php:466 -#: includes/fields/class-acf-field-radio.php:286 -msgid "Layout" -msgstr "Layout" - -#: includes/fields/class-acf-field-group.php:450 -msgid "Sub Fields" -msgstr "Sub Fields" - -#: includes/fields/class-acf-field-group.php:25 -msgid "Group" -msgstr "Group" - -#: includes/fields/class-acf-field-google-map.php:235 -msgid "Customize the map height" -msgstr "Customise the map height" - -#: includes/fields/class-acf-field-google-map.php:234 -#: includes/fields/class-acf-field-image.php:259 -#: includes/fields/class-acf-field-image.php:295 -#: includes/fields/class-acf-field-oembed.php:280 -msgid "Height" -msgstr "Height" - -#: includes/fields/class-acf-field-google-map.php:223 -msgid "Set the initial zoom level" -msgstr "Set the initial zoom level" - -#: includes/fields/class-acf-field-google-map.php:222 -msgid "Zoom" -msgstr "Zoom" - -#: includes/fields/class-acf-field-google-map.php:196 -#: includes/fields/class-acf-field-google-map.php:209 -msgid "Center the initial map" -msgstr "Centre the initial map" - -#: includes/fields/class-acf-field-google-map.php:195 -#: includes/fields/class-acf-field-google-map.php:208 -msgid "Center" -msgstr "Centre" - -#: includes/fields/class-acf-field-google-map.php:163 -msgid "Search for address..." -msgstr "Search for address..." - -#: includes/fields/class-acf-field-google-map.php:160 -msgid "Find current location" -msgstr "Find current location" - -#: includes/fields/class-acf-field-google-map.php:159 -msgid "Clear location" -msgstr "Clear location" - -#: includes/fields/class-acf-field-google-map.php:158 -#: includes/fields/class-acf-field-relationship.php:628 -msgid "Search" -msgstr "Search" - -#: includes/fields/class-acf-field-google-map.php:63 -#: assets/build/js/acf-input.js:2840 assets/build/js/acf-input.js:3026 -msgid "Sorry, this browser does not support geolocation" -msgstr "Sorry, this browser does not support geolocation" - -#: includes/fields/class-acf-field-google-map.php:25 -msgid "Google Map" -msgstr "Google Map" - -#: includes/fields/class-acf-field-date_picker.php:212 -#: includes/fields/class-acf-field-date_time_picker.php:201 -#: includes/fields/class-acf-field-time_picker.php:132 -msgid "The format returned via template functions" -msgstr "The format returned via template functions" - -#: includes/fields/class-acf-field-color_picker.php:180 -#: includes/fields/class-acf-field-date_picker.php:211 -#: includes/fields/class-acf-field-date_time_picker.php:200 -#: includes/fields/class-acf-field-image.php:187 -#: includes/fields/class-acf-field-post_object.php:411 -#: includes/fields/class-acf-field-relationship.php:638 -#: includes/fields/class-acf-field-select.php:391 -#: includes/fields/class-acf-field-time_picker.php:131 -#: includes/fields/class-acf-field-user.php:66 -msgid "Return Format" -msgstr "Return Format" - -#: includes/fields/class-acf-field-date_picker.php:190 -#: includes/fields/class-acf-field-date_picker.php:221 -#: includes/fields/class-acf-field-date_time_picker.php:192 -#: includes/fields/class-acf-field-date_time_picker.php:210 -#: includes/fields/class-acf-field-time_picker.php:123 -#: includes/fields/class-acf-field-time_picker.php:139 -msgid "Custom:" -msgstr "Custom:" - -#: includes/fields/class-acf-field-date_picker.php:182 -#: includes/fields/class-acf-field-date_time_picker.php:183 -#: includes/fields/class-acf-field-time_picker.php:116 -msgid "The format displayed when editing a post" -msgstr "The format displayed when editing a post" - -#: includes/fields/class-acf-field-date_picker.php:181 -#: includes/fields/class-acf-field-date_time_picker.php:182 -#: includes/fields/class-acf-field-time_picker.php:115 -msgid "Display Format" -msgstr "Display Format" - -#: includes/fields/class-acf-field-time_picker.php:25 -msgid "Time Picker" -msgstr "Time Picker" - -#. translators: counts for inactive field groups -#: acf.php:503 -msgid "Inactive (%s)" -msgid_plural "Inactive (%s)" -msgstr[0] "" -msgstr[1] "" - -#: acf.php:462 -msgid "No Fields found in Trash" -msgstr "No Fields found in Bin" - -#: acf.php:461 -msgid "No Fields found" -msgstr "No Fields found" - -#: acf.php:460 -msgid "Search Fields" -msgstr "Search Fields" - -#: acf.php:459 -msgid "View Field" -msgstr "View Field" - -#: acf.php:458 includes/admin/views/acf-field-group/fields.php:115 -msgid "New Field" -msgstr "New Field" - -#: acf.php:457 -msgid "Edit Field" -msgstr "Edit Field" - -#: acf.php:456 -msgid "Add New Field" -msgstr "Add New Field" - -#: acf.php:454 -msgid "Field" -msgstr "Field" - -#: acf.php:453 includes/admin/post-types/admin-field-group.php:163 -#: includes/admin/post-types/admin-field-groups.php:119 -#: includes/admin/views/acf-field-group/fields.php:32 -msgid "Fields" -msgstr "Fields" - -#: acf.php:428 -msgid "No Field Groups found in Trash" -msgstr "No Field Groups found in Bin" - -#: acf.php:427 -msgid "No Field Groups found" -msgstr "No Field Groups found" - -#: acf.php:426 -msgid "Search Field Groups" -msgstr "Search Field Groups" - -#: acf.php:425 -msgid "View Field Group" -msgstr "View Field Group" - -#: acf.php:424 -msgid "New Field Group" -msgstr "New Field Group" - -#: acf.php:423 -msgid "Edit Field Group" -msgstr "Edit Field Group" - -#: acf.php:422 -msgid "Add New Field Group" -msgstr "Add New Field Group" - -#: acf.php:421 acf.php:455 -#: includes/admin/views/acf-post-type/advanced-settings.php:219 -#: includes/admin/views/acf-post-type/advanced-settings.php:221 -#: includes/post-types/class-acf-post-type.php:93 -#: includes/post-types/class-acf-taxonomy.php:92 -msgid "Add New" -msgstr "Add New" - -#: acf.php:420 -msgid "Field Group" -msgstr "Field Group" - -#: acf.php:419 includes/admin/post-types/admin-field-groups.php:78 -#: includes/admin/post-types/admin-post-types.php:138 -#: includes/admin/post-types/admin-taxonomies.php:138 -msgid "Field Groups" -msgstr "Field Groups" - -#. Description of the plugin -msgid "Customize WordPress with powerful, professional and intuitive fields." -msgstr "Customise WordPress with powerful, professional and intuitive fields." - -#. Plugin URI of the plugin -msgid "https://www.advancedcustomfields.com" -msgstr "https://www.advancedcustomfields.com" - -#. Plugin Name of the plugin -#: acf.php:94 -msgid "Advanced Custom Fields" -msgstr "Advanced Custom Fields" diff --git a/lang/acf-es_CO.mo b/lang/acf-es_CO.mo deleted file mode 100644 index 97d11be..0000000 Binary files a/lang/acf-es_CO.mo and /dev/null differ diff --git a/lang/acf-es_CO.po b/lang/acf-es_CO.po deleted file mode 100644 index 4cab6b3..0000000 --- a/lang/acf-es_CO.po +++ /dev/null @@ -1,5604 +0,0 @@ -# Advanced Custom Fields Translations are a combination of translate.wordpress.org contributions, -# combined with user contributed strings for the PRO version. -# Translations from translate.wordpress.org take priority over translations in this file. -# translate.wordpress.org contributions are synced at the time of each release. -# -# If you would like to contribute translations, please visit -# https://translate.wordpress.org/projects/wp-plugins/advanced-custom-fields/stable/ -# -# For additional ACF PRO strings, please submit a pull request over on the ACF GitHub repo at -# http://github.com/advancedcustomfields/acf using the .pot (and any existing .po) files in /lang/pro/ -# -# This file is distributed under the same license as Advanced Custom Fields. -msgid "" -msgstr "" -"PO-Revision-Date: 2023-11-28T09:14:32+00:00\n" -"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n" -"Language: es_CO\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: gettext\n" -"Project-Id-Version: Advanced Custom Fields\n" - -#: includes/admin/views/global/navigation.php:221 -msgid "Renew ACF PRO License" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:17 -msgid "Renew License" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:14 -msgid "Manage License" -msgstr "" - -#: includes/admin/views/acf-field-group/options.php:102 -msgid "'High' position not supported in the Block Editor" -msgstr "" - -#: includes/admin/views/options-page-preview.php:30 -msgid "Upgrade to ACF PRO" -msgstr "" - -#. translators: %s URL to ACF options pages documentation -#: includes/admin/views/options-page-preview.php:7 -msgid "" -"ACF options pages are custom admin " -"pages for managing global settings via fields. You can create multiple pages " -"and sub-pages." -msgstr "" - -#: includes/admin/views/global/header.php:35 -msgid "Add Options Page" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:703 -msgid "In the editor used as the placeholder of the title." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:702 -msgid "Title Placeholder" -msgstr "" - -#: includes/admin/views/global/navigation.php:97 -msgid "4 Months Free" -msgstr "" - -#. translators: %s - A singular label for a post type or taxonomy. -#: includes/admin/views/global/form-top.php:56 -msgid " (Duplicated from %s)" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:298 -msgid "Select Options Pages" -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:107 -msgid "Duplicate taxonomy" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:106 -#: includes/admin/post-types/admin-taxonomy.php:106 -msgid "Create taxonomy" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:105 -msgid "Duplicate post type" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:104 -#: includes/admin/post-types/admin-taxonomy.php:108 -msgid "Create post type" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:103 -#: includes/admin/post-types/admin-taxonomy.php:105 -msgid "Link field groups" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:102 -#: includes/admin/post-types/admin-taxonomy.php:104 -msgid "Add fields" -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:121 -#: assets/build/js/acf-field-group.js:2753 -#: assets/build/js/acf-field-group.js:3236 -msgid "This Field" -msgstr "" - -#: includes/admin/admin.php:267 -msgid "ACF PRO" -msgstr "" - -#: includes/admin/admin.php:265 -msgid "Feedback" -msgstr "" - -#: includes/admin/admin.php:263 -msgid "Support" -msgstr "" - -#. translators: This text is prepended by a link to ACF's website, and appended -#. by a link to WP Engine's website. -#: includes/admin/admin.php:238 -msgid "is developed and maintained by" -msgstr "" - -#. translators: %s - either "post type" or "taxonomy" -#: includes/admin/admin-internal-post-type.php:321 -msgid "Add this %s to the location rules of the selected field groups." -msgstr "" - -#. translators: %s the URL to ACF's bidirectional relationship documentation -#: includes/acf-bidirectional-functions.php:271 -msgid "" -"Enabling the bidirectional setting allows you to update a value in the " -"target fields for each value selected for this field, adding or removing the " -"Post ID, Taxonomy ID or User ID of the item being updated. For more " -"information, please read the documentation." -msgstr "" - -#: includes/acf-bidirectional-functions.php:247 -msgid "" -"Select field(s) to store the reference back to the item being updated. You " -"may select this field. Target fields must be compatible with where this " -"field is being displayed. For example, if this field is displayed on a " -"Taxonomy, your target field should be of type Taxonomy" -msgstr "" - -#: includes/acf-bidirectional-functions.php:246 -msgid "Target Field" -msgstr "" - -#: includes/acf-bidirectional-functions.php:220 -msgid "Update a field on the selected values, referencing back to this ID" -msgstr "" - -#: includes/acf-bidirectional-functions.php:219 -msgid "Bidirectional" -msgstr "" - -#. translators: %s A field type name, such as "Relationship" -#: includes/acf-bidirectional-functions.php:192 -msgid "%s Field" -msgstr "" - -#: includes/fields/class-acf-field-page_link.php:517 -#: includes/fields/class-acf-field-post_object.php:426 -#: includes/fields/class-acf-field-select.php:407 -#: includes/fields/class-acf-field-user.php:82 -msgid "Select Multiple" -msgstr "" - -#: includes/admin/views/global/navigation.php:233 -msgid "WP Engine logo" -msgstr "" - -#: includes/admin/views/acf-taxonomy/basic-settings.php:58 -msgid "Lower case letters, underscores and dashes only, Max 32 characters." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1136 -msgid "The capability name for assigning terms of this taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1135 -msgid "Assign Terms Capability" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1119 -msgid "The capability name for deleting terms of this taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1118 -msgid "Delete Terms Capability" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1102 -msgid "The capability name for editing terms of this taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1101 -msgid "Edit Terms Capability" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1085 -msgid "The capability name for managing terms of this taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1084 -msgid "Manage Terms Capability" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:886 -msgid "" -"Sets whether posts should be excluded from search results and taxonomy " -"archive pages." -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:74 -msgid "More Tools from WP Engine" -msgstr "" - -#. translators: %s - WP Engine logo -#: includes/admin/views/acf-field-group/pro-features.php:69 -msgid "Built for those that build with WordPress, by the team at %s" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:6 -msgid "View Pricing & Upgrade" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:3 -#: includes/admin/views/options-page-preview.php:29 -msgid "Learn More" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:28 -msgid "" -"Speed up your workflow and develop better websites with features like ACF " -"Blocks and Options Pages, and sophisticated field types like Repeater, " -"Flexible Content, Clone, and Gallery." -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:2 -msgid "Unlock Advanced Features and Build Even More with ACF PRO" -msgstr "" - -#. translators: %s - singular label of post type/taxonomy, i.e. "Movie"/"Genre" -#: includes/admin/views/global/form-top.php:19 -msgid "%s fields" -msgstr "" - -#: includes/admin/post-types/admin-taxonomies.php:293 -msgid "No terms" -msgstr "" - -#: includes/admin/post-types/admin-taxonomies.php:266 -msgid "No post types" -msgstr "" - -#: includes/admin/post-types/admin-post-types.php:289 -msgid "No posts" -msgstr "" - -#: includes/admin/post-types/admin-post-types.php:263 -msgid "No taxonomies" -msgstr "" - -#: includes/admin/post-types/admin-post-types.php:208 -#: includes/admin/post-types/admin-taxonomies.php:208 -msgid "No field groups" -msgstr "" - -#: includes/admin/post-types/admin-field-groups.php:281 -msgid "No fields" -msgstr "" - -#: includes/admin/post-types/admin-field-groups.php:154 -#: includes/admin/post-types/admin-post-types.php:172 -#: includes/admin/post-types/admin-taxonomies.php:172 -msgid "No description" -msgstr "" - -#: includes/fields/class-acf-field-page_link.php:484 -#: includes/fields/class-acf-field-post_object.php:389 -#: includes/fields/class-acf-field-relationship.php:601 -msgid "Any post status" -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:284 -msgid "" -"This taxonomy key is already in use by another taxonomy registered outside " -"of ACF and cannot be used." -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:279 -msgid "" -"This taxonomy key is already in use by another taxonomy in ACF and cannot be " -"used." -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:252 -msgid "" -"The taxonomy key must only contain lower case alphanumeric characters, " -"underscores or dashes." -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:247 -msgid "The taxonomy key must be under 32 characters." -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:99 -msgid "No Taxonomies found in Trash" -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:98 -msgid "No Taxonomies found" -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:97 -msgid "Search Taxonomies" -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:96 -msgid "View Taxonomy" -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:95 -msgid "New Taxonomy" -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:94 -msgid "Edit Taxonomy" -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:93 -msgid "Add New Taxonomy" -msgstr "" - -#: includes/post-types/class-acf-post-type.php:100 -msgid "No Post Types found in Trash" -msgstr "" - -#: includes/post-types/class-acf-post-type.php:99 -msgid "No Post Types found" -msgstr "" - -#: includes/post-types/class-acf-post-type.php:98 -msgid "Search Post Types" -msgstr "" - -#: includes/post-types/class-acf-post-type.php:97 -msgid "View Post Type" -msgstr "" - -#: includes/post-types/class-acf-post-type.php:96 -msgid "New Post Type" -msgstr "" - -#: includes/post-types/class-acf-post-type.php:95 -msgid "Edit Post Type" -msgstr "" - -#: includes/post-types/class-acf-post-type.php:94 -msgid "Add New Post Type" -msgstr "" - -#: includes/post-types/class-acf-post-type.php:361 -msgid "" -"This post type key is already in use by another post type registered outside " -"of ACF and cannot be used." -msgstr "" - -#: includes/post-types/class-acf-post-type.php:356 -msgid "" -"This post type key is already in use by another post type in ACF and cannot " -"be used." -msgstr "" - -#. translators: %s a link to WordPress.org's Reserved Terms page -#: includes/post-types/class-acf-post-type.php:335 -#: includes/post-types/class-acf-taxonomy.php:258 -msgid "" -"This field must not be a WordPress reserved " -"term." -msgstr "" - -#: includes/post-types/class-acf-post-type.php:329 -msgid "" -"The post type key must only contain lower case alphanumeric characters, " -"underscores or dashes." -msgstr "" - -#: includes/post-types/class-acf-post-type.php:324 -msgid "The post type key must be under 20 characters." -msgstr "" - -#: includes/fields/class-acf-field-wysiwyg.php:27 -msgid "We do not recommend using this field in ACF Blocks." -msgstr "" - -#: includes/fields/class-acf-field-wysiwyg.php:27 -msgid "" -"Displays the WordPress WYSIWYG editor as seen in Posts and Pages allowing " -"for a rich text-editing experience that also allows for multimedia content." -msgstr "" - -#: includes/fields/class-acf-field-wysiwyg.php:25 -msgid "WYSIWYG Editor" -msgstr "" - -#: includes/fields/class-acf-field-user.php:17 -msgid "" -"Allows the selection of one or more users which can be used to create " -"relationships between data objects." -msgstr "" - -#: includes/fields/class-acf-field-url.php:26 -msgid "A text input specifically designed for storing web addresses." -msgstr "" - -#: includes/fields/class-acf-field-url.php:25 -msgid "URL" -msgstr "" - -#: includes/fields/class-acf-field-true_false.php:27 -msgid "" -"A toggle that allows you to pick a value of 1 or 0 (on or off, true or " -"false, etc). Can be presented as a stylized switch or checkbox." -msgstr "" - -#: includes/fields/class-acf-field-time_picker.php:27 -msgid "" -"An interactive UI for picking a time. The time format can be customized " -"using the field settings." -msgstr "" - -#: includes/fields/class-acf-field-textarea.php:26 -msgid "A basic textarea input for storing paragraphs of text." -msgstr "" - -#: includes/fields/class-acf-field-text.php:26 -msgid "A basic text input, useful for storing single string values." -msgstr "" - -#: includes/fields/class-acf-field-taxonomy.php:22 -msgid "" -"Allows the selection of one or more taxonomy terms based on the criteria and " -"options specified in the fields settings." -msgstr "" - -#: includes/fields/class-acf-field-tab.php:28 -msgid "" -"Allows you to group fields into tabbed sections in the edit screen. Useful " -"for keeping fields organized and structured." -msgstr "" - -#: includes/fields/class-acf-field-select.php:27 -msgid "A dropdown list with a selection of choices that you specify." -msgstr "" - -#: includes/fields/class-acf-field-relationship.php:19 -msgid "" -"A dual-column interface to select one or more posts, pages, or custom post " -"type items to create a relationship with the item that you're currently " -"editing. Includes options to search and filter." -msgstr "" - -#: includes/fields/class-acf-field-range.php:26 -msgid "" -"An input for selecting a numerical value within a specified range using a " -"range slider element." -msgstr "" - -#: includes/fields/class-acf-field-radio.php:27 -msgid "" -"A group of radio button inputs that allows the user to make a single " -"selection from values that you specify." -msgstr "" - -#: includes/fields/class-acf-field-post_object.php:19 -msgid "" -"An interactive and customizable UI for picking one or many posts, pages or " -"post type items with the option to search. " -msgstr "" - -#: includes/fields/class-acf-field-password.php:26 -msgid "An input for providing a password using a masked field." -msgstr "" - -#: includes/fields/class-acf-field-page_link.php:476 -#: includes/fields/class-acf-field-post_object.php:381 -#: includes/fields/class-acf-field-relationship.php:593 -msgid "Filter by Post Status" -msgstr "" - -#: includes/fields/class-acf-field-page_link.php:27 -msgid "" -"An interactive dropdown to select one or more posts, pages, custom post type " -"items or archive URLs, with the option to search." -msgstr "" - -#: includes/fields/class-acf-field-oembed.php:27 -msgid "" -"An interactive component for embedding videos, images, tweets, audio and " -"other content by making use of the native WordPress oEmbed functionality." -msgstr "" - -#: includes/fields/class-acf-field-number.php:26 -msgid "An input limited to numerical values." -msgstr "" - -#: includes/fields/class-acf-field-message.php:28 -msgid "" -"Used to display a message to editors alongside other fields. Useful for " -"providing additional context or instructions around your fields." -msgstr "" - -#: includes/fields/class-acf-field-link.php:27 -msgid "" -"Allows you to specify a link and its properties such as title and target " -"using the WordPress native link picker." -msgstr "" - -#: includes/fields/class-acf-field-image.php:27 -msgid "Uses the native WordPress media picker to upload, or choose images." -msgstr "" - -#: includes/fields/class-acf-field-group.php:27 -msgid "" -"Provides a way to structure fields into groups to better organize the data " -"and the edit screen." -msgstr "" - -#: includes/fields/class-acf-field-google-map.php:27 -msgid "" -"An interactive UI for selecting a location using Google Maps. Requires a " -"Google Maps API key and additional configuration to display correctly." -msgstr "" - -#: includes/fields/class-acf-field-file.php:27 -msgid "Uses the native WordPress media picker to upload, or choose files." -msgstr "" - -#: includes/fields/class-acf-field-email.php:26 -msgid "A text input specifically designed for storing email addresses." -msgstr "" - -#: includes/fields/class-acf-field-date_time_picker.php:27 -msgid "" -"An interactive UI for picking a date and time. The date return format can be " -"customized using the field settings." -msgstr "" - -#: includes/fields/class-acf-field-date_picker.php:27 -msgid "" -"An interactive UI for picking a date. The date return format can be " -"customized using the field settings." -msgstr "" - -#: includes/fields/class-acf-field-color_picker.php:27 -msgid "An interactive UI for selecting a color, or specifying a Hex value." -msgstr "" - -#: includes/fields/class-acf-field-checkbox.php:27 -msgid "" -"A group of checkbox inputs that allow the user to select one, or multiple " -"values that you specify." -msgstr "" - -#: includes/fields/class-acf-field-button-group.php:26 -msgid "" -"A group of buttons with values that you specify, users can choose one option " -"from the values provided." -msgstr "" - -#: includes/fields/class-acf-field-accordion.php:27 -msgid "" -"Allows you to group and organize custom fields into collapsable panels that " -"are shown while editing content. Useful for keeping large datasets tidy." -msgstr "" - -#: includes/fields.php:475 -msgid "" -"This provides a solution for repeating content such as slides, team members, " -"and call-to-action tiles, by acting as a parent to a set of subfields which " -"can be repeated again and again." -msgstr "" - -#: includes/fields.php:465 -msgid "" -"This provides an interactive interface for managing a collection of " -"attachments. Most settings are similar to the Image field type. Additional " -"settings allow you to specify where new attachments are added in the gallery " -"and the minimum/maximum number of attachments allowed." -msgstr "" - -#: includes/fields.php:455 -msgid "" -"This provides a simple, structured, layout-based editor. The Flexible " -"Content field allows you to define, create and manage content with total " -"control by using layouts and subfields to design the available blocks." -msgstr "" - -#: includes/fields.php:445 -msgid "" -"This allows you to select and display existing fields. It does not duplicate " -"any fields in the database, but loads and displays the selected fields at " -"run-time. The Clone field can either replace itself with the selected fields " -"or display the selected fields as a group of subfields." -msgstr "" - -#: includes/fields.php:442 -msgctxt "noun" -msgid "Clone" -msgstr "" - -#: includes/admin/views/global/navigation.php:86 includes/fields.php:357 -msgid "PRO" -msgstr "" - -#: includes/fields.php:355 includes/fields.php:412 -msgid "Advanced" -msgstr "" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:85 -msgid "JSON (newer)" -msgstr "" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:81 -msgid "Original" -msgstr "" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:55 -msgid "Invalid post ID." -msgstr "" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:47 -msgid "Invalid post type selected for review." -msgstr "" - -#: includes/admin/views/global/navigation.php:186 -msgid "More" -msgstr "" - -#: includes/admin/views/browse-fields-modal.php:86 -msgid "Tutorial" -msgstr "" - -#: includes/admin/views/browse-fields-modal.php:75 -msgid "Available with ACF PRO" -msgstr "" - -#: includes/admin/views/browse-fields-modal.php:63 -msgid "Select Field" -msgstr "" - -#. translators: %s: A link to the popular fields used in ACF -#: includes/admin/views/browse-fields-modal.php:50 -msgid "Try a different search term or browse %s" -msgstr "" - -#: includes/admin/views/browse-fields-modal.php:47 -msgid "Popular fields" -msgstr "" - -#. translators: %s: The invalid search term -#: includes/admin/views/browse-fields-modal.php:40 -msgid "No search results for '%s'" -msgstr "" - -#: includes/admin/views/browse-fields-modal.php:13 -msgid "Search fields..." -msgstr "" - -#: includes/admin/views/browse-fields-modal.php:11 -msgid "Select Field Type" -msgstr "" - -#: includes/admin/views/browse-fields-modal.php:4 -msgid "Popular" -msgstr "" - -#: includes/admin/views/acf-taxonomy/list-empty.php:7 -msgid "Add Taxonomy" -msgstr "" - -#: includes/admin/views/acf-taxonomy/list-empty.php:6 -msgid "Create custom taxonomies to classify post type content" -msgstr "" - -#: includes/admin/views/acf-taxonomy/list-empty.php:5 -msgid "Add Your First Taxonomy" -msgstr "" - -#: includes/admin/views/acf-taxonomy/basic-settings.php:122 -msgid "Hierarchical taxonomies can have descendants (like categories)." -msgstr "" - -#: includes/admin/views/acf-taxonomy/basic-settings.php:107 -msgid "Makes a taxonomy visible on the frontend and in the admin dashboard." -msgstr "" - -#: includes/admin/views/acf-taxonomy/basic-settings.php:91 -msgid "One or many post types that can be classified with this taxonomy." -msgstr "" - -#. translators: example taxonomy -#: includes/admin/views/acf-taxonomy/basic-settings.php:60 -msgid "genre" -msgstr "" - -#. translators: example taxonomy -#: includes/admin/views/acf-taxonomy/basic-settings.php:42 -msgid "Genre" -msgstr "" - -#. translators: example taxonomy -#: includes/admin/views/acf-taxonomy/basic-settings.php:25 -msgid "Genres" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1211 -msgid "" -"Optional custom controller to use instead of `WP_REST_Terms_Controller `." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1155 -msgid "Expose this post type in the REST API." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1055 -msgid "Customize the query variable name" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1028 -msgid "" -"Terms can be accessed using the non-pretty permalink, e.g., {query_var}" -"={term_slug}." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:981 -msgid "Parent-child terms in URLs for hierarchical taxonomies." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:941 -msgid "Customize the slug used in the URL" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:924 -msgid "Permalinks for this taxonomy are disabled." -msgstr "" - -#. translators: this string will be appended with the new permalink structure. -#: includes/admin/views/acf-taxonomy/advanced-settings.php:921 -msgid "" -"Rewrite the URL using the taxonomy key as the slug. Your permalink structure " -"will be" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:913 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1030 -#: includes/admin/views/acf-taxonomy/basic-settings.php:57 -msgid "Taxonomy Key" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:911 -msgid "Select the type of permalink to use for this taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:896 -msgid "Display a column for the taxonomy on post type listing screens." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:895 -msgid "Show Admin Column" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:882 -msgid "Show the taxonomy in the quick/bulk edit panel." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:881 -msgid "Quick Edit" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:868 -msgid "List the taxonomy in the Tag Cloud Widget controls." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:867 -msgid "Tag Cloud" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:824 -msgid "" -"A PHP function name to be called for sanitizing taxonomy data saved from a " -"meta box." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:823 -msgid "Meta Box Sanitization Callback" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:805 -msgid "" -"A PHP function name to be called to handle the content of a meta box on your " -"taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:804 -msgid "Register Meta Box Callback" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:763 -msgid "No Meta Box" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:762 -msgid "Custom Meta Box" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:758 -msgid "" -"Controls the meta box on the content editor screen. By default, the " -"Categories meta box is shown for hierarchical taxonomies, and the Tags meta " -"box is shown for non-hierarchical taxonomies." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:757 -msgid "Meta Box" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:746 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:767 -msgid "Categories Meta Box" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:745 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:766 -msgid "Tags Meta Box" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:704 -msgid "A link to a tag" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:703 -msgid "Describes a navigation link block variation used in the block editor." -msgstr "" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:698 -msgid "A link to a %s" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:683 -msgid "Tag Link" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:682 -msgid "" -"Assigns a title for navigation link block variation used in the block editor." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:663 -msgid "← Go to tags" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:662 -msgid "" -"Assigns the text used to link back to the main index after updating a term." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:661 -msgid "Back To Items" -msgstr "" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:657 -msgid "← Go to %s" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:642 -msgid "Tags list" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:641 -msgid "Assigns text to the table hidden heading." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:622 -msgid "Tags list navigation" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:621 -msgid "Assigns text to the table pagination hidden heading." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:597 -msgid "Filter by category" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:596 -msgid "Assigns text to the filter button in the posts lists table." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:595 -msgid "Filter By Item" -msgstr "" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:591 -msgid "Filter by %s" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:575 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:576 -msgid "" -"The description is not prominent by default; however, some themes may show " -"it." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:574 -msgid "Describes the Description field on the Edit Tags screen." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:573 -msgid "Description Field Description" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:554 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:555 -msgid "" -"Assign a parent term to create a hierarchy. The term Jazz, for example, " -"would be the parent of Bebop and Big Band" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:553 -msgid "Describes the Parent field on the Edit Tags screen." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:552 -msgid "Parent Field Description" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:538 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:539 -msgid "" -"The \"slug\" is the URL-friendly version of the name. It is usually all " -"lower case and contains only letters, numbers, and hyphens." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:537 -msgid "Describes the Slug field on the Edit Tags screen." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:536 -msgid "Slug Field Description" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:522 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:523 -msgid "The name is how it appears on your site" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:521 -msgid "Describes the Name field on the Edit Tags screen." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:520 -msgid "Name Field Description" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:507 -msgid "No tags" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:506 -msgid "" -"Assigns the text displayed in the posts and media list tables when no tags " -"or categories are available." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:505 -msgid "No Terms" -msgstr "" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:501 -msgid "No %s" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:486 -msgid "No tags found" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:485 -msgid "" -"Assigns the text displayed when clicking the 'choose from most used' text in " -"the taxonomy meta box when no tags are available, and assigns the text used " -"in the terms list table when there are no items for a taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:484 -msgid "Not Found" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:463 -msgid "Assigns text to the Title field of the Most Used tab." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:462 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:464 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:465 -msgid "Most Used" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:444 -msgid "Choose from the most used tags" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:443 -msgid "" -"Assigns the 'choose from most used' text used in the meta box when " -"JavaScript is disabled. Only used on non-hierarchical taxonomies." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:442 -msgid "Choose From Most Used" -msgstr "" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:438 -msgid "Choose from the most used %s" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:418 -msgid "Add or remove tags" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:417 -msgid "" -"Assigns the add or remove items text used in the meta box when JavaScript is " -"disabled. Only used on non-hierarchical taxonomies" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:416 -msgid "Add Or Remove Items" -msgstr "" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:412 -msgid "Add or remove %s" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:392 -msgid "Separate tags with commas" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:391 -msgid "" -"Assigns the separate item with commas text used in the taxonomy meta box. " -"Only used on non-hierarchical taxonomies." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:390 -msgid "Separate Items With Commas" -msgstr "" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:386 -msgid "Separate %s with commas" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:366 -msgid "Popular Tags" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:365 -msgid "Assigns popular items text. Only used for non-hierarchical taxonomies." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:364 -msgid "Popular Items" -msgstr "" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:361 -msgid "Popular %s" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:347 -msgid "Search Tags" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:346 -msgid "Assigns search items text." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:323 -msgid "Parent Category:" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:322 -msgid "Assigns parent item text, but with a colon (:) added to the end." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:321 -msgid "Parent Item With Colon" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:298 -msgid "Parent Category" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:297 -msgid "Assigns parent item text. Only used on hierarchical taxonomies." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:296 -msgid "Parent Item" -msgstr "" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:293 -msgid "Parent %s" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:278 -msgid "New Tag Name" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:277 -msgid "Assigns the new item name text." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:276 -msgid "New Item Name" -msgstr "" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:273 -msgid "New %s Name" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:258 -msgid "Add New Tag" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:257 -msgid "Assigns the add new item text." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:238 -msgid "Update Tag" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:237 -msgid "Assigns the update item text." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:236 -msgid "Update Item" -msgstr "" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:233 -msgid "Update %s" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:218 -msgid "View Tag" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:217 -msgid "In the admin bar to view term during editing." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:198 -msgid "Edit Tag" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:197 -msgid "At the top of the editor screen when editing a term." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:178 -msgid "All Tags" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:177 -msgid "Assigns the all items text." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:158 -msgid "Assigns the menu name text." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:157 -msgid "Menu Label" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:131 -msgid "Active taxonomies are enabled and registered with WordPress." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:115 -msgid "A descriptive summary of the taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:95 -msgid "A descriptive summary of the term." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:94 -msgid "Term Description" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:76 -msgid "Single word, no spaces. Underscores and dashes allowed." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:75 -msgid "Term Slug" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:56 -msgid "The name of the default term." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:55 -msgid "Term Name" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:41 -msgid "" -"Create a term for the taxonomy that cannot be deleted. It will not be " -"selected for posts by default." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:40 -msgid "Default Term" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:28 -msgid "" -"Whether terms in this taxonomy should be sorted in the order they are " -"provided to `wp_set_object_terms()`." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:27 -msgid "Sort Terms" -msgstr "" - -#: includes/admin/views/acf-post-type/list-empty.php:7 -msgid "Add Post Type" -msgstr "" - -#: includes/admin/views/acf-post-type/list-empty.php:6 -msgid "" -"Expand the functionality of WordPress beyond standard posts and pages with " -"custom post types." -msgstr "" - -#: includes/admin/views/acf-post-type/list-empty.php:5 -msgid "Add Your First Post Type" -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:136 -#: includes/admin/views/acf-taxonomy/basic-settings.php:135 -msgid "I know what I'm doing, show me all the options." -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:135 -#: includes/admin/views/acf-taxonomy/basic-settings.php:134 -msgid "Advanced Configuration" -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:123 -msgid "Hierarchical post types can have descendants (like pages)." -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:122 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:980 -#: includes/admin/views/acf-taxonomy/basic-settings.php:121 -msgid "Hierarchical" -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:107 -msgid "Visible on the frontend and in the admin dashboard." -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:106 -#: includes/admin/views/acf-taxonomy/basic-settings.php:106 -msgid "Public" -msgstr "" - -#. translators: example post type -#: includes/admin/views/acf-post-type/basic-settings.php:59 -msgid "movie" -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:57 -msgid "Lower case letters, underscores and dashes only, Max 20 characters." -msgstr "" - -#. translators: example post type -#: includes/admin/views/acf-post-type/basic-settings.php:41 -msgid "Movie" -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:39 -#: includes/admin/views/acf-taxonomy/basic-settings.php:40 -msgid "Singular Label" -msgstr "" - -#. translators: example post type -#: includes/admin/views/acf-post-type/basic-settings.php:24 -msgid "Movies" -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:22 -#: includes/admin/views/acf-taxonomy/basic-settings.php:23 -msgid "Plural Label" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1270 -msgid "" -"Optional custom controller to use instead of `WP_REST_Posts_Controller`." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1269 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1210 -msgid "Controller Class" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1251 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1191 -msgid "The namespace part of the REST API URL." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1250 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1190 -msgid "Namespace Route" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1232 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1172 -msgid "The base URL for the post type REST API URLs." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1231 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1171 -msgid "Base URL" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1217 -msgid "" -"Exposes this post type in the REST API. Required to use the block editor." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1216 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1154 -msgid "Show In REST API" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1195 -msgid "Customize the query variable name." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1194 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1054 -msgid "Query Variable" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1172 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1032 -msgid "No Query Variable Support" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1171 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1031 -msgid "Custom Query Variable" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1168 -msgid "" -"Items can be accessed using the non-pretty permalink, eg. {post_type}" -"={post_slug}." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1167 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1027 -msgid "Query Variable Support" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1142 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1003 -msgid "URLs for an item and items can be accessed with a query string." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1141 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1002 -msgid "Publicly Queryable" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1120 -msgid "Custom slug for the Archive URL." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1119 -msgid "Archive Slug" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1106 -msgid "" -"Has an item archive that can be customized with an archive template file in " -"your theme." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1105 -msgid "Archive" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1085 -msgid "Pagination support for the items URLs such as the archives." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1084 -msgid "Pagination" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1067 -msgid "RSS feed URL for the post type items." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1066 -msgid "Feed URL" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1048 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:961 -msgid "" -"Alters the permalink structure to add the `WP_Rewrite::$front` prefix to " -"URLs." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1047 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:960 -msgid "Front URL Prefix" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1028 -msgid "Customize the slug used in the URL." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1027 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:940 -msgid "URL Slug" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1011 -msgid "Permalinks for this post type are disabled." -msgstr "" - -#. translators: this string will be appended with the new permalink structure. -#: includes/admin/views/acf-post-type/advanced-settings.php:1010 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:923 -msgid "" -"Rewrite the URL using a custom slug defined in the input below. Your " -"permalink structure will be" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1002 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:915 -msgid "No Permalink (prevent URL rewriting)" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1001 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:914 -msgid "Custom Permalink" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1000 -#: includes/admin/views/acf-post-type/advanced-settings.php:1170 -#: includes/admin/views/acf-post-type/basic-settings.php:56 -msgid "Post Type Key" -msgstr "" - -#. translators: this string will be appended with the new permalink structure. -#: includes/admin/views/acf-post-type/advanced-settings.php:998 -#: includes/admin/views/acf-post-type/advanced-settings.php:1008 -msgid "" -"Rewrite the URL using the post type key as the slug. Your permalink " -"structure will be" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:996 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:910 -msgid "Permalink Rewrite" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:982 -msgid "Delete items by a user when that user is deleted." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:981 -msgid "Delete With User" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:967 -msgid "Allow the post type to be exported from 'Tools' > 'Export'." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:966 -msgid "Can Export" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:935 -msgid "Optionally provide a plural to be used in capabilities." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:934 -msgid "Plural Capability Name" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:916 -msgid "Choose another post type to base the capabilities for this post type." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:915 -msgid "Singular Capability Name" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:901 -msgid "" -"By default the capabilities of the post type will inherit the 'Post' " -"capability names, eg. edit_post, delete_posts. Enable to use post type " -"specific capabilities, eg. edit_{singular}, delete_{plural}." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:900 -msgid "Rename Capabilities" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:885 -msgid "Exclude From Search" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:872 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:854 -msgid "" -"Allow items to be added to menus in the 'Appearance' > 'Menus' screen. Must " -"be turned on in 'Screen options'." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:871 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:853 -msgid "Appearance Menus Support" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:853 -msgid "Appears as an item in the 'New' menu in the admin bar." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:852 -msgid "Show In Admin Bar" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:821 -msgid "" -"A PHP function name to be called when setting up the meta boxes for the edit " -"screen." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:820 -msgid "Custom Meta Box Callback" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:800 -msgid "Menu Icon" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:782 -msgid "The position in the sidebar menu in the admin dashboard." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:781 -msgid "Menu Position" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:763 -msgid "" -"By default the post type will get a new top level item in the admin menu. If " -"an existing top level item is supplied here, the post type will be added as " -"a submenu item under it." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:762 -msgid "Admin Menu Parent" -msgstr "" - -#. translators: %s = "dashicon class name", link to the WordPress dashicon -#. documentation. -#: includes/admin/views/acf-post-type/advanced-settings.php:750 -msgid "" -"The icon used for the post type menu item in the admin dashboard. Can be a " -"URL or %s to use for the icon." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:745 -msgid "Dashicon class name" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:734 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:734 -msgid "Admin editor navigation in the sidebar menu." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:733 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:733 -msgid "Show In Admin Menu" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:720 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:719 -msgid "Items can be edited and managed in the admin dashboard." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:719 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:718 -msgid "Show In UI" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:689 -msgid "A link to a post." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:688 -msgid "Description for a navigation link block variation." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:687 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:702 -msgid "Item Link Description" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:683 -msgid "A link to a %s." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:668 -msgid "Post Link" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:667 -msgid "Title for a navigation link block variation." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:666 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:681 -msgid "Item Link" -msgstr "" - -#. translators: %s Singular form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:663 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:678 -msgid "%s Link" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:648 -msgid "Post updated." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:647 -msgid "In the editor notice after an item is updated." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:646 -msgid "Item Updated" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:643 -msgid "%s updated." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:628 -msgid "Post scheduled." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:627 -msgid "In the editor notice after scheduling an item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:626 -msgid "Item Scheduled" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:623 -msgid "%s scheduled." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:608 -msgid "Post reverted to draft." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:607 -msgid "In the editor notice after reverting an item to draft." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:606 -msgid "Item Reverted To Draft" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:603 -msgid "%s reverted to draft." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:588 -msgid "Post published privately." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:587 -msgid "In the editor notice after publishing a private item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:586 -msgid "Item Published Privately" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:583 -msgid "%s published privately." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:568 -msgid "Post published." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:567 -msgid "In the editor notice after publishing an item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:566 -msgid "Item Published" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:563 -msgid "%s published." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:548 -msgid "Posts list" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:547 -msgid "Used by screen readers for the items list on the post type list screen." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:546 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:640 -msgid "Items List" -msgstr "" - -#. translators: %s Plural form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:543 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:637 -msgid "%s list" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:528 -msgid "Posts list navigation" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:527 -msgid "" -"Used by screen readers for the filter list pagination on the post type list " -"screen." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:526 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:620 -msgid "Items List Navigation" -msgstr "" - -#. translators: %s Plural form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:523 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:617 -msgid "%s list navigation" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:507 -msgid "Filter posts by date" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:506 -msgid "" -"Used by screen readers for the filter by date heading on the post type list " -"screen." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:505 -msgid "Filter Items By Date" -msgstr "" - -#. translators: %s Plural form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:501 -msgid "Filter %s by date" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:486 -msgid "Filter posts list" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:485 -msgid "" -"Used by screen readers for the filter links heading on the post type list " -"screen." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:484 -msgid "Filter Items List" -msgstr "" - -#. translators: %s Plural form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:480 -msgid "Filter %s list" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:464 -msgid "In the media modal showing all media uploaded to this item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:463 -msgid "Uploaded To This Item" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:459 -msgid "Uploaded to this %s" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:444 -msgid "Insert into post" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:443 -msgid "As the button label when adding media to content." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:442 -msgid "Insert Into Media Button" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:438 -msgid "Insert into %s" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:423 -msgid "Use as featured image" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:422 -msgid "" -"As the button label for selecting to use an image as the featured image." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:421 -msgid "Use Featured Image" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:408 -msgid "Remove featured image" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:407 -msgid "As the button label when removing the featured image." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:406 -msgid "Remove Featured Image" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:393 -msgid "Set featured image" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:392 -msgid "As the button label when setting the featured image." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:391 -msgid "Set Featured Image" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:378 -msgid "Featured image" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:377 -msgid "In the editor used for the title of the featured image meta box." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:376 -msgid "Featured Image Meta Box" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:363 -msgid "Post Attributes" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:362 -msgid "In the editor used for the title of the post attributes meta box." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:361 -msgid "Attributes Meta Box" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:358 -msgid "%s Attributes" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:343 -msgid "Post Archives" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:342 -msgid "" -"Adds 'Post Type Archive' items with this label to the list of posts shown " -"when adding items to an existing menu in a CPT with archives enabled. Only " -"appears when editing menus in 'Live Preview' mode and a custom archive slug " -"has been provided." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:341 -msgid "Archives Nav Menu" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:338 -msgid "%s Archives" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:323 -msgid "No posts found in Trash" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:322 -msgid "" -"At the top of the post type list screen when there are no posts in the trash." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:321 -msgid "No Items Found in Trash" -msgstr "" - -#. translators: %s Plural form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:317 -msgid "No %s found in Trash" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:302 -msgid "No posts found" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:301 -msgid "" -"At the top of the post type list screen when there are no posts to display." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:300 -msgid "No Items Found" -msgstr "" - -#. translators: %s Plural form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:296 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:480 -msgid "No %s found" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:281 -msgid "Search Posts" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:280 -msgid "At the top of the items screen when searching for an item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:279 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:345 -msgid "Search Items" -msgstr "" - -#. translators: %s Singular form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:276 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:342 -msgid "Search %s" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:261 -msgid "Parent Page:" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:260 -msgid "For hierarchical types in the post type list screen." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:259 -msgid "Parent Item Prefix" -msgstr "" - -#. translators: %s Singular form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:256 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:318 -msgid "Parent %s:" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:241 -msgid "New Post" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:239 -msgid "New Item" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:236 -msgid "New %s" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:206 -msgid "Add New Post" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:205 -msgid "At the top of the editor screen when adding a new item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:204 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:256 -msgid "Add New Item" -msgstr "" - -#. translators: %s Singular form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:201 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:253 -msgid "Add New %s" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:186 -msgid "View Posts" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:185 -msgid "" -"Appears in the admin bar in the 'All Posts' view, provided the post type " -"supports archives and the home page is not an archive of that post type." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:184 -msgid "View Items" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:166 -msgid "View Post" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:165 -msgid "In the admin bar to view item when editing it." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:164 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:216 -msgid "View Item" -msgstr "" - -#. translators: %s Singular form of post type name -#. translators: %s Plural form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:161 -#: includes/admin/views/acf-post-type/advanced-settings.php:181 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:213 -msgid "View %s" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:146 -msgid "Edit Post" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:145 -msgid "At the top of the editor screen when editing an item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:144 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:196 -msgid "Edit Item" -msgstr "" - -#. translators: %s Singular form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:141 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:193 -msgid "Edit %s" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:126 -msgid "All Posts" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:125 -#: includes/admin/views/acf-post-type/advanced-settings.php:220 -#: includes/admin/views/acf-post-type/advanced-settings.php:240 -msgid "In the post type submenu in the admin dashboard." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:124 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:176 -msgid "All Items" -msgstr "" - -#. translators: %s Plural form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:121 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:173 -msgid "All %s" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:105 -msgid "Admin menu name for the post type." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:104 -msgid "Menu Name" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:90 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:142 -msgid "Regenerate all labels using the Singular and Plural labels" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:88 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:140 -msgid "Regenerate" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:79 -msgid "Active post types are enabled and registered with WordPress." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:63 -msgid "A descriptive summary of the post type." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:48 -msgid "Add Custom" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:42 -msgid "Enable various features in the content editor." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:31 -msgid "Post Formats" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:25 -msgid "Editor" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:24 -msgid "Trackbacks" -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:87 -msgid "Select existing taxonomies to classify items of the post type." -msgstr "" - -#: includes/admin/views/acf-field-group/field.php:145 -msgid "Browse Fields" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:292 -msgid "Nothing to import" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:287 -msgid ". The Custom Post Type UI plugin can be deactivated." -msgstr "" - -#. translators: %d - number of items imported from CPTUI -#: includes/admin/tools/class-acf-admin-tool-import.php:278 -msgid "Imported %d item from Custom Post Type UI -" -msgid_plural "Imported %d items from Custom Post Type UI -" -msgstr[0] "" -msgstr[1] "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:262 -msgid "Failed to import taxonomies." -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:244 -msgid "Failed to import post types." -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:233 -msgid "Nothing from Custom Post Type UI plugin selected for import." -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:209 -msgid "Imported 1 item" -msgid_plural "Imported %s items" -msgstr[0] "" -msgstr[1] "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:122 -msgid "" -"Importing a Post Type or Taxonomy with the same key as one that already " -"exists will overwrite the settings for the existing Post Type or Taxonomy " -"with those of the import." -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:111 -#: includes/admin/tools/class-acf-admin-tool-import.php:127 -msgid "Import from Custom Post Type UI" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:412 -msgid "" -"The following code can be used to register a local version of the selected " -"items. Storing field groups, post types, or taxonomies locally can provide " -"many benefits such as faster load times, version control & dynamic fields/" -"settings. Simply copy and paste the following code to your theme's functions." -"php file or include it within an external file, then deactivate or delete " -"the items from the ACF admin." -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:411 -msgid "Export - Generate PHP" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:384 -msgid "Export" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:276 -msgid "Select Taxonomies" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:254 -msgid "Select Post Types" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:167 -msgid "Exported 1 item." -msgid_plural "Exported %s items." -msgstr[0] "" -msgstr[1] "" - -#: includes/admin/post-types/admin-taxonomy.php:129 -#: assets/build/js/acf-internal-post-type.js:182 -#: assets/build/js/acf-internal-post-type.js:256 -msgid "Category" -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:127 -#: assets/build/js/acf-internal-post-type.js:179 -#: assets/build/js/acf-internal-post-type.js:253 -msgid "Tag" -msgstr "" - -#. translators: %s taxonomy name -#: includes/admin/post-types/admin-taxonomy.php:82 -msgid "%s taxonomy created" -msgstr "" - -#. translators: %s taxonomy name -#: includes/admin/post-types/admin-taxonomy.php:76 -msgid "%s taxonomy updated" -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:56 -msgid "Taxonomy draft updated." -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:55 -msgid "Taxonomy scheduled for." -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:54 -msgid "Taxonomy submitted." -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:53 -msgid "Taxonomy saved." -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:49 -msgid "Taxonomy deleted." -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:48 -msgid "Taxonomy updated." -msgstr "" - -#: includes/admin/post-types/admin-taxonomies.php:377 -#: includes/admin/post-types/admin-taxonomy.php:157 -msgid "" -"This taxonomy could not be registered because its key is in use by another " -"taxonomy registered by another plugin or theme." -msgstr "" - -#. translators: %s number of taxonomies synchronized -#: includes/admin/post-types/admin-taxonomies.php:359 -msgid "Taxonomy synchronized." -msgid_plural "%s taxonomies synchronized." -msgstr[0] "" -msgstr[1] "" - -#. translators: %s number of taxonomies duplicated -#: includes/admin/post-types/admin-taxonomies.php:352 -msgid "Taxonomy duplicated." -msgid_plural "%s taxonomies duplicated." -msgstr[0] "" -msgstr[1] "" - -#. translators: %s number of taxonomies deactivated -#: includes/admin/post-types/admin-taxonomies.php:345 -msgid "Taxonomy deactivated." -msgid_plural "%s taxonomies deactivated." -msgstr[0] "" -msgstr[1] "" - -#. translators: %s number of taxonomies activated -#: includes/admin/post-types/admin-taxonomies.php:338 -msgid "Taxonomy activated." -msgid_plural "%s taxonomies activated." -msgstr[0] "" -msgstr[1] "" - -#: includes/admin/post-types/admin-taxonomies.php:139 -msgid "Terms" -msgstr "" - -#. translators: %s number of post types synchronized -#: includes/admin/post-types/admin-post-types.php:352 -msgid "Post type synchronized." -msgid_plural "%s post types synchronized." -msgstr[0] "" -msgstr[1] "" - -#. translators: %s number of post types duplicated -#: includes/admin/post-types/admin-post-types.php:345 -msgid "Post type duplicated." -msgid_plural "%s post types duplicated." -msgstr[0] "" -msgstr[1] "" - -#. translators: %s number of post types deactivated -#: includes/admin/post-types/admin-post-types.php:338 -msgid "Post type deactivated." -msgid_plural "%s post types deactivated." -msgstr[0] "" -msgstr[1] "" - -#. translators: %s number of post types activated -#: includes/admin/post-types/admin-post-types.php:331 -msgid "Post type activated." -msgid_plural "%s post types activated." -msgstr[0] "" -msgstr[1] "" - -#: includes/admin/post-types/admin-post-types.php:112 -#: includes/admin/post-types/admin-taxonomies.php:137 -#: includes/admin/tools/class-acf-admin-tool-import.php:82 -#: includes/admin/views/acf-taxonomy/basic-settings.php:82 -#: includes/post-types/class-acf-post-type.php:91 -msgid "Post Types" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:162 -#: includes/admin/post-types/admin-taxonomy.php:164 -msgid "Advanced Settings" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:161 -#: includes/admin/post-types/admin-taxonomy.php:163 -msgid "Basic Settings" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:155 -#: includes/admin/post-types/admin-post-types.php:370 -msgid "" -"This post type could not be registered because its key is in use by another " -"post type registered by another plugin or theme." -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:128 -#: assets/build/js/acf-internal-post-type.js:176 -#: assets/build/js/acf-internal-post-type.js:250 -msgid "Pages" -msgstr "" - -#: includes/admin/admin-internal-post-type.php:355 -msgid "Link Existing Field Groups" -msgstr "" - -#. translators: %s post type name -#: includes/admin/post-types/admin-post-type.php:80 -msgid "%s post type created" -msgstr "" - -#. translators: %s taxonomy name -#: includes/admin/post-types/admin-taxonomy.php:78 -msgid "Add fields to %s" -msgstr "" - -#. translators: %s post type name -#: includes/admin/post-types/admin-post-type.php:76 -msgid "%s post type updated" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:56 -msgid "Post type draft updated." -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:55 -msgid "Post type scheduled for." -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:54 -msgid "Post type submitted." -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:53 -msgid "Post type saved." -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:50 -msgid "Post type updated." -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:49 -msgid "Post type deleted." -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:120 -#: assets/build/js/acf-field-group.js:1146 -#: assets/build/js/acf-field-group.js:1366 -msgid "Type to search..." -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:105 -#: assets/build/js/acf-field-group.js:1172 -#: assets/build/js/acf-field-group.js:2319 -#: assets/build/js/acf-field-group.js:1414 -#: assets/build/js/acf-field-group.js:2727 -msgid "PRO Only" -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:97 -#: assets/build/js/acf-internal-post-type.js:308 -#: assets/build/js/acf-internal-post-type.js:417 -msgid "Field groups linked successfully." -msgstr "" - -#. translators: %s - URL to ACF tools page. -#: includes/admin/admin.php:195 -msgid "" -"Import Post Types and Taxonomies registered with Custom Post Type UI and " -"manage them with ACF. Get Started." -msgstr "" - -#: includes/admin/admin.php:48 includes/admin/admin.php:267 -msgid "ACF" -msgstr "" - -#: includes/admin/admin-internal-post-type.php:322 -msgid "taxonomy" -msgstr "" - -#: includes/admin/admin-internal-post-type.php:322 -msgid "post type" -msgstr "" - -#: includes/admin/admin-internal-post-type.php:346 -msgid "Done" -msgstr "" - -#: includes/admin/admin-internal-post-type.php:332 -msgid "Field Group(s)" -msgstr "" - -#: includes/admin/admin-internal-post-type.php:331 -msgid "Select one or many field groups..." -msgstr "" - -#: includes/admin/admin-internal-post-type.php:330 -msgid "Please select the field groups to link." -msgstr "" - -#: includes/admin/admin-internal-post-type.php:288 -msgid "Field group linked successfully." -msgid_plural "Field groups linked successfully." -msgstr[0] "" -msgstr[1] "" - -#: includes/admin/admin-internal-post-type-list.php:261 -#: includes/admin/post-types/admin-post-types.php:371 -#: includes/admin/post-types/admin-taxonomies.php:378 -msgctxt "post status" -msgid "Registration Failed" -msgstr "" - -#: includes/admin/admin-internal-post-type-list.php:260 -msgid "" -"This item could not be registered because its key is in use by another item " -"registered by another plugin or theme." -msgstr "" - -#: includes/acf-internal-post-type-functions.php:482 -#: includes/acf-internal-post-type-functions.php:511 -msgid "REST API" -msgstr "" - -#: includes/acf-internal-post-type-functions.php:481 -#: includes/acf-internal-post-type-functions.php:510 -#: includes/acf-internal-post-type-functions.php:537 -msgid "Permissions" -msgstr "" - -#: includes/acf-internal-post-type-functions.php:480 -#: includes/acf-internal-post-type-functions.php:509 -msgid "URLs" -msgstr "" - -#: includes/acf-internal-post-type-functions.php:479 -#: includes/acf-internal-post-type-functions.php:508 -#: includes/acf-internal-post-type-functions.php:535 -msgid "Visibility" -msgstr "" - -#: includes/acf-internal-post-type-functions.php:478 -#: includes/acf-internal-post-type-functions.php:507 -#: includes/acf-internal-post-type-functions.php:536 -msgid "Labels" -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:269 -msgid "Field Settings Tabs" -msgstr "" - -#. Author URI of the plugin -msgid "" -"https://wpengine.com/?utm_source=wordpress." -"org&utm_medium=referral&utm_campaign=plugin_directory&utm_content=advanced_custom_fields" -msgstr "" - -#: includes/api/api-template.php:867 -msgid "[ACF shortcode value disabled for preview]" -msgstr "" - -#: includes/admin/admin-internal-post-type.php:298 -#: includes/admin/post-types/admin-field-group.php:571 -msgid "Close Modal" -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:96 -#: assets/build/js/acf-field-group.js:1670 -#: assets/build/js/acf-field-group.js:1993 -msgid "Field moved to other group" -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:95 -#: assets/build/js/acf.js:1437 assets/build/js/acf.js:1517 -msgid "Close modal" -msgstr "" - -#: includes/fields/class-acf-field-tab.php:125 -msgid "Start a new group of tabs at this tab." -msgstr "" - -#: includes/fields/class-acf-field-tab.php:124 -msgid "New Tab Group" -msgstr "" - -#: includes/fields/class-acf-field-select.php:451 -#: includes/fields/class-acf-field-true_false.php:200 -msgid "Use a stylized checkbox using select2" -msgstr "" - -#: includes/fields/class-acf-field-radio.php:260 -msgid "Save Other Choice" -msgstr "" - -#: includes/fields/class-acf-field-radio.php:249 -msgid "Allow Other Choice" -msgstr "" - -#: includes/fields/class-acf-field-checkbox.php:450 -msgid "Add Toggle All" -msgstr "" - -#: includes/fields/class-acf-field-checkbox.php:409 -msgid "Save Custom Values" -msgstr "" - -#: includes/fields/class-acf-field-checkbox.php:398 -msgid "Allow Custom Values" -msgstr "" - -#: includes/fields/class-acf-field-checkbox.php:148 -msgid "Checkbox custom values cannot be empty. Uncheck any empty values." -msgstr "" - -#: includes/admin/views/global/navigation.php:248 -msgid "Updates" -msgstr "" - -#: includes/admin/views/global/navigation.php:176 -msgid "Advanced Custom Fields logo" -msgstr "" - -#: includes/admin/views/global/form-top.php:89 -msgid "Save Changes" -msgstr "" - -#: includes/admin/views/global/form-top.php:76 -msgid "Field Group Title" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:704 -#: includes/admin/views/global/form-top.php:3 -msgid "Add title" -msgstr "" - -#. translators: %s url to getting started guide -#: includes/admin/views/acf-field-group/list-empty.php:20 -#: includes/admin/views/acf-post-type/list-empty.php:12 -#: includes/admin/views/acf-taxonomy/list-empty.php:12 -#: includes/admin/views/options-page-preview.php:13 -msgid "" -"New to ACF? Take a look at our getting " -"started guide." -msgstr "" - -#: includes/admin/views/acf-field-group/list-empty.php:15 -msgid "Add Field Group" -msgstr "" - -#. translators: %s url to creating a field group page -#: includes/admin/views/acf-field-group/list-empty.php:10 -msgid "" -"ACF uses field groups to group custom " -"fields together, and then attach those fields to edit screens." -msgstr "" - -#: includes/admin/views/acf-field-group/list-empty.php:5 -msgid "Add Your First Field Group" -msgstr "" - -#: includes/admin/admin-options-pages-preview.php:28 -#: includes/admin/views/acf-field-group/pro-features.php:54 -#: includes/admin/views/global/navigation.php:86 -#: includes/admin/views/global/navigation.php:250 -msgid "Options Pages" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:50 -msgid "ACF Blocks" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:58 -msgid "Gallery Field" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:38 -msgid "Flexible Content Field" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:42 -msgid "Repeater Field" -msgstr "" - -#: includes/admin/views/global/navigation.php:212 -msgid "Unlock Extra Features with ACF PRO" -msgstr "" - -#: includes/admin/views/acf-field-group/options.php:267 -msgid "Delete Field Group" -msgstr "" - -#. translators: 1: Post creation date 2: Post creation time -#: includes/admin/views/acf-field-group/options.php:261 -msgid "Created on %1$s at %2$s" -msgstr "" - -#: includes/acf-field-group-functions.php:497 -msgid "Group Settings" -msgstr "" - -#: includes/acf-field-group-functions.php:495 -msgid "Location Rules" -msgstr "" - -#. translators: %s url to field types list -#: includes/admin/views/acf-field-group/fields.php:72 -msgid "" -"Choose from over 30 field types. Learn " -"more." -msgstr "" - -#: includes/admin/views/acf-field-group/fields.php:65 -msgid "" -"Get started creating new custom fields for your posts, pages, custom post " -"types and other WordPress content." -msgstr "" - -#: includes/admin/views/acf-field-group/fields.php:64 -msgid "Add Your First Field" -msgstr "" - -#. translators: A symbol (or text, if not available in your locale) meaning -#. "Order Number", in terms of positional placement. -#: includes/admin/views/acf-field-group/fields.php:43 -msgid "#" -msgstr "" - -#: includes/admin/views/acf-field-group/fields.php:33 -#: includes/admin/views/acf-field-group/fields.php:67 -#: includes/admin/views/acf-field-group/fields.php:103 -#: includes/admin/views/global/form-top.php:85 -msgid "Add Field" -msgstr "" - -#: includes/acf-field-group-functions.php:496 includes/fields.php:410 -msgid "Presentation" -msgstr "" - -#: includes/fields.php:409 -msgid "Validation" -msgstr "" - -#: includes/acf-internal-post-type-functions.php:477 -#: includes/acf-internal-post-type-functions.php:506 includes/fields.php:408 -msgid "General" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:70 -msgid "Import JSON" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:392 -msgid "Export As JSON" -msgstr "" - -#. translators: %s number of field groups deactivated -#: includes/admin/post-types/admin-field-groups.php:367 -msgid "Field group deactivated." -msgid_plural "%s field groups deactivated." -msgstr[0] "" -msgstr[1] "" - -#. translators: %s number of field groups activated -#: includes/admin/post-types/admin-field-groups.php:360 -msgid "Field group activated." -msgid_plural "%s field groups activated." -msgstr[0] "" -msgstr[1] "" - -#: includes/admin/admin-internal-post-type-list.php:452 -#: includes/admin/admin-internal-post-type-list.php:478 -msgid "Deactivate" -msgstr "" - -#: includes/admin/admin-internal-post-type-list.php:452 -msgid "Deactivate this item" -msgstr "" - -#: includes/admin/admin-internal-post-type-list.php:448 -#: includes/admin/admin-internal-post-type-list.php:477 -msgid "Activate" -msgstr "" - -#: includes/admin/admin-internal-post-type-list.php:448 -msgid "Activate this item" -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:92 -#: assets/build/js/acf-field-group.js:2812 -#: assets/build/js/acf-field-group.js:3313 -msgid "Move field group to trash?" -msgstr "" - -#: acf.php:497 includes/admin/admin-internal-post-type-list.php:248 -#: includes/admin/post-types/admin-field-group.php:297 -#: includes/admin/post-types/admin-post-type.php:295 -#: includes/admin/post-types/admin-taxonomy.php:297 -msgctxt "post status" -msgid "Inactive" -msgstr "" - -#. Author of the plugin -msgid "WP Engine" -msgstr "" - -#: acf.php:555 -msgid "" -"Advanced Custom Fields and Advanced Custom Fields PRO should not be active " -"at the same time. We've automatically deactivated Advanced Custom Fields PRO." -msgstr "" - -#: acf.php:553 -msgid "" -"Advanced Custom Fields and Advanced Custom Fields PRO should not be active " -"at the same time. We've automatically deactivated Advanced Custom Fields." -msgstr "" - -#: includes/acf-value-functions.php:374 -msgid "" -"%1$s - We've detected one or more calls to retrieve ACF " -"field values before ACF has been initialized. This is not supported and can " -"result in malformed or missing data. Learn how to fix this." -msgstr "" -"%1$s - Hemos detectado una o más llamadas para obtener " -"valores de campo de ACF antes de que ACF se haya iniciado. Esto no es " -"compatible y puede ocasionar datos mal formados o faltantes. Aprende cómo corregirlo." - -#: includes/fields/class-acf-field-user.php:551 -msgid "%1$s must have a user with the %2$s role." -msgid_plural "%1$s must have a user with one of the following roles: %2$s" -msgstr[0] "%1$s debe tener un usuario con el perfil %2$s." -msgstr[1] "%1$s debe tener un usuario con uno de los siguientes perfiles: %2$s" - -#: includes/fields/class-acf-field-user.php:542 -msgid "%1$s must have a valid user ID." -msgstr "%1$s debe tener un ID de usuario válido." - -#: includes/fields/class-acf-field-user.php:380 -msgid "Invalid request." -msgstr "Petición no válida." - -#: includes/fields/class-acf-field-select.php:684 -msgid "%1$s is not one of %2$s" -msgstr "%1$s no es ninguna de las siguientes %2$s" - -#: includes/fields/class-acf-field-post_object.php:700 -msgid "%1$s must have term %2$s." -msgid_plural "%1$s must have one of the following terms: %2$s" -msgstr[0] "%1$s debe tener un término %2$s." -msgstr[1] "%1$s debe tener uno de los siguientes términos: %2$s" - -#: includes/fields/class-acf-field-post_object.php:684 -msgid "%1$s must be of post type %2$s." -msgid_plural "%1$s must be of one of the following post types: %2$s" -msgstr[0] "%1$s debe ser del tipo de contenido %2$s." -msgstr[1] "%1$s debe ser de uno de los siguientes tipos de contenido: %2$s" - -#: includes/fields/class-acf-field-post_object.php:675 -msgid "%1$s must have a valid post ID." -msgstr "%1$s debe tener un ID de entrada válido." - -#: includes/fields/class-acf-field-file.php:475 -msgid "%s requires a valid attachment ID." -msgstr "%s necesita un ID de adjunto válido." - -#: includes/admin/views/acf-field-group/options.php:233 -msgid "Show in REST API" -msgstr "Mostrar en la API REST" - -#: includes/fields/class-acf-field-color_picker.php:168 -msgid "Enable Transparency" -msgstr "Activar la transparencia" - -#: includes/fields/class-acf-field-color_picker.php:187 -msgid "RGBA Array" -msgstr "Array RGBA" - -#: includes/fields/class-acf-field-color_picker.php:98 -msgid "RGBA String" -msgstr "Cadena RGBA" - -#: includes/fields/class-acf-field-color_picker.php:97 -#: includes/fields/class-acf-field-color_picker.php:186 -msgid "Hex String" -msgstr "Cadena hexadecimal" - -#: includes/admin/views/browse-fields-modal.php:65 -msgid "Upgrade to PRO" -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:297 -#: includes/admin/post-types/admin-post-type.php:295 -#: includes/admin/post-types/admin-taxonomy.php:297 -msgctxt "post status" -msgid "Active" -msgstr "Activo" - -#: includes/fields/class-acf-field-email.php:181 -msgid "'%s' is not a valid email address" -msgstr "«%s» no es una dirección de correo electrónico válida" - -#: includes/fields/class-acf-field-color_picker.php:76 -msgid "Color value" -msgstr "Valor del color" - -#: includes/fields/class-acf-field-color_picker.php:74 -msgid "Select default color" -msgstr "Seleccionar el color por defecto" - -#: includes/fields/class-acf-field-color_picker.php:72 -msgid "Clear color" -msgstr "Vaciar el color" - -#: includes/acf-wp-functions.php:90 -msgid "Blocks" -msgstr "Bloques" - -#: includes/acf-wp-functions.php:86 -msgid "Options" -msgstr "Opciones" - -#: includes/acf-wp-functions.php:82 -msgid "Users" -msgstr "Usuarios" - -#: includes/acf-wp-functions.php:78 -msgid "Menu items" -msgstr "Elementos del menú" - -#: includes/acf-wp-functions.php:70 -msgid "Widgets" -msgstr "Widgets" - -#: includes/acf-wp-functions.php:62 -msgid "Attachments" -msgstr "Adjuntos" - -#: includes/acf-wp-functions.php:57 -#: includes/admin/post-types/admin-post-types.php:137 -#: includes/admin/post-types/admin-taxonomies.php:112 -#: includes/admin/tools/class-acf-admin-tool-import.php:93 -#: includes/admin/views/acf-post-type/basic-settings.php:86 -#: includes/post-types/class-acf-taxonomy.php:90 -#: includes/post-types/class-acf-taxonomy.php:91 -msgid "Taxonomies" -msgstr "Taxonomías" - -#: includes/acf-wp-functions.php:44 -#: includes/admin/post-types/admin-post-type.php:126 -#: includes/admin/post-types/admin-post-types.php:139 -#: includes/admin/views/acf-post-type/advanced-settings.php:106 -#: assets/build/js/acf-internal-post-type.js:173 -#: assets/build/js/acf-internal-post-type.js:247 -msgid "Posts" -msgstr "Entradas" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:76 -msgid "Last updated: %s" -msgstr "Última actualización: %s" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:70 -msgid "Sorry, this post is unavailable for diff comparison." -msgstr "" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:42 -msgid "Invalid field group parameter(s)." -msgstr "Parámetro(s) de grupo de campos no válido(s)" - -#: includes/admin/admin-internal-post-type-list.php:413 -msgid "Awaiting save" -msgstr "Esperando el guardado" - -#: includes/admin/admin-internal-post-type-list.php:410 -msgid "Saved" -msgstr "Guardado" - -#: includes/admin/admin-internal-post-type-list.php:406 -#: includes/admin/tools/class-acf-admin-tool-import.php:49 -msgid "Import" -msgstr "Importar" - -#: includes/admin/admin-internal-post-type-list.php:402 -msgid "Review changes" -msgstr "Revisar cambios" - -#: includes/admin/admin-internal-post-type-list.php:378 -msgid "Located in: %s" -msgstr "Localizado en: %s" - -#: includes/admin/admin-internal-post-type-list.php:375 -msgid "Located in plugin: %s" -msgstr "Localizado en el plugin: %s" - -#: includes/admin/admin-internal-post-type-list.php:372 -msgid "Located in theme: %s" -msgstr "Localizado en el tema: %s" - -#: includes/admin/post-types/admin-field-groups.php:261 -msgid "Various" -msgstr "Varios" - -#: includes/admin/admin-internal-post-type-list.php:216 -#: includes/admin/admin-internal-post-type-list.php:485 -msgid "Sync changes" -msgstr "Sincronizar cambios" - -#: includes/admin/admin-internal-post-type-list.php:215 -msgid "Loading diff" -msgstr "Cargando diff" - -#: includes/admin/admin-internal-post-type-list.php:214 -msgid "Review local JSON changes" -msgstr "Revisar cambios de JSON local" - -#: includes/admin/admin.php:170 -msgid "Visit website" -msgstr "Visitar web" - -#: includes/admin/admin.php:169 -msgid "View details" -msgstr "Ver detalles" - -#: includes/admin/admin.php:168 -msgid "Version %s" -msgstr "Versión %s" - -#: includes/admin/admin.php:167 -msgid "Information" -msgstr "Información" - -#: includes/admin/admin.php:158 -msgid "" -"Help Desk. The support professionals on " -"our Help Desk will assist with your more in depth, technical challenges." -msgstr "" -"Centro de ayuda. Los profesionales de " -"soporte de nuestro centro de ayuda te ayudarán más en profundidad con los " -"retos técnicos." - -#: includes/admin/admin.php:154 -msgid "" -"Discussions. We have an active and " -"friendly community on our Community Forums who may be able to help you " -"figure out the 'how-tos' of the ACF world." -msgstr "" - -#: includes/admin/admin.php:150 -msgid "" -"Documentation. Our extensive " -"documentation contains references and guides for most situations you may " -"encounter." -msgstr "" -"Documentación. Nuestra amplia " -"documentación contiene referencias y guías para la mayoría de situaciones en " -"las que puedas encontrarte." - -#: includes/admin/admin.php:147 -msgid "" -"We are fanatical about support, and want you to get the best out of your " -"website with ACF. If you run into any difficulties, there are several places " -"you can find help:" -msgstr "" -"Somos fanáticos del soporte, y queremos que consigas el máximo en tu web con " -"ACF:" - -#: includes/admin/admin.php:144 includes/admin/admin.php:146 -msgid "Help & Support" -msgstr "Ayuda y soporte" - -#: includes/admin/admin.php:135 -msgid "" -"Please use the Help & Support tab to get in touch should you find yourself " -"requiring assistance." -msgstr "" -"Por favor, usa la pestaña de ayuda y soporte para contactar si descubres que " -"necesitas ayuda." - -#: includes/admin/admin.php:132 -msgid "" -"Before creating your first Field Group, we recommend first reading our Getting started guide to familiarize " -"yourself with the plugin's philosophy and best practises." -msgstr "" -"Antes de crear tu primer grupo de campos te recomendamos que primero leas " -"nuestra guía de primeros pasos para " -"familiarizarte con la filosofía y buenas prácticas del plugin." - -#: includes/admin/admin.php:130 -msgid "" -"The Advanced Custom Fields plugin provides a visual form builder to " -"customize WordPress edit screens with extra fields, and an intuitive API to " -"display custom field values in any theme template file." -msgstr "" -"El plugin Advanced Custom Fields ofrece un constructor visual con el que " -"personalizar las pantallas de WordPress con campos adicionales, y una API " -"intuitiva parra mostrar valores de campos personalizados en cualquier " -"archivo de plantilla de cualquier tema." - -#: includes/admin/admin.php:127 includes/admin/admin.php:129 -msgid "Overview" -msgstr "Resumen" - -#: includes/locations.php:36 -msgid "Location type \"%s\" is already registered." -msgstr "El tipo de ubicación «%s» ya está registrado." - -#: includes/locations.php:25 -msgid "Class \"%s\" does not exist." -msgstr "La clase «%s» no existe." - -#: includes/ajax/class-acf-ajax.php:157 -msgid "Invalid nonce." -msgstr "Nonce no válido." - -#: includes/fields/class-acf-field-user.php:375 -msgid "Error loading field." -msgstr "Error al cargar el campo." - -#: assets/build/js/acf-input.js:2750 assets/build/js/acf-input.js:2819 -#: assets/build/js/acf-input.js:2926 assets/build/js/acf-input.js:3000 -msgid "Location not found: %s" -msgstr "Ubicación no encontrada: %s" - -#: includes/forms/form-user.php:353 -msgid "Error: %s" -msgstr "Error: %s" - -#: includes/locations/class-acf-location-widget.php:22 -msgid "Widget" -msgstr "Widget" - -#: includes/locations/class-acf-location-user-role.php:24 -msgid "User Role" -msgstr "Perfil de usuario" - -#: includes/locations/class-acf-location-comment.php:22 -msgid "Comment" -msgstr "Comentario" - -#: includes/locations/class-acf-location-post-format.php:22 -msgid "Post Format" -msgstr "Formato de entrada" - -#: includes/locations/class-acf-location-nav-menu-item.php:22 -msgid "Menu Item" -msgstr "Elemento de menú" - -#: includes/locations/class-acf-location-post-status.php:22 -msgid "Post Status" -msgstr "Estado de entrada" - -#: includes/acf-wp-functions.php:74 -#: includes/locations/class-acf-location-nav-menu.php:89 -msgid "Menus" -msgstr "Menús" - -#: includes/locations/class-acf-location-nav-menu.php:80 -msgid "Menu Locations" -msgstr "Ubicaciones de menú" - -#: includes/locations/class-acf-location-nav-menu.php:22 -msgid "Menu" -msgstr "Menú" - -#: includes/locations/class-acf-location-post-taxonomy.php:22 -msgid "Post Taxonomy" -msgstr "Taxonomía de entrada" - -#: includes/locations/class-acf-location-page-type.php:114 -msgid "Child Page (has parent)" -msgstr "Página hija (tiene superior)" - -#: includes/locations/class-acf-location-page-type.php:113 -msgid "Parent Page (has children)" -msgstr "Página superior (con hijos)" - -#: includes/locations/class-acf-location-page-type.php:112 -msgid "Top Level Page (no parent)" -msgstr "Página de nivel superior (sin padres)" - -#: includes/locations/class-acf-location-page-type.php:111 -msgid "Posts Page" -msgstr "Página de entradas" - -#: includes/locations/class-acf-location-page-type.php:110 -msgid "Front Page" -msgstr "Página de inicio" - -#: includes/locations/class-acf-location-page-type.php:22 -msgid "Page Type" -msgstr "Tipo de página" - -#: includes/locations/class-acf-location-current-user.php:73 -msgid "Viewing back end" -msgstr "Viendo el escritorio" - -#: includes/locations/class-acf-location-current-user.php:72 -msgid "Viewing front end" -msgstr "Viendo la web" - -#: includes/locations/class-acf-location-current-user.php:71 -msgid "Logged in" -msgstr "Conectado" - -#: includes/locations/class-acf-location-current-user.php:22 -msgid "Current User" -msgstr "Usuario actual" - -#: includes/locations/class-acf-location-page-template.php:22 -msgid "Page Template" -msgstr "Plantilla de página" - -#: includes/locations/class-acf-location-user-form.php:74 -msgid "Register" -msgstr "Regístrate" - -#: includes/locations/class-acf-location-user-form.php:73 -msgid "Add / Edit" -msgstr "Añadir / Editar" - -#: includes/locations/class-acf-location-user-form.php:22 -msgid "User Form" -msgstr "Formulario de usuario" - -#: includes/locations/class-acf-location-page-parent.php:22 -msgid "Page Parent" -msgstr "Página superior" - -#: includes/locations/class-acf-location-current-user-role.php:77 -msgid "Super Admin" -msgstr "Super administrador" - -#: includes/locations/class-acf-location-current-user-role.php:22 -msgid "Current User Role" -msgstr "Rol del usuario actual" - -#: includes/locations/class-acf-location-page-template.php:73 -#: includes/locations/class-acf-location-post-template.php:85 -msgid "Default Template" -msgstr "Plantilla predeterminada" - -#: includes/locations/class-acf-location-post-template.php:22 -msgid "Post Template" -msgstr "Plantilla de entrada" - -#: includes/locations/class-acf-location-post-category.php:22 -msgid "Post Category" -msgstr "Categoría de entrada" - -#: includes/locations/class-acf-location-attachment.php:84 -msgid "All %s formats" -msgstr "Todo los formatos de %s" - -#: includes/locations/class-acf-location-attachment.php:22 -msgid "Attachment" -msgstr "Adjunto" - -#: includes/validation.php:366 -msgid "%s value is required" -msgstr "Se requiere el valor %s" - -#: includes/admin/views/acf-field-group/conditional-logic.php:59 -msgid "Show this field if" -msgstr "Mostrar este campo si" - -#: includes/admin/views/acf-field-group/conditional-logic.php:26 -#: includes/admin/views/acf-field-group/field.php:109 includes/fields.php:411 -msgid "Conditional Logic" -msgstr "Lógica condicional" - -#: includes/admin/views/acf-field-group/conditional-logic.php:156 -#: includes/admin/views/acf-field-group/location-rule.php:92 -msgid "and" -msgstr "y" - -#: includes/admin/post-types/admin-field-groups.php:123 -#: includes/admin/post-types/admin-post-types.php:143 -#: includes/admin/post-types/admin-taxonomies.php:143 -msgid "Local JSON" -msgstr "JSON Local" - -#: includes/admin/views/acf-field-group/pro-features.php:46 -msgid "Clone Field" -msgstr "" - -#: includes/admin/views/upgrade/notice.php:30 -msgid "" -"Please also check all premium add-ons (%s) are updated to the latest version." -msgstr "" -"Por favor, comprueba también que todas las extensiones premium (%s) estén " -"actualizados a la última versión." - -#: includes/admin/views/upgrade/notice.php:28 -msgid "" -"This version contains improvements to your database and requires an upgrade." -msgstr "" -"Esta versión contiene mejoras en su base de datos y requiere una " -"actualización." - -#: includes/admin/views/upgrade/notice.php:28 -msgid "Thank you for updating to %1$s v%2$s!" -msgstr "¡Gracias por actualizar a %1$s v%2$s!" - -#: includes/admin/views/upgrade/notice.php:27 -msgid "Database Upgrade Required" -msgstr "Es necesario actualizar la base de datos" - -#: includes/admin/post-types/admin-field-group.php:141 -#: includes/admin/views/upgrade/notice.php:18 -msgid "Options Page" -msgstr "Página de opciones" - -#: includes/admin/views/upgrade/notice.php:15 includes/fields.php:462 -msgid "Gallery" -msgstr "Galería" - -#: includes/admin/views/upgrade/notice.php:12 includes/fields.php:452 -msgid "Flexible Content" -msgstr "Contenido flexible" - -#: includes/admin/views/upgrade/notice.php:9 includes/fields.php:472 -msgid "Repeater" -msgstr "Repetidor" - -#: includes/admin/views/tools/tools.php:24 -msgid "Back to all tools" -msgstr "Volver a todas las herramientas" - -#: includes/admin/views/acf-field-group/options.php:195 -msgid "" -"If multiple field groups appear on an edit screen, the first field group's " -"options will be used (the one with the lowest order number)" -msgstr "" -"Si aparecen múltiples grupos de campos en una pantalla de edición, se " -"utilizarán las opciones del primer grupo (el que tenga el número de orden " -"menor)" - -#: includes/admin/views/acf-field-group/options.php:195 -msgid "Select items to hide them from the edit screen." -msgstr "" -"Selecciona los elementos que ocultar de la pantalla de edición." - -#: includes/admin/views/acf-field-group/options.php:194 -msgid "Hide on screen" -msgstr "Ocultar en pantalla" - -#: includes/admin/views/acf-field-group/options.php:186 -msgid "Send Trackbacks" -msgstr "Enviar trackbacks" - -#: includes/admin/post-types/admin-taxonomy.php:128 -#: includes/admin/views/acf-field-group/options.php:185 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:159 -#: assets/build/js/acf-internal-post-type.js:180 -#: assets/build/js/acf-internal-post-type.js:254 -msgid "Tags" -msgstr "Etiquetas" - -#: includes/admin/post-types/admin-taxonomy.php:130 -#: includes/admin/views/acf-field-group/options.php:184 -#: assets/build/js/acf-internal-post-type.js:183 -#: assets/build/js/acf-internal-post-type.js:257 -msgid "Categories" -msgstr "Categorías" - -#: includes/admin/views/acf-field-group/options.php:182 -#: includes/admin/views/acf-post-type/advanced-settings.php:28 -msgid "Page Attributes" -msgstr "Atributos de página" - -#: includes/admin/views/acf-field-group/options.php:181 -msgid "Format" -msgstr "Formato" - -#: includes/admin/views/acf-field-group/options.php:180 -#: includes/admin/views/acf-post-type/advanced-settings.php:22 -msgid "Author" -msgstr "Autor" - -#: includes/admin/views/acf-field-group/options.php:179 -msgid "Slug" -msgstr "Slug" - -#: includes/admin/views/acf-field-group/options.php:178 -#: includes/admin/views/acf-post-type/advanced-settings.php:27 -msgid "Revisions" -msgstr "Revisiones" - -#: includes/acf-wp-functions.php:66 -#: includes/admin/views/acf-field-group/options.php:177 -#: includes/admin/views/acf-post-type/advanced-settings.php:23 -msgid "Comments" -msgstr "Comentarios" - -#: includes/admin/views/acf-field-group/options.php:176 -msgid "Discussion" -msgstr "Discusión" - -#: includes/admin/views/acf-field-group/options.php:174 -#: includes/admin/views/acf-post-type/advanced-settings.php:26 -msgid "Excerpt" -msgstr "Extracto" - -#: includes/admin/views/acf-field-group/options.php:173 -msgid "Content Editor" -msgstr "Editor de contenido" - -#: includes/admin/views/acf-field-group/options.php:172 -msgid "Permalink" -msgstr "Enlace permanente" - -#: includes/admin/views/acf-field-group/options.php:250 -msgid "Shown in field group list" -msgstr "Mostrado en lista de grupos de campos" - -#: includes/admin/views/acf-field-group/options.php:157 -msgid "Field groups with a lower order will appear first" -msgstr "Los grupos de campos con menor orden aparecerán primero" - -#: includes/admin/views/acf-field-group/options.php:156 -msgid "Order No." -msgstr "Número de orden" - -#: includes/admin/views/acf-field-group/options.php:147 -msgid "Below fields" -msgstr "Debajo de los campos" - -#: includes/admin/views/acf-field-group/options.php:146 -msgid "Below labels" -msgstr "Debajo de las etiquetas" - -#: includes/admin/views/acf-field-group/options.php:139 -msgid "Instruction Placement" -msgstr "" - -#: includes/admin/views/acf-field-group/options.php:122 -msgid "Label Placement" -msgstr "" - -#: includes/admin/views/acf-field-group/options.php:110 -msgid "Side" -msgstr "Lateral" - -#: includes/admin/views/acf-field-group/options.php:109 -msgid "Normal (after content)" -msgstr "Normal (después del contenido)" - -#: includes/admin/views/acf-field-group/options.php:108 -msgid "High (after title)" -msgstr "Alta (después del título)" - -#: includes/admin/views/acf-field-group/options.php:101 -msgid "Position" -msgstr "Posición" - -#: includes/admin/views/acf-field-group/options.php:92 -msgid "Seamless (no metabox)" -msgstr "Directo (sin caja meta)" - -#: includes/admin/views/acf-field-group/options.php:91 -msgid "Standard (WP metabox)" -msgstr "Estándar (caja meta de WP)" - -#: includes/admin/views/acf-field-group/options.php:84 -msgid "Style" -msgstr "Estilo" - -#: includes/admin/views/acf-field-group/fields.php:55 -msgid "Type" -msgstr "Tipo" - -#: includes/admin/post-types/admin-field-groups.php:117 -#: includes/admin/post-types/admin-post-types.php:136 -#: includes/admin/post-types/admin-taxonomies.php:136 -#: includes/admin/views/acf-field-group/fields.php:54 -msgid "Key" -msgstr "Clave" - -#. translators: Hidden accessibility text for the positional order number of -#. the field. -#: includes/admin/views/acf-field-group/fields.php:48 -msgid "Order" -msgstr "Orden" - -#: includes/admin/views/acf-field-group/field.php:322 -msgid "Close Field" -msgstr "Cerrar campo" - -#: includes/admin/views/acf-field-group/field.php:253 -msgid "id" -msgstr "id" - -#: includes/admin/views/acf-field-group/field.php:237 -msgid "class" -msgstr "class" - -#: includes/admin/views/acf-field-group/field.php:279 -msgid "width" -msgstr "ancho" - -#: includes/admin/views/acf-field-group/field.php:273 -msgid "Wrapper Attributes" -msgstr "Atributos del contenedor" - -#: includes/admin/views/acf-field-group/field.php:196 -msgid "Required" -msgstr "" - -#: includes/admin/views/acf-field-group/field.php:221 -msgid "Instructions for authors. Shown when submitting data" -msgstr "" -"Instrucciones para los autores. Se muestra a la hora de enviar los datos" - -#: includes/admin/views/acf-field-group/field.php:220 -msgid "Instructions" -msgstr "Instrucciones" - -#: includes/admin/views/acf-field-group/field.php:129 -msgid "Field Type" -msgstr "Tipo de campo" - -#: includes/admin/views/acf-field-group/field.php:170 -msgid "Single word, no spaces. Underscores and dashes allowed" -msgstr "Una sola palabra, sin espacios. Se permiten guiones y guiones bajos" - -#: includes/admin/views/acf-field-group/field.php:169 -msgid "Field Name" -msgstr "Nombre del campo" - -#: includes/admin/views/acf-field-group/field.php:157 -msgid "This is the name which will appear on the EDIT page" -msgstr "Este es el nombre que aparecerá en la página EDITAR" - -#: includes/admin/views/acf-field-group/field.php:156 -#: includes/admin/views/browse-fields-modal.php:59 -msgid "Field Label" -msgstr "Etiqueta del campo" - -#: includes/admin/views/acf-field-group/field.php:81 -msgid "Delete" -msgstr "Borrar" - -#: includes/admin/views/acf-field-group/field.php:81 -msgid "Delete field" -msgstr "Borrar campo" - -#: includes/admin/views/acf-field-group/field.php:79 -msgid "Move" -msgstr "Mover" - -#: includes/admin/views/acf-field-group/field.php:79 -msgid "Move field to another group" -msgstr "Mover campo a otro grupo" - -#: includes/admin/views/acf-field-group/field.php:77 -msgid "Duplicate field" -msgstr "Duplicar campo" - -#: includes/admin/views/acf-field-group/field.php:73 -#: includes/admin/views/acf-field-group/field.php:76 -msgid "Edit field" -msgstr "Editar campo" - -#: includes/admin/views/acf-field-group/field.php:69 -msgid "Drag to reorder" -msgstr "Arrastra para reordenar" - -#: includes/admin/post-types/admin-field-group.php:103 -#: includes/admin/views/acf-field-group/location-group.php:3 -#: assets/build/js/acf-field-group.js:2347 -#: assets/build/js/acf-field-group.js:2763 -msgid "Show this field group if" -msgstr "Mostrar este grupo de campos si" - -#: includes/admin/views/upgrade/upgrade.php:94 -#: includes/ajax/class-acf-ajax-upgrade.php:34 -msgid "No updates available." -msgstr "No hay actualizaciones disponibles." - -#: includes/admin/views/upgrade/upgrade.php:33 -msgid "Database upgrade complete. See what's new" -msgstr "" -"Actualización de la base de datos completa. Ver las " -"novedades" - -#: includes/admin/views/upgrade/upgrade.php:30 -msgid "Reading upgrade tasks..." -msgstr "Leyendo tareas de actualización..." - -#: includes/admin/views/upgrade/network.php:165 -#: includes/admin/views/upgrade/upgrade.php:65 -msgid "Upgrade failed." -msgstr "Fallo al actualizar." - -#: includes/admin/views/upgrade/network.php:162 -msgid "Upgrade complete." -msgstr "Actualización completa" - -#: includes/admin/views/upgrade/network.php:148 -#: includes/admin/views/upgrade/upgrade.php:31 -msgid "Upgrading data to version %s" -msgstr "Actualizando datos a la versión %s" - -#: includes/admin/views/upgrade/network.php:121 -#: includes/admin/views/upgrade/notice.php:44 -msgid "" -"It is strongly recommended that you backup your database before proceeding. " -"Are you sure you wish to run the updater now?" -msgstr "" -"Es muy recomendable que hagas una copia de seguridad de tu base de datos " -"antes de continuar. ¿Estás seguro que quieres ejecutar ya la actualización?" - -#: includes/admin/views/upgrade/network.php:117 -msgid "Please select at least one site to upgrade." -msgstr "Por favor, selecciona al menos un sitio para actualizarlo." - -#: includes/admin/views/upgrade/network.php:97 -msgid "" -"Database Upgrade complete. Return to network dashboard" -msgstr "" -"Actualización de base de datos completa. Volver al escritorio " -"de red" - -#: includes/admin/views/upgrade/network.php:80 -msgid "Site is up to date" -msgstr "El sitio está actualizado" - -#: includes/admin/views/upgrade/network.php:78 -msgid "Site requires database upgrade from %1$s to %2$s" -msgstr "El sitio necesita actualizar la base de datos de %1$s a %2$s" - -#: includes/admin/views/upgrade/network.php:36 -#: includes/admin/views/upgrade/network.php:47 -msgid "Site" -msgstr "Sitio" - -#: includes/admin/views/upgrade/network.php:26 -#: includes/admin/views/upgrade/network.php:27 -#: includes/admin/views/upgrade/network.php:96 -msgid "Upgrade Sites" -msgstr "Actualizar los sitios" - -#: includes/admin/views/upgrade/network.php:26 -msgid "" -"The following sites require a DB upgrade. Check the ones you want to update " -"and then click %s." -msgstr "" -"Es necesario actualizar la base de datos de los siguientes sitios. Marca los " -"que quieras actualizar y haz clic en %s." - -#: includes/admin/views/acf-field-group/conditional-logic.php:171 -#: includes/admin/views/acf-field-group/locations.php:38 -msgid "Add rule group" -msgstr "Añadir grupo de reglas" - -#: includes/admin/views/acf-field-group/locations.php:10 -msgid "" -"Create a set of rules to determine which edit screens will use these " -"advanced custom fields" -msgstr "" -"Crea un conjunto de reglas para determinar qué pantallas de edición " -"utilizarán estos campos personalizados" - -#: includes/admin/views/acf-field-group/locations.php:9 -msgid "Rules" -msgstr "Reglas" - -#: includes/admin/tools/class-acf-admin-tool-export.php:510 -msgid "Copied" -msgstr "Copiado" - -#: includes/admin/tools/class-acf-admin-tool-export.php:486 -msgid "Copy to clipboard" -msgstr "Copiar al portapapeles" - -#: includes/admin/tools/class-acf-admin-tool-export.php:385 -msgid "" -"Select the items you would like to export and then select your export " -"method. Export As JSON to export to a .json file which you can then import " -"to another ACF installation. Generate PHP to export to PHP code which you " -"can place in your theme." -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:233 -msgid "Select Field Groups" -msgstr "Selecciona grupos de campos" - -#: includes/admin/tools/class-acf-admin-tool-export.php:96 -#: includes/admin/tools/class-acf-admin-tool-export.php:131 -msgid "No field groups selected" -msgstr "Ningún grupo de campos seleccionado" - -#: includes/admin/tools/class-acf-admin-tool-export.php:39 -#: includes/admin/tools/class-acf-admin-tool-export.php:393 -#: includes/admin/tools/class-acf-admin-tool-export.php:421 -msgid "Generate PHP" -msgstr "Generar PHP" - -#: includes/admin/tools/class-acf-admin-tool-export.php:35 -msgid "Export Field Groups" -msgstr "Exportar grupos de campos" - -#: includes/admin/tools/class-acf-admin-tool-import.php:177 -msgid "Import file empty" -msgstr "Archivo de imporación vacío" - -#: includes/admin/tools/class-acf-admin-tool-import.php:168 -msgid "Incorrect file type" -msgstr "Tipo de campo incorrecto" - -#: includes/admin/tools/class-acf-admin-tool-import.php:163 -msgid "Error uploading file. Please try again" -msgstr "Error al subir el archivo. Por favor, inténtalo de nuevo" - -#: includes/admin/tools/class-acf-admin-tool-import.php:50 -msgid "" -"Select the Advanced Custom Fields JSON file you would like to import. When " -"you click the import button below, ACF will import the items in that file." -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:27 -msgid "Import Field Groups" -msgstr "Importar grupo de campos" - -#: includes/admin/admin-internal-post-type-list.php:401 -msgid "Sync" -msgstr "Sincronizar" - -#: includes/admin/admin-internal-post-type-list.php:858 -msgid "Select %s" -msgstr "Selecciona %s" - -#: includes/admin/admin-internal-post-type-list.php:442 -#: includes/admin/admin-internal-post-type-list.php:474 -#: includes/admin/views/acf-field-group/field.php:77 -msgid "Duplicate" -msgstr "Duplicar" - -#: includes/admin/admin-internal-post-type-list.php:442 -msgid "Duplicate this item" -msgstr "Duplicar este elemento" - -#: includes/admin/views/acf-post-type/advanced-settings.php:41 -msgid "Supports" -msgstr "" - -#: includes/admin/admin.php:261 includes/admin/views/browse-fields-modal.php:92 -msgid "Documentation" -msgstr "" - -#: includes/admin/post-types/admin-field-groups.php:116 -#: includes/admin/post-types/admin-post-types.php:135 -#: includes/admin/post-types/admin-taxonomies.php:135 -#: includes/admin/views/acf-field-group/options.php:249 -#: includes/admin/views/acf-post-type/advanced-settings.php:62 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:114 -#: includes/admin/views/upgrade/network.php:38 -#: includes/admin/views/upgrade/network.php:49 -msgid "Description" -msgstr "Descripción" - -#: includes/admin/admin-internal-post-type-list.php:398 -#: includes/admin/admin-internal-post-type-list.php:747 -msgid "Sync available" -msgstr "Sincronización disponible" - -#. translators: %s number of field groups synchronized -#: includes/admin/post-types/admin-field-groups.php:381 -msgid "Field group synchronized." -msgid_plural "%s field groups synchronized." -msgstr[0] "" -msgstr[1] "" - -#. translators: %s number of field groups duplicated -#: includes/admin/post-types/admin-field-groups.php:374 -msgid "Field group duplicated." -msgid_plural "%s field groups duplicated." -msgstr[0] "Grupo de campos duplicado." -msgstr[1] "%s grupos de campos duplicados." - -#: includes/admin/admin-internal-post-type-list.php:137 -msgid "Active (%s)" -msgid_plural "Active (%s)" -msgstr[0] "Activo (%s)" -msgstr[1] "Activos (%s)" - -#: includes/admin/admin-upgrade.php:254 -msgid "Review sites & upgrade" -msgstr "Revisar sitios y actualizar" - -#: includes/admin/admin-upgrade.php:59 includes/admin/admin-upgrade.php:93 -#: includes/admin/admin-upgrade.php:94 includes/admin/admin-upgrade.php:230 -#: includes/admin/views/upgrade/network.php:24 -#: includes/admin/views/upgrade/upgrade.php:26 -msgid "Upgrade Database" -msgstr "Actualizar base de datos" - -#: includes/admin/views/acf-field-group/options.php:175 -#: includes/admin/views/acf-post-type/advanced-settings.php:30 -msgid "Custom Fields" -msgstr "Campos personalizados" - -#: includes/admin/post-types/admin-field-group.php:616 -msgid "Move Field" -msgstr "Mover campo" - -#: includes/admin/post-types/admin-field-group.php:605 -#: includes/admin/post-types/admin-field-group.php:609 -msgid "Please select the destination for this field" -msgstr "Por favor, selecciona el destino para este campo" - -#. translators: Confirmation message once a field has been moved to a different -#. field group. -#: includes/admin/post-types/admin-field-group.php:567 -msgid "The %1$s field can now be found in the %2$s field group" -msgstr "El campo %1$s ahora se puede encontrar en el grupo de campos %2$s" - -#: includes/admin/post-types/admin-field-group.php:564 -msgid "Move Complete." -msgstr "Movimiento completo." - -#: includes/admin/views/acf-field-group/field.php:39 -#: includes/admin/views/acf-field-group/options.php:217 -#: includes/admin/views/acf-post-type/advanced-settings.php:78 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:130 -msgid "Active" -msgstr "Activo" - -#: includes/admin/post-types/admin-field-group.php:266 -msgid "Field Keys" -msgstr "Claves de campo" - -#: includes/admin/post-types/admin-field-group.php:164 -#: includes/admin/tools/class-acf-admin-tool-export.php:342 -msgid "Settings" -msgstr "Ajustes" - -#: includes/admin/post-types/admin-field-groups.php:118 -msgid "Location" -msgstr "Ubicación" - -#: includes/admin/post-types/admin-field-group.php:104 -#: assets/build/js/acf-input.js:983 assets/build/js/acf-input.js:1075 -msgid "Null" -msgstr "Null" - -#: includes/admin/post-types/admin-field-group.php:101 -#: includes/class-acf-internal-post-type.php:730 -#: includes/post-types/class-acf-field-group.php:345 -#: assets/build/js/acf-field-group.js:1510 -#: assets/build/js/acf-field-group.js:1821 -msgid "copy" -msgstr "copiar" - -#: includes/admin/post-types/admin-field-group.php:100 -#: assets/build/js/acf-field-group.js:623 -#: assets/build/js/acf-field-group.js:778 -msgid "(this field)" -msgstr "(este campo)" - -#: includes/admin/post-types/admin-field-group.php:98 -#: assets/build/js/acf-input.js:918 assets/build/js/acf-input.js:943 -#: assets/build/js/acf-input.js:1002 assets/build/js/acf-input.js:1030 -msgid "Checked" -msgstr "Seleccionado" - -#: includes/admin/post-types/admin-field-group.php:94 -#: assets/build/js/acf-field-group.js:1615 -#: assets/build/js/acf-field-group.js:1933 -msgid "Move Custom Field" -msgstr "Mover campo personalizado" - -#: includes/admin/post-types/admin-field-group.php:93 -#: assets/build/js/acf-field-group.js:649 -#: assets/build/js/acf-field-group.js:804 -msgid "No toggle fields available" -msgstr "No hay campos de conmutación disponibles" - -#: includes/admin/post-types/admin-field-group.php:91 -msgid "Field group title is required" -msgstr "El título del grupo de campos es obligatorio" - -#: includes/admin/post-types/admin-field-group.php:90 -#: assets/build/js/acf-field-group.js:1604 -#: assets/build/js/acf-field-group.js:1919 -msgid "This field cannot be moved until its changes have been saved" -msgstr "Este campo se puede mover hasta que sus cambios se hayan guardado" - -#: includes/admin/post-types/admin-field-group.php:89 -#: assets/build/js/acf-field-group.js:1414 -#: assets/build/js/acf-field-group.js:1716 -msgid "The string \"field_\" may not be used at the start of a field name" -msgstr "" -"La cadena «field_» no se debe utilizar al comienzo de un nombre de campo" - -#: includes/admin/post-types/admin-field-group.php:71 -msgid "Field group draft updated." -msgstr "Borrador del grupo de campos actualizado." - -#: includes/admin/post-types/admin-field-group.php:70 -msgid "Field group scheduled for." -msgstr "Grupo de campos programado." - -#: includes/admin/post-types/admin-field-group.php:69 -msgid "Field group submitted." -msgstr "Grupo de campos enviado." - -#: includes/admin/post-types/admin-field-group.php:68 -msgid "Field group saved." -msgstr "Grupo de campos guardado." - -#: includes/admin/post-types/admin-field-group.php:67 -msgid "Field group published." -msgstr "Grupo de campos publicado." - -#: includes/admin/post-types/admin-field-group.php:64 -msgid "Field group deleted." -msgstr "Grupo de campos eliminado." - -#: includes/admin/post-types/admin-field-group.php:62 -#: includes/admin/post-types/admin-field-group.php:63 -#: includes/admin/post-types/admin-field-group.php:65 -msgid "Field group updated." -msgstr "Grupo de campos actualizado." - -#: includes/admin/admin-tools.php:118 -#: includes/admin/views/global/navigation.php:246 -#: includes/admin/views/tools/tools.php:21 -msgid "Tools" -msgstr "Herramientas" - -#: includes/locations/abstract-acf-location.php:106 -msgid "is not equal to" -msgstr "no es igual a" - -#: includes/locations/abstract-acf-location.php:105 -msgid "is equal to" -msgstr "es igual a" - -#: includes/locations.php:102 -msgid "Forms" -msgstr "Formularios" - -#: includes/admin/post-types/admin-post-type.php:127 includes/locations.php:100 -#: includes/locations/class-acf-location-page.php:22 -#: assets/build/js/acf-internal-post-type.js:175 -#: assets/build/js/acf-internal-post-type.js:249 -msgid "Page" -msgstr "Página" - -#: includes/admin/post-types/admin-post-type.php:125 includes/locations.php:99 -#: includes/locations/class-acf-location-post.php:22 -#: assets/build/js/acf-internal-post-type.js:172 -#: assets/build/js/acf-internal-post-type.js:246 -msgid "Post" -msgstr "Entrada" - -#: includes/fields.php:354 -msgid "Relational" -msgstr "Relación" - -#: includes/fields.php:353 -msgid "Choice" -msgstr "Elección" - -#: includes/fields.php:351 -msgid "Basic" -msgstr "Básico" - -#: includes/fields.php:320 -msgid "Unknown" -msgstr "Desconocido" - -#: includes/fields.php:320 -msgid "Field type does not exist" -msgstr "El tipo de campo no existe" - -#: includes/forms/form-front.php:236 -msgid "Spam Detected" -msgstr "Spam detectado" - -#: includes/forms/form-front.php:107 -msgid "Post updated" -msgstr "Publicación actualizada" - -#: includes/forms/form-front.php:106 -msgid "Update" -msgstr "Actualizar" - -#: includes/forms/form-front.php:57 -msgid "Validate Email" -msgstr "Validar correo electrónico" - -#: includes/fields.php:352 includes/forms/form-front.php:49 -msgid "Content" -msgstr "Contenido" - -#: includes/admin/views/acf-post-type/advanced-settings.php:21 -#: includes/forms/form-front.php:40 -msgid "Title" -msgstr "Título" - -#: includes/assets.php:372 includes/forms/form-comment.php:160 -#: assets/build/js/acf-input.js:7382 assets/build/js/acf-input.js:7968 -msgid "Edit field group" -msgstr "Editar grupo de campos" - -#: includes/admin/post-types/admin-field-group.php:117 -#: assets/build/js/acf-input.js:1125 assets/build/js/acf-input.js:1230 -msgid "Selection is less than" -msgstr "La selección es menor que" - -#: includes/admin/post-types/admin-field-group.php:116 -#: assets/build/js/acf-input.js:1106 assets/build/js/acf-input.js:1202 -msgid "Selection is greater than" -msgstr "La selección es mayor que" - -#: includes/admin/post-types/admin-field-group.php:115 -#: assets/build/js/acf-input.js:1075 assets/build/js/acf-input.js:1170 -msgid "Value is less than" -msgstr "El valor es menor que" - -#: includes/admin/post-types/admin-field-group.php:114 -#: assets/build/js/acf-input.js:1045 assets/build/js/acf-input.js:1139 -msgid "Value is greater than" -msgstr "El valor es mayor que" - -#: includes/admin/post-types/admin-field-group.php:113 -#: assets/build/js/acf-input.js:888 assets/build/js/acf-input.js:960 -msgid "Value contains" -msgstr "El valor contiene" - -#: includes/admin/post-types/admin-field-group.php:112 -#: assets/build/js/acf-input.js:862 assets/build/js/acf-input.js:926 -msgid "Value matches pattern" -msgstr "El valor coincide con el patrón" - -#: includes/admin/post-types/admin-field-group.php:111 -#: assets/build/js/acf-input.js:840 assets/build/js/acf-input.js:1023 -#: assets/build/js/acf-input.js:903 assets/build/js/acf-input.js:1116 -msgid "Value is not equal to" -msgstr "El valor no es igual a" - -#: includes/admin/post-types/admin-field-group.php:110 -#: assets/build/js/acf-input.js:810 assets/build/js/acf-input.js:964 -#: assets/build/js/acf-input.js:864 assets/build/js/acf-input.js:1053 -msgid "Value is equal to" -msgstr "El valor es igual a" - -#: includes/admin/post-types/admin-field-group.php:109 -#: assets/build/js/acf-input.js:788 assets/build/js/acf-input.js:841 -msgid "Has no value" -msgstr "No tiene ningún valor" - -#: includes/admin/post-types/admin-field-group.php:108 -#: assets/build/js/acf-input.js:758 assets/build/js/acf-input.js:783 -msgid "Has any value" -msgstr "No tiene algún valor" - -#: includes/admin/admin-internal-post-type.php:345 -#: includes/admin/views/browse-fields-modal.php:62 includes/assets.php:353 -#: assets/build/js/acf.js:1564 assets/build/js/acf.js:1658 -msgid "Cancel" -msgstr "Cancelar" - -#: includes/assets.php:349 assets/build/js/acf.js:1738 -#: assets/build/js/acf.js:1855 -msgid "Are you sure?" -msgstr "¿Estás seguro?" - -#: includes/assets.php:369 assets/build/js/acf-input.js:9442 -#: assets/build/js/acf-input.js:10294 -msgid "%d fields require attention" -msgstr "%d campos requieren atención" - -#: includes/assets.php:368 assets/build/js/acf-input.js:9440 -#: assets/build/js/acf-input.js:10290 -msgid "1 field requires attention" -msgstr "1 campo requiere atención" - -#: includes/assets.php:367 includes/validation.php:288 -#: includes/validation.php:298 assets/build/js/acf-input.js:9435 -#: assets/build/js/acf-input.js:10285 -msgid "Validation failed" -msgstr "Validación fallida" - -#: includes/assets.php:366 assets/build/js/acf-input.js:9603 -#: assets/build/js/acf-input.js:10473 -msgid "Validation successful" -msgstr "Validación correcta" - -#: includes/media.php:54 assets/build/js/acf-input.js:7210 -#: assets/build/js/acf-input.js:7772 -msgid "Restricted" -msgstr "Restringido" - -#: includes/media.php:53 assets/build/js/acf-input.js:7025 -#: assets/build/js/acf-input.js:7536 -msgid "Collapse Details" -msgstr "Colapsar detalles" - -#: includes/media.php:52 assets/build/js/acf-input.js:7025 -#: assets/build/js/acf-input.js:7533 -msgid "Expand Details" -msgstr "Ampliar detalles" - -#: includes/admin/views/acf-post-type/advanced-settings.php:465 -#: includes/media.php:51 assets/build/js/acf-input.js:6892 -#: assets/build/js/acf-input.js:7381 -msgid "Uploaded to this post" -msgstr "Subido a esta entrada" - -#: includes/media.php:50 assets/build/js/acf-input.js:6931 -#: assets/build/js/acf-input.js:7420 -msgctxt "verb" -msgid "Update" -msgstr "Actualizar" - -#: includes/media.php:49 -msgctxt "verb" -msgid "Edit" -msgstr "Editar" - -#: includes/assets.php:363 assets/build/js/acf-input.js:9212 -#: assets/build/js/acf-input.js:10056 -msgid "The changes you made will be lost if you navigate away from this page" -msgstr "Los cambios que has realizado se perderán si navegas hacia otra página" - -#: includes/api/api-helpers.php:3395 -msgid "File type must be %s." -msgstr "El tipo de archivo debe ser %s." - -#: includes/admin/post-types/admin-field-group.php:102 -#: includes/admin/views/acf-field-group/conditional-logic.php:59 -#: includes/admin/views/acf-field-group/conditional-logic.php:169 -#: includes/admin/views/acf-field-group/location-group.php:3 -#: includes/admin/views/acf-field-group/locations.php:36 -#: includes/api/api-helpers.php:3391 assets/build/js/acf-field-group.js:771 -#: assets/build/js/acf-field-group.js:2385 -#: assets/build/js/acf-field-group.js:933 -#: assets/build/js/acf-field-group.js:2807 -msgid "or" -msgstr "o" - -#: includes/api/api-helpers.php:3364 -msgid "File size must not exceed %s." -msgstr "El tamaño del archivo no debe ser mayor de %s." - -#: includes/api/api-helpers.php:3359 -msgid "File size must be at least %s." -msgstr "El tamaño de archivo debe ser al menos %s." - -#: includes/api/api-helpers.php:3344 -msgid "Image height must not exceed %dpx." -msgstr "La altura de la imagen no debe exceder %dpx." - -#: includes/api/api-helpers.php:3339 -msgid "Image height must be at least %dpx." -msgstr "La altura de la imagen debe ser al menos %dpx." - -#: includes/api/api-helpers.php:3325 -msgid "Image width must not exceed %dpx." -msgstr "El ancho de la imagen no debe exceder %dpx." - -#: includes/api/api-helpers.php:3320 -msgid "Image width must be at least %dpx." -msgstr "El ancho de la imagen debe ser al menos %dpx." - -#: includes/api/api-helpers.php:1561 includes/api/api-term.php:147 -msgid "(no title)" -msgstr "(sin título)" - -#: includes/api/api-helpers.php:853 -msgid "Full Size" -msgstr "Tamaño completo" - -#: includes/api/api-helpers.php:812 -msgid "Large" -msgstr "Grande" - -#: includes/api/api-helpers.php:811 -msgid "Medium" -msgstr "Mediano" - -#: includes/api/api-helpers.php:810 -msgid "Thumbnail" -msgstr "Miniatura" - -#: includes/acf-field-functions.php:854 -#: includes/admin/post-types/admin-field-group.php:99 -#: assets/build/js/acf-field-group.js:1077 -#: assets/build/js/acf-field-group.js:1260 -msgid "(no label)" -msgstr "(sin etiqueta)" - -#: includes/fields/class-acf-field-textarea.php:145 -msgid "Sets the textarea height" -msgstr "Establece la altura del área de texto" - -#: includes/fields/class-acf-field-textarea.php:144 -msgid "Rows" -msgstr "Filas" - -#: includes/fields/class-acf-field-textarea.php:25 -msgid "Text Area" -msgstr "Área de texto" - -#: includes/fields/class-acf-field-checkbox.php:451 -msgid "Prepend an extra checkbox to toggle all choices" -msgstr "" -"Anteponer una casilla de verificación extra para cambiar todas las opciones" - -#: includes/fields/class-acf-field-checkbox.php:413 -msgid "Save 'custom' values to the field's choices" -msgstr "Guardar los valores «personalizados» a las opciones del campo" - -#: includes/fields/class-acf-field-checkbox.php:402 -msgid "Allow 'custom' values to be added" -msgstr "Permite añadir valores personalizados" - -#: includes/fields/class-acf-field-checkbox.php:38 -msgid "Add new choice" -msgstr "Añadir nueva opción" - -#: includes/fields/class-acf-field-checkbox.php:174 -msgid "Toggle All" -msgstr "Invertir todos" - -#: includes/fields/class-acf-field-page_link.php:506 -msgid "Allow Archives URLs" -msgstr "Permitir las URLs de los archivos" - -#: includes/fields/class-acf-field-page_link.php:179 -msgid "Archives" -msgstr "Archivo" - -#: includes/fields/class-acf-field-page_link.php:25 -msgid "Page Link" -msgstr "Enlace a página" - -#: includes/fields/class-acf-field-taxonomy.php:943 -#: includes/locations/class-acf-location-user-form.php:72 -msgid "Add" -msgstr "Añadir" - -#: includes/admin/views/acf-field-group/fields.php:53 -#: includes/fields/class-acf-field-taxonomy.php:908 -msgid "Name" -msgstr "Nombre" - -#: includes/fields/class-acf-field-taxonomy.php:892 -msgid "%s added" -msgstr "%s añadido/s" - -#: includes/fields/class-acf-field-taxonomy.php:856 -msgid "%s already exists" -msgstr "%s ya existe" - -#: includes/fields/class-acf-field-taxonomy.php:844 -msgid "User unable to add new %s" -msgstr "El usuario no puede añadir nuevos %s" - -#: includes/fields/class-acf-field-taxonomy.php:742 -msgid "Term ID" -msgstr "ID de término" - -#: includes/fields/class-acf-field-taxonomy.php:741 -msgid "Term Object" -msgstr "Objeto de término" - -#: includes/fields/class-acf-field-taxonomy.php:726 -msgid "Load value from posts terms" -msgstr "Cargar el valor de los términos de la publicación" - -#: includes/fields/class-acf-field-taxonomy.php:725 -msgid "Load Terms" -msgstr "Cargar términos" - -#: includes/fields/class-acf-field-taxonomy.php:715 -msgid "Connect selected terms to the post" -msgstr "Conectar los términos seleccionados con la publicación" - -#: includes/fields/class-acf-field-taxonomy.php:714 -msgid "Save Terms" -msgstr "Guardar términos" - -#: includes/fields/class-acf-field-taxonomy.php:704 -msgid "Allow new terms to be created whilst editing" -msgstr "Permitir la creación de nuevos términos mientras se edita" - -#: includes/fields/class-acf-field-taxonomy.php:703 -msgid "Create Terms" -msgstr "Crear términos" - -#: includes/fields/class-acf-field-taxonomy.php:762 -msgid "Radio Buttons" -msgstr "Botones de radio" - -#: includes/fields/class-acf-field-taxonomy.php:761 -msgid "Single Value" -msgstr "Valor único" - -#: includes/fields/class-acf-field-taxonomy.php:759 -msgid "Multi Select" -msgstr "Selección múltiple" - -#: includes/fields/class-acf-field-checkbox.php:25 -#: includes/fields/class-acf-field-taxonomy.php:758 -msgid "Checkbox" -msgstr "Casilla de verificación" - -#: includes/fields/class-acf-field-taxonomy.php:757 -msgid "Multiple Values" -msgstr "Valores múltiples" - -#: includes/fields/class-acf-field-taxonomy.php:752 -msgid "Select the appearance of this field" -msgstr "Selecciona la apariencia de este campo" - -#: includes/fields/class-acf-field-taxonomy.php:751 -msgid "Appearance" -msgstr "Apariencia" - -#: includes/fields/class-acf-field-taxonomy.php:693 -msgid "Select the taxonomy to be displayed" -msgstr "Selecciona la taxonomía a mostrar" - -#: includes/fields/class-acf-field-taxonomy.php:654 -msgctxt "No Terms" -msgid "No %s" -msgstr "" - -#: includes/fields/class-acf-field-number.php:266 -msgid "Value must be equal to or lower than %d" -msgstr "El valor debe ser menor o igual a %d" - -#: includes/fields/class-acf-field-number.php:259 -msgid "Value must be equal to or higher than %d" -msgstr "El valor debe ser mayor o igual a %d" - -#: includes/fields/class-acf-field-number.php:244 -msgid "Value must be a number" -msgstr "El valor debe ser un número" - -#: includes/fields/class-acf-field-number.php:25 -msgid "Number" -msgstr "Número" - -#: includes/fields/class-acf-field-radio.php:264 -msgid "Save 'other' values to the field's choices" -msgstr "Guardar los valores de 'otros' en las opciones del campo" - -#: includes/fields/class-acf-field-radio.php:253 -msgid "Add 'other' choice to allow for custom values" -msgstr "Añade la opción 'otros' para permitir valores personalizados" - -#: includes/admin/views/global/navigation.php:196 -msgid "Other" -msgstr "Otros" - -#: includes/fields/class-acf-field-radio.php:25 -msgid "Radio Button" -msgstr "Botón de radio" - -#: includes/fields/class-acf-field-accordion.php:107 -msgid "" -"Define an endpoint for the previous accordion to stop. This accordion will " -"not be visible." -msgstr "" -"Define un punto final para que el acordeón anterior se detenga. Este " -"acordeón no será visible." - -#: includes/fields/class-acf-field-accordion.php:96 -msgid "Allow this accordion to open without closing others." -msgstr "Permita que este acordeón se abra sin cerrar otros." - -#: includes/fields/class-acf-field-accordion.php:95 -msgid "Multi-Expand" -msgstr "" - -#: includes/fields/class-acf-field-accordion.php:85 -msgid "Display this accordion as open on page load." -msgstr "Muestra este acordeón como abierto en la carga de la página." - -#: includes/fields/class-acf-field-accordion.php:84 -msgid "Open" -msgstr "Abrir" - -#: includes/fields/class-acf-field-accordion.php:25 -msgid "Accordion" -msgstr "Acordeón" - -#: includes/fields/class-acf-field-file.php:267 -#: includes/fields/class-acf-field-file.php:279 -msgid "Restrict which files can be uploaded" -msgstr "Restringen los archivos que se pueden subir" - -#: includes/fields/class-acf-field-file.php:220 -msgid "File ID" -msgstr "ID del archivo" - -#: includes/fields/class-acf-field-file.php:219 -msgid "File URL" -msgstr "URL del archivo" - -#: includes/fields/class-acf-field-file.php:218 -msgid "File Array" -msgstr "Array del archivo" - -#: includes/fields/class-acf-field-file.php:186 -msgid "Add File" -msgstr "Añadir archivo" - -#: includes/admin/tools/class-acf-admin-tool-import.php:156 -#: includes/fields/class-acf-field-file.php:186 -msgid "No file selected" -msgstr "Ningún archivo seleccionado" - -#: includes/fields/class-acf-field-file.php:150 -msgid "File name" -msgstr "Nombre del archivo" - -#: includes/fields/class-acf-field-file.php:63 -#: assets/build/js/acf-input.js:2474 assets/build/js/acf-input.js:2625 -msgid "Update File" -msgstr "Actualizar archivo" - -#: includes/fields/class-acf-field-file.php:62 -#: assets/build/js/acf-input.js:2473 assets/build/js/acf-input.js:2624 -msgid "Edit File" -msgstr "Editar archivo" - -#: includes/admin/tools/class-acf-admin-tool-import.php:58 -#: includes/fields/class-acf-field-file.php:61 -#: assets/build/js/acf-input.js:2447 assets/build/js/acf-input.js:2597 -msgid "Select File" -msgstr "Seleccionar archivo" - -#: includes/fields/class-acf-field-file.php:25 -msgid "File" -msgstr "Archivo" - -#: includes/fields/class-acf-field-password.php:25 -msgid "Password" -msgstr "Contraseña" - -#: includes/fields/class-acf-field-select.php:392 -msgid "Specify the value returned" -msgstr "Especifica el valor devuelto" - -#: includes/fields/class-acf-field-select.php:461 -msgid "Use AJAX to lazy load choices?" -msgstr "¿Usar AJAX para hacer cargar las opciones de forma asíncrona?" - -#: includes/fields/class-acf-field-checkbox.php:362 -#: includes/fields/class-acf-field-select.php:381 -msgid "Enter each default value on a new line" -msgstr "Añade cada valor en una nueva línea" - -#: includes/fields/class-acf-field-select.php:252 includes/media.php:48 -#: assets/build/js/acf-input.js:6790 assets/build/js/acf-input.js:7266 -msgctxt "verb" -msgid "Select" -msgstr "Selecciona" - -#: includes/fields/class-acf-field-select.php:121 -msgctxt "Select2 JS load_fail" -msgid "Loading failed" -msgstr "Error al cargar" - -#: includes/fields/class-acf-field-select.php:120 -msgctxt "Select2 JS searching" -msgid "Searching…" -msgstr "Buscando…" - -#: includes/fields/class-acf-field-select.php:119 -msgctxt "Select2 JS load_more" -msgid "Loading more results…" -msgstr "Cargando más resultados…" - -#: includes/fields/class-acf-field-select.php:118 -msgctxt "Select2 JS selection_too_long_n" -msgid "You can only select %d items" -msgstr "Solo puedes seleccionar %d elementos" - -#: includes/fields/class-acf-field-select.php:117 -msgctxt "Select2 JS selection_too_long_1" -msgid "You can only select 1 item" -msgstr "Solo puedes seleccionar 1 elemento" - -#: includes/fields/class-acf-field-select.php:116 -msgctxt "Select2 JS input_too_long_n" -msgid "Please delete %d characters" -msgstr "Por favor, borra %d caracteres" - -#: includes/fields/class-acf-field-select.php:115 -msgctxt "Select2 JS input_too_long_1" -msgid "Please delete 1 character" -msgstr "Por favor, borra 1 carácter" - -#: includes/fields/class-acf-field-select.php:114 -msgctxt "Select2 JS input_too_short_n" -msgid "Please enter %d or more characters" -msgstr "Por favor, introduce %d o más caracteres" - -#: includes/fields/class-acf-field-select.php:113 -msgctxt "Select2 JS input_too_short_1" -msgid "Please enter 1 or more characters" -msgstr "Por favor, introduce 1 o más caracteres" - -#: includes/fields/class-acf-field-select.php:112 -msgctxt "Select2 JS matches_0" -msgid "No matches found" -msgstr "No se han encontrado coincidencias" - -#: includes/fields/class-acf-field-select.php:111 -msgctxt "Select2 JS matches_n" -msgid "%d results are available, use up and down arrow keys to navigate." -msgstr "" -"%d resultados disponibles, utiliza las flechas arriba y abajo para navegar " -"por los resultados." - -#: includes/fields/class-acf-field-select.php:110 -msgctxt "Select2 JS matches_1" -msgid "One result is available, press enter to select it." -msgstr "Hay un resultado disponible, pulsa enter para seleccionarlo." - -#: includes/fields/class-acf-field-select.php:25 -#: includes/fields/class-acf-field-taxonomy.php:763 -msgctxt "noun" -msgid "Select" -msgstr "Selección" - -#: includes/fields/class-acf-field-user.php:73 -msgid "User ID" -msgstr "ID del usuario" - -#: includes/fields/class-acf-field-user.php:72 -msgid "User Object" -msgstr "Grupo de objetos" - -#: includes/fields/class-acf-field-user.php:71 -msgid "User Array" -msgstr "Grupo de usuarios" - -#: includes/fields/class-acf-field-user.php:59 -msgid "All user roles" -msgstr "Todos los roles de usuario" - -#: includes/fields/class-acf-field-user.php:51 -msgid "Filter by Role" -msgstr "" - -#: includes/fields/class-acf-field-user.php:15 includes/locations.php:101 -msgid "User" -msgstr "Usuario" - -#: includes/fields/class-acf-field-separator.php:25 -msgid "Separator" -msgstr "Separador" - -#: includes/fields/class-acf-field-color_picker.php:75 -msgid "Select Color" -msgstr "Seleccionar color" - -#: includes/admin/post-types/admin-post-type.php:129 -#: includes/admin/post-types/admin-taxonomy.php:131 -#: includes/fields/class-acf-field-color_picker.php:73 -#: assets/build/js/acf-internal-post-type.js:72 -#: assets/build/js/acf-internal-post-type.js:86 -msgid "Default" -msgstr "Por defecto" - -#: includes/admin/views/acf-post-type/advanced-settings.php:89 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:141 -#: includes/fields/class-acf-field-color_picker.php:71 -msgid "Clear" -msgstr "Vaciar" - -#: includes/fields/class-acf-field-color_picker.php:25 -msgid "Color Picker" -msgstr "Selector de color" - -#: includes/fields/class-acf-field-date_time_picker.php:88 -msgctxt "Date Time Picker JS pmTextShort" -msgid "P" -msgstr "P" - -#: includes/fields/class-acf-field-date_time_picker.php:87 -msgctxt "Date Time Picker JS pmText" -msgid "PM" -msgstr "PM" - -#: includes/fields/class-acf-field-date_time_picker.php:84 -msgctxt "Date Time Picker JS amTextShort" -msgid "A" -msgstr "A" - -#: includes/fields/class-acf-field-date_time_picker.php:83 -msgctxt "Date Time Picker JS amText" -msgid "AM" -msgstr "AM" - -#: includes/fields/class-acf-field-date_time_picker.php:81 -msgctxt "Date Time Picker JS selectText" -msgid "Select" -msgstr "Seleccionar" - -#: includes/fields/class-acf-field-date_time_picker.php:80 -msgctxt "Date Time Picker JS closeText" -msgid "Done" -msgstr "Hecho" - -#: includes/fields/class-acf-field-date_time_picker.php:79 -msgctxt "Date Time Picker JS currentText" -msgid "Now" -msgstr "Ahora" - -#: includes/fields/class-acf-field-date_time_picker.php:78 -msgctxt "Date Time Picker JS timezoneText" -msgid "Time Zone" -msgstr "Zona horaria" - -#: includes/fields/class-acf-field-date_time_picker.php:77 -msgctxt "Date Time Picker JS microsecText" -msgid "Microsecond" -msgstr "Microsegundo" - -#: includes/fields/class-acf-field-date_time_picker.php:76 -msgctxt "Date Time Picker JS millisecText" -msgid "Millisecond" -msgstr "Milisegundo" - -#: includes/fields/class-acf-field-date_time_picker.php:75 -msgctxt "Date Time Picker JS secondText" -msgid "Second" -msgstr "Segundo" - -#: includes/fields/class-acf-field-date_time_picker.php:74 -msgctxt "Date Time Picker JS minuteText" -msgid "Minute" -msgstr "Minuto" - -#: includes/fields/class-acf-field-date_time_picker.php:73 -msgctxt "Date Time Picker JS hourText" -msgid "Hour" -msgstr "Hora" - -#: includes/fields/class-acf-field-date_time_picker.php:72 -msgctxt "Date Time Picker JS timeText" -msgid "Time" -msgstr "Hora" - -#: includes/fields/class-acf-field-date_time_picker.php:71 -msgctxt "Date Time Picker JS timeOnlyTitle" -msgid "Choose Time" -msgstr "Elegir hora" - -#: includes/fields/class-acf-field-date_time_picker.php:25 -msgid "Date Time Picker" -msgstr "Selector de fecha y hora" - -#: includes/fields/class-acf-field-accordion.php:106 -msgid "Endpoint" -msgstr "Variable" - -#: includes/admin/views/acf-field-group/options.php:130 -#: includes/fields/class-acf-field-tab.php:115 -msgid "Left aligned" -msgstr "Alineada a la izquierda" - -#: includes/admin/views/acf-field-group/options.php:129 -#: includes/fields/class-acf-field-tab.php:114 -msgid "Top aligned" -msgstr "Alineada arriba" - -#: includes/fields/class-acf-field-tab.php:110 -msgid "Placement" -msgstr "Ubicación" - -#: includes/fields/class-acf-field-tab.php:26 -msgid "Tab" -msgstr "Pestaña" - -#: includes/fields/class-acf-field-url.php:162 -msgid "Value must be a valid URL" -msgstr "El valor debe ser una URL válida" - -#: includes/fields/class-acf-field-link.php:177 -msgid "Link URL" -msgstr "URL del enlace" - -#: includes/fields/class-acf-field-link.php:176 -msgid "Link Array" -msgstr "Array de enlaces" - -#: includes/fields/class-acf-field-link.php:145 -msgid "Opens in a new window/tab" -msgstr "Abrir en una nueva ventana/pestaña" - -#: includes/fields/class-acf-field-link.php:140 -msgid "Select Link" -msgstr "Elige el enlace" - -#: includes/fields/class-acf-field-link.php:25 -msgid "Link" -msgstr "Enlace" - -#: includes/fields/class-acf-field-email.php:25 -msgid "Email" -msgstr "Correo electrónico" - -#: includes/fields/class-acf-field-number.php:188 -#: includes/fields/class-acf-field-range.php:217 -msgid "Step Size" -msgstr "Tamaño de paso" - -#: includes/fields/class-acf-field-number.php:158 -#: includes/fields/class-acf-field-range.php:195 -msgid "Maximum Value" -msgstr "Valor máximo" - -#: includes/fields/class-acf-field-number.php:148 -#: includes/fields/class-acf-field-range.php:184 -msgid "Minimum Value" -msgstr "Valor mínimo" - -#: includes/fields/class-acf-field-range.php:25 -msgid "Range" -msgstr "Rango" - -#: includes/fields/class-acf-field-button-group.php:175 -#: includes/fields/class-acf-field-checkbox.php:379 -#: includes/fields/class-acf-field-radio.php:220 -#: includes/fields/class-acf-field-select.php:399 -msgid "Both (Array)" -msgstr "Ambos (Array)" - -#: includes/admin/views/acf-field-group/fields.php:52 -#: includes/fields/class-acf-field-button-group.php:174 -#: includes/fields/class-acf-field-checkbox.php:378 -#: includes/fields/class-acf-field-radio.php:219 -#: includes/fields/class-acf-field-select.php:398 -msgid "Label" -msgstr "Etiqueta" - -#: includes/fields/class-acf-field-button-group.php:173 -#: includes/fields/class-acf-field-checkbox.php:377 -#: includes/fields/class-acf-field-radio.php:218 -#: includes/fields/class-acf-field-select.php:397 -msgid "Value" -msgstr "Valor" - -#: includes/fields/class-acf-field-button-group.php:222 -#: includes/fields/class-acf-field-checkbox.php:441 -#: includes/fields/class-acf-field-radio.php:292 -msgid "Vertical" -msgstr "Vertical" - -#: includes/fields/class-acf-field-button-group.php:221 -#: includes/fields/class-acf-field-checkbox.php:442 -#: includes/fields/class-acf-field-radio.php:293 -msgid "Horizontal" -msgstr "Horizontal" - -#: includes/fields/class-acf-field-button-group.php:148 -#: includes/fields/class-acf-field-checkbox.php:352 -#: includes/fields/class-acf-field-radio.php:193 -#: includes/fields/class-acf-field-select.php:370 -msgid "red : Red" -msgstr "rojo : Rojo" - -#: includes/fields/class-acf-field-button-group.php:148 -#: includes/fields/class-acf-field-checkbox.php:352 -#: includes/fields/class-acf-field-radio.php:193 -#: includes/fields/class-acf-field-select.php:370 -msgid "For more control, you may specify both a value and label like this:" -msgstr "" -"Para más control, puedes especificar tanto un valor como una etiqueta, así:" - -#: includes/fields/class-acf-field-button-group.php:148 -#: includes/fields/class-acf-field-checkbox.php:352 -#: includes/fields/class-acf-field-radio.php:193 -#: includes/fields/class-acf-field-select.php:370 -msgid "Enter each choice on a new line." -msgstr "Añade cada opción en una nueva línea." - -#: includes/fields/class-acf-field-button-group.php:147 -#: includes/fields/class-acf-field-checkbox.php:351 -#: includes/fields/class-acf-field-radio.php:192 -#: includes/fields/class-acf-field-select.php:369 -msgid "Choices" -msgstr "Opciones" - -#: includes/fields/class-acf-field-button-group.php:24 -msgid "Button Group" -msgstr "Grupo de botones" - -#: includes/fields/class-acf-field-button-group.php:194 -#: includes/fields/class-acf-field-page_link.php:538 -#: includes/fields/class-acf-field-post_object.php:448 -#: includes/fields/class-acf-field-radio.php:238 -#: includes/fields/class-acf-field-select.php:429 -#: includes/fields/class-acf-field-taxonomy.php:772 -#: includes/fields/class-acf-field-user.php:103 -msgid "Allow Null" -msgstr "" - -#: includes/fields/class-acf-field-page_link.php:263 -#: includes/fields/class-acf-field-post_object.php:257 -#: includes/fields/class-acf-field-taxonomy.php:930 -msgid "Parent" -msgstr "Superior" - -#: includes/fields/class-acf-field-wysiwyg.php:390 -msgid "TinyMCE will not be initialized until field is clicked" -msgstr "TinyMCE no se inicializará hasta que se haga clic en el campo" - -#: includes/fields/class-acf-field-wysiwyg.php:389 -msgid "Delay Initialization" -msgstr "" - -#: includes/fields/class-acf-field-wysiwyg.php:378 -msgid "Show Media Upload Buttons" -msgstr "" - -#: includes/fields/class-acf-field-wysiwyg.php:362 -msgid "Toolbar" -msgstr "Barra de herramientas" - -#: includes/fields/class-acf-field-wysiwyg.php:354 -msgid "Text Only" -msgstr "Sólo texto" - -#: includes/fields/class-acf-field-wysiwyg.php:353 -msgid "Visual Only" -msgstr "Sólo visual" - -#: includes/fields/class-acf-field-wysiwyg.php:352 -msgid "Visual & Text" -msgstr "Visual y Texto" - -#: includes/fields/class-acf-field-wysiwyg.php:347 -msgid "Tabs" -msgstr "Pestañas" - -#: includes/fields/class-acf-field-wysiwyg.php:285 -msgid "Click to initialize TinyMCE" -msgstr "Haz clic para iniciar TinyMCE" - -#: includes/fields/class-acf-field-wysiwyg.php:279 -msgctxt "Name for the Text editor tab (formerly HTML)" -msgid "Text" -msgstr "Texto" - -#: includes/fields/class-acf-field-wysiwyg.php:278 -msgid "Visual" -msgstr "Visual" - -#: includes/fields/class-acf-field-text.php:189 -#: includes/fields/class-acf-field-textarea.php:236 -msgid "Value must not exceed %d characters" -msgstr "El valor no debe exceder los %d caracteres" - -#: includes/fields/class-acf-field-text.php:124 -#: includes/fields/class-acf-field-textarea.php:124 -msgid "Leave blank for no limit" -msgstr "Déjalo en blanco para ilimitado" - -#: includes/fields/class-acf-field-text.php:123 -#: includes/fields/class-acf-field-textarea.php:123 -msgid "Character Limit" -msgstr "Límite de caracteres" - -#: includes/fields/class-acf-field-email.php:158 -#: includes/fields/class-acf-field-number.php:209 -#: includes/fields/class-acf-field-password.php:105 -#: includes/fields/class-acf-field-range.php:239 -#: includes/fields/class-acf-field-text.php:164 -msgid "Appears after the input" -msgstr "Aparece después del campo" - -#: includes/fields/class-acf-field-email.php:157 -#: includes/fields/class-acf-field-number.php:208 -#: includes/fields/class-acf-field-password.php:104 -#: includes/fields/class-acf-field-range.php:238 -#: includes/fields/class-acf-field-text.php:163 -msgid "Append" -msgstr "Anexar" - -#: includes/fields/class-acf-field-email.php:148 -#: includes/fields/class-acf-field-number.php:199 -#: includes/fields/class-acf-field-password.php:95 -#: includes/fields/class-acf-field-range.php:229 -#: includes/fields/class-acf-field-text.php:154 -msgid "Appears before the input" -msgstr "Aparece antes del campo" - -#: includes/fields/class-acf-field-email.php:147 -#: includes/fields/class-acf-field-number.php:198 -#: includes/fields/class-acf-field-password.php:94 -#: includes/fields/class-acf-field-range.php:228 -#: includes/fields/class-acf-field-text.php:153 -msgid "Prepend" -msgstr "Anteponer" - -#: includes/fields/class-acf-field-email.php:138 -#: includes/fields/class-acf-field-number.php:179 -#: includes/fields/class-acf-field-password.php:85 -#: includes/fields/class-acf-field-text.php:144 -#: includes/fields/class-acf-field-textarea.php:156 -#: includes/fields/class-acf-field-url.php:122 -msgid "Appears within the input" -msgstr "Aparece en el campo" - -#: includes/fields/class-acf-field-email.php:137 -#: includes/fields/class-acf-field-number.php:178 -#: includes/fields/class-acf-field-password.php:84 -#: includes/fields/class-acf-field-text.php:143 -#: includes/fields/class-acf-field-textarea.php:155 -#: includes/fields/class-acf-field-url.php:121 -msgid "Placeholder Text" -msgstr "Marcador de posición" - -#: includes/fields/class-acf-field-button-group.php:158 -#: includes/fields/class-acf-field-email.php:118 -#: includes/fields/class-acf-field-number.php:129 -#: includes/fields/class-acf-field-radio.php:203 -#: includes/fields/class-acf-field-range.php:165 -#: includes/fields/class-acf-field-text.php:104 -#: includes/fields/class-acf-field-textarea.php:104 -#: includes/fields/class-acf-field-url.php:102 -#: includes/fields/class-acf-field-wysiwyg.php:312 -msgid "Appears when creating a new post" -msgstr "Aparece cuando se está creando una nueva entrada" - -#: includes/fields/class-acf-field-text.php:25 -msgid "Text" -msgstr "Texto" - -#: includes/fields/class-acf-field-relationship.php:794 -msgid "%1$s requires at least %2$s selection" -msgid_plural "%1$s requires at least %2$s selections" -msgstr[0] "%1$s necesita al menos %2$s selección" -msgstr[1] "%1$s necesita al menos %2$s selecciones" - -#: includes/fields/class-acf-field-post_object.php:417 -#: includes/fields/class-acf-field-relationship.php:644 -msgid "Post ID" -msgstr "ID de publicación" - -#: includes/fields/class-acf-field-post_object.php:17 -#: includes/fields/class-acf-field-post_object.php:416 -#: includes/fields/class-acf-field-relationship.php:643 -msgid "Post Object" -msgstr "Objeto de publicación" - -#: includes/fields/class-acf-field-relationship.php:676 -msgid "Maximum Posts" -msgstr "" - -#: includes/fields/class-acf-field-relationship.php:666 -msgid "Minimum Posts" -msgstr "" - -#: includes/admin/views/acf-field-group/options.php:183 -#: includes/admin/views/acf-post-type/advanced-settings.php:29 -#: includes/fields/class-acf-field-relationship.php:701 -msgid "Featured Image" -msgstr "Imagen destacada" - -#: includes/fields/class-acf-field-relationship.php:697 -msgid "Selected elements will be displayed in each result" -msgstr "Los elementos seleccionados se mostrarán en cada resultado" - -#: includes/fields/class-acf-field-relationship.php:696 -msgid "Elements" -msgstr "Elementos" - -#: includes/fields/class-acf-field-relationship.php:630 -#: includes/fields/class-acf-field-taxonomy.php:20 -#: includes/fields/class-acf-field-taxonomy.php:692 -#: includes/locations/class-acf-location-taxonomy.php:22 -msgid "Taxonomy" -msgstr "Taxonomía" - -#: includes/fields/class-acf-field-relationship.php:629 -#: includes/locations/class-acf-location-post-type.php:22 -#: includes/post-types/class-acf-post-type.php:92 -msgid "Post Type" -msgstr "Tipo de contenido" - -#: includes/fields/class-acf-field-relationship.php:623 -msgid "Filters" -msgstr "Filtros" - -#: includes/fields/class-acf-field-page_link.php:499 -#: includes/fields/class-acf-field-post_object.php:404 -#: includes/fields/class-acf-field-relationship.php:616 -msgid "All taxonomies" -msgstr "Todas las taxonomías" - -#: includes/fields/class-acf-field-page_link.php:491 -#: includes/fields/class-acf-field-post_object.php:396 -#: includes/fields/class-acf-field-relationship.php:608 -msgid "Filter by Taxonomy" -msgstr "Filtrar por taxonomía" - -#: includes/fields/class-acf-field-page_link.php:469 -#: includes/fields/class-acf-field-post_object.php:374 -#: includes/fields/class-acf-field-relationship.php:586 -msgid "All post types" -msgstr "Todos los tipos de contenido" - -#: includes/fields/class-acf-field-page_link.php:461 -#: includes/fields/class-acf-field-post_object.php:366 -#: includes/fields/class-acf-field-relationship.php:578 -msgid "Filter by Post Type" -msgstr "Filtrar por tipo de contenido" - -#: includes/fields/class-acf-field-relationship.php:476 -msgid "Search..." -msgstr "Buscar..." - -#: includes/fields/class-acf-field-relationship.php:406 -msgid "Select taxonomy" -msgstr "Selecciona taxonomía" - -#: includes/fields/class-acf-field-relationship.php:397 -msgid "Select post type" -msgstr "Seleccionar tipo de contenido" - -#: includes/fields/class-acf-field-relationship.php:61 -#: assets/build/js/acf-input.js:3930 assets/build/js/acf-input.js:4214 -msgid "No matches found" -msgstr "No se han encontrado coincidencias" - -#: includes/fields/class-acf-field-relationship.php:60 -#: assets/build/js/acf-input.js:3913 assets/build/js/acf-input.js:4193 -msgid "Loading" -msgstr "Cargando" - -#: includes/fields/class-acf-field-relationship.php:59 -#: assets/build/js/acf-input.js:3818 assets/build/js/acf-input.js:4084 -msgid "Maximum values reached ( {max} values )" -msgstr "Valores máximos alcanzados ( {max} valores )" - -#: includes/fields/class-acf-field-relationship.php:17 -msgid "Relationship" -msgstr "Relación" - -#: includes/fields/class-acf-field-file.php:291 -#: includes/fields/class-acf-field-image.php:317 -msgid "Comma separated list. Leave blank for all types" -msgstr "Lista separada por comas. Déjalo en blanco para todos los tipos" - -#: includes/fields/class-acf-field-file.php:290 -#: includes/fields/class-acf-field-image.php:316 -msgid "Allowed File Types" -msgstr "" - -#: includes/fields/class-acf-field-file.php:278 -#: includes/fields/class-acf-field-image.php:280 -msgid "Maximum" -msgstr "Máximo" - -#: includes/fields/class-acf-field-file.php:154 -#: includes/fields/class-acf-field-file.php:270 -#: includes/fields/class-acf-field-file.php:282 -#: includes/fields/class-acf-field-image.php:271 -#: includes/fields/class-acf-field-image.php:307 -msgid "File size" -msgstr "Tamaño del archivo" - -#: includes/fields/class-acf-field-image.php:245 -#: includes/fields/class-acf-field-image.php:281 -msgid "Restrict which images can be uploaded" -msgstr "Restringir que las imágenes se pueden subir" - -#: includes/fields/class-acf-field-file.php:266 -#: includes/fields/class-acf-field-image.php:244 -msgid "Minimum" -msgstr "Mínimo" - -#: includes/fields/class-acf-field-file.php:235 -#: includes/fields/class-acf-field-image.php:210 -msgid "Uploaded to post" -msgstr "Subidos al contenido" - -#: includes/fields/class-acf-field-file.php:234 -#: includes/fields/class-acf-field-image.php:209 -#: includes/locations/class-acf-location-attachment.php:73 -#: includes/locations/class-acf-location-comment.php:61 -#: includes/locations/class-acf-location-nav-menu.php:74 -#: includes/locations/class-acf-location-taxonomy.php:63 -#: includes/locations/class-acf-location-user-form.php:71 -#: includes/locations/class-acf-location-user-role.php:78 -#: includes/locations/class-acf-location-widget.php:65 -msgid "All" -msgstr "Todos" - -#: includes/fields/class-acf-field-file.php:229 -#: includes/fields/class-acf-field-image.php:204 -msgid "Limit the media library choice" -msgstr "Limitar las opciones de la biblioteca de medios" - -#: includes/fields/class-acf-field-file.php:228 -#: includes/fields/class-acf-field-image.php:203 -msgid "Library" -msgstr "Biblioteca" - -#: includes/fields/class-acf-field-image.php:336 -msgid "Preview Size" -msgstr "Tamaño de vista previa" - -#: includes/fields/class-acf-field-image.php:195 -msgid "Image ID" -msgstr "ID de imagen" - -#: includes/fields/class-acf-field-image.php:194 -msgid "Image URL" -msgstr "URL de imagen" - -#: includes/fields/class-acf-field-image.php:193 -msgid "Image Array" -msgstr "Array de imágenes" - -#: includes/fields/class-acf-field-button-group.php:168 -#: includes/fields/class-acf-field-checkbox.php:372 -#: includes/fields/class-acf-field-file.php:213 -#: includes/fields/class-acf-field-link.php:171 -#: includes/fields/class-acf-field-radio.php:213 -msgid "Specify the returned value on front end" -msgstr "Especificar el valor devuelto en la web" - -#: includes/fields/class-acf-field-button-group.php:167 -#: includes/fields/class-acf-field-checkbox.php:371 -#: includes/fields/class-acf-field-file.php:212 -#: includes/fields/class-acf-field-link.php:170 -#: includes/fields/class-acf-field-radio.php:212 -#: includes/fields/class-acf-field-taxonomy.php:736 -msgid "Return Value" -msgstr "Valor de retorno" - -#: includes/fields/class-acf-field-image.php:162 -msgid "Add Image" -msgstr "Añadir imagen" - -#: includes/fields/class-acf-field-image.php:162 -msgid "No image selected" -msgstr "No hay ninguna imagen seleccionada" - -#: includes/assets.php:352 includes/fields/class-acf-field-file.php:162 -#: includes/fields/class-acf-field-image.php:142 -#: includes/fields/class-acf-field-link.php:145 assets/build/js/acf.js:1563 -#: assets/build/js/acf.js:1657 -msgid "Remove" -msgstr "Quitar" - -#: includes/admin/views/acf-field-group/field.php:76 -#: includes/fields/class-acf-field-file.php:160 -#: includes/fields/class-acf-field-image.php:140 -#: includes/fields/class-acf-field-link.php:145 -msgid "Edit" -msgstr "Editar" - -#: includes/fields/class-acf-field-image.php:70 includes/media.php:55 -#: assets/build/js/acf-input.js:6837 assets/build/js/acf-input.js:7320 -msgid "All images" -msgstr "Todas las imágenes" - -#: includes/fields/class-acf-field-image.php:69 -#: assets/build/js/acf-input.js:3181 assets/build/js/acf-input.js:3399 -msgid "Update Image" -msgstr "Actualizar imagen" - -#: includes/fields/class-acf-field-image.php:68 -#: assets/build/js/acf-input.js:3180 assets/build/js/acf-input.js:3398 -msgid "Edit Image" -msgstr "Editar imagen" - -#: includes/fields/class-acf-field-image.php:67 -#: assets/build/js/acf-input.js:3156 assets/build/js/acf-input.js:3373 -msgid "Select Image" -msgstr "Seleccionar imagen" - -#: includes/fields/class-acf-field-image.php:25 -msgid "Image" -msgstr "Imagen" - -#: includes/fields/class-acf-field-message.php:125 -msgid "Allow HTML markup to display as visible text instead of rendering" -msgstr "" -"Permitir que el maquetado HTML se muestre como texto visible en vez de " -"interpretarlo" - -#: includes/fields/class-acf-field-message.php:124 -msgid "Escape HTML" -msgstr "Escapar HTML" - -#: includes/fields/class-acf-field-message.php:116 -#: includes/fields/class-acf-field-textarea.php:172 -msgid "No Formatting" -msgstr "Sin formato" - -#: includes/fields/class-acf-field-message.php:115 -#: includes/fields/class-acf-field-textarea.php:171 -msgid "Automatically add <br>" -msgstr "Añadir <br> automáticamente" - -#: includes/fields/class-acf-field-message.php:114 -#: includes/fields/class-acf-field-textarea.php:170 -msgid "Automatically add paragraphs" -msgstr "Añadir párrafos automáticamente" - -#: includes/fields/class-acf-field-message.php:110 -#: includes/fields/class-acf-field-textarea.php:166 -msgid "Controls how new lines are rendered" -msgstr "Controla cómo se muestran los saltos de línea" - -#: includes/fields/class-acf-field-message.php:109 -#: includes/fields/class-acf-field-textarea.php:165 -msgid "New Lines" -msgstr "Nuevas líneas" - -#: includes/fields/class-acf-field-date_picker.php:232 -#: includes/fields/class-acf-field-date_time_picker.php:220 -msgid "Week Starts On" -msgstr "La semana comienza el" - -#: includes/fields/class-acf-field-date_picker.php:201 -msgid "The format used when saving a value" -msgstr "El formato utilizado cuando se guarda un valor" - -#: includes/fields/class-acf-field-date_picker.php:200 -msgid "Save Format" -msgstr "Guardar formato" - -#: includes/fields/class-acf-field-date_picker.php:67 -msgctxt "Date Picker JS weekHeader" -msgid "Wk" -msgstr "Sem" - -#: includes/fields/class-acf-field-date_picker.php:66 -msgctxt "Date Picker JS prevText" -msgid "Prev" -msgstr "Anterior" - -#: includes/fields/class-acf-field-date_picker.php:65 -msgctxt "Date Picker JS nextText" -msgid "Next" -msgstr "Siguiente" - -#: includes/fields/class-acf-field-date_picker.php:64 -msgctxt "Date Picker JS currentText" -msgid "Today" -msgstr "Hoy" - -#: includes/fields/class-acf-field-date_picker.php:63 -msgctxt "Date Picker JS closeText" -msgid "Done" -msgstr "Listo" - -#: includes/fields/class-acf-field-date_picker.php:25 -msgid "Date Picker" -msgstr "Selector de fecha" - -#: includes/fields/class-acf-field-image.php:248 -#: includes/fields/class-acf-field-image.php:284 -#: includes/fields/class-acf-field-oembed.php:268 -msgid "Width" -msgstr "Ancho" - -#: includes/fields/class-acf-field-oembed.php:265 -#: includes/fields/class-acf-field-oembed.php:277 -msgid "Embed Size" -msgstr "Tamaño de incrustación" - -#: includes/fields/class-acf-field-oembed.php:222 -msgid "Enter URL" -msgstr "Introduce la URL" - -#: includes/fields/class-acf-field-oembed.php:25 -msgid "oEmbed" -msgstr "oEmbed" - -#: includes/fields/class-acf-field-true_false.php:184 -msgid "Text shown when inactive" -msgstr "Texto mostrado cuando está inactivo" - -#: includes/fields/class-acf-field-true_false.php:183 -msgid "Off Text" -msgstr "Texto desactivado" - -#: includes/fields/class-acf-field-true_false.php:168 -msgid "Text shown when active" -msgstr "Texto mostrado cuando está activo" - -#: includes/fields/class-acf-field-true_false.php:167 -msgid "On Text" -msgstr "Texto activado" - -#: includes/fields/class-acf-field-select.php:450 -#: includes/fields/class-acf-field-true_false.php:199 -msgid "Stylized UI" -msgstr "" - -#: includes/fields/class-acf-field-button-group.php:157 -#: includes/fields/class-acf-field-checkbox.php:361 -#: includes/fields/class-acf-field-color_picker.php:156 -#: includes/fields/class-acf-field-email.php:117 -#: includes/fields/class-acf-field-number.php:128 -#: includes/fields/class-acf-field-radio.php:202 -#: includes/fields/class-acf-field-range.php:164 -#: includes/fields/class-acf-field-select.php:380 -#: includes/fields/class-acf-field-text.php:103 -#: includes/fields/class-acf-field-textarea.php:103 -#: includes/fields/class-acf-field-true_false.php:147 -#: includes/fields/class-acf-field-url.php:101 -#: includes/fields/class-acf-field-wysiwyg.php:311 -msgid "Default Value" -msgstr "Valor por defecto" - -#: includes/fields/class-acf-field-true_false.php:138 -msgid "Displays text alongside the checkbox" -msgstr "Muestra el texto junto a la casilla de verificación" - -#: includes/fields/class-acf-field-message.php:26 -#: includes/fields/class-acf-field-message.php:99 -#: includes/fields/class-acf-field-true_false.php:137 -msgid "Message" -msgstr "Mensaje" - -#: includes/assets.php:351 includes/fields/class-acf-field-true_false.php:86 -#: includes/fields/class-acf-field-true_false.php:187 -#: assets/build/js/acf.js:1740 assets/build/js/acf.js:1857 -msgid "No" -msgstr "No" - -#: includes/assets.php:350 includes/fields/class-acf-field-true_false.php:83 -#: includes/fields/class-acf-field-true_false.php:171 -#: assets/build/js/acf.js:1739 assets/build/js/acf.js:1856 -msgid "Yes" -msgstr "Sí" - -#: includes/fields/class-acf-field-true_false.php:25 -msgid "True / False" -msgstr "Verdadero / Falso" - -#: includes/fields/class-acf-field-group.php:474 -msgid "Row" -msgstr "Fila" - -#: includes/fields/class-acf-field-group.php:473 -msgid "Table" -msgstr "Tabla" - -#: includes/admin/post-types/admin-field-group.php:140 -#: includes/fields/class-acf-field-group.php:472 -msgid "Block" -msgstr "Bloque" - -#: includes/fields/class-acf-field-group.php:467 -msgid "Specify the style used to render the selected fields" -msgstr "" -"Especifica el estilo utilizado para representar los campos seleccionados" - -#: includes/fields.php:356 includes/fields/class-acf-field-button-group.php:215 -#: includes/fields/class-acf-field-checkbox.php:435 -#: includes/fields/class-acf-field-group.php:466 -#: includes/fields/class-acf-field-radio.php:286 -msgid "Layout" -msgstr "Estructura" - -#: includes/fields/class-acf-field-group.php:450 -msgid "Sub Fields" -msgstr "Subcampos" - -#: includes/fields/class-acf-field-group.php:25 -msgid "Group" -msgstr "Grupo" - -#: includes/fields/class-acf-field-google-map.php:235 -msgid "Customize the map height" -msgstr "Personalizar la altura del mapa" - -#: includes/fields/class-acf-field-google-map.php:234 -#: includes/fields/class-acf-field-image.php:259 -#: includes/fields/class-acf-field-image.php:295 -#: includes/fields/class-acf-field-oembed.php:280 -msgid "Height" -msgstr "Altura" - -#: includes/fields/class-acf-field-google-map.php:223 -msgid "Set the initial zoom level" -msgstr "Establecer el nivel inicial de zoom" - -#: includes/fields/class-acf-field-google-map.php:222 -msgid "Zoom" -msgstr "Zoom" - -#: includes/fields/class-acf-field-google-map.php:196 -#: includes/fields/class-acf-field-google-map.php:209 -msgid "Center the initial map" -msgstr "Centrar inicialmente el mapa" - -#: includes/fields/class-acf-field-google-map.php:195 -#: includes/fields/class-acf-field-google-map.php:208 -msgid "Center" -msgstr "Centro" - -#: includes/fields/class-acf-field-google-map.php:163 -msgid "Search for address..." -msgstr "Buscar dirección..." - -#: includes/fields/class-acf-field-google-map.php:160 -msgid "Find current location" -msgstr "Encontrar ubicación actual" - -#: includes/fields/class-acf-field-google-map.php:159 -msgid "Clear location" -msgstr "Borrar ubicación" - -#: includes/fields/class-acf-field-google-map.php:158 -#: includes/fields/class-acf-field-relationship.php:628 -msgid "Search" -msgstr "Buscar" - -#: includes/fields/class-acf-field-google-map.php:63 -#: assets/build/js/acf-input.js:2840 assets/build/js/acf-input.js:3026 -msgid "Sorry, this browser does not support geolocation" -msgstr "Lo siento, este navegador no es compatible con la geolocalización" - -#: includes/fields/class-acf-field-google-map.php:25 -msgid "Google Map" -msgstr "Mapa de Google" - -#: includes/fields/class-acf-field-date_picker.php:212 -#: includes/fields/class-acf-field-date_time_picker.php:201 -#: includes/fields/class-acf-field-time_picker.php:132 -msgid "The format returned via template functions" -msgstr "El formato devuelto por de las funciones del tema" - -#: includes/fields/class-acf-field-color_picker.php:180 -#: includes/fields/class-acf-field-date_picker.php:211 -#: includes/fields/class-acf-field-date_time_picker.php:200 -#: includes/fields/class-acf-field-image.php:187 -#: includes/fields/class-acf-field-post_object.php:411 -#: includes/fields/class-acf-field-relationship.php:638 -#: includes/fields/class-acf-field-select.php:391 -#: includes/fields/class-acf-field-time_picker.php:131 -#: includes/fields/class-acf-field-user.php:66 -msgid "Return Format" -msgstr "Formato de retorno" - -#: includes/fields/class-acf-field-date_picker.php:190 -#: includes/fields/class-acf-field-date_picker.php:221 -#: includes/fields/class-acf-field-date_time_picker.php:192 -#: includes/fields/class-acf-field-date_time_picker.php:210 -#: includes/fields/class-acf-field-time_picker.php:123 -#: includes/fields/class-acf-field-time_picker.php:139 -msgid "Custom:" -msgstr "Personalizado:" - -#: includes/fields/class-acf-field-date_picker.php:182 -#: includes/fields/class-acf-field-date_time_picker.php:183 -#: includes/fields/class-acf-field-time_picker.php:116 -msgid "The format displayed when editing a post" -msgstr "El formato mostrado cuando se edita una publicación" - -#: includes/fields/class-acf-field-date_picker.php:181 -#: includes/fields/class-acf-field-date_time_picker.php:182 -#: includes/fields/class-acf-field-time_picker.php:115 -msgid "Display Format" -msgstr "Formato de visualización" - -#: includes/fields/class-acf-field-time_picker.php:25 -msgid "Time Picker" -msgstr "Selector de hora" - -#. translators: counts for inactive field groups -#: acf.php:503 -msgid "Inactive (%s)" -msgid_plural "Inactive (%s)" -msgstr[0] "" -msgstr[1] "" - -#: acf.php:462 -msgid "No Fields found in Trash" -msgstr "No se han encontrado campos en la papelera" - -#: acf.php:461 -msgid "No Fields found" -msgstr "No se han encontrado campos" - -#: acf.php:460 -msgid "Search Fields" -msgstr "Buscar campos" - -#: acf.php:459 -msgid "View Field" -msgstr "Ver campo" - -#: acf.php:458 includes/admin/views/acf-field-group/fields.php:115 -msgid "New Field" -msgstr "Nuevo campo" - -#: acf.php:457 -msgid "Edit Field" -msgstr "Editar campo" - -#: acf.php:456 -msgid "Add New Field" -msgstr "Añadir nuevo campo" - -#: acf.php:454 -msgid "Field" -msgstr "Campo" - -#: acf.php:453 includes/admin/post-types/admin-field-group.php:163 -#: includes/admin/post-types/admin-field-groups.php:119 -#: includes/admin/views/acf-field-group/fields.php:32 -msgid "Fields" -msgstr "Campos" - -#: acf.php:428 -msgid "No Field Groups found in Trash" -msgstr "No se han encontrado grupos de campos en la papelera" - -#: acf.php:427 -msgid "No Field Groups found" -msgstr "No se han encontrado grupos de campos" - -#: acf.php:426 -msgid "Search Field Groups" -msgstr "Buscar grupo de campos" - -#: acf.php:425 -msgid "View Field Group" -msgstr "Ver grupo de campos" - -#: acf.php:424 -msgid "New Field Group" -msgstr "Nuevo grupo de campos" - -#: acf.php:423 -msgid "Edit Field Group" -msgstr "Editar grupo de campos" - -#: acf.php:422 -msgid "Add New Field Group" -msgstr "Añadir nuevo grupo de campos" - -#: acf.php:421 acf.php:455 -#: includes/admin/views/acf-post-type/advanced-settings.php:219 -#: includes/admin/views/acf-post-type/advanced-settings.php:221 -#: includes/post-types/class-acf-post-type.php:93 -#: includes/post-types/class-acf-taxonomy.php:92 -msgid "Add New" -msgstr "Añadir nuevo" - -#: acf.php:420 -msgid "Field Group" -msgstr "Grupo de campos" - -#: acf.php:419 includes/admin/post-types/admin-field-groups.php:78 -#: includes/admin/post-types/admin-post-types.php:138 -#: includes/admin/post-types/admin-taxonomies.php:138 -msgid "Field Groups" -msgstr "Grupos de campos" - -#. Description of the plugin -msgid "Customize WordPress with powerful, professional and intuitive fields." -msgstr "Personaliza WordPress con campos potentes, profesionales e intuitivos." - -#. Plugin URI of the plugin -msgid "https://www.advancedcustomfields.com" -msgstr "https://www.advancedcustomfields.com" - -#. Plugin Name of the plugin -#: acf.php:94 -msgid "Advanced Custom Fields" -msgstr "Advanced Custom Fields" diff --git a/lang/acf-es_CR.mo b/lang/acf-es_CR.mo deleted file mode 100644 index 862d1dc..0000000 Binary files a/lang/acf-es_CR.mo and /dev/null differ diff --git a/lang/acf-es_CR.po b/lang/acf-es_CR.po deleted file mode 100644 index 131e072..0000000 --- a/lang/acf-es_CR.po +++ /dev/null @@ -1,5600 +0,0 @@ -# Advanced Custom Fields Translations are a combination of translate.wordpress.org contributions, -# combined with user contributed strings for the PRO version. -# Translations from translate.wordpress.org take priority over translations in this file. -# translate.wordpress.org contributions are synced at the time of each release. -# -# If you would like to contribute translations, please visit -# https://translate.wordpress.org/projects/wp-plugins/advanced-custom-fields/stable/ -# -# For additional ACF PRO strings, please submit a pull request over on the ACF GitHub repo at -# http://github.com/advancedcustomfields/acf using the .pot (and any existing .po) files in /lang/pro/ -# -# This file is distributed under the same license as Advanced Custom Fields. -msgid "" -msgstr "" -"PO-Revision-Date: 2023-11-28T09:14:32+00:00\n" -"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n" -"Language: es_CR\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: gettext\n" -"Project-Id-Version: Advanced Custom Fields\n" - -#: includes/admin/views/global/navigation.php:221 -msgid "Renew ACF PRO License" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:17 -msgid "Renew License" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:14 -msgid "Manage License" -msgstr "" - -#: includes/admin/views/acf-field-group/options.php:102 -msgid "'High' position not supported in the Block Editor" -msgstr "" - -#: includes/admin/views/options-page-preview.php:30 -msgid "Upgrade to ACF PRO" -msgstr "" - -#. translators: %s URL to ACF options pages documentation -#: includes/admin/views/options-page-preview.php:7 -msgid "" -"ACF options pages are custom admin " -"pages for managing global settings via fields. You can create multiple pages " -"and sub-pages." -msgstr "" - -#: includes/admin/views/global/header.php:35 -msgid "Add Options Page" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:703 -msgid "In the editor used as the placeholder of the title." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:702 -msgid "Title Placeholder" -msgstr "" - -#: includes/admin/views/global/navigation.php:97 -msgid "4 Months Free" -msgstr "" - -#. translators: %s - A singular label for a post type or taxonomy. -#: includes/admin/views/global/form-top.php:56 -msgid " (Duplicated from %s)" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:298 -msgid "Select Options Pages" -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:107 -msgid "Duplicate taxonomy" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:106 -#: includes/admin/post-types/admin-taxonomy.php:106 -msgid "Create taxonomy" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:105 -msgid "Duplicate post type" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:104 -#: includes/admin/post-types/admin-taxonomy.php:108 -msgid "Create post type" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:103 -#: includes/admin/post-types/admin-taxonomy.php:105 -msgid "Link field groups" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:102 -#: includes/admin/post-types/admin-taxonomy.php:104 -msgid "Add fields" -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:121 -#: assets/build/js/acf-field-group.js:2753 -#: assets/build/js/acf-field-group.js:3236 -msgid "This Field" -msgstr "" - -#: includes/admin/admin.php:267 -msgid "ACF PRO" -msgstr "" - -#: includes/admin/admin.php:265 -msgid "Feedback" -msgstr "" - -#: includes/admin/admin.php:263 -msgid "Support" -msgstr "" - -#. translators: This text is prepended by a link to ACF's website, and appended -#. by a link to WP Engine's website. -#: includes/admin/admin.php:238 -msgid "is developed and maintained by" -msgstr "" - -#. translators: %s - either "post type" or "taxonomy" -#: includes/admin/admin-internal-post-type.php:321 -msgid "Add this %s to the location rules of the selected field groups." -msgstr "" - -#. translators: %s the URL to ACF's bidirectional relationship documentation -#: includes/acf-bidirectional-functions.php:271 -msgid "" -"Enabling the bidirectional setting allows you to update a value in the " -"target fields for each value selected for this field, adding or removing the " -"Post ID, Taxonomy ID or User ID of the item being updated. For more " -"information, please read the documentation." -msgstr "" - -#: includes/acf-bidirectional-functions.php:247 -msgid "" -"Select field(s) to store the reference back to the item being updated. You " -"may select this field. Target fields must be compatible with where this " -"field is being displayed. For example, if this field is displayed on a " -"Taxonomy, your target field should be of type Taxonomy" -msgstr "" - -#: includes/acf-bidirectional-functions.php:246 -msgid "Target Field" -msgstr "" - -#: includes/acf-bidirectional-functions.php:220 -msgid "Update a field on the selected values, referencing back to this ID" -msgstr "" - -#: includes/acf-bidirectional-functions.php:219 -msgid "Bidirectional" -msgstr "" - -#. translators: %s A field type name, such as "Relationship" -#: includes/acf-bidirectional-functions.php:192 -msgid "%s Field" -msgstr "" - -#: includes/fields/class-acf-field-page_link.php:517 -#: includes/fields/class-acf-field-post_object.php:426 -#: includes/fields/class-acf-field-select.php:407 -#: includes/fields/class-acf-field-user.php:82 -msgid "Select Multiple" -msgstr "" - -#: includes/admin/views/global/navigation.php:233 -msgid "WP Engine logo" -msgstr "" - -#: includes/admin/views/acf-taxonomy/basic-settings.php:58 -msgid "Lower case letters, underscores and dashes only, Max 32 characters." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1136 -msgid "The capability name for assigning terms of this taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1135 -msgid "Assign Terms Capability" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1119 -msgid "The capability name for deleting terms of this taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1118 -msgid "Delete Terms Capability" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1102 -msgid "The capability name for editing terms of this taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1101 -msgid "Edit Terms Capability" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1085 -msgid "The capability name for managing terms of this taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1084 -msgid "Manage Terms Capability" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:886 -msgid "" -"Sets whether posts should be excluded from search results and taxonomy " -"archive pages." -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:74 -msgid "More Tools from WP Engine" -msgstr "" - -#. translators: %s - WP Engine logo -#: includes/admin/views/acf-field-group/pro-features.php:69 -msgid "Built for those that build with WordPress, by the team at %s" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:6 -msgid "View Pricing & Upgrade" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:3 -#: includes/admin/views/options-page-preview.php:29 -msgid "Learn More" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:28 -msgid "" -"Speed up your workflow and develop better websites with features like ACF " -"Blocks and Options Pages, and sophisticated field types like Repeater, " -"Flexible Content, Clone, and Gallery." -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:2 -msgid "Unlock Advanced Features and Build Even More with ACF PRO" -msgstr "" - -#. translators: %s - singular label of post type/taxonomy, i.e. "Movie"/"Genre" -#: includes/admin/views/global/form-top.php:19 -msgid "%s fields" -msgstr "" - -#: includes/admin/post-types/admin-taxonomies.php:293 -msgid "No terms" -msgstr "" - -#: includes/admin/post-types/admin-taxonomies.php:266 -msgid "No post types" -msgstr "" - -#: includes/admin/post-types/admin-post-types.php:289 -msgid "No posts" -msgstr "" - -#: includes/admin/post-types/admin-post-types.php:263 -msgid "No taxonomies" -msgstr "" - -#: includes/admin/post-types/admin-post-types.php:208 -#: includes/admin/post-types/admin-taxonomies.php:208 -msgid "No field groups" -msgstr "" - -#: includes/admin/post-types/admin-field-groups.php:281 -msgid "No fields" -msgstr "" - -#: includes/admin/post-types/admin-field-groups.php:154 -#: includes/admin/post-types/admin-post-types.php:172 -#: includes/admin/post-types/admin-taxonomies.php:172 -msgid "No description" -msgstr "" - -#: includes/fields/class-acf-field-page_link.php:484 -#: includes/fields/class-acf-field-post_object.php:389 -#: includes/fields/class-acf-field-relationship.php:601 -msgid "Any post status" -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:284 -msgid "" -"This taxonomy key is already in use by another taxonomy registered outside " -"of ACF and cannot be used." -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:279 -msgid "" -"This taxonomy key is already in use by another taxonomy in ACF and cannot be " -"used." -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:252 -msgid "" -"The taxonomy key must only contain lower case alphanumeric characters, " -"underscores or dashes." -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:247 -msgid "The taxonomy key must be under 32 characters." -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:99 -msgid "No Taxonomies found in Trash" -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:98 -msgid "No Taxonomies found" -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:97 -msgid "Search Taxonomies" -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:96 -msgid "View Taxonomy" -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:95 -msgid "New Taxonomy" -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:94 -msgid "Edit Taxonomy" -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:93 -msgid "Add New Taxonomy" -msgstr "" - -#: includes/post-types/class-acf-post-type.php:100 -msgid "No Post Types found in Trash" -msgstr "" - -#: includes/post-types/class-acf-post-type.php:99 -msgid "No Post Types found" -msgstr "" - -#: includes/post-types/class-acf-post-type.php:98 -msgid "Search Post Types" -msgstr "" - -#: includes/post-types/class-acf-post-type.php:97 -msgid "View Post Type" -msgstr "" - -#: includes/post-types/class-acf-post-type.php:96 -msgid "New Post Type" -msgstr "" - -#: includes/post-types/class-acf-post-type.php:95 -msgid "Edit Post Type" -msgstr "" - -#: includes/post-types/class-acf-post-type.php:94 -msgid "Add New Post Type" -msgstr "" - -#: includes/post-types/class-acf-post-type.php:361 -msgid "" -"This post type key is already in use by another post type registered outside " -"of ACF and cannot be used." -msgstr "" - -#: includes/post-types/class-acf-post-type.php:356 -msgid "" -"This post type key is already in use by another post type in ACF and cannot " -"be used." -msgstr "" - -#. translators: %s a link to WordPress.org's Reserved Terms page -#: includes/post-types/class-acf-post-type.php:335 -#: includes/post-types/class-acf-taxonomy.php:258 -msgid "" -"This field must not be a WordPress reserved " -"term." -msgstr "" - -#: includes/post-types/class-acf-post-type.php:329 -msgid "" -"The post type key must only contain lower case alphanumeric characters, " -"underscores or dashes." -msgstr "" - -#: includes/post-types/class-acf-post-type.php:324 -msgid "The post type key must be under 20 characters." -msgstr "" - -#: includes/fields/class-acf-field-wysiwyg.php:27 -msgid "We do not recommend using this field in ACF Blocks." -msgstr "" - -#: includes/fields/class-acf-field-wysiwyg.php:27 -msgid "" -"Displays the WordPress WYSIWYG editor as seen in Posts and Pages allowing " -"for a rich text-editing experience that also allows for multimedia content." -msgstr "" - -#: includes/fields/class-acf-field-wysiwyg.php:25 -msgid "WYSIWYG Editor" -msgstr "" - -#: includes/fields/class-acf-field-user.php:17 -msgid "" -"Allows the selection of one or more users which can be used to create " -"relationships between data objects." -msgstr "" - -#: includes/fields/class-acf-field-url.php:26 -msgid "A text input specifically designed for storing web addresses." -msgstr "" - -#: includes/fields/class-acf-field-url.php:25 -msgid "URL" -msgstr "" - -#: includes/fields/class-acf-field-true_false.php:27 -msgid "" -"A toggle that allows you to pick a value of 1 or 0 (on or off, true or " -"false, etc). Can be presented as a stylized switch or checkbox." -msgstr "" - -#: includes/fields/class-acf-field-time_picker.php:27 -msgid "" -"An interactive UI for picking a time. The time format can be customized " -"using the field settings." -msgstr "" - -#: includes/fields/class-acf-field-textarea.php:26 -msgid "A basic textarea input for storing paragraphs of text." -msgstr "" - -#: includes/fields/class-acf-field-text.php:26 -msgid "A basic text input, useful for storing single string values." -msgstr "" - -#: includes/fields/class-acf-field-taxonomy.php:22 -msgid "" -"Allows the selection of one or more taxonomy terms based on the criteria and " -"options specified in the fields settings." -msgstr "" - -#: includes/fields/class-acf-field-tab.php:28 -msgid "" -"Allows you to group fields into tabbed sections in the edit screen. Useful " -"for keeping fields organized and structured." -msgstr "" - -#: includes/fields/class-acf-field-select.php:27 -msgid "A dropdown list with a selection of choices that you specify." -msgstr "" - -#: includes/fields/class-acf-field-relationship.php:19 -msgid "" -"A dual-column interface to select one or more posts, pages, or custom post " -"type items to create a relationship with the item that you're currently " -"editing. Includes options to search and filter." -msgstr "" - -#: includes/fields/class-acf-field-range.php:26 -msgid "" -"An input for selecting a numerical value within a specified range using a " -"range slider element." -msgstr "" - -#: includes/fields/class-acf-field-radio.php:27 -msgid "" -"A group of radio button inputs that allows the user to make a single " -"selection from values that you specify." -msgstr "" - -#: includes/fields/class-acf-field-post_object.php:19 -msgid "" -"An interactive and customizable UI for picking one or many posts, pages or " -"post type items with the option to search. " -msgstr "" - -#: includes/fields/class-acf-field-password.php:26 -msgid "An input for providing a password using a masked field." -msgstr "" - -#: includes/fields/class-acf-field-page_link.php:476 -#: includes/fields/class-acf-field-post_object.php:381 -#: includes/fields/class-acf-field-relationship.php:593 -msgid "Filter by Post Status" -msgstr "" - -#: includes/fields/class-acf-field-page_link.php:27 -msgid "" -"An interactive dropdown to select one or more posts, pages, custom post type " -"items or archive URLs, with the option to search." -msgstr "" - -#: includes/fields/class-acf-field-oembed.php:27 -msgid "" -"An interactive component for embedding videos, images, tweets, audio and " -"other content by making use of the native WordPress oEmbed functionality." -msgstr "" - -#: includes/fields/class-acf-field-number.php:26 -msgid "An input limited to numerical values." -msgstr "" - -#: includes/fields/class-acf-field-message.php:28 -msgid "" -"Used to display a message to editors alongside other fields. Useful for " -"providing additional context or instructions around your fields." -msgstr "" - -#: includes/fields/class-acf-field-link.php:27 -msgid "" -"Allows you to specify a link and its properties such as title and target " -"using the WordPress native link picker." -msgstr "" - -#: includes/fields/class-acf-field-image.php:27 -msgid "Uses the native WordPress media picker to upload, or choose images." -msgstr "" - -#: includes/fields/class-acf-field-group.php:27 -msgid "" -"Provides a way to structure fields into groups to better organize the data " -"and the edit screen." -msgstr "" - -#: includes/fields/class-acf-field-google-map.php:27 -msgid "" -"An interactive UI for selecting a location using Google Maps. Requires a " -"Google Maps API key and additional configuration to display correctly." -msgstr "" - -#: includes/fields/class-acf-field-file.php:27 -msgid "Uses the native WordPress media picker to upload, or choose files." -msgstr "" - -#: includes/fields/class-acf-field-email.php:26 -msgid "A text input specifically designed for storing email addresses." -msgstr "" - -#: includes/fields/class-acf-field-date_time_picker.php:27 -msgid "" -"An interactive UI for picking a date and time. The date return format can be " -"customized using the field settings." -msgstr "" - -#: includes/fields/class-acf-field-date_picker.php:27 -msgid "" -"An interactive UI for picking a date. The date return format can be " -"customized using the field settings." -msgstr "" - -#: includes/fields/class-acf-field-color_picker.php:27 -msgid "An interactive UI for selecting a color, or specifying a Hex value." -msgstr "" - -#: includes/fields/class-acf-field-checkbox.php:27 -msgid "" -"A group of checkbox inputs that allow the user to select one, or multiple " -"values that you specify." -msgstr "" - -#: includes/fields/class-acf-field-button-group.php:26 -msgid "" -"A group of buttons with values that you specify, users can choose one option " -"from the values provided." -msgstr "" - -#: includes/fields/class-acf-field-accordion.php:27 -msgid "" -"Allows you to group and organize custom fields into collapsable panels that " -"are shown while editing content. Useful for keeping large datasets tidy." -msgstr "" - -#: includes/fields.php:475 -msgid "" -"This provides a solution for repeating content such as slides, team members, " -"and call-to-action tiles, by acting as a parent to a set of subfields which " -"can be repeated again and again." -msgstr "" - -#: includes/fields.php:465 -msgid "" -"This provides an interactive interface for managing a collection of " -"attachments. Most settings are similar to the Image field type. Additional " -"settings allow you to specify where new attachments are added in the gallery " -"and the minimum/maximum number of attachments allowed." -msgstr "" - -#: includes/fields.php:455 -msgid "" -"This provides a simple, structured, layout-based editor. The Flexible " -"Content field allows you to define, create and manage content with total " -"control by using layouts and subfields to design the available blocks." -msgstr "" - -#: includes/fields.php:445 -msgid "" -"This allows you to select and display existing fields. It does not duplicate " -"any fields in the database, but loads and displays the selected fields at " -"run-time. The Clone field can either replace itself with the selected fields " -"or display the selected fields as a group of subfields." -msgstr "" - -#: includes/fields.php:442 -msgctxt "noun" -msgid "Clone" -msgstr "" - -#: includes/admin/views/global/navigation.php:86 includes/fields.php:357 -msgid "PRO" -msgstr "" - -#: includes/fields.php:355 includes/fields.php:412 -msgid "Advanced" -msgstr "" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:85 -msgid "JSON (newer)" -msgstr "" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:81 -msgid "Original" -msgstr "" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:55 -msgid "Invalid post ID." -msgstr "" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:47 -msgid "Invalid post type selected for review." -msgstr "" - -#: includes/admin/views/global/navigation.php:186 -msgid "More" -msgstr "" - -#: includes/admin/views/browse-fields-modal.php:86 -msgid "Tutorial" -msgstr "" - -#: includes/admin/views/browse-fields-modal.php:75 -msgid "Available with ACF PRO" -msgstr "" - -#: includes/admin/views/browse-fields-modal.php:63 -msgid "Select Field" -msgstr "" - -#. translators: %s: A link to the popular fields used in ACF -#: includes/admin/views/browse-fields-modal.php:50 -msgid "Try a different search term or browse %s" -msgstr "" - -#: includes/admin/views/browse-fields-modal.php:47 -msgid "Popular fields" -msgstr "" - -#. translators: %s: The invalid search term -#: includes/admin/views/browse-fields-modal.php:40 -msgid "No search results for '%s'" -msgstr "" - -#: includes/admin/views/browse-fields-modal.php:13 -msgid "Search fields..." -msgstr "" - -#: includes/admin/views/browse-fields-modal.php:11 -msgid "Select Field Type" -msgstr "" - -#: includes/admin/views/browse-fields-modal.php:4 -msgid "Popular" -msgstr "" - -#: includes/admin/views/acf-taxonomy/list-empty.php:7 -msgid "Add Taxonomy" -msgstr "" - -#: includes/admin/views/acf-taxonomy/list-empty.php:6 -msgid "Create custom taxonomies to classify post type content" -msgstr "" - -#: includes/admin/views/acf-taxonomy/list-empty.php:5 -msgid "Add Your First Taxonomy" -msgstr "" - -#: includes/admin/views/acf-taxonomy/basic-settings.php:122 -msgid "Hierarchical taxonomies can have descendants (like categories)." -msgstr "" - -#: includes/admin/views/acf-taxonomy/basic-settings.php:107 -msgid "Makes a taxonomy visible on the frontend and in the admin dashboard." -msgstr "" - -#: includes/admin/views/acf-taxonomy/basic-settings.php:91 -msgid "One or many post types that can be classified with this taxonomy." -msgstr "" - -#. translators: example taxonomy -#: includes/admin/views/acf-taxonomy/basic-settings.php:60 -msgid "genre" -msgstr "" - -#. translators: example taxonomy -#: includes/admin/views/acf-taxonomy/basic-settings.php:42 -msgid "Genre" -msgstr "" - -#. translators: example taxonomy -#: includes/admin/views/acf-taxonomy/basic-settings.php:25 -msgid "Genres" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1211 -msgid "" -"Optional custom controller to use instead of `WP_REST_Terms_Controller `." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1155 -msgid "Expose this post type in the REST API." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1055 -msgid "Customize the query variable name" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1028 -msgid "" -"Terms can be accessed using the non-pretty permalink, e.g., {query_var}" -"={term_slug}." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:981 -msgid "Parent-child terms in URLs for hierarchical taxonomies." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:941 -msgid "Customize the slug used in the URL" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:924 -msgid "Permalinks for this taxonomy are disabled." -msgstr "" - -#. translators: this string will be appended with the new permalink structure. -#: includes/admin/views/acf-taxonomy/advanced-settings.php:921 -msgid "" -"Rewrite the URL using the taxonomy key as the slug. Your permalink structure " -"will be" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:913 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1030 -#: includes/admin/views/acf-taxonomy/basic-settings.php:57 -msgid "Taxonomy Key" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:911 -msgid "Select the type of permalink to use for this taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:896 -msgid "Display a column for the taxonomy on post type listing screens." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:895 -msgid "Show Admin Column" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:882 -msgid "Show the taxonomy in the quick/bulk edit panel." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:881 -msgid "Quick Edit" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:868 -msgid "List the taxonomy in the Tag Cloud Widget controls." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:867 -msgid "Tag Cloud" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:824 -msgid "" -"A PHP function name to be called for sanitizing taxonomy data saved from a " -"meta box." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:823 -msgid "Meta Box Sanitization Callback" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:805 -msgid "" -"A PHP function name to be called to handle the content of a meta box on your " -"taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:804 -msgid "Register Meta Box Callback" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:763 -msgid "No Meta Box" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:762 -msgid "Custom Meta Box" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:758 -msgid "" -"Controls the meta box on the content editor screen. By default, the " -"Categories meta box is shown for hierarchical taxonomies, and the Tags meta " -"box is shown for non-hierarchical taxonomies." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:757 -msgid "Meta Box" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:746 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:767 -msgid "Categories Meta Box" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:745 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:766 -msgid "Tags Meta Box" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:704 -msgid "A link to a tag" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:703 -msgid "Describes a navigation link block variation used in the block editor." -msgstr "" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:698 -msgid "A link to a %s" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:683 -msgid "Tag Link" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:682 -msgid "" -"Assigns a title for navigation link block variation used in the block editor." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:663 -msgid "← Go to tags" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:662 -msgid "" -"Assigns the text used to link back to the main index after updating a term." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:661 -msgid "Back To Items" -msgstr "" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:657 -msgid "← Go to %s" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:642 -msgid "Tags list" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:641 -msgid "Assigns text to the table hidden heading." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:622 -msgid "Tags list navigation" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:621 -msgid "Assigns text to the table pagination hidden heading." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:597 -msgid "Filter by category" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:596 -msgid "Assigns text to the filter button in the posts lists table." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:595 -msgid "Filter By Item" -msgstr "" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:591 -msgid "Filter by %s" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:575 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:576 -msgid "" -"The description is not prominent by default; however, some themes may show " -"it." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:574 -msgid "Describes the Description field on the Edit Tags screen." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:573 -msgid "Description Field Description" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:554 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:555 -msgid "" -"Assign a parent term to create a hierarchy. The term Jazz, for example, " -"would be the parent of Bebop and Big Band" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:553 -msgid "Describes the Parent field on the Edit Tags screen." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:552 -msgid "Parent Field Description" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:538 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:539 -msgid "" -"The \"slug\" is the URL-friendly version of the name. It is usually all " -"lower case and contains only letters, numbers, and hyphens." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:537 -msgid "Describes the Slug field on the Edit Tags screen." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:536 -msgid "Slug Field Description" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:522 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:523 -msgid "The name is how it appears on your site" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:521 -msgid "Describes the Name field on the Edit Tags screen." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:520 -msgid "Name Field Description" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:507 -msgid "No tags" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:506 -msgid "" -"Assigns the text displayed in the posts and media list tables when no tags " -"or categories are available." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:505 -msgid "No Terms" -msgstr "" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:501 -msgid "No %s" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:486 -msgid "No tags found" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:485 -msgid "" -"Assigns the text displayed when clicking the 'choose from most used' text in " -"the taxonomy meta box when no tags are available, and assigns the text used " -"in the terms list table when there are no items for a taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:484 -msgid "Not Found" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:463 -msgid "Assigns text to the Title field of the Most Used tab." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:462 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:464 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:465 -msgid "Most Used" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:444 -msgid "Choose from the most used tags" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:443 -msgid "" -"Assigns the 'choose from most used' text used in the meta box when " -"JavaScript is disabled. Only used on non-hierarchical taxonomies." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:442 -msgid "Choose From Most Used" -msgstr "" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:438 -msgid "Choose from the most used %s" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:418 -msgid "Add or remove tags" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:417 -msgid "" -"Assigns the add or remove items text used in the meta box when JavaScript is " -"disabled. Only used on non-hierarchical taxonomies" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:416 -msgid "Add Or Remove Items" -msgstr "" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:412 -msgid "Add or remove %s" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:392 -msgid "Separate tags with commas" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:391 -msgid "" -"Assigns the separate item with commas text used in the taxonomy meta box. " -"Only used on non-hierarchical taxonomies." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:390 -msgid "Separate Items With Commas" -msgstr "" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:386 -msgid "Separate %s with commas" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:366 -msgid "Popular Tags" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:365 -msgid "Assigns popular items text. Only used for non-hierarchical taxonomies." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:364 -msgid "Popular Items" -msgstr "" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:361 -msgid "Popular %s" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:347 -msgid "Search Tags" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:346 -msgid "Assigns search items text." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:323 -msgid "Parent Category:" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:322 -msgid "Assigns parent item text, but with a colon (:) added to the end." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:321 -msgid "Parent Item With Colon" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:298 -msgid "Parent Category" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:297 -msgid "Assigns parent item text. Only used on hierarchical taxonomies." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:296 -msgid "Parent Item" -msgstr "" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:293 -msgid "Parent %s" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:278 -msgid "New Tag Name" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:277 -msgid "Assigns the new item name text." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:276 -msgid "New Item Name" -msgstr "" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:273 -msgid "New %s Name" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:258 -msgid "Add New Tag" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:257 -msgid "Assigns the add new item text." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:238 -msgid "Update Tag" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:237 -msgid "Assigns the update item text." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:236 -msgid "Update Item" -msgstr "" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:233 -msgid "Update %s" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:218 -msgid "View Tag" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:217 -msgid "In the admin bar to view term during editing." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:198 -msgid "Edit Tag" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:197 -msgid "At the top of the editor screen when editing a term." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:178 -msgid "All Tags" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:177 -msgid "Assigns the all items text." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:158 -msgid "Assigns the menu name text." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:157 -msgid "Menu Label" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:131 -msgid "Active taxonomies are enabled and registered with WordPress." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:115 -msgid "A descriptive summary of the taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:95 -msgid "A descriptive summary of the term." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:94 -msgid "Term Description" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:76 -msgid "Single word, no spaces. Underscores and dashes allowed." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:75 -msgid "Term Slug" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:56 -msgid "The name of the default term." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:55 -msgid "Term Name" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:41 -msgid "" -"Create a term for the taxonomy that cannot be deleted. It will not be " -"selected for posts by default." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:40 -msgid "Default Term" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:28 -msgid "" -"Whether terms in this taxonomy should be sorted in the order they are " -"provided to `wp_set_object_terms()`." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:27 -msgid "Sort Terms" -msgstr "" - -#: includes/admin/views/acf-post-type/list-empty.php:7 -msgid "Add Post Type" -msgstr "" - -#: includes/admin/views/acf-post-type/list-empty.php:6 -msgid "" -"Expand the functionality of WordPress beyond standard posts and pages with " -"custom post types." -msgstr "" - -#: includes/admin/views/acf-post-type/list-empty.php:5 -msgid "Add Your First Post Type" -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:136 -#: includes/admin/views/acf-taxonomy/basic-settings.php:135 -msgid "I know what I'm doing, show me all the options." -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:135 -#: includes/admin/views/acf-taxonomy/basic-settings.php:134 -msgid "Advanced Configuration" -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:123 -msgid "Hierarchical post types can have descendants (like pages)." -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:122 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:980 -#: includes/admin/views/acf-taxonomy/basic-settings.php:121 -msgid "Hierarchical" -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:107 -msgid "Visible on the frontend and in the admin dashboard." -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:106 -#: includes/admin/views/acf-taxonomy/basic-settings.php:106 -msgid "Public" -msgstr "" - -#. translators: example post type -#: includes/admin/views/acf-post-type/basic-settings.php:59 -msgid "movie" -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:57 -msgid "Lower case letters, underscores and dashes only, Max 20 characters." -msgstr "" - -#. translators: example post type -#: includes/admin/views/acf-post-type/basic-settings.php:41 -msgid "Movie" -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:39 -#: includes/admin/views/acf-taxonomy/basic-settings.php:40 -msgid "Singular Label" -msgstr "" - -#. translators: example post type -#: includes/admin/views/acf-post-type/basic-settings.php:24 -msgid "Movies" -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:22 -#: includes/admin/views/acf-taxonomy/basic-settings.php:23 -msgid "Plural Label" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1270 -msgid "" -"Optional custom controller to use instead of `WP_REST_Posts_Controller`." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1269 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1210 -msgid "Controller Class" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1251 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1191 -msgid "The namespace part of the REST API URL." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1250 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1190 -msgid "Namespace Route" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1232 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1172 -msgid "The base URL for the post type REST API URLs." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1231 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1171 -msgid "Base URL" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1217 -msgid "" -"Exposes this post type in the REST API. Required to use the block editor." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1216 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1154 -msgid "Show In REST API" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1195 -msgid "Customize the query variable name." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1194 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1054 -msgid "Query Variable" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1172 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1032 -msgid "No Query Variable Support" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1171 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1031 -msgid "Custom Query Variable" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1168 -msgid "" -"Items can be accessed using the non-pretty permalink, eg. {post_type}" -"={post_slug}." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1167 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1027 -msgid "Query Variable Support" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1142 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1003 -msgid "URLs for an item and items can be accessed with a query string." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1141 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1002 -msgid "Publicly Queryable" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1120 -msgid "Custom slug for the Archive URL." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1119 -msgid "Archive Slug" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1106 -msgid "" -"Has an item archive that can be customized with an archive template file in " -"your theme." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1105 -msgid "Archive" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1085 -msgid "Pagination support for the items URLs such as the archives." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1084 -msgid "Pagination" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1067 -msgid "RSS feed URL for the post type items." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1066 -msgid "Feed URL" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1048 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:961 -msgid "" -"Alters the permalink structure to add the `WP_Rewrite::$front` prefix to " -"URLs." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1047 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:960 -msgid "Front URL Prefix" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1028 -msgid "Customize the slug used in the URL." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1027 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:940 -msgid "URL Slug" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1011 -msgid "Permalinks for this post type are disabled." -msgstr "" - -#. translators: this string will be appended with the new permalink structure. -#: includes/admin/views/acf-post-type/advanced-settings.php:1010 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:923 -msgid "" -"Rewrite the URL using a custom slug defined in the input below. Your " -"permalink structure will be" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1002 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:915 -msgid "No Permalink (prevent URL rewriting)" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1001 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:914 -msgid "Custom Permalink" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1000 -#: includes/admin/views/acf-post-type/advanced-settings.php:1170 -#: includes/admin/views/acf-post-type/basic-settings.php:56 -msgid "Post Type Key" -msgstr "" - -#. translators: this string will be appended with the new permalink structure. -#: includes/admin/views/acf-post-type/advanced-settings.php:998 -#: includes/admin/views/acf-post-type/advanced-settings.php:1008 -msgid "" -"Rewrite the URL using the post type key as the slug. Your permalink " -"structure will be" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:996 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:910 -msgid "Permalink Rewrite" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:982 -msgid "Delete items by a user when that user is deleted." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:981 -msgid "Delete With User" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:967 -msgid "Allow the post type to be exported from 'Tools' > 'Export'." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:966 -msgid "Can Export" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:935 -msgid "Optionally provide a plural to be used in capabilities." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:934 -msgid "Plural Capability Name" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:916 -msgid "Choose another post type to base the capabilities for this post type." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:915 -msgid "Singular Capability Name" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:901 -msgid "" -"By default the capabilities of the post type will inherit the 'Post' " -"capability names, eg. edit_post, delete_posts. Enable to use post type " -"specific capabilities, eg. edit_{singular}, delete_{plural}." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:900 -msgid "Rename Capabilities" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:885 -msgid "Exclude From Search" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:872 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:854 -msgid "" -"Allow items to be added to menus in the 'Appearance' > 'Menus' screen. Must " -"be turned on in 'Screen options'." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:871 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:853 -msgid "Appearance Menus Support" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:853 -msgid "Appears as an item in the 'New' menu in the admin bar." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:852 -msgid "Show In Admin Bar" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:821 -msgid "" -"A PHP function name to be called when setting up the meta boxes for the edit " -"screen." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:820 -msgid "Custom Meta Box Callback" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:800 -msgid "Menu Icon" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:782 -msgid "The position in the sidebar menu in the admin dashboard." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:781 -msgid "Menu Position" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:763 -msgid "" -"By default the post type will get a new top level item in the admin menu. If " -"an existing top level item is supplied here, the post type will be added as " -"a submenu item under it." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:762 -msgid "Admin Menu Parent" -msgstr "" - -#. translators: %s = "dashicon class name", link to the WordPress dashicon -#. documentation. -#: includes/admin/views/acf-post-type/advanced-settings.php:750 -msgid "" -"The icon used for the post type menu item in the admin dashboard. Can be a " -"URL or %s to use for the icon." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:745 -msgid "Dashicon class name" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:734 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:734 -msgid "Admin editor navigation in the sidebar menu." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:733 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:733 -msgid "Show In Admin Menu" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:720 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:719 -msgid "Items can be edited and managed in the admin dashboard." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:719 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:718 -msgid "Show In UI" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:689 -msgid "A link to a post." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:688 -msgid "Description for a navigation link block variation." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:687 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:702 -msgid "Item Link Description" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:683 -msgid "A link to a %s." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:668 -msgid "Post Link" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:667 -msgid "Title for a navigation link block variation." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:666 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:681 -msgid "Item Link" -msgstr "" - -#. translators: %s Singular form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:663 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:678 -msgid "%s Link" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:648 -msgid "Post updated." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:647 -msgid "In the editor notice after an item is updated." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:646 -msgid "Item Updated" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:643 -msgid "%s updated." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:628 -msgid "Post scheduled." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:627 -msgid "In the editor notice after scheduling an item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:626 -msgid "Item Scheduled" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:623 -msgid "%s scheduled." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:608 -msgid "Post reverted to draft." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:607 -msgid "In the editor notice after reverting an item to draft." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:606 -msgid "Item Reverted To Draft" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:603 -msgid "%s reverted to draft." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:588 -msgid "Post published privately." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:587 -msgid "In the editor notice after publishing a private item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:586 -msgid "Item Published Privately" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:583 -msgid "%s published privately." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:568 -msgid "Post published." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:567 -msgid "In the editor notice after publishing an item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:566 -msgid "Item Published" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:563 -msgid "%s published." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:548 -msgid "Posts list" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:547 -msgid "Used by screen readers for the items list on the post type list screen." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:546 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:640 -msgid "Items List" -msgstr "" - -#. translators: %s Plural form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:543 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:637 -msgid "%s list" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:528 -msgid "Posts list navigation" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:527 -msgid "" -"Used by screen readers for the filter list pagination on the post type list " -"screen." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:526 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:620 -msgid "Items List Navigation" -msgstr "" - -#. translators: %s Plural form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:523 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:617 -msgid "%s list navigation" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:507 -msgid "Filter posts by date" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:506 -msgid "" -"Used by screen readers for the filter by date heading on the post type list " -"screen." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:505 -msgid "Filter Items By Date" -msgstr "" - -#. translators: %s Plural form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:501 -msgid "Filter %s by date" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:486 -msgid "Filter posts list" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:485 -msgid "" -"Used by screen readers for the filter links heading on the post type list " -"screen." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:484 -msgid "Filter Items List" -msgstr "" - -#. translators: %s Plural form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:480 -msgid "Filter %s list" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:464 -msgid "In the media modal showing all media uploaded to this item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:463 -msgid "Uploaded To This Item" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:459 -msgid "Uploaded to this %s" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:444 -msgid "Insert into post" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:443 -msgid "As the button label when adding media to content." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:442 -msgid "Insert Into Media Button" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:438 -msgid "Insert into %s" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:423 -msgid "Use as featured image" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:422 -msgid "" -"As the button label for selecting to use an image as the featured image." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:421 -msgid "Use Featured Image" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:408 -msgid "Remove featured image" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:407 -msgid "As the button label when removing the featured image." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:406 -msgid "Remove Featured Image" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:393 -msgid "Set featured image" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:392 -msgid "As the button label when setting the featured image." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:391 -msgid "Set Featured Image" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:378 -msgid "Featured image" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:377 -msgid "In the editor used for the title of the featured image meta box." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:376 -msgid "Featured Image Meta Box" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:363 -msgid "Post Attributes" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:362 -msgid "In the editor used for the title of the post attributes meta box." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:361 -msgid "Attributes Meta Box" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:358 -msgid "%s Attributes" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:343 -msgid "Post Archives" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:342 -msgid "" -"Adds 'Post Type Archive' items with this label to the list of posts shown " -"when adding items to an existing menu in a CPT with archives enabled. Only " -"appears when editing menus in 'Live Preview' mode and a custom archive slug " -"has been provided." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:341 -msgid "Archives Nav Menu" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:338 -msgid "%s Archives" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:323 -msgid "No posts found in Trash" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:322 -msgid "" -"At the top of the post type list screen when there are no posts in the trash." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:321 -msgid "No Items Found in Trash" -msgstr "" - -#. translators: %s Plural form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:317 -msgid "No %s found in Trash" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:302 -msgid "No posts found" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:301 -msgid "" -"At the top of the post type list screen when there are no posts to display." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:300 -msgid "No Items Found" -msgstr "" - -#. translators: %s Plural form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:296 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:480 -msgid "No %s found" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:281 -msgid "Search Posts" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:280 -msgid "At the top of the items screen when searching for an item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:279 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:345 -msgid "Search Items" -msgstr "" - -#. translators: %s Singular form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:276 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:342 -msgid "Search %s" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:261 -msgid "Parent Page:" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:260 -msgid "For hierarchical types in the post type list screen." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:259 -msgid "Parent Item Prefix" -msgstr "" - -#. translators: %s Singular form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:256 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:318 -msgid "Parent %s:" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:241 -msgid "New Post" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:239 -msgid "New Item" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:236 -msgid "New %s" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:206 -msgid "Add New Post" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:205 -msgid "At the top of the editor screen when adding a new item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:204 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:256 -msgid "Add New Item" -msgstr "" - -#. translators: %s Singular form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:201 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:253 -msgid "Add New %s" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:186 -msgid "View Posts" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:185 -msgid "" -"Appears in the admin bar in the 'All Posts' view, provided the post type " -"supports archives and the home page is not an archive of that post type." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:184 -msgid "View Items" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:166 -msgid "View Post" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:165 -msgid "In the admin bar to view item when editing it." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:164 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:216 -msgid "View Item" -msgstr "" - -#. translators: %s Singular form of post type name -#. translators: %s Plural form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:161 -#: includes/admin/views/acf-post-type/advanced-settings.php:181 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:213 -msgid "View %s" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:146 -msgid "Edit Post" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:145 -msgid "At the top of the editor screen when editing an item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:144 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:196 -msgid "Edit Item" -msgstr "" - -#. translators: %s Singular form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:141 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:193 -msgid "Edit %s" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:126 -msgid "All Posts" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:125 -#: includes/admin/views/acf-post-type/advanced-settings.php:220 -#: includes/admin/views/acf-post-type/advanced-settings.php:240 -msgid "In the post type submenu in the admin dashboard." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:124 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:176 -msgid "All Items" -msgstr "" - -#. translators: %s Plural form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:121 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:173 -msgid "All %s" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:105 -msgid "Admin menu name for the post type." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:104 -msgid "Menu Name" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:90 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:142 -msgid "Regenerate all labels using the Singular and Plural labels" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:88 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:140 -msgid "Regenerate" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:79 -msgid "Active post types are enabled and registered with WordPress." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:63 -msgid "A descriptive summary of the post type." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:48 -msgid "Add Custom" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:42 -msgid "Enable various features in the content editor." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:31 -msgid "Post Formats" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:25 -msgid "Editor" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:24 -msgid "Trackbacks" -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:87 -msgid "Select existing taxonomies to classify items of the post type." -msgstr "" - -#: includes/admin/views/acf-field-group/field.php:145 -msgid "Browse Fields" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:292 -msgid "Nothing to import" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:287 -msgid ". The Custom Post Type UI plugin can be deactivated." -msgstr "" - -#. translators: %d - number of items imported from CPTUI -#: includes/admin/tools/class-acf-admin-tool-import.php:278 -msgid "Imported %d item from Custom Post Type UI -" -msgid_plural "Imported %d items from Custom Post Type UI -" -msgstr[0] "" -msgstr[1] "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:262 -msgid "Failed to import taxonomies." -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:244 -msgid "Failed to import post types." -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:233 -msgid "Nothing from Custom Post Type UI plugin selected for import." -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:209 -msgid "Imported 1 item" -msgid_plural "Imported %s items" -msgstr[0] "" -msgstr[1] "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:122 -msgid "" -"Importing a Post Type or Taxonomy with the same key as one that already " -"exists will overwrite the settings for the existing Post Type or Taxonomy " -"with those of the import." -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:111 -#: includes/admin/tools/class-acf-admin-tool-import.php:127 -msgid "Import from Custom Post Type UI" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:412 -msgid "" -"The following code can be used to register a local version of the selected " -"items. Storing field groups, post types, or taxonomies locally can provide " -"many benefits such as faster load times, version control & dynamic fields/" -"settings. Simply copy and paste the following code to your theme's functions." -"php file or include it within an external file, then deactivate or delete " -"the items from the ACF admin." -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:411 -msgid "Export - Generate PHP" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:384 -msgid "Export" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:276 -msgid "Select Taxonomies" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:254 -msgid "Select Post Types" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:167 -msgid "Exported 1 item." -msgid_plural "Exported %s items." -msgstr[0] "" -msgstr[1] "" - -#: includes/admin/post-types/admin-taxonomy.php:129 -#: assets/build/js/acf-internal-post-type.js:182 -#: assets/build/js/acf-internal-post-type.js:256 -msgid "Category" -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:127 -#: assets/build/js/acf-internal-post-type.js:179 -#: assets/build/js/acf-internal-post-type.js:253 -msgid "Tag" -msgstr "" - -#. translators: %s taxonomy name -#: includes/admin/post-types/admin-taxonomy.php:82 -msgid "%s taxonomy created" -msgstr "" - -#. translators: %s taxonomy name -#: includes/admin/post-types/admin-taxonomy.php:76 -msgid "%s taxonomy updated" -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:56 -msgid "Taxonomy draft updated." -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:55 -msgid "Taxonomy scheduled for." -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:54 -msgid "Taxonomy submitted." -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:53 -msgid "Taxonomy saved." -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:49 -msgid "Taxonomy deleted." -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:48 -msgid "Taxonomy updated." -msgstr "" - -#: includes/admin/post-types/admin-taxonomies.php:377 -#: includes/admin/post-types/admin-taxonomy.php:157 -msgid "" -"This taxonomy could not be registered because its key is in use by another " -"taxonomy registered by another plugin or theme." -msgstr "" - -#. translators: %s number of taxonomies synchronized -#: includes/admin/post-types/admin-taxonomies.php:359 -msgid "Taxonomy synchronized." -msgid_plural "%s taxonomies synchronized." -msgstr[0] "" -msgstr[1] "" - -#. translators: %s number of taxonomies duplicated -#: includes/admin/post-types/admin-taxonomies.php:352 -msgid "Taxonomy duplicated." -msgid_plural "%s taxonomies duplicated." -msgstr[0] "" -msgstr[1] "" - -#. translators: %s number of taxonomies deactivated -#: includes/admin/post-types/admin-taxonomies.php:345 -msgid "Taxonomy deactivated." -msgid_plural "%s taxonomies deactivated." -msgstr[0] "" -msgstr[1] "" - -#. translators: %s number of taxonomies activated -#: includes/admin/post-types/admin-taxonomies.php:338 -msgid "Taxonomy activated." -msgid_plural "%s taxonomies activated." -msgstr[0] "" -msgstr[1] "" - -#: includes/admin/post-types/admin-taxonomies.php:139 -msgid "Terms" -msgstr "" - -#. translators: %s number of post types synchronized -#: includes/admin/post-types/admin-post-types.php:352 -msgid "Post type synchronized." -msgid_plural "%s post types synchronized." -msgstr[0] "" -msgstr[1] "" - -#. translators: %s number of post types duplicated -#: includes/admin/post-types/admin-post-types.php:345 -msgid "Post type duplicated." -msgid_plural "%s post types duplicated." -msgstr[0] "" -msgstr[1] "" - -#. translators: %s number of post types deactivated -#: includes/admin/post-types/admin-post-types.php:338 -msgid "Post type deactivated." -msgid_plural "%s post types deactivated." -msgstr[0] "" -msgstr[1] "" - -#. translators: %s number of post types activated -#: includes/admin/post-types/admin-post-types.php:331 -msgid "Post type activated." -msgid_plural "%s post types activated." -msgstr[0] "" -msgstr[1] "" - -#: includes/admin/post-types/admin-post-types.php:112 -#: includes/admin/post-types/admin-taxonomies.php:137 -#: includes/admin/tools/class-acf-admin-tool-import.php:82 -#: includes/admin/views/acf-taxonomy/basic-settings.php:82 -#: includes/post-types/class-acf-post-type.php:91 -msgid "Post Types" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:162 -#: includes/admin/post-types/admin-taxonomy.php:164 -msgid "Advanced Settings" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:161 -#: includes/admin/post-types/admin-taxonomy.php:163 -msgid "Basic Settings" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:155 -#: includes/admin/post-types/admin-post-types.php:370 -msgid "" -"This post type could not be registered because its key is in use by another " -"post type registered by another plugin or theme." -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:128 -#: assets/build/js/acf-internal-post-type.js:176 -#: assets/build/js/acf-internal-post-type.js:250 -msgid "Pages" -msgstr "" - -#: includes/admin/admin-internal-post-type.php:355 -msgid "Link Existing Field Groups" -msgstr "" - -#. translators: %s post type name -#: includes/admin/post-types/admin-post-type.php:80 -msgid "%s post type created" -msgstr "" - -#. translators: %s taxonomy name -#: includes/admin/post-types/admin-taxonomy.php:78 -msgid "Add fields to %s" -msgstr "" - -#. translators: %s post type name -#: includes/admin/post-types/admin-post-type.php:76 -msgid "%s post type updated" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:56 -msgid "Post type draft updated." -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:55 -msgid "Post type scheduled for." -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:54 -msgid "Post type submitted." -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:53 -msgid "Post type saved." -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:50 -msgid "Post type updated." -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:49 -msgid "Post type deleted." -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:120 -#: assets/build/js/acf-field-group.js:1146 -#: assets/build/js/acf-field-group.js:1366 -msgid "Type to search..." -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:105 -#: assets/build/js/acf-field-group.js:1172 -#: assets/build/js/acf-field-group.js:2319 -#: assets/build/js/acf-field-group.js:1414 -#: assets/build/js/acf-field-group.js:2727 -msgid "PRO Only" -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:97 -#: assets/build/js/acf-internal-post-type.js:308 -#: assets/build/js/acf-internal-post-type.js:417 -msgid "Field groups linked successfully." -msgstr "" - -#. translators: %s - URL to ACF tools page. -#: includes/admin/admin.php:195 -msgid "" -"Import Post Types and Taxonomies registered with Custom Post Type UI and " -"manage them with ACF. Get Started." -msgstr "" - -#: includes/admin/admin.php:48 includes/admin/admin.php:267 -msgid "ACF" -msgstr "" - -#: includes/admin/admin-internal-post-type.php:322 -msgid "taxonomy" -msgstr "" - -#: includes/admin/admin-internal-post-type.php:322 -msgid "post type" -msgstr "" - -#: includes/admin/admin-internal-post-type.php:346 -msgid "Done" -msgstr "" - -#: includes/admin/admin-internal-post-type.php:332 -msgid "Field Group(s)" -msgstr "" - -#: includes/admin/admin-internal-post-type.php:331 -msgid "Select one or many field groups..." -msgstr "" - -#: includes/admin/admin-internal-post-type.php:330 -msgid "Please select the field groups to link." -msgstr "" - -#: includes/admin/admin-internal-post-type.php:288 -msgid "Field group linked successfully." -msgid_plural "Field groups linked successfully." -msgstr[0] "" -msgstr[1] "" - -#: includes/admin/admin-internal-post-type-list.php:261 -#: includes/admin/post-types/admin-post-types.php:371 -#: includes/admin/post-types/admin-taxonomies.php:378 -msgctxt "post status" -msgid "Registration Failed" -msgstr "" - -#: includes/admin/admin-internal-post-type-list.php:260 -msgid "" -"This item could not be registered because its key is in use by another item " -"registered by another plugin or theme." -msgstr "" - -#: includes/acf-internal-post-type-functions.php:482 -#: includes/acf-internal-post-type-functions.php:511 -msgid "REST API" -msgstr "" - -#: includes/acf-internal-post-type-functions.php:481 -#: includes/acf-internal-post-type-functions.php:510 -#: includes/acf-internal-post-type-functions.php:537 -msgid "Permissions" -msgstr "" - -#: includes/acf-internal-post-type-functions.php:480 -#: includes/acf-internal-post-type-functions.php:509 -msgid "URLs" -msgstr "" - -#: includes/acf-internal-post-type-functions.php:479 -#: includes/acf-internal-post-type-functions.php:508 -#: includes/acf-internal-post-type-functions.php:535 -msgid "Visibility" -msgstr "" - -#: includes/acf-internal-post-type-functions.php:478 -#: includes/acf-internal-post-type-functions.php:507 -#: includes/acf-internal-post-type-functions.php:536 -msgid "Labels" -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:269 -msgid "Field Settings Tabs" -msgstr "" - -#. Author URI of the plugin -msgid "" -"https://wpengine.com/?utm_source=wordpress." -"org&utm_medium=referral&utm_campaign=plugin_directory&utm_content=advanced_custom_fields" -msgstr "" - -#: includes/api/api-template.php:867 -msgid "[ACF shortcode value disabled for preview]" -msgstr "" - -#: includes/admin/admin-internal-post-type.php:298 -#: includes/admin/post-types/admin-field-group.php:571 -msgid "Close Modal" -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:96 -#: assets/build/js/acf-field-group.js:1670 -#: assets/build/js/acf-field-group.js:1993 -msgid "Field moved to other group" -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:95 -#: assets/build/js/acf.js:1437 assets/build/js/acf.js:1517 -msgid "Close modal" -msgstr "" - -#: includes/fields/class-acf-field-tab.php:125 -msgid "Start a new group of tabs at this tab." -msgstr "" - -#: includes/fields/class-acf-field-tab.php:124 -msgid "New Tab Group" -msgstr "" - -#: includes/fields/class-acf-field-select.php:451 -#: includes/fields/class-acf-field-true_false.php:200 -msgid "Use a stylized checkbox using select2" -msgstr "" - -#: includes/fields/class-acf-field-radio.php:260 -msgid "Save Other Choice" -msgstr "" - -#: includes/fields/class-acf-field-radio.php:249 -msgid "Allow Other Choice" -msgstr "" - -#: includes/fields/class-acf-field-checkbox.php:450 -msgid "Add Toggle All" -msgstr "" - -#: includes/fields/class-acf-field-checkbox.php:409 -msgid "Save Custom Values" -msgstr "" - -#: includes/fields/class-acf-field-checkbox.php:398 -msgid "Allow Custom Values" -msgstr "" - -#: includes/fields/class-acf-field-checkbox.php:148 -msgid "Checkbox custom values cannot be empty. Uncheck any empty values." -msgstr "" - -#: includes/admin/views/global/navigation.php:248 -msgid "Updates" -msgstr "" - -#: includes/admin/views/global/navigation.php:176 -msgid "Advanced Custom Fields logo" -msgstr "" - -#: includes/admin/views/global/form-top.php:89 -msgid "Save Changes" -msgstr "" - -#: includes/admin/views/global/form-top.php:76 -msgid "Field Group Title" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:704 -#: includes/admin/views/global/form-top.php:3 -msgid "Add title" -msgstr "" - -#. translators: %s url to getting started guide -#: includes/admin/views/acf-field-group/list-empty.php:20 -#: includes/admin/views/acf-post-type/list-empty.php:12 -#: includes/admin/views/acf-taxonomy/list-empty.php:12 -#: includes/admin/views/options-page-preview.php:13 -msgid "" -"New to ACF? Take a look at our getting " -"started guide." -msgstr "" - -#: includes/admin/views/acf-field-group/list-empty.php:15 -msgid "Add Field Group" -msgstr "" - -#. translators: %s url to creating a field group page -#: includes/admin/views/acf-field-group/list-empty.php:10 -msgid "" -"ACF uses field groups to group custom " -"fields together, and then attach those fields to edit screens." -msgstr "" - -#: includes/admin/views/acf-field-group/list-empty.php:5 -msgid "Add Your First Field Group" -msgstr "" - -#: includes/admin/admin-options-pages-preview.php:28 -#: includes/admin/views/acf-field-group/pro-features.php:54 -#: includes/admin/views/global/navigation.php:86 -#: includes/admin/views/global/navigation.php:250 -msgid "Options Pages" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:50 -msgid "ACF Blocks" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:58 -msgid "Gallery Field" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:38 -msgid "Flexible Content Field" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:42 -msgid "Repeater Field" -msgstr "" - -#: includes/admin/views/global/navigation.php:212 -msgid "Unlock Extra Features with ACF PRO" -msgstr "" - -#: includes/admin/views/acf-field-group/options.php:267 -msgid "Delete Field Group" -msgstr "" - -#. translators: 1: Post creation date 2: Post creation time -#: includes/admin/views/acf-field-group/options.php:261 -msgid "Created on %1$s at %2$s" -msgstr "" - -#: includes/acf-field-group-functions.php:497 -msgid "Group Settings" -msgstr "" - -#: includes/acf-field-group-functions.php:495 -msgid "Location Rules" -msgstr "" - -#. translators: %s url to field types list -#: includes/admin/views/acf-field-group/fields.php:72 -msgid "" -"Choose from over 30 field types. Learn " -"more." -msgstr "" - -#: includes/admin/views/acf-field-group/fields.php:65 -msgid "" -"Get started creating new custom fields for your posts, pages, custom post " -"types and other WordPress content." -msgstr "" - -#: includes/admin/views/acf-field-group/fields.php:64 -msgid "Add Your First Field" -msgstr "" - -#. translators: A symbol (or text, if not available in your locale) meaning -#. "Order Number", in terms of positional placement. -#: includes/admin/views/acf-field-group/fields.php:43 -msgid "#" -msgstr "" - -#: includes/admin/views/acf-field-group/fields.php:33 -#: includes/admin/views/acf-field-group/fields.php:67 -#: includes/admin/views/acf-field-group/fields.php:103 -#: includes/admin/views/global/form-top.php:85 -msgid "Add Field" -msgstr "" - -#: includes/acf-field-group-functions.php:496 includes/fields.php:410 -msgid "Presentation" -msgstr "" - -#: includes/fields.php:409 -msgid "Validation" -msgstr "" - -#: includes/acf-internal-post-type-functions.php:477 -#: includes/acf-internal-post-type-functions.php:506 includes/fields.php:408 -msgid "General" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:70 -msgid "Import JSON" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:392 -msgid "Export As JSON" -msgstr "" - -#. translators: %s number of field groups deactivated -#: includes/admin/post-types/admin-field-groups.php:367 -msgid "Field group deactivated." -msgid_plural "%s field groups deactivated." -msgstr[0] "" -msgstr[1] "" - -#. translators: %s number of field groups activated -#: includes/admin/post-types/admin-field-groups.php:360 -msgid "Field group activated." -msgid_plural "%s field groups activated." -msgstr[0] "" -msgstr[1] "" - -#: includes/admin/admin-internal-post-type-list.php:452 -#: includes/admin/admin-internal-post-type-list.php:478 -msgid "Deactivate" -msgstr "" - -#: includes/admin/admin-internal-post-type-list.php:452 -msgid "Deactivate this item" -msgstr "" - -#: includes/admin/admin-internal-post-type-list.php:448 -#: includes/admin/admin-internal-post-type-list.php:477 -msgid "Activate" -msgstr "" - -#: includes/admin/admin-internal-post-type-list.php:448 -msgid "Activate this item" -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:92 -#: assets/build/js/acf-field-group.js:2812 -#: assets/build/js/acf-field-group.js:3313 -msgid "Move field group to trash?" -msgstr "" - -#: acf.php:497 includes/admin/admin-internal-post-type-list.php:248 -#: includes/admin/post-types/admin-field-group.php:297 -#: includes/admin/post-types/admin-post-type.php:295 -#: includes/admin/post-types/admin-taxonomy.php:297 -msgctxt "post status" -msgid "Inactive" -msgstr "" - -#. Author of the plugin -msgid "WP Engine" -msgstr "" - -#: acf.php:555 -msgid "" -"Advanced Custom Fields and Advanced Custom Fields PRO should not be active " -"at the same time. We've automatically deactivated Advanced Custom Fields PRO." -msgstr "" - -#: acf.php:553 -msgid "" -"Advanced Custom Fields and Advanced Custom Fields PRO should not be active " -"at the same time. We've automatically deactivated Advanced Custom Fields." -msgstr "" - -#: includes/acf-value-functions.php:374 -msgid "" -"%1$s - We've detected one or more calls to retrieve ACF " -"field values before ACF has been initialized. This is not supported and can " -"result in malformed or missing data. Learn how to fix this." -msgstr "" - -#: includes/fields/class-acf-field-user.php:551 -msgid "%1$s must have a user with the %2$s role." -msgid_plural "%1$s must have a user with one of the following roles: %2$s" -msgstr[0] "" -msgstr[1] "" - -#: includes/fields/class-acf-field-user.php:542 -msgid "%1$s must have a valid user ID." -msgstr "" - -#: includes/fields/class-acf-field-user.php:380 -msgid "Invalid request." -msgstr "" - -#: includes/fields/class-acf-field-select.php:684 -msgid "%1$s is not one of %2$s" -msgstr "" - -#: includes/fields/class-acf-field-post_object.php:700 -msgid "%1$s must have term %2$s." -msgid_plural "%1$s must have one of the following terms: %2$s" -msgstr[0] "" -msgstr[1] "" - -#: includes/fields/class-acf-field-post_object.php:684 -msgid "%1$s must be of post type %2$s." -msgid_plural "%1$s must be of one of the following post types: %2$s" -msgstr[0] "" -msgstr[1] "" - -#: includes/fields/class-acf-field-post_object.php:675 -msgid "%1$s must have a valid post ID." -msgstr "" - -#: includes/fields/class-acf-field-file.php:475 -msgid "%s requires a valid attachment ID." -msgstr "" - -#: includes/admin/views/acf-field-group/options.php:233 -msgid "Show in REST API" -msgstr "" - -#: includes/fields/class-acf-field-color_picker.php:168 -msgid "Enable Transparency" -msgstr "" - -#: includes/fields/class-acf-field-color_picker.php:187 -msgid "RGBA Array" -msgstr "" - -#: includes/fields/class-acf-field-color_picker.php:98 -msgid "RGBA String" -msgstr "" - -#: includes/fields/class-acf-field-color_picker.php:97 -#: includes/fields/class-acf-field-color_picker.php:186 -msgid "Hex String" -msgstr "" - -#: includes/admin/views/browse-fields-modal.php:65 -msgid "Upgrade to PRO" -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:297 -#: includes/admin/post-types/admin-post-type.php:295 -#: includes/admin/post-types/admin-taxonomy.php:297 -msgctxt "post status" -msgid "Active" -msgstr "" - -#: includes/fields/class-acf-field-email.php:181 -msgid "'%s' is not a valid email address" -msgstr "«%s» no es una dirección de correo electrónico válida" - -#: includes/fields/class-acf-field-color_picker.php:76 -msgid "Color value" -msgstr "Valor del color" - -#: includes/fields/class-acf-field-color_picker.php:74 -msgid "Select default color" -msgstr "Seleccionar el color por defecto" - -#: includes/fields/class-acf-field-color_picker.php:72 -msgid "Clear color" -msgstr "Vaciar el color" - -#: includes/acf-wp-functions.php:90 -msgid "Blocks" -msgstr "Bloques" - -#: includes/acf-wp-functions.php:86 -msgid "Options" -msgstr "Opciones" - -#: includes/acf-wp-functions.php:82 -msgid "Users" -msgstr "Usuarios" - -#: includes/acf-wp-functions.php:78 -msgid "Menu items" -msgstr "Elementos del menú" - -#: includes/acf-wp-functions.php:70 -msgid "Widgets" -msgstr "Widgets" - -#: includes/acf-wp-functions.php:62 -msgid "Attachments" -msgstr "Adjuntos" - -#: includes/acf-wp-functions.php:57 -#: includes/admin/post-types/admin-post-types.php:137 -#: includes/admin/post-types/admin-taxonomies.php:112 -#: includes/admin/tools/class-acf-admin-tool-import.php:93 -#: includes/admin/views/acf-post-type/basic-settings.php:86 -#: includes/post-types/class-acf-taxonomy.php:90 -#: includes/post-types/class-acf-taxonomy.php:91 -msgid "Taxonomies" -msgstr "Taxonomías" - -#: includes/acf-wp-functions.php:44 -#: includes/admin/post-types/admin-post-type.php:126 -#: includes/admin/post-types/admin-post-types.php:139 -#: includes/admin/views/acf-post-type/advanced-settings.php:106 -#: assets/build/js/acf-internal-post-type.js:173 -#: assets/build/js/acf-internal-post-type.js:247 -msgid "Posts" -msgstr "Entradas" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:76 -msgid "Last updated: %s" -msgstr "Actualizado por última vez: %s" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:70 -msgid "Sorry, this post is unavailable for diff comparison." -msgstr "" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:42 -msgid "Invalid field group parameter(s)." -msgstr "Parámetros del grupo de campos inválido." - -#: includes/admin/admin-internal-post-type-list.php:413 -msgid "Awaiting save" -msgstr "Esperando guardado" - -#: includes/admin/admin-internal-post-type-list.php:410 -msgid "Saved" -msgstr "Guardado" - -#: includes/admin/admin-internal-post-type-list.php:406 -#: includes/admin/tools/class-acf-admin-tool-import.php:49 -msgid "Import" -msgstr "Importar" - -#: includes/admin/admin-internal-post-type-list.php:402 -msgid "Review changes" -msgstr "Revisar cambios" - -#: includes/admin/admin-internal-post-type-list.php:378 -msgid "Located in: %s" -msgstr "Ubicado en: %s" - -#: includes/admin/admin-internal-post-type-list.php:375 -msgid "Located in plugin: %s" -msgstr "Ubicado en plugin: %s" - -#: includes/admin/admin-internal-post-type-list.php:372 -msgid "Located in theme: %s" -msgstr "Ubicado en el tema: %s" - -#: includes/admin/post-types/admin-field-groups.php:261 -msgid "Various" -msgstr "Varios" - -#: includes/admin/admin-internal-post-type-list.php:216 -#: includes/admin/admin-internal-post-type-list.php:485 -msgid "Sync changes" -msgstr "Sincronizar cambios" - -#: includes/admin/admin-internal-post-type-list.php:215 -msgid "Loading diff" -msgstr "Cargando diff" - -#: includes/admin/admin-internal-post-type-list.php:214 -msgid "Review local JSON changes" -msgstr "Revisar cambios de JSON local" - -#: includes/admin/admin.php:170 -msgid "Visit website" -msgstr "Visitar web" - -#: includes/admin/admin.php:169 -msgid "View details" -msgstr "Ver detalles" - -#: includes/admin/admin.php:168 -msgid "Version %s" -msgstr "Versión: %s" - -#: includes/admin/admin.php:167 -msgid "Information" -msgstr "Información" - -#: includes/admin/admin.php:158 -msgid "" -"Help Desk. The support professionals on " -"our Help Desk will assist with your more in depth, technical challenges." -msgstr "" -"Centro de ayuda. Los profesionales de " -"soporte de nuestro centro de ayuda le ayudarán más en profundidad con los " -"retos técnicos." - -#: includes/admin/admin.php:154 -msgid "" -"Discussions. We have an active and " -"friendly community on our Community Forums who may be able to help you " -"figure out the 'how-tos' of the ACF world." -msgstr "" - -#: includes/admin/admin.php:150 -msgid "" -"Documentation. Our extensive " -"documentation contains references and guides for most situations you may " -"encounter." -msgstr "" -"Documentación. Nuestra amplia " -"documentación contiene referencias y guías para la mayoría de situaciones a " -"las que puede enfrentarse." - -#: includes/admin/admin.php:147 -msgid "" -"We are fanatical about support, and want you to get the best out of your " -"website with ACF. If you run into any difficulties, there are several places " -"you can find help:" -msgstr "" -"Somos fanáticos del soporte, y queremos que consiga el máximo en su web con " -"ACF." - -#: includes/admin/admin.php:144 includes/admin/admin.php:146 -msgid "Help & Support" -msgstr "Ayuda y soporte" - -#: includes/admin/admin.php:135 -msgid "" -"Please use the Help & Support tab to get in touch should you find yourself " -"requiring assistance." -msgstr "" -"Por favor, use la pestaña de ayuda y soporte para avisarnos que necesita " -"ayuda." - -#: includes/admin/admin.php:132 -msgid "" -"Before creating your first Field Group, we recommend first reading our Getting started guide to familiarize " -"yourself with the plugin's philosophy and best practises." -msgstr "" -"Antes de crear su primer grupo de campos le recomendamos que primero lea " -"nuestra guía de primeros pasos para " -"familiarizarse con la filosofía y buenas prácticas del plugin." - -#: includes/admin/admin.php:130 -msgid "" -"The Advanced Custom Fields plugin provides a visual form builder to " -"customize WordPress edit screens with extra fields, and an intuitive API to " -"display custom field values in any theme template file." -msgstr "" -"El plugin Advanced Custom Fields ofrece un constructor visual con el que " -"personalizar las pantallas de WordPress con campos adicionales, y una API " -"intuitiva parra mostrar valores de campos personalizados en cualquier " -"archivo de plantilla de cualquier tema." - -#: includes/admin/admin.php:127 includes/admin/admin.php:129 -msgid "Overview" -msgstr "Resumen" - -#: includes/locations.php:36 -msgid "Location type \"%s\" is already registered." -msgstr "El tipo de ubicación «%s» ya está registrado." - -#: includes/locations.php:25 -msgid "Class \"%s\" does not exist." -msgstr "La clase «%s» no existe." - -#: includes/ajax/class-acf-ajax.php:157 -msgid "Invalid nonce." -msgstr "Nonce no válido." - -#: includes/fields/class-acf-field-user.php:375 -msgid "Error loading field." -msgstr "Error al cargar el campo." - -#: assets/build/js/acf-input.js:2750 assets/build/js/acf-input.js:2819 -#: assets/build/js/acf-input.js:2926 assets/build/js/acf-input.js:3000 -msgid "Location not found: %s" -msgstr "Ubicación no encontrada: %s" - -#: includes/forms/form-user.php:353 -msgid "Error: %s" -msgstr "" - -#: includes/locations/class-acf-location-widget.php:22 -msgid "Widget" -msgstr "Widget" - -#: includes/locations/class-acf-location-user-role.php:24 -msgid "User Role" -msgstr "Rol de usuario" - -#: includes/locations/class-acf-location-comment.php:22 -msgid "Comment" -msgstr "Comentario" - -#: includes/locations/class-acf-location-post-format.php:22 -msgid "Post Format" -msgstr "Formato de entrada" - -#: includes/locations/class-acf-location-nav-menu-item.php:22 -msgid "Menu Item" -msgstr "Elemento de menú" - -#: includes/locations/class-acf-location-post-status.php:22 -msgid "Post Status" -msgstr "Estado de entrada" - -#: includes/acf-wp-functions.php:74 -#: includes/locations/class-acf-location-nav-menu.php:89 -msgid "Menus" -msgstr "Menús" - -#: includes/locations/class-acf-location-nav-menu.php:80 -msgid "Menu Locations" -msgstr "Ubicaciones de menú" - -#: includes/locations/class-acf-location-nav-menu.php:22 -msgid "Menu" -msgstr "Menú" - -#: includes/locations/class-acf-location-post-taxonomy.php:22 -msgid "Post Taxonomy" -msgstr "Taxonomía de entrada" - -#: includes/locations/class-acf-location-page-type.php:114 -msgid "Child Page (has parent)" -msgstr "Página hija (tiene superior)" - -#: includes/locations/class-acf-location-page-type.php:113 -msgid "Parent Page (has children)" -msgstr "Página superior (con hijos)" - -#: includes/locations/class-acf-location-page-type.php:112 -msgid "Top Level Page (no parent)" -msgstr "Página de nivel superior (sin padres)" - -#: includes/locations/class-acf-location-page-type.php:111 -msgid "Posts Page" -msgstr "Página de entradas" - -#: includes/locations/class-acf-location-page-type.php:110 -msgid "Front Page" -msgstr "Página de inicio" - -#: includes/locations/class-acf-location-page-type.php:22 -msgid "Page Type" -msgstr "Tipo de página" - -#: includes/locations/class-acf-location-current-user.php:73 -msgid "Viewing back end" -msgstr "Viendo el escritorio" - -#: includes/locations/class-acf-location-current-user.php:72 -msgid "Viewing front end" -msgstr "Viendo la web" - -#: includes/locations/class-acf-location-current-user.php:71 -msgid "Logged in" -msgstr "Conectado" - -#: includes/locations/class-acf-location-current-user.php:22 -msgid "Current User" -msgstr "Usuario actual" - -#: includes/locations/class-acf-location-page-template.php:22 -msgid "Page Template" -msgstr "Plantilla de página" - -#: includes/locations/class-acf-location-user-form.php:74 -msgid "Register" -msgstr "Registro" - -#: includes/locations/class-acf-location-user-form.php:73 -msgid "Add / Edit" -msgstr "Añadir / Editar" - -#: includes/locations/class-acf-location-user-form.php:22 -msgid "User Form" -msgstr "Formulario de usuario" - -#: includes/locations/class-acf-location-page-parent.php:22 -msgid "Page Parent" -msgstr "Página superior" - -#: includes/locations/class-acf-location-current-user-role.php:77 -msgid "Super Admin" -msgstr "Super administrador" - -#: includes/locations/class-acf-location-current-user-role.php:22 -msgid "Current User Role" -msgstr "Rol del usuario actual" - -#: includes/locations/class-acf-location-page-template.php:73 -#: includes/locations/class-acf-location-post-template.php:85 -msgid "Default Template" -msgstr "Plantilla predeterminada" - -#: includes/locations/class-acf-location-post-template.php:22 -msgid "Post Template" -msgstr "Plantilla de entrada" - -#: includes/locations/class-acf-location-post-category.php:22 -msgid "Post Category" -msgstr "Categoría de entrada" - -#: includes/locations/class-acf-location-attachment.php:84 -msgid "All %s formats" -msgstr "Todo los formatos de %s" - -#: includes/locations/class-acf-location-attachment.php:22 -msgid "Attachment" -msgstr "Adjunto" - -#: includes/validation.php:366 -msgid "%s value is required" -msgstr "El valor de %s es obligatorio" - -#: includes/admin/views/acf-field-group/conditional-logic.php:59 -msgid "Show this field if" -msgstr "Mostrar este campo si" - -#: includes/admin/views/acf-field-group/conditional-logic.php:26 -#: includes/admin/views/acf-field-group/field.php:109 includes/fields.php:411 -msgid "Conditional Logic" -msgstr "Lógica condicional" - -#: includes/admin/views/acf-field-group/conditional-logic.php:156 -#: includes/admin/views/acf-field-group/location-rule.php:92 -msgid "and" -msgstr "y" - -#: includes/admin/post-types/admin-field-groups.php:123 -#: includes/admin/post-types/admin-post-types.php:143 -#: includes/admin/post-types/admin-taxonomies.php:143 -msgid "Local JSON" -msgstr "JSON Local" - -#: includes/admin/views/acf-field-group/pro-features.php:46 -msgid "Clone Field" -msgstr "Clonar campo" - -#: includes/admin/views/upgrade/notice.php:30 -msgid "" -"Please also check all premium add-ons (%s) are updated to the latest version." -msgstr "" -"Por favor, comprueba también que todas las extensiones premium (%s) estén " -"actualizados a la última versión." - -#: includes/admin/views/upgrade/notice.php:28 -msgid "" -"This version contains improvements to your database and requires an upgrade." -msgstr "" -"Esta versión contiene mejoras en su base de datos y requiere una " -"actualización." - -#: includes/admin/views/upgrade/notice.php:28 -msgid "Thank you for updating to %1$s v%2$s!" -msgstr "" - -#: includes/admin/views/upgrade/notice.php:27 -msgid "Database Upgrade Required" -msgstr "Es necesario actualizar la base de datos" - -#: includes/admin/post-types/admin-field-group.php:141 -#: includes/admin/views/upgrade/notice.php:18 -msgid "Options Page" -msgstr "Página de opciones" - -#: includes/admin/views/upgrade/notice.php:15 includes/fields.php:462 -msgid "Gallery" -msgstr "Galería" - -#: includes/admin/views/upgrade/notice.php:12 includes/fields.php:452 -msgid "Flexible Content" -msgstr "Contenido flexible" - -#: includes/admin/views/upgrade/notice.php:9 includes/fields.php:472 -msgid "Repeater" -msgstr "Repetidor" - -#: includes/admin/views/tools/tools.php:24 -msgid "Back to all tools" -msgstr "Volver a todas las herramientas" - -#: includes/admin/views/acf-field-group/options.php:195 -msgid "" -"If multiple field groups appear on an edit screen, the first field group's " -"options will be used (the one with the lowest order number)" -msgstr "" -"Si aparecen múltiples grupos de campos en una pantalla de edición, se " -"utilizarán las opciones del primer grupo (el que tenga el número de orden " -"menor)" - -#: includes/admin/views/acf-field-group/options.php:195 -msgid "Select items to hide them from the edit screen." -msgstr "" -"Selecciona los elementos que ocultar de la pantalla de edición." - -#: includes/admin/views/acf-field-group/options.php:194 -msgid "Hide on screen" -msgstr "Ocultar en pantalla" - -#: includes/admin/views/acf-field-group/options.php:186 -msgid "Send Trackbacks" -msgstr "Enviar trackbacks" - -#: includes/admin/post-types/admin-taxonomy.php:128 -#: includes/admin/views/acf-field-group/options.php:185 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:159 -#: assets/build/js/acf-internal-post-type.js:180 -#: assets/build/js/acf-internal-post-type.js:254 -msgid "Tags" -msgstr "Etiquetas" - -#: includes/admin/post-types/admin-taxonomy.php:130 -#: includes/admin/views/acf-field-group/options.php:184 -#: assets/build/js/acf-internal-post-type.js:183 -#: assets/build/js/acf-internal-post-type.js:257 -msgid "Categories" -msgstr "Categorías" - -#: includes/admin/views/acf-field-group/options.php:182 -#: includes/admin/views/acf-post-type/advanced-settings.php:28 -msgid "Page Attributes" -msgstr "Atributos de página" - -#: includes/admin/views/acf-field-group/options.php:181 -msgid "Format" -msgstr "Formato" - -#: includes/admin/views/acf-field-group/options.php:180 -#: includes/admin/views/acf-post-type/advanced-settings.php:22 -msgid "Author" -msgstr "Autor" - -#: includes/admin/views/acf-field-group/options.php:179 -msgid "Slug" -msgstr "Slug" - -#: includes/admin/views/acf-field-group/options.php:178 -#: includes/admin/views/acf-post-type/advanced-settings.php:27 -msgid "Revisions" -msgstr "Revisiones" - -#: includes/acf-wp-functions.php:66 -#: includes/admin/views/acf-field-group/options.php:177 -#: includes/admin/views/acf-post-type/advanced-settings.php:23 -msgid "Comments" -msgstr "Comentarios" - -#: includes/admin/views/acf-field-group/options.php:176 -msgid "Discussion" -msgstr "Discusión" - -#: includes/admin/views/acf-field-group/options.php:174 -#: includes/admin/views/acf-post-type/advanced-settings.php:26 -msgid "Excerpt" -msgstr "Extracto" - -#: includes/admin/views/acf-field-group/options.php:173 -msgid "Content Editor" -msgstr "Editor de contenido" - -#: includes/admin/views/acf-field-group/options.php:172 -msgid "Permalink" -msgstr "Enlace permanente" - -#: includes/admin/views/acf-field-group/options.php:250 -msgid "Shown in field group list" -msgstr "Mostrado en lista de grupos de campos" - -#: includes/admin/views/acf-field-group/options.php:157 -msgid "Field groups with a lower order will appear first" -msgstr "Los grupos de campos con menor orden aparecerán primero" - -#: includes/admin/views/acf-field-group/options.php:156 -msgid "Order No." -msgstr "Número de orden" - -#: includes/admin/views/acf-field-group/options.php:147 -msgid "Below fields" -msgstr "Debajo de los campos" - -#: includes/admin/views/acf-field-group/options.php:146 -msgid "Below labels" -msgstr "Debajo de las etiquetas" - -#: includes/admin/views/acf-field-group/options.php:139 -msgid "Instruction Placement" -msgstr "" - -#: includes/admin/views/acf-field-group/options.php:122 -msgid "Label Placement" -msgstr "" - -#: includes/admin/views/acf-field-group/options.php:110 -msgid "Side" -msgstr "Lateral" - -#: includes/admin/views/acf-field-group/options.php:109 -msgid "Normal (after content)" -msgstr "Normal (después del contenido)" - -#: includes/admin/views/acf-field-group/options.php:108 -msgid "High (after title)" -msgstr "Alta (después del título)" - -#: includes/admin/views/acf-field-group/options.php:101 -msgid "Position" -msgstr "Posición" - -#: includes/admin/views/acf-field-group/options.php:92 -msgid "Seamless (no metabox)" -msgstr "Directo (sin caja meta)" - -#: includes/admin/views/acf-field-group/options.php:91 -msgid "Standard (WP metabox)" -msgstr "Estándar (caja meta de WP)" - -#: includes/admin/views/acf-field-group/options.php:84 -msgid "Style" -msgstr "Estilo" - -#: includes/admin/views/acf-field-group/fields.php:55 -msgid "Type" -msgstr "Tipo" - -#: includes/admin/post-types/admin-field-groups.php:117 -#: includes/admin/post-types/admin-post-types.php:136 -#: includes/admin/post-types/admin-taxonomies.php:136 -#: includes/admin/views/acf-field-group/fields.php:54 -msgid "Key" -msgstr "Clave" - -#. translators: Hidden accessibility text for the positional order number of -#. the field. -#: includes/admin/views/acf-field-group/fields.php:48 -msgid "Order" -msgstr "Orden" - -#: includes/admin/views/acf-field-group/field.php:322 -msgid "Close Field" -msgstr "Cerrar campo" - -#: includes/admin/views/acf-field-group/field.php:253 -msgid "id" -msgstr "id" - -#: includes/admin/views/acf-field-group/field.php:237 -msgid "class" -msgstr "class" - -#: includes/admin/views/acf-field-group/field.php:279 -msgid "width" -msgstr "ancho" - -#: includes/admin/views/acf-field-group/field.php:273 -msgid "Wrapper Attributes" -msgstr "Atributos del contenedor" - -#: includes/admin/views/acf-field-group/field.php:196 -msgid "Required" -msgstr "" - -#: includes/admin/views/acf-field-group/field.php:221 -msgid "Instructions for authors. Shown when submitting data" -msgstr "" -"Instrucciones para los autores. Se muestra a la hora de enviar los datos" - -#: includes/admin/views/acf-field-group/field.php:220 -msgid "Instructions" -msgstr "Instrucciones" - -#: includes/admin/views/acf-field-group/field.php:129 -msgid "Field Type" -msgstr "Tipo de campo" - -#: includes/admin/views/acf-field-group/field.php:170 -msgid "Single word, no spaces. Underscores and dashes allowed" -msgstr "Una sola palabra, sin espacios. Se permiten guiones y guiones bajos" - -#: includes/admin/views/acf-field-group/field.php:169 -msgid "Field Name" -msgstr "Nombre del campo" - -#: includes/admin/views/acf-field-group/field.php:157 -msgid "This is the name which will appear on the EDIT page" -msgstr "Este es el nombre que aparecerá en la página EDITAR" - -#: includes/admin/views/acf-field-group/field.php:156 -#: includes/admin/views/browse-fields-modal.php:59 -msgid "Field Label" -msgstr "Etiqueta del campo" - -#: includes/admin/views/acf-field-group/field.php:81 -msgid "Delete" -msgstr "Borrar" - -#: includes/admin/views/acf-field-group/field.php:81 -msgid "Delete field" -msgstr "Borrar campo" - -#: includes/admin/views/acf-field-group/field.php:79 -msgid "Move" -msgstr "Mover" - -#: includes/admin/views/acf-field-group/field.php:79 -msgid "Move field to another group" -msgstr "Mover campo a otro grupo" - -#: includes/admin/views/acf-field-group/field.php:77 -msgid "Duplicate field" -msgstr "Duplicar campo" - -#: includes/admin/views/acf-field-group/field.php:73 -#: includes/admin/views/acf-field-group/field.php:76 -msgid "Edit field" -msgstr "Editar campo" - -#: includes/admin/views/acf-field-group/field.php:69 -msgid "Drag to reorder" -msgstr "Arrastra para reordenar" - -#: includes/admin/post-types/admin-field-group.php:103 -#: includes/admin/views/acf-field-group/location-group.php:3 -#: assets/build/js/acf-field-group.js:2347 -#: assets/build/js/acf-field-group.js:2763 -msgid "Show this field group if" -msgstr "Mostrar este grupo de campos si" - -#: includes/admin/views/upgrade/upgrade.php:94 -#: includes/ajax/class-acf-ajax-upgrade.php:34 -msgid "No updates available." -msgstr "No hay actualizaciones disponibles." - -#: includes/admin/views/upgrade/upgrade.php:33 -msgid "Database upgrade complete. See what's new" -msgstr "" -"Actualización de la base de datos completa. Ver las " -"novedades" - -#: includes/admin/views/upgrade/upgrade.php:30 -msgid "Reading upgrade tasks..." -msgstr "Leyendo tareas de actualización..." - -#: includes/admin/views/upgrade/network.php:165 -#: includes/admin/views/upgrade/upgrade.php:65 -msgid "Upgrade failed." -msgstr "Fallo al actualizar." - -#: includes/admin/views/upgrade/network.php:162 -msgid "Upgrade complete." -msgstr "Actualización completa" - -#: includes/admin/views/upgrade/network.php:148 -#: includes/admin/views/upgrade/upgrade.php:31 -msgid "Upgrading data to version %s" -msgstr "Actualizando datos a la versión %s" - -#: includes/admin/views/upgrade/network.php:121 -#: includes/admin/views/upgrade/notice.php:44 -msgid "" -"It is strongly recommended that you backup your database before proceeding. " -"Are you sure you wish to run the updater now?" -msgstr "" -"Es muy recomendable que hagas una copia de seguridad de tu base de datos " -"antes de continuar. ¿Estás seguro que quieres ejecutar ya la actualización?" - -#: includes/admin/views/upgrade/network.php:117 -msgid "Please select at least one site to upgrade." -msgstr "Por favor, selecciona al menos un sitio para actualizarlo." - -#: includes/admin/views/upgrade/network.php:97 -msgid "" -"Database Upgrade complete. Return to network dashboard" -msgstr "" -"Actualización de base de datos completa. Volver al escritorio " -"de red" - -#: includes/admin/views/upgrade/network.php:80 -msgid "Site is up to date" -msgstr "El sitio está actualizado" - -#: includes/admin/views/upgrade/network.php:78 -msgid "Site requires database upgrade from %1$s to %2$s" -msgstr "" - -#: includes/admin/views/upgrade/network.php:36 -#: includes/admin/views/upgrade/network.php:47 -msgid "Site" -msgstr "Sitio" - -#: includes/admin/views/upgrade/network.php:26 -#: includes/admin/views/upgrade/network.php:27 -#: includes/admin/views/upgrade/network.php:96 -msgid "Upgrade Sites" -msgstr "Actualizar los sitios" - -#: includes/admin/views/upgrade/network.php:26 -msgid "" -"The following sites require a DB upgrade. Check the ones you want to update " -"and then click %s." -msgstr "" -"Es necesario actualizar la base de datos de los siguientes sitios. Marca los " -"que quieras actualizar y haz clic en %s." - -#: includes/admin/views/acf-field-group/conditional-logic.php:171 -#: includes/admin/views/acf-field-group/locations.php:38 -msgid "Add rule group" -msgstr "Añadir grupo de reglas" - -#: includes/admin/views/acf-field-group/locations.php:10 -msgid "" -"Create a set of rules to determine which edit screens will use these " -"advanced custom fields" -msgstr "" -"Crea un conjunto de reglas para determinar qué pantallas de edición " -"utilizarán estos campos personalizados" - -#: includes/admin/views/acf-field-group/locations.php:9 -msgid "Rules" -msgstr "Reglas" - -#: includes/admin/tools/class-acf-admin-tool-export.php:510 -msgid "Copied" -msgstr "Copiado" - -#: includes/admin/tools/class-acf-admin-tool-export.php:486 -msgid "Copy to clipboard" -msgstr "Copiar al portapapeles" - -#: includes/admin/tools/class-acf-admin-tool-export.php:385 -msgid "" -"Select the items you would like to export and then select your export " -"method. Export As JSON to export to a .json file which you can then import " -"to another ACF installation. Generate PHP to export to PHP code which you " -"can place in your theme." -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:233 -msgid "Select Field Groups" -msgstr "Selecciona grupos de campos" - -#: includes/admin/tools/class-acf-admin-tool-export.php:96 -#: includes/admin/tools/class-acf-admin-tool-export.php:131 -msgid "No field groups selected" -msgstr "Ningún grupo de campos seleccionado" - -#: includes/admin/tools/class-acf-admin-tool-export.php:39 -#: includes/admin/tools/class-acf-admin-tool-export.php:393 -#: includes/admin/tools/class-acf-admin-tool-export.php:421 -msgid "Generate PHP" -msgstr "Generar PHP" - -#: includes/admin/tools/class-acf-admin-tool-export.php:35 -msgid "Export Field Groups" -msgstr "Exportar grupos de campos" - -#: includes/admin/tools/class-acf-admin-tool-import.php:177 -msgid "Import file empty" -msgstr "Archivo de imporación vacío" - -#: includes/admin/tools/class-acf-admin-tool-import.php:168 -msgid "Incorrect file type" -msgstr "Tipo de campo incorrecto" - -#: includes/admin/tools/class-acf-admin-tool-import.php:163 -msgid "Error uploading file. Please try again" -msgstr "Error al subir el archivo. Por favor, inténtalo de nuevo" - -#: includes/admin/tools/class-acf-admin-tool-import.php:50 -msgid "" -"Select the Advanced Custom Fields JSON file you would like to import. When " -"you click the import button below, ACF will import the items in that file." -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:27 -msgid "Import Field Groups" -msgstr "Importar grupo de campos" - -#: includes/admin/admin-internal-post-type-list.php:401 -msgid "Sync" -msgstr "Sincronizar" - -#: includes/admin/admin-internal-post-type-list.php:858 -msgid "Select %s" -msgstr "Selecciona %s" - -#: includes/admin/admin-internal-post-type-list.php:442 -#: includes/admin/admin-internal-post-type-list.php:474 -#: includes/admin/views/acf-field-group/field.php:77 -msgid "Duplicate" -msgstr "Duplicar" - -#: includes/admin/admin-internal-post-type-list.php:442 -msgid "Duplicate this item" -msgstr "Duplicar este elemento" - -#: includes/admin/views/acf-post-type/advanced-settings.php:41 -msgid "Supports" -msgstr "" - -#: includes/admin/admin.php:261 includes/admin/views/browse-fields-modal.php:92 -msgid "Documentation" -msgstr "Documentación" - -#: includes/admin/post-types/admin-field-groups.php:116 -#: includes/admin/post-types/admin-post-types.php:135 -#: includes/admin/post-types/admin-taxonomies.php:135 -#: includes/admin/views/acf-field-group/options.php:249 -#: includes/admin/views/acf-post-type/advanced-settings.php:62 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:114 -#: includes/admin/views/upgrade/network.php:38 -#: includes/admin/views/upgrade/network.php:49 -msgid "Description" -msgstr "Descripción" - -#: includes/admin/admin-internal-post-type-list.php:398 -#: includes/admin/admin-internal-post-type-list.php:747 -msgid "Sync available" -msgstr "Sincronización disponible" - -#. translators: %s number of field groups synchronized -#: includes/admin/post-types/admin-field-groups.php:381 -msgid "Field group synchronized." -msgid_plural "%s field groups synchronized." -msgstr[0] "" -msgstr[1] "" - -#. translators: %s number of field groups duplicated -#: includes/admin/post-types/admin-field-groups.php:374 -msgid "Field group duplicated." -msgid_plural "%s field groups duplicated." -msgstr[0] "Grupo de campos duplicado." -msgstr[1] "%s grupos de campos duplicados." - -#: includes/admin/admin-internal-post-type-list.php:137 -msgid "Active (%s)" -msgid_plural "Active (%s)" -msgstr[0] "Activo (%s)" -msgstr[1] "Activos (%s)" - -#: includes/admin/admin-upgrade.php:254 -msgid "Review sites & upgrade" -msgstr "Revisar sitios y actualizar" - -#: includes/admin/admin-upgrade.php:59 includes/admin/admin-upgrade.php:93 -#: includes/admin/admin-upgrade.php:94 includes/admin/admin-upgrade.php:230 -#: includes/admin/views/upgrade/network.php:24 -#: includes/admin/views/upgrade/upgrade.php:26 -msgid "Upgrade Database" -msgstr "Actualizar base de datos" - -#: includes/admin/views/acf-field-group/options.php:175 -#: includes/admin/views/acf-post-type/advanced-settings.php:30 -msgid "Custom Fields" -msgstr "Campos personalizados" - -#: includes/admin/post-types/admin-field-group.php:616 -msgid "Move Field" -msgstr "Mover campo" - -#: includes/admin/post-types/admin-field-group.php:605 -#: includes/admin/post-types/admin-field-group.php:609 -msgid "Please select the destination for this field" -msgstr "Por favor, selecciona el destino para este campo" - -#. translators: Confirmation message once a field has been moved to a different -#. field group. -#: includes/admin/post-types/admin-field-group.php:567 -msgid "The %1$s field can now be found in the %2$s field group" -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:564 -msgid "Move Complete." -msgstr "Movimiento completo." - -#: includes/admin/views/acf-field-group/field.php:39 -#: includes/admin/views/acf-field-group/options.php:217 -#: includes/admin/views/acf-post-type/advanced-settings.php:78 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:130 -msgid "Active" -msgstr "Activo" - -#: includes/admin/post-types/admin-field-group.php:266 -msgid "Field Keys" -msgstr "Claves de campo" - -#: includes/admin/post-types/admin-field-group.php:164 -#: includes/admin/tools/class-acf-admin-tool-export.php:342 -msgid "Settings" -msgstr "Ajustes" - -#: includes/admin/post-types/admin-field-groups.php:118 -msgid "Location" -msgstr "Ubicación" - -#: includes/admin/post-types/admin-field-group.php:104 -#: assets/build/js/acf-input.js:983 assets/build/js/acf-input.js:1075 -msgid "Null" -msgstr "Null" - -#: includes/admin/post-types/admin-field-group.php:101 -#: includes/class-acf-internal-post-type.php:730 -#: includes/post-types/class-acf-field-group.php:345 -#: assets/build/js/acf-field-group.js:1510 -#: assets/build/js/acf-field-group.js:1821 -msgid "copy" -msgstr "copiar" - -#: includes/admin/post-types/admin-field-group.php:100 -#: assets/build/js/acf-field-group.js:623 -#: assets/build/js/acf-field-group.js:778 -msgid "(this field)" -msgstr "(este campo)" - -#: includes/admin/post-types/admin-field-group.php:98 -#: assets/build/js/acf-input.js:918 assets/build/js/acf-input.js:943 -#: assets/build/js/acf-input.js:1002 assets/build/js/acf-input.js:1030 -msgid "Checked" -msgstr "Seleccionado" - -#: includes/admin/post-types/admin-field-group.php:94 -#: assets/build/js/acf-field-group.js:1615 -#: assets/build/js/acf-field-group.js:1933 -msgid "Move Custom Field" -msgstr "Mover campo personalizado" - -#: includes/admin/post-types/admin-field-group.php:93 -#: assets/build/js/acf-field-group.js:649 -#: assets/build/js/acf-field-group.js:804 -msgid "No toggle fields available" -msgstr "No hay campos de conmutación disponibles" - -#: includes/admin/post-types/admin-field-group.php:91 -msgid "Field group title is required" -msgstr "El título del grupo de campos es obligatorio" - -#: includes/admin/post-types/admin-field-group.php:90 -#: assets/build/js/acf-field-group.js:1604 -#: assets/build/js/acf-field-group.js:1919 -msgid "This field cannot be moved until its changes have been saved" -msgstr "Este campo se puede mover hasta que sus cambios se hayan guardado" - -#: includes/admin/post-types/admin-field-group.php:89 -#: assets/build/js/acf-field-group.js:1414 -#: assets/build/js/acf-field-group.js:1716 -msgid "The string \"field_\" may not be used at the start of a field name" -msgstr "" -"La cadena \"field_\" no se debe utilizar al comienzo de un nombre de campo" - -#: includes/admin/post-types/admin-field-group.php:71 -msgid "Field group draft updated." -msgstr "Borrador del grupo de campos actualizado." - -#: includes/admin/post-types/admin-field-group.php:70 -msgid "Field group scheduled for." -msgstr "Grupo de campos programado." - -#: includes/admin/post-types/admin-field-group.php:69 -msgid "Field group submitted." -msgstr "Grupo de campos enviado." - -#: includes/admin/post-types/admin-field-group.php:68 -msgid "Field group saved." -msgstr "Grupo de campos guardado." - -#: includes/admin/post-types/admin-field-group.php:67 -msgid "Field group published." -msgstr "Grupo de campos publicado." - -#: includes/admin/post-types/admin-field-group.php:64 -msgid "Field group deleted." -msgstr "Grupo de campos eliminado." - -#: includes/admin/post-types/admin-field-group.php:62 -#: includes/admin/post-types/admin-field-group.php:63 -#: includes/admin/post-types/admin-field-group.php:65 -msgid "Field group updated." -msgstr "Grupo de campos actualizado." - -#: includes/admin/admin-tools.php:118 -#: includes/admin/views/global/navigation.php:246 -#: includes/admin/views/tools/tools.php:21 -msgid "Tools" -msgstr "Herramientas" - -#: includes/locations/abstract-acf-location.php:106 -msgid "is not equal to" -msgstr "no es igual a" - -#: includes/locations/abstract-acf-location.php:105 -msgid "is equal to" -msgstr "es igual a" - -#: includes/locations.php:102 -msgid "Forms" -msgstr "Formularios" - -#: includes/admin/post-types/admin-post-type.php:127 includes/locations.php:100 -#: includes/locations/class-acf-location-page.php:22 -#: assets/build/js/acf-internal-post-type.js:175 -#: assets/build/js/acf-internal-post-type.js:249 -msgid "Page" -msgstr "Página" - -#: includes/admin/post-types/admin-post-type.php:125 includes/locations.php:99 -#: includes/locations/class-acf-location-post.php:22 -#: assets/build/js/acf-internal-post-type.js:172 -#: assets/build/js/acf-internal-post-type.js:246 -msgid "Post" -msgstr "Entrada" - -#: includes/fields.php:354 -msgid "Relational" -msgstr "Relación" - -#: includes/fields.php:353 -msgid "Choice" -msgstr "Elección" - -#: includes/fields.php:351 -msgid "Basic" -msgstr "Básico" - -#: includes/fields.php:320 -msgid "Unknown" -msgstr "Desconocido" - -#: includes/fields.php:320 -msgid "Field type does not exist" -msgstr "El tipo de campo no existe" - -#: includes/forms/form-front.php:236 -msgid "Spam Detected" -msgstr "Spam detectado" - -#: includes/forms/form-front.php:107 -msgid "Post updated" -msgstr "Publicación actualizada" - -#: includes/forms/form-front.php:106 -msgid "Update" -msgstr "Actualizar" - -#: includes/forms/form-front.php:57 -msgid "Validate Email" -msgstr "Validar correo electrónico" - -#: includes/fields.php:352 includes/forms/form-front.php:49 -msgid "Content" -msgstr "Contenido" - -#: includes/admin/views/acf-post-type/advanced-settings.php:21 -#: includes/forms/form-front.php:40 -msgid "Title" -msgstr "Título" - -#: includes/assets.php:372 includes/forms/form-comment.php:160 -#: assets/build/js/acf-input.js:7382 assets/build/js/acf-input.js:7968 -msgid "Edit field group" -msgstr "Editar grupo de campos" - -#: includes/admin/post-types/admin-field-group.php:117 -#: assets/build/js/acf-input.js:1125 assets/build/js/acf-input.js:1230 -msgid "Selection is less than" -msgstr "La selección es menor que" - -#: includes/admin/post-types/admin-field-group.php:116 -#: assets/build/js/acf-input.js:1106 assets/build/js/acf-input.js:1202 -msgid "Selection is greater than" -msgstr "La selección es mayor que" - -#: includes/admin/post-types/admin-field-group.php:115 -#: assets/build/js/acf-input.js:1075 assets/build/js/acf-input.js:1170 -msgid "Value is less than" -msgstr "El valor es menor que" - -#: includes/admin/post-types/admin-field-group.php:114 -#: assets/build/js/acf-input.js:1045 assets/build/js/acf-input.js:1139 -msgid "Value is greater than" -msgstr "El valor es mayor que" - -#: includes/admin/post-types/admin-field-group.php:113 -#: assets/build/js/acf-input.js:888 assets/build/js/acf-input.js:960 -msgid "Value contains" -msgstr "El valor contiene" - -#: includes/admin/post-types/admin-field-group.php:112 -#: assets/build/js/acf-input.js:862 assets/build/js/acf-input.js:926 -msgid "Value matches pattern" -msgstr "El valor coincide con el patrón" - -#: includes/admin/post-types/admin-field-group.php:111 -#: assets/build/js/acf-input.js:840 assets/build/js/acf-input.js:1023 -#: assets/build/js/acf-input.js:903 assets/build/js/acf-input.js:1116 -msgid "Value is not equal to" -msgstr "El valor no es igual a" - -#: includes/admin/post-types/admin-field-group.php:110 -#: assets/build/js/acf-input.js:810 assets/build/js/acf-input.js:964 -#: assets/build/js/acf-input.js:864 assets/build/js/acf-input.js:1053 -msgid "Value is equal to" -msgstr "El valor es igual a" - -#: includes/admin/post-types/admin-field-group.php:109 -#: assets/build/js/acf-input.js:788 assets/build/js/acf-input.js:841 -msgid "Has no value" -msgstr "No tiene ningún valor" - -#: includes/admin/post-types/admin-field-group.php:108 -#: assets/build/js/acf-input.js:758 assets/build/js/acf-input.js:783 -msgid "Has any value" -msgstr "No tiene algún valor" - -#: includes/admin/admin-internal-post-type.php:345 -#: includes/admin/views/browse-fields-modal.php:62 includes/assets.php:353 -#: assets/build/js/acf.js:1564 assets/build/js/acf.js:1658 -msgid "Cancel" -msgstr "Cancelar" - -#: includes/assets.php:349 assets/build/js/acf.js:1738 -#: assets/build/js/acf.js:1855 -msgid "Are you sure?" -msgstr "¿Estás seguro?" - -#: includes/assets.php:369 assets/build/js/acf-input.js:9442 -#: assets/build/js/acf-input.js:10294 -msgid "%d fields require attention" -msgstr "%d campos requieren atención" - -#: includes/assets.php:368 assets/build/js/acf-input.js:9440 -#: assets/build/js/acf-input.js:10290 -msgid "1 field requires attention" -msgstr "1 campo requiere atención" - -#: includes/assets.php:367 includes/validation.php:288 -#: includes/validation.php:298 assets/build/js/acf-input.js:9435 -#: assets/build/js/acf-input.js:10285 -msgid "Validation failed" -msgstr "Validación fallida" - -#: includes/assets.php:366 assets/build/js/acf-input.js:9603 -#: assets/build/js/acf-input.js:10473 -msgid "Validation successful" -msgstr "Validación correcta" - -#: includes/media.php:54 assets/build/js/acf-input.js:7210 -#: assets/build/js/acf-input.js:7772 -msgid "Restricted" -msgstr "Restringido" - -#: includes/media.php:53 assets/build/js/acf-input.js:7025 -#: assets/build/js/acf-input.js:7536 -msgid "Collapse Details" -msgstr "Contraer detalles" - -#: includes/media.php:52 assets/build/js/acf-input.js:7025 -#: assets/build/js/acf-input.js:7533 -msgid "Expand Details" -msgstr "Ampliar detalles" - -#: includes/admin/views/acf-post-type/advanced-settings.php:465 -#: includes/media.php:51 assets/build/js/acf-input.js:6892 -#: assets/build/js/acf-input.js:7381 -msgid "Uploaded to this post" -msgstr "Subido a esta publicación" - -#: includes/media.php:50 assets/build/js/acf-input.js:6931 -#: assets/build/js/acf-input.js:7420 -msgctxt "verb" -msgid "Update" -msgstr "Actualizar" - -#: includes/media.php:49 -msgctxt "verb" -msgid "Edit" -msgstr "Editar" - -#: includes/assets.php:363 assets/build/js/acf-input.js:9212 -#: assets/build/js/acf-input.js:10056 -msgid "The changes you made will be lost if you navigate away from this page" -msgstr "Los cambios que has realizado se perderán si navegas hacia otra página" - -#: includes/api/api-helpers.php:3395 -msgid "File type must be %s." -msgstr "El tipo de archivo debe ser %s." - -#: includes/admin/post-types/admin-field-group.php:102 -#: includes/admin/views/acf-field-group/conditional-logic.php:59 -#: includes/admin/views/acf-field-group/conditional-logic.php:169 -#: includes/admin/views/acf-field-group/location-group.php:3 -#: includes/admin/views/acf-field-group/locations.php:36 -#: includes/api/api-helpers.php:3391 assets/build/js/acf-field-group.js:771 -#: assets/build/js/acf-field-group.js:2385 -#: assets/build/js/acf-field-group.js:933 -#: assets/build/js/acf-field-group.js:2807 -msgid "or" -msgstr "o" - -#: includes/api/api-helpers.php:3364 -msgid "File size must not exceed %s." -msgstr "El tamaño del archivo no debe sobrepasar %s." - -#: includes/api/api-helpers.php:3359 -msgid "File size must be at least %s." -msgstr "El tamaño de archivo debe ser al menos %s." - -#: includes/api/api-helpers.php:3344 -msgid "Image height must not exceed %dpx." -msgstr "La altura de la imagen no debe exceder %dpx." - -#: includes/api/api-helpers.php:3339 -msgid "Image height must be at least %dpx." -msgstr "La altura de la imagen debe ser al menos %dpx." - -#: includes/api/api-helpers.php:3325 -msgid "Image width must not exceed %dpx." -msgstr "El ancho de la imagen no debe exceder %dpx." - -#: includes/api/api-helpers.php:3320 -msgid "Image width must be at least %dpx." -msgstr "El ancho de la imagen debe ser al menos %dpx." - -#: includes/api/api-helpers.php:1561 includes/api/api-term.php:147 -msgid "(no title)" -msgstr "(sin título)" - -#: includes/api/api-helpers.php:853 -msgid "Full Size" -msgstr "Tamaño completo" - -#: includes/api/api-helpers.php:812 -msgid "Large" -msgstr "Grande" - -#: includes/api/api-helpers.php:811 -msgid "Medium" -msgstr "Mediano" - -#: includes/api/api-helpers.php:810 -msgid "Thumbnail" -msgstr "Miniatura" - -#: includes/acf-field-functions.php:854 -#: includes/admin/post-types/admin-field-group.php:99 -#: assets/build/js/acf-field-group.js:1077 -#: assets/build/js/acf-field-group.js:1260 -msgid "(no label)" -msgstr "(sin etiqueta)" - -#: includes/fields/class-acf-field-textarea.php:145 -msgid "Sets the textarea height" -msgstr "Establece la altura del área de texto" - -#: includes/fields/class-acf-field-textarea.php:144 -msgid "Rows" -msgstr "Filas" - -#: includes/fields/class-acf-field-textarea.php:25 -msgid "Text Area" -msgstr "Área de texto" - -#: includes/fields/class-acf-field-checkbox.php:451 -msgid "Prepend an extra checkbox to toggle all choices" -msgstr "" -"Anteponer una casilla de verificación extra para cambiar todas las opciones" - -#: includes/fields/class-acf-field-checkbox.php:413 -msgid "Save 'custom' values to the field's choices" -msgstr "Guardar los valores «personalizados» a las opciones del campo" - -#: includes/fields/class-acf-field-checkbox.php:402 -msgid "Allow 'custom' values to be added" -msgstr "Permite añadir valores personalizados" - -#: includes/fields/class-acf-field-checkbox.php:38 -msgid "Add new choice" -msgstr "Añadir nueva opción" - -#: includes/fields/class-acf-field-checkbox.php:174 -msgid "Toggle All" -msgstr "Invertir todos" - -#: includes/fields/class-acf-field-page_link.php:506 -msgid "Allow Archives URLs" -msgstr "Permitir las URLs de los archivos" - -#: includes/fields/class-acf-field-page_link.php:179 -msgid "Archives" -msgstr "Archivo" - -#: includes/fields/class-acf-field-page_link.php:25 -msgid "Page Link" -msgstr "Enlace a página" - -#: includes/fields/class-acf-field-taxonomy.php:943 -#: includes/locations/class-acf-location-user-form.php:72 -msgid "Add" -msgstr "Añadir" - -#: includes/admin/views/acf-field-group/fields.php:53 -#: includes/fields/class-acf-field-taxonomy.php:908 -msgid "Name" -msgstr "Nombre" - -#: includes/fields/class-acf-field-taxonomy.php:892 -msgid "%s added" -msgstr "%s añadido/s" - -#: includes/fields/class-acf-field-taxonomy.php:856 -msgid "%s already exists" -msgstr "%s ya existe" - -#: includes/fields/class-acf-field-taxonomy.php:844 -msgid "User unable to add new %s" -msgstr "El usuario no puede añadir nuevos %s" - -#: includes/fields/class-acf-field-taxonomy.php:742 -msgid "Term ID" -msgstr "ID de término" - -#: includes/fields/class-acf-field-taxonomy.php:741 -msgid "Term Object" -msgstr "Objeto de término" - -#: includes/fields/class-acf-field-taxonomy.php:726 -msgid "Load value from posts terms" -msgstr "Cargar el valor de los términos de la publicación" - -#: includes/fields/class-acf-field-taxonomy.php:725 -msgid "Load Terms" -msgstr "Cargar términos" - -#: includes/fields/class-acf-field-taxonomy.php:715 -msgid "Connect selected terms to the post" -msgstr "Conectar los términos seleccionados con la publicación" - -#: includes/fields/class-acf-field-taxonomy.php:714 -msgid "Save Terms" -msgstr "Guardar términos" - -#: includes/fields/class-acf-field-taxonomy.php:704 -msgid "Allow new terms to be created whilst editing" -msgstr "Permitir la creación de nuevos términos mientras se edita" - -#: includes/fields/class-acf-field-taxonomy.php:703 -msgid "Create Terms" -msgstr "Crear términos" - -#: includes/fields/class-acf-field-taxonomy.php:762 -msgid "Radio Buttons" -msgstr "Botones de radio" - -#: includes/fields/class-acf-field-taxonomy.php:761 -msgid "Single Value" -msgstr "Valor único" - -#: includes/fields/class-acf-field-taxonomy.php:759 -msgid "Multi Select" -msgstr "Selección múltiple" - -#: includes/fields/class-acf-field-checkbox.php:25 -#: includes/fields/class-acf-field-taxonomy.php:758 -msgid "Checkbox" -msgstr "Casilla de verificación" - -#: includes/fields/class-acf-field-taxonomy.php:757 -msgid "Multiple Values" -msgstr "Valores múltiples" - -#: includes/fields/class-acf-field-taxonomy.php:752 -msgid "Select the appearance of this field" -msgstr "Selecciona la apariencia de este campo" - -#: includes/fields/class-acf-field-taxonomy.php:751 -msgid "Appearance" -msgstr "Apariencia" - -#: includes/fields/class-acf-field-taxonomy.php:693 -msgid "Select the taxonomy to be displayed" -msgstr "Selecciona la taxonomía a mostrar" - -#: includes/fields/class-acf-field-taxonomy.php:654 -msgctxt "No Terms" -msgid "No %s" -msgstr "" - -#: includes/fields/class-acf-field-number.php:266 -msgid "Value must be equal to or lower than %d" -msgstr "El valor debe ser menor o igual a %d" - -#: includes/fields/class-acf-field-number.php:259 -msgid "Value must be equal to or higher than %d" -msgstr "El valor debe ser mayor o igual a %d" - -#: includes/fields/class-acf-field-number.php:244 -msgid "Value must be a number" -msgstr "El valor debe ser un número" - -#: includes/fields/class-acf-field-number.php:25 -msgid "Number" -msgstr "Número" - -#: includes/fields/class-acf-field-radio.php:264 -msgid "Save 'other' values to the field's choices" -msgstr "Guardar los valores de 'otros' en las opciones del campo" - -#: includes/fields/class-acf-field-radio.php:253 -msgid "Add 'other' choice to allow for custom values" -msgstr "Añade la opción 'otros' para permitir valores personalizados" - -#: includes/admin/views/global/navigation.php:196 -msgid "Other" -msgstr "Otros" - -#: includes/fields/class-acf-field-radio.php:25 -msgid "Radio Button" -msgstr "Botón de radio" - -#: includes/fields/class-acf-field-accordion.php:107 -msgid "" -"Define an endpoint for the previous accordion to stop. This accordion will " -"not be visible." -msgstr "" -"Define un punto final para que el acordeón anterior se detenga. Este " -"acordeón no será visible." - -#: includes/fields/class-acf-field-accordion.php:96 -msgid "Allow this accordion to open without closing others." -msgstr "Permita que este acordeón se abra sin cerrar otros." - -#: includes/fields/class-acf-field-accordion.php:95 -msgid "Multi-Expand" -msgstr "" - -#: includes/fields/class-acf-field-accordion.php:85 -msgid "Display this accordion as open on page load." -msgstr "Muestra este acordeón como abierto en la carga de la página." - -#: includes/fields/class-acf-field-accordion.php:84 -msgid "Open" -msgstr "Abrir" - -#: includes/fields/class-acf-field-accordion.php:25 -msgid "Accordion" -msgstr "Acordeón" - -#: includes/fields/class-acf-field-file.php:267 -#: includes/fields/class-acf-field-file.php:279 -msgid "Restrict which files can be uploaded" -msgstr "Restringir qué archivos que se pueden subir" - -#: includes/fields/class-acf-field-file.php:220 -msgid "File ID" -msgstr "ID del archivo" - -#: includes/fields/class-acf-field-file.php:219 -msgid "File URL" -msgstr "URL del archivo" - -#: includes/fields/class-acf-field-file.php:218 -msgid "File Array" -msgstr "Array del archivo" - -#: includes/fields/class-acf-field-file.php:186 -msgid "Add File" -msgstr "Añadir archivo" - -#: includes/admin/tools/class-acf-admin-tool-import.php:156 -#: includes/fields/class-acf-field-file.php:186 -msgid "No file selected" -msgstr "Ningún archivo seleccionado" - -#: includes/fields/class-acf-field-file.php:150 -msgid "File name" -msgstr "Nombre del archivo" - -#: includes/fields/class-acf-field-file.php:63 -#: assets/build/js/acf-input.js:2474 assets/build/js/acf-input.js:2625 -msgid "Update File" -msgstr "Actualizar archivo" - -#: includes/fields/class-acf-field-file.php:62 -#: assets/build/js/acf-input.js:2473 assets/build/js/acf-input.js:2624 -msgid "Edit File" -msgstr "Editar archivo" - -#: includes/admin/tools/class-acf-admin-tool-import.php:58 -#: includes/fields/class-acf-field-file.php:61 -#: assets/build/js/acf-input.js:2447 assets/build/js/acf-input.js:2597 -msgid "Select File" -msgstr "Seleccionar archivo" - -#: includes/fields/class-acf-field-file.php:25 -msgid "File" -msgstr "Archivo" - -#: includes/fields/class-acf-field-password.php:25 -msgid "Password" -msgstr "Contraseña" - -#: includes/fields/class-acf-field-select.php:392 -msgid "Specify the value returned" -msgstr "Especifica el valor devuelto" - -#: includes/fields/class-acf-field-select.php:461 -msgid "Use AJAX to lazy load choices?" -msgstr "¿Usar AJAX para hacer cargar las opciones de forma asíncrona?" - -#: includes/fields/class-acf-field-checkbox.php:362 -#: includes/fields/class-acf-field-select.php:381 -msgid "Enter each default value on a new line" -msgstr "Añade cada valor en una nueva línea" - -#: includes/fields/class-acf-field-select.php:252 includes/media.php:48 -#: assets/build/js/acf-input.js:6790 assets/build/js/acf-input.js:7266 -msgctxt "verb" -msgid "Select" -msgstr "Selecciona" - -#: includes/fields/class-acf-field-select.php:121 -msgctxt "Select2 JS load_fail" -msgid "Loading failed" -msgstr "Error al cargar" - -#: includes/fields/class-acf-field-select.php:120 -msgctxt "Select2 JS searching" -msgid "Searching…" -msgstr "Buscando…" - -#: includes/fields/class-acf-field-select.php:119 -msgctxt "Select2 JS load_more" -msgid "Loading more results…" -msgstr "Cargando más resultados…" - -#: includes/fields/class-acf-field-select.php:118 -msgctxt "Select2 JS selection_too_long_n" -msgid "You can only select %d items" -msgstr "Solo puedes seleccionar %d elementos" - -#: includes/fields/class-acf-field-select.php:117 -msgctxt "Select2 JS selection_too_long_1" -msgid "You can only select 1 item" -msgstr "Solo puedes seleccionar 1 elemento" - -#: includes/fields/class-acf-field-select.php:116 -msgctxt "Select2 JS input_too_long_n" -msgid "Please delete %d characters" -msgstr "Por favor, borra %d caracteres" - -#: includes/fields/class-acf-field-select.php:115 -msgctxt "Select2 JS input_too_long_1" -msgid "Please delete 1 character" -msgstr "Por favor, borra 1 carácter" - -#: includes/fields/class-acf-field-select.php:114 -msgctxt "Select2 JS input_too_short_n" -msgid "Please enter %d or more characters" -msgstr "Por favor, introduce %d o más caracteres" - -#: includes/fields/class-acf-field-select.php:113 -msgctxt "Select2 JS input_too_short_1" -msgid "Please enter 1 or more characters" -msgstr "Por favor, introduce 1 o más caracteres" - -#: includes/fields/class-acf-field-select.php:112 -msgctxt "Select2 JS matches_0" -msgid "No matches found" -msgstr "No se han encontrado coincidencias" - -#: includes/fields/class-acf-field-select.php:111 -msgctxt "Select2 JS matches_n" -msgid "%d results are available, use up and down arrow keys to navigate." -msgstr "" -"%d resultados disponibles, utiliza las flechas arriba y abajo para navegar " -"por los resultados." - -#: includes/fields/class-acf-field-select.php:110 -msgctxt "Select2 JS matches_1" -msgid "One result is available, press enter to select it." -msgstr "Hay un resultado disponible, pulsa enter para seleccionarlo." - -#: includes/fields/class-acf-field-select.php:25 -#: includes/fields/class-acf-field-taxonomy.php:763 -msgctxt "noun" -msgid "Select" -msgstr "Selección" - -#: includes/fields/class-acf-field-user.php:73 -msgid "User ID" -msgstr "ID del usuario" - -#: includes/fields/class-acf-field-user.php:72 -msgid "User Object" -msgstr "Grupo de objetos" - -#: includes/fields/class-acf-field-user.php:71 -msgid "User Array" -msgstr "Grupo de usuarios" - -#: includes/fields/class-acf-field-user.php:59 -msgid "All user roles" -msgstr "Todos los roles de usuario" - -#: includes/fields/class-acf-field-user.php:51 -msgid "Filter by Role" -msgstr "" - -#: includes/fields/class-acf-field-user.php:15 includes/locations.php:101 -msgid "User" -msgstr "Usuario" - -#: includes/fields/class-acf-field-separator.php:25 -msgid "Separator" -msgstr "Separador" - -#: includes/fields/class-acf-field-color_picker.php:75 -msgid "Select Color" -msgstr "Seleccionar color" - -#: includes/admin/post-types/admin-post-type.php:129 -#: includes/admin/post-types/admin-taxonomy.php:131 -#: includes/fields/class-acf-field-color_picker.php:73 -#: assets/build/js/acf-internal-post-type.js:72 -#: assets/build/js/acf-internal-post-type.js:86 -msgid "Default" -msgstr "Por defecto" - -#: includes/admin/views/acf-post-type/advanced-settings.php:89 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:141 -#: includes/fields/class-acf-field-color_picker.php:71 -msgid "Clear" -msgstr "Vaciar" - -#: includes/fields/class-acf-field-color_picker.php:25 -msgid "Color Picker" -msgstr "Selector de color" - -#: includes/fields/class-acf-field-date_time_picker.php:88 -msgctxt "Date Time Picker JS pmTextShort" -msgid "P" -msgstr "P" - -#: includes/fields/class-acf-field-date_time_picker.php:87 -msgctxt "Date Time Picker JS pmText" -msgid "PM" -msgstr "PM" - -#: includes/fields/class-acf-field-date_time_picker.php:84 -msgctxt "Date Time Picker JS amTextShort" -msgid "A" -msgstr "A" - -#: includes/fields/class-acf-field-date_time_picker.php:83 -msgctxt "Date Time Picker JS amText" -msgid "AM" -msgstr "AM" - -#: includes/fields/class-acf-field-date_time_picker.php:81 -msgctxt "Date Time Picker JS selectText" -msgid "Select" -msgstr "Seleccionar" - -#: includes/fields/class-acf-field-date_time_picker.php:80 -msgctxt "Date Time Picker JS closeText" -msgid "Done" -msgstr "Hecho" - -#: includes/fields/class-acf-field-date_time_picker.php:79 -msgctxt "Date Time Picker JS currentText" -msgid "Now" -msgstr "Ahora" - -#: includes/fields/class-acf-field-date_time_picker.php:78 -msgctxt "Date Time Picker JS timezoneText" -msgid "Time Zone" -msgstr "Zona horaria" - -#: includes/fields/class-acf-field-date_time_picker.php:77 -msgctxt "Date Time Picker JS microsecText" -msgid "Microsecond" -msgstr "Microsegundo" - -#: includes/fields/class-acf-field-date_time_picker.php:76 -msgctxt "Date Time Picker JS millisecText" -msgid "Millisecond" -msgstr "Milisegundo" - -#: includes/fields/class-acf-field-date_time_picker.php:75 -msgctxt "Date Time Picker JS secondText" -msgid "Second" -msgstr "Segundo" - -#: includes/fields/class-acf-field-date_time_picker.php:74 -msgctxt "Date Time Picker JS minuteText" -msgid "Minute" -msgstr "Minuto" - -#: includes/fields/class-acf-field-date_time_picker.php:73 -msgctxt "Date Time Picker JS hourText" -msgid "Hour" -msgstr "Hora" - -#: includes/fields/class-acf-field-date_time_picker.php:72 -msgctxt "Date Time Picker JS timeText" -msgid "Time" -msgstr "Hora" - -#: includes/fields/class-acf-field-date_time_picker.php:71 -msgctxt "Date Time Picker JS timeOnlyTitle" -msgid "Choose Time" -msgstr "Elegir hora" - -#: includes/fields/class-acf-field-date_time_picker.php:25 -msgid "Date Time Picker" -msgstr "Selector de fecha y hora" - -#: includes/fields/class-acf-field-accordion.php:106 -msgid "Endpoint" -msgstr "Variable" - -#: includes/admin/views/acf-field-group/options.php:130 -#: includes/fields/class-acf-field-tab.php:115 -msgid "Left aligned" -msgstr "Alineada a la izquierda" - -#: includes/admin/views/acf-field-group/options.php:129 -#: includes/fields/class-acf-field-tab.php:114 -msgid "Top aligned" -msgstr "Alineada arriba" - -#: includes/fields/class-acf-field-tab.php:110 -msgid "Placement" -msgstr "Ubicación" - -#: includes/fields/class-acf-field-tab.php:26 -msgid "Tab" -msgstr "Pestaña" - -#: includes/fields/class-acf-field-url.php:162 -msgid "Value must be a valid URL" -msgstr "El valor debe ser una URL válida" - -#: includes/fields/class-acf-field-link.php:177 -msgid "Link URL" -msgstr "URL del enlace" - -#: includes/fields/class-acf-field-link.php:176 -msgid "Link Array" -msgstr "Array de enlaces" - -#: includes/fields/class-acf-field-link.php:145 -msgid "Opens in a new window/tab" -msgstr "Abrir en una nueva ventana/pestaña" - -#: includes/fields/class-acf-field-link.php:140 -msgid "Select Link" -msgstr "Elige el enlace" - -#: includes/fields/class-acf-field-link.php:25 -msgid "Link" -msgstr "Enlace" - -#: includes/fields/class-acf-field-email.php:25 -msgid "Email" -msgstr "Correo electrónico" - -#: includes/fields/class-acf-field-number.php:188 -#: includes/fields/class-acf-field-range.php:217 -msgid "Step Size" -msgstr "Tamaño de paso" - -#: includes/fields/class-acf-field-number.php:158 -#: includes/fields/class-acf-field-range.php:195 -msgid "Maximum Value" -msgstr "Valor máximo" - -#: includes/fields/class-acf-field-number.php:148 -#: includes/fields/class-acf-field-range.php:184 -msgid "Minimum Value" -msgstr "Valor mínimo" - -#: includes/fields/class-acf-field-range.php:25 -msgid "Range" -msgstr "Rango" - -#: includes/fields/class-acf-field-button-group.php:175 -#: includes/fields/class-acf-field-checkbox.php:379 -#: includes/fields/class-acf-field-radio.php:220 -#: includes/fields/class-acf-field-select.php:399 -msgid "Both (Array)" -msgstr "Ambos (Array)" - -#: includes/admin/views/acf-field-group/fields.php:52 -#: includes/fields/class-acf-field-button-group.php:174 -#: includes/fields/class-acf-field-checkbox.php:378 -#: includes/fields/class-acf-field-radio.php:219 -#: includes/fields/class-acf-field-select.php:398 -msgid "Label" -msgstr "Etiqueta" - -#: includes/fields/class-acf-field-button-group.php:173 -#: includes/fields/class-acf-field-checkbox.php:377 -#: includes/fields/class-acf-field-radio.php:218 -#: includes/fields/class-acf-field-select.php:397 -msgid "Value" -msgstr "Valor" - -#: includes/fields/class-acf-field-button-group.php:222 -#: includes/fields/class-acf-field-checkbox.php:441 -#: includes/fields/class-acf-field-radio.php:292 -msgid "Vertical" -msgstr "Vertical" - -#: includes/fields/class-acf-field-button-group.php:221 -#: includes/fields/class-acf-field-checkbox.php:442 -#: includes/fields/class-acf-field-radio.php:293 -msgid "Horizontal" -msgstr "Horizontal" - -#: includes/fields/class-acf-field-button-group.php:148 -#: includes/fields/class-acf-field-checkbox.php:352 -#: includes/fields/class-acf-field-radio.php:193 -#: includes/fields/class-acf-field-select.php:370 -msgid "red : Red" -msgstr "rojo : Rojo" - -#: includes/fields/class-acf-field-button-group.php:148 -#: includes/fields/class-acf-field-checkbox.php:352 -#: includes/fields/class-acf-field-radio.php:193 -#: includes/fields/class-acf-field-select.php:370 -msgid "For more control, you may specify both a value and label like this:" -msgstr "" -"Para más control, puedes especificar tanto un valor como una etiqueta, así:" - -#: includes/fields/class-acf-field-button-group.php:148 -#: includes/fields/class-acf-field-checkbox.php:352 -#: includes/fields/class-acf-field-radio.php:193 -#: includes/fields/class-acf-field-select.php:370 -msgid "Enter each choice on a new line." -msgstr "Añade cada opción en una nueva línea." - -#: includes/fields/class-acf-field-button-group.php:147 -#: includes/fields/class-acf-field-checkbox.php:351 -#: includes/fields/class-acf-field-radio.php:192 -#: includes/fields/class-acf-field-select.php:369 -msgid "Choices" -msgstr "Opciones" - -#: includes/fields/class-acf-field-button-group.php:24 -msgid "Button Group" -msgstr "Grupo de botones" - -#: includes/fields/class-acf-field-button-group.php:194 -#: includes/fields/class-acf-field-page_link.php:538 -#: includes/fields/class-acf-field-post_object.php:448 -#: includes/fields/class-acf-field-radio.php:238 -#: includes/fields/class-acf-field-select.php:429 -#: includes/fields/class-acf-field-taxonomy.php:772 -#: includes/fields/class-acf-field-user.php:103 -msgid "Allow Null" -msgstr "" - -#: includes/fields/class-acf-field-page_link.php:263 -#: includes/fields/class-acf-field-post_object.php:257 -#: includes/fields/class-acf-field-taxonomy.php:930 -msgid "Parent" -msgstr "Superior" - -#: includes/fields/class-acf-field-wysiwyg.php:390 -msgid "TinyMCE will not be initialized until field is clicked" -msgstr "TinyMCE no se inicializará hasta que se haga clic en el campo" - -#: includes/fields/class-acf-field-wysiwyg.php:389 -msgid "Delay Initialization" -msgstr "" - -#: includes/fields/class-acf-field-wysiwyg.php:378 -msgid "Show Media Upload Buttons" -msgstr "" - -#: includes/fields/class-acf-field-wysiwyg.php:362 -msgid "Toolbar" -msgstr "Barra de herramientas" - -#: includes/fields/class-acf-field-wysiwyg.php:354 -msgid "Text Only" -msgstr "Sólo texto" - -#: includes/fields/class-acf-field-wysiwyg.php:353 -msgid "Visual Only" -msgstr "Sólo visual" - -#: includes/fields/class-acf-field-wysiwyg.php:352 -msgid "Visual & Text" -msgstr "Visual y Texto" - -#: includes/fields/class-acf-field-wysiwyg.php:347 -msgid "Tabs" -msgstr "Pestañas" - -#: includes/fields/class-acf-field-wysiwyg.php:285 -msgid "Click to initialize TinyMCE" -msgstr "Haz clic para iniciar TinyMCE" - -#: includes/fields/class-acf-field-wysiwyg.php:279 -msgctxt "Name for the Text editor tab (formerly HTML)" -msgid "Text" -msgstr "Texto" - -#: includes/fields/class-acf-field-wysiwyg.php:278 -msgid "Visual" -msgstr "Visual" - -#: includes/fields/class-acf-field-text.php:189 -#: includes/fields/class-acf-field-textarea.php:236 -msgid "Value must not exceed %d characters" -msgstr "El valor no debe exceder los %d caracteres" - -#: includes/fields/class-acf-field-text.php:124 -#: includes/fields/class-acf-field-textarea.php:124 -msgid "Leave blank for no limit" -msgstr "Déjalo en blanco para ilimitado" - -#: includes/fields/class-acf-field-text.php:123 -#: includes/fields/class-acf-field-textarea.php:123 -msgid "Character Limit" -msgstr "Límite de caracteres" - -#: includes/fields/class-acf-field-email.php:158 -#: includes/fields/class-acf-field-number.php:209 -#: includes/fields/class-acf-field-password.php:105 -#: includes/fields/class-acf-field-range.php:239 -#: includes/fields/class-acf-field-text.php:164 -msgid "Appears after the input" -msgstr "Aparece después del campo" - -#: includes/fields/class-acf-field-email.php:157 -#: includes/fields/class-acf-field-number.php:208 -#: includes/fields/class-acf-field-password.php:104 -#: includes/fields/class-acf-field-range.php:238 -#: includes/fields/class-acf-field-text.php:163 -msgid "Append" -msgstr "Anexar" - -#: includes/fields/class-acf-field-email.php:148 -#: includes/fields/class-acf-field-number.php:199 -#: includes/fields/class-acf-field-password.php:95 -#: includes/fields/class-acf-field-range.php:229 -#: includes/fields/class-acf-field-text.php:154 -msgid "Appears before the input" -msgstr "Aparece antes del campo" - -#: includes/fields/class-acf-field-email.php:147 -#: includes/fields/class-acf-field-number.php:198 -#: includes/fields/class-acf-field-password.php:94 -#: includes/fields/class-acf-field-range.php:228 -#: includes/fields/class-acf-field-text.php:153 -msgid "Prepend" -msgstr "Anteponer" - -#: includes/fields/class-acf-field-email.php:138 -#: includes/fields/class-acf-field-number.php:179 -#: includes/fields/class-acf-field-password.php:85 -#: includes/fields/class-acf-field-text.php:144 -#: includes/fields/class-acf-field-textarea.php:156 -#: includes/fields/class-acf-field-url.php:122 -msgid "Appears within the input" -msgstr "Aparece en el campo" - -#: includes/fields/class-acf-field-email.php:137 -#: includes/fields/class-acf-field-number.php:178 -#: includes/fields/class-acf-field-password.php:84 -#: includes/fields/class-acf-field-text.php:143 -#: includes/fields/class-acf-field-textarea.php:155 -#: includes/fields/class-acf-field-url.php:121 -msgid "Placeholder Text" -msgstr "Marcador de posición" - -#: includes/fields/class-acf-field-button-group.php:158 -#: includes/fields/class-acf-field-email.php:118 -#: includes/fields/class-acf-field-number.php:129 -#: includes/fields/class-acf-field-radio.php:203 -#: includes/fields/class-acf-field-range.php:165 -#: includes/fields/class-acf-field-text.php:104 -#: includes/fields/class-acf-field-textarea.php:104 -#: includes/fields/class-acf-field-url.php:102 -#: includes/fields/class-acf-field-wysiwyg.php:312 -msgid "Appears when creating a new post" -msgstr "Aparece cuando se está creando una nueva entrada" - -#: includes/fields/class-acf-field-text.php:25 -msgid "Text" -msgstr "Texto" - -#: includes/fields/class-acf-field-relationship.php:794 -msgid "%1$s requires at least %2$s selection" -msgid_plural "%1$s requires at least %2$s selections" -msgstr[0] "" -msgstr[1] "" - -#: includes/fields/class-acf-field-post_object.php:417 -#: includes/fields/class-acf-field-relationship.php:644 -msgid "Post ID" -msgstr "ID de publicación" - -#: includes/fields/class-acf-field-post_object.php:17 -#: includes/fields/class-acf-field-post_object.php:416 -#: includes/fields/class-acf-field-relationship.php:643 -msgid "Post Object" -msgstr "Objeto de publicación" - -#: includes/fields/class-acf-field-relationship.php:676 -msgid "Maximum Posts" -msgstr "" - -#: includes/fields/class-acf-field-relationship.php:666 -msgid "Minimum Posts" -msgstr "" - -#: includes/admin/views/acf-field-group/options.php:183 -#: includes/admin/views/acf-post-type/advanced-settings.php:29 -#: includes/fields/class-acf-field-relationship.php:701 -msgid "Featured Image" -msgstr "Imagen destacada" - -#: includes/fields/class-acf-field-relationship.php:697 -msgid "Selected elements will be displayed in each result" -msgstr "Los elementos seleccionados se mostrarán en cada resultado" - -#: includes/fields/class-acf-field-relationship.php:696 -msgid "Elements" -msgstr "Elementos" - -#: includes/fields/class-acf-field-relationship.php:630 -#: includes/fields/class-acf-field-taxonomy.php:20 -#: includes/fields/class-acf-field-taxonomy.php:692 -#: includes/locations/class-acf-location-taxonomy.php:22 -msgid "Taxonomy" -msgstr "Taxonomía" - -#: includes/fields/class-acf-field-relationship.php:629 -#: includes/locations/class-acf-location-post-type.php:22 -#: includes/post-types/class-acf-post-type.php:92 -msgid "Post Type" -msgstr "Tipo de contenido" - -#: includes/fields/class-acf-field-relationship.php:623 -msgid "Filters" -msgstr "Filtros" - -#: includes/fields/class-acf-field-page_link.php:499 -#: includes/fields/class-acf-field-post_object.php:404 -#: includes/fields/class-acf-field-relationship.php:616 -msgid "All taxonomies" -msgstr "Todas las taxonomías" - -#: includes/fields/class-acf-field-page_link.php:491 -#: includes/fields/class-acf-field-post_object.php:396 -#: includes/fields/class-acf-field-relationship.php:608 -msgid "Filter by Taxonomy" -msgstr "Filtrar por taxonomía" - -#: includes/fields/class-acf-field-page_link.php:469 -#: includes/fields/class-acf-field-post_object.php:374 -#: includes/fields/class-acf-field-relationship.php:586 -msgid "All post types" -msgstr "Todos los tipos de contenido" - -#: includes/fields/class-acf-field-page_link.php:461 -#: includes/fields/class-acf-field-post_object.php:366 -#: includes/fields/class-acf-field-relationship.php:578 -msgid "Filter by Post Type" -msgstr "Filtrar por tipo de contenido" - -#: includes/fields/class-acf-field-relationship.php:476 -msgid "Search..." -msgstr "Buscar..." - -#: includes/fields/class-acf-field-relationship.php:406 -msgid "Select taxonomy" -msgstr "Selecciona taxonomía" - -#: includes/fields/class-acf-field-relationship.php:397 -msgid "Select post type" -msgstr "Seleccionar tipo de contenido" - -#: includes/fields/class-acf-field-relationship.php:61 -#: assets/build/js/acf-input.js:3930 assets/build/js/acf-input.js:4214 -msgid "No matches found" -msgstr "No se han encontrado coincidencias" - -#: includes/fields/class-acf-field-relationship.php:60 -#: assets/build/js/acf-input.js:3913 assets/build/js/acf-input.js:4193 -msgid "Loading" -msgstr "Cargando" - -#: includes/fields/class-acf-field-relationship.php:59 -#: assets/build/js/acf-input.js:3818 assets/build/js/acf-input.js:4084 -msgid "Maximum values reached ( {max} values )" -msgstr "Valores máximos alcanzados ( {max} valores )" - -#: includes/fields/class-acf-field-relationship.php:17 -msgid "Relationship" -msgstr "Relación" - -#: includes/fields/class-acf-field-file.php:291 -#: includes/fields/class-acf-field-image.php:317 -msgid "Comma separated list. Leave blank for all types" -msgstr "Lista separada por comas. Déjalo en blanco para todos los tipos" - -#: includes/fields/class-acf-field-file.php:290 -#: includes/fields/class-acf-field-image.php:316 -msgid "Allowed File Types" -msgstr "" - -#: includes/fields/class-acf-field-file.php:278 -#: includes/fields/class-acf-field-image.php:280 -msgid "Maximum" -msgstr "Máximo" - -#: includes/fields/class-acf-field-file.php:154 -#: includes/fields/class-acf-field-file.php:270 -#: includes/fields/class-acf-field-file.php:282 -#: includes/fields/class-acf-field-image.php:271 -#: includes/fields/class-acf-field-image.php:307 -msgid "File size" -msgstr "Tamaño del archivo" - -#: includes/fields/class-acf-field-image.php:245 -#: includes/fields/class-acf-field-image.php:281 -msgid "Restrict which images can be uploaded" -msgstr "Restringir qué imágenes se pueden subir" - -#: includes/fields/class-acf-field-file.php:266 -#: includes/fields/class-acf-field-image.php:244 -msgid "Minimum" -msgstr "Mínimo" - -#: includes/fields/class-acf-field-file.php:235 -#: includes/fields/class-acf-field-image.php:210 -msgid "Uploaded to post" -msgstr "Subidos al contenido" - -#: includes/fields/class-acf-field-file.php:234 -#: includes/fields/class-acf-field-image.php:209 -#: includes/locations/class-acf-location-attachment.php:73 -#: includes/locations/class-acf-location-comment.php:61 -#: includes/locations/class-acf-location-nav-menu.php:74 -#: includes/locations/class-acf-location-taxonomy.php:63 -#: includes/locations/class-acf-location-user-form.php:71 -#: includes/locations/class-acf-location-user-role.php:78 -#: includes/locations/class-acf-location-widget.php:65 -msgid "All" -msgstr "Todos" - -#: includes/fields/class-acf-field-file.php:229 -#: includes/fields/class-acf-field-image.php:204 -msgid "Limit the media library choice" -msgstr "Limitar las opciones de la biblioteca de medios" - -#: includes/fields/class-acf-field-file.php:228 -#: includes/fields/class-acf-field-image.php:203 -msgid "Library" -msgstr "Biblioteca" - -#: includes/fields/class-acf-field-image.php:336 -msgid "Preview Size" -msgstr "Tamaño de vista previa" - -#: includes/fields/class-acf-field-image.php:195 -msgid "Image ID" -msgstr "ID de imagen" - -#: includes/fields/class-acf-field-image.php:194 -msgid "Image URL" -msgstr "URL de imagen" - -#: includes/fields/class-acf-field-image.php:193 -msgid "Image Array" -msgstr "Array de imágenes" - -#: includes/fields/class-acf-field-button-group.php:168 -#: includes/fields/class-acf-field-checkbox.php:372 -#: includes/fields/class-acf-field-file.php:213 -#: includes/fields/class-acf-field-link.php:171 -#: includes/fields/class-acf-field-radio.php:213 -msgid "Specify the returned value on front end" -msgstr "Especificar el valor devuelto en la web" - -#: includes/fields/class-acf-field-button-group.php:167 -#: includes/fields/class-acf-field-checkbox.php:371 -#: includes/fields/class-acf-field-file.php:212 -#: includes/fields/class-acf-field-link.php:170 -#: includes/fields/class-acf-field-radio.php:212 -#: includes/fields/class-acf-field-taxonomy.php:736 -msgid "Return Value" -msgstr "Valor de retorno" - -#: includes/fields/class-acf-field-image.php:162 -msgid "Add Image" -msgstr "Añadir imagen" - -#: includes/fields/class-acf-field-image.php:162 -msgid "No image selected" -msgstr "No hay ninguna imagen seleccionada" - -#: includes/assets.php:352 includes/fields/class-acf-field-file.php:162 -#: includes/fields/class-acf-field-image.php:142 -#: includes/fields/class-acf-field-link.php:145 assets/build/js/acf.js:1563 -#: assets/build/js/acf.js:1657 -msgid "Remove" -msgstr "Quitar" - -#: includes/admin/views/acf-field-group/field.php:76 -#: includes/fields/class-acf-field-file.php:160 -#: includes/fields/class-acf-field-image.php:140 -#: includes/fields/class-acf-field-link.php:145 -msgid "Edit" -msgstr "Editar" - -#: includes/fields/class-acf-field-image.php:70 includes/media.php:55 -#: assets/build/js/acf-input.js:6837 assets/build/js/acf-input.js:7320 -msgid "All images" -msgstr "Todas las imágenes" - -#: includes/fields/class-acf-field-image.php:69 -#: assets/build/js/acf-input.js:3181 assets/build/js/acf-input.js:3399 -msgid "Update Image" -msgstr "Actualizar imagen" - -#: includes/fields/class-acf-field-image.php:68 -#: assets/build/js/acf-input.js:3180 assets/build/js/acf-input.js:3398 -msgid "Edit Image" -msgstr "Editar imagen" - -#: includes/fields/class-acf-field-image.php:67 -#: assets/build/js/acf-input.js:3156 assets/build/js/acf-input.js:3373 -msgid "Select Image" -msgstr "Seleccionar imagen" - -#: includes/fields/class-acf-field-image.php:25 -msgid "Image" -msgstr "Imagen" - -#: includes/fields/class-acf-field-message.php:125 -msgid "Allow HTML markup to display as visible text instead of rendering" -msgstr "" -"Permitir que el maquetado HTML se muestre como texto visible en vez de " -"interpretarlo" - -#: includes/fields/class-acf-field-message.php:124 -msgid "Escape HTML" -msgstr "Escapar HTML" - -#: includes/fields/class-acf-field-message.php:116 -#: includes/fields/class-acf-field-textarea.php:172 -msgid "No Formatting" -msgstr "Sin formato" - -#: includes/fields/class-acf-field-message.php:115 -#: includes/fields/class-acf-field-textarea.php:171 -msgid "Automatically add <br>" -msgstr "Añadir <br> automáticamente" - -#: includes/fields/class-acf-field-message.php:114 -#: includes/fields/class-acf-field-textarea.php:170 -msgid "Automatically add paragraphs" -msgstr "Añadir párrafos automáticamente" - -#: includes/fields/class-acf-field-message.php:110 -#: includes/fields/class-acf-field-textarea.php:166 -msgid "Controls how new lines are rendered" -msgstr "Controla cómo se muestran los saltos de línea" - -#: includes/fields/class-acf-field-message.php:109 -#: includes/fields/class-acf-field-textarea.php:165 -msgid "New Lines" -msgstr "Nuevas líneas" - -#: includes/fields/class-acf-field-date_picker.php:232 -#: includes/fields/class-acf-field-date_time_picker.php:220 -msgid "Week Starts On" -msgstr "La semana comienza el" - -#: includes/fields/class-acf-field-date_picker.php:201 -msgid "The format used when saving a value" -msgstr "El formato utilizado cuando se guarda un valor" - -#: includes/fields/class-acf-field-date_picker.php:200 -msgid "Save Format" -msgstr "Guardar formato" - -#: includes/fields/class-acf-field-date_picker.php:67 -msgctxt "Date Picker JS weekHeader" -msgid "Wk" -msgstr "Sem" - -#: includes/fields/class-acf-field-date_picker.php:66 -msgctxt "Date Picker JS prevText" -msgid "Prev" -msgstr "Anterior" - -#: includes/fields/class-acf-field-date_picker.php:65 -msgctxt "Date Picker JS nextText" -msgid "Next" -msgstr "Siguiente" - -#: includes/fields/class-acf-field-date_picker.php:64 -msgctxt "Date Picker JS currentText" -msgid "Today" -msgstr "Hoy" - -#: includes/fields/class-acf-field-date_picker.php:63 -msgctxt "Date Picker JS closeText" -msgid "Done" -msgstr "Listo" - -#: includes/fields/class-acf-field-date_picker.php:25 -msgid "Date Picker" -msgstr "Selector de fecha" - -#: includes/fields/class-acf-field-image.php:248 -#: includes/fields/class-acf-field-image.php:284 -#: includes/fields/class-acf-field-oembed.php:268 -msgid "Width" -msgstr "Ancho" - -#: includes/fields/class-acf-field-oembed.php:265 -#: includes/fields/class-acf-field-oembed.php:277 -msgid "Embed Size" -msgstr "Tamaño de incrustación" - -#: includes/fields/class-acf-field-oembed.php:222 -msgid "Enter URL" -msgstr "Introduce la URL" - -#: includes/fields/class-acf-field-oembed.php:25 -msgid "oEmbed" -msgstr "oEmbed" - -#: includes/fields/class-acf-field-true_false.php:184 -msgid "Text shown when inactive" -msgstr "Texto mostrado cuando está inactivo" - -#: includes/fields/class-acf-field-true_false.php:183 -msgid "Off Text" -msgstr "Texto desactivado" - -#: includes/fields/class-acf-field-true_false.php:168 -msgid "Text shown when active" -msgstr "Texto mostrado cuando está activo" - -#: includes/fields/class-acf-field-true_false.php:167 -msgid "On Text" -msgstr "Texto activado" - -#: includes/fields/class-acf-field-select.php:450 -#: includes/fields/class-acf-field-true_false.php:199 -msgid "Stylized UI" -msgstr "" - -#: includes/fields/class-acf-field-button-group.php:157 -#: includes/fields/class-acf-field-checkbox.php:361 -#: includes/fields/class-acf-field-color_picker.php:156 -#: includes/fields/class-acf-field-email.php:117 -#: includes/fields/class-acf-field-number.php:128 -#: includes/fields/class-acf-field-radio.php:202 -#: includes/fields/class-acf-field-range.php:164 -#: includes/fields/class-acf-field-select.php:380 -#: includes/fields/class-acf-field-text.php:103 -#: includes/fields/class-acf-field-textarea.php:103 -#: includes/fields/class-acf-field-true_false.php:147 -#: includes/fields/class-acf-field-url.php:101 -#: includes/fields/class-acf-field-wysiwyg.php:311 -msgid "Default Value" -msgstr "Valor por defecto" - -#: includes/fields/class-acf-field-true_false.php:138 -msgid "Displays text alongside the checkbox" -msgstr "Muestra el texto junto a la casilla de verificación" - -#: includes/fields/class-acf-field-message.php:26 -#: includes/fields/class-acf-field-message.php:99 -#: includes/fields/class-acf-field-true_false.php:137 -msgid "Message" -msgstr "Mensaje" - -#: includes/assets.php:351 includes/fields/class-acf-field-true_false.php:86 -#: includes/fields/class-acf-field-true_false.php:187 -#: assets/build/js/acf.js:1740 assets/build/js/acf.js:1857 -msgid "No" -msgstr "No" - -#: includes/assets.php:350 includes/fields/class-acf-field-true_false.php:83 -#: includes/fields/class-acf-field-true_false.php:171 -#: assets/build/js/acf.js:1739 assets/build/js/acf.js:1856 -msgid "Yes" -msgstr "Sí" - -#: includes/fields/class-acf-field-true_false.php:25 -msgid "True / False" -msgstr "Verdadero / Falso" - -#: includes/fields/class-acf-field-group.php:474 -msgid "Row" -msgstr "Fila" - -#: includes/fields/class-acf-field-group.php:473 -msgid "Table" -msgstr "Tabla" - -#: includes/admin/post-types/admin-field-group.php:140 -#: includes/fields/class-acf-field-group.php:472 -msgid "Block" -msgstr "Bloque" - -#: includes/fields/class-acf-field-group.php:467 -msgid "Specify the style used to render the selected fields" -msgstr "" -"Especifica el estilo utilizado para representar los campos seleccionados" - -#: includes/fields.php:356 includes/fields/class-acf-field-button-group.php:215 -#: includes/fields/class-acf-field-checkbox.php:435 -#: includes/fields/class-acf-field-group.php:466 -#: includes/fields/class-acf-field-radio.php:286 -msgid "Layout" -msgstr "Estructura" - -#: includes/fields/class-acf-field-group.php:450 -msgid "Sub Fields" -msgstr "Subcampos" - -#: includes/fields/class-acf-field-group.php:25 -msgid "Group" -msgstr "Grupo" - -#: includes/fields/class-acf-field-google-map.php:235 -msgid "Customize the map height" -msgstr "Personalizar la altura del mapa" - -#: includes/fields/class-acf-field-google-map.php:234 -#: includes/fields/class-acf-field-image.php:259 -#: includes/fields/class-acf-field-image.php:295 -#: includes/fields/class-acf-field-oembed.php:280 -msgid "Height" -msgstr "Altura" - -#: includes/fields/class-acf-field-google-map.php:223 -msgid "Set the initial zoom level" -msgstr "Establecer el nivel inicial de zoom" - -#: includes/fields/class-acf-field-google-map.php:222 -msgid "Zoom" -msgstr "Zoom" - -#: includes/fields/class-acf-field-google-map.php:196 -#: includes/fields/class-acf-field-google-map.php:209 -msgid "Center the initial map" -msgstr "Centrar inicialmente el mapa" - -#: includes/fields/class-acf-field-google-map.php:195 -#: includes/fields/class-acf-field-google-map.php:208 -msgid "Center" -msgstr "Centro" - -#: includes/fields/class-acf-field-google-map.php:163 -msgid "Search for address..." -msgstr "Buscar dirección..." - -#: includes/fields/class-acf-field-google-map.php:160 -msgid "Find current location" -msgstr "Encontrar ubicación actual" - -#: includes/fields/class-acf-field-google-map.php:159 -msgid "Clear location" -msgstr "Borrar ubicación" - -#: includes/fields/class-acf-field-google-map.php:158 -#: includes/fields/class-acf-field-relationship.php:628 -msgid "Search" -msgstr "Buscar" - -#: includes/fields/class-acf-field-google-map.php:63 -#: assets/build/js/acf-input.js:2840 assets/build/js/acf-input.js:3026 -msgid "Sorry, this browser does not support geolocation" -msgstr "Lo siento, este navegador no es compatible con la geolocalización" - -#: includes/fields/class-acf-field-google-map.php:25 -msgid "Google Map" -msgstr "Mapa de Google" - -#: includes/fields/class-acf-field-date_picker.php:212 -#: includes/fields/class-acf-field-date_time_picker.php:201 -#: includes/fields/class-acf-field-time_picker.php:132 -msgid "The format returned via template functions" -msgstr "El formato devuelto por de las funciones del tema" - -#: includes/fields/class-acf-field-color_picker.php:180 -#: includes/fields/class-acf-field-date_picker.php:211 -#: includes/fields/class-acf-field-date_time_picker.php:200 -#: includes/fields/class-acf-field-image.php:187 -#: includes/fields/class-acf-field-post_object.php:411 -#: includes/fields/class-acf-field-relationship.php:638 -#: includes/fields/class-acf-field-select.php:391 -#: includes/fields/class-acf-field-time_picker.php:131 -#: includes/fields/class-acf-field-user.php:66 -msgid "Return Format" -msgstr "Formato de retorno" - -#: includes/fields/class-acf-field-date_picker.php:190 -#: includes/fields/class-acf-field-date_picker.php:221 -#: includes/fields/class-acf-field-date_time_picker.php:192 -#: includes/fields/class-acf-field-date_time_picker.php:210 -#: includes/fields/class-acf-field-time_picker.php:123 -#: includes/fields/class-acf-field-time_picker.php:139 -msgid "Custom:" -msgstr "Personalizado:" - -#: includes/fields/class-acf-field-date_picker.php:182 -#: includes/fields/class-acf-field-date_time_picker.php:183 -#: includes/fields/class-acf-field-time_picker.php:116 -msgid "The format displayed when editing a post" -msgstr "El formato mostrado cuando se edita una publicación" - -#: includes/fields/class-acf-field-date_picker.php:181 -#: includes/fields/class-acf-field-date_time_picker.php:182 -#: includes/fields/class-acf-field-time_picker.php:115 -msgid "Display Format" -msgstr "Formato de visualización" - -#: includes/fields/class-acf-field-time_picker.php:25 -msgid "Time Picker" -msgstr "Selector de hora" - -#. translators: counts for inactive field groups -#: acf.php:503 -msgid "Inactive (%s)" -msgid_plural "Inactive (%s)" -msgstr[0] "" -msgstr[1] "" - -#: acf.php:462 -msgid "No Fields found in Trash" -msgstr "No se han encontrado campos en la papelera" - -#: acf.php:461 -msgid "No Fields found" -msgstr "No se han encontrado campos" - -#: acf.php:460 -msgid "Search Fields" -msgstr "Buscar campos" - -#: acf.php:459 -msgid "View Field" -msgstr "Ver campo" - -#: acf.php:458 includes/admin/views/acf-field-group/fields.php:115 -msgid "New Field" -msgstr "Nuevo campo" - -#: acf.php:457 -msgid "Edit Field" -msgstr "Editar campo" - -#: acf.php:456 -msgid "Add New Field" -msgstr "Añadir nuevo campo" - -#: acf.php:454 -msgid "Field" -msgstr "Campo" - -#: acf.php:453 includes/admin/post-types/admin-field-group.php:163 -#: includes/admin/post-types/admin-field-groups.php:119 -#: includes/admin/views/acf-field-group/fields.php:32 -msgid "Fields" -msgstr "Campos" - -#: acf.php:428 -msgid "No Field Groups found in Trash" -msgstr "No se han encontrado grupos de campos en la papelera" - -#: acf.php:427 -msgid "No Field Groups found" -msgstr "No se han encontrado grupos de campos" - -#: acf.php:426 -msgid "Search Field Groups" -msgstr "Buscar grupo de campos" - -#: acf.php:425 -msgid "View Field Group" -msgstr "Ver grupo de campos" - -#: acf.php:424 -msgid "New Field Group" -msgstr "Nuevo grupo de campos" - -#: acf.php:423 -msgid "Edit Field Group" -msgstr "Editar grupo de campos" - -#: acf.php:422 -msgid "Add New Field Group" -msgstr "Añadir nuevo grupo de campos" - -#: acf.php:421 acf.php:455 -#: includes/admin/views/acf-post-type/advanced-settings.php:219 -#: includes/admin/views/acf-post-type/advanced-settings.php:221 -#: includes/post-types/class-acf-post-type.php:93 -#: includes/post-types/class-acf-taxonomy.php:92 -msgid "Add New" -msgstr "Añadir nuevo" - -#: acf.php:420 -msgid "Field Group" -msgstr "Grupo de campos" - -#: acf.php:419 includes/admin/post-types/admin-field-groups.php:78 -#: includes/admin/post-types/admin-post-types.php:138 -#: includes/admin/post-types/admin-taxonomies.php:138 -msgid "Field Groups" -msgstr "Grupos de campos" - -#. Description of the plugin -msgid "Customize WordPress with powerful, professional and intuitive fields." -msgstr "Personaliza WordPress con campos potentes, profesionales e intuitivos." - -#. Plugin URI of the plugin -msgid "https://www.advancedcustomfields.com" -msgstr "https://www.advancedcustomfields.com" - -#. Plugin Name of the plugin -#: acf.php:94 -msgid "Advanced Custom Fields" -msgstr "Advanced Custom Fields" diff --git a/lang/acf-es_EC.mo b/lang/acf-es_EC.mo deleted file mode 100644 index f0779ef..0000000 Binary files a/lang/acf-es_EC.mo and /dev/null differ diff --git a/lang/acf-es_EC.po b/lang/acf-es_EC.po deleted file mode 100644 index bbec975..0000000 --- a/lang/acf-es_EC.po +++ /dev/null @@ -1,5604 +0,0 @@ -# Advanced Custom Fields Translations are a combination of translate.wordpress.org contributions, -# combined with user contributed strings for the PRO version. -# Translations from translate.wordpress.org take priority over translations in this file. -# translate.wordpress.org contributions are synced at the time of each release. -# -# If you would like to contribute translations, please visit -# https://translate.wordpress.org/projects/wp-plugins/advanced-custom-fields/stable/ -# -# For additional ACF PRO strings, please submit a pull request over on the ACF GitHub repo at -# http://github.com/advancedcustomfields/acf using the .pot (and any existing .po) files in /lang/pro/ -# -# This file is distributed under the same license as Advanced Custom Fields. -msgid "" -msgstr "" -"PO-Revision-Date: 2023-11-28T09:14:32+00:00\n" -"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n" -"Language: es_EC\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: gettext\n" -"Project-Id-Version: Advanced Custom Fields\n" - -#: includes/admin/views/global/navigation.php:221 -msgid "Renew ACF PRO License" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:17 -msgid "Renew License" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:14 -msgid "Manage License" -msgstr "" - -#: includes/admin/views/acf-field-group/options.php:102 -msgid "'High' position not supported in the Block Editor" -msgstr "" - -#: includes/admin/views/options-page-preview.php:30 -msgid "Upgrade to ACF PRO" -msgstr "" - -#. translators: %s URL to ACF options pages documentation -#: includes/admin/views/options-page-preview.php:7 -msgid "" -"ACF options pages are custom admin " -"pages for managing global settings via fields. You can create multiple pages " -"and sub-pages." -msgstr "" - -#: includes/admin/views/global/header.php:35 -msgid "Add Options Page" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:703 -msgid "In the editor used as the placeholder of the title." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:702 -msgid "Title Placeholder" -msgstr "" - -#: includes/admin/views/global/navigation.php:97 -msgid "4 Months Free" -msgstr "" - -#. translators: %s - A singular label for a post type or taxonomy. -#: includes/admin/views/global/form-top.php:56 -msgid " (Duplicated from %s)" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:298 -msgid "Select Options Pages" -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:107 -msgid "Duplicate taxonomy" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:106 -#: includes/admin/post-types/admin-taxonomy.php:106 -msgid "Create taxonomy" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:105 -msgid "Duplicate post type" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:104 -#: includes/admin/post-types/admin-taxonomy.php:108 -msgid "Create post type" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:103 -#: includes/admin/post-types/admin-taxonomy.php:105 -msgid "Link field groups" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:102 -#: includes/admin/post-types/admin-taxonomy.php:104 -msgid "Add fields" -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:121 -#: assets/build/js/acf-field-group.js:2753 -#: assets/build/js/acf-field-group.js:3236 -msgid "This Field" -msgstr "" - -#: includes/admin/admin.php:267 -msgid "ACF PRO" -msgstr "" - -#: includes/admin/admin.php:265 -msgid "Feedback" -msgstr "" - -#: includes/admin/admin.php:263 -msgid "Support" -msgstr "" - -#. translators: This text is prepended by a link to ACF's website, and appended -#. by a link to WP Engine's website. -#: includes/admin/admin.php:238 -msgid "is developed and maintained by" -msgstr "" - -#. translators: %s - either "post type" or "taxonomy" -#: includes/admin/admin-internal-post-type.php:321 -msgid "Add this %s to the location rules of the selected field groups." -msgstr "" - -#. translators: %s the URL to ACF's bidirectional relationship documentation -#: includes/acf-bidirectional-functions.php:271 -msgid "" -"Enabling the bidirectional setting allows you to update a value in the " -"target fields for each value selected for this field, adding or removing the " -"Post ID, Taxonomy ID or User ID of the item being updated. For more " -"information, please read the documentation." -msgstr "" - -#: includes/acf-bidirectional-functions.php:247 -msgid "" -"Select field(s) to store the reference back to the item being updated. You " -"may select this field. Target fields must be compatible with where this " -"field is being displayed. For example, if this field is displayed on a " -"Taxonomy, your target field should be of type Taxonomy" -msgstr "" - -#: includes/acf-bidirectional-functions.php:246 -msgid "Target Field" -msgstr "" - -#: includes/acf-bidirectional-functions.php:220 -msgid "Update a field on the selected values, referencing back to this ID" -msgstr "" - -#: includes/acf-bidirectional-functions.php:219 -msgid "Bidirectional" -msgstr "" - -#. translators: %s A field type name, such as "Relationship" -#: includes/acf-bidirectional-functions.php:192 -msgid "%s Field" -msgstr "" - -#: includes/fields/class-acf-field-page_link.php:517 -#: includes/fields/class-acf-field-post_object.php:426 -#: includes/fields/class-acf-field-select.php:407 -#: includes/fields/class-acf-field-user.php:82 -msgid "Select Multiple" -msgstr "" - -#: includes/admin/views/global/navigation.php:233 -msgid "WP Engine logo" -msgstr "" - -#: includes/admin/views/acf-taxonomy/basic-settings.php:58 -msgid "Lower case letters, underscores and dashes only, Max 32 characters." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1136 -msgid "The capability name for assigning terms of this taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1135 -msgid "Assign Terms Capability" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1119 -msgid "The capability name for deleting terms of this taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1118 -msgid "Delete Terms Capability" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1102 -msgid "The capability name for editing terms of this taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1101 -msgid "Edit Terms Capability" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1085 -msgid "The capability name for managing terms of this taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1084 -msgid "Manage Terms Capability" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:886 -msgid "" -"Sets whether posts should be excluded from search results and taxonomy " -"archive pages." -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:74 -msgid "More Tools from WP Engine" -msgstr "" - -#. translators: %s - WP Engine logo -#: includes/admin/views/acf-field-group/pro-features.php:69 -msgid "Built for those that build with WordPress, by the team at %s" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:6 -msgid "View Pricing & Upgrade" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:3 -#: includes/admin/views/options-page-preview.php:29 -msgid "Learn More" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:28 -msgid "" -"Speed up your workflow and develop better websites with features like ACF " -"Blocks and Options Pages, and sophisticated field types like Repeater, " -"Flexible Content, Clone, and Gallery." -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:2 -msgid "Unlock Advanced Features and Build Even More with ACF PRO" -msgstr "" - -#. translators: %s - singular label of post type/taxonomy, i.e. "Movie"/"Genre" -#: includes/admin/views/global/form-top.php:19 -msgid "%s fields" -msgstr "" - -#: includes/admin/post-types/admin-taxonomies.php:293 -msgid "No terms" -msgstr "" - -#: includes/admin/post-types/admin-taxonomies.php:266 -msgid "No post types" -msgstr "" - -#: includes/admin/post-types/admin-post-types.php:289 -msgid "No posts" -msgstr "" - -#: includes/admin/post-types/admin-post-types.php:263 -msgid "No taxonomies" -msgstr "" - -#: includes/admin/post-types/admin-post-types.php:208 -#: includes/admin/post-types/admin-taxonomies.php:208 -msgid "No field groups" -msgstr "" - -#: includes/admin/post-types/admin-field-groups.php:281 -msgid "No fields" -msgstr "" - -#: includes/admin/post-types/admin-field-groups.php:154 -#: includes/admin/post-types/admin-post-types.php:172 -#: includes/admin/post-types/admin-taxonomies.php:172 -msgid "No description" -msgstr "" - -#: includes/fields/class-acf-field-page_link.php:484 -#: includes/fields/class-acf-field-post_object.php:389 -#: includes/fields/class-acf-field-relationship.php:601 -msgid "Any post status" -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:284 -msgid "" -"This taxonomy key is already in use by another taxonomy registered outside " -"of ACF and cannot be used." -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:279 -msgid "" -"This taxonomy key is already in use by another taxonomy in ACF and cannot be " -"used." -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:252 -msgid "" -"The taxonomy key must only contain lower case alphanumeric characters, " -"underscores or dashes." -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:247 -msgid "The taxonomy key must be under 32 characters." -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:99 -msgid "No Taxonomies found in Trash" -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:98 -msgid "No Taxonomies found" -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:97 -msgid "Search Taxonomies" -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:96 -msgid "View Taxonomy" -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:95 -msgid "New Taxonomy" -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:94 -msgid "Edit Taxonomy" -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:93 -msgid "Add New Taxonomy" -msgstr "" - -#: includes/post-types/class-acf-post-type.php:100 -msgid "No Post Types found in Trash" -msgstr "" - -#: includes/post-types/class-acf-post-type.php:99 -msgid "No Post Types found" -msgstr "" - -#: includes/post-types/class-acf-post-type.php:98 -msgid "Search Post Types" -msgstr "" - -#: includes/post-types/class-acf-post-type.php:97 -msgid "View Post Type" -msgstr "" - -#: includes/post-types/class-acf-post-type.php:96 -msgid "New Post Type" -msgstr "" - -#: includes/post-types/class-acf-post-type.php:95 -msgid "Edit Post Type" -msgstr "" - -#: includes/post-types/class-acf-post-type.php:94 -msgid "Add New Post Type" -msgstr "" - -#: includes/post-types/class-acf-post-type.php:361 -msgid "" -"This post type key is already in use by another post type registered outside " -"of ACF and cannot be used." -msgstr "" - -#: includes/post-types/class-acf-post-type.php:356 -msgid "" -"This post type key is already in use by another post type in ACF and cannot " -"be used." -msgstr "" - -#. translators: %s a link to WordPress.org's Reserved Terms page -#: includes/post-types/class-acf-post-type.php:335 -#: includes/post-types/class-acf-taxonomy.php:258 -msgid "" -"This field must not be a WordPress reserved " -"term." -msgstr "" - -#: includes/post-types/class-acf-post-type.php:329 -msgid "" -"The post type key must only contain lower case alphanumeric characters, " -"underscores or dashes." -msgstr "" - -#: includes/post-types/class-acf-post-type.php:324 -msgid "The post type key must be under 20 characters." -msgstr "" - -#: includes/fields/class-acf-field-wysiwyg.php:27 -msgid "We do not recommend using this field in ACF Blocks." -msgstr "" - -#: includes/fields/class-acf-field-wysiwyg.php:27 -msgid "" -"Displays the WordPress WYSIWYG editor as seen in Posts and Pages allowing " -"for a rich text-editing experience that also allows for multimedia content." -msgstr "" - -#: includes/fields/class-acf-field-wysiwyg.php:25 -msgid "WYSIWYG Editor" -msgstr "" - -#: includes/fields/class-acf-field-user.php:17 -msgid "" -"Allows the selection of one or more users which can be used to create " -"relationships between data objects." -msgstr "" - -#: includes/fields/class-acf-field-url.php:26 -msgid "A text input specifically designed for storing web addresses." -msgstr "" - -#: includes/fields/class-acf-field-url.php:25 -msgid "URL" -msgstr "" - -#: includes/fields/class-acf-field-true_false.php:27 -msgid "" -"A toggle that allows you to pick a value of 1 or 0 (on or off, true or " -"false, etc). Can be presented as a stylized switch or checkbox." -msgstr "" - -#: includes/fields/class-acf-field-time_picker.php:27 -msgid "" -"An interactive UI for picking a time. The time format can be customized " -"using the field settings." -msgstr "" - -#: includes/fields/class-acf-field-textarea.php:26 -msgid "A basic textarea input for storing paragraphs of text." -msgstr "" - -#: includes/fields/class-acf-field-text.php:26 -msgid "A basic text input, useful for storing single string values." -msgstr "" - -#: includes/fields/class-acf-field-taxonomy.php:22 -msgid "" -"Allows the selection of one or more taxonomy terms based on the criteria and " -"options specified in the fields settings." -msgstr "" - -#: includes/fields/class-acf-field-tab.php:28 -msgid "" -"Allows you to group fields into tabbed sections in the edit screen. Useful " -"for keeping fields organized and structured." -msgstr "" - -#: includes/fields/class-acf-field-select.php:27 -msgid "A dropdown list with a selection of choices that you specify." -msgstr "" - -#: includes/fields/class-acf-field-relationship.php:19 -msgid "" -"A dual-column interface to select one or more posts, pages, or custom post " -"type items to create a relationship with the item that you're currently " -"editing. Includes options to search and filter." -msgstr "" - -#: includes/fields/class-acf-field-range.php:26 -msgid "" -"An input for selecting a numerical value within a specified range using a " -"range slider element." -msgstr "" - -#: includes/fields/class-acf-field-radio.php:27 -msgid "" -"A group of radio button inputs that allows the user to make a single " -"selection from values that you specify." -msgstr "" - -#: includes/fields/class-acf-field-post_object.php:19 -msgid "" -"An interactive and customizable UI for picking one or many posts, pages or " -"post type items with the option to search. " -msgstr "" - -#: includes/fields/class-acf-field-password.php:26 -msgid "An input for providing a password using a masked field." -msgstr "" - -#: includes/fields/class-acf-field-page_link.php:476 -#: includes/fields/class-acf-field-post_object.php:381 -#: includes/fields/class-acf-field-relationship.php:593 -msgid "Filter by Post Status" -msgstr "" - -#: includes/fields/class-acf-field-page_link.php:27 -msgid "" -"An interactive dropdown to select one or more posts, pages, custom post type " -"items or archive URLs, with the option to search." -msgstr "" - -#: includes/fields/class-acf-field-oembed.php:27 -msgid "" -"An interactive component for embedding videos, images, tweets, audio and " -"other content by making use of the native WordPress oEmbed functionality." -msgstr "" - -#: includes/fields/class-acf-field-number.php:26 -msgid "An input limited to numerical values." -msgstr "" - -#: includes/fields/class-acf-field-message.php:28 -msgid "" -"Used to display a message to editors alongside other fields. Useful for " -"providing additional context or instructions around your fields." -msgstr "" - -#: includes/fields/class-acf-field-link.php:27 -msgid "" -"Allows you to specify a link and its properties such as title and target " -"using the WordPress native link picker." -msgstr "" - -#: includes/fields/class-acf-field-image.php:27 -msgid "Uses the native WordPress media picker to upload, or choose images." -msgstr "" - -#: includes/fields/class-acf-field-group.php:27 -msgid "" -"Provides a way to structure fields into groups to better organize the data " -"and the edit screen." -msgstr "" - -#: includes/fields/class-acf-field-google-map.php:27 -msgid "" -"An interactive UI for selecting a location using Google Maps. Requires a " -"Google Maps API key and additional configuration to display correctly." -msgstr "" - -#: includes/fields/class-acf-field-file.php:27 -msgid "Uses the native WordPress media picker to upload, or choose files." -msgstr "" - -#: includes/fields/class-acf-field-email.php:26 -msgid "A text input specifically designed for storing email addresses." -msgstr "" - -#: includes/fields/class-acf-field-date_time_picker.php:27 -msgid "" -"An interactive UI for picking a date and time. The date return format can be " -"customized using the field settings." -msgstr "" - -#: includes/fields/class-acf-field-date_picker.php:27 -msgid "" -"An interactive UI for picking a date. The date return format can be " -"customized using the field settings." -msgstr "" - -#: includes/fields/class-acf-field-color_picker.php:27 -msgid "An interactive UI for selecting a color, or specifying a Hex value." -msgstr "" - -#: includes/fields/class-acf-field-checkbox.php:27 -msgid "" -"A group of checkbox inputs that allow the user to select one, or multiple " -"values that you specify." -msgstr "" - -#: includes/fields/class-acf-field-button-group.php:26 -msgid "" -"A group of buttons with values that you specify, users can choose one option " -"from the values provided." -msgstr "" - -#: includes/fields/class-acf-field-accordion.php:27 -msgid "" -"Allows you to group and organize custom fields into collapsable panels that " -"are shown while editing content. Useful for keeping large datasets tidy." -msgstr "" - -#: includes/fields.php:475 -msgid "" -"This provides a solution for repeating content such as slides, team members, " -"and call-to-action tiles, by acting as a parent to a set of subfields which " -"can be repeated again and again." -msgstr "" - -#: includes/fields.php:465 -msgid "" -"This provides an interactive interface for managing a collection of " -"attachments. Most settings are similar to the Image field type. Additional " -"settings allow you to specify where new attachments are added in the gallery " -"and the minimum/maximum number of attachments allowed." -msgstr "" - -#: includes/fields.php:455 -msgid "" -"This provides a simple, structured, layout-based editor. The Flexible " -"Content field allows you to define, create and manage content with total " -"control by using layouts and subfields to design the available blocks." -msgstr "" - -#: includes/fields.php:445 -msgid "" -"This allows you to select and display existing fields. It does not duplicate " -"any fields in the database, but loads and displays the selected fields at " -"run-time. The Clone field can either replace itself with the selected fields " -"or display the selected fields as a group of subfields." -msgstr "" - -#: includes/fields.php:442 -msgctxt "noun" -msgid "Clone" -msgstr "" - -#: includes/admin/views/global/navigation.php:86 includes/fields.php:357 -msgid "PRO" -msgstr "" - -#: includes/fields.php:355 includes/fields.php:412 -msgid "Advanced" -msgstr "" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:85 -msgid "JSON (newer)" -msgstr "" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:81 -msgid "Original" -msgstr "" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:55 -msgid "Invalid post ID." -msgstr "" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:47 -msgid "Invalid post type selected for review." -msgstr "" - -#: includes/admin/views/global/navigation.php:186 -msgid "More" -msgstr "" - -#: includes/admin/views/browse-fields-modal.php:86 -msgid "Tutorial" -msgstr "" - -#: includes/admin/views/browse-fields-modal.php:75 -msgid "Available with ACF PRO" -msgstr "" - -#: includes/admin/views/browse-fields-modal.php:63 -msgid "Select Field" -msgstr "" - -#. translators: %s: A link to the popular fields used in ACF -#: includes/admin/views/browse-fields-modal.php:50 -msgid "Try a different search term or browse %s" -msgstr "" - -#: includes/admin/views/browse-fields-modal.php:47 -msgid "Popular fields" -msgstr "" - -#. translators: %s: The invalid search term -#: includes/admin/views/browse-fields-modal.php:40 -msgid "No search results for '%s'" -msgstr "" - -#: includes/admin/views/browse-fields-modal.php:13 -msgid "Search fields..." -msgstr "" - -#: includes/admin/views/browse-fields-modal.php:11 -msgid "Select Field Type" -msgstr "" - -#: includes/admin/views/browse-fields-modal.php:4 -msgid "Popular" -msgstr "" - -#: includes/admin/views/acf-taxonomy/list-empty.php:7 -msgid "Add Taxonomy" -msgstr "" - -#: includes/admin/views/acf-taxonomy/list-empty.php:6 -msgid "Create custom taxonomies to classify post type content" -msgstr "" - -#: includes/admin/views/acf-taxonomy/list-empty.php:5 -msgid "Add Your First Taxonomy" -msgstr "" - -#: includes/admin/views/acf-taxonomy/basic-settings.php:122 -msgid "Hierarchical taxonomies can have descendants (like categories)." -msgstr "" - -#: includes/admin/views/acf-taxonomy/basic-settings.php:107 -msgid "Makes a taxonomy visible on the frontend and in the admin dashboard." -msgstr "" - -#: includes/admin/views/acf-taxonomy/basic-settings.php:91 -msgid "One or many post types that can be classified with this taxonomy." -msgstr "" - -#. translators: example taxonomy -#: includes/admin/views/acf-taxonomy/basic-settings.php:60 -msgid "genre" -msgstr "" - -#. translators: example taxonomy -#: includes/admin/views/acf-taxonomy/basic-settings.php:42 -msgid "Genre" -msgstr "" - -#. translators: example taxonomy -#: includes/admin/views/acf-taxonomy/basic-settings.php:25 -msgid "Genres" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1211 -msgid "" -"Optional custom controller to use instead of `WP_REST_Terms_Controller `." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1155 -msgid "Expose this post type in the REST API." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1055 -msgid "Customize the query variable name" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1028 -msgid "" -"Terms can be accessed using the non-pretty permalink, e.g., {query_var}" -"={term_slug}." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:981 -msgid "Parent-child terms in URLs for hierarchical taxonomies." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:941 -msgid "Customize the slug used in the URL" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:924 -msgid "Permalinks for this taxonomy are disabled." -msgstr "" - -#. translators: this string will be appended with the new permalink structure. -#: includes/admin/views/acf-taxonomy/advanced-settings.php:921 -msgid "" -"Rewrite the URL using the taxonomy key as the slug. Your permalink structure " -"will be" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:913 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1030 -#: includes/admin/views/acf-taxonomy/basic-settings.php:57 -msgid "Taxonomy Key" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:911 -msgid "Select the type of permalink to use for this taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:896 -msgid "Display a column for the taxonomy on post type listing screens." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:895 -msgid "Show Admin Column" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:882 -msgid "Show the taxonomy in the quick/bulk edit panel." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:881 -msgid "Quick Edit" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:868 -msgid "List the taxonomy in the Tag Cloud Widget controls." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:867 -msgid "Tag Cloud" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:824 -msgid "" -"A PHP function name to be called for sanitizing taxonomy data saved from a " -"meta box." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:823 -msgid "Meta Box Sanitization Callback" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:805 -msgid "" -"A PHP function name to be called to handle the content of a meta box on your " -"taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:804 -msgid "Register Meta Box Callback" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:763 -msgid "No Meta Box" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:762 -msgid "Custom Meta Box" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:758 -msgid "" -"Controls the meta box on the content editor screen. By default, the " -"Categories meta box is shown for hierarchical taxonomies, and the Tags meta " -"box is shown for non-hierarchical taxonomies." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:757 -msgid "Meta Box" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:746 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:767 -msgid "Categories Meta Box" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:745 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:766 -msgid "Tags Meta Box" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:704 -msgid "A link to a tag" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:703 -msgid "Describes a navigation link block variation used in the block editor." -msgstr "" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:698 -msgid "A link to a %s" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:683 -msgid "Tag Link" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:682 -msgid "" -"Assigns a title for navigation link block variation used in the block editor." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:663 -msgid "← Go to tags" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:662 -msgid "" -"Assigns the text used to link back to the main index after updating a term." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:661 -msgid "Back To Items" -msgstr "" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:657 -msgid "← Go to %s" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:642 -msgid "Tags list" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:641 -msgid "Assigns text to the table hidden heading." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:622 -msgid "Tags list navigation" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:621 -msgid "Assigns text to the table pagination hidden heading." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:597 -msgid "Filter by category" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:596 -msgid "Assigns text to the filter button in the posts lists table." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:595 -msgid "Filter By Item" -msgstr "" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:591 -msgid "Filter by %s" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:575 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:576 -msgid "" -"The description is not prominent by default; however, some themes may show " -"it." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:574 -msgid "Describes the Description field on the Edit Tags screen." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:573 -msgid "Description Field Description" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:554 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:555 -msgid "" -"Assign a parent term to create a hierarchy. The term Jazz, for example, " -"would be the parent of Bebop and Big Band" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:553 -msgid "Describes the Parent field on the Edit Tags screen." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:552 -msgid "Parent Field Description" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:538 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:539 -msgid "" -"The \"slug\" is the URL-friendly version of the name. It is usually all " -"lower case and contains only letters, numbers, and hyphens." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:537 -msgid "Describes the Slug field on the Edit Tags screen." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:536 -msgid "Slug Field Description" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:522 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:523 -msgid "The name is how it appears on your site" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:521 -msgid "Describes the Name field on the Edit Tags screen." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:520 -msgid "Name Field Description" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:507 -msgid "No tags" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:506 -msgid "" -"Assigns the text displayed in the posts and media list tables when no tags " -"or categories are available." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:505 -msgid "No Terms" -msgstr "" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:501 -msgid "No %s" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:486 -msgid "No tags found" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:485 -msgid "" -"Assigns the text displayed when clicking the 'choose from most used' text in " -"the taxonomy meta box when no tags are available, and assigns the text used " -"in the terms list table when there are no items for a taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:484 -msgid "Not Found" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:463 -msgid "Assigns text to the Title field of the Most Used tab." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:462 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:464 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:465 -msgid "Most Used" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:444 -msgid "Choose from the most used tags" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:443 -msgid "" -"Assigns the 'choose from most used' text used in the meta box when " -"JavaScript is disabled. Only used on non-hierarchical taxonomies." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:442 -msgid "Choose From Most Used" -msgstr "" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:438 -msgid "Choose from the most used %s" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:418 -msgid "Add or remove tags" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:417 -msgid "" -"Assigns the add or remove items text used in the meta box when JavaScript is " -"disabled. Only used on non-hierarchical taxonomies" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:416 -msgid "Add Or Remove Items" -msgstr "" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:412 -msgid "Add or remove %s" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:392 -msgid "Separate tags with commas" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:391 -msgid "" -"Assigns the separate item with commas text used in the taxonomy meta box. " -"Only used on non-hierarchical taxonomies." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:390 -msgid "Separate Items With Commas" -msgstr "" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:386 -msgid "Separate %s with commas" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:366 -msgid "Popular Tags" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:365 -msgid "Assigns popular items text. Only used for non-hierarchical taxonomies." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:364 -msgid "Popular Items" -msgstr "" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:361 -msgid "Popular %s" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:347 -msgid "Search Tags" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:346 -msgid "Assigns search items text." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:323 -msgid "Parent Category:" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:322 -msgid "Assigns parent item text, but with a colon (:) added to the end." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:321 -msgid "Parent Item With Colon" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:298 -msgid "Parent Category" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:297 -msgid "Assigns parent item text. Only used on hierarchical taxonomies." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:296 -msgid "Parent Item" -msgstr "" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:293 -msgid "Parent %s" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:278 -msgid "New Tag Name" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:277 -msgid "Assigns the new item name text." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:276 -msgid "New Item Name" -msgstr "" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:273 -msgid "New %s Name" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:258 -msgid "Add New Tag" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:257 -msgid "Assigns the add new item text." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:238 -msgid "Update Tag" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:237 -msgid "Assigns the update item text." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:236 -msgid "Update Item" -msgstr "" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:233 -msgid "Update %s" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:218 -msgid "View Tag" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:217 -msgid "In the admin bar to view term during editing." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:198 -msgid "Edit Tag" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:197 -msgid "At the top of the editor screen when editing a term." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:178 -msgid "All Tags" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:177 -msgid "Assigns the all items text." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:158 -msgid "Assigns the menu name text." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:157 -msgid "Menu Label" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:131 -msgid "Active taxonomies are enabled and registered with WordPress." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:115 -msgid "A descriptive summary of the taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:95 -msgid "A descriptive summary of the term." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:94 -msgid "Term Description" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:76 -msgid "Single word, no spaces. Underscores and dashes allowed." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:75 -msgid "Term Slug" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:56 -msgid "The name of the default term." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:55 -msgid "Term Name" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:41 -msgid "" -"Create a term for the taxonomy that cannot be deleted. It will not be " -"selected for posts by default." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:40 -msgid "Default Term" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:28 -msgid "" -"Whether terms in this taxonomy should be sorted in the order they are " -"provided to `wp_set_object_terms()`." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:27 -msgid "Sort Terms" -msgstr "" - -#: includes/admin/views/acf-post-type/list-empty.php:7 -msgid "Add Post Type" -msgstr "" - -#: includes/admin/views/acf-post-type/list-empty.php:6 -msgid "" -"Expand the functionality of WordPress beyond standard posts and pages with " -"custom post types." -msgstr "" - -#: includes/admin/views/acf-post-type/list-empty.php:5 -msgid "Add Your First Post Type" -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:136 -#: includes/admin/views/acf-taxonomy/basic-settings.php:135 -msgid "I know what I'm doing, show me all the options." -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:135 -#: includes/admin/views/acf-taxonomy/basic-settings.php:134 -msgid "Advanced Configuration" -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:123 -msgid "Hierarchical post types can have descendants (like pages)." -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:122 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:980 -#: includes/admin/views/acf-taxonomy/basic-settings.php:121 -msgid "Hierarchical" -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:107 -msgid "Visible on the frontend and in the admin dashboard." -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:106 -#: includes/admin/views/acf-taxonomy/basic-settings.php:106 -msgid "Public" -msgstr "" - -#. translators: example post type -#: includes/admin/views/acf-post-type/basic-settings.php:59 -msgid "movie" -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:57 -msgid "Lower case letters, underscores and dashes only, Max 20 characters." -msgstr "" - -#. translators: example post type -#: includes/admin/views/acf-post-type/basic-settings.php:41 -msgid "Movie" -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:39 -#: includes/admin/views/acf-taxonomy/basic-settings.php:40 -msgid "Singular Label" -msgstr "" - -#. translators: example post type -#: includes/admin/views/acf-post-type/basic-settings.php:24 -msgid "Movies" -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:22 -#: includes/admin/views/acf-taxonomy/basic-settings.php:23 -msgid "Plural Label" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1270 -msgid "" -"Optional custom controller to use instead of `WP_REST_Posts_Controller`." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1269 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1210 -msgid "Controller Class" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1251 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1191 -msgid "The namespace part of the REST API URL." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1250 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1190 -msgid "Namespace Route" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1232 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1172 -msgid "The base URL for the post type REST API URLs." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1231 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1171 -msgid "Base URL" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1217 -msgid "" -"Exposes this post type in the REST API. Required to use the block editor." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1216 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1154 -msgid "Show In REST API" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1195 -msgid "Customize the query variable name." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1194 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1054 -msgid "Query Variable" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1172 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1032 -msgid "No Query Variable Support" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1171 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1031 -msgid "Custom Query Variable" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1168 -msgid "" -"Items can be accessed using the non-pretty permalink, eg. {post_type}" -"={post_slug}." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1167 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1027 -msgid "Query Variable Support" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1142 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1003 -msgid "URLs for an item and items can be accessed with a query string." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1141 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1002 -msgid "Publicly Queryable" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1120 -msgid "Custom slug for the Archive URL." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1119 -msgid "Archive Slug" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1106 -msgid "" -"Has an item archive that can be customized with an archive template file in " -"your theme." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1105 -msgid "Archive" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1085 -msgid "Pagination support for the items URLs such as the archives." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1084 -msgid "Pagination" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1067 -msgid "RSS feed URL for the post type items." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1066 -msgid "Feed URL" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1048 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:961 -msgid "" -"Alters the permalink structure to add the `WP_Rewrite::$front` prefix to " -"URLs." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1047 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:960 -msgid "Front URL Prefix" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1028 -msgid "Customize the slug used in the URL." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1027 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:940 -msgid "URL Slug" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1011 -msgid "Permalinks for this post type are disabled." -msgstr "" - -#. translators: this string will be appended with the new permalink structure. -#: includes/admin/views/acf-post-type/advanced-settings.php:1010 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:923 -msgid "" -"Rewrite the URL using a custom slug defined in the input below. Your " -"permalink structure will be" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1002 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:915 -msgid "No Permalink (prevent URL rewriting)" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1001 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:914 -msgid "Custom Permalink" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1000 -#: includes/admin/views/acf-post-type/advanced-settings.php:1170 -#: includes/admin/views/acf-post-type/basic-settings.php:56 -msgid "Post Type Key" -msgstr "" - -#. translators: this string will be appended with the new permalink structure. -#: includes/admin/views/acf-post-type/advanced-settings.php:998 -#: includes/admin/views/acf-post-type/advanced-settings.php:1008 -msgid "" -"Rewrite the URL using the post type key as the slug. Your permalink " -"structure will be" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:996 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:910 -msgid "Permalink Rewrite" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:982 -msgid "Delete items by a user when that user is deleted." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:981 -msgid "Delete With User" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:967 -msgid "Allow the post type to be exported from 'Tools' > 'Export'." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:966 -msgid "Can Export" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:935 -msgid "Optionally provide a plural to be used in capabilities." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:934 -msgid "Plural Capability Name" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:916 -msgid "Choose another post type to base the capabilities for this post type." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:915 -msgid "Singular Capability Name" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:901 -msgid "" -"By default the capabilities of the post type will inherit the 'Post' " -"capability names, eg. edit_post, delete_posts. Enable to use post type " -"specific capabilities, eg. edit_{singular}, delete_{plural}." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:900 -msgid "Rename Capabilities" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:885 -msgid "Exclude From Search" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:872 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:854 -msgid "" -"Allow items to be added to menus in the 'Appearance' > 'Menus' screen. Must " -"be turned on in 'Screen options'." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:871 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:853 -msgid "Appearance Menus Support" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:853 -msgid "Appears as an item in the 'New' menu in the admin bar." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:852 -msgid "Show In Admin Bar" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:821 -msgid "" -"A PHP function name to be called when setting up the meta boxes for the edit " -"screen." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:820 -msgid "Custom Meta Box Callback" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:800 -msgid "Menu Icon" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:782 -msgid "The position in the sidebar menu in the admin dashboard." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:781 -msgid "Menu Position" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:763 -msgid "" -"By default the post type will get a new top level item in the admin menu. If " -"an existing top level item is supplied here, the post type will be added as " -"a submenu item under it." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:762 -msgid "Admin Menu Parent" -msgstr "" - -#. translators: %s = "dashicon class name", link to the WordPress dashicon -#. documentation. -#: includes/admin/views/acf-post-type/advanced-settings.php:750 -msgid "" -"The icon used for the post type menu item in the admin dashboard. Can be a " -"URL or %s to use for the icon." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:745 -msgid "Dashicon class name" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:734 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:734 -msgid "Admin editor navigation in the sidebar menu." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:733 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:733 -msgid "Show In Admin Menu" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:720 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:719 -msgid "Items can be edited and managed in the admin dashboard." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:719 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:718 -msgid "Show In UI" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:689 -msgid "A link to a post." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:688 -msgid "Description for a navigation link block variation." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:687 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:702 -msgid "Item Link Description" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:683 -msgid "A link to a %s." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:668 -msgid "Post Link" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:667 -msgid "Title for a navigation link block variation." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:666 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:681 -msgid "Item Link" -msgstr "" - -#. translators: %s Singular form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:663 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:678 -msgid "%s Link" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:648 -msgid "Post updated." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:647 -msgid "In the editor notice after an item is updated." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:646 -msgid "Item Updated" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:643 -msgid "%s updated." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:628 -msgid "Post scheduled." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:627 -msgid "In the editor notice after scheduling an item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:626 -msgid "Item Scheduled" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:623 -msgid "%s scheduled." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:608 -msgid "Post reverted to draft." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:607 -msgid "In the editor notice after reverting an item to draft." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:606 -msgid "Item Reverted To Draft" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:603 -msgid "%s reverted to draft." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:588 -msgid "Post published privately." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:587 -msgid "In the editor notice after publishing a private item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:586 -msgid "Item Published Privately" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:583 -msgid "%s published privately." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:568 -msgid "Post published." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:567 -msgid "In the editor notice after publishing an item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:566 -msgid "Item Published" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:563 -msgid "%s published." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:548 -msgid "Posts list" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:547 -msgid "Used by screen readers for the items list on the post type list screen." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:546 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:640 -msgid "Items List" -msgstr "" - -#. translators: %s Plural form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:543 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:637 -msgid "%s list" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:528 -msgid "Posts list navigation" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:527 -msgid "" -"Used by screen readers for the filter list pagination on the post type list " -"screen." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:526 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:620 -msgid "Items List Navigation" -msgstr "" - -#. translators: %s Plural form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:523 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:617 -msgid "%s list navigation" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:507 -msgid "Filter posts by date" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:506 -msgid "" -"Used by screen readers for the filter by date heading on the post type list " -"screen." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:505 -msgid "Filter Items By Date" -msgstr "" - -#. translators: %s Plural form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:501 -msgid "Filter %s by date" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:486 -msgid "Filter posts list" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:485 -msgid "" -"Used by screen readers for the filter links heading on the post type list " -"screen." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:484 -msgid "Filter Items List" -msgstr "" - -#. translators: %s Plural form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:480 -msgid "Filter %s list" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:464 -msgid "In the media modal showing all media uploaded to this item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:463 -msgid "Uploaded To This Item" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:459 -msgid "Uploaded to this %s" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:444 -msgid "Insert into post" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:443 -msgid "As the button label when adding media to content." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:442 -msgid "Insert Into Media Button" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:438 -msgid "Insert into %s" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:423 -msgid "Use as featured image" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:422 -msgid "" -"As the button label for selecting to use an image as the featured image." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:421 -msgid "Use Featured Image" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:408 -msgid "Remove featured image" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:407 -msgid "As the button label when removing the featured image." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:406 -msgid "Remove Featured Image" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:393 -msgid "Set featured image" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:392 -msgid "As the button label when setting the featured image." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:391 -msgid "Set Featured Image" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:378 -msgid "Featured image" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:377 -msgid "In the editor used for the title of the featured image meta box." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:376 -msgid "Featured Image Meta Box" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:363 -msgid "Post Attributes" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:362 -msgid "In the editor used for the title of the post attributes meta box." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:361 -msgid "Attributes Meta Box" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:358 -msgid "%s Attributes" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:343 -msgid "Post Archives" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:342 -msgid "" -"Adds 'Post Type Archive' items with this label to the list of posts shown " -"when adding items to an existing menu in a CPT with archives enabled. Only " -"appears when editing menus in 'Live Preview' mode and a custom archive slug " -"has been provided." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:341 -msgid "Archives Nav Menu" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:338 -msgid "%s Archives" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:323 -msgid "No posts found in Trash" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:322 -msgid "" -"At the top of the post type list screen when there are no posts in the trash." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:321 -msgid "No Items Found in Trash" -msgstr "" - -#. translators: %s Plural form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:317 -msgid "No %s found in Trash" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:302 -msgid "No posts found" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:301 -msgid "" -"At the top of the post type list screen when there are no posts to display." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:300 -msgid "No Items Found" -msgstr "" - -#. translators: %s Plural form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:296 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:480 -msgid "No %s found" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:281 -msgid "Search Posts" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:280 -msgid "At the top of the items screen when searching for an item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:279 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:345 -msgid "Search Items" -msgstr "" - -#. translators: %s Singular form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:276 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:342 -msgid "Search %s" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:261 -msgid "Parent Page:" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:260 -msgid "For hierarchical types in the post type list screen." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:259 -msgid "Parent Item Prefix" -msgstr "" - -#. translators: %s Singular form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:256 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:318 -msgid "Parent %s:" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:241 -msgid "New Post" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:239 -msgid "New Item" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:236 -msgid "New %s" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:206 -msgid "Add New Post" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:205 -msgid "At the top of the editor screen when adding a new item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:204 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:256 -msgid "Add New Item" -msgstr "" - -#. translators: %s Singular form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:201 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:253 -msgid "Add New %s" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:186 -msgid "View Posts" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:185 -msgid "" -"Appears in the admin bar in the 'All Posts' view, provided the post type " -"supports archives and the home page is not an archive of that post type." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:184 -msgid "View Items" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:166 -msgid "View Post" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:165 -msgid "In the admin bar to view item when editing it." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:164 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:216 -msgid "View Item" -msgstr "" - -#. translators: %s Singular form of post type name -#. translators: %s Plural form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:161 -#: includes/admin/views/acf-post-type/advanced-settings.php:181 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:213 -msgid "View %s" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:146 -msgid "Edit Post" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:145 -msgid "At the top of the editor screen when editing an item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:144 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:196 -msgid "Edit Item" -msgstr "" - -#. translators: %s Singular form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:141 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:193 -msgid "Edit %s" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:126 -msgid "All Posts" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:125 -#: includes/admin/views/acf-post-type/advanced-settings.php:220 -#: includes/admin/views/acf-post-type/advanced-settings.php:240 -msgid "In the post type submenu in the admin dashboard." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:124 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:176 -msgid "All Items" -msgstr "" - -#. translators: %s Plural form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:121 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:173 -msgid "All %s" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:105 -msgid "Admin menu name for the post type." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:104 -msgid "Menu Name" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:90 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:142 -msgid "Regenerate all labels using the Singular and Plural labels" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:88 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:140 -msgid "Regenerate" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:79 -msgid "Active post types are enabled and registered with WordPress." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:63 -msgid "A descriptive summary of the post type." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:48 -msgid "Add Custom" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:42 -msgid "Enable various features in the content editor." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:31 -msgid "Post Formats" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:25 -msgid "Editor" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:24 -msgid "Trackbacks" -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:87 -msgid "Select existing taxonomies to classify items of the post type." -msgstr "" - -#: includes/admin/views/acf-field-group/field.php:145 -msgid "Browse Fields" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:292 -msgid "Nothing to import" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:287 -msgid ". The Custom Post Type UI plugin can be deactivated." -msgstr "" - -#. translators: %d - number of items imported from CPTUI -#: includes/admin/tools/class-acf-admin-tool-import.php:278 -msgid "Imported %d item from Custom Post Type UI -" -msgid_plural "Imported %d items from Custom Post Type UI -" -msgstr[0] "" -msgstr[1] "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:262 -msgid "Failed to import taxonomies." -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:244 -msgid "Failed to import post types." -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:233 -msgid "Nothing from Custom Post Type UI plugin selected for import." -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:209 -msgid "Imported 1 item" -msgid_plural "Imported %s items" -msgstr[0] "" -msgstr[1] "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:122 -msgid "" -"Importing a Post Type or Taxonomy with the same key as one that already " -"exists will overwrite the settings for the existing Post Type or Taxonomy " -"with those of the import." -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:111 -#: includes/admin/tools/class-acf-admin-tool-import.php:127 -msgid "Import from Custom Post Type UI" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:412 -msgid "" -"The following code can be used to register a local version of the selected " -"items. Storing field groups, post types, or taxonomies locally can provide " -"many benefits such as faster load times, version control & dynamic fields/" -"settings. Simply copy and paste the following code to your theme's functions." -"php file or include it within an external file, then deactivate or delete " -"the items from the ACF admin." -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:411 -msgid "Export - Generate PHP" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:384 -msgid "Export" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:276 -msgid "Select Taxonomies" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:254 -msgid "Select Post Types" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:167 -msgid "Exported 1 item." -msgid_plural "Exported %s items." -msgstr[0] "" -msgstr[1] "" - -#: includes/admin/post-types/admin-taxonomy.php:129 -#: assets/build/js/acf-internal-post-type.js:182 -#: assets/build/js/acf-internal-post-type.js:256 -msgid "Category" -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:127 -#: assets/build/js/acf-internal-post-type.js:179 -#: assets/build/js/acf-internal-post-type.js:253 -msgid "Tag" -msgstr "" - -#. translators: %s taxonomy name -#: includes/admin/post-types/admin-taxonomy.php:82 -msgid "%s taxonomy created" -msgstr "" - -#. translators: %s taxonomy name -#: includes/admin/post-types/admin-taxonomy.php:76 -msgid "%s taxonomy updated" -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:56 -msgid "Taxonomy draft updated." -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:55 -msgid "Taxonomy scheduled for." -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:54 -msgid "Taxonomy submitted." -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:53 -msgid "Taxonomy saved." -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:49 -msgid "Taxonomy deleted." -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:48 -msgid "Taxonomy updated." -msgstr "" - -#: includes/admin/post-types/admin-taxonomies.php:377 -#: includes/admin/post-types/admin-taxonomy.php:157 -msgid "" -"This taxonomy could not be registered because its key is in use by another " -"taxonomy registered by another plugin or theme." -msgstr "" - -#. translators: %s number of taxonomies synchronized -#: includes/admin/post-types/admin-taxonomies.php:359 -msgid "Taxonomy synchronized." -msgid_plural "%s taxonomies synchronized." -msgstr[0] "" -msgstr[1] "" - -#. translators: %s number of taxonomies duplicated -#: includes/admin/post-types/admin-taxonomies.php:352 -msgid "Taxonomy duplicated." -msgid_plural "%s taxonomies duplicated." -msgstr[0] "" -msgstr[1] "" - -#. translators: %s number of taxonomies deactivated -#: includes/admin/post-types/admin-taxonomies.php:345 -msgid "Taxonomy deactivated." -msgid_plural "%s taxonomies deactivated." -msgstr[0] "" -msgstr[1] "" - -#. translators: %s number of taxonomies activated -#: includes/admin/post-types/admin-taxonomies.php:338 -msgid "Taxonomy activated." -msgid_plural "%s taxonomies activated." -msgstr[0] "" -msgstr[1] "" - -#: includes/admin/post-types/admin-taxonomies.php:139 -msgid "Terms" -msgstr "" - -#. translators: %s number of post types synchronized -#: includes/admin/post-types/admin-post-types.php:352 -msgid "Post type synchronized." -msgid_plural "%s post types synchronized." -msgstr[0] "" -msgstr[1] "" - -#. translators: %s number of post types duplicated -#: includes/admin/post-types/admin-post-types.php:345 -msgid "Post type duplicated." -msgid_plural "%s post types duplicated." -msgstr[0] "" -msgstr[1] "" - -#. translators: %s number of post types deactivated -#: includes/admin/post-types/admin-post-types.php:338 -msgid "Post type deactivated." -msgid_plural "%s post types deactivated." -msgstr[0] "" -msgstr[1] "" - -#. translators: %s number of post types activated -#: includes/admin/post-types/admin-post-types.php:331 -msgid "Post type activated." -msgid_plural "%s post types activated." -msgstr[0] "" -msgstr[1] "" - -#: includes/admin/post-types/admin-post-types.php:112 -#: includes/admin/post-types/admin-taxonomies.php:137 -#: includes/admin/tools/class-acf-admin-tool-import.php:82 -#: includes/admin/views/acf-taxonomy/basic-settings.php:82 -#: includes/post-types/class-acf-post-type.php:91 -msgid "Post Types" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:162 -#: includes/admin/post-types/admin-taxonomy.php:164 -msgid "Advanced Settings" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:161 -#: includes/admin/post-types/admin-taxonomy.php:163 -msgid "Basic Settings" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:155 -#: includes/admin/post-types/admin-post-types.php:370 -msgid "" -"This post type could not be registered because its key is in use by another " -"post type registered by another plugin or theme." -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:128 -#: assets/build/js/acf-internal-post-type.js:176 -#: assets/build/js/acf-internal-post-type.js:250 -msgid "Pages" -msgstr "" - -#: includes/admin/admin-internal-post-type.php:355 -msgid "Link Existing Field Groups" -msgstr "" - -#. translators: %s post type name -#: includes/admin/post-types/admin-post-type.php:80 -msgid "%s post type created" -msgstr "" - -#. translators: %s taxonomy name -#: includes/admin/post-types/admin-taxonomy.php:78 -msgid "Add fields to %s" -msgstr "" - -#. translators: %s post type name -#: includes/admin/post-types/admin-post-type.php:76 -msgid "%s post type updated" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:56 -msgid "Post type draft updated." -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:55 -msgid "Post type scheduled for." -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:54 -msgid "Post type submitted." -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:53 -msgid "Post type saved." -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:50 -msgid "Post type updated." -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:49 -msgid "Post type deleted." -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:120 -#: assets/build/js/acf-field-group.js:1146 -#: assets/build/js/acf-field-group.js:1366 -msgid "Type to search..." -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:105 -#: assets/build/js/acf-field-group.js:1172 -#: assets/build/js/acf-field-group.js:2319 -#: assets/build/js/acf-field-group.js:1414 -#: assets/build/js/acf-field-group.js:2727 -msgid "PRO Only" -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:97 -#: assets/build/js/acf-internal-post-type.js:308 -#: assets/build/js/acf-internal-post-type.js:417 -msgid "Field groups linked successfully." -msgstr "" - -#. translators: %s - URL to ACF tools page. -#: includes/admin/admin.php:195 -msgid "" -"Import Post Types and Taxonomies registered with Custom Post Type UI and " -"manage them with ACF. Get Started." -msgstr "" - -#: includes/admin/admin.php:48 includes/admin/admin.php:267 -msgid "ACF" -msgstr "" - -#: includes/admin/admin-internal-post-type.php:322 -msgid "taxonomy" -msgstr "" - -#: includes/admin/admin-internal-post-type.php:322 -msgid "post type" -msgstr "" - -#: includes/admin/admin-internal-post-type.php:346 -msgid "Done" -msgstr "" - -#: includes/admin/admin-internal-post-type.php:332 -msgid "Field Group(s)" -msgstr "" - -#: includes/admin/admin-internal-post-type.php:331 -msgid "Select one or many field groups..." -msgstr "" - -#: includes/admin/admin-internal-post-type.php:330 -msgid "Please select the field groups to link." -msgstr "" - -#: includes/admin/admin-internal-post-type.php:288 -msgid "Field group linked successfully." -msgid_plural "Field groups linked successfully." -msgstr[0] "" -msgstr[1] "" - -#: includes/admin/admin-internal-post-type-list.php:261 -#: includes/admin/post-types/admin-post-types.php:371 -#: includes/admin/post-types/admin-taxonomies.php:378 -msgctxt "post status" -msgid "Registration Failed" -msgstr "" - -#: includes/admin/admin-internal-post-type-list.php:260 -msgid "" -"This item could not be registered because its key is in use by another item " -"registered by another plugin or theme." -msgstr "" - -#: includes/acf-internal-post-type-functions.php:482 -#: includes/acf-internal-post-type-functions.php:511 -msgid "REST API" -msgstr "" - -#: includes/acf-internal-post-type-functions.php:481 -#: includes/acf-internal-post-type-functions.php:510 -#: includes/acf-internal-post-type-functions.php:537 -msgid "Permissions" -msgstr "" - -#: includes/acf-internal-post-type-functions.php:480 -#: includes/acf-internal-post-type-functions.php:509 -msgid "URLs" -msgstr "" - -#: includes/acf-internal-post-type-functions.php:479 -#: includes/acf-internal-post-type-functions.php:508 -#: includes/acf-internal-post-type-functions.php:535 -msgid "Visibility" -msgstr "" - -#: includes/acf-internal-post-type-functions.php:478 -#: includes/acf-internal-post-type-functions.php:507 -#: includes/acf-internal-post-type-functions.php:536 -msgid "Labels" -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:269 -msgid "Field Settings Tabs" -msgstr "" - -#. Author URI of the plugin -msgid "" -"https://wpengine.com/?utm_source=wordpress." -"org&utm_medium=referral&utm_campaign=plugin_directory&utm_content=advanced_custom_fields" -msgstr "" - -#: includes/api/api-template.php:867 -msgid "[ACF shortcode value disabled for preview]" -msgstr "" - -#: includes/admin/admin-internal-post-type.php:298 -#: includes/admin/post-types/admin-field-group.php:571 -msgid "Close Modal" -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:96 -#: assets/build/js/acf-field-group.js:1670 -#: assets/build/js/acf-field-group.js:1993 -msgid "Field moved to other group" -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:95 -#: assets/build/js/acf.js:1437 assets/build/js/acf.js:1517 -msgid "Close modal" -msgstr "" - -#: includes/fields/class-acf-field-tab.php:125 -msgid "Start a new group of tabs at this tab." -msgstr "" - -#: includes/fields/class-acf-field-tab.php:124 -msgid "New Tab Group" -msgstr "" - -#: includes/fields/class-acf-field-select.php:451 -#: includes/fields/class-acf-field-true_false.php:200 -msgid "Use a stylized checkbox using select2" -msgstr "" - -#: includes/fields/class-acf-field-radio.php:260 -msgid "Save Other Choice" -msgstr "" - -#: includes/fields/class-acf-field-radio.php:249 -msgid "Allow Other Choice" -msgstr "" - -#: includes/fields/class-acf-field-checkbox.php:450 -msgid "Add Toggle All" -msgstr "" - -#: includes/fields/class-acf-field-checkbox.php:409 -msgid "Save Custom Values" -msgstr "" - -#: includes/fields/class-acf-field-checkbox.php:398 -msgid "Allow Custom Values" -msgstr "" - -#: includes/fields/class-acf-field-checkbox.php:148 -msgid "Checkbox custom values cannot be empty. Uncheck any empty values." -msgstr "" - -#: includes/admin/views/global/navigation.php:248 -msgid "Updates" -msgstr "" - -#: includes/admin/views/global/navigation.php:176 -msgid "Advanced Custom Fields logo" -msgstr "" - -#: includes/admin/views/global/form-top.php:89 -msgid "Save Changes" -msgstr "" - -#: includes/admin/views/global/form-top.php:76 -msgid "Field Group Title" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:704 -#: includes/admin/views/global/form-top.php:3 -msgid "Add title" -msgstr "" - -#. translators: %s url to getting started guide -#: includes/admin/views/acf-field-group/list-empty.php:20 -#: includes/admin/views/acf-post-type/list-empty.php:12 -#: includes/admin/views/acf-taxonomy/list-empty.php:12 -#: includes/admin/views/options-page-preview.php:13 -msgid "" -"New to ACF? Take a look at our getting " -"started guide." -msgstr "" - -#: includes/admin/views/acf-field-group/list-empty.php:15 -msgid "Add Field Group" -msgstr "" - -#. translators: %s url to creating a field group page -#: includes/admin/views/acf-field-group/list-empty.php:10 -msgid "" -"ACF uses field groups to group custom " -"fields together, and then attach those fields to edit screens." -msgstr "" - -#: includes/admin/views/acf-field-group/list-empty.php:5 -msgid "Add Your First Field Group" -msgstr "" - -#: includes/admin/admin-options-pages-preview.php:28 -#: includes/admin/views/acf-field-group/pro-features.php:54 -#: includes/admin/views/global/navigation.php:86 -#: includes/admin/views/global/navigation.php:250 -msgid "Options Pages" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:50 -msgid "ACF Blocks" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:58 -msgid "Gallery Field" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:38 -msgid "Flexible Content Field" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:42 -msgid "Repeater Field" -msgstr "" - -#: includes/admin/views/global/navigation.php:212 -msgid "Unlock Extra Features with ACF PRO" -msgstr "" - -#: includes/admin/views/acf-field-group/options.php:267 -msgid "Delete Field Group" -msgstr "" - -#. translators: 1: Post creation date 2: Post creation time -#: includes/admin/views/acf-field-group/options.php:261 -msgid "Created on %1$s at %2$s" -msgstr "" - -#: includes/acf-field-group-functions.php:497 -msgid "Group Settings" -msgstr "" - -#: includes/acf-field-group-functions.php:495 -msgid "Location Rules" -msgstr "" - -#. translators: %s url to field types list -#: includes/admin/views/acf-field-group/fields.php:72 -msgid "" -"Choose from over 30 field types. Learn " -"more." -msgstr "" - -#: includes/admin/views/acf-field-group/fields.php:65 -msgid "" -"Get started creating new custom fields for your posts, pages, custom post " -"types and other WordPress content." -msgstr "" - -#: includes/admin/views/acf-field-group/fields.php:64 -msgid "Add Your First Field" -msgstr "" - -#. translators: A symbol (or text, if not available in your locale) meaning -#. "Order Number", in terms of positional placement. -#: includes/admin/views/acf-field-group/fields.php:43 -msgid "#" -msgstr "" - -#: includes/admin/views/acf-field-group/fields.php:33 -#: includes/admin/views/acf-field-group/fields.php:67 -#: includes/admin/views/acf-field-group/fields.php:103 -#: includes/admin/views/global/form-top.php:85 -msgid "Add Field" -msgstr "" - -#: includes/acf-field-group-functions.php:496 includes/fields.php:410 -msgid "Presentation" -msgstr "" - -#: includes/fields.php:409 -msgid "Validation" -msgstr "" - -#: includes/acf-internal-post-type-functions.php:477 -#: includes/acf-internal-post-type-functions.php:506 includes/fields.php:408 -msgid "General" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:70 -msgid "Import JSON" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:392 -msgid "Export As JSON" -msgstr "" - -#. translators: %s number of field groups deactivated -#: includes/admin/post-types/admin-field-groups.php:367 -msgid "Field group deactivated." -msgid_plural "%s field groups deactivated." -msgstr[0] "" -msgstr[1] "" - -#. translators: %s number of field groups activated -#: includes/admin/post-types/admin-field-groups.php:360 -msgid "Field group activated." -msgid_plural "%s field groups activated." -msgstr[0] "" -msgstr[1] "" - -#: includes/admin/admin-internal-post-type-list.php:452 -#: includes/admin/admin-internal-post-type-list.php:478 -msgid "Deactivate" -msgstr "" - -#: includes/admin/admin-internal-post-type-list.php:452 -msgid "Deactivate this item" -msgstr "" - -#: includes/admin/admin-internal-post-type-list.php:448 -#: includes/admin/admin-internal-post-type-list.php:477 -msgid "Activate" -msgstr "" - -#: includes/admin/admin-internal-post-type-list.php:448 -msgid "Activate this item" -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:92 -#: assets/build/js/acf-field-group.js:2812 -#: assets/build/js/acf-field-group.js:3313 -msgid "Move field group to trash?" -msgstr "" - -#: acf.php:497 includes/admin/admin-internal-post-type-list.php:248 -#: includes/admin/post-types/admin-field-group.php:297 -#: includes/admin/post-types/admin-post-type.php:295 -#: includes/admin/post-types/admin-taxonomy.php:297 -msgctxt "post status" -msgid "Inactive" -msgstr "" - -#. Author of the plugin -msgid "WP Engine" -msgstr "" - -#: acf.php:555 -msgid "" -"Advanced Custom Fields and Advanced Custom Fields PRO should not be active " -"at the same time. We've automatically deactivated Advanced Custom Fields PRO." -msgstr "" - -#: acf.php:553 -msgid "" -"Advanced Custom Fields and Advanced Custom Fields PRO should not be active " -"at the same time. We've automatically deactivated Advanced Custom Fields." -msgstr "" - -#: includes/acf-value-functions.php:374 -msgid "" -"%1$s - We've detected one or more calls to retrieve ACF " -"field values before ACF has been initialized. This is not supported and can " -"result in malformed or missing data. Learn how to fix this." -msgstr "" -"%1$s - Hemos detectado una o más llamadas para obtener " -"valores de campo de ACF antes de que ACF se haya iniciado. Esto no es " -"compatible y puede ocasionar datos mal formados o faltantes. Aprende cómo corregirlo." - -#: includes/fields/class-acf-field-user.php:551 -msgid "%1$s must have a user with the %2$s role." -msgid_plural "%1$s must have a user with one of the following roles: %2$s" -msgstr[0] "%1$s debe tener un usuario con el perfil %2$s." -msgstr[1] "%1$s debe tener un usuario con uno de los siguientes perfiles: %2$s" - -#: includes/fields/class-acf-field-user.php:542 -msgid "%1$s must have a valid user ID." -msgstr "%1$s debe tener un ID de usuario válido." - -#: includes/fields/class-acf-field-user.php:380 -msgid "Invalid request." -msgstr "Petición no válida." - -#: includes/fields/class-acf-field-select.php:684 -msgid "%1$s is not one of %2$s" -msgstr "%1$s no es ninguna de las siguientes %2$s" - -#: includes/fields/class-acf-field-post_object.php:700 -msgid "%1$s must have term %2$s." -msgid_plural "%1$s must have one of the following terms: %2$s" -msgstr[0] "%1$s debe tener un término %2$s." -msgstr[1] "%1$s debe tener uno de los siguientes términos: %2$s" - -#: includes/fields/class-acf-field-post_object.php:684 -msgid "%1$s must be of post type %2$s." -msgid_plural "%1$s must be of one of the following post types: %2$s" -msgstr[0] "%1$s debe ser del tipo de contenido %2$s." -msgstr[1] "%1$s debe ser de uno de los siguientes tipos de contenido: %2$s" - -#: includes/fields/class-acf-field-post_object.php:675 -msgid "%1$s must have a valid post ID." -msgstr "%1$s debe tener un ID de entrada válido." - -#: includes/fields/class-acf-field-file.php:475 -msgid "%s requires a valid attachment ID." -msgstr "%s necesita un ID de adjunto válido." - -#: includes/admin/views/acf-field-group/options.php:233 -msgid "Show in REST API" -msgstr "Mostrar en la API REST" - -#: includes/fields/class-acf-field-color_picker.php:168 -msgid "Enable Transparency" -msgstr "Activar la transparencia" - -#: includes/fields/class-acf-field-color_picker.php:187 -msgid "RGBA Array" -msgstr "Array RGBA" - -#: includes/fields/class-acf-field-color_picker.php:98 -msgid "RGBA String" -msgstr "Cadena RGBA" - -#: includes/fields/class-acf-field-color_picker.php:97 -#: includes/fields/class-acf-field-color_picker.php:186 -msgid "Hex String" -msgstr "Cadena hexadecimal" - -#: includes/admin/views/browse-fields-modal.php:65 -msgid "Upgrade to PRO" -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:297 -#: includes/admin/post-types/admin-post-type.php:295 -#: includes/admin/post-types/admin-taxonomy.php:297 -msgctxt "post status" -msgid "Active" -msgstr "Activo" - -#: includes/fields/class-acf-field-email.php:181 -msgid "'%s' is not a valid email address" -msgstr "«%s» no es una dirección de correo electrónico válida" - -#: includes/fields/class-acf-field-color_picker.php:76 -msgid "Color value" -msgstr "Valor del color" - -#: includes/fields/class-acf-field-color_picker.php:74 -msgid "Select default color" -msgstr "Seleccionar el color predeterminado" - -#: includes/fields/class-acf-field-color_picker.php:72 -msgid "Clear color" -msgstr "Vaciar el color" - -#: includes/acf-wp-functions.php:90 -msgid "Blocks" -msgstr "Bloques" - -#: includes/acf-wp-functions.php:86 -msgid "Options" -msgstr "Opciones" - -#: includes/acf-wp-functions.php:82 -msgid "Users" -msgstr "Usuarios" - -#: includes/acf-wp-functions.php:78 -msgid "Menu items" -msgstr "Elementos del menú" - -#: includes/acf-wp-functions.php:70 -msgid "Widgets" -msgstr "Widgets" - -#: includes/acf-wp-functions.php:62 -msgid "Attachments" -msgstr "Adjuntos" - -#: includes/acf-wp-functions.php:57 -#: includes/admin/post-types/admin-post-types.php:137 -#: includes/admin/post-types/admin-taxonomies.php:112 -#: includes/admin/tools/class-acf-admin-tool-import.php:93 -#: includes/admin/views/acf-post-type/basic-settings.php:86 -#: includes/post-types/class-acf-taxonomy.php:90 -#: includes/post-types/class-acf-taxonomy.php:91 -msgid "Taxonomies" -msgstr "Taxonomías" - -#: includes/acf-wp-functions.php:44 -#: includes/admin/post-types/admin-post-type.php:126 -#: includes/admin/post-types/admin-post-types.php:139 -#: includes/admin/views/acf-post-type/advanced-settings.php:106 -#: assets/build/js/acf-internal-post-type.js:173 -#: assets/build/js/acf-internal-post-type.js:247 -msgid "Posts" -msgstr "Entradas" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:76 -msgid "Last updated: %s" -msgstr "Última actualización: %s" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:70 -msgid "Sorry, this post is unavailable for diff comparison." -msgstr "" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:42 -msgid "Invalid field group parameter(s)." -msgstr "Parámetro(s) de grupo de campos no válido(s)." - -#: includes/admin/admin-internal-post-type-list.php:413 -msgid "Awaiting save" -msgstr "Esperando el guardado" - -#: includes/admin/admin-internal-post-type-list.php:410 -msgid "Saved" -msgstr "Guardado" - -#: includes/admin/admin-internal-post-type-list.php:406 -#: includes/admin/tools/class-acf-admin-tool-import.php:49 -msgid "Import" -msgstr "Importar" - -#: includes/admin/admin-internal-post-type-list.php:402 -msgid "Review changes" -msgstr "Revisar cambios" - -#: includes/admin/admin-internal-post-type-list.php:378 -msgid "Located in: %s" -msgstr "Localizado en: %s" - -#: includes/admin/admin-internal-post-type-list.php:375 -msgid "Located in plugin: %s" -msgstr "Localizado en el plugin: %s" - -#: includes/admin/admin-internal-post-type-list.php:372 -msgid "Located in theme: %s" -msgstr "Localizado en el tema: %s" - -#: includes/admin/post-types/admin-field-groups.php:261 -msgid "Various" -msgstr "Varios" - -#: includes/admin/admin-internal-post-type-list.php:216 -#: includes/admin/admin-internal-post-type-list.php:485 -msgid "Sync changes" -msgstr "Sincronizar cambios" - -#: includes/admin/admin-internal-post-type-list.php:215 -msgid "Loading diff" -msgstr "Cargando diff" - -#: includes/admin/admin-internal-post-type-list.php:214 -msgid "Review local JSON changes" -msgstr "Revisar cambios de JSON local" - -#: includes/admin/admin.php:170 -msgid "Visit website" -msgstr "Visitar web" - -#: includes/admin/admin.php:169 -msgid "View details" -msgstr "Ver detalles" - -#: includes/admin/admin.php:168 -msgid "Version %s" -msgstr "Versión %s" - -#: includes/admin/admin.php:167 -msgid "Information" -msgstr "Información" - -#: includes/admin/admin.php:158 -msgid "" -"Help Desk. The support professionals on " -"our Help Desk will assist with your more in depth, technical challenges." -msgstr "" -"Centro de ayuda. Los profesionales de " -"soporte de nuestro centro de ayuda te ayudarán más en profundidad con los " -"retos técnicos." - -#: includes/admin/admin.php:154 -msgid "" -"Discussions. We have an active and " -"friendly community on our Community Forums who may be able to help you " -"figure out the 'how-tos' of the ACF world." -msgstr "" - -#: includes/admin/admin.php:150 -msgid "" -"Documentation. Our extensive " -"documentation contains references and guides for most situations you may " -"encounter." -msgstr "" -"Documentación. Nuestra amplia " -"documentación contiene referencias y guías para la mayoría de situaciones en " -"las que puedas encontrarte." - -#: includes/admin/admin.php:147 -msgid "" -"We are fanatical about support, and want you to get the best out of your " -"website with ACF. If you run into any difficulties, there are several places " -"you can find help:" -msgstr "" -"Somos fanáticos del soporte, y queremos que consigas el máximo en tu web con " -"ACF." - -#: includes/admin/admin.php:144 includes/admin/admin.php:146 -msgid "Help & Support" -msgstr "Ayuda y soporte" - -#: includes/admin/admin.php:135 -msgid "" -"Please use the Help & Support tab to get in touch should you find yourself " -"requiring assistance." -msgstr "" -"Por favor, usa la pestaña de ayuda y soporte para contactar si descubres que " -"necesitas ayuda." - -#: includes/admin/admin.php:132 -msgid "" -"Before creating your first Field Group, we recommend first reading our Getting started guide to familiarize " -"yourself with the plugin's philosophy and best practises." -msgstr "" -"Antes de crear tu primer grupo de campos te recomendamos que primero leas " -"nuestra guía de primeros pasos para " -"familiarizarte con la filosofía y buenas prácticas del plugin." - -#: includes/admin/admin.php:130 -msgid "" -"The Advanced Custom Fields plugin provides a visual form builder to " -"customize WordPress edit screens with extra fields, and an intuitive API to " -"display custom field values in any theme template file." -msgstr "" -"El plugin Advanced Custom Fields ofrece un constructor visual con el que " -"personalizar las pantallas de WordPress con campos adicionales, y una API " -"intuitiva parra mostrar valores de campos personalizados en cualquier " -"archivo de plantilla de cualquier tema." - -#: includes/admin/admin.php:127 includes/admin/admin.php:129 -msgid "Overview" -msgstr "Resumen" - -#: includes/locations.php:36 -msgid "Location type \"%s\" is already registered." -msgstr "El tipo de ubicación \"%s\" ya está registrado." - -#: includes/locations.php:25 -msgid "Class \"%s\" does not exist." -msgstr "La clase \"%s\" no existe." - -#: includes/ajax/class-acf-ajax.php:157 -msgid "Invalid nonce." -msgstr "Nonce no válido." - -#: includes/fields/class-acf-field-user.php:375 -msgid "Error loading field." -msgstr "Error al cargar el campo." - -#: assets/build/js/acf-input.js:2750 assets/build/js/acf-input.js:2819 -#: assets/build/js/acf-input.js:2926 assets/build/js/acf-input.js:3000 -msgid "Location not found: %s" -msgstr "Ubicación no encontrada: %s" - -#: includes/forms/form-user.php:353 -msgid "Error: %s" -msgstr "Error: %s" - -#: includes/locations/class-acf-location-widget.php:22 -msgid "Widget" -msgstr "Widget" - -#: includes/locations/class-acf-location-user-role.php:24 -msgid "User Role" -msgstr "Rol de usuario" - -#: includes/locations/class-acf-location-comment.php:22 -msgid "Comment" -msgstr "Comentario" - -#: includes/locations/class-acf-location-post-format.php:22 -msgid "Post Format" -msgstr "Formato de entrada" - -#: includes/locations/class-acf-location-nav-menu-item.php:22 -msgid "Menu Item" -msgstr "Elemento de menú" - -#: includes/locations/class-acf-location-post-status.php:22 -msgid "Post Status" -msgstr "Estado de entrada" - -#: includes/acf-wp-functions.php:74 -#: includes/locations/class-acf-location-nav-menu.php:89 -msgid "Menus" -msgstr "Menús" - -#: includes/locations/class-acf-location-nav-menu.php:80 -msgid "Menu Locations" -msgstr "Ubicaciones de menú" - -#: includes/locations/class-acf-location-nav-menu.php:22 -msgid "Menu" -msgstr "Menú" - -#: includes/locations/class-acf-location-post-taxonomy.php:22 -msgid "Post Taxonomy" -msgstr "Taxonomía de entrada" - -#: includes/locations/class-acf-location-page-type.php:114 -msgid "Child Page (has parent)" -msgstr "Página hija (tiene superior)" - -#: includes/locations/class-acf-location-page-type.php:113 -msgid "Parent Page (has children)" -msgstr "Página superior (con hijos)" - -#: includes/locations/class-acf-location-page-type.php:112 -msgid "Top Level Page (no parent)" -msgstr "Página de nivel superior (sin padres)" - -#: includes/locations/class-acf-location-page-type.php:111 -msgid "Posts Page" -msgstr "Página de entradas" - -#: includes/locations/class-acf-location-page-type.php:110 -msgid "Front Page" -msgstr "Página de inicio" - -#: includes/locations/class-acf-location-page-type.php:22 -msgid "Page Type" -msgstr "Tipo de página" - -#: includes/locations/class-acf-location-current-user.php:73 -msgid "Viewing back end" -msgstr "Viendo el escritorio" - -#: includes/locations/class-acf-location-current-user.php:72 -msgid "Viewing front end" -msgstr "Viendo la web" - -#: includes/locations/class-acf-location-current-user.php:71 -msgid "Logged in" -msgstr "Conectado" - -#: includes/locations/class-acf-location-current-user.php:22 -msgid "Current User" -msgstr "Usuario actual" - -#: includes/locations/class-acf-location-page-template.php:22 -msgid "Page Template" -msgstr "Plantilla de página" - -#: includes/locations/class-acf-location-user-form.php:74 -msgid "Register" -msgstr "Registro" - -#: includes/locations/class-acf-location-user-form.php:73 -msgid "Add / Edit" -msgstr "Añadir / Editar" - -#: includes/locations/class-acf-location-user-form.php:22 -msgid "User Form" -msgstr "Formulario de usuario" - -#: includes/locations/class-acf-location-page-parent.php:22 -msgid "Page Parent" -msgstr "Página superior" - -#: includes/locations/class-acf-location-current-user-role.php:77 -msgid "Super Admin" -msgstr "Super administrador" - -#: includes/locations/class-acf-location-current-user-role.php:22 -msgid "Current User Role" -msgstr "Rol del usuario actual" - -#: includes/locations/class-acf-location-page-template.php:73 -#: includes/locations/class-acf-location-post-template.php:85 -msgid "Default Template" -msgstr "Plantilla predeterminada" - -#: includes/locations/class-acf-location-post-template.php:22 -msgid "Post Template" -msgstr "Plantilla de entrada" - -#: includes/locations/class-acf-location-post-category.php:22 -msgid "Post Category" -msgstr "Categoría de entrada" - -#: includes/locations/class-acf-location-attachment.php:84 -msgid "All %s formats" -msgstr "Todo los formatos de %s" - -#: includes/locations/class-acf-location-attachment.php:22 -msgid "Attachment" -msgstr "Adjunto" - -#: includes/validation.php:366 -msgid "%s value is required" -msgstr "El valor de %s es obligatorio" - -#: includes/admin/views/acf-field-group/conditional-logic.php:59 -msgid "Show this field if" -msgstr "Mostrar este campo si" - -#: includes/admin/views/acf-field-group/conditional-logic.php:26 -#: includes/admin/views/acf-field-group/field.php:109 includes/fields.php:411 -msgid "Conditional Logic" -msgstr "Lógica condicional" - -#: includes/admin/views/acf-field-group/conditional-logic.php:156 -#: includes/admin/views/acf-field-group/location-rule.php:92 -msgid "and" -msgstr "y" - -#: includes/admin/post-types/admin-field-groups.php:123 -#: includes/admin/post-types/admin-post-types.php:143 -#: includes/admin/post-types/admin-taxonomies.php:143 -msgid "Local JSON" -msgstr "JSON Local" - -#: includes/admin/views/acf-field-group/pro-features.php:46 -msgid "Clone Field" -msgstr "" - -#: includes/admin/views/upgrade/notice.php:30 -msgid "" -"Please also check all premium add-ons (%s) are updated to the latest version." -msgstr "" -"Por favor, comprueba también que todas las extensiones premium (%s) estén " -"actualizados a la última versión." - -#: includes/admin/views/upgrade/notice.php:28 -msgid "" -"This version contains improvements to your database and requires an upgrade." -msgstr "" -"Esta versión contiene mejoras en su base de datos y requiere una " -"actualización." - -#: includes/admin/views/upgrade/notice.php:28 -msgid "Thank you for updating to %1$s v%2$s!" -msgstr "¡Gracias por actualizar a %1$s v%2$s!" - -#: includes/admin/views/upgrade/notice.php:27 -msgid "Database Upgrade Required" -msgstr "Es necesario actualizar la base de datos" - -#: includes/admin/post-types/admin-field-group.php:141 -#: includes/admin/views/upgrade/notice.php:18 -msgid "Options Page" -msgstr "Página de opciones" - -#: includes/admin/views/upgrade/notice.php:15 includes/fields.php:462 -msgid "Gallery" -msgstr "Galería" - -#: includes/admin/views/upgrade/notice.php:12 includes/fields.php:452 -msgid "Flexible Content" -msgstr "Contenido flexible" - -#: includes/admin/views/upgrade/notice.php:9 includes/fields.php:472 -msgid "Repeater" -msgstr "Repetidor" - -#: includes/admin/views/tools/tools.php:24 -msgid "Back to all tools" -msgstr "Volver a todas las herramientas" - -#: includes/admin/views/acf-field-group/options.php:195 -msgid "" -"If multiple field groups appear on an edit screen, the first field group's " -"options will be used (the one with the lowest order number)" -msgstr "" -"Si aparecen múltiples grupos de campos en una pantalla de edición, se " -"utilizarán las opciones del primer grupo (el que tenga el número de orden " -"menor)" - -#: includes/admin/views/acf-field-group/options.php:195 -msgid "Select items to hide them from the edit screen." -msgstr "" -"Selecciona los elementos que ocultar de la pantalla de edición." - -#: includes/admin/views/acf-field-group/options.php:194 -msgid "Hide on screen" -msgstr "Ocultar en pantalla" - -#: includes/admin/views/acf-field-group/options.php:186 -msgid "Send Trackbacks" -msgstr "Enviar trackbacks" - -#: includes/admin/post-types/admin-taxonomy.php:128 -#: includes/admin/views/acf-field-group/options.php:185 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:159 -#: assets/build/js/acf-internal-post-type.js:180 -#: assets/build/js/acf-internal-post-type.js:254 -msgid "Tags" -msgstr "Etiquetas" - -#: includes/admin/post-types/admin-taxonomy.php:130 -#: includes/admin/views/acf-field-group/options.php:184 -#: assets/build/js/acf-internal-post-type.js:183 -#: assets/build/js/acf-internal-post-type.js:257 -msgid "Categories" -msgstr "Categorías" - -#: includes/admin/views/acf-field-group/options.php:182 -#: includes/admin/views/acf-post-type/advanced-settings.php:28 -msgid "Page Attributes" -msgstr "Atributos de página" - -#: includes/admin/views/acf-field-group/options.php:181 -msgid "Format" -msgstr "Formato" - -#: includes/admin/views/acf-field-group/options.php:180 -#: includes/admin/views/acf-post-type/advanced-settings.php:22 -msgid "Author" -msgstr "Autor" - -#: includes/admin/views/acf-field-group/options.php:179 -msgid "Slug" -msgstr "Slug" - -#: includes/admin/views/acf-field-group/options.php:178 -#: includes/admin/views/acf-post-type/advanced-settings.php:27 -msgid "Revisions" -msgstr "Revisiones" - -#: includes/acf-wp-functions.php:66 -#: includes/admin/views/acf-field-group/options.php:177 -#: includes/admin/views/acf-post-type/advanced-settings.php:23 -msgid "Comments" -msgstr "Comentarios" - -#: includes/admin/views/acf-field-group/options.php:176 -msgid "Discussion" -msgstr "Discusión" - -#: includes/admin/views/acf-field-group/options.php:174 -#: includes/admin/views/acf-post-type/advanced-settings.php:26 -msgid "Excerpt" -msgstr "Extracto" - -#: includes/admin/views/acf-field-group/options.php:173 -msgid "Content Editor" -msgstr "Editor de contenido" - -#: includes/admin/views/acf-field-group/options.php:172 -msgid "Permalink" -msgstr "Enlace permanente" - -#: includes/admin/views/acf-field-group/options.php:250 -msgid "Shown in field group list" -msgstr "Mostrado en lista de grupos de campos" - -#: includes/admin/views/acf-field-group/options.php:157 -msgid "Field groups with a lower order will appear first" -msgstr "Los grupos de campos con menor orden aparecerán primero" - -#: includes/admin/views/acf-field-group/options.php:156 -msgid "Order No." -msgstr "Número de orden" - -#: includes/admin/views/acf-field-group/options.php:147 -msgid "Below fields" -msgstr "Debajo de los campos" - -#: includes/admin/views/acf-field-group/options.php:146 -msgid "Below labels" -msgstr "Debajo de las etiquetas" - -#: includes/admin/views/acf-field-group/options.php:139 -msgid "Instruction Placement" -msgstr "" - -#: includes/admin/views/acf-field-group/options.php:122 -msgid "Label Placement" -msgstr "" - -#: includes/admin/views/acf-field-group/options.php:110 -msgid "Side" -msgstr "Lateral" - -#: includes/admin/views/acf-field-group/options.php:109 -msgid "Normal (after content)" -msgstr "Normal (después del contenido)" - -#: includes/admin/views/acf-field-group/options.php:108 -msgid "High (after title)" -msgstr "Alta (después del título)" - -#: includes/admin/views/acf-field-group/options.php:101 -msgid "Position" -msgstr "Posición" - -#: includes/admin/views/acf-field-group/options.php:92 -msgid "Seamless (no metabox)" -msgstr "Directo (sin caja meta)" - -#: includes/admin/views/acf-field-group/options.php:91 -msgid "Standard (WP metabox)" -msgstr "Estándar (caja meta de WP)" - -#: includes/admin/views/acf-field-group/options.php:84 -msgid "Style" -msgstr "Estilo" - -#: includes/admin/views/acf-field-group/fields.php:55 -msgid "Type" -msgstr "Tipo" - -#: includes/admin/post-types/admin-field-groups.php:117 -#: includes/admin/post-types/admin-post-types.php:136 -#: includes/admin/post-types/admin-taxonomies.php:136 -#: includes/admin/views/acf-field-group/fields.php:54 -msgid "Key" -msgstr "Clave" - -#. translators: Hidden accessibility text for the positional order number of -#. the field. -#: includes/admin/views/acf-field-group/fields.php:48 -msgid "Order" -msgstr "Orden" - -#: includes/admin/views/acf-field-group/field.php:322 -msgid "Close Field" -msgstr "Cerrar campo" - -#: includes/admin/views/acf-field-group/field.php:253 -msgid "id" -msgstr "ID" - -#: includes/admin/views/acf-field-group/field.php:237 -msgid "class" -msgstr "class" - -#: includes/admin/views/acf-field-group/field.php:279 -msgid "width" -msgstr "ancho" - -#: includes/admin/views/acf-field-group/field.php:273 -msgid "Wrapper Attributes" -msgstr "Atributos del contenedor" - -#: includes/admin/views/acf-field-group/field.php:196 -msgid "Required" -msgstr "" - -#: includes/admin/views/acf-field-group/field.php:221 -msgid "Instructions for authors. Shown when submitting data" -msgstr "" -"Instrucciones para los autores. Se muestra a la hora de enviar los datos" - -#: includes/admin/views/acf-field-group/field.php:220 -msgid "Instructions" -msgstr "Instrucciones" - -#: includes/admin/views/acf-field-group/field.php:129 -msgid "Field Type" -msgstr "Tipo de campo" - -#: includes/admin/views/acf-field-group/field.php:170 -msgid "Single word, no spaces. Underscores and dashes allowed" -msgstr "Una sola palabra, sin espacios. Se permiten guiones y guiones bajos" - -#: includes/admin/views/acf-field-group/field.php:169 -msgid "Field Name" -msgstr "Nombre del campo" - -#: includes/admin/views/acf-field-group/field.php:157 -msgid "This is the name which will appear on the EDIT page" -msgstr "Este es el nombre que aparecerá en la página EDITAR" - -#: includes/admin/views/acf-field-group/field.php:156 -#: includes/admin/views/browse-fields-modal.php:59 -msgid "Field Label" -msgstr "Etiqueta del campo" - -#: includes/admin/views/acf-field-group/field.php:81 -msgid "Delete" -msgstr "Borrar" - -#: includes/admin/views/acf-field-group/field.php:81 -msgid "Delete field" -msgstr "Borrar campo" - -#: includes/admin/views/acf-field-group/field.php:79 -msgid "Move" -msgstr "Mover" - -#: includes/admin/views/acf-field-group/field.php:79 -msgid "Move field to another group" -msgstr "Mover campo a otro grupo" - -#: includes/admin/views/acf-field-group/field.php:77 -msgid "Duplicate field" -msgstr "Duplicar campo" - -#: includes/admin/views/acf-field-group/field.php:73 -#: includes/admin/views/acf-field-group/field.php:76 -msgid "Edit field" -msgstr "Editar campo" - -#: includes/admin/views/acf-field-group/field.php:69 -msgid "Drag to reorder" -msgstr "Arrastra para reordenar" - -#: includes/admin/post-types/admin-field-group.php:103 -#: includes/admin/views/acf-field-group/location-group.php:3 -#: assets/build/js/acf-field-group.js:2347 -#: assets/build/js/acf-field-group.js:2763 -msgid "Show this field group if" -msgstr "Mostrar este grupo de campos si" - -#: includes/admin/views/upgrade/upgrade.php:94 -#: includes/ajax/class-acf-ajax-upgrade.php:34 -msgid "No updates available." -msgstr "No hay actualizaciones disponibles." - -#: includes/admin/views/upgrade/upgrade.php:33 -msgid "Database upgrade complete. See what's new" -msgstr "" -"Actualización de la base de datos completa. Ver las " -"novedades" - -#: includes/admin/views/upgrade/upgrade.php:30 -msgid "Reading upgrade tasks..." -msgstr "Leyendo tareas de actualización..." - -#: includes/admin/views/upgrade/network.php:165 -#: includes/admin/views/upgrade/upgrade.php:65 -msgid "Upgrade failed." -msgstr "Fallo al actualizar." - -#: includes/admin/views/upgrade/network.php:162 -msgid "Upgrade complete." -msgstr "Actualización completa" - -#: includes/admin/views/upgrade/network.php:148 -#: includes/admin/views/upgrade/upgrade.php:31 -msgid "Upgrading data to version %s" -msgstr "Actualizando datos a la versión %s" - -#: includes/admin/views/upgrade/network.php:121 -#: includes/admin/views/upgrade/notice.php:44 -msgid "" -"It is strongly recommended that you backup your database before proceeding. " -"Are you sure you wish to run the updater now?" -msgstr "" -"Es muy recomendable que hagas una copia de seguridad de tu base de datos " -"antes de continuar. ¿Estás seguro que quieres ejecutar ya la actualización?" - -#: includes/admin/views/upgrade/network.php:117 -msgid "Please select at least one site to upgrade." -msgstr "Por favor, selecciona al menos un sitio para actualizarlo." - -#: includes/admin/views/upgrade/network.php:97 -msgid "" -"Database Upgrade complete. Return to network dashboard" -msgstr "" -"Actualización de base de datos completa. Volver al escritorio " -"de red" - -#: includes/admin/views/upgrade/network.php:80 -msgid "Site is up to date" -msgstr "El sitio está actualizado" - -#: includes/admin/views/upgrade/network.php:78 -msgid "Site requires database upgrade from %1$s to %2$s" -msgstr "El sitio necesita actualizar la base de datos de %1$s a %2$s" - -#: includes/admin/views/upgrade/network.php:36 -#: includes/admin/views/upgrade/network.php:47 -msgid "Site" -msgstr "Sitio" - -#: includes/admin/views/upgrade/network.php:26 -#: includes/admin/views/upgrade/network.php:27 -#: includes/admin/views/upgrade/network.php:96 -msgid "Upgrade Sites" -msgstr "Actualizar los sitios" - -#: includes/admin/views/upgrade/network.php:26 -msgid "" -"The following sites require a DB upgrade. Check the ones you want to update " -"and then click %s." -msgstr "" -"Es necesario actualizar la base de datos de los siguientes sitios. Marca los " -"que quieras actualizar y haz clic en %s." - -#: includes/admin/views/acf-field-group/conditional-logic.php:171 -#: includes/admin/views/acf-field-group/locations.php:38 -msgid "Add rule group" -msgstr "Añadir grupo de reglas" - -#: includes/admin/views/acf-field-group/locations.php:10 -msgid "" -"Create a set of rules to determine which edit screens will use these " -"advanced custom fields" -msgstr "" -"Crea un conjunto de reglas para determinar qué pantallas de edición " -"utilizarán estos campos personalizados" - -#: includes/admin/views/acf-field-group/locations.php:9 -msgid "Rules" -msgstr "Reglas" - -#: includes/admin/tools/class-acf-admin-tool-export.php:510 -msgid "Copied" -msgstr "Copiado" - -#: includes/admin/tools/class-acf-admin-tool-export.php:486 -msgid "Copy to clipboard" -msgstr "Copiar al portapapeles" - -#: includes/admin/tools/class-acf-admin-tool-export.php:385 -msgid "" -"Select the items you would like to export and then select your export " -"method. Export As JSON to export to a .json file which you can then import " -"to another ACF installation. Generate PHP to export to PHP code which you " -"can place in your theme." -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:233 -msgid "Select Field Groups" -msgstr "Selecciona grupos de campos" - -#: includes/admin/tools/class-acf-admin-tool-export.php:96 -#: includes/admin/tools/class-acf-admin-tool-export.php:131 -msgid "No field groups selected" -msgstr "Ningún grupo de campos seleccionado" - -#: includes/admin/tools/class-acf-admin-tool-export.php:39 -#: includes/admin/tools/class-acf-admin-tool-export.php:393 -#: includes/admin/tools/class-acf-admin-tool-export.php:421 -msgid "Generate PHP" -msgstr "Generar PHP" - -#: includes/admin/tools/class-acf-admin-tool-export.php:35 -msgid "Export Field Groups" -msgstr "Exportar grupos de campos" - -#: includes/admin/tools/class-acf-admin-tool-import.php:177 -msgid "Import file empty" -msgstr "Archivo de imporación vacío" - -#: includes/admin/tools/class-acf-admin-tool-import.php:168 -msgid "Incorrect file type" -msgstr "Tipo de campo incorrecto" - -#: includes/admin/tools/class-acf-admin-tool-import.php:163 -msgid "Error uploading file. Please try again" -msgstr "Error al subir el archivo. Por favor, inténtalo de nuevo" - -#: includes/admin/tools/class-acf-admin-tool-import.php:50 -msgid "" -"Select the Advanced Custom Fields JSON file you would like to import. When " -"you click the import button below, ACF will import the items in that file." -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:27 -msgid "Import Field Groups" -msgstr "Importar grupo de campos" - -#: includes/admin/admin-internal-post-type-list.php:401 -msgid "Sync" -msgstr "Sincronizar" - -#: includes/admin/admin-internal-post-type-list.php:858 -msgid "Select %s" -msgstr "Selecciona %s" - -#: includes/admin/admin-internal-post-type-list.php:442 -#: includes/admin/admin-internal-post-type-list.php:474 -#: includes/admin/views/acf-field-group/field.php:77 -msgid "Duplicate" -msgstr "Duplicar" - -#: includes/admin/admin-internal-post-type-list.php:442 -msgid "Duplicate this item" -msgstr "Duplicar este elemento" - -#: includes/admin/views/acf-post-type/advanced-settings.php:41 -msgid "Supports" -msgstr "" - -#: includes/admin/admin.php:261 includes/admin/views/browse-fields-modal.php:92 -msgid "Documentation" -msgstr "" - -#: includes/admin/post-types/admin-field-groups.php:116 -#: includes/admin/post-types/admin-post-types.php:135 -#: includes/admin/post-types/admin-taxonomies.php:135 -#: includes/admin/views/acf-field-group/options.php:249 -#: includes/admin/views/acf-post-type/advanced-settings.php:62 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:114 -#: includes/admin/views/upgrade/network.php:38 -#: includes/admin/views/upgrade/network.php:49 -msgid "Description" -msgstr "Descripción" - -#: includes/admin/admin-internal-post-type-list.php:398 -#: includes/admin/admin-internal-post-type-list.php:747 -msgid "Sync available" -msgstr "Sincronización disponible" - -#. translators: %s number of field groups synchronized -#: includes/admin/post-types/admin-field-groups.php:381 -msgid "Field group synchronized." -msgid_plural "%s field groups synchronized." -msgstr[0] "" -msgstr[1] "" - -#. translators: %s number of field groups duplicated -#: includes/admin/post-types/admin-field-groups.php:374 -msgid "Field group duplicated." -msgid_plural "%s field groups duplicated." -msgstr[0] "Grupo de campos duplicado." -msgstr[1] "%s grupos de campos duplicados." - -#: includes/admin/admin-internal-post-type-list.php:137 -msgid "Active (%s)" -msgid_plural "Active (%s)" -msgstr[0] "Activo (%s)" -msgstr[1] "Activos (%s)" - -#: includes/admin/admin-upgrade.php:254 -msgid "Review sites & upgrade" -msgstr "Revisar sitios y actualizar" - -#: includes/admin/admin-upgrade.php:59 includes/admin/admin-upgrade.php:93 -#: includes/admin/admin-upgrade.php:94 includes/admin/admin-upgrade.php:230 -#: includes/admin/views/upgrade/network.php:24 -#: includes/admin/views/upgrade/upgrade.php:26 -msgid "Upgrade Database" -msgstr "Actualizar base de datos" - -#: includes/admin/views/acf-field-group/options.php:175 -#: includes/admin/views/acf-post-type/advanced-settings.php:30 -msgid "Custom Fields" -msgstr "Campos personalizados" - -#: includes/admin/post-types/admin-field-group.php:616 -msgid "Move Field" -msgstr "Mover campo" - -#: includes/admin/post-types/admin-field-group.php:605 -#: includes/admin/post-types/admin-field-group.php:609 -msgid "Please select the destination for this field" -msgstr "Por favor, selecciona el destino para este campo" - -#. translators: Confirmation message once a field has been moved to a different -#. field group. -#: includes/admin/post-types/admin-field-group.php:567 -msgid "The %1$s field can now be found in the %2$s field group" -msgstr "El campo %1$s ahora se puede encontrar en el grupo de campos %2$s" - -#: includes/admin/post-types/admin-field-group.php:564 -msgid "Move Complete." -msgstr "Movimiento completo." - -#: includes/admin/views/acf-field-group/field.php:39 -#: includes/admin/views/acf-field-group/options.php:217 -#: includes/admin/views/acf-post-type/advanced-settings.php:78 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:130 -msgid "Active" -msgstr "Activo" - -#: includes/admin/post-types/admin-field-group.php:266 -msgid "Field Keys" -msgstr "Claves de campo" - -#: includes/admin/post-types/admin-field-group.php:164 -#: includes/admin/tools/class-acf-admin-tool-export.php:342 -msgid "Settings" -msgstr "Ajustes" - -#: includes/admin/post-types/admin-field-groups.php:118 -msgid "Location" -msgstr "Ubicación" - -#: includes/admin/post-types/admin-field-group.php:104 -#: assets/build/js/acf-input.js:983 assets/build/js/acf-input.js:1075 -msgid "Null" -msgstr "Null" - -#: includes/admin/post-types/admin-field-group.php:101 -#: includes/class-acf-internal-post-type.php:730 -#: includes/post-types/class-acf-field-group.php:345 -#: assets/build/js/acf-field-group.js:1510 -#: assets/build/js/acf-field-group.js:1821 -msgid "copy" -msgstr "copiar" - -#: includes/admin/post-types/admin-field-group.php:100 -#: assets/build/js/acf-field-group.js:623 -#: assets/build/js/acf-field-group.js:778 -msgid "(this field)" -msgstr "(este campo)" - -#: includes/admin/post-types/admin-field-group.php:98 -#: assets/build/js/acf-input.js:918 assets/build/js/acf-input.js:943 -#: assets/build/js/acf-input.js:1002 assets/build/js/acf-input.js:1030 -msgid "Checked" -msgstr "Seleccionado" - -#: includes/admin/post-types/admin-field-group.php:94 -#: assets/build/js/acf-field-group.js:1615 -#: assets/build/js/acf-field-group.js:1933 -msgid "Move Custom Field" -msgstr "Mover campo personalizado" - -#: includes/admin/post-types/admin-field-group.php:93 -#: assets/build/js/acf-field-group.js:649 -#: assets/build/js/acf-field-group.js:804 -msgid "No toggle fields available" -msgstr "No hay campos de conmutación disponibles" - -#: includes/admin/post-types/admin-field-group.php:91 -msgid "Field group title is required" -msgstr "El título del grupo de campos es obligatorio" - -#: includes/admin/post-types/admin-field-group.php:90 -#: assets/build/js/acf-field-group.js:1604 -#: assets/build/js/acf-field-group.js:1919 -msgid "This field cannot be moved until its changes have been saved" -msgstr "Este campo se puede mover hasta que sus cambios se hayan guardado" - -#: includes/admin/post-types/admin-field-group.php:89 -#: assets/build/js/acf-field-group.js:1414 -#: assets/build/js/acf-field-group.js:1716 -msgid "The string \"field_\" may not be used at the start of a field name" -msgstr "" -"La cadena \"field_\" no se debe utilizar al comienzo de un nombre de campo" - -#: includes/admin/post-types/admin-field-group.php:71 -msgid "Field group draft updated." -msgstr "Borrador del grupo de campos actualizado." - -#: includes/admin/post-types/admin-field-group.php:70 -msgid "Field group scheduled for." -msgstr "Grupo de campos programado." - -#: includes/admin/post-types/admin-field-group.php:69 -msgid "Field group submitted." -msgstr "Grupo de campos enviado." - -#: includes/admin/post-types/admin-field-group.php:68 -msgid "Field group saved." -msgstr "Grupo de campos guardado." - -#: includes/admin/post-types/admin-field-group.php:67 -msgid "Field group published." -msgstr "Grupo de campos publicado." - -#: includes/admin/post-types/admin-field-group.php:64 -msgid "Field group deleted." -msgstr "Grupo de campos eliminado." - -#: includes/admin/post-types/admin-field-group.php:62 -#: includes/admin/post-types/admin-field-group.php:63 -#: includes/admin/post-types/admin-field-group.php:65 -msgid "Field group updated." -msgstr "Grupo de campos actualizado." - -#: includes/admin/admin-tools.php:118 -#: includes/admin/views/global/navigation.php:246 -#: includes/admin/views/tools/tools.php:21 -msgid "Tools" -msgstr "Herramientas" - -#: includes/locations/abstract-acf-location.php:106 -msgid "is not equal to" -msgstr "no es igual a" - -#: includes/locations/abstract-acf-location.php:105 -msgid "is equal to" -msgstr "es igual a" - -#: includes/locations.php:102 -msgid "Forms" -msgstr "Formularios" - -#: includes/admin/post-types/admin-post-type.php:127 includes/locations.php:100 -#: includes/locations/class-acf-location-page.php:22 -#: assets/build/js/acf-internal-post-type.js:175 -#: assets/build/js/acf-internal-post-type.js:249 -msgid "Page" -msgstr "Página" - -#: includes/admin/post-types/admin-post-type.php:125 includes/locations.php:99 -#: includes/locations/class-acf-location-post.php:22 -#: assets/build/js/acf-internal-post-type.js:172 -#: assets/build/js/acf-internal-post-type.js:246 -msgid "Post" -msgstr "Entrada" - -#: includes/fields.php:354 -msgid "Relational" -msgstr "Relación" - -#: includes/fields.php:353 -msgid "Choice" -msgstr "Elección" - -#: includes/fields.php:351 -msgid "Basic" -msgstr "Básico" - -#: includes/fields.php:320 -msgid "Unknown" -msgstr "Desconocido" - -#: includes/fields.php:320 -msgid "Field type does not exist" -msgstr "El tipo de campo no existe" - -#: includes/forms/form-front.php:236 -msgid "Spam Detected" -msgstr "Spam detectado" - -#: includes/forms/form-front.php:107 -msgid "Post updated" -msgstr "Publicación actualizada" - -#: includes/forms/form-front.php:106 -msgid "Update" -msgstr "Actualizar" - -#: includes/forms/form-front.php:57 -msgid "Validate Email" -msgstr "Validar correo electrónico" - -#: includes/fields.php:352 includes/forms/form-front.php:49 -msgid "Content" -msgstr "Contenido" - -#: includes/admin/views/acf-post-type/advanced-settings.php:21 -#: includes/forms/form-front.php:40 -msgid "Title" -msgstr "Título" - -#: includes/assets.php:372 includes/forms/form-comment.php:160 -#: assets/build/js/acf-input.js:7382 assets/build/js/acf-input.js:7968 -msgid "Edit field group" -msgstr "Editar grupo de campos" - -#: includes/admin/post-types/admin-field-group.php:117 -#: assets/build/js/acf-input.js:1125 assets/build/js/acf-input.js:1230 -msgid "Selection is less than" -msgstr "La selección es menor que" - -#: includes/admin/post-types/admin-field-group.php:116 -#: assets/build/js/acf-input.js:1106 assets/build/js/acf-input.js:1202 -msgid "Selection is greater than" -msgstr "La selección es mayor que" - -#: includes/admin/post-types/admin-field-group.php:115 -#: assets/build/js/acf-input.js:1075 assets/build/js/acf-input.js:1170 -msgid "Value is less than" -msgstr "El valor es menor que" - -#: includes/admin/post-types/admin-field-group.php:114 -#: assets/build/js/acf-input.js:1045 assets/build/js/acf-input.js:1139 -msgid "Value is greater than" -msgstr "El valor es mayor que" - -#: includes/admin/post-types/admin-field-group.php:113 -#: assets/build/js/acf-input.js:888 assets/build/js/acf-input.js:960 -msgid "Value contains" -msgstr "El valor contiene" - -#: includes/admin/post-types/admin-field-group.php:112 -#: assets/build/js/acf-input.js:862 assets/build/js/acf-input.js:926 -msgid "Value matches pattern" -msgstr "El valor coincide con el patrón" - -#: includes/admin/post-types/admin-field-group.php:111 -#: assets/build/js/acf-input.js:840 assets/build/js/acf-input.js:1023 -#: assets/build/js/acf-input.js:903 assets/build/js/acf-input.js:1116 -msgid "Value is not equal to" -msgstr "El valor no es igual a" - -#: includes/admin/post-types/admin-field-group.php:110 -#: assets/build/js/acf-input.js:810 assets/build/js/acf-input.js:964 -#: assets/build/js/acf-input.js:864 assets/build/js/acf-input.js:1053 -msgid "Value is equal to" -msgstr "El valor es igual a" - -#: includes/admin/post-types/admin-field-group.php:109 -#: assets/build/js/acf-input.js:788 assets/build/js/acf-input.js:841 -msgid "Has no value" -msgstr "No tiene ningún valor" - -#: includes/admin/post-types/admin-field-group.php:108 -#: assets/build/js/acf-input.js:758 assets/build/js/acf-input.js:783 -msgid "Has any value" -msgstr "No tiene algún valor" - -#: includes/admin/admin-internal-post-type.php:345 -#: includes/admin/views/browse-fields-modal.php:62 includes/assets.php:353 -#: assets/build/js/acf.js:1564 assets/build/js/acf.js:1658 -msgid "Cancel" -msgstr "Cancelar" - -#: includes/assets.php:349 assets/build/js/acf.js:1738 -#: assets/build/js/acf.js:1855 -msgid "Are you sure?" -msgstr "¿Estás seguro?" - -#: includes/assets.php:369 assets/build/js/acf-input.js:9442 -#: assets/build/js/acf-input.js:10294 -msgid "%d fields require attention" -msgstr "%d campos requieren atención" - -#: includes/assets.php:368 assets/build/js/acf-input.js:9440 -#: assets/build/js/acf-input.js:10290 -msgid "1 field requires attention" -msgstr "1 campo requiere atención" - -#: includes/assets.php:367 includes/validation.php:288 -#: includes/validation.php:298 assets/build/js/acf-input.js:9435 -#: assets/build/js/acf-input.js:10285 -msgid "Validation failed" -msgstr "Validación fallida" - -#: includes/assets.php:366 assets/build/js/acf-input.js:9603 -#: assets/build/js/acf-input.js:10473 -msgid "Validation successful" -msgstr "Validación correcta" - -#: includes/media.php:54 assets/build/js/acf-input.js:7210 -#: assets/build/js/acf-input.js:7772 -msgid "Restricted" -msgstr "Restringido" - -#: includes/media.php:53 assets/build/js/acf-input.js:7025 -#: assets/build/js/acf-input.js:7536 -msgid "Collapse Details" -msgstr "Contraer detalles" - -#: includes/media.php:52 assets/build/js/acf-input.js:7025 -#: assets/build/js/acf-input.js:7533 -msgid "Expand Details" -msgstr "Ampliar detalles" - -#: includes/admin/views/acf-post-type/advanced-settings.php:465 -#: includes/media.php:51 assets/build/js/acf-input.js:6892 -#: assets/build/js/acf-input.js:7381 -msgid "Uploaded to this post" -msgstr "Subido a esta publicación" - -#: includes/media.php:50 assets/build/js/acf-input.js:6931 -#: assets/build/js/acf-input.js:7420 -msgctxt "verb" -msgid "Update" -msgstr "Actualizar" - -#: includes/media.php:49 -msgctxt "verb" -msgid "Edit" -msgstr "Editar" - -#: includes/assets.php:363 assets/build/js/acf-input.js:9212 -#: assets/build/js/acf-input.js:10056 -msgid "The changes you made will be lost if you navigate away from this page" -msgstr "Los cambios que has realizado se perderán si navegas hacia otra página" - -#: includes/api/api-helpers.php:3395 -msgid "File type must be %s." -msgstr "El tipo de archivo debe ser %s." - -#: includes/admin/post-types/admin-field-group.php:102 -#: includes/admin/views/acf-field-group/conditional-logic.php:59 -#: includes/admin/views/acf-field-group/conditional-logic.php:169 -#: includes/admin/views/acf-field-group/location-group.php:3 -#: includes/admin/views/acf-field-group/locations.php:36 -#: includes/api/api-helpers.php:3391 assets/build/js/acf-field-group.js:771 -#: assets/build/js/acf-field-group.js:2385 -#: assets/build/js/acf-field-group.js:933 -#: assets/build/js/acf-field-group.js:2807 -msgid "or" -msgstr "o" - -#: includes/api/api-helpers.php:3364 -msgid "File size must not exceed %s." -msgstr "El tamaño del archivo no debe ser mayor de %s." - -#: includes/api/api-helpers.php:3359 -msgid "File size must be at least %s." -msgstr "El tamaño de archivo debe ser al menos %s." - -#: includes/api/api-helpers.php:3344 -msgid "Image height must not exceed %dpx." -msgstr "La altura de la imagen no debe exceder %dpx." - -#: includes/api/api-helpers.php:3339 -msgid "Image height must be at least %dpx." -msgstr "La altura de la imagen debe ser al menos %dpx." - -#: includes/api/api-helpers.php:3325 -msgid "Image width must not exceed %dpx." -msgstr "El ancho de la imagen no debe exceder %dpx." - -#: includes/api/api-helpers.php:3320 -msgid "Image width must be at least %dpx." -msgstr "El ancho de la imagen debe ser al menos %dpx." - -#: includes/api/api-helpers.php:1561 includes/api/api-term.php:147 -msgid "(no title)" -msgstr "(sin título)" - -#: includes/api/api-helpers.php:853 -msgid "Full Size" -msgstr "Tamaño completo" - -#: includes/api/api-helpers.php:812 -msgid "Large" -msgstr "Grande" - -#: includes/api/api-helpers.php:811 -msgid "Medium" -msgstr "Mediano" - -#: includes/api/api-helpers.php:810 -msgid "Thumbnail" -msgstr "Miniatura" - -#: includes/acf-field-functions.php:854 -#: includes/admin/post-types/admin-field-group.php:99 -#: assets/build/js/acf-field-group.js:1077 -#: assets/build/js/acf-field-group.js:1260 -msgid "(no label)" -msgstr "(sin etiqueta)" - -#: includes/fields/class-acf-field-textarea.php:145 -msgid "Sets the textarea height" -msgstr "Establece la altura del área de texto" - -#: includes/fields/class-acf-field-textarea.php:144 -msgid "Rows" -msgstr "Filas" - -#: includes/fields/class-acf-field-textarea.php:25 -msgid "Text Area" -msgstr "Área de texto" - -#: includes/fields/class-acf-field-checkbox.php:451 -msgid "Prepend an extra checkbox to toggle all choices" -msgstr "" -"Anteponer una casilla de verificación extra para cambiar todas las opciones" - -#: includes/fields/class-acf-field-checkbox.php:413 -msgid "Save 'custom' values to the field's choices" -msgstr "Guardar los valores \"personalizados\" a las opciones del campo" - -#: includes/fields/class-acf-field-checkbox.php:402 -msgid "Allow 'custom' values to be added" -msgstr "Permite añadir valores personalizados" - -#: includes/fields/class-acf-field-checkbox.php:38 -msgid "Add new choice" -msgstr "Añadir nueva opción" - -#: includes/fields/class-acf-field-checkbox.php:174 -msgid "Toggle All" -msgstr "Invertir todos" - -#: includes/fields/class-acf-field-page_link.php:506 -msgid "Allow Archives URLs" -msgstr "Permitir las URLs de los archivos" - -#: includes/fields/class-acf-field-page_link.php:179 -msgid "Archives" -msgstr "Archivo" - -#: includes/fields/class-acf-field-page_link.php:25 -msgid "Page Link" -msgstr "Enlace a página" - -#: includes/fields/class-acf-field-taxonomy.php:943 -#: includes/locations/class-acf-location-user-form.php:72 -msgid "Add" -msgstr "Añadir" - -#: includes/admin/views/acf-field-group/fields.php:53 -#: includes/fields/class-acf-field-taxonomy.php:908 -msgid "Name" -msgstr "Nombre" - -#: includes/fields/class-acf-field-taxonomy.php:892 -msgid "%s added" -msgstr "%s añadido/s" - -#: includes/fields/class-acf-field-taxonomy.php:856 -msgid "%s already exists" -msgstr "%s ya existe" - -#: includes/fields/class-acf-field-taxonomy.php:844 -msgid "User unable to add new %s" -msgstr "El usuario no puede añadir nuevos %s" - -#: includes/fields/class-acf-field-taxonomy.php:742 -msgid "Term ID" -msgstr "ID de término" - -#: includes/fields/class-acf-field-taxonomy.php:741 -msgid "Term Object" -msgstr "Objeto de término" - -#: includes/fields/class-acf-field-taxonomy.php:726 -msgid "Load value from posts terms" -msgstr "Cargar el valor de los términos de la publicación" - -#: includes/fields/class-acf-field-taxonomy.php:725 -msgid "Load Terms" -msgstr "Cargar términos" - -#: includes/fields/class-acf-field-taxonomy.php:715 -msgid "Connect selected terms to the post" -msgstr "Conectar los términos seleccionados con la publicación" - -#: includes/fields/class-acf-field-taxonomy.php:714 -msgid "Save Terms" -msgstr "Guardar términos" - -#: includes/fields/class-acf-field-taxonomy.php:704 -msgid "Allow new terms to be created whilst editing" -msgstr "Permitir la creación de nuevos términos mientras se edita" - -#: includes/fields/class-acf-field-taxonomy.php:703 -msgid "Create Terms" -msgstr "Crear términos" - -#: includes/fields/class-acf-field-taxonomy.php:762 -msgid "Radio Buttons" -msgstr "Botones de radio" - -#: includes/fields/class-acf-field-taxonomy.php:761 -msgid "Single Value" -msgstr "Valor único" - -#: includes/fields/class-acf-field-taxonomy.php:759 -msgid "Multi Select" -msgstr "Selección múltiple" - -#: includes/fields/class-acf-field-checkbox.php:25 -#: includes/fields/class-acf-field-taxonomy.php:758 -msgid "Checkbox" -msgstr "Casilla de verificación" - -#: includes/fields/class-acf-field-taxonomy.php:757 -msgid "Multiple Values" -msgstr "Valores múltiples" - -#: includes/fields/class-acf-field-taxonomy.php:752 -msgid "Select the appearance of this field" -msgstr "Selecciona la apariencia de este campo" - -#: includes/fields/class-acf-field-taxonomy.php:751 -msgid "Appearance" -msgstr "Apariencia" - -#: includes/fields/class-acf-field-taxonomy.php:693 -msgid "Select the taxonomy to be displayed" -msgstr "Selecciona la taxonomía a mostrar" - -#: includes/fields/class-acf-field-taxonomy.php:654 -msgctxt "No Terms" -msgid "No %s" -msgstr "" - -#: includes/fields/class-acf-field-number.php:266 -msgid "Value must be equal to or lower than %d" -msgstr "El valor debe ser menor o igual a %d" - -#: includes/fields/class-acf-field-number.php:259 -msgid "Value must be equal to or higher than %d" -msgstr "El valor debe ser mayor o igual a %d" - -#: includes/fields/class-acf-field-number.php:244 -msgid "Value must be a number" -msgstr "El valor debe ser un número" - -#: includes/fields/class-acf-field-number.php:25 -msgid "Number" -msgstr "Número" - -#: includes/fields/class-acf-field-radio.php:264 -msgid "Save 'other' values to the field's choices" -msgstr "Guardar los valores de 'otros' en las opciones del campo" - -#: includes/fields/class-acf-field-radio.php:253 -msgid "Add 'other' choice to allow for custom values" -msgstr "Añade la opción 'otros' para permitir valores personalizados" - -#: includes/admin/views/global/navigation.php:196 -msgid "Other" -msgstr "Otros" - -#: includes/fields/class-acf-field-radio.php:25 -msgid "Radio Button" -msgstr "Botón de radio" - -#: includes/fields/class-acf-field-accordion.php:107 -msgid "" -"Define an endpoint for the previous accordion to stop. This accordion will " -"not be visible." -msgstr "" -"Define un punto final para que el acordeón anterior se detenga. Este " -"acordeón no será visible." - -#: includes/fields/class-acf-field-accordion.php:96 -msgid "Allow this accordion to open without closing others." -msgstr "Permita que este acordeón se abra sin cerrar otros." - -#: includes/fields/class-acf-field-accordion.php:95 -msgid "Multi-Expand" -msgstr "" - -#: includes/fields/class-acf-field-accordion.php:85 -msgid "Display this accordion as open on page load." -msgstr "Muestra este acordeón como abierto en la carga de la página." - -#: includes/fields/class-acf-field-accordion.php:84 -msgid "Open" -msgstr "Abrir" - -#: includes/fields/class-acf-field-accordion.php:25 -msgid "Accordion" -msgstr "Acordeón" - -#: includes/fields/class-acf-field-file.php:267 -#: includes/fields/class-acf-field-file.php:279 -msgid "Restrict which files can be uploaded" -msgstr "Restringen los archivos que se pueden subir" - -#: includes/fields/class-acf-field-file.php:220 -msgid "File ID" -msgstr "ID del archivo" - -#: includes/fields/class-acf-field-file.php:219 -msgid "File URL" -msgstr "URL del archivo" - -#: includes/fields/class-acf-field-file.php:218 -msgid "File Array" -msgstr "Array del archivo" - -#: includes/fields/class-acf-field-file.php:186 -msgid "Add File" -msgstr "Añadir archivo" - -#: includes/admin/tools/class-acf-admin-tool-import.php:156 -#: includes/fields/class-acf-field-file.php:186 -msgid "No file selected" -msgstr "Ningún archivo seleccionado" - -#: includes/fields/class-acf-field-file.php:150 -msgid "File name" -msgstr "Nombre del archivo" - -#: includes/fields/class-acf-field-file.php:63 -#: assets/build/js/acf-input.js:2474 assets/build/js/acf-input.js:2625 -msgid "Update File" -msgstr "Actualizar archivo" - -#: includes/fields/class-acf-field-file.php:62 -#: assets/build/js/acf-input.js:2473 assets/build/js/acf-input.js:2624 -msgid "Edit File" -msgstr "Editar archivo" - -#: includes/admin/tools/class-acf-admin-tool-import.php:58 -#: includes/fields/class-acf-field-file.php:61 -#: assets/build/js/acf-input.js:2447 assets/build/js/acf-input.js:2597 -msgid "Select File" -msgstr "Seleccionar archivo" - -#: includes/fields/class-acf-field-file.php:25 -msgid "File" -msgstr "Archivo" - -#: includes/fields/class-acf-field-password.php:25 -msgid "Password" -msgstr "Contraseña" - -#: includes/fields/class-acf-field-select.php:392 -msgid "Specify the value returned" -msgstr "Especifica el valor devuelto" - -#: includes/fields/class-acf-field-select.php:461 -msgid "Use AJAX to lazy load choices?" -msgstr "¿Usar AJAX para hacer cargar las opciones de forma asíncrona?" - -#: includes/fields/class-acf-field-checkbox.php:362 -#: includes/fields/class-acf-field-select.php:381 -msgid "Enter each default value on a new line" -msgstr "Añade cada valor en una nueva línea" - -#: includes/fields/class-acf-field-select.php:252 includes/media.php:48 -#: assets/build/js/acf-input.js:6790 assets/build/js/acf-input.js:7266 -msgctxt "verb" -msgid "Select" -msgstr "Selecciona" - -#: includes/fields/class-acf-field-select.php:121 -msgctxt "Select2 JS load_fail" -msgid "Loading failed" -msgstr "Error al cargar" - -#: includes/fields/class-acf-field-select.php:120 -msgctxt "Select2 JS searching" -msgid "Searching…" -msgstr "Buscando…" - -#: includes/fields/class-acf-field-select.php:119 -msgctxt "Select2 JS load_more" -msgid "Loading more results…" -msgstr "Cargando más resultados…" - -#: includes/fields/class-acf-field-select.php:118 -msgctxt "Select2 JS selection_too_long_n" -msgid "You can only select %d items" -msgstr "Solo puedes seleccionar %d elementos" - -#: includes/fields/class-acf-field-select.php:117 -msgctxt "Select2 JS selection_too_long_1" -msgid "You can only select 1 item" -msgstr "Solo puedes seleccionar 1 elemento" - -#: includes/fields/class-acf-field-select.php:116 -msgctxt "Select2 JS input_too_long_n" -msgid "Please delete %d characters" -msgstr "Por favor, borra %d caracteres" - -#: includes/fields/class-acf-field-select.php:115 -msgctxt "Select2 JS input_too_long_1" -msgid "Please delete 1 character" -msgstr "Por favor, borra 1 carácter" - -#: includes/fields/class-acf-field-select.php:114 -msgctxt "Select2 JS input_too_short_n" -msgid "Please enter %d or more characters" -msgstr "Por favor, introduce %d o más caracteres" - -#: includes/fields/class-acf-field-select.php:113 -msgctxt "Select2 JS input_too_short_1" -msgid "Please enter 1 or more characters" -msgstr "Por favor, introduce 1 o más caracteres" - -#: includes/fields/class-acf-field-select.php:112 -msgctxt "Select2 JS matches_0" -msgid "No matches found" -msgstr "No se han encontrado coincidencias" - -#: includes/fields/class-acf-field-select.php:111 -msgctxt "Select2 JS matches_n" -msgid "%d results are available, use up and down arrow keys to navigate." -msgstr "" -"%d resultados disponibles, utiliza las flechas arriba y abajo para navegar " -"por los resultados." - -#: includes/fields/class-acf-field-select.php:110 -msgctxt "Select2 JS matches_1" -msgid "One result is available, press enter to select it." -msgstr "Hay un resultado disponible, pulsa enter para seleccionarlo." - -#: includes/fields/class-acf-field-select.php:25 -#: includes/fields/class-acf-field-taxonomy.php:763 -msgctxt "noun" -msgid "Select" -msgstr "Selección" - -#: includes/fields/class-acf-field-user.php:73 -msgid "User ID" -msgstr "ID del usuario" - -#: includes/fields/class-acf-field-user.php:72 -msgid "User Object" -msgstr "Grupo de objetos" - -#: includes/fields/class-acf-field-user.php:71 -msgid "User Array" -msgstr "Grupo de usuarios" - -#: includes/fields/class-acf-field-user.php:59 -msgid "All user roles" -msgstr "Todos los roles de usuario" - -#: includes/fields/class-acf-field-user.php:51 -msgid "Filter by Role" -msgstr "" - -#: includes/fields/class-acf-field-user.php:15 includes/locations.php:101 -msgid "User" -msgstr "Usuario" - -#: includes/fields/class-acf-field-separator.php:25 -msgid "Separator" -msgstr "Separador" - -#: includes/fields/class-acf-field-color_picker.php:75 -msgid "Select Color" -msgstr "Seleccionar color" - -#: includes/admin/post-types/admin-post-type.php:129 -#: includes/admin/post-types/admin-taxonomy.php:131 -#: includes/fields/class-acf-field-color_picker.php:73 -#: assets/build/js/acf-internal-post-type.js:72 -#: assets/build/js/acf-internal-post-type.js:86 -msgid "Default" -msgstr "Por defecto" - -#: includes/admin/views/acf-post-type/advanced-settings.php:89 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:141 -#: includes/fields/class-acf-field-color_picker.php:71 -msgid "Clear" -msgstr "Vaciar" - -#: includes/fields/class-acf-field-color_picker.php:25 -msgid "Color Picker" -msgstr "Selector de color" - -#: includes/fields/class-acf-field-date_time_picker.php:88 -msgctxt "Date Time Picker JS pmTextShort" -msgid "P" -msgstr "P" - -#: includes/fields/class-acf-field-date_time_picker.php:87 -msgctxt "Date Time Picker JS pmText" -msgid "PM" -msgstr "PM" - -#: includes/fields/class-acf-field-date_time_picker.php:84 -msgctxt "Date Time Picker JS amTextShort" -msgid "A" -msgstr "A" - -#: includes/fields/class-acf-field-date_time_picker.php:83 -msgctxt "Date Time Picker JS amText" -msgid "AM" -msgstr "AM" - -#: includes/fields/class-acf-field-date_time_picker.php:81 -msgctxt "Date Time Picker JS selectText" -msgid "Select" -msgstr "Seleccionar" - -#: includes/fields/class-acf-field-date_time_picker.php:80 -msgctxt "Date Time Picker JS closeText" -msgid "Done" -msgstr "Hecho" - -#: includes/fields/class-acf-field-date_time_picker.php:79 -msgctxt "Date Time Picker JS currentText" -msgid "Now" -msgstr "Ahora" - -#: includes/fields/class-acf-field-date_time_picker.php:78 -msgctxt "Date Time Picker JS timezoneText" -msgid "Time Zone" -msgstr "Zona horaria" - -#: includes/fields/class-acf-field-date_time_picker.php:77 -msgctxt "Date Time Picker JS microsecText" -msgid "Microsecond" -msgstr "Microsegundo" - -#: includes/fields/class-acf-field-date_time_picker.php:76 -msgctxt "Date Time Picker JS millisecText" -msgid "Millisecond" -msgstr "Milisegundo" - -#: includes/fields/class-acf-field-date_time_picker.php:75 -msgctxt "Date Time Picker JS secondText" -msgid "Second" -msgstr "Segundo" - -#: includes/fields/class-acf-field-date_time_picker.php:74 -msgctxt "Date Time Picker JS minuteText" -msgid "Minute" -msgstr "Minuto" - -#: includes/fields/class-acf-field-date_time_picker.php:73 -msgctxt "Date Time Picker JS hourText" -msgid "Hour" -msgstr "Hora" - -#: includes/fields/class-acf-field-date_time_picker.php:72 -msgctxt "Date Time Picker JS timeText" -msgid "Time" -msgstr "Hora" - -#: includes/fields/class-acf-field-date_time_picker.php:71 -msgctxt "Date Time Picker JS timeOnlyTitle" -msgid "Choose Time" -msgstr "Elegir hora" - -#: includes/fields/class-acf-field-date_time_picker.php:25 -msgid "Date Time Picker" -msgstr "Selector de fecha y hora" - -#: includes/fields/class-acf-field-accordion.php:106 -msgid "Endpoint" -msgstr "Variable" - -#: includes/admin/views/acf-field-group/options.php:130 -#: includes/fields/class-acf-field-tab.php:115 -msgid "Left aligned" -msgstr "Alineada a la izquierda" - -#: includes/admin/views/acf-field-group/options.php:129 -#: includes/fields/class-acf-field-tab.php:114 -msgid "Top aligned" -msgstr "Alineada arriba" - -#: includes/fields/class-acf-field-tab.php:110 -msgid "Placement" -msgstr "Ubicación" - -#: includes/fields/class-acf-field-tab.php:26 -msgid "Tab" -msgstr "Pestaña" - -#: includes/fields/class-acf-field-url.php:162 -msgid "Value must be a valid URL" -msgstr "El valor debe ser una URL válida" - -#: includes/fields/class-acf-field-link.php:177 -msgid "Link URL" -msgstr "URL del enlace" - -#: includes/fields/class-acf-field-link.php:176 -msgid "Link Array" -msgstr "Array de enlaces" - -#: includes/fields/class-acf-field-link.php:145 -msgid "Opens in a new window/tab" -msgstr "Abrir en una nueva ventana/pestaña" - -#: includes/fields/class-acf-field-link.php:140 -msgid "Select Link" -msgstr "Elige el enlace" - -#: includes/fields/class-acf-field-link.php:25 -msgid "Link" -msgstr "Enlace" - -#: includes/fields/class-acf-field-email.php:25 -msgid "Email" -msgstr "Correo electrónico" - -#: includes/fields/class-acf-field-number.php:188 -#: includes/fields/class-acf-field-range.php:217 -msgid "Step Size" -msgstr "Tamaño de paso" - -#: includes/fields/class-acf-field-number.php:158 -#: includes/fields/class-acf-field-range.php:195 -msgid "Maximum Value" -msgstr "Valor máximo" - -#: includes/fields/class-acf-field-number.php:148 -#: includes/fields/class-acf-field-range.php:184 -msgid "Minimum Value" -msgstr "Valor mínimo" - -#: includes/fields/class-acf-field-range.php:25 -msgid "Range" -msgstr "Rango" - -#: includes/fields/class-acf-field-button-group.php:175 -#: includes/fields/class-acf-field-checkbox.php:379 -#: includes/fields/class-acf-field-radio.php:220 -#: includes/fields/class-acf-field-select.php:399 -msgid "Both (Array)" -msgstr "Ambos (Array)" - -#: includes/admin/views/acf-field-group/fields.php:52 -#: includes/fields/class-acf-field-button-group.php:174 -#: includes/fields/class-acf-field-checkbox.php:378 -#: includes/fields/class-acf-field-radio.php:219 -#: includes/fields/class-acf-field-select.php:398 -msgid "Label" -msgstr "Etiqueta" - -#: includes/fields/class-acf-field-button-group.php:173 -#: includes/fields/class-acf-field-checkbox.php:377 -#: includes/fields/class-acf-field-radio.php:218 -#: includes/fields/class-acf-field-select.php:397 -msgid "Value" -msgstr "Valor" - -#: includes/fields/class-acf-field-button-group.php:222 -#: includes/fields/class-acf-field-checkbox.php:441 -#: includes/fields/class-acf-field-radio.php:292 -msgid "Vertical" -msgstr "Vertical" - -#: includes/fields/class-acf-field-button-group.php:221 -#: includes/fields/class-acf-field-checkbox.php:442 -#: includes/fields/class-acf-field-radio.php:293 -msgid "Horizontal" -msgstr "Horizontal" - -#: includes/fields/class-acf-field-button-group.php:148 -#: includes/fields/class-acf-field-checkbox.php:352 -#: includes/fields/class-acf-field-radio.php:193 -#: includes/fields/class-acf-field-select.php:370 -msgid "red : Red" -msgstr "rojo : Rojo" - -#: includes/fields/class-acf-field-button-group.php:148 -#: includes/fields/class-acf-field-checkbox.php:352 -#: includes/fields/class-acf-field-radio.php:193 -#: includes/fields/class-acf-field-select.php:370 -msgid "For more control, you may specify both a value and label like this:" -msgstr "" -"Para más control, puedes especificar tanto un valor como una etiqueta, así:" - -#: includes/fields/class-acf-field-button-group.php:148 -#: includes/fields/class-acf-field-checkbox.php:352 -#: includes/fields/class-acf-field-radio.php:193 -#: includes/fields/class-acf-field-select.php:370 -msgid "Enter each choice on a new line." -msgstr "Añade cada opción en una nueva línea." - -#: includes/fields/class-acf-field-button-group.php:147 -#: includes/fields/class-acf-field-checkbox.php:351 -#: includes/fields/class-acf-field-radio.php:192 -#: includes/fields/class-acf-field-select.php:369 -msgid "Choices" -msgstr "Opciones" - -#: includes/fields/class-acf-field-button-group.php:24 -msgid "Button Group" -msgstr "Grupo de botones" - -#: includes/fields/class-acf-field-button-group.php:194 -#: includes/fields/class-acf-field-page_link.php:538 -#: includes/fields/class-acf-field-post_object.php:448 -#: includes/fields/class-acf-field-radio.php:238 -#: includes/fields/class-acf-field-select.php:429 -#: includes/fields/class-acf-field-taxonomy.php:772 -#: includes/fields/class-acf-field-user.php:103 -msgid "Allow Null" -msgstr "" - -#: includes/fields/class-acf-field-page_link.php:263 -#: includes/fields/class-acf-field-post_object.php:257 -#: includes/fields/class-acf-field-taxonomy.php:930 -msgid "Parent" -msgstr "Superior" - -#: includes/fields/class-acf-field-wysiwyg.php:390 -msgid "TinyMCE will not be initialized until field is clicked" -msgstr "TinyMCE no se iniciará hasta que se haga clic en el campo" - -#: includes/fields/class-acf-field-wysiwyg.php:389 -msgid "Delay Initialization" -msgstr "" - -#: includes/fields/class-acf-field-wysiwyg.php:378 -msgid "Show Media Upload Buttons" -msgstr "" - -#: includes/fields/class-acf-field-wysiwyg.php:362 -msgid "Toolbar" -msgstr "Barra de herramientas" - -#: includes/fields/class-acf-field-wysiwyg.php:354 -msgid "Text Only" -msgstr "Sólo texto" - -#: includes/fields/class-acf-field-wysiwyg.php:353 -msgid "Visual Only" -msgstr "Sólo visual" - -#: includes/fields/class-acf-field-wysiwyg.php:352 -msgid "Visual & Text" -msgstr "Visual y Texto" - -#: includes/fields/class-acf-field-wysiwyg.php:347 -msgid "Tabs" -msgstr "Pestañas" - -#: includes/fields/class-acf-field-wysiwyg.php:285 -msgid "Click to initialize TinyMCE" -msgstr "Haz clic para iniciar TinyMCE" - -#: includes/fields/class-acf-field-wysiwyg.php:279 -msgctxt "Name for the Text editor tab (formerly HTML)" -msgid "Text" -msgstr "Texto" - -#: includes/fields/class-acf-field-wysiwyg.php:278 -msgid "Visual" -msgstr "Visual" - -#: includes/fields/class-acf-field-text.php:189 -#: includes/fields/class-acf-field-textarea.php:236 -msgid "Value must not exceed %d characters" -msgstr "El valor no debe exceder los %d caracteres" - -#: includes/fields/class-acf-field-text.php:124 -#: includes/fields/class-acf-field-textarea.php:124 -msgid "Leave blank for no limit" -msgstr "Déjalo en blanco para ilimitado" - -#: includes/fields/class-acf-field-text.php:123 -#: includes/fields/class-acf-field-textarea.php:123 -msgid "Character Limit" -msgstr "Límite de caracteres" - -#: includes/fields/class-acf-field-email.php:158 -#: includes/fields/class-acf-field-number.php:209 -#: includes/fields/class-acf-field-password.php:105 -#: includes/fields/class-acf-field-range.php:239 -#: includes/fields/class-acf-field-text.php:164 -msgid "Appears after the input" -msgstr "Aparece después del campo" - -#: includes/fields/class-acf-field-email.php:157 -#: includes/fields/class-acf-field-number.php:208 -#: includes/fields/class-acf-field-password.php:104 -#: includes/fields/class-acf-field-range.php:238 -#: includes/fields/class-acf-field-text.php:163 -msgid "Append" -msgstr "Anexar" - -#: includes/fields/class-acf-field-email.php:148 -#: includes/fields/class-acf-field-number.php:199 -#: includes/fields/class-acf-field-password.php:95 -#: includes/fields/class-acf-field-range.php:229 -#: includes/fields/class-acf-field-text.php:154 -msgid "Appears before the input" -msgstr "Aparece antes del campo" - -#: includes/fields/class-acf-field-email.php:147 -#: includes/fields/class-acf-field-number.php:198 -#: includes/fields/class-acf-field-password.php:94 -#: includes/fields/class-acf-field-range.php:228 -#: includes/fields/class-acf-field-text.php:153 -msgid "Prepend" -msgstr "Anteponer" - -#: includes/fields/class-acf-field-email.php:138 -#: includes/fields/class-acf-field-number.php:179 -#: includes/fields/class-acf-field-password.php:85 -#: includes/fields/class-acf-field-text.php:144 -#: includes/fields/class-acf-field-textarea.php:156 -#: includes/fields/class-acf-field-url.php:122 -msgid "Appears within the input" -msgstr "Aparece en el campo" - -#: includes/fields/class-acf-field-email.php:137 -#: includes/fields/class-acf-field-number.php:178 -#: includes/fields/class-acf-field-password.php:84 -#: includes/fields/class-acf-field-text.php:143 -#: includes/fields/class-acf-field-textarea.php:155 -#: includes/fields/class-acf-field-url.php:121 -msgid "Placeholder Text" -msgstr "Marcador de posición" - -#: includes/fields/class-acf-field-button-group.php:158 -#: includes/fields/class-acf-field-email.php:118 -#: includes/fields/class-acf-field-number.php:129 -#: includes/fields/class-acf-field-radio.php:203 -#: includes/fields/class-acf-field-range.php:165 -#: includes/fields/class-acf-field-text.php:104 -#: includes/fields/class-acf-field-textarea.php:104 -#: includes/fields/class-acf-field-url.php:102 -#: includes/fields/class-acf-field-wysiwyg.php:312 -msgid "Appears when creating a new post" -msgstr "Aparece cuando se está creando una nueva entrada" - -#: includes/fields/class-acf-field-text.php:25 -msgid "Text" -msgstr "Texto" - -#: includes/fields/class-acf-field-relationship.php:794 -msgid "%1$s requires at least %2$s selection" -msgid_plural "%1$s requires at least %2$s selections" -msgstr[0] "%1$s necesita al menos %2$s selección" -msgstr[1] "%1$s necesita al menos %2$s selecciones" - -#: includes/fields/class-acf-field-post_object.php:417 -#: includes/fields/class-acf-field-relationship.php:644 -msgid "Post ID" -msgstr "ID de publicación" - -#: includes/fields/class-acf-field-post_object.php:17 -#: includes/fields/class-acf-field-post_object.php:416 -#: includes/fields/class-acf-field-relationship.php:643 -msgid "Post Object" -msgstr "Objeto de publicación" - -#: includes/fields/class-acf-field-relationship.php:676 -msgid "Maximum Posts" -msgstr "" - -#: includes/fields/class-acf-field-relationship.php:666 -msgid "Minimum Posts" -msgstr "" - -#: includes/admin/views/acf-field-group/options.php:183 -#: includes/admin/views/acf-post-type/advanced-settings.php:29 -#: includes/fields/class-acf-field-relationship.php:701 -msgid "Featured Image" -msgstr "Imagen destacada" - -#: includes/fields/class-acf-field-relationship.php:697 -msgid "Selected elements will be displayed in each result" -msgstr "Los elementos seleccionados se mostrarán en cada resultado" - -#: includes/fields/class-acf-field-relationship.php:696 -msgid "Elements" -msgstr "Elementos" - -#: includes/fields/class-acf-field-relationship.php:630 -#: includes/fields/class-acf-field-taxonomy.php:20 -#: includes/fields/class-acf-field-taxonomy.php:692 -#: includes/locations/class-acf-location-taxonomy.php:22 -msgid "Taxonomy" -msgstr "Taxonomía" - -#: includes/fields/class-acf-field-relationship.php:629 -#: includes/locations/class-acf-location-post-type.php:22 -#: includes/post-types/class-acf-post-type.php:92 -msgid "Post Type" -msgstr "Tipo de contenido" - -#: includes/fields/class-acf-field-relationship.php:623 -msgid "Filters" -msgstr "Filtros" - -#: includes/fields/class-acf-field-page_link.php:499 -#: includes/fields/class-acf-field-post_object.php:404 -#: includes/fields/class-acf-field-relationship.php:616 -msgid "All taxonomies" -msgstr "Todas las taxonomías" - -#: includes/fields/class-acf-field-page_link.php:491 -#: includes/fields/class-acf-field-post_object.php:396 -#: includes/fields/class-acf-field-relationship.php:608 -msgid "Filter by Taxonomy" -msgstr "Filtrar por taxonomía" - -#: includes/fields/class-acf-field-page_link.php:469 -#: includes/fields/class-acf-field-post_object.php:374 -#: includes/fields/class-acf-field-relationship.php:586 -msgid "All post types" -msgstr "Todos los tipos de contenido" - -#: includes/fields/class-acf-field-page_link.php:461 -#: includes/fields/class-acf-field-post_object.php:366 -#: includes/fields/class-acf-field-relationship.php:578 -msgid "Filter by Post Type" -msgstr "Filtrar por tipo de contenido" - -#: includes/fields/class-acf-field-relationship.php:476 -msgid "Search..." -msgstr "Buscar..." - -#: includes/fields/class-acf-field-relationship.php:406 -msgid "Select taxonomy" -msgstr "Selecciona taxonomía" - -#: includes/fields/class-acf-field-relationship.php:397 -msgid "Select post type" -msgstr "Seleccionar tipo de contenido" - -#: includes/fields/class-acf-field-relationship.php:61 -#: assets/build/js/acf-input.js:3930 assets/build/js/acf-input.js:4214 -msgid "No matches found" -msgstr "No se han encontrado coincidencias" - -#: includes/fields/class-acf-field-relationship.php:60 -#: assets/build/js/acf-input.js:3913 assets/build/js/acf-input.js:4193 -msgid "Loading" -msgstr "Cargando" - -#: includes/fields/class-acf-field-relationship.php:59 -#: assets/build/js/acf-input.js:3818 assets/build/js/acf-input.js:4084 -msgid "Maximum values reached ( {max} values )" -msgstr "Valores máximos alcanzados ( {max} valores )" - -#: includes/fields/class-acf-field-relationship.php:17 -msgid "Relationship" -msgstr "Relación" - -#: includes/fields/class-acf-field-file.php:291 -#: includes/fields/class-acf-field-image.php:317 -msgid "Comma separated list. Leave blank for all types" -msgstr "Lista separada por comas. Déjalo en blanco para todos los tipos" - -#: includes/fields/class-acf-field-file.php:290 -#: includes/fields/class-acf-field-image.php:316 -msgid "Allowed File Types" -msgstr "" - -#: includes/fields/class-acf-field-file.php:278 -#: includes/fields/class-acf-field-image.php:280 -msgid "Maximum" -msgstr "Máximo" - -#: includes/fields/class-acf-field-file.php:154 -#: includes/fields/class-acf-field-file.php:270 -#: includes/fields/class-acf-field-file.php:282 -#: includes/fields/class-acf-field-image.php:271 -#: includes/fields/class-acf-field-image.php:307 -msgid "File size" -msgstr "Tamaño del archivo" - -#: includes/fields/class-acf-field-image.php:245 -#: includes/fields/class-acf-field-image.php:281 -msgid "Restrict which images can be uploaded" -msgstr "Restringir que las imágenes se pueden subir" - -#: includes/fields/class-acf-field-file.php:266 -#: includes/fields/class-acf-field-image.php:244 -msgid "Minimum" -msgstr "Mínimo" - -#: includes/fields/class-acf-field-file.php:235 -#: includes/fields/class-acf-field-image.php:210 -msgid "Uploaded to post" -msgstr "Subidos al contenido" - -#: includes/fields/class-acf-field-file.php:234 -#: includes/fields/class-acf-field-image.php:209 -#: includes/locations/class-acf-location-attachment.php:73 -#: includes/locations/class-acf-location-comment.php:61 -#: includes/locations/class-acf-location-nav-menu.php:74 -#: includes/locations/class-acf-location-taxonomy.php:63 -#: includes/locations/class-acf-location-user-form.php:71 -#: includes/locations/class-acf-location-user-role.php:78 -#: includes/locations/class-acf-location-widget.php:65 -msgid "All" -msgstr "Todos" - -#: includes/fields/class-acf-field-file.php:229 -#: includes/fields/class-acf-field-image.php:204 -msgid "Limit the media library choice" -msgstr "Limitar las opciones de la biblioteca de medios" - -#: includes/fields/class-acf-field-file.php:228 -#: includes/fields/class-acf-field-image.php:203 -msgid "Library" -msgstr "Biblioteca" - -#: includes/fields/class-acf-field-image.php:336 -msgid "Preview Size" -msgstr "Tamaño de vista previa" - -#: includes/fields/class-acf-field-image.php:195 -msgid "Image ID" -msgstr "ID de imagen" - -#: includes/fields/class-acf-field-image.php:194 -msgid "Image URL" -msgstr "URL de imagen" - -#: includes/fields/class-acf-field-image.php:193 -msgid "Image Array" -msgstr "Array de imágenes" - -#: includes/fields/class-acf-field-button-group.php:168 -#: includes/fields/class-acf-field-checkbox.php:372 -#: includes/fields/class-acf-field-file.php:213 -#: includes/fields/class-acf-field-link.php:171 -#: includes/fields/class-acf-field-radio.php:213 -msgid "Specify the returned value on front end" -msgstr "Especificar el valor devuelto en la web" - -#: includes/fields/class-acf-field-button-group.php:167 -#: includes/fields/class-acf-field-checkbox.php:371 -#: includes/fields/class-acf-field-file.php:212 -#: includes/fields/class-acf-field-link.php:170 -#: includes/fields/class-acf-field-radio.php:212 -#: includes/fields/class-acf-field-taxonomy.php:736 -msgid "Return Value" -msgstr "Valor de retorno" - -#: includes/fields/class-acf-field-image.php:162 -msgid "Add Image" -msgstr "Añadir imagen" - -#: includes/fields/class-acf-field-image.php:162 -msgid "No image selected" -msgstr "No hay ninguna imagen seleccionada" - -#: includes/assets.php:352 includes/fields/class-acf-field-file.php:162 -#: includes/fields/class-acf-field-image.php:142 -#: includes/fields/class-acf-field-link.php:145 assets/build/js/acf.js:1563 -#: assets/build/js/acf.js:1657 -msgid "Remove" -msgstr "Quitar" - -#: includes/admin/views/acf-field-group/field.php:76 -#: includes/fields/class-acf-field-file.php:160 -#: includes/fields/class-acf-field-image.php:140 -#: includes/fields/class-acf-field-link.php:145 -msgid "Edit" -msgstr "Editar" - -#: includes/fields/class-acf-field-image.php:70 includes/media.php:55 -#: assets/build/js/acf-input.js:6837 assets/build/js/acf-input.js:7320 -msgid "All images" -msgstr "Todas las imágenes" - -#: includes/fields/class-acf-field-image.php:69 -#: assets/build/js/acf-input.js:3181 assets/build/js/acf-input.js:3399 -msgid "Update Image" -msgstr "Actualizar imagen" - -#: includes/fields/class-acf-field-image.php:68 -#: assets/build/js/acf-input.js:3180 assets/build/js/acf-input.js:3398 -msgid "Edit Image" -msgstr "Editar imagen" - -#: includes/fields/class-acf-field-image.php:67 -#: assets/build/js/acf-input.js:3156 assets/build/js/acf-input.js:3373 -msgid "Select Image" -msgstr "Seleccionar imagen" - -#: includes/fields/class-acf-field-image.php:25 -msgid "Image" -msgstr "Imagen" - -#: includes/fields/class-acf-field-message.php:125 -msgid "Allow HTML markup to display as visible text instead of rendering" -msgstr "" -"Permitir que el maquetado HTML se muestre como texto visible en vez de " -"interpretarlo" - -#: includes/fields/class-acf-field-message.php:124 -msgid "Escape HTML" -msgstr "Escapar HTML" - -#: includes/fields/class-acf-field-message.php:116 -#: includes/fields/class-acf-field-textarea.php:172 -msgid "No Formatting" -msgstr "Sin formato" - -#: includes/fields/class-acf-field-message.php:115 -#: includes/fields/class-acf-field-textarea.php:171 -msgid "Automatically add <br>" -msgstr "Añadir <br> automáticamente" - -#: includes/fields/class-acf-field-message.php:114 -#: includes/fields/class-acf-field-textarea.php:170 -msgid "Automatically add paragraphs" -msgstr "Añadir párrafos automáticamente" - -#: includes/fields/class-acf-field-message.php:110 -#: includes/fields/class-acf-field-textarea.php:166 -msgid "Controls how new lines are rendered" -msgstr "Controla cómo se muestran los saltos de línea" - -#: includes/fields/class-acf-field-message.php:109 -#: includes/fields/class-acf-field-textarea.php:165 -msgid "New Lines" -msgstr "Nuevas líneas" - -#: includes/fields/class-acf-field-date_picker.php:232 -#: includes/fields/class-acf-field-date_time_picker.php:220 -msgid "Week Starts On" -msgstr "La semana comienza el" - -#: includes/fields/class-acf-field-date_picker.php:201 -msgid "The format used when saving a value" -msgstr "El formato utilizado cuando se guarda un valor" - -#: includes/fields/class-acf-field-date_picker.php:200 -msgid "Save Format" -msgstr "Guardar formato" - -#: includes/fields/class-acf-field-date_picker.php:67 -msgctxt "Date Picker JS weekHeader" -msgid "Wk" -msgstr "Sem" - -#: includes/fields/class-acf-field-date_picker.php:66 -msgctxt "Date Picker JS prevText" -msgid "Prev" -msgstr "Anterior" - -#: includes/fields/class-acf-field-date_picker.php:65 -msgctxt "Date Picker JS nextText" -msgid "Next" -msgstr "Siguiente" - -#: includes/fields/class-acf-field-date_picker.php:64 -msgctxt "Date Picker JS currentText" -msgid "Today" -msgstr "Hoy" - -#: includes/fields/class-acf-field-date_picker.php:63 -msgctxt "Date Picker JS closeText" -msgid "Done" -msgstr "Listo" - -#: includes/fields/class-acf-field-date_picker.php:25 -msgid "Date Picker" -msgstr "Selector de fecha" - -#: includes/fields/class-acf-field-image.php:248 -#: includes/fields/class-acf-field-image.php:284 -#: includes/fields/class-acf-field-oembed.php:268 -msgid "Width" -msgstr "Ancho" - -#: includes/fields/class-acf-field-oembed.php:265 -#: includes/fields/class-acf-field-oembed.php:277 -msgid "Embed Size" -msgstr "Tamaño de incrustación" - -#: includes/fields/class-acf-field-oembed.php:222 -msgid "Enter URL" -msgstr "Introduce la URL" - -#: includes/fields/class-acf-field-oembed.php:25 -msgid "oEmbed" -msgstr "oEmbed" - -#: includes/fields/class-acf-field-true_false.php:184 -msgid "Text shown when inactive" -msgstr "Texto mostrado cuando está inactivo" - -#: includes/fields/class-acf-field-true_false.php:183 -msgid "Off Text" -msgstr "Texto desactivado" - -#: includes/fields/class-acf-field-true_false.php:168 -msgid "Text shown when active" -msgstr "Texto mostrado cuando está activo" - -#: includes/fields/class-acf-field-true_false.php:167 -msgid "On Text" -msgstr "Texto activado" - -#: includes/fields/class-acf-field-select.php:450 -#: includes/fields/class-acf-field-true_false.php:199 -msgid "Stylized UI" -msgstr "" - -#: includes/fields/class-acf-field-button-group.php:157 -#: includes/fields/class-acf-field-checkbox.php:361 -#: includes/fields/class-acf-field-color_picker.php:156 -#: includes/fields/class-acf-field-email.php:117 -#: includes/fields/class-acf-field-number.php:128 -#: includes/fields/class-acf-field-radio.php:202 -#: includes/fields/class-acf-field-range.php:164 -#: includes/fields/class-acf-field-select.php:380 -#: includes/fields/class-acf-field-text.php:103 -#: includes/fields/class-acf-field-textarea.php:103 -#: includes/fields/class-acf-field-true_false.php:147 -#: includes/fields/class-acf-field-url.php:101 -#: includes/fields/class-acf-field-wysiwyg.php:311 -msgid "Default Value" -msgstr "Valor por defecto" - -#: includes/fields/class-acf-field-true_false.php:138 -msgid "Displays text alongside the checkbox" -msgstr "Muestra el texto junto a la casilla de verificación" - -#: includes/fields/class-acf-field-message.php:26 -#: includes/fields/class-acf-field-message.php:99 -#: includes/fields/class-acf-field-true_false.php:137 -msgid "Message" -msgstr "Mensaje" - -#: includes/assets.php:351 includes/fields/class-acf-field-true_false.php:86 -#: includes/fields/class-acf-field-true_false.php:187 -#: assets/build/js/acf.js:1740 assets/build/js/acf.js:1857 -msgid "No" -msgstr "No" - -#: includes/assets.php:350 includes/fields/class-acf-field-true_false.php:83 -#: includes/fields/class-acf-field-true_false.php:171 -#: assets/build/js/acf.js:1739 assets/build/js/acf.js:1856 -msgid "Yes" -msgstr "Sí" - -#: includes/fields/class-acf-field-true_false.php:25 -msgid "True / False" -msgstr "Verdadero / Falso" - -#: includes/fields/class-acf-field-group.php:474 -msgid "Row" -msgstr "Fila" - -#: includes/fields/class-acf-field-group.php:473 -msgid "Table" -msgstr "Tabla" - -#: includes/admin/post-types/admin-field-group.php:140 -#: includes/fields/class-acf-field-group.php:472 -msgid "Block" -msgstr "Bloque" - -#: includes/fields/class-acf-field-group.php:467 -msgid "Specify the style used to render the selected fields" -msgstr "" -"Especifica el estilo utilizado para representar los campos seleccionados" - -#: includes/fields.php:356 includes/fields/class-acf-field-button-group.php:215 -#: includes/fields/class-acf-field-checkbox.php:435 -#: includes/fields/class-acf-field-group.php:466 -#: includes/fields/class-acf-field-radio.php:286 -msgid "Layout" -msgstr "Estructura" - -#: includes/fields/class-acf-field-group.php:450 -msgid "Sub Fields" -msgstr "Subcampos" - -#: includes/fields/class-acf-field-group.php:25 -msgid "Group" -msgstr "Grupo" - -#: includes/fields/class-acf-field-google-map.php:235 -msgid "Customize the map height" -msgstr "Personalizar la altura del mapa" - -#: includes/fields/class-acf-field-google-map.php:234 -#: includes/fields/class-acf-field-image.php:259 -#: includes/fields/class-acf-field-image.php:295 -#: includes/fields/class-acf-field-oembed.php:280 -msgid "Height" -msgstr "Altura" - -#: includes/fields/class-acf-field-google-map.php:223 -msgid "Set the initial zoom level" -msgstr "Establecer el nivel inicial de zoom" - -#: includes/fields/class-acf-field-google-map.php:222 -msgid "Zoom" -msgstr "Zoom" - -#: includes/fields/class-acf-field-google-map.php:196 -#: includes/fields/class-acf-field-google-map.php:209 -msgid "Center the initial map" -msgstr "Centrar inicialmente el mapa" - -#: includes/fields/class-acf-field-google-map.php:195 -#: includes/fields/class-acf-field-google-map.php:208 -msgid "Center" -msgstr "Centro" - -#: includes/fields/class-acf-field-google-map.php:163 -msgid "Search for address..." -msgstr "Buscar dirección..." - -#: includes/fields/class-acf-field-google-map.php:160 -msgid "Find current location" -msgstr "Encontrar ubicación actual" - -#: includes/fields/class-acf-field-google-map.php:159 -msgid "Clear location" -msgstr "Borrar ubicación" - -#: includes/fields/class-acf-field-google-map.php:158 -#: includes/fields/class-acf-field-relationship.php:628 -msgid "Search" -msgstr "Buscar" - -#: includes/fields/class-acf-field-google-map.php:63 -#: assets/build/js/acf-input.js:2840 assets/build/js/acf-input.js:3026 -msgid "Sorry, this browser does not support geolocation" -msgstr "Lo siento, este navegador no es compatible con la geolocalización" - -#: includes/fields/class-acf-field-google-map.php:25 -msgid "Google Map" -msgstr "Mapa de Google" - -#: includes/fields/class-acf-field-date_picker.php:212 -#: includes/fields/class-acf-field-date_time_picker.php:201 -#: includes/fields/class-acf-field-time_picker.php:132 -msgid "The format returned via template functions" -msgstr "El formato devuelto por de las funciones del tema" - -#: includes/fields/class-acf-field-color_picker.php:180 -#: includes/fields/class-acf-field-date_picker.php:211 -#: includes/fields/class-acf-field-date_time_picker.php:200 -#: includes/fields/class-acf-field-image.php:187 -#: includes/fields/class-acf-field-post_object.php:411 -#: includes/fields/class-acf-field-relationship.php:638 -#: includes/fields/class-acf-field-select.php:391 -#: includes/fields/class-acf-field-time_picker.php:131 -#: includes/fields/class-acf-field-user.php:66 -msgid "Return Format" -msgstr "Formato de retorno" - -#: includes/fields/class-acf-field-date_picker.php:190 -#: includes/fields/class-acf-field-date_picker.php:221 -#: includes/fields/class-acf-field-date_time_picker.php:192 -#: includes/fields/class-acf-field-date_time_picker.php:210 -#: includes/fields/class-acf-field-time_picker.php:123 -#: includes/fields/class-acf-field-time_picker.php:139 -msgid "Custom:" -msgstr "Personalizado:" - -#: includes/fields/class-acf-field-date_picker.php:182 -#: includes/fields/class-acf-field-date_time_picker.php:183 -#: includes/fields/class-acf-field-time_picker.php:116 -msgid "The format displayed when editing a post" -msgstr "El formato mostrado cuando se edita una publicación" - -#: includes/fields/class-acf-field-date_picker.php:181 -#: includes/fields/class-acf-field-date_time_picker.php:182 -#: includes/fields/class-acf-field-time_picker.php:115 -msgid "Display Format" -msgstr "Formato de visualización" - -#: includes/fields/class-acf-field-time_picker.php:25 -msgid "Time Picker" -msgstr "Selector de hora" - -#. translators: counts for inactive field groups -#: acf.php:503 -msgid "Inactive (%s)" -msgid_plural "Inactive (%s)" -msgstr[0] "" -msgstr[1] "" - -#: acf.php:462 -msgid "No Fields found in Trash" -msgstr "No se han encontrado campos en la papelera" - -#: acf.php:461 -msgid "No Fields found" -msgstr "No se han encontrado campos" - -#: acf.php:460 -msgid "Search Fields" -msgstr "Buscar campos" - -#: acf.php:459 -msgid "View Field" -msgstr "Ver campo" - -#: acf.php:458 includes/admin/views/acf-field-group/fields.php:115 -msgid "New Field" -msgstr "Nuevo campo" - -#: acf.php:457 -msgid "Edit Field" -msgstr "Editar campo" - -#: acf.php:456 -msgid "Add New Field" -msgstr "Añadir nuevo campo" - -#: acf.php:454 -msgid "Field" -msgstr "Campo" - -#: acf.php:453 includes/admin/post-types/admin-field-group.php:163 -#: includes/admin/post-types/admin-field-groups.php:119 -#: includes/admin/views/acf-field-group/fields.php:32 -msgid "Fields" -msgstr "Campos" - -#: acf.php:428 -msgid "No Field Groups found in Trash" -msgstr "No se han encontrado grupos de campos en la papelera" - -#: acf.php:427 -msgid "No Field Groups found" -msgstr "No se han encontrado grupos de campos" - -#: acf.php:426 -msgid "Search Field Groups" -msgstr "Buscar grupo de campos" - -#: acf.php:425 -msgid "View Field Group" -msgstr "Ver grupo de campos" - -#: acf.php:424 -msgid "New Field Group" -msgstr "Nuevo grupo de campos" - -#: acf.php:423 -msgid "Edit Field Group" -msgstr "Editar grupo de campos" - -#: acf.php:422 -msgid "Add New Field Group" -msgstr "Añadir nuevo grupo de campos" - -#: acf.php:421 acf.php:455 -#: includes/admin/views/acf-post-type/advanced-settings.php:219 -#: includes/admin/views/acf-post-type/advanced-settings.php:221 -#: includes/post-types/class-acf-post-type.php:93 -#: includes/post-types/class-acf-taxonomy.php:92 -msgid "Add New" -msgstr "Añadir nuevo" - -#: acf.php:420 -msgid "Field Group" -msgstr "Grupo de campos" - -#: acf.php:419 includes/admin/post-types/admin-field-groups.php:78 -#: includes/admin/post-types/admin-post-types.php:138 -#: includes/admin/post-types/admin-taxonomies.php:138 -msgid "Field Groups" -msgstr "Grupos de campos" - -#. Description of the plugin -msgid "Customize WordPress with powerful, professional and intuitive fields." -msgstr "Personaliza WordPress con campos potentes, profesionales e intuitivos." - -#. Plugin URI of the plugin -msgid "https://www.advancedcustomfields.com" -msgstr "https://www.advancedcustomfields.com" - -#. Plugin Name of the plugin -#: acf.php:94 -msgid "Advanced Custom Fields" -msgstr "Advanced Custom Fields" diff --git a/lang/acf-es_ES.mo b/lang/acf-es_ES.mo deleted file mode 100644 index fdaed94..0000000 Binary files a/lang/acf-es_ES.mo and /dev/null differ diff --git a/lang/acf-es_ES.po b/lang/acf-es_ES.po deleted file mode 100644 index ea6e318..0000000 --- a/lang/acf-es_ES.po +++ /dev/null @@ -1,6498 +0,0 @@ -# Advanced Custom Fields Translations are a combination of translate.wordpress.org contributions, -# combined with user contributed strings for the PRO version. -# Translations from translate.wordpress.org take priority over translations in this file. -# translate.wordpress.org contributions are synced at the time of each release. -# -# If you would like to contribute translations, please visit -# https://translate.wordpress.org/projects/wp-plugins/advanced-custom-fields/stable/ -# -# For additional ACF PRO strings, please submit a pull request over on the ACF GitHub repo at -# http://github.com/advancedcustomfields/acf using the .pot (and any existing .po) files in /lang/pro/ -# -# This file is distributed under the same license as Advanced Custom Fields. -msgid "" -msgstr "" -"PO-Revision-Date: 2023-11-28T09:14:32+00:00\n" -"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n" -"Language: es_ES\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: gettext\n" -"Project-Id-Version: Advanced Custom Fields\n" - -#: includes/admin/views/global/navigation.php:221 -msgid "Renew ACF PRO License" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:17 -msgid "Renew License" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:14 -msgid "Manage License" -msgstr "" - -#: includes/admin/views/acf-field-group/options.php:102 -msgid "'High' position not supported in the Block Editor" -msgstr "" - -#: includes/admin/views/options-page-preview.php:30 -msgid "Upgrade to ACF PRO" -msgstr "Actualizar a ACF PRO" - -#. translators: %s URL to ACF options pages documentation -#: includes/admin/views/options-page-preview.php:7 -msgid "" -"ACF options pages are custom admin " -"pages for managing global settings via fields. You can create multiple pages " -"and sub-pages." -msgstr "" -"Las páginas de opciones de ACF son " -"páginas de administrador personalizadas para gestionar ajustes globales a " -"través de campos. Puedes crear múltiples páginas y subpáginas." - -#: includes/admin/views/global/header.php:35 -msgid "Add Options Page" -msgstr "Añadir página de opciones" - -#: includes/admin/views/acf-post-type/advanced-settings.php:703 -msgid "In the editor used as the placeholder of the title." -msgstr "En el editor utilizado como marcador de posición del título." - -#: includes/admin/views/acf-post-type/advanced-settings.php:702 -msgid "Title Placeholder" -msgstr "Marcador de posición del título" - -#: includes/admin/views/global/navigation.php:97 -msgid "4 Months Free" -msgstr "4 meses gratis" - -#. translators: %s - A singular label for a post type or taxonomy. -#: includes/admin/views/global/form-top.php:56 -msgid " (Duplicated from %s)" -msgstr " (Duplicado de %s)" - -#: includes/admin/tools/class-acf-admin-tool-export.php:298 -msgid "Select Options Pages" -msgstr "Seleccionar páginas de opciones" - -#: includes/admin/post-types/admin-taxonomy.php:107 -msgid "Duplicate taxonomy" -msgstr "Duplicar texonomía" - -#: includes/admin/post-types/admin-post-type.php:106 -#: includes/admin/post-types/admin-taxonomy.php:106 -msgid "Create taxonomy" -msgstr "Crear taxonomía" - -#: includes/admin/post-types/admin-post-type.php:105 -msgid "Duplicate post type" -msgstr "Duplicar tipo de contenido" - -#: includes/admin/post-types/admin-post-type.php:104 -#: includes/admin/post-types/admin-taxonomy.php:108 -msgid "Create post type" -msgstr "Crear tipo de contenido" - -#: includes/admin/post-types/admin-post-type.php:103 -#: includes/admin/post-types/admin-taxonomy.php:105 -msgid "Link field groups" -msgstr "Enlazar grupos de campos" - -#: includes/admin/post-types/admin-post-type.php:102 -#: includes/admin/post-types/admin-taxonomy.php:104 -msgid "Add fields" -msgstr "Añadir campos" - -#: includes/admin/post-types/admin-field-group.php:121 -#: assets/build/js/acf-field-group.js:2753 -#: assets/build/js/acf-field-group.js:3236 -msgid "This Field" -msgstr "Este campo" - -#: includes/admin/admin.php:267 -msgid "ACF PRO" -msgstr "ACF PRO" - -#: includes/admin/admin.php:265 -msgid "Feedback" -msgstr "Comentarios" - -#: includes/admin/admin.php:263 -msgid "Support" -msgstr "Soporte" - -#. translators: This text is prepended by a link to ACF's website, and appended -#. by a link to WP Engine's website. -#: includes/admin/admin.php:238 -msgid "is developed and maintained by" -msgstr "es desarrollado y mantenido por" - -#. translators: %s - either "post type" or "taxonomy" -#: includes/admin/admin-internal-post-type.php:321 -msgid "Add this %s to the location rules of the selected field groups." -msgstr "" -"Añadir %s actual a las reglas de localización de los grupos de campos " -"seleccionados." - -#. translators: %s the URL to ACF's bidirectional relationship documentation -#: includes/acf-bidirectional-functions.php:271 -msgid "" -"Enabling the bidirectional setting allows you to update a value in the " -"target fields for each value selected for this field, adding or removing the " -"Post ID, Taxonomy ID or User ID of the item being updated. For more " -"information, please read the documentation." -msgstr "" -"Activar el ajuste bidireccional te permite actualizar un valor en los campos " -"de destino por cada valor seleccionado para este campo, añadiendo o " -"eliminando el ID de entrada, el ID de taxonomía o el ID de usuario del " -"elemento que se está actualizando. Para más información, lee la documentación." - -#: includes/acf-bidirectional-functions.php:247 -msgid "" -"Select field(s) to store the reference back to the item being updated. You " -"may select this field. Target fields must be compatible with where this " -"field is being displayed. For example, if this field is displayed on a " -"Taxonomy, your target field should be of type Taxonomy" -msgstr "" -"Selecciona el/los campo/s para almacenar la referencia al artículo que se " -"está actualizando. Puedes seleccionar este campo. Los campos de destino " -"deben ser compatibles con el lugar donde se está mostrando este campo. Por " -"ejemplo, si este campo se muestra en una taxonomía, tu campo de destino debe " -"ser del tipo taxonomía" - -#: includes/acf-bidirectional-functions.php:246 -msgid "Target Field" -msgstr "Campo de destino" - -#: includes/acf-bidirectional-functions.php:220 -msgid "Update a field on the selected values, referencing back to this ID" -msgstr "" -"Actualiza un campo en los valores seleccionados, haciendo referencia a este " -"ID" - -#: includes/acf-bidirectional-functions.php:219 -msgid "Bidirectional" -msgstr "Bidireccional" - -#. translators: %s A field type name, such as "Relationship" -#: includes/acf-bidirectional-functions.php:192 -msgid "%s Field" -msgstr "Campo %s" - -#: includes/fields/class-acf-field-page_link.php:517 -#: includes/fields/class-acf-field-post_object.php:426 -#: includes/fields/class-acf-field-select.php:407 -#: includes/fields/class-acf-field-user.php:82 -msgid "Select Multiple" -msgstr "Seleccionar varios" - -#: includes/admin/views/global/navigation.php:233 -msgid "WP Engine logo" -msgstr "Logotipo de WP Engine" - -#: includes/admin/views/acf-taxonomy/basic-settings.php:58 -msgid "Lower case letters, underscores and dashes only, Max 32 characters." -msgstr "Solo minúsculas, subrayados y guiones. Máximo 32 caracteres." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1136 -msgid "The capability name for assigning terms of this taxonomy." -msgstr "El nombre de la capacidad para asignar términos de esta taxonomía." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1135 -msgid "Assign Terms Capability" -msgstr "Capacidad de asignar términos" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1119 -msgid "The capability name for deleting terms of this taxonomy." -msgstr "El nombre de la capacidad para borrar términos de esta taxonomía." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1118 -msgid "Delete Terms Capability" -msgstr "Capacidad de eliminar términos" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1102 -msgid "The capability name for editing terms of this taxonomy." -msgstr "El nombre de la capacidad para editar términos de esta taxonomía." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1101 -msgid "Edit Terms Capability" -msgstr "Capacidad de editar términos" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1085 -msgid "The capability name for managing terms of this taxonomy." -msgstr "El nombre de la capacidad para gestionar términos de esta taxonomía." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1084 -msgid "Manage Terms Capability" -msgstr "Gestionar las capacidades para términos" - -#: includes/admin/views/acf-post-type/advanced-settings.php:886 -msgid "" -"Sets whether posts should be excluded from search results and taxonomy " -"archive pages." -msgstr "" -"Establece si las entradas deben excluirse de los resultados de búsqueda y de " -"las páginas de archivo de taxonomía." - -#: includes/admin/views/acf-field-group/pro-features.php:74 -msgid "More Tools from WP Engine" -msgstr "Más herramientas de WP Engine" - -#. translators: %s - WP Engine logo -#: includes/admin/views/acf-field-group/pro-features.php:69 -msgid "Built for those that build with WordPress, by the team at %s" -msgstr "Construido para los que construyen con WordPress, por el equipo de %s" - -#: includes/admin/views/acf-field-group/pro-features.php:6 -msgid "View Pricing & Upgrade" -msgstr "Ver precios y actualizar" - -#: includes/admin/views/acf-field-group/pro-features.php:3 -#: includes/admin/views/options-page-preview.php:29 -msgid "Learn More" -msgstr "Aprender más" - -#: includes/admin/views/acf-field-group/pro-features.php:28 -msgid "" -"Speed up your workflow and develop better websites with features like ACF " -"Blocks and Options Pages, and sophisticated field types like Repeater, " -"Flexible Content, Clone, and Gallery." -msgstr "" -"Acelera tu flujo de trabajo y desarrolla mejores sitios web con funciones " -"como Bloques ACF y Páginas de opciones, y sofisticados tipos de campo como " -"Repetidor, Contenido Flexible, Clonar y Galería." - -#: includes/admin/views/acf-field-group/pro-features.php:2 -msgid "Unlock Advanced Features and Build Even More with ACF PRO" -msgstr "Desbloquea funciones avanzadas y construye aún más con ACF PRO" - -#. translators: %s - singular label of post type/taxonomy, i.e. "Movie"/"Genre" -#: includes/admin/views/global/form-top.php:19 -msgid "%s fields" -msgstr "%s campos" - -#: includes/admin/post-types/admin-taxonomies.php:293 -msgid "No terms" -msgstr "Sin términos" - -#: includes/admin/post-types/admin-taxonomies.php:266 -msgid "No post types" -msgstr "Sin tipos de contenido" - -#: includes/admin/post-types/admin-post-types.php:289 -msgid "No posts" -msgstr "Sin entradas" - -#: includes/admin/post-types/admin-post-types.php:263 -msgid "No taxonomies" -msgstr "Sin taxonomías" - -#: includes/admin/post-types/admin-post-types.php:208 -#: includes/admin/post-types/admin-taxonomies.php:208 -msgid "No field groups" -msgstr "Sin grupos de campos" - -#: includes/admin/post-types/admin-field-groups.php:281 -msgid "No fields" -msgstr "Sin campos" - -#: includes/admin/post-types/admin-field-groups.php:154 -#: includes/admin/post-types/admin-post-types.php:172 -#: includes/admin/post-types/admin-taxonomies.php:172 -msgid "No description" -msgstr "Sin descripción" - -#: includes/fields/class-acf-field-page_link.php:484 -#: includes/fields/class-acf-field-post_object.php:389 -#: includes/fields/class-acf-field-relationship.php:601 -msgid "Any post status" -msgstr "Cualquier estado de entrada" - -#: includes/post-types/class-acf-taxonomy.php:284 -msgid "" -"This taxonomy key is already in use by another taxonomy registered outside " -"of ACF and cannot be used." -msgstr "" -"Esta clave de taxonomía ya está siendo utilizada por otra taxonomía " -"registrada fuera de ACF y no puede utilizarse." - -#: includes/post-types/class-acf-taxonomy.php:279 -msgid "" -"This taxonomy key is already in use by another taxonomy in ACF and cannot be " -"used." -msgstr "" -"Esta clave de taxonomía ya está siendo utilizada por otra taxonomía en ACF y " -"no puede utilizarse." - -#: includes/post-types/class-acf-taxonomy.php:252 -msgid "" -"The taxonomy key must only contain lower case alphanumeric characters, " -"underscores or dashes." -msgstr "" -"La clave de taxonomía sólo debe contener caracteres alfanuméricos en " -"minúsculas, guiones bajos o guiones." - -#: includes/post-types/class-acf-taxonomy.php:247 -msgid "The taxonomy key must be under 32 characters." -msgstr "La clave taxonómica debe tener menos de 32 caracteres." - -#: includes/post-types/class-acf-taxonomy.php:99 -msgid "No Taxonomies found in Trash" -msgstr "No se han encontrado taxonomías en la papelera" - -#: includes/post-types/class-acf-taxonomy.php:98 -msgid "No Taxonomies found" -msgstr "No se han encontrado taxonomías" - -#: includes/post-types/class-acf-taxonomy.php:97 -msgid "Search Taxonomies" -msgstr "Buscar taxonomías" - -#: includes/post-types/class-acf-taxonomy.php:96 -msgid "View Taxonomy" -msgstr "Ver taxonomía" - -#: includes/post-types/class-acf-taxonomy.php:95 -msgid "New Taxonomy" -msgstr "Nueva taxonomía" - -#: includes/post-types/class-acf-taxonomy.php:94 -msgid "Edit Taxonomy" -msgstr "Editar taxonomía" - -#: includes/post-types/class-acf-taxonomy.php:93 -msgid "Add New Taxonomy" -msgstr "Añadir nueva taxonomía" - -#: includes/post-types/class-acf-post-type.php:100 -msgid "No Post Types found in Trash" -msgstr "No se han encontrado tipos de contenido en la papelera" - -#: includes/post-types/class-acf-post-type.php:99 -msgid "No Post Types found" -msgstr "No se han encontrado tipos de contenido" - -#: includes/post-types/class-acf-post-type.php:98 -msgid "Search Post Types" -msgstr "Buscar tipos de contenido" - -#: includes/post-types/class-acf-post-type.php:97 -msgid "View Post Type" -msgstr "Ver tipo de contenido" - -#: includes/post-types/class-acf-post-type.php:96 -msgid "New Post Type" -msgstr "Nuevo tipo de contenido" - -#: includes/post-types/class-acf-post-type.php:95 -msgid "Edit Post Type" -msgstr "Editar tipo de contenido" - -#: includes/post-types/class-acf-post-type.php:94 -msgid "Add New Post Type" -msgstr "Añadir nuevo tipo de contenido" - -#: includes/post-types/class-acf-post-type.php:361 -msgid "" -"This post type key is already in use by another post type registered outside " -"of ACF and cannot be used." -msgstr "" -"Esta clave de tipo de contenido ya está siendo utilizada por otro tipo de " -"contenido registrado fuera de ACF y no puede utilizarse." - -#: includes/post-types/class-acf-post-type.php:356 -msgid "" -"This post type key is already in use by another post type in ACF and cannot " -"be used." -msgstr "" -"Esta clave de tipo de contenido ya está siendo utilizada por otro tipo de " -"contenido en ACF y no puede utilizarse." - -#. translators: %s a link to WordPress.org's Reserved Terms page -#: includes/post-types/class-acf-post-type.php:335 -#: includes/post-types/class-acf-taxonomy.php:258 -msgid "" -"This field must not be a WordPress reserved " -"term." -msgstr "" -"Este campo no debe ser un término " -"reservado de WordPress." - -#: includes/post-types/class-acf-post-type.php:329 -msgid "" -"The post type key must only contain lower case alphanumeric characters, " -"underscores or dashes." -msgstr "" -"La clave del tipo de contenido sólo debe contener caracteres alfanuméricos " -"en minúsculas, guiones bajos o guiones." - -#: includes/post-types/class-acf-post-type.php:324 -msgid "The post type key must be under 20 characters." -msgstr "La clave del tipo de contenido debe tener menos de 20 caracteres." - -#: includes/fields/class-acf-field-wysiwyg.php:27 -msgid "We do not recommend using this field in ACF Blocks." -msgstr "No recomendamos utilizar este campo en los ACF Blocks." - -#: includes/fields/class-acf-field-wysiwyg.php:27 -msgid "" -"Displays the WordPress WYSIWYG editor as seen in Posts and Pages allowing " -"for a rich text-editing experience that also allows for multimedia content." -msgstr "" -"Muestra el editor WYSIWYG de WordPress tal y como se ve en las Entradas y " -"Páginas, permitiendo una experiencia de edición de texto enriquecida que " -"también permite contenido multimedia." - -#: includes/fields/class-acf-field-wysiwyg.php:25 -msgid "WYSIWYG Editor" -msgstr "Editor WYSIWYG" - -#: includes/fields/class-acf-field-user.php:17 -msgid "" -"Allows the selection of one or more users which can be used to create " -"relationships between data objects." -msgstr "" -"Permite seleccionar uno o varios usuarios que pueden utilizarse para crear " -"relaciones entre objetos de datos." - -#: includes/fields/class-acf-field-url.php:26 -msgid "A text input specifically designed for storing web addresses." -msgstr "" -"Una entrada de texto diseñada específicamente para almacenar direcciones web." - -#: includes/fields/class-acf-field-url.php:25 -msgid "URL" -msgstr "URL" - -#: includes/fields/class-acf-field-true_false.php:27 -msgid "" -"A toggle that allows you to pick a value of 1 or 0 (on or off, true or " -"false, etc). Can be presented as a stylized switch or checkbox." -msgstr "" -"Un conmutador que te permite elegir un valor de 1 ó 0 (encendido o apagado, " -"verdadero o falso, etc.). Puede presentarse como un interruptor estilizado o " -"una casilla de verificación." - -#: includes/fields/class-acf-field-time_picker.php:27 -msgid "" -"An interactive UI for picking a time. The time format can be customized " -"using the field settings." -msgstr "" -"Una interfaz de usuario interactiva para elegir una hora. El formato de la " -"hora se puede personalizar mediante los ajustes del campo." - -#: includes/fields/class-acf-field-textarea.php:26 -msgid "A basic textarea input for storing paragraphs of text." -msgstr "Una entrada de área de texto básica para almacenar párrafos de texto." - -#: includes/fields/class-acf-field-text.php:26 -msgid "A basic text input, useful for storing single string values." -msgstr "" -"Una entrada de texto básica, útil para almacenar valores de una sola cadena." - -#: includes/fields/class-acf-field-taxonomy.php:22 -msgid "" -"Allows the selection of one or more taxonomy terms based on the criteria and " -"options specified in the fields settings." -msgstr "" -"Permite seleccionar uno o varios términos de taxonomía en función de los " -"criterios y opciones especificados en los ajustes de los campos." - -#: includes/fields/class-acf-field-tab.php:28 -msgid "" -"Allows you to group fields into tabbed sections in the edit screen. Useful " -"for keeping fields organized and structured." -msgstr "" -"Te permite agrupar campos en secciones con pestañas en la pantalla de " -"edición. Útil para mantener los campos organizados y estructurados." - -#: includes/fields/class-acf-field-select.php:27 -msgid "A dropdown list with a selection of choices that you specify." -msgstr "" -"Una lista desplegable con una selección de opciones que tú especifiques." - -#: includes/fields/class-acf-field-relationship.php:19 -msgid "" -"A dual-column interface to select one or more posts, pages, or custom post " -"type items to create a relationship with the item that you're currently " -"editing. Includes options to search and filter." -msgstr "" -"Una interfaz de doble columna para seleccionar una o más entradas, páginas o " -"elementos de tipo contenido personalizado para crear una relación con el " -"elemento que estás editando en ese momento. Incluye opciones para buscar y " -"filtrar." - -#: includes/fields/class-acf-field-range.php:26 -msgid "" -"An input for selecting a numerical value within a specified range using a " -"range slider element." -msgstr "" -"Un campo para seleccionar un valor numérico dentro de un rango especificado " -"mediante un elemento deslizante de rango." - -#: includes/fields/class-acf-field-radio.php:27 -msgid "" -"A group of radio button inputs that allows the user to make a single " -"selection from values that you specify." -msgstr "" -"Un grupo de entradas de botón de opción que permite al usuario hacer una " -"única selección entre los valores que especifiques." - -#: includes/fields/class-acf-field-post_object.php:19 -msgid "" -"An interactive and customizable UI for picking one or many posts, pages or " -"post type items with the option to search. " -msgstr "" -"Una interfaz de usuario interactiva y personalizable para seleccionar una o " -"varias entradas, páginas o elementos de tipo contenido con la opción de " -"buscar. " - -#: includes/fields/class-acf-field-password.php:26 -msgid "An input for providing a password using a masked field." -msgstr "" -"Una entrada para proporcionar una contraseña utilizando un campo enmascarado." - -#: includes/fields/class-acf-field-page_link.php:476 -#: includes/fields/class-acf-field-post_object.php:381 -#: includes/fields/class-acf-field-relationship.php:593 -msgid "Filter by Post Status" -msgstr "Filtrar por estado de publicación" - -#: includes/fields/class-acf-field-page_link.php:27 -msgid "" -"An interactive dropdown to select one or more posts, pages, custom post type " -"items or archive URLs, with the option to search." -msgstr "" -"Un desplegable interactivo para seleccionar una o más entradas, páginas, " -"elementos de tipo contenido personalizad o URL de archivo, con la opción de " -"buscar." - -#: includes/fields/class-acf-field-oembed.php:27 -msgid "" -"An interactive component for embedding videos, images, tweets, audio and " -"other content by making use of the native WordPress oEmbed functionality." -msgstr "" -"Un componente interactivo para incrustar vídeos, imágenes, tweets, audio y " -"otros contenidos haciendo uso de la funcionalidad oEmbed nativa de WordPress." - -#: includes/fields/class-acf-field-number.php:26 -msgid "An input limited to numerical values." -msgstr "Una entrada limitada a valores numéricos." - -#: includes/fields/class-acf-field-message.php:28 -msgid "" -"Used to display a message to editors alongside other fields. Useful for " -"providing additional context or instructions around your fields." -msgstr "" -"Se utiliza para mostrar un mensaje a los editores junto a otros campos. Es " -"útil para proporcionar contexto adicional o instrucciones sobre tus campos." - -#: includes/fields/class-acf-field-link.php:27 -msgid "" -"Allows you to specify a link and its properties such as title and target " -"using the WordPress native link picker." -msgstr "" -"Te permite especificar un enlace y sus propiedades, como el título y el " -"destino, utilizando el selector de enlaces nativo de WordPress." - -#: includes/fields/class-acf-field-image.php:27 -msgid "Uses the native WordPress media picker to upload, or choose images." -msgstr "" -"Utiliza el selector de medios nativo de WordPress para subir o elegir " -"imágenes." - -#: includes/fields/class-acf-field-group.php:27 -msgid "" -"Provides a way to structure fields into groups to better organize the data " -"and the edit screen." -msgstr "" -"Proporciona una forma de estructurar los campos en grupos para organizar " -"mejor los datos y la pantalla de edición." - -#: includes/fields/class-acf-field-google-map.php:27 -msgid "" -"An interactive UI for selecting a location using Google Maps. Requires a " -"Google Maps API key and additional configuration to display correctly." -msgstr "" -"Una interfaz de usuario interactiva para seleccionar una ubicación " -"utilizando Google Maps. Requiere una clave API de Google Maps y " -"configuración adicional para mostrarse correctamente." - -#: includes/fields/class-acf-field-file.php:27 -msgid "Uses the native WordPress media picker to upload, or choose files." -msgstr "" -"Utiliza el selector de medios nativo de WordPress para subir o elegir " -"archivos." - -#: includes/fields/class-acf-field-email.php:26 -msgid "A text input specifically designed for storing email addresses." -msgstr "" -"Un campo de texto diseñado específicamente para almacenar direcciones de " -"correo electrónico." - -#: includes/fields/class-acf-field-date_time_picker.php:27 -msgid "" -"An interactive UI for picking a date and time. The date return format can be " -"customized using the field settings." -msgstr "" -"Una interfaz de usuario interactiva para elegir una fecha y una hora. El " -"formato de devolución de la fecha puede personalizarse mediante los ajustes " -"del campo." - -#: includes/fields/class-acf-field-date_picker.php:27 -msgid "" -"An interactive UI for picking a date. The date return format can be " -"customized using the field settings." -msgstr "" -"Una interfaz de usuario interactiva para elegir una fecha. El formato de " -"devolución de la fecha se puede personalizar mediante los ajustes del campo." - -#: includes/fields/class-acf-field-color_picker.php:27 -msgid "An interactive UI for selecting a color, or specifying a Hex value." -msgstr "" -"Una interfaz de usuario interactiva para seleccionar un color o especificar " -"un valor hexadecimal." - -#: includes/fields/class-acf-field-checkbox.php:27 -msgid "" -"A group of checkbox inputs that allow the user to select one, or multiple " -"values that you specify." -msgstr "" -"Un grupo de casillas de verificación que permiten al usuario seleccionar uno " -"o varios valores que tú especifiques." - -#: includes/fields/class-acf-field-button-group.php:26 -msgid "" -"A group of buttons with values that you specify, users can choose one option " -"from the values provided." -msgstr "" -"Un grupo de botones con valores que tú especifiques, los usuarios pueden " -"elegir una opción de entre los valores proporcionados." - -#: includes/fields/class-acf-field-accordion.php:27 -msgid "" -"Allows you to group and organize custom fields into collapsable panels that " -"are shown while editing content. Useful for keeping large datasets tidy." -msgstr "" -"Te permite agrupar y organizar campos personalizados en paneles plegables " -"que se muestran al editar el contenido. Útil para mantener ordenados grandes " -"conjuntos de datos." - -#: includes/fields.php:475 -msgid "" -"This provides a solution for repeating content such as slides, team members, " -"and call-to-action tiles, by acting as a parent to a set of subfields which " -"can be repeated again and again." -msgstr "" -"Esto proporciona una solución para repetir contenidos como diapositivas, " -"miembros del equipo y fichas de llamada a la acción, actuando como padre de " -"un conjunto de subcampos que pueden repetirse una y otra vez." - -#: includes/fields.php:465 -msgid "" -"This provides an interactive interface for managing a collection of " -"attachments. Most settings are similar to the Image field type. Additional " -"settings allow you to specify where new attachments are added in the gallery " -"and the minimum/maximum number of attachments allowed." -msgstr "" -"Proporciona una interfaz interactiva para gestionar una colección de " -"archivos adjuntos. La mayoría de los ajustes son similares a los del tipo de " -"campo Imagen. Los ajustes adicionales te permiten especificar dónde se " -"añaden los nuevos adjuntos en la galería y el número mínimo/máximo de " -"adjuntos permitidos." - -#: includes/fields.php:455 -msgid "" -"This provides a simple, structured, layout-based editor. The Flexible " -"Content field allows you to define, create and manage content with total " -"control by using layouts and subfields to design the available blocks." -msgstr "" -"Esto proporciona un editor sencillo, estructurado y basado en diseños. El " -"campo Contenido flexible te permite definir, crear y gestionar contenidos " -"con un control total, utilizando maquetas y subcampos para diseñar los " -"bloques disponibles." - -#: includes/fields.php:445 -msgid "" -"This allows you to select and display existing fields. It does not duplicate " -"any fields in the database, but loads and displays the selected fields at " -"run-time. The Clone field can either replace itself with the selected fields " -"or display the selected fields as a group of subfields." -msgstr "" -"Te permite seleccionar y mostrar los campos existentes. No duplica ningún " -"campo de la base de datos, sino que carga y muestra los campos seleccionados " -"en tiempo de ejecución. El campo Clonar puede sustituirse a sí mismo por los " -"campos seleccionados o mostrar los campos seleccionados como un grupo de " -"subcampos." - -#: includes/fields.php:442 -msgctxt "noun" -msgid "Clone" -msgstr "Clon" - -#: includes/admin/views/global/navigation.php:86 includes/fields.php:357 -msgid "PRO" -msgstr "PRO" - -#: includes/fields.php:355 includes/fields.php:412 -msgid "Advanced" -msgstr "Avanzados" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:85 -msgid "JSON (newer)" -msgstr "JSON (nuevo)" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:81 -msgid "Original" -msgstr "Original" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:55 -msgid "Invalid post ID." -msgstr "ID de publicación no válido." - -#: includes/ajax/class-acf-ajax-local-json-diff.php:47 -msgid "Invalid post type selected for review." -msgstr "Tipo de publicación no válido seleccionado para revisión." - -#: includes/admin/views/global/navigation.php:186 -msgid "More" -msgstr "Más" - -#: includes/admin/views/browse-fields-modal.php:86 -msgid "Tutorial" -msgstr "Tutorial" - -#: includes/admin/views/browse-fields-modal.php:75 -msgid "Available with ACF PRO" -msgstr "Disponible con ACF PRO" - -#: includes/admin/views/browse-fields-modal.php:63 -msgid "Select Field" -msgstr "Seleccionar campo" - -#. translators: %s: A link to the popular fields used in ACF -#: includes/admin/views/browse-fields-modal.php:50 -msgid "Try a different search term or browse %s" -msgstr "Prueba con otro término de búsqueda o explora %s" - -#: includes/admin/views/browse-fields-modal.php:47 -msgid "Popular fields" -msgstr "Campos populares" - -#. translators: %s: The invalid search term -#: includes/admin/views/browse-fields-modal.php:40 -msgid "No search results for '%s'" -msgstr "No hay resultados de búsqueda para «%s»" - -#: includes/admin/views/browse-fields-modal.php:13 -msgid "Search fields..." -msgstr "Buscar campos..." - -#: includes/admin/views/browse-fields-modal.php:11 -msgid "Select Field Type" -msgstr "Selecciona el tipo de campo" - -#: includes/admin/views/browse-fields-modal.php:4 -msgid "Popular" -msgstr "Populares" - -#: includes/admin/views/acf-taxonomy/list-empty.php:7 -msgid "Add Taxonomy" -msgstr "Añadir taxonomía" - -#: includes/admin/views/acf-taxonomy/list-empty.php:6 -msgid "Create custom taxonomies to classify post type content" -msgstr "" -"Crear taxonomías personalizadas para clasificar el contenido del tipo de " -"contenido" - -#: includes/admin/views/acf-taxonomy/list-empty.php:5 -msgid "Add Your First Taxonomy" -msgstr "Añade tu primera taxonomía" - -#: includes/admin/views/acf-taxonomy/basic-settings.php:122 -msgid "Hierarchical taxonomies can have descendants (like categories)." -msgstr "" -"Las taxonomías jerárquicas pueden tener descendientes (como las categorías)." - -#: includes/admin/views/acf-taxonomy/basic-settings.php:107 -msgid "Makes a taxonomy visible on the frontend and in the admin dashboard." -msgstr "" -"Hace que una taxonomía sea visible en la parte pública de la web y en el " -"escritorio." - -#: includes/admin/views/acf-taxonomy/basic-settings.php:91 -msgid "One or many post types that can be classified with this taxonomy." -msgstr "" -"Uno o varios tipos de contenido que pueden clasificarse con esta taxonomía." - -#. translators: example taxonomy -#: includes/admin/views/acf-taxonomy/basic-settings.php:60 -msgid "genre" -msgstr "género" - -#. translators: example taxonomy -#: includes/admin/views/acf-taxonomy/basic-settings.php:42 -msgid "Genre" -msgstr "Género" - -#. translators: example taxonomy -#: includes/admin/views/acf-taxonomy/basic-settings.php:25 -msgid "Genres" -msgstr "Géneros" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1211 -msgid "" -"Optional custom controller to use instead of `WP_REST_Terms_Controller `." -msgstr "" -"Controlador personalizado opcional para utilizar en lugar de " -"`WP_REST_Terms_Controller`." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1155 -msgid "Expose this post type in the REST API." -msgstr "Exponer este tipo de contenido en la REST API." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1055 -msgid "Customize the query variable name" -msgstr "Personaliza el nombre de la variable de consulta" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1028 -msgid "" -"Terms can be accessed using the non-pretty permalink, e.g., {query_var}" -"={term_slug}." -msgstr "" -"Se puede acceder a los términos utilizando el permalink no bonito, por " -"ejemplo, {query_var}={term_slug}." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:981 -msgid "Parent-child terms in URLs for hierarchical taxonomies." -msgstr "Términos padre-hijo en URLs para taxonomías jerárquicas." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:941 -msgid "Customize the slug used in the URL" -msgstr "Personalizar el slug utilizado en la URL" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:924 -msgid "Permalinks for this taxonomy are disabled." -msgstr "Los enlaces permanentes de esta taxonomía están desactivados." - -#. translators: this string will be appended with the new permalink structure. -#: includes/admin/views/acf-taxonomy/advanced-settings.php:921 -msgid "" -"Rewrite the URL using the taxonomy key as the slug. Your permalink structure " -"will be" -msgstr "" -"Reescribe la URL utilizando la clave de taxonomía como slug. Tu estructura " -"de enlace permanente será" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:913 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1030 -#: includes/admin/views/acf-taxonomy/basic-settings.php:57 -msgid "Taxonomy Key" -msgstr "Clave de la taxonomía" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:911 -msgid "Select the type of permalink to use for this taxonomy." -msgstr "" -"Selecciona el tipo de enlace permanente a utilizar para esta taxonomía." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:896 -msgid "Display a column for the taxonomy on post type listing screens." -msgstr "" -"Mostrar una columna para la taxonomía en las pantallas de listado de tipos " -"de contenido." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:895 -msgid "Show Admin Column" -msgstr "Mostrar columna de administración" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:882 -msgid "Show the taxonomy in the quick/bulk edit panel." -msgstr "Mostrar la taxonomía en el panel de edición rápida/masiva." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:881 -msgid "Quick Edit" -msgstr "Edición rápida" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:868 -msgid "List the taxonomy in the Tag Cloud Widget controls." -msgstr "Muestra la taxonomía en los controles del widget nube de etiquetas." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:867 -msgid "Tag Cloud" -msgstr "Nube de etiquetas" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:824 -msgid "" -"A PHP function name to be called for sanitizing taxonomy data saved from a " -"meta box." -msgstr "" -"Un nombre de función PHP al que llamar para sanear los datos de taxonomía " -"guardados desde una meta box." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:823 -msgid "Meta Box Sanitization Callback" -msgstr "Llamada a función de saneamiento de la caja meta" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:805 -msgid "" -"A PHP function name to be called to handle the content of a meta box on your " -"taxonomy." -msgstr "" -"Un nombre de función PHP a llamar para manejar el contenido de una caja meta " -"en tu taxonomía." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:804 -msgid "Register Meta Box Callback" -msgstr "Registrar llamada a función de caja meta" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:763 -msgid "No Meta Box" -msgstr "Sin caja meta" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:762 -msgid "Custom Meta Box" -msgstr "Caja meta personalizada" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:758 -msgid "" -"Controls the meta box on the content editor screen. By default, the " -"Categories meta box is shown for hierarchical taxonomies, and the Tags meta " -"box is shown for non-hierarchical taxonomies." -msgstr "" -"Controla la caja meta en la pantalla del editor de contenidos. Por defecto, " -"la caja meta Categorías se muestra para las taxonomías jerárquicas, y la " -"meta caja Etiquetas se muestra para las taxonomías no jerárquicas." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:757 -msgid "Meta Box" -msgstr "Caja meta" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:746 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:767 -msgid "Categories Meta Box" -msgstr "Caja meta de categorías" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:745 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:766 -msgid "Tags Meta Box" -msgstr "Caja meta de etiquetas" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:704 -msgid "A link to a tag" -msgstr "Un enlace a una etiqueta" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:703 -msgid "Describes a navigation link block variation used in the block editor." -msgstr "" -"Describe una variación del bloque de enlaces de navegación utilizada en el " -"editor de bloques." - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:698 -msgid "A link to a %s" -msgstr "Un enlace a un %s" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:683 -msgid "Tag Link" -msgstr "Enlace a etiqueta" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:682 -msgid "" -"Assigns a title for navigation link block variation used in the block editor." -msgstr "" -"Asigna un título a la variación del bloque de enlaces de navegación " -"utilizada en el editor de bloques." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:663 -msgid "← Go to tags" -msgstr "← Ir a las etiquetas" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:662 -msgid "" -"Assigns the text used to link back to the main index after updating a term." -msgstr "" -"Asigna el texto utilizado para volver al índice principal tras actualizar un " -"término." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:661 -msgid "Back To Items" -msgstr "Volver a los elementos" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:657 -msgid "← Go to %s" -msgstr "← Ir a %s" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:642 -msgid "Tags list" -msgstr "Lista de etiquetas" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:641 -msgid "Assigns text to the table hidden heading." -msgstr "Asigna texto a la cabecera oculta de la tabla." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:622 -msgid "Tags list navigation" -msgstr "Navegación de lista de etiquetas" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:621 -msgid "Assigns text to the table pagination hidden heading." -msgstr "Asigna texto al encabezado oculto de la paginación de la tabla." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:597 -msgid "Filter by category" -msgstr "Filtrar por categoría" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:596 -msgid "Assigns text to the filter button in the posts lists table." -msgstr "" -"Asigna texto al botón de filtro en la tabla de listas de publicaciones." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:595 -msgid "Filter By Item" -msgstr "Filtrar por elemento" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:591 -msgid "Filter by %s" -msgstr "Filtrar por %s" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:575 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:576 -msgid "" -"The description is not prominent by default; however, some themes may show " -"it." -msgstr "" -"La descripción no es prominente de forma predeterminada; Sin embargo, " -"algunos temas pueden mostrarlo." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:574 -msgid "Describes the Description field on the Edit Tags screen." -msgstr "Describe el campo Descripción de la pantalla Editar etiquetas." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:573 -msgid "Description Field Description" -msgstr "Descripción del campo Descripción" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:554 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:555 -msgid "" -"Assign a parent term to create a hierarchy. The term Jazz, for example, " -"would be the parent of Bebop and Big Band" -msgstr "" -"Asigna un término superior para crear una jerarquía. El término Jazz, por " -"ejemplo, sería el padre de Bebop y Big Band" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:553 -msgid "Describes the Parent field on the Edit Tags screen." -msgstr "Describe el campo superior de la pantalla Editar etiquetas." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:552 -msgid "Parent Field Description" -msgstr "Descripción del campo padre" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:538 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:539 -msgid "" -"The \"slug\" is the URL-friendly version of the name. It is usually all " -"lower case and contains only letters, numbers, and hyphens." -msgstr "" -"El «slug» es la versión apta para URLs del nombre. Normalmente se escribe " -"todo en minúsculas y sólo contiene letras, números y guiones." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:537 -msgid "Describes the Slug field on the Edit Tags screen." -msgstr "Describe el campo slug de la pantalla editar etiquetas." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:536 -msgid "Slug Field Description" -msgstr "Descripción del campo slug" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:522 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:523 -msgid "The name is how it appears on your site" -msgstr "El nombre es como aparece en tu web" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:521 -msgid "Describes the Name field on the Edit Tags screen." -msgstr "Describe el campo Nombre de la pantalla Editar etiquetas." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:520 -msgid "Name Field Description" -msgstr "Descripción del campo nombre" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:507 -msgid "No tags" -msgstr "No hay etiquetas" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:506 -msgid "" -"Assigns the text displayed in the posts and media list tables when no tags " -"or categories are available." -msgstr "" -"Asigna el texto que se muestra en las tablas de entradas y lista de medios " -"cuando no hay etiquetas o categorías disponibles." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:505 -msgid "No Terms" -msgstr "No hay términos" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:501 -msgid "No %s" -msgstr "No hay %s" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:486 -msgid "No tags found" -msgstr "No se han encontrado etiquetas" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:485 -msgid "" -"Assigns the text displayed when clicking the 'choose from most used' text in " -"the taxonomy meta box when no tags are available, and assigns the text used " -"in the terms list table when there are no items for a taxonomy." -msgstr "" -"Asigna el texto que se muestra al hacer clic en «elegir entre los más " -"utilizados» en el cuadro meta de la taxonomía cuando no hay etiquetas " -"disponibles, y asigna el texto utilizado en la tabla de lista de términos " -"cuando no hay elementos para una taxonomía." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:484 -msgid "Not Found" -msgstr "No encontrado" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:463 -msgid "Assigns text to the Title field of the Most Used tab." -msgstr "Asigna texto al campo Título de la pestaña Más usados." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:462 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:464 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:465 -msgid "Most Used" -msgstr "Más usados" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:444 -msgid "Choose from the most used tags" -msgstr "Elige entre las etiquetas más utilizadas" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:443 -msgid "" -"Assigns the 'choose from most used' text used in the meta box when " -"JavaScript is disabled. Only used on non-hierarchical taxonomies." -msgstr "" -"Asigna el texto «elige entre los más usados» que se utiliza en la meta caja " -"cuando JavaScript está desactivado. Sólo se utiliza en taxonomías no " -"jerárquicas." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:442 -msgid "Choose From Most Used" -msgstr "Elige entre los más usados" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:438 -msgid "Choose from the most used %s" -msgstr "Elige entre los %s más usados" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:418 -msgid "Add or remove tags" -msgstr "Añadir o quitar etiquetas" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:417 -msgid "" -"Assigns the add or remove items text used in the meta box when JavaScript is " -"disabled. Only used on non-hierarchical taxonomies" -msgstr "" -"Asigna el texto de añadir o eliminar elementos utilizado en la meta caja " -"cuando JavaScript está desactivado. Sólo se utiliza en taxonomías no " -"jerárquicas" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:416 -msgid "Add Or Remove Items" -msgstr "Añadir o quitar elementos" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:412 -msgid "Add or remove %s" -msgstr "Añadir o quitar %s" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:392 -msgid "Separate tags with commas" -msgstr "Separa las etiquetas con comas" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:391 -msgid "" -"Assigns the separate item with commas text used in the taxonomy meta box. " -"Only used on non-hierarchical taxonomies." -msgstr "" -"Asigna al elemento separado con comas el texto utilizado en la caja meta de " -"taxonomía. Sólo se utiliza en taxonomías no jerárquicas." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:390 -msgid "Separate Items With Commas" -msgstr "Separa los elementos con comas" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:386 -msgid "Separate %s with commas" -msgstr "Separa los %s con comas" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:366 -msgid "Popular Tags" -msgstr "Etiquetas populares" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:365 -msgid "Assigns popular items text. Only used for non-hierarchical taxonomies." -msgstr "" -"Asigna texto a los elementos populares. Sólo se utiliza en taxonomías no " -"jerárquicas." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:364 -msgid "Popular Items" -msgstr "Elementos populares" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:361 -msgid "Popular %s" -msgstr "%s populares" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:347 -msgid "Search Tags" -msgstr "Buscar etiquetas" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:346 -msgid "Assigns search items text." -msgstr "Asigna el texto de buscar elementos." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:323 -msgid "Parent Category:" -msgstr "Categoría superior:" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:322 -msgid "Assigns parent item text, but with a colon (:) added to the end." -msgstr "" -"Asigna el texto del elemento superior, pero añadiendo dos puntos (:) al " -"final." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:321 -msgid "Parent Item With Colon" -msgstr "Elemento superior con dos puntos" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:298 -msgid "Parent Category" -msgstr "Categoría superior" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:297 -msgid "Assigns parent item text. Only used on hierarchical taxonomies." -msgstr "" -"Asigna el texto del elemento superior. Sólo se utiliza en taxonomías " -"jerárquicas." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:296 -msgid "Parent Item" -msgstr "Elemento superior" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:293 -msgid "Parent %s" -msgstr "%s superior" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:278 -msgid "New Tag Name" -msgstr "Nombre de la nueva etiqueta" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:277 -msgid "Assigns the new item name text." -msgstr "Asigna el texto del nombre del nuevo elemento." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:276 -msgid "New Item Name" -msgstr "Nombre del nuevo elemento" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:273 -msgid "New %s Name" -msgstr "Nombre del nuevo %s" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:258 -msgid "Add New Tag" -msgstr "Añadir nueva etiqueta" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:257 -msgid "Assigns the add new item text." -msgstr "Asigna el texto de añadir nuevo elemento." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:238 -msgid "Update Tag" -msgstr "Actualizar etiqueta" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:237 -msgid "Assigns the update item text." -msgstr "Asigna el texto del actualizar elemento." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:236 -msgid "Update Item" -msgstr "Actualizar elemento" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:233 -msgid "Update %s" -msgstr "Actualizar %s" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:218 -msgid "View Tag" -msgstr "Ver etiqueta" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:217 -msgid "In the admin bar to view term during editing." -msgstr "En la barra de administración para ver el término durante la edición." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:198 -msgid "Edit Tag" -msgstr "Editar etiqueta" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:197 -msgid "At the top of the editor screen when editing a term." -msgstr "En la parte superior de la pantalla del editor, al editar un término." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:178 -msgid "All Tags" -msgstr "Todas las etiquetas" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:177 -msgid "Assigns the all items text." -msgstr "Asigna el texto de todos los elementos." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:158 -msgid "Assigns the menu name text." -msgstr "Asigna el texto del nombre del menú." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:157 -msgid "Menu Label" -msgstr "Etiqueta de menú" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:131 -msgid "Active taxonomies are enabled and registered with WordPress." -msgstr "Las taxonomías activas están activadas y registradas en WordPress." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:115 -msgid "A descriptive summary of the taxonomy." -msgstr "Un resumen descriptivo de la taxonomía." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:95 -msgid "A descriptive summary of the term." -msgstr "Un resumen descriptivo del término." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:94 -msgid "Term Description" -msgstr "Descripción del término" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:76 -msgid "Single word, no spaces. Underscores and dashes allowed." -msgstr "Una sola palabra, sin espacios. Se permiten guiones bajos y guiones." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:75 -msgid "Term Slug" -msgstr "Slug de término" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:56 -msgid "The name of the default term." -msgstr "El nombre del término por defecto." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:55 -msgid "Term Name" -msgstr "Nombre del término" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:41 -msgid "" -"Create a term for the taxonomy that cannot be deleted. It will not be " -"selected for posts by default." -msgstr "" -"Crea un término para la taxonomía que no se pueda eliminar. No se " -"seleccionará por defecto para las entradas." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:40 -msgid "Default Term" -msgstr "Término por defecto" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:28 -msgid "" -"Whether terms in this taxonomy should be sorted in the order they are " -"provided to `wp_set_object_terms()`." -msgstr "" -"Si los términos de esta taxonomía deben ordenarse en el orden en que se " -"proporcionan a `wp_set_object_terms()`." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:27 -msgid "Sort Terms" -msgstr "Ordenar términos" - -#: includes/admin/views/acf-post-type/list-empty.php:7 -msgid "Add Post Type" -msgstr "Añadir tipo de contenido" - -#: includes/admin/views/acf-post-type/list-empty.php:6 -msgid "" -"Expand the functionality of WordPress beyond standard posts and pages with " -"custom post types." -msgstr "" -"Amplía la funcionalidad de WordPress más allá de las entradas y páginas " -"estándar con tipos de contenido personalizados." - -#: includes/admin/views/acf-post-type/list-empty.php:5 -msgid "Add Your First Post Type" -msgstr "Añade tu primer tipo de contenido" - -#: includes/admin/views/acf-post-type/basic-settings.php:136 -#: includes/admin/views/acf-taxonomy/basic-settings.php:135 -msgid "I know what I'm doing, show me all the options." -msgstr "Sé lo que hago, muéstrame todas las opciones." - -#: includes/admin/views/acf-post-type/basic-settings.php:135 -#: includes/admin/views/acf-taxonomy/basic-settings.php:134 -msgid "Advanced Configuration" -msgstr "Configuración avanzada" - -#: includes/admin/views/acf-post-type/basic-settings.php:123 -msgid "Hierarchical post types can have descendants (like pages)." -msgstr "" -"Los tipos de entrada jerárquicos pueden tener descendientes (como las " -"páginas)." - -#: includes/admin/views/acf-post-type/basic-settings.php:122 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:980 -#: includes/admin/views/acf-taxonomy/basic-settings.php:121 -msgid "Hierarchical" -msgstr "Jerárquico" - -#: includes/admin/views/acf-post-type/basic-settings.php:107 -msgid "Visible on the frontend and in the admin dashboard." -msgstr "Visible en la parte pública de la web y en el escritorio." - -#: includes/admin/views/acf-post-type/basic-settings.php:106 -#: includes/admin/views/acf-taxonomy/basic-settings.php:106 -msgid "Public" -msgstr "Público" - -#. translators: example post type -#: includes/admin/views/acf-post-type/basic-settings.php:59 -msgid "movie" -msgstr "pelicula" - -#: includes/admin/views/acf-post-type/basic-settings.php:57 -msgid "Lower case letters, underscores and dashes only, Max 20 characters." -msgstr "" -"Sólo letras minúsculas, guiones bajos y guiones, 20 caracteres como máximo." - -#. translators: example post type -#: includes/admin/views/acf-post-type/basic-settings.php:41 -msgid "Movie" -msgstr "Película" - -#: includes/admin/views/acf-post-type/basic-settings.php:39 -#: includes/admin/views/acf-taxonomy/basic-settings.php:40 -msgid "Singular Label" -msgstr "Etiqueta singular" - -#. translators: example post type -#: includes/admin/views/acf-post-type/basic-settings.php:24 -msgid "Movies" -msgstr "Películas" - -#: includes/admin/views/acf-post-type/basic-settings.php:22 -#: includes/admin/views/acf-taxonomy/basic-settings.php:23 -msgid "Plural Label" -msgstr "Etiqueta plural" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1270 -msgid "" -"Optional custom controller to use instead of `WP_REST_Posts_Controller`." -msgstr "" -"Controlador personalizado opcional para utilizar en lugar de " -"`WP_REST_Posts_Controller`." - -#: includes/admin/views/acf-post-type/advanced-settings.php:1269 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1210 -msgid "Controller Class" -msgstr "Clase de controlador" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1251 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1191 -msgid "The namespace part of the REST API URL." -msgstr "La parte del espacio de nombres de la URL de la API REST." - -#: includes/admin/views/acf-post-type/advanced-settings.php:1250 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1190 -msgid "Namespace Route" -msgstr "Ruta del espacio de nombres" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1232 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1172 -msgid "The base URL for the post type REST API URLs." -msgstr "La URL base para las URL de la REST API del tipo de contenido." - -#: includes/admin/views/acf-post-type/advanced-settings.php:1231 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1171 -msgid "Base URL" -msgstr "URL base" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1217 -msgid "" -"Exposes this post type in the REST API. Required to use the block editor." -msgstr "" -"Expone este tipo de contenido en la REST API. Necesario para utilizar el " -"editor de bloques." - -#: includes/admin/views/acf-post-type/advanced-settings.php:1216 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1154 -msgid "Show In REST API" -msgstr "Mostrar en REST API" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1195 -msgid "Customize the query variable name." -msgstr "Personaliza el nombre de la variable de consulta." - -#: includes/admin/views/acf-post-type/advanced-settings.php:1194 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1054 -msgid "Query Variable" -msgstr "Variable de consulta" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1172 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1032 -msgid "No Query Variable Support" -msgstr "No admite variables de consulta" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1171 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1031 -msgid "Custom Query Variable" -msgstr "Variable de consulta personalizada" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1168 -msgid "" -"Items can be accessed using the non-pretty permalink, eg. {post_type}" -"={post_slug}." -msgstr "" -"Se puede acceder a los elementos utilizando el enlace permanente no bonito, " -"por ejemplo {post_type}={post_slug}." - -#: includes/admin/views/acf-post-type/advanced-settings.php:1167 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1027 -msgid "Query Variable Support" -msgstr "Compatibilidad con variables de consulta" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1142 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1003 -msgid "URLs for an item and items can be accessed with a query string." -msgstr "" -"Se puede acceder a las URL de un elemento y de los elementos mediante una " -"cadena de consulta." - -#: includes/admin/views/acf-post-type/advanced-settings.php:1141 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1002 -msgid "Publicly Queryable" -msgstr "Consultable públicamente" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1120 -msgid "Custom slug for the Archive URL." -msgstr "Slug personalizado para la URL del Archivo." - -#: includes/admin/views/acf-post-type/advanced-settings.php:1119 -msgid "Archive Slug" -msgstr "Slug del archivo" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1106 -msgid "" -"Has an item archive that can be customized with an archive template file in " -"your theme." -msgstr "" -"Tiene un archivo de elementos que se puede personalizar con un archivo de " -"plantilla de archivo en tu tema." - -#: includes/admin/views/acf-post-type/advanced-settings.php:1105 -msgid "Archive" -msgstr "Archivo" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1085 -msgid "Pagination support for the items URLs such as the archives." -msgstr "" -"Soporte de paginación para las URL de los elementos, como los archivos." - -#: includes/admin/views/acf-post-type/advanced-settings.php:1084 -msgid "Pagination" -msgstr "Paginación" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1067 -msgid "RSS feed URL for the post type items." -msgstr "URL del feed RSS para los elementos del tipo de contenido." - -#: includes/admin/views/acf-post-type/advanced-settings.php:1066 -msgid "Feed URL" -msgstr "URL del Feed" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1048 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:961 -msgid "" -"Alters the permalink structure to add the `WP_Rewrite::$front` prefix to " -"URLs." -msgstr "" -"Altera la estructura de enlaces permanentes para añadir el prefijo " -"`WP_Rewrite::$front` a las URLs." - -#: includes/admin/views/acf-post-type/advanced-settings.php:1047 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:960 -msgid "Front URL Prefix" -msgstr "Prefijo de las URLs" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1028 -msgid "Customize the slug used in the URL." -msgstr "Personaliza el slug utilizado en la URL." - -#: includes/admin/views/acf-post-type/advanced-settings.php:1027 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:940 -msgid "URL Slug" -msgstr "Slug de la URL" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1011 -msgid "Permalinks for this post type are disabled." -msgstr "" -"Los enlaces permanentes para este tipo de contenido están desactivados." - -#. translators: this string will be appended with the new permalink structure. -#: includes/admin/views/acf-post-type/advanced-settings.php:1010 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:923 -msgid "" -"Rewrite the URL using a custom slug defined in the input below. Your " -"permalink structure will be" -msgstr "" -"Reescribe la URL utilizando un slug personalizado definido en el campo de " -"abajo. Tu estructura de enlace permanente será" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1002 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:915 -msgid "No Permalink (prevent URL rewriting)" -msgstr "Sin enlace permanente (evita la reescritura de URL)" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1001 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:914 -msgid "Custom Permalink" -msgstr "Enlace permanente personalizado" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1000 -#: includes/admin/views/acf-post-type/advanced-settings.php:1170 -#: includes/admin/views/acf-post-type/basic-settings.php:56 -msgid "Post Type Key" -msgstr "Clave de tipo de contenido" - -#. translators: this string will be appended with the new permalink structure. -#: includes/admin/views/acf-post-type/advanced-settings.php:998 -#: includes/admin/views/acf-post-type/advanced-settings.php:1008 -msgid "" -"Rewrite the URL using the post type key as the slug. Your permalink " -"structure will be" -msgstr "" -"Reescribe la URL utilizando la clave del tipo de entrada como slug. Tu " -"estructura de enlace permanente será" - -#: includes/admin/views/acf-post-type/advanced-settings.php:996 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:910 -msgid "Permalink Rewrite" -msgstr "Reescritura de enlace permanente" - -#: includes/admin/views/acf-post-type/advanced-settings.php:982 -msgid "Delete items by a user when that user is deleted." -msgstr "Borrar elementos de un usuario cuando ese usuario se borra." - -#: includes/admin/views/acf-post-type/advanced-settings.php:981 -msgid "Delete With User" -msgstr "Borrar con usuario" - -#: includes/admin/views/acf-post-type/advanced-settings.php:967 -msgid "Allow the post type to be exported from 'Tools' > 'Export'." -msgstr "" -"Permite que el tipo de contenido se pueda exportar desde 'Herramientas' > " -"'Exportar'." - -#: includes/admin/views/acf-post-type/advanced-settings.php:966 -msgid "Can Export" -msgstr "Se puede exportar" - -#: includes/admin/views/acf-post-type/advanced-settings.php:935 -msgid "Optionally provide a plural to be used in capabilities." -msgstr "" -"Opcionalmente, proporciona un plural para utilizarlo en las capacidades." - -#: includes/admin/views/acf-post-type/advanced-settings.php:934 -msgid "Plural Capability Name" -msgstr "Nombre de la capacidad en plural" - -#: includes/admin/views/acf-post-type/advanced-settings.php:916 -msgid "Choose another post type to base the capabilities for this post type." -msgstr "" -"Elige otro tipo de contenido para basar las capacidades de este tipo de " -"contenido." - -#: includes/admin/views/acf-post-type/advanced-settings.php:915 -msgid "Singular Capability Name" -msgstr "Nombre de la capacidad en singular" - -#: includes/admin/views/acf-post-type/advanced-settings.php:901 -msgid "" -"By default the capabilities of the post type will inherit the 'Post' " -"capability names, eg. edit_post, delete_posts. Enable to use post type " -"specific capabilities, eg. edit_{singular}, delete_{plural}." -msgstr "" -"Por defecto, las capacidades del tipo de entrada heredarán los nombres de " -"las capacidades de 'Entrada', p. ej. edit_post, delete_posts. Actívalo para " -"utilizar capacidades específicas del tipo de contenido, por ejemplo, " -"edit_{singular}, delete_{plural}." - -#: includes/admin/views/acf-post-type/advanced-settings.php:900 -msgid "Rename Capabilities" -msgstr "Renombrar capacidades" - -#: includes/admin/views/acf-post-type/advanced-settings.php:885 -msgid "Exclude From Search" -msgstr "Excluir de la búsqueda" - -#: includes/admin/views/acf-post-type/advanced-settings.php:872 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:854 -msgid "" -"Allow items to be added to menus in the 'Appearance' > 'Menus' screen. Must " -"be turned on in 'Screen options'." -msgstr "" -"Permite añadir elementos a los menús en la pantalla 'Apariencia' > 'Menús'. " -"Debe estar activado en 'Opciones de pantalla'." - -#: includes/admin/views/acf-post-type/advanced-settings.php:871 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:853 -msgid "Appearance Menus Support" -msgstr "Compatibilidad con menús de apariencia" - -#: includes/admin/views/acf-post-type/advanced-settings.php:853 -msgid "Appears as an item in the 'New' menu in the admin bar." -msgstr "" -"Aparece como un elemento en el menú 'Nuevo' de la barra de administración." - -#: includes/admin/views/acf-post-type/advanced-settings.php:852 -msgid "Show In Admin Bar" -msgstr "Mostrar en la barra administración" - -#: includes/admin/views/acf-post-type/advanced-settings.php:821 -msgid "" -"A PHP function name to be called when setting up the meta boxes for the edit " -"screen." -msgstr "" -"Un nombre de función PHP que se llamará cuando se configuren las cajas meta " -"de la pantalla de edición." - -#: includes/admin/views/acf-post-type/advanced-settings.php:820 -msgid "Custom Meta Box Callback" -msgstr "Llamada a función de caja meta personalizada" - -#: includes/admin/views/acf-post-type/advanced-settings.php:800 -msgid "Menu Icon" -msgstr "Icono de menú" - -#: includes/admin/views/acf-post-type/advanced-settings.php:782 -msgid "The position in the sidebar menu in the admin dashboard." -msgstr "" -"La posición en el menú de la barra lateral en el panel de control del " -"escritorio." - -#: includes/admin/views/acf-post-type/advanced-settings.php:781 -msgid "Menu Position" -msgstr "Posición en el menú" - -#: includes/admin/views/acf-post-type/advanced-settings.php:763 -msgid "" -"By default the post type will get a new top level item in the admin menu. If " -"an existing top level item is supplied here, the post type will be added as " -"a submenu item under it." -msgstr "" -"Por defecto, el tipo de contenido obtendrá un nuevo elemento de nivel " -"superior en el menú de administración. Si se proporciona aquí un elemento de " -"nivel superior existente, el tipo de entrada se añadirá como un elemento de " -"submenú debajo de él." - -#: includes/admin/views/acf-post-type/advanced-settings.php:762 -msgid "Admin Menu Parent" -msgstr "Menú de administración padre" - -#. translators: %s = "dashicon class name", link to the WordPress dashicon -#. documentation. -#: includes/admin/views/acf-post-type/advanced-settings.php:750 -msgid "" -"The icon used for the post type menu item in the admin dashboard. Can be a " -"URL or %s to use for the icon." -msgstr "" -"El icono utilizado para el elemento de menú del tipo de contenido en el " -"panel de control del administrador. Puede ser una URL o %s a utilizar para " -"el icono." - -#: includes/admin/views/acf-post-type/advanced-settings.php:745 -msgid "Dashicon class name" -msgstr "Nombre de la clase Dashicon" - -#: includes/admin/views/acf-post-type/advanced-settings.php:734 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:734 -msgid "Admin editor navigation in the sidebar menu." -msgstr "" -"Navegación del editor de administración en el menú de la barra lateral." - -#: includes/admin/views/acf-post-type/advanced-settings.php:733 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:733 -msgid "Show In Admin Menu" -msgstr "Mostrar en el menú de administración" - -#: includes/admin/views/acf-post-type/advanced-settings.php:720 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:719 -msgid "Items can be edited and managed in the admin dashboard." -msgstr "" -"Los elementos se pueden editar y gestionar en el panel de control del " -"administrador." - -#: includes/admin/views/acf-post-type/advanced-settings.php:719 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:718 -msgid "Show In UI" -msgstr "Mostrar en IU" - -#: includes/admin/views/acf-post-type/advanced-settings.php:689 -msgid "A link to a post." -msgstr "Un enlace a una publicación." - -#: includes/admin/views/acf-post-type/advanced-settings.php:688 -msgid "Description for a navigation link block variation." -msgstr "Descripción de una variación del bloque de enlaces de navegación." - -#: includes/admin/views/acf-post-type/advanced-settings.php:687 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:702 -msgid "Item Link Description" -msgstr "Descripción del enlace al elemento" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:683 -msgid "A link to a %s." -msgstr "Un enlace a un %s." - -#: includes/admin/views/acf-post-type/advanced-settings.php:668 -msgid "Post Link" -msgstr "Enlace a publicación" - -#: includes/admin/views/acf-post-type/advanced-settings.php:667 -msgid "Title for a navigation link block variation." -msgstr "Título para una variación del bloque de enlaces de navegación." - -#: includes/admin/views/acf-post-type/advanced-settings.php:666 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:681 -msgid "Item Link" -msgstr "Enlace a elemento" - -#. translators: %s Singular form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:663 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:678 -msgid "%s Link" -msgstr "Enlace a %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:648 -msgid "Post updated." -msgstr "Publicación actualizada." - -#: includes/admin/views/acf-post-type/advanced-settings.php:647 -msgid "In the editor notice after an item is updated." -msgstr "En el aviso del editor después de actualizar un elemento." - -#: includes/admin/views/acf-post-type/advanced-settings.php:646 -msgid "Item Updated" -msgstr "Elemento actualizado" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:643 -msgid "%s updated." -msgstr "%s actualizado." - -#: includes/admin/views/acf-post-type/advanced-settings.php:628 -msgid "Post scheduled." -msgstr "Publicación programada." - -#: includes/admin/views/acf-post-type/advanced-settings.php:627 -msgid "In the editor notice after scheduling an item." -msgstr "En el aviso del editor después de programar un elemento." - -#: includes/admin/views/acf-post-type/advanced-settings.php:626 -msgid "Item Scheduled" -msgstr "Elemento programado" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:623 -msgid "%s scheduled." -msgstr "%s programados." - -#: includes/admin/views/acf-post-type/advanced-settings.php:608 -msgid "Post reverted to draft." -msgstr "Publicación devuelta a borrador." - -#: includes/admin/views/acf-post-type/advanced-settings.php:607 -msgid "In the editor notice after reverting an item to draft." -msgstr "En el aviso del editor después de devolver un elemento a borrador." - -#: includes/admin/views/acf-post-type/advanced-settings.php:606 -msgid "Item Reverted To Draft" -msgstr "Elemento devuelto a borrador" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:603 -msgid "%s reverted to draft." -msgstr "%s devuelto a borrador." - -#: includes/admin/views/acf-post-type/advanced-settings.php:588 -msgid "Post published privately." -msgstr "Publicación publicada de forma privada." - -#: includes/admin/views/acf-post-type/advanced-settings.php:587 -msgid "In the editor notice after publishing a private item." -msgstr "En el aviso del editor después de publicar un elemento privado." - -#: includes/admin/views/acf-post-type/advanced-settings.php:586 -msgid "Item Published Privately" -msgstr "Elemento publicado de forma privada" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:583 -msgid "%s published privately." -msgstr "%s publicado de forma privada." - -#: includes/admin/views/acf-post-type/advanced-settings.php:568 -msgid "Post published." -msgstr "Entrada publicada." - -#: includes/admin/views/acf-post-type/advanced-settings.php:567 -msgid "In the editor notice after publishing an item." -msgstr "En el aviso del editor después de publicar un elemento." - -#: includes/admin/views/acf-post-type/advanced-settings.php:566 -msgid "Item Published" -msgstr "Elemento publicado" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:563 -msgid "%s published." -msgstr "%s publicado." - -#: includes/admin/views/acf-post-type/advanced-settings.php:548 -msgid "Posts list" -msgstr "Lista de publicaciones" - -#: includes/admin/views/acf-post-type/advanced-settings.php:547 -msgid "Used by screen readers for the items list on the post type list screen." -msgstr "" -"Utilizado por los lectores de pantalla para la lista de elementos de la " -"pantalla de lista de tipos de contenido." - -#: includes/admin/views/acf-post-type/advanced-settings.php:546 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:640 -msgid "Items List" -msgstr "Lista de elementos" - -#. translators: %s Plural form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:543 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:637 -msgid "%s list" -msgstr "Lista de %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:528 -msgid "Posts list navigation" -msgstr "Navegación por lista de publicaciones" - -#: includes/admin/views/acf-post-type/advanced-settings.php:527 -msgid "" -"Used by screen readers for the filter list pagination on the post type list " -"screen." -msgstr "" -"Utilizado por los lectores de pantalla para la paginación de la lista de " -"filtros en la pantalla de la lista de tipos de contenido." - -#: includes/admin/views/acf-post-type/advanced-settings.php:526 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:620 -msgid "Items List Navigation" -msgstr "Navegación por la lista de elementos" - -#. translators: %s Plural form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:523 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:617 -msgid "%s list navigation" -msgstr "Navegación por la lista de %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:507 -msgid "Filter posts by date" -msgstr "Filtrar publicaciones por fecha" - -#: includes/admin/views/acf-post-type/advanced-settings.php:506 -msgid "" -"Used by screen readers for the filter by date heading on the post type list " -"screen." -msgstr "" -"Utilizado por los lectores de pantalla para el encabezado de filtrar por " -"fecha en la pantalla de lista de tipos de contenido." - -#: includes/admin/views/acf-post-type/advanced-settings.php:505 -msgid "Filter Items By Date" -msgstr "Filtrar elementos por fecha" - -#. translators: %s Plural form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:501 -msgid "Filter %s by date" -msgstr "Filtrar %s por fecha" - -#: includes/admin/views/acf-post-type/advanced-settings.php:486 -msgid "Filter posts list" -msgstr "Filtrar la lista de publicaciones" - -#: includes/admin/views/acf-post-type/advanced-settings.php:485 -msgid "" -"Used by screen readers for the filter links heading on the post type list " -"screen." -msgstr "" -"Utilizado por los lectores de pantalla para el encabezado de los enlaces de " -"filtro en la pantalla de la lista de tipos de contenido." - -#: includes/admin/views/acf-post-type/advanced-settings.php:484 -msgid "Filter Items List" -msgstr "Filtrar lista de elementos" - -#. translators: %s Plural form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:480 -msgid "Filter %s list" -msgstr "Filtrar lista de %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:464 -msgid "In the media modal showing all media uploaded to this item." -msgstr "" -"En el modal de medios se muestran todos los medios subidos a este elemento." - -#: includes/admin/views/acf-post-type/advanced-settings.php:463 -msgid "Uploaded To This Item" -msgstr "Subido a este elemento" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:459 -msgid "Uploaded to this %s" -msgstr "Subido a este %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:444 -msgid "Insert into post" -msgstr "Insertar en publicación" - -#: includes/admin/views/acf-post-type/advanced-settings.php:443 -msgid "As the button label when adding media to content." -msgstr "Como etiqueta del botón al añadir medios al contenido." - -#: includes/admin/views/acf-post-type/advanced-settings.php:442 -msgid "Insert Into Media Button" -msgstr "Botón Insertar en medios" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:438 -msgid "Insert into %s" -msgstr "Insertar en %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:423 -msgid "Use as featured image" -msgstr "Usar como imagen destacada" - -#: includes/admin/views/acf-post-type/advanced-settings.php:422 -msgid "" -"As the button label for selecting to use an image as the featured image." -msgstr "" -"Como etiqueta del botón para seleccionar el uso de una imagen como imagen " -"destacada." - -#: includes/admin/views/acf-post-type/advanced-settings.php:421 -msgid "Use Featured Image" -msgstr "Usar imagen destacada" - -#: includes/admin/views/acf-post-type/advanced-settings.php:408 -msgid "Remove featured image" -msgstr "Eliminar la imagen destacada" - -#: includes/admin/views/acf-post-type/advanced-settings.php:407 -msgid "As the button label when removing the featured image." -msgstr "Como etiqueta del botón al eliminar la imagen destacada." - -#: includes/admin/views/acf-post-type/advanced-settings.php:406 -msgid "Remove Featured Image" -msgstr "Eliminar imagen destacada" - -#: includes/admin/views/acf-post-type/advanced-settings.php:393 -msgid "Set featured image" -msgstr "Establecer imagen destacada" - -#: includes/admin/views/acf-post-type/advanced-settings.php:392 -msgid "As the button label when setting the featured image." -msgstr "Como etiqueta del botón al establecer la imagen destacada." - -#: includes/admin/views/acf-post-type/advanced-settings.php:391 -msgid "Set Featured Image" -msgstr "Establecer imagen destacada" - -#: includes/admin/views/acf-post-type/advanced-settings.php:378 -msgid "Featured image" -msgstr "Imagen destacada" - -#: includes/admin/views/acf-post-type/advanced-settings.php:377 -msgid "In the editor used for the title of the featured image meta box." -msgstr "" -"En el editor utilizado para el título de la caja meta de la imagen destacada." - -#: includes/admin/views/acf-post-type/advanced-settings.php:376 -msgid "Featured Image Meta Box" -msgstr "Caja meta de imagen destacada" - -#: includes/admin/views/acf-post-type/advanced-settings.php:363 -msgid "Post Attributes" -msgstr "Atributos de publicación" - -#: includes/admin/views/acf-post-type/advanced-settings.php:362 -msgid "In the editor used for the title of the post attributes meta box." -msgstr "" -"En el editor utilizado para el título de la caja meta de atributos de la " -"publicación." - -#: includes/admin/views/acf-post-type/advanced-settings.php:361 -msgid "Attributes Meta Box" -msgstr "Caja meta de atributos" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:358 -msgid "%s Attributes" -msgstr "Atributos de %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:343 -msgid "Post Archives" -msgstr "Archivo de publicaciones" - -#: includes/admin/views/acf-post-type/advanced-settings.php:342 -msgid "" -"Adds 'Post Type Archive' items with this label to the list of posts shown " -"when adding items to an existing menu in a CPT with archives enabled. Only " -"appears when editing menus in 'Live Preview' mode and a custom archive slug " -"has been provided." -msgstr "" -"Añade elementos 'Archivo de tipo de contenido' con esta etiqueta a la lista " -"de publicaciones que se muestra al añadir elementos a un menú existente en " -"un CPT con archivos activados. Sólo aparece cuando se editan menús en modo " -"'Vista previa en vivo' y se ha proporcionado un slug de archivo " -"personalizado." - -#: includes/admin/views/acf-post-type/advanced-settings.php:341 -msgid "Archives Nav Menu" -msgstr "Menú de navegación de archivos" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:338 -msgid "%s Archives" -msgstr "Archivo de %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:323 -msgid "No posts found in Trash" -msgstr "No hay publicaciones en la papelera" - -#: includes/admin/views/acf-post-type/advanced-settings.php:322 -msgid "" -"At the top of the post type list screen when there are no posts in the trash." -msgstr "" -"En la parte superior de la pantalla de la lista de tipos de contenido cuando " -"no hay publicaciones en la papelera." - -#: includes/admin/views/acf-post-type/advanced-settings.php:321 -msgid "No Items Found in Trash" -msgstr "No se hay elementos en la papelera" - -#. translators: %s Plural form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:317 -msgid "No %s found in Trash" -msgstr "No hay %s en la papelera" - -#: includes/admin/views/acf-post-type/advanced-settings.php:302 -msgid "No posts found" -msgstr "No se han encontrado publicaciones" - -#: includes/admin/views/acf-post-type/advanced-settings.php:301 -msgid "" -"At the top of the post type list screen when there are no posts to display." -msgstr "" -"En la parte superior de la pantalla de la lista de tipos de contenido cuando " -"no hay publicaciones que mostrar." - -#: includes/admin/views/acf-post-type/advanced-settings.php:300 -msgid "No Items Found" -msgstr "No se han encontrado elementos" - -#. translators: %s Plural form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:296 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:480 -msgid "No %s found" -msgstr "No se han encontrado %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:281 -msgid "Search Posts" -msgstr "Buscar publicaciones" - -#: includes/admin/views/acf-post-type/advanced-settings.php:280 -msgid "At the top of the items screen when searching for an item." -msgstr "" -"En la parte superior de la pantalla de elementos, al buscar un elemento." - -#: includes/admin/views/acf-post-type/advanced-settings.php:279 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:345 -msgid "Search Items" -msgstr "Buscar elementos" - -#. translators: %s Singular form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:276 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:342 -msgid "Search %s" -msgstr "Buscar %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:261 -msgid "Parent Page:" -msgstr "Página superior:" - -#: includes/admin/views/acf-post-type/advanced-settings.php:260 -msgid "For hierarchical types in the post type list screen." -msgstr "Para tipos jerárquicos en la pantalla de lista de tipos de contenido." - -#: includes/admin/views/acf-post-type/advanced-settings.php:259 -msgid "Parent Item Prefix" -msgstr "Prefijo del artículo superior" - -#. translators: %s Singular form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:256 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:318 -msgid "Parent %s:" -msgstr "%s superior:" - -#: includes/admin/views/acf-post-type/advanced-settings.php:241 -msgid "New Post" -msgstr "Nueva publicación" - -#: includes/admin/views/acf-post-type/advanced-settings.php:239 -msgid "New Item" -msgstr "Nuevo elemento" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:236 -msgid "New %s" -msgstr "Nuevo %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:206 -msgid "Add New Post" -msgstr "Añadir nueva publicación" - -#: includes/admin/views/acf-post-type/advanced-settings.php:205 -msgid "At the top of the editor screen when adding a new item." -msgstr "" -"En la parte superior de la pantalla del editor, al añadir un nuevo elemento." - -#: includes/admin/views/acf-post-type/advanced-settings.php:204 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:256 -msgid "Add New Item" -msgstr "Añadir nuevo elemento" - -#. translators: %s Singular form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:201 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:253 -msgid "Add New %s" -msgstr "Añadir nuevo %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:186 -msgid "View Posts" -msgstr "Ver publicaciones" - -#: includes/admin/views/acf-post-type/advanced-settings.php:185 -msgid "" -"Appears in the admin bar in the 'All Posts' view, provided the post type " -"supports archives and the home page is not an archive of that post type." -msgstr "" -"Aparece en la barra de administración en la vista «Todas las publicaciones», " -"siempre que el tipo de contenido admita archivos y la página de inicio no " -"sea un archivo de ese tipo de contenido." - -#: includes/admin/views/acf-post-type/advanced-settings.php:184 -msgid "View Items" -msgstr "Ver elementos" - -#: includes/admin/views/acf-post-type/advanced-settings.php:166 -msgid "View Post" -msgstr "Ver publicacion" - -#: includes/admin/views/acf-post-type/advanced-settings.php:165 -msgid "In the admin bar to view item when editing it." -msgstr "En la barra de administración para ver el elemento al editarlo." - -#: includes/admin/views/acf-post-type/advanced-settings.php:164 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:216 -msgid "View Item" -msgstr "Ver elemento" - -#. translators: %s Singular form of post type name -#. translators: %s Plural form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:161 -#: includes/admin/views/acf-post-type/advanced-settings.php:181 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:213 -msgid "View %s" -msgstr "Ver %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:146 -msgid "Edit Post" -msgstr "Editar publicación" - -#: includes/admin/views/acf-post-type/advanced-settings.php:145 -msgid "At the top of the editor screen when editing an item." -msgstr "En la parte superior de la pantalla del editor, al editar un elemento." - -#: includes/admin/views/acf-post-type/advanced-settings.php:144 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:196 -msgid "Edit Item" -msgstr "Editar elemento" - -#. translators: %s Singular form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:141 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:193 -msgid "Edit %s" -msgstr "Editar %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:126 -msgid "All Posts" -msgstr "Todas las entradas" - -#: includes/admin/views/acf-post-type/advanced-settings.php:125 -#: includes/admin/views/acf-post-type/advanced-settings.php:220 -#: includes/admin/views/acf-post-type/advanced-settings.php:240 -msgid "In the post type submenu in the admin dashboard." -msgstr "En el submenú de tipo de contenido del escritorio." - -#: includes/admin/views/acf-post-type/advanced-settings.php:124 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:176 -msgid "All Items" -msgstr "Todos los elementos" - -#. translators: %s Plural form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:121 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:173 -msgid "All %s" -msgstr "Todos %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:105 -msgid "Admin menu name for the post type." -msgstr "Nombre del menú de administración para el tipo de contenido." - -#: includes/admin/views/acf-post-type/advanced-settings.php:104 -msgid "Menu Name" -msgstr "Nombre del menú" - -#: includes/admin/views/acf-post-type/advanced-settings.php:90 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:142 -msgid "Regenerate all labels using the Singular and Plural labels" -msgstr "" -"Regenera todas las etiquetas utilizando las etiquetas singular y plural" - -#: includes/admin/views/acf-post-type/advanced-settings.php:88 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:140 -msgid "Regenerate" -msgstr "Regenerar" - -#: includes/admin/views/acf-post-type/advanced-settings.php:79 -msgid "Active post types are enabled and registered with WordPress." -msgstr "" -"Los tipos de entrada activos están activados y registrados en WordPress." - -#: includes/admin/views/acf-post-type/advanced-settings.php:63 -msgid "A descriptive summary of the post type." -msgstr "Un resumen descriptivo del tipo de contenido." - -#: includes/admin/views/acf-post-type/advanced-settings.php:48 -msgid "Add Custom" -msgstr "Añadir personalizado" - -#: includes/admin/views/acf-post-type/advanced-settings.php:42 -msgid "Enable various features in the content editor." -msgstr "Activa varias funciones en el editor de contenido." - -#: includes/admin/views/acf-post-type/advanced-settings.php:31 -msgid "Post Formats" -msgstr "Formatos de entrada" - -#: includes/admin/views/acf-post-type/advanced-settings.php:25 -msgid "Editor" -msgstr "Editor" - -#: includes/admin/views/acf-post-type/advanced-settings.php:24 -msgid "Trackbacks" -msgstr "Trackbacks" - -#: includes/admin/views/acf-post-type/basic-settings.php:87 -msgid "Select existing taxonomies to classify items of the post type." -msgstr "" -"Selecciona las taxonomías existentes para clasificar los elementos del tipo " -"de contenido." - -#: includes/admin/views/acf-field-group/field.php:145 -msgid "Browse Fields" -msgstr "Explorar campos" - -#: includes/admin/tools/class-acf-admin-tool-import.php:292 -msgid "Nothing to import" -msgstr "Nada que importar" - -#: includes/admin/tools/class-acf-admin-tool-import.php:287 -msgid ". The Custom Post Type UI plugin can be deactivated." -msgstr ". El plugin Custom Post Type UI se puede desactivar." - -#. translators: %d - number of items imported from CPTUI -#: includes/admin/tools/class-acf-admin-tool-import.php:278 -msgid "Imported %d item from Custom Post Type UI -" -msgid_plural "Imported %d items from Custom Post Type UI -" -msgstr[0] "Importado %d elemento de la interfaz de Custom Post Type UI -" -msgstr[1] "Importados %d elementos de la interfaz de Custom Post Type UI -" - -#: includes/admin/tools/class-acf-admin-tool-import.php:262 -msgid "Failed to import taxonomies." -msgstr "Error al importar taxonomías." - -#: includes/admin/tools/class-acf-admin-tool-import.php:244 -msgid "Failed to import post types." -msgstr "Error al importar tipos de contenido." - -#: includes/admin/tools/class-acf-admin-tool-import.php:233 -msgid "Nothing from Custom Post Type UI plugin selected for import." -msgstr "" -"No se ha seleccionado nada del plugin Custom Post Type UI para importar." - -#: includes/admin/tools/class-acf-admin-tool-import.php:209 -msgid "Imported 1 item" -msgid_plural "Imported %s items" -msgstr[0] "1 elementos importado" -msgstr[1] "%s elementos importados" - -#: includes/admin/tools/class-acf-admin-tool-import.php:122 -msgid "" -"Importing a Post Type or Taxonomy with the same key as one that already " -"exists will overwrite the settings for the existing Post Type or Taxonomy " -"with those of the import." -msgstr "" -"Al importar un tipo de contenido o taxonomía con la misma clave que uno ya " -"existente, se sobrescribirán los ajustes del tipo de contenido o taxonomía " -"existentes con los de la importación." - -#: includes/admin/tools/class-acf-admin-tool-import.php:111 -#: includes/admin/tools/class-acf-admin-tool-import.php:127 -msgid "Import from Custom Post Type UI" -msgstr "Importar desde Custom Post Type UI" - -#: includes/admin/tools/class-acf-admin-tool-export.php:412 -msgid "" -"The following code can be used to register a local version of the selected " -"items. Storing field groups, post types, or taxonomies locally can provide " -"many benefits such as faster load times, version control & dynamic fields/" -"settings. Simply copy and paste the following code to your theme's functions." -"php file or include it within an external file, then deactivate or delete " -"the items from the ACF admin." -msgstr "" -"El siguiente código puede utilizarse para registrar una versión local de los " -"elementos seleccionados. Almacenar grupos de campos, tipos de contenido o " -"taxonomías localmente puede proporcionar muchas ventajas, como tiempos de " -"carga más rápidos, control de versiones y campos/ajustes dinámicos. " -"Simplemente copia y pega el siguiente código en el archivo functions.php de " -"tu tema o inclúyelo dentro de un archivo externo, y luego desactiva o " -"elimina los elementos desde la administración de ACF." - -#: includes/admin/tools/class-acf-admin-tool-export.php:411 -msgid "Export - Generate PHP" -msgstr "Exportar - Generar PHP" - -#: includes/admin/tools/class-acf-admin-tool-export.php:384 -msgid "Export" -msgstr "Exportar" - -#: includes/admin/tools/class-acf-admin-tool-export.php:276 -msgid "Select Taxonomies" -msgstr "Selecciona taxonomías" - -#: includes/admin/tools/class-acf-admin-tool-export.php:254 -msgid "Select Post Types" -msgstr "Selecciona tipos de contenido" - -#: includes/admin/tools/class-acf-admin-tool-export.php:167 -msgid "Exported 1 item." -msgid_plural "Exported %s items." -msgstr[0] "1 elemento exportado." -msgstr[1] "%s elementos exportados." - -#: includes/admin/post-types/admin-taxonomy.php:129 -#: assets/build/js/acf-internal-post-type.js:182 -#: assets/build/js/acf-internal-post-type.js:256 -msgid "Category" -msgstr "Categoría" - -#: includes/admin/post-types/admin-taxonomy.php:127 -#: assets/build/js/acf-internal-post-type.js:179 -#: assets/build/js/acf-internal-post-type.js:253 -msgid "Tag" -msgstr "Etiqueta" - -#. translators: %s taxonomy name -#: includes/admin/post-types/admin-taxonomy.php:82 -msgid "%s taxonomy created" -msgstr "Taxonomía %s creada" - -#. translators: %s taxonomy name -#: includes/admin/post-types/admin-taxonomy.php:76 -msgid "%s taxonomy updated" -msgstr "Taxonomía %s actualizada" - -#: includes/admin/post-types/admin-taxonomy.php:56 -msgid "Taxonomy draft updated." -msgstr "Borrador de taxonomía actualizado." - -#: includes/admin/post-types/admin-taxonomy.php:55 -msgid "Taxonomy scheduled for." -msgstr "Taxonomía programada para." - -#: includes/admin/post-types/admin-taxonomy.php:54 -msgid "Taxonomy submitted." -msgstr "Taxonomía enviada." - -#: includes/admin/post-types/admin-taxonomy.php:53 -msgid "Taxonomy saved." -msgstr "Taxonomía guardada." - -#: includes/admin/post-types/admin-taxonomy.php:49 -msgid "Taxonomy deleted." -msgstr "Taxonomía borrada." - -#: includes/admin/post-types/admin-taxonomy.php:48 -msgid "Taxonomy updated." -msgstr "Taxonomía actualizada." - -#: includes/admin/post-types/admin-taxonomies.php:377 -#: includes/admin/post-types/admin-taxonomy.php:157 -msgid "" -"This taxonomy could not be registered because its key is in use by another " -"taxonomy registered by another plugin or theme." -msgstr "" -"Esta taxonomía no se ha podido registrar porque su clave está siendo " -"utilizada por otra taxonomía registrada por otro plugin o tema." - -#. translators: %s number of taxonomies synchronized -#: includes/admin/post-types/admin-taxonomies.php:359 -msgid "Taxonomy synchronized." -msgid_plural "%s taxonomies synchronized." -msgstr[0] "Taxonomía sincronizada." -msgstr[1] "%s taxonomías sincronizadas." - -#. translators: %s number of taxonomies duplicated -#: includes/admin/post-types/admin-taxonomies.php:352 -msgid "Taxonomy duplicated." -msgid_plural "%s taxonomies duplicated." -msgstr[0] "Taxonomía duplicada." -msgstr[1] "%s taxonomías duplicadas." - -#. translators: %s number of taxonomies deactivated -#: includes/admin/post-types/admin-taxonomies.php:345 -msgid "Taxonomy deactivated." -msgid_plural "%s taxonomies deactivated." -msgstr[0] "Taxonomía desactivada." -msgstr[1] "%s taxonomías desactivadas." - -#. translators: %s number of taxonomies activated -#: includes/admin/post-types/admin-taxonomies.php:338 -msgid "Taxonomy activated." -msgid_plural "%s taxonomies activated." -msgstr[0] "Taxonomía activada." -msgstr[1] "%s taxonomías activadas." - -#: includes/admin/post-types/admin-taxonomies.php:139 -msgid "Terms" -msgstr "Términos" - -#. translators: %s number of post types synchronized -#: includes/admin/post-types/admin-post-types.php:352 -msgid "Post type synchronized." -msgid_plural "%s post types synchronized." -msgstr[0] "Tipo de contenido sincronizado." -msgstr[1] "%s tipos de contenido sincronizados." - -#. translators: %s number of post types duplicated -#: includes/admin/post-types/admin-post-types.php:345 -msgid "Post type duplicated." -msgid_plural "%s post types duplicated." -msgstr[0] "Tipo de contenido duplicado." -msgstr[1] "%s tipos de contenido duplicados." - -#. translators: %s number of post types deactivated -#: includes/admin/post-types/admin-post-types.php:338 -msgid "Post type deactivated." -msgid_plural "%s post types deactivated." -msgstr[0] "Tipo de contenido desactivado." -msgstr[1] "%s tipos de contenido desactivados." - -#. translators: %s number of post types activated -#: includes/admin/post-types/admin-post-types.php:331 -msgid "Post type activated." -msgid_plural "%s post types activated." -msgstr[0] "Tipo de contenido activado." -msgstr[1] "%s tipos de contenido activados." - -#: includes/admin/post-types/admin-post-types.php:112 -#: includes/admin/post-types/admin-taxonomies.php:137 -#: includes/admin/tools/class-acf-admin-tool-import.php:82 -#: includes/admin/views/acf-taxonomy/basic-settings.php:82 -#: includes/post-types/class-acf-post-type.php:91 -msgid "Post Types" -msgstr "Tipos de contenido" - -#: includes/admin/post-types/admin-post-type.php:162 -#: includes/admin/post-types/admin-taxonomy.php:164 -msgid "Advanced Settings" -msgstr "Ajustes avanzados" - -#: includes/admin/post-types/admin-post-type.php:161 -#: includes/admin/post-types/admin-taxonomy.php:163 -msgid "Basic Settings" -msgstr "Ajustes básicos" - -#: includes/admin/post-types/admin-post-type.php:155 -#: includes/admin/post-types/admin-post-types.php:370 -msgid "" -"This post type could not be registered because its key is in use by another " -"post type registered by another plugin or theme." -msgstr "" -"Este tipo de contenido no se ha podido registrar porque su clave está siendo " -"utilizada por otro tipo de contenido registrado por otro plugin o tema." - -#: includes/admin/post-types/admin-post-type.php:128 -#: assets/build/js/acf-internal-post-type.js:176 -#: assets/build/js/acf-internal-post-type.js:250 -msgid "Pages" -msgstr "Páginas" - -#: includes/admin/admin-internal-post-type.php:355 -msgid "Link Existing Field Groups" -msgstr "Enlazar grupos de campos existentes" - -#. translators: %s post type name -#: includes/admin/post-types/admin-post-type.php:80 -msgid "%s post type created" -msgstr "%s tipo de contenido creado" - -#. translators: %s taxonomy name -#: includes/admin/post-types/admin-taxonomy.php:78 -msgid "Add fields to %s" -msgstr "Añadir campos a %s" - -#. translators: %s post type name -#: includes/admin/post-types/admin-post-type.php:76 -msgid "%s post type updated" -msgstr "Tipo de contenido %s actualizado" - -#: includes/admin/post-types/admin-post-type.php:56 -msgid "Post type draft updated." -msgstr "Borrador de tipo de contenido actualizado." - -#: includes/admin/post-types/admin-post-type.php:55 -msgid "Post type scheduled for." -msgstr "Tipo de contenido programado para." - -#: includes/admin/post-types/admin-post-type.php:54 -msgid "Post type submitted." -msgstr "Tipo de contenido enviado." - -#: includes/admin/post-types/admin-post-type.php:53 -msgid "Post type saved." -msgstr "Tipo de contenido guardado." - -#: includes/admin/post-types/admin-post-type.php:50 -msgid "Post type updated." -msgstr "Tipo de contenido actualizado." - -#: includes/admin/post-types/admin-post-type.php:49 -msgid "Post type deleted." -msgstr "Tipo de contenido eliminado." - -#: includes/admin/post-types/admin-field-group.php:120 -#: assets/build/js/acf-field-group.js:1146 -#: assets/build/js/acf-field-group.js:1366 -msgid "Type to search..." -msgstr "Escribe para buscar..." - -#: includes/admin/post-types/admin-field-group.php:105 -#: assets/build/js/acf-field-group.js:1172 -#: assets/build/js/acf-field-group.js:2319 -#: assets/build/js/acf-field-group.js:1414 -#: assets/build/js/acf-field-group.js:2727 -msgid "PRO Only" -msgstr "Solo en PRO" - -#: includes/admin/post-types/admin-field-group.php:97 -#: assets/build/js/acf-internal-post-type.js:308 -#: assets/build/js/acf-internal-post-type.js:417 -msgid "Field groups linked successfully." -msgstr "Grupos de campos enlazados correctamente." - -#. translators: %s - URL to ACF tools page. -#: includes/admin/admin.php:195 -msgid "" -"Import Post Types and Taxonomies registered with Custom Post Type UI and " -"manage them with ACF. Get Started." -msgstr "" -"Importa tipos de contenido y taxonomías registrados con Custom Post Type UI " -"y gestiónalos con ACF. Empieza aquí." - -#: includes/admin/admin.php:48 includes/admin/admin.php:267 -msgid "ACF" -msgstr "ACF" - -#: includes/admin/admin-internal-post-type.php:322 -msgid "taxonomy" -msgstr "taxonomía" - -#: includes/admin/admin-internal-post-type.php:322 -msgid "post type" -msgstr "tipo de contenido" - -#: includes/admin/admin-internal-post-type.php:346 -msgid "Done" -msgstr "Hecho" - -#: includes/admin/admin-internal-post-type.php:332 -msgid "Field Group(s)" -msgstr "Grupo(s) de campo(s)" - -#: includes/admin/admin-internal-post-type.php:331 -msgid "Select one or many field groups..." -msgstr "Selecciona uno o varios grupos de campos..." - -#: includes/admin/admin-internal-post-type.php:330 -msgid "Please select the field groups to link." -msgstr "Selecciona los grupos de campos que quieras enlazar." - -#: includes/admin/admin-internal-post-type.php:288 -msgid "Field group linked successfully." -msgid_plural "Field groups linked successfully." -msgstr[0] "Grupo de campos enlazado correctamente." -msgstr[1] "Grupos de campos enlazados correctamente." - -#: includes/admin/admin-internal-post-type-list.php:261 -#: includes/admin/post-types/admin-post-types.php:371 -#: includes/admin/post-types/admin-taxonomies.php:378 -msgctxt "post status" -msgid "Registration Failed" -msgstr "Error de registro" - -#: includes/admin/admin-internal-post-type-list.php:260 -msgid "" -"This item could not be registered because its key is in use by another item " -"registered by another plugin or theme." -msgstr "" -"Este elemento no se ha podido registrar porque su clave está siendo " -"utilizada por otro elemento registrado por otro plugin o tema." - -#: includes/acf-internal-post-type-functions.php:482 -#: includes/acf-internal-post-type-functions.php:511 -msgid "REST API" -msgstr "REST API" - -#: includes/acf-internal-post-type-functions.php:481 -#: includes/acf-internal-post-type-functions.php:510 -#: includes/acf-internal-post-type-functions.php:537 -msgid "Permissions" -msgstr "Permisos" - -#: includes/acf-internal-post-type-functions.php:480 -#: includes/acf-internal-post-type-functions.php:509 -msgid "URLs" -msgstr "URLs" - -#: includes/acf-internal-post-type-functions.php:479 -#: includes/acf-internal-post-type-functions.php:508 -#: includes/acf-internal-post-type-functions.php:535 -msgid "Visibility" -msgstr "Visibilidad" - -#: includes/acf-internal-post-type-functions.php:478 -#: includes/acf-internal-post-type-functions.php:507 -#: includes/acf-internal-post-type-functions.php:536 -msgid "Labels" -msgstr "Etiquetas" - -#: includes/admin/post-types/admin-field-group.php:269 -msgid "Field Settings Tabs" -msgstr "Pestañas de ajustes de campos" - -#. Author URI of the plugin -msgid "" -"https://wpengine.com/?utm_source=wordpress." -"org&utm_medium=referral&utm_campaign=plugin_directory&utm_content=advanced_custom_fields" -msgstr "" -"https://wpengine.com/?utm_source=wordpress." -"org&utm_medium=referral&utm_campaign=plugin_directory&utm_content=advanced_custom_fields" - -#: includes/api/api-template.php:867 -msgid "[ACF shortcode value disabled for preview]" -msgstr "[valor del shortcode de ACF desactivado en la vista previa]" - -#: includes/admin/admin-internal-post-type.php:298 -#: includes/admin/post-types/admin-field-group.php:571 -msgid "Close Modal" -msgstr "Cerrar ventana emergente" - -#: includes/admin/post-types/admin-field-group.php:96 -#: assets/build/js/acf-field-group.js:1670 -#: assets/build/js/acf-field-group.js:1993 -msgid "Field moved to other group" -msgstr "Campo movido a otro grupo" - -#: includes/admin/post-types/admin-field-group.php:95 -#: assets/build/js/acf.js:1437 assets/build/js/acf.js:1517 -msgid "Close modal" -msgstr "Cerrar ventana emergente" - -#: includes/fields/class-acf-field-tab.php:125 -msgid "Start a new group of tabs at this tab." -msgstr "Empieza un nuevo grupo de pestañas en esta pestaña" - -#: includes/fields/class-acf-field-tab.php:124 -msgid "New Tab Group" -msgstr "Nuevo grupo de pestañas" - -#: includes/fields/class-acf-field-select.php:451 -#: includes/fields/class-acf-field-true_false.php:200 -msgid "Use a stylized checkbox using select2" -msgstr "Usa una casilla de verificación estilizada utilizando select2" - -#: includes/fields/class-acf-field-radio.php:260 -msgid "Save Other Choice" -msgstr "Guardar la opción «Otro»" - -#: includes/fields/class-acf-field-radio.php:249 -msgid "Allow Other Choice" -msgstr "Permitir la opción «Otro»" - -#: includes/fields/class-acf-field-checkbox.php:450 -msgid "Add Toggle All" -msgstr "Añade un «Alternar todos»" - -#: includes/fields/class-acf-field-checkbox.php:409 -msgid "Save Custom Values" -msgstr "Guardar los valores personalizados" - -#: includes/fields/class-acf-field-checkbox.php:398 -msgid "Allow Custom Values" -msgstr "Permitir valores personalizados" - -#: includes/fields/class-acf-field-checkbox.php:148 -msgid "Checkbox custom values cannot be empty. Uncheck any empty values." -msgstr "" -"Los valores personalizados de la casilla de verificación no pueden estar " -"vacíos. Desmarca cualquier valor vacío." - -#: includes/admin/views/global/navigation.php:248 -msgid "Updates" -msgstr "Actualizaciones" - -#: includes/admin/views/global/navigation.php:176 -msgid "Advanced Custom Fields logo" -msgstr "Logo de Advanced Custom Fields" - -#: includes/admin/views/global/form-top.php:89 -msgid "Save Changes" -msgstr "Guardar cambios" - -#: includes/admin/views/global/form-top.php:76 -msgid "Field Group Title" -msgstr "Título del grupo de campos" - -#: includes/admin/views/acf-post-type/advanced-settings.php:704 -#: includes/admin/views/global/form-top.php:3 -msgid "Add title" -msgstr "Añadir título" - -#. translators: %s url to getting started guide -#: includes/admin/views/acf-field-group/list-empty.php:20 -#: includes/admin/views/acf-post-type/list-empty.php:12 -#: includes/admin/views/acf-taxonomy/list-empty.php:12 -#: includes/admin/views/options-page-preview.php:13 -msgid "" -"New to ACF? Take a look at our getting " -"started guide." -msgstr "" -"¿Nuevo en ACF? Echa un vistazo a nuestra guía para comenzar." - -#: includes/admin/views/acf-field-group/list-empty.php:15 -msgid "Add Field Group" -msgstr "Añadir grupo de campos" - -#. translators: %s url to creating a field group page -#: includes/admin/views/acf-field-group/list-empty.php:10 -msgid "" -"ACF uses field groups to group custom " -"fields together, and then attach those fields to edit screens." -msgstr "" -"ACF utiliza grupos de campos para " -"agrupar campos personalizados juntos, y después añadir esos campos a las " -"pantallas de edición." - -#: includes/admin/views/acf-field-group/list-empty.php:5 -msgid "Add Your First Field Group" -msgstr "Añade tu primer grupo de campos" - -#: includes/admin/admin-options-pages-preview.php:28 -#: includes/admin/views/acf-field-group/pro-features.php:54 -#: includes/admin/views/global/navigation.php:86 -#: includes/admin/views/global/navigation.php:250 -msgid "Options Pages" -msgstr "Páginas de opciones" - -#: includes/admin/views/acf-field-group/pro-features.php:50 -msgid "ACF Blocks" -msgstr "ACF Blocks" - -#: includes/admin/views/acf-field-group/pro-features.php:58 -msgid "Gallery Field" -msgstr "Campo galería" - -#: includes/admin/views/acf-field-group/pro-features.php:38 -msgid "Flexible Content Field" -msgstr "Campo de contenido flexible" - -#: includes/admin/views/acf-field-group/pro-features.php:42 -msgid "Repeater Field" -msgstr "Campo repetidor" - -#: includes/admin/views/global/navigation.php:212 -msgid "Unlock Extra Features with ACF PRO" -msgstr "Desbloquea las características extra con ACF PRO" - -#: includes/admin/views/acf-field-group/options.php:267 -msgid "Delete Field Group" -msgstr "Borrar grupo de campos" - -#. translators: 1: Post creation date 2: Post creation time -#: includes/admin/views/acf-field-group/options.php:261 -msgid "Created on %1$s at %2$s" -msgstr "Creado el %1$s a las %2$s" - -#: includes/acf-field-group-functions.php:497 -msgid "Group Settings" -msgstr "Ajustes de grupo" - -#: includes/acf-field-group-functions.php:495 -msgid "Location Rules" -msgstr "Reglas de ubicación" - -#. translators: %s url to field types list -#: includes/admin/views/acf-field-group/fields.php:72 -msgid "" -"Choose from over 30 field types. Learn " -"more." -msgstr "" -"Elige de entre más de 30 tipos de campos. Aprende más." - -#: includes/admin/views/acf-field-group/fields.php:65 -msgid "" -"Get started creating new custom fields for your posts, pages, custom post " -"types and other WordPress content." -msgstr "" -"Comienza creando nuevos campos personalizados para tus entradas, páginas, " -"tipos de contenido personalizados y otros contenidos de WordPress." - -#: includes/admin/views/acf-field-group/fields.php:64 -msgid "Add Your First Field" -msgstr "Añade tu primer campo" - -#. translators: A symbol (or text, if not available in your locale) meaning -#. "Order Number", in terms of positional placement. -#: includes/admin/views/acf-field-group/fields.php:43 -msgid "#" -msgstr "#" - -#: includes/admin/views/acf-field-group/fields.php:33 -#: includes/admin/views/acf-field-group/fields.php:67 -#: includes/admin/views/acf-field-group/fields.php:103 -#: includes/admin/views/global/form-top.php:85 -msgid "Add Field" -msgstr "Añadir campo" - -#: includes/acf-field-group-functions.php:496 includes/fields.php:410 -msgid "Presentation" -msgstr "Presentación" - -#: includes/fields.php:409 -msgid "Validation" -msgstr "Validación" - -#: includes/acf-internal-post-type-functions.php:477 -#: includes/acf-internal-post-type-functions.php:506 includes/fields.php:408 -msgid "General" -msgstr "General" - -#: includes/admin/tools/class-acf-admin-tool-import.php:70 -msgid "Import JSON" -msgstr "Importar JSON" - -#: includes/admin/tools/class-acf-admin-tool-export.php:392 -msgid "Export As JSON" -msgstr "Exportar como JSON" - -#. translators: %s number of field groups deactivated -#: includes/admin/post-types/admin-field-groups.php:367 -msgid "Field group deactivated." -msgid_plural "%s field groups deactivated." -msgstr[0] "Grupo de campos desactivado." -msgstr[1] "%s grupos de campos desactivados." - -#. translators: %s number of field groups activated -#: includes/admin/post-types/admin-field-groups.php:360 -msgid "Field group activated." -msgid_plural "%s field groups activated." -msgstr[0] "Grupo de campos activado." -msgstr[1] "%s grupos de campos activados." - -#: includes/admin/admin-internal-post-type-list.php:452 -#: includes/admin/admin-internal-post-type-list.php:478 -msgid "Deactivate" -msgstr "Desactivar" - -#: includes/admin/admin-internal-post-type-list.php:452 -msgid "Deactivate this item" -msgstr "Desactiva este elemento" - -#: includes/admin/admin-internal-post-type-list.php:448 -#: includes/admin/admin-internal-post-type-list.php:477 -msgid "Activate" -msgstr "Activar" - -#: includes/admin/admin-internal-post-type-list.php:448 -msgid "Activate this item" -msgstr "Activa este elemento" - -#: includes/admin/post-types/admin-field-group.php:92 -#: assets/build/js/acf-field-group.js:2812 -#: assets/build/js/acf-field-group.js:3313 -msgid "Move field group to trash?" -msgstr "¿Mover este grupo de campos a la papelera?" - -#: acf.php:497 includes/admin/admin-internal-post-type-list.php:248 -#: includes/admin/post-types/admin-field-group.php:297 -#: includes/admin/post-types/admin-post-type.php:295 -#: includes/admin/post-types/admin-taxonomy.php:297 -msgctxt "post status" -msgid "Inactive" -msgstr "Inactivo" - -#. Author of the plugin -msgid "WP Engine" -msgstr "WP Engine" - -#: acf.php:555 -msgid "" -"Advanced Custom Fields and Advanced Custom Fields PRO should not be active " -"at the same time. We've automatically deactivated Advanced Custom Fields PRO." -msgstr "" -"Advanced Custom Fields y Advanced Custom Fields PRO no deberían estar " -"activos al mismo tiempo. Hemos desactivado automáticamente Advanced Custom " -"Fields PRO." - -#: acf.php:553 -msgid "" -"Advanced Custom Fields and Advanced Custom Fields PRO should not be active " -"at the same time. We've automatically deactivated Advanced Custom Fields." -msgstr "" -"Advanced Custom Fields y Advanced Custom Fields PRO no deberían estar " -"activos al mismo tiempo. Hemos desactivado automáticamente Advanced Custom " -"Fields." - -#: includes/acf-value-functions.php:374 -msgid "" -"%1$s - We've detected one or more calls to retrieve ACF " -"field values before ACF has been initialized. This is not supported and can " -"result in malformed or missing data. Learn how to fix this." -msgstr "" -"%1$s - Hemos detectado una o más llamadas para obtener " -"valores de campo de ACF antes de que ACF se haya iniciado. Esto no es " -"compatible y puede ocasionar datos mal formados o faltantes. Aprende cómo corregirlo." - -#: includes/fields/class-acf-field-user.php:551 -msgid "%1$s must have a user with the %2$s role." -msgid_plural "%1$s must have a user with one of the following roles: %2$s" -msgstr[0] "%1$s debe tener un usuario con el perfil %2$s." -msgstr[1] "%1$s debe tener un usuario con uno de los siguientes perfiles: %2$s" - -#: includes/fields/class-acf-field-user.php:542 -msgid "%1$s must have a valid user ID." -msgstr "%1$s debe tener un ID de usuario válido." - -#: includes/fields/class-acf-field-user.php:380 -msgid "Invalid request." -msgstr "Petición no válida." - -#: includes/fields/class-acf-field-select.php:684 -msgid "%1$s is not one of %2$s" -msgstr "%1$s no es ninguna de las siguientes %2$s" - -#: includes/fields/class-acf-field-post_object.php:700 -msgid "%1$s must have term %2$s." -msgid_plural "%1$s must have one of the following terms: %2$s" -msgstr[0] "%1$s debe tener un término %2$s." -msgstr[1] "%1$s debe tener uno de los siguientes términos: %2$s" - -#: includes/fields/class-acf-field-post_object.php:684 -msgid "%1$s must be of post type %2$s." -msgid_plural "%1$s must be of one of the following post types: %2$s" -msgstr[0] "%1$s debe ser del tipo de contenido %2$s." -msgstr[1] "%1$s debe ser de uno de los siguientes tipos de contenido: %2$s" - -#: includes/fields/class-acf-field-post_object.php:675 -msgid "%1$s must have a valid post ID." -msgstr "%1$s debe tener un ID de entrada válido." - -#: includes/fields/class-acf-field-file.php:475 -msgid "%s requires a valid attachment ID." -msgstr "%s necesita un ID de adjunto válido." - -#: includes/admin/views/acf-field-group/options.php:233 -msgid "Show in REST API" -msgstr "Mostrar en la API REST" - -#: includes/fields/class-acf-field-color_picker.php:168 -msgid "Enable Transparency" -msgstr "Activar la transparencia" - -#: includes/fields/class-acf-field-color_picker.php:187 -msgid "RGBA Array" -msgstr "Array RGBA" - -#: includes/fields/class-acf-field-color_picker.php:98 -msgid "RGBA String" -msgstr "Cadena RGBA" - -#: includes/fields/class-acf-field-color_picker.php:97 -#: includes/fields/class-acf-field-color_picker.php:186 -msgid "Hex String" -msgstr "Cadena hexadecimal" - -#: includes/admin/views/browse-fields-modal.php:65 -msgid "Upgrade to PRO" -msgstr "Actualizar a la versión Pro" - -#: includes/admin/post-types/admin-field-group.php:297 -#: includes/admin/post-types/admin-post-type.php:295 -#: includes/admin/post-types/admin-taxonomy.php:297 -msgctxt "post status" -msgid "Active" -msgstr "Activo" - -#: includes/fields/class-acf-field-email.php:181 -msgid "'%s' is not a valid email address" -msgstr "«%s» no es una dirección de correo electrónico válida" - -#: includes/fields/class-acf-field-color_picker.php:76 -msgid "Color value" -msgstr "Valor del color" - -#: includes/fields/class-acf-field-color_picker.php:74 -msgid "Select default color" -msgstr "Seleccionar el color por defecto" - -#: includes/fields/class-acf-field-color_picker.php:72 -msgid "Clear color" -msgstr "Vaciar el color" - -#: includes/acf-wp-functions.php:90 -msgid "Blocks" -msgstr "Bloques" - -#: includes/acf-wp-functions.php:86 -msgid "Options" -msgstr "Opciones" - -#: includes/acf-wp-functions.php:82 -msgid "Users" -msgstr "Usuarios" - -#: includes/acf-wp-functions.php:78 -msgid "Menu items" -msgstr "Elementos del menú" - -#: includes/acf-wp-functions.php:70 -msgid "Widgets" -msgstr "Widgets" - -#: includes/acf-wp-functions.php:62 -msgid "Attachments" -msgstr "Adjuntos" - -#: includes/acf-wp-functions.php:57 -#: includes/admin/post-types/admin-post-types.php:137 -#: includes/admin/post-types/admin-taxonomies.php:112 -#: includes/admin/tools/class-acf-admin-tool-import.php:93 -#: includes/admin/views/acf-post-type/basic-settings.php:86 -#: includes/post-types/class-acf-taxonomy.php:90 -#: includes/post-types/class-acf-taxonomy.php:91 -msgid "Taxonomies" -msgstr "Taxonomías" - -#: includes/acf-wp-functions.php:44 -#: includes/admin/post-types/admin-post-type.php:126 -#: includes/admin/post-types/admin-post-types.php:139 -#: includes/admin/views/acf-post-type/advanced-settings.php:106 -#: assets/build/js/acf-internal-post-type.js:173 -#: assets/build/js/acf-internal-post-type.js:247 -msgid "Posts" -msgstr "Entradas" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:76 -msgid "Last updated: %s" -msgstr "Última actualización: %s" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:70 -msgid "Sorry, this post is unavailable for diff comparison." -msgstr "" -"Lo siento, este grupo de campos no está disponible para la comparación diff." - -#: includes/ajax/class-acf-ajax-local-json-diff.php:42 -msgid "Invalid field group parameter(s)." -msgstr "Parámetro(s) de grupo de campos no válido(s)" - -#: includes/admin/admin-internal-post-type-list.php:413 -msgid "Awaiting save" -msgstr "Esperando el guardado" - -#: includes/admin/admin-internal-post-type-list.php:410 -msgid "Saved" -msgstr "Guardado" - -#: includes/admin/admin-internal-post-type-list.php:406 -#: includes/admin/tools/class-acf-admin-tool-import.php:49 -msgid "Import" -msgstr "Importar" - -#: includes/admin/admin-internal-post-type-list.php:402 -msgid "Review changes" -msgstr "Revisar los cambios" - -#: includes/admin/admin-internal-post-type-list.php:378 -msgid "Located in: %s" -msgstr "Localizado en: %s" - -#: includes/admin/admin-internal-post-type-list.php:375 -msgid "Located in plugin: %s" -msgstr "Localizado en el plugin: %s" - -#: includes/admin/admin-internal-post-type-list.php:372 -msgid "Located in theme: %s" -msgstr "Localizado en el tema: %s" - -#: includes/admin/post-types/admin-field-groups.php:261 -msgid "Various" -msgstr "Varios" - -#: includes/admin/admin-internal-post-type-list.php:216 -#: includes/admin/admin-internal-post-type-list.php:485 -msgid "Sync changes" -msgstr "Sincronizar cambios" - -#: includes/admin/admin-internal-post-type-list.php:215 -msgid "Loading diff" -msgstr "Cargando diff" - -#: includes/admin/admin-internal-post-type-list.php:214 -msgid "Review local JSON changes" -msgstr "Revisar cambios de JSON local" - -#: includes/admin/admin.php:170 -msgid "Visit website" -msgstr "Visitar web" - -#: includes/admin/admin.php:169 -msgid "View details" -msgstr "Ver detalles" - -#: includes/admin/admin.php:168 -msgid "Version %s" -msgstr "Versión %s" - -#: includes/admin/admin.php:167 -msgid "Information" -msgstr "Información" - -#: includes/admin/admin.php:158 -msgid "" -"Help Desk. The support professionals on " -"our Help Desk will assist with your more in depth, technical challenges." -msgstr "" -"Centro de ayuda. Los profesionales de " -"soporte de nuestro centro de ayuda te ayudarán más en profundidad con los " -"retos técnicos." - -#: includes/admin/admin.php:154 -msgid "" -"Discussions. We have an active and " -"friendly community on our Community Forums who may be able to help you " -"figure out the 'how-tos' of the ACF world." -msgstr "" -"Debates. Tenemos una comunidad activa y " -"amistosa, en nuestros foros de la comunidad, que pueden ayudarte a descubrir " -"cómo hacer todo en el mundo de ACF." - -#: includes/admin/admin.php:150 -msgid "" -"Documentation. Our extensive " -"documentation contains references and guides for most situations you may " -"encounter." -msgstr "" -"Documentación. Nuestra amplia " -"documentación contiene referencias y guías para la mayoría de situaciones en " -"las que puedas encontrarte." - -#: includes/admin/admin.php:147 -msgid "" -"We are fanatical about support, and want you to get the best out of your " -"website with ACF. If you run into any difficulties, there are several places " -"you can find help:" -msgstr "" -"Somos fanáticos del soporte, y queremos que consigas el máximo en tu web con " -"ACF. Si te encuentras con alguna dificultad, hay varios lugares donde puedes " -"encontrar ayuda:" - -#: includes/admin/admin.php:144 includes/admin/admin.php:146 -msgid "Help & Support" -msgstr "Ayuda y soporte" - -#: includes/admin/admin.php:135 -msgid "" -"Please use the Help & Support tab to get in touch should you find yourself " -"requiring assistance." -msgstr "" -"Por favor, usa la pestaña de ayuda y soporte para contactar si descubres que " -"necesitas ayuda." - -#: includes/admin/admin.php:132 -msgid "" -"Before creating your first Field Group, we recommend first reading our Getting started guide to familiarize " -"yourself with the plugin's philosophy and best practises." -msgstr "" -"Antes de crear tu primer grupo de campos te recomendamos que primero leas " -"nuestra guía de primeros pasos para " -"familiarizarte con la filosofía y buenas prácticas del plugin." - -#: includes/admin/admin.php:130 -msgid "" -"The Advanced Custom Fields plugin provides a visual form builder to " -"customize WordPress edit screens with extra fields, and an intuitive API to " -"display custom field values in any theme template file." -msgstr "" -"El plugin Advanced Custom Fields ofrece un constructor visual con el que " -"personalizar las pantallas de WordPress con campos adicionales, y una API " -"intuitiva parra mostrar valores de campos personalizados en cualquier " -"archivo de plantilla de cualquier tema." - -#: includes/admin/admin.php:127 includes/admin/admin.php:129 -msgid "Overview" -msgstr "Resumen" - -#: includes/locations.php:36 -msgid "Location type \"%s\" is already registered." -msgstr "El tipo de ubicación «%s» ya está registrado." - -#: includes/locations.php:25 -msgid "Class \"%s\" does not exist." -msgstr "La clase «%s» no existe." - -#: includes/ajax/class-acf-ajax.php:157 -msgid "Invalid nonce." -msgstr "Nonce no válido." - -#: includes/fields/class-acf-field-user.php:375 -msgid "Error loading field." -msgstr "Error al cargar el campo." - -#: assets/build/js/acf-input.js:2750 assets/build/js/acf-input.js:2819 -#: assets/build/js/acf-input.js:2926 assets/build/js/acf-input.js:3000 -msgid "Location not found: %s" -msgstr "Ubicación no encontrada: %s" - -#: includes/forms/form-user.php:353 -msgid "Error: %s" -msgstr "Error: %s" - -#: includes/locations/class-acf-location-widget.php:22 -msgid "Widget" -msgstr "Widget" - -#: includes/locations/class-acf-location-user-role.php:24 -msgid "User Role" -msgstr "Perfil de usuario" - -#: includes/locations/class-acf-location-comment.php:22 -msgid "Comment" -msgstr "Comentario" - -#: includes/locations/class-acf-location-post-format.php:22 -msgid "Post Format" -msgstr "Formato de entrada" - -#: includes/locations/class-acf-location-nav-menu-item.php:22 -msgid "Menu Item" -msgstr "Elemento de menú" - -#: includes/locations/class-acf-location-post-status.php:22 -msgid "Post Status" -msgstr "Estado de entrada" - -#: includes/acf-wp-functions.php:74 -#: includes/locations/class-acf-location-nav-menu.php:89 -msgid "Menus" -msgstr "Menús" - -#: includes/locations/class-acf-location-nav-menu.php:80 -msgid "Menu Locations" -msgstr "Ubicaciones de menú" - -#: includes/locations/class-acf-location-nav-menu.php:22 -msgid "Menu" -msgstr "Menú" - -#: includes/locations/class-acf-location-post-taxonomy.php:22 -msgid "Post Taxonomy" -msgstr "Taxonomía de entrada" - -#: includes/locations/class-acf-location-page-type.php:114 -msgid "Child Page (has parent)" -msgstr "Página hija (tiene superior)" - -#: includes/locations/class-acf-location-page-type.php:113 -msgid "Parent Page (has children)" -msgstr "Página superior (con hijos)" - -#: includes/locations/class-acf-location-page-type.php:112 -msgid "Top Level Page (no parent)" -msgstr "Página de nivel superior (sin padres)" - -#: includes/locations/class-acf-location-page-type.php:111 -msgid "Posts Page" -msgstr "Página de entradas" - -#: includes/locations/class-acf-location-page-type.php:110 -msgid "Front Page" -msgstr "Página de inicio" - -#: includes/locations/class-acf-location-page-type.php:22 -msgid "Page Type" -msgstr "Tipo de página" - -#: includes/locations/class-acf-location-current-user.php:73 -msgid "Viewing back end" -msgstr "Viendo el escritorio" - -#: includes/locations/class-acf-location-current-user.php:72 -msgid "Viewing front end" -msgstr "Viendo la web" - -#: includes/locations/class-acf-location-current-user.php:71 -msgid "Logged in" -msgstr "Conectado" - -#: includes/locations/class-acf-location-current-user.php:22 -msgid "Current User" -msgstr "Usuario actual" - -#: includes/locations/class-acf-location-page-template.php:22 -msgid "Page Template" -msgstr "Plantilla de página" - -#: includes/locations/class-acf-location-user-form.php:74 -msgid "Register" -msgstr "Registro" - -#: includes/locations/class-acf-location-user-form.php:73 -msgid "Add / Edit" -msgstr "Añadir / Editar" - -#: includes/locations/class-acf-location-user-form.php:22 -msgid "User Form" -msgstr "Formulario de usuario" - -#: includes/locations/class-acf-location-page-parent.php:22 -msgid "Page Parent" -msgstr "Página superior" - -#: includes/locations/class-acf-location-current-user-role.php:77 -msgid "Super Admin" -msgstr "Super administrador" - -#: includes/locations/class-acf-location-current-user-role.php:22 -msgid "Current User Role" -msgstr "Rol del usuario actual" - -#: includes/locations/class-acf-location-page-template.php:73 -#: includes/locations/class-acf-location-post-template.php:85 -msgid "Default Template" -msgstr "Plantilla predeterminada" - -#: includes/locations/class-acf-location-post-template.php:22 -msgid "Post Template" -msgstr "Plantilla de entrada" - -#: includes/locations/class-acf-location-post-category.php:22 -msgid "Post Category" -msgstr "Categoría de entrada" - -#: includes/locations/class-acf-location-attachment.php:84 -msgid "All %s formats" -msgstr "Todo los formatos de %s" - -#: includes/locations/class-acf-location-attachment.php:22 -msgid "Attachment" -msgstr "Adjunto" - -#: includes/validation.php:366 -msgid "%s value is required" -msgstr "El valor de %s es obligatorio" - -#: includes/admin/views/acf-field-group/conditional-logic.php:59 -msgid "Show this field if" -msgstr "Mostrar este campo si" - -#: includes/admin/views/acf-field-group/conditional-logic.php:26 -#: includes/admin/views/acf-field-group/field.php:109 includes/fields.php:411 -msgid "Conditional Logic" -msgstr "Lógica condicional" - -#: includes/admin/views/acf-field-group/conditional-logic.php:156 -#: includes/admin/views/acf-field-group/location-rule.php:92 -msgid "and" -msgstr "y" - -#: includes/admin/post-types/admin-field-groups.php:123 -#: includes/admin/post-types/admin-post-types.php:143 -#: includes/admin/post-types/admin-taxonomies.php:143 -msgid "Local JSON" -msgstr "JSON Local" - -#: includes/admin/views/acf-field-group/pro-features.php:46 -msgid "Clone Field" -msgstr "Campo clon" - -#: includes/admin/views/upgrade/notice.php:30 -msgid "" -"Please also check all premium add-ons (%s) are updated to the latest version." -msgstr "" -"Por favor, comprueba también que todas las extensiones premium (%s) estén " -"actualizados a la última versión." - -#: includes/admin/views/upgrade/notice.php:28 -msgid "" -"This version contains improvements to your database and requires an upgrade." -msgstr "" -"Esta versión contiene mejoras en su base de datos y requiere una " -"actualización." - -#: includes/admin/views/upgrade/notice.php:28 -msgid "Thank you for updating to %1$s v%2$s!" -msgstr "¡Gracias por actualizar a %1$s v%2$s!" - -#: includes/admin/views/upgrade/notice.php:27 -msgid "Database Upgrade Required" -msgstr "Es necesario actualizar la base de datos" - -#: includes/admin/post-types/admin-field-group.php:141 -#: includes/admin/views/upgrade/notice.php:18 -msgid "Options Page" -msgstr "Página de opciones" - -#: includes/admin/views/upgrade/notice.php:15 includes/fields.php:462 -msgid "Gallery" -msgstr "Galería" - -#: includes/admin/views/upgrade/notice.php:12 includes/fields.php:452 -msgid "Flexible Content" -msgstr "Contenido flexible" - -#: includes/admin/views/upgrade/notice.php:9 includes/fields.php:472 -msgid "Repeater" -msgstr "Repetidor" - -#: includes/admin/views/tools/tools.php:24 -msgid "Back to all tools" -msgstr "Volver a todas las herramientas" - -#: includes/admin/views/acf-field-group/options.php:195 -msgid "" -"If multiple field groups appear on an edit screen, the first field group's " -"options will be used (the one with the lowest order number)" -msgstr "" -"Si aparecen múltiples grupos de campos en una pantalla de edición, se " -"utilizarán las opciones del primer grupo (el que tenga el número de orden " -"menor)" - -#: includes/admin/views/acf-field-group/options.php:195 -msgid "Select items to hide them from the edit screen." -msgstr "" -"Selecciona los elementos que ocultar de la pantalla de edición." - -#: includes/admin/views/acf-field-group/options.php:194 -msgid "Hide on screen" -msgstr "Ocultar en pantalla" - -#: includes/admin/views/acf-field-group/options.php:186 -msgid "Send Trackbacks" -msgstr "Enviar trackbacks" - -#: includes/admin/post-types/admin-taxonomy.php:128 -#: includes/admin/views/acf-field-group/options.php:185 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:159 -#: assets/build/js/acf-internal-post-type.js:180 -#: assets/build/js/acf-internal-post-type.js:254 -msgid "Tags" -msgstr "Etiquetas" - -#: includes/admin/post-types/admin-taxonomy.php:130 -#: includes/admin/views/acf-field-group/options.php:184 -#: assets/build/js/acf-internal-post-type.js:183 -#: assets/build/js/acf-internal-post-type.js:257 -msgid "Categories" -msgstr "Categorías" - -#: includes/admin/views/acf-field-group/options.php:182 -#: includes/admin/views/acf-post-type/advanced-settings.php:28 -msgid "Page Attributes" -msgstr "Atributos de página" - -#: includes/admin/views/acf-field-group/options.php:181 -msgid "Format" -msgstr "Formato" - -#: includes/admin/views/acf-field-group/options.php:180 -#: includes/admin/views/acf-post-type/advanced-settings.php:22 -msgid "Author" -msgstr "Autor" - -#: includes/admin/views/acf-field-group/options.php:179 -msgid "Slug" -msgstr "Slug" - -#: includes/admin/views/acf-field-group/options.php:178 -#: includes/admin/views/acf-post-type/advanced-settings.php:27 -msgid "Revisions" -msgstr "Revisiones" - -#: includes/acf-wp-functions.php:66 -#: includes/admin/views/acf-field-group/options.php:177 -#: includes/admin/views/acf-post-type/advanced-settings.php:23 -msgid "Comments" -msgstr "Comentarios" - -#: includes/admin/views/acf-field-group/options.php:176 -msgid "Discussion" -msgstr "Discusión" - -#: includes/admin/views/acf-field-group/options.php:174 -#: includes/admin/views/acf-post-type/advanced-settings.php:26 -msgid "Excerpt" -msgstr "Extracto" - -#: includes/admin/views/acf-field-group/options.php:173 -msgid "Content Editor" -msgstr "Editor de contenido" - -#: includes/admin/views/acf-field-group/options.php:172 -msgid "Permalink" -msgstr "Enlace permanente" - -#: includes/admin/views/acf-field-group/options.php:250 -msgid "Shown in field group list" -msgstr "Mostrado en lista de grupos de campos" - -#: includes/admin/views/acf-field-group/options.php:157 -msgid "Field groups with a lower order will appear first" -msgstr "Los grupos de campos con menor orden aparecerán primero" - -#: includes/admin/views/acf-field-group/options.php:156 -msgid "Order No." -msgstr "N.º de orden" - -#: includes/admin/views/acf-field-group/options.php:147 -msgid "Below fields" -msgstr "Debajo de los campos" - -#: includes/admin/views/acf-field-group/options.php:146 -msgid "Below labels" -msgstr "Debajo de las etiquetas" - -#: includes/admin/views/acf-field-group/options.php:139 -msgid "Instruction Placement" -msgstr "Colocación de la instrucción" - -#: includes/admin/views/acf-field-group/options.php:122 -msgid "Label Placement" -msgstr "Ubicación de la etiqueta" - -#: includes/admin/views/acf-field-group/options.php:110 -msgid "Side" -msgstr "Lateral" - -#: includes/admin/views/acf-field-group/options.php:109 -msgid "Normal (after content)" -msgstr "Normal (después del contenido)" - -#: includes/admin/views/acf-field-group/options.php:108 -msgid "High (after title)" -msgstr "Alta (después del título)" - -#: includes/admin/views/acf-field-group/options.php:101 -msgid "Position" -msgstr "Posición" - -#: includes/admin/views/acf-field-group/options.php:92 -msgid "Seamless (no metabox)" -msgstr "Directo (sin caja meta)" - -#: includes/admin/views/acf-field-group/options.php:91 -msgid "Standard (WP metabox)" -msgstr "Estándar (caja meta de WP)" - -#: includes/admin/views/acf-field-group/options.php:84 -msgid "Style" -msgstr "Estilo" - -#: includes/admin/views/acf-field-group/fields.php:55 -msgid "Type" -msgstr "Tipo" - -#: includes/admin/post-types/admin-field-groups.php:117 -#: includes/admin/post-types/admin-post-types.php:136 -#: includes/admin/post-types/admin-taxonomies.php:136 -#: includes/admin/views/acf-field-group/fields.php:54 -msgid "Key" -msgstr "Clave" - -#. translators: Hidden accessibility text for the positional order number of -#. the field. -#: includes/admin/views/acf-field-group/fields.php:48 -msgid "Order" -msgstr "Orden" - -#: includes/admin/views/acf-field-group/field.php:322 -msgid "Close Field" -msgstr "Cerrar campo" - -#: includes/admin/views/acf-field-group/field.php:253 -msgid "id" -msgstr "id" - -#: includes/admin/views/acf-field-group/field.php:237 -msgid "class" -msgstr "class" - -#: includes/admin/views/acf-field-group/field.php:279 -msgid "width" -msgstr "ancho" - -#: includes/admin/views/acf-field-group/field.php:273 -msgid "Wrapper Attributes" -msgstr "Atributos del contenedor" - -#: includes/admin/views/acf-field-group/field.php:196 -msgid "Required" -msgstr "Obligatorio" - -#: includes/admin/views/acf-field-group/field.php:221 -msgid "Instructions for authors. Shown when submitting data" -msgstr "" -"Instrucciones para los autores. Se muestra a la hora de enviar los datos" - -#: includes/admin/views/acf-field-group/field.php:220 -msgid "Instructions" -msgstr "Instrucciones" - -#: includes/admin/views/acf-field-group/field.php:129 -msgid "Field Type" -msgstr "Tipo de campo" - -#: includes/admin/views/acf-field-group/field.php:170 -msgid "Single word, no spaces. Underscores and dashes allowed" -msgstr "Una sola palabra, sin espacios. Se permiten guiones y guiones bajos" - -#: includes/admin/views/acf-field-group/field.php:169 -msgid "Field Name" -msgstr "Nombre del campo" - -#: includes/admin/views/acf-field-group/field.php:157 -msgid "This is the name which will appear on the EDIT page" -msgstr "Este es el nombre que aparecerá en la página EDITAR" - -#: includes/admin/views/acf-field-group/field.php:156 -#: includes/admin/views/browse-fields-modal.php:59 -msgid "Field Label" -msgstr "Etiqueta del campo" - -#: includes/admin/views/acf-field-group/field.php:81 -msgid "Delete" -msgstr "Borrar" - -#: includes/admin/views/acf-field-group/field.php:81 -msgid "Delete field" -msgstr "Borrar campo" - -#: includes/admin/views/acf-field-group/field.php:79 -msgid "Move" -msgstr "Mover" - -#: includes/admin/views/acf-field-group/field.php:79 -msgid "Move field to another group" -msgstr "Mover campo a otro grupo" - -#: includes/admin/views/acf-field-group/field.php:77 -msgid "Duplicate field" -msgstr "Duplicar campo" - -#: includes/admin/views/acf-field-group/field.php:73 -#: includes/admin/views/acf-field-group/field.php:76 -msgid "Edit field" -msgstr "Editar campo" - -#: includes/admin/views/acf-field-group/field.php:69 -msgid "Drag to reorder" -msgstr "Arrastra para reordenar" - -#: includes/admin/post-types/admin-field-group.php:103 -#: includes/admin/views/acf-field-group/location-group.php:3 -#: assets/build/js/acf-field-group.js:2347 -#: assets/build/js/acf-field-group.js:2763 -msgid "Show this field group if" -msgstr "Mostrar este grupo de campos si" - -#: includes/admin/views/upgrade/upgrade.php:94 -#: includes/ajax/class-acf-ajax-upgrade.php:34 -msgid "No updates available." -msgstr "No hay actualizaciones disponibles." - -#: includes/admin/views/upgrade/upgrade.php:33 -msgid "Database upgrade complete. See what's new" -msgstr "" -"Actualización de la base de datos completa. Ver las " -"novedades" - -#: includes/admin/views/upgrade/upgrade.php:30 -msgid "Reading upgrade tasks..." -msgstr "Leyendo tareas de actualización..." - -#: includes/admin/views/upgrade/network.php:165 -#: includes/admin/views/upgrade/upgrade.php:65 -msgid "Upgrade failed." -msgstr "Fallo al actualizar." - -#: includes/admin/views/upgrade/network.php:162 -msgid "Upgrade complete." -msgstr "Actualización completa." - -#: includes/admin/views/upgrade/network.php:148 -#: includes/admin/views/upgrade/upgrade.php:31 -msgid "Upgrading data to version %s" -msgstr "Actualizando datos a la versión %s" - -#: includes/admin/views/upgrade/network.php:121 -#: includes/admin/views/upgrade/notice.php:44 -msgid "" -"It is strongly recommended that you backup your database before proceeding. " -"Are you sure you wish to run the updater now?" -msgstr "" -"Es muy recomendable que hagas una copia de seguridad de tu base de datos " -"antes de continuar. ¿Estás seguro que quieres ejecutar ya la actualización?" - -#: includes/admin/views/upgrade/network.php:117 -msgid "Please select at least one site to upgrade." -msgstr "Por favor, selecciona al menos un sitio para actualizarlo." - -#: includes/admin/views/upgrade/network.php:97 -msgid "" -"Database Upgrade complete. Return to network dashboard" -msgstr "" -"Actualización de base de datos completa. Volver al escritorio " -"de red" - -#: includes/admin/views/upgrade/network.php:80 -msgid "Site is up to date" -msgstr "El sitio está actualizado" - -#: includes/admin/views/upgrade/network.php:78 -msgid "Site requires database upgrade from %1$s to %2$s" -msgstr "El sitio necesita actualizar la base de datos de %1$s a %2$s" - -#: includes/admin/views/upgrade/network.php:36 -#: includes/admin/views/upgrade/network.php:47 -msgid "Site" -msgstr "Sitio" - -#: includes/admin/views/upgrade/network.php:26 -#: includes/admin/views/upgrade/network.php:27 -#: includes/admin/views/upgrade/network.php:96 -msgid "Upgrade Sites" -msgstr "Actualizar los sitios" - -#: includes/admin/views/upgrade/network.php:26 -msgid "" -"The following sites require a DB upgrade. Check the ones you want to update " -"and then click %s." -msgstr "" -"Es necesario actualizar la base de datos de los siguientes sitios. Marca los " -"que quieras actualizar y haz clic en %s." - -#: includes/admin/views/acf-field-group/conditional-logic.php:171 -#: includes/admin/views/acf-field-group/locations.php:38 -msgid "Add rule group" -msgstr "Añadir grupo de reglas" - -#: includes/admin/views/acf-field-group/locations.php:10 -msgid "" -"Create a set of rules to determine which edit screens will use these " -"advanced custom fields" -msgstr "" -"Crea un conjunto de reglas para determinar qué pantallas de edición " -"utilizarán estos campos personalizados" - -#: includes/admin/views/acf-field-group/locations.php:9 -msgid "Rules" -msgstr "Reglas" - -#: includes/admin/tools/class-acf-admin-tool-export.php:510 -msgid "Copied" -msgstr "Copiado" - -#: includes/admin/tools/class-acf-admin-tool-export.php:486 -msgid "Copy to clipboard" -msgstr "Copiar al portapapeles" - -#: includes/admin/tools/class-acf-admin-tool-export.php:385 -msgid "" -"Select the items you would like to export and then select your export " -"method. Export As JSON to export to a .json file which you can then import " -"to another ACF installation. Generate PHP to export to PHP code which you " -"can place in your theme." -msgstr "" -"Selecciona los grupos de campos que te gustaría exportar y luego elige tu " -"método de exportación. Exporta como JSON para exportar un archivo .json que " -"puedes importar en otra instalación de ACF. Genera PHP para exportar a " -"código PHP que puedes incluir en tu tema." - -#: includes/admin/tools/class-acf-admin-tool-export.php:233 -msgid "Select Field Groups" -msgstr "Selecciona grupos de campos" - -#: includes/admin/tools/class-acf-admin-tool-export.php:96 -#: includes/admin/tools/class-acf-admin-tool-export.php:131 -msgid "No field groups selected" -msgstr "Ningún grupo de campos seleccionado" - -#: includes/admin/tools/class-acf-admin-tool-export.php:39 -#: includes/admin/tools/class-acf-admin-tool-export.php:393 -#: includes/admin/tools/class-acf-admin-tool-export.php:421 -msgid "Generate PHP" -msgstr "Generar PHP" - -#: includes/admin/tools/class-acf-admin-tool-export.php:35 -msgid "Export Field Groups" -msgstr "Exportar grupos de campos" - -#: includes/admin/tools/class-acf-admin-tool-import.php:177 -msgid "Import file empty" -msgstr "Archivo de imporación vacío" - -#: includes/admin/tools/class-acf-admin-tool-import.php:168 -msgid "Incorrect file type" -msgstr "Tipo de campo incorrecto" - -#: includes/admin/tools/class-acf-admin-tool-import.php:163 -msgid "Error uploading file. Please try again" -msgstr "Error al subir el archivo. Por favor, inténtalo de nuevo" - -#: includes/admin/tools/class-acf-admin-tool-import.php:50 -msgid "" -"Select the Advanced Custom Fields JSON file you would like to import. When " -"you click the import button below, ACF will import the items in that file." -msgstr "" -"Selecciona el archivo JSON de Advanced Custom Fields que te gustaría " -"importar. Cuando hagas clic en el botón importar de abajo, ACF importará los " -"grupos de campos." - -#: includes/admin/tools/class-acf-admin-tool-import.php:27 -msgid "Import Field Groups" -msgstr "Importar grupo de campos" - -#: includes/admin/admin-internal-post-type-list.php:401 -msgid "Sync" -msgstr "Sincronizar" - -#: includes/admin/admin-internal-post-type-list.php:858 -msgid "Select %s" -msgstr "Selecciona %s" - -#: includes/admin/admin-internal-post-type-list.php:442 -#: includes/admin/admin-internal-post-type-list.php:474 -#: includes/admin/views/acf-field-group/field.php:77 -msgid "Duplicate" -msgstr "Duplicar" - -#: includes/admin/admin-internal-post-type-list.php:442 -msgid "Duplicate this item" -msgstr "Duplicar este elemento" - -#: includes/admin/views/acf-post-type/advanced-settings.php:41 -msgid "Supports" -msgstr "Supports" - -#: includes/admin/admin.php:261 includes/admin/views/browse-fields-modal.php:92 -msgid "Documentation" -msgstr "Documentación" - -#: includes/admin/post-types/admin-field-groups.php:116 -#: includes/admin/post-types/admin-post-types.php:135 -#: includes/admin/post-types/admin-taxonomies.php:135 -#: includes/admin/views/acf-field-group/options.php:249 -#: includes/admin/views/acf-post-type/advanced-settings.php:62 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:114 -#: includes/admin/views/upgrade/network.php:38 -#: includes/admin/views/upgrade/network.php:49 -msgid "Description" -msgstr "Descripción" - -#: includes/admin/admin-internal-post-type-list.php:398 -#: includes/admin/admin-internal-post-type-list.php:747 -msgid "Sync available" -msgstr "Sincronización disponible" - -#. translators: %s number of field groups synchronized -#: includes/admin/post-types/admin-field-groups.php:381 -msgid "Field group synchronized." -msgid_plural "%s field groups synchronized." -msgstr[0] "Grupo de campos sincronizado." -msgstr[1] "%s grupos de campos sincronizados." - -#. translators: %s number of field groups duplicated -#: includes/admin/post-types/admin-field-groups.php:374 -msgid "Field group duplicated." -msgid_plural "%s field groups duplicated." -msgstr[0] "Grupo de campos duplicado." -msgstr[1] "%s grupos de campos duplicados." - -#: includes/admin/admin-internal-post-type-list.php:137 -msgid "Active (%s)" -msgid_plural "Active (%s)" -msgstr[0] "Activo (%s)" -msgstr[1] "Activos (%s)" - -#: includes/admin/admin-upgrade.php:254 -msgid "Review sites & upgrade" -msgstr "Revisar sitios y actualizar" - -#: includes/admin/admin-upgrade.php:59 includes/admin/admin-upgrade.php:93 -#: includes/admin/admin-upgrade.php:94 includes/admin/admin-upgrade.php:230 -#: includes/admin/views/upgrade/network.php:24 -#: includes/admin/views/upgrade/upgrade.php:26 -msgid "Upgrade Database" -msgstr "Actualizar base de datos" - -#: includes/admin/views/acf-field-group/options.php:175 -#: includes/admin/views/acf-post-type/advanced-settings.php:30 -msgid "Custom Fields" -msgstr "Campos personalizados" - -#: includes/admin/post-types/admin-field-group.php:616 -msgid "Move Field" -msgstr "Mover campo" - -#: includes/admin/post-types/admin-field-group.php:605 -#: includes/admin/post-types/admin-field-group.php:609 -msgid "Please select the destination for this field" -msgstr "Por favor, selecciona el destino para este campo" - -#. translators: Confirmation message once a field has been moved to a different -#. field group. -#: includes/admin/post-types/admin-field-group.php:567 -msgid "The %1$s field can now be found in the %2$s field group" -msgstr "El campo %1$s ahora se puede encontrar en el grupo de campos %2$s" - -#: includes/admin/post-types/admin-field-group.php:564 -msgid "Move Complete." -msgstr "Movimiento completo." - -#: includes/admin/views/acf-field-group/field.php:39 -#: includes/admin/views/acf-field-group/options.php:217 -#: includes/admin/views/acf-post-type/advanced-settings.php:78 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:130 -msgid "Active" -msgstr "Activo" - -#: includes/admin/post-types/admin-field-group.php:266 -msgid "Field Keys" -msgstr "Claves de campo" - -#: includes/admin/post-types/admin-field-group.php:164 -#: includes/admin/tools/class-acf-admin-tool-export.php:342 -msgid "Settings" -msgstr "Ajustes" - -#: includes/admin/post-types/admin-field-groups.php:118 -msgid "Location" -msgstr "Ubicación" - -#: includes/admin/post-types/admin-field-group.php:104 -#: assets/build/js/acf-input.js:983 assets/build/js/acf-input.js:1075 -msgid "Null" -msgstr "Null" - -#: includes/admin/post-types/admin-field-group.php:101 -#: includes/class-acf-internal-post-type.php:730 -#: includes/post-types/class-acf-field-group.php:345 -#: assets/build/js/acf-field-group.js:1510 -#: assets/build/js/acf-field-group.js:1821 -msgid "copy" -msgstr "copiar" - -#: includes/admin/post-types/admin-field-group.php:100 -#: assets/build/js/acf-field-group.js:623 -#: assets/build/js/acf-field-group.js:778 -msgid "(this field)" -msgstr "(este campo)" - -#: includes/admin/post-types/admin-field-group.php:98 -#: assets/build/js/acf-input.js:918 assets/build/js/acf-input.js:943 -#: assets/build/js/acf-input.js:1002 assets/build/js/acf-input.js:1030 -msgid "Checked" -msgstr "Seleccionado" - -#: includes/admin/post-types/admin-field-group.php:94 -#: assets/build/js/acf-field-group.js:1615 -#: assets/build/js/acf-field-group.js:1933 -msgid "Move Custom Field" -msgstr "Mover campo personalizado" - -#: includes/admin/post-types/admin-field-group.php:93 -#: assets/build/js/acf-field-group.js:649 -#: assets/build/js/acf-field-group.js:804 -msgid "No toggle fields available" -msgstr "No hay campos de conmutación disponibles" - -#: includes/admin/post-types/admin-field-group.php:91 -msgid "Field group title is required" -msgstr "El título del grupo de campos es obligatorio" - -#: includes/admin/post-types/admin-field-group.php:90 -#: assets/build/js/acf-field-group.js:1604 -#: assets/build/js/acf-field-group.js:1919 -msgid "This field cannot be moved until its changes have been saved" -msgstr "Este campo se puede mover hasta que sus cambios se hayan guardado" - -#: includes/admin/post-types/admin-field-group.php:89 -#: assets/build/js/acf-field-group.js:1414 -#: assets/build/js/acf-field-group.js:1716 -msgid "The string \"field_\" may not be used at the start of a field name" -msgstr "" -"La cadena \"field_\" no se debe utilizar al comienzo de un nombre de campo" - -#: includes/admin/post-types/admin-field-group.php:71 -msgid "Field group draft updated." -msgstr "Borrador del grupo de campos actualizado." - -#: includes/admin/post-types/admin-field-group.php:70 -msgid "Field group scheduled for." -msgstr "Grupo de campos programado." - -#: includes/admin/post-types/admin-field-group.php:69 -msgid "Field group submitted." -msgstr "Grupo de campos enviado." - -#: includes/admin/post-types/admin-field-group.php:68 -msgid "Field group saved." -msgstr "Grupo de campos guardado." - -#: includes/admin/post-types/admin-field-group.php:67 -msgid "Field group published." -msgstr "Grupo de campos publicado." - -#: includes/admin/post-types/admin-field-group.php:64 -msgid "Field group deleted." -msgstr "Grupo de campos eliminado." - -#: includes/admin/post-types/admin-field-group.php:62 -#: includes/admin/post-types/admin-field-group.php:63 -#: includes/admin/post-types/admin-field-group.php:65 -msgid "Field group updated." -msgstr "Grupo de campos actualizado." - -#: includes/admin/admin-tools.php:118 -#: includes/admin/views/global/navigation.php:246 -#: includes/admin/views/tools/tools.php:21 -msgid "Tools" -msgstr "Herramientas" - -#: includes/locations/abstract-acf-location.php:106 -msgid "is not equal to" -msgstr "no es igual a" - -#: includes/locations/abstract-acf-location.php:105 -msgid "is equal to" -msgstr "es igual a" - -#: includes/locations.php:102 -msgid "Forms" -msgstr "Formularios" - -#: includes/admin/post-types/admin-post-type.php:127 includes/locations.php:100 -#: includes/locations/class-acf-location-page.php:22 -#: assets/build/js/acf-internal-post-type.js:175 -#: assets/build/js/acf-internal-post-type.js:249 -msgid "Page" -msgstr "Página" - -#: includes/admin/post-types/admin-post-type.php:125 includes/locations.php:99 -#: includes/locations/class-acf-location-post.php:22 -#: assets/build/js/acf-internal-post-type.js:172 -#: assets/build/js/acf-internal-post-type.js:246 -msgid "Post" -msgstr "Entrada" - -#: includes/fields.php:354 -msgid "Relational" -msgstr "Relación" - -#: includes/fields.php:353 -msgid "Choice" -msgstr "Elección" - -#: includes/fields.php:351 -msgid "Basic" -msgstr "Básico" - -#: includes/fields.php:320 -msgid "Unknown" -msgstr "Desconocido" - -#: includes/fields.php:320 -msgid "Field type does not exist" -msgstr "El tipo de campo no existe" - -#: includes/forms/form-front.php:236 -msgid "Spam Detected" -msgstr "Spam detectado" - -#: includes/forms/form-front.php:107 -msgid "Post updated" -msgstr "Publicación actualizada" - -#: includes/forms/form-front.php:106 -msgid "Update" -msgstr "Actualizar" - -#: includes/forms/form-front.php:57 -msgid "Validate Email" -msgstr "Validar correo electrónico" - -#: includes/fields.php:352 includes/forms/form-front.php:49 -msgid "Content" -msgstr "Contenido" - -#: includes/admin/views/acf-post-type/advanced-settings.php:21 -#: includes/forms/form-front.php:40 -msgid "Title" -msgstr "Título" - -#: includes/assets.php:372 includes/forms/form-comment.php:160 -#: assets/build/js/acf-input.js:7382 assets/build/js/acf-input.js:7968 -msgid "Edit field group" -msgstr "Editar grupo de campos" - -#: includes/admin/post-types/admin-field-group.php:117 -#: assets/build/js/acf-input.js:1125 assets/build/js/acf-input.js:1230 -msgid "Selection is less than" -msgstr "La selección es menor que" - -#: includes/admin/post-types/admin-field-group.php:116 -#: assets/build/js/acf-input.js:1106 assets/build/js/acf-input.js:1202 -msgid "Selection is greater than" -msgstr "La selección es mayor que" - -#: includes/admin/post-types/admin-field-group.php:115 -#: assets/build/js/acf-input.js:1075 assets/build/js/acf-input.js:1170 -msgid "Value is less than" -msgstr "El valor es menor que" - -#: includes/admin/post-types/admin-field-group.php:114 -#: assets/build/js/acf-input.js:1045 assets/build/js/acf-input.js:1139 -msgid "Value is greater than" -msgstr "El valor es mayor que" - -#: includes/admin/post-types/admin-field-group.php:113 -#: assets/build/js/acf-input.js:888 assets/build/js/acf-input.js:960 -msgid "Value contains" -msgstr "El valor contiene" - -#: includes/admin/post-types/admin-field-group.php:112 -#: assets/build/js/acf-input.js:862 assets/build/js/acf-input.js:926 -msgid "Value matches pattern" -msgstr "El valor coincide con el patrón" - -#: includes/admin/post-types/admin-field-group.php:111 -#: assets/build/js/acf-input.js:840 assets/build/js/acf-input.js:1023 -#: assets/build/js/acf-input.js:903 assets/build/js/acf-input.js:1116 -msgid "Value is not equal to" -msgstr "El valor no es igual a" - -#: includes/admin/post-types/admin-field-group.php:110 -#: assets/build/js/acf-input.js:810 assets/build/js/acf-input.js:964 -#: assets/build/js/acf-input.js:864 assets/build/js/acf-input.js:1053 -msgid "Value is equal to" -msgstr "El valor es igual a" - -#: includes/admin/post-types/admin-field-group.php:109 -#: assets/build/js/acf-input.js:788 assets/build/js/acf-input.js:841 -msgid "Has no value" -msgstr "No tiene ningún valor" - -#: includes/admin/post-types/admin-field-group.php:108 -#: assets/build/js/acf-input.js:758 assets/build/js/acf-input.js:783 -msgid "Has any value" -msgstr "No tiene algún valor" - -#: includes/admin/admin-internal-post-type.php:345 -#: includes/admin/views/browse-fields-modal.php:62 includes/assets.php:353 -#: assets/build/js/acf.js:1564 assets/build/js/acf.js:1658 -msgid "Cancel" -msgstr "Cancelar" - -#: includes/assets.php:349 assets/build/js/acf.js:1738 -#: assets/build/js/acf.js:1855 -msgid "Are you sure?" -msgstr "¿Estás seguro?" - -#: includes/assets.php:369 assets/build/js/acf-input.js:9442 -#: assets/build/js/acf-input.js:10294 -msgid "%d fields require attention" -msgstr "%d campos requieren atención" - -#: includes/assets.php:368 assets/build/js/acf-input.js:9440 -#: assets/build/js/acf-input.js:10290 -msgid "1 field requires attention" -msgstr "1 campo requiere atención" - -#: includes/assets.php:367 includes/validation.php:288 -#: includes/validation.php:298 assets/build/js/acf-input.js:9435 -#: assets/build/js/acf-input.js:10285 -msgid "Validation failed" -msgstr "Validación fallida" - -#: includes/assets.php:366 assets/build/js/acf-input.js:9603 -#: assets/build/js/acf-input.js:10473 -msgid "Validation successful" -msgstr "Validación correcta" - -#: includes/media.php:54 assets/build/js/acf-input.js:7210 -#: assets/build/js/acf-input.js:7772 -msgid "Restricted" -msgstr "Restringido" - -#: includes/media.php:53 assets/build/js/acf-input.js:7025 -#: assets/build/js/acf-input.js:7536 -msgid "Collapse Details" -msgstr "Contraer detalles" - -#: includes/media.php:52 assets/build/js/acf-input.js:7025 -#: assets/build/js/acf-input.js:7533 -msgid "Expand Details" -msgstr "Ampliar detalles" - -#: includes/admin/views/acf-post-type/advanced-settings.php:465 -#: includes/media.php:51 assets/build/js/acf-input.js:6892 -#: assets/build/js/acf-input.js:7381 -msgid "Uploaded to this post" -msgstr "Subido a esta publicación" - -#: includes/media.php:50 assets/build/js/acf-input.js:6931 -#: assets/build/js/acf-input.js:7420 -msgctxt "verb" -msgid "Update" -msgstr "Actualizar" - -#: includes/media.php:49 -msgctxt "verb" -msgid "Edit" -msgstr "Editar" - -#: includes/assets.php:363 assets/build/js/acf-input.js:9212 -#: assets/build/js/acf-input.js:10056 -msgid "The changes you made will be lost if you navigate away from this page" -msgstr "Los cambios que has realizado se perderán si navegas hacia otra página" - -#: includes/api/api-helpers.php:3395 -msgid "File type must be %s." -msgstr "El tipo de archivo debe ser %s." - -#: includes/admin/post-types/admin-field-group.php:102 -#: includes/admin/views/acf-field-group/conditional-logic.php:59 -#: includes/admin/views/acf-field-group/conditional-logic.php:169 -#: includes/admin/views/acf-field-group/location-group.php:3 -#: includes/admin/views/acf-field-group/locations.php:36 -#: includes/api/api-helpers.php:3391 assets/build/js/acf-field-group.js:771 -#: assets/build/js/acf-field-group.js:2385 -#: assets/build/js/acf-field-group.js:933 -#: assets/build/js/acf-field-group.js:2807 -msgid "or" -msgstr "o" - -#: includes/api/api-helpers.php:3364 -msgid "File size must not exceed %s." -msgstr "El tamaño del archivo no debe ser mayor de %s." - -#: includes/api/api-helpers.php:3359 -msgid "File size must be at least %s." -msgstr "El tamaño de archivo debe ser al menos %s." - -#: includes/api/api-helpers.php:3344 -msgid "Image height must not exceed %dpx." -msgstr "La altura de la imagen no debe exceder %dpx." - -#: includes/api/api-helpers.php:3339 -msgid "Image height must be at least %dpx." -msgstr "La altura de la imagen debe ser al menos %dpx." - -#: includes/api/api-helpers.php:3325 -msgid "Image width must not exceed %dpx." -msgstr "El ancho de la imagen no debe exceder %dpx." - -#: includes/api/api-helpers.php:3320 -msgid "Image width must be at least %dpx." -msgstr "El ancho de la imagen debe ser al menos %dpx." - -#: includes/api/api-helpers.php:1561 includes/api/api-term.php:147 -msgid "(no title)" -msgstr "(sin título)" - -#: includes/api/api-helpers.php:853 -msgid "Full Size" -msgstr "Tamaño completo" - -#: includes/api/api-helpers.php:812 -msgid "Large" -msgstr "Grande" - -#: includes/api/api-helpers.php:811 -msgid "Medium" -msgstr "Mediano" - -#: includes/api/api-helpers.php:810 -msgid "Thumbnail" -msgstr "Miniatura" - -#: includes/acf-field-functions.php:854 -#: includes/admin/post-types/admin-field-group.php:99 -#: assets/build/js/acf-field-group.js:1077 -#: assets/build/js/acf-field-group.js:1260 -msgid "(no label)" -msgstr "(sin etiqueta)" - -#: includes/fields/class-acf-field-textarea.php:145 -msgid "Sets the textarea height" -msgstr "Establece la altura del área de texto" - -#: includes/fields/class-acf-field-textarea.php:144 -msgid "Rows" -msgstr "Filas" - -#: includes/fields/class-acf-field-textarea.php:25 -msgid "Text Area" -msgstr "Área de texto" - -#: includes/fields/class-acf-field-checkbox.php:451 -msgid "Prepend an extra checkbox to toggle all choices" -msgstr "" -"Anteponer una casilla de verificación extra para cambiar todas las opciones" - -#: includes/fields/class-acf-field-checkbox.php:413 -msgid "Save 'custom' values to the field's choices" -msgstr "Guardar los valores «personalizados» a las opciones del campo" - -#: includes/fields/class-acf-field-checkbox.php:402 -msgid "Allow 'custom' values to be added" -msgstr "Permite añadir valores personalizados" - -#: includes/fields/class-acf-field-checkbox.php:38 -msgid "Add new choice" -msgstr "Añadir nueva opción" - -#: includes/fields/class-acf-field-checkbox.php:174 -msgid "Toggle All" -msgstr "Invertir todos" - -#: includes/fields/class-acf-field-page_link.php:506 -msgid "Allow Archives URLs" -msgstr "Permitir las URLs de los archivos" - -#: includes/fields/class-acf-field-page_link.php:179 -msgid "Archives" -msgstr "Archivo" - -#: includes/fields/class-acf-field-page_link.php:25 -msgid "Page Link" -msgstr "Enlace a página" - -#: includes/fields/class-acf-field-taxonomy.php:943 -#: includes/locations/class-acf-location-user-form.php:72 -msgid "Add" -msgstr "Añadir" - -#: includes/admin/views/acf-field-group/fields.php:53 -#: includes/fields/class-acf-field-taxonomy.php:908 -msgid "Name" -msgstr "Nombre" - -#: includes/fields/class-acf-field-taxonomy.php:892 -msgid "%s added" -msgstr "%s añadido/s" - -#: includes/fields/class-acf-field-taxonomy.php:856 -msgid "%s already exists" -msgstr "%s ya existe" - -#: includes/fields/class-acf-field-taxonomy.php:844 -msgid "User unable to add new %s" -msgstr "El usuario no puede añadir nuevos %s" - -#: includes/fields/class-acf-field-taxonomy.php:742 -msgid "Term ID" -msgstr "ID de término" - -#: includes/fields/class-acf-field-taxonomy.php:741 -msgid "Term Object" -msgstr "Objeto de término" - -#: includes/fields/class-acf-field-taxonomy.php:726 -msgid "Load value from posts terms" -msgstr "Cargar el valor de los términos de la publicación" - -#: includes/fields/class-acf-field-taxonomy.php:725 -msgid "Load Terms" -msgstr "Cargar términos" - -#: includes/fields/class-acf-field-taxonomy.php:715 -msgid "Connect selected terms to the post" -msgstr "Conectar los términos seleccionados con la publicación" - -#: includes/fields/class-acf-field-taxonomy.php:714 -msgid "Save Terms" -msgstr "Guardar términos" - -#: includes/fields/class-acf-field-taxonomy.php:704 -msgid "Allow new terms to be created whilst editing" -msgstr "Permitir la creación de nuevos términos mientras se edita" - -#: includes/fields/class-acf-field-taxonomy.php:703 -msgid "Create Terms" -msgstr "Crear términos" - -#: includes/fields/class-acf-field-taxonomy.php:762 -msgid "Radio Buttons" -msgstr "Botones de radio" - -#: includes/fields/class-acf-field-taxonomy.php:761 -msgid "Single Value" -msgstr "Valor único" - -#: includes/fields/class-acf-field-taxonomy.php:759 -msgid "Multi Select" -msgstr "Selección múltiple" - -#: includes/fields/class-acf-field-checkbox.php:25 -#: includes/fields/class-acf-field-taxonomy.php:758 -msgid "Checkbox" -msgstr "Casilla de verificación" - -#: includes/fields/class-acf-field-taxonomy.php:757 -msgid "Multiple Values" -msgstr "Valores múltiples" - -#: includes/fields/class-acf-field-taxonomy.php:752 -msgid "Select the appearance of this field" -msgstr "Selecciona la apariencia de este campo" - -#: includes/fields/class-acf-field-taxonomy.php:751 -msgid "Appearance" -msgstr "Apariencia" - -#: includes/fields/class-acf-field-taxonomy.php:693 -msgid "Select the taxonomy to be displayed" -msgstr "Selecciona la taxonomía a mostrar" - -#: includes/fields/class-acf-field-taxonomy.php:654 -msgctxt "No Terms" -msgid "No %s" -msgstr "Ningún %s" - -#: includes/fields/class-acf-field-number.php:266 -msgid "Value must be equal to or lower than %d" -msgstr "El valor debe ser menor o igual a %d" - -#: includes/fields/class-acf-field-number.php:259 -msgid "Value must be equal to or higher than %d" -msgstr "El valor debe ser mayor o igual a %d" - -#: includes/fields/class-acf-field-number.php:244 -msgid "Value must be a number" -msgstr "El valor debe ser un número" - -#: includes/fields/class-acf-field-number.php:25 -msgid "Number" -msgstr "Número" - -#: includes/fields/class-acf-field-radio.php:264 -msgid "Save 'other' values to the field's choices" -msgstr "Guardar los valores de 'otros' en las opciones del campo" - -#: includes/fields/class-acf-field-radio.php:253 -msgid "Add 'other' choice to allow for custom values" -msgstr "Añade la opción 'otros' para permitir valores personalizados" - -#: includes/admin/views/global/navigation.php:196 -msgid "Other" -msgstr "Otros" - -#: includes/fields/class-acf-field-radio.php:25 -msgid "Radio Button" -msgstr "Botón de radio" - -#: includes/fields/class-acf-field-accordion.php:107 -msgid "" -"Define an endpoint for the previous accordion to stop. This accordion will " -"not be visible." -msgstr "" -"Define un punto final para que el acordeón anterior se detenga. Este " -"acordeón no será visible." - -#: includes/fields/class-acf-field-accordion.php:96 -msgid "Allow this accordion to open without closing others." -msgstr "Permita que este acordeón se abra sin cerrar otros." - -#: includes/fields/class-acf-field-accordion.php:95 -msgid "Multi-Expand" -msgstr "Multi-Expand" - -#: includes/fields/class-acf-field-accordion.php:85 -msgid "Display this accordion as open on page load." -msgstr "Muestra este acordeón como abierto en la carga de la página." - -#: includes/fields/class-acf-field-accordion.php:84 -msgid "Open" -msgstr "Abrir" - -#: includes/fields/class-acf-field-accordion.php:25 -msgid "Accordion" -msgstr "Acordeón" - -#: includes/fields/class-acf-field-file.php:267 -#: includes/fields/class-acf-field-file.php:279 -msgid "Restrict which files can be uploaded" -msgstr "Restringir qué archivos que se pueden subir" - -#: includes/fields/class-acf-field-file.php:220 -msgid "File ID" -msgstr "ID del archivo" - -#: includes/fields/class-acf-field-file.php:219 -msgid "File URL" -msgstr "URL del archivo" - -#: includes/fields/class-acf-field-file.php:218 -msgid "File Array" -msgstr "Array del archivo" - -#: includes/fields/class-acf-field-file.php:186 -msgid "Add File" -msgstr "Añadir archivo" - -#: includes/admin/tools/class-acf-admin-tool-import.php:156 -#: includes/fields/class-acf-field-file.php:186 -msgid "No file selected" -msgstr "Ningún archivo seleccionado" - -#: includes/fields/class-acf-field-file.php:150 -msgid "File name" -msgstr "Nombre del archivo" - -#: includes/fields/class-acf-field-file.php:63 -#: assets/build/js/acf-input.js:2474 assets/build/js/acf-input.js:2625 -msgid "Update File" -msgstr "Actualizar archivo" - -#: includes/fields/class-acf-field-file.php:62 -#: assets/build/js/acf-input.js:2473 assets/build/js/acf-input.js:2624 -msgid "Edit File" -msgstr "Editar archivo" - -#: includes/admin/tools/class-acf-admin-tool-import.php:58 -#: includes/fields/class-acf-field-file.php:61 -#: assets/build/js/acf-input.js:2447 assets/build/js/acf-input.js:2597 -msgid "Select File" -msgstr "Seleccionar archivo" - -#: includes/fields/class-acf-field-file.php:25 -msgid "File" -msgstr "Archivo" - -#: includes/fields/class-acf-field-password.php:25 -msgid "Password" -msgstr "Contraseña" - -#: includes/fields/class-acf-field-select.php:392 -msgid "Specify the value returned" -msgstr "Especifica el valor devuelto" - -#: includes/fields/class-acf-field-select.php:461 -msgid "Use AJAX to lazy load choices?" -msgstr "¿Usar AJAX para hacer cargar las opciones de forma asíncrona?" - -#: includes/fields/class-acf-field-checkbox.php:362 -#: includes/fields/class-acf-field-select.php:381 -msgid "Enter each default value on a new line" -msgstr "Añade cada valor en una nueva línea" - -#: includes/fields/class-acf-field-select.php:252 includes/media.php:48 -#: assets/build/js/acf-input.js:6790 assets/build/js/acf-input.js:7266 -msgctxt "verb" -msgid "Select" -msgstr "Selecciona" - -#: includes/fields/class-acf-field-select.php:121 -msgctxt "Select2 JS load_fail" -msgid "Loading failed" -msgstr "Error al cargar" - -#: includes/fields/class-acf-field-select.php:120 -msgctxt "Select2 JS searching" -msgid "Searching…" -msgstr "Buscando…" - -#: includes/fields/class-acf-field-select.php:119 -msgctxt "Select2 JS load_more" -msgid "Loading more results…" -msgstr "Cargando más resultados…" - -#: includes/fields/class-acf-field-select.php:118 -msgctxt "Select2 JS selection_too_long_n" -msgid "You can only select %d items" -msgstr "Solo puedes seleccionar %d elementos" - -#: includes/fields/class-acf-field-select.php:117 -msgctxt "Select2 JS selection_too_long_1" -msgid "You can only select 1 item" -msgstr "Solo puedes seleccionar 1 elemento" - -#: includes/fields/class-acf-field-select.php:116 -msgctxt "Select2 JS input_too_long_n" -msgid "Please delete %d characters" -msgstr "Por favor, borra %d caracteres" - -#: includes/fields/class-acf-field-select.php:115 -msgctxt "Select2 JS input_too_long_1" -msgid "Please delete 1 character" -msgstr "Por favor, borra 1 carácter" - -#: includes/fields/class-acf-field-select.php:114 -msgctxt "Select2 JS input_too_short_n" -msgid "Please enter %d or more characters" -msgstr "Por favor, introduce %d o más caracteres" - -#: includes/fields/class-acf-field-select.php:113 -msgctxt "Select2 JS input_too_short_1" -msgid "Please enter 1 or more characters" -msgstr "Por favor, introduce 1 o más caracteres" - -#: includes/fields/class-acf-field-select.php:112 -msgctxt "Select2 JS matches_0" -msgid "No matches found" -msgstr "No se han encontrado coincidencias" - -#: includes/fields/class-acf-field-select.php:111 -msgctxt "Select2 JS matches_n" -msgid "%d results are available, use up and down arrow keys to navigate." -msgstr "" -"%d resultados disponibles, utiliza las flechas arriba y abajo para navegar " -"por los resultados." - -#: includes/fields/class-acf-field-select.php:110 -msgctxt "Select2 JS matches_1" -msgid "One result is available, press enter to select it." -msgstr "Hay un resultado disponible, pulsa enter para seleccionarlo." - -#: includes/fields/class-acf-field-select.php:25 -#: includes/fields/class-acf-field-taxonomy.php:763 -msgctxt "noun" -msgid "Select" -msgstr "Selección" - -#: includes/fields/class-acf-field-user.php:73 -msgid "User ID" -msgstr "ID del usuario" - -#: includes/fields/class-acf-field-user.php:72 -msgid "User Object" -msgstr "Grupo de objetos" - -#: includes/fields/class-acf-field-user.php:71 -msgid "User Array" -msgstr "Grupo de usuarios" - -#: includes/fields/class-acf-field-user.php:59 -msgid "All user roles" -msgstr "Todos los roles de usuario" - -#: includes/fields/class-acf-field-user.php:51 -msgid "Filter by Role" -msgstr "Filtrar por función" - -#: includes/fields/class-acf-field-user.php:15 includes/locations.php:101 -msgid "User" -msgstr "Usuario" - -#: includes/fields/class-acf-field-separator.php:25 -msgid "Separator" -msgstr "Separador" - -#: includes/fields/class-acf-field-color_picker.php:75 -msgid "Select Color" -msgstr "Seleccionar color" - -#: includes/admin/post-types/admin-post-type.php:129 -#: includes/admin/post-types/admin-taxonomy.php:131 -#: includes/fields/class-acf-field-color_picker.php:73 -#: assets/build/js/acf-internal-post-type.js:72 -#: assets/build/js/acf-internal-post-type.js:86 -msgid "Default" -msgstr "Por defecto" - -#: includes/admin/views/acf-post-type/advanced-settings.php:89 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:141 -#: includes/fields/class-acf-field-color_picker.php:71 -msgid "Clear" -msgstr "Vaciar" - -#: includes/fields/class-acf-field-color_picker.php:25 -msgid "Color Picker" -msgstr "Selector de color" - -#: includes/fields/class-acf-field-date_time_picker.php:88 -msgctxt "Date Time Picker JS pmTextShort" -msgid "P" -msgstr "P" - -#: includes/fields/class-acf-field-date_time_picker.php:87 -msgctxt "Date Time Picker JS pmText" -msgid "PM" -msgstr "PM" - -#: includes/fields/class-acf-field-date_time_picker.php:84 -msgctxt "Date Time Picker JS amTextShort" -msgid "A" -msgstr "A" - -#: includes/fields/class-acf-field-date_time_picker.php:83 -msgctxt "Date Time Picker JS amText" -msgid "AM" -msgstr "AM" - -#: includes/fields/class-acf-field-date_time_picker.php:81 -msgctxt "Date Time Picker JS selectText" -msgid "Select" -msgstr "Seleccionar" - -#: includes/fields/class-acf-field-date_time_picker.php:80 -msgctxt "Date Time Picker JS closeText" -msgid "Done" -msgstr "Hecho" - -#: includes/fields/class-acf-field-date_time_picker.php:79 -msgctxt "Date Time Picker JS currentText" -msgid "Now" -msgstr "Ahora" - -#: includes/fields/class-acf-field-date_time_picker.php:78 -msgctxt "Date Time Picker JS timezoneText" -msgid "Time Zone" -msgstr "Zona horaria" - -#: includes/fields/class-acf-field-date_time_picker.php:77 -msgctxt "Date Time Picker JS microsecText" -msgid "Microsecond" -msgstr "Microsegundo" - -#: includes/fields/class-acf-field-date_time_picker.php:76 -msgctxt "Date Time Picker JS millisecText" -msgid "Millisecond" -msgstr "Milisegundo" - -#: includes/fields/class-acf-field-date_time_picker.php:75 -msgctxt "Date Time Picker JS secondText" -msgid "Second" -msgstr "Segundo" - -#: includes/fields/class-acf-field-date_time_picker.php:74 -msgctxt "Date Time Picker JS minuteText" -msgid "Minute" -msgstr "Minuto" - -#: includes/fields/class-acf-field-date_time_picker.php:73 -msgctxt "Date Time Picker JS hourText" -msgid "Hour" -msgstr "Hora" - -#: includes/fields/class-acf-field-date_time_picker.php:72 -msgctxt "Date Time Picker JS timeText" -msgid "Time" -msgstr "Hora" - -#: includes/fields/class-acf-field-date_time_picker.php:71 -msgctxt "Date Time Picker JS timeOnlyTitle" -msgid "Choose Time" -msgstr "Elegir hora" - -#: includes/fields/class-acf-field-date_time_picker.php:25 -msgid "Date Time Picker" -msgstr "Selector de fecha y hora" - -#: includes/fields/class-acf-field-accordion.php:106 -msgid "Endpoint" -msgstr "Variable" - -#: includes/admin/views/acf-field-group/options.php:130 -#: includes/fields/class-acf-field-tab.php:115 -msgid "Left aligned" -msgstr "Alineada a la izquierda" - -#: includes/admin/views/acf-field-group/options.php:129 -#: includes/fields/class-acf-field-tab.php:114 -msgid "Top aligned" -msgstr "Alineada arriba" - -#: includes/fields/class-acf-field-tab.php:110 -msgid "Placement" -msgstr "Ubicación" - -#: includes/fields/class-acf-field-tab.php:26 -msgid "Tab" -msgstr "Pestaña" - -#: includes/fields/class-acf-field-url.php:162 -msgid "Value must be a valid URL" -msgstr "El valor debe ser una URL válida" - -#: includes/fields/class-acf-field-link.php:177 -msgid "Link URL" -msgstr "URL del enlace" - -#: includes/fields/class-acf-field-link.php:176 -msgid "Link Array" -msgstr "Array de enlaces" - -#: includes/fields/class-acf-field-link.php:145 -msgid "Opens in a new window/tab" -msgstr "Abrir en una nueva ventana/pestaña" - -#: includes/fields/class-acf-field-link.php:140 -msgid "Select Link" -msgstr "Elige el enlace" - -#: includes/fields/class-acf-field-link.php:25 -msgid "Link" -msgstr "Enlace" - -#: includes/fields/class-acf-field-email.php:25 -msgid "Email" -msgstr "Correo electrónico" - -#: includes/fields/class-acf-field-number.php:188 -#: includes/fields/class-acf-field-range.php:217 -msgid "Step Size" -msgstr "Tamaño de paso" - -#: includes/fields/class-acf-field-number.php:158 -#: includes/fields/class-acf-field-range.php:195 -msgid "Maximum Value" -msgstr "Valor máximo" - -#: includes/fields/class-acf-field-number.php:148 -#: includes/fields/class-acf-field-range.php:184 -msgid "Minimum Value" -msgstr "Valor mínimo" - -#: includes/fields/class-acf-field-range.php:25 -msgid "Range" -msgstr "Rango" - -#: includes/fields/class-acf-field-button-group.php:175 -#: includes/fields/class-acf-field-checkbox.php:379 -#: includes/fields/class-acf-field-radio.php:220 -#: includes/fields/class-acf-field-select.php:399 -msgid "Both (Array)" -msgstr "Ambos (Array)" - -#: includes/admin/views/acf-field-group/fields.php:52 -#: includes/fields/class-acf-field-button-group.php:174 -#: includes/fields/class-acf-field-checkbox.php:378 -#: includes/fields/class-acf-field-radio.php:219 -#: includes/fields/class-acf-field-select.php:398 -msgid "Label" -msgstr "Etiqueta" - -#: includes/fields/class-acf-field-button-group.php:173 -#: includes/fields/class-acf-field-checkbox.php:377 -#: includes/fields/class-acf-field-radio.php:218 -#: includes/fields/class-acf-field-select.php:397 -msgid "Value" -msgstr "Valor" - -#: includes/fields/class-acf-field-button-group.php:222 -#: includes/fields/class-acf-field-checkbox.php:441 -#: includes/fields/class-acf-field-radio.php:292 -msgid "Vertical" -msgstr "Vertical" - -#: includes/fields/class-acf-field-button-group.php:221 -#: includes/fields/class-acf-field-checkbox.php:442 -#: includes/fields/class-acf-field-radio.php:293 -msgid "Horizontal" -msgstr "Horizontal" - -#: includes/fields/class-acf-field-button-group.php:148 -#: includes/fields/class-acf-field-checkbox.php:352 -#: includes/fields/class-acf-field-radio.php:193 -#: includes/fields/class-acf-field-select.php:370 -msgid "red : Red" -msgstr "rojo : Rojo" - -#: includes/fields/class-acf-field-button-group.php:148 -#: includes/fields/class-acf-field-checkbox.php:352 -#: includes/fields/class-acf-field-radio.php:193 -#: includes/fields/class-acf-field-select.php:370 -msgid "For more control, you may specify both a value and label like this:" -msgstr "" -"Para más control, puedes especificar tanto un valor como una etiqueta, así:" - -#: includes/fields/class-acf-field-button-group.php:148 -#: includes/fields/class-acf-field-checkbox.php:352 -#: includes/fields/class-acf-field-radio.php:193 -#: includes/fields/class-acf-field-select.php:370 -msgid "Enter each choice on a new line." -msgstr "Añade cada opción en una nueva línea." - -#: includes/fields/class-acf-field-button-group.php:147 -#: includes/fields/class-acf-field-checkbox.php:351 -#: includes/fields/class-acf-field-radio.php:192 -#: includes/fields/class-acf-field-select.php:369 -msgid "Choices" -msgstr "Opciones" - -#: includes/fields/class-acf-field-button-group.php:24 -msgid "Button Group" -msgstr "Grupo de botones" - -#: includes/fields/class-acf-field-button-group.php:194 -#: includes/fields/class-acf-field-page_link.php:538 -#: includes/fields/class-acf-field-post_object.php:448 -#: includes/fields/class-acf-field-radio.php:238 -#: includes/fields/class-acf-field-select.php:429 -#: includes/fields/class-acf-field-taxonomy.php:772 -#: includes/fields/class-acf-field-user.php:103 -msgid "Allow Null" -msgstr "Permitir nulo" - -#: includes/fields/class-acf-field-page_link.php:263 -#: includes/fields/class-acf-field-post_object.php:257 -#: includes/fields/class-acf-field-taxonomy.php:930 -msgid "Parent" -msgstr "Superior" - -#: includes/fields/class-acf-field-wysiwyg.php:390 -msgid "TinyMCE will not be initialized until field is clicked" -msgstr "TinyMCE no se inicializará hasta que se haga clic en el campo" - -#: includes/fields/class-acf-field-wysiwyg.php:389 -msgid "Delay Initialization" -msgstr "Inicialización del retardo" - -#: includes/fields/class-acf-field-wysiwyg.php:378 -msgid "Show Media Upload Buttons" -msgstr "Mostrar botones para subir archivos multimedia" - -#: includes/fields/class-acf-field-wysiwyg.php:362 -msgid "Toolbar" -msgstr "Barra de herramientas" - -#: includes/fields/class-acf-field-wysiwyg.php:354 -msgid "Text Only" -msgstr "Sólo texto" - -#: includes/fields/class-acf-field-wysiwyg.php:353 -msgid "Visual Only" -msgstr "Sólo visual" - -#: includes/fields/class-acf-field-wysiwyg.php:352 -msgid "Visual & Text" -msgstr "Visual y Texto" - -#: includes/fields/class-acf-field-wysiwyg.php:347 -msgid "Tabs" -msgstr "Pestañas" - -#: includes/fields/class-acf-field-wysiwyg.php:285 -msgid "Click to initialize TinyMCE" -msgstr "Haz clic para iniciar TinyMCE" - -#: includes/fields/class-acf-field-wysiwyg.php:279 -msgctxt "Name for the Text editor tab (formerly HTML)" -msgid "Text" -msgstr "Texto" - -#: includes/fields/class-acf-field-wysiwyg.php:278 -msgid "Visual" -msgstr "Visual" - -#: includes/fields/class-acf-field-text.php:189 -#: includes/fields/class-acf-field-textarea.php:236 -msgid "Value must not exceed %d characters" -msgstr "El valor no debe exceder los %d caracteres" - -#: includes/fields/class-acf-field-text.php:124 -#: includes/fields/class-acf-field-textarea.php:124 -msgid "Leave blank for no limit" -msgstr "Déjalo en blanco para ilimitado" - -#: includes/fields/class-acf-field-text.php:123 -#: includes/fields/class-acf-field-textarea.php:123 -msgid "Character Limit" -msgstr "Límite de caracteres" - -#: includes/fields/class-acf-field-email.php:158 -#: includes/fields/class-acf-field-number.php:209 -#: includes/fields/class-acf-field-password.php:105 -#: includes/fields/class-acf-field-range.php:239 -#: includes/fields/class-acf-field-text.php:164 -msgid "Appears after the input" -msgstr "Aparece después del campo" - -#: includes/fields/class-acf-field-email.php:157 -#: includes/fields/class-acf-field-number.php:208 -#: includes/fields/class-acf-field-password.php:104 -#: includes/fields/class-acf-field-range.php:238 -#: includes/fields/class-acf-field-text.php:163 -msgid "Append" -msgstr "Anexar" - -#: includes/fields/class-acf-field-email.php:148 -#: includes/fields/class-acf-field-number.php:199 -#: includes/fields/class-acf-field-password.php:95 -#: includes/fields/class-acf-field-range.php:229 -#: includes/fields/class-acf-field-text.php:154 -msgid "Appears before the input" -msgstr "Aparece antes del campo" - -#: includes/fields/class-acf-field-email.php:147 -#: includes/fields/class-acf-field-number.php:198 -#: includes/fields/class-acf-field-password.php:94 -#: includes/fields/class-acf-field-range.php:228 -#: includes/fields/class-acf-field-text.php:153 -msgid "Prepend" -msgstr "Anteponer" - -#: includes/fields/class-acf-field-email.php:138 -#: includes/fields/class-acf-field-number.php:179 -#: includes/fields/class-acf-field-password.php:85 -#: includes/fields/class-acf-field-text.php:144 -#: includes/fields/class-acf-field-textarea.php:156 -#: includes/fields/class-acf-field-url.php:122 -msgid "Appears within the input" -msgstr "Aparece en el campo" - -#: includes/fields/class-acf-field-email.php:137 -#: includes/fields/class-acf-field-number.php:178 -#: includes/fields/class-acf-field-password.php:84 -#: includes/fields/class-acf-field-text.php:143 -#: includes/fields/class-acf-field-textarea.php:155 -#: includes/fields/class-acf-field-url.php:121 -msgid "Placeholder Text" -msgstr "Marcador de posición" - -#: includes/fields/class-acf-field-button-group.php:158 -#: includes/fields/class-acf-field-email.php:118 -#: includes/fields/class-acf-field-number.php:129 -#: includes/fields/class-acf-field-radio.php:203 -#: includes/fields/class-acf-field-range.php:165 -#: includes/fields/class-acf-field-text.php:104 -#: includes/fields/class-acf-field-textarea.php:104 -#: includes/fields/class-acf-field-url.php:102 -#: includes/fields/class-acf-field-wysiwyg.php:312 -msgid "Appears when creating a new post" -msgstr "Aparece cuando se está creando una nueva entrada" - -#: includes/fields/class-acf-field-text.php:25 -msgid "Text" -msgstr "Texto" - -#: includes/fields/class-acf-field-relationship.php:794 -msgid "%1$s requires at least %2$s selection" -msgid_plural "%1$s requires at least %2$s selections" -msgstr[0] "%1$s necesita al menos %2$s selección" -msgstr[1] "%1$s necesita al menos %2$s selecciones" - -#: includes/fields/class-acf-field-post_object.php:417 -#: includes/fields/class-acf-field-relationship.php:644 -msgid "Post ID" -msgstr "ID de publicación" - -#: includes/fields/class-acf-field-post_object.php:17 -#: includes/fields/class-acf-field-post_object.php:416 -#: includes/fields/class-acf-field-relationship.php:643 -msgid "Post Object" -msgstr "Objeto de publicación" - -#: includes/fields/class-acf-field-relationship.php:676 -msgid "Maximum Posts" -msgstr "Número máximo de entradas" - -#: includes/fields/class-acf-field-relationship.php:666 -msgid "Minimum Posts" -msgstr "Número mínimo de entradas" - -#: includes/admin/views/acf-field-group/options.php:183 -#: includes/admin/views/acf-post-type/advanced-settings.php:29 -#: includes/fields/class-acf-field-relationship.php:701 -msgid "Featured Image" -msgstr "Imagen destacada" - -#: includes/fields/class-acf-field-relationship.php:697 -msgid "Selected elements will be displayed in each result" -msgstr "Los elementos seleccionados se mostrarán en cada resultado" - -#: includes/fields/class-acf-field-relationship.php:696 -msgid "Elements" -msgstr "Elementos" - -#: includes/fields/class-acf-field-relationship.php:630 -#: includes/fields/class-acf-field-taxonomy.php:20 -#: includes/fields/class-acf-field-taxonomy.php:692 -#: includes/locations/class-acf-location-taxonomy.php:22 -msgid "Taxonomy" -msgstr "Taxonomía" - -#: includes/fields/class-acf-field-relationship.php:629 -#: includes/locations/class-acf-location-post-type.php:22 -#: includes/post-types/class-acf-post-type.php:92 -msgid "Post Type" -msgstr "Tipo de contenido" - -#: includes/fields/class-acf-field-relationship.php:623 -msgid "Filters" -msgstr "Filtros" - -#: includes/fields/class-acf-field-page_link.php:499 -#: includes/fields/class-acf-field-post_object.php:404 -#: includes/fields/class-acf-field-relationship.php:616 -msgid "All taxonomies" -msgstr "Todas las taxonomías" - -#: includes/fields/class-acf-field-page_link.php:491 -#: includes/fields/class-acf-field-post_object.php:396 -#: includes/fields/class-acf-field-relationship.php:608 -msgid "Filter by Taxonomy" -msgstr "Filtrar por taxonomía" - -#: includes/fields/class-acf-field-page_link.php:469 -#: includes/fields/class-acf-field-post_object.php:374 -#: includes/fields/class-acf-field-relationship.php:586 -msgid "All post types" -msgstr "Todos los tipos de contenido" - -#: includes/fields/class-acf-field-page_link.php:461 -#: includes/fields/class-acf-field-post_object.php:366 -#: includes/fields/class-acf-field-relationship.php:578 -msgid "Filter by Post Type" -msgstr "Filtrar por tipo de contenido" - -#: includes/fields/class-acf-field-relationship.php:476 -msgid "Search..." -msgstr "Buscar..." - -#: includes/fields/class-acf-field-relationship.php:406 -msgid "Select taxonomy" -msgstr "Selecciona taxonomía" - -#: includes/fields/class-acf-field-relationship.php:397 -msgid "Select post type" -msgstr "Seleccionar tipo de contenido" - -#: includes/fields/class-acf-field-relationship.php:61 -#: assets/build/js/acf-input.js:3930 assets/build/js/acf-input.js:4214 -msgid "No matches found" -msgstr "No se han encontrado coincidencias" - -#: includes/fields/class-acf-field-relationship.php:60 -#: assets/build/js/acf-input.js:3913 assets/build/js/acf-input.js:4193 -msgid "Loading" -msgstr "Cargando" - -#: includes/fields/class-acf-field-relationship.php:59 -#: assets/build/js/acf-input.js:3818 assets/build/js/acf-input.js:4084 -msgid "Maximum values reached ( {max} values )" -msgstr "Valores máximos alcanzados ( {max} valores )" - -#: includes/fields/class-acf-field-relationship.php:17 -msgid "Relationship" -msgstr "Relación" - -#: includes/fields/class-acf-field-file.php:291 -#: includes/fields/class-acf-field-image.php:317 -msgid "Comma separated list. Leave blank for all types" -msgstr "Lista separada por comas. Déjalo en blanco para todos los tipos" - -#: includes/fields/class-acf-field-file.php:290 -#: includes/fields/class-acf-field-image.php:316 -msgid "Allowed File Types" -msgstr "Tipos de archivo permitidos" - -#: includes/fields/class-acf-field-file.php:278 -#: includes/fields/class-acf-field-image.php:280 -msgid "Maximum" -msgstr "Máximo" - -#: includes/fields/class-acf-field-file.php:154 -#: includes/fields/class-acf-field-file.php:270 -#: includes/fields/class-acf-field-file.php:282 -#: includes/fields/class-acf-field-image.php:271 -#: includes/fields/class-acf-field-image.php:307 -msgid "File size" -msgstr "Tamaño del archivo" - -#: includes/fields/class-acf-field-image.php:245 -#: includes/fields/class-acf-field-image.php:281 -msgid "Restrict which images can be uploaded" -msgstr "Restringir qué imágenes se pueden subir" - -#: includes/fields/class-acf-field-file.php:266 -#: includes/fields/class-acf-field-image.php:244 -msgid "Minimum" -msgstr "Mínimo" - -#: includes/fields/class-acf-field-file.php:235 -#: includes/fields/class-acf-field-image.php:210 -msgid "Uploaded to post" -msgstr "Subidos al contenido" - -#: includes/fields/class-acf-field-file.php:234 -#: includes/fields/class-acf-field-image.php:209 -#: includes/locations/class-acf-location-attachment.php:73 -#: includes/locations/class-acf-location-comment.php:61 -#: includes/locations/class-acf-location-nav-menu.php:74 -#: includes/locations/class-acf-location-taxonomy.php:63 -#: includes/locations/class-acf-location-user-form.php:71 -#: includes/locations/class-acf-location-user-role.php:78 -#: includes/locations/class-acf-location-widget.php:65 -msgid "All" -msgstr "Todos" - -#: includes/fields/class-acf-field-file.php:229 -#: includes/fields/class-acf-field-image.php:204 -msgid "Limit the media library choice" -msgstr "Limitar las opciones de la biblioteca de medios" - -#: includes/fields/class-acf-field-file.php:228 -#: includes/fields/class-acf-field-image.php:203 -msgid "Library" -msgstr "Biblioteca" - -#: includes/fields/class-acf-field-image.php:336 -msgid "Preview Size" -msgstr "Tamaño de vista previa" - -#: includes/fields/class-acf-field-image.php:195 -msgid "Image ID" -msgstr "ID de imagen" - -#: includes/fields/class-acf-field-image.php:194 -msgid "Image URL" -msgstr "URL de imagen" - -#: includes/fields/class-acf-field-image.php:193 -msgid "Image Array" -msgstr "Array de imágenes" - -#: includes/fields/class-acf-field-button-group.php:168 -#: includes/fields/class-acf-field-checkbox.php:372 -#: includes/fields/class-acf-field-file.php:213 -#: includes/fields/class-acf-field-link.php:171 -#: includes/fields/class-acf-field-radio.php:213 -msgid "Specify the returned value on front end" -msgstr "Especificar el valor devuelto en la web" - -#: includes/fields/class-acf-field-button-group.php:167 -#: includes/fields/class-acf-field-checkbox.php:371 -#: includes/fields/class-acf-field-file.php:212 -#: includes/fields/class-acf-field-link.php:170 -#: includes/fields/class-acf-field-radio.php:212 -#: includes/fields/class-acf-field-taxonomy.php:736 -msgid "Return Value" -msgstr "Valor de retorno" - -#: includes/fields/class-acf-field-image.php:162 -msgid "Add Image" -msgstr "Añadir imagen" - -#: includes/fields/class-acf-field-image.php:162 -msgid "No image selected" -msgstr "No hay ninguna imagen seleccionada" - -#: includes/assets.php:352 includes/fields/class-acf-field-file.php:162 -#: includes/fields/class-acf-field-image.php:142 -#: includes/fields/class-acf-field-link.php:145 assets/build/js/acf.js:1563 -#: assets/build/js/acf.js:1657 -msgid "Remove" -msgstr "Quitar" - -#: includes/admin/views/acf-field-group/field.php:76 -#: includes/fields/class-acf-field-file.php:160 -#: includes/fields/class-acf-field-image.php:140 -#: includes/fields/class-acf-field-link.php:145 -msgid "Edit" -msgstr "Editar" - -#: includes/fields/class-acf-field-image.php:70 includes/media.php:55 -#: assets/build/js/acf-input.js:6837 assets/build/js/acf-input.js:7320 -msgid "All images" -msgstr "Todas las imágenes" - -#: includes/fields/class-acf-field-image.php:69 -#: assets/build/js/acf-input.js:3181 assets/build/js/acf-input.js:3399 -msgid "Update Image" -msgstr "Actualizar imagen" - -#: includes/fields/class-acf-field-image.php:68 -#: assets/build/js/acf-input.js:3180 assets/build/js/acf-input.js:3398 -msgid "Edit Image" -msgstr "Editar imagen" - -#: includes/fields/class-acf-field-image.php:67 -#: assets/build/js/acf-input.js:3156 assets/build/js/acf-input.js:3373 -msgid "Select Image" -msgstr "Seleccionar imagen" - -#: includes/fields/class-acf-field-image.php:25 -msgid "Image" -msgstr "Imagen" - -#: includes/fields/class-acf-field-message.php:125 -msgid "Allow HTML markup to display as visible text instead of rendering" -msgstr "" -"Permitir que el maquetado HTML se muestre como texto visible en vez de " -"interpretarlo" - -#: includes/fields/class-acf-field-message.php:124 -msgid "Escape HTML" -msgstr "Escapar HTML" - -#: includes/fields/class-acf-field-message.php:116 -#: includes/fields/class-acf-field-textarea.php:172 -msgid "No Formatting" -msgstr "Sin formato" - -#: includes/fields/class-acf-field-message.php:115 -#: includes/fields/class-acf-field-textarea.php:171 -msgid "Automatically add <br>" -msgstr "Añadir <br> automáticamente" - -#: includes/fields/class-acf-field-message.php:114 -#: includes/fields/class-acf-field-textarea.php:170 -msgid "Automatically add paragraphs" -msgstr "Añadir párrafos automáticamente" - -#: includes/fields/class-acf-field-message.php:110 -#: includes/fields/class-acf-field-textarea.php:166 -msgid "Controls how new lines are rendered" -msgstr "Controla cómo se muestran los saltos de línea" - -#: includes/fields/class-acf-field-message.php:109 -#: includes/fields/class-acf-field-textarea.php:165 -msgid "New Lines" -msgstr "Nuevas líneas" - -#: includes/fields/class-acf-field-date_picker.php:232 -#: includes/fields/class-acf-field-date_time_picker.php:220 -msgid "Week Starts On" -msgstr "La semana comienza el" - -#: includes/fields/class-acf-field-date_picker.php:201 -msgid "The format used when saving a value" -msgstr "El formato utilizado cuando se guarda un valor" - -#: includes/fields/class-acf-field-date_picker.php:200 -msgid "Save Format" -msgstr "Guardar formato" - -#: includes/fields/class-acf-field-date_picker.php:67 -msgctxt "Date Picker JS weekHeader" -msgid "Wk" -msgstr "Sem" - -#: includes/fields/class-acf-field-date_picker.php:66 -msgctxt "Date Picker JS prevText" -msgid "Prev" -msgstr "Anterior" - -#: includes/fields/class-acf-field-date_picker.php:65 -msgctxt "Date Picker JS nextText" -msgid "Next" -msgstr "Siguiente" - -#: includes/fields/class-acf-field-date_picker.php:64 -msgctxt "Date Picker JS currentText" -msgid "Today" -msgstr "Hoy" - -#: includes/fields/class-acf-field-date_picker.php:63 -msgctxt "Date Picker JS closeText" -msgid "Done" -msgstr "Listo" - -#: includes/fields/class-acf-field-date_picker.php:25 -msgid "Date Picker" -msgstr "Selector de fecha" - -#: includes/fields/class-acf-field-image.php:248 -#: includes/fields/class-acf-field-image.php:284 -#: includes/fields/class-acf-field-oembed.php:268 -msgid "Width" -msgstr "Ancho" - -#: includes/fields/class-acf-field-oembed.php:265 -#: includes/fields/class-acf-field-oembed.php:277 -msgid "Embed Size" -msgstr "Tamaño de incrustación" - -#: includes/fields/class-acf-field-oembed.php:222 -msgid "Enter URL" -msgstr "Introduce la URL" - -#: includes/fields/class-acf-field-oembed.php:25 -msgid "oEmbed" -msgstr "oEmbed" - -#: includes/fields/class-acf-field-true_false.php:184 -msgid "Text shown when inactive" -msgstr "Texto mostrado cuando está inactivo" - -#: includes/fields/class-acf-field-true_false.php:183 -msgid "Off Text" -msgstr "Texto desactivado" - -#: includes/fields/class-acf-field-true_false.php:168 -msgid "Text shown when active" -msgstr "Texto mostrado cuando está activo" - -#: includes/fields/class-acf-field-true_false.php:167 -msgid "On Text" -msgstr "Texto activado" - -#: includes/fields/class-acf-field-select.php:450 -#: includes/fields/class-acf-field-true_false.php:199 -msgid "Stylized UI" -msgstr "UI estilizada" - -#: includes/fields/class-acf-field-button-group.php:157 -#: includes/fields/class-acf-field-checkbox.php:361 -#: includes/fields/class-acf-field-color_picker.php:156 -#: includes/fields/class-acf-field-email.php:117 -#: includes/fields/class-acf-field-number.php:128 -#: includes/fields/class-acf-field-radio.php:202 -#: includes/fields/class-acf-field-range.php:164 -#: includes/fields/class-acf-field-select.php:380 -#: includes/fields/class-acf-field-text.php:103 -#: includes/fields/class-acf-field-textarea.php:103 -#: includes/fields/class-acf-field-true_false.php:147 -#: includes/fields/class-acf-field-url.php:101 -#: includes/fields/class-acf-field-wysiwyg.php:311 -msgid "Default Value" -msgstr "Valor por defecto" - -#: includes/fields/class-acf-field-true_false.php:138 -msgid "Displays text alongside the checkbox" -msgstr "Muestra el texto junto a la casilla de verificación" - -#: includes/fields/class-acf-field-message.php:26 -#: includes/fields/class-acf-field-message.php:99 -#: includes/fields/class-acf-field-true_false.php:137 -msgid "Message" -msgstr "Mensaje" - -#: includes/assets.php:351 includes/fields/class-acf-field-true_false.php:86 -#: includes/fields/class-acf-field-true_false.php:187 -#: assets/build/js/acf.js:1740 assets/build/js/acf.js:1857 -msgid "No" -msgstr "No" - -#: includes/assets.php:350 includes/fields/class-acf-field-true_false.php:83 -#: includes/fields/class-acf-field-true_false.php:171 -#: assets/build/js/acf.js:1739 assets/build/js/acf.js:1856 -msgid "Yes" -msgstr "Sí" - -#: includes/fields/class-acf-field-true_false.php:25 -msgid "True / False" -msgstr "Verdadero / Falso" - -#: includes/fields/class-acf-field-group.php:474 -msgid "Row" -msgstr "Fila" - -#: includes/fields/class-acf-field-group.php:473 -msgid "Table" -msgstr "Tabla" - -#: includes/admin/post-types/admin-field-group.php:140 -#: includes/fields/class-acf-field-group.php:472 -msgid "Block" -msgstr "Bloque" - -#: includes/fields/class-acf-field-group.php:467 -msgid "Specify the style used to render the selected fields" -msgstr "" -"Especifica el estilo utilizado para representar los campos seleccionados" - -#: includes/fields.php:356 includes/fields/class-acf-field-button-group.php:215 -#: includes/fields/class-acf-field-checkbox.php:435 -#: includes/fields/class-acf-field-group.php:466 -#: includes/fields/class-acf-field-radio.php:286 -msgid "Layout" -msgstr "Estructura" - -#: includes/fields/class-acf-field-group.php:450 -msgid "Sub Fields" -msgstr "Subcampos" - -#: includes/fields/class-acf-field-group.php:25 -msgid "Group" -msgstr "Grupo" - -#: includes/fields/class-acf-field-google-map.php:235 -msgid "Customize the map height" -msgstr "Personalizar la altura del mapa" - -#: includes/fields/class-acf-field-google-map.php:234 -#: includes/fields/class-acf-field-image.php:259 -#: includes/fields/class-acf-field-image.php:295 -#: includes/fields/class-acf-field-oembed.php:280 -msgid "Height" -msgstr "Altura" - -#: includes/fields/class-acf-field-google-map.php:223 -msgid "Set the initial zoom level" -msgstr "Establecer el nivel inicial de zoom" - -#: includes/fields/class-acf-field-google-map.php:222 -msgid "Zoom" -msgstr "Zoom" - -#: includes/fields/class-acf-field-google-map.php:196 -#: includes/fields/class-acf-field-google-map.php:209 -msgid "Center the initial map" -msgstr "Centrar inicialmente el mapa" - -#: includes/fields/class-acf-field-google-map.php:195 -#: includes/fields/class-acf-field-google-map.php:208 -msgid "Center" -msgstr "Centro" - -#: includes/fields/class-acf-field-google-map.php:163 -msgid "Search for address..." -msgstr "Buscar dirección..." - -#: includes/fields/class-acf-field-google-map.php:160 -msgid "Find current location" -msgstr "Encontrar ubicación actual" - -#: includes/fields/class-acf-field-google-map.php:159 -msgid "Clear location" -msgstr "Borrar ubicación" - -#: includes/fields/class-acf-field-google-map.php:158 -#: includes/fields/class-acf-field-relationship.php:628 -msgid "Search" -msgstr "Buscar" - -#: includes/fields/class-acf-field-google-map.php:63 -#: assets/build/js/acf-input.js:2840 assets/build/js/acf-input.js:3026 -msgid "Sorry, this browser does not support geolocation" -msgstr "Lo siento, este navegador no es compatible con la geolocalización" - -#: includes/fields/class-acf-field-google-map.php:25 -msgid "Google Map" -msgstr "Mapa de Google" - -#: includes/fields/class-acf-field-date_picker.php:212 -#: includes/fields/class-acf-field-date_time_picker.php:201 -#: includes/fields/class-acf-field-time_picker.php:132 -msgid "The format returned via template functions" -msgstr "El formato devuelto por de las funciones del tema" - -#: includes/fields/class-acf-field-color_picker.php:180 -#: includes/fields/class-acf-field-date_picker.php:211 -#: includes/fields/class-acf-field-date_time_picker.php:200 -#: includes/fields/class-acf-field-image.php:187 -#: includes/fields/class-acf-field-post_object.php:411 -#: includes/fields/class-acf-field-relationship.php:638 -#: includes/fields/class-acf-field-select.php:391 -#: includes/fields/class-acf-field-time_picker.php:131 -#: includes/fields/class-acf-field-user.php:66 -msgid "Return Format" -msgstr "Formato de retorno" - -#: includes/fields/class-acf-field-date_picker.php:190 -#: includes/fields/class-acf-field-date_picker.php:221 -#: includes/fields/class-acf-field-date_time_picker.php:192 -#: includes/fields/class-acf-field-date_time_picker.php:210 -#: includes/fields/class-acf-field-time_picker.php:123 -#: includes/fields/class-acf-field-time_picker.php:139 -msgid "Custom:" -msgstr "Personalizado:" - -#: includes/fields/class-acf-field-date_picker.php:182 -#: includes/fields/class-acf-field-date_time_picker.php:183 -#: includes/fields/class-acf-field-time_picker.php:116 -msgid "The format displayed when editing a post" -msgstr "El formato mostrado cuando se edita una publicación" - -#: includes/fields/class-acf-field-date_picker.php:181 -#: includes/fields/class-acf-field-date_time_picker.php:182 -#: includes/fields/class-acf-field-time_picker.php:115 -msgid "Display Format" -msgstr "Formato de visualización" - -#: includes/fields/class-acf-field-time_picker.php:25 -msgid "Time Picker" -msgstr "Selector de hora" - -#. translators: counts for inactive field groups -#: acf.php:503 -msgid "Inactive (%s)" -msgid_plural "Inactive (%s)" -msgstr[0] "Inactivo (%s)" -msgstr[1] "Inactivos (%s)" - -#: acf.php:462 -msgid "No Fields found in Trash" -msgstr "No se han encontrado campos en la papelera" - -#: acf.php:461 -msgid "No Fields found" -msgstr "No se han encontrado campos" - -#: acf.php:460 -msgid "Search Fields" -msgstr "Buscar campos" - -#: acf.php:459 -msgid "View Field" -msgstr "Ver campo" - -#: acf.php:458 includes/admin/views/acf-field-group/fields.php:115 -msgid "New Field" -msgstr "Nuevo campo" - -#: acf.php:457 -msgid "Edit Field" -msgstr "Editar campo" - -#: acf.php:456 -msgid "Add New Field" -msgstr "Añadir nuevo campo" - -#: acf.php:454 -msgid "Field" -msgstr "Campo" - -#: acf.php:453 includes/admin/post-types/admin-field-group.php:163 -#: includes/admin/post-types/admin-field-groups.php:119 -#: includes/admin/views/acf-field-group/fields.php:32 -msgid "Fields" -msgstr "Campos" - -#: acf.php:428 -msgid "No Field Groups found in Trash" -msgstr "No se han encontrado grupos de campos en la papelera" - -#: acf.php:427 -msgid "No Field Groups found" -msgstr "No se han encontrado grupos de campos" - -#: acf.php:426 -msgid "Search Field Groups" -msgstr "Buscar grupo de campos" - -#: acf.php:425 -msgid "View Field Group" -msgstr "Ver grupo de campos" - -#: acf.php:424 -msgid "New Field Group" -msgstr "Nuevo grupo de campos" - -#: acf.php:423 -msgid "Edit Field Group" -msgstr "Editar grupo de campos" - -#: acf.php:422 -msgid "Add New Field Group" -msgstr "Añadir nuevo grupo de campos" - -#: acf.php:421 acf.php:455 -#: includes/admin/views/acf-post-type/advanced-settings.php:219 -#: includes/admin/views/acf-post-type/advanced-settings.php:221 -#: includes/post-types/class-acf-post-type.php:93 -#: includes/post-types/class-acf-taxonomy.php:92 -msgid "Add New" -msgstr "Añadir nuevo" - -#: acf.php:420 -msgid "Field Group" -msgstr "Grupo de campos" - -#: acf.php:419 includes/admin/post-types/admin-field-groups.php:78 -#: includes/admin/post-types/admin-post-types.php:138 -#: includes/admin/post-types/admin-taxonomies.php:138 -msgid "Field Groups" -msgstr "Grupos de campos" - -#. Description of the plugin -msgid "Customize WordPress with powerful, professional and intuitive fields." -msgstr "Personaliza WordPress con campos potentes, profesionales e intuitivos." - -#. Plugin URI of the plugin -msgid "https://www.advancedcustomfields.com" -msgstr "https://www.advancedcustomfields.com" - -#. Plugin Name of the plugin -#: acf.php:94 -msgid "Advanced Custom Fields" -msgstr "Advanced Custom Fields" - -#: pro/acf-pro.php:27 -msgid "Advanced Custom Fields PRO" -msgstr "Advanced Custom Fields PRO" - -#: pro/blocks.php:170 -msgid "Block type name is required." -msgstr "El nombre del tipo de bloque es requerido." - -#. translators: The name of the block type -#: pro/blocks.php:178 -msgid "Block type \"%s\" is already registered." -msgstr "El tipo de bloque \" %s\" ya está registrado." - -#: pro/blocks.php:726 -msgid "Switch to Edit" -msgstr "Cambiar a Editar" - -#: pro/blocks.php:727 -msgid "Switch to Preview" -msgstr "Cambiar a vista previa" - -#: pro/blocks.php:728 -msgid "Change content alignment" -msgstr "Cambiar la alineación del contenido" - -#. translators: %s: Block type title -#: pro/blocks.php:731 -msgid "%s settings" -msgstr "%s ajustes" - -#: pro/blocks.php:936 -msgid "This block contains no editable fields." -msgstr "Este bloque no contiene campos editables." - -#. translators: %s: an admin URL to the field group edit screen -#: pro/blocks.php:942 -msgid "" -"Assign a field group to add fields to " -"this block." -msgstr "" -"Asigna un grupo de campos para añadir " -"campos a este bloque." - -#: pro/options-page.php:78 -msgid "Options Updated" -msgstr "Opciones Actualizadas" - -#: pro/updates.php:99 -msgid "" -"To enable updates, please enter your license key on the Updates page. If you don't have a licence key, please see details & pricing." -msgstr "" -"Para habilitar las actualizaciones, introduzca su clave de licencia en la " -"página Actualizaciones. Si no tiene una clave de " -"licencia, consulte los detalles y los " -"precios.." - -#: pro/updates.php:159 -msgid "" -"ACF Activation Error. Your defined license key has changed, but an " -"error occurred when deactivating your old licence" -msgstr "" -"Error de activación de ACF. La clave de licencia definida ha " -"cambiado, pero se ha producido un error al desactivar la licencia anterior" - -#: pro/updates.php:154 -msgid "" -"ACF Activation Error. Your defined license key has changed, but an " -"error occurred when connecting to activation server" -msgstr "" -"Error de activación de ACF. La clave de licencia definida ha " -"cambiado, pero se ha producido un error al conectarse al servidor de " -"activación" - -#: pro/updates.php:192 -msgid "ACF Activation Error" -msgstr "Error de activación de ACF" - -#: pro/updates.php:187 -msgid "" -"ACF Activation Error. An error occurred when connecting to activation " -"server" -msgstr "" -"Error. No se ha podido conectar con el servidor de actualización" - -#: pro/updates.php:279 -msgid "Check Again" -msgstr "Comprobar de nuevo" - -#: pro/updates.php:593 -msgid "ACF Activation Error. Could not connect to activation server" -msgstr "" -"Error. No se ha podido conectar con el servidor de actualización" - -#: pro/admin/admin-options-page.php:195 -msgid "Publish" -msgstr "Publicar" - -#: pro/admin/admin-options-page.php:199 -msgid "" -"No Custom Field Groups found for this options page. Create a " -"Custom Field Group" -msgstr "" -"No se encontraron grupos de campos personalizados para esta página de " -"opciones. Crear Grupo de Campos Personalizados" - -#: pro/admin/admin-updates.php:52 -msgid "Error. Could not connect to update server" -msgstr "" -"Error. No se ha podido conectar con el servidor de actualización" - -#: pro/admin/admin-updates.php:212 -msgid "" -"Error. Could not authenticate update package. Please check again or " -"deactivate and reactivate your ACF PRO license." -msgstr "" -"Error. No se pudo autenticar el paquete de actualización. Compruebe " -"de nuevo o desactive y reactive su licencia ACF PRO." - -#: pro/admin/admin-updates.php:199 -msgid "" -"Error. Your license for this site has expired or been deactivated. " -"Please reactivate your ACF PRO license." -msgstr "" -"Error. Su licencia para este sitio ha caducado o ha sido desactivada. " -"Por favor, reactive su licencia ACF PRO." - -#: pro/fields/class-acf-field-clone.php:27, -#: pro/fields/class-acf-field-repeater.php:31 -msgid "" -"Allows you to select and display existing fields. It does not duplicate any " -"fields in the database, but loads and displays the selected fields at run-" -"time. The Clone field can either replace itself with the selected fields or " -"display the selected fields as a group of subfields." -msgstr "" - -#: pro/fields/class-acf-field-clone.php:819 -msgid "Select one or more fields you wish to clone" -msgstr "Elige uno o más campos que quieras clonar" - -#: pro/fields/class-acf-field-clone.php:838 -msgid "Display" -msgstr "Mostrar" - -#: pro/fields/class-acf-field-clone.php:839 -msgid "Specify the style used to render the clone field" -msgstr "Especifique el estilo utilizado para procesar el campo de clonación" - -#: pro/fields/class-acf-field-clone.php:844 -msgid "Group (displays selected fields in a group within this field)" -msgstr "" -"Grupo (muestra los campos seleccionados en un grupo dentro de este campo)" - -#: pro/fields/class-acf-field-clone.php:845 -msgid "Seamless (replaces this field with selected fields)" -msgstr "Transparente (reemplaza este campo con los campos seleccionados)" - -#: pro/fields/class-acf-field-clone.php:868 -msgid "Labels will be displayed as %s" -msgstr "Las etiquetas se mostrarán como %s" - -#: pro/fields/class-acf-field-clone.php:873 -msgid "Prefix Field Labels" -msgstr "Etiquetas del prefijo de campo" - -#: pro/fields/class-acf-field-clone.php:883 -msgid "Values will be saved as %s" -msgstr "Los valores se guardarán como %s" - -#: pro/fields/class-acf-field-clone.php:888 -msgid "Prefix Field Names" -msgstr "Nombres de prefijos de campos" - -#: pro/fields/class-acf-field-clone.php:1005 -msgid "Unknown field" -msgstr "Campo desconocido" - -#: pro/fields/class-acf-field-clone.php:1042 -msgid "Unknown field group" -msgstr "Grupo de campos desconocido" - -#: pro/fields/class-acf-field-clone.php:1046 -msgid "All fields from %s field group" -msgstr "Todos los campos del grupo de campo %s" - -#: pro/fields/class-acf-field-flexible-content.php:27 -msgid "" -"Allows you to define, create and manage content with total control by " -"creating layouts that contain subfields that content editors can choose from." -msgstr "" - -#: pro/fields/class-acf-field-flexible-content.php:36, -#: pro/fields/class-acf-field-repeater.php:103, -#: pro/fields/class-acf-field-repeater.php:297 -msgid "Add Row" -msgstr "Agregar Fila" - -#: pro/fields/class-acf-field-flexible-content.php:76, -#: pro/fields/class-acf-field-flexible-content.php:943, -#: pro/fields/class-acf-field-flexible-content.php:1022 -msgid "layout" -msgid_plural "layouts" -msgstr[0] "diseño" -msgstr[1] "esquema" - -#: pro/fields/class-acf-field-flexible-content.php:77 -msgid "layouts" -msgstr "diseños" - -#: pro/fields/class-acf-field-flexible-content.php:81, -#: pro/fields/class-acf-field-flexible-content.php:942, -#: pro/fields/class-acf-field-flexible-content.php:1021 -msgid "This field requires at least {min} {label} {identifier}" -msgstr "Este campo requiere al menos {min} {label} {identifier}" - -#: pro/fields/class-acf-field-flexible-content.php:82 -msgid "This field has a limit of {max} {label} {identifier}" -msgstr "" -"Este campo tiene un límite de la etiqueta de la etiqueta de la etiqueta de " -"la etiqueta." - -#: pro/fields/class-acf-field-flexible-content.php:85 -msgid "{available} {label} {identifier} available (max {max})" -msgstr "{available} {label} {identifier} disponible (max {max})" - -#: pro/fields/class-acf-field-flexible-content.php:86 -msgid "{required} {label} {identifier} required (min {min})" -msgstr "{required} {label} {identifier} requerido (min {min})" - -#: pro/fields/class-acf-field-flexible-content.php:89 -msgid "Flexible Content requires at least 1 layout" -msgstr "El Contenido Flexible requiere por lo menos 1 layout" - -#: pro/fields/class-acf-field-flexible-content.php:282 -msgid "Click the \"%s\" button below to start creating your layout" -msgstr "Haz click en el botón \"%s\" debajo para comenzar a crear tu esquema" - -#: pro/fields/class-acf-field-flexible-content.php:423 -msgid "Add layout" -msgstr "Agregar Esquema" - -#: pro/fields/class-acf-field-flexible-content.php:424 -msgid "Duplicate layout" -msgstr "Duplicar Diseño" - -#: pro/fields/class-acf-field-flexible-content.php:425 -msgid "Remove layout" -msgstr "Remover esquema" - -#: pro/fields/class-acf-field-flexible-content.php:426, -#: pro/fields/class-acf-repeater-table.php:382 -msgid "Click to toggle" -msgstr "Clic para mostrar" - -#: pro/fields/class-acf-field-flexible-content.php:562 -msgid "Delete Layout" -msgstr "Eliminar Esquema" - -#: pro/fields/class-acf-field-flexible-content.php:563 -msgid "Duplicate Layout" -msgstr "Duplicar Esquema" - -#: pro/fields/class-acf-field-flexible-content.php:564 -msgid "Add New Layout" -msgstr "Agregar Nuevo Esquema" - -#: pro/fields/class-acf-field-flexible-content.php:564 -#, fuzzy -#| msgid "Add layout" -msgid "Add Layout" -msgstr "Agregar Esquema" - -#: pro/fields/class-acf-field-flexible-content.php:647 -msgid "Min" -msgstr "Min" - -#: pro/fields/class-acf-field-flexible-content.php:662 -msgid "Max" -msgstr "Max" - -#: pro/fields/class-acf-field-flexible-content.php:705 -msgid "Minimum Layouts" -msgstr "Esquemas Mínimos" - -#: pro/fields/class-acf-field-flexible-content.php:716 -msgid "Maximum Layouts" -msgstr "Esquemas Máximos" - -#: pro/fields/class-acf-field-flexible-content.php:727, -#: pro/fields/class-acf-field-repeater.php:293 -msgid "Button Label" -msgstr "Etiqueta del Botón" - -#: pro/fields/class-acf-field-flexible-content.php:1710, -#: pro/fields/class-acf-field-repeater.php:918 -msgid "%s must be of type array or null." -msgstr "%s debe ser de tipo matriz o null." - -#: pro/fields/class-acf-field-flexible-content.php:1721 -msgid "%1$s must contain at least %2$s %3$s layout." -msgid_plural "%1$s must contain at least %2$s %3$s layouts." -msgstr[0] "%1$s debe contener al menos %2$s %3$s diseño." -msgstr[1] "%1$s debe contener al menos %2$s %3$s diseños." - -#: pro/fields/class-acf-field-flexible-content.php:1737 -msgid "%1$s must contain at most %2$s %3$s layout." -msgid_plural "%1$s must contain at most %2$s %3$s layouts." -msgstr[0] "%1$s debe contener como máximo %2$s %3$s diseño." -msgstr[1] "%1$s debe contener como máximo %2$s %3$s diseños." - -#: pro/fields/class-acf-field-gallery.php:27 -msgid "" -"An interactive interface for managing a collection of attachments, such as " -"images." -msgstr "" - -#: pro/fields/class-acf-field-gallery.php:77 -msgid "Add Image to Gallery" -msgstr "Agregar Imagen a Galería" - -#: pro/fields/class-acf-field-gallery.php:78 -msgid "Maximum selection reached" -msgstr "Selección máxima alcanzada" - -#: pro/fields/class-acf-field-gallery.php:324 -msgid "Length" -msgstr "Longitud" - -#: pro/fields/class-acf-field-gallery.php:368 -msgid "Caption" -msgstr "Leyenda" - -#: pro/fields/class-acf-field-gallery.php:380 -msgid "Alt Text" -msgstr "Texto Alt" - -#: pro/fields/class-acf-field-gallery.php:504 -msgid "Add to gallery" -msgstr "Agregar a galería" - -#: pro/fields/class-acf-field-gallery.php:508 -msgid "Bulk actions" -msgstr "Acciones en lote" - -#: pro/fields/class-acf-field-gallery.php:509 -msgid "Sort by date uploaded" -msgstr "Ordenar por fecha de subida" - -#: pro/fields/class-acf-field-gallery.php:510 -msgid "Sort by date modified" -msgstr "Ordenar por fecha de modificación" - -#: pro/fields/class-acf-field-gallery.php:511 -msgid "Sort by title" -msgstr "Ordenar por título" - -#: pro/fields/class-acf-field-gallery.php:512 -msgid "Reverse current order" -msgstr "Invertir orden actual" - -#: pro/fields/class-acf-field-gallery.php:524 -msgid "Close" -msgstr "Cerrar" - -#: pro/fields/class-acf-field-gallery.php:615 -msgid "Minimum Selection" -msgstr "Selección Mínima" - -#: pro/fields/class-acf-field-gallery.php:625 -msgid "Maximum Selection" -msgstr "Selección Máxima" - -#: pro/fields/class-acf-field-gallery.php:707 -msgid "Allowed file types" -msgstr "Tipos de archivos permitidos" - -#: pro/fields/class-acf-field-gallery.php:727 -msgid "Insert" -msgstr "Insertar" - -#: pro/fields/class-acf-field-gallery.php:728 -msgid "Specify where new attachments are added" -msgstr "Especificar dónde se agregan nuevos adjuntos" - -#: pro/fields/class-acf-field-gallery.php:732 -msgid "Append to the end" -msgstr "Añadir al final" - -#: pro/fields/class-acf-field-gallery.php:733 -msgid "Prepend to the beginning" -msgstr "Adelantar hasta el principio" - -#: pro/fields/class-acf-field-repeater.php:66, -#: pro/fields/class-acf-field-repeater.php:463 -#, fuzzy -#| msgid "Minimum rows reached ({min} rows)" -msgid "Minimum rows not reached ({min} rows)" -msgstr "Mínimo de filas alcanzado ({min} rows)" - -#: pro/fields/class-acf-field-repeater.php:67 -msgid "Maximum rows reached ({max} rows)" -msgstr "Máximo de filas alcanzado ({max} rows)" - -#: pro/fields/class-acf-field-repeater.php:68 -msgid "Error loading page" -msgstr "Error al cargar la página" - -#: pro/fields/class-acf-field-repeater.php:69 -msgid "Order will be assigned upon save" -msgstr "" - -#: pro/fields/class-acf-field-repeater.php:196 -msgid "Useful for fields with a large number of rows." -msgstr "Útil para campos con un gran número de filas." - -#: pro/fields/class-acf-field-repeater.php:207 -msgid "Rows Per Page" -msgstr "Filas por página" - -#: pro/fields/class-acf-field-repeater.php:208 -msgid "Set the number of rows to be displayed on a page." -msgstr "Establece el número de filas que se mostrarán en una página." - -#: pro/fields/class-acf-field-repeater.php:240 -msgid "Minimum Rows" -msgstr "Mínimo de Filas" - -#: pro/fields/class-acf-field-repeater.php:251 -msgid "Maximum Rows" -msgstr "Máximo de Filas" - -#: pro/fields/class-acf-field-repeater.php:281 -msgid "Collapsed" -msgstr "Colapsado" - -#: pro/fields/class-acf-field-repeater.php:282 -msgid "Select a sub field to show when row is collapsed" -msgstr "Elige un subcampo para indicar cuándo se colapsa la fila" - -#: pro/fields/class-acf-field-repeater.php:1060 -#, fuzzy -#| msgid "Invalid field key." -msgid "Invalid field key or name." -msgstr "Clave de campo no válida." - -#: pro/fields/class-acf-field-repeater.php:1069 -msgid "There was an error retrieving the field." -msgstr "Ha habido un error al recuperar el campo." - -#: pro/fields/class-acf-repeater-table.php:369 -#, fuzzy -#| msgid "Drag to reorder" -msgid "Click to reorder" -msgstr "Arrastra para reordenar" - -#: pro/fields/class-acf-repeater-table.php:402 -msgid "Add row" -msgstr "Agregar fila" - -#: pro/fields/class-acf-repeater-table.php:403 -msgid "Duplicate row" -msgstr "Duplicar fila" - -#: pro/fields/class-acf-repeater-table.php:404 -msgid "Remove row" -msgstr "Remover fila" - -#: pro/fields/class-acf-repeater-table.php:448, -#: pro/fields/class-acf-repeater-table.php:465, -#: pro/fields/class-acf-repeater-table.php:466 -msgid "Current Page" -msgstr "Página actual" - -#: pro/fields/class-acf-repeater-table.php:456, -#: pro/fields/class-acf-repeater-table.php:457 -#, fuzzy -#| msgid "First page" -msgid "First Page" -msgstr "Primera página" - -#: pro/fields/class-acf-repeater-table.php:460, -#: pro/fields/class-acf-repeater-table.php:461 -#, fuzzy -#| msgid "Previous page" -msgid "Previous Page" -msgstr "Página anterior" - -#. translators: 1: Current page, 2: Total pages. -#: pro/fields/class-acf-repeater-table.php:470 -msgctxt "paging" -msgid "%1$s of %2$s" -msgstr "%1$s de %2$s" - -#: pro/fields/class-acf-repeater-table.php:477, -#: pro/fields/class-acf-repeater-table.php:478 -#, fuzzy -#| msgid "Next page" -msgid "Next Page" -msgstr "Página siguiente" - -#: pro/fields/class-acf-repeater-table.php:481, -#: pro/fields/class-acf-repeater-table.php:482 -#, fuzzy -#| msgid "Last page" -msgid "Last Page" -msgstr "Última página" - -#: pro/locations/class-acf-location-block.php:71 -msgid "No block types exist" -msgstr "No existen tipos de bloques" - -#: pro/locations/class-acf-location-options-page.php:70 -msgid "No options pages exist" -msgstr "No existen páginas de opciones" - -#: pro/admin/views/html-settings-updates.php:6 -msgid "Deactivate License" -msgstr "Desactivar Licencia" - -#: pro/admin/views/html-settings-updates.php:6 -msgid "Activate License" -msgstr "Activar Licencia" - -#: pro/admin/views/html-settings-updates.php:16 -msgid "License Information" -msgstr "Información de la licencia" - -#: pro/admin/views/html-settings-updates.php:34 -msgid "" -"To unlock updates, please enter your license key below. If you don't have a " -"licence key, please see details & pricing." -msgstr "" -"Para desbloquear las actualizaciones, por favor a continuación introduce tu " -"clave de licencia. Si no tienes una clave de licencia, consulta detalles y precios." - -#: pro/admin/views/html-settings-updates.php:37 -msgid "License Key" -msgstr "Clave de Licencia" - -#: pro/admin/views/html-settings-updates.php:22 -msgid "Your license key is defined in wp-config.php." -msgstr "La clave de licencia se define en wp-config.php." - -#: pro/admin/views/html-settings-updates.php:29 -msgid "Retry Activation" -msgstr "Reintentar activación" - -#: pro/admin/views/html-settings-updates.php:61 -msgid "Update Information" -msgstr "Información de Actualización" - -#: pro/admin/views/html-settings-updates.php:68 -msgid "Current Version" -msgstr "Versión Actual" - -#: pro/admin/views/html-settings-updates.php:76 -msgid "Latest Version" -msgstr "Última Versión" - -#: pro/admin/views/html-settings-updates.php:84 -msgid "Update Available" -msgstr "Actualización Disponible" - -#: pro/admin/views/html-settings-updates.php:98 -msgid "Upgrade Notice" -msgstr "Notificación de Actualización" - -#: pro/admin/views/html-settings-updates.php:126 -msgid "Check For Updates" -msgstr "" - -#: pro/admin/views/html-settings-updates.php:121 -#, fuzzy -#| msgid "Please enter your license key above to unlock updates" -msgid "Enter your license key to unlock updates" -msgstr "Por favor ingresa tu clave de licencia para habilitar actualizaciones" - -#: pro/admin/views/html-settings-updates.php:119 -msgid "Update Plugin" -msgstr "Actualizar Plugin" - -#: pro/admin/views/html-settings-updates.php:117 -msgid "Please reactivate your license to unlock updates" -msgstr "Reactive su licencia para desbloquear actualizaciones" diff --git a/lang/acf-es_MX.mo b/lang/acf-es_MX.mo deleted file mode 100644 index 5b7f185..0000000 Binary files a/lang/acf-es_MX.mo and /dev/null differ diff --git a/lang/acf-es_MX.po b/lang/acf-es_MX.po deleted file mode 100644 index 580d29d..0000000 --- a/lang/acf-es_MX.po +++ /dev/null @@ -1,5631 +0,0 @@ -# Advanced Custom Fields Translations are a combination of translate.wordpress.org contributions, -# combined with user contributed strings for the PRO version. -# Translations from translate.wordpress.org take priority over translations in this file. -# translate.wordpress.org contributions are synced at the time of each release. -# -# If you would like to contribute translations, please visit -# https://translate.wordpress.org/projects/wp-plugins/advanced-custom-fields/stable/ -# -# For additional ACF PRO strings, please submit a pull request over on the ACF GitHub repo at -# http://github.com/advancedcustomfields/acf using the .pot (and any existing .po) files in /lang/pro/ -# -# This file is distributed under the same license as Advanced Custom Fields. -msgid "" -msgstr "" -"PO-Revision-Date: 2023-11-28T09:14:32+00:00\n" -"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n" -"Language: es_MX\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: gettext\n" -"Project-Id-Version: Advanced Custom Fields\n" - -#: includes/admin/views/global/navigation.php:221 -msgid "Renew ACF PRO License" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:17 -msgid "Renew License" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:14 -msgid "Manage License" -msgstr "" - -#: includes/admin/views/acf-field-group/options.php:102 -msgid "'High' position not supported in the Block Editor" -msgstr "" - -#: includes/admin/views/options-page-preview.php:30 -msgid "Upgrade to ACF PRO" -msgstr "" - -#. translators: %s URL to ACF options pages documentation -#: includes/admin/views/options-page-preview.php:7 -msgid "" -"ACF options pages are custom admin " -"pages for managing global settings via fields. You can create multiple pages " -"and sub-pages." -msgstr "" - -#: includes/admin/views/global/header.php:35 -msgid "Add Options Page" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:703 -msgid "In the editor used as the placeholder of the title." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:702 -msgid "Title Placeholder" -msgstr "" - -#: includes/admin/views/global/navigation.php:97 -msgid "4 Months Free" -msgstr "" - -#. translators: %s - A singular label for a post type or taxonomy. -#: includes/admin/views/global/form-top.php:56 -msgid " (Duplicated from %s)" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:298 -msgid "Select Options Pages" -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:107 -msgid "Duplicate taxonomy" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:106 -#: includes/admin/post-types/admin-taxonomy.php:106 -msgid "Create taxonomy" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:105 -msgid "Duplicate post type" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:104 -#: includes/admin/post-types/admin-taxonomy.php:108 -msgid "Create post type" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:103 -#: includes/admin/post-types/admin-taxonomy.php:105 -msgid "Link field groups" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:102 -#: includes/admin/post-types/admin-taxonomy.php:104 -msgid "Add fields" -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:121 -#: assets/build/js/acf-field-group.js:2753 -#: assets/build/js/acf-field-group.js:3236 -msgid "This Field" -msgstr "" - -#: includes/admin/admin.php:267 -msgid "ACF PRO" -msgstr "" - -#: includes/admin/admin.php:265 -msgid "Feedback" -msgstr "" - -#: includes/admin/admin.php:263 -msgid "Support" -msgstr "" - -#. translators: This text is prepended by a link to ACF's website, and appended -#. by a link to WP Engine's website. -#: includes/admin/admin.php:238 -msgid "is developed and maintained by" -msgstr "" - -#. translators: %s - either "post type" or "taxonomy" -#: includes/admin/admin-internal-post-type.php:321 -msgid "Add this %s to the location rules of the selected field groups." -msgstr "" - -#. translators: %s the URL to ACF's bidirectional relationship documentation -#: includes/acf-bidirectional-functions.php:271 -msgid "" -"Enabling the bidirectional setting allows you to update a value in the " -"target fields for each value selected for this field, adding or removing the " -"Post ID, Taxonomy ID or User ID of the item being updated. For more " -"information, please read the documentation." -msgstr "" - -#: includes/acf-bidirectional-functions.php:247 -msgid "" -"Select field(s) to store the reference back to the item being updated. You " -"may select this field. Target fields must be compatible with where this " -"field is being displayed. For example, if this field is displayed on a " -"Taxonomy, your target field should be of type Taxonomy" -msgstr "" - -#: includes/acf-bidirectional-functions.php:246 -msgid "Target Field" -msgstr "" - -#: includes/acf-bidirectional-functions.php:220 -msgid "Update a field on the selected values, referencing back to this ID" -msgstr "" - -#: includes/acf-bidirectional-functions.php:219 -msgid "Bidirectional" -msgstr "" - -#. translators: %s A field type name, such as "Relationship" -#: includes/acf-bidirectional-functions.php:192 -msgid "%s Field" -msgstr "" - -#: includes/fields/class-acf-field-page_link.php:517 -#: includes/fields/class-acf-field-post_object.php:426 -#: includes/fields/class-acf-field-select.php:407 -#: includes/fields/class-acf-field-user.php:82 -msgid "Select Multiple" -msgstr "" - -#: includes/admin/views/global/navigation.php:233 -msgid "WP Engine logo" -msgstr "" - -#: includes/admin/views/acf-taxonomy/basic-settings.php:58 -msgid "Lower case letters, underscores and dashes only, Max 32 characters." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1136 -msgid "The capability name for assigning terms of this taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1135 -msgid "Assign Terms Capability" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1119 -msgid "The capability name for deleting terms of this taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1118 -msgid "Delete Terms Capability" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1102 -msgid "The capability name for editing terms of this taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1101 -msgid "Edit Terms Capability" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1085 -msgid "The capability name for managing terms of this taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1084 -msgid "Manage Terms Capability" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:886 -msgid "" -"Sets whether posts should be excluded from search results and taxonomy " -"archive pages." -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:74 -msgid "More Tools from WP Engine" -msgstr "" - -#. translators: %s - WP Engine logo -#: includes/admin/views/acf-field-group/pro-features.php:69 -msgid "Built for those that build with WordPress, by the team at %s" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:6 -msgid "View Pricing & Upgrade" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:3 -#: includes/admin/views/options-page-preview.php:29 -msgid "Learn More" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:28 -msgid "" -"Speed up your workflow and develop better websites with features like ACF " -"Blocks and Options Pages, and sophisticated field types like Repeater, " -"Flexible Content, Clone, and Gallery." -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:2 -msgid "Unlock Advanced Features and Build Even More with ACF PRO" -msgstr "" - -#. translators: %s - singular label of post type/taxonomy, i.e. "Movie"/"Genre" -#: includes/admin/views/global/form-top.php:19 -msgid "%s fields" -msgstr "%s campos" - -#: includes/admin/post-types/admin-taxonomies.php:293 -msgid "No terms" -msgstr "No se encontraron términos" - -#: includes/admin/post-types/admin-taxonomies.php:266 -msgid "No post types" -msgstr "No se encontraron tipos de contenidos" - -#: includes/admin/post-types/admin-post-types.php:289 -msgid "No posts" -msgstr "No se encontraron entradas" - -#: includes/admin/post-types/admin-post-types.php:263 -msgid "No taxonomies" -msgstr "No se encontraron taxonomías" - -#: includes/admin/post-types/admin-post-types.php:208 -#: includes/admin/post-types/admin-taxonomies.php:208 -msgid "No field groups" -msgstr "No se encontraron grupos de campos" - -#: includes/admin/post-types/admin-field-groups.php:281 -msgid "No fields" -msgstr "No se encontraron campos" - -#: includes/admin/post-types/admin-field-groups.php:154 -#: includes/admin/post-types/admin-post-types.php:172 -#: includes/admin/post-types/admin-taxonomies.php:172 -msgid "No description" -msgstr "Sin descripción" - -#: includes/fields/class-acf-field-page_link.php:484 -#: includes/fields/class-acf-field-post_object.php:389 -#: includes/fields/class-acf-field-relationship.php:601 -msgid "Any post status" -msgstr "Cualquier estado de entrada" - -#: includes/post-types/class-acf-taxonomy.php:284 -msgid "" -"This taxonomy key is already in use by another taxonomy registered outside " -"of ACF and cannot be used." -msgstr "" -"La clave de esta taxonomía ya está en uso por otra taxonomía registrada " -"fuera de ACF y no puede ser usada." - -#: includes/post-types/class-acf-taxonomy.php:279 -msgid "" -"This taxonomy key is already in use by another taxonomy in ACF and cannot be " -"used." -msgstr "" -"La clave de esta taxonomía ya está en uso por otra taxonomía fuera de ACF y " -"no puede ser usada." - -#: includes/post-types/class-acf-taxonomy.php:252 -msgid "" -"The taxonomy key must only contain lower case alphanumeric characters, " -"underscores or dashes." -msgstr "" -"La clave de la taxonomía debe contener solamente caracteres alfanuméricos en " -"minúsculas, guiones y guiones bajos." - -#: includes/post-types/class-acf-taxonomy.php:247 -msgid "The taxonomy key must be under 32 characters." -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:99 -msgid "No Taxonomies found in Trash" -msgstr "No se han encontrado taxonomías en la papelera." - -#: includes/post-types/class-acf-taxonomy.php:98 -msgid "No Taxonomies found" -msgstr "No se han encontrado taxonomías" - -#: includes/post-types/class-acf-taxonomy.php:97 -msgid "Search Taxonomies" -msgstr "Buscar taxonomías" - -#: includes/post-types/class-acf-taxonomy.php:96 -msgid "View Taxonomy" -msgstr "Ver taxonomía" - -#: includes/post-types/class-acf-taxonomy.php:95 -msgid "New Taxonomy" -msgstr "Nueva taxonomía" - -#: includes/post-types/class-acf-taxonomy.php:94 -msgid "Edit Taxonomy" -msgstr "Editar taxonomía" - -#: includes/post-types/class-acf-taxonomy.php:93 -msgid "Add New Taxonomy" -msgstr "Agregar nueva taxonomía" - -#: includes/post-types/class-acf-post-type.php:100 -msgid "No Post Types found in Trash" -msgstr "No se han encontrado tipos de contenido en la papelera" - -#: includes/post-types/class-acf-post-type.php:99 -msgid "No Post Types found" -msgstr "No se han encontrado tipos de contenido" - -#: includes/post-types/class-acf-post-type.php:98 -msgid "Search Post Types" -msgstr "Buscar Tipos de Contenido" - -#: includes/post-types/class-acf-post-type.php:97 -msgid "View Post Type" -msgstr "Ver tipos de contenido" - -#: includes/post-types/class-acf-post-type.php:96 -msgid "New Post Type" -msgstr "Añadir nuevo tipo de contenido" - -#: includes/post-types/class-acf-post-type.php:95 -msgid "Edit Post Type" -msgstr "Editar tipo de contenido" - -#: includes/post-types/class-acf-post-type.php:94 -msgid "Add New Post Type" -msgstr "Añadir nuevo tipo de contenido" - -#: includes/post-types/class-acf-post-type.php:361 -msgid "" -"This post type key is already in use by another post type registered outside " -"of ACF and cannot be used." -msgstr "" -"La clave de este tipo de contenido ya es usada por otro tipo de contenido " -"registrado fuera de ACF y no puede ser usada." - -#: includes/post-types/class-acf-post-type.php:356 -msgid "" -"This post type key is already in use by another post type in ACF and cannot " -"be used." -msgstr "" -"La clave de este tipo de contenido ya es usada por otro tipo de contenido en " -"ACF y no puede ser usada." - -#. translators: %s a link to WordPress.org's Reserved Terms page -#: includes/post-types/class-acf-post-type.php:335 -#: includes/post-types/class-acf-taxonomy.php:258 -msgid "" -"This field must not be a WordPress reserved " -"term." -msgstr "" - -#: includes/post-types/class-acf-post-type.php:329 -msgid "" -"The post type key must only contain lower case alphanumeric characters, " -"underscores or dashes." -msgstr "" -"La clave del tipo de contenido debe contener solamente caracteres " -"alfanuméricos en minúsculas, guiones o guiones bajos." - -#: includes/post-types/class-acf-post-type.php:324 -msgid "The post type key must be under 20 characters." -msgstr "La clave del tipo de contenido debe contener menos de 20 caracteres." - -#: includes/fields/class-acf-field-wysiwyg.php:27 -msgid "We do not recommend using this field in ACF Blocks." -msgstr "No recomendamos utilizar este campo en ACF Blocks." - -#: includes/fields/class-acf-field-wysiwyg.php:27 -msgid "" -"Displays the WordPress WYSIWYG editor as seen in Posts and Pages allowing " -"for a rich text-editing experience that also allows for multimedia content." -msgstr "" -"Despliega el editor WYSIWYG de WordPress tal aparece en entradas y páginas, " -"permitiendo una experiencia de edición de texto enriquecedora que permite el " -"uso de contenido multimedia." - -#: includes/fields/class-acf-field-wysiwyg.php:25 -msgid "WYSIWYG Editor" -msgstr "Editor WYSIWYG" - -#: includes/fields/class-acf-field-user.php:17 -msgid "" -"Allows the selection of one or more users which can be used to create " -"relationships between data objects." -msgstr "" -"Permite la selección de uno o más usuarios, los cuales pueden ser utilizados " -"para crear relaciones entre objetos de datos." - -#: includes/fields/class-acf-field-url.php:26 -msgid "A text input specifically designed for storing web addresses." -msgstr "" - -#: includes/fields/class-acf-field-url.php:25 -msgid "URL" -msgstr "" - -#: includes/fields/class-acf-field-true_false.php:27 -msgid "" -"A toggle that allows you to pick a value of 1 or 0 (on or off, true or " -"false, etc). Can be presented as a stylized switch or checkbox." -msgstr "" - -#: includes/fields/class-acf-field-time_picker.php:27 -msgid "" -"An interactive UI for picking a time. The time format can be customized " -"using the field settings." -msgstr "" - -#: includes/fields/class-acf-field-textarea.php:26 -msgid "A basic textarea input for storing paragraphs of text." -msgstr "" - -#: includes/fields/class-acf-field-text.php:26 -msgid "A basic text input, useful for storing single string values." -msgstr "" - -#: includes/fields/class-acf-field-taxonomy.php:22 -msgid "" -"Allows the selection of one or more taxonomy terms based on the criteria and " -"options specified in the fields settings." -msgstr "" - -#: includes/fields/class-acf-field-tab.php:28 -msgid "" -"Allows you to group fields into tabbed sections in the edit screen. Useful " -"for keeping fields organized and structured." -msgstr "" - -#: includes/fields/class-acf-field-select.php:27 -msgid "A dropdown list with a selection of choices that you specify." -msgstr "" -"Una lista despegable con una selección de opciones que tú especificas. " - -#: includes/fields/class-acf-field-relationship.php:19 -msgid "" -"A dual-column interface to select one or more posts, pages, or custom post " -"type items to create a relationship with the item that you're currently " -"editing. Includes options to search and filter." -msgstr "" - -#: includes/fields/class-acf-field-range.php:26 -msgid "" -"An input for selecting a numerical value within a specified range using a " -"range slider element." -msgstr "" - -#: includes/fields/class-acf-field-radio.php:27 -msgid "" -"A group of radio button inputs that allows the user to make a single " -"selection from values that you specify." -msgstr "" - -#: includes/fields/class-acf-field-post_object.php:19 -msgid "" -"An interactive and customizable UI for picking one or many posts, pages or " -"post type items with the option to search. " -msgstr "" - -#: includes/fields/class-acf-field-password.php:26 -msgid "An input for providing a password using a masked field." -msgstr "" - -#: includes/fields/class-acf-field-page_link.php:476 -#: includes/fields/class-acf-field-post_object.php:381 -#: includes/fields/class-acf-field-relationship.php:593 -msgid "Filter by Post Status" -msgstr "Filtrar por estado de entrada" - -#: includes/fields/class-acf-field-page_link.php:27 -msgid "" -"An interactive dropdown to select one or more posts, pages, custom post type " -"items or archive URLs, with the option to search." -msgstr "" -"Un desplegable interactivo para seleccionar una o más entradas, páginas, " -"tipos de contenido, o URLs de archivos, con la opción de buscar." - -#: includes/fields/class-acf-field-oembed.php:27 -msgid "" -"An interactive component for embedding videos, images, tweets, audio and " -"other content by making use of the native WordPress oEmbed functionality." -msgstr "" -"Un componente interactivo para incrustar videos, imágenes, tweets, audio y " -"otro contenido haciendo uso de la funcionalidad nativa de oEmbed de " -"WordPress." - -#: includes/fields/class-acf-field-number.php:26 -msgid "An input limited to numerical values." -msgstr "" - -#: includes/fields/class-acf-field-message.php:28 -msgid "" -"Used to display a message to editors alongside other fields. Useful for " -"providing additional context or instructions around your fields." -msgstr "" - -#: includes/fields/class-acf-field-link.php:27 -msgid "" -"Allows you to specify a link and its properties such as title and target " -"using the WordPress native link picker." -msgstr "" - -#: includes/fields/class-acf-field-image.php:27 -msgid "Uses the native WordPress media picker to upload, or choose images." -msgstr "" -"Usa el selector de medios nativo de WordPress para cargar o elegir imágenes." - -#: includes/fields/class-acf-field-group.php:27 -msgid "" -"Provides a way to structure fields into groups to better organize the data " -"and the edit screen." -msgstr "" -"Proporciona una manera de estructurar campos en grupos para una mejor " -"organización de los datos y de la pantalla de edición." - -#: includes/fields/class-acf-field-google-map.php:27 -msgid "" -"An interactive UI for selecting a location using Google Maps. Requires a " -"Google Maps API key and additional configuration to display correctly." -msgstr "" - -#: includes/fields/class-acf-field-file.php:27 -msgid "Uses the native WordPress media picker to upload, or choose files." -msgstr "" -"Usa el selector de medios nativo de WordPress para cargar o elegir archivos." - -#: includes/fields/class-acf-field-email.php:26 -msgid "A text input specifically designed for storing email addresses." -msgstr "" - -#: includes/fields/class-acf-field-date_time_picker.php:27 -msgid "" -"An interactive UI for picking a date and time. The date return format can be " -"customized using the field settings." -msgstr "" - -#: includes/fields/class-acf-field-date_picker.php:27 -msgid "" -"An interactive UI for picking a date. The date return format can be " -"customized using the field settings." -msgstr "" - -#: includes/fields/class-acf-field-color_picker.php:27 -msgid "An interactive UI for selecting a color, or specifying a Hex value." -msgstr "" - -#: includes/fields/class-acf-field-checkbox.php:27 -msgid "" -"A group of checkbox inputs that allow the user to select one, or multiple " -"values that you specify." -msgstr "" - -#: includes/fields/class-acf-field-button-group.php:26 -msgid "" -"A group of buttons with values that you specify, users can choose one option " -"from the values provided." -msgstr "" - -#: includes/fields/class-acf-field-accordion.php:27 -msgid "" -"Allows you to group and organize custom fields into collapsable panels that " -"are shown while editing content. Useful for keeping large datasets tidy." -msgstr "" - -#: includes/fields.php:475 -msgid "" -"This provides a solution for repeating content such as slides, team members, " -"and call-to-action tiles, by acting as a parent to a set of subfields which " -"can be repeated again and again." -msgstr "" - -#: includes/fields.php:465 -msgid "" -"This provides an interactive interface for managing a collection of " -"attachments. Most settings are similar to the Image field type. Additional " -"settings allow you to specify where new attachments are added in the gallery " -"and the minimum/maximum number of attachments allowed." -msgstr "" - -#: includes/fields.php:455 -msgid "" -"This provides a simple, structured, layout-based editor. The Flexible " -"Content field allows you to define, create and manage content with total " -"control by using layouts and subfields to design the available blocks." -msgstr "" - -#: includes/fields.php:445 -msgid "" -"This allows you to select and display existing fields. It does not duplicate " -"any fields in the database, but loads and displays the selected fields at " -"run-time. The Clone field can either replace itself with the selected fields " -"or display the selected fields as a group of subfields." -msgstr "" - -#: includes/fields.php:442 -msgctxt "noun" -msgid "Clone" -msgstr "Clon" - -#: includes/admin/views/global/navigation.php:86 includes/fields.php:357 -msgid "PRO" -msgstr "" - -#: includes/fields.php:355 includes/fields.php:412 -msgid "Advanced" -msgstr "" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:85 -msgid "JSON (newer)" -msgstr "" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:81 -msgid "Original" -msgstr "Original" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:55 -msgid "Invalid post ID." -msgstr "El ID de la entrada no es válido." - -#: includes/ajax/class-acf-ajax-local-json-diff.php:47 -msgid "Invalid post type selected for review." -msgstr "Tipo de entrada inválida seleccionada para valoración." - -#: includes/admin/views/global/navigation.php:186 -msgid "More" -msgstr "Más" - -#: includes/admin/views/browse-fields-modal.php:86 -msgid "Tutorial" -msgstr "Tutorial" - -#: includes/admin/views/browse-fields-modal.php:75 -msgid "Available with ACF PRO" -msgstr "Disponible con ACF PRO" - -#: includes/admin/views/browse-fields-modal.php:63 -msgid "Select Field" -msgstr "Selecciona Campo" - -#. translators: %s: A link to the popular fields used in ACF -#: includes/admin/views/browse-fields-modal.php:50 -msgid "Try a different search term or browse %s" -msgstr "" - -#: includes/admin/views/browse-fields-modal.php:47 -msgid "Popular fields" -msgstr "Campos populares" - -#. translators: %s: The invalid search term -#: includes/admin/views/browse-fields-modal.php:40 -msgid "No search results for '%s'" -msgstr "No hay resultados de búsqueda para '%s'" - -#: includes/admin/views/browse-fields-modal.php:13 -msgid "Search fields..." -msgstr "Buscar campos..." - -#: includes/admin/views/browse-fields-modal.php:11 -msgid "Select Field Type" -msgstr "Selecciona tipo de campo" - -#: includes/admin/views/browse-fields-modal.php:4 -msgid "Popular" -msgstr "Popular" - -#: includes/admin/views/acf-taxonomy/list-empty.php:7 -msgid "Add Taxonomy" -msgstr "Agregar taxonomía" - -#: includes/admin/views/acf-taxonomy/list-empty.php:6 -msgid "Create custom taxonomies to classify post type content" -msgstr "" - -#: includes/admin/views/acf-taxonomy/list-empty.php:5 -msgid "Add Your First Taxonomy" -msgstr "Agrega tu primera taxonomía" - -#: includes/admin/views/acf-taxonomy/basic-settings.php:122 -msgid "Hierarchical taxonomies can have descendants (like categories)." -msgstr "" - -#: includes/admin/views/acf-taxonomy/basic-settings.php:107 -msgid "Makes a taxonomy visible on the frontend and in the admin dashboard." -msgstr "" - -#: includes/admin/views/acf-taxonomy/basic-settings.php:91 -msgid "One or many post types that can be classified with this taxonomy." -msgstr "" - -#. translators: example taxonomy -#: includes/admin/views/acf-taxonomy/basic-settings.php:60 -msgid "genre" -msgstr "género" - -#. translators: example taxonomy -#: includes/admin/views/acf-taxonomy/basic-settings.php:42 -msgid "Genre" -msgstr "Género" - -#. translators: example taxonomy -#: includes/admin/views/acf-taxonomy/basic-settings.php:25 -msgid "Genres" -msgstr "Géneros" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1211 -msgid "" -"Optional custom controller to use instead of `WP_REST_Terms_Controller `." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1155 -msgid "Expose this post type in the REST API." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1055 -msgid "Customize the query variable name" -msgstr "Personaliza los argumentos de la consulta." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1028 -msgid "" -"Terms can be accessed using the non-pretty permalink, e.g., {query_var}" -"={term_slug}." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:981 -msgid "Parent-child terms in URLs for hierarchical taxonomies." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:941 -msgid "Customize the slug used in the URL" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:924 -msgid "Permalinks for this taxonomy are disabled." -msgstr "" - -#. translators: this string will be appended with the new permalink structure. -#: includes/admin/views/acf-taxonomy/advanced-settings.php:921 -msgid "" -"Rewrite the URL using the taxonomy key as the slug. Your permalink structure " -"will be" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:913 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1030 -#: includes/admin/views/acf-taxonomy/basic-settings.php:57 -msgid "Taxonomy Key" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:911 -msgid "Select the type of permalink to use for this taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:896 -msgid "Display a column for the taxonomy on post type listing screens." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:895 -msgid "Show Admin Column" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:882 -msgid "Show the taxonomy in the quick/bulk edit panel." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:881 -msgid "Quick Edit" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:868 -msgid "List the taxonomy in the Tag Cloud Widget controls." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:867 -msgid "Tag Cloud" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:824 -msgid "" -"A PHP function name to be called for sanitizing taxonomy data saved from a " -"meta box." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:823 -msgid "Meta Box Sanitization Callback" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:805 -msgid "" -"A PHP function name to be called to handle the content of a meta box on your " -"taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:804 -msgid "Register Meta Box Callback" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:763 -msgid "No Meta Box" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:762 -msgid "Custom Meta Box" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:758 -msgid "" -"Controls the meta box on the content editor screen. By default, the " -"Categories meta box is shown for hierarchical taxonomies, and the Tags meta " -"box is shown for non-hierarchical taxonomies." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:757 -msgid "Meta Box" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:746 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:767 -msgid "Categories Meta Box" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:745 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:766 -msgid "Tags Meta Box" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:704 -msgid "A link to a tag" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:703 -msgid "Describes a navigation link block variation used in the block editor." -msgstr "" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:698 -msgid "A link to a %s" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:683 -msgid "Tag Link" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:682 -msgid "" -"Assigns a title for navigation link block variation used in the block editor." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:663 -msgid "← Go to tags" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:662 -msgid "" -"Assigns the text used to link back to the main index after updating a term." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:661 -msgid "Back To Items" -msgstr "" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:657 -msgid "← Go to %s" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:642 -msgid "Tags list" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:641 -msgid "Assigns text to the table hidden heading." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:622 -msgid "Tags list navigation" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:621 -msgid "Assigns text to the table pagination hidden heading." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:597 -msgid "Filter by category" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:596 -msgid "Assigns text to the filter button in the posts lists table." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:595 -msgid "Filter By Item" -msgstr "" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:591 -msgid "Filter by %s" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:575 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:576 -msgid "" -"The description is not prominent by default; however, some themes may show " -"it." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:574 -msgid "Describes the Description field on the Edit Tags screen." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:573 -msgid "Description Field Description" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:554 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:555 -msgid "" -"Assign a parent term to create a hierarchy. The term Jazz, for example, " -"would be the parent of Bebop and Big Band" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:553 -msgid "Describes the Parent field on the Edit Tags screen." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:552 -msgid "Parent Field Description" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:538 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:539 -msgid "" -"The \"slug\" is the URL-friendly version of the name. It is usually all " -"lower case and contains only letters, numbers, and hyphens." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:537 -msgid "Describes the Slug field on the Edit Tags screen." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:536 -msgid "Slug Field Description" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:522 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:523 -msgid "The name is how it appears on your site" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:521 -msgid "Describes the Name field on the Edit Tags screen." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:520 -msgid "Name Field Description" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:507 -msgid "No tags" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:506 -msgid "" -"Assigns the text displayed in the posts and media list tables when no tags " -"or categories are available." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:505 -msgid "No Terms" -msgstr "" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:501 -msgid "No %s" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:486 -msgid "No tags found" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:485 -msgid "" -"Assigns the text displayed when clicking the 'choose from most used' text in " -"the taxonomy meta box when no tags are available, and assigns the text used " -"in the terms list table when there are no items for a taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:484 -msgid "Not Found" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:463 -msgid "Assigns text to the Title field of the Most Used tab." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:462 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:464 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:465 -msgid "Most Used" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:444 -msgid "Choose from the most used tags" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:443 -msgid "" -"Assigns the 'choose from most used' text used in the meta box when " -"JavaScript is disabled. Only used on non-hierarchical taxonomies." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:442 -msgid "Choose From Most Used" -msgstr "" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:438 -msgid "Choose from the most used %s" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:418 -msgid "Add or remove tags" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:417 -msgid "" -"Assigns the add or remove items text used in the meta box when JavaScript is " -"disabled. Only used on non-hierarchical taxonomies" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:416 -msgid "Add Or Remove Items" -msgstr "" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:412 -msgid "Add or remove %s" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:392 -msgid "Separate tags with commas" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:391 -msgid "" -"Assigns the separate item with commas text used in the taxonomy meta box. " -"Only used on non-hierarchical taxonomies." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:390 -msgid "Separate Items With Commas" -msgstr "" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:386 -msgid "Separate %s with commas" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:366 -msgid "Popular Tags" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:365 -msgid "Assigns popular items text. Only used for non-hierarchical taxonomies." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:364 -msgid "Popular Items" -msgstr "" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:361 -msgid "Popular %s" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:347 -msgid "Search Tags" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:346 -msgid "Assigns search items text." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:323 -msgid "Parent Category:" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:322 -msgid "Assigns parent item text, but with a colon (:) added to the end." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:321 -msgid "Parent Item With Colon" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:298 -msgid "Parent Category" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:297 -msgid "Assigns parent item text. Only used on hierarchical taxonomies." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:296 -msgid "Parent Item" -msgstr "" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:293 -msgid "Parent %s" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:278 -msgid "New Tag Name" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:277 -msgid "Assigns the new item name text." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:276 -msgid "New Item Name" -msgstr "" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:273 -msgid "New %s Name" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:258 -msgid "Add New Tag" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:257 -msgid "Assigns the add new item text." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:238 -msgid "Update Tag" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:237 -msgid "Assigns the update item text." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:236 -msgid "Update Item" -msgstr "" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:233 -msgid "Update %s" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:218 -msgid "View Tag" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:217 -msgid "In the admin bar to view term during editing." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:198 -msgid "Edit Tag" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:197 -msgid "At the top of the editor screen when editing a term." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:178 -msgid "All Tags" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:177 -msgid "Assigns the all items text." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:158 -msgid "Assigns the menu name text." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:157 -msgid "Menu Label" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:131 -msgid "Active taxonomies are enabled and registered with WordPress." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:115 -msgid "A descriptive summary of the taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:95 -msgid "A descriptive summary of the term." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:94 -msgid "Term Description" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:76 -msgid "Single word, no spaces. Underscores and dashes allowed." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:75 -msgid "Term Slug" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:56 -msgid "The name of the default term." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:55 -msgid "Term Name" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:41 -msgid "" -"Create a term for the taxonomy that cannot be deleted. It will not be " -"selected for posts by default." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:40 -msgid "Default Term" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:28 -msgid "" -"Whether terms in this taxonomy should be sorted in the order they are " -"provided to `wp_set_object_terms()`." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:27 -msgid "Sort Terms" -msgstr "" - -#: includes/admin/views/acf-post-type/list-empty.php:7 -msgid "Add Post Type" -msgstr "" - -#: includes/admin/views/acf-post-type/list-empty.php:6 -msgid "" -"Expand the functionality of WordPress beyond standard posts and pages with " -"custom post types." -msgstr "" - -#: includes/admin/views/acf-post-type/list-empty.php:5 -msgid "Add Your First Post Type" -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:136 -#: includes/admin/views/acf-taxonomy/basic-settings.php:135 -msgid "I know what I'm doing, show me all the options." -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:135 -#: includes/admin/views/acf-taxonomy/basic-settings.php:134 -msgid "Advanced Configuration" -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:123 -msgid "Hierarchical post types can have descendants (like pages)." -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:122 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:980 -#: includes/admin/views/acf-taxonomy/basic-settings.php:121 -msgid "Hierarchical" -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:107 -msgid "Visible on the frontend and in the admin dashboard." -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:106 -#: includes/admin/views/acf-taxonomy/basic-settings.php:106 -msgid "Public" -msgstr "" - -#. translators: example post type -#: includes/admin/views/acf-post-type/basic-settings.php:59 -msgid "movie" -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:57 -msgid "Lower case letters, underscores and dashes only, Max 20 characters." -msgstr "" - -#. translators: example post type -#: includes/admin/views/acf-post-type/basic-settings.php:41 -msgid "Movie" -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:39 -#: includes/admin/views/acf-taxonomy/basic-settings.php:40 -msgid "Singular Label" -msgstr "" - -#. translators: example post type -#: includes/admin/views/acf-post-type/basic-settings.php:24 -msgid "Movies" -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:22 -#: includes/admin/views/acf-taxonomy/basic-settings.php:23 -msgid "Plural Label" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1270 -msgid "" -"Optional custom controller to use instead of `WP_REST_Posts_Controller`." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1269 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1210 -msgid "Controller Class" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1251 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1191 -msgid "The namespace part of the REST API URL." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1250 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1190 -msgid "Namespace Route" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1232 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1172 -msgid "The base URL for the post type REST API URLs." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1231 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1171 -msgid "Base URL" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1217 -msgid "" -"Exposes this post type in the REST API. Required to use the block editor." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1216 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1154 -msgid "Show In REST API" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1195 -msgid "Customize the query variable name." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1194 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1054 -msgid "Query Variable" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1172 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1032 -msgid "No Query Variable Support" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1171 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1031 -msgid "Custom Query Variable" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1168 -msgid "" -"Items can be accessed using the non-pretty permalink, eg. {post_type}" -"={post_slug}." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1167 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1027 -msgid "Query Variable Support" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1142 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1003 -msgid "URLs for an item and items can be accessed with a query string." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1141 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1002 -msgid "Publicly Queryable" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1120 -msgid "Custom slug for the Archive URL." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1119 -msgid "Archive Slug" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1106 -msgid "" -"Has an item archive that can be customized with an archive template file in " -"your theme." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1105 -msgid "Archive" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1085 -msgid "Pagination support for the items URLs such as the archives." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1084 -msgid "Pagination" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1067 -msgid "RSS feed URL for the post type items." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1066 -msgid "Feed URL" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1048 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:961 -msgid "" -"Alters the permalink structure to add the `WP_Rewrite::$front` prefix to " -"URLs." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1047 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:960 -msgid "Front URL Prefix" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1028 -msgid "Customize the slug used in the URL." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1027 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:940 -msgid "URL Slug" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1011 -msgid "Permalinks for this post type are disabled." -msgstr "" - -#. translators: this string will be appended with the new permalink structure. -#: includes/admin/views/acf-post-type/advanced-settings.php:1010 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:923 -msgid "" -"Rewrite the URL using a custom slug defined in the input below. Your " -"permalink structure will be" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1002 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:915 -msgid "No Permalink (prevent URL rewriting)" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1001 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:914 -msgid "Custom Permalink" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1000 -#: includes/admin/views/acf-post-type/advanced-settings.php:1170 -#: includes/admin/views/acf-post-type/basic-settings.php:56 -msgid "Post Type Key" -msgstr "" - -#. translators: this string will be appended with the new permalink structure. -#: includes/admin/views/acf-post-type/advanced-settings.php:998 -#: includes/admin/views/acf-post-type/advanced-settings.php:1008 -msgid "" -"Rewrite the URL using the post type key as the slug. Your permalink " -"structure will be" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:996 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:910 -msgid "Permalink Rewrite" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:982 -msgid "Delete items by a user when that user is deleted." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:981 -msgid "Delete With User" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:967 -msgid "Allow the post type to be exported from 'Tools' > 'Export'." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:966 -msgid "Can Export" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:935 -msgid "Optionally provide a plural to be used in capabilities." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:934 -msgid "Plural Capability Name" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:916 -msgid "Choose another post type to base the capabilities for this post type." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:915 -msgid "Singular Capability Name" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:901 -msgid "" -"By default the capabilities of the post type will inherit the 'Post' " -"capability names, eg. edit_post, delete_posts. Enable to use post type " -"specific capabilities, eg. edit_{singular}, delete_{plural}." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:900 -msgid "Rename Capabilities" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:885 -msgid "Exclude From Search" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:872 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:854 -msgid "" -"Allow items to be added to menus in the 'Appearance' > 'Menus' screen. Must " -"be turned on in 'Screen options'." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:871 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:853 -msgid "Appearance Menus Support" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:853 -msgid "Appears as an item in the 'New' menu in the admin bar." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:852 -msgid "Show In Admin Bar" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:821 -msgid "" -"A PHP function name to be called when setting up the meta boxes for the edit " -"screen." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:820 -msgid "Custom Meta Box Callback" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:800 -msgid "Menu Icon" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:782 -msgid "The position in the sidebar menu in the admin dashboard." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:781 -msgid "Menu Position" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:763 -msgid "" -"By default the post type will get a new top level item in the admin menu. If " -"an existing top level item is supplied here, the post type will be added as " -"a submenu item under it." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:762 -msgid "Admin Menu Parent" -msgstr "" - -#. translators: %s = "dashicon class name", link to the WordPress dashicon -#. documentation. -#: includes/admin/views/acf-post-type/advanced-settings.php:750 -msgid "" -"The icon used for the post type menu item in the admin dashboard. Can be a " -"URL or %s to use for the icon." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:745 -msgid "Dashicon class name" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:734 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:734 -msgid "Admin editor navigation in the sidebar menu." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:733 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:733 -msgid "Show In Admin Menu" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:720 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:719 -msgid "Items can be edited and managed in the admin dashboard." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:719 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:718 -msgid "Show In UI" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:689 -msgid "A link to a post." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:688 -msgid "Description for a navigation link block variation." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:687 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:702 -msgid "Item Link Description" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:683 -msgid "A link to a %s." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:668 -msgid "Post Link" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:667 -msgid "Title for a navigation link block variation." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:666 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:681 -msgid "Item Link" -msgstr "" - -#. translators: %s Singular form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:663 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:678 -msgid "%s Link" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:648 -msgid "Post updated." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:647 -msgid "In the editor notice after an item is updated." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:646 -msgid "Item Updated" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:643 -msgid "%s updated." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:628 -msgid "Post scheduled." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:627 -msgid "In the editor notice after scheduling an item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:626 -msgid "Item Scheduled" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:623 -msgid "%s scheduled." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:608 -msgid "Post reverted to draft." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:607 -msgid "In the editor notice after reverting an item to draft." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:606 -msgid "Item Reverted To Draft" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:603 -msgid "%s reverted to draft." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:588 -msgid "Post published privately." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:587 -msgid "In the editor notice after publishing a private item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:586 -msgid "Item Published Privately" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:583 -msgid "%s published privately." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:568 -msgid "Post published." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:567 -msgid "In the editor notice after publishing an item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:566 -msgid "Item Published" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:563 -msgid "%s published." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:548 -msgid "Posts list" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:547 -msgid "Used by screen readers for the items list on the post type list screen." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:546 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:640 -msgid "Items List" -msgstr "" - -#. translators: %s Plural form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:543 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:637 -msgid "%s list" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:528 -msgid "Posts list navigation" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:527 -msgid "" -"Used by screen readers for the filter list pagination on the post type list " -"screen." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:526 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:620 -msgid "Items List Navigation" -msgstr "" - -#. translators: %s Plural form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:523 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:617 -msgid "%s list navigation" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:507 -msgid "Filter posts by date" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:506 -msgid "" -"Used by screen readers for the filter by date heading on the post type list " -"screen." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:505 -msgid "Filter Items By Date" -msgstr "" - -#. translators: %s Plural form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:501 -msgid "Filter %s by date" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:486 -msgid "Filter posts list" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:485 -msgid "" -"Used by screen readers for the filter links heading on the post type list " -"screen." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:484 -msgid "Filter Items List" -msgstr "" - -#. translators: %s Plural form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:480 -msgid "Filter %s list" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:464 -msgid "In the media modal showing all media uploaded to this item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:463 -msgid "Uploaded To This Item" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:459 -msgid "Uploaded to this %s" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:444 -msgid "Insert into post" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:443 -msgid "As the button label when adding media to content." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:442 -msgid "Insert Into Media Button" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:438 -msgid "Insert into %s" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:423 -msgid "Use as featured image" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:422 -msgid "" -"As the button label for selecting to use an image as the featured image." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:421 -msgid "Use Featured Image" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:408 -msgid "Remove featured image" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:407 -msgid "As the button label when removing the featured image." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:406 -msgid "Remove Featured Image" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:393 -msgid "Set featured image" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:392 -msgid "As the button label when setting the featured image." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:391 -msgid "Set Featured Image" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:378 -msgid "Featured image" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:377 -msgid "In the editor used for the title of the featured image meta box." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:376 -msgid "Featured Image Meta Box" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:363 -msgid "Post Attributes" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:362 -msgid "In the editor used for the title of the post attributes meta box." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:361 -msgid "Attributes Meta Box" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:358 -msgid "%s Attributes" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:343 -msgid "Post Archives" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:342 -msgid "" -"Adds 'Post Type Archive' items with this label to the list of posts shown " -"when adding items to an existing menu in a CPT with archives enabled. Only " -"appears when editing menus in 'Live Preview' mode and a custom archive slug " -"has been provided." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:341 -msgid "Archives Nav Menu" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:338 -msgid "%s Archives" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:323 -msgid "No posts found in Trash" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:322 -msgid "" -"At the top of the post type list screen when there are no posts in the trash." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:321 -msgid "No Items Found in Trash" -msgstr "" - -#. translators: %s Plural form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:317 -msgid "No %s found in Trash" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:302 -msgid "No posts found" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:301 -msgid "" -"At the top of the post type list screen when there are no posts to display." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:300 -msgid "No Items Found" -msgstr "" - -#. translators: %s Plural form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:296 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:480 -msgid "No %s found" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:281 -msgid "Search Posts" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:280 -msgid "At the top of the items screen when searching for an item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:279 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:345 -msgid "Search Items" -msgstr "" - -#. translators: %s Singular form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:276 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:342 -msgid "Search %s" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:261 -msgid "Parent Page:" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:260 -msgid "For hierarchical types in the post type list screen." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:259 -msgid "Parent Item Prefix" -msgstr "" - -#. translators: %s Singular form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:256 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:318 -msgid "Parent %s:" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:241 -msgid "New Post" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:239 -msgid "New Item" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:236 -msgid "New %s" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:206 -msgid "Add New Post" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:205 -msgid "At the top of the editor screen when adding a new item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:204 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:256 -msgid "Add New Item" -msgstr "" - -#. translators: %s Singular form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:201 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:253 -msgid "Add New %s" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:186 -msgid "View Posts" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:185 -msgid "" -"Appears in the admin bar in the 'All Posts' view, provided the post type " -"supports archives and the home page is not an archive of that post type." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:184 -msgid "View Items" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:166 -msgid "View Post" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:165 -msgid "In the admin bar to view item when editing it." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:164 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:216 -msgid "View Item" -msgstr "" - -#. translators: %s Singular form of post type name -#. translators: %s Plural form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:161 -#: includes/admin/views/acf-post-type/advanced-settings.php:181 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:213 -msgid "View %s" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:146 -msgid "Edit Post" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:145 -msgid "At the top of the editor screen when editing an item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:144 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:196 -msgid "Edit Item" -msgstr "" - -#. translators: %s Singular form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:141 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:193 -msgid "Edit %s" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:126 -msgid "All Posts" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:125 -#: includes/admin/views/acf-post-type/advanced-settings.php:220 -#: includes/admin/views/acf-post-type/advanced-settings.php:240 -msgid "In the post type submenu in the admin dashboard." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:124 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:176 -msgid "All Items" -msgstr "" - -#. translators: %s Plural form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:121 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:173 -msgid "All %s" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:105 -msgid "Admin menu name for the post type." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:104 -msgid "Menu Name" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:90 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:142 -msgid "Regenerate all labels using the Singular and Plural labels" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:88 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:140 -msgid "Regenerate" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:79 -msgid "Active post types are enabled and registered with WordPress." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:63 -msgid "A descriptive summary of the post type." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:48 -msgid "Add Custom" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:42 -msgid "Enable various features in the content editor." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:31 -msgid "Post Formats" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:25 -msgid "Editor" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:24 -msgid "Trackbacks" -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:87 -msgid "Select existing taxonomies to classify items of the post type." -msgstr "" - -#: includes/admin/views/acf-field-group/field.php:145 -msgid "Browse Fields" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:292 -msgid "Nothing to import" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:287 -msgid ". The Custom Post Type UI plugin can be deactivated." -msgstr "" - -#. translators: %d - number of items imported from CPTUI -#: includes/admin/tools/class-acf-admin-tool-import.php:278 -msgid "Imported %d item from Custom Post Type UI -" -msgid_plural "Imported %d items from Custom Post Type UI -" -msgstr[0] "" -msgstr[1] "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:262 -msgid "Failed to import taxonomies." -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:244 -msgid "Failed to import post types." -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:233 -msgid "Nothing from Custom Post Type UI plugin selected for import." -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:209 -msgid "Imported 1 item" -msgid_plural "Imported %s items" -msgstr[0] "" -msgstr[1] "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:122 -msgid "" -"Importing a Post Type or Taxonomy with the same key as one that already " -"exists will overwrite the settings for the existing Post Type or Taxonomy " -"with those of the import." -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:111 -#: includes/admin/tools/class-acf-admin-tool-import.php:127 -msgid "Import from Custom Post Type UI" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:412 -msgid "" -"The following code can be used to register a local version of the selected " -"items. Storing field groups, post types, or taxonomies locally can provide " -"many benefits such as faster load times, version control & dynamic fields/" -"settings. Simply copy and paste the following code to your theme's functions." -"php file or include it within an external file, then deactivate or delete " -"the items from the ACF admin." -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:411 -msgid "Export - Generate PHP" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:384 -msgid "Export" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:276 -msgid "Select Taxonomies" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:254 -msgid "Select Post Types" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:167 -msgid "Exported 1 item." -msgid_plural "Exported %s items." -msgstr[0] "" -msgstr[1] "" - -#: includes/admin/post-types/admin-taxonomy.php:129 -#: assets/build/js/acf-internal-post-type.js:182 -#: assets/build/js/acf-internal-post-type.js:256 -msgid "Category" -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:127 -#: assets/build/js/acf-internal-post-type.js:179 -#: assets/build/js/acf-internal-post-type.js:253 -msgid "Tag" -msgstr "" - -#. translators: %s taxonomy name -#: includes/admin/post-types/admin-taxonomy.php:82 -msgid "%s taxonomy created" -msgstr "" - -#. translators: %s taxonomy name -#: includes/admin/post-types/admin-taxonomy.php:76 -msgid "%s taxonomy updated" -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:56 -msgid "Taxonomy draft updated." -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:55 -msgid "Taxonomy scheduled for." -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:54 -msgid "Taxonomy submitted." -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:53 -msgid "Taxonomy saved." -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:49 -msgid "Taxonomy deleted." -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:48 -msgid "Taxonomy updated." -msgstr "" - -#: includes/admin/post-types/admin-taxonomies.php:377 -#: includes/admin/post-types/admin-taxonomy.php:157 -msgid "" -"This taxonomy could not be registered because its key is in use by another " -"taxonomy registered by another plugin or theme." -msgstr "" - -#. translators: %s number of taxonomies synchronized -#: includes/admin/post-types/admin-taxonomies.php:359 -msgid "Taxonomy synchronized." -msgid_plural "%s taxonomies synchronized." -msgstr[0] "" -msgstr[1] "" - -#. translators: %s number of taxonomies duplicated -#: includes/admin/post-types/admin-taxonomies.php:352 -msgid "Taxonomy duplicated." -msgid_plural "%s taxonomies duplicated." -msgstr[0] "" -msgstr[1] "" - -#. translators: %s number of taxonomies deactivated -#: includes/admin/post-types/admin-taxonomies.php:345 -msgid "Taxonomy deactivated." -msgid_plural "%s taxonomies deactivated." -msgstr[0] "" -msgstr[1] "" - -#. translators: %s number of taxonomies activated -#: includes/admin/post-types/admin-taxonomies.php:338 -msgid "Taxonomy activated." -msgid_plural "%s taxonomies activated." -msgstr[0] "" -msgstr[1] "" - -#: includes/admin/post-types/admin-taxonomies.php:139 -msgid "Terms" -msgstr "" - -#. translators: %s number of post types synchronized -#: includes/admin/post-types/admin-post-types.php:352 -msgid "Post type synchronized." -msgid_plural "%s post types synchronized." -msgstr[0] "" -msgstr[1] "" - -#. translators: %s number of post types duplicated -#: includes/admin/post-types/admin-post-types.php:345 -msgid "Post type duplicated." -msgid_plural "%s post types duplicated." -msgstr[0] "" -msgstr[1] "" - -#. translators: %s number of post types deactivated -#: includes/admin/post-types/admin-post-types.php:338 -msgid "Post type deactivated." -msgid_plural "%s post types deactivated." -msgstr[0] "" -msgstr[1] "" - -#. translators: %s number of post types activated -#: includes/admin/post-types/admin-post-types.php:331 -msgid "Post type activated." -msgid_plural "%s post types activated." -msgstr[0] "" -msgstr[1] "" - -#: includes/admin/post-types/admin-post-types.php:112 -#: includes/admin/post-types/admin-taxonomies.php:137 -#: includes/admin/tools/class-acf-admin-tool-import.php:82 -#: includes/admin/views/acf-taxonomy/basic-settings.php:82 -#: includes/post-types/class-acf-post-type.php:91 -msgid "Post Types" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:162 -#: includes/admin/post-types/admin-taxonomy.php:164 -msgid "Advanced Settings" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:161 -#: includes/admin/post-types/admin-taxonomy.php:163 -msgid "Basic Settings" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:155 -#: includes/admin/post-types/admin-post-types.php:370 -msgid "" -"This post type could not be registered because its key is in use by another " -"post type registered by another plugin or theme." -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:128 -#: assets/build/js/acf-internal-post-type.js:176 -#: assets/build/js/acf-internal-post-type.js:250 -msgid "Pages" -msgstr "" - -#: includes/admin/admin-internal-post-type.php:355 -msgid "Link Existing Field Groups" -msgstr "" - -#. translators: %s post type name -#: includes/admin/post-types/admin-post-type.php:80 -msgid "%s post type created" -msgstr "" - -#. translators: %s taxonomy name -#: includes/admin/post-types/admin-taxonomy.php:78 -msgid "Add fields to %s" -msgstr "" - -#. translators: %s post type name -#: includes/admin/post-types/admin-post-type.php:76 -msgid "%s post type updated" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:56 -msgid "Post type draft updated." -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:55 -msgid "Post type scheduled for." -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:54 -msgid "Post type submitted." -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:53 -msgid "Post type saved." -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:50 -msgid "Post type updated." -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:49 -msgid "Post type deleted." -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:120 -#: assets/build/js/acf-field-group.js:1146 -#: assets/build/js/acf-field-group.js:1366 -msgid "Type to search..." -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:105 -#: assets/build/js/acf-field-group.js:1172 -#: assets/build/js/acf-field-group.js:2319 -#: assets/build/js/acf-field-group.js:1414 -#: assets/build/js/acf-field-group.js:2727 -msgid "PRO Only" -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:97 -#: assets/build/js/acf-internal-post-type.js:308 -#: assets/build/js/acf-internal-post-type.js:417 -msgid "Field groups linked successfully." -msgstr "" - -#. translators: %s - URL to ACF tools page. -#: includes/admin/admin.php:195 -msgid "" -"Import Post Types and Taxonomies registered with Custom Post Type UI and " -"manage them with ACF. Get Started." -msgstr "" - -#: includes/admin/admin.php:48 includes/admin/admin.php:267 -msgid "ACF" -msgstr "" - -#: includes/admin/admin-internal-post-type.php:322 -msgid "taxonomy" -msgstr "" - -#: includes/admin/admin-internal-post-type.php:322 -msgid "post type" -msgstr "" - -#: includes/admin/admin-internal-post-type.php:346 -msgid "Done" -msgstr "" - -#: includes/admin/admin-internal-post-type.php:332 -msgid "Field Group(s)" -msgstr "" - -#: includes/admin/admin-internal-post-type.php:331 -msgid "Select one or many field groups..." -msgstr "" - -#: includes/admin/admin-internal-post-type.php:330 -msgid "Please select the field groups to link." -msgstr "" - -#: includes/admin/admin-internal-post-type.php:288 -msgid "Field group linked successfully." -msgid_plural "Field groups linked successfully." -msgstr[0] "" -msgstr[1] "" - -#: includes/admin/admin-internal-post-type-list.php:261 -#: includes/admin/post-types/admin-post-types.php:371 -#: includes/admin/post-types/admin-taxonomies.php:378 -msgctxt "post status" -msgid "Registration Failed" -msgstr "" - -#: includes/admin/admin-internal-post-type-list.php:260 -msgid "" -"This item could not be registered because its key is in use by another item " -"registered by another plugin or theme." -msgstr "" - -#: includes/acf-internal-post-type-functions.php:482 -#: includes/acf-internal-post-type-functions.php:511 -msgid "REST API" -msgstr "" - -#: includes/acf-internal-post-type-functions.php:481 -#: includes/acf-internal-post-type-functions.php:510 -#: includes/acf-internal-post-type-functions.php:537 -msgid "Permissions" -msgstr "" - -#: includes/acf-internal-post-type-functions.php:480 -#: includes/acf-internal-post-type-functions.php:509 -msgid "URLs" -msgstr "" - -#: includes/acf-internal-post-type-functions.php:479 -#: includes/acf-internal-post-type-functions.php:508 -#: includes/acf-internal-post-type-functions.php:535 -msgid "Visibility" -msgstr "" - -#: includes/acf-internal-post-type-functions.php:478 -#: includes/acf-internal-post-type-functions.php:507 -#: includes/acf-internal-post-type-functions.php:536 -msgid "Labels" -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:269 -msgid "Field Settings Tabs" -msgstr "" - -#. Author URI of the plugin -msgid "" -"https://wpengine.com/?utm_source=wordpress." -"org&utm_medium=referral&utm_campaign=plugin_directory&utm_content=advanced_custom_fields" -msgstr "" - -#: includes/api/api-template.php:867 -msgid "[ACF shortcode value disabled for preview]" -msgstr "" - -#: includes/admin/admin-internal-post-type.php:298 -#: includes/admin/post-types/admin-field-group.php:571 -msgid "Close Modal" -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:96 -#: assets/build/js/acf-field-group.js:1670 -#: assets/build/js/acf-field-group.js:1993 -msgid "Field moved to other group" -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:95 -#: assets/build/js/acf.js:1437 assets/build/js/acf.js:1517 -msgid "Close modal" -msgstr "" - -#: includes/fields/class-acf-field-tab.php:125 -msgid "Start a new group of tabs at this tab." -msgstr "" - -#: includes/fields/class-acf-field-tab.php:124 -msgid "New Tab Group" -msgstr "" - -#: includes/fields/class-acf-field-select.php:451 -#: includes/fields/class-acf-field-true_false.php:200 -msgid "Use a stylized checkbox using select2" -msgstr "" - -#: includes/fields/class-acf-field-radio.php:260 -msgid "Save Other Choice" -msgstr "" - -#: includes/fields/class-acf-field-radio.php:249 -msgid "Allow Other Choice" -msgstr "" - -#: includes/fields/class-acf-field-checkbox.php:450 -msgid "Add Toggle All" -msgstr "" - -#: includes/fields/class-acf-field-checkbox.php:409 -msgid "Save Custom Values" -msgstr "" - -#: includes/fields/class-acf-field-checkbox.php:398 -msgid "Allow Custom Values" -msgstr "" - -#: includes/fields/class-acf-field-checkbox.php:148 -msgid "Checkbox custom values cannot be empty. Uncheck any empty values." -msgstr "" - -#: includes/admin/views/global/navigation.php:248 -msgid "Updates" -msgstr "" - -#: includes/admin/views/global/navigation.php:176 -msgid "Advanced Custom Fields logo" -msgstr "" - -#: includes/admin/views/global/form-top.php:89 -msgid "Save Changes" -msgstr "" - -#: includes/admin/views/global/form-top.php:76 -msgid "Field Group Title" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:704 -#: includes/admin/views/global/form-top.php:3 -msgid "Add title" -msgstr "" - -#. translators: %s url to getting started guide -#: includes/admin/views/acf-field-group/list-empty.php:20 -#: includes/admin/views/acf-post-type/list-empty.php:12 -#: includes/admin/views/acf-taxonomy/list-empty.php:12 -#: includes/admin/views/options-page-preview.php:13 -msgid "" -"New to ACF? Take a look at our getting " -"started guide." -msgstr "" - -#: includes/admin/views/acf-field-group/list-empty.php:15 -msgid "Add Field Group" -msgstr "" - -#. translators: %s url to creating a field group page -#: includes/admin/views/acf-field-group/list-empty.php:10 -msgid "" -"ACF uses field groups to group custom " -"fields together, and then attach those fields to edit screens." -msgstr "" - -#: includes/admin/views/acf-field-group/list-empty.php:5 -msgid "Add Your First Field Group" -msgstr "" - -#: includes/admin/admin-options-pages-preview.php:28 -#: includes/admin/views/acf-field-group/pro-features.php:54 -#: includes/admin/views/global/navigation.php:86 -#: includes/admin/views/global/navigation.php:250 -msgid "Options Pages" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:50 -msgid "ACF Blocks" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:58 -msgid "Gallery Field" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:38 -msgid "Flexible Content Field" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:42 -msgid "Repeater Field" -msgstr "" - -#: includes/admin/views/global/navigation.php:212 -msgid "Unlock Extra Features with ACF PRO" -msgstr "" - -#: includes/admin/views/acf-field-group/options.php:267 -msgid "Delete Field Group" -msgstr "" - -#. translators: 1: Post creation date 2: Post creation time -#: includes/admin/views/acf-field-group/options.php:261 -msgid "Created on %1$s at %2$s" -msgstr "" - -#: includes/acf-field-group-functions.php:497 -msgid "Group Settings" -msgstr "" - -#: includes/acf-field-group-functions.php:495 -msgid "Location Rules" -msgstr "" - -#. translators: %s url to field types list -#: includes/admin/views/acf-field-group/fields.php:72 -msgid "" -"Choose from over 30 field types. Learn " -"more." -msgstr "" - -#: includes/admin/views/acf-field-group/fields.php:65 -msgid "" -"Get started creating new custom fields for your posts, pages, custom post " -"types and other WordPress content." -msgstr "" - -#: includes/admin/views/acf-field-group/fields.php:64 -msgid "Add Your First Field" -msgstr "" - -#. translators: A symbol (or text, if not available in your locale) meaning -#. "Order Number", in terms of positional placement. -#: includes/admin/views/acf-field-group/fields.php:43 -msgid "#" -msgstr "" - -#: includes/admin/views/acf-field-group/fields.php:33 -#: includes/admin/views/acf-field-group/fields.php:67 -#: includes/admin/views/acf-field-group/fields.php:103 -#: includes/admin/views/global/form-top.php:85 -msgid "Add Field" -msgstr "" - -#: includes/acf-field-group-functions.php:496 includes/fields.php:410 -msgid "Presentation" -msgstr "" - -#: includes/fields.php:409 -msgid "Validation" -msgstr "" - -#: includes/acf-internal-post-type-functions.php:477 -#: includes/acf-internal-post-type-functions.php:506 includes/fields.php:408 -msgid "General" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:70 -msgid "Import JSON" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:392 -msgid "Export As JSON" -msgstr "" - -#. translators: %s number of field groups deactivated -#: includes/admin/post-types/admin-field-groups.php:367 -msgid "Field group deactivated." -msgid_plural "%s field groups deactivated." -msgstr[0] "" -msgstr[1] "" - -#. translators: %s number of field groups activated -#: includes/admin/post-types/admin-field-groups.php:360 -msgid "Field group activated." -msgid_plural "%s field groups activated." -msgstr[0] "" -msgstr[1] "" - -#: includes/admin/admin-internal-post-type-list.php:452 -#: includes/admin/admin-internal-post-type-list.php:478 -msgid "Deactivate" -msgstr "" - -#: includes/admin/admin-internal-post-type-list.php:452 -msgid "Deactivate this item" -msgstr "" - -#: includes/admin/admin-internal-post-type-list.php:448 -#: includes/admin/admin-internal-post-type-list.php:477 -msgid "Activate" -msgstr "" - -#: includes/admin/admin-internal-post-type-list.php:448 -msgid "Activate this item" -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:92 -#: assets/build/js/acf-field-group.js:2812 -#: assets/build/js/acf-field-group.js:3313 -msgid "Move field group to trash?" -msgstr "" - -#: acf.php:497 includes/admin/admin-internal-post-type-list.php:248 -#: includes/admin/post-types/admin-field-group.php:297 -#: includes/admin/post-types/admin-post-type.php:295 -#: includes/admin/post-types/admin-taxonomy.php:297 -msgctxt "post status" -msgid "Inactive" -msgstr "" - -#. Author of the plugin -msgid "WP Engine" -msgstr "" - -#: acf.php:555 -msgid "" -"Advanced Custom Fields and Advanced Custom Fields PRO should not be active " -"at the same time. We've automatically deactivated Advanced Custom Fields PRO." -msgstr "" - -#: acf.php:553 -msgid "" -"Advanced Custom Fields and Advanced Custom Fields PRO should not be active " -"at the same time. We've automatically deactivated Advanced Custom Fields." -msgstr "" - -#: includes/acf-value-functions.php:374 -msgid "" -"%1$s - We've detected one or more calls to retrieve ACF " -"field values before ACF has been initialized. This is not supported and can " -"result in malformed or missing data. Learn how to fix this." -msgstr "" -"%1$s - Hemos detectado una o más llamadas para obtener " -"valores de campo de ACF antes de que ACF se haya iniciado. Esto no es " -"compatible y puede ocasionar datos mal formados o faltantes. Aprende cómo corregirlo." - -#: includes/fields/class-acf-field-user.php:551 -msgid "%1$s must have a user with the %2$s role." -msgid_plural "%1$s must have a user with one of the following roles: %2$s" -msgstr[0] "%1$s debe tener un usuario con el perfil %2$s." -msgstr[1] "%1$s debe tener un usuario con uno de los siguientes perfiles: %2$s" - -#: includes/fields/class-acf-field-user.php:542 -msgid "%1$s must have a valid user ID." -msgstr "%1$s debe tener un ID de usuario válido." - -#: includes/fields/class-acf-field-user.php:380 -msgid "Invalid request." -msgstr "Petición no válida." - -#: includes/fields/class-acf-field-select.php:684 -msgid "%1$s is not one of %2$s" -msgstr "%1$s no es ninguna de las siguientes %2$s" - -#: includes/fields/class-acf-field-post_object.php:700 -msgid "%1$s must have term %2$s." -msgid_plural "%1$s must have one of the following terms: %2$s" -msgstr[0] "%1$s debe tener un término %2$s." -msgstr[1] "%1$s debe tener uno de los siguientes términos: %2$s" - -#: includes/fields/class-acf-field-post_object.php:684 -msgid "%1$s must be of post type %2$s." -msgid_plural "%1$s must be of one of the following post types: %2$s" -msgstr[0] "%1$s debe ser del tipo de contenido %2$s." -msgstr[1] "%1$s debe ser de uno de los siguientes tipos de contenido: %2$s" - -#: includes/fields/class-acf-field-post_object.php:675 -msgid "%1$s must have a valid post ID." -msgstr "%1$s debe tener un ID de entrada válido." - -#: includes/fields/class-acf-field-file.php:475 -msgid "%s requires a valid attachment ID." -msgstr "%s necesita un ID de adjunto válido." - -#: includes/admin/views/acf-field-group/options.php:233 -msgid "Show in REST API" -msgstr "Mostrar en la API REST" - -#: includes/fields/class-acf-field-color_picker.php:168 -msgid "Enable Transparency" -msgstr "Activar la transparencia" - -#: includes/fields/class-acf-field-color_picker.php:187 -msgid "RGBA Array" -msgstr "Array RGBA" - -#: includes/fields/class-acf-field-color_picker.php:98 -msgid "RGBA String" -msgstr "Cadena RGBA" - -#: includes/fields/class-acf-field-color_picker.php:97 -#: includes/fields/class-acf-field-color_picker.php:186 -msgid "Hex String" -msgstr "Cadena hexadecimal" - -#: includes/admin/views/browse-fields-modal.php:65 -msgid "Upgrade to PRO" -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:297 -#: includes/admin/post-types/admin-post-type.php:295 -#: includes/admin/post-types/admin-taxonomy.php:297 -msgctxt "post status" -msgid "Active" -msgstr "Activo" - -#: includes/fields/class-acf-field-email.php:181 -msgid "'%s' is not a valid email address" -msgstr "\"%s\" no es una dirección de correo electrónico válida" - -#: includes/fields/class-acf-field-color_picker.php:76 -msgid "Color value" -msgstr "Valor del color" - -#: includes/fields/class-acf-field-color_picker.php:74 -msgid "Select default color" -msgstr "Seleccionar el color predeterminado" - -#: includes/fields/class-acf-field-color_picker.php:72 -msgid "Clear color" -msgstr "Vaciar el color" - -#: includes/acf-wp-functions.php:90 -msgid "Blocks" -msgstr "Bloques" - -#: includes/acf-wp-functions.php:86 -msgid "Options" -msgstr "Opciones" - -#: includes/acf-wp-functions.php:82 -msgid "Users" -msgstr "Usuarios" - -#: includes/acf-wp-functions.php:78 -msgid "Menu items" -msgstr "Elementos del menú" - -#: includes/acf-wp-functions.php:70 -msgid "Widgets" -msgstr "Widgets" - -#: includes/acf-wp-functions.php:62 -msgid "Attachments" -msgstr "Adjuntos" - -#: includes/acf-wp-functions.php:57 -#: includes/admin/post-types/admin-post-types.php:137 -#: includes/admin/post-types/admin-taxonomies.php:112 -#: includes/admin/tools/class-acf-admin-tool-import.php:93 -#: includes/admin/views/acf-post-type/basic-settings.php:86 -#: includes/post-types/class-acf-taxonomy.php:90 -#: includes/post-types/class-acf-taxonomy.php:91 -msgid "Taxonomies" -msgstr "Taxonomías" - -#: includes/acf-wp-functions.php:44 -#: includes/admin/post-types/admin-post-type.php:126 -#: includes/admin/post-types/admin-post-types.php:139 -#: includes/admin/views/acf-post-type/advanced-settings.php:106 -#: assets/build/js/acf-internal-post-type.js:173 -#: assets/build/js/acf-internal-post-type.js:247 -msgid "Posts" -msgstr "Entradas" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:76 -msgid "Last updated: %s" -msgstr "Última actualización: %s" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:70 -msgid "Sorry, this post is unavailable for diff comparison." -msgstr "" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:42 -msgid "Invalid field group parameter(s)." -msgstr "Parámetro(s) de grupo de campos no válido(s)." - -#: includes/admin/admin-internal-post-type-list.php:413 -msgid "Awaiting save" -msgstr "Esperando el guardado" - -#: includes/admin/admin-internal-post-type-list.php:410 -msgid "Saved" -msgstr "Guardado" - -#: includes/admin/admin-internal-post-type-list.php:406 -#: includes/admin/tools/class-acf-admin-tool-import.php:49 -msgid "Import" -msgstr "Importar" - -#: includes/admin/admin-internal-post-type-list.php:402 -msgid "Review changes" -msgstr "Revisar cambios" - -#: includes/admin/admin-internal-post-type-list.php:378 -msgid "Located in: %s" -msgstr "Localizado en: %s" - -#: includes/admin/admin-internal-post-type-list.php:375 -msgid "Located in plugin: %s" -msgstr "Localizado en el plugin: %s" - -#: includes/admin/admin-internal-post-type-list.php:372 -msgid "Located in theme: %s" -msgstr "Localizado en el tema: %s" - -#: includes/admin/post-types/admin-field-groups.php:261 -msgid "Various" -msgstr "Varios" - -#: includes/admin/admin-internal-post-type-list.php:216 -#: includes/admin/admin-internal-post-type-list.php:485 -msgid "Sync changes" -msgstr "Sincronizar cambios" - -#: includes/admin/admin-internal-post-type-list.php:215 -msgid "Loading diff" -msgstr "Cargando diff" - -#: includes/admin/admin-internal-post-type-list.php:214 -msgid "Review local JSON changes" -msgstr "Revisar cambios de JSON local" - -#: includes/admin/admin.php:170 -msgid "Visit website" -msgstr "Visitar web" - -#: includes/admin/admin.php:169 -msgid "View details" -msgstr "Ver detalles" - -#: includes/admin/admin.php:168 -msgid "Version %s" -msgstr "Versión %s" - -#: includes/admin/admin.php:167 -msgid "Information" -msgstr "Información" - -#: includes/admin/admin.php:158 -msgid "" -"Help Desk. The support professionals on " -"our Help Desk will assist with your more in depth, technical challenges." -msgstr "" -"Centro de ayuda. Los profesionales de " -"soporte de nuestro centro de ayuda te ayudarán más en profundidad con los " -"retos técnicos." - -#: includes/admin/admin.php:154 -msgid "" -"Discussions. We have an active and " -"friendly community on our Community Forums who may be able to help you " -"figure out the 'how-tos' of the ACF world." -msgstr "" - -#: includes/admin/admin.php:150 -msgid "" -"Documentation. Our extensive " -"documentation contains references and guides for most situations you may " -"encounter." -msgstr "" -"Documentación. Nuestra amplia " -"documentación contiene referencias y guías para la mayoría de situaciones en " -"las que puedas encontrarte." - -#: includes/admin/admin.php:147 -msgid "" -"We are fanatical about support, and want you to get the best out of your " -"website with ACF. If you run into any difficulties, there are several places " -"you can find help:" -msgstr "" -"Somos fanáticos del soporte, y queremos que consigas el máximo en tu web con " -"ACF." - -#: includes/admin/admin.php:144 includes/admin/admin.php:146 -msgid "Help & Support" -msgstr "Ayuda y soporte" - -#: includes/admin/admin.php:135 -msgid "" -"Please use the Help & Support tab to get in touch should you find yourself " -"requiring assistance." -msgstr "" -"Por favor, usa la pestaña de ayuda y soporte para contactar si descubres que " -"necesitas ayuda." - -#: includes/admin/admin.php:132 -msgid "" -"Before creating your first Field Group, we recommend first reading our Getting started guide to familiarize " -"yourself with the plugin's philosophy and best practises." -msgstr "" -"Antes de crear tu primer grupo de campos te recomendamos que primero leas " -"nuestra guía de primeros pasos para " -"familiarizarte con la filosofía y buenas prácticas del plugin." - -#: includes/admin/admin.php:130 -msgid "" -"The Advanced Custom Fields plugin provides a visual form builder to " -"customize WordPress edit screens with extra fields, and an intuitive API to " -"display custom field values in any theme template file." -msgstr "" -"El plugin Advanced Custom Fields ofrece un constructor visual con el que " -"personalizar las pantallas de WordPress con campos adicionales, y una API " -"intuitiva parra mostrar valores de campos personalizados en cualquier " -"archivo de plantilla de cualquier tema." - -#: includes/admin/admin.php:127 includes/admin/admin.php:129 -msgid "Overview" -msgstr "Resumen" - -#: includes/locations.php:36 -msgid "Location type \"%s\" is already registered." -msgstr "El tipo de ubicación \"%s\" ya está registrado." - -#: includes/locations.php:25 -msgid "Class \"%s\" does not exist." -msgstr "La clase \"%s\" no existe." - -#: includes/ajax/class-acf-ajax.php:157 -msgid "Invalid nonce." -msgstr "Nonce no válido." - -#: includes/fields/class-acf-field-user.php:375 -msgid "Error loading field." -msgstr "Error al cargar el campo." - -#: assets/build/js/acf-input.js:2750 assets/build/js/acf-input.js:2819 -#: assets/build/js/acf-input.js:2926 assets/build/js/acf-input.js:3000 -msgid "Location not found: %s" -msgstr "Ubicación no encontrada: %s" - -#: includes/forms/form-user.php:353 -msgid "Error: %s" -msgstr "Error: %s" - -#: includes/locations/class-acf-location-widget.php:22 -msgid "Widget" -msgstr "Widget" - -#: includes/locations/class-acf-location-user-role.php:24 -msgid "User Role" -msgstr "Rol de usuario" - -#: includes/locations/class-acf-location-comment.php:22 -msgid "Comment" -msgstr "Comentario" - -#: includes/locations/class-acf-location-post-format.php:22 -msgid "Post Format" -msgstr "Formato de entrada" - -#: includes/locations/class-acf-location-nav-menu-item.php:22 -msgid "Menu Item" -msgstr "Elemento de menú" - -#: includes/locations/class-acf-location-post-status.php:22 -msgid "Post Status" -msgstr "Estado de entrada" - -#: includes/acf-wp-functions.php:74 -#: includes/locations/class-acf-location-nav-menu.php:89 -msgid "Menus" -msgstr "Menús" - -#: includes/locations/class-acf-location-nav-menu.php:80 -msgid "Menu Locations" -msgstr "Ubicaciones de menú" - -#: includes/locations/class-acf-location-nav-menu.php:22 -msgid "Menu" -msgstr "Menú" - -#: includes/locations/class-acf-location-post-taxonomy.php:22 -msgid "Post Taxonomy" -msgstr "Taxonomía de entrada" - -#: includes/locations/class-acf-location-page-type.php:114 -msgid "Child Page (has parent)" -msgstr "Página hija (tiene superior)" - -#: includes/locations/class-acf-location-page-type.php:113 -msgid "Parent Page (has children)" -msgstr "Página superior (con hijos)" - -#: includes/locations/class-acf-location-page-type.php:112 -msgid "Top Level Page (no parent)" -msgstr "Página de nivel superior (sin padres)" - -#: includes/locations/class-acf-location-page-type.php:111 -msgid "Posts Page" -msgstr "Página de entradas" - -#: includes/locations/class-acf-location-page-type.php:110 -msgid "Front Page" -msgstr "Página de inicio" - -#: includes/locations/class-acf-location-page-type.php:22 -msgid "Page Type" -msgstr "Tipo de página" - -#: includes/locations/class-acf-location-current-user.php:73 -msgid "Viewing back end" -msgstr "Viendo el escritorio" - -#: includes/locations/class-acf-location-current-user.php:72 -msgid "Viewing front end" -msgstr "Viendo la web" - -#: includes/locations/class-acf-location-current-user.php:71 -msgid "Logged in" -msgstr "Conectado" - -#: includes/locations/class-acf-location-current-user.php:22 -msgid "Current User" -msgstr "Usuario actual" - -#: includes/locations/class-acf-location-page-template.php:22 -msgid "Page Template" -msgstr "Plantilla de página" - -#: includes/locations/class-acf-location-user-form.php:74 -msgid "Register" -msgstr "Registro" - -#: includes/locations/class-acf-location-user-form.php:73 -msgid "Add / Edit" -msgstr "Añadir / Editar" - -#: includes/locations/class-acf-location-user-form.php:22 -msgid "User Form" -msgstr "Formulario de usuario" - -#: includes/locations/class-acf-location-page-parent.php:22 -msgid "Page Parent" -msgstr "Página superior" - -#: includes/locations/class-acf-location-current-user-role.php:77 -msgid "Super Admin" -msgstr "Super administrador" - -#: includes/locations/class-acf-location-current-user-role.php:22 -msgid "Current User Role" -msgstr "Rol del usuario actual" - -#: includes/locations/class-acf-location-page-template.php:73 -#: includes/locations/class-acf-location-post-template.php:85 -msgid "Default Template" -msgstr "Plantilla predeterminada" - -#: includes/locations/class-acf-location-post-template.php:22 -msgid "Post Template" -msgstr "Plantilla de entrada" - -#: includes/locations/class-acf-location-post-category.php:22 -msgid "Post Category" -msgstr "Categoría de entrada" - -#: includes/locations/class-acf-location-attachment.php:84 -msgid "All %s formats" -msgstr "Todo los formatos de %s" - -#: includes/locations/class-acf-location-attachment.php:22 -msgid "Attachment" -msgstr "Adjunto" - -#: includes/validation.php:366 -msgid "%s value is required" -msgstr "El valor de %s es obligatorio" - -#: includes/admin/views/acf-field-group/conditional-logic.php:59 -msgid "Show this field if" -msgstr "Mostrar este campo si" - -#: includes/admin/views/acf-field-group/conditional-logic.php:26 -#: includes/admin/views/acf-field-group/field.php:109 includes/fields.php:411 -msgid "Conditional Logic" -msgstr "Lógica condicional" - -#: includes/admin/views/acf-field-group/conditional-logic.php:156 -#: includes/admin/views/acf-field-group/location-rule.php:92 -msgid "and" -msgstr "y" - -#: includes/admin/post-types/admin-field-groups.php:123 -#: includes/admin/post-types/admin-post-types.php:143 -#: includes/admin/post-types/admin-taxonomies.php:143 -msgid "Local JSON" -msgstr "JSON Local" - -#: includes/admin/views/acf-field-group/pro-features.php:46 -msgid "Clone Field" -msgstr "Clonar campo" - -#: includes/admin/views/upgrade/notice.php:30 -msgid "" -"Please also check all premium add-ons (%s) are updated to the latest version." -msgstr "" -"Por favor, comprueba también que todas las extensiones premium (%s) estén " -"actualizados a la última versión." - -#: includes/admin/views/upgrade/notice.php:28 -msgid "" -"This version contains improvements to your database and requires an upgrade." -msgstr "" -"Esta versión contiene mejoras en su base de datos y requiere una " -"actualización." - -#: includes/admin/views/upgrade/notice.php:28 -msgid "Thank you for updating to %1$s v%2$s!" -msgstr "¡Gracias por actualizar a %1$s v%2$s!" - -#: includes/admin/views/upgrade/notice.php:27 -msgid "Database Upgrade Required" -msgstr "Es necesario actualizar la base de datos" - -#: includes/admin/post-types/admin-field-group.php:141 -#: includes/admin/views/upgrade/notice.php:18 -msgid "Options Page" -msgstr "Página de opciones" - -#: includes/admin/views/upgrade/notice.php:15 includes/fields.php:462 -msgid "Gallery" -msgstr "Galería" - -#: includes/admin/views/upgrade/notice.php:12 includes/fields.php:452 -msgid "Flexible Content" -msgstr "Contenido flexible" - -#: includes/admin/views/upgrade/notice.php:9 includes/fields.php:472 -msgid "Repeater" -msgstr "Repetidor" - -#: includes/admin/views/tools/tools.php:24 -msgid "Back to all tools" -msgstr "Volver a todas las herramientas" - -#: includes/admin/views/acf-field-group/options.php:195 -msgid "" -"If multiple field groups appear on an edit screen, the first field group's " -"options will be used (the one with the lowest order number)" -msgstr "" -"Si aparecen múltiples grupos de campos en una pantalla de edición, se " -"utilizarán las opciones del primer grupo (el que tenga el número de orden " -"menor)" - -#: includes/admin/views/acf-field-group/options.php:195 -msgid "Select items to hide them from the edit screen." -msgstr "" -"Selecciona los elementos que ocultar de la pantalla de edición." - -#: includes/admin/views/acf-field-group/options.php:194 -msgid "Hide on screen" -msgstr "Ocultar en pantalla" - -#: includes/admin/views/acf-field-group/options.php:186 -msgid "Send Trackbacks" -msgstr "Enviar trackbacks" - -#: includes/admin/post-types/admin-taxonomy.php:128 -#: includes/admin/views/acf-field-group/options.php:185 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:159 -#: assets/build/js/acf-internal-post-type.js:180 -#: assets/build/js/acf-internal-post-type.js:254 -msgid "Tags" -msgstr "Etiquetas" - -#: includes/admin/post-types/admin-taxonomy.php:130 -#: includes/admin/views/acf-field-group/options.php:184 -#: assets/build/js/acf-internal-post-type.js:183 -#: assets/build/js/acf-internal-post-type.js:257 -msgid "Categories" -msgstr "Categorías" - -#: includes/admin/views/acf-field-group/options.php:182 -#: includes/admin/views/acf-post-type/advanced-settings.php:28 -msgid "Page Attributes" -msgstr "Atributos de página" - -#: includes/admin/views/acf-field-group/options.php:181 -msgid "Format" -msgstr "Formato" - -#: includes/admin/views/acf-field-group/options.php:180 -#: includes/admin/views/acf-post-type/advanced-settings.php:22 -msgid "Author" -msgstr "Autor" - -#: includes/admin/views/acf-field-group/options.php:179 -msgid "Slug" -msgstr "Slug" - -#: includes/admin/views/acf-field-group/options.php:178 -#: includes/admin/views/acf-post-type/advanced-settings.php:27 -msgid "Revisions" -msgstr "Revisiones" - -#: includes/acf-wp-functions.php:66 -#: includes/admin/views/acf-field-group/options.php:177 -#: includes/admin/views/acf-post-type/advanced-settings.php:23 -msgid "Comments" -msgstr "Comentarios" - -#: includes/admin/views/acf-field-group/options.php:176 -msgid "Discussion" -msgstr "Discusión" - -#: includes/admin/views/acf-field-group/options.php:174 -#: includes/admin/views/acf-post-type/advanced-settings.php:26 -msgid "Excerpt" -msgstr "Extracto" - -#: includes/admin/views/acf-field-group/options.php:173 -msgid "Content Editor" -msgstr "Editor de contenido" - -#: includes/admin/views/acf-field-group/options.php:172 -msgid "Permalink" -msgstr "Enlace permanente" - -#: includes/admin/views/acf-field-group/options.php:250 -msgid "Shown in field group list" -msgstr "Mostrado en lista de grupos de campos" - -#: includes/admin/views/acf-field-group/options.php:157 -msgid "Field groups with a lower order will appear first" -msgstr "Los grupos de campos con menor orden aparecerán primero" - -#: includes/admin/views/acf-field-group/options.php:156 -msgid "Order No." -msgstr "Número de orden" - -#: includes/admin/views/acf-field-group/options.php:147 -msgid "Below fields" -msgstr "Debajo de los campos" - -#: includes/admin/views/acf-field-group/options.php:146 -msgid "Below labels" -msgstr "Debajo de las etiquetas" - -#: includes/admin/views/acf-field-group/options.php:139 -msgid "Instruction Placement" -msgstr "" - -#: includes/admin/views/acf-field-group/options.php:122 -msgid "Label Placement" -msgstr "" - -#: includes/admin/views/acf-field-group/options.php:110 -msgid "Side" -msgstr "Lateral" - -#: includes/admin/views/acf-field-group/options.php:109 -msgid "Normal (after content)" -msgstr "Normal (después del contenido)" - -#: includes/admin/views/acf-field-group/options.php:108 -msgid "High (after title)" -msgstr "Alta (después del título)" - -#: includes/admin/views/acf-field-group/options.php:101 -msgid "Position" -msgstr "Posición" - -#: includes/admin/views/acf-field-group/options.php:92 -msgid "Seamless (no metabox)" -msgstr "Directo (sin caja meta)" - -#: includes/admin/views/acf-field-group/options.php:91 -msgid "Standard (WP metabox)" -msgstr "Estándar (caja meta de WP)" - -#: includes/admin/views/acf-field-group/options.php:84 -msgid "Style" -msgstr "Estilo" - -#: includes/admin/views/acf-field-group/fields.php:55 -msgid "Type" -msgstr "Tipo" - -#: includes/admin/post-types/admin-field-groups.php:117 -#: includes/admin/post-types/admin-post-types.php:136 -#: includes/admin/post-types/admin-taxonomies.php:136 -#: includes/admin/views/acf-field-group/fields.php:54 -msgid "Key" -msgstr "Clave" - -#. translators: Hidden accessibility text for the positional order number of -#. the field. -#: includes/admin/views/acf-field-group/fields.php:48 -msgid "Order" -msgstr "Orden" - -#: includes/admin/views/acf-field-group/field.php:322 -msgid "Close Field" -msgstr "Cerrar campo" - -#: includes/admin/views/acf-field-group/field.php:253 -msgid "id" -msgstr "ID" - -#: includes/admin/views/acf-field-group/field.php:237 -msgid "class" -msgstr "class" - -#: includes/admin/views/acf-field-group/field.php:279 -msgid "width" -msgstr "ancho" - -#: includes/admin/views/acf-field-group/field.php:273 -msgid "Wrapper Attributes" -msgstr "Atributos del contenedor" - -#: includes/admin/views/acf-field-group/field.php:196 -msgid "Required" -msgstr "" - -#: includes/admin/views/acf-field-group/field.php:221 -msgid "Instructions for authors. Shown when submitting data" -msgstr "" -"Instrucciones para los autores. Se muestra a la hora de enviar los datos" - -#: includes/admin/views/acf-field-group/field.php:220 -msgid "Instructions" -msgstr "Instrucciones" - -#: includes/admin/views/acf-field-group/field.php:129 -msgid "Field Type" -msgstr "Tipo de campo" - -#: includes/admin/views/acf-field-group/field.php:170 -msgid "Single word, no spaces. Underscores and dashes allowed" -msgstr "Una sola palabra, sin espacios. Se permiten guiones y guiones bajos" - -#: includes/admin/views/acf-field-group/field.php:169 -msgid "Field Name" -msgstr "Nombre del campo" - -#: includes/admin/views/acf-field-group/field.php:157 -msgid "This is the name which will appear on the EDIT page" -msgstr "Este es el nombre que aparecerá en la página EDITAR" - -#: includes/admin/views/acf-field-group/field.php:156 -#: includes/admin/views/browse-fields-modal.php:59 -msgid "Field Label" -msgstr "Etiqueta del campo" - -#: includes/admin/views/acf-field-group/field.php:81 -msgid "Delete" -msgstr "Borrar" - -#: includes/admin/views/acf-field-group/field.php:81 -msgid "Delete field" -msgstr "Borrar campo" - -#: includes/admin/views/acf-field-group/field.php:79 -msgid "Move" -msgstr "Mover" - -#: includes/admin/views/acf-field-group/field.php:79 -msgid "Move field to another group" -msgstr "Mover campo a otro grupo" - -#: includes/admin/views/acf-field-group/field.php:77 -msgid "Duplicate field" -msgstr "Duplicar campo" - -#: includes/admin/views/acf-field-group/field.php:73 -#: includes/admin/views/acf-field-group/field.php:76 -msgid "Edit field" -msgstr "Editar campo" - -#: includes/admin/views/acf-field-group/field.php:69 -msgid "Drag to reorder" -msgstr "Arrastra para reordenar" - -#: includes/admin/post-types/admin-field-group.php:103 -#: includes/admin/views/acf-field-group/location-group.php:3 -#: assets/build/js/acf-field-group.js:2347 -#: assets/build/js/acf-field-group.js:2763 -msgid "Show this field group if" -msgstr "Mostrar este grupo de campos si" - -#: includes/admin/views/upgrade/upgrade.php:94 -#: includes/ajax/class-acf-ajax-upgrade.php:34 -msgid "No updates available." -msgstr "No hay actualizaciones disponibles." - -#: includes/admin/views/upgrade/upgrade.php:33 -msgid "Database upgrade complete. See what's new" -msgstr "" -"Actualización de la base de datos completa. Ver las " -"novedades" - -#: includes/admin/views/upgrade/upgrade.php:30 -msgid "Reading upgrade tasks..." -msgstr "Leyendo tareas de actualización..." - -#: includes/admin/views/upgrade/network.php:165 -#: includes/admin/views/upgrade/upgrade.php:65 -msgid "Upgrade failed." -msgstr "Fallo al actualizar." - -#: includes/admin/views/upgrade/network.php:162 -msgid "Upgrade complete." -msgstr "Actualización completa" - -#: includes/admin/views/upgrade/network.php:148 -#: includes/admin/views/upgrade/upgrade.php:31 -msgid "Upgrading data to version %s" -msgstr "Actualizando datos a la versión %s" - -#: includes/admin/views/upgrade/network.php:121 -#: includes/admin/views/upgrade/notice.php:44 -msgid "" -"It is strongly recommended that you backup your database before proceeding. " -"Are you sure you wish to run the updater now?" -msgstr "" -"Es muy recomendable que hagas una copia de seguridad de tu base de datos " -"antes de continuar. ¿Estás seguro que quieres ejecutar ya la actualización?" - -#: includes/admin/views/upgrade/network.php:117 -msgid "Please select at least one site to upgrade." -msgstr "Por favor, selecciona al menos un sitio para actualizarlo." - -#: includes/admin/views/upgrade/network.php:97 -msgid "" -"Database Upgrade complete. Return to network dashboard" -msgstr "" -"Actualización de base de datos completa. Volver al escritorio " -"de red" - -#: includes/admin/views/upgrade/network.php:80 -msgid "Site is up to date" -msgstr "El sitio está actualizado" - -#: includes/admin/views/upgrade/network.php:78 -msgid "Site requires database upgrade from %1$s to %2$s" -msgstr "El sitio necesita actualizar la base de datos de %1$s a %2$s" - -#: includes/admin/views/upgrade/network.php:36 -#: includes/admin/views/upgrade/network.php:47 -msgid "Site" -msgstr "Sitio" - -#: includes/admin/views/upgrade/network.php:26 -#: includes/admin/views/upgrade/network.php:27 -#: includes/admin/views/upgrade/network.php:96 -msgid "Upgrade Sites" -msgstr "Actualizar los sitios" - -#: includes/admin/views/upgrade/network.php:26 -msgid "" -"The following sites require a DB upgrade. Check the ones you want to update " -"and then click %s." -msgstr "" -"Es necesario actualizar la base de datos de los siguientes sitios. Marca los " -"que quieras actualizar y haz clic en %s." - -#: includes/admin/views/acf-field-group/conditional-logic.php:171 -#: includes/admin/views/acf-field-group/locations.php:38 -msgid "Add rule group" -msgstr "Añadir grupo de reglas" - -#: includes/admin/views/acf-field-group/locations.php:10 -msgid "" -"Create a set of rules to determine which edit screens will use these " -"advanced custom fields" -msgstr "" -"Crea un conjunto de reglas para determinar qué pantallas de edición " -"utilizarán estos campos personalizados" - -#: includes/admin/views/acf-field-group/locations.php:9 -msgid "Rules" -msgstr "Reglas" - -#: includes/admin/tools/class-acf-admin-tool-export.php:510 -msgid "Copied" -msgstr "Copiado" - -#: includes/admin/tools/class-acf-admin-tool-export.php:486 -msgid "Copy to clipboard" -msgstr "Copiar al portapapeles" - -#: includes/admin/tools/class-acf-admin-tool-export.php:385 -msgid "" -"Select the items you would like to export and then select your export " -"method. Export As JSON to export to a .json file which you can then import " -"to another ACF installation. Generate PHP to export to PHP code which you " -"can place in your theme." -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:233 -msgid "Select Field Groups" -msgstr "Selecciona grupos de campos" - -#: includes/admin/tools/class-acf-admin-tool-export.php:96 -#: includes/admin/tools/class-acf-admin-tool-export.php:131 -msgid "No field groups selected" -msgstr "Ningún grupo de campos seleccionado" - -#: includes/admin/tools/class-acf-admin-tool-export.php:39 -#: includes/admin/tools/class-acf-admin-tool-export.php:393 -#: includes/admin/tools/class-acf-admin-tool-export.php:421 -msgid "Generate PHP" -msgstr "Generar PHP" - -#: includes/admin/tools/class-acf-admin-tool-export.php:35 -msgid "Export Field Groups" -msgstr "Exportar grupos de campos" - -#: includes/admin/tools/class-acf-admin-tool-import.php:177 -msgid "Import file empty" -msgstr "Archivo de imporación vacío" - -#: includes/admin/tools/class-acf-admin-tool-import.php:168 -msgid "Incorrect file type" -msgstr "Tipo de campo incorrecto" - -#: includes/admin/tools/class-acf-admin-tool-import.php:163 -msgid "Error uploading file. Please try again" -msgstr "Error al subir el archivo. Por favor, inténtalo de nuevo" - -#: includes/admin/tools/class-acf-admin-tool-import.php:50 -msgid "" -"Select the Advanced Custom Fields JSON file you would like to import. When " -"you click the import button below, ACF will import the items in that file." -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:27 -msgid "Import Field Groups" -msgstr "Importar grupo de campos" - -#: includes/admin/admin-internal-post-type-list.php:401 -msgid "Sync" -msgstr "Sincronizar" - -#: includes/admin/admin-internal-post-type-list.php:858 -msgid "Select %s" -msgstr "Selecciona %s" - -#: includes/admin/admin-internal-post-type-list.php:442 -#: includes/admin/admin-internal-post-type-list.php:474 -#: includes/admin/views/acf-field-group/field.php:77 -msgid "Duplicate" -msgstr "Duplicar" - -#: includes/admin/admin-internal-post-type-list.php:442 -msgid "Duplicate this item" -msgstr "Duplicar este elemento" - -#: includes/admin/views/acf-post-type/advanced-settings.php:41 -msgid "Supports" -msgstr "" - -#: includes/admin/admin.php:261 includes/admin/views/browse-fields-modal.php:92 -msgid "Documentation" -msgstr "Documentación" - -#: includes/admin/post-types/admin-field-groups.php:116 -#: includes/admin/post-types/admin-post-types.php:135 -#: includes/admin/post-types/admin-taxonomies.php:135 -#: includes/admin/views/acf-field-group/options.php:249 -#: includes/admin/views/acf-post-type/advanced-settings.php:62 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:114 -#: includes/admin/views/upgrade/network.php:38 -#: includes/admin/views/upgrade/network.php:49 -msgid "Description" -msgstr "Descripción" - -#: includes/admin/admin-internal-post-type-list.php:398 -#: includes/admin/admin-internal-post-type-list.php:747 -msgid "Sync available" -msgstr "Sincronización disponible" - -#. translators: %s number of field groups synchronized -#: includes/admin/post-types/admin-field-groups.php:381 -msgid "Field group synchronized." -msgid_plural "%s field groups synchronized." -msgstr[0] "" -msgstr[1] "" - -#. translators: %s number of field groups duplicated -#: includes/admin/post-types/admin-field-groups.php:374 -msgid "Field group duplicated." -msgid_plural "%s field groups duplicated." -msgstr[0] "Grupo de campos duplicado." -msgstr[1] "%s grupos de campos duplicados." - -#: includes/admin/admin-internal-post-type-list.php:137 -msgid "Active (%s)" -msgid_plural "Active (%s)" -msgstr[0] "Activo (%s)" -msgstr[1] "Activos (%s)" - -#: includes/admin/admin-upgrade.php:254 -msgid "Review sites & upgrade" -msgstr "Revisar sitios y actualizar" - -#: includes/admin/admin-upgrade.php:59 includes/admin/admin-upgrade.php:93 -#: includes/admin/admin-upgrade.php:94 includes/admin/admin-upgrade.php:230 -#: includes/admin/views/upgrade/network.php:24 -#: includes/admin/views/upgrade/upgrade.php:26 -msgid "Upgrade Database" -msgstr "Actualizar base de datos" - -#: includes/admin/views/acf-field-group/options.php:175 -#: includes/admin/views/acf-post-type/advanced-settings.php:30 -msgid "Custom Fields" -msgstr "Campos personalizados" - -#: includes/admin/post-types/admin-field-group.php:616 -msgid "Move Field" -msgstr "Mover campo" - -#: includes/admin/post-types/admin-field-group.php:605 -#: includes/admin/post-types/admin-field-group.php:609 -msgid "Please select the destination for this field" -msgstr "Por favor, selecciona el destino para este campo" - -#. translators: Confirmation message once a field has been moved to a different -#. field group. -#: includes/admin/post-types/admin-field-group.php:567 -msgid "The %1$s field can now be found in the %2$s field group" -msgstr "El campo %1$s ahora se puede encontrar en el grupo de campos %2$s" - -#: includes/admin/post-types/admin-field-group.php:564 -msgid "Move Complete." -msgstr "Movimiento completo." - -#: includes/admin/views/acf-field-group/field.php:39 -#: includes/admin/views/acf-field-group/options.php:217 -#: includes/admin/views/acf-post-type/advanced-settings.php:78 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:130 -msgid "Active" -msgstr "Activo" - -#: includes/admin/post-types/admin-field-group.php:266 -msgid "Field Keys" -msgstr "Claves de campo" - -#: includes/admin/post-types/admin-field-group.php:164 -#: includes/admin/tools/class-acf-admin-tool-export.php:342 -msgid "Settings" -msgstr "Ajustes" - -#: includes/admin/post-types/admin-field-groups.php:118 -msgid "Location" -msgstr "Ubicación" - -#: includes/admin/post-types/admin-field-group.php:104 -#: assets/build/js/acf-input.js:983 assets/build/js/acf-input.js:1075 -msgid "Null" -msgstr "Null" - -#: includes/admin/post-types/admin-field-group.php:101 -#: includes/class-acf-internal-post-type.php:730 -#: includes/post-types/class-acf-field-group.php:345 -#: assets/build/js/acf-field-group.js:1510 -#: assets/build/js/acf-field-group.js:1821 -msgid "copy" -msgstr "copiar" - -#: includes/admin/post-types/admin-field-group.php:100 -#: assets/build/js/acf-field-group.js:623 -#: assets/build/js/acf-field-group.js:778 -msgid "(this field)" -msgstr "(este campo)" - -#: includes/admin/post-types/admin-field-group.php:98 -#: assets/build/js/acf-input.js:918 assets/build/js/acf-input.js:943 -#: assets/build/js/acf-input.js:1002 assets/build/js/acf-input.js:1030 -msgid "Checked" -msgstr "Seleccionado" - -#: includes/admin/post-types/admin-field-group.php:94 -#: assets/build/js/acf-field-group.js:1615 -#: assets/build/js/acf-field-group.js:1933 -msgid "Move Custom Field" -msgstr "Mover campo personalizado" - -#: includes/admin/post-types/admin-field-group.php:93 -#: assets/build/js/acf-field-group.js:649 -#: assets/build/js/acf-field-group.js:804 -msgid "No toggle fields available" -msgstr "No hay campos de conmutación disponibles" - -#: includes/admin/post-types/admin-field-group.php:91 -msgid "Field group title is required" -msgstr "El título del grupo de campos es obligatorio" - -#: includes/admin/post-types/admin-field-group.php:90 -#: assets/build/js/acf-field-group.js:1604 -#: assets/build/js/acf-field-group.js:1919 -msgid "This field cannot be moved until its changes have been saved" -msgstr "Este campo se puede mover hasta que sus cambios se hayan guardado" - -#: includes/admin/post-types/admin-field-group.php:89 -#: assets/build/js/acf-field-group.js:1414 -#: assets/build/js/acf-field-group.js:1716 -msgid "The string \"field_\" may not be used at the start of a field name" -msgstr "" -"La cadena \"field_\" no se debe utilizar al comienzo de un nombre de campo" - -#: includes/admin/post-types/admin-field-group.php:71 -msgid "Field group draft updated." -msgstr "Borrador del grupo de campos actualizado." - -#: includes/admin/post-types/admin-field-group.php:70 -msgid "Field group scheduled for." -msgstr "Grupo de campos programado." - -#: includes/admin/post-types/admin-field-group.php:69 -msgid "Field group submitted." -msgstr "Grupo de campos enviado." - -#: includes/admin/post-types/admin-field-group.php:68 -msgid "Field group saved." -msgstr "Grupo de campos guardado." - -#: includes/admin/post-types/admin-field-group.php:67 -msgid "Field group published." -msgstr "Grupo de campos publicado." - -#: includes/admin/post-types/admin-field-group.php:64 -msgid "Field group deleted." -msgstr "Grupo de campos eliminado." - -#: includes/admin/post-types/admin-field-group.php:62 -#: includes/admin/post-types/admin-field-group.php:63 -#: includes/admin/post-types/admin-field-group.php:65 -msgid "Field group updated." -msgstr "Grupo de campos actualizado." - -#: includes/admin/admin-tools.php:118 -#: includes/admin/views/global/navigation.php:246 -#: includes/admin/views/tools/tools.php:21 -msgid "Tools" -msgstr "Herramientas" - -#: includes/locations/abstract-acf-location.php:106 -msgid "is not equal to" -msgstr "no es igual a" - -#: includes/locations/abstract-acf-location.php:105 -msgid "is equal to" -msgstr "es igual a" - -#: includes/locations.php:102 -msgid "Forms" -msgstr "Formularios" - -#: includes/admin/post-types/admin-post-type.php:127 includes/locations.php:100 -#: includes/locations/class-acf-location-page.php:22 -#: assets/build/js/acf-internal-post-type.js:175 -#: assets/build/js/acf-internal-post-type.js:249 -msgid "Page" -msgstr "Página" - -#: includes/admin/post-types/admin-post-type.php:125 includes/locations.php:99 -#: includes/locations/class-acf-location-post.php:22 -#: assets/build/js/acf-internal-post-type.js:172 -#: assets/build/js/acf-internal-post-type.js:246 -msgid "Post" -msgstr "Entrada" - -#: includes/fields.php:354 -msgid "Relational" -msgstr "Relación" - -#: includes/fields.php:353 -msgid "Choice" -msgstr "Elección" - -#: includes/fields.php:351 -msgid "Basic" -msgstr "Básico" - -#: includes/fields.php:320 -msgid "Unknown" -msgstr "Desconocido" - -#: includes/fields.php:320 -msgid "Field type does not exist" -msgstr "El tipo de campo no existe" - -#: includes/forms/form-front.php:236 -msgid "Spam Detected" -msgstr "Spam detectado" - -#: includes/forms/form-front.php:107 -msgid "Post updated" -msgstr "Publicación actualizada" - -#: includes/forms/form-front.php:106 -msgid "Update" -msgstr "Actualizar" - -#: includes/forms/form-front.php:57 -msgid "Validate Email" -msgstr "Validar correo electrónico" - -#: includes/fields.php:352 includes/forms/form-front.php:49 -msgid "Content" -msgstr "Contenido" - -#: includes/admin/views/acf-post-type/advanced-settings.php:21 -#: includes/forms/form-front.php:40 -msgid "Title" -msgstr "Título" - -#: includes/assets.php:372 includes/forms/form-comment.php:160 -#: assets/build/js/acf-input.js:7382 assets/build/js/acf-input.js:7968 -msgid "Edit field group" -msgstr "Editar grupo de campos" - -#: includes/admin/post-types/admin-field-group.php:117 -#: assets/build/js/acf-input.js:1125 assets/build/js/acf-input.js:1230 -msgid "Selection is less than" -msgstr "La selección es menor que" - -#: includes/admin/post-types/admin-field-group.php:116 -#: assets/build/js/acf-input.js:1106 assets/build/js/acf-input.js:1202 -msgid "Selection is greater than" -msgstr "La selección es mayor que" - -#: includes/admin/post-types/admin-field-group.php:115 -#: assets/build/js/acf-input.js:1075 assets/build/js/acf-input.js:1170 -msgid "Value is less than" -msgstr "El valor es menor que" - -#: includes/admin/post-types/admin-field-group.php:114 -#: assets/build/js/acf-input.js:1045 assets/build/js/acf-input.js:1139 -msgid "Value is greater than" -msgstr "El valor es mayor que" - -#: includes/admin/post-types/admin-field-group.php:113 -#: assets/build/js/acf-input.js:888 assets/build/js/acf-input.js:960 -msgid "Value contains" -msgstr "El valor contiene" - -#: includes/admin/post-types/admin-field-group.php:112 -#: assets/build/js/acf-input.js:862 assets/build/js/acf-input.js:926 -msgid "Value matches pattern" -msgstr "El valor coincide con el patrón" - -#: includes/admin/post-types/admin-field-group.php:111 -#: assets/build/js/acf-input.js:840 assets/build/js/acf-input.js:1023 -#: assets/build/js/acf-input.js:903 assets/build/js/acf-input.js:1116 -msgid "Value is not equal to" -msgstr "El valor no es igual a" - -#: includes/admin/post-types/admin-field-group.php:110 -#: assets/build/js/acf-input.js:810 assets/build/js/acf-input.js:964 -#: assets/build/js/acf-input.js:864 assets/build/js/acf-input.js:1053 -msgid "Value is equal to" -msgstr "El valor es igual a" - -#: includes/admin/post-types/admin-field-group.php:109 -#: assets/build/js/acf-input.js:788 assets/build/js/acf-input.js:841 -msgid "Has no value" -msgstr "No tiene ningún valor" - -#: includes/admin/post-types/admin-field-group.php:108 -#: assets/build/js/acf-input.js:758 assets/build/js/acf-input.js:783 -msgid "Has any value" -msgstr "No tiene algún valor" - -#: includes/admin/admin-internal-post-type.php:345 -#: includes/admin/views/browse-fields-modal.php:62 includes/assets.php:353 -#: assets/build/js/acf.js:1564 assets/build/js/acf.js:1658 -msgid "Cancel" -msgstr "Cancelar" - -#: includes/assets.php:349 assets/build/js/acf.js:1738 -#: assets/build/js/acf.js:1855 -msgid "Are you sure?" -msgstr "¿Estás seguro?" - -#: includes/assets.php:369 assets/build/js/acf-input.js:9442 -#: assets/build/js/acf-input.js:10294 -msgid "%d fields require attention" -msgstr "%d campos requieren atención" - -#: includes/assets.php:368 assets/build/js/acf-input.js:9440 -#: assets/build/js/acf-input.js:10290 -msgid "1 field requires attention" -msgstr "1 campo requiere atención" - -#: includes/assets.php:367 includes/validation.php:288 -#: includes/validation.php:298 assets/build/js/acf-input.js:9435 -#: assets/build/js/acf-input.js:10285 -msgid "Validation failed" -msgstr "Validación fallida" - -#: includes/assets.php:366 assets/build/js/acf-input.js:9603 -#: assets/build/js/acf-input.js:10473 -msgid "Validation successful" -msgstr "Validación correcta" - -#: includes/media.php:54 assets/build/js/acf-input.js:7210 -#: assets/build/js/acf-input.js:7772 -msgid "Restricted" -msgstr "Restringido" - -#: includes/media.php:53 assets/build/js/acf-input.js:7025 -#: assets/build/js/acf-input.js:7536 -msgid "Collapse Details" -msgstr "Contraer detalles" - -#: includes/media.php:52 assets/build/js/acf-input.js:7025 -#: assets/build/js/acf-input.js:7533 -msgid "Expand Details" -msgstr "Ampliar detalles" - -#: includes/admin/views/acf-post-type/advanced-settings.php:465 -#: includes/media.php:51 assets/build/js/acf-input.js:6892 -#: assets/build/js/acf-input.js:7381 -msgid "Uploaded to this post" -msgstr "Subido a esta publicación" - -#: includes/media.php:50 assets/build/js/acf-input.js:6931 -#: assets/build/js/acf-input.js:7420 -msgctxt "verb" -msgid "Update" -msgstr "Actualizar" - -#: includes/media.php:49 -msgctxt "verb" -msgid "Edit" -msgstr "Editar" - -#: includes/assets.php:363 assets/build/js/acf-input.js:9212 -#: assets/build/js/acf-input.js:10056 -msgid "The changes you made will be lost if you navigate away from this page" -msgstr "Los cambios que has realizado se perderán si navegas hacia otra página" - -#: includes/api/api-helpers.php:3395 -msgid "File type must be %s." -msgstr "El tipo de archivo debe ser %s." - -#: includes/admin/post-types/admin-field-group.php:102 -#: includes/admin/views/acf-field-group/conditional-logic.php:59 -#: includes/admin/views/acf-field-group/conditional-logic.php:169 -#: includes/admin/views/acf-field-group/location-group.php:3 -#: includes/admin/views/acf-field-group/locations.php:36 -#: includes/api/api-helpers.php:3391 assets/build/js/acf-field-group.js:771 -#: assets/build/js/acf-field-group.js:2385 -#: assets/build/js/acf-field-group.js:933 -#: assets/build/js/acf-field-group.js:2807 -msgid "or" -msgstr "o" - -#: includes/api/api-helpers.php:3364 -msgid "File size must not exceed %s." -msgstr "El tamaño del archivo no debe ser mayor de %s." - -#: includes/api/api-helpers.php:3359 -msgid "File size must be at least %s." -msgstr "El tamaño de archivo debe ser al menos %s." - -#: includes/api/api-helpers.php:3344 -msgid "Image height must not exceed %dpx." -msgstr "La altura de la imagen no debe exceder %dpx." - -#: includes/api/api-helpers.php:3339 -msgid "Image height must be at least %dpx." -msgstr "La altura de la imagen debe ser al menos %dpx." - -#: includes/api/api-helpers.php:3325 -msgid "Image width must not exceed %dpx." -msgstr "El ancho de la imagen no debe exceder %dpx." - -#: includes/api/api-helpers.php:3320 -msgid "Image width must be at least %dpx." -msgstr "El ancho de la imagen debe ser al menos %dpx." - -#: includes/api/api-helpers.php:1561 includes/api/api-term.php:147 -msgid "(no title)" -msgstr "(sin título)" - -#: includes/api/api-helpers.php:853 -msgid "Full Size" -msgstr "Tamaño completo" - -#: includes/api/api-helpers.php:812 -msgid "Large" -msgstr "Grande" - -#: includes/api/api-helpers.php:811 -msgid "Medium" -msgstr "Mediano" - -#: includes/api/api-helpers.php:810 -msgid "Thumbnail" -msgstr "Miniatura" - -#: includes/acf-field-functions.php:854 -#: includes/admin/post-types/admin-field-group.php:99 -#: assets/build/js/acf-field-group.js:1077 -#: assets/build/js/acf-field-group.js:1260 -msgid "(no label)" -msgstr "(sin etiqueta)" - -#: includes/fields/class-acf-field-textarea.php:145 -msgid "Sets the textarea height" -msgstr "Establece la altura del área de texto" - -#: includes/fields/class-acf-field-textarea.php:144 -msgid "Rows" -msgstr "Filas" - -#: includes/fields/class-acf-field-textarea.php:25 -msgid "Text Area" -msgstr "Área de texto" - -#: includes/fields/class-acf-field-checkbox.php:451 -msgid "Prepend an extra checkbox to toggle all choices" -msgstr "" -"Anteponer una casilla de verificación extra para cambiar todas las opciones" - -#: includes/fields/class-acf-field-checkbox.php:413 -msgid "Save 'custom' values to the field's choices" -msgstr "Guardar los valores \"personalizados\" a las opciones del campo" - -#: includes/fields/class-acf-field-checkbox.php:402 -msgid "Allow 'custom' values to be added" -msgstr "Permite añadir valores personalizados" - -#: includes/fields/class-acf-field-checkbox.php:38 -msgid "Add new choice" -msgstr "Añadir nueva opción" - -#: includes/fields/class-acf-field-checkbox.php:174 -msgid "Toggle All" -msgstr "Invertir todos" - -#: includes/fields/class-acf-field-page_link.php:506 -msgid "Allow Archives URLs" -msgstr "Permitir las URLs de los archivos" - -#: includes/fields/class-acf-field-page_link.php:179 -msgid "Archives" -msgstr "Archivo" - -#: includes/fields/class-acf-field-page_link.php:25 -msgid "Page Link" -msgstr "Enlace a página" - -#: includes/fields/class-acf-field-taxonomy.php:943 -#: includes/locations/class-acf-location-user-form.php:72 -msgid "Add" -msgstr "Añadir" - -#: includes/admin/views/acf-field-group/fields.php:53 -#: includes/fields/class-acf-field-taxonomy.php:908 -msgid "Name" -msgstr "Nombre" - -#: includes/fields/class-acf-field-taxonomy.php:892 -msgid "%s added" -msgstr "%s añadido/s" - -#: includes/fields/class-acf-field-taxonomy.php:856 -msgid "%s already exists" -msgstr "%s ya existe" - -#: includes/fields/class-acf-field-taxonomy.php:844 -msgid "User unable to add new %s" -msgstr "El usuario no puede añadir nuevos %s" - -#: includes/fields/class-acf-field-taxonomy.php:742 -msgid "Term ID" -msgstr "ID de término" - -#: includes/fields/class-acf-field-taxonomy.php:741 -msgid "Term Object" -msgstr "Objeto de término" - -#: includes/fields/class-acf-field-taxonomy.php:726 -msgid "Load value from posts terms" -msgstr "Cargar el valor de los términos de la publicación" - -#: includes/fields/class-acf-field-taxonomy.php:725 -msgid "Load Terms" -msgstr "Cargar términos" - -#: includes/fields/class-acf-field-taxonomy.php:715 -msgid "Connect selected terms to the post" -msgstr "Conectar los términos seleccionados con la publicación" - -#: includes/fields/class-acf-field-taxonomy.php:714 -msgid "Save Terms" -msgstr "Guardar términos" - -#: includes/fields/class-acf-field-taxonomy.php:704 -msgid "Allow new terms to be created whilst editing" -msgstr "Permitir la creación de nuevos términos mientras se edita" - -#: includes/fields/class-acf-field-taxonomy.php:703 -msgid "Create Terms" -msgstr "Crear términos" - -#: includes/fields/class-acf-field-taxonomy.php:762 -msgid "Radio Buttons" -msgstr "Botones de radio" - -#: includes/fields/class-acf-field-taxonomy.php:761 -msgid "Single Value" -msgstr "Valor único" - -#: includes/fields/class-acf-field-taxonomy.php:759 -msgid "Multi Select" -msgstr "Selección múltiple" - -#: includes/fields/class-acf-field-checkbox.php:25 -#: includes/fields/class-acf-field-taxonomy.php:758 -msgid "Checkbox" -msgstr "Casilla de verificación" - -#: includes/fields/class-acf-field-taxonomy.php:757 -msgid "Multiple Values" -msgstr "Valores múltiples" - -#: includes/fields/class-acf-field-taxonomy.php:752 -msgid "Select the appearance of this field" -msgstr "Selecciona la apariencia de este campo" - -#: includes/fields/class-acf-field-taxonomy.php:751 -msgid "Appearance" -msgstr "Apariencia" - -#: includes/fields/class-acf-field-taxonomy.php:693 -msgid "Select the taxonomy to be displayed" -msgstr "Selecciona la taxonomía a mostrar" - -#: includes/fields/class-acf-field-taxonomy.php:654 -msgctxt "No Terms" -msgid "No %s" -msgstr "" - -#: includes/fields/class-acf-field-number.php:266 -msgid "Value must be equal to or lower than %d" -msgstr "El valor debe ser menor o igual a %d" - -#: includes/fields/class-acf-field-number.php:259 -msgid "Value must be equal to or higher than %d" -msgstr "El valor debe ser mayor o igual a %d" - -#: includes/fields/class-acf-field-number.php:244 -msgid "Value must be a number" -msgstr "El valor debe ser un número" - -#: includes/fields/class-acf-field-number.php:25 -msgid "Number" -msgstr "Número" - -#: includes/fields/class-acf-field-radio.php:264 -msgid "Save 'other' values to the field's choices" -msgstr "Guardar los valores de 'otros' en las opciones del campo" - -#: includes/fields/class-acf-field-radio.php:253 -msgid "Add 'other' choice to allow for custom values" -msgstr "Añade la opción 'otros' para permitir valores personalizados" - -#: includes/admin/views/global/navigation.php:196 -msgid "Other" -msgstr "Otros" - -#: includes/fields/class-acf-field-radio.php:25 -msgid "Radio Button" -msgstr "Botón de radio" - -#: includes/fields/class-acf-field-accordion.php:107 -msgid "" -"Define an endpoint for the previous accordion to stop. This accordion will " -"not be visible." -msgstr "" -"Define un punto final para que el acordeón anterior se detenga. Este " -"acordeón no será visible." - -#: includes/fields/class-acf-field-accordion.php:96 -msgid "Allow this accordion to open without closing others." -msgstr "Permita que este acordeón se abra sin cerrar otros." - -#: includes/fields/class-acf-field-accordion.php:95 -msgid "Multi-Expand" -msgstr "" - -#: includes/fields/class-acf-field-accordion.php:85 -msgid "Display this accordion as open on page load." -msgstr "Muestra este acordeón como abierto en la carga de la página." - -#: includes/fields/class-acf-field-accordion.php:84 -msgid "Open" -msgstr "Abrir" - -#: includes/fields/class-acf-field-accordion.php:25 -msgid "Accordion" -msgstr "Acordeón" - -#: includes/fields/class-acf-field-file.php:267 -#: includes/fields/class-acf-field-file.php:279 -msgid "Restrict which files can be uploaded" -msgstr "Restringen los archivos que se pueden subir" - -#: includes/fields/class-acf-field-file.php:220 -msgid "File ID" -msgstr "ID del archivo" - -#: includes/fields/class-acf-field-file.php:219 -msgid "File URL" -msgstr "URL del archivo" - -#: includes/fields/class-acf-field-file.php:218 -msgid "File Array" -msgstr "Array del archivo" - -#: includes/fields/class-acf-field-file.php:186 -msgid "Add File" -msgstr "Añadir archivo" - -#: includes/admin/tools/class-acf-admin-tool-import.php:156 -#: includes/fields/class-acf-field-file.php:186 -msgid "No file selected" -msgstr "Ningún archivo seleccionado" - -#: includes/fields/class-acf-field-file.php:150 -msgid "File name" -msgstr "Nombre del archivo" - -#: includes/fields/class-acf-field-file.php:63 -#: assets/build/js/acf-input.js:2474 assets/build/js/acf-input.js:2625 -msgid "Update File" -msgstr "Actualizar archivo" - -#: includes/fields/class-acf-field-file.php:62 -#: assets/build/js/acf-input.js:2473 assets/build/js/acf-input.js:2624 -msgid "Edit File" -msgstr "Editar archivo" - -#: includes/admin/tools/class-acf-admin-tool-import.php:58 -#: includes/fields/class-acf-field-file.php:61 -#: assets/build/js/acf-input.js:2447 assets/build/js/acf-input.js:2597 -msgid "Select File" -msgstr "Seleccionar archivo" - -#: includes/fields/class-acf-field-file.php:25 -msgid "File" -msgstr "Archivo" - -#: includes/fields/class-acf-field-password.php:25 -msgid "Password" -msgstr "Contraseña" - -#: includes/fields/class-acf-field-select.php:392 -msgid "Specify the value returned" -msgstr "Especifica el valor devuelto" - -#: includes/fields/class-acf-field-select.php:461 -msgid "Use AJAX to lazy load choices?" -msgstr "¿Usar AJAX para hacer cargar las opciones de forma asíncrona?" - -#: includes/fields/class-acf-field-checkbox.php:362 -#: includes/fields/class-acf-field-select.php:381 -msgid "Enter each default value on a new line" -msgstr "Añade cada valor en una nueva línea" - -#: includes/fields/class-acf-field-select.php:252 includes/media.php:48 -#: assets/build/js/acf-input.js:6790 assets/build/js/acf-input.js:7266 -msgctxt "verb" -msgid "Select" -msgstr "Selecciona" - -#: includes/fields/class-acf-field-select.php:121 -msgctxt "Select2 JS load_fail" -msgid "Loading failed" -msgstr "Error al cargar" - -#: includes/fields/class-acf-field-select.php:120 -msgctxt "Select2 JS searching" -msgid "Searching…" -msgstr "Buscando…" - -#: includes/fields/class-acf-field-select.php:119 -msgctxt "Select2 JS load_more" -msgid "Loading more results…" -msgstr "Cargando más resultados…" - -#: includes/fields/class-acf-field-select.php:118 -msgctxt "Select2 JS selection_too_long_n" -msgid "You can only select %d items" -msgstr "Solo puedes seleccionar %d elementos" - -#: includes/fields/class-acf-field-select.php:117 -msgctxt "Select2 JS selection_too_long_1" -msgid "You can only select 1 item" -msgstr "Solo puedes seleccionar 1 elemento" - -#: includes/fields/class-acf-field-select.php:116 -msgctxt "Select2 JS input_too_long_n" -msgid "Please delete %d characters" -msgstr "Por favor, borra %d caracteres" - -#: includes/fields/class-acf-field-select.php:115 -msgctxt "Select2 JS input_too_long_1" -msgid "Please delete 1 character" -msgstr "Por favor, borra 1 carácter" - -#: includes/fields/class-acf-field-select.php:114 -msgctxt "Select2 JS input_too_short_n" -msgid "Please enter %d or more characters" -msgstr "Por favor, introduce %d o más caracteres" - -#: includes/fields/class-acf-field-select.php:113 -msgctxt "Select2 JS input_too_short_1" -msgid "Please enter 1 or more characters" -msgstr "Por favor, introduce 1 o más caracteres" - -#: includes/fields/class-acf-field-select.php:112 -msgctxt "Select2 JS matches_0" -msgid "No matches found" -msgstr "No se han encontrado coincidencias" - -#: includes/fields/class-acf-field-select.php:111 -msgctxt "Select2 JS matches_n" -msgid "%d results are available, use up and down arrow keys to navigate." -msgstr "" -"%d resultados disponibles, utiliza las flechas arriba y abajo para navegar " -"por los resultados." - -#: includes/fields/class-acf-field-select.php:110 -msgctxt "Select2 JS matches_1" -msgid "One result is available, press enter to select it." -msgstr "Hay un resultado disponible, pulsa enter para seleccionarlo." - -#: includes/fields/class-acf-field-select.php:25 -#: includes/fields/class-acf-field-taxonomy.php:763 -msgctxt "noun" -msgid "Select" -msgstr "Selección" - -#: includes/fields/class-acf-field-user.php:73 -msgid "User ID" -msgstr "ID del usuario" - -#: includes/fields/class-acf-field-user.php:72 -msgid "User Object" -msgstr "Grupo de objetos" - -#: includes/fields/class-acf-field-user.php:71 -msgid "User Array" -msgstr "Grupo de usuarios" - -#: includes/fields/class-acf-field-user.php:59 -msgid "All user roles" -msgstr "Todos los roles de usuario" - -#: includes/fields/class-acf-field-user.php:51 -msgid "Filter by Role" -msgstr "" - -#: includes/fields/class-acf-field-user.php:15 includes/locations.php:101 -msgid "User" -msgstr "Usuario" - -#: includes/fields/class-acf-field-separator.php:25 -msgid "Separator" -msgstr "Separador" - -#: includes/fields/class-acf-field-color_picker.php:75 -msgid "Select Color" -msgstr "Seleccionar color" - -#: includes/admin/post-types/admin-post-type.php:129 -#: includes/admin/post-types/admin-taxonomy.php:131 -#: includes/fields/class-acf-field-color_picker.php:73 -#: assets/build/js/acf-internal-post-type.js:72 -#: assets/build/js/acf-internal-post-type.js:86 -msgid "Default" -msgstr "Por defecto" - -#: includes/admin/views/acf-post-type/advanced-settings.php:89 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:141 -#: includes/fields/class-acf-field-color_picker.php:71 -msgid "Clear" -msgstr "Vaciar" - -#: includes/fields/class-acf-field-color_picker.php:25 -msgid "Color Picker" -msgstr "Selector de color" - -#: includes/fields/class-acf-field-date_time_picker.php:88 -msgctxt "Date Time Picker JS pmTextShort" -msgid "P" -msgstr "P" - -#: includes/fields/class-acf-field-date_time_picker.php:87 -msgctxt "Date Time Picker JS pmText" -msgid "PM" -msgstr "PM" - -#: includes/fields/class-acf-field-date_time_picker.php:84 -msgctxt "Date Time Picker JS amTextShort" -msgid "A" -msgstr "A" - -#: includes/fields/class-acf-field-date_time_picker.php:83 -msgctxt "Date Time Picker JS amText" -msgid "AM" -msgstr "AM" - -#: includes/fields/class-acf-field-date_time_picker.php:81 -msgctxt "Date Time Picker JS selectText" -msgid "Select" -msgstr "Seleccionar" - -#: includes/fields/class-acf-field-date_time_picker.php:80 -msgctxt "Date Time Picker JS closeText" -msgid "Done" -msgstr "Hecho" - -#: includes/fields/class-acf-field-date_time_picker.php:79 -msgctxt "Date Time Picker JS currentText" -msgid "Now" -msgstr "Ahora" - -#: includes/fields/class-acf-field-date_time_picker.php:78 -msgctxt "Date Time Picker JS timezoneText" -msgid "Time Zone" -msgstr "Zona horaria" - -#: includes/fields/class-acf-field-date_time_picker.php:77 -msgctxt "Date Time Picker JS microsecText" -msgid "Microsecond" -msgstr "Microsegundo" - -#: includes/fields/class-acf-field-date_time_picker.php:76 -msgctxt "Date Time Picker JS millisecText" -msgid "Millisecond" -msgstr "Milisegundo" - -#: includes/fields/class-acf-field-date_time_picker.php:75 -msgctxt "Date Time Picker JS secondText" -msgid "Second" -msgstr "Segundo" - -#: includes/fields/class-acf-field-date_time_picker.php:74 -msgctxt "Date Time Picker JS minuteText" -msgid "Minute" -msgstr "Minuto" - -#: includes/fields/class-acf-field-date_time_picker.php:73 -msgctxt "Date Time Picker JS hourText" -msgid "Hour" -msgstr "Hora" - -#: includes/fields/class-acf-field-date_time_picker.php:72 -msgctxt "Date Time Picker JS timeText" -msgid "Time" -msgstr "Hora" - -#: includes/fields/class-acf-field-date_time_picker.php:71 -msgctxt "Date Time Picker JS timeOnlyTitle" -msgid "Choose Time" -msgstr "Elegir hora" - -#: includes/fields/class-acf-field-date_time_picker.php:25 -msgid "Date Time Picker" -msgstr "Selector de fecha y hora" - -#: includes/fields/class-acf-field-accordion.php:106 -msgid "Endpoint" -msgstr "Variable" - -#: includes/admin/views/acf-field-group/options.php:130 -#: includes/fields/class-acf-field-tab.php:115 -msgid "Left aligned" -msgstr "Alineada a la izquierda" - -#: includes/admin/views/acf-field-group/options.php:129 -#: includes/fields/class-acf-field-tab.php:114 -msgid "Top aligned" -msgstr "Alineada arriba" - -#: includes/fields/class-acf-field-tab.php:110 -msgid "Placement" -msgstr "Ubicación" - -#: includes/fields/class-acf-field-tab.php:26 -msgid "Tab" -msgstr "Pestaña" - -#: includes/fields/class-acf-field-url.php:162 -msgid "Value must be a valid URL" -msgstr "El valor debe ser una URL válida" - -#: includes/fields/class-acf-field-link.php:177 -msgid "Link URL" -msgstr "URL del enlace" - -#: includes/fields/class-acf-field-link.php:176 -msgid "Link Array" -msgstr "Array de enlaces" - -#: includes/fields/class-acf-field-link.php:145 -msgid "Opens in a new window/tab" -msgstr "Abrir en una nueva ventana/pestaña" - -#: includes/fields/class-acf-field-link.php:140 -msgid "Select Link" -msgstr "Elige el enlace" - -#: includes/fields/class-acf-field-link.php:25 -msgid "Link" -msgstr "Enlace" - -#: includes/fields/class-acf-field-email.php:25 -msgid "Email" -msgstr "Correo electrónico" - -#: includes/fields/class-acf-field-number.php:188 -#: includes/fields/class-acf-field-range.php:217 -msgid "Step Size" -msgstr "Tamaño de paso" - -#: includes/fields/class-acf-field-number.php:158 -#: includes/fields/class-acf-field-range.php:195 -msgid "Maximum Value" -msgstr "Valor máximo" - -#: includes/fields/class-acf-field-number.php:148 -#: includes/fields/class-acf-field-range.php:184 -msgid "Minimum Value" -msgstr "Valor mínimo" - -#: includes/fields/class-acf-field-range.php:25 -msgid "Range" -msgstr "Rango" - -#: includes/fields/class-acf-field-button-group.php:175 -#: includes/fields/class-acf-field-checkbox.php:379 -#: includes/fields/class-acf-field-radio.php:220 -#: includes/fields/class-acf-field-select.php:399 -msgid "Both (Array)" -msgstr "Ambos (Array)" - -#: includes/admin/views/acf-field-group/fields.php:52 -#: includes/fields/class-acf-field-button-group.php:174 -#: includes/fields/class-acf-field-checkbox.php:378 -#: includes/fields/class-acf-field-radio.php:219 -#: includes/fields/class-acf-field-select.php:398 -msgid "Label" -msgstr "Etiqueta" - -#: includes/fields/class-acf-field-button-group.php:173 -#: includes/fields/class-acf-field-checkbox.php:377 -#: includes/fields/class-acf-field-radio.php:218 -#: includes/fields/class-acf-field-select.php:397 -msgid "Value" -msgstr "Valor" - -#: includes/fields/class-acf-field-button-group.php:222 -#: includes/fields/class-acf-field-checkbox.php:441 -#: includes/fields/class-acf-field-radio.php:292 -msgid "Vertical" -msgstr "Vertical" - -#: includes/fields/class-acf-field-button-group.php:221 -#: includes/fields/class-acf-field-checkbox.php:442 -#: includes/fields/class-acf-field-radio.php:293 -msgid "Horizontal" -msgstr "Horizontal" - -#: includes/fields/class-acf-field-button-group.php:148 -#: includes/fields/class-acf-field-checkbox.php:352 -#: includes/fields/class-acf-field-radio.php:193 -#: includes/fields/class-acf-field-select.php:370 -msgid "red : Red" -msgstr "rojo : Rojo" - -#: includes/fields/class-acf-field-button-group.php:148 -#: includes/fields/class-acf-field-checkbox.php:352 -#: includes/fields/class-acf-field-radio.php:193 -#: includes/fields/class-acf-field-select.php:370 -msgid "For more control, you may specify both a value and label like this:" -msgstr "" -"Para más control, puedes especificar tanto un valor como una etiqueta, así:" - -#: includes/fields/class-acf-field-button-group.php:148 -#: includes/fields/class-acf-field-checkbox.php:352 -#: includes/fields/class-acf-field-radio.php:193 -#: includes/fields/class-acf-field-select.php:370 -msgid "Enter each choice on a new line." -msgstr "Añade cada opción en una nueva línea." - -#: includes/fields/class-acf-field-button-group.php:147 -#: includes/fields/class-acf-field-checkbox.php:351 -#: includes/fields/class-acf-field-radio.php:192 -#: includes/fields/class-acf-field-select.php:369 -msgid "Choices" -msgstr "Opciones" - -#: includes/fields/class-acf-field-button-group.php:24 -msgid "Button Group" -msgstr "Grupo de botones" - -#: includes/fields/class-acf-field-button-group.php:194 -#: includes/fields/class-acf-field-page_link.php:538 -#: includes/fields/class-acf-field-post_object.php:448 -#: includes/fields/class-acf-field-radio.php:238 -#: includes/fields/class-acf-field-select.php:429 -#: includes/fields/class-acf-field-taxonomy.php:772 -#: includes/fields/class-acf-field-user.php:103 -msgid "Allow Null" -msgstr "" - -#: includes/fields/class-acf-field-page_link.php:263 -#: includes/fields/class-acf-field-post_object.php:257 -#: includes/fields/class-acf-field-taxonomy.php:930 -msgid "Parent" -msgstr "Superior" - -#: includes/fields/class-acf-field-wysiwyg.php:390 -msgid "TinyMCE will not be initialized until field is clicked" -msgstr "TinyMCE no se iniciará hasta que se haga clic en el campo" - -#: includes/fields/class-acf-field-wysiwyg.php:389 -msgid "Delay Initialization" -msgstr "" - -#: includes/fields/class-acf-field-wysiwyg.php:378 -msgid "Show Media Upload Buttons" -msgstr "" - -#: includes/fields/class-acf-field-wysiwyg.php:362 -msgid "Toolbar" -msgstr "Barra de herramientas" - -#: includes/fields/class-acf-field-wysiwyg.php:354 -msgid "Text Only" -msgstr "Sólo texto" - -#: includes/fields/class-acf-field-wysiwyg.php:353 -msgid "Visual Only" -msgstr "Sólo visual" - -#: includes/fields/class-acf-field-wysiwyg.php:352 -msgid "Visual & Text" -msgstr "Visual y Texto" - -#: includes/fields/class-acf-field-wysiwyg.php:347 -msgid "Tabs" -msgstr "Pestañas" - -#: includes/fields/class-acf-field-wysiwyg.php:285 -msgid "Click to initialize TinyMCE" -msgstr "Haz clic para iniciar TinyMCE" - -#: includes/fields/class-acf-field-wysiwyg.php:279 -msgctxt "Name for the Text editor tab (formerly HTML)" -msgid "Text" -msgstr "Texto" - -#: includes/fields/class-acf-field-wysiwyg.php:278 -msgid "Visual" -msgstr "Visual" - -#: includes/fields/class-acf-field-text.php:189 -#: includes/fields/class-acf-field-textarea.php:236 -msgid "Value must not exceed %d characters" -msgstr "El valor no debe exceder los %d caracteres" - -#: includes/fields/class-acf-field-text.php:124 -#: includes/fields/class-acf-field-textarea.php:124 -msgid "Leave blank for no limit" -msgstr "Déjalo en blanco para ilimitado" - -#: includes/fields/class-acf-field-text.php:123 -#: includes/fields/class-acf-field-textarea.php:123 -msgid "Character Limit" -msgstr "Límite de caracteres" - -#: includes/fields/class-acf-field-email.php:158 -#: includes/fields/class-acf-field-number.php:209 -#: includes/fields/class-acf-field-password.php:105 -#: includes/fields/class-acf-field-range.php:239 -#: includes/fields/class-acf-field-text.php:164 -msgid "Appears after the input" -msgstr "Aparece después del campo" - -#: includes/fields/class-acf-field-email.php:157 -#: includes/fields/class-acf-field-number.php:208 -#: includes/fields/class-acf-field-password.php:104 -#: includes/fields/class-acf-field-range.php:238 -#: includes/fields/class-acf-field-text.php:163 -msgid "Append" -msgstr "Anexar" - -#: includes/fields/class-acf-field-email.php:148 -#: includes/fields/class-acf-field-number.php:199 -#: includes/fields/class-acf-field-password.php:95 -#: includes/fields/class-acf-field-range.php:229 -#: includes/fields/class-acf-field-text.php:154 -msgid "Appears before the input" -msgstr "Aparece antes del campo" - -#: includes/fields/class-acf-field-email.php:147 -#: includes/fields/class-acf-field-number.php:198 -#: includes/fields/class-acf-field-password.php:94 -#: includes/fields/class-acf-field-range.php:228 -#: includes/fields/class-acf-field-text.php:153 -msgid "Prepend" -msgstr "Anteponer" - -#: includes/fields/class-acf-field-email.php:138 -#: includes/fields/class-acf-field-number.php:179 -#: includes/fields/class-acf-field-password.php:85 -#: includes/fields/class-acf-field-text.php:144 -#: includes/fields/class-acf-field-textarea.php:156 -#: includes/fields/class-acf-field-url.php:122 -msgid "Appears within the input" -msgstr "Aparece en el campo" - -#: includes/fields/class-acf-field-email.php:137 -#: includes/fields/class-acf-field-number.php:178 -#: includes/fields/class-acf-field-password.php:84 -#: includes/fields/class-acf-field-text.php:143 -#: includes/fields/class-acf-field-textarea.php:155 -#: includes/fields/class-acf-field-url.php:121 -msgid "Placeholder Text" -msgstr "Marcador de posición" - -#: includes/fields/class-acf-field-button-group.php:158 -#: includes/fields/class-acf-field-email.php:118 -#: includes/fields/class-acf-field-number.php:129 -#: includes/fields/class-acf-field-radio.php:203 -#: includes/fields/class-acf-field-range.php:165 -#: includes/fields/class-acf-field-text.php:104 -#: includes/fields/class-acf-field-textarea.php:104 -#: includes/fields/class-acf-field-url.php:102 -#: includes/fields/class-acf-field-wysiwyg.php:312 -msgid "Appears when creating a new post" -msgstr "Aparece cuando se está creando una nueva entrada" - -#: includes/fields/class-acf-field-text.php:25 -msgid "Text" -msgstr "Texto" - -#: includes/fields/class-acf-field-relationship.php:794 -msgid "%1$s requires at least %2$s selection" -msgid_plural "%1$s requires at least %2$s selections" -msgstr[0] "%1$s necesita al menos %2$s selección" -msgstr[1] "%1$s necesita al menos %2$s selecciones" - -#: includes/fields/class-acf-field-post_object.php:417 -#: includes/fields/class-acf-field-relationship.php:644 -msgid "Post ID" -msgstr "ID de publicación" - -#: includes/fields/class-acf-field-post_object.php:17 -#: includes/fields/class-acf-field-post_object.php:416 -#: includes/fields/class-acf-field-relationship.php:643 -msgid "Post Object" -msgstr "Objeto de publicación" - -#: includes/fields/class-acf-field-relationship.php:676 -msgid "Maximum Posts" -msgstr "" - -#: includes/fields/class-acf-field-relationship.php:666 -msgid "Minimum Posts" -msgstr "" - -#: includes/admin/views/acf-field-group/options.php:183 -#: includes/admin/views/acf-post-type/advanced-settings.php:29 -#: includes/fields/class-acf-field-relationship.php:701 -msgid "Featured Image" -msgstr "Imagen destacada" - -#: includes/fields/class-acf-field-relationship.php:697 -msgid "Selected elements will be displayed in each result" -msgstr "Los elementos seleccionados se mostrarán en cada resultado" - -#: includes/fields/class-acf-field-relationship.php:696 -msgid "Elements" -msgstr "Elementos" - -#: includes/fields/class-acf-field-relationship.php:630 -#: includes/fields/class-acf-field-taxonomy.php:20 -#: includes/fields/class-acf-field-taxonomy.php:692 -#: includes/locations/class-acf-location-taxonomy.php:22 -msgid "Taxonomy" -msgstr "Taxonomía" - -#: includes/fields/class-acf-field-relationship.php:629 -#: includes/locations/class-acf-location-post-type.php:22 -#: includes/post-types/class-acf-post-type.php:92 -msgid "Post Type" -msgstr "Tipo de contenido" - -#: includes/fields/class-acf-field-relationship.php:623 -msgid "Filters" -msgstr "Filtros" - -#: includes/fields/class-acf-field-page_link.php:499 -#: includes/fields/class-acf-field-post_object.php:404 -#: includes/fields/class-acf-field-relationship.php:616 -msgid "All taxonomies" -msgstr "Todas las taxonomías" - -#: includes/fields/class-acf-field-page_link.php:491 -#: includes/fields/class-acf-field-post_object.php:396 -#: includes/fields/class-acf-field-relationship.php:608 -msgid "Filter by Taxonomy" -msgstr "Filtrar por taxonomía" - -#: includes/fields/class-acf-field-page_link.php:469 -#: includes/fields/class-acf-field-post_object.php:374 -#: includes/fields/class-acf-field-relationship.php:586 -msgid "All post types" -msgstr "Todos los tipos de contenido" - -#: includes/fields/class-acf-field-page_link.php:461 -#: includes/fields/class-acf-field-post_object.php:366 -#: includes/fields/class-acf-field-relationship.php:578 -msgid "Filter by Post Type" -msgstr "Filtrar por tipo de contenido" - -#: includes/fields/class-acf-field-relationship.php:476 -msgid "Search..." -msgstr "Buscar..." - -#: includes/fields/class-acf-field-relationship.php:406 -msgid "Select taxonomy" -msgstr "Selecciona taxonomía" - -#: includes/fields/class-acf-field-relationship.php:397 -msgid "Select post type" -msgstr "Seleccionar tipo de contenido" - -#: includes/fields/class-acf-field-relationship.php:61 -#: assets/build/js/acf-input.js:3930 assets/build/js/acf-input.js:4214 -msgid "No matches found" -msgstr "No se han encontrado coincidencias" - -#: includes/fields/class-acf-field-relationship.php:60 -#: assets/build/js/acf-input.js:3913 assets/build/js/acf-input.js:4193 -msgid "Loading" -msgstr "Cargando" - -#: includes/fields/class-acf-field-relationship.php:59 -#: assets/build/js/acf-input.js:3818 assets/build/js/acf-input.js:4084 -msgid "Maximum values reached ( {max} values )" -msgstr "Valores máximos alcanzados ( {max} valores )" - -#: includes/fields/class-acf-field-relationship.php:17 -msgid "Relationship" -msgstr "Relación" - -#: includes/fields/class-acf-field-file.php:291 -#: includes/fields/class-acf-field-image.php:317 -msgid "Comma separated list. Leave blank for all types" -msgstr "Lista separada por comas. Déjalo en blanco para todos los tipos" - -#: includes/fields/class-acf-field-file.php:290 -#: includes/fields/class-acf-field-image.php:316 -msgid "Allowed File Types" -msgstr "" - -#: includes/fields/class-acf-field-file.php:278 -#: includes/fields/class-acf-field-image.php:280 -msgid "Maximum" -msgstr "Máximo" - -#: includes/fields/class-acf-field-file.php:154 -#: includes/fields/class-acf-field-file.php:270 -#: includes/fields/class-acf-field-file.php:282 -#: includes/fields/class-acf-field-image.php:271 -#: includes/fields/class-acf-field-image.php:307 -msgid "File size" -msgstr "Tamaño del archivo" - -#: includes/fields/class-acf-field-image.php:245 -#: includes/fields/class-acf-field-image.php:281 -msgid "Restrict which images can be uploaded" -msgstr "Restringir que las imágenes se pueden subir" - -#: includes/fields/class-acf-field-file.php:266 -#: includes/fields/class-acf-field-image.php:244 -msgid "Minimum" -msgstr "Mínimo" - -#: includes/fields/class-acf-field-file.php:235 -#: includes/fields/class-acf-field-image.php:210 -msgid "Uploaded to post" -msgstr "Subidos al contenido" - -#: includes/fields/class-acf-field-file.php:234 -#: includes/fields/class-acf-field-image.php:209 -#: includes/locations/class-acf-location-attachment.php:73 -#: includes/locations/class-acf-location-comment.php:61 -#: includes/locations/class-acf-location-nav-menu.php:74 -#: includes/locations/class-acf-location-taxonomy.php:63 -#: includes/locations/class-acf-location-user-form.php:71 -#: includes/locations/class-acf-location-user-role.php:78 -#: includes/locations/class-acf-location-widget.php:65 -msgid "All" -msgstr "Todos" - -#: includes/fields/class-acf-field-file.php:229 -#: includes/fields/class-acf-field-image.php:204 -msgid "Limit the media library choice" -msgstr "Limitar las opciones de la biblioteca de medios" - -#: includes/fields/class-acf-field-file.php:228 -#: includes/fields/class-acf-field-image.php:203 -msgid "Library" -msgstr "Biblioteca" - -#: includes/fields/class-acf-field-image.php:336 -msgid "Preview Size" -msgstr "Tamaño de vista previa" - -#: includes/fields/class-acf-field-image.php:195 -msgid "Image ID" -msgstr "ID de imagen" - -#: includes/fields/class-acf-field-image.php:194 -msgid "Image URL" -msgstr "URL de imagen" - -#: includes/fields/class-acf-field-image.php:193 -msgid "Image Array" -msgstr "Array de imágenes" - -#: includes/fields/class-acf-field-button-group.php:168 -#: includes/fields/class-acf-field-checkbox.php:372 -#: includes/fields/class-acf-field-file.php:213 -#: includes/fields/class-acf-field-link.php:171 -#: includes/fields/class-acf-field-radio.php:213 -msgid "Specify the returned value on front end" -msgstr "Especificar el valor devuelto en la web" - -#: includes/fields/class-acf-field-button-group.php:167 -#: includes/fields/class-acf-field-checkbox.php:371 -#: includes/fields/class-acf-field-file.php:212 -#: includes/fields/class-acf-field-link.php:170 -#: includes/fields/class-acf-field-radio.php:212 -#: includes/fields/class-acf-field-taxonomy.php:736 -msgid "Return Value" -msgstr "Valor de retorno" - -#: includes/fields/class-acf-field-image.php:162 -msgid "Add Image" -msgstr "Añadir imagen" - -#: includes/fields/class-acf-field-image.php:162 -msgid "No image selected" -msgstr "No hay ninguna imagen seleccionada" - -#: includes/assets.php:352 includes/fields/class-acf-field-file.php:162 -#: includes/fields/class-acf-field-image.php:142 -#: includes/fields/class-acf-field-link.php:145 assets/build/js/acf.js:1563 -#: assets/build/js/acf.js:1657 -msgid "Remove" -msgstr "Quitar" - -#: includes/admin/views/acf-field-group/field.php:76 -#: includes/fields/class-acf-field-file.php:160 -#: includes/fields/class-acf-field-image.php:140 -#: includes/fields/class-acf-field-link.php:145 -msgid "Edit" -msgstr "Editar" - -#: includes/fields/class-acf-field-image.php:70 includes/media.php:55 -#: assets/build/js/acf-input.js:6837 assets/build/js/acf-input.js:7320 -msgid "All images" -msgstr "Todas las imágenes" - -#: includes/fields/class-acf-field-image.php:69 -#: assets/build/js/acf-input.js:3181 assets/build/js/acf-input.js:3399 -msgid "Update Image" -msgstr "Actualizar imagen" - -#: includes/fields/class-acf-field-image.php:68 -#: assets/build/js/acf-input.js:3180 assets/build/js/acf-input.js:3398 -msgid "Edit Image" -msgstr "Editar imagen" - -#: includes/fields/class-acf-field-image.php:67 -#: assets/build/js/acf-input.js:3156 assets/build/js/acf-input.js:3373 -msgid "Select Image" -msgstr "Seleccionar imagen" - -#: includes/fields/class-acf-field-image.php:25 -msgid "Image" -msgstr "Imagen" - -#: includes/fields/class-acf-field-message.php:125 -msgid "Allow HTML markup to display as visible text instead of rendering" -msgstr "" -"Permitir que el maquetado HTML se muestre como texto visible en vez de " -"interpretarlo" - -#: includes/fields/class-acf-field-message.php:124 -msgid "Escape HTML" -msgstr "Escapar HTML" - -#: includes/fields/class-acf-field-message.php:116 -#: includes/fields/class-acf-field-textarea.php:172 -msgid "No Formatting" -msgstr "Sin formato" - -#: includes/fields/class-acf-field-message.php:115 -#: includes/fields/class-acf-field-textarea.php:171 -msgid "Automatically add <br>" -msgstr "Añadir <br> automáticamente" - -#: includes/fields/class-acf-field-message.php:114 -#: includes/fields/class-acf-field-textarea.php:170 -msgid "Automatically add paragraphs" -msgstr "Añadir párrafos automáticamente" - -#: includes/fields/class-acf-field-message.php:110 -#: includes/fields/class-acf-field-textarea.php:166 -msgid "Controls how new lines are rendered" -msgstr "Controla cómo se muestran los saltos de línea" - -#: includes/fields/class-acf-field-message.php:109 -#: includes/fields/class-acf-field-textarea.php:165 -msgid "New Lines" -msgstr "Nuevas líneas" - -#: includes/fields/class-acf-field-date_picker.php:232 -#: includes/fields/class-acf-field-date_time_picker.php:220 -msgid "Week Starts On" -msgstr "La semana comienza el" - -#: includes/fields/class-acf-field-date_picker.php:201 -msgid "The format used when saving a value" -msgstr "El formato utilizado cuando se guarda un valor" - -#: includes/fields/class-acf-field-date_picker.php:200 -msgid "Save Format" -msgstr "Guardar formato" - -#: includes/fields/class-acf-field-date_picker.php:67 -msgctxt "Date Picker JS weekHeader" -msgid "Wk" -msgstr "Sem" - -#: includes/fields/class-acf-field-date_picker.php:66 -msgctxt "Date Picker JS prevText" -msgid "Prev" -msgstr "Anterior" - -#: includes/fields/class-acf-field-date_picker.php:65 -msgctxt "Date Picker JS nextText" -msgid "Next" -msgstr "Siguiente" - -#: includes/fields/class-acf-field-date_picker.php:64 -msgctxt "Date Picker JS currentText" -msgid "Today" -msgstr "Hoy" - -#: includes/fields/class-acf-field-date_picker.php:63 -msgctxt "Date Picker JS closeText" -msgid "Done" -msgstr "Listo" - -#: includes/fields/class-acf-field-date_picker.php:25 -msgid "Date Picker" -msgstr "Selector de fecha" - -#: includes/fields/class-acf-field-image.php:248 -#: includes/fields/class-acf-field-image.php:284 -#: includes/fields/class-acf-field-oembed.php:268 -msgid "Width" -msgstr "Ancho" - -#: includes/fields/class-acf-field-oembed.php:265 -#: includes/fields/class-acf-field-oembed.php:277 -msgid "Embed Size" -msgstr "Tamaño de incrustación" - -#: includes/fields/class-acf-field-oembed.php:222 -msgid "Enter URL" -msgstr "Introduce la URL" - -#: includes/fields/class-acf-field-oembed.php:25 -msgid "oEmbed" -msgstr "oEmbed" - -#: includes/fields/class-acf-field-true_false.php:184 -msgid "Text shown when inactive" -msgstr "Texto mostrado cuando está inactivo" - -#: includes/fields/class-acf-field-true_false.php:183 -msgid "Off Text" -msgstr "Texto desactivado" - -#: includes/fields/class-acf-field-true_false.php:168 -msgid "Text shown when active" -msgstr "Texto mostrado cuando está activo" - -#: includes/fields/class-acf-field-true_false.php:167 -msgid "On Text" -msgstr "Texto activado" - -#: includes/fields/class-acf-field-select.php:450 -#: includes/fields/class-acf-field-true_false.php:199 -msgid "Stylized UI" -msgstr "" - -#: includes/fields/class-acf-field-button-group.php:157 -#: includes/fields/class-acf-field-checkbox.php:361 -#: includes/fields/class-acf-field-color_picker.php:156 -#: includes/fields/class-acf-field-email.php:117 -#: includes/fields/class-acf-field-number.php:128 -#: includes/fields/class-acf-field-radio.php:202 -#: includes/fields/class-acf-field-range.php:164 -#: includes/fields/class-acf-field-select.php:380 -#: includes/fields/class-acf-field-text.php:103 -#: includes/fields/class-acf-field-textarea.php:103 -#: includes/fields/class-acf-field-true_false.php:147 -#: includes/fields/class-acf-field-url.php:101 -#: includes/fields/class-acf-field-wysiwyg.php:311 -msgid "Default Value" -msgstr "Valor por defecto" - -#: includes/fields/class-acf-field-true_false.php:138 -msgid "Displays text alongside the checkbox" -msgstr "Muestra el texto junto a la casilla de verificación" - -#: includes/fields/class-acf-field-message.php:26 -#: includes/fields/class-acf-field-message.php:99 -#: includes/fields/class-acf-field-true_false.php:137 -msgid "Message" -msgstr "Mensaje" - -#: includes/assets.php:351 includes/fields/class-acf-field-true_false.php:86 -#: includes/fields/class-acf-field-true_false.php:187 -#: assets/build/js/acf.js:1740 assets/build/js/acf.js:1857 -msgid "No" -msgstr "No" - -#: includes/assets.php:350 includes/fields/class-acf-field-true_false.php:83 -#: includes/fields/class-acf-field-true_false.php:171 -#: assets/build/js/acf.js:1739 assets/build/js/acf.js:1856 -msgid "Yes" -msgstr "Sí" - -#: includes/fields/class-acf-field-true_false.php:25 -msgid "True / False" -msgstr "Verdadero / Falso" - -#: includes/fields/class-acf-field-group.php:474 -msgid "Row" -msgstr "Fila" - -#: includes/fields/class-acf-field-group.php:473 -msgid "Table" -msgstr "Tabla" - -#: includes/admin/post-types/admin-field-group.php:140 -#: includes/fields/class-acf-field-group.php:472 -msgid "Block" -msgstr "Bloque" - -#: includes/fields/class-acf-field-group.php:467 -msgid "Specify the style used to render the selected fields" -msgstr "" -"Especifica el estilo utilizado para representar los campos seleccionados" - -#: includes/fields.php:356 includes/fields/class-acf-field-button-group.php:215 -#: includes/fields/class-acf-field-checkbox.php:435 -#: includes/fields/class-acf-field-group.php:466 -#: includes/fields/class-acf-field-radio.php:286 -msgid "Layout" -msgstr "Estructura" - -#: includes/fields/class-acf-field-group.php:450 -msgid "Sub Fields" -msgstr "Subcampos" - -#: includes/fields/class-acf-field-group.php:25 -msgid "Group" -msgstr "Grupo" - -#: includes/fields/class-acf-field-google-map.php:235 -msgid "Customize the map height" -msgstr "Personalizar la altura del mapa" - -#: includes/fields/class-acf-field-google-map.php:234 -#: includes/fields/class-acf-field-image.php:259 -#: includes/fields/class-acf-field-image.php:295 -#: includes/fields/class-acf-field-oembed.php:280 -msgid "Height" -msgstr "Altura" - -#: includes/fields/class-acf-field-google-map.php:223 -msgid "Set the initial zoom level" -msgstr "Establecer el nivel inicial de zoom" - -#: includes/fields/class-acf-field-google-map.php:222 -msgid "Zoom" -msgstr "Zoom" - -#: includes/fields/class-acf-field-google-map.php:196 -#: includes/fields/class-acf-field-google-map.php:209 -msgid "Center the initial map" -msgstr "Centrar inicialmente el mapa" - -#: includes/fields/class-acf-field-google-map.php:195 -#: includes/fields/class-acf-field-google-map.php:208 -msgid "Center" -msgstr "Centro" - -#: includes/fields/class-acf-field-google-map.php:163 -msgid "Search for address..." -msgstr "Buscar dirección..." - -#: includes/fields/class-acf-field-google-map.php:160 -msgid "Find current location" -msgstr "Encontrar ubicación actual" - -#: includes/fields/class-acf-field-google-map.php:159 -msgid "Clear location" -msgstr "Borrar ubicación" - -#: includes/fields/class-acf-field-google-map.php:158 -#: includes/fields/class-acf-field-relationship.php:628 -msgid "Search" -msgstr "Buscar" - -#: includes/fields/class-acf-field-google-map.php:63 -#: assets/build/js/acf-input.js:2840 assets/build/js/acf-input.js:3026 -msgid "Sorry, this browser does not support geolocation" -msgstr "Lo siento, este navegador no es compatible con la geolocalización" - -#: includes/fields/class-acf-field-google-map.php:25 -msgid "Google Map" -msgstr "Mapa de Google" - -#: includes/fields/class-acf-field-date_picker.php:212 -#: includes/fields/class-acf-field-date_time_picker.php:201 -#: includes/fields/class-acf-field-time_picker.php:132 -msgid "The format returned via template functions" -msgstr "El formato devuelto por de las funciones del tema" - -#: includes/fields/class-acf-field-color_picker.php:180 -#: includes/fields/class-acf-field-date_picker.php:211 -#: includes/fields/class-acf-field-date_time_picker.php:200 -#: includes/fields/class-acf-field-image.php:187 -#: includes/fields/class-acf-field-post_object.php:411 -#: includes/fields/class-acf-field-relationship.php:638 -#: includes/fields/class-acf-field-select.php:391 -#: includes/fields/class-acf-field-time_picker.php:131 -#: includes/fields/class-acf-field-user.php:66 -msgid "Return Format" -msgstr "Formato de retorno" - -#: includes/fields/class-acf-field-date_picker.php:190 -#: includes/fields/class-acf-field-date_picker.php:221 -#: includes/fields/class-acf-field-date_time_picker.php:192 -#: includes/fields/class-acf-field-date_time_picker.php:210 -#: includes/fields/class-acf-field-time_picker.php:123 -#: includes/fields/class-acf-field-time_picker.php:139 -msgid "Custom:" -msgstr "Personalizado:" - -#: includes/fields/class-acf-field-date_picker.php:182 -#: includes/fields/class-acf-field-date_time_picker.php:183 -#: includes/fields/class-acf-field-time_picker.php:116 -msgid "The format displayed when editing a post" -msgstr "El formato mostrado cuando se edita una publicación" - -#: includes/fields/class-acf-field-date_picker.php:181 -#: includes/fields/class-acf-field-date_time_picker.php:182 -#: includes/fields/class-acf-field-time_picker.php:115 -msgid "Display Format" -msgstr "Formato de visualización" - -#: includes/fields/class-acf-field-time_picker.php:25 -msgid "Time Picker" -msgstr "Selector de hora" - -#. translators: counts for inactive field groups -#: acf.php:503 -msgid "Inactive (%s)" -msgid_plural "Inactive (%s)" -msgstr[0] "" -msgstr[1] "" - -#: acf.php:462 -msgid "No Fields found in Trash" -msgstr "No se han encontrado campos en la papelera" - -#: acf.php:461 -msgid "No Fields found" -msgstr "No se han encontrado campos" - -#: acf.php:460 -msgid "Search Fields" -msgstr "Buscar campos" - -#: acf.php:459 -msgid "View Field" -msgstr "Ver campo" - -#: acf.php:458 includes/admin/views/acf-field-group/fields.php:115 -msgid "New Field" -msgstr "Nuevo campo" - -#: acf.php:457 -msgid "Edit Field" -msgstr "Editar campo" - -#: acf.php:456 -msgid "Add New Field" -msgstr "Añadir nuevo campo" - -#: acf.php:454 -msgid "Field" -msgstr "Campo" - -#: acf.php:453 includes/admin/post-types/admin-field-group.php:163 -#: includes/admin/post-types/admin-field-groups.php:119 -#: includes/admin/views/acf-field-group/fields.php:32 -msgid "Fields" -msgstr "Campos" - -#: acf.php:428 -msgid "No Field Groups found in Trash" -msgstr "No se han encontrado grupos de campos en la papelera" - -#: acf.php:427 -msgid "No Field Groups found" -msgstr "No se han encontrado grupos de campos" - -#: acf.php:426 -msgid "Search Field Groups" -msgstr "Buscar grupo de campos" - -#: acf.php:425 -msgid "View Field Group" -msgstr "Ver grupo de campos" - -#: acf.php:424 -msgid "New Field Group" -msgstr "Nuevo grupo de campos" - -#: acf.php:423 -msgid "Edit Field Group" -msgstr "Editar grupo de campos" - -#: acf.php:422 -msgid "Add New Field Group" -msgstr "Añadir nuevo grupo de campos" - -#: acf.php:421 acf.php:455 -#: includes/admin/views/acf-post-type/advanced-settings.php:219 -#: includes/admin/views/acf-post-type/advanced-settings.php:221 -#: includes/post-types/class-acf-post-type.php:93 -#: includes/post-types/class-acf-taxonomy.php:92 -msgid "Add New" -msgstr "Añadir nuevo" - -#: acf.php:420 -msgid "Field Group" -msgstr "Grupo de campos" - -#: acf.php:419 includes/admin/post-types/admin-field-groups.php:78 -#: includes/admin/post-types/admin-post-types.php:138 -#: includes/admin/post-types/admin-taxonomies.php:138 -msgid "Field Groups" -msgstr "Grupos de campos" - -#. Description of the plugin -msgid "Customize WordPress with powerful, professional and intuitive fields." -msgstr "Personaliza WordPress con campos potentes, profesionales e intuitivos." - -#. Plugin URI of the plugin -msgid "https://www.advancedcustomfields.com" -msgstr "https://www.advancedcustomfields.com" - -#. Plugin Name of the plugin -#: acf.php:94 -msgid "Advanced Custom Fields" -msgstr "Advanced Custom Fields" diff --git a/lang/acf-es_VE.mo b/lang/acf-es_VE.mo deleted file mode 100644 index 9c20687..0000000 Binary files a/lang/acf-es_VE.mo and /dev/null differ diff --git a/lang/acf-es_VE.po b/lang/acf-es_VE.po deleted file mode 100644 index 7880fe4..0000000 --- a/lang/acf-es_VE.po +++ /dev/null @@ -1,5604 +0,0 @@ -# Advanced Custom Fields Translations are a combination of translate.wordpress.org contributions, -# combined with user contributed strings for the PRO version. -# Translations from translate.wordpress.org take priority over translations in this file. -# translate.wordpress.org contributions are synced at the time of each release. -# -# If you would like to contribute translations, please visit -# https://translate.wordpress.org/projects/wp-plugins/advanced-custom-fields/stable/ -# -# For additional ACF PRO strings, please submit a pull request over on the ACF GitHub repo at -# http://github.com/advancedcustomfields/acf using the .pot (and any existing .po) files in /lang/pro/ -# -# This file is distributed under the same license as Advanced Custom Fields. -msgid "" -msgstr "" -"PO-Revision-Date: 2023-11-28T09:14:32+00:00\n" -"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n" -"Language: es_VE\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: gettext\n" -"Project-Id-Version: Advanced Custom Fields\n" - -#: includes/admin/views/global/navigation.php:221 -msgid "Renew ACF PRO License" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:17 -msgid "Renew License" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:14 -msgid "Manage License" -msgstr "" - -#: includes/admin/views/acf-field-group/options.php:102 -msgid "'High' position not supported in the Block Editor" -msgstr "" - -#: includes/admin/views/options-page-preview.php:30 -msgid "Upgrade to ACF PRO" -msgstr "" - -#. translators: %s URL to ACF options pages documentation -#: includes/admin/views/options-page-preview.php:7 -msgid "" -"ACF options pages are custom admin " -"pages for managing global settings via fields. You can create multiple pages " -"and sub-pages." -msgstr "" - -#: includes/admin/views/global/header.php:35 -msgid "Add Options Page" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:703 -msgid "In the editor used as the placeholder of the title." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:702 -msgid "Title Placeholder" -msgstr "" - -#: includes/admin/views/global/navigation.php:97 -msgid "4 Months Free" -msgstr "" - -#. translators: %s - A singular label for a post type or taxonomy. -#: includes/admin/views/global/form-top.php:56 -msgid " (Duplicated from %s)" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:298 -msgid "Select Options Pages" -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:107 -msgid "Duplicate taxonomy" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:106 -#: includes/admin/post-types/admin-taxonomy.php:106 -msgid "Create taxonomy" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:105 -msgid "Duplicate post type" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:104 -#: includes/admin/post-types/admin-taxonomy.php:108 -msgid "Create post type" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:103 -#: includes/admin/post-types/admin-taxonomy.php:105 -msgid "Link field groups" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:102 -#: includes/admin/post-types/admin-taxonomy.php:104 -msgid "Add fields" -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:121 -#: assets/build/js/acf-field-group.js:2753 -#: assets/build/js/acf-field-group.js:3236 -msgid "This Field" -msgstr "" - -#: includes/admin/admin.php:267 -msgid "ACF PRO" -msgstr "" - -#: includes/admin/admin.php:265 -msgid "Feedback" -msgstr "" - -#: includes/admin/admin.php:263 -msgid "Support" -msgstr "" - -#. translators: This text is prepended by a link to ACF's website, and appended -#. by a link to WP Engine's website. -#: includes/admin/admin.php:238 -msgid "is developed and maintained by" -msgstr "" - -#. translators: %s - either "post type" or "taxonomy" -#: includes/admin/admin-internal-post-type.php:321 -msgid "Add this %s to the location rules of the selected field groups." -msgstr "" - -#. translators: %s the URL to ACF's bidirectional relationship documentation -#: includes/acf-bidirectional-functions.php:271 -msgid "" -"Enabling the bidirectional setting allows you to update a value in the " -"target fields for each value selected for this field, adding or removing the " -"Post ID, Taxonomy ID or User ID of the item being updated. For more " -"information, please read the documentation." -msgstr "" - -#: includes/acf-bidirectional-functions.php:247 -msgid "" -"Select field(s) to store the reference back to the item being updated. You " -"may select this field. Target fields must be compatible with where this " -"field is being displayed. For example, if this field is displayed on a " -"Taxonomy, your target field should be of type Taxonomy" -msgstr "" - -#: includes/acf-bidirectional-functions.php:246 -msgid "Target Field" -msgstr "" - -#: includes/acf-bidirectional-functions.php:220 -msgid "Update a field on the selected values, referencing back to this ID" -msgstr "" - -#: includes/acf-bidirectional-functions.php:219 -msgid "Bidirectional" -msgstr "" - -#. translators: %s A field type name, such as "Relationship" -#: includes/acf-bidirectional-functions.php:192 -msgid "%s Field" -msgstr "" - -#: includes/fields/class-acf-field-page_link.php:517 -#: includes/fields/class-acf-field-post_object.php:426 -#: includes/fields/class-acf-field-select.php:407 -#: includes/fields/class-acf-field-user.php:82 -msgid "Select Multiple" -msgstr "" - -#: includes/admin/views/global/navigation.php:233 -msgid "WP Engine logo" -msgstr "" - -#: includes/admin/views/acf-taxonomy/basic-settings.php:58 -msgid "Lower case letters, underscores and dashes only, Max 32 characters." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1136 -msgid "The capability name for assigning terms of this taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1135 -msgid "Assign Terms Capability" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1119 -msgid "The capability name for deleting terms of this taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1118 -msgid "Delete Terms Capability" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1102 -msgid "The capability name for editing terms of this taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1101 -msgid "Edit Terms Capability" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1085 -msgid "The capability name for managing terms of this taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1084 -msgid "Manage Terms Capability" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:886 -msgid "" -"Sets whether posts should be excluded from search results and taxonomy " -"archive pages." -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:74 -msgid "More Tools from WP Engine" -msgstr "" - -#. translators: %s - WP Engine logo -#: includes/admin/views/acf-field-group/pro-features.php:69 -msgid "Built for those that build with WordPress, by the team at %s" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:6 -msgid "View Pricing & Upgrade" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:3 -#: includes/admin/views/options-page-preview.php:29 -msgid "Learn More" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:28 -msgid "" -"Speed up your workflow and develop better websites with features like ACF " -"Blocks and Options Pages, and sophisticated field types like Repeater, " -"Flexible Content, Clone, and Gallery." -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:2 -msgid "Unlock Advanced Features and Build Even More with ACF PRO" -msgstr "" - -#. translators: %s - singular label of post type/taxonomy, i.e. "Movie"/"Genre" -#: includes/admin/views/global/form-top.php:19 -msgid "%s fields" -msgstr "" - -#: includes/admin/post-types/admin-taxonomies.php:293 -msgid "No terms" -msgstr "" - -#: includes/admin/post-types/admin-taxonomies.php:266 -msgid "No post types" -msgstr "" - -#: includes/admin/post-types/admin-post-types.php:289 -msgid "No posts" -msgstr "" - -#: includes/admin/post-types/admin-post-types.php:263 -msgid "No taxonomies" -msgstr "" - -#: includes/admin/post-types/admin-post-types.php:208 -#: includes/admin/post-types/admin-taxonomies.php:208 -msgid "No field groups" -msgstr "" - -#: includes/admin/post-types/admin-field-groups.php:281 -msgid "No fields" -msgstr "" - -#: includes/admin/post-types/admin-field-groups.php:154 -#: includes/admin/post-types/admin-post-types.php:172 -#: includes/admin/post-types/admin-taxonomies.php:172 -msgid "No description" -msgstr "" - -#: includes/fields/class-acf-field-page_link.php:484 -#: includes/fields/class-acf-field-post_object.php:389 -#: includes/fields/class-acf-field-relationship.php:601 -msgid "Any post status" -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:284 -msgid "" -"This taxonomy key is already in use by another taxonomy registered outside " -"of ACF and cannot be used." -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:279 -msgid "" -"This taxonomy key is already in use by another taxonomy in ACF and cannot be " -"used." -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:252 -msgid "" -"The taxonomy key must only contain lower case alphanumeric characters, " -"underscores or dashes." -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:247 -msgid "The taxonomy key must be under 32 characters." -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:99 -msgid "No Taxonomies found in Trash" -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:98 -msgid "No Taxonomies found" -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:97 -msgid "Search Taxonomies" -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:96 -msgid "View Taxonomy" -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:95 -msgid "New Taxonomy" -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:94 -msgid "Edit Taxonomy" -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:93 -msgid "Add New Taxonomy" -msgstr "" - -#: includes/post-types/class-acf-post-type.php:100 -msgid "No Post Types found in Trash" -msgstr "" - -#: includes/post-types/class-acf-post-type.php:99 -msgid "No Post Types found" -msgstr "" - -#: includes/post-types/class-acf-post-type.php:98 -msgid "Search Post Types" -msgstr "" - -#: includes/post-types/class-acf-post-type.php:97 -msgid "View Post Type" -msgstr "" - -#: includes/post-types/class-acf-post-type.php:96 -msgid "New Post Type" -msgstr "" - -#: includes/post-types/class-acf-post-type.php:95 -msgid "Edit Post Type" -msgstr "" - -#: includes/post-types/class-acf-post-type.php:94 -msgid "Add New Post Type" -msgstr "" - -#: includes/post-types/class-acf-post-type.php:361 -msgid "" -"This post type key is already in use by another post type registered outside " -"of ACF and cannot be used." -msgstr "" - -#: includes/post-types/class-acf-post-type.php:356 -msgid "" -"This post type key is already in use by another post type in ACF and cannot " -"be used." -msgstr "" - -#. translators: %s a link to WordPress.org's Reserved Terms page -#: includes/post-types/class-acf-post-type.php:335 -#: includes/post-types/class-acf-taxonomy.php:258 -msgid "" -"This field must not be a WordPress reserved " -"term." -msgstr "" - -#: includes/post-types/class-acf-post-type.php:329 -msgid "" -"The post type key must only contain lower case alphanumeric characters, " -"underscores or dashes." -msgstr "" - -#: includes/post-types/class-acf-post-type.php:324 -msgid "The post type key must be under 20 characters." -msgstr "" - -#: includes/fields/class-acf-field-wysiwyg.php:27 -msgid "We do not recommend using this field in ACF Blocks." -msgstr "" - -#: includes/fields/class-acf-field-wysiwyg.php:27 -msgid "" -"Displays the WordPress WYSIWYG editor as seen in Posts and Pages allowing " -"for a rich text-editing experience that also allows for multimedia content." -msgstr "" - -#: includes/fields/class-acf-field-wysiwyg.php:25 -msgid "WYSIWYG Editor" -msgstr "" - -#: includes/fields/class-acf-field-user.php:17 -msgid "" -"Allows the selection of one or more users which can be used to create " -"relationships between data objects." -msgstr "" - -#: includes/fields/class-acf-field-url.php:26 -msgid "A text input specifically designed for storing web addresses." -msgstr "" - -#: includes/fields/class-acf-field-url.php:25 -msgid "URL" -msgstr "" - -#: includes/fields/class-acf-field-true_false.php:27 -msgid "" -"A toggle that allows you to pick a value of 1 or 0 (on or off, true or " -"false, etc). Can be presented as a stylized switch or checkbox." -msgstr "" - -#: includes/fields/class-acf-field-time_picker.php:27 -msgid "" -"An interactive UI for picking a time. The time format can be customized " -"using the field settings." -msgstr "" - -#: includes/fields/class-acf-field-textarea.php:26 -msgid "A basic textarea input for storing paragraphs of text." -msgstr "" - -#: includes/fields/class-acf-field-text.php:26 -msgid "A basic text input, useful for storing single string values." -msgstr "" - -#: includes/fields/class-acf-field-taxonomy.php:22 -msgid "" -"Allows the selection of one or more taxonomy terms based on the criteria and " -"options specified in the fields settings." -msgstr "" - -#: includes/fields/class-acf-field-tab.php:28 -msgid "" -"Allows you to group fields into tabbed sections in the edit screen. Useful " -"for keeping fields organized and structured." -msgstr "" - -#: includes/fields/class-acf-field-select.php:27 -msgid "A dropdown list with a selection of choices that you specify." -msgstr "" - -#: includes/fields/class-acf-field-relationship.php:19 -msgid "" -"A dual-column interface to select one or more posts, pages, or custom post " -"type items to create a relationship with the item that you're currently " -"editing. Includes options to search and filter." -msgstr "" - -#: includes/fields/class-acf-field-range.php:26 -msgid "" -"An input for selecting a numerical value within a specified range using a " -"range slider element." -msgstr "" - -#: includes/fields/class-acf-field-radio.php:27 -msgid "" -"A group of radio button inputs that allows the user to make a single " -"selection from values that you specify." -msgstr "" - -#: includes/fields/class-acf-field-post_object.php:19 -msgid "" -"An interactive and customizable UI for picking one or many posts, pages or " -"post type items with the option to search. " -msgstr "" - -#: includes/fields/class-acf-field-password.php:26 -msgid "An input for providing a password using a masked field." -msgstr "" - -#: includes/fields/class-acf-field-page_link.php:476 -#: includes/fields/class-acf-field-post_object.php:381 -#: includes/fields/class-acf-field-relationship.php:593 -msgid "Filter by Post Status" -msgstr "" - -#: includes/fields/class-acf-field-page_link.php:27 -msgid "" -"An interactive dropdown to select one or more posts, pages, custom post type " -"items or archive URLs, with the option to search." -msgstr "" - -#: includes/fields/class-acf-field-oembed.php:27 -msgid "" -"An interactive component for embedding videos, images, tweets, audio and " -"other content by making use of the native WordPress oEmbed functionality." -msgstr "" - -#: includes/fields/class-acf-field-number.php:26 -msgid "An input limited to numerical values." -msgstr "" - -#: includes/fields/class-acf-field-message.php:28 -msgid "" -"Used to display a message to editors alongside other fields. Useful for " -"providing additional context or instructions around your fields." -msgstr "" - -#: includes/fields/class-acf-field-link.php:27 -msgid "" -"Allows you to specify a link and its properties such as title and target " -"using the WordPress native link picker." -msgstr "" - -#: includes/fields/class-acf-field-image.php:27 -msgid "Uses the native WordPress media picker to upload, or choose images." -msgstr "" - -#: includes/fields/class-acf-field-group.php:27 -msgid "" -"Provides a way to structure fields into groups to better organize the data " -"and the edit screen." -msgstr "" - -#: includes/fields/class-acf-field-google-map.php:27 -msgid "" -"An interactive UI for selecting a location using Google Maps. Requires a " -"Google Maps API key and additional configuration to display correctly." -msgstr "" - -#: includes/fields/class-acf-field-file.php:27 -msgid "Uses the native WordPress media picker to upload, or choose files." -msgstr "" - -#: includes/fields/class-acf-field-email.php:26 -msgid "A text input specifically designed for storing email addresses." -msgstr "" - -#: includes/fields/class-acf-field-date_time_picker.php:27 -msgid "" -"An interactive UI for picking a date and time. The date return format can be " -"customized using the field settings." -msgstr "" - -#: includes/fields/class-acf-field-date_picker.php:27 -msgid "" -"An interactive UI for picking a date. The date return format can be " -"customized using the field settings." -msgstr "" - -#: includes/fields/class-acf-field-color_picker.php:27 -msgid "An interactive UI for selecting a color, or specifying a Hex value." -msgstr "" - -#: includes/fields/class-acf-field-checkbox.php:27 -msgid "" -"A group of checkbox inputs that allow the user to select one, or multiple " -"values that you specify." -msgstr "" - -#: includes/fields/class-acf-field-button-group.php:26 -msgid "" -"A group of buttons with values that you specify, users can choose one option " -"from the values provided." -msgstr "" - -#: includes/fields/class-acf-field-accordion.php:27 -msgid "" -"Allows you to group and organize custom fields into collapsable panels that " -"are shown while editing content. Useful for keeping large datasets tidy." -msgstr "" - -#: includes/fields.php:475 -msgid "" -"This provides a solution for repeating content such as slides, team members, " -"and call-to-action tiles, by acting as a parent to a set of subfields which " -"can be repeated again and again." -msgstr "" - -#: includes/fields.php:465 -msgid "" -"This provides an interactive interface for managing a collection of " -"attachments. Most settings are similar to the Image field type. Additional " -"settings allow you to specify where new attachments are added in the gallery " -"and the minimum/maximum number of attachments allowed." -msgstr "" - -#: includes/fields.php:455 -msgid "" -"This provides a simple, structured, layout-based editor. The Flexible " -"Content field allows you to define, create and manage content with total " -"control by using layouts and subfields to design the available blocks." -msgstr "" - -#: includes/fields.php:445 -msgid "" -"This allows you to select and display existing fields. It does not duplicate " -"any fields in the database, but loads and displays the selected fields at " -"run-time. The Clone field can either replace itself with the selected fields " -"or display the selected fields as a group of subfields." -msgstr "" - -#: includes/fields.php:442 -msgctxt "noun" -msgid "Clone" -msgstr "" - -#: includes/admin/views/global/navigation.php:86 includes/fields.php:357 -msgid "PRO" -msgstr "" - -#: includes/fields.php:355 includes/fields.php:412 -msgid "Advanced" -msgstr "" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:85 -msgid "JSON (newer)" -msgstr "" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:81 -msgid "Original" -msgstr "" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:55 -msgid "Invalid post ID." -msgstr "" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:47 -msgid "Invalid post type selected for review." -msgstr "" - -#: includes/admin/views/global/navigation.php:186 -msgid "More" -msgstr "" - -#: includes/admin/views/browse-fields-modal.php:86 -msgid "Tutorial" -msgstr "" - -#: includes/admin/views/browse-fields-modal.php:75 -msgid "Available with ACF PRO" -msgstr "" - -#: includes/admin/views/browse-fields-modal.php:63 -msgid "Select Field" -msgstr "" - -#. translators: %s: A link to the popular fields used in ACF -#: includes/admin/views/browse-fields-modal.php:50 -msgid "Try a different search term or browse %s" -msgstr "" - -#: includes/admin/views/browse-fields-modal.php:47 -msgid "Popular fields" -msgstr "" - -#. translators: %s: The invalid search term -#: includes/admin/views/browse-fields-modal.php:40 -msgid "No search results for '%s'" -msgstr "" - -#: includes/admin/views/browse-fields-modal.php:13 -msgid "Search fields..." -msgstr "" - -#: includes/admin/views/browse-fields-modal.php:11 -msgid "Select Field Type" -msgstr "" - -#: includes/admin/views/browse-fields-modal.php:4 -msgid "Popular" -msgstr "" - -#: includes/admin/views/acf-taxonomy/list-empty.php:7 -msgid "Add Taxonomy" -msgstr "" - -#: includes/admin/views/acf-taxonomy/list-empty.php:6 -msgid "Create custom taxonomies to classify post type content" -msgstr "" - -#: includes/admin/views/acf-taxonomy/list-empty.php:5 -msgid "Add Your First Taxonomy" -msgstr "" - -#: includes/admin/views/acf-taxonomy/basic-settings.php:122 -msgid "Hierarchical taxonomies can have descendants (like categories)." -msgstr "" - -#: includes/admin/views/acf-taxonomy/basic-settings.php:107 -msgid "Makes a taxonomy visible on the frontend and in the admin dashboard." -msgstr "" - -#: includes/admin/views/acf-taxonomy/basic-settings.php:91 -msgid "One or many post types that can be classified with this taxonomy." -msgstr "" - -#. translators: example taxonomy -#: includes/admin/views/acf-taxonomy/basic-settings.php:60 -msgid "genre" -msgstr "" - -#. translators: example taxonomy -#: includes/admin/views/acf-taxonomy/basic-settings.php:42 -msgid "Genre" -msgstr "" - -#. translators: example taxonomy -#: includes/admin/views/acf-taxonomy/basic-settings.php:25 -msgid "Genres" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1211 -msgid "" -"Optional custom controller to use instead of `WP_REST_Terms_Controller `." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1155 -msgid "Expose this post type in the REST API." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1055 -msgid "Customize the query variable name" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1028 -msgid "" -"Terms can be accessed using the non-pretty permalink, e.g., {query_var}" -"={term_slug}." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:981 -msgid "Parent-child terms in URLs for hierarchical taxonomies." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:941 -msgid "Customize the slug used in the URL" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:924 -msgid "Permalinks for this taxonomy are disabled." -msgstr "" - -#. translators: this string will be appended with the new permalink structure. -#: includes/admin/views/acf-taxonomy/advanced-settings.php:921 -msgid "" -"Rewrite the URL using the taxonomy key as the slug. Your permalink structure " -"will be" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:913 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1030 -#: includes/admin/views/acf-taxonomy/basic-settings.php:57 -msgid "Taxonomy Key" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:911 -msgid "Select the type of permalink to use for this taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:896 -msgid "Display a column for the taxonomy on post type listing screens." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:895 -msgid "Show Admin Column" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:882 -msgid "Show the taxonomy in the quick/bulk edit panel." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:881 -msgid "Quick Edit" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:868 -msgid "List the taxonomy in the Tag Cloud Widget controls." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:867 -msgid "Tag Cloud" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:824 -msgid "" -"A PHP function name to be called for sanitizing taxonomy data saved from a " -"meta box." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:823 -msgid "Meta Box Sanitization Callback" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:805 -msgid "" -"A PHP function name to be called to handle the content of a meta box on your " -"taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:804 -msgid "Register Meta Box Callback" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:763 -msgid "No Meta Box" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:762 -msgid "Custom Meta Box" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:758 -msgid "" -"Controls the meta box on the content editor screen. By default, the " -"Categories meta box is shown for hierarchical taxonomies, and the Tags meta " -"box is shown for non-hierarchical taxonomies." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:757 -msgid "Meta Box" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:746 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:767 -msgid "Categories Meta Box" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:745 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:766 -msgid "Tags Meta Box" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:704 -msgid "A link to a tag" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:703 -msgid "Describes a navigation link block variation used in the block editor." -msgstr "" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:698 -msgid "A link to a %s" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:683 -msgid "Tag Link" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:682 -msgid "" -"Assigns a title for navigation link block variation used in the block editor." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:663 -msgid "← Go to tags" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:662 -msgid "" -"Assigns the text used to link back to the main index after updating a term." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:661 -msgid "Back To Items" -msgstr "" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:657 -msgid "← Go to %s" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:642 -msgid "Tags list" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:641 -msgid "Assigns text to the table hidden heading." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:622 -msgid "Tags list navigation" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:621 -msgid "Assigns text to the table pagination hidden heading." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:597 -msgid "Filter by category" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:596 -msgid "Assigns text to the filter button in the posts lists table." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:595 -msgid "Filter By Item" -msgstr "" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:591 -msgid "Filter by %s" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:575 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:576 -msgid "" -"The description is not prominent by default; however, some themes may show " -"it." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:574 -msgid "Describes the Description field on the Edit Tags screen." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:573 -msgid "Description Field Description" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:554 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:555 -msgid "" -"Assign a parent term to create a hierarchy. The term Jazz, for example, " -"would be the parent of Bebop and Big Band" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:553 -msgid "Describes the Parent field on the Edit Tags screen." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:552 -msgid "Parent Field Description" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:538 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:539 -msgid "" -"The \"slug\" is the URL-friendly version of the name. It is usually all " -"lower case and contains only letters, numbers, and hyphens." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:537 -msgid "Describes the Slug field on the Edit Tags screen." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:536 -msgid "Slug Field Description" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:522 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:523 -msgid "The name is how it appears on your site" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:521 -msgid "Describes the Name field on the Edit Tags screen." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:520 -msgid "Name Field Description" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:507 -msgid "No tags" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:506 -msgid "" -"Assigns the text displayed in the posts and media list tables when no tags " -"or categories are available." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:505 -msgid "No Terms" -msgstr "" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:501 -msgid "No %s" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:486 -msgid "No tags found" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:485 -msgid "" -"Assigns the text displayed when clicking the 'choose from most used' text in " -"the taxonomy meta box when no tags are available, and assigns the text used " -"in the terms list table when there are no items for a taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:484 -msgid "Not Found" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:463 -msgid "Assigns text to the Title field of the Most Used tab." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:462 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:464 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:465 -msgid "Most Used" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:444 -msgid "Choose from the most used tags" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:443 -msgid "" -"Assigns the 'choose from most used' text used in the meta box when " -"JavaScript is disabled. Only used on non-hierarchical taxonomies." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:442 -msgid "Choose From Most Used" -msgstr "" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:438 -msgid "Choose from the most used %s" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:418 -msgid "Add or remove tags" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:417 -msgid "" -"Assigns the add or remove items text used in the meta box when JavaScript is " -"disabled. Only used on non-hierarchical taxonomies" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:416 -msgid "Add Or Remove Items" -msgstr "" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:412 -msgid "Add or remove %s" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:392 -msgid "Separate tags with commas" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:391 -msgid "" -"Assigns the separate item with commas text used in the taxonomy meta box. " -"Only used on non-hierarchical taxonomies." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:390 -msgid "Separate Items With Commas" -msgstr "" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:386 -msgid "Separate %s with commas" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:366 -msgid "Popular Tags" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:365 -msgid "Assigns popular items text. Only used for non-hierarchical taxonomies." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:364 -msgid "Popular Items" -msgstr "" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:361 -msgid "Popular %s" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:347 -msgid "Search Tags" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:346 -msgid "Assigns search items text." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:323 -msgid "Parent Category:" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:322 -msgid "Assigns parent item text, but with a colon (:) added to the end." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:321 -msgid "Parent Item With Colon" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:298 -msgid "Parent Category" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:297 -msgid "Assigns parent item text. Only used on hierarchical taxonomies." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:296 -msgid "Parent Item" -msgstr "" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:293 -msgid "Parent %s" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:278 -msgid "New Tag Name" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:277 -msgid "Assigns the new item name text." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:276 -msgid "New Item Name" -msgstr "" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:273 -msgid "New %s Name" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:258 -msgid "Add New Tag" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:257 -msgid "Assigns the add new item text." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:238 -msgid "Update Tag" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:237 -msgid "Assigns the update item text." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:236 -msgid "Update Item" -msgstr "" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:233 -msgid "Update %s" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:218 -msgid "View Tag" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:217 -msgid "In the admin bar to view term during editing." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:198 -msgid "Edit Tag" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:197 -msgid "At the top of the editor screen when editing a term." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:178 -msgid "All Tags" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:177 -msgid "Assigns the all items text." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:158 -msgid "Assigns the menu name text." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:157 -msgid "Menu Label" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:131 -msgid "Active taxonomies are enabled and registered with WordPress." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:115 -msgid "A descriptive summary of the taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:95 -msgid "A descriptive summary of the term." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:94 -msgid "Term Description" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:76 -msgid "Single word, no spaces. Underscores and dashes allowed." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:75 -msgid "Term Slug" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:56 -msgid "The name of the default term." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:55 -msgid "Term Name" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:41 -msgid "" -"Create a term for the taxonomy that cannot be deleted. It will not be " -"selected for posts by default." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:40 -msgid "Default Term" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:28 -msgid "" -"Whether terms in this taxonomy should be sorted in the order they are " -"provided to `wp_set_object_terms()`." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:27 -msgid "Sort Terms" -msgstr "" - -#: includes/admin/views/acf-post-type/list-empty.php:7 -msgid "Add Post Type" -msgstr "" - -#: includes/admin/views/acf-post-type/list-empty.php:6 -msgid "" -"Expand the functionality of WordPress beyond standard posts and pages with " -"custom post types." -msgstr "" - -#: includes/admin/views/acf-post-type/list-empty.php:5 -msgid "Add Your First Post Type" -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:136 -#: includes/admin/views/acf-taxonomy/basic-settings.php:135 -msgid "I know what I'm doing, show me all the options." -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:135 -#: includes/admin/views/acf-taxonomy/basic-settings.php:134 -msgid "Advanced Configuration" -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:123 -msgid "Hierarchical post types can have descendants (like pages)." -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:122 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:980 -#: includes/admin/views/acf-taxonomy/basic-settings.php:121 -msgid "Hierarchical" -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:107 -msgid "Visible on the frontend and in the admin dashboard." -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:106 -#: includes/admin/views/acf-taxonomy/basic-settings.php:106 -msgid "Public" -msgstr "" - -#. translators: example post type -#: includes/admin/views/acf-post-type/basic-settings.php:59 -msgid "movie" -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:57 -msgid "Lower case letters, underscores and dashes only, Max 20 characters." -msgstr "" - -#. translators: example post type -#: includes/admin/views/acf-post-type/basic-settings.php:41 -msgid "Movie" -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:39 -#: includes/admin/views/acf-taxonomy/basic-settings.php:40 -msgid "Singular Label" -msgstr "" - -#. translators: example post type -#: includes/admin/views/acf-post-type/basic-settings.php:24 -msgid "Movies" -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:22 -#: includes/admin/views/acf-taxonomy/basic-settings.php:23 -msgid "Plural Label" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1270 -msgid "" -"Optional custom controller to use instead of `WP_REST_Posts_Controller`." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1269 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1210 -msgid "Controller Class" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1251 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1191 -msgid "The namespace part of the REST API URL." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1250 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1190 -msgid "Namespace Route" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1232 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1172 -msgid "The base URL for the post type REST API URLs." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1231 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1171 -msgid "Base URL" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1217 -msgid "" -"Exposes this post type in the REST API. Required to use the block editor." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1216 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1154 -msgid "Show In REST API" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1195 -msgid "Customize the query variable name." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1194 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1054 -msgid "Query Variable" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1172 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1032 -msgid "No Query Variable Support" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1171 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1031 -msgid "Custom Query Variable" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1168 -msgid "" -"Items can be accessed using the non-pretty permalink, eg. {post_type}" -"={post_slug}." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1167 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1027 -msgid "Query Variable Support" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1142 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1003 -msgid "URLs for an item and items can be accessed with a query string." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1141 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1002 -msgid "Publicly Queryable" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1120 -msgid "Custom slug for the Archive URL." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1119 -msgid "Archive Slug" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1106 -msgid "" -"Has an item archive that can be customized with an archive template file in " -"your theme." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1105 -msgid "Archive" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1085 -msgid "Pagination support for the items URLs such as the archives." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1084 -msgid "Pagination" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1067 -msgid "RSS feed URL for the post type items." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1066 -msgid "Feed URL" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1048 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:961 -msgid "" -"Alters the permalink structure to add the `WP_Rewrite::$front` prefix to " -"URLs." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1047 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:960 -msgid "Front URL Prefix" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1028 -msgid "Customize the slug used in the URL." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1027 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:940 -msgid "URL Slug" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1011 -msgid "Permalinks for this post type are disabled." -msgstr "" - -#. translators: this string will be appended with the new permalink structure. -#: includes/admin/views/acf-post-type/advanced-settings.php:1010 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:923 -msgid "" -"Rewrite the URL using a custom slug defined in the input below. Your " -"permalink structure will be" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1002 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:915 -msgid "No Permalink (prevent URL rewriting)" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1001 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:914 -msgid "Custom Permalink" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1000 -#: includes/admin/views/acf-post-type/advanced-settings.php:1170 -#: includes/admin/views/acf-post-type/basic-settings.php:56 -msgid "Post Type Key" -msgstr "" - -#. translators: this string will be appended with the new permalink structure. -#: includes/admin/views/acf-post-type/advanced-settings.php:998 -#: includes/admin/views/acf-post-type/advanced-settings.php:1008 -msgid "" -"Rewrite the URL using the post type key as the slug. Your permalink " -"structure will be" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:996 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:910 -msgid "Permalink Rewrite" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:982 -msgid "Delete items by a user when that user is deleted." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:981 -msgid "Delete With User" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:967 -msgid "Allow the post type to be exported from 'Tools' > 'Export'." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:966 -msgid "Can Export" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:935 -msgid "Optionally provide a plural to be used in capabilities." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:934 -msgid "Plural Capability Name" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:916 -msgid "Choose another post type to base the capabilities for this post type." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:915 -msgid "Singular Capability Name" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:901 -msgid "" -"By default the capabilities of the post type will inherit the 'Post' " -"capability names, eg. edit_post, delete_posts. Enable to use post type " -"specific capabilities, eg. edit_{singular}, delete_{plural}." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:900 -msgid "Rename Capabilities" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:885 -msgid "Exclude From Search" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:872 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:854 -msgid "" -"Allow items to be added to menus in the 'Appearance' > 'Menus' screen. Must " -"be turned on in 'Screen options'." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:871 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:853 -msgid "Appearance Menus Support" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:853 -msgid "Appears as an item in the 'New' menu in the admin bar." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:852 -msgid "Show In Admin Bar" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:821 -msgid "" -"A PHP function name to be called when setting up the meta boxes for the edit " -"screen." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:820 -msgid "Custom Meta Box Callback" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:800 -msgid "Menu Icon" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:782 -msgid "The position in the sidebar menu in the admin dashboard." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:781 -msgid "Menu Position" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:763 -msgid "" -"By default the post type will get a new top level item in the admin menu. If " -"an existing top level item is supplied here, the post type will be added as " -"a submenu item under it." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:762 -msgid "Admin Menu Parent" -msgstr "" - -#. translators: %s = "dashicon class name", link to the WordPress dashicon -#. documentation. -#: includes/admin/views/acf-post-type/advanced-settings.php:750 -msgid "" -"The icon used for the post type menu item in the admin dashboard. Can be a " -"URL or %s to use for the icon." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:745 -msgid "Dashicon class name" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:734 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:734 -msgid "Admin editor navigation in the sidebar menu." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:733 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:733 -msgid "Show In Admin Menu" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:720 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:719 -msgid "Items can be edited and managed in the admin dashboard." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:719 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:718 -msgid "Show In UI" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:689 -msgid "A link to a post." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:688 -msgid "Description for a navigation link block variation." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:687 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:702 -msgid "Item Link Description" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:683 -msgid "A link to a %s." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:668 -msgid "Post Link" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:667 -msgid "Title for a navigation link block variation." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:666 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:681 -msgid "Item Link" -msgstr "" - -#. translators: %s Singular form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:663 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:678 -msgid "%s Link" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:648 -msgid "Post updated." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:647 -msgid "In the editor notice after an item is updated." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:646 -msgid "Item Updated" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:643 -msgid "%s updated." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:628 -msgid "Post scheduled." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:627 -msgid "In the editor notice after scheduling an item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:626 -msgid "Item Scheduled" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:623 -msgid "%s scheduled." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:608 -msgid "Post reverted to draft." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:607 -msgid "In the editor notice after reverting an item to draft." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:606 -msgid "Item Reverted To Draft" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:603 -msgid "%s reverted to draft." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:588 -msgid "Post published privately." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:587 -msgid "In the editor notice after publishing a private item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:586 -msgid "Item Published Privately" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:583 -msgid "%s published privately." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:568 -msgid "Post published." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:567 -msgid "In the editor notice after publishing an item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:566 -msgid "Item Published" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:563 -msgid "%s published." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:548 -msgid "Posts list" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:547 -msgid "Used by screen readers for the items list on the post type list screen." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:546 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:640 -msgid "Items List" -msgstr "" - -#. translators: %s Plural form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:543 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:637 -msgid "%s list" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:528 -msgid "Posts list navigation" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:527 -msgid "" -"Used by screen readers for the filter list pagination on the post type list " -"screen." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:526 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:620 -msgid "Items List Navigation" -msgstr "" - -#. translators: %s Plural form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:523 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:617 -msgid "%s list navigation" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:507 -msgid "Filter posts by date" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:506 -msgid "" -"Used by screen readers for the filter by date heading on the post type list " -"screen." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:505 -msgid "Filter Items By Date" -msgstr "" - -#. translators: %s Plural form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:501 -msgid "Filter %s by date" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:486 -msgid "Filter posts list" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:485 -msgid "" -"Used by screen readers for the filter links heading on the post type list " -"screen." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:484 -msgid "Filter Items List" -msgstr "" - -#. translators: %s Plural form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:480 -msgid "Filter %s list" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:464 -msgid "In the media modal showing all media uploaded to this item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:463 -msgid "Uploaded To This Item" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:459 -msgid "Uploaded to this %s" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:444 -msgid "Insert into post" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:443 -msgid "As the button label when adding media to content." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:442 -msgid "Insert Into Media Button" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:438 -msgid "Insert into %s" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:423 -msgid "Use as featured image" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:422 -msgid "" -"As the button label for selecting to use an image as the featured image." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:421 -msgid "Use Featured Image" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:408 -msgid "Remove featured image" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:407 -msgid "As the button label when removing the featured image." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:406 -msgid "Remove Featured Image" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:393 -msgid "Set featured image" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:392 -msgid "As the button label when setting the featured image." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:391 -msgid "Set Featured Image" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:378 -msgid "Featured image" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:377 -msgid "In the editor used for the title of the featured image meta box." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:376 -msgid "Featured Image Meta Box" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:363 -msgid "Post Attributes" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:362 -msgid "In the editor used for the title of the post attributes meta box." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:361 -msgid "Attributes Meta Box" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:358 -msgid "%s Attributes" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:343 -msgid "Post Archives" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:342 -msgid "" -"Adds 'Post Type Archive' items with this label to the list of posts shown " -"when adding items to an existing menu in a CPT with archives enabled. Only " -"appears when editing menus in 'Live Preview' mode and a custom archive slug " -"has been provided." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:341 -msgid "Archives Nav Menu" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:338 -msgid "%s Archives" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:323 -msgid "No posts found in Trash" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:322 -msgid "" -"At the top of the post type list screen when there are no posts in the trash." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:321 -msgid "No Items Found in Trash" -msgstr "" - -#. translators: %s Plural form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:317 -msgid "No %s found in Trash" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:302 -msgid "No posts found" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:301 -msgid "" -"At the top of the post type list screen when there are no posts to display." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:300 -msgid "No Items Found" -msgstr "" - -#. translators: %s Plural form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:296 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:480 -msgid "No %s found" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:281 -msgid "Search Posts" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:280 -msgid "At the top of the items screen when searching for an item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:279 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:345 -msgid "Search Items" -msgstr "" - -#. translators: %s Singular form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:276 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:342 -msgid "Search %s" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:261 -msgid "Parent Page:" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:260 -msgid "For hierarchical types in the post type list screen." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:259 -msgid "Parent Item Prefix" -msgstr "" - -#. translators: %s Singular form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:256 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:318 -msgid "Parent %s:" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:241 -msgid "New Post" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:239 -msgid "New Item" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:236 -msgid "New %s" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:206 -msgid "Add New Post" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:205 -msgid "At the top of the editor screen when adding a new item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:204 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:256 -msgid "Add New Item" -msgstr "" - -#. translators: %s Singular form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:201 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:253 -msgid "Add New %s" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:186 -msgid "View Posts" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:185 -msgid "" -"Appears in the admin bar in the 'All Posts' view, provided the post type " -"supports archives and the home page is not an archive of that post type." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:184 -msgid "View Items" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:166 -msgid "View Post" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:165 -msgid "In the admin bar to view item when editing it." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:164 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:216 -msgid "View Item" -msgstr "" - -#. translators: %s Singular form of post type name -#. translators: %s Plural form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:161 -#: includes/admin/views/acf-post-type/advanced-settings.php:181 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:213 -msgid "View %s" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:146 -msgid "Edit Post" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:145 -msgid "At the top of the editor screen when editing an item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:144 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:196 -msgid "Edit Item" -msgstr "" - -#. translators: %s Singular form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:141 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:193 -msgid "Edit %s" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:126 -msgid "All Posts" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:125 -#: includes/admin/views/acf-post-type/advanced-settings.php:220 -#: includes/admin/views/acf-post-type/advanced-settings.php:240 -msgid "In the post type submenu in the admin dashboard." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:124 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:176 -msgid "All Items" -msgstr "" - -#. translators: %s Plural form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:121 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:173 -msgid "All %s" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:105 -msgid "Admin menu name for the post type." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:104 -msgid "Menu Name" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:90 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:142 -msgid "Regenerate all labels using the Singular and Plural labels" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:88 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:140 -msgid "Regenerate" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:79 -msgid "Active post types are enabled and registered with WordPress." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:63 -msgid "A descriptive summary of the post type." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:48 -msgid "Add Custom" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:42 -msgid "Enable various features in the content editor." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:31 -msgid "Post Formats" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:25 -msgid "Editor" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:24 -msgid "Trackbacks" -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:87 -msgid "Select existing taxonomies to classify items of the post type." -msgstr "" - -#: includes/admin/views/acf-field-group/field.php:145 -msgid "Browse Fields" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:292 -msgid "Nothing to import" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:287 -msgid ". The Custom Post Type UI plugin can be deactivated." -msgstr "" - -#. translators: %d - number of items imported from CPTUI -#: includes/admin/tools/class-acf-admin-tool-import.php:278 -msgid "Imported %d item from Custom Post Type UI -" -msgid_plural "Imported %d items from Custom Post Type UI -" -msgstr[0] "" -msgstr[1] "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:262 -msgid "Failed to import taxonomies." -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:244 -msgid "Failed to import post types." -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:233 -msgid "Nothing from Custom Post Type UI plugin selected for import." -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:209 -msgid "Imported 1 item" -msgid_plural "Imported %s items" -msgstr[0] "" -msgstr[1] "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:122 -msgid "" -"Importing a Post Type or Taxonomy with the same key as one that already " -"exists will overwrite the settings for the existing Post Type or Taxonomy " -"with those of the import." -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:111 -#: includes/admin/tools/class-acf-admin-tool-import.php:127 -msgid "Import from Custom Post Type UI" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:412 -msgid "" -"The following code can be used to register a local version of the selected " -"items. Storing field groups, post types, or taxonomies locally can provide " -"many benefits such as faster load times, version control & dynamic fields/" -"settings. Simply copy and paste the following code to your theme's functions." -"php file or include it within an external file, then deactivate or delete " -"the items from the ACF admin." -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:411 -msgid "Export - Generate PHP" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:384 -msgid "Export" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:276 -msgid "Select Taxonomies" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:254 -msgid "Select Post Types" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:167 -msgid "Exported 1 item." -msgid_plural "Exported %s items." -msgstr[0] "" -msgstr[1] "" - -#: includes/admin/post-types/admin-taxonomy.php:129 -#: assets/build/js/acf-internal-post-type.js:182 -#: assets/build/js/acf-internal-post-type.js:256 -msgid "Category" -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:127 -#: assets/build/js/acf-internal-post-type.js:179 -#: assets/build/js/acf-internal-post-type.js:253 -msgid "Tag" -msgstr "" - -#. translators: %s taxonomy name -#: includes/admin/post-types/admin-taxonomy.php:82 -msgid "%s taxonomy created" -msgstr "" - -#. translators: %s taxonomy name -#: includes/admin/post-types/admin-taxonomy.php:76 -msgid "%s taxonomy updated" -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:56 -msgid "Taxonomy draft updated." -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:55 -msgid "Taxonomy scheduled for." -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:54 -msgid "Taxonomy submitted." -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:53 -msgid "Taxonomy saved." -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:49 -msgid "Taxonomy deleted." -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:48 -msgid "Taxonomy updated." -msgstr "" - -#: includes/admin/post-types/admin-taxonomies.php:377 -#: includes/admin/post-types/admin-taxonomy.php:157 -msgid "" -"This taxonomy could not be registered because its key is in use by another " -"taxonomy registered by another plugin or theme." -msgstr "" - -#. translators: %s number of taxonomies synchronized -#: includes/admin/post-types/admin-taxonomies.php:359 -msgid "Taxonomy synchronized." -msgid_plural "%s taxonomies synchronized." -msgstr[0] "" -msgstr[1] "" - -#. translators: %s number of taxonomies duplicated -#: includes/admin/post-types/admin-taxonomies.php:352 -msgid "Taxonomy duplicated." -msgid_plural "%s taxonomies duplicated." -msgstr[0] "" -msgstr[1] "" - -#. translators: %s number of taxonomies deactivated -#: includes/admin/post-types/admin-taxonomies.php:345 -msgid "Taxonomy deactivated." -msgid_plural "%s taxonomies deactivated." -msgstr[0] "" -msgstr[1] "" - -#. translators: %s number of taxonomies activated -#: includes/admin/post-types/admin-taxonomies.php:338 -msgid "Taxonomy activated." -msgid_plural "%s taxonomies activated." -msgstr[0] "" -msgstr[1] "" - -#: includes/admin/post-types/admin-taxonomies.php:139 -msgid "Terms" -msgstr "" - -#. translators: %s number of post types synchronized -#: includes/admin/post-types/admin-post-types.php:352 -msgid "Post type synchronized." -msgid_plural "%s post types synchronized." -msgstr[0] "" -msgstr[1] "" - -#. translators: %s number of post types duplicated -#: includes/admin/post-types/admin-post-types.php:345 -msgid "Post type duplicated." -msgid_plural "%s post types duplicated." -msgstr[0] "" -msgstr[1] "" - -#. translators: %s number of post types deactivated -#: includes/admin/post-types/admin-post-types.php:338 -msgid "Post type deactivated." -msgid_plural "%s post types deactivated." -msgstr[0] "" -msgstr[1] "" - -#. translators: %s number of post types activated -#: includes/admin/post-types/admin-post-types.php:331 -msgid "Post type activated." -msgid_plural "%s post types activated." -msgstr[0] "" -msgstr[1] "" - -#: includes/admin/post-types/admin-post-types.php:112 -#: includes/admin/post-types/admin-taxonomies.php:137 -#: includes/admin/tools/class-acf-admin-tool-import.php:82 -#: includes/admin/views/acf-taxonomy/basic-settings.php:82 -#: includes/post-types/class-acf-post-type.php:91 -msgid "Post Types" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:162 -#: includes/admin/post-types/admin-taxonomy.php:164 -msgid "Advanced Settings" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:161 -#: includes/admin/post-types/admin-taxonomy.php:163 -msgid "Basic Settings" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:155 -#: includes/admin/post-types/admin-post-types.php:370 -msgid "" -"This post type could not be registered because its key is in use by another " -"post type registered by another plugin or theme." -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:128 -#: assets/build/js/acf-internal-post-type.js:176 -#: assets/build/js/acf-internal-post-type.js:250 -msgid "Pages" -msgstr "" - -#: includes/admin/admin-internal-post-type.php:355 -msgid "Link Existing Field Groups" -msgstr "" - -#. translators: %s post type name -#: includes/admin/post-types/admin-post-type.php:80 -msgid "%s post type created" -msgstr "" - -#. translators: %s taxonomy name -#: includes/admin/post-types/admin-taxonomy.php:78 -msgid "Add fields to %s" -msgstr "" - -#. translators: %s post type name -#: includes/admin/post-types/admin-post-type.php:76 -msgid "%s post type updated" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:56 -msgid "Post type draft updated." -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:55 -msgid "Post type scheduled for." -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:54 -msgid "Post type submitted." -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:53 -msgid "Post type saved." -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:50 -msgid "Post type updated." -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:49 -msgid "Post type deleted." -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:120 -#: assets/build/js/acf-field-group.js:1146 -#: assets/build/js/acf-field-group.js:1366 -msgid "Type to search..." -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:105 -#: assets/build/js/acf-field-group.js:1172 -#: assets/build/js/acf-field-group.js:2319 -#: assets/build/js/acf-field-group.js:1414 -#: assets/build/js/acf-field-group.js:2727 -msgid "PRO Only" -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:97 -#: assets/build/js/acf-internal-post-type.js:308 -#: assets/build/js/acf-internal-post-type.js:417 -msgid "Field groups linked successfully." -msgstr "" - -#. translators: %s - URL to ACF tools page. -#: includes/admin/admin.php:195 -msgid "" -"Import Post Types and Taxonomies registered with Custom Post Type UI and " -"manage them with ACF. Get Started." -msgstr "" - -#: includes/admin/admin.php:48 includes/admin/admin.php:267 -msgid "ACF" -msgstr "" - -#: includes/admin/admin-internal-post-type.php:322 -msgid "taxonomy" -msgstr "" - -#: includes/admin/admin-internal-post-type.php:322 -msgid "post type" -msgstr "" - -#: includes/admin/admin-internal-post-type.php:346 -msgid "Done" -msgstr "" - -#: includes/admin/admin-internal-post-type.php:332 -msgid "Field Group(s)" -msgstr "" - -#: includes/admin/admin-internal-post-type.php:331 -msgid "Select one or many field groups..." -msgstr "" - -#: includes/admin/admin-internal-post-type.php:330 -msgid "Please select the field groups to link." -msgstr "" - -#: includes/admin/admin-internal-post-type.php:288 -msgid "Field group linked successfully." -msgid_plural "Field groups linked successfully." -msgstr[0] "" -msgstr[1] "" - -#: includes/admin/admin-internal-post-type-list.php:261 -#: includes/admin/post-types/admin-post-types.php:371 -#: includes/admin/post-types/admin-taxonomies.php:378 -msgctxt "post status" -msgid "Registration Failed" -msgstr "" - -#: includes/admin/admin-internal-post-type-list.php:260 -msgid "" -"This item could not be registered because its key is in use by another item " -"registered by another plugin or theme." -msgstr "" - -#: includes/acf-internal-post-type-functions.php:482 -#: includes/acf-internal-post-type-functions.php:511 -msgid "REST API" -msgstr "" - -#: includes/acf-internal-post-type-functions.php:481 -#: includes/acf-internal-post-type-functions.php:510 -#: includes/acf-internal-post-type-functions.php:537 -msgid "Permissions" -msgstr "" - -#: includes/acf-internal-post-type-functions.php:480 -#: includes/acf-internal-post-type-functions.php:509 -msgid "URLs" -msgstr "" - -#: includes/acf-internal-post-type-functions.php:479 -#: includes/acf-internal-post-type-functions.php:508 -#: includes/acf-internal-post-type-functions.php:535 -msgid "Visibility" -msgstr "" - -#: includes/acf-internal-post-type-functions.php:478 -#: includes/acf-internal-post-type-functions.php:507 -#: includes/acf-internal-post-type-functions.php:536 -msgid "Labels" -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:269 -msgid "Field Settings Tabs" -msgstr "" - -#. Author URI of the plugin -msgid "" -"https://wpengine.com/?utm_source=wordpress." -"org&utm_medium=referral&utm_campaign=plugin_directory&utm_content=advanced_custom_fields" -msgstr "" - -#: includes/api/api-template.php:867 -msgid "[ACF shortcode value disabled for preview]" -msgstr "" - -#: includes/admin/admin-internal-post-type.php:298 -#: includes/admin/post-types/admin-field-group.php:571 -msgid "Close Modal" -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:96 -#: assets/build/js/acf-field-group.js:1670 -#: assets/build/js/acf-field-group.js:1993 -msgid "Field moved to other group" -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:95 -#: assets/build/js/acf.js:1437 assets/build/js/acf.js:1517 -msgid "Close modal" -msgstr "" - -#: includes/fields/class-acf-field-tab.php:125 -msgid "Start a new group of tabs at this tab." -msgstr "" - -#: includes/fields/class-acf-field-tab.php:124 -msgid "New Tab Group" -msgstr "" - -#: includes/fields/class-acf-field-select.php:451 -#: includes/fields/class-acf-field-true_false.php:200 -msgid "Use a stylized checkbox using select2" -msgstr "" - -#: includes/fields/class-acf-field-radio.php:260 -msgid "Save Other Choice" -msgstr "" - -#: includes/fields/class-acf-field-radio.php:249 -msgid "Allow Other Choice" -msgstr "" - -#: includes/fields/class-acf-field-checkbox.php:450 -msgid "Add Toggle All" -msgstr "" - -#: includes/fields/class-acf-field-checkbox.php:409 -msgid "Save Custom Values" -msgstr "" - -#: includes/fields/class-acf-field-checkbox.php:398 -msgid "Allow Custom Values" -msgstr "" - -#: includes/fields/class-acf-field-checkbox.php:148 -msgid "Checkbox custom values cannot be empty. Uncheck any empty values." -msgstr "" - -#: includes/admin/views/global/navigation.php:248 -msgid "Updates" -msgstr "" - -#: includes/admin/views/global/navigation.php:176 -msgid "Advanced Custom Fields logo" -msgstr "" - -#: includes/admin/views/global/form-top.php:89 -msgid "Save Changes" -msgstr "" - -#: includes/admin/views/global/form-top.php:76 -msgid "Field Group Title" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:704 -#: includes/admin/views/global/form-top.php:3 -msgid "Add title" -msgstr "" - -#. translators: %s url to getting started guide -#: includes/admin/views/acf-field-group/list-empty.php:20 -#: includes/admin/views/acf-post-type/list-empty.php:12 -#: includes/admin/views/acf-taxonomy/list-empty.php:12 -#: includes/admin/views/options-page-preview.php:13 -msgid "" -"New to ACF? Take a look at our getting " -"started guide." -msgstr "" - -#: includes/admin/views/acf-field-group/list-empty.php:15 -msgid "Add Field Group" -msgstr "" - -#. translators: %s url to creating a field group page -#: includes/admin/views/acf-field-group/list-empty.php:10 -msgid "" -"ACF uses field groups to group custom " -"fields together, and then attach those fields to edit screens." -msgstr "" - -#: includes/admin/views/acf-field-group/list-empty.php:5 -msgid "Add Your First Field Group" -msgstr "" - -#: includes/admin/admin-options-pages-preview.php:28 -#: includes/admin/views/acf-field-group/pro-features.php:54 -#: includes/admin/views/global/navigation.php:86 -#: includes/admin/views/global/navigation.php:250 -msgid "Options Pages" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:50 -msgid "ACF Blocks" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:58 -msgid "Gallery Field" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:38 -msgid "Flexible Content Field" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:42 -msgid "Repeater Field" -msgstr "" - -#: includes/admin/views/global/navigation.php:212 -msgid "Unlock Extra Features with ACF PRO" -msgstr "" - -#: includes/admin/views/acf-field-group/options.php:267 -msgid "Delete Field Group" -msgstr "" - -#. translators: 1: Post creation date 2: Post creation time -#: includes/admin/views/acf-field-group/options.php:261 -msgid "Created on %1$s at %2$s" -msgstr "" - -#: includes/acf-field-group-functions.php:497 -msgid "Group Settings" -msgstr "" - -#: includes/acf-field-group-functions.php:495 -msgid "Location Rules" -msgstr "" - -#. translators: %s url to field types list -#: includes/admin/views/acf-field-group/fields.php:72 -msgid "" -"Choose from over 30 field types. Learn " -"more." -msgstr "" - -#: includes/admin/views/acf-field-group/fields.php:65 -msgid "" -"Get started creating new custom fields for your posts, pages, custom post " -"types and other WordPress content." -msgstr "" - -#: includes/admin/views/acf-field-group/fields.php:64 -msgid "Add Your First Field" -msgstr "" - -#. translators: A symbol (or text, if not available in your locale) meaning -#. "Order Number", in terms of positional placement. -#: includes/admin/views/acf-field-group/fields.php:43 -msgid "#" -msgstr "" - -#: includes/admin/views/acf-field-group/fields.php:33 -#: includes/admin/views/acf-field-group/fields.php:67 -#: includes/admin/views/acf-field-group/fields.php:103 -#: includes/admin/views/global/form-top.php:85 -msgid "Add Field" -msgstr "" - -#: includes/acf-field-group-functions.php:496 includes/fields.php:410 -msgid "Presentation" -msgstr "" - -#: includes/fields.php:409 -msgid "Validation" -msgstr "" - -#: includes/acf-internal-post-type-functions.php:477 -#: includes/acf-internal-post-type-functions.php:506 includes/fields.php:408 -msgid "General" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:70 -msgid "Import JSON" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:392 -msgid "Export As JSON" -msgstr "" - -#. translators: %s number of field groups deactivated -#: includes/admin/post-types/admin-field-groups.php:367 -msgid "Field group deactivated." -msgid_plural "%s field groups deactivated." -msgstr[0] "" -msgstr[1] "" - -#. translators: %s number of field groups activated -#: includes/admin/post-types/admin-field-groups.php:360 -msgid "Field group activated." -msgid_plural "%s field groups activated." -msgstr[0] "" -msgstr[1] "" - -#: includes/admin/admin-internal-post-type-list.php:452 -#: includes/admin/admin-internal-post-type-list.php:478 -msgid "Deactivate" -msgstr "" - -#: includes/admin/admin-internal-post-type-list.php:452 -msgid "Deactivate this item" -msgstr "" - -#: includes/admin/admin-internal-post-type-list.php:448 -#: includes/admin/admin-internal-post-type-list.php:477 -msgid "Activate" -msgstr "" - -#: includes/admin/admin-internal-post-type-list.php:448 -msgid "Activate this item" -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:92 -#: assets/build/js/acf-field-group.js:2812 -#: assets/build/js/acf-field-group.js:3313 -msgid "Move field group to trash?" -msgstr "" - -#: acf.php:497 includes/admin/admin-internal-post-type-list.php:248 -#: includes/admin/post-types/admin-field-group.php:297 -#: includes/admin/post-types/admin-post-type.php:295 -#: includes/admin/post-types/admin-taxonomy.php:297 -msgctxt "post status" -msgid "Inactive" -msgstr "" - -#. Author of the plugin -msgid "WP Engine" -msgstr "" - -#: acf.php:555 -msgid "" -"Advanced Custom Fields and Advanced Custom Fields PRO should not be active " -"at the same time. We've automatically deactivated Advanced Custom Fields PRO." -msgstr "" - -#: acf.php:553 -msgid "" -"Advanced Custom Fields and Advanced Custom Fields PRO should not be active " -"at the same time. We've automatically deactivated Advanced Custom Fields." -msgstr "" - -#: includes/acf-value-functions.php:374 -msgid "" -"%1$s - We've detected one or more calls to retrieve ACF " -"field values before ACF has been initialized. This is not supported and can " -"result in malformed or missing data. Learn how to fix this." -msgstr "" -"%1$s - Hemos detectado una o más llamadas para obtener " -"valores de campo de ACF antes de que ACF se haya iniciado. Esto no es " -"compatible y puede ocasionar datos mal formados o faltantes. Aprende cómo corregirlo." - -#: includes/fields/class-acf-field-user.php:551 -msgid "%1$s must have a user with the %2$s role." -msgid_plural "%1$s must have a user with one of the following roles: %2$s" -msgstr[0] "%1$s debe tener un usuario con el perfil %2$s." -msgstr[1] "%1$s debe tener un usuario con uno de los siguientes perfiles: %2$s" - -#: includes/fields/class-acf-field-user.php:542 -msgid "%1$s must have a valid user ID." -msgstr "%1$s debe tener un ID de usuario válido." - -#: includes/fields/class-acf-field-user.php:380 -msgid "Invalid request." -msgstr "Petición no válida." - -#: includes/fields/class-acf-field-select.php:684 -msgid "%1$s is not one of %2$s" -msgstr "%1$s no es ninguna de las siguientes %2$s" - -#: includes/fields/class-acf-field-post_object.php:700 -msgid "%1$s must have term %2$s." -msgid_plural "%1$s must have one of the following terms: %2$s" -msgstr[0] "%1$s debe tener un término %2$s." -msgstr[1] "%1$s debe tener uno de los siguientes términos: %2$s" - -#: includes/fields/class-acf-field-post_object.php:684 -msgid "%1$s must be of post type %2$s." -msgid_plural "%1$s must be of one of the following post types: %2$s" -msgstr[0] "%1$s debe ser del tipo de contenido %2$s." -msgstr[1] "%1$s debe ser de uno de los siguientes tipos de contenido: %2$s" - -#: includes/fields/class-acf-field-post_object.php:675 -msgid "%1$s must have a valid post ID." -msgstr "%1$s debe tener un ID de entrada válido." - -#: includes/fields/class-acf-field-file.php:475 -msgid "%s requires a valid attachment ID." -msgstr "%s necesita un ID de adjunto válido." - -#: includes/admin/views/acf-field-group/options.php:233 -msgid "Show in REST API" -msgstr "Mostrar en la API REST" - -#: includes/fields/class-acf-field-color_picker.php:168 -msgid "Enable Transparency" -msgstr "Activar la transparencia" - -#: includes/fields/class-acf-field-color_picker.php:187 -msgid "RGBA Array" -msgstr "Array RGBA" - -#: includes/fields/class-acf-field-color_picker.php:98 -msgid "RGBA String" -msgstr "Cadena RGBA" - -#: includes/fields/class-acf-field-color_picker.php:97 -#: includes/fields/class-acf-field-color_picker.php:186 -msgid "Hex String" -msgstr "Cadena hexadecimal" - -#: includes/admin/views/browse-fields-modal.php:65 -msgid "Upgrade to PRO" -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:297 -#: includes/admin/post-types/admin-post-type.php:295 -#: includes/admin/post-types/admin-taxonomy.php:297 -msgctxt "post status" -msgid "Active" -msgstr "Activo" - -#: includes/fields/class-acf-field-email.php:181 -msgid "'%s' is not a valid email address" -msgstr "«%s» no es una dirección de correo electrónico válida" - -#: includes/fields/class-acf-field-color_picker.php:76 -msgid "Color value" -msgstr "Valor del color" - -#: includes/fields/class-acf-field-color_picker.php:74 -msgid "Select default color" -msgstr "Seleccionar el color por defecto" - -#: includes/fields/class-acf-field-color_picker.php:72 -msgid "Clear color" -msgstr "Vaciar el color" - -#: includes/acf-wp-functions.php:90 -msgid "Blocks" -msgstr "Bloques" - -#: includes/acf-wp-functions.php:86 -msgid "Options" -msgstr "Opciones" - -#: includes/acf-wp-functions.php:82 -msgid "Users" -msgstr "Usuarios" - -#: includes/acf-wp-functions.php:78 -msgid "Menu items" -msgstr "Elementos del menú" - -#: includes/acf-wp-functions.php:70 -msgid "Widgets" -msgstr "Widgets" - -#: includes/acf-wp-functions.php:62 -msgid "Attachments" -msgstr "Adjuntos" - -#: includes/acf-wp-functions.php:57 -#: includes/admin/post-types/admin-post-types.php:137 -#: includes/admin/post-types/admin-taxonomies.php:112 -#: includes/admin/tools/class-acf-admin-tool-import.php:93 -#: includes/admin/views/acf-post-type/basic-settings.php:86 -#: includes/post-types/class-acf-taxonomy.php:90 -#: includes/post-types/class-acf-taxonomy.php:91 -msgid "Taxonomies" -msgstr "Taxonomías" - -#: includes/acf-wp-functions.php:44 -#: includes/admin/post-types/admin-post-type.php:126 -#: includes/admin/post-types/admin-post-types.php:139 -#: includes/admin/views/acf-post-type/advanced-settings.php:106 -#: assets/build/js/acf-internal-post-type.js:173 -#: assets/build/js/acf-internal-post-type.js:247 -msgid "Posts" -msgstr "Entradas" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:76 -msgid "Last updated: %s" -msgstr "Última actualización: %s" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:70 -msgid "Sorry, this post is unavailable for diff comparison." -msgstr "" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:42 -msgid "Invalid field group parameter(s)." -msgstr "Parámetro(s) de grupo de campos no válido(s)" - -#: includes/admin/admin-internal-post-type-list.php:413 -msgid "Awaiting save" -msgstr "Esperando el guardado" - -#: includes/admin/admin-internal-post-type-list.php:410 -msgid "Saved" -msgstr "Guardado" - -#: includes/admin/admin-internal-post-type-list.php:406 -#: includes/admin/tools/class-acf-admin-tool-import.php:49 -msgid "Import" -msgstr "Importar" - -#: includes/admin/admin-internal-post-type-list.php:402 -msgid "Review changes" -msgstr "Revisar cambios" - -#: includes/admin/admin-internal-post-type-list.php:378 -msgid "Located in: %s" -msgstr "Localizado en: %s" - -#: includes/admin/admin-internal-post-type-list.php:375 -msgid "Located in plugin: %s" -msgstr "Localizado en el plugin: %s" - -#: includes/admin/admin-internal-post-type-list.php:372 -msgid "Located in theme: %s" -msgstr "Localizado en el tema: %s" - -#: includes/admin/post-types/admin-field-groups.php:261 -msgid "Various" -msgstr "Varios" - -#: includes/admin/admin-internal-post-type-list.php:216 -#: includes/admin/admin-internal-post-type-list.php:485 -msgid "Sync changes" -msgstr "Sincronizar cambios" - -#: includes/admin/admin-internal-post-type-list.php:215 -msgid "Loading diff" -msgstr "Cargando diff" - -#: includes/admin/admin-internal-post-type-list.php:214 -msgid "Review local JSON changes" -msgstr "Revisar cambios de JSON local" - -#: includes/admin/admin.php:170 -msgid "Visit website" -msgstr "Visitar web" - -#: includes/admin/admin.php:169 -msgid "View details" -msgstr "Ver detalles" - -#: includes/admin/admin.php:168 -msgid "Version %s" -msgstr "Versión %s" - -#: includes/admin/admin.php:167 -msgid "Information" -msgstr "Información" - -#: includes/admin/admin.php:158 -msgid "" -"Help Desk. The support professionals on " -"our Help Desk will assist with your more in depth, technical challenges." -msgstr "" -"Centro de ayuda. Los profesionales de " -"soporte de nuestro centro de ayuda te ayudarán más en profundidad con los " -"retos técnicos." - -#: includes/admin/admin.php:154 -msgid "" -"Discussions. We have an active and " -"friendly community on our Community Forums who may be able to help you " -"figure out the 'how-tos' of the ACF world." -msgstr "" - -#: includes/admin/admin.php:150 -msgid "" -"Documentation. Our extensive " -"documentation contains references and guides for most situations you may " -"encounter." -msgstr "" -"Documentación. Nuestra amplia " -"documentación contiene referencias y guías para la mayoría de situaciones en " -"las que puedas encontrarte." - -#: includes/admin/admin.php:147 -msgid "" -"We are fanatical about support, and want you to get the best out of your " -"website with ACF. If you run into any difficulties, there are several places " -"you can find help:" -msgstr "" -"Somos fanáticos del soporte, y queremos que consigas el máximo en tu web con " -"ACF:" - -#: includes/admin/admin.php:144 includes/admin/admin.php:146 -msgid "Help & Support" -msgstr "Ayuda y soporte" - -#: includes/admin/admin.php:135 -msgid "" -"Please use the Help & Support tab to get in touch should you find yourself " -"requiring assistance." -msgstr "" -"Por favor, usa la pestaña de ayuda y soporte para contactar si descubres que " -"necesitas ayuda." - -#: includes/admin/admin.php:132 -msgid "" -"Before creating your first Field Group, we recommend first reading our Getting started guide to familiarize " -"yourself with the plugin's philosophy and best practises." -msgstr "" -"Antes de crear tu primer grupo de campos te recomendamos que primero leas " -"nuestra guía de primeros pasos para " -"familiarizarte con la filosofía y buenas prácticas del plugin." - -#: includes/admin/admin.php:130 -msgid "" -"The Advanced Custom Fields plugin provides a visual form builder to " -"customize WordPress edit screens with extra fields, and an intuitive API to " -"display custom field values in any theme template file." -msgstr "" -"El plugin Advanced Custom Fields ofrece un constructor visual con el que " -"personalizar las pantallas de WordPress con campos adicionales, y una API " -"intuitiva parra mostrar valores de campos personalizados en cualquier " -"archivo de plantilla de cualquier tema." - -#: includes/admin/admin.php:127 includes/admin/admin.php:129 -msgid "Overview" -msgstr "Resumen" - -#: includes/locations.php:36 -msgid "Location type \"%s\" is already registered." -msgstr "El tipo de ubicación «%s» ya está registrado." - -#: includes/locations.php:25 -msgid "Class \"%s\" does not exist." -msgstr "La clase «%s» no existe." - -#: includes/ajax/class-acf-ajax.php:157 -msgid "Invalid nonce." -msgstr "Nonce no válido." - -#: includes/fields/class-acf-field-user.php:375 -msgid "Error loading field." -msgstr "Error al cargar el campo." - -#: assets/build/js/acf-input.js:2750 assets/build/js/acf-input.js:2819 -#: assets/build/js/acf-input.js:2926 assets/build/js/acf-input.js:3000 -msgid "Location not found: %s" -msgstr "Ubicación no encontrada: %s" - -#: includes/forms/form-user.php:353 -msgid "Error: %s" -msgstr "Error: %s" - -#: includes/locations/class-acf-location-widget.php:22 -msgid "Widget" -msgstr "Widget" - -#: includes/locations/class-acf-location-user-role.php:24 -msgid "User Role" -msgstr "Rol de usuario" - -#: includes/locations/class-acf-location-comment.php:22 -msgid "Comment" -msgstr "Comentario" - -#: includes/locations/class-acf-location-post-format.php:22 -msgid "Post Format" -msgstr "Formato de entrada" - -#: includes/locations/class-acf-location-nav-menu-item.php:22 -msgid "Menu Item" -msgstr "Elemento de menú" - -#: includes/locations/class-acf-location-post-status.php:22 -msgid "Post Status" -msgstr "Estado de entrada" - -#: includes/acf-wp-functions.php:74 -#: includes/locations/class-acf-location-nav-menu.php:89 -msgid "Menus" -msgstr "Menús" - -#: includes/locations/class-acf-location-nav-menu.php:80 -msgid "Menu Locations" -msgstr "Ubicaciones de menú" - -#: includes/locations/class-acf-location-nav-menu.php:22 -msgid "Menu" -msgstr "Menú" - -#: includes/locations/class-acf-location-post-taxonomy.php:22 -msgid "Post Taxonomy" -msgstr "Taxonomía de entrada" - -#: includes/locations/class-acf-location-page-type.php:114 -msgid "Child Page (has parent)" -msgstr "Página hija (tiene superior)" - -#: includes/locations/class-acf-location-page-type.php:113 -msgid "Parent Page (has children)" -msgstr "Página superior (con hijos)" - -#: includes/locations/class-acf-location-page-type.php:112 -msgid "Top Level Page (no parent)" -msgstr "Página de nivel superior (sin padres)" - -#: includes/locations/class-acf-location-page-type.php:111 -msgid "Posts Page" -msgstr "Página de entradas" - -#: includes/locations/class-acf-location-page-type.php:110 -msgid "Front Page" -msgstr "Página de inicio" - -#: includes/locations/class-acf-location-page-type.php:22 -msgid "Page Type" -msgstr "Tipo de página" - -#: includes/locations/class-acf-location-current-user.php:73 -msgid "Viewing back end" -msgstr "Viendo el escritorio" - -#: includes/locations/class-acf-location-current-user.php:72 -msgid "Viewing front end" -msgstr "Viendo la web" - -#: includes/locations/class-acf-location-current-user.php:71 -msgid "Logged in" -msgstr "Conectado" - -#: includes/locations/class-acf-location-current-user.php:22 -msgid "Current User" -msgstr "Usuario actual" - -#: includes/locations/class-acf-location-page-template.php:22 -msgid "Page Template" -msgstr "Plantilla de página" - -#: includes/locations/class-acf-location-user-form.php:74 -msgid "Register" -msgstr "Registro" - -#: includes/locations/class-acf-location-user-form.php:73 -msgid "Add / Edit" -msgstr "Añadir / Editar" - -#: includes/locations/class-acf-location-user-form.php:22 -msgid "User Form" -msgstr "Formulario de usuario" - -#: includes/locations/class-acf-location-page-parent.php:22 -msgid "Page Parent" -msgstr "Página superior" - -#: includes/locations/class-acf-location-current-user-role.php:77 -msgid "Super Admin" -msgstr "Super administrador" - -#: includes/locations/class-acf-location-current-user-role.php:22 -msgid "Current User Role" -msgstr "Rol del usuario actual" - -#: includes/locations/class-acf-location-page-template.php:73 -#: includes/locations/class-acf-location-post-template.php:85 -msgid "Default Template" -msgstr "Plantilla predeterminada" - -#: includes/locations/class-acf-location-post-template.php:22 -msgid "Post Template" -msgstr "Plantilla de entrada" - -#: includes/locations/class-acf-location-post-category.php:22 -msgid "Post Category" -msgstr "Categoría de entrada" - -#: includes/locations/class-acf-location-attachment.php:84 -msgid "All %s formats" -msgstr "Todo los formatos de %s" - -#: includes/locations/class-acf-location-attachment.php:22 -msgid "Attachment" -msgstr "Adjunto" - -#: includes/validation.php:366 -msgid "%s value is required" -msgstr "El valor de %s es obligatorio" - -#: includes/admin/views/acf-field-group/conditional-logic.php:59 -msgid "Show this field if" -msgstr "Mostrar este campo si" - -#: includes/admin/views/acf-field-group/conditional-logic.php:26 -#: includes/admin/views/acf-field-group/field.php:109 includes/fields.php:411 -msgid "Conditional Logic" -msgstr "Lógica condicional" - -#: includes/admin/views/acf-field-group/conditional-logic.php:156 -#: includes/admin/views/acf-field-group/location-rule.php:92 -msgid "and" -msgstr "y" - -#: includes/admin/post-types/admin-field-groups.php:123 -#: includes/admin/post-types/admin-post-types.php:143 -#: includes/admin/post-types/admin-taxonomies.php:143 -msgid "Local JSON" -msgstr "JSON Local" - -#: includes/admin/views/acf-field-group/pro-features.php:46 -msgid "Clone Field" -msgstr "Clonar campo" - -#: includes/admin/views/upgrade/notice.php:30 -msgid "" -"Please also check all premium add-ons (%s) are updated to the latest version." -msgstr "" -"Por favor, comprueba también que todas las extensiones premium (%s) estén " -"actualizados a la última versión." - -#: includes/admin/views/upgrade/notice.php:28 -msgid "" -"This version contains improvements to your database and requires an upgrade." -msgstr "" -"Esta versión contiene mejoras en su base de datos y requiere una " -"actualización." - -#: includes/admin/views/upgrade/notice.php:28 -msgid "Thank you for updating to %1$s v%2$s!" -msgstr "¡Gracias por actualizar a %1$s v%2$s!" - -#: includes/admin/views/upgrade/notice.php:27 -msgid "Database Upgrade Required" -msgstr "Es necesario actualizar la base de datos" - -#: includes/admin/post-types/admin-field-group.php:141 -#: includes/admin/views/upgrade/notice.php:18 -msgid "Options Page" -msgstr "Página de opciones" - -#: includes/admin/views/upgrade/notice.php:15 includes/fields.php:462 -msgid "Gallery" -msgstr "Galería" - -#: includes/admin/views/upgrade/notice.php:12 includes/fields.php:452 -msgid "Flexible Content" -msgstr "Contenido flexible" - -#: includes/admin/views/upgrade/notice.php:9 includes/fields.php:472 -msgid "Repeater" -msgstr "Repetidor" - -#: includes/admin/views/tools/tools.php:24 -msgid "Back to all tools" -msgstr "Volver a todas las herramientas" - -#: includes/admin/views/acf-field-group/options.php:195 -msgid "" -"If multiple field groups appear on an edit screen, the first field group's " -"options will be used (the one with the lowest order number)" -msgstr "" -"Si aparecen múltiples grupos de campos en una pantalla de edición, se " -"utilizarán las opciones del primer grupo (el que tenga el número de orden " -"menor)" - -#: includes/admin/views/acf-field-group/options.php:195 -msgid "Select items to hide them from the edit screen." -msgstr "" -"Selecciona los elementos que ocultar de la pantalla de edición." - -#: includes/admin/views/acf-field-group/options.php:194 -msgid "Hide on screen" -msgstr "Ocultar en pantalla" - -#: includes/admin/views/acf-field-group/options.php:186 -msgid "Send Trackbacks" -msgstr "Enviar trackbacks" - -#: includes/admin/post-types/admin-taxonomy.php:128 -#: includes/admin/views/acf-field-group/options.php:185 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:159 -#: assets/build/js/acf-internal-post-type.js:180 -#: assets/build/js/acf-internal-post-type.js:254 -msgid "Tags" -msgstr "Etiquetas" - -#: includes/admin/post-types/admin-taxonomy.php:130 -#: includes/admin/views/acf-field-group/options.php:184 -#: assets/build/js/acf-internal-post-type.js:183 -#: assets/build/js/acf-internal-post-type.js:257 -msgid "Categories" -msgstr "Categorías" - -#: includes/admin/views/acf-field-group/options.php:182 -#: includes/admin/views/acf-post-type/advanced-settings.php:28 -msgid "Page Attributes" -msgstr "Atributos de página" - -#: includes/admin/views/acf-field-group/options.php:181 -msgid "Format" -msgstr "Formato" - -#: includes/admin/views/acf-field-group/options.php:180 -#: includes/admin/views/acf-post-type/advanced-settings.php:22 -msgid "Author" -msgstr "Autor" - -#: includes/admin/views/acf-field-group/options.php:179 -msgid "Slug" -msgstr "Slug" - -#: includes/admin/views/acf-field-group/options.php:178 -#: includes/admin/views/acf-post-type/advanced-settings.php:27 -msgid "Revisions" -msgstr "Revisiones" - -#: includes/acf-wp-functions.php:66 -#: includes/admin/views/acf-field-group/options.php:177 -#: includes/admin/views/acf-post-type/advanced-settings.php:23 -msgid "Comments" -msgstr "Comentarios" - -#: includes/admin/views/acf-field-group/options.php:176 -msgid "Discussion" -msgstr "Discusión" - -#: includes/admin/views/acf-field-group/options.php:174 -#: includes/admin/views/acf-post-type/advanced-settings.php:26 -msgid "Excerpt" -msgstr "Extracto" - -#: includes/admin/views/acf-field-group/options.php:173 -msgid "Content Editor" -msgstr "Editor de contenido" - -#: includes/admin/views/acf-field-group/options.php:172 -msgid "Permalink" -msgstr "Enlace permanente" - -#: includes/admin/views/acf-field-group/options.php:250 -msgid "Shown in field group list" -msgstr "Mostrado en lista de grupos de campos" - -#: includes/admin/views/acf-field-group/options.php:157 -msgid "Field groups with a lower order will appear first" -msgstr "Los grupos de campos con menor orden aparecerán primero" - -#: includes/admin/views/acf-field-group/options.php:156 -msgid "Order No." -msgstr "Número de orden" - -#: includes/admin/views/acf-field-group/options.php:147 -msgid "Below fields" -msgstr "Debajo de los campos" - -#: includes/admin/views/acf-field-group/options.php:146 -msgid "Below labels" -msgstr "Debajo de las etiquetas" - -#: includes/admin/views/acf-field-group/options.php:139 -msgid "Instruction Placement" -msgstr "" - -#: includes/admin/views/acf-field-group/options.php:122 -msgid "Label Placement" -msgstr "" - -#: includes/admin/views/acf-field-group/options.php:110 -msgid "Side" -msgstr "Lateral" - -#: includes/admin/views/acf-field-group/options.php:109 -msgid "Normal (after content)" -msgstr "Normal (después del contenido)" - -#: includes/admin/views/acf-field-group/options.php:108 -msgid "High (after title)" -msgstr "Alta (después del título)" - -#: includes/admin/views/acf-field-group/options.php:101 -msgid "Position" -msgstr "Posición" - -#: includes/admin/views/acf-field-group/options.php:92 -msgid "Seamless (no metabox)" -msgstr "Directo (sin caja meta)" - -#: includes/admin/views/acf-field-group/options.php:91 -msgid "Standard (WP metabox)" -msgstr "Estándar (caja meta de WP)" - -#: includes/admin/views/acf-field-group/options.php:84 -msgid "Style" -msgstr "Estilo" - -#: includes/admin/views/acf-field-group/fields.php:55 -msgid "Type" -msgstr "Tipo" - -#: includes/admin/post-types/admin-field-groups.php:117 -#: includes/admin/post-types/admin-post-types.php:136 -#: includes/admin/post-types/admin-taxonomies.php:136 -#: includes/admin/views/acf-field-group/fields.php:54 -msgid "Key" -msgstr "Clave" - -#. translators: Hidden accessibility text for the positional order number of -#. the field. -#: includes/admin/views/acf-field-group/fields.php:48 -msgid "Order" -msgstr "Orden" - -#: includes/admin/views/acf-field-group/field.php:322 -msgid "Close Field" -msgstr "Cerrar campo" - -#: includes/admin/views/acf-field-group/field.php:253 -msgid "id" -msgstr "id" - -#: includes/admin/views/acf-field-group/field.php:237 -msgid "class" -msgstr "class" - -#: includes/admin/views/acf-field-group/field.php:279 -msgid "width" -msgstr "ancho" - -#: includes/admin/views/acf-field-group/field.php:273 -msgid "Wrapper Attributes" -msgstr "Atributos del contenedor" - -#: includes/admin/views/acf-field-group/field.php:196 -msgid "Required" -msgstr "" - -#: includes/admin/views/acf-field-group/field.php:221 -msgid "Instructions for authors. Shown when submitting data" -msgstr "" -"Instrucciones para los autores. Se muestra a la hora de enviar los datos" - -#: includes/admin/views/acf-field-group/field.php:220 -msgid "Instructions" -msgstr "Instrucciones" - -#: includes/admin/views/acf-field-group/field.php:129 -msgid "Field Type" -msgstr "Tipo de campo" - -#: includes/admin/views/acf-field-group/field.php:170 -msgid "Single word, no spaces. Underscores and dashes allowed" -msgstr "Una sola palabra, sin espacios. Se permiten guiones y guiones bajos" - -#: includes/admin/views/acf-field-group/field.php:169 -msgid "Field Name" -msgstr "Nombre del campo" - -#: includes/admin/views/acf-field-group/field.php:157 -msgid "This is the name which will appear on the EDIT page" -msgstr "Este es el nombre que aparecerá en la página EDITAR" - -#: includes/admin/views/acf-field-group/field.php:156 -#: includes/admin/views/browse-fields-modal.php:59 -msgid "Field Label" -msgstr "Etiqueta del campo" - -#: includes/admin/views/acf-field-group/field.php:81 -msgid "Delete" -msgstr "Borrar" - -#: includes/admin/views/acf-field-group/field.php:81 -msgid "Delete field" -msgstr "Borrar campo" - -#: includes/admin/views/acf-field-group/field.php:79 -msgid "Move" -msgstr "Mover" - -#: includes/admin/views/acf-field-group/field.php:79 -msgid "Move field to another group" -msgstr "Mover campo a otro grupo" - -#: includes/admin/views/acf-field-group/field.php:77 -msgid "Duplicate field" -msgstr "Duplicar campo" - -#: includes/admin/views/acf-field-group/field.php:73 -#: includes/admin/views/acf-field-group/field.php:76 -msgid "Edit field" -msgstr "Editar campo" - -#: includes/admin/views/acf-field-group/field.php:69 -msgid "Drag to reorder" -msgstr "Arrastra para reordenar" - -#: includes/admin/post-types/admin-field-group.php:103 -#: includes/admin/views/acf-field-group/location-group.php:3 -#: assets/build/js/acf-field-group.js:2347 -#: assets/build/js/acf-field-group.js:2763 -msgid "Show this field group if" -msgstr "Mostrar este grupo de campos si" - -#: includes/admin/views/upgrade/upgrade.php:94 -#: includes/ajax/class-acf-ajax-upgrade.php:34 -msgid "No updates available." -msgstr "No hay actualizaciones disponibles." - -#: includes/admin/views/upgrade/upgrade.php:33 -msgid "Database upgrade complete. See what's new" -msgstr "" -"Actualización de la base de datos completa. Ver las " -"novedades" - -#: includes/admin/views/upgrade/upgrade.php:30 -msgid "Reading upgrade tasks..." -msgstr "Leyendo tareas de actualización..." - -#: includes/admin/views/upgrade/network.php:165 -#: includes/admin/views/upgrade/upgrade.php:65 -msgid "Upgrade failed." -msgstr "Fallo al actualizar." - -#: includes/admin/views/upgrade/network.php:162 -msgid "Upgrade complete." -msgstr "Actualización completa" - -#: includes/admin/views/upgrade/network.php:148 -#: includes/admin/views/upgrade/upgrade.php:31 -msgid "Upgrading data to version %s" -msgstr "Actualizando datos a la versión %s" - -#: includes/admin/views/upgrade/network.php:121 -#: includes/admin/views/upgrade/notice.php:44 -msgid "" -"It is strongly recommended that you backup your database before proceeding. " -"Are you sure you wish to run the updater now?" -msgstr "" -"Es muy recomendable que hagas una copia de seguridad de tu base de datos " -"antes de continuar. ¿Estás seguro que quieres ejecutar ya la actualización?" - -#: includes/admin/views/upgrade/network.php:117 -msgid "Please select at least one site to upgrade." -msgstr "Por favor, selecciona al menos un sitio para actualizarlo." - -#: includes/admin/views/upgrade/network.php:97 -msgid "" -"Database Upgrade complete. Return to network dashboard" -msgstr "" -"Actualización de base de datos completa. Volver al escritorio " -"de red" - -#: includes/admin/views/upgrade/network.php:80 -msgid "Site is up to date" -msgstr "El sitio está actualizado" - -#: includes/admin/views/upgrade/network.php:78 -msgid "Site requires database upgrade from %1$s to %2$s" -msgstr "El sitio necesita actualizar la base de datos de %1$s a %2$s" - -#: includes/admin/views/upgrade/network.php:36 -#: includes/admin/views/upgrade/network.php:47 -msgid "Site" -msgstr "Sitio" - -#: includes/admin/views/upgrade/network.php:26 -#: includes/admin/views/upgrade/network.php:27 -#: includes/admin/views/upgrade/network.php:96 -msgid "Upgrade Sites" -msgstr "Actualizar los sitios" - -#: includes/admin/views/upgrade/network.php:26 -msgid "" -"The following sites require a DB upgrade. Check the ones you want to update " -"and then click %s." -msgstr "" -"Es necesario actualizar la base de datos de los siguientes sitios. Marca los " -"que quieras actualizar y haz clic en %s." - -#: includes/admin/views/acf-field-group/conditional-logic.php:171 -#: includes/admin/views/acf-field-group/locations.php:38 -msgid "Add rule group" -msgstr "Añadir grupo de reglas" - -#: includes/admin/views/acf-field-group/locations.php:10 -msgid "" -"Create a set of rules to determine which edit screens will use these " -"advanced custom fields" -msgstr "" -"Crea un conjunto de reglas para determinar qué pantallas de edición " -"utilizarán estos campos personalizados" - -#: includes/admin/views/acf-field-group/locations.php:9 -msgid "Rules" -msgstr "Reglas" - -#: includes/admin/tools/class-acf-admin-tool-export.php:510 -msgid "Copied" -msgstr "Copiado" - -#: includes/admin/tools/class-acf-admin-tool-export.php:486 -msgid "Copy to clipboard" -msgstr "Copiar al portapapeles" - -#: includes/admin/tools/class-acf-admin-tool-export.php:385 -msgid "" -"Select the items you would like to export and then select your export " -"method. Export As JSON to export to a .json file which you can then import " -"to another ACF installation. Generate PHP to export to PHP code which you " -"can place in your theme." -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:233 -msgid "Select Field Groups" -msgstr "Selecciona grupos de campos" - -#: includes/admin/tools/class-acf-admin-tool-export.php:96 -#: includes/admin/tools/class-acf-admin-tool-export.php:131 -msgid "No field groups selected" -msgstr "Ningún grupo de campos seleccionado" - -#: includes/admin/tools/class-acf-admin-tool-export.php:39 -#: includes/admin/tools/class-acf-admin-tool-export.php:393 -#: includes/admin/tools/class-acf-admin-tool-export.php:421 -msgid "Generate PHP" -msgstr "Generar PHP" - -#: includes/admin/tools/class-acf-admin-tool-export.php:35 -msgid "Export Field Groups" -msgstr "Exportar grupos de campos" - -#: includes/admin/tools/class-acf-admin-tool-import.php:177 -msgid "Import file empty" -msgstr "Archivo de imporación vacío" - -#: includes/admin/tools/class-acf-admin-tool-import.php:168 -msgid "Incorrect file type" -msgstr "Tipo de campo incorrecto" - -#: includes/admin/tools/class-acf-admin-tool-import.php:163 -msgid "Error uploading file. Please try again" -msgstr "Error al subir el archivo. Por favor, inténtalo de nuevo" - -#: includes/admin/tools/class-acf-admin-tool-import.php:50 -msgid "" -"Select the Advanced Custom Fields JSON file you would like to import. When " -"you click the import button below, ACF will import the items in that file." -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:27 -msgid "Import Field Groups" -msgstr "Importar grupo de campos" - -#: includes/admin/admin-internal-post-type-list.php:401 -msgid "Sync" -msgstr "Sincronizar" - -#: includes/admin/admin-internal-post-type-list.php:858 -msgid "Select %s" -msgstr "Selecciona %s" - -#: includes/admin/admin-internal-post-type-list.php:442 -#: includes/admin/admin-internal-post-type-list.php:474 -#: includes/admin/views/acf-field-group/field.php:77 -msgid "Duplicate" -msgstr "Duplicar" - -#: includes/admin/admin-internal-post-type-list.php:442 -msgid "Duplicate this item" -msgstr "Duplicar este elemento" - -#: includes/admin/views/acf-post-type/advanced-settings.php:41 -msgid "Supports" -msgstr "" - -#: includes/admin/admin.php:261 includes/admin/views/browse-fields-modal.php:92 -msgid "Documentation" -msgstr "Documentación" - -#: includes/admin/post-types/admin-field-groups.php:116 -#: includes/admin/post-types/admin-post-types.php:135 -#: includes/admin/post-types/admin-taxonomies.php:135 -#: includes/admin/views/acf-field-group/options.php:249 -#: includes/admin/views/acf-post-type/advanced-settings.php:62 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:114 -#: includes/admin/views/upgrade/network.php:38 -#: includes/admin/views/upgrade/network.php:49 -msgid "Description" -msgstr "Descripción" - -#: includes/admin/admin-internal-post-type-list.php:398 -#: includes/admin/admin-internal-post-type-list.php:747 -msgid "Sync available" -msgstr "Sincronización disponible" - -#. translators: %s number of field groups synchronized -#: includes/admin/post-types/admin-field-groups.php:381 -msgid "Field group synchronized." -msgid_plural "%s field groups synchronized." -msgstr[0] "" -msgstr[1] "" - -#. translators: %s number of field groups duplicated -#: includes/admin/post-types/admin-field-groups.php:374 -msgid "Field group duplicated." -msgid_plural "%s field groups duplicated." -msgstr[0] "Grupo de campos duplicado." -msgstr[1] "%s grupos de campos duplicados." - -#: includes/admin/admin-internal-post-type-list.php:137 -msgid "Active (%s)" -msgid_plural "Active (%s)" -msgstr[0] "Activo (%s)" -msgstr[1] "Activos (%s)" - -#: includes/admin/admin-upgrade.php:254 -msgid "Review sites & upgrade" -msgstr "Revisar sitios y actualizar" - -#: includes/admin/admin-upgrade.php:59 includes/admin/admin-upgrade.php:93 -#: includes/admin/admin-upgrade.php:94 includes/admin/admin-upgrade.php:230 -#: includes/admin/views/upgrade/network.php:24 -#: includes/admin/views/upgrade/upgrade.php:26 -msgid "Upgrade Database" -msgstr "Actualizar base de datos" - -#: includes/admin/views/acf-field-group/options.php:175 -#: includes/admin/views/acf-post-type/advanced-settings.php:30 -msgid "Custom Fields" -msgstr "Campos personalizados" - -#: includes/admin/post-types/admin-field-group.php:616 -msgid "Move Field" -msgstr "Mover campo" - -#: includes/admin/post-types/admin-field-group.php:605 -#: includes/admin/post-types/admin-field-group.php:609 -msgid "Please select the destination for this field" -msgstr "Por favor, selecciona el destino para este campo" - -#. translators: Confirmation message once a field has been moved to a different -#. field group. -#: includes/admin/post-types/admin-field-group.php:567 -msgid "The %1$s field can now be found in the %2$s field group" -msgstr "El campo %1$s ahora se puede encontrar en el grupo de campos %2$s" - -#: includes/admin/post-types/admin-field-group.php:564 -msgid "Move Complete." -msgstr "Movimiento completo." - -#: includes/admin/views/acf-field-group/field.php:39 -#: includes/admin/views/acf-field-group/options.php:217 -#: includes/admin/views/acf-post-type/advanced-settings.php:78 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:130 -msgid "Active" -msgstr "Activo" - -#: includes/admin/post-types/admin-field-group.php:266 -msgid "Field Keys" -msgstr "Claves de campo" - -#: includes/admin/post-types/admin-field-group.php:164 -#: includes/admin/tools/class-acf-admin-tool-export.php:342 -msgid "Settings" -msgstr "Ajustes" - -#: includes/admin/post-types/admin-field-groups.php:118 -msgid "Location" -msgstr "Ubicación" - -#: includes/admin/post-types/admin-field-group.php:104 -#: assets/build/js/acf-input.js:983 assets/build/js/acf-input.js:1075 -msgid "Null" -msgstr "Null" - -#: includes/admin/post-types/admin-field-group.php:101 -#: includes/class-acf-internal-post-type.php:730 -#: includes/post-types/class-acf-field-group.php:345 -#: assets/build/js/acf-field-group.js:1510 -#: assets/build/js/acf-field-group.js:1821 -msgid "copy" -msgstr "copiar" - -#: includes/admin/post-types/admin-field-group.php:100 -#: assets/build/js/acf-field-group.js:623 -#: assets/build/js/acf-field-group.js:778 -msgid "(this field)" -msgstr "(este campo)" - -#: includes/admin/post-types/admin-field-group.php:98 -#: assets/build/js/acf-input.js:918 assets/build/js/acf-input.js:943 -#: assets/build/js/acf-input.js:1002 assets/build/js/acf-input.js:1030 -msgid "Checked" -msgstr "Seleccionado" - -#: includes/admin/post-types/admin-field-group.php:94 -#: assets/build/js/acf-field-group.js:1615 -#: assets/build/js/acf-field-group.js:1933 -msgid "Move Custom Field" -msgstr "Mover campo personalizado" - -#: includes/admin/post-types/admin-field-group.php:93 -#: assets/build/js/acf-field-group.js:649 -#: assets/build/js/acf-field-group.js:804 -msgid "No toggle fields available" -msgstr "No hay campos de conmutación disponibles" - -#: includes/admin/post-types/admin-field-group.php:91 -msgid "Field group title is required" -msgstr "El título del grupo de campos es obligatorio" - -#: includes/admin/post-types/admin-field-group.php:90 -#: assets/build/js/acf-field-group.js:1604 -#: assets/build/js/acf-field-group.js:1919 -msgid "This field cannot be moved until its changes have been saved" -msgstr "Este campo se puede mover hasta que sus cambios se hayan guardado" - -#: includes/admin/post-types/admin-field-group.php:89 -#: assets/build/js/acf-field-group.js:1414 -#: assets/build/js/acf-field-group.js:1716 -msgid "The string \"field_\" may not be used at the start of a field name" -msgstr "" -"La cadena \"field_\" no se debe utilizar al comienzo de un nombre de campo" - -#: includes/admin/post-types/admin-field-group.php:71 -msgid "Field group draft updated." -msgstr "Borrador del grupo de campos actualizado." - -#: includes/admin/post-types/admin-field-group.php:70 -msgid "Field group scheduled for." -msgstr "Grupo de campos programado." - -#: includes/admin/post-types/admin-field-group.php:69 -msgid "Field group submitted." -msgstr "Grupo de campos enviado." - -#: includes/admin/post-types/admin-field-group.php:68 -msgid "Field group saved." -msgstr "Grupo de campos guardado." - -#: includes/admin/post-types/admin-field-group.php:67 -msgid "Field group published." -msgstr "Grupo de campos publicado." - -#: includes/admin/post-types/admin-field-group.php:64 -msgid "Field group deleted." -msgstr "Grupo de campos eliminado." - -#: includes/admin/post-types/admin-field-group.php:62 -#: includes/admin/post-types/admin-field-group.php:63 -#: includes/admin/post-types/admin-field-group.php:65 -msgid "Field group updated." -msgstr "Grupo de campos actualizado." - -#: includes/admin/admin-tools.php:118 -#: includes/admin/views/global/navigation.php:246 -#: includes/admin/views/tools/tools.php:21 -msgid "Tools" -msgstr "Herramientas" - -#: includes/locations/abstract-acf-location.php:106 -msgid "is not equal to" -msgstr "no es igual a" - -#: includes/locations/abstract-acf-location.php:105 -msgid "is equal to" -msgstr "es igual a" - -#: includes/locations.php:102 -msgid "Forms" -msgstr "Formularios" - -#: includes/admin/post-types/admin-post-type.php:127 includes/locations.php:100 -#: includes/locations/class-acf-location-page.php:22 -#: assets/build/js/acf-internal-post-type.js:175 -#: assets/build/js/acf-internal-post-type.js:249 -msgid "Page" -msgstr "Página" - -#: includes/admin/post-types/admin-post-type.php:125 includes/locations.php:99 -#: includes/locations/class-acf-location-post.php:22 -#: assets/build/js/acf-internal-post-type.js:172 -#: assets/build/js/acf-internal-post-type.js:246 -msgid "Post" -msgstr "Entrada" - -#: includes/fields.php:354 -msgid "Relational" -msgstr "Relación" - -#: includes/fields.php:353 -msgid "Choice" -msgstr "Elección" - -#: includes/fields.php:351 -msgid "Basic" -msgstr "Básico" - -#: includes/fields.php:320 -msgid "Unknown" -msgstr "Desconocido" - -#: includes/fields.php:320 -msgid "Field type does not exist" -msgstr "El tipo de campo no existe" - -#: includes/forms/form-front.php:236 -msgid "Spam Detected" -msgstr "Spam detectado" - -#: includes/forms/form-front.php:107 -msgid "Post updated" -msgstr "Publicación actualizada" - -#: includes/forms/form-front.php:106 -msgid "Update" -msgstr "Actualizar" - -#: includes/forms/form-front.php:57 -msgid "Validate Email" -msgstr "Validar correo electrónico" - -#: includes/fields.php:352 includes/forms/form-front.php:49 -msgid "Content" -msgstr "Contenido" - -#: includes/admin/views/acf-post-type/advanced-settings.php:21 -#: includes/forms/form-front.php:40 -msgid "Title" -msgstr "Título" - -#: includes/assets.php:372 includes/forms/form-comment.php:160 -#: assets/build/js/acf-input.js:7382 assets/build/js/acf-input.js:7968 -msgid "Edit field group" -msgstr "Editar grupo de campos" - -#: includes/admin/post-types/admin-field-group.php:117 -#: assets/build/js/acf-input.js:1125 assets/build/js/acf-input.js:1230 -msgid "Selection is less than" -msgstr "La selección es menor que" - -#: includes/admin/post-types/admin-field-group.php:116 -#: assets/build/js/acf-input.js:1106 assets/build/js/acf-input.js:1202 -msgid "Selection is greater than" -msgstr "La selección es mayor que" - -#: includes/admin/post-types/admin-field-group.php:115 -#: assets/build/js/acf-input.js:1075 assets/build/js/acf-input.js:1170 -msgid "Value is less than" -msgstr "El valor es menor que" - -#: includes/admin/post-types/admin-field-group.php:114 -#: assets/build/js/acf-input.js:1045 assets/build/js/acf-input.js:1139 -msgid "Value is greater than" -msgstr "El valor es mayor que" - -#: includes/admin/post-types/admin-field-group.php:113 -#: assets/build/js/acf-input.js:888 assets/build/js/acf-input.js:960 -msgid "Value contains" -msgstr "El valor contiene" - -#: includes/admin/post-types/admin-field-group.php:112 -#: assets/build/js/acf-input.js:862 assets/build/js/acf-input.js:926 -msgid "Value matches pattern" -msgstr "El valor coincide con el patrón" - -#: includes/admin/post-types/admin-field-group.php:111 -#: assets/build/js/acf-input.js:840 assets/build/js/acf-input.js:1023 -#: assets/build/js/acf-input.js:903 assets/build/js/acf-input.js:1116 -msgid "Value is not equal to" -msgstr "El valor no es igual a" - -#: includes/admin/post-types/admin-field-group.php:110 -#: assets/build/js/acf-input.js:810 assets/build/js/acf-input.js:964 -#: assets/build/js/acf-input.js:864 assets/build/js/acf-input.js:1053 -msgid "Value is equal to" -msgstr "El valor es igual a" - -#: includes/admin/post-types/admin-field-group.php:109 -#: assets/build/js/acf-input.js:788 assets/build/js/acf-input.js:841 -msgid "Has no value" -msgstr "No tiene ningún valor" - -#: includes/admin/post-types/admin-field-group.php:108 -#: assets/build/js/acf-input.js:758 assets/build/js/acf-input.js:783 -msgid "Has any value" -msgstr "No tiene algún valor" - -#: includes/admin/admin-internal-post-type.php:345 -#: includes/admin/views/browse-fields-modal.php:62 includes/assets.php:353 -#: assets/build/js/acf.js:1564 assets/build/js/acf.js:1658 -msgid "Cancel" -msgstr "Cancelar" - -#: includes/assets.php:349 assets/build/js/acf.js:1738 -#: assets/build/js/acf.js:1855 -msgid "Are you sure?" -msgstr "¿Estás seguro?" - -#: includes/assets.php:369 assets/build/js/acf-input.js:9442 -#: assets/build/js/acf-input.js:10294 -msgid "%d fields require attention" -msgstr "%d campos requieren atención" - -#: includes/assets.php:368 assets/build/js/acf-input.js:9440 -#: assets/build/js/acf-input.js:10290 -msgid "1 field requires attention" -msgstr "1 campo requiere atención" - -#: includes/assets.php:367 includes/validation.php:288 -#: includes/validation.php:298 assets/build/js/acf-input.js:9435 -#: assets/build/js/acf-input.js:10285 -msgid "Validation failed" -msgstr "Validación fallida" - -#: includes/assets.php:366 assets/build/js/acf-input.js:9603 -#: assets/build/js/acf-input.js:10473 -msgid "Validation successful" -msgstr "Validación correcta" - -#: includes/media.php:54 assets/build/js/acf-input.js:7210 -#: assets/build/js/acf-input.js:7772 -msgid "Restricted" -msgstr "Restringido" - -#: includes/media.php:53 assets/build/js/acf-input.js:7025 -#: assets/build/js/acf-input.js:7536 -msgid "Collapse Details" -msgstr "Contraer detalles" - -#: includes/media.php:52 assets/build/js/acf-input.js:7025 -#: assets/build/js/acf-input.js:7533 -msgid "Expand Details" -msgstr "Ampliar detalles" - -#: includes/admin/views/acf-post-type/advanced-settings.php:465 -#: includes/media.php:51 assets/build/js/acf-input.js:6892 -#: assets/build/js/acf-input.js:7381 -msgid "Uploaded to this post" -msgstr "Subido a esta publicación" - -#: includes/media.php:50 assets/build/js/acf-input.js:6931 -#: assets/build/js/acf-input.js:7420 -msgctxt "verb" -msgid "Update" -msgstr "Actualizar" - -#: includes/media.php:49 -msgctxt "verb" -msgid "Edit" -msgstr "Editar" - -#: includes/assets.php:363 assets/build/js/acf-input.js:9212 -#: assets/build/js/acf-input.js:10056 -msgid "The changes you made will be lost if you navigate away from this page" -msgstr "Los cambios que has realizado se perderán si navegas hacia otra página" - -#: includes/api/api-helpers.php:3395 -msgid "File type must be %s." -msgstr "El tipo de archivo debe ser %s." - -#: includes/admin/post-types/admin-field-group.php:102 -#: includes/admin/views/acf-field-group/conditional-logic.php:59 -#: includes/admin/views/acf-field-group/conditional-logic.php:169 -#: includes/admin/views/acf-field-group/location-group.php:3 -#: includes/admin/views/acf-field-group/locations.php:36 -#: includes/api/api-helpers.php:3391 assets/build/js/acf-field-group.js:771 -#: assets/build/js/acf-field-group.js:2385 -#: assets/build/js/acf-field-group.js:933 -#: assets/build/js/acf-field-group.js:2807 -msgid "or" -msgstr "o" - -#: includes/api/api-helpers.php:3364 -msgid "File size must not exceed %s." -msgstr "El tamaño del archivo no debe ser mayor de %s." - -#: includes/api/api-helpers.php:3359 -msgid "File size must be at least %s." -msgstr "El tamaño de archivo debe ser al menos %s." - -#: includes/api/api-helpers.php:3344 -msgid "Image height must not exceed %dpx." -msgstr "La altura de la imagen no debe exceder %dpx." - -#: includes/api/api-helpers.php:3339 -msgid "Image height must be at least %dpx." -msgstr "La altura de la imagen debe ser al menos %dpx." - -#: includes/api/api-helpers.php:3325 -msgid "Image width must not exceed %dpx." -msgstr "El ancho de la imagen no debe exceder %dpx." - -#: includes/api/api-helpers.php:3320 -msgid "Image width must be at least %dpx." -msgstr "El ancho de la imagen debe ser al menos %dpx." - -#: includes/api/api-helpers.php:1561 includes/api/api-term.php:147 -msgid "(no title)" -msgstr "(sin título)" - -#: includes/api/api-helpers.php:853 -msgid "Full Size" -msgstr "Tamaño completo" - -#: includes/api/api-helpers.php:812 -msgid "Large" -msgstr "Grande" - -#: includes/api/api-helpers.php:811 -msgid "Medium" -msgstr "Mediano" - -#: includes/api/api-helpers.php:810 -msgid "Thumbnail" -msgstr "Miniatura" - -#: includes/acf-field-functions.php:854 -#: includes/admin/post-types/admin-field-group.php:99 -#: assets/build/js/acf-field-group.js:1077 -#: assets/build/js/acf-field-group.js:1260 -msgid "(no label)" -msgstr "(sin etiqueta)" - -#: includes/fields/class-acf-field-textarea.php:145 -msgid "Sets the textarea height" -msgstr "Establece la altura del área de texto" - -#: includes/fields/class-acf-field-textarea.php:144 -msgid "Rows" -msgstr "Filas" - -#: includes/fields/class-acf-field-textarea.php:25 -msgid "Text Area" -msgstr "Área de texto" - -#: includes/fields/class-acf-field-checkbox.php:451 -msgid "Prepend an extra checkbox to toggle all choices" -msgstr "" -"Anteponer una casilla de verificación extra para cambiar todas las opciones" - -#: includes/fields/class-acf-field-checkbox.php:413 -msgid "Save 'custom' values to the field's choices" -msgstr "Guardar los valores «personalizados» a las opciones del campo" - -#: includes/fields/class-acf-field-checkbox.php:402 -msgid "Allow 'custom' values to be added" -msgstr "Permite añadir valores personalizados" - -#: includes/fields/class-acf-field-checkbox.php:38 -msgid "Add new choice" -msgstr "Añadir nueva opción" - -#: includes/fields/class-acf-field-checkbox.php:174 -msgid "Toggle All" -msgstr "Invertir todos" - -#: includes/fields/class-acf-field-page_link.php:506 -msgid "Allow Archives URLs" -msgstr "Permitir las URLs de los archivos" - -#: includes/fields/class-acf-field-page_link.php:179 -msgid "Archives" -msgstr "Archivo" - -#: includes/fields/class-acf-field-page_link.php:25 -msgid "Page Link" -msgstr "Enlace a página" - -#: includes/fields/class-acf-field-taxonomy.php:943 -#: includes/locations/class-acf-location-user-form.php:72 -msgid "Add" -msgstr "Añadir" - -#: includes/admin/views/acf-field-group/fields.php:53 -#: includes/fields/class-acf-field-taxonomy.php:908 -msgid "Name" -msgstr "Nombre" - -#: includes/fields/class-acf-field-taxonomy.php:892 -msgid "%s added" -msgstr "%s añadido/s" - -#: includes/fields/class-acf-field-taxonomy.php:856 -msgid "%s already exists" -msgstr "%s ya existe" - -#: includes/fields/class-acf-field-taxonomy.php:844 -msgid "User unable to add new %s" -msgstr "El usuario no puede añadir nuevos %s" - -#: includes/fields/class-acf-field-taxonomy.php:742 -msgid "Term ID" -msgstr "ID de término" - -#: includes/fields/class-acf-field-taxonomy.php:741 -msgid "Term Object" -msgstr "Objeto de término" - -#: includes/fields/class-acf-field-taxonomy.php:726 -msgid "Load value from posts terms" -msgstr "Cargar el valor de los términos de la publicación" - -#: includes/fields/class-acf-field-taxonomy.php:725 -msgid "Load Terms" -msgstr "Cargar términos" - -#: includes/fields/class-acf-field-taxonomy.php:715 -msgid "Connect selected terms to the post" -msgstr "Conectar los términos seleccionados con la publicación" - -#: includes/fields/class-acf-field-taxonomy.php:714 -msgid "Save Terms" -msgstr "Guardar términos" - -#: includes/fields/class-acf-field-taxonomy.php:704 -msgid "Allow new terms to be created whilst editing" -msgstr "Permitir la creación de nuevos términos mientras se edita" - -#: includes/fields/class-acf-field-taxonomy.php:703 -msgid "Create Terms" -msgstr "Crear términos" - -#: includes/fields/class-acf-field-taxonomy.php:762 -msgid "Radio Buttons" -msgstr "Botones de radio" - -#: includes/fields/class-acf-field-taxonomy.php:761 -msgid "Single Value" -msgstr "Valor único" - -#: includes/fields/class-acf-field-taxonomy.php:759 -msgid "Multi Select" -msgstr "Selección múltiple" - -#: includes/fields/class-acf-field-checkbox.php:25 -#: includes/fields/class-acf-field-taxonomy.php:758 -msgid "Checkbox" -msgstr "Casilla de verificación" - -#: includes/fields/class-acf-field-taxonomy.php:757 -msgid "Multiple Values" -msgstr "Valores múltiples" - -#: includes/fields/class-acf-field-taxonomy.php:752 -msgid "Select the appearance of this field" -msgstr "Selecciona la apariencia de este campo" - -#: includes/fields/class-acf-field-taxonomy.php:751 -msgid "Appearance" -msgstr "Apariencia" - -#: includes/fields/class-acf-field-taxonomy.php:693 -msgid "Select the taxonomy to be displayed" -msgstr "Selecciona la taxonomía a mostrar" - -#: includes/fields/class-acf-field-taxonomy.php:654 -msgctxt "No Terms" -msgid "No %s" -msgstr "" - -#: includes/fields/class-acf-field-number.php:266 -msgid "Value must be equal to or lower than %d" -msgstr "El valor debe ser menor o igual a %d" - -#: includes/fields/class-acf-field-number.php:259 -msgid "Value must be equal to or higher than %d" -msgstr "El valor debe ser mayor o igual a %d" - -#: includes/fields/class-acf-field-number.php:244 -msgid "Value must be a number" -msgstr "El valor debe ser un número" - -#: includes/fields/class-acf-field-number.php:25 -msgid "Number" -msgstr "Número" - -#: includes/fields/class-acf-field-radio.php:264 -msgid "Save 'other' values to the field's choices" -msgstr "Guardar los valores de 'otros' en las opciones del campo" - -#: includes/fields/class-acf-field-radio.php:253 -msgid "Add 'other' choice to allow for custom values" -msgstr "Añade la opción 'otros' para permitir valores personalizados" - -#: includes/admin/views/global/navigation.php:196 -msgid "Other" -msgstr "Otros" - -#: includes/fields/class-acf-field-radio.php:25 -msgid "Radio Button" -msgstr "Botón de radio" - -#: includes/fields/class-acf-field-accordion.php:107 -msgid "" -"Define an endpoint for the previous accordion to stop. This accordion will " -"not be visible." -msgstr "" -"Define un punto final para que el acordeón anterior se detenga. Este " -"acordeón no será visible." - -#: includes/fields/class-acf-field-accordion.php:96 -msgid "Allow this accordion to open without closing others." -msgstr "Permita que este acordeón se abra sin cerrar otros." - -#: includes/fields/class-acf-field-accordion.php:95 -msgid "Multi-Expand" -msgstr "" - -#: includes/fields/class-acf-field-accordion.php:85 -msgid "Display this accordion as open on page load." -msgstr "Muestra este acordeón como abierto en la carga de la página." - -#: includes/fields/class-acf-field-accordion.php:84 -msgid "Open" -msgstr "Abrir" - -#: includes/fields/class-acf-field-accordion.php:25 -msgid "Accordion" -msgstr "Acordeón" - -#: includes/fields/class-acf-field-file.php:267 -#: includes/fields/class-acf-field-file.php:279 -msgid "Restrict which files can be uploaded" -msgstr "Restringen los archivos que se pueden subir" - -#: includes/fields/class-acf-field-file.php:220 -msgid "File ID" -msgstr "ID del archivo" - -#: includes/fields/class-acf-field-file.php:219 -msgid "File URL" -msgstr "URL del archivo" - -#: includes/fields/class-acf-field-file.php:218 -msgid "File Array" -msgstr "Array del archivo" - -#: includes/fields/class-acf-field-file.php:186 -msgid "Add File" -msgstr "Añadir archivo" - -#: includes/admin/tools/class-acf-admin-tool-import.php:156 -#: includes/fields/class-acf-field-file.php:186 -msgid "No file selected" -msgstr "Ningún archivo seleccionado" - -#: includes/fields/class-acf-field-file.php:150 -msgid "File name" -msgstr "Nombre del archivo" - -#: includes/fields/class-acf-field-file.php:63 -#: assets/build/js/acf-input.js:2474 assets/build/js/acf-input.js:2625 -msgid "Update File" -msgstr "Actualizar archivo" - -#: includes/fields/class-acf-field-file.php:62 -#: assets/build/js/acf-input.js:2473 assets/build/js/acf-input.js:2624 -msgid "Edit File" -msgstr "Editar archivo" - -#: includes/admin/tools/class-acf-admin-tool-import.php:58 -#: includes/fields/class-acf-field-file.php:61 -#: assets/build/js/acf-input.js:2447 assets/build/js/acf-input.js:2597 -msgid "Select File" -msgstr "Seleccionar archivo" - -#: includes/fields/class-acf-field-file.php:25 -msgid "File" -msgstr "Archivo" - -#: includes/fields/class-acf-field-password.php:25 -msgid "Password" -msgstr "Contraseña" - -#: includes/fields/class-acf-field-select.php:392 -msgid "Specify the value returned" -msgstr "Especifica el valor devuelto" - -#: includes/fields/class-acf-field-select.php:461 -msgid "Use AJAX to lazy load choices?" -msgstr "¿Usar AJAX para hacer cargar las opciones de forma asíncrona?" - -#: includes/fields/class-acf-field-checkbox.php:362 -#: includes/fields/class-acf-field-select.php:381 -msgid "Enter each default value on a new line" -msgstr "Añade cada valor en una nueva línea" - -#: includes/fields/class-acf-field-select.php:252 includes/media.php:48 -#: assets/build/js/acf-input.js:6790 assets/build/js/acf-input.js:7266 -msgctxt "verb" -msgid "Select" -msgstr "Selecciona" - -#: includes/fields/class-acf-field-select.php:121 -msgctxt "Select2 JS load_fail" -msgid "Loading failed" -msgstr "Error al cargar" - -#: includes/fields/class-acf-field-select.php:120 -msgctxt "Select2 JS searching" -msgid "Searching…" -msgstr "Buscando…" - -#: includes/fields/class-acf-field-select.php:119 -msgctxt "Select2 JS load_more" -msgid "Loading more results…" -msgstr "Cargando más resultados…" - -#: includes/fields/class-acf-field-select.php:118 -msgctxt "Select2 JS selection_too_long_n" -msgid "You can only select %d items" -msgstr "Solo puedes seleccionar %d elementos" - -#: includes/fields/class-acf-field-select.php:117 -msgctxt "Select2 JS selection_too_long_1" -msgid "You can only select 1 item" -msgstr "Solo puedes seleccionar 1 elemento" - -#: includes/fields/class-acf-field-select.php:116 -msgctxt "Select2 JS input_too_long_n" -msgid "Please delete %d characters" -msgstr "Por favor, borra %d caracteres" - -#: includes/fields/class-acf-field-select.php:115 -msgctxt "Select2 JS input_too_long_1" -msgid "Please delete 1 character" -msgstr "Por favor, borra 1 carácter" - -#: includes/fields/class-acf-field-select.php:114 -msgctxt "Select2 JS input_too_short_n" -msgid "Please enter %d or more characters" -msgstr "Por favor, introduce %d o más caracteres" - -#: includes/fields/class-acf-field-select.php:113 -msgctxt "Select2 JS input_too_short_1" -msgid "Please enter 1 or more characters" -msgstr "Por favor, introduce 1 o más caracteres" - -#: includes/fields/class-acf-field-select.php:112 -msgctxt "Select2 JS matches_0" -msgid "No matches found" -msgstr "No se han encontrado coincidencias" - -#: includes/fields/class-acf-field-select.php:111 -msgctxt "Select2 JS matches_n" -msgid "%d results are available, use up and down arrow keys to navigate." -msgstr "" -"%d resultados disponibles, utiliza las flechas arriba y abajo para navegar " -"por los resultados." - -#: includes/fields/class-acf-field-select.php:110 -msgctxt "Select2 JS matches_1" -msgid "One result is available, press enter to select it." -msgstr "Hay un resultado disponible, pulsa enter para seleccionarlo." - -#: includes/fields/class-acf-field-select.php:25 -#: includes/fields/class-acf-field-taxonomy.php:763 -msgctxt "noun" -msgid "Select" -msgstr "Selección" - -#: includes/fields/class-acf-field-user.php:73 -msgid "User ID" -msgstr "ID del usuario" - -#: includes/fields/class-acf-field-user.php:72 -msgid "User Object" -msgstr "Grupo de objetos" - -#: includes/fields/class-acf-field-user.php:71 -msgid "User Array" -msgstr "Grupo de usuarios" - -#: includes/fields/class-acf-field-user.php:59 -msgid "All user roles" -msgstr "Todos los roles de usuario" - -#: includes/fields/class-acf-field-user.php:51 -msgid "Filter by Role" -msgstr "" - -#: includes/fields/class-acf-field-user.php:15 includes/locations.php:101 -msgid "User" -msgstr "Usuario" - -#: includes/fields/class-acf-field-separator.php:25 -msgid "Separator" -msgstr "Separador" - -#: includes/fields/class-acf-field-color_picker.php:75 -msgid "Select Color" -msgstr "Seleccionar color" - -#: includes/admin/post-types/admin-post-type.php:129 -#: includes/admin/post-types/admin-taxonomy.php:131 -#: includes/fields/class-acf-field-color_picker.php:73 -#: assets/build/js/acf-internal-post-type.js:72 -#: assets/build/js/acf-internal-post-type.js:86 -msgid "Default" -msgstr "Por defecto" - -#: includes/admin/views/acf-post-type/advanced-settings.php:89 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:141 -#: includes/fields/class-acf-field-color_picker.php:71 -msgid "Clear" -msgstr "Vaciar" - -#: includes/fields/class-acf-field-color_picker.php:25 -msgid "Color Picker" -msgstr "Selector de color" - -#: includes/fields/class-acf-field-date_time_picker.php:88 -msgctxt "Date Time Picker JS pmTextShort" -msgid "P" -msgstr "P" - -#: includes/fields/class-acf-field-date_time_picker.php:87 -msgctxt "Date Time Picker JS pmText" -msgid "PM" -msgstr "PM" - -#: includes/fields/class-acf-field-date_time_picker.php:84 -msgctxt "Date Time Picker JS amTextShort" -msgid "A" -msgstr "A" - -#: includes/fields/class-acf-field-date_time_picker.php:83 -msgctxt "Date Time Picker JS amText" -msgid "AM" -msgstr "AM" - -#: includes/fields/class-acf-field-date_time_picker.php:81 -msgctxt "Date Time Picker JS selectText" -msgid "Select" -msgstr "Seleccionar" - -#: includes/fields/class-acf-field-date_time_picker.php:80 -msgctxt "Date Time Picker JS closeText" -msgid "Done" -msgstr "Hecho" - -#: includes/fields/class-acf-field-date_time_picker.php:79 -msgctxt "Date Time Picker JS currentText" -msgid "Now" -msgstr "Ahora" - -#: includes/fields/class-acf-field-date_time_picker.php:78 -msgctxt "Date Time Picker JS timezoneText" -msgid "Time Zone" -msgstr "Zona horaria" - -#: includes/fields/class-acf-field-date_time_picker.php:77 -msgctxt "Date Time Picker JS microsecText" -msgid "Microsecond" -msgstr "Microsegundo" - -#: includes/fields/class-acf-field-date_time_picker.php:76 -msgctxt "Date Time Picker JS millisecText" -msgid "Millisecond" -msgstr "Milisegundo" - -#: includes/fields/class-acf-field-date_time_picker.php:75 -msgctxt "Date Time Picker JS secondText" -msgid "Second" -msgstr "Segundo" - -#: includes/fields/class-acf-field-date_time_picker.php:74 -msgctxt "Date Time Picker JS minuteText" -msgid "Minute" -msgstr "Minuto" - -#: includes/fields/class-acf-field-date_time_picker.php:73 -msgctxt "Date Time Picker JS hourText" -msgid "Hour" -msgstr "Hora" - -#: includes/fields/class-acf-field-date_time_picker.php:72 -msgctxt "Date Time Picker JS timeText" -msgid "Time" -msgstr "Hora" - -#: includes/fields/class-acf-field-date_time_picker.php:71 -msgctxt "Date Time Picker JS timeOnlyTitle" -msgid "Choose Time" -msgstr "Elegir hora" - -#: includes/fields/class-acf-field-date_time_picker.php:25 -msgid "Date Time Picker" -msgstr "Selector de fecha y hora" - -#: includes/fields/class-acf-field-accordion.php:106 -msgid "Endpoint" -msgstr "Variable" - -#: includes/admin/views/acf-field-group/options.php:130 -#: includes/fields/class-acf-field-tab.php:115 -msgid "Left aligned" -msgstr "Alineada a la izquierda" - -#: includes/admin/views/acf-field-group/options.php:129 -#: includes/fields/class-acf-field-tab.php:114 -msgid "Top aligned" -msgstr "Alineada arriba" - -#: includes/fields/class-acf-field-tab.php:110 -msgid "Placement" -msgstr "Ubicación" - -#: includes/fields/class-acf-field-tab.php:26 -msgid "Tab" -msgstr "Pestaña" - -#: includes/fields/class-acf-field-url.php:162 -msgid "Value must be a valid URL" -msgstr "El valor debe ser una URL válida" - -#: includes/fields/class-acf-field-link.php:177 -msgid "Link URL" -msgstr "URL del enlace" - -#: includes/fields/class-acf-field-link.php:176 -msgid "Link Array" -msgstr "Array de enlaces" - -#: includes/fields/class-acf-field-link.php:145 -msgid "Opens in a new window/tab" -msgstr "Abrir en una nueva ventana/pestaña" - -#: includes/fields/class-acf-field-link.php:140 -msgid "Select Link" -msgstr "Elige el enlace" - -#: includes/fields/class-acf-field-link.php:25 -msgid "Link" -msgstr "Enlace" - -#: includes/fields/class-acf-field-email.php:25 -msgid "Email" -msgstr "Correo electrónico" - -#: includes/fields/class-acf-field-number.php:188 -#: includes/fields/class-acf-field-range.php:217 -msgid "Step Size" -msgstr "Tamaño de paso" - -#: includes/fields/class-acf-field-number.php:158 -#: includes/fields/class-acf-field-range.php:195 -msgid "Maximum Value" -msgstr "Valor máximo" - -#: includes/fields/class-acf-field-number.php:148 -#: includes/fields/class-acf-field-range.php:184 -msgid "Minimum Value" -msgstr "Valor mínimo" - -#: includes/fields/class-acf-field-range.php:25 -msgid "Range" -msgstr "Rango" - -#: includes/fields/class-acf-field-button-group.php:175 -#: includes/fields/class-acf-field-checkbox.php:379 -#: includes/fields/class-acf-field-radio.php:220 -#: includes/fields/class-acf-field-select.php:399 -msgid "Both (Array)" -msgstr "Ambos (Array)" - -#: includes/admin/views/acf-field-group/fields.php:52 -#: includes/fields/class-acf-field-button-group.php:174 -#: includes/fields/class-acf-field-checkbox.php:378 -#: includes/fields/class-acf-field-radio.php:219 -#: includes/fields/class-acf-field-select.php:398 -msgid "Label" -msgstr "Etiqueta" - -#: includes/fields/class-acf-field-button-group.php:173 -#: includes/fields/class-acf-field-checkbox.php:377 -#: includes/fields/class-acf-field-radio.php:218 -#: includes/fields/class-acf-field-select.php:397 -msgid "Value" -msgstr "Valor" - -#: includes/fields/class-acf-field-button-group.php:222 -#: includes/fields/class-acf-field-checkbox.php:441 -#: includes/fields/class-acf-field-radio.php:292 -msgid "Vertical" -msgstr "Vertical" - -#: includes/fields/class-acf-field-button-group.php:221 -#: includes/fields/class-acf-field-checkbox.php:442 -#: includes/fields/class-acf-field-radio.php:293 -msgid "Horizontal" -msgstr "Horizontal" - -#: includes/fields/class-acf-field-button-group.php:148 -#: includes/fields/class-acf-field-checkbox.php:352 -#: includes/fields/class-acf-field-radio.php:193 -#: includes/fields/class-acf-field-select.php:370 -msgid "red : Red" -msgstr "rojo : Rojo" - -#: includes/fields/class-acf-field-button-group.php:148 -#: includes/fields/class-acf-field-checkbox.php:352 -#: includes/fields/class-acf-field-radio.php:193 -#: includes/fields/class-acf-field-select.php:370 -msgid "For more control, you may specify both a value and label like this:" -msgstr "" -"Para más control, puedes especificar tanto un valor como una etiqueta, así:" - -#: includes/fields/class-acf-field-button-group.php:148 -#: includes/fields/class-acf-field-checkbox.php:352 -#: includes/fields/class-acf-field-radio.php:193 -#: includes/fields/class-acf-field-select.php:370 -msgid "Enter each choice on a new line." -msgstr "Añade cada opción en una nueva línea." - -#: includes/fields/class-acf-field-button-group.php:147 -#: includes/fields/class-acf-field-checkbox.php:351 -#: includes/fields/class-acf-field-radio.php:192 -#: includes/fields/class-acf-field-select.php:369 -msgid "Choices" -msgstr "Opciones" - -#: includes/fields/class-acf-field-button-group.php:24 -msgid "Button Group" -msgstr "Grupo de botones" - -#: includes/fields/class-acf-field-button-group.php:194 -#: includes/fields/class-acf-field-page_link.php:538 -#: includes/fields/class-acf-field-post_object.php:448 -#: includes/fields/class-acf-field-radio.php:238 -#: includes/fields/class-acf-field-select.php:429 -#: includes/fields/class-acf-field-taxonomy.php:772 -#: includes/fields/class-acf-field-user.php:103 -msgid "Allow Null" -msgstr "" - -#: includes/fields/class-acf-field-page_link.php:263 -#: includes/fields/class-acf-field-post_object.php:257 -#: includes/fields/class-acf-field-taxonomy.php:930 -msgid "Parent" -msgstr "Superior" - -#: includes/fields/class-acf-field-wysiwyg.php:390 -msgid "TinyMCE will not be initialized until field is clicked" -msgstr "TinyMCE no se inicializará hasta que se haga clic en el campo" - -#: includes/fields/class-acf-field-wysiwyg.php:389 -msgid "Delay Initialization" -msgstr "" - -#: includes/fields/class-acf-field-wysiwyg.php:378 -msgid "Show Media Upload Buttons" -msgstr "" - -#: includes/fields/class-acf-field-wysiwyg.php:362 -msgid "Toolbar" -msgstr "Barra de herramientas" - -#: includes/fields/class-acf-field-wysiwyg.php:354 -msgid "Text Only" -msgstr "Sólo texto" - -#: includes/fields/class-acf-field-wysiwyg.php:353 -msgid "Visual Only" -msgstr "Sólo visual" - -#: includes/fields/class-acf-field-wysiwyg.php:352 -msgid "Visual & Text" -msgstr "Visual y Texto" - -#: includes/fields/class-acf-field-wysiwyg.php:347 -msgid "Tabs" -msgstr "Pestañas" - -#: includes/fields/class-acf-field-wysiwyg.php:285 -msgid "Click to initialize TinyMCE" -msgstr "Haz clic para iniciar TinyMCE" - -#: includes/fields/class-acf-field-wysiwyg.php:279 -msgctxt "Name for the Text editor tab (formerly HTML)" -msgid "Text" -msgstr "Texto" - -#: includes/fields/class-acf-field-wysiwyg.php:278 -msgid "Visual" -msgstr "Visual" - -#: includes/fields/class-acf-field-text.php:189 -#: includes/fields/class-acf-field-textarea.php:236 -msgid "Value must not exceed %d characters" -msgstr "El valor no debe exceder los %d caracteres" - -#: includes/fields/class-acf-field-text.php:124 -#: includes/fields/class-acf-field-textarea.php:124 -msgid "Leave blank for no limit" -msgstr "Déjalo en blanco para ilimitado" - -#: includes/fields/class-acf-field-text.php:123 -#: includes/fields/class-acf-field-textarea.php:123 -msgid "Character Limit" -msgstr "Límite de caracteres" - -#: includes/fields/class-acf-field-email.php:158 -#: includes/fields/class-acf-field-number.php:209 -#: includes/fields/class-acf-field-password.php:105 -#: includes/fields/class-acf-field-range.php:239 -#: includes/fields/class-acf-field-text.php:164 -msgid "Appears after the input" -msgstr "Aparece después del campo" - -#: includes/fields/class-acf-field-email.php:157 -#: includes/fields/class-acf-field-number.php:208 -#: includes/fields/class-acf-field-password.php:104 -#: includes/fields/class-acf-field-range.php:238 -#: includes/fields/class-acf-field-text.php:163 -msgid "Append" -msgstr "Anexar" - -#: includes/fields/class-acf-field-email.php:148 -#: includes/fields/class-acf-field-number.php:199 -#: includes/fields/class-acf-field-password.php:95 -#: includes/fields/class-acf-field-range.php:229 -#: includes/fields/class-acf-field-text.php:154 -msgid "Appears before the input" -msgstr "Aparece antes del campo" - -#: includes/fields/class-acf-field-email.php:147 -#: includes/fields/class-acf-field-number.php:198 -#: includes/fields/class-acf-field-password.php:94 -#: includes/fields/class-acf-field-range.php:228 -#: includes/fields/class-acf-field-text.php:153 -msgid "Prepend" -msgstr "Anteponer" - -#: includes/fields/class-acf-field-email.php:138 -#: includes/fields/class-acf-field-number.php:179 -#: includes/fields/class-acf-field-password.php:85 -#: includes/fields/class-acf-field-text.php:144 -#: includes/fields/class-acf-field-textarea.php:156 -#: includes/fields/class-acf-field-url.php:122 -msgid "Appears within the input" -msgstr "Aparece en el campo" - -#: includes/fields/class-acf-field-email.php:137 -#: includes/fields/class-acf-field-number.php:178 -#: includes/fields/class-acf-field-password.php:84 -#: includes/fields/class-acf-field-text.php:143 -#: includes/fields/class-acf-field-textarea.php:155 -#: includes/fields/class-acf-field-url.php:121 -msgid "Placeholder Text" -msgstr "Marcador de posición" - -#: includes/fields/class-acf-field-button-group.php:158 -#: includes/fields/class-acf-field-email.php:118 -#: includes/fields/class-acf-field-number.php:129 -#: includes/fields/class-acf-field-radio.php:203 -#: includes/fields/class-acf-field-range.php:165 -#: includes/fields/class-acf-field-text.php:104 -#: includes/fields/class-acf-field-textarea.php:104 -#: includes/fields/class-acf-field-url.php:102 -#: includes/fields/class-acf-field-wysiwyg.php:312 -msgid "Appears when creating a new post" -msgstr "Aparece cuando se está creando una nueva entrada" - -#: includes/fields/class-acf-field-text.php:25 -msgid "Text" -msgstr "Texto" - -#: includes/fields/class-acf-field-relationship.php:794 -msgid "%1$s requires at least %2$s selection" -msgid_plural "%1$s requires at least %2$s selections" -msgstr[0] "%1$s necesita al menos %2$s selección" -msgstr[1] "%1$s necesita al menos %2$s selecciones" - -#: includes/fields/class-acf-field-post_object.php:417 -#: includes/fields/class-acf-field-relationship.php:644 -msgid "Post ID" -msgstr "ID de publicación" - -#: includes/fields/class-acf-field-post_object.php:17 -#: includes/fields/class-acf-field-post_object.php:416 -#: includes/fields/class-acf-field-relationship.php:643 -msgid "Post Object" -msgstr "Objeto de publicación" - -#: includes/fields/class-acf-field-relationship.php:676 -msgid "Maximum Posts" -msgstr "" - -#: includes/fields/class-acf-field-relationship.php:666 -msgid "Minimum Posts" -msgstr "" - -#: includes/admin/views/acf-field-group/options.php:183 -#: includes/admin/views/acf-post-type/advanced-settings.php:29 -#: includes/fields/class-acf-field-relationship.php:701 -msgid "Featured Image" -msgstr "Imagen destacada" - -#: includes/fields/class-acf-field-relationship.php:697 -msgid "Selected elements will be displayed in each result" -msgstr "Los elementos seleccionados se mostrarán en cada resultado" - -#: includes/fields/class-acf-field-relationship.php:696 -msgid "Elements" -msgstr "Elementos" - -#: includes/fields/class-acf-field-relationship.php:630 -#: includes/fields/class-acf-field-taxonomy.php:20 -#: includes/fields/class-acf-field-taxonomy.php:692 -#: includes/locations/class-acf-location-taxonomy.php:22 -msgid "Taxonomy" -msgstr "Taxonomía" - -#: includes/fields/class-acf-field-relationship.php:629 -#: includes/locations/class-acf-location-post-type.php:22 -#: includes/post-types/class-acf-post-type.php:92 -msgid "Post Type" -msgstr "Tipo de contenido" - -#: includes/fields/class-acf-field-relationship.php:623 -msgid "Filters" -msgstr "Filtros" - -#: includes/fields/class-acf-field-page_link.php:499 -#: includes/fields/class-acf-field-post_object.php:404 -#: includes/fields/class-acf-field-relationship.php:616 -msgid "All taxonomies" -msgstr "Todas las taxonomías" - -#: includes/fields/class-acf-field-page_link.php:491 -#: includes/fields/class-acf-field-post_object.php:396 -#: includes/fields/class-acf-field-relationship.php:608 -msgid "Filter by Taxonomy" -msgstr "Filtrar por taxonomía" - -#: includes/fields/class-acf-field-page_link.php:469 -#: includes/fields/class-acf-field-post_object.php:374 -#: includes/fields/class-acf-field-relationship.php:586 -msgid "All post types" -msgstr "Todos los tipos de contenido" - -#: includes/fields/class-acf-field-page_link.php:461 -#: includes/fields/class-acf-field-post_object.php:366 -#: includes/fields/class-acf-field-relationship.php:578 -msgid "Filter by Post Type" -msgstr "Filtrar por tipo de contenido" - -#: includes/fields/class-acf-field-relationship.php:476 -msgid "Search..." -msgstr "Buscar..." - -#: includes/fields/class-acf-field-relationship.php:406 -msgid "Select taxonomy" -msgstr "Selecciona taxonomía" - -#: includes/fields/class-acf-field-relationship.php:397 -msgid "Select post type" -msgstr "Seleccionar tipo de contenido" - -#: includes/fields/class-acf-field-relationship.php:61 -#: assets/build/js/acf-input.js:3930 assets/build/js/acf-input.js:4214 -msgid "No matches found" -msgstr "No se han encontrado coincidencias" - -#: includes/fields/class-acf-field-relationship.php:60 -#: assets/build/js/acf-input.js:3913 assets/build/js/acf-input.js:4193 -msgid "Loading" -msgstr "Cargando" - -#: includes/fields/class-acf-field-relationship.php:59 -#: assets/build/js/acf-input.js:3818 assets/build/js/acf-input.js:4084 -msgid "Maximum values reached ( {max} values )" -msgstr "Valores máximos alcanzados ( {max} valores )" - -#: includes/fields/class-acf-field-relationship.php:17 -msgid "Relationship" -msgstr "Relación" - -#: includes/fields/class-acf-field-file.php:291 -#: includes/fields/class-acf-field-image.php:317 -msgid "Comma separated list. Leave blank for all types" -msgstr "Lista separada por comas. Déjalo en blanco para todos los tipos" - -#: includes/fields/class-acf-field-file.php:290 -#: includes/fields/class-acf-field-image.php:316 -msgid "Allowed File Types" -msgstr "" - -#: includes/fields/class-acf-field-file.php:278 -#: includes/fields/class-acf-field-image.php:280 -msgid "Maximum" -msgstr "Máximo" - -#: includes/fields/class-acf-field-file.php:154 -#: includes/fields/class-acf-field-file.php:270 -#: includes/fields/class-acf-field-file.php:282 -#: includes/fields/class-acf-field-image.php:271 -#: includes/fields/class-acf-field-image.php:307 -msgid "File size" -msgstr "Tamaño del archivo" - -#: includes/fields/class-acf-field-image.php:245 -#: includes/fields/class-acf-field-image.php:281 -msgid "Restrict which images can be uploaded" -msgstr "Restringir que las imágenes se pueden subir" - -#: includes/fields/class-acf-field-file.php:266 -#: includes/fields/class-acf-field-image.php:244 -msgid "Minimum" -msgstr "Mínimo" - -#: includes/fields/class-acf-field-file.php:235 -#: includes/fields/class-acf-field-image.php:210 -msgid "Uploaded to post" -msgstr "Subidos al contenido" - -#: includes/fields/class-acf-field-file.php:234 -#: includes/fields/class-acf-field-image.php:209 -#: includes/locations/class-acf-location-attachment.php:73 -#: includes/locations/class-acf-location-comment.php:61 -#: includes/locations/class-acf-location-nav-menu.php:74 -#: includes/locations/class-acf-location-taxonomy.php:63 -#: includes/locations/class-acf-location-user-form.php:71 -#: includes/locations/class-acf-location-user-role.php:78 -#: includes/locations/class-acf-location-widget.php:65 -msgid "All" -msgstr "Todos" - -#: includes/fields/class-acf-field-file.php:229 -#: includes/fields/class-acf-field-image.php:204 -msgid "Limit the media library choice" -msgstr "Limitar las opciones de la biblioteca de medios" - -#: includes/fields/class-acf-field-file.php:228 -#: includes/fields/class-acf-field-image.php:203 -msgid "Library" -msgstr "Biblioteca" - -#: includes/fields/class-acf-field-image.php:336 -msgid "Preview Size" -msgstr "Tamaño de vista previa" - -#: includes/fields/class-acf-field-image.php:195 -msgid "Image ID" -msgstr "ID de imagen" - -#: includes/fields/class-acf-field-image.php:194 -msgid "Image URL" -msgstr "URL de imagen" - -#: includes/fields/class-acf-field-image.php:193 -msgid "Image Array" -msgstr "Array de imágenes" - -#: includes/fields/class-acf-field-button-group.php:168 -#: includes/fields/class-acf-field-checkbox.php:372 -#: includes/fields/class-acf-field-file.php:213 -#: includes/fields/class-acf-field-link.php:171 -#: includes/fields/class-acf-field-radio.php:213 -msgid "Specify the returned value on front end" -msgstr "Especificar el valor devuelto en la web" - -#: includes/fields/class-acf-field-button-group.php:167 -#: includes/fields/class-acf-field-checkbox.php:371 -#: includes/fields/class-acf-field-file.php:212 -#: includes/fields/class-acf-field-link.php:170 -#: includes/fields/class-acf-field-radio.php:212 -#: includes/fields/class-acf-field-taxonomy.php:736 -msgid "Return Value" -msgstr "Valor de retorno" - -#: includes/fields/class-acf-field-image.php:162 -msgid "Add Image" -msgstr "Añadir imagen" - -#: includes/fields/class-acf-field-image.php:162 -msgid "No image selected" -msgstr "No hay ninguna imagen seleccionada" - -#: includes/assets.php:352 includes/fields/class-acf-field-file.php:162 -#: includes/fields/class-acf-field-image.php:142 -#: includes/fields/class-acf-field-link.php:145 assets/build/js/acf.js:1563 -#: assets/build/js/acf.js:1657 -msgid "Remove" -msgstr "Quitar" - -#: includes/admin/views/acf-field-group/field.php:76 -#: includes/fields/class-acf-field-file.php:160 -#: includes/fields/class-acf-field-image.php:140 -#: includes/fields/class-acf-field-link.php:145 -msgid "Edit" -msgstr "Editar" - -#: includes/fields/class-acf-field-image.php:70 includes/media.php:55 -#: assets/build/js/acf-input.js:6837 assets/build/js/acf-input.js:7320 -msgid "All images" -msgstr "Todas las imágenes" - -#: includes/fields/class-acf-field-image.php:69 -#: assets/build/js/acf-input.js:3181 assets/build/js/acf-input.js:3399 -msgid "Update Image" -msgstr "Actualizar imagen" - -#: includes/fields/class-acf-field-image.php:68 -#: assets/build/js/acf-input.js:3180 assets/build/js/acf-input.js:3398 -msgid "Edit Image" -msgstr "Editar imagen" - -#: includes/fields/class-acf-field-image.php:67 -#: assets/build/js/acf-input.js:3156 assets/build/js/acf-input.js:3373 -msgid "Select Image" -msgstr "Seleccionar imagen" - -#: includes/fields/class-acf-field-image.php:25 -msgid "Image" -msgstr "Imagen" - -#: includes/fields/class-acf-field-message.php:125 -msgid "Allow HTML markup to display as visible text instead of rendering" -msgstr "" -"Permitir que el maquetado HTML se muestre como texto visible en vez de " -"interpretarlo" - -#: includes/fields/class-acf-field-message.php:124 -msgid "Escape HTML" -msgstr "Escapar HTML" - -#: includes/fields/class-acf-field-message.php:116 -#: includes/fields/class-acf-field-textarea.php:172 -msgid "No Formatting" -msgstr "Sin formato" - -#: includes/fields/class-acf-field-message.php:115 -#: includes/fields/class-acf-field-textarea.php:171 -msgid "Automatically add <br>" -msgstr "Añadir <br> automáticamente" - -#: includes/fields/class-acf-field-message.php:114 -#: includes/fields/class-acf-field-textarea.php:170 -msgid "Automatically add paragraphs" -msgstr "Añadir párrafos automáticamente" - -#: includes/fields/class-acf-field-message.php:110 -#: includes/fields/class-acf-field-textarea.php:166 -msgid "Controls how new lines are rendered" -msgstr "Controla cómo se muestran los saltos de línea" - -#: includes/fields/class-acf-field-message.php:109 -#: includes/fields/class-acf-field-textarea.php:165 -msgid "New Lines" -msgstr "Nuevas líneas" - -#: includes/fields/class-acf-field-date_picker.php:232 -#: includes/fields/class-acf-field-date_time_picker.php:220 -msgid "Week Starts On" -msgstr "La semana comienza el" - -#: includes/fields/class-acf-field-date_picker.php:201 -msgid "The format used when saving a value" -msgstr "El formato utilizado cuando se guarda un valor" - -#: includes/fields/class-acf-field-date_picker.php:200 -msgid "Save Format" -msgstr "Guardar formato" - -#: includes/fields/class-acf-field-date_picker.php:67 -msgctxt "Date Picker JS weekHeader" -msgid "Wk" -msgstr "Sem" - -#: includes/fields/class-acf-field-date_picker.php:66 -msgctxt "Date Picker JS prevText" -msgid "Prev" -msgstr "Anterior" - -#: includes/fields/class-acf-field-date_picker.php:65 -msgctxt "Date Picker JS nextText" -msgid "Next" -msgstr "Siguiente" - -#: includes/fields/class-acf-field-date_picker.php:64 -msgctxt "Date Picker JS currentText" -msgid "Today" -msgstr "Hoy" - -#: includes/fields/class-acf-field-date_picker.php:63 -msgctxt "Date Picker JS closeText" -msgid "Done" -msgstr "Listo" - -#: includes/fields/class-acf-field-date_picker.php:25 -msgid "Date Picker" -msgstr "Selector de fecha" - -#: includes/fields/class-acf-field-image.php:248 -#: includes/fields/class-acf-field-image.php:284 -#: includes/fields/class-acf-field-oembed.php:268 -msgid "Width" -msgstr "Ancho" - -#: includes/fields/class-acf-field-oembed.php:265 -#: includes/fields/class-acf-field-oembed.php:277 -msgid "Embed Size" -msgstr "Tamaño de incrustación" - -#: includes/fields/class-acf-field-oembed.php:222 -msgid "Enter URL" -msgstr "Introduce la URL" - -#: includes/fields/class-acf-field-oembed.php:25 -msgid "oEmbed" -msgstr "oEmbed" - -#: includes/fields/class-acf-field-true_false.php:184 -msgid "Text shown when inactive" -msgstr "Texto mostrado cuando está inactivo" - -#: includes/fields/class-acf-field-true_false.php:183 -msgid "Off Text" -msgstr "Texto desactivado" - -#: includes/fields/class-acf-field-true_false.php:168 -msgid "Text shown when active" -msgstr "Texto mostrado cuando está activo" - -#: includes/fields/class-acf-field-true_false.php:167 -msgid "On Text" -msgstr "Texto activado" - -#: includes/fields/class-acf-field-select.php:450 -#: includes/fields/class-acf-field-true_false.php:199 -msgid "Stylized UI" -msgstr "" - -#: includes/fields/class-acf-field-button-group.php:157 -#: includes/fields/class-acf-field-checkbox.php:361 -#: includes/fields/class-acf-field-color_picker.php:156 -#: includes/fields/class-acf-field-email.php:117 -#: includes/fields/class-acf-field-number.php:128 -#: includes/fields/class-acf-field-radio.php:202 -#: includes/fields/class-acf-field-range.php:164 -#: includes/fields/class-acf-field-select.php:380 -#: includes/fields/class-acf-field-text.php:103 -#: includes/fields/class-acf-field-textarea.php:103 -#: includes/fields/class-acf-field-true_false.php:147 -#: includes/fields/class-acf-field-url.php:101 -#: includes/fields/class-acf-field-wysiwyg.php:311 -msgid "Default Value" -msgstr "Valor por defecto" - -#: includes/fields/class-acf-field-true_false.php:138 -msgid "Displays text alongside the checkbox" -msgstr "Muestra el texto junto a la casilla de verificación" - -#: includes/fields/class-acf-field-message.php:26 -#: includes/fields/class-acf-field-message.php:99 -#: includes/fields/class-acf-field-true_false.php:137 -msgid "Message" -msgstr "Mensaje" - -#: includes/assets.php:351 includes/fields/class-acf-field-true_false.php:86 -#: includes/fields/class-acf-field-true_false.php:187 -#: assets/build/js/acf.js:1740 assets/build/js/acf.js:1857 -msgid "No" -msgstr "No" - -#: includes/assets.php:350 includes/fields/class-acf-field-true_false.php:83 -#: includes/fields/class-acf-field-true_false.php:171 -#: assets/build/js/acf.js:1739 assets/build/js/acf.js:1856 -msgid "Yes" -msgstr "Sí" - -#: includes/fields/class-acf-field-true_false.php:25 -msgid "True / False" -msgstr "Verdadero / Falso" - -#: includes/fields/class-acf-field-group.php:474 -msgid "Row" -msgstr "Fila" - -#: includes/fields/class-acf-field-group.php:473 -msgid "Table" -msgstr "Tabla" - -#: includes/admin/post-types/admin-field-group.php:140 -#: includes/fields/class-acf-field-group.php:472 -msgid "Block" -msgstr "Bloque" - -#: includes/fields/class-acf-field-group.php:467 -msgid "Specify the style used to render the selected fields" -msgstr "" -"Especifica el estilo utilizado para representar los campos seleccionados" - -#: includes/fields.php:356 includes/fields/class-acf-field-button-group.php:215 -#: includes/fields/class-acf-field-checkbox.php:435 -#: includes/fields/class-acf-field-group.php:466 -#: includes/fields/class-acf-field-radio.php:286 -msgid "Layout" -msgstr "Estructura" - -#: includes/fields/class-acf-field-group.php:450 -msgid "Sub Fields" -msgstr "Subcampos" - -#: includes/fields/class-acf-field-group.php:25 -msgid "Group" -msgstr "Grupo" - -#: includes/fields/class-acf-field-google-map.php:235 -msgid "Customize the map height" -msgstr "Personalizar la altura del mapa" - -#: includes/fields/class-acf-field-google-map.php:234 -#: includes/fields/class-acf-field-image.php:259 -#: includes/fields/class-acf-field-image.php:295 -#: includes/fields/class-acf-field-oembed.php:280 -msgid "Height" -msgstr "Altura" - -#: includes/fields/class-acf-field-google-map.php:223 -msgid "Set the initial zoom level" -msgstr "Establecer el nivel inicial de zoom" - -#: includes/fields/class-acf-field-google-map.php:222 -msgid "Zoom" -msgstr "Zoom" - -#: includes/fields/class-acf-field-google-map.php:196 -#: includes/fields/class-acf-field-google-map.php:209 -msgid "Center the initial map" -msgstr "Centrar inicialmente el mapa" - -#: includes/fields/class-acf-field-google-map.php:195 -#: includes/fields/class-acf-field-google-map.php:208 -msgid "Center" -msgstr "Centro" - -#: includes/fields/class-acf-field-google-map.php:163 -msgid "Search for address..." -msgstr "Buscar dirección..." - -#: includes/fields/class-acf-field-google-map.php:160 -msgid "Find current location" -msgstr "Encontrar ubicación actual" - -#: includes/fields/class-acf-field-google-map.php:159 -msgid "Clear location" -msgstr "Borrar ubicación" - -#: includes/fields/class-acf-field-google-map.php:158 -#: includes/fields/class-acf-field-relationship.php:628 -msgid "Search" -msgstr "Buscar" - -#: includes/fields/class-acf-field-google-map.php:63 -#: assets/build/js/acf-input.js:2840 assets/build/js/acf-input.js:3026 -msgid "Sorry, this browser does not support geolocation" -msgstr "Lo siento, este navegador no es compatible con la geolocalización" - -#: includes/fields/class-acf-field-google-map.php:25 -msgid "Google Map" -msgstr "Mapa de Google" - -#: includes/fields/class-acf-field-date_picker.php:212 -#: includes/fields/class-acf-field-date_time_picker.php:201 -#: includes/fields/class-acf-field-time_picker.php:132 -msgid "The format returned via template functions" -msgstr "El formato devuelto por de las funciones del tema" - -#: includes/fields/class-acf-field-color_picker.php:180 -#: includes/fields/class-acf-field-date_picker.php:211 -#: includes/fields/class-acf-field-date_time_picker.php:200 -#: includes/fields/class-acf-field-image.php:187 -#: includes/fields/class-acf-field-post_object.php:411 -#: includes/fields/class-acf-field-relationship.php:638 -#: includes/fields/class-acf-field-select.php:391 -#: includes/fields/class-acf-field-time_picker.php:131 -#: includes/fields/class-acf-field-user.php:66 -msgid "Return Format" -msgstr "Formato de retorno" - -#: includes/fields/class-acf-field-date_picker.php:190 -#: includes/fields/class-acf-field-date_picker.php:221 -#: includes/fields/class-acf-field-date_time_picker.php:192 -#: includes/fields/class-acf-field-date_time_picker.php:210 -#: includes/fields/class-acf-field-time_picker.php:123 -#: includes/fields/class-acf-field-time_picker.php:139 -msgid "Custom:" -msgstr "Personalizado:" - -#: includes/fields/class-acf-field-date_picker.php:182 -#: includes/fields/class-acf-field-date_time_picker.php:183 -#: includes/fields/class-acf-field-time_picker.php:116 -msgid "The format displayed when editing a post" -msgstr "El formato mostrado cuando se edita una publicación" - -#: includes/fields/class-acf-field-date_picker.php:181 -#: includes/fields/class-acf-field-date_time_picker.php:182 -#: includes/fields/class-acf-field-time_picker.php:115 -msgid "Display Format" -msgstr "Formato de visualización" - -#: includes/fields/class-acf-field-time_picker.php:25 -msgid "Time Picker" -msgstr "Selector de hora" - -#. translators: counts for inactive field groups -#: acf.php:503 -msgid "Inactive (%s)" -msgid_plural "Inactive (%s)" -msgstr[0] "" -msgstr[1] "" - -#: acf.php:462 -msgid "No Fields found in Trash" -msgstr "No se han encontrado campos en la papelera" - -#: acf.php:461 -msgid "No Fields found" -msgstr "No se han encontrado campos" - -#: acf.php:460 -msgid "Search Fields" -msgstr "Buscar campos" - -#: acf.php:459 -msgid "View Field" -msgstr "Ver campo" - -#: acf.php:458 includes/admin/views/acf-field-group/fields.php:115 -msgid "New Field" -msgstr "Nuevo campo" - -#: acf.php:457 -msgid "Edit Field" -msgstr "Editar campo" - -#: acf.php:456 -msgid "Add New Field" -msgstr "Añadir nuevo campo" - -#: acf.php:454 -msgid "Field" -msgstr "Campo" - -#: acf.php:453 includes/admin/post-types/admin-field-group.php:163 -#: includes/admin/post-types/admin-field-groups.php:119 -#: includes/admin/views/acf-field-group/fields.php:32 -msgid "Fields" -msgstr "Campos" - -#: acf.php:428 -msgid "No Field Groups found in Trash" -msgstr "No se han encontrado grupos de campos en la papelera" - -#: acf.php:427 -msgid "No Field Groups found" -msgstr "No se han encontrado grupos de campos" - -#: acf.php:426 -msgid "Search Field Groups" -msgstr "Buscar grupo de campos" - -#: acf.php:425 -msgid "View Field Group" -msgstr "Ver grupo de campos" - -#: acf.php:424 -msgid "New Field Group" -msgstr "Nuevo grupo de campos" - -#: acf.php:423 -msgid "Edit Field Group" -msgstr "Editar grupo de campos" - -#: acf.php:422 -msgid "Add New Field Group" -msgstr "Añadir nuevo grupo de campos" - -#: acf.php:421 acf.php:455 -#: includes/admin/views/acf-post-type/advanced-settings.php:219 -#: includes/admin/views/acf-post-type/advanced-settings.php:221 -#: includes/post-types/class-acf-post-type.php:93 -#: includes/post-types/class-acf-taxonomy.php:92 -msgid "Add New" -msgstr "Añadir nuevo" - -#: acf.php:420 -msgid "Field Group" -msgstr "Grupo de campos" - -#: acf.php:419 includes/admin/post-types/admin-field-groups.php:78 -#: includes/admin/post-types/admin-post-types.php:138 -#: includes/admin/post-types/admin-taxonomies.php:138 -msgid "Field Groups" -msgstr "Grupos de campos" - -#. Description of the plugin -msgid "Customize WordPress with powerful, professional and intuitive fields." -msgstr "Personaliza WordPress con campos potentes, profesionales e intuitivos." - -#. Plugin URI of the plugin -msgid "https://www.advancedcustomfields.com" -msgstr "https://www.advancedcustomfields.com" - -#. Plugin Name of the plugin -#: acf.php:94 -msgid "Advanced Custom Fields" -msgstr "Advanced Custom Fields" diff --git a/lang/acf-fa_IR.mo b/lang/acf-fa_IR.mo index ad493d4..25d25b1 100644 Binary files a/lang/acf-fa_IR.mo and b/lang/acf-fa_IR.mo differ diff --git a/lang/acf-fa_IR.po b/lang/acf-fa_IR.po index 53ffc5a..d86151e 100644 --- a/lang/acf-fa_IR.po +++ b/lang/acf-fa_IR.po @@ -12,7 +12,7 @@ # This file is distributed under the same license as Advanced Custom Fields. msgid "" msgstr "" -"PO-Revision-Date: 2023-11-28T09:14:32+00:00\n" +"PO-Revision-Date: 2024-02-26T11:26:19+00:00\n" "Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n" "Language: fa_IR\n" "MIME-Version: 1.0\n" @@ -21,7 +21,70 @@ msgstr "" "X-Generator: gettext\n" "Project-Id-Version: Advanced Custom Fields\n" -#: includes/admin/views/global/navigation.php:221 +#: includes/api/api-template.php:461 includes/api/api-template.php:515 +msgid "" +"Returning escaped HTML values is only possible when format_value is also " +"true. The field values have not been returned for security." +msgstr "" + +#: includes/api/api-template.php:46 includes/api/api-template.php:327 +#: includes/api/api-template.php:1026 +msgid "" +"Returning an escaped HTML value is only possible when format_value is also " +"true. The field value has not been returned for security." +msgstr "" + +#. translators: %1$s - name of the ACF plugin. %2$s - Link to documentation. +#. %3$s - Link to show more details about the error +#: includes/admin/views/escaped-html-notice.php:41 +msgid "" +"%1$s ACF now automatically escapes unsafe HTML when rendered by the ACF " +"shortcode. We've detected the output of some of your fields has been " +"modified by this change, but this may not be a breaking change. %2$s. %3$s." +msgstr "" + +#. translators: %1$s - name of the ACF plugin. %2$s - Link to documentation. +#. %3$s - Link to show more details about the error +#: includes/admin/views/escaped-html-notice.php:33 +msgid "" +"%1$s ACF now automatically escapes unsafe HTML when rendered by " +"the_field or the ACF shortcode. We've detected the output of " +"some of your fields has been modified by this change, but this may not be a " +"breaking change. %2$s. %3$s." +msgstr "" + +#. translators: %1$s - name of the ACF plugin. %2$s - Link to documentation. +#. %3$s - Link to show more details about the error +#: includes/admin/views/escaped-html-notice.php:22 +msgid "" +"%1$s ACF will soon escape unsafe HTML that is rendered by the_field(). We've detected the output of some of your fields will be modified by " +"this change, but this may not be a breaking change. %2$s. %3$s." +msgstr "" + +#: includes/admin/views/escaped-html-notice.php:14 +msgid "Please contact your site administrator or developer for more details." +msgstr "" + +#: includes/admin/views/escaped-html-notice.php:5 +msgid "Learn more" +msgstr "" + +#: includes/admin/admin.php:67 +msgid "Hide details" +msgstr "" + +#: includes/admin/admin.php:66 includes/admin/views/escaped-html-notice.php:11 +msgid "Show details" +msgstr "" + +#. translators: %1$s - The selector used %2$s The field name 3%$s The parent +#. function name +#: includes/admin/views/escaped-html-notice.php:59 +msgid "%1$s (%2$s) - rendered via %3$s" +msgstr "" + +#: includes/admin/views/global/navigation.php:223 msgid "Renew ACF PRO License" msgstr "" @@ -53,11 +116,11 @@ msgstr "" msgid "Add Options Page" msgstr "" -#: includes/admin/views/acf-post-type/advanced-settings.php:703 +#: includes/admin/views/acf-post-type/advanced-settings.php:708 msgid "In the editor used as the placeholder of the title." msgstr "" -#: includes/admin/views/acf-post-type/advanced-settings.php:702 +#: includes/admin/views/acf-post-type/advanced-settings.php:707 msgid "Title Placeholder" msgstr "" @@ -70,7 +133,7 @@ msgstr "" msgid " (Duplicated from %s)" msgstr "" -#: includes/admin/tools/class-acf-admin-tool-export.php:298 +#: includes/admin/tools/class-acf-admin-tool-export.php:286 msgid "Select Options Pages" msgstr "" @@ -103,26 +166,26 @@ msgid "Add fields" msgstr "" #: includes/admin/post-types/admin-field-group.php:121 -#: assets/build/js/acf-field-group.js:2753 -#: assets/build/js/acf-field-group.js:3236 +#: assets/build/js/acf-field-group.js:2752 +#: assets/build/js/acf-field-group.js:3237 msgid "This Field" msgstr "" -#: includes/admin/admin.php:267 +#: includes/admin/admin.php:332 msgid "ACF PRO" msgstr "" -#: includes/admin/admin.php:265 +#: includes/admin/admin.php:330 msgid "Feedback" msgstr "" -#: includes/admin/admin.php:263 +#: includes/admin/admin.php:328 msgid "Support" msgstr "" #. translators: This text is prepended by a link to ACF's website, and appended #. by a link to WP Engine's website. -#: includes/admin/admin.php:238 +#: includes/admin/admin.php:303 msgid "is developed and maintained by" msgstr "" @@ -132,7 +195,7 @@ msgid "Add this %s to the location rules of the selected field groups." msgstr "" #. translators: %s the URL to ACF's bidirectional relationship documentation -#: includes/acf-bidirectional-functions.php:271 +#: includes/acf-bidirectional-functions.php:272 msgid "" "Enabling the bidirectional setting allows you to update a value in the " "target fields for each value selected for this field, adding or removing the " @@ -141,7 +204,7 @@ msgid "" "a>." msgstr "" -#: includes/acf-bidirectional-functions.php:247 +#: includes/acf-bidirectional-functions.php:248 msgid "" "Select field(s) to store the reference back to the item being updated. You " "may select this field. Target fields must be compatible with where this " @@ -149,31 +212,31 @@ msgid "" "Taxonomy, your target field should be of type Taxonomy" msgstr "" -#: includes/acf-bidirectional-functions.php:246 +#: includes/acf-bidirectional-functions.php:247 msgid "Target Field" msgstr "" -#: includes/acf-bidirectional-functions.php:220 +#: includes/acf-bidirectional-functions.php:221 msgid "Update a field on the selected values, referencing back to this ID" msgstr "" -#: includes/acf-bidirectional-functions.php:219 +#: includes/acf-bidirectional-functions.php:220 msgid "Bidirectional" msgstr "" #. translators: %s A field type name, such as "Relationship" -#: includes/acf-bidirectional-functions.php:192 +#: includes/acf-bidirectional-functions.php:193 msgid "%s Field" msgstr "" -#: includes/fields/class-acf-field-page_link.php:517 -#: includes/fields/class-acf-field-post_object.php:426 -#: includes/fields/class-acf-field-select.php:407 +#: includes/fields/class-acf-field-page_link.php:479 +#: includes/fields/class-acf-field-post_object.php:399 +#: includes/fields/class-acf-field-select.php:396 #: includes/fields/class-acf-field-user.php:82 msgid "Select Multiple" msgstr "" -#: includes/admin/views/global/navigation.php:233 +#: includes/admin/views/global/navigation.php:235 msgid "WP Engine logo" msgstr "" @@ -213,7 +276,7 @@ msgstr "" msgid "Manage Terms Capability" msgstr "" -#: includes/admin/views/acf-post-type/advanced-settings.php:886 +#: includes/admin/views/acf-post-type/advanced-settings.php:891 msgid "" "Sets whether posts should be excluded from search results and taxonomy " "archive pages." @@ -274,19 +337,19 @@ msgstr "" msgid "No field groups" msgstr "" -#: includes/admin/post-types/admin-field-groups.php:281 +#: includes/admin/post-types/admin-field-groups.php:280 msgid "No fields" msgstr "" -#: includes/admin/post-types/admin-field-groups.php:154 +#: includes/admin/post-types/admin-field-groups.php:153 #: includes/admin/post-types/admin-post-types.php:172 #: includes/admin/post-types/admin-taxonomies.php:172 msgid "No description" msgstr "" -#: includes/fields/class-acf-field-page_link.php:484 -#: includes/fields/class-acf-field-post_object.php:389 -#: includes/fields/class-acf-field-relationship.php:601 +#: includes/fields/class-acf-field-page_link.php:446 +#: includes/fields/class-acf-field-post_object.php:362 +#: includes/fields/class-acf-field-relationship.php:567 msgid "Any post status" msgstr "" @@ -436,11 +499,11 @@ msgstr "" "اجازه میدهد که یک یا چند کاربر را انتخاب کنید که می تواند برای ایجاد رابطه " "بین داده های آبجکت ها مورد استفاده قرار گیرد." -#: includes/fields/class-acf-field-url.php:26 +#: includes/fields/class-acf-field-url.php:20 msgid "A text input specifically designed for storing web addresses." msgstr "یک ورودی متنی که به طور خاص برای ذخیره آدرس های وب طراحی شده است." -#: includes/fields/class-acf-field-url.php:25 +#: includes/fields/class-acf-field-url.php:19 msgid "URL" msgstr "نشانی وب" @@ -514,9 +577,9 @@ msgstr "" msgid "An input for providing a password using a masked field." msgstr "" -#: includes/fields/class-acf-field-page_link.php:476 -#: includes/fields/class-acf-field-post_object.php:381 -#: includes/fields/class-acf-field-relationship.php:593 +#: includes/fields/class-acf-field-page_link.php:438 +#: includes/fields/class-acf-field-post_object.php:354 +#: includes/fields/class-acf-field-relationship.php:559 msgid "Filter by Post Status" msgstr "فیلتر بر اساس وضعیت پست" @@ -606,14 +669,14 @@ msgid "" "are shown while editing content. Useful for keeping large datasets tidy." msgstr "" -#: includes/fields.php:475 +#: includes/fields.php:493 msgid "" "This provides a solution for repeating content such as slides, team members, " "and call-to-action tiles, by acting as a parent to a set of subfields which " "can be repeated again and again." msgstr "" -#: includes/fields.php:465 +#: includes/fields.php:483 msgid "" "This provides an interactive interface for managing a collection of " "attachments. Most settings are similar to the Image field type. Additional " @@ -621,14 +684,14 @@ msgid "" "and the minimum/maximum number of attachments allowed." msgstr "" -#: includes/fields.php:455 +#: includes/fields.php:473 msgid "" "This provides a simple, structured, layout-based editor. The Flexible " "Content field allows you to define, create and manage content with total " "control by using layouts and subfields to design the available blocks." msgstr "" -#: includes/fields.php:445 +#: includes/fields.php:463 msgid "" "This allows you to select and display existing fields. It does not duplicate " "any fields in the database, but loads and displays the selected fields at " @@ -636,16 +699,16 @@ msgid "" "or display the selected fields as a group of subfields." msgstr "" -#: includes/fields.php:442 +#: includes/fields.php:460 msgctxt "noun" msgid "Clone" msgstr "کپی (هیچ)" -#: includes/admin/views/global/navigation.php:86 includes/fields.php:357 +#: includes/admin/views/global/navigation.php:86 includes/fields.php:375 msgid "PRO" msgstr "" -#: includes/fields.php:355 includes/fields.php:412 +#: includes/fields.php:373 includes/fields.php:430 msgid "Advanced" msgstr "" @@ -1353,618 +1416,618 @@ msgstr "فیلم‌ها" msgid "Plural Label" msgstr "برچسب جمع" -#: includes/admin/views/acf-post-type/advanced-settings.php:1270 +#: includes/admin/views/acf-post-type/advanced-settings.php:1275 msgid "" "Optional custom controller to use instead of `WP_REST_Posts_Controller`." msgstr "" -#: includes/admin/views/acf-post-type/advanced-settings.php:1269 +#: includes/admin/views/acf-post-type/advanced-settings.php:1274 #: includes/admin/views/acf-taxonomy/advanced-settings.php:1210 msgid "Controller Class" msgstr "" -#: includes/admin/views/acf-post-type/advanced-settings.php:1251 +#: includes/admin/views/acf-post-type/advanced-settings.php:1256 #: includes/admin/views/acf-taxonomy/advanced-settings.php:1191 msgid "The namespace part of the REST API URL." msgstr "" -#: includes/admin/views/acf-post-type/advanced-settings.php:1250 +#: includes/admin/views/acf-post-type/advanced-settings.php:1255 #: includes/admin/views/acf-taxonomy/advanced-settings.php:1190 msgid "Namespace Route" msgstr "" -#: includes/admin/views/acf-post-type/advanced-settings.php:1232 +#: includes/admin/views/acf-post-type/advanced-settings.php:1237 #: includes/admin/views/acf-taxonomy/advanced-settings.php:1172 msgid "The base URL for the post type REST API URLs." msgstr "" -#: includes/admin/views/acf-post-type/advanced-settings.php:1231 +#: includes/admin/views/acf-post-type/advanced-settings.php:1236 #: includes/admin/views/acf-taxonomy/advanced-settings.php:1171 msgid "Base URL" msgstr "" -#: includes/admin/views/acf-post-type/advanced-settings.php:1217 +#: includes/admin/views/acf-post-type/advanced-settings.php:1222 msgid "" "Exposes this post type in the REST API. Required to use the block editor." msgstr "" -#: includes/admin/views/acf-post-type/advanced-settings.php:1216 +#: includes/admin/views/acf-post-type/advanced-settings.php:1221 #: includes/admin/views/acf-taxonomy/advanced-settings.php:1154 msgid "Show In REST API" msgstr "" -#: includes/admin/views/acf-post-type/advanced-settings.php:1195 +#: includes/admin/views/acf-post-type/advanced-settings.php:1200 msgid "Customize the query variable name." msgstr "" -#: includes/admin/views/acf-post-type/advanced-settings.php:1194 +#: includes/admin/views/acf-post-type/advanced-settings.php:1199 #: includes/admin/views/acf-taxonomy/advanced-settings.php:1054 msgid "Query Variable" msgstr "" -#: includes/admin/views/acf-post-type/advanced-settings.php:1172 +#: includes/admin/views/acf-post-type/advanced-settings.php:1177 #: includes/admin/views/acf-taxonomy/advanced-settings.php:1032 msgid "No Query Variable Support" msgstr "" -#: includes/admin/views/acf-post-type/advanced-settings.php:1171 +#: includes/admin/views/acf-post-type/advanced-settings.php:1176 #: includes/admin/views/acf-taxonomy/advanced-settings.php:1031 msgid "Custom Query Variable" msgstr "" -#: includes/admin/views/acf-post-type/advanced-settings.php:1168 +#: includes/admin/views/acf-post-type/advanced-settings.php:1173 msgid "" "Items can be accessed using the non-pretty permalink, eg. {post_type}" "={post_slug}." msgstr "" -#: includes/admin/views/acf-post-type/advanced-settings.php:1167 +#: includes/admin/views/acf-post-type/advanced-settings.php:1172 #: includes/admin/views/acf-taxonomy/advanced-settings.php:1027 msgid "Query Variable Support" msgstr "" -#: includes/admin/views/acf-post-type/advanced-settings.php:1142 +#: includes/admin/views/acf-post-type/advanced-settings.php:1147 #: includes/admin/views/acf-taxonomy/advanced-settings.php:1003 msgid "URLs for an item and items can be accessed with a query string." msgstr "" -#: includes/admin/views/acf-post-type/advanced-settings.php:1141 +#: includes/admin/views/acf-post-type/advanced-settings.php:1146 #: includes/admin/views/acf-taxonomy/advanced-settings.php:1002 msgid "Publicly Queryable" msgstr "" -#: includes/admin/views/acf-post-type/advanced-settings.php:1120 +#: includes/admin/views/acf-post-type/advanced-settings.php:1125 msgid "Custom slug for the Archive URL." msgstr "" -#: includes/admin/views/acf-post-type/advanced-settings.php:1119 +#: includes/admin/views/acf-post-type/advanced-settings.php:1124 msgid "Archive Slug" msgstr "" -#: includes/admin/views/acf-post-type/advanced-settings.php:1106 +#: includes/admin/views/acf-post-type/advanced-settings.php:1111 msgid "" "Has an item archive that can be customized with an archive template file in " "your theme." msgstr "" -#: includes/admin/views/acf-post-type/advanced-settings.php:1105 +#: includes/admin/views/acf-post-type/advanced-settings.php:1110 msgid "Archive" msgstr "" -#: includes/admin/views/acf-post-type/advanced-settings.php:1085 +#: includes/admin/views/acf-post-type/advanced-settings.php:1090 msgid "Pagination support for the items URLs such as the archives." msgstr "" -#: includes/admin/views/acf-post-type/advanced-settings.php:1084 +#: includes/admin/views/acf-post-type/advanced-settings.php:1089 msgid "Pagination" msgstr "" -#: includes/admin/views/acf-post-type/advanced-settings.php:1067 +#: includes/admin/views/acf-post-type/advanced-settings.php:1072 msgid "RSS feed URL for the post type items." msgstr "" -#: includes/admin/views/acf-post-type/advanced-settings.php:1066 +#: includes/admin/views/acf-post-type/advanced-settings.php:1071 msgid "Feed URL" msgstr "" -#: includes/admin/views/acf-post-type/advanced-settings.php:1048 +#: includes/admin/views/acf-post-type/advanced-settings.php:1053 #: includes/admin/views/acf-taxonomy/advanced-settings.php:961 msgid "" "Alters the permalink structure to add the `WP_Rewrite::$front` prefix to " "URLs." msgstr "" -#: includes/admin/views/acf-post-type/advanced-settings.php:1047 +#: includes/admin/views/acf-post-type/advanced-settings.php:1052 #: includes/admin/views/acf-taxonomy/advanced-settings.php:960 msgid "Front URL Prefix" msgstr "" -#: includes/admin/views/acf-post-type/advanced-settings.php:1028 +#: includes/admin/views/acf-post-type/advanced-settings.php:1033 msgid "Customize the slug used in the URL." msgstr "" -#: includes/admin/views/acf-post-type/advanced-settings.php:1027 +#: includes/admin/views/acf-post-type/advanced-settings.php:1032 #: includes/admin/views/acf-taxonomy/advanced-settings.php:940 msgid "URL Slug" msgstr "" -#: includes/admin/views/acf-post-type/advanced-settings.php:1011 +#: includes/admin/views/acf-post-type/advanced-settings.php:1016 msgid "Permalinks for this post type are disabled." msgstr "" #. translators: this string will be appended with the new permalink structure. -#: includes/admin/views/acf-post-type/advanced-settings.php:1010 +#: includes/admin/views/acf-post-type/advanced-settings.php:1015 #: includes/admin/views/acf-taxonomy/advanced-settings.php:923 msgid "" "Rewrite the URL using a custom slug defined in the input below. Your " "permalink structure will be" msgstr "" -#: includes/admin/views/acf-post-type/advanced-settings.php:1002 +#: includes/admin/views/acf-post-type/advanced-settings.php:1007 #: includes/admin/views/acf-taxonomy/advanced-settings.php:915 msgid "No Permalink (prevent URL rewriting)" msgstr "" -#: includes/admin/views/acf-post-type/advanced-settings.php:1001 +#: includes/admin/views/acf-post-type/advanced-settings.php:1006 #: includes/admin/views/acf-taxonomy/advanced-settings.php:914 msgid "Custom Permalink" msgstr "" -#: includes/admin/views/acf-post-type/advanced-settings.php:1000 -#: includes/admin/views/acf-post-type/advanced-settings.php:1170 +#: includes/admin/views/acf-post-type/advanced-settings.php:1005 +#: includes/admin/views/acf-post-type/advanced-settings.php:1175 #: includes/admin/views/acf-post-type/basic-settings.php:56 msgid "Post Type Key" msgstr "کلید نوع پست" #. translators: this string will be appended with the new permalink structure. -#: includes/admin/views/acf-post-type/advanced-settings.php:998 -#: includes/admin/views/acf-post-type/advanced-settings.php:1008 +#: includes/admin/views/acf-post-type/advanced-settings.php:1003 +#: includes/admin/views/acf-post-type/advanced-settings.php:1013 msgid "" "Rewrite the URL using the post type key as the slug. Your permalink " "structure will be" msgstr "" -#: includes/admin/views/acf-post-type/advanced-settings.php:996 +#: includes/admin/views/acf-post-type/advanced-settings.php:1001 #: includes/admin/views/acf-taxonomy/advanced-settings.php:910 msgid "Permalink Rewrite" msgstr "" -#: includes/admin/views/acf-post-type/advanced-settings.php:982 +#: includes/admin/views/acf-post-type/advanced-settings.php:987 msgid "Delete items by a user when that user is deleted." msgstr "" -#: includes/admin/views/acf-post-type/advanced-settings.php:981 +#: includes/admin/views/acf-post-type/advanced-settings.php:986 msgid "Delete With User" msgstr "" -#: includes/admin/views/acf-post-type/advanced-settings.php:967 +#: includes/admin/views/acf-post-type/advanced-settings.php:972 msgid "Allow the post type to be exported from 'Tools' > 'Export'." msgstr "" -#: includes/admin/views/acf-post-type/advanced-settings.php:966 +#: includes/admin/views/acf-post-type/advanced-settings.php:971 msgid "Can Export" msgstr "" -#: includes/admin/views/acf-post-type/advanced-settings.php:935 +#: includes/admin/views/acf-post-type/advanced-settings.php:940 msgid "Optionally provide a plural to be used in capabilities." msgstr "" -#: includes/admin/views/acf-post-type/advanced-settings.php:934 +#: includes/admin/views/acf-post-type/advanced-settings.php:939 msgid "Plural Capability Name" msgstr "" -#: includes/admin/views/acf-post-type/advanced-settings.php:916 +#: includes/admin/views/acf-post-type/advanced-settings.php:921 msgid "Choose another post type to base the capabilities for this post type." msgstr "" -#: includes/admin/views/acf-post-type/advanced-settings.php:915 +#: includes/admin/views/acf-post-type/advanced-settings.php:920 msgid "Singular Capability Name" msgstr "" -#: includes/admin/views/acf-post-type/advanced-settings.php:901 +#: includes/admin/views/acf-post-type/advanced-settings.php:906 msgid "" "By default the capabilities of the post type will inherit the 'Post' " "capability names, eg. edit_post, delete_posts. Enable to use post type " "specific capabilities, eg. edit_{singular}, delete_{plural}." msgstr "" -#: includes/admin/views/acf-post-type/advanced-settings.php:900 +#: includes/admin/views/acf-post-type/advanced-settings.php:905 msgid "Rename Capabilities" msgstr "" -#: includes/admin/views/acf-post-type/advanced-settings.php:885 +#: includes/admin/views/acf-post-type/advanced-settings.php:890 msgid "Exclude From Search" msgstr "" -#: includes/admin/views/acf-post-type/advanced-settings.php:872 +#: includes/admin/views/acf-post-type/advanced-settings.php:877 #: includes/admin/views/acf-taxonomy/advanced-settings.php:854 msgid "" "Allow items to be added to menus in the 'Appearance' > 'Menus' screen. Must " "be turned on in 'Screen options'." msgstr "" -#: includes/admin/views/acf-post-type/advanced-settings.php:871 +#: includes/admin/views/acf-post-type/advanced-settings.php:876 #: includes/admin/views/acf-taxonomy/advanced-settings.php:853 msgid "Appearance Menus Support" msgstr "" -#: includes/admin/views/acf-post-type/advanced-settings.php:853 +#: includes/admin/views/acf-post-type/advanced-settings.php:858 msgid "Appears as an item in the 'New' menu in the admin bar." msgstr "" -#: includes/admin/views/acf-post-type/advanced-settings.php:852 +#: includes/admin/views/acf-post-type/advanced-settings.php:857 msgid "Show In Admin Bar" msgstr "" -#: includes/admin/views/acf-post-type/advanced-settings.php:821 +#: includes/admin/views/acf-post-type/advanced-settings.php:826 msgid "" "A PHP function name to be called when setting up the meta boxes for the edit " "screen." msgstr "" -#: includes/admin/views/acf-post-type/advanced-settings.php:820 +#: includes/admin/views/acf-post-type/advanced-settings.php:825 msgid "Custom Meta Box Callback" msgstr "" -#: includes/admin/views/acf-post-type/advanced-settings.php:800 +#: includes/admin/views/acf-post-type/advanced-settings.php:805 msgid "Menu Icon" msgstr "" -#: includes/admin/views/acf-post-type/advanced-settings.php:782 +#: includes/admin/views/acf-post-type/advanced-settings.php:787 msgid "The position in the sidebar menu in the admin dashboard." msgstr "" -#: includes/admin/views/acf-post-type/advanced-settings.php:781 +#: includes/admin/views/acf-post-type/advanced-settings.php:786 msgid "Menu Position" msgstr "" -#: includes/admin/views/acf-post-type/advanced-settings.php:763 +#: includes/admin/views/acf-post-type/advanced-settings.php:768 msgid "" "By default the post type will get a new top level item in the admin menu. If " "an existing top level item is supplied here, the post type will be added as " "a submenu item under it." msgstr "" -#: includes/admin/views/acf-post-type/advanced-settings.php:762 +#: includes/admin/views/acf-post-type/advanced-settings.php:767 msgid "Admin Menu Parent" msgstr "" #. translators: %s = "dashicon class name", link to the WordPress dashicon #. documentation. -#: includes/admin/views/acf-post-type/advanced-settings.php:750 +#: includes/admin/views/acf-post-type/advanced-settings.php:755 msgid "" "The icon used for the post type menu item in the admin dashboard. Can be a " "URL or %s to use for the icon." msgstr "" -#: includes/admin/views/acf-post-type/advanced-settings.php:745 +#: includes/admin/views/acf-post-type/advanced-settings.php:750 msgid "Dashicon class name" msgstr "" -#: includes/admin/views/acf-post-type/advanced-settings.php:734 +#: includes/admin/views/acf-post-type/advanced-settings.php:739 #: includes/admin/views/acf-taxonomy/advanced-settings.php:734 msgid "Admin editor navigation in the sidebar menu." msgstr "" -#: includes/admin/views/acf-post-type/advanced-settings.php:733 +#: includes/admin/views/acf-post-type/advanced-settings.php:738 #: includes/admin/views/acf-taxonomy/advanced-settings.php:733 msgid "Show In Admin Menu" msgstr "" -#: includes/admin/views/acf-post-type/advanced-settings.php:720 +#: includes/admin/views/acf-post-type/advanced-settings.php:725 #: includes/admin/views/acf-taxonomy/advanced-settings.php:719 msgid "Items can be edited and managed in the admin dashboard." msgstr "" -#: includes/admin/views/acf-post-type/advanced-settings.php:719 +#: includes/admin/views/acf-post-type/advanced-settings.php:724 #: includes/admin/views/acf-taxonomy/advanced-settings.php:718 msgid "Show In UI" msgstr "" -#: includes/admin/views/acf-post-type/advanced-settings.php:689 +#: includes/admin/views/acf-post-type/advanced-settings.php:694 msgid "A link to a post." msgstr "" -#: includes/admin/views/acf-post-type/advanced-settings.php:688 +#: includes/admin/views/acf-post-type/advanced-settings.php:693 msgid "Description for a navigation link block variation." msgstr "" -#: includes/admin/views/acf-post-type/advanced-settings.php:687 +#: includes/admin/views/acf-post-type/advanced-settings.php:692 #: includes/admin/views/acf-taxonomy/advanced-settings.php:702 msgid "Item Link Description" msgstr "" #. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:683 +#: includes/admin/views/acf-post-type/advanced-settings.php:688 msgid "A link to a %s." msgstr "" -#: includes/admin/views/acf-post-type/advanced-settings.php:668 +#: includes/admin/views/acf-post-type/advanced-settings.php:673 msgid "Post Link" msgstr "" -#: includes/admin/views/acf-post-type/advanced-settings.php:667 +#: includes/admin/views/acf-post-type/advanced-settings.php:672 msgid "Title for a navigation link block variation." msgstr "" -#: includes/admin/views/acf-post-type/advanced-settings.php:666 +#: includes/admin/views/acf-post-type/advanced-settings.php:671 #: includes/admin/views/acf-taxonomy/advanced-settings.php:681 msgid "Item Link" msgstr "" #. translators: %s Singular form of post type name #. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:663 +#: includes/admin/views/acf-post-type/advanced-settings.php:668 #: includes/admin/views/acf-taxonomy/advanced-settings.php:678 msgid "%s Link" msgstr "" -#: includes/admin/views/acf-post-type/advanced-settings.php:648 +#: includes/admin/views/acf-post-type/advanced-settings.php:653 msgid "Post updated." msgstr "" -#: includes/admin/views/acf-post-type/advanced-settings.php:647 +#: includes/admin/views/acf-post-type/advanced-settings.php:652 msgid "In the editor notice after an item is updated." msgstr "" -#: includes/admin/views/acf-post-type/advanced-settings.php:646 +#: includes/admin/views/acf-post-type/advanced-settings.php:651 msgid "Item Updated" msgstr "" #. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:643 +#: includes/admin/views/acf-post-type/advanced-settings.php:648 msgid "%s updated." msgstr "" -#: includes/admin/views/acf-post-type/advanced-settings.php:628 +#: includes/admin/views/acf-post-type/advanced-settings.php:633 msgid "Post scheduled." msgstr "" -#: includes/admin/views/acf-post-type/advanced-settings.php:627 +#: includes/admin/views/acf-post-type/advanced-settings.php:632 msgid "In the editor notice after scheduling an item." msgstr "" -#: includes/admin/views/acf-post-type/advanced-settings.php:626 +#: includes/admin/views/acf-post-type/advanced-settings.php:631 msgid "Item Scheduled" msgstr "" #. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:623 +#: includes/admin/views/acf-post-type/advanced-settings.php:628 msgid "%s scheduled." msgstr "" -#: includes/admin/views/acf-post-type/advanced-settings.php:608 +#: includes/admin/views/acf-post-type/advanced-settings.php:613 msgid "Post reverted to draft." msgstr "" -#: includes/admin/views/acf-post-type/advanced-settings.php:607 +#: includes/admin/views/acf-post-type/advanced-settings.php:612 msgid "In the editor notice after reverting an item to draft." msgstr "" -#: includes/admin/views/acf-post-type/advanced-settings.php:606 +#: includes/admin/views/acf-post-type/advanced-settings.php:611 msgid "Item Reverted To Draft" msgstr "" #. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:603 +#: includes/admin/views/acf-post-type/advanced-settings.php:608 msgid "%s reverted to draft." msgstr "" -#: includes/admin/views/acf-post-type/advanced-settings.php:588 +#: includes/admin/views/acf-post-type/advanced-settings.php:593 msgid "Post published privately." msgstr "" -#: includes/admin/views/acf-post-type/advanced-settings.php:587 +#: includes/admin/views/acf-post-type/advanced-settings.php:592 msgid "In the editor notice after publishing a private item." msgstr "" -#: includes/admin/views/acf-post-type/advanced-settings.php:586 +#: includes/admin/views/acf-post-type/advanced-settings.php:591 msgid "Item Published Privately" msgstr "" #. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:583 +#: includes/admin/views/acf-post-type/advanced-settings.php:588 msgid "%s published privately." msgstr "" -#: includes/admin/views/acf-post-type/advanced-settings.php:568 +#: includes/admin/views/acf-post-type/advanced-settings.php:573 msgid "Post published." msgstr "" -#: includes/admin/views/acf-post-type/advanced-settings.php:567 +#: includes/admin/views/acf-post-type/advanced-settings.php:572 msgid "In the editor notice after publishing an item." msgstr "" -#: includes/admin/views/acf-post-type/advanced-settings.php:566 +#: includes/admin/views/acf-post-type/advanced-settings.php:571 msgid "Item Published" msgstr "" #. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:563 +#: includes/admin/views/acf-post-type/advanced-settings.php:568 msgid "%s published." msgstr "" -#: includes/admin/views/acf-post-type/advanced-settings.php:548 +#: includes/admin/views/acf-post-type/advanced-settings.php:553 msgid "Posts list" msgstr "" -#: includes/admin/views/acf-post-type/advanced-settings.php:547 +#: includes/admin/views/acf-post-type/advanced-settings.php:552 msgid "Used by screen readers for the items list on the post type list screen." msgstr "" -#: includes/admin/views/acf-post-type/advanced-settings.php:546 +#: includes/admin/views/acf-post-type/advanced-settings.php:551 #: includes/admin/views/acf-taxonomy/advanced-settings.php:640 msgid "Items List" msgstr "" #. translators: %s Plural form of post type name #. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:543 +#: includes/admin/views/acf-post-type/advanced-settings.php:548 #: includes/admin/views/acf-taxonomy/advanced-settings.php:637 msgid "%s list" msgstr "" -#: includes/admin/views/acf-post-type/advanced-settings.php:528 +#: includes/admin/views/acf-post-type/advanced-settings.php:533 msgid "Posts list navigation" msgstr "" -#: includes/admin/views/acf-post-type/advanced-settings.php:527 +#: includes/admin/views/acf-post-type/advanced-settings.php:532 msgid "" "Used by screen readers for the filter list pagination on the post type list " "screen." msgstr "" -#: includes/admin/views/acf-post-type/advanced-settings.php:526 +#: includes/admin/views/acf-post-type/advanced-settings.php:531 #: includes/admin/views/acf-taxonomy/advanced-settings.php:620 msgid "Items List Navigation" msgstr "" #. translators: %s Plural form of post type name #. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:523 +#: includes/admin/views/acf-post-type/advanced-settings.php:528 #: includes/admin/views/acf-taxonomy/advanced-settings.php:617 msgid "%s list navigation" msgstr "" -#: includes/admin/views/acf-post-type/advanced-settings.php:507 +#: includes/admin/views/acf-post-type/advanced-settings.php:512 msgid "Filter posts by date" msgstr "" -#: includes/admin/views/acf-post-type/advanced-settings.php:506 +#: includes/admin/views/acf-post-type/advanced-settings.php:511 msgid "" "Used by screen readers for the filter by date heading on the post type list " "screen." msgstr "" -#: includes/admin/views/acf-post-type/advanced-settings.php:505 +#: includes/admin/views/acf-post-type/advanced-settings.php:510 msgid "Filter Items By Date" msgstr "" #. translators: %s Plural form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:501 +#: includes/admin/views/acf-post-type/advanced-settings.php:506 msgid "Filter %s by date" msgstr "" -#: includes/admin/views/acf-post-type/advanced-settings.php:486 +#: includes/admin/views/acf-post-type/advanced-settings.php:491 msgid "Filter posts list" msgstr "" -#: includes/admin/views/acf-post-type/advanced-settings.php:485 +#: includes/admin/views/acf-post-type/advanced-settings.php:490 msgid "" "Used by screen readers for the filter links heading on the post type list " "screen." msgstr "" -#: includes/admin/views/acf-post-type/advanced-settings.php:484 +#: includes/admin/views/acf-post-type/advanced-settings.php:489 msgid "Filter Items List" msgstr "" #. translators: %s Plural form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:480 +#: includes/admin/views/acf-post-type/advanced-settings.php:485 msgid "Filter %s list" msgstr "" -#: includes/admin/views/acf-post-type/advanced-settings.php:464 +#: includes/admin/views/acf-post-type/advanced-settings.php:469 msgid "In the media modal showing all media uploaded to this item." msgstr "" -#: includes/admin/views/acf-post-type/advanced-settings.php:463 +#: includes/admin/views/acf-post-type/advanced-settings.php:468 msgid "Uploaded To This Item" msgstr "" #. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:459 +#: includes/admin/views/acf-post-type/advanced-settings.php:464 msgid "Uploaded to this %s" msgstr "" -#: includes/admin/views/acf-post-type/advanced-settings.php:444 +#: includes/admin/views/acf-post-type/advanced-settings.php:449 msgid "Insert into post" msgstr "" -#: includes/admin/views/acf-post-type/advanced-settings.php:443 +#: includes/admin/views/acf-post-type/advanced-settings.php:448 msgid "As the button label when adding media to content." msgstr "" -#: includes/admin/views/acf-post-type/advanced-settings.php:442 +#: includes/admin/views/acf-post-type/advanced-settings.php:447 msgid "Insert Into Media Button" msgstr "" #. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:438 +#: includes/admin/views/acf-post-type/advanced-settings.php:443 msgid "Insert into %s" msgstr "" -#: includes/admin/views/acf-post-type/advanced-settings.php:423 +#: includes/admin/views/acf-post-type/advanced-settings.php:428 msgid "Use as featured image" msgstr "" -#: includes/admin/views/acf-post-type/advanced-settings.php:422 +#: includes/admin/views/acf-post-type/advanced-settings.php:427 msgid "" "As the button label for selecting to use an image as the featured image." msgstr "" -#: includes/admin/views/acf-post-type/advanced-settings.php:421 +#: includes/admin/views/acf-post-type/advanced-settings.php:426 msgid "Use Featured Image" msgstr "" -#: includes/admin/views/acf-post-type/advanced-settings.php:408 +#: includes/admin/views/acf-post-type/advanced-settings.php:413 msgid "Remove featured image" msgstr "" -#: includes/admin/views/acf-post-type/advanced-settings.php:407 +#: includes/admin/views/acf-post-type/advanced-settings.php:412 msgid "As the button label when removing the featured image." msgstr "" -#: includes/admin/views/acf-post-type/advanced-settings.php:406 +#: includes/admin/views/acf-post-type/advanced-settings.php:411 msgid "Remove Featured Image" msgstr "" -#: includes/admin/views/acf-post-type/advanced-settings.php:393 +#: includes/admin/views/acf-post-type/advanced-settings.php:398 msgid "Set featured image" msgstr "" -#: includes/admin/views/acf-post-type/advanced-settings.php:392 +#: includes/admin/views/acf-post-type/advanced-settings.php:397 msgid "As the button label when setting the featured image." msgstr "" -#: includes/admin/views/acf-post-type/advanced-settings.php:391 +#: includes/admin/views/acf-post-type/advanced-settings.php:396 msgid "Set Featured Image" msgstr "" -#: includes/admin/views/acf-post-type/advanced-settings.php:378 +#: includes/admin/views/acf-post-type/advanced-settings.php:383 msgid "Featured image" msgstr "" -#: includes/admin/views/acf-post-type/advanced-settings.php:377 +#: includes/admin/views/acf-post-type/advanced-settings.php:382 msgid "In the editor used for the title of the featured image meta box." msgstr "" -#: includes/admin/views/acf-post-type/advanced-settings.php:376 +#: includes/admin/views/acf-post-type/advanced-settings.php:381 msgid "Featured Image Meta Box" msgstr "" -#: includes/admin/views/acf-post-type/advanced-settings.php:363 +#: includes/admin/views/acf-post-type/advanced-settings.php:368 msgid "Post Attributes" msgstr "" -#: includes/admin/views/acf-post-type/advanced-settings.php:362 +#: includes/admin/views/acf-post-type/advanced-settings.php:367 msgid "In the editor used for the title of the post attributes meta box." msgstr "" -#: includes/admin/views/acf-post-type/advanced-settings.php:361 +#: includes/admin/views/acf-post-type/advanced-settings.php:366 msgid "Attributes Meta Box" msgstr "" #. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:358 +#: includes/admin/views/acf-post-type/advanced-settings.php:363 msgid "%s Attributes" msgstr "" -#: includes/admin/views/acf-post-type/advanced-settings.php:343 +#: includes/admin/views/acf-post-type/advanced-settings.php:348 msgid "Post Archives" msgstr "" -#: includes/admin/views/acf-post-type/advanced-settings.php:342 +#: includes/admin/views/acf-post-type/advanced-settings.php:347 msgid "" "Adds 'Post Type Archive' items with this label to the list of posts shown " "when adding items to an existing menu in a CPT with archives enabled. Only " @@ -1972,106 +2035,107 @@ msgid "" "has been provided." msgstr "" -#: includes/admin/views/acf-post-type/advanced-settings.php:341 +#: includes/admin/views/acf-post-type/advanced-settings.php:346 msgid "Archives Nav Menu" msgstr "" #. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:338 +#: includes/admin/views/acf-post-type/advanced-settings.php:343 msgid "%s Archives" msgstr "" -#: includes/admin/views/acf-post-type/advanced-settings.php:323 +#: includes/admin/views/acf-post-type/advanced-settings.php:328 msgid "No posts found in Trash" msgstr "" -#: includes/admin/views/acf-post-type/advanced-settings.php:322 +#: includes/admin/views/acf-post-type/advanced-settings.php:327 msgid "" "At the top of the post type list screen when there are no posts in the trash." msgstr "" -#: includes/admin/views/acf-post-type/advanced-settings.php:321 +#: includes/admin/views/acf-post-type/advanced-settings.php:326 msgid "No Items Found in Trash" msgstr "" #. translators: %s Plural form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:317 +#: includes/admin/views/acf-post-type/advanced-settings.php:322 msgid "No %s found in Trash" msgstr "" -#: includes/admin/views/acf-post-type/advanced-settings.php:302 +#: includes/admin/views/acf-post-type/advanced-settings.php:307 msgid "No posts found" msgstr "" -#: includes/admin/views/acf-post-type/advanced-settings.php:301 +#: includes/admin/views/acf-post-type/advanced-settings.php:306 msgid "" "At the top of the post type list screen when there are no posts to display." msgstr "" -#: includes/admin/views/acf-post-type/advanced-settings.php:300 +#: includes/admin/views/acf-post-type/advanced-settings.php:305 msgid "No Items Found" msgstr "" #. translators: %s Plural form of post type name #. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:296 +#: includes/admin/views/acf-post-type/advanced-settings.php:301 #: includes/admin/views/acf-taxonomy/advanced-settings.php:480 msgid "No %s found" msgstr "" -#: includes/admin/views/acf-post-type/advanced-settings.php:281 +#: includes/admin/views/acf-post-type/advanced-settings.php:286 msgid "Search Posts" msgstr "" -#: includes/admin/views/acf-post-type/advanced-settings.php:280 +#: includes/admin/views/acf-post-type/advanced-settings.php:285 msgid "At the top of the items screen when searching for an item." msgstr "" -#: includes/admin/views/acf-post-type/advanced-settings.php:279 +#: includes/admin/views/acf-post-type/advanced-settings.php:284 #: includes/admin/views/acf-taxonomy/advanced-settings.php:345 msgid "Search Items" msgstr "" #. translators: %s Singular form of post type name #. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:276 +#: includes/admin/views/acf-post-type/advanced-settings.php:281 #: includes/admin/views/acf-taxonomy/advanced-settings.php:342 msgid "Search %s" msgstr "" -#: includes/admin/views/acf-post-type/advanced-settings.php:261 +#: includes/admin/views/acf-post-type/advanced-settings.php:266 msgid "Parent Page:" msgstr "" -#: includes/admin/views/acf-post-type/advanced-settings.php:260 +#: includes/admin/views/acf-post-type/advanced-settings.php:265 msgid "For hierarchical types in the post type list screen." msgstr "" -#: includes/admin/views/acf-post-type/advanced-settings.php:259 +#: includes/admin/views/acf-post-type/advanced-settings.php:264 msgid "Parent Item Prefix" msgstr "" #. translators: %s Singular form of post type name #. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:256 +#: includes/admin/views/acf-post-type/advanced-settings.php:261 #: includes/admin/views/acf-taxonomy/advanced-settings.php:318 msgid "Parent %s:" msgstr "" -#: includes/admin/views/acf-post-type/advanced-settings.php:241 +#: includes/admin/views/acf-post-type/advanced-settings.php:246 msgid "New Post" msgstr "" -#: includes/admin/views/acf-post-type/advanced-settings.php:239 +#: includes/admin/views/acf-post-type/advanced-settings.php:244 msgid "New Item" msgstr "" #. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:236 +#: includes/admin/views/acf-post-type/advanced-settings.php:241 msgid "New %s" msgstr "" #: includes/admin/views/acf-post-type/advanced-settings.php:206 +#: includes/admin/views/acf-post-type/advanced-settings.php:226 msgid "Add New Post" msgstr "" @@ -2087,6 +2151,7 @@ msgstr "" #. translators: %s Singular form of post type name #. translators: %s Singular form of taxonomy name #: includes/admin/views/acf-post-type/advanced-settings.php:201 +#: includes/admin/views/acf-post-type/advanced-settings.php:221 #: includes/admin/views/acf-taxonomy/advanced-settings.php:253 msgid "Add New %s" msgstr "" @@ -2152,8 +2217,8 @@ msgid "All Posts" msgstr "" #: includes/admin/views/acf-post-type/advanced-settings.php:125 -#: includes/admin/views/acf-post-type/advanced-settings.php:220 -#: includes/admin/views/acf-post-type/advanced-settings.php:240 +#: includes/admin/views/acf-post-type/advanced-settings.php:225 +#: includes/admin/views/acf-post-type/advanced-settings.php:245 msgid "In the post type submenu in the admin dashboard." msgstr "" @@ -2219,54 +2284,54 @@ msgstr "" msgid "Select existing taxonomies to classify items of the post type." msgstr "طبقه‌بندی‌های موجود را برای دسته‌بندی کردن آیتم‌های نوع پست انتخاب نمایید." -#: includes/admin/views/acf-field-group/field.php:145 +#: includes/admin/views/acf-field-group/field.php:147 msgid "Browse Fields" msgstr "" -#: includes/admin/tools/class-acf-admin-tool-import.php:292 +#: includes/admin/tools/class-acf-admin-tool-import.php:290 msgid "Nothing to import" msgstr "" -#: includes/admin/tools/class-acf-admin-tool-import.php:287 +#: includes/admin/tools/class-acf-admin-tool-import.php:285 msgid ". The Custom Post Type UI plugin can be deactivated." msgstr "" #. translators: %d - number of items imported from CPTUI -#: includes/admin/tools/class-acf-admin-tool-import.php:278 +#: includes/admin/tools/class-acf-admin-tool-import.php:276 msgid "Imported %d item from Custom Post Type UI -" msgid_plural "Imported %d items from Custom Post Type UI -" msgstr[0] "" -#: includes/admin/tools/class-acf-admin-tool-import.php:262 +#: includes/admin/tools/class-acf-admin-tool-import.php:260 msgid "Failed to import taxonomies." msgstr "" -#: includes/admin/tools/class-acf-admin-tool-import.php:244 +#: includes/admin/tools/class-acf-admin-tool-import.php:242 msgid "Failed to import post types." msgstr "" -#: includes/admin/tools/class-acf-admin-tool-import.php:233 +#: includes/admin/tools/class-acf-admin-tool-import.php:231 msgid "Nothing from Custom Post Type UI plugin selected for import." msgstr "" -#: includes/admin/tools/class-acf-admin-tool-import.php:209 +#: includes/admin/tools/class-acf-admin-tool-import.php:207 msgid "Imported 1 item" msgid_plural "Imported %s items" msgstr[0] "" -#: includes/admin/tools/class-acf-admin-tool-import.php:122 +#: includes/admin/tools/class-acf-admin-tool-import.php:121 msgid "" "Importing a Post Type or Taxonomy with the same key as one that already " "exists will overwrite the settings for the existing Post Type or Taxonomy " "with those of the import." msgstr "" -#: includes/admin/tools/class-acf-admin-tool-import.php:111 -#: includes/admin/tools/class-acf-admin-tool-import.php:127 +#: includes/admin/tools/class-acf-admin-tool-import.php:110 +#: includes/admin/tools/class-acf-admin-tool-import.php:126 msgid "Import from Custom Post Type UI" msgstr "" -#: includes/admin/tools/class-acf-admin-tool-export.php:412 +#: includes/admin/tools/class-acf-admin-tool-export.php:398 msgid "" "The following code can be used to register a local version of the selected " "items. Storing field groups, post types, or taxonomies locally can provide " @@ -2276,23 +2341,23 @@ msgid "" "the items from the ACF admin." msgstr "" -#: includes/admin/tools/class-acf-admin-tool-export.php:411 +#: includes/admin/tools/class-acf-admin-tool-export.php:397 msgid "Export - Generate PHP" msgstr "" -#: includes/admin/tools/class-acf-admin-tool-export.php:384 +#: includes/admin/tools/class-acf-admin-tool-export.php:371 msgid "Export" msgstr "" -#: includes/admin/tools/class-acf-admin-tool-export.php:276 +#: includes/admin/tools/class-acf-admin-tool-export.php:264 msgid "Select Taxonomies" msgstr "" -#: includes/admin/tools/class-acf-admin-tool-export.php:254 +#: includes/admin/tools/class-acf-admin-tool-export.php:242 msgid "Select Post Types" msgstr "" -#: includes/admin/tools/class-acf-admin-tool-export.php:167 +#: includes/admin/tools/class-acf-admin-tool-export.php:160 msgid "Exported 1 item." msgid_plural "Exported %s items." msgstr[0] "" @@ -2404,7 +2469,7 @@ msgstr[0] "" #: includes/admin/post-types/admin-post-types.php:112 #: includes/admin/post-types/admin-taxonomies.php:137 -#: includes/admin/tools/class-acf-admin-tool-import.php:82 +#: includes/admin/tools/class-acf-admin-tool-import.php:81 #: includes/admin/views/acf-taxonomy/basic-settings.php:82 #: includes/post-types/class-acf-post-type.php:91 msgid "Post Types" @@ -2477,16 +2542,16 @@ msgid "Post type deleted." msgstr "نوع پست حذف شد" #: includes/admin/post-types/admin-field-group.php:120 -#: assets/build/js/acf-field-group.js:1146 +#: assets/build/js/acf-field-group.js:1145 #: assets/build/js/acf-field-group.js:1366 msgid "Type to search..." msgstr "برای جستجو تایپ کنید...." #: includes/admin/post-types/admin-field-group.php:105 -#: assets/build/js/acf-field-group.js:1172 -#: assets/build/js/acf-field-group.js:2319 -#: assets/build/js/acf-field-group.js:1414 -#: assets/build/js/acf-field-group.js:2727 +#: assets/build/js/acf-field-group.js:1171 +#: assets/build/js/acf-field-group.js:2318 +#: assets/build/js/acf-field-group.js:1415 +#: assets/build/js/acf-field-group.js:2728 msgid "PRO Only" msgstr "فقط نسخه حرفه ای" @@ -2497,13 +2562,13 @@ msgid "Field groups linked successfully." msgstr "" #. translators: %s - URL to ACF tools page. -#: includes/admin/admin.php:195 +#: includes/admin/admin.php:203 msgid "" "Import Post Types and Taxonomies registered with Custom Post Type UI and " "manage them with ACF. Get Started." msgstr "" -#: includes/admin/admin.php:48 includes/admin/admin.php:267 +#: includes/admin/admin.php:47 includes/admin/admin.php:332 msgid "ACF" msgstr "ACF" @@ -2536,14 +2601,14 @@ msgid "Field group linked successfully." msgid_plural "Field groups linked successfully." msgstr[0] "" -#: includes/admin/admin-internal-post-type-list.php:261 +#: includes/admin/admin-internal-post-type-list.php:264 #: includes/admin/post-types/admin-post-types.php:371 #: includes/admin/post-types/admin-taxonomies.php:378 msgctxt "post status" msgid "Registration Failed" msgstr "ثبت نام انجام نشد" -#: includes/admin/admin-internal-post-type-list.php:260 +#: includes/admin/admin-internal-post-type-list.php:263 msgid "" "This item could not be registered because its key is in use by another item " "registered by another plugin or theme." @@ -2579,7 +2644,7 @@ msgstr "نمایش" msgid "Labels" msgstr "برچسب‌ها" -#: includes/admin/post-types/admin-field-group.php:269 +#: includes/admin/post-types/admin-field-group.php:261 msgid "Field Settings Tabs" msgstr "زبانه تنظیمات زمینه" @@ -2591,18 +2656,18 @@ msgstr "" "https://wpengine.com/?utm_source=wordpress." "org&utm_medium=referral&utm_campaign=plugin_directory&utm_content=advanced_custom_fields" -#: includes/api/api-template.php:867 +#: includes/api/api-template.php:1102 msgid "[ACF shortcode value disabled for preview]" msgstr "[مقدار کد کوتاه ACF برای پیش نمایش غیرفعال است]" #: includes/admin/admin-internal-post-type.php:298 -#: includes/admin/post-types/admin-field-group.php:571 +#: includes/admin/post-types/admin-field-group.php:563 msgid "Close Modal" msgstr "بستن صفحه" #: includes/admin/post-types/admin-field-group.php:96 -#: assets/build/js/acf-field-group.js:1670 -#: assets/build/js/acf-field-group.js:1993 +#: assets/build/js/acf-field-group.js:1669 +#: assets/build/js/acf-field-group.js:1994 msgid "Field moved to other group" msgstr "زمینه به یک گروه دیگر منتقل شد" @@ -2611,45 +2676,45 @@ msgstr "زمینه به یک گروه دیگر منتقل شد" msgid "Close modal" msgstr "بستن صفحه" -#: includes/fields/class-acf-field-tab.php:125 +#: includes/fields/class-acf-field-tab.php:124 msgid "Start a new group of tabs at this tab." msgstr "شروع گروه جدید زبانه‌ها در این زبانه" -#: includes/fields/class-acf-field-tab.php:124 +#: includes/fields/class-acf-field-tab.php:123 msgid "New Tab Group" msgstr "گروه زبانه جدید" -#: includes/fields/class-acf-field-select.php:451 -#: includes/fields/class-acf-field-true_false.php:200 +#: includes/fields/class-acf-field-select.php:439 +#: includes/fields/class-acf-field-true_false.php:197 msgid "Use a stylized checkbox using select2" msgstr "به‌کارگیری کادر انتخاب سبک وار با select2" -#: includes/fields/class-acf-field-radio.php:260 +#: includes/fields/class-acf-field-radio.php:259 msgid "Save Other Choice" msgstr "ذخیره انتخاب دیگر" -#: includes/fields/class-acf-field-radio.php:249 +#: includes/fields/class-acf-field-radio.php:248 msgid "Allow Other Choice" msgstr "اجازه دادن انتخاب دیگر" -#: includes/fields/class-acf-field-checkbox.php:450 +#: includes/fields/class-acf-field-checkbox.php:439 msgid "Add Toggle All" msgstr "افزودن تغییر وضعیت همه" -#: includes/fields/class-acf-field-checkbox.php:409 +#: includes/fields/class-acf-field-checkbox.php:398 msgid "Save Custom Values" msgstr "ذخیره مقادیر سفارشی" -#: includes/fields/class-acf-field-checkbox.php:398 +#: includes/fields/class-acf-field-checkbox.php:387 msgid "Allow Custom Values" msgstr "اجازه دادن مقادیر سفارشی" -#: includes/fields/class-acf-field-checkbox.php:148 +#: includes/fields/class-acf-field-checkbox.php:145 msgid "Checkbox custom values cannot be empty. Uncheck any empty values." msgstr "" "مقادیر سفارشی کادر انتخاب نمی‌تواند خالی باشد. انتخاب مقادیر خالی را بردارید." -#: includes/admin/views/global/navigation.php:248 +#: includes/admin/views/global/navigation.php:250 msgid "Updates" msgstr "بروزرسانی ها" @@ -2665,7 +2730,7 @@ msgstr "ذخیره تغییرات" msgid "Field Group Title" msgstr "عنوان گروه زمینه" -#: includes/admin/views/acf-post-type/advanced-settings.php:704 +#: includes/admin/views/acf-post-type/advanced-settings.php:709 #: includes/admin/views/global/form-top.php:3 msgid "Add title" msgstr "افزودن عنوان" @@ -2700,7 +2765,7 @@ msgstr "اولین گروه فیلد خود را اضافه نمایید" #: includes/admin/admin-options-pages-preview.php:28 #: includes/admin/views/acf-field-group/pro-features.php:54 #: includes/admin/views/global/navigation.php:86 -#: includes/admin/views/global/navigation.php:250 +#: includes/admin/views/global/navigation.php:252 msgid "Options Pages" msgstr "برگه‌های گزینه‌ها" @@ -2766,70 +2831,70 @@ msgstr "#" #: includes/admin/views/acf-field-group/fields.php:33 #: includes/admin/views/acf-field-group/fields.php:67 -#: includes/admin/views/acf-field-group/fields.php:103 +#: includes/admin/views/acf-field-group/fields.php:99 #: includes/admin/views/global/form-top.php:85 msgid "Add Field" msgstr "افزودن زمینه" -#: includes/acf-field-group-functions.php:496 includes/fields.php:410 +#: includes/acf-field-group-functions.php:496 includes/fields.php:428 msgid "Presentation" msgstr "نمایش" -#: includes/fields.php:409 +#: includes/fields.php:427 msgid "Validation" msgstr "اعتبارسنجی" #: includes/acf-internal-post-type-functions.php:477 -#: includes/acf-internal-post-type-functions.php:506 includes/fields.php:408 +#: includes/acf-internal-post-type-functions.php:506 includes/fields.php:426 msgid "General" msgstr "عمومی" -#: includes/admin/tools/class-acf-admin-tool-import.php:70 +#: includes/admin/tools/class-acf-admin-tool-import.php:69 msgid "Import JSON" msgstr "درون ریزی JSON" -#: includes/admin/tools/class-acf-admin-tool-export.php:392 +#: includes/admin/tools/class-acf-admin-tool-export.php:379 msgid "Export As JSON" msgstr "برون بری با JSON" #. translators: %s number of field groups deactivated -#: includes/admin/post-types/admin-field-groups.php:367 +#: includes/admin/post-types/admin-field-groups.php:366 msgid "Field group deactivated." msgid_plural "%s field groups deactivated." msgstr[0] "" #. translators: %s number of field groups activated -#: includes/admin/post-types/admin-field-groups.php:360 +#: includes/admin/post-types/admin-field-groups.php:359 msgid "Field group activated." msgid_plural "%s field groups activated." msgstr[0] "" -#: includes/admin/admin-internal-post-type-list.php:452 -#: includes/admin/admin-internal-post-type-list.php:478 +#: includes/admin/admin-internal-post-type-list.php:455 +#: includes/admin/admin-internal-post-type-list.php:481 msgid "Deactivate" msgstr "غیرفعال کردن" -#: includes/admin/admin-internal-post-type-list.php:452 +#: includes/admin/admin-internal-post-type-list.php:455 msgid "Deactivate this item" msgstr "غیرفعال کردن این مورد" -#: includes/admin/admin-internal-post-type-list.php:448 -#: includes/admin/admin-internal-post-type-list.php:477 +#: includes/admin/admin-internal-post-type-list.php:451 +#: includes/admin/admin-internal-post-type-list.php:480 msgid "Activate" msgstr "فعال کردن" -#: includes/admin/admin-internal-post-type-list.php:448 +#: includes/admin/admin-internal-post-type-list.php:451 msgid "Activate this item" msgstr "فعال کردن این مورد" #: includes/admin/post-types/admin-field-group.php:92 -#: assets/build/js/acf-field-group.js:2812 -#: assets/build/js/acf-field-group.js:3313 +#: assets/build/js/acf-field-group.js:2811 +#: assets/build/js/acf-field-group.js:3314 msgid "Move field group to trash?" msgstr "انتقال گروه زمینه به زباله‌دان؟" -#: acf.php:497 includes/admin/admin-internal-post-type-list.php:248 -#: includes/admin/post-types/admin-field-group.php:297 +#: acf.php:493 includes/admin/admin-internal-post-type-list.php:251 +#: includes/admin/post-types/admin-field-group.php:289 #: includes/admin/post-types/admin-post-type.php:295 #: includes/admin/post-types/admin-taxonomy.php:297 msgctxt "post status" @@ -2840,7 +2905,7 @@ msgstr "غیرفعال" msgid "WP Engine" msgstr "" -#: acf.php:555 +#: acf.php:551 msgid "" "Advanced Custom Fields and Advanced Custom Fields PRO should not be active " "at the same time. We've automatically deactivated Advanced Custom Fields PRO." @@ -2848,7 +2913,7 @@ msgstr "" "افزونه زمینه های سفارشی و افزونه زمینه های سفارشی پیشرفته نباید همزمان فعال " "باشند. ما به طور خودکار افزونه زمینه های سفارشی پیشرفته را غیرفعال کردیم." -#: acf.php:553 +#: acf.php:549 msgid "" "Advanced Custom Fields and Advanced Custom Fields PRO should not be active " "at the same time. We've automatically deactivated Advanced Custom Fields." @@ -2856,7 +2921,7 @@ msgstr "" "افزونه زمینه های سفارشی و افزونه زمینه های سفارشی پیشرفته نباید همزمان فعال " "باشند. ما به طور خودکار فیلدهای سفارشی پیشرفته را غیرفعال کرده ایم." -#: includes/acf-value-functions.php:374 +#: includes/acf-value-functions.php:375 msgid "" "%1$s - We've detected one or more calls to retrieve ACF " "field values before ACF has been initialized. This is not supported and can " @@ -2881,25 +2946,25 @@ msgstr "" msgid "Invalid request." msgstr "درخواست نامعتبر." -#: includes/fields/class-acf-field-select.php:684 +#: includes/fields/class-acf-field-select.php:667 msgid "%1$s is not one of %2$s" msgstr "" -#: includes/fields/class-acf-field-post_object.php:700 +#: includes/fields/class-acf-field-post_object.php:665 msgid "%1$s must have term %2$s." msgid_plural "%1$s must have one of the following terms: %2$s" msgstr[0] "" -#: includes/fields/class-acf-field-post_object.php:684 +#: includes/fields/class-acf-field-post_object.php:649 msgid "%1$s must be of post type %2$s." msgid_plural "%1$s must be of one of the following post types: %2$s" msgstr[0] "" -#: includes/fields/class-acf-field-post_object.php:675 +#: includes/fields/class-acf-field-post_object.php:640 msgid "%1$s must have a valid post ID." msgstr "" -#: includes/fields/class-acf-field-file.php:475 +#: includes/fields/class-acf-field-file.php:468 msgid "%s requires a valid attachment ID." msgstr "" @@ -2928,14 +2993,14 @@ msgstr "کد هگز RGBA " msgid "Upgrade to PRO" msgstr "‫ارتقا به نسخه حرفه ای" -#: includes/admin/post-types/admin-field-group.php:297 +#: includes/admin/post-types/admin-field-group.php:289 #: includes/admin/post-types/admin-post-type.php:295 #: includes/admin/post-types/admin-taxonomy.php:297 msgctxt "post status" msgid "Active" msgstr "فعال" -#: includes/fields/class-acf-field-email.php:181 +#: includes/fields/class-acf-field-email.php:175 msgid "'%s' is not a valid email address" msgstr "نشانی ایمیل %s معتبر نیست" @@ -2978,7 +3043,7 @@ msgstr "پیوست‌ها" #: includes/acf-wp-functions.php:57 #: includes/admin/post-types/admin-post-types.php:137 #: includes/admin/post-types/admin-taxonomies.php:112 -#: includes/admin/tools/class-acf-admin-tool-import.php:93 +#: includes/admin/tools/class-acf-admin-tool-import.php:92 #: includes/admin/views/acf-post-type/basic-settings.php:86 #: includes/post-types/class-acf-taxonomy.php:90 #: includes/post-types/class-acf-taxonomy.php:91 @@ -3006,69 +3071,69 @@ msgstr "" msgid "Invalid field group parameter(s)." msgstr "پارامتر(ها) گروه فیلد نامعتبر است" -#: includes/admin/admin-internal-post-type-list.php:413 +#: includes/admin/admin-internal-post-type-list.php:416 msgid "Awaiting save" msgstr "در انتظار ذخیره" -#: includes/admin/admin-internal-post-type-list.php:410 +#: includes/admin/admin-internal-post-type-list.php:413 msgid "Saved" msgstr "ذخیره شده" -#: includes/admin/admin-internal-post-type-list.php:406 -#: includes/admin/tools/class-acf-admin-tool-import.php:49 +#: includes/admin/admin-internal-post-type-list.php:409 +#: includes/admin/tools/class-acf-admin-tool-import.php:48 msgid "Import" msgstr "درون‌ریزی" -#: includes/admin/admin-internal-post-type-list.php:402 +#: includes/admin/admin-internal-post-type-list.php:405 msgid "Review changes" msgstr "تغییرات مرور شد" -#: includes/admin/admin-internal-post-type-list.php:378 +#: includes/admin/admin-internal-post-type-list.php:381 msgid "Located in: %s" msgstr "قرار گرفته در: %s" -#: includes/admin/admin-internal-post-type-list.php:375 +#: includes/admin/admin-internal-post-type-list.php:378 msgid "Located in plugin: %s" msgstr "قرار گرفته در پلاگین: %s" -#: includes/admin/admin-internal-post-type-list.php:372 +#: includes/admin/admin-internal-post-type-list.php:375 msgid "Located in theme: %s" msgstr "قرار گرفته در قالب: %s" -#: includes/admin/post-types/admin-field-groups.php:261 +#: includes/admin/post-types/admin-field-groups.php:260 msgid "Various" msgstr "مختلف" -#: includes/admin/admin-internal-post-type-list.php:216 -#: includes/admin/admin-internal-post-type-list.php:485 +#: includes/admin/admin-internal-post-type-list.php:219 +#: includes/admin/admin-internal-post-type-list.php:488 msgid "Sync changes" msgstr "همگام‌سازی تغییرات" -#: includes/admin/admin-internal-post-type-list.php:215 +#: includes/admin/admin-internal-post-type-list.php:218 msgid "Loading diff" msgstr "بارگذاری تفاوت" -#: includes/admin/admin-internal-post-type-list.php:214 +#: includes/admin/admin-internal-post-type-list.php:217 msgid "Review local JSON changes" msgstr "بررسی تغییرات JSON محلی" -#: includes/admin/admin.php:170 +#: includes/admin/admin.php:178 msgid "Visit website" msgstr "بازدید وب سایت" -#: includes/admin/admin.php:169 +#: includes/admin/admin.php:177 msgid "View details" msgstr "نمایش جزییات" -#: includes/admin/admin.php:168 +#: includes/admin/admin.php:176 msgid "Version %s" msgstr "نگارش %s" -#: includes/admin/admin.php:167 +#: includes/admin/admin.php:175 msgid "Information" msgstr "اطلاعات" -#: includes/admin/admin.php:158 +#: includes/admin/admin.php:166 msgid "" "Help Desk. The support professionals on " "our Help Desk will assist with your more in depth, technical challenges." @@ -3076,7 +3141,7 @@ msgstr "" "کمک ميز. حرفه ای پشتیبانی در میز کمک ما " "با بیشتر خود را در عمق کمک, چالش های فنی." -#: includes/admin/admin.php:154 +#: includes/admin/admin.php:162 msgid "" "Discussions. We have an active and " "friendly community on our Community Forums who may be able to help you " @@ -3086,7 +3151,7 @@ msgstr "" "انجمن های جامعه ما که ممکن است قادر به کمک به شما کشف کردن 'چگونه بازی یا " "بازی' از جهان ACF." -#: includes/admin/admin.php:150 +#: includes/admin/admin.php:158 msgid "" "Documentation. Our extensive " "documentation contains references and guides for most situations you may " @@ -3095,7 +3160,7 @@ msgstr "" "مستندات . مستندات گسترده ما شامل مراجع " "و راهنماهایی برای اکثر موقعیت هایی است که ممکن است با آن مواجه شوند." -#: includes/admin/admin.php:147 +#: includes/admin/admin.php:155 msgid "" "We are fanatical about support, and want you to get the best out of your " "website with ACF. If you run into any difficulties, there are several places " @@ -3105,11 +3170,11 @@ msgstr "" "بهترین بهره را از وب سایت خود ببرید. اگر به مشکلی برخوردید ، چندین مکان وجود " "دارد که می توانید کمک کنید:" -#: includes/admin/admin.php:144 includes/admin/admin.php:146 +#: includes/admin/admin.php:152 includes/admin/admin.php:154 msgid "Help & Support" msgstr "کمک و پشتیبانی" -#: includes/admin/admin.php:135 +#: includes/admin/admin.php:143 msgid "" "Please use the Help & Support tab to get in touch should you find yourself " "requiring assistance." @@ -3117,7 +3182,7 @@ msgstr "" "لطفا از زبانه پشتیبانی برای تماس استفاده کنید باید خودتان را پیدا کنید که " "نیاز به کمک دارد." -#: includes/admin/admin.php:132 +#: includes/admin/admin.php:140 msgid "" "Before creating your first Field Group, we recommend first reading our Getting started guide to familiarize " @@ -3127,7 +3192,7 @@ msgstr "" "ما توصیه می کنیم برای اولین بار خواندن راهنمای شروع به کار ما برای آشنایی با " "فلسفه پلاگین و بهترین تمرین." -#: includes/admin/admin.php:130 +#: includes/admin/admin.php:138 msgid "" "The Advanced Custom Fields plugin provides a visual form builder to " "customize WordPress edit screens with extra fields, and an intuitive API to " @@ -3137,7 +3202,7 @@ msgstr "" "کردن وردپرس ویرایش صفحه نمایش با زمینه های اضافی، و API بصری برای نمایش ارزش " "های زمینه سفارشی در هر فایل قالب تم." -#: includes/admin/admin.php:127 includes/admin/admin.php:129 +#: includes/admin/admin.php:135 includes/admin/admin.php:137 msgid "Overview" msgstr "مرور کلی" @@ -3157,12 +3222,12 @@ msgstr "کلید نامعتبر است" msgid "Error loading field." msgstr "خطا در بارگزاری زمینه" -#: assets/build/js/acf-input.js:2750 assets/build/js/acf-input.js:2819 +#: assets/build/js/acf-input.js:2748 assets/build/js/acf-input.js:2817 #: assets/build/js/acf-input.js:2926 assets/build/js/acf-input.js:3000 msgid "Location not found: %s" msgstr "موقعیتی یافت نشد: %s" -#: includes/forms/form-user.php:353 +#: includes/forms/form-user.php:352 msgid "Error: %s" msgstr "" @@ -3296,25 +3361,25 @@ msgstr "همه‌ی فرمت‌های %s" msgid "Attachment" msgstr "پیوست" -#: includes/validation.php:366 +#: includes/validation.php:343 msgid "%s value is required" msgstr "مقدار %s لازم است" -#: includes/admin/views/acf-field-group/conditional-logic.php:59 +#: includes/admin/views/acf-field-group/conditional-logic.php:64 msgid "Show this field if" msgstr "نمایش این گروه فیلد اگر" -#: includes/admin/views/acf-field-group/conditional-logic.php:26 -#: includes/admin/views/acf-field-group/field.php:109 includes/fields.php:411 +#: includes/admin/views/acf-field-group/conditional-logic.php:25 +#: includes/admin/views/acf-field-group/field.php:111 includes/fields.php:429 msgid "Conditional Logic" msgstr "منطق شرطی" -#: includes/admin/views/acf-field-group/conditional-logic.php:156 -#: includes/admin/views/acf-field-group/location-rule.php:92 +#: includes/admin/views/acf-field-group/conditional-logic.php:161 +#: includes/admin/views/acf-field-group/location-rule.php:84 msgid "and" msgstr "و" -#: includes/admin/post-types/admin-field-groups.php:123 +#: includes/admin/post-types/admin-field-groups.php:122 #: includes/admin/post-types/admin-post-types.php:143 #: includes/admin/post-types/admin-taxonomies.php:143 msgid "Local JSON" @@ -3324,40 +3389,40 @@ msgstr "JSON های لوکال" msgid "Clone Field" msgstr "فیلد کپی" -#: includes/admin/views/upgrade/notice.php:30 +#: includes/admin/views/upgrade/notice.php:29 msgid "" "Please also check all premium add-ons (%s) are updated to the latest version." msgstr "" "همچنین لطفا همه افزونه‌های پولی (%s) را بررسی کنید که به نسخه آخر بروز شده " "باشند." -#: includes/admin/views/upgrade/notice.php:28 +#: includes/admin/views/upgrade/notice.php:27 msgid "" "This version contains improvements to your database and requires an upgrade." msgstr "این نسخه شامل بهبودهایی در پایگاه داده است و نیاز به ارتقا دارد." -#: includes/admin/views/upgrade/notice.php:28 +#: includes/admin/views/upgrade/notice.php:27 msgid "Thank you for updating to %1$s v%2$s!" msgstr "" -#: includes/admin/views/upgrade/notice.php:27 +#: includes/admin/views/upgrade/notice.php:26 msgid "Database Upgrade Required" msgstr "به روزرسانی دیتابیس لازم است" -#: includes/admin/post-types/admin-field-group.php:141 -#: includes/admin/views/upgrade/notice.php:18 +#: includes/admin/post-types/admin-field-group.php:133 +#: includes/admin/views/upgrade/notice.php:17 msgid "Options Page" msgstr "برگه تنظیمات" -#: includes/admin/views/upgrade/notice.php:15 includes/fields.php:462 +#: includes/admin/views/upgrade/notice.php:14 includes/fields.php:480 msgid "Gallery" msgstr "گالری" -#: includes/admin/views/upgrade/notice.php:12 includes/fields.php:452 +#: includes/admin/views/upgrade/notice.php:11 includes/fields.php:470 msgid "Flexible Content" msgstr "محتوای انعطاف پذیر" -#: includes/admin/views/upgrade/notice.php:9 includes/fields.php:472 +#: includes/admin/views/upgrade/notice.php:8 includes/fields.php:490 msgid "Repeater" msgstr "زمینه تکرار کننده" @@ -3506,7 +3571,7 @@ msgstr "شیوه نمایش" msgid "Type" msgstr "نوع " -#: includes/admin/post-types/admin-field-groups.php:117 +#: includes/admin/post-types/admin-field-groups.php:116 #: includes/admin/post-types/admin-post-types.php:136 #: includes/admin/post-types/admin-taxonomies.php:136 #: includes/admin/views/acf-field-group/fields.php:54 @@ -3519,92 +3584,92 @@ msgstr "کلید" msgid "Order" msgstr "ترتیب" -#: includes/admin/views/acf-field-group/field.php:322 +#: includes/admin/views/acf-field-group/field.php:310 msgid "Close Field" msgstr "بستن فیلد " -#: includes/admin/views/acf-field-group/field.php:253 +#: includes/admin/views/acf-field-group/field.php:241 msgid "id" msgstr "شناسه" -#: includes/admin/views/acf-field-group/field.php:237 +#: includes/admin/views/acf-field-group/field.php:225 msgid "class" msgstr "کلاس" -#: includes/admin/views/acf-field-group/field.php:279 +#: includes/admin/views/acf-field-group/field.php:267 msgid "width" msgstr "عرض" -#: includes/admin/views/acf-field-group/field.php:273 +#: includes/admin/views/acf-field-group/field.php:261 msgid "Wrapper Attributes" msgstr "مشخصات پوشش فیلد" -#: includes/admin/views/acf-field-group/field.php:196 +#: includes/fields/class-acf-field.php:316 msgid "Required" msgstr "" -#: includes/admin/views/acf-field-group/field.php:221 +#: includes/admin/views/acf-field-group/field.php:209 msgid "Instructions for authors. Shown when submitting data" msgstr "دستورالعمل هایی برای نویسندگان. هنگام ارسال داده ها نمایش داده می شوند" -#: includes/admin/views/acf-field-group/field.php:220 +#: includes/admin/views/acf-field-group/field.php:208 msgid "Instructions" msgstr "دستورالعمل ها" -#: includes/admin/views/acf-field-group/field.php:129 +#: includes/admin/views/acf-field-group/field.php:131 msgid "Field Type" msgstr "نوع فیلد " -#: includes/admin/views/acf-field-group/field.php:170 +#: includes/admin/views/acf-field-group/field.php:172 msgid "Single word, no spaces. Underscores and dashes allowed" msgstr "تک کلمه، بدون فاصله. خط زیرین و خط تیره ها مجازاند" -#: includes/admin/views/acf-field-group/field.php:169 +#: includes/admin/views/acf-field-group/field.php:171 msgid "Field Name" msgstr "نام فیلد " -#: includes/admin/views/acf-field-group/field.php:157 +#: includes/admin/views/acf-field-group/field.php:159 msgid "This is the name which will appear on the EDIT page" msgstr "این نامی است که در صفحه \"ویرایش\" نمایش داده خواهد شد" -#: includes/admin/views/acf-field-group/field.php:156 +#: includes/admin/views/acf-field-group/field.php:158 #: includes/admin/views/browse-fields-modal.php:59 msgid "Field Label" msgstr "برچسب فیلد " -#: includes/admin/views/acf-field-group/field.php:81 +#: includes/admin/views/acf-field-group/field.php:83 msgid "Delete" msgstr "حذف" -#: includes/admin/views/acf-field-group/field.php:81 +#: includes/admin/views/acf-field-group/field.php:83 msgid "Delete field" msgstr "حذف زمینه" -#: includes/admin/views/acf-field-group/field.php:79 +#: includes/admin/views/acf-field-group/field.php:81 msgid "Move" msgstr "انتقال" -#: includes/admin/views/acf-field-group/field.php:79 +#: includes/admin/views/acf-field-group/field.php:81 msgid "Move field to another group" msgstr "انتقال زمینه ها به گروه دیگر" -#: includes/admin/views/acf-field-group/field.php:77 +#: includes/admin/views/acf-field-group/field.php:79 msgid "Duplicate field" msgstr "تکثیر زمینه" -#: includes/admin/views/acf-field-group/field.php:73 -#: includes/admin/views/acf-field-group/field.php:76 +#: includes/admin/views/acf-field-group/field.php:75 +#: includes/admin/views/acf-field-group/field.php:78 msgid "Edit field" msgstr "ویرایش زمینه" -#: includes/admin/views/acf-field-group/field.php:69 +#: includes/admin/views/acf-field-group/field.php:71 msgid "Drag to reorder" msgstr "گرفتن و کشیدن برای مرتب سازی" #: includes/admin/post-types/admin-field-group.php:103 #: includes/admin/views/acf-field-group/location-group.php:3 -#: assets/build/js/acf-field-group.js:2347 -#: assets/build/js/acf-field-group.js:2763 +#: assets/build/js/acf-field-group.js:2346 +#: assets/build/js/acf-field-group.js:2764 msgid "Show this field group if" msgstr "نمایش این گروه زمینه اگر" @@ -3621,22 +3686,22 @@ msgstr "ارتقای پایگاه داده کامل شد. تغی msgid "Reading upgrade tasks..." msgstr "در حال خواندن مراحل به روزرسانی..." -#: includes/admin/views/upgrade/network.php:165 +#: includes/admin/views/upgrade/network.php:164 #: includes/admin/views/upgrade/upgrade.php:65 msgid "Upgrade failed." msgstr "ارتقا با خطا مواجه شد." -#: includes/admin/views/upgrade/network.php:162 +#: includes/admin/views/upgrade/network.php:161 msgid "Upgrade complete." msgstr "ارتقا کامل شد." -#: includes/admin/views/upgrade/network.php:148 +#: includes/admin/views/upgrade/network.php:147 #: includes/admin/views/upgrade/upgrade.php:31 msgid "Upgrading data to version %s" msgstr "به روز رسانی داده ها به نسحه %s" -#: includes/admin/views/upgrade/network.php:121 -#: includes/admin/views/upgrade/notice.php:44 +#: includes/admin/views/upgrade/network.php:120 +#: includes/admin/views/upgrade/notice.php:43 msgid "" "It is strongly recommended that you backup your database before proceeding. " "Are you sure you wish to run the updater now?" @@ -3644,11 +3709,11 @@ msgstr "" "قویا توصیه می شود از بانک اطلاعاتی خود قبل از هر کاری پشتیبان تهیه کنید. آیا " "مایلید به روز رسانی انجام شود؟" -#: includes/admin/views/upgrade/network.php:117 +#: includes/admin/views/upgrade/network.php:116 msgid "Please select at least one site to upgrade." msgstr "لطفا حداقل یک سایت برای ارتقا انتخاب کنید." -#: includes/admin/views/upgrade/network.php:97 +#: includes/admin/views/upgrade/network.php:96 msgid "" "Database Upgrade complete. Return to network dashboard" msgstr "" @@ -3669,7 +3734,7 @@ msgstr "سایت" #: includes/admin/views/upgrade/network.php:26 #: includes/admin/views/upgrade/network.php:27 -#: includes/admin/views/upgrade/network.php:96 +#: includes/admin/views/upgrade/network.php:95 msgid "Upgrade Sites" msgstr "ارتقاء سایت" @@ -3679,8 +3744,8 @@ msgid "" "and then click %s." msgstr "این سایت ها نیاز به به روز رسانی دارند برای انجام %s کلیک کنید." -#: includes/admin/views/acf-field-group/conditional-logic.php:171 -#: includes/admin/views/acf-field-group/locations.php:38 +#: includes/admin/views/acf-field-group/conditional-logic.php:176 +#: includes/admin/views/acf-field-group/locations.php:37 msgid "Add rule group" msgstr "افزودن گروه قانون" @@ -3696,15 +3761,15 @@ msgstr "" msgid "Rules" msgstr "قوانین" -#: includes/admin/tools/class-acf-admin-tool-export.php:510 +#: includes/admin/tools/class-acf-admin-tool-export.php:496 msgid "Copied" msgstr "کپی شد" -#: includes/admin/tools/class-acf-admin-tool-export.php:486 +#: includes/admin/tools/class-acf-admin-tool-export.php:472 msgid "Copy to clipboard" msgstr "درج در حافظه موقت" -#: includes/admin/tools/class-acf-admin-tool-export.php:385 +#: includes/admin/tools/class-acf-admin-tool-export.php:372 msgid "" "Select the items you would like to export and then select your export " "method. Export As JSON to export to a .json file which you can then import " @@ -3712,18 +3777,18 @@ msgid "" "can place in your theme." msgstr "" -#: includes/admin/tools/class-acf-admin-tool-export.php:233 +#: includes/admin/tools/class-acf-admin-tool-export.php:221 msgid "Select Field Groups" msgstr "انتخاب گروه های زمینه" -#: includes/admin/tools/class-acf-admin-tool-export.php:96 -#: includes/admin/tools/class-acf-admin-tool-export.php:131 +#: includes/admin/tools/class-acf-admin-tool-export.php:91 +#: includes/admin/tools/class-acf-admin-tool-export.php:125 msgid "No field groups selected" msgstr "گروه زمینه ای انتخاب نشده است" #: includes/admin/tools/class-acf-admin-tool-export.php:39 -#: includes/admin/tools/class-acf-admin-tool-export.php:393 -#: includes/admin/tools/class-acf-admin-tool-export.php:421 +#: includes/admin/tools/class-acf-admin-tool-export.php:380 +#: includes/admin/tools/class-acf-admin-tool-export.php:407 msgid "Generate PHP" msgstr "تولید کد PHP" @@ -3731,19 +3796,19 @@ msgstr "تولید کد PHP" msgid "Export Field Groups" msgstr "برون بری گروه های زمینه" -#: includes/admin/tools/class-acf-admin-tool-import.php:177 +#: includes/admin/tools/class-acf-admin-tool-import.php:175 msgid "Import file empty" msgstr "فایل وارد شده خالی است" -#: includes/admin/tools/class-acf-admin-tool-import.php:168 +#: includes/admin/tools/class-acf-admin-tool-import.php:166 msgid "Incorrect file type" msgstr "نوع فایل صحیح نیست" -#: includes/admin/tools/class-acf-admin-tool-import.php:163 +#: includes/admin/tools/class-acf-admin-tool-import.php:161 msgid "Error uploading file. Please try again" msgstr "خطا در آپلود فایل. لطفا مجدد بررسی کنید" -#: includes/admin/tools/class-acf-admin-tool-import.php:50 +#: includes/admin/tools/class-acf-admin-tool-import.php:49 msgid "" "Select the Advanced Custom Fields JSON file you would like to import. When " "you click the import button below, ACF will import the items in that file." @@ -3753,21 +3818,21 @@ msgstr "" msgid "Import Field Groups" msgstr "وارد کردن گروه های زمینه" -#: includes/admin/admin-internal-post-type-list.php:401 +#: includes/admin/admin-internal-post-type-list.php:404 msgid "Sync" msgstr "هماهنگ" -#: includes/admin/admin-internal-post-type-list.php:858 +#: includes/admin/admin-internal-post-type-list.php:861 msgid "Select %s" msgstr "انتخاب %s" -#: includes/admin/admin-internal-post-type-list.php:442 -#: includes/admin/admin-internal-post-type-list.php:474 -#: includes/admin/views/acf-field-group/field.php:77 +#: includes/admin/admin-internal-post-type-list.php:445 +#: includes/admin/admin-internal-post-type-list.php:477 +#: includes/admin/views/acf-field-group/field.php:79 msgid "Duplicate" msgstr "تکثیر" -#: includes/admin/admin-internal-post-type-list.php:442 +#: includes/admin/admin-internal-post-type-list.php:445 msgid "Duplicate this item" msgstr "تکثیر این زمینه" @@ -3775,11 +3840,11 @@ msgstr "تکثیر این زمینه" msgid "Supports" msgstr "" -#: includes/admin/admin.php:261 includes/admin/views/browse-fields-modal.php:92 +#: includes/admin/admin.php:326 includes/admin/views/browse-fields-modal.php:92 msgid "Documentation" msgstr "مستندات" -#: includes/admin/post-types/admin-field-groups.php:116 +#: includes/admin/post-types/admin-field-groups.php:115 #: includes/admin/post-types/admin-post-types.php:135 #: includes/admin/post-types/admin-taxonomies.php:135 #: includes/admin/views/acf-field-group/options.php:249 @@ -3790,24 +3855,24 @@ msgstr "مستندات" msgid "Description" msgstr "توضیحات" -#: includes/admin/admin-internal-post-type-list.php:398 -#: includes/admin/admin-internal-post-type-list.php:747 +#: includes/admin/admin-internal-post-type-list.php:401 +#: includes/admin/admin-internal-post-type-list.php:750 msgid "Sync available" msgstr "هماهنگ سازی موجود است" #. translators: %s number of field groups synchronized -#: includes/admin/post-types/admin-field-groups.php:381 +#: includes/admin/post-types/admin-field-groups.php:380 msgid "Field group synchronized." msgid_plural "%s field groups synchronized." msgstr[0] "" #. translators: %s number of field groups duplicated -#: includes/admin/post-types/admin-field-groups.php:374 +#: includes/admin/post-types/admin-field-groups.php:373 msgid "Field group duplicated." msgid_plural "%s field groups duplicated." msgstr[0] "%s گروه زمینه تکثیر شدند." -#: includes/admin/admin-internal-post-type-list.php:137 +#: includes/admin/admin-internal-post-type-list.php:140 msgid "Active (%s)" msgid_plural "Active (%s)" msgstr[0] "فعال (%s)" @@ -3828,42 +3893,42 @@ msgstr "به‌روزرسانی پایگاه داده" msgid "Custom Fields" msgstr "زمینه‌های سفارشی" -#: includes/admin/post-types/admin-field-group.php:616 +#: includes/admin/post-types/admin-field-group.php:608 msgid "Move Field" msgstr "جابجایی زمینه" -#: includes/admin/post-types/admin-field-group.php:605 -#: includes/admin/post-types/admin-field-group.php:609 +#: includes/admin/post-types/admin-field-group.php:597 +#: includes/admin/post-types/admin-field-group.php:601 msgid "Please select the destination for this field" msgstr "مقصد انتقال این زمینه را مشخص کنید" #. translators: Confirmation message once a field has been moved to a different #. field group. -#: includes/admin/post-types/admin-field-group.php:567 +#: includes/admin/post-types/admin-field-group.php:559 msgid "The %1$s field can now be found in the %2$s field group" msgstr "" -#: includes/admin/post-types/admin-field-group.php:564 +#: includes/admin/post-types/admin-field-group.php:556 msgid "Move Complete." msgstr "انتقال کامل شد." -#: includes/admin/views/acf-field-group/field.php:39 +#: includes/admin/views/acf-field-group/field.php:41 #: includes/admin/views/acf-field-group/options.php:217 #: includes/admin/views/acf-post-type/advanced-settings.php:78 #: includes/admin/views/acf-taxonomy/advanced-settings.php:130 msgid "Active" msgstr "فعال" -#: includes/admin/post-types/admin-field-group.php:266 +#: includes/admin/post-types/admin-field-group.php:258 msgid "Field Keys" msgstr "کلیدهای زمینه" -#: includes/admin/post-types/admin-field-group.php:164 -#: includes/admin/tools/class-acf-admin-tool-export.php:342 +#: includes/admin/post-types/admin-field-group.php:156 +#: includes/admin/tools/class-acf-admin-tool-export.php:330 msgid "Settings" msgstr "تنظیمات" -#: includes/admin/post-types/admin-field-groups.php:118 +#: includes/admin/post-types/admin-field-groups.php:117 msgid "Location" msgstr "مکان" @@ -3875,8 +3940,8 @@ msgstr "خالی (null)" #: includes/admin/post-types/admin-field-group.php:101 #: includes/class-acf-internal-post-type.php:730 #: includes/post-types/class-acf-field-group.php:345 -#: assets/build/js/acf-field-group.js:1510 -#: assets/build/js/acf-field-group.js:1821 +#: assets/build/js/acf-field-group.js:1509 +#: assets/build/js/acf-field-group.js:1822 msgid "copy" msgstr "کپی" @@ -3893,8 +3958,8 @@ msgid "Checked" msgstr "انتخاب شده" #: includes/admin/post-types/admin-field-group.php:94 -#: assets/build/js/acf-field-group.js:1615 -#: assets/build/js/acf-field-group.js:1933 +#: assets/build/js/acf-field-group.js:1614 +#: assets/build/js/acf-field-group.js:1934 msgid "Move Custom Field" msgstr "جابجایی زمینه دلخواه" @@ -3909,14 +3974,14 @@ msgid "Field group title is required" msgstr "عنوان گروه زمینه ضروری است" #: includes/admin/post-types/admin-field-group.php:90 -#: assets/build/js/acf-field-group.js:1604 -#: assets/build/js/acf-field-group.js:1919 +#: assets/build/js/acf-field-group.js:1603 +#: assets/build/js/acf-field-group.js:1920 msgid "This field cannot be moved until its changes have been saved" msgstr "این زمینه قبل از اینکه ذخیره شود نمی تواند جابجا شود" #: includes/admin/post-types/admin-field-group.php:89 -#: assets/build/js/acf-field-group.js:1414 -#: assets/build/js/acf-field-group.js:1716 +#: assets/build/js/acf-field-group.js:1413 +#: assets/build/js/acf-field-group.js:1717 msgid "The string \"field_\" may not be used at the start of a field name" msgstr "کلمه متنی \"field_\" نباید در ابتدای نام فیلد استفاده شود" @@ -3950,17 +4015,17 @@ msgstr "گروه زمینه حذف شد." msgid "Field group updated." msgstr "گروه زمینه بروز شد." -#: includes/admin/admin-tools.php:118 -#: includes/admin/views/global/navigation.php:246 +#: includes/admin/admin-tools.php:114 +#: includes/admin/views/global/navigation.php:248 #: includes/admin/views/tools/tools.php:21 msgid "Tools" msgstr "ابزارها" -#: includes/locations/abstract-acf-location.php:106 +#: includes/locations/abstract-acf-location.php:105 msgid "is not equal to" msgstr "برابر نشود با" -#: includes/locations/abstract-acf-location.php:105 +#: includes/locations/abstract-acf-location.php:104 msgid "is equal to" msgstr "برابر شود با" @@ -3982,35 +4047,35 @@ msgstr "برگه" msgid "Post" msgstr "نوشته" -#: includes/fields.php:354 +#: includes/fields.php:372 msgid "Relational" msgstr "رابطه" -#: includes/fields.php:353 +#: includes/fields.php:371 msgid "Choice" msgstr "انتخاب" -#: includes/fields.php:351 +#: includes/fields.php:369 msgid "Basic" msgstr "پایه" -#: includes/fields.php:320 +#: includes/fields.php:319 msgid "Unknown" msgstr "ناشناخته" -#: includes/fields.php:320 +#: includes/fields.php:319 msgid "Field type does not exist" msgstr "نوع زمینه وجود ندارد" -#: includes/forms/form-front.php:236 +#: includes/forms/form-front.php:229 msgid "Spam Detected" msgstr "اسپم تشخیص داده شد" -#: includes/forms/form-front.php:107 +#: includes/forms/form-front.php:106 msgid "Post updated" msgstr "نوشته بروز شد" -#: includes/forms/form-front.php:106 +#: includes/forms/form-front.php:105 msgid "Update" msgstr "بروزرسانی" @@ -4018,7 +4083,7 @@ msgstr "بروزرسانی" msgid "Validate Email" msgstr "اعتبار سنجی ایمیل" -#: includes/fields.php:352 includes/forms/form-front.php:49 +#: includes/fields.php:370 includes/forms/form-front.php:49 msgid "Content" msgstr "محتوا" @@ -4027,8 +4092,8 @@ msgstr "محتوا" msgid "Title" msgstr "عنوان" -#: includes/assets.php:372 includes/forms/form-comment.php:160 -#: assets/build/js/acf-input.js:7382 assets/build/js/acf-input.js:7968 +#: includes/assets.php:373 includes/forms/form-comment.php:154 +#: assets/build/js/acf-input.js:7391 assets/build/js/acf-input.js:7979 msgid "Edit field group" msgstr "ویرایش گروه زمینه" @@ -4085,60 +4150,60 @@ msgid "Has any value" msgstr "هر نوع مقدار" #: includes/admin/admin-internal-post-type.php:345 -#: includes/admin/views/browse-fields-modal.php:62 includes/assets.php:353 +#: includes/admin/views/browse-fields-modal.php:62 includes/assets.php:354 #: assets/build/js/acf.js:1564 assets/build/js/acf.js:1658 msgid "Cancel" msgstr "لغو" -#: includes/assets.php:349 assets/build/js/acf.js:1738 +#: includes/assets.php:350 assets/build/js/acf.js:1738 #: assets/build/js/acf.js:1855 msgid "Are you sure?" msgstr "اطمینان دارید؟" -#: includes/assets.php:369 assets/build/js/acf-input.js:9442 -#: assets/build/js/acf-input.js:10294 +#: includes/assets.php:370 assets/build/js/acf-input.js:9451 +#: assets/build/js/acf-input.js:10305 msgid "%d fields require attention" msgstr "%d گزینه نیاز به بررسی دارد" -#: includes/assets.php:368 assets/build/js/acf-input.js:9440 -#: assets/build/js/acf-input.js:10290 +#: includes/assets.php:369 assets/build/js/acf-input.js:9449 +#: assets/build/js/acf-input.js:10301 msgid "1 field requires attention" msgstr "یکی از گزینه ها نیاز به بررسی دارد" -#: includes/assets.php:367 includes/validation.php:288 -#: includes/validation.php:298 assets/build/js/acf-input.js:9435 -#: assets/build/js/acf-input.js:10285 +#: includes/assets.php:368 includes/validation.php:271 +#: includes/validation.php:279 assets/build/js/acf-input.js:9444 +#: assets/build/js/acf-input.js:10296 msgid "Validation failed" msgstr "مشکل در اعتبار سنجی" -#: includes/assets.php:366 assets/build/js/acf-input.js:9603 -#: assets/build/js/acf-input.js:10473 +#: includes/assets.php:367 assets/build/js/acf-input.js:9612 +#: assets/build/js/acf-input.js:10484 msgid "Validation successful" msgstr "اعتبار سنجی موفق بود" -#: includes/media.php:54 assets/build/js/acf-input.js:7210 -#: assets/build/js/acf-input.js:7772 +#: includes/media.php:54 assets/build/js/acf-input.js:7219 +#: assets/build/js/acf-input.js:7783 msgid "Restricted" msgstr "ممنوع" -#: includes/media.php:53 assets/build/js/acf-input.js:7025 -#: assets/build/js/acf-input.js:7536 +#: includes/media.php:53 assets/build/js/acf-input.js:7034 +#: assets/build/js/acf-input.js:7547 msgid "Collapse Details" msgstr "عدم نمایش جزئیات" -#: includes/media.php:52 assets/build/js/acf-input.js:7025 -#: assets/build/js/acf-input.js:7533 +#: includes/media.php:52 assets/build/js/acf-input.js:7034 +#: assets/build/js/acf-input.js:7544 msgid "Expand Details" msgstr "نمایش جزئیات" -#: includes/admin/views/acf-post-type/advanced-settings.php:465 -#: includes/media.php:51 assets/build/js/acf-input.js:6892 -#: assets/build/js/acf-input.js:7381 +#: includes/admin/views/acf-post-type/advanced-settings.php:470 +#: includes/media.php:51 assets/build/js/acf-input.js:6901 +#: assets/build/js/acf-input.js:7392 msgid "Uploaded to this post" msgstr "بارگذاری شده در این نوشته" -#: includes/media.php:50 assets/build/js/acf-input.js:6931 -#: assets/build/js/acf-input.js:7420 +#: includes/media.php:50 assets/build/js/acf-input.js:6940 +#: assets/build/js/acf-input.js:7431 msgctxt "verb" msgid "Update" msgstr "بروزرسانی" @@ -4148,83 +4213,83 @@ msgctxt "verb" msgid "Edit" msgstr "ویرایش" -#: includes/assets.php:363 assets/build/js/acf-input.js:9212 -#: assets/build/js/acf-input.js:10056 +#: includes/assets.php:364 assets/build/js/acf-input.js:9221 +#: assets/build/js/acf-input.js:10067 msgid "The changes you made will be lost if you navigate away from this page" msgstr "اگر از صفحه جاری خارج شوید ، تغییرات شما ذخیره نخواهند شد" -#: includes/api/api-helpers.php:3395 +#: includes/api/api-helpers.php:2967 msgid "File type must be %s." msgstr "نوع فایل باید %s باشد." #: includes/admin/post-types/admin-field-group.php:102 -#: includes/admin/views/acf-field-group/conditional-logic.php:59 -#: includes/admin/views/acf-field-group/conditional-logic.php:169 +#: includes/admin/views/acf-field-group/conditional-logic.php:64 +#: includes/admin/views/acf-field-group/conditional-logic.php:174 #: includes/admin/views/acf-field-group/location-group.php:3 -#: includes/admin/views/acf-field-group/locations.php:36 -#: includes/api/api-helpers.php:3391 assets/build/js/acf-field-group.js:771 -#: assets/build/js/acf-field-group.js:2385 +#: includes/admin/views/acf-field-group/locations.php:35 +#: includes/api/api-helpers.php:2964 assets/build/js/acf-field-group.js:771 +#: assets/build/js/acf-field-group.js:2384 #: assets/build/js/acf-field-group.js:933 -#: assets/build/js/acf-field-group.js:2807 +#: assets/build/js/acf-field-group.js:2808 msgid "or" msgstr "یا" -#: includes/api/api-helpers.php:3364 +#: includes/api/api-helpers.php:2940 msgid "File size must not exceed %s." msgstr "حجم فایل ها نباید از %s بیشتر باشد." -#: includes/api/api-helpers.php:3359 +#: includes/api/api-helpers.php:2936 msgid "File size must be at least %s." msgstr "حجم فایل باید حداقل %s باشد." -#: includes/api/api-helpers.php:3344 +#: includes/api/api-helpers.php:2923 msgid "Image height must not exceed %dpx." msgstr "ارتفاع تصویر نباید از %d پیکسل بیشتر باشد." -#: includes/api/api-helpers.php:3339 +#: includes/api/api-helpers.php:2919 msgid "Image height must be at least %dpx." msgstr "ارتفاع فایل باید حداقل %d پیکسل باشد." -#: includes/api/api-helpers.php:3325 +#: includes/api/api-helpers.php:2907 msgid "Image width must not exceed %dpx." msgstr "عرض تصویر نباید از %d پیکسل بیشتر باشد." -#: includes/api/api-helpers.php:3320 +#: includes/api/api-helpers.php:2903 msgid "Image width must be at least %dpx." msgstr "عرض تصویر باید حداقل %d پیکسل باشد." -#: includes/api/api-helpers.php:1561 includes/api/api-term.php:147 +#: includes/api/api-helpers.php:1400 includes/api/api-term.php:147 msgid "(no title)" msgstr "(بدون عنوان)" -#: includes/api/api-helpers.php:853 +#: includes/api/api-helpers.php:760 msgid "Full Size" msgstr "اندازه کامل" -#: includes/api/api-helpers.php:812 +#: includes/api/api-helpers.php:725 msgid "Large" msgstr "بزرگ" -#: includes/api/api-helpers.php:811 +#: includes/api/api-helpers.php:724 msgid "Medium" msgstr "متوسط" -#: includes/api/api-helpers.php:810 +#: includes/api/api-helpers.php:723 msgid "Thumbnail" msgstr "تصویر بندانگشتی" -#: includes/acf-field-functions.php:854 +#: includes/acf-field-functions.php:852 #: includes/admin/post-types/admin-field-group.php:99 -#: assets/build/js/acf-field-group.js:1077 +#: assets/build/js/acf-field-group.js:1076 #: assets/build/js/acf-field-group.js:1260 msgid "(no label)" msgstr "(بدون برچسب)" -#: includes/fields/class-acf-field-textarea.php:145 +#: includes/fields/class-acf-field-textarea.php:143 msgid "Sets the textarea height" msgstr "تعیین ارتفاع باکس متن" -#: includes/fields/class-acf-field-textarea.php:144 +#: includes/fields/class-acf-field-textarea.php:142 msgid "Rows" msgstr "سطرها" @@ -4232,15 +4297,15 @@ msgstr "سطرها" msgid "Text Area" msgstr "جعبه متن (متن چند خطی)" -#: includes/fields/class-acf-field-checkbox.php:451 +#: includes/fields/class-acf-field-checkbox.php:440 msgid "Prepend an extra checkbox to toggle all choices" msgstr "اضافه کردن چک باکس اضافی برای انتخاب همه" -#: includes/fields/class-acf-field-checkbox.php:413 +#: includes/fields/class-acf-field-checkbox.php:402 msgid "Save 'custom' values to the field's choices" msgstr "ذخیره مقادیر دلخواه در انتخاب های زمینه" -#: includes/fields/class-acf-field-checkbox.php:402 +#: includes/fields/class-acf-field-checkbox.php:391 msgid "Allow 'custom' values to be added" msgstr "اجازه درج مقادیر دلخواه" @@ -4248,15 +4313,15 @@ msgstr "اجازه درج مقادیر دلخواه" msgid "Add new choice" msgstr "درج انتخاب جدید" -#: includes/fields/class-acf-field-checkbox.php:174 +#: includes/fields/class-acf-field-checkbox.php:171 msgid "Toggle All" msgstr "انتخاب همه" -#: includes/fields/class-acf-field-page_link.php:506 +#: includes/fields/class-acf-field-page_link.php:468 msgid "Allow Archives URLs" msgstr "اجازه آدرس های آرشیو" -#: includes/fields/class-acf-field-page_link.php:179 +#: includes/fields/class-acf-field-page_link.php:167 msgid "Archives" msgstr "بایگانی ها" @@ -4264,107 +4329,107 @@ msgstr "بایگانی ها" msgid "Page Link" msgstr "پیوند (لینک) برگه/نوشته" -#: includes/fields/class-acf-field-taxonomy.php:943 +#: includes/fields/class-acf-field-taxonomy.php:894 #: includes/locations/class-acf-location-user-form.php:72 msgid "Add" msgstr "افزودن" #: includes/admin/views/acf-field-group/fields.php:53 -#: includes/fields/class-acf-field-taxonomy.php:908 +#: includes/fields/class-acf-field-taxonomy.php:864 msgid "Name" msgstr "نام" -#: includes/fields/class-acf-field-taxonomy.php:892 +#: includes/fields/class-acf-field-taxonomy.php:849 msgid "%s added" msgstr "%s اضافه شد" -#: includes/fields/class-acf-field-taxonomy.php:856 +#: includes/fields/class-acf-field-taxonomy.php:813 msgid "%s already exists" msgstr "%s هم اکنون موجود است" -#: includes/fields/class-acf-field-taxonomy.php:844 +#: includes/fields/class-acf-field-taxonomy.php:801 msgid "User unable to add new %s" msgstr "کاربر قادر به اضافه کردن%s جدید نیست" -#: includes/fields/class-acf-field-taxonomy.php:742 +#: includes/fields/class-acf-field-taxonomy.php:699 msgid "Term ID" msgstr "شناسه مورد" -#: includes/fields/class-acf-field-taxonomy.php:741 +#: includes/fields/class-acf-field-taxonomy.php:698 msgid "Term Object" msgstr "به صورت آبجکت" -#: includes/fields/class-acf-field-taxonomy.php:726 +#: includes/fields/class-acf-field-taxonomy.php:683 msgid "Load value from posts terms" msgstr "خواندن مقادیر از ترم های نوشته" -#: includes/fields/class-acf-field-taxonomy.php:725 +#: includes/fields/class-acf-field-taxonomy.php:682 msgid "Load Terms" msgstr "خواندن ترم ها" -#: includes/fields/class-acf-field-taxonomy.php:715 +#: includes/fields/class-acf-field-taxonomy.php:672 msgid "Connect selected terms to the post" msgstr "الصاق آیتم های انتخابی به نوشته" -#: includes/fields/class-acf-field-taxonomy.php:714 +#: includes/fields/class-acf-field-taxonomy.php:671 msgid "Save Terms" msgstr "ذخیره ترم ها" -#: includes/fields/class-acf-field-taxonomy.php:704 +#: includes/fields/class-acf-field-taxonomy.php:661 msgid "Allow new terms to be created whilst editing" msgstr "اجازه به ساخت آیتم‌ها(ترم‌ها) جدید در زمان ویرایش" -#: includes/fields/class-acf-field-taxonomy.php:703 +#: includes/fields/class-acf-field-taxonomy.php:660 msgid "Create Terms" msgstr "ساخت آیتم (ترم)" -#: includes/fields/class-acf-field-taxonomy.php:762 +#: includes/fields/class-acf-field-taxonomy.php:719 msgid "Radio Buttons" msgstr "دکمه‌های رادیویی" -#: includes/fields/class-acf-field-taxonomy.php:761 +#: includes/fields/class-acf-field-taxonomy.php:718 msgid "Single Value" msgstr "تک مقدار" -#: includes/fields/class-acf-field-taxonomy.php:759 +#: includes/fields/class-acf-field-taxonomy.php:716 msgid "Multi Select" msgstr "چندین انتخاب" #: includes/fields/class-acf-field-checkbox.php:25 -#: includes/fields/class-acf-field-taxonomy.php:758 +#: includes/fields/class-acf-field-taxonomy.php:715 msgid "Checkbox" msgstr "چک باکس" -#: includes/fields/class-acf-field-taxonomy.php:757 +#: includes/fields/class-acf-field-taxonomy.php:714 msgid "Multiple Values" msgstr "چندین مقدار" -#: includes/fields/class-acf-field-taxonomy.php:752 +#: includes/fields/class-acf-field-taxonomy.php:709 msgid "Select the appearance of this field" msgstr "ظاهر این زمینه را مشخص کنید" -#: includes/fields/class-acf-field-taxonomy.php:751 +#: includes/fields/class-acf-field-taxonomy.php:708 msgid "Appearance" msgstr "ظاهر" -#: includes/fields/class-acf-field-taxonomy.php:693 +#: includes/fields/class-acf-field-taxonomy.php:650 msgid "Select the taxonomy to be displayed" msgstr "طبقه‌بندی را برای برون بری انتخاب کنید" -#: includes/fields/class-acf-field-taxonomy.php:654 +#: includes/fields/class-acf-field-taxonomy.php:612 msgctxt "No Terms" msgid "No %s" msgstr "" -#: includes/fields/class-acf-field-number.php:266 +#: includes/fields/class-acf-field-number.php:252 msgid "Value must be equal to or lower than %d" msgstr "مقدار باید کوچکتر یا مساوی %d باشد" -#: includes/fields/class-acf-field-number.php:259 +#: includes/fields/class-acf-field-number.php:247 msgid "Value must be equal to or higher than %d" msgstr "مقدار باید مساوی یا بیشتر از %d باشد" -#: includes/fields/class-acf-field-number.php:244 +#: includes/fields/class-acf-field-number.php:235 msgid "Value must be a number" msgstr "مقدار باید عددی باشد" @@ -4372,11 +4437,11 @@ msgstr "مقدار باید عددی باشد" msgid "Number" msgstr "عدد" -#: includes/fields/class-acf-field-radio.php:264 +#: includes/fields/class-acf-field-radio.php:263 msgid "Save 'other' values to the field's choices" msgstr "ذخیره مقادیر دیگر در انتخاب های زمینه" -#: includes/fields/class-acf-field-radio.php:253 +#: includes/fields/class-acf-field-radio.php:252 msgid "Add 'other' choice to allow for custom values" msgstr "افزودن گزینه 'دیگر' برای ثبت مقادیر دلخواه" @@ -4416,49 +4481,49 @@ msgstr "باز" msgid "Accordion" msgstr "آکاردئونی" -#: includes/fields/class-acf-field-file.php:267 -#: includes/fields/class-acf-field-file.php:279 +#: includes/fields/class-acf-field-file.php:264 +#: includes/fields/class-acf-field-file.php:276 msgid "Restrict which files can be uploaded" msgstr "محدودیت در آپلود فایل ها" -#: includes/fields/class-acf-field-file.php:220 +#: includes/fields/class-acf-field-file.php:218 msgid "File ID" msgstr "شناسه پرونده" -#: includes/fields/class-acf-field-file.php:219 +#: includes/fields/class-acf-field-file.php:217 msgid "File URL" msgstr "آدرس پرونده" -#: includes/fields/class-acf-field-file.php:218 +#: includes/fields/class-acf-field-file.php:216 msgid "File Array" msgstr "آرایه فایل" -#: includes/fields/class-acf-field-file.php:186 +#: includes/fields/class-acf-field-file.php:185 msgid "Add File" msgstr "افزودن پرونده" -#: includes/admin/tools/class-acf-admin-tool-import.php:156 -#: includes/fields/class-acf-field-file.php:186 +#: includes/admin/tools/class-acf-admin-tool-import.php:154 +#: includes/fields/class-acf-field-file.php:185 msgid "No file selected" msgstr "هیچ پرونده ای انتخاب نشده" -#: includes/fields/class-acf-field-file.php:150 +#: includes/fields/class-acf-field-file.php:149 msgid "File name" msgstr "نام فایل" #: includes/fields/class-acf-field-file.php:63 -#: assets/build/js/acf-input.js:2474 assets/build/js/acf-input.js:2625 +#: assets/build/js/acf-input.js:2472 assets/build/js/acf-input.js:2625 msgid "Update File" msgstr "بروزرسانی پرونده" #: includes/fields/class-acf-field-file.php:62 -#: assets/build/js/acf-input.js:2473 assets/build/js/acf-input.js:2624 +#: assets/build/js/acf-input.js:2471 assets/build/js/acf-input.js:2624 msgid "Edit File" msgstr "ویرایش پرونده" -#: includes/admin/tools/class-acf-admin-tool-import.php:58 +#: includes/admin/tools/class-acf-admin-tool-import.php:57 #: includes/fields/class-acf-field-file.php:61 -#: assets/build/js/acf-input.js:2447 assets/build/js/acf-input.js:2597 +#: assets/build/js/acf-input.js:2445 assets/build/js/acf-input.js:2597 msgid "Select File" msgstr "انتخاب پرونده" @@ -4470,88 +4535,88 @@ msgstr "پرونده" msgid "Password" msgstr "رمزعبور" -#: includes/fields/class-acf-field-select.php:392 +#: includes/fields/class-acf-field-select.php:381 msgid "Specify the value returned" msgstr "مقدار بازگشتی را انتخاب کنید" -#: includes/fields/class-acf-field-select.php:461 +#: includes/fields/class-acf-field-select.php:449 msgid "Use AJAX to lazy load choices?" msgstr "از ایجکس برای خواندن گزینه های استفاده شود؟" -#: includes/fields/class-acf-field-checkbox.php:362 -#: includes/fields/class-acf-field-select.php:381 +#: includes/fields/class-acf-field-checkbox.php:352 +#: includes/fields/class-acf-field-select.php:370 msgid "Enter each default value on a new line" msgstr "هر مقدار پیش فرض را در یک خط جدید وارد کنید" -#: includes/fields/class-acf-field-select.php:252 includes/media.php:48 -#: assets/build/js/acf-input.js:6790 assets/build/js/acf-input.js:7266 +#: includes/fields/class-acf-field-select.php:243 includes/media.php:48 +#: assets/build/js/acf-input.js:6799 assets/build/js/acf-input.js:7277 msgctxt "verb" msgid "Select" msgstr "انتخاب" -#: includes/fields/class-acf-field-select.php:121 +#: includes/fields/class-acf-field-select.php:115 msgctxt "Select2 JS load_fail" msgid "Loading failed" msgstr "خطا در فراخوانی داده ها" -#: includes/fields/class-acf-field-select.php:120 +#: includes/fields/class-acf-field-select.php:114 msgctxt "Select2 JS searching" msgid "Searching…" msgstr "جستجو …" -#: includes/fields/class-acf-field-select.php:119 +#: includes/fields/class-acf-field-select.php:113 msgctxt "Select2 JS load_more" msgid "Loading more results…" msgstr "بارگذاری نتایج بیشتر…" -#: includes/fields/class-acf-field-select.php:118 +#: includes/fields/class-acf-field-select.php:112 msgctxt "Select2 JS selection_too_long_n" msgid "You can only select %d items" msgstr "شما فقط می توانید %d مورد را انتخاب کنید" -#: includes/fields/class-acf-field-select.php:117 +#: includes/fields/class-acf-field-select.php:111 msgctxt "Select2 JS selection_too_long_1" msgid "You can only select 1 item" msgstr "فقط می توانید یک آیتم را انتخاب کنید" -#: includes/fields/class-acf-field-select.php:116 +#: includes/fields/class-acf-field-select.php:110 msgctxt "Select2 JS input_too_long_n" msgid "Please delete %d characters" msgstr "لطفا %d کاراکتر را حذف کنید" -#: includes/fields/class-acf-field-select.php:115 +#: includes/fields/class-acf-field-select.php:109 msgctxt "Select2 JS input_too_long_1" msgid "Please delete 1 character" msgstr "یک حرف را حذف کنید" -#: includes/fields/class-acf-field-select.php:114 +#: includes/fields/class-acf-field-select.php:108 msgctxt "Select2 JS input_too_short_n" msgid "Please enter %d or more characters" msgstr "لطفا %d یا چند کاراکتر دیگر وارد کنید" -#: includes/fields/class-acf-field-select.php:113 +#: includes/fields/class-acf-field-select.php:107 msgctxt "Select2 JS input_too_short_1" msgid "Please enter 1 or more characters" msgstr "یک یا چند حرف وارد کنید" -#: includes/fields/class-acf-field-select.php:112 +#: includes/fields/class-acf-field-select.php:106 msgctxt "Select2 JS matches_0" msgid "No matches found" msgstr "مشابهی یافت نشد" -#: includes/fields/class-acf-field-select.php:111 +#: includes/fields/class-acf-field-select.php:105 msgctxt "Select2 JS matches_n" msgid "%d results are available, use up and down arrow keys to navigate." msgstr "" "نتایج %d در دسترس است با استفاده از کلید بالا و پایین روی آنها حرکت کنید." -#: includes/fields/class-acf-field-select.php:110 +#: includes/fields/class-acf-field-select.php:104 msgctxt "Select2 JS matches_1" msgid "One result is available, press enter to select it." msgstr "یک نتیجه موجود است برای انتخاب اینتر را فشار دهید." #: includes/fields/class-acf-field-select.php:25 -#: includes/fields/class-acf-field-taxonomy.php:763 +#: includes/fields/class-acf-field-taxonomy.php:720 msgctxt "noun" msgid "Select" msgstr "انتخاب" @@ -4690,16 +4755,16 @@ msgid "Endpoint" msgstr "نقطه پایانی" #: includes/admin/views/acf-field-group/options.php:130 -#: includes/fields/class-acf-field-tab.php:115 +#: includes/fields/class-acf-field-tab.php:114 msgid "Left aligned" msgstr "سمت چپ" #: includes/admin/views/acf-field-group/options.php:129 -#: includes/fields/class-acf-field-tab.php:114 +#: includes/fields/class-acf-field-tab.php:113 msgid "Top aligned" msgstr "سمت بالا" -#: includes/fields/class-acf-field-tab.php:110 +#: includes/fields/class-acf-field-tab.php:109 msgid "Placement" msgstr "جانمایی" @@ -4707,23 +4772,23 @@ msgstr "جانمایی" msgid "Tab" msgstr "تب" -#: includes/fields/class-acf-field-url.php:162 +#: includes/fields/class-acf-field-url.php:140 msgid "Value must be a valid URL" msgstr "مقدار باید یک آدرس صحیح باشد" -#: includes/fields/class-acf-field-link.php:177 +#: includes/fields/class-acf-field-link.php:170 msgid "Link URL" msgstr "آدرس لینک" -#: includes/fields/class-acf-field-link.php:176 +#: includes/fields/class-acf-field-link.php:169 msgid "Link Array" msgstr "آرایه لینک" -#: includes/fields/class-acf-field-link.php:145 +#: includes/fields/class-acf-field-link.php:139 msgid "Opens in a new window/tab" msgstr "در پنجره جدید باز شود" -#: includes/fields/class-acf-field-link.php:140 +#: includes/fields/class-acf-field-link.php:134 msgid "Select Link" msgstr "انتخاب لینک" @@ -4735,18 +4800,18 @@ msgstr "لینک" msgid "Email" msgstr "پست الکترونیکی" -#: includes/fields/class-acf-field-number.php:188 -#: includes/fields/class-acf-field-range.php:217 +#: includes/fields/class-acf-field-number.php:182 +#: includes/fields/class-acf-field-range.php:216 msgid "Step Size" msgstr "اندازه مرحله" -#: includes/fields/class-acf-field-number.php:158 -#: includes/fields/class-acf-field-range.php:195 +#: includes/fields/class-acf-field-number.php:152 +#: includes/fields/class-acf-field-range.php:194 msgid "Maximum Value" msgstr "حداکثر مقدار" -#: includes/fields/class-acf-field-number.php:148 -#: includes/fields/class-acf-field-range.php:184 +#: includes/fields/class-acf-field-number.php:142 +#: includes/fields/class-acf-field-range.php:183 msgid "Minimum Value" msgstr "حداقل مقدار" @@ -4754,65 +4819,65 @@ msgstr "حداقل مقدار" msgid "Range" msgstr "محدوده" -#: includes/fields/class-acf-field-button-group.php:175 -#: includes/fields/class-acf-field-checkbox.php:379 -#: includes/fields/class-acf-field-radio.php:220 -#: includes/fields/class-acf-field-select.php:399 +#: includes/fields/class-acf-field-button-group.php:171 +#: includes/fields/class-acf-field-checkbox.php:369 +#: includes/fields/class-acf-field-radio.php:219 +#: includes/fields/class-acf-field-select.php:388 msgid "Both (Array)" msgstr "هر دو (آرایه)" #: includes/admin/views/acf-field-group/fields.php:52 -#: includes/fields/class-acf-field-button-group.php:174 -#: includes/fields/class-acf-field-checkbox.php:378 -#: includes/fields/class-acf-field-radio.php:219 -#: includes/fields/class-acf-field-select.php:398 +#: includes/fields/class-acf-field-button-group.php:170 +#: includes/fields/class-acf-field-checkbox.php:368 +#: includes/fields/class-acf-field-radio.php:218 +#: includes/fields/class-acf-field-select.php:387 msgid "Label" msgstr "برچسب زمینه" -#: includes/fields/class-acf-field-button-group.php:173 -#: includes/fields/class-acf-field-checkbox.php:377 -#: includes/fields/class-acf-field-radio.php:218 -#: includes/fields/class-acf-field-select.php:397 +#: includes/fields/class-acf-field-button-group.php:169 +#: includes/fields/class-acf-field-checkbox.php:367 +#: includes/fields/class-acf-field-radio.php:217 +#: includes/fields/class-acf-field-select.php:386 msgid "Value" msgstr "مقدار" -#: includes/fields/class-acf-field-button-group.php:222 -#: includes/fields/class-acf-field-checkbox.php:441 -#: includes/fields/class-acf-field-radio.php:292 +#: includes/fields/class-acf-field-button-group.php:217 +#: includes/fields/class-acf-field-checkbox.php:430 +#: includes/fields/class-acf-field-radio.php:291 msgid "Vertical" msgstr "عمودی" -#: includes/fields/class-acf-field-button-group.php:221 -#: includes/fields/class-acf-field-checkbox.php:442 -#: includes/fields/class-acf-field-radio.php:293 +#: includes/fields/class-acf-field-button-group.php:216 +#: includes/fields/class-acf-field-checkbox.php:431 +#: includes/fields/class-acf-field-radio.php:292 msgid "Horizontal" msgstr "افقی" -#: includes/fields/class-acf-field-button-group.php:148 -#: includes/fields/class-acf-field-checkbox.php:352 -#: includes/fields/class-acf-field-radio.php:193 -#: includes/fields/class-acf-field-select.php:370 +#: includes/fields/class-acf-field-button-group.php:144 +#: includes/fields/class-acf-field-checkbox.php:342 +#: includes/fields/class-acf-field-radio.php:192 +#: includes/fields/class-acf-field-select.php:359 msgid "red : Red" msgstr "red : قرمز" -#: includes/fields/class-acf-field-button-group.php:148 -#: includes/fields/class-acf-field-checkbox.php:352 -#: includes/fields/class-acf-field-radio.php:193 -#: includes/fields/class-acf-field-select.php:370 +#: includes/fields/class-acf-field-button-group.php:144 +#: includes/fields/class-acf-field-checkbox.php:342 +#: includes/fields/class-acf-field-radio.php:192 +#: includes/fields/class-acf-field-select.php:359 msgid "For more control, you may specify both a value and label like this:" msgstr "برای کنترل بیشتر، ممکن است هر دو مقدار و برچسب را مانند زیر مشخص کنید:" -#: includes/fields/class-acf-field-button-group.php:148 -#: includes/fields/class-acf-field-checkbox.php:352 -#: includes/fields/class-acf-field-radio.php:193 -#: includes/fields/class-acf-field-select.php:370 +#: includes/fields/class-acf-field-button-group.php:144 +#: includes/fields/class-acf-field-checkbox.php:342 +#: includes/fields/class-acf-field-radio.php:192 +#: includes/fields/class-acf-field-select.php:359 msgid "Enter each choice on a new line." msgstr "هر انتخاب را در یک خط جدید وارد کنید." -#: includes/fields/class-acf-field-button-group.php:147 -#: includes/fields/class-acf-field-checkbox.php:351 -#: includes/fields/class-acf-field-radio.php:192 -#: includes/fields/class-acf-field-select.php:369 +#: includes/fields/class-acf-field-button-group.php:143 +#: includes/fields/class-acf-field-checkbox.php:341 +#: includes/fields/class-acf-field-radio.php:191 +#: includes/fields/class-acf-field-select.php:358 msgid "Choices" msgstr "انتخاب ها" @@ -4820,141 +4885,141 @@ msgstr "انتخاب ها" msgid "Button Group" msgstr "گروه دکمه‌ها" -#: includes/fields/class-acf-field-button-group.php:194 -#: includes/fields/class-acf-field-page_link.php:538 -#: includes/fields/class-acf-field-post_object.php:448 -#: includes/fields/class-acf-field-radio.php:238 -#: includes/fields/class-acf-field-select.php:429 -#: includes/fields/class-acf-field-taxonomy.php:772 +#: includes/fields/class-acf-field-button-group.php:189 +#: includes/fields/class-acf-field-page_link.php:500 +#: includes/fields/class-acf-field-post_object.php:420 +#: includes/fields/class-acf-field-radio.php:237 +#: includes/fields/class-acf-field-select.php:417 +#: includes/fields/class-acf-field-taxonomy.php:729 #: includes/fields/class-acf-field-user.php:103 msgid "Allow Null" msgstr "" -#: includes/fields/class-acf-field-page_link.php:263 -#: includes/fields/class-acf-field-post_object.php:257 -#: includes/fields/class-acf-field-taxonomy.php:930 +#: includes/fields/class-acf-field-page_link.php:242 +#: includes/fields/class-acf-field-post_object.php:236 +#: includes/fields/class-acf-field-taxonomy.php:882 msgid "Parent" msgstr "مادر" -#: includes/fields/class-acf-field-wysiwyg.php:390 +#: includes/fields/class-acf-field-wysiwyg.php:381 msgid "TinyMCE will not be initialized until field is clicked" msgstr "تا زمانی که روی فیلد کلیک نشود TinyMCE اجرا نخواهد شد" -#: includes/fields/class-acf-field-wysiwyg.php:389 +#: includes/fields/class-acf-field-wysiwyg.php:380 msgid "Delay Initialization" msgstr "" -#: includes/fields/class-acf-field-wysiwyg.php:378 +#: includes/fields/class-acf-field-wysiwyg.php:369 msgid "Show Media Upload Buttons" msgstr "" -#: includes/fields/class-acf-field-wysiwyg.php:362 +#: includes/fields/class-acf-field-wysiwyg.php:353 msgid "Toolbar" msgstr "نوار ابزار" -#: includes/fields/class-acf-field-wysiwyg.php:354 +#: includes/fields/class-acf-field-wysiwyg.php:345 msgid "Text Only" msgstr "فقط متن" -#: includes/fields/class-acf-field-wysiwyg.php:353 +#: includes/fields/class-acf-field-wysiwyg.php:344 msgid "Visual Only" msgstr "فقط بصری" -#: includes/fields/class-acf-field-wysiwyg.php:352 +#: includes/fields/class-acf-field-wysiwyg.php:343 msgid "Visual & Text" msgstr "بصری و متنی" -#: includes/fields/class-acf-field-wysiwyg.php:347 +#: includes/fields/class-acf-field-wysiwyg.php:338 msgid "Tabs" msgstr "تب ها" -#: includes/fields/class-acf-field-wysiwyg.php:285 +#: includes/fields/class-acf-field-wysiwyg.php:280 msgid "Click to initialize TinyMCE" msgstr "برای اجرای TinyMCE کلیک کنید" -#: includes/fields/class-acf-field-wysiwyg.php:279 +#: includes/fields/class-acf-field-wysiwyg.php:274 msgctxt "Name for the Text editor tab (formerly HTML)" msgid "Text" msgstr "متن" -#: includes/fields/class-acf-field-wysiwyg.php:278 +#: includes/fields/class-acf-field-wysiwyg.php:273 msgid "Visual" msgstr "بصری" #: includes/fields/class-acf-field-text.php:189 -#: includes/fields/class-acf-field-textarea.php:236 +#: includes/fields/class-acf-field-textarea.php:228 msgid "Value must not exceed %d characters" msgstr "مقدار نباید از %d کاراکتر بیشتر شود" #: includes/fields/class-acf-field-text.php:124 -#: includes/fields/class-acf-field-textarea.php:124 +#: includes/fields/class-acf-field-textarea.php:122 msgid "Leave blank for no limit" msgstr "برای نامحدود بودن این بخش را خالی بگذارید" #: includes/fields/class-acf-field-text.php:123 -#: includes/fields/class-acf-field-textarea.php:123 +#: includes/fields/class-acf-field-textarea.php:121 msgid "Character Limit" msgstr "محدودیت کاراکتر" -#: includes/fields/class-acf-field-email.php:158 -#: includes/fields/class-acf-field-number.php:209 -#: includes/fields/class-acf-field-password.php:105 -#: includes/fields/class-acf-field-range.php:239 +#: includes/fields/class-acf-field-email.php:152 +#: includes/fields/class-acf-field-number.php:203 +#: includes/fields/class-acf-field-password.php:103 +#: includes/fields/class-acf-field-range.php:238 #: includes/fields/class-acf-field-text.php:164 msgid "Appears after the input" msgstr "بعد از ورودی نمایش داده می شود" -#: includes/fields/class-acf-field-email.php:157 -#: includes/fields/class-acf-field-number.php:208 -#: includes/fields/class-acf-field-password.php:104 -#: includes/fields/class-acf-field-range.php:238 +#: includes/fields/class-acf-field-email.php:151 +#: includes/fields/class-acf-field-number.php:202 +#: includes/fields/class-acf-field-password.php:102 +#: includes/fields/class-acf-field-range.php:237 #: includes/fields/class-acf-field-text.php:163 msgid "Append" msgstr "پسوند" -#: includes/fields/class-acf-field-email.php:148 -#: includes/fields/class-acf-field-number.php:199 -#: includes/fields/class-acf-field-password.php:95 -#: includes/fields/class-acf-field-range.php:229 +#: includes/fields/class-acf-field-email.php:142 +#: includes/fields/class-acf-field-number.php:193 +#: includes/fields/class-acf-field-password.php:93 +#: includes/fields/class-acf-field-range.php:228 #: includes/fields/class-acf-field-text.php:154 msgid "Appears before the input" msgstr "قبل از ورودی نمایش داده می شود" -#: includes/fields/class-acf-field-email.php:147 -#: includes/fields/class-acf-field-number.php:198 -#: includes/fields/class-acf-field-password.php:94 -#: includes/fields/class-acf-field-range.php:228 +#: includes/fields/class-acf-field-email.php:141 +#: includes/fields/class-acf-field-number.php:192 +#: includes/fields/class-acf-field-password.php:92 +#: includes/fields/class-acf-field-range.php:227 #: includes/fields/class-acf-field-text.php:153 msgid "Prepend" msgstr "پیشوند" -#: includes/fields/class-acf-field-email.php:138 -#: includes/fields/class-acf-field-number.php:179 -#: includes/fields/class-acf-field-password.php:85 +#: includes/fields/class-acf-field-email.php:132 +#: includes/fields/class-acf-field-number.php:173 +#: includes/fields/class-acf-field-password.php:83 #: includes/fields/class-acf-field-text.php:144 -#: includes/fields/class-acf-field-textarea.php:156 -#: includes/fields/class-acf-field-url.php:122 +#: includes/fields/class-acf-field-textarea.php:154 +#: includes/fields/class-acf-field-url.php:106 msgid "Appears within the input" msgstr "در داخل ورودی نمایش داده می شود" -#: includes/fields/class-acf-field-email.php:137 -#: includes/fields/class-acf-field-number.php:178 -#: includes/fields/class-acf-field-password.php:84 +#: includes/fields/class-acf-field-email.php:131 +#: includes/fields/class-acf-field-number.php:172 +#: includes/fields/class-acf-field-password.php:82 #: includes/fields/class-acf-field-text.php:143 -#: includes/fields/class-acf-field-textarea.php:155 -#: includes/fields/class-acf-field-url.php:121 +#: includes/fields/class-acf-field-textarea.php:153 +#: includes/fields/class-acf-field-url.php:105 msgid "Placeholder Text" msgstr "نگهدارنده مکان متن" -#: includes/fields/class-acf-field-button-group.php:158 -#: includes/fields/class-acf-field-email.php:118 -#: includes/fields/class-acf-field-number.php:129 -#: includes/fields/class-acf-field-radio.php:203 -#: includes/fields/class-acf-field-range.php:165 +#: includes/fields/class-acf-field-button-group.php:154 +#: includes/fields/class-acf-field-email.php:112 +#: includes/fields/class-acf-field-number.php:123 +#: includes/fields/class-acf-field-radio.php:202 +#: includes/fields/class-acf-field-range.php:164 #: includes/fields/class-acf-field-text.php:104 -#: includes/fields/class-acf-field-textarea.php:104 -#: includes/fields/class-acf-field-url.php:102 -#: includes/fields/class-acf-field-wysiwyg.php:312 +#: includes/fields/class-acf-field-textarea.php:102 +#: includes/fields/class-acf-field-url.php:86 +#: includes/fields/class-acf-field-wysiwyg.php:306 msgid "Appears when creating a new post" msgstr "هنگام ایجاد یک نوشته جدید نمایش داده می شود" @@ -4962,109 +5027,109 @@ msgstr "هنگام ایجاد یک نوشته جدید نمایش داده می msgid "Text" msgstr "متن" -#: includes/fields/class-acf-field-relationship.php:794 +#: includes/fields/class-acf-field-relationship.php:753 msgid "%1$s requires at least %2$s selection" msgid_plural "%1$s requires at least %2$s selections" msgstr[0] "" -#: includes/fields/class-acf-field-post_object.php:417 -#: includes/fields/class-acf-field-relationship.php:644 +#: includes/fields/class-acf-field-post_object.php:390 +#: includes/fields/class-acf-field-relationship.php:610 msgid "Post ID" msgstr "شناسه نوشته" #: includes/fields/class-acf-field-post_object.php:17 -#: includes/fields/class-acf-field-post_object.php:416 -#: includes/fields/class-acf-field-relationship.php:643 +#: includes/fields/class-acf-field-post_object.php:389 +#: includes/fields/class-acf-field-relationship.php:609 msgid "Post Object" msgstr "آبجکت یک نوشته" -#: includes/fields/class-acf-field-relationship.php:676 +#: includes/fields/class-acf-field-relationship.php:642 msgid "Maximum Posts" msgstr "" -#: includes/fields/class-acf-field-relationship.php:666 +#: includes/fields/class-acf-field-relationship.php:632 msgid "Minimum Posts" msgstr "" #: includes/admin/views/acf-field-group/options.php:183 #: includes/admin/views/acf-post-type/advanced-settings.php:29 -#: includes/fields/class-acf-field-relationship.php:701 +#: includes/fields/class-acf-field-relationship.php:667 msgid "Featured Image" msgstr "تصویر شاخص" -#: includes/fields/class-acf-field-relationship.php:697 +#: includes/fields/class-acf-field-relationship.php:663 msgid "Selected elements will be displayed in each result" msgstr "عناصر انتخاب شده در هر نتیجه نمایش داده خواهند شد" -#: includes/fields/class-acf-field-relationship.php:696 +#: includes/fields/class-acf-field-relationship.php:662 msgid "Elements" msgstr "عناصر" -#: includes/fields/class-acf-field-relationship.php:630 +#: includes/fields/class-acf-field-relationship.php:596 #: includes/fields/class-acf-field-taxonomy.php:20 -#: includes/fields/class-acf-field-taxonomy.php:692 +#: includes/fields/class-acf-field-taxonomy.php:649 #: includes/locations/class-acf-location-taxonomy.php:22 msgid "Taxonomy" msgstr "طبقه بندی" -#: includes/fields/class-acf-field-relationship.php:629 +#: includes/fields/class-acf-field-relationship.php:595 #: includes/locations/class-acf-location-post-type.php:22 #: includes/post-types/class-acf-post-type.php:92 msgid "Post Type" msgstr "نوع نوشته" -#: includes/fields/class-acf-field-relationship.php:623 +#: includes/fields/class-acf-field-relationship.php:589 msgid "Filters" msgstr "فیلترها" -#: includes/fields/class-acf-field-page_link.php:499 -#: includes/fields/class-acf-field-post_object.php:404 -#: includes/fields/class-acf-field-relationship.php:616 +#: includes/fields/class-acf-field-page_link.php:461 +#: includes/fields/class-acf-field-post_object.php:377 +#: includes/fields/class-acf-field-relationship.php:582 msgid "All taxonomies" msgstr "تمام طبقه بندی ها" -#: includes/fields/class-acf-field-page_link.php:491 -#: includes/fields/class-acf-field-post_object.php:396 -#: includes/fields/class-acf-field-relationship.php:608 +#: includes/fields/class-acf-field-page_link.php:453 +#: includes/fields/class-acf-field-post_object.php:369 +#: includes/fields/class-acf-field-relationship.php:574 msgid "Filter by Taxonomy" msgstr "فیلتر با طبقه بندی" -#: includes/fields/class-acf-field-page_link.php:469 -#: includes/fields/class-acf-field-post_object.php:374 -#: includes/fields/class-acf-field-relationship.php:586 +#: includes/fields/class-acf-field-page_link.php:431 +#: includes/fields/class-acf-field-post_object.php:347 +#: includes/fields/class-acf-field-relationship.php:552 msgid "All post types" msgstr "تمام انواع نوشته" -#: includes/fields/class-acf-field-page_link.php:461 -#: includes/fields/class-acf-field-post_object.php:366 -#: includes/fields/class-acf-field-relationship.php:578 +#: includes/fields/class-acf-field-page_link.php:423 +#: includes/fields/class-acf-field-post_object.php:339 +#: includes/fields/class-acf-field-relationship.php:544 msgid "Filter by Post Type" msgstr "فیلتر با نوع نوشته" -#: includes/fields/class-acf-field-relationship.php:476 +#: includes/fields/class-acf-field-relationship.php:442 msgid "Search..." msgstr "جستجو . . ." -#: includes/fields/class-acf-field-relationship.php:406 +#: includes/fields/class-acf-field-relationship.php:373 msgid "Select taxonomy" msgstr "انتخاب طبقه بندی" -#: includes/fields/class-acf-field-relationship.php:397 +#: includes/fields/class-acf-field-relationship.php:365 msgid "Select post type" msgstr "انتحاب نوع نوشته" -#: includes/fields/class-acf-field-relationship.php:61 -#: assets/build/js/acf-input.js:3930 assets/build/js/acf-input.js:4214 +#: includes/fields/class-acf-field-relationship.php:60 +#: assets/build/js/acf-input.js:3928 assets/build/js/acf-input.js:4214 msgid "No matches found" msgstr "مطابقتی یافت نشد" -#: includes/fields/class-acf-field-relationship.php:60 -#: assets/build/js/acf-input.js:3913 assets/build/js/acf-input.js:4193 +#: includes/fields/class-acf-field-relationship.php:59 +#: assets/build/js/acf-input.js:3911 assets/build/js/acf-input.js:4193 msgid "Loading" msgstr "درحال خواندن" -#: includes/fields/class-acf-field-relationship.php:59 -#: assets/build/js/acf-input.js:3818 assets/build/js/acf-input.js:4084 +#: includes/fields/class-acf-field-relationship.php:58 +#: assets/build/js/acf-input.js:3816 assets/build/js/acf-input.js:4084 msgid "Maximum values reached ( {max} values )" msgstr "مقادیر به حداکثر رسیده اند ( {max} آیتم )" @@ -5072,46 +5137,46 @@ msgstr "مقادیر به حداکثر رسیده اند ( {max} آیتم )" msgid "Relationship" msgstr "ارتباط" -#: includes/fields/class-acf-field-file.php:291 -#: includes/fields/class-acf-field-image.php:317 +#: includes/fields/class-acf-field-file.php:288 +#: includes/fields/class-acf-field-image.php:316 msgid "Comma separated list. Leave blank for all types" msgstr "با کامای انگلیسی جدا کرده یا برای عدم محدودیت خالی بگذارید" -#: includes/fields/class-acf-field-file.php:290 -#: includes/fields/class-acf-field-image.php:316 +#: includes/fields/class-acf-field-file.php:287 +#: includes/fields/class-acf-field-image.php:315 msgid "Allowed File Types" msgstr "" -#: includes/fields/class-acf-field-file.php:278 -#: includes/fields/class-acf-field-image.php:280 +#: includes/fields/class-acf-field-file.php:275 +#: includes/fields/class-acf-field-image.php:279 msgid "Maximum" msgstr "بیشترین" -#: includes/fields/class-acf-field-file.php:154 -#: includes/fields/class-acf-field-file.php:270 -#: includes/fields/class-acf-field-file.php:282 -#: includes/fields/class-acf-field-image.php:271 -#: includes/fields/class-acf-field-image.php:307 +#: includes/fields/class-acf-field-file.php:153 +#: includes/fields/class-acf-field-file.php:267 +#: includes/fields/class-acf-field-file.php:279 +#: includes/fields/class-acf-field-image.php:270 +#: includes/fields/class-acf-field-image.php:306 msgid "File size" msgstr "اندازه فایل" -#: includes/fields/class-acf-field-image.php:245 -#: includes/fields/class-acf-field-image.php:281 +#: includes/fields/class-acf-field-image.php:244 +#: includes/fields/class-acf-field-image.php:280 msgid "Restrict which images can be uploaded" msgstr "محدودیت در آپلود تصاویر" -#: includes/fields/class-acf-field-file.php:266 -#: includes/fields/class-acf-field-image.php:244 +#: includes/fields/class-acf-field-file.php:263 +#: includes/fields/class-acf-field-image.php:243 msgid "Minimum" msgstr "کمترین" -#: includes/fields/class-acf-field-file.php:235 -#: includes/fields/class-acf-field-image.php:210 +#: includes/fields/class-acf-field-file.php:233 +#: includes/fields/class-acf-field-image.php:209 msgid "Uploaded to post" msgstr "بارگذاری شده در نوشته" -#: includes/fields/class-acf-field-file.php:234 -#: includes/fields/class-acf-field-image.php:209 +#: includes/fields/class-acf-field-file.php:232 +#: includes/fields/class-acf-field-image.php:208 #: includes/locations/class-acf-location-attachment.php:73 #: includes/locations/class-acf-location-comment.php:61 #: includes/locations/class-acf-location-nav-menu.php:74 @@ -5122,88 +5187,88 @@ msgstr "بارگذاری شده در نوشته" msgid "All" msgstr "همه" -#: includes/fields/class-acf-field-file.php:229 -#: includes/fields/class-acf-field-image.php:204 +#: includes/fields/class-acf-field-file.php:227 +#: includes/fields/class-acf-field-image.php:203 msgid "Limit the media library choice" msgstr "محدود کردن انتخاب کتابخانه چندرسانه ای" -#: includes/fields/class-acf-field-file.php:228 -#: includes/fields/class-acf-field-image.php:203 +#: includes/fields/class-acf-field-file.php:226 +#: includes/fields/class-acf-field-image.php:202 msgid "Library" msgstr "کتابخانه" -#: includes/fields/class-acf-field-image.php:336 +#: includes/fields/class-acf-field-image.php:335 msgid "Preview Size" msgstr "اندازه پیش نمایش" -#: includes/fields/class-acf-field-image.php:195 +#: includes/fields/class-acf-field-image.php:194 msgid "Image ID" msgstr "شناسه تصویر" -#: includes/fields/class-acf-field-image.php:194 +#: includes/fields/class-acf-field-image.php:193 msgid "Image URL" msgstr "آدرس تصویر" -#: includes/fields/class-acf-field-image.php:193 +#: includes/fields/class-acf-field-image.php:192 msgid "Image Array" msgstr "آرایه تصاویر" -#: includes/fields/class-acf-field-button-group.php:168 -#: includes/fields/class-acf-field-checkbox.php:372 -#: includes/fields/class-acf-field-file.php:213 -#: includes/fields/class-acf-field-link.php:171 -#: includes/fields/class-acf-field-radio.php:213 +#: includes/fields/class-acf-field-button-group.php:164 +#: includes/fields/class-acf-field-checkbox.php:362 +#: includes/fields/class-acf-field-file.php:211 +#: includes/fields/class-acf-field-link.php:164 +#: includes/fields/class-acf-field-radio.php:212 msgid "Specify the returned value on front end" msgstr "مقدار برگشتی در نمایش نهایی را تعیین کنید" -#: includes/fields/class-acf-field-button-group.php:167 -#: includes/fields/class-acf-field-checkbox.php:371 -#: includes/fields/class-acf-field-file.php:212 -#: includes/fields/class-acf-field-link.php:170 -#: includes/fields/class-acf-field-radio.php:212 -#: includes/fields/class-acf-field-taxonomy.php:736 +#: includes/fields/class-acf-field-button-group.php:163 +#: includes/fields/class-acf-field-checkbox.php:361 +#: includes/fields/class-acf-field-file.php:210 +#: includes/fields/class-acf-field-link.php:163 +#: includes/fields/class-acf-field-radio.php:211 +#: includes/fields/class-acf-field-taxonomy.php:693 msgid "Return Value" msgstr "مقدار بازگشت" -#: includes/fields/class-acf-field-image.php:162 +#: includes/fields/class-acf-field-image.php:161 msgid "Add Image" msgstr "افزودن تصویر" -#: includes/fields/class-acf-field-image.php:162 +#: includes/fields/class-acf-field-image.php:161 msgid "No image selected" msgstr "هیچ تصویری انتخاب نشده" -#: includes/assets.php:352 includes/fields/class-acf-field-file.php:162 -#: includes/fields/class-acf-field-image.php:142 -#: includes/fields/class-acf-field-link.php:145 assets/build/js/acf.js:1563 +#: includes/assets.php:353 includes/fields/class-acf-field-file.php:161 +#: includes/fields/class-acf-field-image.php:141 +#: includes/fields/class-acf-field-link.php:139 assets/build/js/acf.js:1563 #: assets/build/js/acf.js:1657 msgid "Remove" msgstr "حذف" -#: includes/admin/views/acf-field-group/field.php:76 -#: includes/fields/class-acf-field-file.php:160 -#: includes/fields/class-acf-field-image.php:140 -#: includes/fields/class-acf-field-link.php:145 +#: includes/admin/views/acf-field-group/field.php:78 +#: includes/fields/class-acf-field-file.php:159 +#: includes/fields/class-acf-field-image.php:139 +#: includes/fields/class-acf-field-link.php:139 msgid "Edit" msgstr "ویرایش" -#: includes/fields/class-acf-field-image.php:70 includes/media.php:55 -#: assets/build/js/acf-input.js:6837 assets/build/js/acf-input.js:7320 +#: includes/fields/class-acf-field-image.php:69 includes/media.php:55 +#: assets/build/js/acf-input.js:6846 assets/build/js/acf-input.js:7331 msgid "All images" msgstr "تمام تصاویر" -#: includes/fields/class-acf-field-image.php:69 -#: assets/build/js/acf-input.js:3181 assets/build/js/acf-input.js:3399 +#: includes/fields/class-acf-field-image.php:68 +#: assets/build/js/acf-input.js:3179 assets/build/js/acf-input.js:3399 msgid "Update Image" msgstr "بروزرسانی تصویر" -#: includes/fields/class-acf-field-image.php:68 -#: assets/build/js/acf-input.js:3180 assets/build/js/acf-input.js:3398 +#: includes/fields/class-acf-field-image.php:67 +#: assets/build/js/acf-input.js:3178 assets/build/js/acf-input.js:3398 msgid "Edit Image" msgstr "ویرایش تصویر" -#: includes/fields/class-acf-field-image.php:67 -#: assets/build/js/acf-input.js:3156 assets/build/js/acf-input.js:3373 +#: includes/fields/class-acf-field-image.php:66 +#: assets/build/js/acf-input.js:3154 assets/build/js/acf-input.js:3373 msgid "Select Image" msgstr "انتخاب تصویر" @@ -5211,41 +5276,41 @@ msgstr "انتخاب تصویر" msgid "Image" msgstr "تصویر" -#: includes/fields/class-acf-field-message.php:125 +#: includes/fields/class-acf-field-message.php:118 msgid "Allow HTML markup to display as visible text instead of rendering" msgstr "اجازه نمایش کدهای HTML به عنوان متن به جای اعمال آنها" -#: includes/fields/class-acf-field-message.php:124 +#: includes/fields/class-acf-field-message.php:117 msgid "Escape HTML" msgstr "حذف HTML" -#: includes/fields/class-acf-field-message.php:116 -#: includes/fields/class-acf-field-textarea.php:172 +#: includes/fields/class-acf-field-message.php:109 +#: includes/fields/class-acf-field-textarea.php:170 msgid "No Formatting" msgstr "بدون قالب بندی" -#: includes/fields/class-acf-field-message.php:115 -#: includes/fields/class-acf-field-textarea.php:171 +#: includes/fields/class-acf-field-message.php:108 +#: includes/fields/class-acf-field-textarea.php:169 msgid "Automatically add <br>" msgstr "اضافه کردن خودکار <br>" -#: includes/fields/class-acf-field-message.php:114 -#: includes/fields/class-acf-field-textarea.php:170 +#: includes/fields/class-acf-field-message.php:107 +#: includes/fields/class-acf-field-textarea.php:168 msgid "Automatically add paragraphs" msgstr "پاراگراف ها خودکار اضافه شوند" -#: includes/fields/class-acf-field-message.php:110 -#: includes/fields/class-acf-field-textarea.php:166 +#: includes/fields/class-acf-field-message.php:103 +#: includes/fields/class-acf-field-textarea.php:164 msgid "Controls how new lines are rendered" msgstr "تنظیم کنید که خطوط جدید چگونه نمایش داده شوند" -#: includes/fields/class-acf-field-message.php:109 -#: includes/fields/class-acf-field-textarea.php:165 +#: includes/fields/class-acf-field-message.php:102 +#: includes/fields/class-acf-field-textarea.php:163 msgid "New Lines" msgstr "خطوط جدید" #: includes/fields/class-acf-field-date_picker.php:232 -#: includes/fields/class-acf-field-date_time_picker.php:220 +#: includes/fields/class-acf-field-date_time_picker.php:219 msgid "Week Starts On" msgstr "اولین روز هفته" @@ -5286,18 +5351,18 @@ msgstr "انجام شد" msgid "Date Picker" msgstr "تاریخ" -#: includes/fields/class-acf-field-image.php:248 -#: includes/fields/class-acf-field-image.php:284 -#: includes/fields/class-acf-field-oembed.php:268 +#: includes/fields/class-acf-field-image.php:247 +#: includes/fields/class-acf-field-image.php:283 +#: includes/fields/class-acf-field-oembed.php:266 msgid "Width" msgstr "عرض" -#: includes/fields/class-acf-field-oembed.php:265 -#: includes/fields/class-acf-field-oembed.php:277 +#: includes/fields/class-acf-field-oembed.php:263 +#: includes/fields/class-acf-field-oembed.php:275 msgid "Embed Size" msgstr "اندازه جانمایی" -#: includes/fields/class-acf-field-oembed.php:222 +#: includes/fields/class-acf-field-oembed.php:221 msgid "Enter URL" msgstr "آدرس را وارد کنید" @@ -5305,61 +5370,61 @@ msgstr "آدرس را وارد کنید" msgid "oEmbed" msgstr "oEmbed" -#: includes/fields/class-acf-field-true_false.php:184 +#: includes/fields/class-acf-field-true_false.php:181 msgid "Text shown when inactive" msgstr "نمایش متن در زمان غیر فعال بودن" -#: includes/fields/class-acf-field-true_false.php:183 +#: includes/fields/class-acf-field-true_false.php:180 msgid "Off Text" msgstr "بدون متن" -#: includes/fields/class-acf-field-true_false.php:168 +#: includes/fields/class-acf-field-true_false.php:165 msgid "Text shown when active" msgstr "نمایش متن در زمان فعال بودن" -#: includes/fields/class-acf-field-true_false.php:167 +#: includes/fields/class-acf-field-true_false.php:164 msgid "On Text" msgstr "با متن" -#: includes/fields/class-acf-field-select.php:450 -#: includes/fields/class-acf-field-true_false.php:199 +#: includes/fields/class-acf-field-select.php:438 +#: includes/fields/class-acf-field-true_false.php:196 msgid "Stylized UI" msgstr "" -#: includes/fields/class-acf-field-button-group.php:157 -#: includes/fields/class-acf-field-checkbox.php:361 +#: includes/fields/class-acf-field-button-group.php:153 +#: includes/fields/class-acf-field-checkbox.php:351 #: includes/fields/class-acf-field-color_picker.php:156 -#: includes/fields/class-acf-field-email.php:117 -#: includes/fields/class-acf-field-number.php:128 -#: includes/fields/class-acf-field-radio.php:202 -#: includes/fields/class-acf-field-range.php:164 -#: includes/fields/class-acf-field-select.php:380 +#: includes/fields/class-acf-field-email.php:111 +#: includes/fields/class-acf-field-number.php:122 +#: includes/fields/class-acf-field-radio.php:201 +#: includes/fields/class-acf-field-range.php:163 +#: includes/fields/class-acf-field-select.php:369 #: includes/fields/class-acf-field-text.php:103 -#: includes/fields/class-acf-field-textarea.php:103 -#: includes/fields/class-acf-field-true_false.php:147 -#: includes/fields/class-acf-field-url.php:101 -#: includes/fields/class-acf-field-wysiwyg.php:311 +#: includes/fields/class-acf-field-textarea.php:101 +#: includes/fields/class-acf-field-true_false.php:144 +#: includes/fields/class-acf-field-url.php:85 +#: includes/fields/class-acf-field-wysiwyg.php:305 msgid "Default Value" msgstr "مقدار پیش فرض" -#: includes/fields/class-acf-field-true_false.php:138 +#: includes/fields/class-acf-field-true_false.php:135 msgid "Displays text alongside the checkbox" msgstr "نمایش متن همراه انتخاب" #: includes/fields/class-acf-field-message.php:26 -#: includes/fields/class-acf-field-message.php:99 -#: includes/fields/class-acf-field-true_false.php:137 +#: includes/fields/class-acf-field-message.php:92 +#: includes/fields/class-acf-field-true_false.php:134 msgid "Message" msgstr "پیام" -#: includes/assets.php:351 includes/fields/class-acf-field-true_false.php:86 -#: includes/fields/class-acf-field-true_false.php:187 +#: includes/assets.php:352 includes/fields/class-acf-field-true_false.php:85 +#: includes/fields/class-acf-field-true_false.php:184 #: assets/build/js/acf.js:1740 assets/build/js/acf.js:1857 msgid "No" msgstr "خیر" -#: includes/assets.php:350 includes/fields/class-acf-field-true_false.php:83 -#: includes/fields/class-acf-field-true_false.php:171 +#: includes/assets.php:351 includes/fields/class-acf-field-true_false.php:82 +#: includes/fields/class-acf-field-true_false.php:168 #: assets/build/js/acf.js:1739 assets/build/js/acf.js:1856 msgid "Yes" msgstr "بله" @@ -5368,31 +5433,31 @@ msgstr "بله" msgid "True / False" msgstr "صحیح / غلط" -#: includes/fields/class-acf-field-group.php:474 +#: includes/fields/class-acf-field-group.php:440 msgid "Row" msgstr "سطر" -#: includes/fields/class-acf-field-group.php:473 +#: includes/fields/class-acf-field-group.php:439 msgid "Table" msgstr "جدول" -#: includes/admin/post-types/admin-field-group.php:140 -#: includes/fields/class-acf-field-group.php:472 +#: includes/admin/post-types/admin-field-group.php:132 +#: includes/fields/class-acf-field-group.php:438 msgid "Block" msgstr "بلوک" -#: includes/fields/class-acf-field-group.php:467 +#: includes/fields/class-acf-field-group.php:433 msgid "Specify the style used to render the selected fields" msgstr "استایل جهت نمایش فیلد انتخابی" -#: includes/fields.php:356 includes/fields/class-acf-field-button-group.php:215 -#: includes/fields/class-acf-field-checkbox.php:435 -#: includes/fields/class-acf-field-group.php:466 -#: includes/fields/class-acf-field-radio.php:286 +#: includes/fields.php:374 includes/fields/class-acf-field-button-group.php:210 +#: includes/fields/class-acf-field-checkbox.php:424 +#: includes/fields/class-acf-field-group.php:432 +#: includes/fields/class-acf-field-radio.php:285 msgid "Layout" msgstr "چیدمان" -#: includes/fields/class-acf-field-group.php:450 +#: includes/fields/class-acf-field-group.php:416 msgid "Sub Fields" msgstr "زمینه‌های زیرمجموعه" @@ -5400,32 +5465,32 @@ msgstr "زمینه‌های زیرمجموعه" msgid "Group" msgstr "گروه" -#: includes/fields/class-acf-field-google-map.php:235 +#: includes/fields/class-acf-field-google-map.php:234 msgid "Customize the map height" msgstr "سفارشی سازی ارتفاع نقشه" -#: includes/fields/class-acf-field-google-map.php:234 -#: includes/fields/class-acf-field-image.php:259 -#: includes/fields/class-acf-field-image.php:295 -#: includes/fields/class-acf-field-oembed.php:280 +#: includes/fields/class-acf-field-google-map.php:233 +#: includes/fields/class-acf-field-image.php:258 +#: includes/fields/class-acf-field-image.php:294 +#: includes/fields/class-acf-field-oembed.php:278 msgid "Height" msgstr "ارتفاع" -#: includes/fields/class-acf-field-google-map.php:223 +#: includes/fields/class-acf-field-google-map.php:222 msgid "Set the initial zoom level" msgstr "تعین مقدار بزرگنمایی اولیه" -#: includes/fields/class-acf-field-google-map.php:222 +#: includes/fields/class-acf-field-google-map.php:221 msgid "Zoom" msgstr "بزرگنمایی" -#: includes/fields/class-acf-field-google-map.php:196 -#: includes/fields/class-acf-field-google-map.php:209 +#: includes/fields/class-acf-field-google-map.php:195 +#: includes/fields/class-acf-field-google-map.php:208 msgid "Center the initial map" msgstr "نقشه اولیه را وسط قرار بده" -#: includes/fields/class-acf-field-google-map.php:195 -#: includes/fields/class-acf-field-google-map.php:208 +#: includes/fields/class-acf-field-google-map.php:194 +#: includes/fields/class-acf-field-google-map.php:207 msgid "Center" msgstr "مرکز" @@ -5442,12 +5507,12 @@ msgid "Clear location" msgstr "حذف مکان" #: includes/fields/class-acf-field-google-map.php:158 -#: includes/fields/class-acf-field-relationship.php:628 +#: includes/fields/class-acf-field-relationship.php:594 msgid "Search" msgstr "جستجو" #: includes/fields/class-acf-field-google-map.php:63 -#: assets/build/js/acf-input.js:2840 assets/build/js/acf-input.js:3026 +#: assets/build/js/acf-input.js:2838 assets/build/js/acf-input.js:3026 msgid "Sorry, this browser does not support geolocation" msgstr "با عرض پوزش، این مرورگر از موقعیت یابی جغرافیایی پشتیبانی نمی کند" @@ -5456,41 +5521,41 @@ msgid "Google Map" msgstr "نقشه گوگل" #: includes/fields/class-acf-field-date_picker.php:212 -#: includes/fields/class-acf-field-date_time_picker.php:201 -#: includes/fields/class-acf-field-time_picker.php:132 +#: includes/fields/class-acf-field-date_time_picker.php:200 +#: includes/fields/class-acf-field-time_picker.php:130 msgid "The format returned via template functions" msgstr "قالب توسط توابع پوسته نمایش داده خواهد شد" #: includes/fields/class-acf-field-color_picker.php:180 #: includes/fields/class-acf-field-date_picker.php:211 -#: includes/fields/class-acf-field-date_time_picker.php:200 -#: includes/fields/class-acf-field-image.php:187 -#: includes/fields/class-acf-field-post_object.php:411 -#: includes/fields/class-acf-field-relationship.php:638 -#: includes/fields/class-acf-field-select.php:391 -#: includes/fields/class-acf-field-time_picker.php:131 +#: includes/fields/class-acf-field-date_time_picker.php:199 +#: includes/fields/class-acf-field-image.php:186 +#: includes/fields/class-acf-field-post_object.php:384 +#: includes/fields/class-acf-field-relationship.php:604 +#: includes/fields/class-acf-field-select.php:380 +#: includes/fields/class-acf-field-time_picker.php:129 #: includes/fields/class-acf-field-user.php:66 msgid "Return Format" msgstr "فرمت بازگشت" #: includes/fields/class-acf-field-date_picker.php:190 #: includes/fields/class-acf-field-date_picker.php:221 -#: includes/fields/class-acf-field-date_time_picker.php:192 -#: includes/fields/class-acf-field-date_time_picker.php:210 -#: includes/fields/class-acf-field-time_picker.php:123 -#: includes/fields/class-acf-field-time_picker.php:139 +#: includes/fields/class-acf-field-date_time_picker.php:191 +#: includes/fields/class-acf-field-date_time_picker.php:209 +#: includes/fields/class-acf-field-time_picker.php:121 +#: includes/fields/class-acf-field-time_picker.php:137 msgid "Custom:" msgstr "دلخواه:" #: includes/fields/class-acf-field-date_picker.php:182 -#: includes/fields/class-acf-field-date_time_picker.php:183 -#: includes/fields/class-acf-field-time_picker.php:116 +#: includes/fields/class-acf-field-date_time_picker.php:182 +#: includes/fields/class-acf-field-time_picker.php:114 msgid "The format displayed when editing a post" msgstr "قالب در زمان نمایش نوشته دیده خواهد شد" #: includes/fields/class-acf-field-date_picker.php:181 -#: includes/fields/class-acf-field-date_time_picker.php:182 -#: includes/fields/class-acf-field-time_picker.php:115 +#: includes/fields/class-acf-field-date_time_picker.php:181 +#: includes/fields/class-acf-field-time_picker.php:113 msgid "Display Format" msgstr "فرمت نمایش" @@ -5499,90 +5564,89 @@ msgid "Time Picker" msgstr "انتخاب زمان" #. translators: counts for inactive field groups -#: acf.php:503 +#: acf.php:499 msgid "Inactive (%s)" msgid_plural "Inactive (%s)" msgstr[0] "" -#: acf.php:462 +#: acf.php:458 msgid "No Fields found in Trash" msgstr "گروه زمینه ای در زباله دان یافت نشد" -#: acf.php:461 +#: acf.php:457 msgid "No Fields found" msgstr "گروه زمینه ای یافت نشد" -#: acf.php:460 +#: acf.php:456 msgid "Search Fields" msgstr "جستجوی گروه های زمینه" -#: acf.php:459 +#: acf.php:455 msgid "View Field" msgstr "نمایش زمینه" -#: acf.php:458 includes/admin/views/acf-field-group/fields.php:115 +#: acf.php:454 includes/admin/views/acf-field-group/fields.php:111 msgid "New Field" msgstr "زمینه جدید" -#: acf.php:457 +#: acf.php:453 msgid "Edit Field" msgstr "ویرایش زمینه" -#: acf.php:456 +#: acf.php:452 msgid "Add New Field" msgstr "زمینه جدید" -#: acf.php:454 +#: acf.php:450 msgid "Field" msgstr "زمینه" -#: acf.php:453 includes/admin/post-types/admin-field-group.php:163 -#: includes/admin/post-types/admin-field-groups.php:119 +#: acf.php:449 includes/admin/post-types/admin-field-group.php:155 +#: includes/admin/post-types/admin-field-groups.php:118 #: includes/admin/views/acf-field-group/fields.php:32 msgid "Fields" msgstr "زمینه ها" -#: acf.php:428 +#: acf.php:424 msgid "No Field Groups found in Trash" msgstr "گروه زمینه ای در زباله دان یافت نشد" -#: acf.php:427 +#: acf.php:423 msgid "No Field Groups found" msgstr "گروه زمینه ای یافت نشد" -#: acf.php:426 +#: acf.php:422 msgid "Search Field Groups" msgstr "جستجوی گروه های زمینه" -#: acf.php:425 +#: acf.php:421 msgid "View Field Group" msgstr "مشاهده گروه زمینه" -#: acf.php:424 +#: acf.php:420 msgid "New Field Group" msgstr "گروه زمینه جدید" -#: acf.php:423 +#: acf.php:419 msgid "Edit Field Group" msgstr "ویرایش گروه زمینه" -#: acf.php:422 +#: acf.php:418 msgid "Add New Field Group" msgstr "افزودن گروه زمینه جدید" -#: acf.php:421 acf.php:455 -#: includes/admin/views/acf-post-type/advanced-settings.php:219 -#: includes/admin/views/acf-post-type/advanced-settings.php:221 +#: acf.php:417 acf.php:451 +#: includes/admin/views/acf-post-type/advanced-settings.php:224 #: includes/post-types/class-acf-post-type.php:93 #: includes/post-types/class-acf-taxonomy.php:92 msgid "Add New" msgstr "افزودن" -#: acf.php:420 +#: acf.php:416 msgid "Field Group" msgstr "گروه زمینه" -#: acf.php:419 includes/admin/post-types/admin-field-groups.php:78 +#: acf.php:415 includes/admin/post-types/admin-field-groups.php:77 #: includes/admin/post-types/admin-post-types.php:138 #: includes/admin/post-types/admin-taxonomies.php:138 msgid "Field Groups" @@ -5597,7 +5661,7 @@ msgid "https://www.advancedcustomfields.com" msgstr "https://www.advancedcustomfields.com" #. Plugin Name of the plugin -#: acf.php:94 +#: acf.php:97 msgid "Advanced Custom Fields" msgstr "زمینه‌های سفارشی پیشرفته" diff --git a/lang/acf-fi.mo b/lang/acf-fi.mo deleted file mode 100644 index c5af615..0000000 Binary files a/lang/acf-fi.mo and /dev/null differ diff --git a/lang/acf-fi.po b/lang/acf-fi.po deleted file mode 100644 index 44d1a87..0000000 --- a/lang/acf-fi.po +++ /dev/null @@ -1,819 +0,0 @@ -# Advanced Custom Fields Translations are a combination of translate.wordpress.org contributions, -# combined with user contributed strings for the PRO version. -# Translations from translate.wordpress.org take priority over translations in this file. -# translate.wordpress.org contributions are synced at the time of each release. -# -# If you would like to contribute translations, please visit -# https://translate.wordpress.org/projects/wp-plugins/advanced-custom-fields/stable/ -# -# For additional ACF PRO strings, please submit a pull request over on the ACF GitHub repo at -# http://github.com/advancedcustomfields/acf using the .pot (and any existing .po) files in /lang/pro/ -# -# This file is distributed under the same license as Advanced Custom Fields. -msgid "" -msgstr "" -"PO-Revision-Date: 2023-11-28T09:14:32+00:00\n" -"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n" -"Language: fi\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: gettext\n" -"Project-Id-Version: Advanced Custom Fields\n" - -#: pro/acf-pro.php:27 -msgid "Advanced Custom Fields PRO" -msgstr "Advanced Custom Fields PRO" - -#: pro/blocks.php:170 -msgid "Block type name is required." -msgstr "Lohkotyypin nimi on pakollinen." - -#. translators: The name of the block type -#: pro/blocks.php:178 -msgid "Block type \"%s\" is already registered." -msgstr "Lohkotyyppi \"%s\" on jo rekisteröity." - -#: pro/blocks.php:726 -msgid "Switch to Edit" -msgstr "Siirry muokkaamaan" - -#: pro/blocks.php:727 -msgid "Switch to Preview" -msgstr "Siirry esikatseluun" - -#: pro/blocks.php:728 -msgid "Change content alignment" -msgstr "Sisällön tasauksen muuttaminen" - -#. translators: %s: Block type title -#: pro/blocks.php:731 -msgid "%s settings" -msgstr "%s asetusta" - -#: pro/blocks.php:936 -msgid "This block contains no editable fields." -msgstr "" - -#. translators: %s: an admin URL to the field group edit screen -#: pro/blocks.php:942 -msgid "" -"Assign a field group to add fields to " -"this block." -msgstr "" - -#: pro/options-page.php:47 -msgid "Options" -msgstr "Asetukset" - -#: pro/options-page.php:77, pro/fields/class-acf-field-gallery.php:527 -msgid "Update" -msgstr "Päivitä" - -#: pro/options-page.php:78 -msgid "Options Updated" -msgstr "Asetukset päivitetty" - -#: pro/updates.php:99 -msgid "" -"To enable updates, please enter your license key on the Updates page. If you don't have a licence key, please see details & pricing." -msgstr "" -"Ottaaksesi käyttöön päivitykset, syötä lisenssiavaimesi Päivitykset -sivulle. Jos sinulla ei ole lisenssiavainta, katso tiedot ja hinnoittelu." - -#: pro/updates.php:159 -msgid "" -"ACF Activation Error. Your defined license key has changed, but an " -"error occurred when deactivating your old licence" -msgstr "" -"ACF:n aktivointivirhe. Määritetty käyttöoikeusavain on muuttunut, " -"mutta vanhan käyttöoikeuden poistamisessa tapahtui virhe" - -#: pro/updates.php:154 -msgid "" -"ACF Activation Error. Your defined license key has changed, but an " -"error occurred when connecting to activation server" -msgstr "" -"ACF:n aktivointivirhe. Määritetty käyttöoikeusavain on muuttunut, " -"mutta aktivointipalvelimeen yhdistämisessä tapahtui virhe" - -#: pro/updates.php:192 -msgid "ACF Activation Error" -msgstr "ACF:n aktivointivirhe" - -#: pro/updates.php:187 -msgid "" -"ACF Activation Error. An error occurred when connecting to activation " -"server" -msgstr "" -"ACF käynnistysvirhe. Tapahtui virhe päivityspalvelimeen yhdistettäessä" - -#: pro/updates.php:279 -msgid "Check Again" -msgstr "Tarkista uudelleen" - -#: pro/updates.php:593 -msgid "ACF Activation Error. Could not connect to activation server" -msgstr "ACF käynnistysvirhe. Ei voitu yhdistää käynnistyspalvelimeen" - -#: pro/admin/admin-options-page.php:195 -msgid "Publish" -msgstr "Julkaistu" - -#: pro/admin/admin-options-page.php:199 -msgid "" -"No Custom Field Groups found for this options page. Create a " -"Custom Field Group" -msgstr "" -"Yhtään lisäkenttäryhmää ei löytynyt tälle asetussivulle. Luo " -"lisäkenttäryhmä" - -#: pro/admin/admin-options-page.php:309 -msgid "Edit field group" -msgstr "Muokkaa kenttäryhmää" - -#: pro/admin/admin-updates.php:52 -msgid "Error. Could not connect to update server" -msgstr "Virhe. Ei voitu yhdistää päivityspalvelimeen" - -#: pro/admin/admin-updates.php:122, -#: pro/admin/views/html-settings-updates.php:12 -msgid "Updates" -msgstr "Päivitykset" - -#: pro/admin/admin-updates.php:212 -msgid "" -"Error. Could not authenticate update package. Please check again or " -"deactivate and reactivate your ACF PRO license." -msgstr "" -"Virhe. Päivityspakettia ei voitu todentaa. Tarkista uudelleen tai " -"poista käytöstä ACF PRO -lisenssi ja aktivoi se uudelleen." - -#: pro/admin/admin-updates.php:199 -msgid "" -"Error. Your license for this site has expired or been deactivated. " -"Please reactivate your ACF PRO license." -msgstr "" -"Virhe. Lisenssisi on umpeutunut tai poistettu käytöstä. Aktivoi ACF " -"PRO -lisenssisi uudelleen." - -#: pro/fields/class-acf-field-clone.php:25 -msgctxt "noun" -msgid "Clone" -msgstr "Klooni" - -#: pro/fields/class-acf-field-clone.php:27, -#: pro/fields/class-acf-field-repeater.php:31 -msgid "" -"Allows you to select and display existing fields. It does not duplicate any " -"fields in the database, but loads and displays the selected fields at run-" -"time. The Clone field can either replace itself with the selected fields or " -"display the selected fields as a group of subfields." -msgstr "" - -#: pro/fields/class-acf-field-clone.php:818, -#: pro/fields/class-acf-field-flexible-content.php:78 -msgid "Fields" -msgstr "Kentät" - -#: pro/fields/class-acf-field-clone.php:819 -msgid "Select one or more fields you wish to clone" -msgstr "Valitse kentät, jotka haluat kopioida" - -#: pro/fields/class-acf-field-clone.php:838 -msgid "Display" -msgstr "Näytä" - -#: pro/fields/class-acf-field-clone.php:839 -msgid "Specify the style used to render the clone field" -msgstr "Määritä tyyli, jota käytetään kloonikentän luomisessa" - -#: pro/fields/class-acf-field-clone.php:844 -msgid "Group (displays selected fields in a group within this field)" -msgstr "Ryhmä (valitut kentät näytetään ryhmänä tämän klooni-kentän sisällä)" - -#: pro/fields/class-acf-field-clone.php:845 -msgid "Seamless (replaces this field with selected fields)" -msgstr "Saumaton (korvaa tämä klooni-kenttä valituilla kentillä)" - -#: pro/fields/class-acf-field-clone.php:854, -#: pro/fields/class-acf-field-flexible-content.php:558, -#: pro/fields/class-acf-field-flexible-content.php:616, -#: pro/fields/class-acf-field-repeater.php:177 -msgid "Layout" -msgstr "Asettelu" - -#: pro/fields/class-acf-field-clone.php:855 -msgid "Specify the style used to render the selected fields" -msgstr "Määritä tyyli, jota käytetään valittujen kenttien luomisessa" - -#: pro/fields/class-acf-field-clone.php:860, -#: pro/fields/class-acf-field-flexible-content.php:629, -#: pro/fields/class-acf-field-repeater.php:185, -#: pro/locations/class-acf-location-block.php:22 -msgid "Block" -msgstr "Lohko" - -#: pro/fields/class-acf-field-clone.php:861, -#: pro/fields/class-acf-field-flexible-content.php:628, -#: pro/fields/class-acf-field-repeater.php:184 -msgid "Table" -msgstr "Taulukko" - -#: pro/fields/class-acf-field-clone.php:862, -#: pro/fields/class-acf-field-flexible-content.php:630, -#: pro/fields/class-acf-field-repeater.php:186 -msgid "Row" -msgstr "Rivi" - -#: pro/fields/class-acf-field-clone.php:868 -msgid "Labels will be displayed as %s" -msgstr "Kentän nimiö näytetään seuraavassa muodossa: %s" - -#: pro/fields/class-acf-field-clone.php:873 -msgid "Prefix Field Labels" -msgstr "Kentän nimiön etuliite" - -#: pro/fields/class-acf-field-clone.php:883 -msgid "Values will be saved as %s" -msgstr "Arvot tallennetaan muodossa: %s" - -#: pro/fields/class-acf-field-clone.php:888 -msgid "Prefix Field Names" -msgstr "Kentän nimen etuliite" - -#: pro/fields/class-acf-field-clone.php:1005 -msgid "Unknown field" -msgstr "Tuntematon kenttä" - -#: pro/fields/class-acf-field-clone.php:1009 -msgid "(no title)" -msgstr "(ei otsikkoa)" - -#: pro/fields/class-acf-field-clone.php:1042 -msgid "Unknown field group" -msgstr "Tuntematon kenttäryhmä" - -#: pro/fields/class-acf-field-clone.php:1046 -msgid "All fields from %s field group" -msgstr "Kaikki kentät kenttäryhmästä %s" - -#: pro/fields/class-acf-field-flexible-content.php:25 -msgid "Flexible Content" -msgstr "Joustava sisältö" - -#: pro/fields/class-acf-field-flexible-content.php:27 -msgid "" -"Allows you to define, create and manage content with total control by " -"creating layouts that contain subfields that content editors can choose from." -msgstr "" - -#: pro/fields/class-acf-field-flexible-content.php:27 -msgid "We do not recommend using this field in ACF Blocks." -msgstr "" - -#: pro/fields/class-acf-field-flexible-content.php:36, -#: pro/fields/class-acf-field-repeater.php:103, -#: pro/fields/class-acf-field-repeater.php:297 -msgid "Add Row" -msgstr "Lisää rivi" - -#: pro/fields/class-acf-field-flexible-content.php:76, -#: pro/fields/class-acf-field-flexible-content.php:943, -#: pro/fields/class-acf-field-flexible-content.php:1022 -msgid "layout" -msgid_plural "layouts" -msgstr[0] "asettelu" -msgstr[1] "asettelut" - -#: pro/fields/class-acf-field-flexible-content.php:77 -msgid "layouts" -msgstr "asettelua" - -#: pro/fields/class-acf-field-flexible-content.php:81, -#: pro/fields/class-acf-field-flexible-content.php:942, -#: pro/fields/class-acf-field-flexible-content.php:1021 -msgid "This field requires at least {min} {label} {identifier}" -msgstr "Tämä kenttä vaatii vähintään {min} {label} {identifier}" - -#: pro/fields/class-acf-field-flexible-content.php:82 -msgid "This field has a limit of {max} {label} {identifier}" -msgstr "Tämän kentän yläraja on {max} {label} {identifier}" - -#: pro/fields/class-acf-field-flexible-content.php:85 -msgid "{available} {label} {identifier} available (max {max})" -msgstr "{available} {label} {identifier} saatavilla (max {max})" - -#: pro/fields/class-acf-field-flexible-content.php:86 -msgid "{required} {label} {identifier} required (min {min})" -msgstr "{required} {label} {identifier} vaadittu (min {min})" - -#: pro/fields/class-acf-field-flexible-content.php:89 -msgid "Flexible Content requires at least 1 layout" -msgstr "Vaaditaan vähintään yksi asettelu" - -#: pro/fields/class-acf-field-flexible-content.php:282 -msgid "Click the \"%s\" button below to start creating your layout" -msgstr "Klikkaa ”%s” -painiketta luodaksesi oman asettelun" - -#: pro/fields/class-acf-field-flexible-content.php:420, -#: pro/fields/class-acf-repeater-table.php:366 -msgid "Drag to reorder" -msgstr "Muuta järjestystä vetämällä ja pudottamalla" - -#: pro/fields/class-acf-field-flexible-content.php:423 -msgid "Add layout" -msgstr "Lisää asettelu" - -#: pro/fields/class-acf-field-flexible-content.php:424 -msgid "Duplicate layout" -msgstr "Monista asettelu" - -#: pro/fields/class-acf-field-flexible-content.php:425 -msgid "Remove layout" -msgstr "Poista asettelu" - -#: pro/fields/class-acf-field-flexible-content.php:426, -#: pro/fields/class-acf-repeater-table.php:382 -msgid "Click to toggle" -msgstr "Piilota/Näytä" - -#: pro/fields/class-acf-field-flexible-content.php:562 -msgid "Delete Layout" -msgstr "Poista asettelu" - -#: pro/fields/class-acf-field-flexible-content.php:563 -msgid "Duplicate Layout" -msgstr "Monista asettelu" - -#: pro/fields/class-acf-field-flexible-content.php:564 -msgid "Add New Layout" -msgstr "Lisää uusi asettelu" - -#: pro/fields/class-acf-field-flexible-content.php:564 -#, fuzzy -#| msgid "Add layout" -msgid "Add Layout" -msgstr "Lisää asettelu" - -#: pro/fields/class-acf-field-flexible-content.php:593 -msgid "Label" -msgstr "Nimiö" - -#: pro/fields/class-acf-field-flexible-content.php:609 -msgid "Name" -msgstr "Nimi" - -#: pro/fields/class-acf-field-flexible-content.php:647 -msgid "Min" -msgstr "Min" - -#: pro/fields/class-acf-field-flexible-content.php:662 -msgid "Max" -msgstr "Max" - -#: pro/fields/class-acf-field-flexible-content.php:705 -msgid "Minimum Layouts" -msgstr "Asetteluita vähintään" - -#: pro/fields/class-acf-field-flexible-content.php:716 -msgid "Maximum Layouts" -msgstr "Asetteluita enintään" - -#: pro/fields/class-acf-field-flexible-content.php:727, -#: pro/fields/class-acf-field-repeater.php:293 -msgid "Button Label" -msgstr "Painikkeen teksti" - -#: pro/fields/class-acf-field-flexible-content.php:1710, -#: pro/fields/class-acf-field-repeater.php:918 -msgid "%s must be of type array or null." -msgstr "%s tyypin on oltava matriisi tai tyhjä." - -#: pro/fields/class-acf-field-flexible-content.php:1721 -msgid "%1$s must contain at least %2$s %3$s layout." -msgid_plural "%1$s must contain at least %2$s %3$s layouts." -msgstr[0] "%1$s täytyy sisältää vähintään %2$s %3$s asettelu." -msgstr[1] "%1$s täytyy sisältää vähintään %2$s %3$s asettelua." - -#: pro/fields/class-acf-field-flexible-content.php:1737 -msgid "%1$s must contain at most %2$s %3$s layout." -msgid_plural "%1$s must contain at most %2$s %3$s layouts." -msgstr[0] "%1$s täytyy sisältää korkeintaan %2$s %3$s asettelu." -msgstr[1] "%1$s täytyy sisältää korkeintaan %2$s %3$s asettelua." - -#: pro/fields/class-acf-field-gallery.php:25 -msgid "Gallery" -msgstr "Galleria" - -#: pro/fields/class-acf-field-gallery.php:27 -msgid "" -"An interactive interface for managing a collection of attachments, such as " -"images." -msgstr "" - -#: pro/fields/class-acf-field-gallery.php:77 -msgid "Add Image to Gallery" -msgstr "Lisää kuva galleriaan" - -#: pro/fields/class-acf-field-gallery.php:78 -msgid "Maximum selection reached" -msgstr "Et voi valita enempää kuvia" - -#: pro/fields/class-acf-field-gallery.php:324 -msgid "Length" -msgstr "Pituus" - -#: pro/fields/class-acf-field-gallery.php:339 -msgid "Edit" -msgstr "Muokkaa" - -#: pro/fields/class-acf-field-gallery.php:340, -#: pro/fields/class-acf-field-gallery.php:495 -msgid "Remove" -msgstr "Poista" - -#: pro/fields/class-acf-field-gallery.php:356 -msgid "Title" -msgstr "Otsikko" - -#: pro/fields/class-acf-field-gallery.php:368 -msgid "Caption" -msgstr "Kuvateksti" - -#: pro/fields/class-acf-field-gallery.php:380 -msgid "Alt Text" -msgstr "Vaihtoehtoinen teksti" - -#: pro/fields/class-acf-field-gallery.php:392 -msgid "Description" -msgstr "Kuvaus" - -#: pro/fields/class-acf-field-gallery.php:504 -msgid "Add to gallery" -msgstr "Lisää galleriaan" - -#: pro/fields/class-acf-field-gallery.php:508 -msgid "Bulk actions" -msgstr "Massatoiminnot" - -#: pro/fields/class-acf-field-gallery.php:509 -msgid "Sort by date uploaded" -msgstr "Lajittele latauksen päivämäärän mukaan" - -#: pro/fields/class-acf-field-gallery.php:510 -msgid "Sort by date modified" -msgstr "Lajittele viimeisimmän muokkauksen päivämäärän mukaan" - -#: pro/fields/class-acf-field-gallery.php:511 -msgid "Sort by title" -msgstr "Lajittele otsikon mukaan" - -#: pro/fields/class-acf-field-gallery.php:512 -msgid "Reverse current order" -msgstr "Käännän nykyinen järjestys" - -#: pro/fields/class-acf-field-gallery.php:524 -msgid "Close" -msgstr "Sulje" - -#: pro/fields/class-acf-field-gallery.php:556 -msgid "Return Format" -msgstr "Palautusmuoto" - -#: pro/fields/class-acf-field-gallery.php:562 -msgid "Image Array" -msgstr "Kuva" - -#: pro/fields/class-acf-field-gallery.php:563 -msgid "Image URL" -msgstr "Kuvan URL" - -#: pro/fields/class-acf-field-gallery.php:564 -msgid "Image ID" -msgstr "Kuvan ID" - -#: pro/fields/class-acf-field-gallery.php:572 -msgid "Library" -msgstr "Kirjasto" - -#: pro/fields/class-acf-field-gallery.php:573 -msgid "Limit the media library choice" -msgstr "Rajoita valintaa mediakirjastosta" - -#: pro/fields/class-acf-field-gallery.php:578, -#: pro/locations/class-acf-location-block.php:66 -msgid "All" -msgstr "Kaikki" - -#: pro/fields/class-acf-field-gallery.php:579 -msgid "Uploaded to post" -msgstr "Vain tähän artikkeliin ladatut" - -#: pro/fields/class-acf-field-gallery.php:615 -msgid "Minimum Selection" -msgstr "Pienin määrä kuvia" - -#: pro/fields/class-acf-field-gallery.php:625 -msgid "Maximum Selection" -msgstr "Suurin määrä kuvia" - -#: pro/fields/class-acf-field-gallery.php:635 -msgid "Minimum" -msgstr "Minimiarvo(t)" - -#: pro/fields/class-acf-field-gallery.php:636, -#: pro/fields/class-acf-field-gallery.php:672 -msgid "Restrict which images can be uploaded" -msgstr "Määritä millaisia kuvia voidaan ladata" - -#: pro/fields/class-acf-field-gallery.php:639, -#: pro/fields/class-acf-field-gallery.php:675 -msgid "Width" -msgstr "Leveys" - -#: pro/fields/class-acf-field-gallery.php:650, -#: pro/fields/class-acf-field-gallery.php:686 -msgid "Height" -msgstr "Korkeus" - -#: pro/fields/class-acf-field-gallery.php:662, -#: pro/fields/class-acf-field-gallery.php:698 -msgid "File size" -msgstr "Tiedoston koko" - -#: pro/fields/class-acf-field-gallery.php:671 -msgid "Maximum" -msgstr "Maksimiarvo(t)" - -#: pro/fields/class-acf-field-gallery.php:707 -msgid "Allowed file types" -msgstr "Sallitut tiedostotyypit" - -#: pro/fields/class-acf-field-gallery.php:708 -msgid "Comma separated list. Leave blank for all types" -msgstr "Erota pilkulla. Jätä tyhjäksi, jos haluat sallia kaikki tiedostyypit" - -#: pro/fields/class-acf-field-gallery.php:727 -msgid "Insert" -msgstr "Lisää" - -#: pro/fields/class-acf-field-gallery.php:728 -msgid "Specify where new attachments are added" -msgstr "Määritä mihin uudet liitteet lisätään" - -#: pro/fields/class-acf-field-gallery.php:732 -msgid "Append to the end" -msgstr "Lisää loppuun" - -#: pro/fields/class-acf-field-gallery.php:733 -msgid "Prepend to the beginning" -msgstr "Lisää alkuun" - -#: pro/fields/class-acf-field-gallery.php:741 -msgid "Preview Size" -msgstr "Esikatselukuvan koko" - -#: pro/fields/class-acf-field-gallery.php:844 -msgid "%1$s requires at least %2$s selection" -msgid_plural "%1$s requires at least %2$s selections" -msgstr[0] "%1$s vaatii vähintään %2$s valinnan" -msgstr[1] "%1$s vaatii vähintään %2$s valintaa" - -#: pro/fields/class-acf-field-repeater.php:29 -msgid "Repeater" -msgstr "Toista rivejä" - -#: pro/fields/class-acf-field-repeater.php:66, -#: pro/fields/class-acf-field-repeater.php:463 -#, fuzzy -#| msgid "Minimum rows reached ({min} rows)" -msgid "Minimum rows not reached ({min} rows)" -msgstr "Pienin määrä rivejä saavutettu ({min} riviä)" - -#: pro/fields/class-acf-field-repeater.php:67 -msgid "Maximum rows reached ({max} rows)" -msgstr "Suurin määrä rivejä saavutettu ({max} riviä)" - -#: pro/fields/class-acf-field-repeater.php:68 -#, fuzzy -#| msgid "Error loading field." -msgid "Error loading page" -msgstr "Virhe ladattaessa kenttää." - -#: pro/fields/class-acf-field-repeater.php:69 -msgid "Order will be assigned upon save" -msgstr "" - -#: pro/fields/class-acf-field-repeater.php:162 -msgid "Sub Fields" -msgstr "Alakentät" - -#: pro/fields/class-acf-field-repeater.php:195 -#, fuzzy -#| msgid "Position" -msgid "Pagination" -msgstr "Sijainti" - -#: pro/fields/class-acf-field-repeater.php:196 -msgid "Useful for fields with a large number of rows." -msgstr "" - -#: pro/fields/class-acf-field-repeater.php:207 -#, fuzzy -#| msgid "Posts Page" -msgid "Rows Per Page" -msgstr "Artikkelit -sivu" - -#: pro/fields/class-acf-field-repeater.php:208 -#, fuzzy -#| msgid "Select the taxonomy to be displayed" -msgid "Set the number of rows to be displayed on a page." -msgstr "Valitse taksonomia, joka näytetään" - -#: pro/fields/class-acf-field-repeater.php:240 -msgid "Minimum Rows" -msgstr "Pienin määrä rivejä" - -#: pro/fields/class-acf-field-repeater.php:251 -msgid "Maximum Rows" -msgstr "Suurin määrä rivejä" - -#: pro/fields/class-acf-field-repeater.php:281 -msgid "Collapsed" -msgstr "Piilotettu" - -#: pro/fields/class-acf-field-repeater.php:282 -msgid "Select a sub field to show when row is collapsed" -msgstr "Valitse alakenttä, joka näytetään, kun rivi on piilotettu" - -#: pro/fields/class-acf-field-repeater.php:1045 -msgid "Invalid nonce." -msgstr "Virheellinen nonce." - -#: pro/fields/class-acf-field-repeater.php:1060 -#, fuzzy -#| msgid "Invalid field group ID." -msgid "Invalid field key or name." -msgstr "Virheellinen kenttäryhmän tunnus." - -#: pro/fields/class-acf-field-repeater.php:1069 -msgid "There was an error retrieving the field." -msgstr "" - -#: pro/fields/class-acf-repeater-table.php:369 -#, fuzzy -#| msgid "Drag to reorder" -msgid "Click to reorder" -msgstr "Muuta järjestystä vetämällä ja pudottamalla" - -#: pro/fields/class-acf-repeater-table.php:402 -msgid "Add row" -msgstr "Lisää rivi" - -#: pro/fields/class-acf-repeater-table.php:403 -msgid "Duplicate row" -msgstr "Monista rivi" - -#: pro/fields/class-acf-repeater-table.php:404 -msgid "Remove row" -msgstr "Poista rivi" - -#: pro/fields/class-acf-repeater-table.php:448, -#: pro/fields/class-acf-repeater-table.php:465, -#: pro/fields/class-acf-repeater-table.php:466 -#, fuzzy -#| msgid "Current User" -msgid "Current Page" -msgstr "Nykyinen käyttäjä" - -#: pro/fields/class-acf-repeater-table.php:456, -#: pro/fields/class-acf-repeater-table.php:457 -#, fuzzy -#| msgid "Front Page" -msgid "First Page" -msgstr "Etusivu" - -#: pro/fields/class-acf-repeater-table.php:460, -#: pro/fields/class-acf-repeater-table.php:461 -#, fuzzy -#| msgid "Posts Page" -msgid "Previous Page" -msgstr "Artikkelit -sivu" - -#. translators: 1: Current page, 2: Total pages. -#: pro/fields/class-acf-repeater-table.php:470 -#, fuzzy -#| msgid "%1$s is not one of %2$s" -msgctxt "paging" -msgid "%1$s of %2$s" -msgstr "%1$s ei ole yksi näistä: %2$s" - -#: pro/fields/class-acf-repeater-table.php:477, -#: pro/fields/class-acf-repeater-table.php:478 -#, fuzzy -#| msgid "Front Page" -msgid "Next Page" -msgstr "Etusivu" - -#: pro/fields/class-acf-repeater-table.php:481, -#: pro/fields/class-acf-repeater-table.php:482 -#, fuzzy -#| msgid "Posts Page" -msgid "Last Page" -msgstr "Artikkelit -sivu" - -#: pro/locations/class-acf-location-block.php:71 -msgid "No block types exist" -msgstr "Lohkotyyppejä ei ole" - -#: pro/locations/class-acf-location-options-page.php:22 -msgid "Options Page" -msgstr "Asetukset-sivu" - -#: pro/locations/class-acf-location-options-page.php:70 -msgid "No options pages exist" -msgstr "Yhtään asetussivua ei ole olemassa" - -#: pro/admin/views/html-settings-updates.php:6 -msgid "Deactivate License" -msgstr "Poista lisenssi käytöstä" - -#: pro/admin/views/html-settings-updates.php:6 -msgid "Activate License" -msgstr "Aktivoi lisenssi" - -#: pro/admin/views/html-settings-updates.php:16 -msgid "License Information" -msgstr "Näytä lisenssitiedot" - -#: pro/admin/views/html-settings-updates.php:34 -msgid "" -"To unlock updates, please enter your license key below. If you don't have a " -"licence key, please see details & pricing." -msgstr "" -"Ottaaksesi käyttöön päivitykset, syötä alle lisenssiavaimesi. Jos sinulla ei " -"ole lisenssiavainta, katso tarkemmat tiedot " -"ja hinnoittelu." - -#: pro/admin/views/html-settings-updates.php:37 -msgid "License Key" -msgstr "Lisenssiavain" - -#: pro/admin/views/html-settings-updates.php:22 -msgid "Your license key is defined in wp-config.php." -msgstr "Käyttöoikeusavain on määritelty wp-config.php:ssa." - -#: pro/admin/views/html-settings-updates.php:29 -msgid "Retry Activation" -msgstr "Yritä aktivointia uudelleen" - -#: pro/admin/views/html-settings-updates.php:61 -msgid "Update Information" -msgstr "Päivitä tiedot" - -#: pro/admin/views/html-settings-updates.php:68 -msgid "Current Version" -msgstr "Nykyinen versio" - -#: pro/admin/views/html-settings-updates.php:76 -msgid "Latest Version" -msgstr "Uusin versio" - -#: pro/admin/views/html-settings-updates.php:84 -msgid "Update Available" -msgstr "Päivitys saatavilla" - -#: pro/admin/views/html-settings-updates.php:91 -msgid "No" -msgstr "Ei" - -#: pro/admin/views/html-settings-updates.php:89 -msgid "Yes" -msgstr "Kyllä" - -#: pro/admin/views/html-settings-updates.php:98 -msgid "Upgrade Notice" -msgstr "Päivitys Ilmoitus" - -#: pro/admin/views/html-settings-updates.php:126 -msgid "Check For Updates" -msgstr "" - -#: pro/admin/views/html-settings-updates.php:121 -#, fuzzy -#| msgid "Please enter your license key above to unlock updates" -msgid "Enter your license key to unlock updates" -msgstr "Syötä lisenssiavain saadaksesi päivityksiä" - -#: pro/admin/views/html-settings-updates.php:119 -msgid "Update Plugin" -msgstr "Päivitä lisäosa" - -#: pro/admin/views/html-settings-updates.php:117 -msgid "Please reactivate your license to unlock updates" -msgstr "Aktivoi käyttöoikeus saadaksesi päivityksiä" diff --git a/lang/acf-fr_CA.mo b/lang/acf-fr_CA.mo deleted file mode 100644 index 78ad1af..0000000 Binary files a/lang/acf-fr_CA.mo and /dev/null differ diff --git a/lang/acf-fr_CA.po b/lang/acf-fr_CA.po deleted file mode 100644 index 29556f0..0000000 --- a/lang/acf-fr_CA.po +++ /dev/null @@ -1,6236 +0,0 @@ -# Advanced Custom Fields Translations are a combination of translate.wordpress.org contributions, -# combined with user contributed strings for the PRO version. -# Translations from translate.wordpress.org take priority over translations in this file. -# translate.wordpress.org contributions are synced at the time of each release. -# -# If you would like to contribute translations, please visit -# https://translate.wordpress.org/projects/wp-plugins/advanced-custom-fields/stable/ -# -# For additional ACF PRO strings, please submit a pull request over on the ACF GitHub repo at -# http://github.com/advancedcustomfields/acf using the .pot (and any existing .po) files in /lang/pro/ -# -# This file is distributed under the same license as Advanced Custom Fields. -msgid "" -msgstr "" -"PO-Revision-Date: 2023-11-28T09:14:32+00:00\n" -"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n" -"Language: fr_CA\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: gettext\n" -"Project-Id-Version: Advanced Custom Fields\n" - -#: includes/admin/views/global/navigation.php:221 -msgid "Renew ACF PRO License" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:17 -msgid "Renew License" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:14 -msgid "Manage License" -msgstr "" - -#: includes/admin/views/acf-field-group/options.php:102 -msgid "'High' position not supported in the Block Editor" -msgstr "" - -#: includes/admin/views/options-page-preview.php:30 -msgid "Upgrade to ACF PRO" -msgstr "" - -#. translators: %s URL to ACF options pages documentation -#: includes/admin/views/options-page-preview.php:7 -msgid "" -"ACF options pages are custom admin " -"pages for managing global settings via fields. You can create multiple pages " -"and sub-pages." -msgstr "" - -#: includes/admin/views/global/header.php:35 -msgid "Add Options Page" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:703 -msgid "In the editor used as the placeholder of the title." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:702 -msgid "Title Placeholder" -msgstr "" - -#: includes/admin/views/global/navigation.php:97 -msgid "4 Months Free" -msgstr "" - -#. translators: %s - A singular label for a post type or taxonomy. -#: includes/admin/views/global/form-top.php:56 -msgid " (Duplicated from %s)" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:298 -msgid "Select Options Pages" -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:107 -msgid "Duplicate taxonomy" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:106 -#: includes/admin/post-types/admin-taxonomy.php:106 -msgid "Create taxonomy" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:105 -msgid "Duplicate post type" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:104 -#: includes/admin/post-types/admin-taxonomy.php:108 -msgid "Create post type" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:103 -#: includes/admin/post-types/admin-taxonomy.php:105 -msgid "Link field groups" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:102 -#: includes/admin/post-types/admin-taxonomy.php:104 -msgid "Add fields" -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:121 -#: assets/build/js/acf-field-group.js:2753 -#: assets/build/js/acf-field-group.js:3236 -msgid "This Field" -msgstr "" - -#: includes/admin/admin.php:267 -msgid "ACF PRO" -msgstr "" - -#: includes/admin/admin.php:265 -msgid "Feedback" -msgstr "" - -#: includes/admin/admin.php:263 -msgid "Support" -msgstr "" - -#. translators: This text is prepended by a link to ACF's website, and appended -#. by a link to WP Engine's website. -#: includes/admin/admin.php:238 -msgid "is developed and maintained by" -msgstr "" - -#. translators: %s - either "post type" or "taxonomy" -#: includes/admin/admin-internal-post-type.php:321 -msgid "Add this %s to the location rules of the selected field groups." -msgstr "" - -#. translators: %s the URL to ACF's bidirectional relationship documentation -#: includes/acf-bidirectional-functions.php:271 -msgid "" -"Enabling the bidirectional setting allows you to update a value in the " -"target fields for each value selected for this field, adding or removing the " -"Post ID, Taxonomy ID or User ID of the item being updated. For more " -"information, please read the documentation." -msgstr "" - -#: includes/acf-bidirectional-functions.php:247 -msgid "" -"Select field(s) to store the reference back to the item being updated. You " -"may select this field. Target fields must be compatible with where this " -"field is being displayed. For example, if this field is displayed on a " -"Taxonomy, your target field should be of type Taxonomy" -msgstr "" - -#: includes/acf-bidirectional-functions.php:246 -msgid "Target Field" -msgstr "" - -#: includes/acf-bidirectional-functions.php:220 -msgid "Update a field on the selected values, referencing back to this ID" -msgstr "" - -#: includes/acf-bidirectional-functions.php:219 -msgid "Bidirectional" -msgstr "" - -#. translators: %s A field type name, such as "Relationship" -#: includes/acf-bidirectional-functions.php:192 -msgid "%s Field" -msgstr "" - -#: includes/fields/class-acf-field-page_link.php:517 -#: includes/fields/class-acf-field-post_object.php:426 -#: includes/fields/class-acf-field-select.php:407 -#: includes/fields/class-acf-field-user.php:82 -msgid "Select Multiple" -msgstr "" - -#: includes/admin/views/global/navigation.php:233 -msgid "WP Engine logo" -msgstr "" - -#: includes/admin/views/acf-taxonomy/basic-settings.php:58 -msgid "Lower case letters, underscores and dashes only, Max 32 characters." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1136 -msgid "The capability name for assigning terms of this taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1135 -msgid "Assign Terms Capability" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1119 -msgid "The capability name for deleting terms of this taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1118 -msgid "Delete Terms Capability" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1102 -msgid "The capability name for editing terms of this taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1101 -msgid "Edit Terms Capability" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1085 -msgid "The capability name for managing terms of this taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1084 -msgid "Manage Terms Capability" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:886 -msgid "" -"Sets whether posts should be excluded from search results and taxonomy " -"archive pages." -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:74 -msgid "More Tools from WP Engine" -msgstr "" - -#. translators: %s - WP Engine logo -#: includes/admin/views/acf-field-group/pro-features.php:69 -msgid "Built for those that build with WordPress, by the team at %s" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:6 -msgid "View Pricing & Upgrade" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:3 -#: includes/admin/views/options-page-preview.php:29 -msgid "Learn More" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:28 -msgid "" -"Speed up your workflow and develop better websites with features like ACF " -"Blocks and Options Pages, and sophisticated field types like Repeater, " -"Flexible Content, Clone, and Gallery." -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:2 -msgid "Unlock Advanced Features and Build Even More with ACF PRO" -msgstr "" - -#. translators: %s - singular label of post type/taxonomy, i.e. "Movie"/"Genre" -#: includes/admin/views/global/form-top.php:19 -msgid "%s fields" -msgstr "" - -#: includes/admin/post-types/admin-taxonomies.php:293 -msgid "No terms" -msgstr "" - -#: includes/admin/post-types/admin-taxonomies.php:266 -msgid "No post types" -msgstr "" - -#: includes/admin/post-types/admin-post-types.php:289 -msgid "No posts" -msgstr "" - -#: includes/admin/post-types/admin-post-types.php:263 -msgid "No taxonomies" -msgstr "" - -#: includes/admin/post-types/admin-post-types.php:208 -#: includes/admin/post-types/admin-taxonomies.php:208 -msgid "No field groups" -msgstr "" - -#: includes/admin/post-types/admin-field-groups.php:281 -msgid "No fields" -msgstr "" - -#: includes/admin/post-types/admin-field-groups.php:154 -#: includes/admin/post-types/admin-post-types.php:172 -#: includes/admin/post-types/admin-taxonomies.php:172 -msgid "No description" -msgstr "" - -#: includes/fields/class-acf-field-page_link.php:484 -#: includes/fields/class-acf-field-post_object.php:389 -#: includes/fields/class-acf-field-relationship.php:601 -msgid "Any post status" -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:284 -msgid "" -"This taxonomy key is already in use by another taxonomy registered outside " -"of ACF and cannot be used." -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:279 -msgid "" -"This taxonomy key is already in use by another taxonomy in ACF and cannot be " -"used." -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:252 -msgid "" -"The taxonomy key must only contain lower case alphanumeric characters, " -"underscores or dashes." -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:247 -msgid "The taxonomy key must be under 32 characters." -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:99 -msgid "No Taxonomies found in Trash" -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:98 -msgid "No Taxonomies found" -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:97 -msgid "Search Taxonomies" -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:96 -msgid "View Taxonomy" -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:95 -msgid "New Taxonomy" -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:94 -msgid "Edit Taxonomy" -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:93 -msgid "Add New Taxonomy" -msgstr "" - -#: includes/post-types/class-acf-post-type.php:100 -msgid "No Post Types found in Trash" -msgstr "" - -#: includes/post-types/class-acf-post-type.php:99 -msgid "No Post Types found" -msgstr "" - -#: includes/post-types/class-acf-post-type.php:98 -msgid "Search Post Types" -msgstr "" - -#: includes/post-types/class-acf-post-type.php:97 -msgid "View Post Type" -msgstr "" - -#: includes/post-types/class-acf-post-type.php:96 -msgid "New Post Type" -msgstr "" - -#: includes/post-types/class-acf-post-type.php:95 -msgid "Edit Post Type" -msgstr "" - -#: includes/post-types/class-acf-post-type.php:94 -msgid "Add New Post Type" -msgstr "" - -#: includes/post-types/class-acf-post-type.php:361 -msgid "" -"This post type key is already in use by another post type registered outside " -"of ACF and cannot be used." -msgstr "" - -#: includes/post-types/class-acf-post-type.php:356 -msgid "" -"This post type key is already in use by another post type in ACF and cannot " -"be used." -msgstr "" - -#. translators: %s a link to WordPress.org's Reserved Terms page -#: includes/post-types/class-acf-post-type.php:335 -#: includes/post-types/class-acf-taxonomy.php:258 -msgid "" -"This field must not be a WordPress reserved " -"term." -msgstr "" - -#: includes/post-types/class-acf-post-type.php:329 -msgid "" -"The post type key must only contain lower case alphanumeric characters, " -"underscores or dashes." -msgstr "" - -#: includes/post-types/class-acf-post-type.php:324 -msgid "The post type key must be under 20 characters." -msgstr "" - -#: includes/fields/class-acf-field-wysiwyg.php:27 -msgid "We do not recommend using this field in ACF Blocks." -msgstr "" - -#: includes/fields/class-acf-field-wysiwyg.php:27 -msgid "" -"Displays the WordPress WYSIWYG editor as seen in Posts and Pages allowing " -"for a rich text-editing experience that also allows for multimedia content." -msgstr "" - -#: includes/fields/class-acf-field-wysiwyg.php:25 -msgid "WYSIWYG Editor" -msgstr "" - -#: includes/fields/class-acf-field-user.php:17 -msgid "" -"Allows the selection of one or more users which can be used to create " -"relationships between data objects." -msgstr "" - -#: includes/fields/class-acf-field-url.php:26 -msgid "A text input specifically designed for storing web addresses." -msgstr "" - -#: includes/fields/class-acf-field-url.php:25 -msgid "URL" -msgstr "" - -#: includes/fields/class-acf-field-true_false.php:27 -msgid "" -"A toggle that allows you to pick a value of 1 or 0 (on or off, true or " -"false, etc). Can be presented as a stylized switch or checkbox." -msgstr "" - -#: includes/fields/class-acf-field-time_picker.php:27 -msgid "" -"An interactive UI for picking a time. The time format can be customized " -"using the field settings." -msgstr "" - -#: includes/fields/class-acf-field-textarea.php:26 -msgid "A basic textarea input for storing paragraphs of text." -msgstr "" - -#: includes/fields/class-acf-field-text.php:26 -msgid "A basic text input, useful for storing single string values." -msgstr "" - -#: includes/fields/class-acf-field-taxonomy.php:22 -msgid "" -"Allows the selection of one or more taxonomy terms based on the criteria and " -"options specified in the fields settings." -msgstr "" - -#: includes/fields/class-acf-field-tab.php:28 -msgid "" -"Allows you to group fields into tabbed sections in the edit screen. Useful " -"for keeping fields organized and structured." -msgstr "" - -#: includes/fields/class-acf-field-select.php:27 -msgid "A dropdown list with a selection of choices that you specify." -msgstr "" - -#: includes/fields/class-acf-field-relationship.php:19 -msgid "" -"A dual-column interface to select one or more posts, pages, or custom post " -"type items to create a relationship with the item that you're currently " -"editing. Includes options to search and filter." -msgstr "" - -#: includes/fields/class-acf-field-range.php:26 -msgid "" -"An input for selecting a numerical value within a specified range using a " -"range slider element." -msgstr "" - -#: includes/fields/class-acf-field-radio.php:27 -msgid "" -"A group of radio button inputs that allows the user to make a single " -"selection from values that you specify." -msgstr "" - -#: includes/fields/class-acf-field-post_object.php:19 -msgid "" -"An interactive and customizable UI for picking one or many posts, pages or " -"post type items with the option to search. " -msgstr "" - -#: includes/fields/class-acf-field-password.php:26 -msgid "An input for providing a password using a masked field." -msgstr "" - -#: includes/fields/class-acf-field-page_link.php:476 -#: includes/fields/class-acf-field-post_object.php:381 -#: includes/fields/class-acf-field-relationship.php:593 -msgid "Filter by Post Status" -msgstr "" - -#: includes/fields/class-acf-field-page_link.php:27 -msgid "" -"An interactive dropdown to select one or more posts, pages, custom post type " -"items or archive URLs, with the option to search." -msgstr "" - -#: includes/fields/class-acf-field-oembed.php:27 -msgid "" -"An interactive component for embedding videos, images, tweets, audio and " -"other content by making use of the native WordPress oEmbed functionality." -msgstr "" - -#: includes/fields/class-acf-field-number.php:26 -msgid "An input limited to numerical values." -msgstr "" - -#: includes/fields/class-acf-field-message.php:28 -msgid "" -"Used to display a message to editors alongside other fields. Useful for " -"providing additional context or instructions around your fields." -msgstr "" - -#: includes/fields/class-acf-field-link.php:27 -msgid "" -"Allows you to specify a link and its properties such as title and target " -"using the WordPress native link picker." -msgstr "" - -#: includes/fields/class-acf-field-image.php:27 -msgid "Uses the native WordPress media picker to upload, or choose images." -msgstr "" - -#: includes/fields/class-acf-field-group.php:27 -msgid "" -"Provides a way to structure fields into groups to better organize the data " -"and the edit screen." -msgstr "" - -#: includes/fields/class-acf-field-google-map.php:27 -msgid "" -"An interactive UI for selecting a location using Google Maps. Requires a " -"Google Maps API key and additional configuration to display correctly." -msgstr "" - -#: includes/fields/class-acf-field-file.php:27 -msgid "Uses the native WordPress media picker to upload, or choose files." -msgstr "" - -#: includes/fields/class-acf-field-email.php:26 -msgid "A text input specifically designed for storing email addresses." -msgstr "" - -#: includes/fields/class-acf-field-date_time_picker.php:27 -msgid "" -"An interactive UI for picking a date and time. The date return format can be " -"customized using the field settings." -msgstr "" - -#: includes/fields/class-acf-field-date_picker.php:27 -msgid "" -"An interactive UI for picking a date. The date return format can be " -"customized using the field settings." -msgstr "" - -#: includes/fields/class-acf-field-color_picker.php:27 -msgid "An interactive UI for selecting a color, or specifying a Hex value." -msgstr "" - -#: includes/fields/class-acf-field-checkbox.php:27 -msgid "" -"A group of checkbox inputs that allow the user to select one, or multiple " -"values that you specify." -msgstr "" - -#: includes/fields/class-acf-field-button-group.php:26 -msgid "" -"A group of buttons with values that you specify, users can choose one option " -"from the values provided." -msgstr "" - -#: includes/fields/class-acf-field-accordion.php:27 -msgid "" -"Allows you to group and organize custom fields into collapsable panels that " -"are shown while editing content. Useful for keeping large datasets tidy." -msgstr "" - -#: includes/fields.php:475 -msgid "" -"This provides a solution for repeating content such as slides, team members, " -"and call-to-action tiles, by acting as a parent to a set of subfields which " -"can be repeated again and again." -msgstr "" - -#: includes/fields.php:465 -msgid "" -"This provides an interactive interface for managing a collection of " -"attachments. Most settings are similar to the Image field type. Additional " -"settings allow you to specify where new attachments are added in the gallery " -"and the minimum/maximum number of attachments allowed." -msgstr "" - -#: includes/fields.php:455 -msgid "" -"This provides a simple, structured, layout-based editor. The Flexible " -"Content field allows you to define, create and manage content with total " -"control by using layouts and subfields to design the available blocks." -msgstr "" - -#: includes/fields.php:445 -msgid "" -"This allows you to select and display existing fields. It does not duplicate " -"any fields in the database, but loads and displays the selected fields at " -"run-time. The Clone field can either replace itself with the selected fields " -"or display the selected fields as a group of subfields." -msgstr "" - -#: pro/fields/class-acf-field-clone.php:25 -msgctxt "noun" -msgid "Clone" -msgstr "Clone" - -#: includes/admin/views/global/navigation.php:86 includes/fields.php:357 -msgid "PRO" -msgstr "" - -#: includes/fields.php:355 includes/fields.php:412 -msgid "Advanced" -msgstr "" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:85 -msgid "JSON (newer)" -msgstr "" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:81 -msgid "Original" -msgstr "" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:55 -msgid "Invalid post ID." -msgstr "" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:47 -msgid "Invalid post type selected for review." -msgstr "" - -#: includes/admin/views/global/navigation.php:186 -msgid "More" -msgstr "" - -#: includes/admin/views/browse-fields-modal.php:86 -msgid "Tutorial" -msgstr "" - -#: includes/admin/views/browse-fields-modal.php:75 -msgid "Available with ACF PRO" -msgstr "" - -#: includes/admin/views/browse-fields-modal.php:63 -msgid "Select Field" -msgstr "" - -#. translators: %s: A link to the popular fields used in ACF -#: includes/admin/views/browse-fields-modal.php:50 -msgid "Try a different search term or browse %s" -msgstr "" - -#: includes/admin/views/browse-fields-modal.php:47 -msgid "Popular fields" -msgstr "" - -#. translators: %s: The invalid search term -#: includes/admin/views/browse-fields-modal.php:40 -msgid "No search results for '%s'" -msgstr "" - -#: includes/admin/views/browse-fields-modal.php:13 -msgid "Search fields..." -msgstr "" - -#: includes/admin/views/browse-fields-modal.php:11 -msgid "Select Field Type" -msgstr "" - -#: includes/admin/views/browse-fields-modal.php:4 -msgid "Popular" -msgstr "" - -#: includes/admin/views/acf-taxonomy/list-empty.php:7 -msgid "Add Taxonomy" -msgstr "" - -#: includes/admin/views/acf-taxonomy/list-empty.php:6 -msgid "Create custom taxonomies to classify post type content" -msgstr "" - -#: includes/admin/views/acf-taxonomy/list-empty.php:5 -msgid "Add Your First Taxonomy" -msgstr "" - -#: includes/admin/views/acf-taxonomy/basic-settings.php:122 -msgid "Hierarchical taxonomies can have descendants (like categories)." -msgstr "" - -#: includes/admin/views/acf-taxonomy/basic-settings.php:107 -msgid "Makes a taxonomy visible on the frontend and in the admin dashboard." -msgstr "" - -#: includes/admin/views/acf-taxonomy/basic-settings.php:91 -msgid "One or many post types that can be classified with this taxonomy." -msgstr "" - -#. translators: example taxonomy -#: includes/admin/views/acf-taxonomy/basic-settings.php:60 -msgid "genre" -msgstr "" - -#. translators: example taxonomy -#: includes/admin/views/acf-taxonomy/basic-settings.php:42 -msgid "Genre" -msgstr "" - -#. translators: example taxonomy -#: includes/admin/views/acf-taxonomy/basic-settings.php:25 -msgid "Genres" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1211 -msgid "" -"Optional custom controller to use instead of `WP_REST_Terms_Controller `." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1155 -msgid "Expose this post type in the REST API." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1055 -msgid "Customize the query variable name" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1028 -msgid "" -"Terms can be accessed using the non-pretty permalink, e.g., {query_var}" -"={term_slug}." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:981 -msgid "Parent-child terms in URLs for hierarchical taxonomies." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:941 -msgid "Customize the slug used in the URL" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:924 -msgid "Permalinks for this taxonomy are disabled." -msgstr "" - -#. translators: this string will be appended with the new permalink structure. -#: includes/admin/views/acf-taxonomy/advanced-settings.php:921 -msgid "" -"Rewrite the URL using the taxonomy key as the slug. Your permalink structure " -"will be" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:913 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1030 -#: includes/admin/views/acf-taxonomy/basic-settings.php:57 -msgid "Taxonomy Key" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:911 -msgid "Select the type of permalink to use for this taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:896 -msgid "Display a column for the taxonomy on post type listing screens." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:895 -msgid "Show Admin Column" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:882 -msgid "Show the taxonomy in the quick/bulk edit panel." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:881 -msgid "Quick Edit" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:868 -msgid "List the taxonomy in the Tag Cloud Widget controls." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:867 -msgid "Tag Cloud" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:824 -msgid "" -"A PHP function name to be called for sanitizing taxonomy data saved from a " -"meta box." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:823 -msgid "Meta Box Sanitization Callback" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:805 -msgid "" -"A PHP function name to be called to handle the content of a meta box on your " -"taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:804 -msgid "Register Meta Box Callback" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:763 -msgid "No Meta Box" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:762 -msgid "Custom Meta Box" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:758 -msgid "" -"Controls the meta box on the content editor screen. By default, the " -"Categories meta box is shown for hierarchical taxonomies, and the Tags meta " -"box is shown for non-hierarchical taxonomies." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:757 -msgid "Meta Box" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:746 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:767 -msgid "Categories Meta Box" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:745 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:766 -msgid "Tags Meta Box" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:704 -msgid "A link to a tag" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:703 -msgid "Describes a navigation link block variation used in the block editor." -msgstr "" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:698 -msgid "A link to a %s" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:683 -msgid "Tag Link" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:682 -msgid "" -"Assigns a title for navigation link block variation used in the block editor." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:663 -msgid "← Go to tags" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:662 -msgid "" -"Assigns the text used to link back to the main index after updating a term." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:661 -msgid "Back To Items" -msgstr "" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:657 -msgid "← Go to %s" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:642 -msgid "Tags list" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:641 -msgid "Assigns text to the table hidden heading." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:622 -msgid "Tags list navigation" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:621 -msgid "Assigns text to the table pagination hidden heading." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:597 -msgid "Filter by category" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:596 -msgid "Assigns text to the filter button in the posts lists table." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:595 -msgid "Filter By Item" -msgstr "" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:591 -msgid "Filter by %s" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:575 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:576 -msgid "" -"The description is not prominent by default; however, some themes may show " -"it." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:574 -msgid "Describes the Description field on the Edit Tags screen." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:573 -msgid "Description Field Description" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:554 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:555 -msgid "" -"Assign a parent term to create a hierarchy. The term Jazz, for example, " -"would be the parent of Bebop and Big Band" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:553 -msgid "Describes the Parent field on the Edit Tags screen." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:552 -msgid "Parent Field Description" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:538 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:539 -msgid "" -"The \"slug\" is the URL-friendly version of the name. It is usually all " -"lower case and contains only letters, numbers, and hyphens." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:537 -msgid "Describes the Slug field on the Edit Tags screen." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:536 -msgid "Slug Field Description" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:522 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:523 -msgid "The name is how it appears on your site" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:521 -msgid "Describes the Name field on the Edit Tags screen." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:520 -msgid "Name Field Description" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:507 -msgid "No tags" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:506 -msgid "" -"Assigns the text displayed in the posts and media list tables when no tags " -"or categories are available." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:505 -msgid "No Terms" -msgstr "" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:501 -msgid "No %s" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:486 -msgid "No tags found" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:485 -msgid "" -"Assigns the text displayed when clicking the 'choose from most used' text in " -"the taxonomy meta box when no tags are available, and assigns the text used " -"in the terms list table when there are no items for a taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:484 -msgid "Not Found" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:463 -msgid "Assigns text to the Title field of the Most Used tab." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:462 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:464 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:465 -msgid "Most Used" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:444 -msgid "Choose from the most used tags" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:443 -msgid "" -"Assigns the 'choose from most used' text used in the meta box when " -"JavaScript is disabled. Only used on non-hierarchical taxonomies." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:442 -msgid "Choose From Most Used" -msgstr "" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:438 -msgid "Choose from the most used %s" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:418 -msgid "Add or remove tags" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:417 -msgid "" -"Assigns the add or remove items text used in the meta box when JavaScript is " -"disabled. Only used on non-hierarchical taxonomies" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:416 -msgid "Add Or Remove Items" -msgstr "" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:412 -msgid "Add or remove %s" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:392 -msgid "Separate tags with commas" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:391 -msgid "" -"Assigns the separate item with commas text used in the taxonomy meta box. " -"Only used on non-hierarchical taxonomies." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:390 -msgid "Separate Items With Commas" -msgstr "" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:386 -msgid "Separate %s with commas" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:366 -msgid "Popular Tags" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:365 -msgid "Assigns popular items text. Only used for non-hierarchical taxonomies." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:364 -msgid "Popular Items" -msgstr "" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:361 -msgid "Popular %s" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:347 -msgid "Search Tags" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:346 -msgid "Assigns search items text." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:323 -msgid "Parent Category:" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:322 -msgid "Assigns parent item text, but with a colon (:) added to the end." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:321 -msgid "Parent Item With Colon" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:298 -msgid "Parent Category" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:297 -msgid "Assigns parent item text. Only used on hierarchical taxonomies." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:296 -msgid "Parent Item" -msgstr "" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:293 -msgid "Parent %s" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:278 -msgid "New Tag Name" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:277 -msgid "Assigns the new item name text." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:276 -msgid "New Item Name" -msgstr "" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:273 -msgid "New %s Name" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:258 -msgid "Add New Tag" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:257 -msgid "Assigns the add new item text." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:238 -msgid "Update Tag" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:237 -msgid "Assigns the update item text." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:236 -msgid "Update Item" -msgstr "" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:233 -msgid "Update %s" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:218 -msgid "View Tag" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:217 -msgid "In the admin bar to view term during editing." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:198 -msgid "Edit Tag" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:197 -msgid "At the top of the editor screen when editing a term." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:178 -msgid "All Tags" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:177 -msgid "Assigns the all items text." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:158 -msgid "Assigns the menu name text." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:157 -msgid "Menu Label" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:131 -msgid "Active taxonomies are enabled and registered with WordPress." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:115 -msgid "A descriptive summary of the taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:95 -msgid "A descriptive summary of the term." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:94 -msgid "Term Description" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:76 -msgid "Single word, no spaces. Underscores and dashes allowed." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:75 -msgid "Term Slug" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:56 -msgid "The name of the default term." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:55 -msgid "Term Name" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:41 -msgid "" -"Create a term for the taxonomy that cannot be deleted. It will not be " -"selected for posts by default." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:40 -msgid "Default Term" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:28 -msgid "" -"Whether terms in this taxonomy should be sorted in the order they are " -"provided to `wp_set_object_terms()`." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:27 -msgid "Sort Terms" -msgstr "" - -#: includes/admin/views/acf-post-type/list-empty.php:7 -msgid "Add Post Type" -msgstr "" - -#: includes/admin/views/acf-post-type/list-empty.php:6 -msgid "" -"Expand the functionality of WordPress beyond standard posts and pages with " -"custom post types." -msgstr "" - -#: includes/admin/views/acf-post-type/list-empty.php:5 -msgid "Add Your First Post Type" -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:136 -#: includes/admin/views/acf-taxonomy/basic-settings.php:135 -msgid "I know what I'm doing, show me all the options." -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:135 -#: includes/admin/views/acf-taxonomy/basic-settings.php:134 -msgid "Advanced Configuration" -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:123 -msgid "Hierarchical post types can have descendants (like pages)." -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:122 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:980 -#: includes/admin/views/acf-taxonomy/basic-settings.php:121 -msgid "Hierarchical" -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:107 -msgid "Visible on the frontend and in the admin dashboard." -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:106 -#: includes/admin/views/acf-taxonomy/basic-settings.php:106 -msgid "Public" -msgstr "" - -#. translators: example post type -#: includes/admin/views/acf-post-type/basic-settings.php:59 -msgid "movie" -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:57 -msgid "Lower case letters, underscores and dashes only, Max 20 characters." -msgstr "" - -#. translators: example post type -#: includes/admin/views/acf-post-type/basic-settings.php:41 -msgid "Movie" -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:39 -#: includes/admin/views/acf-taxonomy/basic-settings.php:40 -msgid "Singular Label" -msgstr "" - -#. translators: example post type -#: includes/admin/views/acf-post-type/basic-settings.php:24 -msgid "Movies" -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:22 -#: includes/admin/views/acf-taxonomy/basic-settings.php:23 -msgid "Plural Label" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1270 -msgid "" -"Optional custom controller to use instead of `WP_REST_Posts_Controller`." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1269 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1210 -msgid "Controller Class" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1251 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1191 -msgid "The namespace part of the REST API URL." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1250 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1190 -msgid "Namespace Route" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1232 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1172 -msgid "The base URL for the post type REST API URLs." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1231 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1171 -msgid "Base URL" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1217 -msgid "" -"Exposes this post type in the REST API. Required to use the block editor." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1216 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1154 -msgid "Show In REST API" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1195 -msgid "Customize the query variable name." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1194 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1054 -msgid "Query Variable" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1172 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1032 -msgid "No Query Variable Support" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1171 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1031 -msgid "Custom Query Variable" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1168 -msgid "" -"Items can be accessed using the non-pretty permalink, eg. {post_type}" -"={post_slug}." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1167 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1027 -msgid "Query Variable Support" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1142 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1003 -msgid "URLs for an item and items can be accessed with a query string." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1141 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1002 -msgid "Publicly Queryable" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1120 -msgid "Custom slug for the Archive URL." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1119 -msgid "Archive Slug" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1106 -msgid "" -"Has an item archive that can be customized with an archive template file in " -"your theme." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1105 -msgid "Archive" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1085 -msgid "Pagination support for the items URLs such as the archives." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1084 -msgid "Pagination" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1067 -msgid "RSS feed URL for the post type items." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1066 -msgid "Feed URL" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1048 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:961 -msgid "" -"Alters the permalink structure to add the `WP_Rewrite::$front` prefix to " -"URLs." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1047 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:960 -msgid "Front URL Prefix" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1028 -msgid "Customize the slug used in the URL." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1027 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:940 -msgid "URL Slug" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1011 -msgid "Permalinks for this post type are disabled." -msgstr "" - -#. translators: this string will be appended with the new permalink structure. -#: includes/admin/views/acf-post-type/advanced-settings.php:1010 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:923 -msgid "" -"Rewrite the URL using a custom slug defined in the input below. Your " -"permalink structure will be" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1002 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:915 -msgid "No Permalink (prevent URL rewriting)" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1001 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:914 -msgid "Custom Permalink" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1000 -#: includes/admin/views/acf-post-type/advanced-settings.php:1170 -#: includes/admin/views/acf-post-type/basic-settings.php:56 -msgid "Post Type Key" -msgstr "" - -#. translators: this string will be appended with the new permalink structure. -#: includes/admin/views/acf-post-type/advanced-settings.php:998 -#: includes/admin/views/acf-post-type/advanced-settings.php:1008 -msgid "" -"Rewrite the URL using the post type key as the slug. Your permalink " -"structure will be" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:996 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:910 -msgid "Permalink Rewrite" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:982 -msgid "Delete items by a user when that user is deleted." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:981 -msgid "Delete With User" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:967 -msgid "Allow the post type to be exported from 'Tools' > 'Export'." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:966 -msgid "Can Export" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:935 -msgid "Optionally provide a plural to be used in capabilities." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:934 -msgid "Plural Capability Name" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:916 -msgid "Choose another post type to base the capabilities for this post type." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:915 -msgid "Singular Capability Name" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:901 -msgid "" -"By default the capabilities of the post type will inherit the 'Post' " -"capability names, eg. edit_post, delete_posts. Enable to use post type " -"specific capabilities, eg. edit_{singular}, delete_{plural}." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:900 -msgid "Rename Capabilities" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:885 -msgid "Exclude From Search" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:872 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:854 -msgid "" -"Allow items to be added to menus in the 'Appearance' > 'Menus' screen. Must " -"be turned on in 'Screen options'." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:871 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:853 -msgid "Appearance Menus Support" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:853 -msgid "Appears as an item in the 'New' menu in the admin bar." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:852 -msgid "Show In Admin Bar" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:821 -msgid "" -"A PHP function name to be called when setting up the meta boxes for the edit " -"screen." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:820 -msgid "Custom Meta Box Callback" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:800 -msgid "Menu Icon" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:782 -msgid "The position in the sidebar menu in the admin dashboard." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:781 -msgid "Menu Position" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:763 -msgid "" -"By default the post type will get a new top level item in the admin menu. If " -"an existing top level item is supplied here, the post type will be added as " -"a submenu item under it." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:762 -msgid "Admin Menu Parent" -msgstr "" - -#. translators: %s = "dashicon class name", link to the WordPress dashicon -#. documentation. -#: includes/admin/views/acf-post-type/advanced-settings.php:750 -msgid "" -"The icon used for the post type menu item in the admin dashboard. Can be a " -"URL or %s to use for the icon." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:745 -msgid "Dashicon class name" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:734 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:734 -msgid "Admin editor navigation in the sidebar menu." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:733 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:733 -msgid "Show In Admin Menu" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:720 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:719 -msgid "Items can be edited and managed in the admin dashboard." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:719 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:718 -msgid "Show In UI" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:689 -msgid "A link to a post." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:688 -msgid "Description for a navigation link block variation." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:687 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:702 -msgid "Item Link Description" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:683 -msgid "A link to a %s." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:668 -msgid "Post Link" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:667 -msgid "Title for a navigation link block variation." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:666 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:681 -msgid "Item Link" -msgstr "" - -#. translators: %s Singular form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:663 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:678 -msgid "%s Link" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:648 -msgid "Post updated." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:647 -msgid "In the editor notice after an item is updated." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:646 -msgid "Item Updated" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:643 -msgid "%s updated." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:628 -msgid "Post scheduled." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:627 -msgid "In the editor notice after scheduling an item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:626 -msgid "Item Scheduled" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:623 -msgid "%s scheduled." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:608 -msgid "Post reverted to draft." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:607 -msgid "In the editor notice after reverting an item to draft." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:606 -msgid "Item Reverted To Draft" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:603 -msgid "%s reverted to draft." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:588 -msgid "Post published privately." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:587 -msgid "In the editor notice after publishing a private item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:586 -msgid "Item Published Privately" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:583 -msgid "%s published privately." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:568 -msgid "Post published." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:567 -msgid "In the editor notice after publishing an item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:566 -msgid "Item Published" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:563 -msgid "%s published." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:548 -msgid "Posts list" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:547 -msgid "Used by screen readers for the items list on the post type list screen." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:546 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:640 -msgid "Items List" -msgstr "" - -#. translators: %s Plural form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:543 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:637 -msgid "%s list" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:528 -msgid "Posts list navigation" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:527 -msgid "" -"Used by screen readers for the filter list pagination on the post type list " -"screen." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:526 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:620 -msgid "Items List Navigation" -msgstr "" - -#. translators: %s Plural form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:523 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:617 -msgid "%s list navigation" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:507 -msgid "Filter posts by date" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:506 -msgid "" -"Used by screen readers for the filter by date heading on the post type list " -"screen." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:505 -msgid "Filter Items By Date" -msgstr "" - -#. translators: %s Plural form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:501 -msgid "Filter %s by date" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:486 -msgid "Filter posts list" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:485 -msgid "" -"Used by screen readers for the filter links heading on the post type list " -"screen." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:484 -msgid "Filter Items List" -msgstr "" - -#. translators: %s Plural form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:480 -msgid "Filter %s list" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:464 -msgid "In the media modal showing all media uploaded to this item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:463 -msgid "Uploaded To This Item" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:459 -msgid "Uploaded to this %s" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:444 -msgid "Insert into post" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:443 -msgid "As the button label when adding media to content." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:442 -msgid "Insert Into Media Button" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:438 -msgid "Insert into %s" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:423 -msgid "Use as featured image" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:422 -msgid "" -"As the button label for selecting to use an image as the featured image." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:421 -msgid "Use Featured Image" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:408 -msgid "Remove featured image" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:407 -msgid "As the button label when removing the featured image." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:406 -msgid "Remove Featured Image" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:393 -msgid "Set featured image" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:392 -msgid "As the button label when setting the featured image." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:391 -msgid "Set Featured Image" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:378 -msgid "Featured image" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:377 -msgid "In the editor used for the title of the featured image meta box." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:376 -msgid "Featured Image Meta Box" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:363 -msgid "Post Attributes" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:362 -msgid "In the editor used for the title of the post attributes meta box." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:361 -msgid "Attributes Meta Box" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:358 -msgid "%s Attributes" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:343 -msgid "Post Archives" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:342 -msgid "" -"Adds 'Post Type Archive' items with this label to the list of posts shown " -"when adding items to an existing menu in a CPT with archives enabled. Only " -"appears when editing menus in 'Live Preview' mode and a custom archive slug " -"has been provided." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:341 -msgid "Archives Nav Menu" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:338 -msgid "%s Archives" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:323 -msgid "No posts found in Trash" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:322 -msgid "" -"At the top of the post type list screen when there are no posts in the trash." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:321 -msgid "No Items Found in Trash" -msgstr "" - -#. translators: %s Plural form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:317 -msgid "No %s found in Trash" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:302 -msgid "No posts found" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:301 -msgid "" -"At the top of the post type list screen when there are no posts to display." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:300 -msgid "No Items Found" -msgstr "" - -#. translators: %s Plural form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:296 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:480 -msgid "No %s found" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:281 -msgid "Search Posts" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:280 -msgid "At the top of the items screen when searching for an item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:279 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:345 -msgid "Search Items" -msgstr "" - -#. translators: %s Singular form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:276 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:342 -msgid "Search %s" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:261 -msgid "Parent Page:" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:260 -msgid "For hierarchical types in the post type list screen." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:259 -msgid "Parent Item Prefix" -msgstr "" - -#. translators: %s Singular form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:256 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:318 -msgid "Parent %s:" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:241 -msgid "New Post" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:239 -msgid "New Item" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:236 -msgid "New %s" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:206 -msgid "Add New Post" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:205 -msgid "At the top of the editor screen when adding a new item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:204 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:256 -msgid "Add New Item" -msgstr "" - -#. translators: %s Singular form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:201 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:253 -msgid "Add New %s" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:186 -msgid "View Posts" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:185 -msgid "" -"Appears in the admin bar in the 'All Posts' view, provided the post type " -"supports archives and the home page is not an archive of that post type." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:184 -msgid "View Items" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:166 -msgid "View Post" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:165 -msgid "In the admin bar to view item when editing it." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:164 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:216 -msgid "View Item" -msgstr "" - -#. translators: %s Singular form of post type name -#. translators: %s Plural form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:161 -#: includes/admin/views/acf-post-type/advanced-settings.php:181 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:213 -msgid "View %s" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:146 -msgid "Edit Post" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:145 -msgid "At the top of the editor screen when editing an item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:144 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:196 -msgid "Edit Item" -msgstr "" - -#. translators: %s Singular form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:141 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:193 -msgid "Edit %s" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:126 -msgid "All Posts" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:125 -#: includes/admin/views/acf-post-type/advanced-settings.php:220 -#: includes/admin/views/acf-post-type/advanced-settings.php:240 -msgid "In the post type submenu in the admin dashboard." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:124 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:176 -msgid "All Items" -msgstr "" - -#. translators: %s Plural form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:121 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:173 -msgid "All %s" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:105 -msgid "Admin menu name for the post type." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:104 -msgid "Menu Name" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:90 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:142 -msgid "Regenerate all labels using the Singular and Plural labels" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:88 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:140 -msgid "Regenerate" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:79 -msgid "Active post types are enabled and registered with WordPress." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:63 -msgid "A descriptive summary of the post type." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:48 -msgid "Add Custom" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:42 -msgid "Enable various features in the content editor." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:31 -msgid "Post Formats" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:25 -msgid "Editor" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:24 -msgid "Trackbacks" -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:87 -msgid "Select existing taxonomies to classify items of the post type." -msgstr "" - -#: includes/admin/views/acf-field-group/field.php:145 -msgid "Browse Fields" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:292 -msgid "Nothing to import" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:287 -msgid ". The Custom Post Type UI plugin can be deactivated." -msgstr "" - -#. translators: %d - number of items imported from CPTUI -#: includes/admin/tools/class-acf-admin-tool-import.php:278 -msgid "Imported %d item from Custom Post Type UI -" -msgid_plural "Imported %d items from Custom Post Type UI -" -msgstr[0] "" -msgstr[1] "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:262 -msgid "Failed to import taxonomies." -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:244 -msgid "Failed to import post types." -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:233 -msgid "Nothing from Custom Post Type UI plugin selected for import." -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:209 -msgid "Imported 1 item" -msgid_plural "Imported %s items" -msgstr[0] "" -msgstr[1] "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:122 -msgid "" -"Importing a Post Type or Taxonomy with the same key as one that already " -"exists will overwrite the settings for the existing Post Type or Taxonomy " -"with those of the import." -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:111 -#: includes/admin/tools/class-acf-admin-tool-import.php:127 -msgid "Import from Custom Post Type UI" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:412 -msgid "" -"The following code can be used to register a local version of the selected " -"items. Storing field groups, post types, or taxonomies locally can provide " -"many benefits such as faster load times, version control & dynamic fields/" -"settings. Simply copy and paste the following code to your theme's functions." -"php file or include it within an external file, then deactivate or delete " -"the items from the ACF admin." -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:411 -msgid "Export - Generate PHP" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:384 -msgid "Export" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:276 -msgid "Select Taxonomies" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:254 -msgid "Select Post Types" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:167 -msgid "Exported 1 item." -msgid_plural "Exported %s items." -msgstr[0] "" -msgstr[1] "" - -#: includes/admin/post-types/admin-taxonomy.php:129 -#: assets/build/js/acf-internal-post-type.js:182 -#: assets/build/js/acf-internal-post-type.js:256 -msgid "Category" -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:127 -#: assets/build/js/acf-internal-post-type.js:179 -#: assets/build/js/acf-internal-post-type.js:253 -msgid "Tag" -msgstr "" - -#. translators: %s taxonomy name -#: includes/admin/post-types/admin-taxonomy.php:82 -msgid "%s taxonomy created" -msgstr "" - -#. translators: %s taxonomy name -#: includes/admin/post-types/admin-taxonomy.php:76 -msgid "%s taxonomy updated" -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:56 -msgid "Taxonomy draft updated." -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:55 -msgid "Taxonomy scheduled for." -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:54 -msgid "Taxonomy submitted." -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:53 -msgid "Taxonomy saved." -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:49 -msgid "Taxonomy deleted." -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:48 -msgid "Taxonomy updated." -msgstr "" - -#: includes/admin/post-types/admin-taxonomies.php:377 -#: includes/admin/post-types/admin-taxonomy.php:157 -msgid "" -"This taxonomy could not be registered because its key is in use by another " -"taxonomy registered by another plugin or theme." -msgstr "" - -#. translators: %s number of taxonomies synchronized -#: includes/admin/post-types/admin-taxonomies.php:359 -msgid "Taxonomy synchronized." -msgid_plural "%s taxonomies synchronized." -msgstr[0] "" -msgstr[1] "" - -#. translators: %s number of taxonomies duplicated -#: includes/admin/post-types/admin-taxonomies.php:352 -msgid "Taxonomy duplicated." -msgid_plural "%s taxonomies duplicated." -msgstr[0] "" -msgstr[1] "" - -#. translators: %s number of taxonomies deactivated -#: includes/admin/post-types/admin-taxonomies.php:345 -msgid "Taxonomy deactivated." -msgid_plural "%s taxonomies deactivated." -msgstr[0] "" -msgstr[1] "" - -#. translators: %s number of taxonomies activated -#: includes/admin/post-types/admin-taxonomies.php:338 -msgid "Taxonomy activated." -msgid_plural "%s taxonomies activated." -msgstr[0] "" -msgstr[1] "" - -#: includes/admin/post-types/admin-taxonomies.php:139 -msgid "Terms" -msgstr "" - -#. translators: %s number of post types synchronized -#: includes/admin/post-types/admin-post-types.php:352 -msgid "Post type synchronized." -msgid_plural "%s post types synchronized." -msgstr[0] "" -msgstr[1] "" - -#. translators: %s number of post types duplicated -#: includes/admin/post-types/admin-post-types.php:345 -msgid "Post type duplicated." -msgid_plural "%s post types duplicated." -msgstr[0] "" -msgstr[1] "" - -#. translators: %s number of post types deactivated -#: includes/admin/post-types/admin-post-types.php:338 -msgid "Post type deactivated." -msgid_plural "%s post types deactivated." -msgstr[0] "" -msgstr[1] "" - -#. translators: %s number of post types activated -#: includes/admin/post-types/admin-post-types.php:331 -msgid "Post type activated." -msgid_plural "%s post types activated." -msgstr[0] "" -msgstr[1] "" - -#: includes/admin/post-types/admin-post-types.php:112 -#: includes/admin/post-types/admin-taxonomies.php:137 -#: includes/admin/tools/class-acf-admin-tool-import.php:82 -#: includes/admin/views/acf-taxonomy/basic-settings.php:82 -#: includes/post-types/class-acf-post-type.php:91 -msgid "Post Types" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:162 -#: includes/admin/post-types/admin-taxonomy.php:164 -msgid "Advanced Settings" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:161 -#: includes/admin/post-types/admin-taxonomy.php:163 -msgid "Basic Settings" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:155 -#: includes/admin/post-types/admin-post-types.php:370 -msgid "" -"This post type could not be registered because its key is in use by another " -"post type registered by another plugin or theme." -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:128 -#: assets/build/js/acf-internal-post-type.js:176 -#: assets/build/js/acf-internal-post-type.js:250 -msgid "Pages" -msgstr "" - -#: includes/admin/admin-internal-post-type.php:355 -msgid "Link Existing Field Groups" -msgstr "" - -#. translators: %s post type name -#: includes/admin/post-types/admin-post-type.php:80 -msgid "%s post type created" -msgstr "" - -#. translators: %s taxonomy name -#: includes/admin/post-types/admin-taxonomy.php:78 -msgid "Add fields to %s" -msgstr "" - -#. translators: %s post type name -#: includes/admin/post-types/admin-post-type.php:76 -msgid "%s post type updated" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:56 -msgid "Post type draft updated." -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:55 -msgid "Post type scheduled for." -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:54 -msgid "Post type submitted." -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:53 -msgid "Post type saved." -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:50 -msgid "Post type updated." -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:49 -msgid "Post type deleted." -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:120 -#: assets/build/js/acf-field-group.js:1146 -#: assets/build/js/acf-field-group.js:1366 -msgid "Type to search..." -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:105 -#: assets/build/js/acf-field-group.js:1172 -#: assets/build/js/acf-field-group.js:2319 -#: assets/build/js/acf-field-group.js:1414 -#: assets/build/js/acf-field-group.js:2727 -msgid "PRO Only" -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:97 -#: assets/build/js/acf-internal-post-type.js:308 -#: assets/build/js/acf-internal-post-type.js:417 -msgid "Field groups linked successfully." -msgstr "" - -#. translators: %s - URL to ACF tools page. -#: includes/admin/admin.php:195 -msgid "" -"Import Post Types and Taxonomies registered with Custom Post Type UI and " -"manage them with ACF. Get Started." -msgstr "" - -#: includes/admin/admin.php:48 includes/admin/admin.php:267 -msgid "ACF" -msgstr "" - -#: includes/admin/admin-internal-post-type.php:322 -msgid "taxonomy" -msgstr "" - -#: includes/admin/admin-internal-post-type.php:322 -msgid "post type" -msgstr "" - -#: includes/admin/admin-internal-post-type.php:346 -msgid "Done" -msgstr "" - -#: includes/admin/admin-internal-post-type.php:332 -msgid "Field Group(s)" -msgstr "" - -#: includes/admin/admin-internal-post-type.php:331 -msgid "Select one or many field groups..." -msgstr "" - -#: includes/admin/admin-internal-post-type.php:330 -msgid "Please select the field groups to link." -msgstr "" - -#: includes/admin/admin-internal-post-type.php:288 -msgid "Field group linked successfully." -msgid_plural "Field groups linked successfully." -msgstr[0] "" -msgstr[1] "" - -#: includes/admin/admin-internal-post-type-list.php:261 -#: includes/admin/post-types/admin-post-types.php:371 -#: includes/admin/post-types/admin-taxonomies.php:378 -msgctxt "post status" -msgid "Registration Failed" -msgstr "" - -#: includes/admin/admin-internal-post-type-list.php:260 -msgid "" -"This item could not be registered because its key is in use by another item " -"registered by another plugin or theme." -msgstr "" - -#: includes/acf-internal-post-type-functions.php:482 -#: includes/acf-internal-post-type-functions.php:511 -msgid "REST API" -msgstr "" - -#: includes/acf-internal-post-type-functions.php:481 -#: includes/acf-internal-post-type-functions.php:510 -#: includes/acf-internal-post-type-functions.php:537 -msgid "Permissions" -msgstr "" - -#: includes/acf-internal-post-type-functions.php:480 -#: includes/acf-internal-post-type-functions.php:509 -msgid "URLs" -msgstr "" - -#: includes/acf-internal-post-type-functions.php:479 -#: includes/acf-internal-post-type-functions.php:508 -#: includes/acf-internal-post-type-functions.php:535 -msgid "Visibility" -msgstr "" - -#: includes/acf-internal-post-type-functions.php:478 -#: includes/acf-internal-post-type-functions.php:507 -#: includes/acf-internal-post-type-functions.php:536 -msgid "Labels" -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:269 -msgid "Field Settings Tabs" -msgstr "" - -#. Author URI of the plugin -msgid "" -"https://wpengine.com/?utm_source=wordpress." -"org&utm_medium=referral&utm_campaign=plugin_directory&utm_content=advanced_custom_fields" -msgstr "" - -#: includes/api/api-template.php:867 -msgid "[ACF shortcode value disabled for preview]" -msgstr "" - -#: includes/admin/admin-internal-post-type.php:298 -#: includes/admin/post-types/admin-field-group.php:571 -msgid "Close Modal" -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:96 -#: assets/build/js/acf-field-group.js:1670 -#: assets/build/js/acf-field-group.js:1993 -msgid "Field moved to other group" -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:95 -#: assets/build/js/acf.js:1437 assets/build/js/acf.js:1517 -msgid "Close modal" -msgstr "" - -#: includes/fields/class-acf-field-tab.php:125 -msgid "Start a new group of tabs at this tab." -msgstr "" - -#: includes/fields/class-acf-field-tab.php:124 -msgid "New Tab Group" -msgstr "" - -#: includes/fields/class-acf-field-select.php:451 -#: includes/fields/class-acf-field-true_false.php:200 -msgid "Use a stylized checkbox using select2" -msgstr "" - -#: includes/fields/class-acf-field-radio.php:260 -msgid "Save Other Choice" -msgstr "" - -#: includes/fields/class-acf-field-radio.php:249 -msgid "Allow Other Choice" -msgstr "" - -#: includes/fields/class-acf-field-checkbox.php:450 -msgid "Add Toggle All" -msgstr "" - -#: includes/fields/class-acf-field-checkbox.php:409 -msgid "Save Custom Values" -msgstr "" - -#: includes/fields/class-acf-field-checkbox.php:398 -msgid "Allow Custom Values" -msgstr "" - -#: includes/fields/class-acf-field-checkbox.php:148 -msgid "Checkbox custom values cannot be empty. Uncheck any empty values." -msgstr "" - -# @ acf -#: pro/admin/admin-updates.php:122, -#: pro/admin/views/html-settings-updates.php:12 -msgid "Updates" -msgstr "Mises à jour" - -#: includes/admin/views/global/navigation.php:176 -msgid "Advanced Custom Fields logo" -msgstr "" - -#: includes/admin/views/global/form-top.php:89 -msgid "Save Changes" -msgstr "" - -#: includes/admin/views/global/form-top.php:76 -msgid "Field Group Title" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:704 -#: includes/admin/views/global/form-top.php:3 -msgid "Add title" -msgstr "" - -#. translators: %s url to getting started guide -#: includes/admin/views/acf-field-group/list-empty.php:20 -#: includes/admin/views/acf-post-type/list-empty.php:12 -#: includes/admin/views/acf-taxonomy/list-empty.php:12 -#: includes/admin/views/options-page-preview.php:13 -msgid "" -"New to ACF? Take a look at our getting " -"started guide." -msgstr "" - -#: includes/admin/views/acf-field-group/list-empty.php:15 -msgid "Add Field Group" -msgstr "" - -#. translators: %s url to creating a field group page -#: includes/admin/views/acf-field-group/list-empty.php:10 -msgid "" -"ACF uses field groups to group custom " -"fields together, and then attach those fields to edit screens." -msgstr "" - -#: includes/admin/views/acf-field-group/list-empty.php:5 -msgid "Add Your First Field Group" -msgstr "" - -#: includes/admin/admin-options-pages-preview.php:28 -#: includes/admin/views/acf-field-group/pro-features.php:54 -#: includes/admin/views/global/navigation.php:86 -#: includes/admin/views/global/navigation.php:250 -msgid "Options Pages" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:50 -msgid "ACF Blocks" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:58 -msgid "Gallery Field" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:38 -msgid "Flexible Content Field" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:42 -msgid "Repeater Field" -msgstr "" - -#: includes/admin/views/global/navigation.php:212 -msgid "Unlock Extra Features with ACF PRO" -msgstr "" - -#: includes/admin/views/acf-field-group/options.php:267 -msgid "Delete Field Group" -msgstr "" - -#. translators: 1: Post creation date 2: Post creation time -#: includes/admin/views/acf-field-group/options.php:261 -msgid "Created on %1$s at %2$s" -msgstr "" - -#: includes/acf-field-group-functions.php:497 -msgid "Group Settings" -msgstr "" - -#: includes/acf-field-group-functions.php:495 -msgid "Location Rules" -msgstr "" - -#. translators: %s url to field types list -#: includes/admin/views/acf-field-group/fields.php:72 -msgid "" -"Choose from over 30 field types. Learn " -"more." -msgstr "" - -#: includes/admin/views/acf-field-group/fields.php:65 -msgid "" -"Get started creating new custom fields for your posts, pages, custom post " -"types and other WordPress content." -msgstr "" - -#: includes/admin/views/acf-field-group/fields.php:64 -msgid "Add Your First Field" -msgstr "" - -#. translators: A symbol (or text, if not available in your locale) meaning -#. "Order Number", in terms of positional placement. -#: includes/admin/views/acf-field-group/fields.php:43 -msgid "#" -msgstr "" - -#: includes/admin/views/acf-field-group/fields.php:33 -#: includes/admin/views/acf-field-group/fields.php:67 -#: includes/admin/views/acf-field-group/fields.php:103 -#: includes/admin/views/global/form-top.php:85 -msgid "Add Field" -msgstr "" - -#: includes/acf-field-group-functions.php:496 includes/fields.php:410 -msgid "Presentation" -msgstr "" - -#: includes/fields.php:409 -msgid "Validation" -msgstr "" - -#: includes/acf-internal-post-type-functions.php:477 -#: includes/acf-internal-post-type-functions.php:506 includes/fields.php:408 -msgid "General" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:70 -msgid "Import JSON" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:392 -msgid "Export As JSON" -msgstr "" - -#. translators: %s number of field groups deactivated -#: includes/admin/post-types/admin-field-groups.php:367 -msgid "Field group deactivated." -msgid_plural "%s field groups deactivated." -msgstr[0] "" -msgstr[1] "" - -#. translators: %s number of field groups activated -#: includes/admin/post-types/admin-field-groups.php:360 -msgid "Field group activated." -msgid_plural "%s field groups activated." -msgstr[0] "" -msgstr[1] "" - -#: includes/admin/admin-internal-post-type-list.php:452 -#: includes/admin/admin-internal-post-type-list.php:478 -msgid "Deactivate" -msgstr "" - -#: includes/admin/admin-internal-post-type-list.php:452 -msgid "Deactivate this item" -msgstr "" - -#: includes/admin/admin-internal-post-type-list.php:448 -#: includes/admin/admin-internal-post-type-list.php:477 -msgid "Activate" -msgstr "" - -#: includes/admin/admin-internal-post-type-list.php:448 -msgid "Activate this item" -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:92 -#: assets/build/js/acf-field-group.js:2812 -#: assets/build/js/acf-field-group.js:3313 -msgid "Move field group to trash?" -msgstr "" - -#: acf.php:497 includes/admin/admin-internal-post-type-list.php:248 -#: includes/admin/post-types/admin-field-group.php:297 -#: includes/admin/post-types/admin-post-type.php:295 -#: includes/admin/post-types/admin-taxonomy.php:297 -msgctxt "post status" -msgid "Inactive" -msgstr "" - -#. Author of the plugin -msgid "WP Engine" -msgstr "" - -#: acf.php:555 -msgid "" -"Advanced Custom Fields and Advanced Custom Fields PRO should not be active " -"at the same time. We've automatically deactivated Advanced Custom Fields PRO." -msgstr "" - -#: acf.php:553 -msgid "" -"Advanced Custom Fields and Advanced Custom Fields PRO should not be active " -"at the same time. We've automatically deactivated Advanced Custom Fields." -msgstr "" - -#: includes/acf-value-functions.php:374 -msgid "" -"%1$s - We've detected one or more calls to retrieve ACF " -"field values before ACF has been initialized. This is not supported and can " -"result in malformed or missing data. Learn how to fix this." -msgstr "" - -#: includes/fields/class-acf-field-user.php:551 -msgid "%1$s must have a user with the %2$s role." -msgid_plural "%1$s must have a user with one of the following roles: %2$s" -msgstr[0] "" -msgstr[1] "" - -#: includes/fields/class-acf-field-user.php:542 -msgid "%1$s must have a valid user ID." -msgstr "" - -#: includes/fields/class-acf-field-user.php:380 -msgid "Invalid request." -msgstr "" - -#: includes/fields/class-acf-field-select.php:684 -msgid "%1$s is not one of %2$s" -msgstr "" - -#: includes/fields/class-acf-field-post_object.php:700 -msgid "%1$s must have term %2$s." -msgid_plural "%1$s must have one of the following terms: %2$s" -msgstr[0] "" -msgstr[1] "" - -#: includes/fields/class-acf-field-post_object.php:684 -msgid "%1$s must be of post type %2$s." -msgid_plural "%1$s must be of one of the following post types: %2$s" -msgstr[0] "" -msgstr[1] "" - -#: includes/fields/class-acf-field-post_object.php:675 -msgid "%1$s must have a valid post ID." -msgstr "" - -#: includes/fields/class-acf-field-file.php:475 -msgid "%s requires a valid attachment ID." -msgstr "" - -#: includes/admin/views/acf-field-group/options.php:233 -msgid "Show in REST API" -msgstr "" - -#: includes/fields/class-acf-field-color_picker.php:168 -msgid "Enable Transparency" -msgstr "" - -#: includes/fields/class-acf-field-color_picker.php:187 -msgid "RGBA Array" -msgstr "" - -#: includes/fields/class-acf-field-color_picker.php:98 -msgid "RGBA String" -msgstr "" - -#: includes/fields/class-acf-field-color_picker.php:97 -#: includes/fields/class-acf-field-color_picker.php:186 -msgid "Hex String" -msgstr "" - -#: includes/admin/views/browse-fields-modal.php:65 -msgid "Upgrade to PRO" -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:297 -#: includes/admin/post-types/admin-post-type.php:295 -#: includes/admin/post-types/admin-taxonomy.php:297 -msgctxt "post status" -msgid "Active" -msgstr "" - -#: includes/fields/class-acf-field-email.php:181 -msgid "'%s' is not a valid email address" -msgstr "" - -#: includes/fields/class-acf-field-color_picker.php:76 -msgid "Color value" -msgstr "" - -#: includes/fields/class-acf-field-color_picker.php:74 -msgid "Select default color" -msgstr "" - -#: includes/fields/class-acf-field-color_picker.php:72 -msgid "Clear color" -msgstr "" - -#: includes/acf-wp-functions.php:90 -msgid "Blocks" -msgstr "" - -# @ acf -#: pro/options-page.php:47 -msgid "Options" -msgstr "Options" - -#: includes/acf-wp-functions.php:82 -msgid "Users" -msgstr "" - -#: includes/acf-wp-functions.php:78 -msgid "Menu items" -msgstr "" - -#: includes/acf-wp-functions.php:70 -msgid "Widgets" -msgstr "" - -#: includes/acf-wp-functions.php:62 -msgid "Attachments" -msgstr "" - -#: includes/acf-wp-functions.php:57 -#: includes/admin/post-types/admin-post-types.php:137 -#: includes/admin/post-types/admin-taxonomies.php:112 -#: includes/admin/tools/class-acf-admin-tool-import.php:93 -#: includes/admin/views/acf-post-type/basic-settings.php:86 -#: includes/post-types/class-acf-taxonomy.php:90 -#: includes/post-types/class-acf-taxonomy.php:91 -msgid "Taxonomies" -msgstr "" - -#: includes/acf-wp-functions.php:44 -#: includes/admin/post-types/admin-post-type.php:126 -#: includes/admin/post-types/admin-post-types.php:139 -#: includes/admin/views/acf-post-type/advanced-settings.php:106 -#: assets/build/js/acf-internal-post-type.js:173 -#: assets/build/js/acf-internal-post-type.js:247 -msgid "Posts" -msgstr "" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:76 -msgid "Last updated: %s" -msgstr "" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:70 -msgid "Sorry, this post is unavailable for diff comparison." -msgstr "" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:42 -msgid "Invalid field group parameter(s)." -msgstr "" - -#: includes/admin/admin-internal-post-type-list.php:413 -msgid "Awaiting save" -msgstr "" - -#: includes/admin/admin-internal-post-type-list.php:410 -msgid "Saved" -msgstr "" - -#: includes/admin/admin-internal-post-type-list.php:406 -#: includes/admin/tools/class-acf-admin-tool-import.php:49 -msgid "Import" -msgstr "" - -#: includes/admin/admin-internal-post-type-list.php:402 -msgid "Review changes" -msgstr "" - -#: includes/admin/admin-internal-post-type-list.php:378 -msgid "Located in: %s" -msgstr "" - -#: includes/admin/admin-internal-post-type-list.php:375 -msgid "Located in plugin: %s" -msgstr "" - -#: includes/admin/admin-internal-post-type-list.php:372 -msgid "Located in theme: %s" -msgstr "" - -#: includes/admin/post-types/admin-field-groups.php:261 -msgid "Various" -msgstr "" - -#: includes/admin/admin-internal-post-type-list.php:216 -#: includes/admin/admin-internal-post-type-list.php:485 -msgid "Sync changes" -msgstr "" - -#: includes/admin/admin-internal-post-type-list.php:215 -msgid "Loading diff" -msgstr "" - -#: includes/admin/admin-internal-post-type-list.php:214 -msgid "Review local JSON changes" -msgstr "" - -#: includes/admin/admin.php:170 -msgid "Visit website" -msgstr "" - -#: includes/admin/admin.php:169 -msgid "View details" -msgstr "" - -#: includes/admin/admin.php:168 -msgid "Version %s" -msgstr "" - -#: includes/admin/admin.php:167 -msgid "Information" -msgstr "" - -#: includes/admin/admin.php:158 -msgid "" -"Help Desk. The support professionals on " -"our Help Desk will assist with your more in depth, technical challenges." -msgstr "" - -#: includes/admin/admin.php:154 -msgid "" -"Discussions. We have an active and " -"friendly community on our Community Forums who may be able to help you " -"figure out the 'how-tos' of the ACF world." -msgstr "" - -#: includes/admin/admin.php:150 -msgid "" -"Documentation. Our extensive " -"documentation contains references and guides for most situations you may " -"encounter." -msgstr "" - -#: includes/admin/admin.php:147 -msgid "" -"We are fanatical about support, and want you to get the best out of your " -"website with ACF. If you run into any difficulties, there are several places " -"you can find help:" -msgstr "" - -#: includes/admin/admin.php:144 includes/admin/admin.php:146 -msgid "Help & Support" -msgstr "" - -#: includes/admin/admin.php:135 -msgid "" -"Please use the Help & Support tab to get in touch should you find yourself " -"requiring assistance." -msgstr "" - -#: includes/admin/admin.php:132 -msgid "" -"Before creating your first Field Group, we recommend first reading our Getting started guide to familiarize " -"yourself with the plugin's philosophy and best practises." -msgstr "" - -#: includes/admin/admin.php:130 -msgid "" -"The Advanced Custom Fields plugin provides a visual form builder to " -"customize WordPress edit screens with extra fields, and an intuitive API to " -"display custom field values in any theme template file." -msgstr "" - -#: includes/admin/admin.php:127 includes/admin/admin.php:129 -msgid "Overview" -msgstr "" - -#: includes/locations.php:36 -msgid "Location type \"%s\" is already registered." -msgstr "" - -#: includes/locations.php:25 -msgid "Class \"%s\" does not exist." -msgstr "" - -#: includes/ajax/class-acf-ajax.php:157 -msgid "Invalid nonce." -msgstr "Nonce non valide." - -#: includes/fields/class-acf-field-user.php:375 -msgid "Error loading field." -msgstr "Erreur au chargement du champ." - -#: assets/build/js/acf-input.js:2750 assets/build/js/acf-input.js:2819 -#: assets/build/js/acf-input.js:2926 assets/build/js/acf-input.js:3000 -msgid "Location not found: %s" -msgstr "Emplacement introuvable : %s" - -#: includes/forms/form-user.php:353 -msgid "Error: %s" -msgstr "" - -#: includes/locations/class-acf-location-widget.php:22 -msgid "Widget" -msgstr "Widget" - -#: includes/locations/class-acf-location-user-role.php:24 -msgid "User Role" -msgstr "Rôle utilisateur" - -#: includes/locations/class-acf-location-comment.php:22 -msgid "Comment" -msgstr "Commentaire" - -#: includes/locations/class-acf-location-post-format.php:22 -msgid "Post Format" -msgstr "Format d‘article" - -#: includes/locations/class-acf-location-nav-menu-item.php:22 -msgid "Menu Item" -msgstr "Élément de menu" - -#: includes/locations/class-acf-location-post-status.php:22 -msgid "Post Status" -msgstr "État de l’article" - -#: includes/acf-wp-functions.php:74 -#: includes/locations/class-acf-location-nav-menu.php:89 -msgid "Menus" -msgstr "Menus" - -#: includes/locations/class-acf-location-nav-menu.php:80 -msgid "Menu Locations" -msgstr "Emplacement de menu" - -#: includes/locations/class-acf-location-nav-menu.php:22 -msgid "Menu" -msgstr "Menu" - -#: includes/locations/class-acf-location-post-taxonomy.php:22 -msgid "Post Taxonomy" -msgstr "Taxonomie" - -#: includes/locations/class-acf-location-page-type.php:114 -msgid "Child Page (has parent)" -msgstr "Page enfant (avec parent)" - -#: includes/locations/class-acf-location-page-type.php:113 -msgid "Parent Page (has children)" -msgstr "Page parente (avec page(s) enfant)" - -#: includes/locations/class-acf-location-page-type.php:112 -msgid "Top Level Page (no parent)" -msgstr "Page de haut niveau (sans parent)" - -#: includes/locations/class-acf-location-page-type.php:111 -msgid "Posts Page" -msgstr "Page des articles" - -#: includes/locations/class-acf-location-page-type.php:110 -msgid "Front Page" -msgstr "Page d’accueil" - -#: includes/locations/class-acf-location-page-type.php:22 -msgid "Page Type" -msgstr "Type de page" - -#: includes/locations/class-acf-location-current-user.php:73 -msgid "Viewing back end" -msgstr "Est dans l’interface d’administration" - -#: includes/locations/class-acf-location-current-user.php:72 -msgid "Viewing front end" -msgstr "Est dans le site" - -#: includes/locations/class-acf-location-current-user.php:71 -msgid "Logged in" -msgstr "Connecté" - -#: includes/locations/class-acf-location-current-user.php:22 -msgid "Current User" -msgstr "Utilisateur courant" - -#: includes/locations/class-acf-location-page-template.php:22 -msgid "Page Template" -msgstr "Modèle de page" - -#: includes/locations/class-acf-location-user-form.php:74 -msgid "Register" -msgstr "Inscription" - -#: includes/locations/class-acf-location-user-form.php:73 -msgid "Add / Edit" -msgstr "Ajouter / Modifier" - -#: includes/locations/class-acf-location-user-form.php:22 -msgid "User Form" -msgstr "Formulaire utilisateur" - -#: includes/locations/class-acf-location-page-parent.php:22 -msgid "Page Parent" -msgstr "Page parente" - -#: includes/locations/class-acf-location-current-user-role.php:77 -msgid "Super Admin" -msgstr "Super Administrateur" - -#: includes/locations/class-acf-location-current-user-role.php:22 -msgid "Current User Role" -msgstr "Rôle de l’utilisateur courant" - -#: includes/locations/class-acf-location-page-template.php:73 -#: includes/locations/class-acf-location-post-template.php:85 -msgid "Default Template" -msgstr "Modèle de base" - -#: includes/locations/class-acf-location-post-template.php:22 -msgid "Post Template" -msgstr "Modèle d’article" - -#: includes/locations/class-acf-location-post-category.php:22 -msgid "Post Category" -msgstr "Catégorie" - -#: includes/locations/class-acf-location-attachment.php:84 -msgid "All %s formats" -msgstr "Tous les formats %s" - -#: includes/locations/class-acf-location-attachment.php:22 -msgid "Attachment" -msgstr "Fichier attaché" - -#: includes/validation.php:366 -msgid "%s value is required" -msgstr "La valeur %s est requise" - -#: includes/admin/views/acf-field-group/conditional-logic.php:59 -msgid "Show this field if" -msgstr "Montrer ce champ si" - -#: includes/admin/views/acf-field-group/conditional-logic.php:26 -#: includes/admin/views/acf-field-group/field.php:109 includes/fields.php:411 -msgid "Conditional Logic" -msgstr "Logique conditionnelle" - -#: includes/admin/views/acf-field-group/conditional-logic.php:156 -#: includes/admin/views/acf-field-group/location-rule.php:92 -msgid "and" -msgstr "et" - -#: includes/admin/post-types/admin-field-groups.php:123 -#: includes/admin/post-types/admin-post-types.php:143 -#: includes/admin/post-types/admin-taxonomies.php:143 -msgid "Local JSON" -msgstr "JSON Local" - -#: includes/admin/views/acf-field-group/pro-features.php:46 -msgid "Clone Field" -msgstr "Champ Clone" - -#: includes/admin/views/upgrade/notice.php:30 -msgid "" -"Please also check all premium add-ons (%s) are updated to the latest version." -msgstr "" -"Veuillez également vérifier que tous les modules d’extension premium (%s) " -"soient à jour à leur dernière version disponible." - -#: includes/admin/views/upgrade/notice.php:28 -msgid "" -"This version contains improvements to your database and requires an upgrade." -msgstr "" -"Cette version contient des améliorations de la base de données et nécessite " -"une mise à niveau." - -#: includes/admin/views/upgrade/notice.php:28 -msgid "Thank you for updating to %1$s v%2$s!" -msgstr "" - -#: includes/admin/views/upgrade/notice.php:27 -msgid "Database Upgrade Required" -msgstr "Mise-à-jour de la base de données nécessaire" - -#: includes/admin/post-types/admin-field-group.php:141 -#: includes/admin/views/upgrade/notice.php:18 -msgid "Options Page" -msgstr "Page d‘options" - -#: includes/admin/views/upgrade/notice.php:15 includes/fields.php:462 -msgid "Gallery" -msgstr "Galerie" - -#: includes/admin/views/upgrade/notice.php:12 includes/fields.php:452 -msgid "Flexible Content" -msgstr "Contenu flexible" - -#: includes/admin/views/upgrade/notice.php:9 includes/fields.php:472 -msgid "Repeater" -msgstr "Répéteur" - -#: includes/admin/views/tools/tools.php:24 -msgid "Back to all tools" -msgstr "Retour aux outils" - -#: includes/admin/views/acf-field-group/options.php:195 -msgid "" -"If multiple field groups appear on an edit screen, the first field group's " -"options will be used (the one with the lowest order number)" -msgstr "" -"Si plusieurs groupes ACF sont présents sur une page d‘édition, le groupe " -"portant le numéro le plus bas sera affiché en premier" - -#: includes/admin/views/acf-field-group/options.php:195 -msgid "Select items to hide them from the edit screen." -msgstr "" -"Sélectionnez les champs que vous souhaitez masquer sur la page " -"d‘édition." - -#: includes/admin/views/acf-field-group/options.php:194 -msgid "Hide on screen" -msgstr "Masquer" - -#: includes/admin/views/acf-field-group/options.php:186 -msgid "Send Trackbacks" -msgstr "Envoyer des rétroliens" - -#: includes/admin/post-types/admin-taxonomy.php:128 -#: includes/admin/views/acf-field-group/options.php:185 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:159 -#: assets/build/js/acf-internal-post-type.js:180 -#: assets/build/js/acf-internal-post-type.js:254 -msgid "Tags" -msgstr "Mots-clés" - -#: includes/admin/post-types/admin-taxonomy.php:130 -#: includes/admin/views/acf-field-group/options.php:184 -#: assets/build/js/acf-internal-post-type.js:183 -#: assets/build/js/acf-internal-post-type.js:257 -msgid "Categories" -msgstr "Catégories" - -#: includes/admin/views/acf-field-group/options.php:182 -#: includes/admin/views/acf-post-type/advanced-settings.php:28 -msgid "Page Attributes" -msgstr "Attributs de page" - -#: includes/admin/views/acf-field-group/options.php:181 -msgid "Format" -msgstr "Format" - -#: includes/admin/views/acf-field-group/options.php:180 -#: includes/admin/views/acf-post-type/advanced-settings.php:22 -msgid "Author" -msgstr "Auteur" - -#: includes/admin/views/acf-field-group/options.php:179 -msgid "Slug" -msgstr "Identifiant (slug)" - -#: includes/admin/views/acf-field-group/options.php:178 -#: includes/admin/views/acf-post-type/advanced-settings.php:27 -msgid "Revisions" -msgstr "Révisions" - -#: includes/acf-wp-functions.php:66 -#: includes/admin/views/acf-field-group/options.php:177 -#: includes/admin/views/acf-post-type/advanced-settings.php:23 -msgid "Comments" -msgstr "Commentaires" - -#: includes/admin/views/acf-field-group/options.php:176 -msgid "Discussion" -msgstr "Discussion" - -#: includes/admin/views/acf-field-group/options.php:174 -#: includes/admin/views/acf-post-type/advanced-settings.php:26 -msgid "Excerpt" -msgstr "Extrait" - -#: includes/admin/views/acf-field-group/options.php:173 -msgid "Content Editor" -msgstr "Éditeur de contenu" - -#: includes/admin/views/acf-field-group/options.php:172 -msgid "Permalink" -msgstr "Permalien" - -#: includes/admin/views/acf-field-group/options.php:250 -msgid "Shown in field group list" -msgstr "Affiché dans la liste des groupes de champs" - -#: includes/admin/views/acf-field-group/options.php:157 -msgid "Field groups with a lower order will appear first" -msgstr "" -"Le groupe de champs qui a l’ordre le plus petit sera affiché en premier" - -#: includes/admin/views/acf-field-group/options.php:156 -msgid "Order No." -msgstr "Ordre" - -#: includes/admin/views/acf-field-group/options.php:147 -msgid "Below fields" -msgstr "Sous les champs" - -#: includes/admin/views/acf-field-group/options.php:146 -msgid "Below labels" -msgstr "Sous les intitulés" - -#: includes/admin/views/acf-field-group/options.php:139 -msgid "Instruction Placement" -msgstr "" - -#: includes/admin/views/acf-field-group/options.php:122 -msgid "Label Placement" -msgstr "" - -#: includes/admin/views/acf-field-group/options.php:110 -msgid "Side" -msgstr "Sur le côté" - -#: includes/admin/views/acf-field-group/options.php:109 -msgid "Normal (after content)" -msgstr "Normal (après le contenu)" - -#: includes/admin/views/acf-field-group/options.php:108 -msgid "High (after title)" -msgstr "Haute (après le titre)" - -#: includes/admin/views/acf-field-group/options.php:101 -msgid "Position" -msgstr "Position" - -#: includes/admin/views/acf-field-group/options.php:92 -msgid "Seamless (no metabox)" -msgstr "Sans contour (directement dans la page)" - -#: includes/admin/views/acf-field-group/options.php:91 -msgid "Standard (WP metabox)" -msgstr "Standard (boîte WP)" - -#: includes/admin/views/acf-field-group/options.php:84 -msgid "Style" -msgstr "Style" - -#: includes/admin/views/acf-field-group/fields.php:55 -msgid "Type" -msgstr "Type" - -#: includes/admin/post-types/admin-field-groups.php:117 -#: includes/admin/post-types/admin-post-types.php:136 -#: includes/admin/post-types/admin-taxonomies.php:136 -#: includes/admin/views/acf-field-group/fields.php:54 -msgid "Key" -msgstr "Identifiant" - -#. translators: Hidden accessibility text for the positional order number of -#. the field. -#: includes/admin/views/acf-field-group/fields.php:48 -msgid "Order" -msgstr "Ordre" - -#: includes/admin/views/acf-field-group/field.php:322 -msgid "Close Field" -msgstr "Fermer le champ" - -#: includes/admin/views/acf-field-group/field.php:253 -msgid "id" -msgstr "id" - -#: includes/admin/views/acf-field-group/field.php:237 -msgid "class" -msgstr "classe" - -#: includes/admin/views/acf-field-group/field.php:279 -msgid "width" -msgstr "largeur" - -#: includes/admin/views/acf-field-group/field.php:273 -msgid "Wrapper Attributes" -msgstr "Attributs du conteneur" - -#: includes/admin/views/acf-field-group/field.php:196 -msgid "Required" -msgstr "" - -#: includes/admin/views/acf-field-group/field.php:221 -msgid "Instructions for authors. Shown when submitting data" -msgstr "Instructions pour les auteurs. Affichées lors de la saisie du contenu" - -#: includes/admin/views/acf-field-group/field.php:220 -msgid "Instructions" -msgstr "Instructions" - -#: includes/admin/views/acf-field-group/field.php:129 -msgid "Field Type" -msgstr "Type de champ" - -#: includes/admin/views/acf-field-group/field.php:170 -msgid "Single word, no spaces. Underscores and dashes allowed" -msgstr "Un seul mot, sans espace. Les « _ » et « - » sont autorisés" - -#: includes/admin/views/acf-field-group/field.php:169 -msgid "Field Name" -msgstr "Nom du champ" - -#: includes/admin/views/acf-field-group/field.php:157 -msgid "This is the name which will appear on the EDIT page" -msgstr "Ce nom apparaîtra sur la page d‘édition" - -#: includes/admin/views/acf-field-group/field.php:156 -#: includes/admin/views/browse-fields-modal.php:59 -msgid "Field Label" -msgstr "Titre du champ" - -#: includes/admin/views/acf-field-group/field.php:81 -msgid "Delete" -msgstr "Supprimer" - -#: includes/admin/views/acf-field-group/field.php:81 -msgid "Delete field" -msgstr "Supprimer ce champ" - -#: includes/admin/views/acf-field-group/field.php:79 -msgid "Move" -msgstr "Déplacer" - -#: includes/admin/views/acf-field-group/field.php:79 -msgid "Move field to another group" -msgstr "Déplacer le champ dans un autre groupe" - -#: includes/admin/views/acf-field-group/field.php:77 -msgid "Duplicate field" -msgstr "Dupliquer ce champ" - -#: includes/admin/views/acf-field-group/field.php:73 -#: includes/admin/views/acf-field-group/field.php:76 -msgid "Edit field" -msgstr "Modifier ce champ" - -#: includes/admin/views/acf-field-group/field.php:69 -msgid "Drag to reorder" -msgstr "Faites glisser pour réorganiser" - -#: includes/admin/post-types/admin-field-group.php:103 -#: includes/admin/views/acf-field-group/location-group.php:3 -#: assets/build/js/acf-field-group.js:2347 -#: assets/build/js/acf-field-group.js:2763 -msgid "Show this field group if" -msgstr "Montrer ce groupe si" - -#: includes/admin/views/upgrade/upgrade.php:94 -#: includes/ajax/class-acf-ajax-upgrade.php:34 -msgid "No updates available." -msgstr "Aucune mise-à-jour disponible." - -#: includes/admin/views/upgrade/upgrade.php:33 -msgid "Database upgrade complete. See what's new" -msgstr "" -"Mise à niveau de la base de données terminée. Consulter les " -"nouveautés" - -#: includes/admin/views/upgrade/upgrade.php:30 -msgid "Reading upgrade tasks..." -msgstr "Lecture des instructions de mise à niveau…" - -#: includes/admin/views/upgrade/network.php:165 -#: includes/admin/views/upgrade/upgrade.php:65 -msgid "Upgrade failed." -msgstr "Mise à niveau échouée." - -#: includes/admin/views/upgrade/network.php:162 -msgid "Upgrade complete." -msgstr "Mise à niveau terminée." - -#: includes/admin/views/upgrade/network.php:148 -#: includes/admin/views/upgrade/upgrade.php:31 -msgid "Upgrading data to version %s" -msgstr "Migration des données vers la version %s" - -#: includes/admin/views/upgrade/network.php:121 -#: includes/admin/views/upgrade/notice.php:44 -msgid "" -"It is strongly recommended that you backup your database before proceeding. " -"Are you sure you wish to run the updater now?" -msgstr "" -"Il est fortement recommandé de faire une sauvegarde de votre base de données " -"avant de continuer. Êtes-vous sûr de vouloir lancer la mise à niveau " -"maintenant?" - -#: includes/admin/views/upgrade/network.php:117 -msgid "Please select at least one site to upgrade." -msgstr "Merci de sélectionner au moins un site à mettre à niveau." - -#: includes/admin/views/upgrade/network.php:97 -msgid "" -"Database Upgrade complete. Return to network dashboard" -msgstr "" -"Mise à niveau de la base de données effectuée. Retourner au " -"panneau d'administration du réseau" - -#: includes/admin/views/upgrade/network.php:80 -msgid "Site is up to date" -msgstr "Le site est à jour" - -#: includes/admin/views/upgrade/network.php:78 -msgid "Site requires database upgrade from %1$s to %2$s" -msgstr "" - -#: includes/admin/views/upgrade/network.php:36 -#: includes/admin/views/upgrade/network.php:47 -msgid "Site" -msgstr "Site" - -#: includes/admin/views/upgrade/network.php:26 -#: includes/admin/views/upgrade/network.php:27 -#: includes/admin/views/upgrade/network.php:96 -msgid "Upgrade Sites" -msgstr "Mettre à niveau les sites" - -#: includes/admin/views/upgrade/network.php:26 -msgid "" -"The following sites require a DB upgrade. Check the ones you want to update " -"and then click %s." -msgstr "" -"Les sites suivants nécessites une mise à niveau de la base de données. " -"Sélectionnez ceux que vous voulez mettre à jour et cliquez sur %s." - -#: includes/admin/views/acf-field-group/conditional-logic.php:171 -#: includes/admin/views/acf-field-group/locations.php:38 -msgid "Add rule group" -msgstr "Ajouter une règle" - -#: includes/admin/views/acf-field-group/locations.php:10 -msgid "" -"Create a set of rules to determine which edit screens will use these " -"advanced custom fields" -msgstr "" -"Créez une série de règles pour déterminer les écrans sur lesquels ce groupe " -"de champs sera utilisé" - -#: includes/admin/views/acf-field-group/locations.php:9 -msgid "Rules" -msgstr "Règles" - -#: includes/admin/tools/class-acf-admin-tool-export.php:510 -msgid "Copied" -msgstr "Copié" - -#: includes/admin/tools/class-acf-admin-tool-export.php:486 -msgid "Copy to clipboard" -msgstr "Copier dans le presse-papiers" - -#: includes/admin/tools/class-acf-admin-tool-export.php:385 -msgid "" -"Select the items you would like to export and then select your export " -"method. Export As JSON to export to a .json file which you can then import " -"to another ACF installation. Generate PHP to export to PHP code which you " -"can place in your theme." -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:233 -msgid "Select Field Groups" -msgstr "Sélectionnez les groupes de champs" - -#: includes/admin/tools/class-acf-admin-tool-export.php:96 -#: includes/admin/tools/class-acf-admin-tool-export.php:131 -msgid "No field groups selected" -msgstr "Aucun groupe de champs sélectionné" - -#: includes/admin/tools/class-acf-admin-tool-export.php:39 -#: includes/admin/tools/class-acf-admin-tool-export.php:393 -#: includes/admin/tools/class-acf-admin-tool-export.php:421 -msgid "Generate PHP" -msgstr "Générer le PHP" - -#: includes/admin/tools/class-acf-admin-tool-export.php:35 -msgid "Export Field Groups" -msgstr "Exporter les groupes de champs" - -#: includes/admin/tools/class-acf-admin-tool-import.php:177 -msgid "Import file empty" -msgstr "Le fichier à importer est vide" - -#: includes/admin/tools/class-acf-admin-tool-import.php:168 -msgid "Incorrect file type" -msgstr "Type de fichier incorrect" - -#: includes/admin/tools/class-acf-admin-tool-import.php:163 -msgid "Error uploading file. Please try again" -msgstr "Échec de l'import du fichier. Merci d’essayer à nouveau" - -#: includes/admin/tools/class-acf-admin-tool-import.php:50 -msgid "" -"Select the Advanced Custom Fields JSON file you would like to import. When " -"you click the import button below, ACF will import the items in that file." -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:27 -msgid "Import Field Groups" -msgstr "Importer les groupes de champs" - -#: includes/admin/admin-internal-post-type-list.php:401 -msgid "Sync" -msgstr "Synchroniser" - -#: includes/admin/admin-internal-post-type-list.php:858 -msgid "Select %s" -msgstr "Choisir %s" - -#: includes/admin/admin-internal-post-type-list.php:442 -#: includes/admin/admin-internal-post-type-list.php:474 -#: includes/admin/views/acf-field-group/field.php:77 -msgid "Duplicate" -msgstr "Dupliquer" - -#: includes/admin/admin-internal-post-type-list.php:442 -msgid "Duplicate this item" -msgstr "Dupliquer cet élément" - -#: includes/admin/views/acf-post-type/advanced-settings.php:41 -msgid "Supports" -msgstr "" - -#: includes/admin/admin.php:261 includes/admin/views/browse-fields-modal.php:92 -msgid "Documentation" -msgstr "Documentation" - -#: includes/admin/post-types/admin-field-groups.php:116 -#: includes/admin/post-types/admin-post-types.php:135 -#: includes/admin/post-types/admin-taxonomies.php:135 -#: includes/admin/views/acf-field-group/options.php:249 -#: includes/admin/views/acf-post-type/advanced-settings.php:62 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:114 -#: includes/admin/views/upgrade/network.php:38 -#: includes/admin/views/upgrade/network.php:49 -msgid "Description" -msgstr "Description" - -#: includes/admin/admin-internal-post-type-list.php:398 -#: includes/admin/admin-internal-post-type-list.php:747 -msgid "Sync available" -msgstr "Synchronisation disponible" - -#. translators: %s number of field groups synchronized -#: includes/admin/post-types/admin-field-groups.php:381 -msgid "Field group synchronized." -msgid_plural "%s field groups synchronized." -msgstr[0] "" -msgstr[1] "" - -#. translators: %s number of field groups duplicated -#: includes/admin/post-types/admin-field-groups.php:374 -msgid "Field group duplicated." -msgid_plural "%s field groups duplicated." -msgstr[0] "Groupe de champs dupliqué." -msgstr[1] "%s groupes de champs dupliqués." - -#: includes/admin/admin-internal-post-type-list.php:137 -msgid "Active (%s)" -msgid_plural "Active (%s)" -msgstr[0] "Actif (%s)" -msgstr[1] "Actifs (%s)" - -#: includes/admin/admin-upgrade.php:254 -msgid "Review sites & upgrade" -msgstr "Examiner les sites et mettre à niveau" - -#: includes/admin/admin-upgrade.php:59 includes/admin/admin-upgrade.php:93 -#: includes/admin/admin-upgrade.php:94 includes/admin/admin-upgrade.php:230 -#: includes/admin/views/upgrade/network.php:24 -#: includes/admin/views/upgrade/upgrade.php:26 -msgid "Upgrade Database" -msgstr "Mise à niveau de la base de données" - -#: includes/admin/views/acf-field-group/options.php:175 -#: includes/admin/views/acf-post-type/advanced-settings.php:30 -msgid "Custom Fields" -msgstr "ACF" - -#: includes/admin/post-types/admin-field-group.php:616 -msgid "Move Field" -msgstr "Déplacer le champ" - -#: includes/admin/post-types/admin-field-group.php:605 -#: includes/admin/post-types/admin-field-group.php:609 -msgid "Please select the destination for this field" -msgstr "Choisissez la destination de ce champ" - -#. translators: Confirmation message once a field has been moved to a different -#. field group. -#: includes/admin/post-types/admin-field-group.php:567 -msgid "The %1$s field can now be found in the %2$s field group" -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:564 -msgid "Move Complete." -msgstr "Déplacement effectué." - -#: includes/admin/views/acf-field-group/field.php:39 -#: includes/admin/views/acf-field-group/options.php:217 -#: includes/admin/views/acf-post-type/advanced-settings.php:78 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:130 -msgid "Active" -msgstr "Activé" - -#: includes/admin/post-types/admin-field-group.php:266 -msgid "Field Keys" -msgstr "Identifiants des champs" - -#: includes/admin/post-types/admin-field-group.php:164 -#: includes/admin/tools/class-acf-admin-tool-export.php:342 -msgid "Settings" -msgstr "Réglages" - -#: includes/admin/post-types/admin-field-groups.php:118 -msgid "Location" -msgstr "Emplacement" - -#: includes/admin/post-types/admin-field-group.php:104 -#: assets/build/js/acf-input.js:983 assets/build/js/acf-input.js:1075 -msgid "Null" -msgstr "Vide" - -#: includes/admin/post-types/admin-field-group.php:101 -#: includes/class-acf-internal-post-type.php:730 -#: includes/post-types/class-acf-field-group.php:345 -#: assets/build/js/acf-field-group.js:1510 -#: assets/build/js/acf-field-group.js:1821 -msgid "copy" -msgstr "copie" - -#: includes/admin/post-types/admin-field-group.php:100 -#: assets/build/js/acf-field-group.js:623 -#: assets/build/js/acf-field-group.js:778 -msgid "(this field)" -msgstr "(ce champ)" - -#: includes/admin/post-types/admin-field-group.php:98 -#: assets/build/js/acf-input.js:918 assets/build/js/acf-input.js:943 -#: assets/build/js/acf-input.js:1002 assets/build/js/acf-input.js:1030 -msgid "Checked" -msgstr "Coché" - -#: includes/admin/post-types/admin-field-group.php:94 -#: assets/build/js/acf-field-group.js:1615 -#: assets/build/js/acf-field-group.js:1933 -msgid "Move Custom Field" -msgstr "Déplacer le champ personnalisé" - -#: includes/admin/post-types/admin-field-group.php:93 -#: assets/build/js/acf-field-group.js:649 -#: assets/build/js/acf-field-group.js:804 -msgid "No toggle fields available" -msgstr "Aucun champ de sélection disponible" - -#: includes/admin/post-types/admin-field-group.php:91 -msgid "Field group title is required" -msgstr "Veuillez indiquer un titre pour le groupe de champs" - -#: includes/admin/post-types/admin-field-group.php:90 -#: assets/build/js/acf-field-group.js:1604 -#: assets/build/js/acf-field-group.js:1919 -msgid "This field cannot be moved until its changes have been saved" -msgstr "" -"Ce champ ne peut pas être déplacé tant que ses modifications n'ont pas été " -"enregistrées" - -#: includes/admin/post-types/admin-field-group.php:89 -#: assets/build/js/acf-field-group.js:1414 -#: assets/build/js/acf-field-group.js:1716 -msgid "The string \"field_\" may not be used at the start of a field name" -msgstr "Le nom d’un champ ne peut pas commencer par « field_ »" - -#: includes/admin/post-types/admin-field-group.php:71 -msgid "Field group draft updated." -msgstr "Brouillon du groupe de champs mis à jour." - -#: includes/admin/post-types/admin-field-group.php:70 -msgid "Field group scheduled for." -msgstr "Groupe de champs programmé." - -#: includes/admin/post-types/admin-field-group.php:69 -msgid "Field group submitted." -msgstr "Groupe de champs enregistré." - -#: includes/admin/post-types/admin-field-group.php:68 -msgid "Field group saved." -msgstr "Groupe de champs enregistré." - -#: includes/admin/post-types/admin-field-group.php:67 -msgid "Field group published." -msgstr "Groupe de champs publié." - -#: includes/admin/post-types/admin-field-group.php:64 -msgid "Field group deleted." -msgstr "Groupe de champs supprimé." - -#: includes/admin/post-types/admin-field-group.php:62 -#: includes/admin/post-types/admin-field-group.php:63 -#: includes/admin/post-types/admin-field-group.php:65 -msgid "Field group updated." -msgstr "Groupe de champs mis à jour." - -#: includes/admin/admin-tools.php:118 -#: includes/admin/views/global/navigation.php:246 -#: includes/admin/views/tools/tools.php:21 -msgid "Tools" -msgstr "Outils" - -#: includes/locations/abstract-acf-location.php:106 -msgid "is not equal to" -msgstr "n‘est pas égal à" - -#: includes/locations/abstract-acf-location.php:105 -msgid "is equal to" -msgstr "est égal à" - -#: includes/locations.php:102 -msgid "Forms" -msgstr "Formulaires" - -#: includes/admin/post-types/admin-post-type.php:127 includes/locations.php:100 -#: includes/locations/class-acf-location-page.php:22 -#: assets/build/js/acf-internal-post-type.js:175 -#: assets/build/js/acf-internal-post-type.js:249 -msgid "Page" -msgstr "Page" - -#: includes/admin/post-types/admin-post-type.php:125 includes/locations.php:99 -#: includes/locations/class-acf-location-post.php:22 -#: assets/build/js/acf-internal-post-type.js:172 -#: assets/build/js/acf-internal-post-type.js:246 -msgid "Post" -msgstr "Article" - -#: includes/fields.php:354 -msgid "Relational" -msgstr "Relationnel" - -#: includes/fields.php:353 -msgid "Choice" -msgstr "Choix" - -#: includes/fields.php:351 -msgid "Basic" -msgstr "Commun" - -#: includes/fields.php:320 -msgid "Unknown" -msgstr "Inconnu" - -#: includes/fields.php:320 -msgid "Field type does not exist" -msgstr "Ce type de champ n‘existe pas" - -#: includes/forms/form-front.php:236 -msgid "Spam Detected" -msgstr "Pourriel repéré" - -#: includes/forms/form-front.php:107 -msgid "Post updated" -msgstr "Article mis à jour" - -#: includes/forms/form-front.php:106 -msgid "Update" -msgstr "Mise à jour" - -#: includes/forms/form-front.php:57 -msgid "Validate Email" -msgstr "Valider l’adresse courriel" - -#: includes/fields.php:352 includes/forms/form-front.php:49 -msgid "Content" -msgstr "Contenu" - -#: includes/admin/views/acf-post-type/advanced-settings.php:21 -#: includes/forms/form-front.php:40 -msgid "Title" -msgstr "Titre" - -#: includes/assets.php:372 includes/forms/form-comment.php:160 -#: assets/build/js/acf-input.js:7382 assets/build/js/acf-input.js:7968 -msgid "Edit field group" -msgstr "Modifier le groupe de champs" - -#: includes/admin/post-types/admin-field-group.php:117 -#: assets/build/js/acf-input.js:1125 assets/build/js/acf-input.js:1230 -msgid "Selection is less than" -msgstr "La sélection est inférieure à" - -#: includes/admin/post-types/admin-field-group.php:116 -#: assets/build/js/acf-input.js:1106 assets/build/js/acf-input.js:1202 -msgid "Selection is greater than" -msgstr "La sélection est supérieure à" - -#: includes/admin/post-types/admin-field-group.php:115 -#: assets/build/js/acf-input.js:1075 assets/build/js/acf-input.js:1170 -msgid "Value is less than" -msgstr "La valeur est inférieure à" - -#: includes/admin/post-types/admin-field-group.php:114 -#: assets/build/js/acf-input.js:1045 assets/build/js/acf-input.js:1139 -msgid "Value is greater than" -msgstr "La valeur est supérieure à" - -#: includes/admin/post-types/admin-field-group.php:113 -#: assets/build/js/acf-input.js:888 assets/build/js/acf-input.js:960 -msgid "Value contains" -msgstr "La valeur contient" - -#: includes/admin/post-types/admin-field-group.php:112 -#: assets/build/js/acf-input.js:862 assets/build/js/acf-input.js:926 -msgid "Value matches pattern" -msgstr "La valeur correspond au modèle" - -#: includes/admin/post-types/admin-field-group.php:111 -#: assets/build/js/acf-input.js:840 assets/build/js/acf-input.js:1023 -#: assets/build/js/acf-input.js:903 assets/build/js/acf-input.js:1116 -msgid "Value is not equal to" -msgstr "La valeur est différente de" - -#: includes/admin/post-types/admin-field-group.php:110 -#: assets/build/js/acf-input.js:810 assets/build/js/acf-input.js:964 -#: assets/build/js/acf-input.js:864 assets/build/js/acf-input.js:1053 -msgid "Value is equal to" -msgstr "La valeur est égale à" - -#: includes/admin/post-types/admin-field-group.php:109 -#: assets/build/js/acf-input.js:788 assets/build/js/acf-input.js:841 -msgid "Has no value" -msgstr "N'a pas de valeur" - -#: includes/admin/post-types/admin-field-group.php:108 -#: assets/build/js/acf-input.js:758 assets/build/js/acf-input.js:783 -msgid "Has any value" -msgstr "A n'importe quelle valeur" - -#: includes/admin/admin-internal-post-type.php:345 -#: includes/admin/views/browse-fields-modal.php:62 includes/assets.php:353 -#: assets/build/js/acf.js:1564 assets/build/js/acf.js:1658 -msgid "Cancel" -msgstr "Annuler" - -#: includes/assets.php:349 assets/build/js/acf.js:1738 -#: assets/build/js/acf.js:1855 -msgid "Are you sure?" -msgstr "Êtes-vous sûr(e)?" - -#: includes/assets.php:369 assets/build/js/acf-input.js:9442 -#: assets/build/js/acf-input.js:10294 -msgid "%d fields require attention" -msgstr "%d champs requièrent votre attention" - -#: includes/assets.php:368 assets/build/js/acf-input.js:9440 -#: assets/build/js/acf-input.js:10290 -msgid "1 field requires attention" -msgstr "1 champ requiert votre attention" - -#: includes/assets.php:367 includes/validation.php:288 -#: includes/validation.php:298 assets/build/js/acf-input.js:9435 -#: assets/build/js/acf-input.js:10285 -msgid "Validation failed" -msgstr "Échec de la validation" - -#: includes/assets.php:366 assets/build/js/acf-input.js:9603 -#: assets/build/js/acf-input.js:10473 -msgid "Validation successful" -msgstr "Validé avec succès" - -#: includes/media.php:54 assets/build/js/acf-input.js:7210 -#: assets/build/js/acf-input.js:7772 -msgid "Restricted" -msgstr "Limité" - -#: includes/media.php:53 assets/build/js/acf-input.js:7025 -#: assets/build/js/acf-input.js:7536 -msgid "Collapse Details" -msgstr "Masquer les détails" - -#: includes/media.php:52 assets/build/js/acf-input.js:7025 -#: assets/build/js/acf-input.js:7533 -msgid "Expand Details" -msgstr "Afficher les détails" - -#: includes/admin/views/acf-post-type/advanced-settings.php:465 -#: includes/media.php:51 assets/build/js/acf-input.js:6892 -#: assets/build/js/acf-input.js:7381 -msgid "Uploaded to this post" -msgstr "Lié(s) à cet article" - -#: includes/media.php:50 assets/build/js/acf-input.js:6931 -#: assets/build/js/acf-input.js:7420 -msgctxt "verb" -msgid "Update" -msgstr "Mettre à jour" - -#: includes/media.php:49 -msgctxt "verb" -msgid "Edit" -msgstr "Modifier" - -#: includes/assets.php:363 assets/build/js/acf-input.js:9212 -#: assets/build/js/acf-input.js:10056 -msgid "The changes you made will be lost if you navigate away from this page" -msgstr "Les modifications seront perdues si vous quittez cette page" - -#: includes/api/api-helpers.php:3395 -msgid "File type must be %s." -msgstr "Le type de fichier doit être %s." - -#: includes/admin/post-types/admin-field-group.php:102 -#: includes/admin/views/acf-field-group/conditional-logic.php:59 -#: includes/admin/views/acf-field-group/conditional-logic.php:169 -#: includes/admin/views/acf-field-group/location-group.php:3 -#: includes/admin/views/acf-field-group/locations.php:36 -#: includes/api/api-helpers.php:3391 assets/build/js/acf-field-group.js:771 -#: assets/build/js/acf-field-group.js:2385 -#: assets/build/js/acf-field-group.js:933 -#: assets/build/js/acf-field-group.js:2807 -msgid "or" -msgstr "ou" - -#: includes/api/api-helpers.php:3364 -msgid "File size must not exceed %s." -msgstr "Le poids de l'image ne doit pas dépasser %s." - -#: includes/api/api-helpers.php:3359 -msgid "File size must be at least %s." -msgstr "Le poids de l'image doit être d'au moins %s." - -#: includes/api/api-helpers.php:3344 -msgid "Image height must not exceed %dpx." -msgstr "L'image ne doit pas dépasser %dpx de hauteur." - -#: includes/api/api-helpers.php:3339 -msgid "Image height must be at least %dpx." -msgstr "L'image doit mesurer au moins %dpx de hauteur." - -#: includes/api/api-helpers.php:3325 -msgid "Image width must not exceed %dpx." -msgstr "L'image ne doit pas dépasser %dpx de largeur." - -#: includes/api/api-helpers.php:3320 -msgid "Image width must be at least %dpx." -msgstr "L'image doit mesurer au moins %dpx de largeur." - -#: includes/api/api-helpers.php:1561 includes/api/api-term.php:147 -msgid "(no title)" -msgstr "(sans titre)" - -#: includes/api/api-helpers.php:853 -msgid "Full Size" -msgstr "Taille originale" - -#: includes/api/api-helpers.php:812 -msgid "Large" -msgstr "Grande" - -#: includes/api/api-helpers.php:811 -msgid "Medium" -msgstr "Moyen" - -#: includes/api/api-helpers.php:810 -msgid "Thumbnail" -msgstr "Miniature" - -#: includes/acf-field-functions.php:854 -#: includes/admin/post-types/admin-field-group.php:99 -#: assets/build/js/acf-field-group.js:1077 -#: assets/build/js/acf-field-group.js:1260 -msgid "(no label)" -msgstr "(aucun libellé)" - -#: includes/fields/class-acf-field-textarea.php:145 -msgid "Sets the textarea height" -msgstr "Hauteur du champ" - -#: includes/fields/class-acf-field-textarea.php:144 -msgid "Rows" -msgstr "Lignes" - -#: includes/fields/class-acf-field-textarea.php:25 -msgid "Text Area" -msgstr "Zone de texte" - -#: includes/fields/class-acf-field-checkbox.php:451 -msgid "Prepend an extra checkbox to toggle all choices" -msgstr "" -"Ajouter une case à cocher au début pour tout sélectionner/désélectionner" - -#: includes/fields/class-acf-field-checkbox.php:413 -msgid "Save 'custom' values to the field's choices" -msgstr "Enregistrer les valeurs personnalisées dans les choix du champs" - -#: includes/fields/class-acf-field-checkbox.php:402 -msgid "Allow 'custom' values to be added" -msgstr "Permettre l’ajout de valeurs personnalisées" - -#: includes/fields/class-acf-field-checkbox.php:38 -msgid "Add new choice" -msgstr "Ajouter un choix" - -#: includes/fields/class-acf-field-checkbox.php:174 -msgid "Toggle All" -msgstr "Tout (dé)sélectionner" - -#: includes/fields/class-acf-field-page_link.php:506 -msgid "Allow Archives URLs" -msgstr "Afficher les pages d’archives" - -#: includes/fields/class-acf-field-page_link.php:179 -msgid "Archives" -msgstr "Archives" - -#: includes/fields/class-acf-field-page_link.php:25 -msgid "Page Link" -msgstr "Lien vers page ou article" - -#: includes/fields/class-acf-field-taxonomy.php:943 -#: includes/locations/class-acf-location-user-form.php:72 -msgid "Add" -msgstr "Ajouter" - -#: includes/admin/views/acf-field-group/fields.php:53 -#: includes/fields/class-acf-field-taxonomy.php:908 -msgid "Name" -msgstr "Nom" - -#: includes/fields/class-acf-field-taxonomy.php:892 -msgid "%s added" -msgstr "%s ajouté" - -#: includes/fields/class-acf-field-taxonomy.php:856 -msgid "%s already exists" -msgstr "%s existe déjà" - -#: includes/fields/class-acf-field-taxonomy.php:844 -msgid "User unable to add new %s" -msgstr "Utilisateur incapable d'ajouter un nouveau %s" - -#: includes/fields/class-acf-field-taxonomy.php:742 -msgid "Term ID" -msgstr "ID du terme" - -#: includes/fields/class-acf-field-taxonomy.php:741 -msgid "Term Object" -msgstr "Objet Terme" - -#: includes/fields/class-acf-field-taxonomy.php:726 -msgid "Load value from posts terms" -msgstr "Charger une valeur depuis les termes de l’article" - -#: includes/fields/class-acf-field-taxonomy.php:725 -msgid "Load Terms" -msgstr "Charger les termes" - -#: includes/fields/class-acf-field-taxonomy.php:715 -msgid "Connect selected terms to the post" -msgstr "Lier les termes sélectionnés à l'article" - -#: includes/fields/class-acf-field-taxonomy.php:714 -msgid "Save Terms" -msgstr "Enregistrer les termes" - -#: includes/fields/class-acf-field-taxonomy.php:704 -msgid "Allow new terms to be created whilst editing" -msgstr "Autoriser la création de nouveaux termes pendant l'édition" - -#: includes/fields/class-acf-field-taxonomy.php:703 -msgid "Create Terms" -msgstr "Créer des termes" - -#: includes/fields/class-acf-field-taxonomy.php:762 -msgid "Radio Buttons" -msgstr "Boutons radio" - -#: includes/fields/class-acf-field-taxonomy.php:761 -msgid "Single Value" -msgstr "Valeur unique" - -#: includes/fields/class-acf-field-taxonomy.php:759 -msgid "Multi Select" -msgstr "Sélecteur multiple" - -#: includes/fields/class-acf-field-checkbox.php:25 -#: includes/fields/class-acf-field-taxonomy.php:758 -msgid "Checkbox" -msgstr "Case à cocher" - -#: includes/fields/class-acf-field-taxonomy.php:757 -msgid "Multiple Values" -msgstr "Valeurs multiples" - -#: includes/fields/class-acf-field-taxonomy.php:752 -msgid "Select the appearance of this field" -msgstr "Apparence de ce champ" - -#: includes/fields/class-acf-field-taxonomy.php:751 -msgid "Appearance" -msgstr "Apparence" - -#: includes/fields/class-acf-field-taxonomy.php:693 -msgid "Select the taxonomy to be displayed" -msgstr "Choisissez la taxonomie à afficher" - -#: includes/fields/class-acf-field-taxonomy.php:654 -msgctxt "No Terms" -msgid "No %s" -msgstr "" - -#: includes/fields/class-acf-field-number.php:266 -msgid "Value must be equal to or lower than %d" -msgstr "La valeur doit être inférieure ou égale à %d" - -#: includes/fields/class-acf-field-number.php:259 -msgid "Value must be equal to or higher than %d" -msgstr "La valeur doit être être supérieure ou égale à %d" - -#: includes/fields/class-acf-field-number.php:244 -msgid "Value must be a number" -msgstr "La valeur doit être un nombre" - -#: includes/fields/class-acf-field-number.php:25 -msgid "Number" -msgstr "Nombre" - -#: includes/fields/class-acf-field-radio.php:264 -msgid "Save 'other' values to the field's choices" -msgstr "Enregistrer les valeurs personnalisées « autre » en tant que choix" - -#: includes/fields/class-acf-field-radio.php:253 -msgid "Add 'other' choice to allow for custom values" -msgstr "Ajouter un choix « autre » pour autoriser une valeur personnalisée" - -#: includes/admin/views/global/navigation.php:196 -msgid "Other" -msgstr "Autre" - -#: includes/fields/class-acf-field-radio.php:25 -msgid "Radio Button" -msgstr "Bouton radio" - -#: includes/fields/class-acf-field-accordion.php:107 -msgid "" -"Define an endpoint for the previous accordion to stop. This accordion will " -"not be visible." -msgstr "" -"Définir comme extrémité de l’accordéon précédent. Cet accordéon ne sera pas " -"visible." - -#: includes/fields/class-acf-field-accordion.php:96 -msgid "Allow this accordion to open without closing others." -msgstr "Permettre à cet accordéon de s'ouvrir sans refermer les autres." - -#: includes/fields/class-acf-field-accordion.php:95 -msgid "Multi-Expand" -msgstr "" - -#: includes/fields/class-acf-field-accordion.php:85 -msgid "Display this accordion as open on page load." -msgstr "Ouvrir l'accordéon au chargement de la page." - -#: includes/fields/class-acf-field-accordion.php:84 -msgid "Open" -msgstr "Ouvert" - -#: includes/fields/class-acf-field-accordion.php:25 -msgid "Accordion" -msgstr "Accordéon" - -#: includes/fields/class-acf-field-file.php:267 -#: includes/fields/class-acf-field-file.php:279 -msgid "Restrict which files can be uploaded" -msgstr "Restreindre l'import de fichiers" - -#: includes/fields/class-acf-field-file.php:220 -msgid "File ID" -msgstr "ID du Fichier" - -#: includes/fields/class-acf-field-file.php:219 -msgid "File URL" -msgstr "URL du fichier" - -#: includes/fields/class-acf-field-file.php:218 -msgid "File Array" -msgstr "Données du fichier (tableau)" - -#: includes/fields/class-acf-field-file.php:186 -msgid "Add File" -msgstr "Ajouter un fichier" - -#: includes/admin/tools/class-acf-admin-tool-import.php:156 -#: includes/fields/class-acf-field-file.php:186 -msgid "No file selected" -msgstr "Aucun fichier sélectionné" - -#: includes/fields/class-acf-field-file.php:150 -msgid "File name" -msgstr "Nom du fichier" - -#: includes/fields/class-acf-field-file.php:63 -#: assets/build/js/acf-input.js:2474 assets/build/js/acf-input.js:2625 -msgid "Update File" -msgstr "Mettre à jour le fichier" - -#: includes/fields/class-acf-field-file.php:62 -#: assets/build/js/acf-input.js:2473 assets/build/js/acf-input.js:2624 -msgid "Edit File" -msgstr "Modifier le fichier" - -#: includes/admin/tools/class-acf-admin-tool-import.php:58 -#: includes/fields/class-acf-field-file.php:61 -#: assets/build/js/acf-input.js:2447 assets/build/js/acf-input.js:2597 -msgid "Select File" -msgstr "Sélectionner un fichier" - -#: includes/fields/class-acf-field-file.php:25 -msgid "File" -msgstr "Fichier" - -#: includes/fields/class-acf-field-password.php:25 -msgid "Password" -msgstr "Mot de passe" - -#: includes/fields/class-acf-field-select.php:392 -msgid "Specify the value returned" -msgstr "Définit la valeur retournée" - -#: includes/fields/class-acf-field-select.php:461 -msgid "Use AJAX to lazy load choices?" -msgstr "Utiliser AJAX pour charger les choix dynamiquement?" - -#: includes/fields/class-acf-field-checkbox.php:362 -#: includes/fields/class-acf-field-select.php:381 -msgid "Enter each default value on a new line" -msgstr "Entrez chaque valeur par défaut sur une nouvelle ligne" - -#: includes/fields/class-acf-field-select.php:252 includes/media.php:48 -#: assets/build/js/acf-input.js:6790 assets/build/js/acf-input.js:7266 -msgctxt "verb" -msgid "Select" -msgstr "Choisir" - -#: includes/fields/class-acf-field-select.php:121 -msgctxt "Select2 JS load_fail" -msgid "Loading failed" -msgstr "Échec du chargement" - -#: includes/fields/class-acf-field-select.php:120 -msgctxt "Select2 JS searching" -msgid "Searching…" -msgstr "Recherche en cours…" - -#: includes/fields/class-acf-field-select.php:119 -msgctxt "Select2 JS load_more" -msgid "Loading more results…" -msgstr "Chargement de résultats supplémentaires…" - -#: includes/fields/class-acf-field-select.php:118 -msgctxt "Select2 JS selection_too_long_n" -msgid "You can only select %d items" -msgstr "Vous ne pouvez sélectionner que %d éléments" - -#: includes/fields/class-acf-field-select.php:117 -msgctxt "Select2 JS selection_too_long_1" -msgid "You can only select 1 item" -msgstr "Vous ne pouvez sélectionner qu’un seul élément" - -#: includes/fields/class-acf-field-select.php:116 -msgctxt "Select2 JS input_too_long_n" -msgid "Please delete %d characters" -msgstr "Veuillez retirer %d caractères" - -#: includes/fields/class-acf-field-select.php:115 -msgctxt "Select2 JS input_too_long_1" -msgid "Please delete 1 character" -msgstr "Veuillez retirer 1 caractère" - -#: includes/fields/class-acf-field-select.php:114 -msgctxt "Select2 JS input_too_short_n" -msgid "Please enter %d or more characters" -msgstr "Veuillez saisir au minimum %d caractères" - -#: includes/fields/class-acf-field-select.php:113 -msgctxt "Select2 JS input_too_short_1" -msgid "Please enter 1 or more characters" -msgstr "Veuillez saisir au minimum 1 caractère" - -#: includes/fields/class-acf-field-select.php:112 -msgctxt "Select2 JS matches_0" -msgid "No matches found" -msgstr "Aucun résultat trouvé" - -#: includes/fields/class-acf-field-select.php:111 -msgctxt "Select2 JS matches_n" -msgid "%d results are available, use up and down arrow keys to navigate." -msgstr "" -"%d résultats sont disponibles, utilisez les flèches haut et bas pour " -"naviguer parmi les résultats." - -#: includes/fields/class-acf-field-select.php:110 -msgctxt "Select2 JS matches_1" -msgid "One result is available, press enter to select it." -msgstr "Un résultat est disponible, appuyez sur Entrée pour le sélectionner." - -#: includes/fields/class-acf-field-select.php:25 -#: includes/fields/class-acf-field-taxonomy.php:763 -msgctxt "noun" -msgid "Select" -msgstr "Sélection" - -#: includes/fields/class-acf-field-user.php:73 -msgid "User ID" -msgstr "ID de l'utilisateur" - -#: includes/fields/class-acf-field-user.php:72 -msgid "User Object" -msgstr "Objet" - -#: includes/fields/class-acf-field-user.php:71 -msgid "User Array" -msgstr "Tableau" - -#: includes/fields/class-acf-field-user.php:59 -msgid "All user roles" -msgstr "Tous les rôles utilisateurs" - -#: includes/fields/class-acf-field-user.php:51 -msgid "Filter by Role" -msgstr "" - -#: includes/fields/class-acf-field-user.php:15 includes/locations.php:101 -msgid "User" -msgstr "Utilisateur" - -#: includes/fields/class-acf-field-separator.php:25 -msgid "Separator" -msgstr "Séparateur" - -#: includes/fields/class-acf-field-color_picker.php:75 -msgid "Select Color" -msgstr "Choisir une couleur" - -#: includes/admin/post-types/admin-post-type.php:129 -#: includes/admin/post-types/admin-taxonomy.php:131 -#: includes/fields/class-acf-field-color_picker.php:73 -#: assets/build/js/acf-internal-post-type.js:72 -#: assets/build/js/acf-internal-post-type.js:86 -msgid "Default" -msgstr "Valeur par défaut" - -#: includes/admin/views/acf-post-type/advanced-settings.php:89 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:141 -#: includes/fields/class-acf-field-color_picker.php:71 -msgid "Clear" -msgstr "Effacer" - -#: includes/fields/class-acf-field-color_picker.php:25 -msgid "Color Picker" -msgstr "Sélecteur de couleur" - -#: includes/fields/class-acf-field-date_time_picker.php:88 -msgctxt "Date Time Picker JS pmTextShort" -msgid "P" -msgstr "P" - -#: includes/fields/class-acf-field-date_time_picker.php:87 -msgctxt "Date Time Picker JS pmText" -msgid "PM" -msgstr "PM" - -#: includes/fields/class-acf-field-date_time_picker.php:84 -msgctxt "Date Time Picker JS amTextShort" -msgid "A" -msgstr "A" - -#: includes/fields/class-acf-field-date_time_picker.php:83 -msgctxt "Date Time Picker JS amText" -msgid "AM" -msgstr "AM" - -#: includes/fields/class-acf-field-date_time_picker.php:81 -msgctxt "Date Time Picker JS selectText" -msgid "Select" -msgstr "Sélectionner" - -#: includes/fields/class-acf-field-date_time_picker.php:80 -msgctxt "Date Time Picker JS closeText" -msgid "Done" -msgstr "Valider" - -#: includes/fields/class-acf-field-date_time_picker.php:79 -msgctxt "Date Time Picker JS currentText" -msgid "Now" -msgstr "Maintenant" - -#: includes/fields/class-acf-field-date_time_picker.php:78 -msgctxt "Date Time Picker JS timezoneText" -msgid "Time Zone" -msgstr "Fuseau horaire" - -#: includes/fields/class-acf-field-date_time_picker.php:77 -msgctxt "Date Time Picker JS microsecText" -msgid "Microsecond" -msgstr "Microseconde" - -#: includes/fields/class-acf-field-date_time_picker.php:76 -msgctxt "Date Time Picker JS millisecText" -msgid "Millisecond" -msgstr "Milliseconde" - -#: includes/fields/class-acf-field-date_time_picker.php:75 -msgctxt "Date Time Picker JS secondText" -msgid "Second" -msgstr "Seconde" - -#: includes/fields/class-acf-field-date_time_picker.php:74 -msgctxt "Date Time Picker JS minuteText" -msgid "Minute" -msgstr "Minute" - -#: includes/fields/class-acf-field-date_time_picker.php:73 -msgctxt "Date Time Picker JS hourText" -msgid "Hour" -msgstr "Heure" - -#: includes/fields/class-acf-field-date_time_picker.php:72 -msgctxt "Date Time Picker JS timeText" -msgid "Time" -msgstr "Heure" - -#: includes/fields/class-acf-field-date_time_picker.php:71 -msgctxt "Date Time Picker JS timeOnlyTitle" -msgid "Choose Time" -msgstr "Choisir l’heure" - -#: includes/fields/class-acf-field-date_time_picker.php:25 -msgid "Date Time Picker" -msgstr "Sélecteur de date et heure" - -#: includes/fields/class-acf-field-accordion.php:106 -msgid "Endpoint" -msgstr "Extrémité" - -#: includes/admin/views/acf-field-group/options.php:130 -#: includes/fields/class-acf-field-tab.php:115 -msgid "Left aligned" -msgstr "Aligné à gauche" - -#: includes/admin/views/acf-field-group/options.php:129 -#: includes/fields/class-acf-field-tab.php:114 -msgid "Top aligned" -msgstr "Aligné en haut" - -#: includes/fields/class-acf-field-tab.php:110 -msgid "Placement" -msgstr "Emplacement" - -#: includes/fields/class-acf-field-tab.php:26 -msgid "Tab" -msgstr "Onglet" - -#: includes/fields/class-acf-field-url.php:162 -msgid "Value must be a valid URL" -msgstr "La valeur doit être une URL valide" - -#: includes/fields/class-acf-field-link.php:177 -msgid "Link URL" -msgstr "URL du Lien" - -#: includes/fields/class-acf-field-link.php:176 -msgid "Link Array" -msgstr "Tableau de données" - -#: includes/fields/class-acf-field-link.php:145 -msgid "Opens in a new window/tab" -msgstr "Ouvrir dans un nouvel onglet/fenêtre" - -#: includes/fields/class-acf-field-link.php:140 -msgid "Select Link" -msgstr "Sélectionner un lien" - -#: includes/fields/class-acf-field-link.php:25 -msgid "Link" -msgstr "Lien" - -#: includes/fields/class-acf-field-email.php:25 -msgid "Email" -msgstr "Adresse courriel" - -#: includes/fields/class-acf-field-number.php:188 -#: includes/fields/class-acf-field-range.php:217 -msgid "Step Size" -msgstr "Pas" - -#: includes/fields/class-acf-field-number.php:158 -#: includes/fields/class-acf-field-range.php:195 -msgid "Maximum Value" -msgstr "Valeur maximale" - -#: includes/fields/class-acf-field-number.php:148 -#: includes/fields/class-acf-field-range.php:184 -msgid "Minimum Value" -msgstr "Valeur minimale" - -#: includes/fields/class-acf-field-range.php:25 -msgid "Range" -msgstr "Plage de valeurs" - -#: includes/fields/class-acf-field-button-group.php:175 -#: includes/fields/class-acf-field-checkbox.php:379 -#: includes/fields/class-acf-field-radio.php:220 -#: includes/fields/class-acf-field-select.php:399 -msgid "Both (Array)" -msgstr "Les deux (tableau)" - -#: includes/admin/views/acf-field-group/fields.php:52 -#: includes/fields/class-acf-field-button-group.php:174 -#: includes/fields/class-acf-field-checkbox.php:378 -#: includes/fields/class-acf-field-radio.php:219 -#: includes/fields/class-acf-field-select.php:398 -msgid "Label" -msgstr "Libellé" - -#: includes/fields/class-acf-field-button-group.php:173 -#: includes/fields/class-acf-field-checkbox.php:377 -#: includes/fields/class-acf-field-radio.php:218 -#: includes/fields/class-acf-field-select.php:397 -msgid "Value" -msgstr "Valeur" - -#: includes/fields/class-acf-field-button-group.php:222 -#: includes/fields/class-acf-field-checkbox.php:441 -#: includes/fields/class-acf-field-radio.php:292 -msgid "Vertical" -msgstr "Vertical" - -#: includes/fields/class-acf-field-button-group.php:221 -#: includes/fields/class-acf-field-checkbox.php:442 -#: includes/fields/class-acf-field-radio.php:293 -msgid "Horizontal" -msgstr "Horizontal" - -#: includes/fields/class-acf-field-button-group.php:148 -#: includes/fields/class-acf-field-checkbox.php:352 -#: includes/fields/class-acf-field-radio.php:193 -#: includes/fields/class-acf-field-select.php:370 -msgid "red : Red" -msgstr "rouge : Rouge" - -#: includes/fields/class-acf-field-button-group.php:148 -#: includes/fields/class-acf-field-checkbox.php:352 -#: includes/fields/class-acf-field-radio.php:193 -#: includes/fields/class-acf-field-select.php:370 -msgid "For more control, you may specify both a value and label like this:" -msgstr "" -"Pour plus de contrôle, vous pouvez spécifier la valeur et le libellé de " -"cette manière :" - -#: includes/fields/class-acf-field-button-group.php:148 -#: includes/fields/class-acf-field-checkbox.php:352 -#: includes/fields/class-acf-field-radio.php:193 -#: includes/fields/class-acf-field-select.php:370 -msgid "Enter each choice on a new line." -msgstr "Indiquez une valeur par ligne." - -#: includes/fields/class-acf-field-button-group.php:147 -#: includes/fields/class-acf-field-checkbox.php:351 -#: includes/fields/class-acf-field-radio.php:192 -#: includes/fields/class-acf-field-select.php:369 -msgid "Choices" -msgstr "Choix" - -#: includes/fields/class-acf-field-button-group.php:24 -msgid "Button Group" -msgstr "Groupe de boutons" - -#: includes/fields/class-acf-field-button-group.php:194 -#: includes/fields/class-acf-field-page_link.php:538 -#: includes/fields/class-acf-field-post_object.php:448 -#: includes/fields/class-acf-field-radio.php:238 -#: includes/fields/class-acf-field-select.php:429 -#: includes/fields/class-acf-field-taxonomy.php:772 -#: includes/fields/class-acf-field-user.php:103 -msgid "Allow Null" -msgstr "" - -#: includes/fields/class-acf-field-page_link.php:263 -#: includes/fields/class-acf-field-post_object.php:257 -#: includes/fields/class-acf-field-taxonomy.php:930 -msgid "Parent" -msgstr "Parent" - -#: includes/fields/class-acf-field-wysiwyg.php:390 -msgid "TinyMCE will not be initialized until field is clicked" -msgstr "" -"TinyMCE ne sera pas initialisé avant que l’utilisateur clique sur le champ" - -#: includes/fields/class-acf-field-wysiwyg.php:389 -msgid "Delay Initialization" -msgstr "" - -#: includes/fields/class-acf-field-wysiwyg.php:378 -msgid "Show Media Upload Buttons" -msgstr "" - -#: includes/fields/class-acf-field-wysiwyg.php:362 -msgid "Toolbar" -msgstr "Barre d‘outils" - -#: includes/fields/class-acf-field-wysiwyg.php:354 -msgid "Text Only" -msgstr "Texte brut seulement" - -#: includes/fields/class-acf-field-wysiwyg.php:353 -msgid "Visual Only" -msgstr "Visuel seulement" - -#: includes/fields/class-acf-field-wysiwyg.php:352 -msgid "Visual & Text" -msgstr "Visuel & Texte brut" - -#: includes/fields/class-acf-field-wysiwyg.php:347 -msgid "Tabs" -msgstr "Onglets" - -#: includes/fields/class-acf-field-wysiwyg.php:285 -msgid "Click to initialize TinyMCE" -msgstr "Cliquez pour initialiser TinyMCE" - -#: includes/fields/class-acf-field-wysiwyg.php:279 -msgctxt "Name for the Text editor tab (formerly HTML)" -msgid "Text" -msgstr "Texte" - -#: includes/fields/class-acf-field-wysiwyg.php:278 -msgid "Visual" -msgstr "Visuel" - -#: includes/fields/class-acf-field-text.php:189 -#: includes/fields/class-acf-field-textarea.php:236 -msgid "Value must not exceed %d characters" -msgstr "La valeur ne doit pas dépasser %d caractères" - -#: includes/fields/class-acf-field-text.php:124 -#: includes/fields/class-acf-field-textarea.php:124 -msgid "Leave blank for no limit" -msgstr "Laisser vide ne pas donner de limite" - -#: includes/fields/class-acf-field-text.php:123 -#: includes/fields/class-acf-field-textarea.php:123 -msgid "Character Limit" -msgstr "Limite de caractères" - -#: includes/fields/class-acf-field-email.php:158 -#: includes/fields/class-acf-field-number.php:209 -#: includes/fields/class-acf-field-password.php:105 -#: includes/fields/class-acf-field-range.php:239 -#: includes/fields/class-acf-field-text.php:164 -msgid "Appears after the input" -msgstr "Apparait après le champ" - -#: includes/fields/class-acf-field-email.php:157 -#: includes/fields/class-acf-field-number.php:208 -#: includes/fields/class-acf-field-password.php:104 -#: includes/fields/class-acf-field-range.php:238 -#: includes/fields/class-acf-field-text.php:163 -msgid "Append" -msgstr "Suffixe" - -#: includes/fields/class-acf-field-email.php:148 -#: includes/fields/class-acf-field-number.php:199 -#: includes/fields/class-acf-field-password.php:95 -#: includes/fields/class-acf-field-range.php:229 -#: includes/fields/class-acf-field-text.php:154 -msgid "Appears before the input" -msgstr "Apparait avant le champ" - -#: includes/fields/class-acf-field-email.php:147 -#: includes/fields/class-acf-field-number.php:198 -#: includes/fields/class-acf-field-password.php:94 -#: includes/fields/class-acf-field-range.php:228 -#: includes/fields/class-acf-field-text.php:153 -msgid "Prepend" -msgstr "Préfixe" - -#: includes/fields/class-acf-field-email.php:138 -#: includes/fields/class-acf-field-number.php:179 -#: includes/fields/class-acf-field-password.php:85 -#: includes/fields/class-acf-field-text.php:144 -#: includes/fields/class-acf-field-textarea.php:156 -#: includes/fields/class-acf-field-url.php:122 -msgid "Appears within the input" -msgstr "Apparait dans le champ" - -#: includes/fields/class-acf-field-email.php:137 -#: includes/fields/class-acf-field-number.php:178 -#: includes/fields/class-acf-field-password.php:84 -#: includes/fields/class-acf-field-text.php:143 -#: includes/fields/class-acf-field-textarea.php:155 -#: includes/fields/class-acf-field-url.php:121 -msgid "Placeholder Text" -msgstr "Texte indicatif" - -#: includes/fields/class-acf-field-button-group.php:158 -#: includes/fields/class-acf-field-email.php:118 -#: includes/fields/class-acf-field-number.php:129 -#: includes/fields/class-acf-field-radio.php:203 -#: includes/fields/class-acf-field-range.php:165 -#: includes/fields/class-acf-field-text.php:104 -#: includes/fields/class-acf-field-textarea.php:104 -#: includes/fields/class-acf-field-url.php:102 -#: includes/fields/class-acf-field-wysiwyg.php:312 -msgid "Appears when creating a new post" -msgstr "Valeur donnée lors de la création d’un nouvel article" - -#: includes/fields/class-acf-field-text.php:25 -msgid "Text" -msgstr "Texte" - -#: includes/fields/class-acf-field-relationship.php:794 -msgid "%1$s requires at least %2$s selection" -msgid_plural "%1$s requires at least %2$s selections" -msgstr[0] "" -msgstr[1] "" - -#: includes/fields/class-acf-field-post_object.php:417 -#: includes/fields/class-acf-field-relationship.php:644 -msgid "Post ID" -msgstr "ID de l'article" - -#: includes/fields/class-acf-field-post_object.php:17 -#: includes/fields/class-acf-field-post_object.php:416 -#: includes/fields/class-acf-field-relationship.php:643 -msgid "Post Object" -msgstr "Objet Article" - -#: includes/fields/class-acf-field-relationship.php:676 -msgid "Maximum Posts" -msgstr "" - -#: includes/fields/class-acf-field-relationship.php:666 -msgid "Minimum Posts" -msgstr "" - -#: includes/admin/views/acf-field-group/options.php:183 -#: includes/admin/views/acf-post-type/advanced-settings.php:29 -#: includes/fields/class-acf-field-relationship.php:701 -msgid "Featured Image" -msgstr "Image à la Une" - -#: includes/fields/class-acf-field-relationship.php:697 -msgid "Selected elements will be displayed in each result" -msgstr "Les éléments sélectionnés seront affichés dans chaque résultat" - -#: includes/fields/class-acf-field-relationship.php:696 -msgid "Elements" -msgstr "Éléments" - -#: includes/fields/class-acf-field-relationship.php:630 -#: includes/fields/class-acf-field-taxonomy.php:20 -#: includes/fields/class-acf-field-taxonomy.php:692 -#: includes/locations/class-acf-location-taxonomy.php:22 -msgid "Taxonomy" -msgstr "Taxonomie" - -#: includes/fields/class-acf-field-relationship.php:629 -#: includes/locations/class-acf-location-post-type.php:22 -#: includes/post-types/class-acf-post-type.php:92 -msgid "Post Type" -msgstr "Type de publication" - -#: includes/fields/class-acf-field-relationship.php:623 -msgid "Filters" -msgstr "Filtres" - -#: includes/fields/class-acf-field-page_link.php:499 -#: includes/fields/class-acf-field-post_object.php:404 -#: includes/fields/class-acf-field-relationship.php:616 -msgid "All taxonomies" -msgstr "Toutes les taxonomies" - -#: includes/fields/class-acf-field-page_link.php:491 -#: includes/fields/class-acf-field-post_object.php:396 -#: includes/fields/class-acf-field-relationship.php:608 -msgid "Filter by Taxonomy" -msgstr "Filtrer par taxonomie" - -#: includes/fields/class-acf-field-page_link.php:469 -#: includes/fields/class-acf-field-post_object.php:374 -#: includes/fields/class-acf-field-relationship.php:586 -msgid "All post types" -msgstr "Tous les types de publication" - -#: includes/fields/class-acf-field-page_link.php:461 -#: includes/fields/class-acf-field-post_object.php:366 -#: includes/fields/class-acf-field-relationship.php:578 -msgid "Filter by Post Type" -msgstr "Filtrer par type de publication" - -#: includes/fields/class-acf-field-relationship.php:476 -msgid "Search..." -msgstr "Rechercher…" - -#: includes/fields/class-acf-field-relationship.php:406 -msgid "Select taxonomy" -msgstr "Choisissez la taxonomie" - -#: includes/fields/class-acf-field-relationship.php:397 -msgid "Select post type" -msgstr "Choisissez le type de publication" - -#: includes/fields/class-acf-field-relationship.php:61 -#: assets/build/js/acf-input.js:3930 assets/build/js/acf-input.js:4214 -msgid "No matches found" -msgstr "Aucun résultat" - -#: includes/fields/class-acf-field-relationship.php:60 -#: assets/build/js/acf-input.js:3913 assets/build/js/acf-input.js:4193 -msgid "Loading" -msgstr "Chargement en cours" - -#: includes/fields/class-acf-field-relationship.php:59 -#: assets/build/js/acf-input.js:3818 assets/build/js/acf-input.js:4084 -msgid "Maximum values reached ( {max} values )" -msgstr "Nombre maximal de valeurs atteint ({max} valeurs)" - -#: includes/fields/class-acf-field-relationship.php:17 -msgid "Relationship" -msgstr "Relation" - -#: includes/fields/class-acf-field-file.php:291 -#: includes/fields/class-acf-field-image.php:317 -msgid "Comma separated list. Leave blank for all types" -msgstr "" -"Extensions autorisées séparées par une virgule. Laissez vide pour autoriser " -"toutes les extensions" - -#: includes/fields/class-acf-field-file.php:290 -#: includes/fields/class-acf-field-image.php:316 -msgid "Allowed File Types" -msgstr "" - -#: includes/fields/class-acf-field-file.php:278 -#: includes/fields/class-acf-field-image.php:280 -msgid "Maximum" -msgstr "Maximum" - -#: includes/fields/class-acf-field-file.php:154 -#: includes/fields/class-acf-field-file.php:270 -#: includes/fields/class-acf-field-file.php:282 -#: includes/fields/class-acf-field-image.php:271 -#: includes/fields/class-acf-field-image.php:307 -msgid "File size" -msgstr "Taille du fichier" - -#: includes/fields/class-acf-field-image.php:245 -#: includes/fields/class-acf-field-image.php:281 -msgid "Restrict which images can be uploaded" -msgstr "Restreindre les images envoyées" - -#: includes/fields/class-acf-field-file.php:266 -#: includes/fields/class-acf-field-image.php:244 -msgid "Minimum" -msgstr "Minimum" - -#: includes/fields/class-acf-field-file.php:235 -#: includes/fields/class-acf-field-image.php:210 -msgid "Uploaded to post" -msgstr "Liés à cet article" - -#: includes/fields/class-acf-field-file.php:234 -#: includes/fields/class-acf-field-image.php:209 -#: includes/locations/class-acf-location-attachment.php:73 -#: includes/locations/class-acf-location-comment.php:61 -#: includes/locations/class-acf-location-nav-menu.php:74 -#: includes/locations/class-acf-location-taxonomy.php:63 -#: includes/locations/class-acf-location-user-form.php:71 -#: includes/locations/class-acf-location-user-role.php:78 -#: includes/locations/class-acf-location-widget.php:65 -msgid "All" -msgstr "Tous" - -#: includes/fields/class-acf-field-file.php:229 -#: includes/fields/class-acf-field-image.php:204 -msgid "Limit the media library choice" -msgstr "Limiter le choix dans la médiathèque" - -#: includes/fields/class-acf-field-file.php:228 -#: includes/fields/class-acf-field-image.php:203 -msgid "Library" -msgstr "Médias" - -#: includes/fields/class-acf-field-image.php:336 -msgid "Preview Size" -msgstr "Taille de prévisualisation" - -#: includes/fields/class-acf-field-image.php:195 -msgid "Image ID" -msgstr "ID de l‘image" - -#: includes/fields/class-acf-field-image.php:194 -msgid "Image URL" -msgstr "Adresse web de l'image" - -#: includes/fields/class-acf-field-image.php:193 -msgid "Image Array" -msgstr "Données de l'image (tableau)" - -#: includes/fields/class-acf-field-button-group.php:168 -#: includes/fields/class-acf-field-checkbox.php:372 -#: includes/fields/class-acf-field-file.php:213 -#: includes/fields/class-acf-field-link.php:171 -#: includes/fields/class-acf-field-radio.php:213 -msgid "Specify the returned value on front end" -msgstr "Spécifier la valeur retournée dans le code" - -#: includes/fields/class-acf-field-button-group.php:167 -#: includes/fields/class-acf-field-checkbox.php:371 -#: includes/fields/class-acf-field-file.php:212 -#: includes/fields/class-acf-field-link.php:170 -#: includes/fields/class-acf-field-radio.php:212 -#: includes/fields/class-acf-field-taxonomy.php:736 -msgid "Return Value" -msgstr "Valeur renvoyée" - -#: includes/fields/class-acf-field-image.php:162 -msgid "Add Image" -msgstr "Ajouter une image" - -#: includes/fields/class-acf-field-image.php:162 -msgid "No image selected" -msgstr "Aucune image sélectionnée" - -#: includes/assets.php:352 includes/fields/class-acf-field-file.php:162 -#: includes/fields/class-acf-field-image.php:142 -#: includes/fields/class-acf-field-link.php:145 assets/build/js/acf.js:1563 -#: assets/build/js/acf.js:1657 -msgid "Remove" -msgstr "Enlever" - -#: includes/admin/views/acf-field-group/field.php:76 -#: includes/fields/class-acf-field-file.php:160 -#: includes/fields/class-acf-field-image.php:140 -#: includes/fields/class-acf-field-link.php:145 -msgid "Edit" -msgstr "Modifier" - -#: includes/fields/class-acf-field-image.php:70 includes/media.php:55 -#: assets/build/js/acf-input.js:6837 assets/build/js/acf-input.js:7320 -msgid "All images" -msgstr "Toutes les images" - -#: includes/fields/class-acf-field-image.php:69 -#: assets/build/js/acf-input.js:3181 assets/build/js/acf-input.js:3399 -msgid "Update Image" -msgstr "Mettre à jour" - -#: includes/fields/class-acf-field-image.php:68 -#: assets/build/js/acf-input.js:3180 assets/build/js/acf-input.js:3398 -msgid "Edit Image" -msgstr "Modifier l'image" - -#: includes/fields/class-acf-field-image.php:67 -#: assets/build/js/acf-input.js:3156 assets/build/js/acf-input.js:3373 -msgid "Select Image" -msgstr "Sélectionner une image" - -#: includes/fields/class-acf-field-image.php:25 -msgid "Image" -msgstr "Image" - -#: includes/fields/class-acf-field-message.php:125 -msgid "Allow HTML markup to display as visible text instead of rendering" -msgstr "Permettre l'affichage du code HTML à l'écran au lieu de l'interpréter" - -#: includes/fields/class-acf-field-message.php:124 -msgid "Escape HTML" -msgstr "Afficher le code HTML" - -#: includes/fields/class-acf-field-message.php:116 -#: includes/fields/class-acf-field-textarea.php:172 -msgid "No Formatting" -msgstr "Pas de formatage" - -#: includes/fields/class-acf-field-message.php:115 -#: includes/fields/class-acf-field-textarea.php:171 -msgid "Automatically add <br>" -msgstr "Ajouter <br> automatiquement" - -#: includes/fields/class-acf-field-message.php:114 -#: includes/fields/class-acf-field-textarea.php:170 -msgid "Automatically add paragraphs" -msgstr "Ajouter des paragraphes automatiquement" - -#: includes/fields/class-acf-field-message.php:110 -#: includes/fields/class-acf-field-textarea.php:166 -msgid "Controls how new lines are rendered" -msgstr "Comment sont interprétés les sauts de lignes" - -#: includes/fields/class-acf-field-message.php:109 -#: includes/fields/class-acf-field-textarea.php:165 -msgid "New Lines" -msgstr "Nouvelles lignes" - -#: includes/fields/class-acf-field-date_picker.php:232 -#: includes/fields/class-acf-field-date_time_picker.php:220 -msgid "Week Starts On" -msgstr "La semaine commencent le" - -#: includes/fields/class-acf-field-date_picker.php:201 -msgid "The format used when saving a value" -msgstr "Le format enregistré" - -#: includes/fields/class-acf-field-date_picker.php:200 -msgid "Save Format" -msgstr "Enregistrer le format" - -#: includes/fields/class-acf-field-date_picker.php:67 -msgctxt "Date Picker JS weekHeader" -msgid "Wk" -msgstr "Sem." - -#: includes/fields/class-acf-field-date_picker.php:66 -msgctxt "Date Picker JS prevText" -msgid "Prev" -msgstr "Préc." - -#: includes/fields/class-acf-field-date_picker.php:65 -msgctxt "Date Picker JS nextText" -msgid "Next" -msgstr "Suiv." - -#: includes/fields/class-acf-field-date_picker.php:64 -msgctxt "Date Picker JS currentText" -msgid "Today" -msgstr "Aujourd’hui" - -#: includes/fields/class-acf-field-date_picker.php:63 -msgctxt "Date Picker JS closeText" -msgid "Done" -msgstr "Valider" - -#: includes/fields/class-acf-field-date_picker.php:25 -msgid "Date Picker" -msgstr "Sélecteur de date" - -#: includes/fields/class-acf-field-image.php:248 -#: includes/fields/class-acf-field-image.php:284 -#: includes/fields/class-acf-field-oembed.php:268 -msgid "Width" -msgstr "Largeur" - -#: includes/fields/class-acf-field-oembed.php:265 -#: includes/fields/class-acf-field-oembed.php:277 -msgid "Embed Size" -msgstr "Dimensions" - -#: includes/fields/class-acf-field-oembed.php:222 -msgid "Enter URL" -msgstr "Entrez l'URL" - -#: includes/fields/class-acf-field-oembed.php:25 -msgid "oEmbed" -msgstr "oEmbed" - -#: includes/fields/class-acf-field-true_false.php:184 -msgid "Text shown when inactive" -msgstr "Texte affiché lorsque le bouton est désactivé" - -#: includes/fields/class-acf-field-true_false.php:183 -msgid "Off Text" -msgstr "Texte côté « Inactif »" - -#: includes/fields/class-acf-field-true_false.php:168 -msgid "Text shown when active" -msgstr "Text affiché lorsque le bouton est actif" - -#: includes/fields/class-acf-field-true_false.php:167 -msgid "On Text" -msgstr "Texte côté « Actif »" - -#: includes/fields/class-acf-field-select.php:450 -#: includes/fields/class-acf-field-true_false.php:199 -msgid "Stylized UI" -msgstr "" - -#: includes/fields/class-acf-field-button-group.php:157 -#: includes/fields/class-acf-field-checkbox.php:361 -#: includes/fields/class-acf-field-color_picker.php:156 -#: includes/fields/class-acf-field-email.php:117 -#: includes/fields/class-acf-field-number.php:128 -#: includes/fields/class-acf-field-radio.php:202 -#: includes/fields/class-acf-field-range.php:164 -#: includes/fields/class-acf-field-select.php:380 -#: includes/fields/class-acf-field-text.php:103 -#: includes/fields/class-acf-field-textarea.php:103 -#: includes/fields/class-acf-field-true_false.php:147 -#: includes/fields/class-acf-field-url.php:101 -#: includes/fields/class-acf-field-wysiwyg.php:311 -msgid "Default Value" -msgstr "Valeur par défaut" - -#: includes/fields/class-acf-field-true_false.php:138 -msgid "Displays text alongside the checkbox" -msgstr "Affiche le texte à côté de la case à cocher" - -#: includes/fields/class-acf-field-message.php:26 -#: includes/fields/class-acf-field-message.php:99 -#: includes/fields/class-acf-field-true_false.php:137 -msgid "Message" -msgstr "Message" - -#: includes/assets.php:351 includes/fields/class-acf-field-true_false.php:86 -#: includes/fields/class-acf-field-true_false.php:187 -#: assets/build/js/acf.js:1740 assets/build/js/acf.js:1857 -msgid "No" -msgstr "Non" - -#: includes/assets.php:350 includes/fields/class-acf-field-true_false.php:83 -#: includes/fields/class-acf-field-true_false.php:171 -#: assets/build/js/acf.js:1739 assets/build/js/acf.js:1856 -msgid "Yes" -msgstr "Oui" - -#: includes/fields/class-acf-field-true_false.php:25 -msgid "True / False" -msgstr "Oui / Non" - -#: includes/fields/class-acf-field-group.php:474 -msgid "Row" -msgstr "Rangée" - -#: includes/fields/class-acf-field-group.php:473 -msgid "Table" -msgstr "Tableau" - -#: includes/admin/post-types/admin-field-group.php:140 -#: includes/fields/class-acf-field-group.php:472 -msgid "Block" -msgstr "Bloc" - -#: includes/fields/class-acf-field-group.php:467 -msgid "Specify the style used to render the selected fields" -msgstr "Style utilisé pour générer les champs sélectionnés" - -#: includes/fields.php:356 includes/fields/class-acf-field-button-group.php:215 -#: includes/fields/class-acf-field-checkbox.php:435 -#: includes/fields/class-acf-field-group.php:466 -#: includes/fields/class-acf-field-radio.php:286 -msgid "Layout" -msgstr "Mise en page" - -#: includes/fields/class-acf-field-group.php:450 -msgid "Sub Fields" -msgstr "Sous-champs" - -#: includes/fields/class-acf-field-group.php:25 -msgid "Group" -msgstr "Groupe" - -#: includes/fields/class-acf-field-google-map.php:235 -msgid "Customize the map height" -msgstr "Hauteur de la carte" - -#: includes/fields/class-acf-field-google-map.php:234 -#: includes/fields/class-acf-field-image.php:259 -#: includes/fields/class-acf-field-image.php:295 -#: includes/fields/class-acf-field-oembed.php:280 -msgid "Height" -msgstr "Hauteur" - -#: includes/fields/class-acf-field-google-map.php:223 -msgid "Set the initial zoom level" -msgstr "Niveau de zoom initial" - -#: includes/fields/class-acf-field-google-map.php:222 -msgid "Zoom" -msgstr "Zoom" - -#: includes/fields/class-acf-field-google-map.php:196 -#: includes/fields/class-acf-field-google-map.php:209 -msgid "Center the initial map" -msgstr "Position initiale du centre de la carte" - -#: includes/fields/class-acf-field-google-map.php:195 -#: includes/fields/class-acf-field-google-map.php:208 -msgid "Center" -msgstr "Centre" - -#: includes/fields/class-acf-field-google-map.php:163 -msgid "Search for address..." -msgstr "Chercher une adresse…" - -#: includes/fields/class-acf-field-google-map.php:160 -msgid "Find current location" -msgstr "Trouver l'emplacement actuel" - -#: includes/fields/class-acf-field-google-map.php:159 -msgid "Clear location" -msgstr "Effacer la position" - -#: includes/fields/class-acf-field-google-map.php:158 -#: includes/fields/class-acf-field-relationship.php:628 -msgid "Search" -msgstr "Rechercher" - -#: includes/fields/class-acf-field-google-map.php:63 -#: assets/build/js/acf-input.js:2840 assets/build/js/acf-input.js:3026 -msgid "Sorry, this browser does not support geolocation" -msgstr "Désolé, ce navigateur ne prend pas en charge la géolocalisation" - -#: includes/fields/class-acf-field-google-map.php:25 -msgid "Google Map" -msgstr "Google Map" - -#: includes/fields/class-acf-field-date_picker.php:212 -#: includes/fields/class-acf-field-date_time_picker.php:201 -#: includes/fields/class-acf-field-time_picker.php:132 -msgid "The format returned via template functions" -msgstr "Valeur retournée dans le code" - -#: includes/fields/class-acf-field-color_picker.php:180 -#: includes/fields/class-acf-field-date_picker.php:211 -#: includes/fields/class-acf-field-date_time_picker.php:200 -#: includes/fields/class-acf-field-image.php:187 -#: includes/fields/class-acf-field-post_object.php:411 -#: includes/fields/class-acf-field-relationship.php:638 -#: includes/fields/class-acf-field-select.php:391 -#: includes/fields/class-acf-field-time_picker.php:131 -#: includes/fields/class-acf-field-user.php:66 -msgid "Return Format" -msgstr "Format de retour" - -#: includes/fields/class-acf-field-date_picker.php:190 -#: includes/fields/class-acf-field-date_picker.php:221 -#: includes/fields/class-acf-field-date_time_picker.php:192 -#: includes/fields/class-acf-field-date_time_picker.php:210 -#: includes/fields/class-acf-field-time_picker.php:123 -#: includes/fields/class-acf-field-time_picker.php:139 -msgid "Custom:" -msgstr "Personnalisé :" - -#: includes/fields/class-acf-field-date_picker.php:182 -#: includes/fields/class-acf-field-date_time_picker.php:183 -#: includes/fields/class-acf-field-time_picker.php:116 -msgid "The format displayed when editing a post" -msgstr "Format affiché lors de l’édition d’un article" - -#: includes/fields/class-acf-field-date_picker.php:181 -#: includes/fields/class-acf-field-date_time_picker.php:182 -#: includes/fields/class-acf-field-time_picker.php:115 -msgid "Display Format" -msgstr "Format d’affichage" - -#: includes/fields/class-acf-field-time_picker.php:25 -msgid "Time Picker" -msgstr "Sélecteur d’heure" - -#. translators: counts for inactive field groups -#: acf.php:503 -msgid "Inactive (%s)" -msgid_plural "Inactive (%s)" -msgstr[0] "" -msgstr[1] "" - -#: acf.php:462 -msgid "No Fields found in Trash" -msgstr "Aucun champ trouvé dans la corbeille" - -#: acf.php:461 -msgid "No Fields found" -msgstr "Aucun champ trouvé" - -#: acf.php:460 -msgid "Search Fields" -msgstr "Rechercher des champs" - -#: acf.php:459 -msgid "View Field" -msgstr "Voir le champ" - -#: acf.php:458 includes/admin/views/acf-field-group/fields.php:115 -msgid "New Field" -msgstr "Nouveau champ" - -#: acf.php:457 -msgid "Edit Field" -msgstr "Modifier le champ" - -#: acf.php:456 -msgid "Add New Field" -msgstr "Ajouter un champ" - -#: acf.php:454 -msgid "Field" -msgstr "Champ" - -#: acf.php:453 includes/admin/post-types/admin-field-group.php:163 -#: includes/admin/post-types/admin-field-groups.php:119 -#: includes/admin/views/acf-field-group/fields.php:32 -msgid "Fields" -msgstr "Champs" - -#: acf.php:428 -msgid "No Field Groups found in Trash" -msgstr "Aucun groupe de champs trouvé dans la corbeille" - -#: acf.php:427 -msgid "No Field Groups found" -msgstr "Aucun groupe de champs trouvé" - -#: acf.php:426 -msgid "Search Field Groups" -msgstr "Rechercher des groupes de champs" - -#: acf.php:425 -msgid "View Field Group" -msgstr "Voir le groupe de champs" - -#: acf.php:424 -msgid "New Field Group" -msgstr "Nouveau groupe de champs" - -#: acf.php:423 -msgid "Edit Field Group" -msgstr "Modifier le groupe de champs" - -#: acf.php:422 -msgid "Add New Field Group" -msgstr "Ajouter un nouveau groupe de champs" - -#: acf.php:421 acf.php:455 -#: includes/admin/views/acf-post-type/advanced-settings.php:219 -#: includes/admin/views/acf-post-type/advanced-settings.php:221 -#: includes/post-types/class-acf-post-type.php:93 -#: includes/post-types/class-acf-taxonomy.php:92 -msgid "Add New" -msgstr "Ajouter" - -#: acf.php:420 -msgid "Field Group" -msgstr "Groupe de champs" - -#: acf.php:419 includes/admin/post-types/admin-field-groups.php:78 -#: includes/admin/post-types/admin-post-types.php:138 -#: includes/admin/post-types/admin-taxonomies.php:138 -msgid "Field Groups" -msgstr "Groupes de champs" - -#. Description of the plugin -msgid "Customize WordPress with powerful, professional and intuitive fields." -msgstr "" -"Personnalisez WordPress avec des champs intuitifs, puissants et " -"professionnels." - -#. Plugin URI of the plugin -msgid "https://www.advancedcustomfields.com" -msgstr "https://www.advancedcustomfields.com" - -#. Plugin Name of the plugin -#: acf.php:94 -msgid "Advanced Custom Fields" -msgstr "Advanced Custom Fields" - -# @ acf -#: pro/acf-pro.php:27 -msgid "Advanced Custom Fields PRO" -msgstr "Advanced Custom Fields PRO" - -# @ default -#: pro/blocks.php:170 -msgid "Block type name is required." -msgstr "Le nom de type de bloc est requis." - -#. translators: The name of the block type -#: pro/blocks.php:178 -msgid "Block type \"%s\" is already registered." -msgstr "Le type de bloc \"%s\" est déjà enregistré." - -#: pro/blocks.php:726 -msgid "Switch to Edit" -msgstr "Passer en Édition" - -#: pro/blocks.php:727 -msgid "Switch to Preview" -msgstr "Passer en Prévisualisation" - -#: pro/blocks.php:728 -msgid "Change content alignment" -msgstr "" - -#. translators: %s: Block type title -#: pro/blocks.php:731 -msgid "%s settings" -msgstr "Réglages de %s" - -#: pro/blocks.php:936 -msgid "This block contains no editable fields." -msgstr "" - -#. translators: %s: an admin URL to the field group edit screen -#: pro/blocks.php:942 -msgid "" -"Assign a field group to add fields to " -"this block." -msgstr "" - -# @ acf -#: pro/options-page.php:78 -msgid "Options Updated" -msgstr "Options mises à jours" - -#: pro/updates.php:99 -#, fuzzy -#| msgid "" -#| "To enable updates, please enter your license key on the Updates page. If you don't have a licence key, please see details & pricing." -msgid "" -"To enable updates, please enter your license key on the Updates page. If you don't have a licence key, please see details & pricing." -msgstr "" -"Pour activer les mises à jour, veuillez entrer votre clé de licence sur la " -"page Mises à jour. Si vous n’en avez pas, rendez-vous sur " -"nos détails & tarifs." - -#: pro/updates.php:159 -msgid "" -"ACF Activation Error. Your defined license key has changed, but an " -"error occurred when deactivating your old licence" -msgstr "" - -#: pro/updates.php:154 -msgid "" -"ACF Activation Error. Your defined license key has changed, but an " -"error occurred when connecting to activation server" -msgstr "" - -#: pro/updates.php:192 -msgid "ACF Activation Error" -msgstr "" - -#: pro/updates.php:187 -#, fuzzy -#| msgid "Error. Could not connect to update server" -msgid "" -"ACF Activation Error. An error occurred when connecting to activation " -"server" -msgstr "Erreur. Impossible de joindre le serveur" - -#: pro/updates.php:279 -msgid "Check Again" -msgstr "Vérifier à nouveau" - -#: pro/updates.php:593 -#, fuzzy -#| msgid "Error. Could not connect to update server" -msgid "ACF Activation Error. Could not connect to activation server" -msgstr "Erreur. Impossible de joindre le serveur" - -#: pro/admin/admin-options-page.php:195 -msgid "Publish" -msgstr "Publier" - -# @ default -#: pro/admin/admin-options-page.php:199 -msgid "" -"No Custom Field Groups found for this options page. Create a " -"Custom Field Group" -msgstr "" -"Aucun groupe de champs trouvé pour cette page d’options. Créer un groupe de champs" - -#: pro/admin/admin-updates.php:52 -msgid "Error. Could not connect to update server" -msgstr "Erreur. Impossible de joindre le serveur" - -#: pro/admin/admin-updates.php:212 -msgid "" -"Error. Could not authenticate update package. Please check again or " -"deactivate and reactivate your ACF PRO license." -msgstr "" -"Erreur. Impossible d’authentifier la mise à jour. Merci d’essayer à " -"nouveau et si le problème persiste, désactivez et réactivez votre licence " -"ACF PRO." - -#: pro/admin/admin-updates.php:199 -#, fuzzy -#| msgid "" -#| "Error. Could not authenticate update package. Please check again " -#| "or deactivate and reactivate your ACF PRO license." -msgid "" -"Error. Your license for this site has expired or been deactivated. " -"Please reactivate your ACF PRO license." -msgstr "" -"Erreur. Impossible d’authentifier la mise à jour. Merci d’essayer à " -"nouveau et si le problème persiste, désactivez et réactivez votre licence " -"ACF PRO." - -#: pro/fields/class-acf-field-clone.php:27, -#: pro/fields/class-acf-field-repeater.php:31 -msgid "" -"Allows you to select and display existing fields. It does not duplicate any " -"fields in the database, but loads and displays the selected fields at run-" -"time. The Clone field can either replace itself with the selected fields or " -"display the selected fields as a group of subfields." -msgstr "" - -#: pro/fields/class-acf-field-clone.php:819 -msgid "Select one or more fields you wish to clone" -msgstr "Sélectionnez un ou plusieurs champs à cloner" - -# @ acf -#: pro/fields/class-acf-field-clone.php:838 -msgid "Display" -msgstr "Format d’affichage" - -#: pro/fields/class-acf-field-clone.php:839 -msgid "Specify the style used to render the clone field" -msgstr "Définit le style utilisé pour générer le champ dupliqué" - -#: pro/fields/class-acf-field-clone.php:844 -msgid "Group (displays selected fields in a group within this field)" -msgstr "" -"Groupe (affiche les champs sélectionnés dans un groupe à l’intérieur de ce " -"champ)" - -#: pro/fields/class-acf-field-clone.php:845 -msgid "Seamless (replaces this field with selected fields)" -msgstr "Remplace ce champ par les champs sélectionnés" - -#: pro/fields/class-acf-field-clone.php:868 -msgid "Labels will be displayed as %s" -msgstr "Les labels seront affichés en tant que %s" - -#: pro/fields/class-acf-field-clone.php:873 -msgid "Prefix Field Labels" -msgstr "Préfixer les labels de champs" - -#: pro/fields/class-acf-field-clone.php:883 -msgid "Values will be saved as %s" -msgstr "Les valeurs seront enregistrées en tant que %s" - -#: pro/fields/class-acf-field-clone.php:888 -msgid "Prefix Field Names" -msgstr "Préfixer les noms de champs" - -#: pro/fields/class-acf-field-clone.php:1005 -msgid "Unknown field" -msgstr "Champ inconnu" - -#: pro/fields/class-acf-field-clone.php:1042 -msgid "Unknown field group" -msgstr "Groupe de champ inconnu" - -#: pro/fields/class-acf-field-clone.php:1046 -msgid "All fields from %s field group" -msgstr "Tous les champs du groupe %s" - -#: pro/fields/class-acf-field-flexible-content.php:27 -msgid "" -"Allows you to define, create and manage content with total control by " -"creating layouts that contain subfields that content editors can choose from." -msgstr "" - -# @ acf -#: pro/fields/class-acf-field-flexible-content.php:36, -#: pro/fields/class-acf-field-repeater.php:103, -#: pro/fields/class-acf-field-repeater.php:297 -msgid "Add Row" -msgstr "Ajouter un élément" - -# @ acf -#: pro/fields/class-acf-field-flexible-content.php:76, -#: pro/fields/class-acf-field-flexible-content.php:943, -#: pro/fields/class-acf-field-flexible-content.php:1022 -msgid "layout" -msgid_plural "layouts" -msgstr[0] "mise-en-forme" -msgstr[1] "mises-en-forme" - -# @ acf -#: pro/fields/class-acf-field-flexible-content.php:77 -msgid "layouts" -msgstr "mises-en-forme" - -#: pro/fields/class-acf-field-flexible-content.php:81, -#: pro/fields/class-acf-field-flexible-content.php:942, -#: pro/fields/class-acf-field-flexible-content.php:1021 -msgid "This field requires at least {min} {label} {identifier}" -msgstr "Ce champ requiert au moins {min} {label} {identifier}" - -#: pro/fields/class-acf-field-flexible-content.php:82 -msgid "This field has a limit of {max} {label} {identifier}" -msgstr "Ce champ a une limite de {max} {label} {identifier}" - -#: pro/fields/class-acf-field-flexible-content.php:85 -msgid "{available} {label} {identifier} available (max {max})" -msgstr "{available} {label} {identifier} disponible (max {max})" - -#: pro/fields/class-acf-field-flexible-content.php:86 -msgid "{required} {label} {identifier} required (min {min})" -msgstr "{required} {label} {identifier} requis (min {min})" - -# @ acf -#: pro/fields/class-acf-field-flexible-content.php:89 -msgid "Flexible Content requires at least 1 layout" -msgstr "Le contenu flexible nécessite au moins une mise-en-forme" - -#: pro/fields/class-acf-field-flexible-content.php:282 -msgid "Click the \"%s\" button below to start creating your layout" -msgstr "" -"Cliquez sur le bouton « %s » ci-dessous pour créer votre première mise-en-" -"forme" - -# @ acf -#: pro/fields/class-acf-field-flexible-content.php:423 -msgid "Add layout" -msgstr "Ajouter une mise-en-forme" - -#: pro/fields/class-acf-field-flexible-content.php:424 -#, fuzzy -#| msgid "Duplicate Layout" -msgid "Duplicate layout" -msgstr "Dupliquer la mise-en-forme" - -# @ acf -#: pro/fields/class-acf-field-flexible-content.php:425 -msgid "Remove layout" -msgstr "Retirer la mise-en-forme" - -#: pro/fields/class-acf-field-flexible-content.php:426, -#: pro/fields/class-acf-repeater-table.php:382 -msgid "Click to toggle" -msgstr "Cliquer pour intervertir" - -# @ acf -#: pro/fields/class-acf-field-flexible-content.php:562 -msgid "Delete Layout" -msgstr "Supprimer la mise-en-forme" - -#: pro/fields/class-acf-field-flexible-content.php:563 -msgid "Duplicate Layout" -msgstr "Dupliquer la mise-en-forme" - -# @ acf -#: pro/fields/class-acf-field-flexible-content.php:564 -msgid "Add New Layout" -msgstr "Ajouter une nouvelle mise-en-forme" - -# @ acf -#: pro/fields/class-acf-field-flexible-content.php:564 -#, fuzzy -#| msgid "Add layout" -msgid "Add Layout" -msgstr "Ajouter une mise-en-forme" - -#: pro/fields/class-acf-field-flexible-content.php:647 -msgid "Min" -msgstr "Min" - -#: pro/fields/class-acf-field-flexible-content.php:662 -msgid "Max" -msgstr "Max" - -# @ acf -#: pro/fields/class-acf-field-flexible-content.php:705 -msgid "Minimum Layouts" -msgstr "Nombre minimum de mises-en-forme" - -# @ acf -#: pro/fields/class-acf-field-flexible-content.php:716 -msgid "Maximum Layouts" -msgstr "Nombre maximum de mises-en-forme" - -#: pro/fields/class-acf-field-flexible-content.php:727, -#: pro/fields/class-acf-field-repeater.php:293 -msgid "Button Label" -msgstr "Intitulé du bouton" - -#: pro/fields/class-acf-field-flexible-content.php:1710, -#: pro/fields/class-acf-field-repeater.php:918 -msgid "%s must be of type array or null." -msgstr "" - -#: pro/fields/class-acf-field-flexible-content.php:1721 -msgid "%1$s must contain at least %2$s %3$s layout." -msgid_plural "%1$s must contain at least %2$s %3$s layouts." -msgstr[0] "" -msgstr[1] "" - -#: pro/fields/class-acf-field-flexible-content.php:1737 -msgid "%1$s must contain at most %2$s %3$s layout." -msgid_plural "%1$s must contain at most %2$s %3$s layouts." -msgstr[0] "" -msgstr[1] "" - -#: pro/fields/class-acf-field-gallery.php:27 -msgid "" -"An interactive interface for managing a collection of attachments, such as " -"images." -msgstr "" - -# @ acf -#: pro/fields/class-acf-field-gallery.php:77 -msgid "Add Image to Gallery" -msgstr "Ajouter l’image à la galerie" - -#: pro/fields/class-acf-field-gallery.php:78 -msgid "Maximum selection reached" -msgstr "Nombre de sélections maximales atteint" - -#: pro/fields/class-acf-field-gallery.php:324 -msgid "Length" -msgstr "Longueur" - -#: pro/fields/class-acf-field-gallery.php:368 -msgid "Caption" -msgstr "Légende" - -#: pro/fields/class-acf-field-gallery.php:380 -msgid "Alt Text" -msgstr "Texte alternatif" - -#: pro/fields/class-acf-field-gallery.php:504 -msgid "Add to gallery" -msgstr "Ajouter à la galerie" - -# @ acf -#: pro/fields/class-acf-field-gallery.php:508 -msgid "Bulk actions" -msgstr "Actions de groupe" - -#: pro/fields/class-acf-field-gallery.php:509 -msgid "Sort by date uploaded" -msgstr "Ordonner par date d’import" - -#: pro/fields/class-acf-field-gallery.php:510 -msgid "Sort by date modified" -msgstr "Ranger par date de modification" - -# @ acf -#: pro/fields/class-acf-field-gallery.php:511 -msgid "Sort by title" -msgstr "Ranger par titre" - -#: pro/fields/class-acf-field-gallery.php:512 -msgid "Reverse current order" -msgstr "Inverser l’ordre actuel" - -# @ acf -#: pro/fields/class-acf-field-gallery.php:524 -msgid "Close" -msgstr "Fermer" - -# @ acf -#: pro/fields/class-acf-field-gallery.php:615 -msgid "Minimum Selection" -msgstr "Nombre minimum" - -# @ acf -#: pro/fields/class-acf-field-gallery.php:625 -msgid "Maximum Selection" -msgstr "Nombre maximum" - -#: pro/fields/class-acf-field-gallery.php:707 -msgid "Allowed file types" -msgstr "Types de fichiers autorisés" - -#: pro/fields/class-acf-field-gallery.php:727 -msgid "Insert" -msgstr "Insérer" - -#: pro/fields/class-acf-field-gallery.php:728 -msgid "Specify where new attachments are added" -msgstr "Définir où les nouveaux fichiers attachés sont ajoutés" - -#: pro/fields/class-acf-field-gallery.php:732 -msgid "Append to the end" -msgstr "Ajouter à la fin" - -#: pro/fields/class-acf-field-gallery.php:733 -msgid "Prepend to the beginning" -msgstr "Insérer au début" - -#: pro/fields/class-acf-field-repeater.php:66, -#: pro/fields/class-acf-field-repeater.php:463 -#, fuzzy -#| msgid "Minimum rows reached ({min} rows)" -msgid "Minimum rows not reached ({min} rows)" -msgstr "Nombre minimum d’éléments atteint ({min} éléments)" - -#: pro/fields/class-acf-field-repeater.php:67 -msgid "Maximum rows reached ({max} rows)" -msgstr "Nombre maximum d’éléments atteint ({max} éléments)" - -#: pro/fields/class-acf-field-repeater.php:68 -#, fuzzy -#| msgid "Error loading field." -msgid "Error loading page" -msgstr "Échec du chargement du champ." - -#: pro/fields/class-acf-field-repeater.php:69 -msgid "Order will be assigned upon save" -msgstr "" - -#: pro/fields/class-acf-field-repeater.php:196 -msgid "Useful for fields with a large number of rows." -msgstr "" - -#: pro/fields/class-acf-field-repeater.php:207 -#, fuzzy -#| msgid "Posts Page" -msgid "Rows Per Page" -msgstr "Page des articles" - -# @ acf -#: pro/fields/class-acf-field-repeater.php:208 -#, fuzzy -#| msgid "Select the taxonomy to be displayed" -msgid "Set the number of rows to be displayed on a page." -msgstr "Choisissez la taxonomie à afficher" - -# @ acf -#: pro/fields/class-acf-field-repeater.php:240 -msgid "Minimum Rows" -msgstr "Nombre minimum d’éléments" - -# @ acf -#: pro/fields/class-acf-field-repeater.php:251 -msgid "Maximum Rows" -msgstr "Nombre maximum d’éléments" - -#: pro/fields/class-acf-field-repeater.php:281 -msgid "Collapsed" -msgstr "Replié" - -#: pro/fields/class-acf-field-repeater.php:282 -msgid "Select a sub field to show when row is collapsed" -msgstr "Choisir un sous champ à afficher lorsque l’élément est replié" - -#: pro/fields/class-acf-field-repeater.php:1060 -#, fuzzy -#| msgid "Invalid nonce." -msgid "Invalid field key or name." -msgstr "Nonce invalide." - -#: pro/fields/class-acf-field-repeater.php:1069 -msgid "There was an error retrieving the field." -msgstr "" - -#: pro/fields/class-acf-repeater-table.php:369 -#, fuzzy -#| msgid "Drag to reorder" -msgid "Click to reorder" -msgstr "Faites glisser pour réorganiser" - -# @ acf -#: pro/fields/class-acf-repeater-table.php:402 -msgid "Add row" -msgstr "Ajouter un élément" - -#: pro/fields/class-acf-repeater-table.php:403 -#, fuzzy -#| msgid "Duplicate" -msgid "Duplicate row" -msgstr "Dupliquer" - -# @ acf -#: pro/fields/class-acf-repeater-table.php:404 -msgid "Remove row" -msgstr "Retirer l’élément" - -#: pro/fields/class-acf-repeater-table.php:448, -#: pro/fields/class-acf-repeater-table.php:465, -#: pro/fields/class-acf-repeater-table.php:466 -#, fuzzy -#| msgid "Current User" -msgid "Current Page" -msgstr "Utilisateur courant" - -#: pro/fields/class-acf-repeater-table.php:456, -#: pro/fields/class-acf-repeater-table.php:457 -#, fuzzy -#| msgid "Front Page" -msgid "First Page" -msgstr "Page d’accueil" - -#: pro/fields/class-acf-repeater-table.php:460, -#: pro/fields/class-acf-repeater-table.php:461 -#, fuzzy -#| msgid "Posts Page" -msgid "Previous Page" -msgstr "Page des articles" - -#. translators: 1: Current page, 2: Total pages. -#: pro/fields/class-acf-repeater-table.php:470 -msgctxt "paging" -msgid "%1$s of %2$s" -msgstr "" - -#: pro/fields/class-acf-repeater-table.php:477, -#: pro/fields/class-acf-repeater-table.php:478 -#, fuzzy -#| msgid "Front Page" -msgid "Next Page" -msgstr "Page d’accueil" - -#: pro/fields/class-acf-repeater-table.php:481, -#: pro/fields/class-acf-repeater-table.php:482 -#, fuzzy -#| msgid "Posts Page" -msgid "Last Page" -msgstr "Page des articles" - -#: pro/locations/class-acf-location-block.php:71 -#, fuzzy -#| msgid "No options pages exist" -msgid "No block types exist" -msgstr "Aucune page d’option n’existe" - -#: pro/locations/class-acf-location-options-page.php:70 -msgid "No options pages exist" -msgstr "Aucune page d’option n’existe" - -#: pro/admin/views/html-settings-updates.php:6 -msgid "Deactivate License" -msgstr "Désactiver la licence" - -# @ acf -#: pro/admin/views/html-settings-updates.php:6 -msgid "Activate License" -msgstr "Activer votre licence" - -# @ acf -#: pro/admin/views/html-settings-updates.php:16 -msgid "License Information" -msgstr "Informations sur la licence" - -#: pro/admin/views/html-settings-updates.php:34 -msgid "" -"To unlock updates, please enter your license key below. If you don't have a " -"licence key, please see details & pricing." -msgstr "" -"Pour débloquer les mises à jour, veuillez entrer votre clé de licence ci-" -"dessous. Si vous n’en avez pas, rendez-vous sur nos détails & tarifs." - -# @ acf -#: pro/admin/views/html-settings-updates.php:37 -msgid "License Key" -msgstr "Code de licence" - -#: pro/admin/views/html-settings-updates.php:22 -msgid "Your license key is defined in wp-config.php." -msgstr "" - -#: pro/admin/views/html-settings-updates.php:29 -#, fuzzy -#| msgid "Better Validation" -msgid "Retry Activation" -msgstr "Meilleure validation" - -# @ acf -#: pro/admin/views/html-settings-updates.php:61 -msgid "Update Information" -msgstr "Informations concernant les mises à jour" - -#: pro/admin/views/html-settings-updates.php:68 -msgid "Current Version" -msgstr "Version installée" - -#: pro/admin/views/html-settings-updates.php:76 -msgid "Latest Version" -msgstr "Version disponible" - -# @ acf -#: pro/admin/views/html-settings-updates.php:84 -msgid "Update Available" -msgstr "Mise à jour disponible" - -# @ wp3i -#: pro/admin/views/html-settings-updates.php:98 -msgid "Upgrade Notice" -msgstr "Informations de mise à niveau" - -#: pro/admin/views/html-settings-updates.php:126 -msgid "Check For Updates" -msgstr "" - -#: pro/admin/views/html-settings-updates.php:121 -#, fuzzy -#| msgid "Please enter your license key above to unlock updates" -msgid "Enter your license key to unlock updates" -msgstr "Entrez votre clé de licence ci-dessus pour activer les mises à jour" - -# @ acf -#: pro/admin/views/html-settings-updates.php:119 -msgid "Update Plugin" -msgstr "Mettre à jour l’extension" - -#: pro/admin/views/html-settings-updates.php:117 -#, fuzzy -#| msgid "Please enter your license key above to unlock updates" -msgid "Please reactivate your license to unlock updates" -msgstr "Entrez votre clé de licence ci-dessus pour activer les mises à jour" diff --git a/lang/acf-fr_FR.mo b/lang/acf-fr_FR.mo deleted file mode 100644 index 705172f..0000000 Binary files a/lang/acf-fr_FR.mo and /dev/null differ diff --git a/lang/acf-fr_FR.po b/lang/acf-fr_FR.po deleted file mode 100644 index 371dba9..0000000 --- a/lang/acf-fr_FR.po +++ /dev/null @@ -1,6400 +0,0 @@ -# Advanced Custom Fields Translations are a combination of translate.wordpress.org contributions, -# combined with user contributed strings for the PRO version. -# Translations from translate.wordpress.org take priority over translations in this file. -# translate.wordpress.org contributions are synced at the time of each release. -# -# If you would like to contribute translations, please visit -# https://translate.wordpress.org/projects/wp-plugins/advanced-custom-fields/stable/ -# -# For additional ACF PRO strings, please submit a pull request over on the ACF GitHub repo at -# http://github.com/advancedcustomfields/acf using the .pot (and any existing .po) files in /lang/pro/ -# -# This file is distributed under the same license as Advanced Custom Fields. -msgid "" -msgstr "" -"PO-Revision-Date: 2023-11-28T09:14:32+00:00\n" -"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n" -"Language: fr_FR\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: gettext\n" -"Project-Id-Version: Advanced Custom Fields\n" - -#: includes/admin/views/global/navigation.php:221 -msgid "Renew ACF PRO License" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:17 -msgid "Renew License" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:14 -msgid "Manage License" -msgstr "" - -#: includes/admin/views/acf-field-group/options.php:102 -msgid "'High' position not supported in the Block Editor" -msgstr "" - -#: includes/admin/views/options-page-preview.php:30 -msgid "Upgrade to ACF PRO" -msgstr "" - -#. translators: %s URL to ACF options pages documentation -#: includes/admin/views/options-page-preview.php:7 -msgid "" -"ACF options pages are custom admin " -"pages for managing global settings via fields. You can create multiple pages " -"and sub-pages." -msgstr "" - -#: includes/admin/views/global/header.php:35 -msgid "Add Options Page" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:703 -msgid "In the editor used as the placeholder of the title." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:702 -msgid "Title Placeholder" -msgstr "" - -#: includes/admin/views/global/navigation.php:97 -msgid "4 Months Free" -msgstr "" - -#. translators: %s - A singular label for a post type or taxonomy. -#: includes/admin/views/global/form-top.php:56 -msgid " (Duplicated from %s)" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:298 -msgid "Select Options Pages" -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:107 -msgid "Duplicate taxonomy" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:106 -#: includes/admin/post-types/admin-taxonomy.php:106 -msgid "Create taxonomy" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:105 -msgid "Duplicate post type" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:104 -#: includes/admin/post-types/admin-taxonomy.php:108 -msgid "Create post type" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:103 -#: includes/admin/post-types/admin-taxonomy.php:105 -msgid "Link field groups" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:102 -#: includes/admin/post-types/admin-taxonomy.php:104 -msgid "Add fields" -msgstr "Ajouter des champs" - -#: includes/admin/post-types/admin-field-group.php:121 -#: assets/build/js/acf-field-group.js:2753 -#: assets/build/js/acf-field-group.js:3236 -msgid "This Field" -msgstr "Ce champ" - -#: includes/admin/admin.php:267 -msgid "ACF PRO" -msgstr "ACF Pro" - -#: includes/admin/admin.php:265 -msgid "Feedback" -msgstr "Retour" - -#: includes/admin/admin.php:263 -msgid "Support" -msgstr "Support" - -#. translators: This text is prepended by a link to ACF's website, and appended -#. by a link to WP Engine's website. -#: includes/admin/admin.php:238 -msgid "is developed and maintained by" -msgstr "est développé et maintenu par" - -#. translators: %s - either "post type" or "taxonomy" -#: includes/admin/admin-internal-post-type.php:321 -msgid "Add this %s to the location rules of the selected field groups." -msgstr "" - -#. translators: %s the URL to ACF's bidirectional relationship documentation -#: includes/acf-bidirectional-functions.php:271 -msgid "" -"Enabling the bidirectional setting allows you to update a value in the " -"target fields for each value selected for this field, adding or removing the " -"Post ID, Taxonomy ID or User ID of the item being updated. For more " -"information, please read the documentation." -msgstr "" - -#: includes/acf-bidirectional-functions.php:247 -msgid "" -"Select field(s) to store the reference back to the item being updated. You " -"may select this field. Target fields must be compatible with where this " -"field is being displayed. For example, if this field is displayed on a " -"Taxonomy, your target field should be of type Taxonomy" -msgstr "" - -#: includes/acf-bidirectional-functions.php:246 -msgid "Target Field" -msgstr "" - -#: includes/acf-bidirectional-functions.php:220 -msgid "Update a field on the selected values, referencing back to this ID" -msgstr "" - -#: includes/acf-bidirectional-functions.php:219 -msgid "Bidirectional" -msgstr "" - -#. translators: %s A field type name, such as "Relationship" -#: includes/acf-bidirectional-functions.php:192 -msgid "%s Field" -msgstr "" - -#: includes/fields/class-acf-field-page_link.php:517 -#: includes/fields/class-acf-field-post_object.php:426 -#: includes/fields/class-acf-field-select.php:407 -#: includes/fields/class-acf-field-user.php:82 -msgid "Select Multiple" -msgstr "" - -#: includes/admin/views/global/navigation.php:233 -msgid "WP Engine logo" -msgstr "Logo WP Engine" - -#: includes/admin/views/acf-taxonomy/basic-settings.php:58 -msgid "Lower case letters, underscores and dashes only, Max 32 characters." -msgstr "" -"Lettres minuscules, tirets hauts et tirets bas uniquement. Maximum 32 " -"caractères." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1136 -msgid "The capability name for assigning terms of this taxonomy." -msgstr "Le nom de la permission pour assigner les termes de cette taxonomie." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1135 -msgid "Assign Terms Capability" -msgstr "Permission d’assigner les termes" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1119 -msgid "The capability name for deleting terms of this taxonomy." -msgstr "Le nom de la permission pour supprimer les termes de cette taxonomie." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1118 -msgid "Delete Terms Capability" -msgstr "Permission de supprimer les termes" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1102 -msgid "The capability name for editing terms of this taxonomy." -msgstr "Le nom de la permission pour modifier les termes de cette taxonomie." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1101 -msgid "Edit Terms Capability" -msgstr "Permission de modifier les termes" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1085 -msgid "The capability name for managing terms of this taxonomy." -msgstr "Le nom de la permission pour gérer les termes de cette taxonomie." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1084 -msgid "Manage Terms Capability" -msgstr "Permission de gérer les termes" - -#: includes/admin/views/acf-post-type/advanced-settings.php:886 -msgid "" -"Sets whether posts should be excluded from search results and taxonomy " -"archive pages." -msgstr "" -"Définit si les publications doivent être exclues des résultats de recherche " -"et des pages d’archive de taxonomie." - -#: includes/admin/views/acf-field-group/pro-features.php:74 -msgid "More Tools from WP Engine" -msgstr "Autres outils de WP Engine" - -#. translators: %s - WP Engine logo -#: includes/admin/views/acf-field-group/pro-features.php:69 -msgid "Built for those that build with WordPress, by the team at %s" -msgstr "Conçu pour ceux qui construisent avec WordPress, par l’équipe %s" - -#: includes/admin/views/acf-field-group/pro-features.php:6 -msgid "View Pricing & Upgrade" -msgstr "Voir les tarifs & mettre à niveau" - -#: includes/admin/views/acf-field-group/pro-features.php:3 -#: includes/admin/views/options-page-preview.php:29 -msgid "Learn More" -msgstr "En Savoir Plus" - -#: includes/admin/views/acf-field-group/pro-features.php:28 -msgid "" -"Speed up your workflow and develop better websites with features like ACF " -"Blocks and Options Pages, and sophisticated field types like Repeater, " -"Flexible Content, Clone, and Gallery." -msgstr "" -"Accélérez votre productivité et développez de meilleurs sites avec des " -"fonctionnalités comme les blocs ACF et les pages d’options, ainsi que des " -"champs avancés comme répéteur, contenu flexible, clones et galerie." - -#: includes/admin/views/acf-field-group/pro-features.php:2 -msgid "Unlock Advanced Features and Build Even More with ACF PRO" -msgstr "" -"Débloquer les fonctionnalités avancées et aller encore plus loin avec ACF PRO" - -#. translators: %s - singular label of post type/taxonomy, i.e. "Movie"/"Genre" -#: includes/admin/views/global/form-top.php:19 -msgid "%s fields" -msgstr "%s champs" - -#: includes/admin/post-types/admin-taxonomies.php:293 -msgid "No terms" -msgstr "Aucun terme" - -#: includes/admin/post-types/admin-taxonomies.php:266 -msgid "No post types" -msgstr "Aucun type de publication" - -#: includes/admin/post-types/admin-post-types.php:289 -msgid "No posts" -msgstr "Aucun article" - -#: includes/admin/post-types/admin-post-types.php:263 -msgid "No taxonomies" -msgstr "Aucune taxonomie" - -#: includes/admin/post-types/admin-post-types.php:208 -#: includes/admin/post-types/admin-taxonomies.php:208 -msgid "No field groups" -msgstr "Aucun groupe de champs" - -#: includes/admin/post-types/admin-field-groups.php:281 -msgid "No fields" -msgstr "Aucun champ" - -#: includes/admin/post-types/admin-field-groups.php:154 -#: includes/admin/post-types/admin-post-types.php:172 -#: includes/admin/post-types/admin-taxonomies.php:172 -msgid "No description" -msgstr "Aucune description" - -#: includes/fields/class-acf-field-page_link.php:484 -#: includes/fields/class-acf-field-post_object.php:389 -#: includes/fields/class-acf-field-relationship.php:601 -msgid "Any post status" -msgstr "Tout état de publication" - -#: includes/post-types/class-acf-taxonomy.php:284 -msgid "" -"This taxonomy key is already in use by another taxonomy registered outside " -"of ACF and cannot be used." -msgstr "" -"Cette clé de taxonomie est déjà utilisée par une autre taxonomie enregistrée " -"en dehors d’ACF et ne peut pas être utilisée." - -#: includes/post-types/class-acf-taxonomy.php:279 -msgid "" -"This taxonomy key is already in use by another taxonomy in ACF and cannot be " -"used." -msgstr "" -"Cette clé de taxonomie est déjà utilisée par une autre taxonomie dans ACF et " -"ne peut pas être utilisée." - -#: includes/post-types/class-acf-taxonomy.php:252 -msgid "" -"The taxonomy key must only contain lower case alphanumeric characters, " -"underscores or dashes." -msgstr "" -"La clé de taxonomie doit uniquement contenir des caractères alphanumériques, " -"des tirets bas ou des tirets." - -#: includes/post-types/class-acf-taxonomy.php:247 -msgid "The taxonomy key must be under 32 characters." -msgstr "La clé de taxonomie doit comporter moins de 32 caractères." - -#: includes/post-types/class-acf-taxonomy.php:99 -msgid "No Taxonomies found in Trash" -msgstr "Aucune taxonomie trouvée dans la corbeille" - -#: includes/post-types/class-acf-taxonomy.php:98 -msgid "No Taxonomies found" -msgstr "Aucune taxonomie trouvée" - -#: includes/post-types/class-acf-taxonomy.php:97 -msgid "Search Taxonomies" -msgstr "Rechercher des taxonomies" - -#: includes/post-types/class-acf-taxonomy.php:96 -msgid "View Taxonomy" -msgstr "Afficher la taxonomie" - -#: includes/post-types/class-acf-taxonomy.php:95 -msgid "New Taxonomy" -msgstr "Nouvelle taxonomie" - -#: includes/post-types/class-acf-taxonomy.php:94 -msgid "Edit Taxonomy" -msgstr "Modifier la taxonomie" - -#: includes/post-types/class-acf-taxonomy.php:93 -msgid "Add New Taxonomy" -msgstr "Ajouter une nouvelle taxonomie" - -#: includes/post-types/class-acf-post-type.php:100 -msgid "No Post Types found in Trash" -msgstr "Aucun type de publication trouvé dans la corbeille" - -#: includes/post-types/class-acf-post-type.php:99 -msgid "No Post Types found" -msgstr "Aucun type de publication trouvé" - -#: includes/post-types/class-acf-post-type.php:98 -msgid "Search Post Types" -msgstr "Rechercher des types de publication" - -#: includes/post-types/class-acf-post-type.php:97 -msgid "View Post Type" -msgstr "Voir le type de publication" - -#: includes/post-types/class-acf-post-type.php:96 -msgid "New Post Type" -msgstr "Nouveau type de publication" - -#: includes/post-types/class-acf-post-type.php:95 -msgid "Edit Post Type" -msgstr "Modifier le type de publication" - -#: includes/post-types/class-acf-post-type.php:94 -msgid "Add New Post Type" -msgstr "Ajouter un nouveau type de publication personnalisé" - -#: includes/post-types/class-acf-post-type.php:361 -msgid "" -"This post type key is already in use by another post type registered outside " -"of ACF and cannot be used." -msgstr "" -"Cette clé de type de publication est déjà utilisée par un autre type de " -"publication enregistré en dehors d’ACF et ne peut pas être utilisée." - -#: includes/post-types/class-acf-post-type.php:356 -msgid "" -"This post type key is already in use by another post type in ACF and cannot " -"be used." -msgstr "" -"Cette clé de type de publication est déjà utilisée par un autre type de " -"publication dans ACF et ne peut pas être utilisée." - -#. translators: %s a link to WordPress.org's Reserved Terms page -#: includes/post-types/class-acf-post-type.php:335 -#: includes/post-types/class-acf-taxonomy.php:258 -msgid "" -"This field must not be a WordPress reserved " -"term." -msgstr "" -"Ce champ ne doit pas être un terme réservé WordPress." - -#: includes/post-types/class-acf-post-type.php:329 -msgid "" -"The post type key must only contain lower case alphanumeric characters, " -"underscores or dashes." -msgstr "" -"La clé du type de publication doit contenir uniquement des caractères " -"alphanumériques, des tirets bas ou des tirets." - -#: includes/post-types/class-acf-post-type.php:324 -msgid "The post type key must be under 20 characters." -msgstr "La clé du type de publication doit comporter moins de 20 caractères." - -#: includes/fields/class-acf-field-wysiwyg.php:27 -msgid "We do not recommend using this field in ACF Blocks." -msgstr "Nous vous déconseillons d’utiliser ce champ dans les blocs ACF." - -#: includes/fields/class-acf-field-wysiwyg.php:27 -msgid "" -"Displays the WordPress WYSIWYG editor as seen in Posts and Pages allowing " -"for a rich text-editing experience that also allows for multimedia content." -msgstr "" -"Affiche l’éditeur WordPress WYSIWYG tel qu’il apparaît dans les articles et " -"pages, permettant une expérience d’édition de texte riche qui autorise " -"également du contenu multimédia." - -#: includes/fields/class-acf-field-wysiwyg.php:25 -msgid "WYSIWYG Editor" -msgstr "Éditeur WYSIWYG" - -#: includes/fields/class-acf-field-user.php:17 -msgid "" -"Allows the selection of one or more users which can be used to create " -"relationships between data objects." -msgstr "" -"Autorise la sélection d’un ou plusieurs comptes pouvant être utilisés pour " -"créer des relations entre les objets de données." - -#: includes/fields/class-acf-field-url.php:26 -msgid "A text input specifically designed for storing web addresses." -msgstr "Une saisie de texte spécialement conçue pour stocker des adresses web." - -#: includes/fields/class-acf-field-url.php:25 -msgid "URL" -msgstr "URL" - -#: includes/fields/class-acf-field-true_false.php:27 -msgid "" -"A toggle that allows you to pick a value of 1 or 0 (on or off, true or " -"false, etc). Can be presented as a stylized switch or checkbox." -msgstr "" -"Une permutation qui vous permet de choisir une valeur de 1 ou 0 (actif ou " -"inactif, vrai ou faux, etc.). Peut être présenté sous la forme de " -"commutateur stylisé ou de case à cocher." - -#: includes/fields/class-acf-field-time_picker.php:27 -msgid "" -"An interactive UI for picking a time. The time format can be customized " -"using the field settings." -msgstr "" -"Une interface utilisateur interactive pour choisir une heure. Le format de " -"retour de date peut être personnalisé à l’aide des réglages du champ." - -#: includes/fields/class-acf-field-textarea.php:26 -msgid "A basic textarea input for storing paragraphs of text." -msgstr "" -"Une entrée de zone de texte de base pour stocker des paragraphes de texte." - -#: includes/fields/class-acf-field-text.php:26 -msgid "A basic text input, useful for storing single string values." -msgstr "" -"Une entrée de texte de base, utile pour stocker des valeurs de chaîne unique." - -#: includes/fields/class-acf-field-taxonomy.php:22 -msgid "" -"Allows the selection of one or more taxonomy terms based on the criteria and " -"options specified in the fields settings." -msgstr "" - -#: includes/fields/class-acf-field-tab.php:28 -msgid "" -"Allows you to group fields into tabbed sections in the edit screen. Useful " -"for keeping fields organized and structured." -msgstr "" - -#: includes/fields/class-acf-field-select.php:27 -msgid "A dropdown list with a selection of choices that you specify." -msgstr "Une liste déroulante avec une sélection de choix que vous spécifiez." - -#: includes/fields/class-acf-field-relationship.php:19 -msgid "" -"A dual-column interface to select one or more posts, pages, or custom post " -"type items to create a relationship with the item that you're currently " -"editing. Includes options to search and filter." -msgstr "" - -#: includes/fields/class-acf-field-range.php:26 -msgid "" -"An input for selecting a numerical value within a specified range using a " -"range slider element." -msgstr "" - -#: includes/fields/class-acf-field-radio.php:27 -msgid "" -"A group of radio button inputs that allows the user to make a single " -"selection from values that you specify." -msgstr "" - -#: includes/fields/class-acf-field-post_object.php:19 -msgid "" -"An interactive and customizable UI for picking one or many posts, pages or " -"post type items with the option to search. " -msgstr "" -"Une interface utilisateur interactive et personnalisable pour choisir un ou " -"plusieurs articles, pages ou éléments de type publication avec la " -"possibilité de rechercher. " - -#: includes/fields/class-acf-field-password.php:26 -msgid "An input for providing a password using a masked field." -msgstr "Une entrée pour fournir un mot de passe à l’aide d’un champ masqué." - -#: includes/fields/class-acf-field-page_link.php:476 -#: includes/fields/class-acf-field-post_object.php:381 -#: includes/fields/class-acf-field-relationship.php:593 -msgid "Filter by Post Status" -msgstr "Filtrer par état de publication" - -#: includes/fields/class-acf-field-page_link.php:27 -msgid "" -"An interactive dropdown to select one or more posts, pages, custom post type " -"items or archive URLs, with the option to search." -msgstr "" - -#: includes/fields/class-acf-field-oembed.php:27 -msgid "" -"An interactive component for embedding videos, images, tweets, audio and " -"other content by making use of the native WordPress oEmbed functionality." -msgstr "" - -#: includes/fields/class-acf-field-number.php:26 -msgid "An input limited to numerical values." -msgstr "Une entrée limitée à des valeurs numériques." - -#: includes/fields/class-acf-field-message.php:28 -msgid "" -"Used to display a message to editors alongside other fields. Useful for " -"providing additional context or instructions around your fields." -msgstr "" -"Utilisé pour afficher un message aux éditeurs à côté d’autres champs. Utile " -"pour fournir un contexte ou des instructions supplémentaires concernant vos " -"champs." - -#: includes/fields/class-acf-field-link.php:27 -msgid "" -"Allows you to specify a link and its properties such as title and target " -"using the WordPress native link picker." -msgstr "" -"Permet de spécifier un lien et ses propriétés, telles que le titre et la " -"cible en utilisant le sélecteur de liens de WordPress." - -#: includes/fields/class-acf-field-image.php:27 -msgid "Uses the native WordPress media picker to upload, or choose images." -msgstr "" -"Utilise le sélecteur de média natif de WordPress pour téléverser ou choisir " -"des images." - -#: includes/fields/class-acf-field-group.php:27 -msgid "" -"Provides a way to structure fields into groups to better organize the data " -"and the edit screen." -msgstr "" -"Permet de structurer les champs en groupes afin de mieux organiser les " -"données et l’écran d‘édition." - -#: includes/fields/class-acf-field-google-map.php:27 -msgid "" -"An interactive UI for selecting a location using Google Maps. Requires a " -"Google Maps API key and additional configuration to display correctly." -msgstr "" - -#: includes/fields/class-acf-field-file.php:27 -msgid "Uses the native WordPress media picker to upload, or choose files." -msgstr "" -"Utilise le sélecteur de médias WordPress natif pour téléverser ou choisir " -"des fichiers." - -#: includes/fields/class-acf-field-email.php:26 -msgid "A text input specifically designed for storing email addresses." -msgstr "" -"Une saisie de texte spécialement conçue pour stocker des adresses e-mail." - -#: includes/fields/class-acf-field-date_time_picker.php:27 -msgid "" -"An interactive UI for picking a date and time. The date return format can be " -"customized using the field settings." -msgstr "" -"Une interface utilisateur interactive pour choisir une date et un horaire. " -"Le format de la date retour peut être personnalisé à l’aide des réglages du " -"champ." - -#: includes/fields/class-acf-field-date_picker.php:27 -msgid "" -"An interactive UI for picking a date. The date return format can be " -"customized using the field settings." -msgstr "" -"Une interface utilisateur interactive pour choisir une date. Le format de la " -"date retour peut être personnalisé en utilisant les champs de réglages." - -#: includes/fields/class-acf-field-color_picker.php:27 -msgid "An interactive UI for selecting a color, or specifying a Hex value." -msgstr "" -"Une interface utilisateur interactive pour sélectionner une couleur ou " -"spécifier la valeur hexa." - -#: includes/fields/class-acf-field-checkbox.php:27 -msgid "" -"A group of checkbox inputs that allow the user to select one, or multiple " -"values that you specify." -msgstr "" -"Un groupe de case à cocher autorisant l’utilisateur/utilisatrice à " -"sélectionner une ou plusieurs valeurs que vous spécifiez." - -#: includes/fields/class-acf-field-button-group.php:26 -msgid "" -"A group of buttons with values that you specify, users can choose one option " -"from the values provided." -msgstr "" -"Un groupe de boutons avec des valeurs que vous spécifiez, les utilisateurs/" -"utilisatrices peuvent choisir une option parmi les valeurs fournies." - -#: includes/fields/class-acf-field-accordion.php:27 -msgid "" -"Allows you to group and organize custom fields into collapsable panels that " -"are shown while editing content. Useful for keeping large datasets tidy." -msgstr "" -"Autorise à regrouper et organiser les champs personnalisés dans des volets " -"dépliants qui s’affichent lors de la modification du contenu. Utile pour " -"garder de grands ensembles de données ordonnés." - -#: includes/fields.php:475 -msgid "" -"This provides a solution for repeating content such as slides, team members, " -"and call-to-action tiles, by acting as a parent to a set of subfields which " -"can be repeated again and again." -msgstr "" -"Cela propose une solution pour dupliquer des contenus tels que des " -"diapositive, des membres de l’équipe et des boutons d’appel à l‘action, en " -"agissant comme un parent pour un ensemble de sous-champs qui peuvent être " -"répétés à l’infini." - -#: includes/fields.php:465 -msgid "" -"This provides an interactive interface for managing a collection of " -"attachments. Most settings are similar to the Image field type. Additional " -"settings allow you to specify where new attachments are added in the gallery " -"and the minimum/maximum number of attachments allowed." -msgstr "" -"Cela propose une interface interactive permettant de gérer une collection de " -"fichiers joints. La plupart des réglages sont similaires à ceux du champ " -"Image. Des réglages supplémentaires vous autorise à spécifier l’endroit où " -"les nouveaux fichiers joints sont ajoutés dans la galerie et le nombre " -"minimum/maximum de fichiers joints autorisées." - -#: includes/fields.php:455 -msgid "" -"This provides a simple, structured, layout-based editor. The Flexible " -"Content field allows you to define, create and manage content with total " -"control by using layouts and subfields to design the available blocks." -msgstr "" - -#: includes/fields.php:445 -msgid "" -"This allows you to select and display existing fields. It does not duplicate " -"any fields in the database, but loads and displays the selected fields at " -"run-time. The Clone field can either replace itself with the selected fields " -"or display the selected fields as a group of subfields." -msgstr "" - -#: includes/fields.php:442 -msgctxt "noun" -msgid "Clone" -msgstr "Cloner" - -#: includes/admin/views/global/navigation.php:86 includes/fields.php:357 -msgid "PRO" -msgstr "Pro" - -#: includes/fields.php:355 includes/fields.php:412 -msgid "Advanced" -msgstr "Avancé" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:85 -msgid "JSON (newer)" -msgstr "JSON (plus récent)" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:81 -msgid "Original" -msgstr "Original" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:55 -msgid "Invalid post ID." -msgstr "ID de publication invalide." - -#: includes/ajax/class-acf-ajax-local-json-diff.php:47 -msgid "Invalid post type selected for review." -msgstr "Type de publication sélectionné pour révision invalide." - -#: includes/admin/views/global/navigation.php:186 -msgid "More" -msgstr "Plus" - -#: includes/admin/views/browse-fields-modal.php:86 -msgid "Tutorial" -msgstr "Tutoriel" - -#: includes/admin/views/browse-fields-modal.php:75 -msgid "Available with ACF PRO" -msgstr "Disponible avec ACF Pro" - -#: includes/admin/views/browse-fields-modal.php:63 -msgid "Select Field" -msgstr "Sélectionner le champ" - -#. translators: %s: A link to the popular fields used in ACF -#: includes/admin/views/browse-fields-modal.php:50 -msgid "Try a different search term or browse %s" -msgstr "Essayez un autre terme de recherche ou parcourez %s" - -#: includes/admin/views/browse-fields-modal.php:47 -msgid "Popular fields" -msgstr "Champs populaires" - -#. translators: %s: The invalid search term -#: includes/admin/views/browse-fields-modal.php:40 -msgid "No search results for '%s'" -msgstr "Aucun résultat de recherche pour « %s »" - -#: includes/admin/views/browse-fields-modal.php:13 -msgid "Search fields..." -msgstr "Rechercher des champs…" - -#: includes/admin/views/browse-fields-modal.php:11 -msgid "Select Field Type" -msgstr "Sélectionner le type de champ" - -#: includes/admin/views/browse-fields-modal.php:4 -msgid "Popular" -msgstr "Populaire" - -#: includes/admin/views/acf-taxonomy/list-empty.php:7 -msgid "Add Taxonomy" -msgstr "Ajouter une taxonomie" - -#: includes/admin/views/acf-taxonomy/list-empty.php:6 -msgid "Create custom taxonomies to classify post type content" -msgstr "" -"Créer des taxonomies personnalisées pour classer le contenu du type de " -"publication" - -#: includes/admin/views/acf-taxonomy/list-empty.php:5 -msgid "Add Your First Taxonomy" -msgstr "Ajouter votre première taxonomie" - -#: includes/admin/views/acf-taxonomy/basic-settings.php:122 -msgid "Hierarchical taxonomies can have descendants (like categories)." -msgstr "" -"Les taxonomies hiérarchiques peuvent avoir des enfants (comme les " -"catégories)." - -#: includes/admin/views/acf-taxonomy/basic-settings.php:107 -msgid "Makes a taxonomy visible on the frontend and in the admin dashboard." -msgstr "" -"Rend une taxonomie visible sur l’interface publique et dans le tableau de " -"bord d’administration." - -#: includes/admin/views/acf-taxonomy/basic-settings.php:91 -msgid "One or many post types that can be classified with this taxonomy." -msgstr "" -"Un ou plusieurs types de publication peuvant être classés avec cette " -"taxonomie." - -#. translators: example taxonomy -#: includes/admin/views/acf-taxonomy/basic-settings.php:60 -msgid "genre" -msgstr "genre" - -#. translators: example taxonomy -#: includes/admin/views/acf-taxonomy/basic-settings.php:42 -msgid "Genre" -msgstr "Genre" - -#. translators: example taxonomy -#: includes/admin/views/acf-taxonomy/basic-settings.php:25 -msgid "Genres" -msgstr "Genres" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1211 -msgid "" -"Optional custom controller to use instead of `WP_REST_Terms_Controller `." -msgstr "" -"Contrôleur personnalisé facultatif à utiliser à la place de " -"« WP_REST_Terms_Controller »." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1155 -msgid "Expose this post type in the REST API." -msgstr "Exposez ce type de publication dans l’API REST." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1055 -msgid "Customize the query variable name" -msgstr "Personnaliser le nom de la variable de requête" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1028 -msgid "" -"Terms can be accessed using the non-pretty permalink, e.g., {query_var}" -"={term_slug}." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:981 -msgid "Parent-child terms in URLs for hierarchical taxonomies." -msgstr "Termes parent-enfant dans les URL pour les taxonomies hiérarchiques." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:941 -msgid "Customize the slug used in the URL" -msgstr "Personnaliser le slug utilisé dans l’URL" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:924 -msgid "Permalinks for this taxonomy are disabled." -msgstr "Les permaliens sont désactivés pour cette taxonomie." - -#. translators: this string will be appended with the new permalink structure. -#: includes/admin/views/acf-taxonomy/advanced-settings.php:921 -msgid "" -"Rewrite the URL using the taxonomy key as the slug. Your permalink structure " -"will be" -msgstr "" -"Réécrire l’URL en utilisant la clé de taxonomie comme slug. Votre structure " -"de permalien sera" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:913 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1030 -#: includes/admin/views/acf-taxonomy/basic-settings.php:57 -msgid "Taxonomy Key" -msgstr "Clé de taxonomie" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:911 -msgid "Select the type of permalink to use for this taxonomy." -msgstr "Sélectionnez le type de permalien à utiliser pour cette taxonomie." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:896 -msgid "Display a column for the taxonomy on post type listing screens." -msgstr "" -"Affichez une colonne pour la taxonomie sur les écrans de liste de type de " -"publication." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:895 -msgid "Show Admin Column" -msgstr "Afficher la colonne « Admin »" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:882 -msgid "Show the taxonomy in the quick/bulk edit panel." -msgstr "Afficher la taxonomie dans le panneau de modification rapide/groupée." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:881 -msgid "Quick Edit" -msgstr "Modification rapide" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:868 -msgid "List the taxonomy in the Tag Cloud Widget controls." -msgstr "" -"Lister la taxonomie dans les contrôles du widget « Nuage d’étiquettes »." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:867 -msgid "Tag Cloud" -msgstr "Nuage d’étiquettes" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:824 -msgid "" -"A PHP function name to be called for sanitizing taxonomy data saved from a " -"meta box." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:823 -msgid "Meta Box Sanitization Callback" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:805 -msgid "" -"A PHP function name to be called to handle the content of a meta box on your " -"taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:804 -msgid "Register Meta Box Callback" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:763 -msgid "No Meta Box" -msgstr "Aucune boîte méta" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:762 -msgid "Custom Meta Box" -msgstr "Boîte méta personnalisée" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:758 -msgid "" -"Controls the meta box on the content editor screen. By default, the " -"Categories meta box is shown for hierarchical taxonomies, and the Tags meta " -"box is shown for non-hierarchical taxonomies." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:757 -msgid "Meta Box" -msgstr "Boîte méta" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:746 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:767 -msgid "Categories Meta Box" -msgstr "Boîte méta des catégories" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:745 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:766 -msgid "Tags Meta Box" -msgstr "Boîte méta des étiquettes" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:704 -msgid "A link to a tag" -msgstr "Un lien vers une étiquette" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:703 -msgid "Describes a navigation link block variation used in the block editor." -msgstr "" -"Décrit une variante de bloc de lien de navigation utilisée dans l’éditeur de " -"blocs." - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:698 -msgid "A link to a %s" -msgstr "Un lien vers un %s" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:683 -msgid "Tag Link" -msgstr "Lien de l’étiquette" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:682 -msgid "" -"Assigns a title for navigation link block variation used in the block editor." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:663 -msgid "← Go to tags" -msgstr "← Aller aux étiquettes" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:662 -msgid "" -"Assigns the text used to link back to the main index after updating a term." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:661 -msgid "Back To Items" -msgstr "Retour aux éléments" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:657 -msgid "← Go to %s" -msgstr "← Aller à « %s »" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:642 -msgid "Tags list" -msgstr "Liste des étiquettes" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:641 -msgid "Assigns text to the table hidden heading." -msgstr "Assigne du texte au titre masqué du tableau." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:622 -msgid "Tags list navigation" -msgstr "Navigation de la liste des étiquettes" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:621 -msgid "Assigns text to the table pagination hidden heading." -msgstr "Affecte du texte au titre masqué de pagination de tableau." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:597 -msgid "Filter by category" -msgstr "Filtrer par catégorie" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:596 -msgid "Assigns text to the filter button in the posts lists table." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:595 -msgid "Filter By Item" -msgstr "Filtrer par élément" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:591 -msgid "Filter by %s" -msgstr "Filtrer par %s" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:575 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:576 -msgid "" -"The description is not prominent by default; however, some themes may show " -"it." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:574 -msgid "Describes the Description field on the Edit Tags screen." -msgstr "" -"Décrit le champ « Description » sur l’écran « Modifier les étiquettes »." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:573 -msgid "Description Field Description" -msgstr "Description du champ « Description »" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:554 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:555 -msgid "" -"Assign a parent term to create a hierarchy. The term Jazz, for example, " -"would be the parent of Bebop and Big Band" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:553 -msgid "Describes the Parent field on the Edit Tags screen." -msgstr "Décrit le champ parent sur l’écran « Modifier les étiquettes »." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:552 -msgid "Parent Field Description" -msgstr "Description du champ « Parent »" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:538 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:539 -msgid "" -"The \"slug\" is the URL-friendly version of the name. It is usually all " -"lower case and contains only letters, numbers, and hyphens." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:537 -msgid "Describes the Slug field on the Edit Tags screen." -msgstr "Décrit le slug du champ sur l’écran « Modifier les étiquettes »." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:536 -msgid "Slug Field Description" -msgstr "Description du champ « Slug »" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:522 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:523 -msgid "The name is how it appears on your site" -msgstr "Le nom est la façon dont il apparaît sur votre site" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:521 -msgid "Describes the Name field on the Edit Tags screen." -msgstr "Décrit le champ « Nom » sur l’écran « Modifier les étiquettes »." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:520 -msgid "Name Field Description" -msgstr "Description du champ « Nom »" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:507 -msgid "No tags" -msgstr "Aucune étiquette" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:506 -msgid "" -"Assigns the text displayed in the posts and media list tables when no tags " -"or categories are available." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:505 -msgid "No Terms" -msgstr "Aucun terme" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:501 -msgid "No %s" -msgstr "Aucun %s" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:486 -msgid "No tags found" -msgstr "Aucune étiquette trouvée" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:485 -msgid "" -"Assigns the text displayed when clicking the 'choose from most used' text in " -"the taxonomy meta box when no tags are available, and assigns the text used " -"in the terms list table when there are no items for a taxonomy." -msgstr "" -"Assigne le texte affiché lorsque vous cliquez sur le texte « choisir parmi " -"les plus utilisés » dans la boîte de méta de taxonomie lorsqu’aucune " -"étiquette n’est disponible, et affecte le texte utilisé dans le tableau de " -"liste des termes lorsqu’il n’y a pas d’élément pour une taxonomie." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:484 -msgid "Not Found" -msgstr "Non trouvé" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:463 -msgid "Assigns text to the Title field of the Most Used tab." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:462 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:464 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:465 -msgid "Most Used" -msgstr "Les plus utilisés" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:444 -msgid "Choose from the most used tags" -msgstr "Choisir parmi les étiquettes les plus utilisées" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:443 -msgid "" -"Assigns the 'choose from most used' text used in the meta box when " -"JavaScript is disabled. Only used on non-hierarchical taxonomies." -msgstr "" -"Attribue le texte « choisir parmi les plus utilisés » utilisé dans la méta-" -"zone lorsque JavaScript est désactivé. Utilisé uniquement sur les taxonomies " -"non hiérarchiques." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:442 -msgid "Choose From Most Used" -msgstr "Choisir parmi les plus utilisés" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:438 -msgid "Choose from the most used %s" -msgstr "Choisir parmi les %s les plus utilisés" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:418 -msgid "Add or remove tags" -msgstr "Ajouter ou retirer des étiquettes" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:417 -msgid "" -"Assigns the add or remove items text used in the meta box when JavaScript is " -"disabled. Only used on non-hierarchical taxonomies" -msgstr "" -"Assigne le texte d’ajout ou de suppression d’éléments utilisé dans la boîte " -"méta lorsque JavaScript est désactivé. Utilisé uniquement sur les taxonomies " -"non hiérarchiques" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:416 -msgid "Add Or Remove Items" -msgstr "Ajouter ou supprimer des éléments" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:412 -msgid "Add or remove %s" -msgstr "Ajouter ou retirer %s" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:392 -msgid "Separate tags with commas" -msgstr "Séparer les étiquettes par des virgules" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:391 -msgid "" -"Assigns the separate item with commas text used in the taxonomy meta box. " -"Only used on non-hierarchical taxonomies." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:390 -msgid "Separate Items With Commas" -msgstr "Séparer les éléments par des virgules" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:386 -msgid "Separate %s with commas" -msgstr "Séparer les %s avec une virgule" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:366 -msgid "Popular Tags" -msgstr "Étiquettes populaires" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:365 -msgid "Assigns popular items text. Only used for non-hierarchical taxonomies." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:364 -msgid "Popular Items" -msgstr "Éléments populaires" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:361 -msgid "Popular %s" -msgstr "%s populaire" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:347 -msgid "Search Tags" -msgstr "Rechercher des étiquettes" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:346 -msgid "Assigns search items text." -msgstr "Assigne le texte des éléments de recherche." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:323 -msgid "Parent Category:" -msgstr "Catégorie parente :" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:322 -msgid "Assigns parent item text, but with a colon (:) added to the end." -msgstr "" -"Assigne le texte de l’élément parent, mais avec deux points (:) ajouté à la " -"fin." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:321 -msgid "Parent Item With Colon" -msgstr "Élément parent avec deux-points" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:298 -msgid "Parent Category" -msgstr "Catégorie parente" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:297 -msgid "Assigns parent item text. Only used on hierarchical taxonomies." -msgstr "" -"Assigne le texte de l’élément parent. Utilisé uniquement sur les taxonomies " -"hiérarchiques." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:296 -msgid "Parent Item" -msgstr "Élément parent" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:293 -msgid "Parent %s" -msgstr "%s parent" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:278 -msgid "New Tag Name" -msgstr "Nom de la nouvelle étiquette" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:277 -msgid "Assigns the new item name text." -msgstr "Assigne le texte du nom du nouvel élément." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:276 -msgid "New Item Name" -msgstr "Nom du nouvel élément" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:273 -msgid "New %s Name" -msgstr "Nom du nouveau %s" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:258 -msgid "Add New Tag" -msgstr "Ajouter une nouvelle étiquette" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:257 -msgid "Assigns the add new item text." -msgstr "Assigne le texte « Ajouter un nouvel élément »." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:238 -msgid "Update Tag" -msgstr "Mettre à jour l’étiquette" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:237 -msgid "Assigns the update item text." -msgstr "Assigne le texte de l’élément « Mettre à jour »." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:236 -msgid "Update Item" -msgstr "Mettre à jour l’élément" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:233 -msgid "Update %s" -msgstr "Mettre à jour %s" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:218 -msgid "View Tag" -msgstr "Voir l’étiquette" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:217 -msgid "In the admin bar to view term during editing." -msgstr "" -"Dans la barre d’administration pour voir le terme lors de la modification." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:198 -msgid "Edit Tag" -msgstr "Modifier l’étiquette" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:197 -msgid "At the top of the editor screen when editing a term." -msgstr "En haut de l’écran de l’éditeur lors de la modification d’un terme." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:178 -msgid "All Tags" -msgstr "Toutes les étiquettes" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:177 -msgid "Assigns the all items text." -msgstr "Assigne le texte « Tous les éléments »." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:158 -msgid "Assigns the menu name text." -msgstr "Assigne le texte du nom du menu." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:157 -msgid "Menu Label" -msgstr "Libellé du menu" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:131 -msgid "Active taxonomies are enabled and registered with WordPress." -msgstr "Les taxonomies actives sont activées et enregistrées avec WordPress." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:115 -msgid "A descriptive summary of the taxonomy." -msgstr "Un résumé descriptif de la taxonomie." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:95 -msgid "A descriptive summary of the term." -msgstr "Un résumé descriptif du terme." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:94 -msgid "Term Description" -msgstr "Description du terme" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:76 -msgid "Single word, no spaces. Underscores and dashes allowed." -msgstr "Un seul mot, aucun espace. Tirets bas et tirets autorisés." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:75 -msgid "Term Slug" -msgstr "Slug du terme" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:56 -msgid "The name of the default term." -msgstr "Nom du terme par défaut." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:55 -msgid "Term Name" -msgstr "Nom du terme" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:41 -msgid "" -"Create a term for the taxonomy that cannot be deleted. It will not be " -"selected for posts by default." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:40 -msgid "Default Term" -msgstr "Terme par défaut" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:28 -msgid "" -"Whether terms in this taxonomy should be sorted in the order they are " -"provided to `wp_set_object_terms()`." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:27 -msgid "Sort Terms" -msgstr "Trier les termes" - -#: includes/admin/views/acf-post-type/list-empty.php:7 -msgid "Add Post Type" -msgstr "Ajouter un type de publication" - -#: includes/admin/views/acf-post-type/list-empty.php:6 -msgid "" -"Expand the functionality of WordPress beyond standard posts and pages with " -"custom post types." -msgstr "" - -#: includes/admin/views/acf-post-type/list-empty.php:5 -msgid "Add Your First Post Type" -msgstr "Ajouter votre premier type de publication" - -#: includes/admin/views/acf-post-type/basic-settings.php:136 -#: includes/admin/views/acf-taxonomy/basic-settings.php:135 -msgid "I know what I'm doing, show me all the options." -msgstr "Je sais ce que je fais, affichez-moi toutes les options." - -#: includes/admin/views/acf-post-type/basic-settings.php:135 -#: includes/admin/views/acf-taxonomy/basic-settings.php:134 -msgid "Advanced Configuration" -msgstr "Configuration avancée" - -#: includes/admin/views/acf-post-type/basic-settings.php:123 -msgid "Hierarchical post types can have descendants (like pages)." -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:122 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:980 -#: includes/admin/views/acf-taxonomy/basic-settings.php:121 -msgid "Hierarchical" -msgstr "Hiérachique" - -#: includes/admin/views/acf-post-type/basic-settings.php:107 -msgid "Visible on the frontend and in the admin dashboard." -msgstr "" -"Visible sur l’interface publique et dans le tableau de bord de " -"l’administration." - -#: includes/admin/views/acf-post-type/basic-settings.php:106 -#: includes/admin/views/acf-taxonomy/basic-settings.php:106 -msgid "Public" -msgstr "Public" - -#. translators: example post type -#: includes/admin/views/acf-post-type/basic-settings.php:59 -msgid "movie" -msgstr "film" - -#: includes/admin/views/acf-post-type/basic-settings.php:57 -msgid "Lower case letters, underscores and dashes only, Max 20 characters." -msgstr "" -"Lettres minuscules, tiret bas et tirets uniquement, maximum 20 caractères." - -#. translators: example post type -#: includes/admin/views/acf-post-type/basic-settings.php:41 -msgid "Movie" -msgstr "Film" - -#: includes/admin/views/acf-post-type/basic-settings.php:39 -#: includes/admin/views/acf-taxonomy/basic-settings.php:40 -msgid "Singular Label" -msgstr "Libellé au singulier" - -#. translators: example post type -#: includes/admin/views/acf-post-type/basic-settings.php:24 -msgid "Movies" -msgstr "Films" - -#: includes/admin/views/acf-post-type/basic-settings.php:22 -#: includes/admin/views/acf-taxonomy/basic-settings.php:23 -msgid "Plural Label" -msgstr "Libellé au pluriel" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1270 -msgid "" -"Optional custom controller to use instead of `WP_REST_Posts_Controller`." -msgstr "" -"Contrôleur personnalisé facultatif à utiliser à la place de " -"« WP_REST_Posts_Controller »." - -#: includes/admin/views/acf-post-type/advanced-settings.php:1269 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1210 -msgid "Controller Class" -msgstr "Classe de contrôleur" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1251 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1191 -msgid "The namespace part of the REST API URL." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1250 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1190 -msgid "Namespace Route" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1232 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1172 -msgid "The base URL for the post type REST API URLs." -msgstr "URL de base pour les URL de l’API REST du type de publication." - -#: includes/admin/views/acf-post-type/advanced-settings.php:1231 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1171 -msgid "Base URL" -msgstr "URL de base" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1217 -msgid "" -"Exposes this post type in the REST API. Required to use the block editor." -msgstr "" -"Expose ce type de publication dans l’API REST. Nécessaire pour utiliser " -"l’éditeur de bloc." - -#: includes/admin/views/acf-post-type/advanced-settings.php:1216 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1154 -msgid "Show In REST API" -msgstr "Afficher dans l’API Rest" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1195 -msgid "Customize the query variable name." -msgstr "Personnaliser le nom de la variable de requête." - -#: includes/admin/views/acf-post-type/advanced-settings.php:1194 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1054 -msgid "Query Variable" -msgstr "Variable de requête" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1172 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1032 -msgid "No Query Variable Support" -msgstr "Aucune prise en charge des variables de requête" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1171 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1031 -msgid "Custom Query Variable" -msgstr "Variable de requête personnalisée" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1168 -msgid "" -"Items can be accessed using the non-pretty permalink, eg. {post_type}" -"={post_slug}." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1167 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1027 -msgid "Query Variable Support" -msgstr "Prise en charge des variables de requête" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1142 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1003 -msgid "URLs for an item and items can be accessed with a query string." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1141 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1002 -msgid "Publicly Queryable" -msgstr "Publiquement interrogeable" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1120 -msgid "Custom slug for the Archive URL." -msgstr "Slug personnalisé pour l’URL de l’archive." - -#: includes/admin/views/acf-post-type/advanced-settings.php:1119 -msgid "Archive Slug" -msgstr "Slug de l’archive" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1106 -msgid "" -"Has an item archive that can be customized with an archive template file in " -"your theme." -msgstr "" -"Possède une archive d’élément qui peut être personnalisée avec un fichier de " -"modèle d’archive dans votre thème." - -#: includes/admin/views/acf-post-type/advanced-settings.php:1105 -msgid "Archive" -msgstr "Archive" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1085 -msgid "Pagination support for the items URLs such as the archives." -msgstr "" -"Prise en charge de la pagination pour les URL des éléments tels que les " -"archives." - -#: includes/admin/views/acf-post-type/advanced-settings.php:1084 -msgid "Pagination" -msgstr "Pagination" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1067 -msgid "RSS feed URL for the post type items." -msgstr "URL de flux RSS pour les éléments du type de publication." - -#: includes/admin/views/acf-post-type/advanced-settings.php:1066 -msgid "Feed URL" -msgstr "URL du flux" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1048 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:961 -msgid "" -"Alters the permalink structure to add the `WP_Rewrite::$front` prefix to " -"URLs." -msgstr "" -"Modifie la structure du permalien pour ajouter le préfixe « WP_Rewrite::" -"$front » aux URL." - -#: includes/admin/views/acf-post-type/advanced-settings.php:1047 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:960 -msgid "Front URL Prefix" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1028 -msgid "Customize the slug used in the URL." -msgstr "Personnalisez le slug utilisé dans l’URL." - -#: includes/admin/views/acf-post-type/advanced-settings.php:1027 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:940 -msgid "URL Slug" -msgstr "Slug de l’URL" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1011 -msgid "Permalinks for this post type are disabled." -msgstr "Les permaliens sont désactivés pour ce type de publication." - -#. translators: this string will be appended with the new permalink structure. -#: includes/admin/views/acf-post-type/advanced-settings.php:1010 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:923 -msgid "" -"Rewrite the URL using a custom slug defined in the input below. Your " -"permalink structure will be" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1002 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:915 -msgid "No Permalink (prevent URL rewriting)" -msgstr "Aucun permalien (empêcher la réécriture d’URL)" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1001 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:914 -msgid "Custom Permalink" -msgstr "Permalien personnalisé" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1000 -#: includes/admin/views/acf-post-type/advanced-settings.php:1170 -#: includes/admin/views/acf-post-type/basic-settings.php:56 -msgid "Post Type Key" -msgstr "Clé du type de publication" - -#. translators: this string will be appended with the new permalink structure. -#: includes/admin/views/acf-post-type/advanced-settings.php:998 -#: includes/admin/views/acf-post-type/advanced-settings.php:1008 -msgid "" -"Rewrite the URL using the post type key as the slug. Your permalink " -"structure will be" -msgstr "" -"Réécrire l’URL en utilisant la clé du type de publication comme slug. Votre " -"structure de permalien sera" - -#: includes/admin/views/acf-post-type/advanced-settings.php:996 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:910 -msgid "Permalink Rewrite" -msgstr "Réécriture du permalien" - -#: includes/admin/views/acf-post-type/advanced-settings.php:982 -msgid "Delete items by a user when that user is deleted." -msgstr "Supprimer les éléments d’un compte lorsque ce dernier est supprimé." - -#: includes/admin/views/acf-post-type/advanced-settings.php:981 -msgid "Delete With User" -msgstr "Supprimer avec le compte" - -#: includes/admin/views/acf-post-type/advanced-settings.php:967 -msgid "Allow the post type to be exported from 'Tools' > 'Export'." -msgstr "" -"Autoriser l’exportation du type de publication depuis « Outils » > " -"« Exporter »." - -#: includes/admin/views/acf-post-type/advanced-settings.php:966 -msgid "Can Export" -msgstr "Exportable" - -#: includes/admin/views/acf-post-type/advanced-settings.php:935 -msgid "Optionally provide a plural to be used in capabilities." -msgstr "" -"Fournissez éventuellement un pluriel à utiliser dans les fonctionnalités." - -#: includes/admin/views/acf-post-type/advanced-settings.php:934 -msgid "Plural Capability Name" -msgstr "Nom de la capacité au pluriel" - -#: includes/admin/views/acf-post-type/advanced-settings.php:916 -msgid "Choose another post type to base the capabilities for this post type." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:915 -msgid "Singular Capability Name" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:901 -msgid "" -"By default the capabilities of the post type will inherit the 'Post' " -"capability names, eg. edit_post, delete_posts. Enable to use post type " -"specific capabilities, eg. edit_{singular}, delete_{plural}." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:900 -msgid "Rename Capabilities" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:885 -msgid "Exclude From Search" -msgstr "Exclure de la recherche" - -#: includes/admin/views/acf-post-type/advanced-settings.php:872 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:854 -msgid "" -"Allow items to be added to menus in the 'Appearance' > 'Menus' screen. Must " -"be turned on in 'Screen options'." -msgstr "" -"Autorisez l’ajout d’éléments aux menus dans l’écran « Apparence » > " -"« Menus ». Doit être activé dans « Options de l’écran »." - -#: includes/admin/views/acf-post-type/advanced-settings.php:871 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:853 -msgid "Appearance Menus Support" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:853 -msgid "Appears as an item in the 'New' menu in the admin bar." -msgstr "" -"Apparaît en tant qu’élément dans le menu « Nouveau » de la barre " -"d’administration." - -#: includes/admin/views/acf-post-type/advanced-settings.php:852 -msgid "Show In Admin Bar" -msgstr "Afficher dans la barre d’administration" - -#: includes/admin/views/acf-post-type/advanced-settings.php:821 -msgid "" -"A PHP function name to be called when setting up the meta boxes for the edit " -"screen." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:820 -msgid "Custom Meta Box Callback" -msgstr "Rappel de boîte méta personnalisée" - -#: includes/admin/views/acf-post-type/advanced-settings.php:800 -msgid "Menu Icon" -msgstr "Icône de menu" - -#: includes/admin/views/acf-post-type/advanced-settings.php:782 -msgid "The position in the sidebar menu in the admin dashboard." -msgstr "" -"Position dans le menu de la colonne latérale du tableau de bord " -"d’administration." - -#: includes/admin/views/acf-post-type/advanced-settings.php:781 -msgid "Menu Position" -msgstr "Position du menu" - -#: includes/admin/views/acf-post-type/advanced-settings.php:763 -msgid "" -"By default the post type will get a new top level item in the admin menu. If " -"an existing top level item is supplied here, the post type will be added as " -"a submenu item under it." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:762 -msgid "Admin Menu Parent" -msgstr "Parent du menu d’administration" - -#. translators: %s = "dashicon class name", link to the WordPress dashicon -#. documentation. -#: includes/admin/views/acf-post-type/advanced-settings.php:750 -msgid "" -"The icon used for the post type menu item in the admin dashboard. Can be a " -"URL or %s to use for the icon." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:745 -msgid "Dashicon class name" -msgstr "Nom de la classe du Dashicon" - -#: includes/admin/views/acf-post-type/advanced-settings.php:734 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:734 -msgid "Admin editor navigation in the sidebar menu." -msgstr "" -"Navigation de l’éditeur d’administration dans le menu de la colonne latérale." - -#: includes/admin/views/acf-post-type/advanced-settings.php:733 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:733 -msgid "Show In Admin Menu" -msgstr "Afficher dans le menu d’administration" - -#: includes/admin/views/acf-post-type/advanced-settings.php:720 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:719 -msgid "Items can be edited and managed in the admin dashboard." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:719 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:718 -msgid "Show In UI" -msgstr "Afficher dans l’interface utilisateur" - -#: includes/admin/views/acf-post-type/advanced-settings.php:689 -msgid "A link to a post." -msgstr "Un lien vers une publication." - -#: includes/admin/views/acf-post-type/advanced-settings.php:688 -msgid "Description for a navigation link block variation." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:687 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:702 -msgid "Item Link Description" -msgstr "Description du lien de l’élément" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:683 -msgid "A link to a %s." -msgstr "Un lien vers un %s." - -#: includes/admin/views/acf-post-type/advanced-settings.php:668 -msgid "Post Link" -msgstr "Lien de publication" - -#: includes/admin/views/acf-post-type/advanced-settings.php:667 -msgid "Title for a navigation link block variation." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:666 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:681 -msgid "Item Link" -msgstr "Lien de l’élément" - -#. translators: %s Singular form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:663 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:678 -msgid "%s Link" -msgstr "Lien %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:648 -msgid "Post updated." -msgstr "Publication mise à jour." - -#: includes/admin/views/acf-post-type/advanced-settings.php:647 -msgid "In the editor notice after an item is updated." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:646 -msgid "Item Updated" -msgstr "Élément mis à jour" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:643 -msgid "%s updated." -msgstr "%s mis à jour." - -#: includes/admin/views/acf-post-type/advanced-settings.php:628 -msgid "Post scheduled." -msgstr "Publication planifiée." - -#: includes/admin/views/acf-post-type/advanced-settings.php:627 -msgid "In the editor notice after scheduling an item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:626 -msgid "Item Scheduled" -msgstr "Élément planifié" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:623 -msgid "%s scheduled." -msgstr "%s planifié." - -#: includes/admin/views/acf-post-type/advanced-settings.php:608 -msgid "Post reverted to draft." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:607 -msgid "In the editor notice after reverting an item to draft." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:606 -msgid "Item Reverted To Draft" -msgstr "Élément repassé en brouillon" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:603 -msgid "%s reverted to draft." -msgstr "%s repassé en brouillon." - -#: includes/admin/views/acf-post-type/advanced-settings.php:588 -msgid "Post published privately." -msgstr "Publication publiée en privé." - -#: includes/admin/views/acf-post-type/advanced-settings.php:587 -msgid "In the editor notice after publishing a private item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:586 -msgid "Item Published Privately" -msgstr "Élément publié en privé" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:583 -msgid "%s published privately." -msgstr "%s publié en privé." - -#: includes/admin/views/acf-post-type/advanced-settings.php:568 -msgid "Post published." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:567 -msgid "In the editor notice after publishing an item." -msgstr "Dans la notification de l’éditeur après la publication d’un élément." - -#: includes/admin/views/acf-post-type/advanced-settings.php:566 -msgid "Item Published" -msgstr "Élément publié" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:563 -msgid "%s published." -msgstr "%s publié." - -#: includes/admin/views/acf-post-type/advanced-settings.php:548 -msgid "Posts list" -msgstr "Liste des publications" - -#: includes/admin/views/acf-post-type/advanced-settings.php:547 -msgid "Used by screen readers for the items list on the post type list screen." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:546 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:640 -msgid "Items List" -msgstr "Liste des éléments" - -#. translators: %s Plural form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:543 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:637 -msgid "%s list" -msgstr "Liste %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:528 -msgid "Posts list navigation" -msgstr "Navigation dans la liste des publications" - -#: includes/admin/views/acf-post-type/advanced-settings.php:527 -msgid "" -"Used by screen readers for the filter list pagination on the post type list " -"screen." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:526 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:620 -msgid "Items List Navigation" -msgstr "Liste des éléments de navigation" - -#. translators: %s Plural form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:523 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:617 -msgid "%s list navigation" -msgstr "Navigation dans la liste %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:507 -msgid "Filter posts by date" -msgstr "Filtrer les publications par date" - -#: includes/admin/views/acf-post-type/advanced-settings.php:506 -msgid "" -"Used by screen readers for the filter by date heading on the post type list " -"screen." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:505 -msgid "Filter Items By Date" -msgstr "Filtrer les éléments par date" - -#. translators: %s Plural form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:501 -msgid "Filter %s by date" -msgstr "Filtrer %s par date" - -#: includes/admin/views/acf-post-type/advanced-settings.php:486 -msgid "Filter posts list" -msgstr "Filtrer la liste des publications" - -#: includes/admin/views/acf-post-type/advanced-settings.php:485 -msgid "" -"Used by screen readers for the filter links heading on the post type list " -"screen." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:484 -msgid "Filter Items List" -msgstr "Filtrer la liste des éléments" - -#. translators: %s Plural form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:480 -msgid "Filter %s list" -msgstr "Filtrer la liste %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:464 -msgid "In the media modal showing all media uploaded to this item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:463 -msgid "Uploaded To This Item" -msgstr "Téléversé dans l’élément" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:459 -msgid "Uploaded to this %s" -msgstr "Téléversé sur ce %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:444 -msgid "Insert into post" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:443 -msgid "As the button label when adding media to content." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:442 -msgid "Insert Into Media Button" -msgstr "Bouton « Insérer dans le média »" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:438 -msgid "Insert into %s" -msgstr "Insérer dans %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:423 -msgid "Use as featured image" -msgstr "Utiliser comme image mise en avant" - -#: includes/admin/views/acf-post-type/advanced-settings.php:422 -msgid "" -"As the button label for selecting to use an image as the featured image." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:421 -msgid "Use Featured Image" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:408 -msgid "Remove featured image" -msgstr "Retirer l’image mise en avant" - -#: includes/admin/views/acf-post-type/advanced-settings.php:407 -msgid "As the button label when removing the featured image." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:406 -msgid "Remove Featured Image" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:393 -msgid "Set featured image" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:392 -msgid "As the button label when setting the featured image." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:391 -msgid "Set Featured Image" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:378 -msgid "Featured image" -msgstr "Image mise en avant" - -#: includes/admin/views/acf-post-type/advanced-settings.php:377 -msgid "In the editor used for the title of the featured image meta box." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:376 -msgid "Featured Image Meta Box" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:363 -msgid "Post Attributes" -msgstr "Attributs de la publication" - -#: includes/admin/views/acf-post-type/advanced-settings.php:362 -msgid "In the editor used for the title of the post attributes meta box." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:361 -msgid "Attributes Meta Box" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:358 -msgid "%s Attributes" -msgstr "Attributs des %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:343 -msgid "Post Archives" -msgstr "Archives de publication" - -#: includes/admin/views/acf-post-type/advanced-settings.php:342 -msgid "" -"Adds 'Post Type Archive' items with this label to the list of posts shown " -"when adding items to an existing menu in a CPT with archives enabled. Only " -"appears when editing menus in 'Live Preview' mode and a custom archive slug " -"has been provided." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:341 -msgid "Archives Nav Menu" -msgstr "Menu de navigation des archives" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:338 -msgid "%s Archives" -msgstr "Archives des %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:323 -msgid "No posts found in Trash" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:322 -msgid "" -"At the top of the post type list screen when there are no posts in the trash." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:321 -msgid "No Items Found in Trash" -msgstr "Aucun élément trouvé dans la corbeille" - -#. translators: %s Plural form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:317 -msgid "No %s found in Trash" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:302 -msgid "No posts found" -msgstr "Aucune publication trouvée" - -#: includes/admin/views/acf-post-type/advanced-settings.php:301 -msgid "" -"At the top of the post type list screen when there are no posts to display." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:300 -msgid "No Items Found" -msgstr "Aucun élément trouvé" - -#. translators: %s Plural form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:296 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:480 -msgid "No %s found" -msgstr "Aucun %s trouvé" - -#: includes/admin/views/acf-post-type/advanced-settings.php:281 -msgid "Search Posts" -msgstr "Rechercher des publications" - -#: includes/admin/views/acf-post-type/advanced-settings.php:280 -msgid "At the top of the items screen when searching for an item." -msgstr "En haut de l’écran des éléments lors de la recherche d’un élément." - -#: includes/admin/views/acf-post-type/advanced-settings.php:279 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:345 -msgid "Search Items" -msgstr "Rechercher des éléments" - -#. translators: %s Singular form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:276 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:342 -msgid "Search %s" -msgstr "Rechercher %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:261 -msgid "Parent Page:" -msgstr "Page parente :" - -#: includes/admin/views/acf-post-type/advanced-settings.php:260 -msgid "For hierarchical types in the post type list screen." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:259 -msgid "Parent Item Prefix" -msgstr "Préfixe de l’élément parent" - -#. translators: %s Singular form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:256 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:318 -msgid "Parent %s:" -msgstr "%s parent :" - -#: includes/admin/views/acf-post-type/advanced-settings.php:241 -msgid "New Post" -msgstr "Nouvelle publication" - -#: includes/admin/views/acf-post-type/advanced-settings.php:239 -msgid "New Item" -msgstr "Nouvel élément" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:236 -msgid "New %s" -msgstr "Nouveau %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:206 -msgid "Add New Post" -msgstr "Ajouter une nouvelle publication" - -#: includes/admin/views/acf-post-type/advanced-settings.php:205 -msgid "At the top of the editor screen when adding a new item." -msgstr "En haut de l’écran de l’éditeur lors de l’ajout d’un nouvel élément." - -#: includes/admin/views/acf-post-type/advanced-settings.php:204 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:256 -msgid "Add New Item" -msgstr "Ajouter un nouvel élément" - -#. translators: %s Singular form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:201 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:253 -msgid "Add New %s" -msgstr "Ajouter %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:186 -msgid "View Posts" -msgstr "Voir les publications" - -#: includes/admin/views/acf-post-type/advanced-settings.php:185 -msgid "" -"Appears in the admin bar in the 'All Posts' view, provided the post type " -"supports archives and the home page is not an archive of that post type." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:184 -msgid "View Items" -msgstr "Voir les éléments" - -#: includes/admin/views/acf-post-type/advanced-settings.php:166 -msgid "View Post" -msgstr "Voir la publication" - -#: includes/admin/views/acf-post-type/advanced-settings.php:165 -msgid "In the admin bar to view item when editing it." -msgstr "" -"Dans la barre d’administration pour afficher l’élément lors de sa " -"modification." - -#: includes/admin/views/acf-post-type/advanced-settings.php:164 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:216 -msgid "View Item" -msgstr "Voir l’élément" - -#. translators: %s Singular form of post type name -#. translators: %s Plural form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:161 -#: includes/admin/views/acf-post-type/advanced-settings.php:181 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:213 -msgid "View %s" -msgstr "Voir %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:146 -msgid "Edit Post" -msgstr "Modifier la publication" - -#: includes/admin/views/acf-post-type/advanced-settings.php:145 -msgid "At the top of the editor screen when editing an item." -msgstr "En haut de l’écran de l’éditeur lors de la modification d’un élément." - -#: includes/admin/views/acf-post-type/advanced-settings.php:144 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:196 -msgid "Edit Item" -msgstr "Modifier l’élément" - -#. translators: %s Singular form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:141 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:193 -msgid "Edit %s" -msgstr "Modifier %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:126 -msgid "All Posts" -msgstr "Toutes les publications" - -#: includes/admin/views/acf-post-type/advanced-settings.php:125 -#: includes/admin/views/acf-post-type/advanced-settings.php:220 -#: includes/admin/views/acf-post-type/advanced-settings.php:240 -msgid "In the post type submenu in the admin dashboard." -msgstr "" -"Dans le sous-menu de type de publication du tableau de bord d’administration." - -#: includes/admin/views/acf-post-type/advanced-settings.php:124 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:176 -msgid "All Items" -msgstr "Tous les éléments" - -#. translators: %s Plural form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:121 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:173 -msgid "All %s" -msgstr "Tout les %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:105 -msgid "Admin menu name for the post type." -msgstr "Nom du menu d’administration pour le type de publication." - -#: includes/admin/views/acf-post-type/advanced-settings.php:104 -msgid "Menu Name" -msgstr "Nom du menu" - -#: includes/admin/views/acf-post-type/advanced-settings.php:90 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:142 -msgid "Regenerate all labels using the Singular and Plural labels" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:88 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:140 -msgid "Regenerate" -msgstr "Régénérer" - -#: includes/admin/views/acf-post-type/advanced-settings.php:79 -msgid "Active post types are enabled and registered with WordPress." -msgstr "" -"Les types de publication actifs sont activés et enregistrés avec WordPress." - -#: includes/admin/views/acf-post-type/advanced-settings.php:63 -msgid "A descriptive summary of the post type." -msgstr "Un résumé descriptif du type de publication." - -#: includes/admin/views/acf-post-type/advanced-settings.php:48 -msgid "Add Custom" -msgstr "Ajouter une personalisation" - -#: includes/admin/views/acf-post-type/advanced-settings.php:42 -msgid "Enable various features in the content editor." -msgstr "Activez diverses fonctionnalités dans l’éditeur de contenu." - -#: includes/admin/views/acf-post-type/advanced-settings.php:31 -msgid "Post Formats" -msgstr "Formats des publications" - -#: includes/admin/views/acf-post-type/advanced-settings.php:25 -msgid "Editor" -msgstr "Éditeur" - -#: includes/admin/views/acf-post-type/advanced-settings.php:24 -msgid "Trackbacks" -msgstr "Rétroliens" - -#: includes/admin/views/acf-post-type/basic-settings.php:87 -msgid "Select existing taxonomies to classify items of the post type." -msgstr "" - -#: includes/admin/views/acf-field-group/field.php:145 -msgid "Browse Fields" -msgstr "Parcourir les champs" - -#: includes/admin/tools/class-acf-admin-tool-import.php:292 -msgid "Nothing to import" -msgstr "Rien à importer" - -#: includes/admin/tools/class-acf-admin-tool-import.php:287 -msgid ". The Custom Post Type UI plugin can be deactivated." -msgstr ". L’extension Custom Post Type UI peut être désactivée." - -#. translators: %d - number of items imported from CPTUI -#: includes/admin/tools/class-acf-admin-tool-import.php:278 -msgid "Imported %d item from Custom Post Type UI -" -msgid_plural "Imported %d items from Custom Post Type UI -" -msgstr[0] "" -"Élément %d importé à partir de l’interface utilisateur de type de " -"publication personnalisée -" -msgstr[1] "" -"Éléments %d importés à partir de l’interface utilisateur de type de " -"publication personnalisée -" - -#: includes/admin/tools/class-acf-admin-tool-import.php:262 -msgid "Failed to import taxonomies." -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:244 -msgid "Failed to import post types." -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:233 -msgid "Nothing from Custom Post Type UI plugin selected for import." -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:209 -msgid "Imported 1 item" -msgid_plural "Imported %s items" -msgstr[0] "Importé 1 élément" -msgstr[1] "Importé %s éléments" - -#: includes/admin/tools/class-acf-admin-tool-import.php:122 -msgid "" -"Importing a Post Type or Taxonomy with the same key as one that already " -"exists will overwrite the settings for the existing Post Type or Taxonomy " -"with those of the import." -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:111 -#: includes/admin/tools/class-acf-admin-tool-import.php:127 -msgid "Import from Custom Post Type UI" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:412 -msgid "" -"The following code can be used to register a local version of the selected " -"items. Storing field groups, post types, or taxonomies locally can provide " -"many benefits such as faster load times, version control & dynamic fields/" -"settings. Simply copy and paste the following code to your theme's functions." -"php file or include it within an external file, then deactivate or delete " -"the items from the ACF admin." -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:411 -msgid "Export - Generate PHP" -msgstr "Exportation - Générer PHP" - -#: includes/admin/tools/class-acf-admin-tool-export.php:384 -msgid "Export" -msgstr "Exporter" - -#: includes/admin/tools/class-acf-admin-tool-export.php:276 -msgid "Select Taxonomies" -msgstr "Sélectionner les taxonomies" - -#: includes/admin/tools/class-acf-admin-tool-export.php:254 -msgid "Select Post Types" -msgstr "Sélectionner les types de publication" - -#: includes/admin/tools/class-acf-admin-tool-export.php:167 -msgid "Exported 1 item." -msgid_plural "Exported %s items." -msgstr[0] "" -msgstr[1] "" - -#: includes/admin/post-types/admin-taxonomy.php:129 -#: assets/build/js/acf-internal-post-type.js:182 -#: assets/build/js/acf-internal-post-type.js:256 -msgid "Category" -msgstr "Catégorie" - -#: includes/admin/post-types/admin-taxonomy.php:127 -#: assets/build/js/acf-internal-post-type.js:179 -#: assets/build/js/acf-internal-post-type.js:253 -msgid "Tag" -msgstr "Étiquette" - -#. translators: %s taxonomy name -#: includes/admin/post-types/admin-taxonomy.php:82 -msgid "%s taxonomy created" -msgstr "%s taxonomie créée" - -#. translators: %s taxonomy name -#: includes/admin/post-types/admin-taxonomy.php:76 -msgid "%s taxonomy updated" -msgstr "Taxonomie %s mise à jour" - -#: includes/admin/post-types/admin-taxonomy.php:56 -msgid "Taxonomy draft updated." -msgstr "Brouillon de taxonomie mis à jour." - -#: includes/admin/post-types/admin-taxonomy.php:55 -msgid "Taxonomy scheduled for." -msgstr "Taxonomie planifiée pour." - -#: includes/admin/post-types/admin-taxonomy.php:54 -msgid "Taxonomy submitted." -msgstr "Taxonomie envoyée." - -#: includes/admin/post-types/admin-taxonomy.php:53 -msgid "Taxonomy saved." -msgstr "Taxonomie enregistrée." - -#: includes/admin/post-types/admin-taxonomy.php:49 -msgid "Taxonomy deleted." -msgstr "Taxonomie supprimée." - -#: includes/admin/post-types/admin-taxonomy.php:48 -msgid "Taxonomy updated." -msgstr "Taxonomie mise à jour." - -#: includes/admin/post-types/admin-taxonomies.php:377 -#: includes/admin/post-types/admin-taxonomy.php:157 -msgid "" -"This taxonomy could not be registered because its key is in use by another " -"taxonomy registered by another plugin or theme." -msgstr "" - -#. translators: %s number of taxonomies synchronized -#: includes/admin/post-types/admin-taxonomies.php:359 -msgid "Taxonomy synchronized." -msgid_plural "%s taxonomies synchronized." -msgstr[0] "Taxonomie synchronisée." -msgstr[1] "%s taxonomies synchronisées." - -#. translators: %s number of taxonomies duplicated -#: includes/admin/post-types/admin-taxonomies.php:352 -msgid "Taxonomy duplicated." -msgid_plural "%s taxonomies duplicated." -msgstr[0] "Taxonomie dupliquée." -msgstr[1] "%s taxonomies dupliquées." - -#. translators: %s number of taxonomies deactivated -#: includes/admin/post-types/admin-taxonomies.php:345 -msgid "Taxonomy deactivated." -msgid_plural "%s taxonomies deactivated." -msgstr[0] "Taxonomie désactivée." -msgstr[1] "%s taxonomies désactivées." - -#. translators: %s number of taxonomies activated -#: includes/admin/post-types/admin-taxonomies.php:338 -msgid "Taxonomy activated." -msgid_plural "%s taxonomies activated." -msgstr[0] "Taxonomie activée." -msgstr[1] "%s taxonomies activées." - -#: includes/admin/post-types/admin-taxonomies.php:139 -msgid "Terms" -msgstr "Termes" - -#. translators: %s number of post types synchronized -#: includes/admin/post-types/admin-post-types.php:352 -msgid "Post type synchronized." -msgid_plural "%s post types synchronized." -msgstr[0] "Type de publication synchronisé." -msgstr[1] "%s types de publication synchronisés." - -#. translators: %s number of post types duplicated -#: includes/admin/post-types/admin-post-types.php:345 -msgid "Post type duplicated." -msgid_plural "%s post types duplicated." -msgstr[0] "Type de publication dupliqué." -msgstr[1] "%s types de publication dupliqués." - -#. translators: %s number of post types deactivated -#: includes/admin/post-types/admin-post-types.php:338 -msgid "Post type deactivated." -msgid_plural "%s post types deactivated." -msgstr[0] "Type de publication désactivé." -msgstr[1] "%s types de publication désactivés." - -#. translators: %s number of post types activated -#: includes/admin/post-types/admin-post-types.php:331 -msgid "Post type activated." -msgid_plural "%s post types activated." -msgstr[0] "Type de publication activé." -msgstr[1] "%s types de publication activés." - -#: includes/admin/post-types/admin-post-types.php:112 -#: includes/admin/post-types/admin-taxonomies.php:137 -#: includes/admin/tools/class-acf-admin-tool-import.php:82 -#: includes/admin/views/acf-taxonomy/basic-settings.php:82 -#: includes/post-types/class-acf-post-type.php:91 -msgid "Post Types" -msgstr "Types de publication" - -#: includes/admin/post-types/admin-post-type.php:162 -#: includes/admin/post-types/admin-taxonomy.php:164 -msgid "Advanced Settings" -msgstr "Réglages avancés" - -#: includes/admin/post-types/admin-post-type.php:161 -#: includes/admin/post-types/admin-taxonomy.php:163 -msgid "Basic Settings" -msgstr "Réglages de base" - -#: includes/admin/post-types/admin-post-type.php:155 -#: includes/admin/post-types/admin-post-types.php:370 -msgid "" -"This post type could not be registered because its key is in use by another " -"post type registered by another plugin or theme." -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:128 -#: assets/build/js/acf-internal-post-type.js:176 -#: assets/build/js/acf-internal-post-type.js:250 -msgid "Pages" -msgstr "Pages" - -#: includes/admin/admin-internal-post-type.php:355 -msgid "Link Existing Field Groups" -msgstr "Lier des groupes de champs existants" - -#. translators: %s post type name -#: includes/admin/post-types/admin-post-type.php:80 -msgid "%s post type created" -msgstr "%s type de publication créé" - -#. translators: %s taxonomy name -#: includes/admin/post-types/admin-taxonomy.php:78 -msgid "Add fields to %s" -msgstr "Ajouter des champs à %s" - -#. translators: %s post type name -#: includes/admin/post-types/admin-post-type.php:76 -msgid "%s post type updated" -msgstr "Type de publication %s mis à jour" - -#: includes/admin/post-types/admin-post-type.php:56 -msgid "Post type draft updated." -msgstr "Le brouillon du type de publication a été mis à jour." - -#: includes/admin/post-types/admin-post-type.php:55 -msgid "Post type scheduled for." -msgstr "Type de publication planifié pour." - -#: includes/admin/post-types/admin-post-type.php:54 -msgid "Post type submitted." -msgstr "Type de publication envoyé." - -#: includes/admin/post-types/admin-post-type.php:53 -msgid "Post type saved." -msgstr "Type de publication enregistré." - -#: includes/admin/post-types/admin-post-type.php:50 -msgid "Post type updated." -msgstr "Type de publication mis à jour." - -#: includes/admin/post-types/admin-post-type.php:49 -msgid "Post type deleted." -msgstr "Type de publication supprimé." - -#: includes/admin/post-types/admin-field-group.php:120 -#: assets/build/js/acf-field-group.js:1146 -#: assets/build/js/acf-field-group.js:1366 -msgid "Type to search..." -msgstr "Type à rechercher…" - -#: includes/admin/post-types/admin-field-group.php:105 -#: assets/build/js/acf-field-group.js:1172 -#: assets/build/js/acf-field-group.js:2319 -#: assets/build/js/acf-field-group.js:1414 -#: assets/build/js/acf-field-group.js:2727 -msgid "PRO Only" -msgstr "Uniquement sur PRO" - -#: includes/admin/post-types/admin-field-group.php:97 -#: assets/build/js/acf-internal-post-type.js:308 -#: assets/build/js/acf-internal-post-type.js:417 -msgid "Field groups linked successfully." -msgstr "Les groupes de champs ont bien été liés." - -#. translators: %s - URL to ACF tools page. -#: includes/admin/admin.php:195 -msgid "" -"Import Post Types and Taxonomies registered with Custom Post Type UI and " -"manage them with ACF. Get Started." -msgstr "" - -#: includes/admin/admin.php:48 includes/admin/admin.php:267 -msgid "ACF" -msgstr "ACF" - -#: includes/admin/admin-internal-post-type.php:322 -msgid "taxonomy" -msgstr "taxonomie" - -#: includes/admin/admin-internal-post-type.php:322 -msgid "post type" -msgstr "type de publication" - -#: includes/admin/admin-internal-post-type.php:346 -msgid "Done" -msgstr "Terminé" - -#: includes/admin/admin-internal-post-type.php:332 -msgid "Field Group(s)" -msgstr "" - -#: includes/admin/admin-internal-post-type.php:331 -msgid "Select one or many field groups..." -msgstr "Sélectionner un ou plusieurs groupes de champs…" - -#: includes/admin/admin-internal-post-type.php:330 -msgid "Please select the field groups to link." -msgstr "Veuillez choisir les groupes de champs à lier." - -#: includes/admin/admin-internal-post-type.php:288 -msgid "Field group linked successfully." -msgid_plural "Field groups linked successfully." -msgstr[0] "" -msgstr[1] "" - -#: includes/admin/admin-internal-post-type-list.php:261 -#: includes/admin/post-types/admin-post-types.php:371 -#: includes/admin/post-types/admin-taxonomies.php:378 -msgctxt "post status" -msgid "Registration Failed" -msgstr "Echec de l’enregistrement" - -#: includes/admin/admin-internal-post-type-list.php:260 -msgid "" -"This item could not be registered because its key is in use by another item " -"registered by another plugin or theme." -msgstr "" - -#: includes/acf-internal-post-type-functions.php:482 -#: includes/acf-internal-post-type-functions.php:511 -msgid "REST API" -msgstr "REST API" - -#: includes/acf-internal-post-type-functions.php:481 -#: includes/acf-internal-post-type-functions.php:510 -#: includes/acf-internal-post-type-functions.php:537 -msgid "Permissions" -msgstr "Droits" - -#: includes/acf-internal-post-type-functions.php:480 -#: includes/acf-internal-post-type-functions.php:509 -msgid "URLs" -msgstr "URL" - -#: includes/acf-internal-post-type-functions.php:479 -#: includes/acf-internal-post-type-functions.php:508 -#: includes/acf-internal-post-type-functions.php:535 -msgid "Visibility" -msgstr "Visibilité" - -#: includes/acf-internal-post-type-functions.php:478 -#: includes/acf-internal-post-type-functions.php:507 -#: includes/acf-internal-post-type-functions.php:536 -msgid "Labels" -msgstr "Libellés" - -#: includes/admin/post-types/admin-field-group.php:269 -msgid "Field Settings Tabs" -msgstr "Onglets des réglages du champ" - -#. Author URI of the plugin -msgid "" -"https://wpengine.com/?utm_source=wordpress." -"org&utm_medium=referral&utm_campaign=plugin_directory&utm_content=advanced_custom_fields" -msgstr "" -"https://wpengine.com/?utm_source=wordpress." -"org&utm_medium=referral&utm_campaign=plugin_directory&utm_content=advanced_custom_fields" - -#: includes/api/api-template.php:867 -msgid "[ACF shortcode value disabled for preview]" -msgstr "[Valeur du code court ACF désactivée pour l’aperçu]" - -#: includes/admin/admin-internal-post-type.php:298 -#: includes/admin/post-types/admin-field-group.php:571 -msgid "Close Modal" -msgstr "Fermer la modale" - -#: includes/admin/post-types/admin-field-group.php:96 -#: assets/build/js/acf-field-group.js:1670 -#: assets/build/js/acf-field-group.js:1993 -msgid "Field moved to other group" -msgstr "Champ déplacé vers un autre groupe" - -#: includes/admin/post-types/admin-field-group.php:95 -#: assets/build/js/acf.js:1437 assets/build/js/acf.js:1517 -msgid "Close modal" -msgstr "Fermer la modale" - -#: includes/fields/class-acf-field-tab.php:125 -msgid "Start a new group of tabs at this tab." -msgstr "Commencez un nouveau groupe d’onglets dans cet onglet." - -#: includes/fields/class-acf-field-tab.php:124 -msgid "New Tab Group" -msgstr "Nouveau groupe d’onglets" - -#: includes/fields/class-acf-field-select.php:451 -#: includes/fields/class-acf-field-true_false.php:200 -msgid "Use a stylized checkbox using select2" -msgstr "Utiliser une case à cocher stylisée avec select2" - -#: includes/fields/class-acf-field-radio.php:260 -msgid "Save Other Choice" -msgstr "Enregistrer un autre choix" - -#: includes/fields/class-acf-field-radio.php:249 -msgid "Allow Other Choice" -msgstr "Autoriser un autre choix" - -#: includes/fields/class-acf-field-checkbox.php:450 -msgid "Add Toggle All" -msgstr "Ajouter « Tout ouvrir/fermer »" - -#: includes/fields/class-acf-field-checkbox.php:409 -msgid "Save Custom Values" -msgstr "Enregistrer les valeurs personnalisées" - -#: includes/fields/class-acf-field-checkbox.php:398 -msgid "Allow Custom Values" -msgstr "Autoriser les valeurs personnalisées" - -#: includes/fields/class-acf-field-checkbox.php:148 -msgid "Checkbox custom values cannot be empty. Uncheck any empty values." -msgstr "" -"Les valeurs personnalisées des cases à cocher ne peuvent pas être vides. " -"Décochez toutes les valeurs vides." - -#: includes/admin/views/global/navigation.php:248 -msgid "Updates" -msgstr "Mises à jour" - -#: includes/admin/views/global/navigation.php:176 -msgid "Advanced Custom Fields logo" -msgstr "Logo Advanced Custom Fields" - -#: includes/admin/views/global/form-top.php:89 -msgid "Save Changes" -msgstr "Enregistrer les modifications" - -#: includes/admin/views/global/form-top.php:76 -msgid "Field Group Title" -msgstr "Titre du groupe de champs" - -#: includes/admin/views/acf-post-type/advanced-settings.php:704 -#: includes/admin/views/global/form-top.php:3 -msgid "Add title" -msgstr "Ajouter un titre" - -#. translators: %s url to getting started guide -#: includes/admin/views/acf-field-group/list-empty.php:20 -#: includes/admin/views/acf-post-type/list-empty.php:12 -#: includes/admin/views/acf-taxonomy/list-empty.php:12 -#: includes/admin/views/options-page-preview.php:13 -msgid "" -"New to ACF? Take a look at our getting " -"started guide." -msgstr "" -"Nouveau sur ACF ? Jetez un œil à notre guide des premiers pas." - -#: includes/admin/views/acf-field-group/list-empty.php:15 -msgid "Add Field Group" -msgstr "Ajouter un groupe de champs" - -#. translators: %s url to creating a field group page -#: includes/admin/views/acf-field-group/list-empty.php:10 -msgid "" -"ACF uses field groups to group custom " -"fields together, and then attach those fields to edit screens." -msgstr "" -"ACF utilise des groupes de champs pour " -"grouper des champs personnalisés et les associer aux écrans de modification." - -#: includes/admin/views/acf-field-group/list-empty.php:5 -msgid "Add Your First Field Group" -msgstr "Ajouter votre premier groupe de champs" - -#: includes/admin/admin-options-pages-preview.php:28 -#: includes/admin/views/acf-field-group/pro-features.php:54 -#: includes/admin/views/global/navigation.php:86 -#: includes/admin/views/global/navigation.php:250 -msgid "Options Pages" -msgstr "Pages d’options" - -#: includes/admin/views/acf-field-group/pro-features.php:50 -msgid "ACF Blocks" -msgstr "Blocs ACF" - -#: includes/admin/views/acf-field-group/pro-features.php:58 -msgid "Gallery Field" -msgstr "Champ galerie" - -#: includes/admin/views/acf-field-group/pro-features.php:38 -msgid "Flexible Content Field" -msgstr "Champ de contenu flexible" - -#: includes/admin/views/acf-field-group/pro-features.php:42 -msgid "Repeater Field" -msgstr "Champ répéteur" - -#: includes/admin/views/global/navigation.php:212 -msgid "Unlock Extra Features with ACF PRO" -msgstr "Débloquer des fonctionnalités supplémentaires avec ACF PRO" - -#: includes/admin/views/acf-field-group/options.php:267 -msgid "Delete Field Group" -msgstr "Supprimer le groupe de champ" - -#. translators: 1: Post creation date 2: Post creation time -#: includes/admin/views/acf-field-group/options.php:261 -msgid "Created on %1$s at %2$s" -msgstr "Créé le %1$s à %2$s" - -#: includes/acf-field-group-functions.php:497 -msgid "Group Settings" -msgstr "Réglages du groupe" - -#: includes/acf-field-group-functions.php:495 -msgid "Location Rules" -msgstr "Règles de localisation" - -#. translators: %s url to field types list -#: includes/admin/views/acf-field-group/fields.php:72 -msgid "" -"Choose from over 30 field types. Learn " -"more." -msgstr "" -"Choisissez parmi plus de 30 types de champs. En savoir plus." - -#: includes/admin/views/acf-field-group/fields.php:65 -msgid "" -"Get started creating new custom fields for your posts, pages, custom post " -"types and other WordPress content." -msgstr "" -"Commencez à créer de nouveaux champs personnalisés pour vos articles, pages, " -"types de publication personnalisés et autres contenus WordPress." - -#: includes/admin/views/acf-field-group/fields.php:64 -msgid "Add Your First Field" -msgstr "Ajouter votre premier champ" - -#. translators: A symbol (or text, if not available in your locale) meaning -#. "Order Number", in terms of positional placement. -#: includes/admin/views/acf-field-group/fields.php:43 -msgid "#" -msgstr "N°" - -#: includes/admin/views/acf-field-group/fields.php:33 -#: includes/admin/views/acf-field-group/fields.php:67 -#: includes/admin/views/acf-field-group/fields.php:103 -#: includes/admin/views/global/form-top.php:85 -msgid "Add Field" -msgstr "Ajouter un champ" - -#: includes/acf-field-group-functions.php:496 includes/fields.php:410 -msgid "Presentation" -msgstr "Présentation" - -#: includes/fields.php:409 -msgid "Validation" -msgstr "Validation" - -#: includes/acf-internal-post-type-functions.php:477 -#: includes/acf-internal-post-type-functions.php:506 includes/fields.php:408 -msgid "General" -msgstr "Général" - -#: includes/admin/tools/class-acf-admin-tool-import.php:70 -msgid "Import JSON" -msgstr "Importer un JSON" - -#: includes/admin/tools/class-acf-admin-tool-export.php:392 -msgid "Export As JSON" -msgstr "Exporter en tant que JSON" - -#. translators: %s number of field groups deactivated -#: includes/admin/post-types/admin-field-groups.php:367 -msgid "Field group deactivated." -msgid_plural "%s field groups deactivated." -msgstr[0] "Groupe de champs désactivé." -msgstr[1] "%s groupes de champs désactivés." - -#. translators: %s number of field groups activated -#: includes/admin/post-types/admin-field-groups.php:360 -msgid "Field group activated." -msgid_plural "%s field groups activated." -msgstr[0] "Groupe de champs activé." -msgstr[1] "%s groupes de champs activés." - -#: includes/admin/admin-internal-post-type-list.php:452 -#: includes/admin/admin-internal-post-type-list.php:478 -msgid "Deactivate" -msgstr "Désactiver" - -#: includes/admin/admin-internal-post-type-list.php:452 -msgid "Deactivate this item" -msgstr "Désactiver cet élément" - -#: includes/admin/admin-internal-post-type-list.php:448 -#: includes/admin/admin-internal-post-type-list.php:477 -msgid "Activate" -msgstr "Activer" - -#: includes/admin/admin-internal-post-type-list.php:448 -msgid "Activate this item" -msgstr "Activer cet élément" - -#: includes/admin/post-types/admin-field-group.php:92 -#: assets/build/js/acf-field-group.js:2812 -#: assets/build/js/acf-field-group.js:3313 -msgid "Move field group to trash?" -msgstr "Déplacer le groupe de champs vers la corbeille ?" - -#: acf.php:497 includes/admin/admin-internal-post-type-list.php:248 -#: includes/admin/post-types/admin-field-group.php:297 -#: includes/admin/post-types/admin-post-type.php:295 -#: includes/admin/post-types/admin-taxonomy.php:297 -msgctxt "post status" -msgid "Inactive" -msgstr "Inactif" - -#. Author of the plugin -msgid "WP Engine" -msgstr "WP Engine" - -#: acf.php:555 -msgid "" -"Advanced Custom Fields and Advanced Custom Fields PRO should not be active " -"at the same time. We've automatically deactivated Advanced Custom Fields PRO." -msgstr "" -"Advanced Custom Fields et Advanced Custom Fields Pro ne doivent pas être " -"actives en même temps. Nous avons automatiquement désactivé Advanced Custom " -"Fields Pro." - -#: acf.php:553 -msgid "" -"Advanced Custom Fields and Advanced Custom Fields PRO should not be active " -"at the same time. We've automatically deactivated Advanced Custom Fields." -msgstr "" -"Advanced Custom Fields et Advanced Custom Fields Pro ne doivent pas être " -"actives en même temps. Nous avons automatiquement désactivé Advanced Custom " -"Fields." - -#: includes/acf-value-functions.php:374 -msgid "" -"%1$s - We've detected one or more calls to retrieve ACF " -"field values before ACF has been initialized. This is not supported and can " -"result in malformed or missing data. Learn how to fix this." -msgstr "" -"%1$s - Nous avons détecté un ou plusieurs appels pour " -"récupérer les valeurs des champs ACF avant l’initialisation d’ACF. Ceci " -"n’est pas pris en charge et peut entraîner des données incorrectes ou " -"manquantes. Découvrez comment corriger ce " -"problème." - -#: includes/fields/class-acf-field-user.php:551 -msgid "%1$s must have a user with the %2$s role." -msgid_plural "%1$s must have a user with one of the following roles: %2$s" -msgstr[0] "%1$s doit avoir un compte avec le rôle %2$s." -msgstr[1] "%1$s doit avoir un compte avec l’un des rôles suivants : %2$s" - -#: includes/fields/class-acf-field-user.php:542 -msgid "%1$s must have a valid user ID." -msgstr "%1$s doit avoir un ID de compte valide." - -#: includes/fields/class-acf-field-user.php:380 -msgid "Invalid request." -msgstr "Demande invalide." - -#: includes/fields/class-acf-field-select.php:684 -msgid "%1$s is not one of %2$s" -msgstr "%1$s n’est pas l’un des %2$s" - -#: includes/fields/class-acf-field-post_object.php:700 -msgid "%1$s must have term %2$s." -msgid_plural "%1$s must have one of the following terms: %2$s" -msgstr[0] "%1$s doit contenir le terme %2$s." -msgstr[1] "%1$s doit contenir l’un des termes suivants : %2$s" - -#: includes/fields/class-acf-field-post_object.php:684 -msgid "%1$s must be of post type %2$s." -msgid_plural "%1$s must be of one of the following post types: %2$s" -msgstr[0] "%1$s doit être une publication de type %2$s." -msgstr[1] "" -"%1$s doit appartenir à l’un des types de publication suivants : %2$s" - -#: includes/fields/class-acf-field-post_object.php:675 -msgid "%1$s must have a valid post ID." -msgstr "%1$s doit avoir un ID de publication valide." - -#: includes/fields/class-acf-field-file.php:475 -msgid "%s requires a valid attachment ID." -msgstr "%s nécessite un ID de fichier jointe valide." - -#: includes/admin/views/acf-field-group/options.php:233 -msgid "Show in REST API" -msgstr "Afficher dans l’API REST" - -#: includes/fields/class-acf-field-color_picker.php:168 -msgid "Enable Transparency" -msgstr "Activer la transparence" - -#: includes/fields/class-acf-field-color_picker.php:187 -msgid "RGBA Array" -msgstr "Tableau RGBA" - -#: includes/fields/class-acf-field-color_picker.php:98 -msgid "RGBA String" -msgstr "Chaine RGBA" - -#: includes/fields/class-acf-field-color_picker.php:97 -#: includes/fields/class-acf-field-color_picker.php:186 -msgid "Hex String" -msgstr "Chaine hexadécimale" - -#: includes/admin/views/browse-fields-modal.php:65 -msgid "Upgrade to PRO" -msgstr "Mettre à niveau vers PRO" - -#: includes/admin/post-types/admin-field-group.php:297 -#: includes/admin/post-types/admin-post-type.php:295 -#: includes/admin/post-types/admin-taxonomy.php:297 -msgctxt "post status" -msgid "Active" -msgstr "Actif" - -#: includes/fields/class-acf-field-email.php:181 -msgid "'%s' is not a valid email address" -msgstr "« %s » n’est pas une adresse e-mail valide" - -#: includes/fields/class-acf-field-color_picker.php:76 -msgid "Color value" -msgstr "Valeur de la couleur" - -#: includes/fields/class-acf-field-color_picker.php:74 -msgid "Select default color" -msgstr "Sélectionner une couleur par défaut" - -#: includes/fields/class-acf-field-color_picker.php:72 -msgid "Clear color" -msgstr "Effacer la couleur" - -#: includes/acf-wp-functions.php:90 -msgid "Blocks" -msgstr "Blocs" - -#: includes/acf-wp-functions.php:86 -msgid "Options" -msgstr "Options" - -#: includes/acf-wp-functions.php:82 -msgid "Users" -msgstr "Comptes" - -#: includes/acf-wp-functions.php:78 -msgid "Menu items" -msgstr "Éléments de menu" - -#: includes/acf-wp-functions.php:70 -msgid "Widgets" -msgstr "Widgets" - -#: includes/acf-wp-functions.php:62 -msgid "Attachments" -msgstr "Fichiers joints" - -#: includes/acf-wp-functions.php:57 -#: includes/admin/post-types/admin-post-types.php:137 -#: includes/admin/post-types/admin-taxonomies.php:112 -#: includes/admin/tools/class-acf-admin-tool-import.php:93 -#: includes/admin/views/acf-post-type/basic-settings.php:86 -#: includes/post-types/class-acf-taxonomy.php:90 -#: includes/post-types/class-acf-taxonomy.php:91 -msgid "Taxonomies" -msgstr "Taxonomies" - -#: includes/acf-wp-functions.php:44 -#: includes/admin/post-types/admin-post-type.php:126 -#: includes/admin/post-types/admin-post-types.php:139 -#: includes/admin/views/acf-post-type/advanced-settings.php:106 -#: assets/build/js/acf-internal-post-type.js:173 -#: assets/build/js/acf-internal-post-type.js:247 -msgid "Posts" -msgstr "Publications" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:76 -msgid "Last updated: %s" -msgstr "Dernière mise à jour : %s" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:70 -msgid "Sorry, this post is unavailable for diff comparison." -msgstr "" -"Désolé, cette publication n’est pas disponible pour la comparaison de " -"différence." - -#: includes/ajax/class-acf-ajax-local-json-diff.php:42 -msgid "Invalid field group parameter(s)." -msgstr "Paramètres de groupe de champ invalides." - -#: includes/admin/admin-internal-post-type-list.php:413 -msgid "Awaiting save" -msgstr "En attente d’enregistrement" - -#: includes/admin/admin-internal-post-type-list.php:410 -msgid "Saved" -msgstr "Enregistré" - -#: includes/admin/admin-internal-post-type-list.php:406 -#: includes/admin/tools/class-acf-admin-tool-import.php:49 -msgid "Import" -msgstr "Importer" - -#: includes/admin/admin-internal-post-type-list.php:402 -msgid "Review changes" -msgstr "Évaluer les modifications" - -#: includes/admin/admin-internal-post-type-list.php:378 -msgid "Located in: %s" -msgstr "Situés dans : %s" - -#: includes/admin/admin-internal-post-type-list.php:375 -msgid "Located in plugin: %s" -msgstr "Situés dans l’extension : %s" - -#: includes/admin/admin-internal-post-type-list.php:372 -msgid "Located in theme: %s" -msgstr "Situés dans le thème : %s" - -#: includes/admin/post-types/admin-field-groups.php:261 -msgid "Various" -msgstr "Divers" - -#: includes/admin/admin-internal-post-type-list.php:216 -#: includes/admin/admin-internal-post-type-list.php:485 -msgid "Sync changes" -msgstr "Synchroniser les modifications" - -#: includes/admin/admin-internal-post-type-list.php:215 -msgid "Loading diff" -msgstr "Chargement du différentiel" - -#: includes/admin/admin-internal-post-type-list.php:214 -msgid "Review local JSON changes" -msgstr "Vérifier les modifications JSON locales" - -#: includes/admin/admin.php:170 -msgid "Visit website" -msgstr "Visiter le site" - -#: includes/admin/admin.php:169 -msgid "View details" -msgstr "Voir les détails" - -#: includes/admin/admin.php:168 -msgid "Version %s" -msgstr "Version %s" - -#: includes/admin/admin.php:167 -msgid "Information" -msgstr "Informations" - -#: includes/admin/admin.php:158 -msgid "" -"Help Desk. The support professionals on " -"our Help Desk will assist with your more in depth, technical challenges." -msgstr "" -"Service d’assistance. Les " -"professionnels du support de notre service d’assistance vous aideront à " -"résoudre vos problèmes techniques les plus complexes." - -#: includes/admin/admin.php:154 -msgid "" -"Discussions. We have an active and " -"friendly community on our Community Forums who may be able to help you " -"figure out the 'how-tos' of the ACF world." -msgstr "" -"Discussions. Nous avons une communauté " -"active et amicale sur nos forums communautaires qui peut vous aider à " -"comprendre le fonctionnement de l’écosystème ACF." - -#: includes/admin/admin.php:150 -msgid "" -"Documentation. Our extensive " -"documentation contains references and guides for most situations you may " -"encounter." -msgstr "" -"Documentation. Notre documentation " -"complète contient des références et des guides pour la plupart des " -"situations que vous pouvez rencontrer." - -#: includes/admin/admin.php:147 -msgid "" -"We are fanatical about support, and want you to get the best out of your " -"website with ACF. If you run into any difficulties, there are several places " -"you can find help:" -msgstr "" -"Nous sommes fanatiques du support et souhaitons que vous tiriez le meilleur " -"parti de votre site avec ACF. Si vous rencontrez des difficultés, il existe " -"plusieurs endroits où vous pouvez trouver de l’aide :" - -#: includes/admin/admin.php:144 includes/admin/admin.php:146 -msgid "Help & Support" -msgstr "Aide & support" - -#: includes/admin/admin.php:135 -msgid "" -"Please use the Help & Support tab to get in touch should you find yourself " -"requiring assistance." -msgstr "" -"Veuillez utiliser l’onglet « Aide & support » pour nous contacter si vous " -"avez besoin d’assistance." - -#: includes/admin/admin.php:132 -msgid "" -"Before creating your first Field Group, we recommend first reading our Getting started guide to familiarize " -"yourself with the plugin's philosophy and best practises." -msgstr "" -"Avant de créer votre premier groupe de champ, nous vous recommandons de lire " -"notre guide Pour commencer afin de vous " -"familiariser avec la philosophie et les meilleures pratiques de l’extension." - -#: includes/admin/admin.php:130 -msgid "" -"The Advanced Custom Fields plugin provides a visual form builder to " -"customize WordPress edit screens with extra fields, and an intuitive API to " -"display custom field values in any theme template file." -msgstr "" -"L’extension Advanced Custom Fields fournit un constructeur visuel de " -"formulaires pour modifier les écrans de WordPress avec des champs " -"supplémentaires, ainsi qu’une API intuitive pour afficher les valeurs des " -"champs personnalisés dans n’importe quel fichier de modèle de thème." - -#: includes/admin/admin.php:127 includes/admin/admin.php:129 -msgid "Overview" -msgstr "Aperçu" - -#: includes/locations.php:36 -msgid "Location type \"%s\" is already registered." -msgstr "Le type d’emplacement « %s » est déjà inscrit." - -#: includes/locations.php:25 -msgid "Class \"%s\" does not exist." -msgstr "La classe « %s » n’existe pas." - -#: includes/ajax/class-acf-ajax.php:157 -msgid "Invalid nonce." -msgstr "Nonce invalide." - -#: includes/fields/class-acf-field-user.php:375 -msgid "Error loading field." -msgstr "Erreur lors du chargement du champ." - -#: assets/build/js/acf-input.js:2750 assets/build/js/acf-input.js:2819 -#: assets/build/js/acf-input.js:2926 assets/build/js/acf-input.js:3000 -msgid "Location not found: %s" -msgstr "Emplacement introuvable : %s" - -#: includes/forms/form-user.php:353 -msgid "Error: %s" -msgstr "Erreur : %s" - -#: includes/locations/class-acf-location-widget.php:22 -msgid "Widget" -msgstr "Widget" - -#: includes/locations/class-acf-location-user-role.php:24 -msgid "User Role" -msgstr "Rôle du compte" - -#: includes/locations/class-acf-location-comment.php:22 -msgid "Comment" -msgstr "Commenter" - -#: includes/locations/class-acf-location-post-format.php:22 -msgid "Post Format" -msgstr "Format de publication" - -#: includes/locations/class-acf-location-nav-menu-item.php:22 -msgid "Menu Item" -msgstr "Élément de menu" - -#: includes/locations/class-acf-location-post-status.php:22 -msgid "Post Status" -msgstr "État de la publication" - -#: includes/acf-wp-functions.php:74 -#: includes/locations/class-acf-location-nav-menu.php:89 -msgid "Menus" -msgstr "Menus" - -#: includes/locations/class-acf-location-nav-menu.php:80 -msgid "Menu Locations" -msgstr "Emplacements de menus" - -#: includes/locations/class-acf-location-nav-menu.php:22 -msgid "Menu" -msgstr "Menu" - -#: includes/locations/class-acf-location-post-taxonomy.php:22 -msgid "Post Taxonomy" -msgstr "Taxonomie de la publication" - -#: includes/locations/class-acf-location-page-type.php:114 -msgid "Child Page (has parent)" -msgstr "Page enfant (a un parent)" - -#: includes/locations/class-acf-location-page-type.php:113 -msgid "Parent Page (has children)" -msgstr "Page parent (a des enfants)" - -#: includes/locations/class-acf-location-page-type.php:112 -msgid "Top Level Page (no parent)" -msgstr "Page de plus haut niveau (aucun parent)" - -#: includes/locations/class-acf-location-page-type.php:111 -msgid "Posts Page" -msgstr "Page des publications" - -#: includes/locations/class-acf-location-page-type.php:110 -msgid "Front Page" -msgstr "Page d’accueil" - -#: includes/locations/class-acf-location-page-type.php:22 -msgid "Page Type" -msgstr "Type de page" - -#: includes/locations/class-acf-location-current-user.php:73 -msgid "Viewing back end" -msgstr "Affichage de l’interface d’administration" - -#: includes/locations/class-acf-location-current-user.php:72 -msgid "Viewing front end" -msgstr "Vue de l’interface publique" - -#: includes/locations/class-acf-location-current-user.php:71 -msgid "Logged in" -msgstr "Connecté" - -#: includes/locations/class-acf-location-current-user.php:22 -msgid "Current User" -msgstr "Compte actuel" - -#: includes/locations/class-acf-location-page-template.php:22 -msgid "Page Template" -msgstr "Modèle de page" - -#: includes/locations/class-acf-location-user-form.php:74 -msgid "Register" -msgstr "S’inscrire" - -#: includes/locations/class-acf-location-user-form.php:73 -msgid "Add / Edit" -msgstr "Ajouter/Modifier" - -#: includes/locations/class-acf-location-user-form.php:22 -msgid "User Form" -msgstr "Formulaire de profil" - -#: includes/locations/class-acf-location-page-parent.php:22 -msgid "Page Parent" -msgstr "Page parente" - -#: includes/locations/class-acf-location-current-user-role.php:77 -msgid "Super Admin" -msgstr "Super admin" - -#: includes/locations/class-acf-location-current-user-role.php:22 -msgid "Current User Role" -msgstr "Rôle du compte actuel" - -#: includes/locations/class-acf-location-page-template.php:73 -#: includes/locations/class-acf-location-post-template.php:85 -msgid "Default Template" -msgstr "Modèle par défaut" - -#: includes/locations/class-acf-location-post-template.php:22 -msgid "Post Template" -msgstr "Modèle de publication" - -#: includes/locations/class-acf-location-post-category.php:22 -msgid "Post Category" -msgstr "Catégorie de publication" - -#: includes/locations/class-acf-location-attachment.php:84 -msgid "All %s formats" -msgstr "Tous les formats %s" - -#: includes/locations/class-acf-location-attachment.php:22 -msgid "Attachment" -msgstr "Fichier joint" - -#: includes/validation.php:366 -msgid "%s value is required" -msgstr "La valeur %s est obligatoire" - -#: includes/admin/views/acf-field-group/conditional-logic.php:59 -msgid "Show this field if" -msgstr "Afficher ce champ si" - -#: includes/admin/views/acf-field-group/conditional-logic.php:26 -#: includes/admin/views/acf-field-group/field.php:109 includes/fields.php:411 -msgid "Conditional Logic" -msgstr "Logique conditionnelle" - -#: includes/admin/views/acf-field-group/conditional-logic.php:156 -#: includes/admin/views/acf-field-group/location-rule.php:92 -msgid "and" -msgstr "et" - -#: includes/admin/post-types/admin-field-groups.php:123 -#: includes/admin/post-types/admin-post-types.php:143 -#: includes/admin/post-types/admin-taxonomies.php:143 -msgid "Local JSON" -msgstr "JSON Local" - -#: includes/admin/views/acf-field-group/pro-features.php:46 -msgid "Clone Field" -msgstr "Champ clone" - -#: includes/admin/views/upgrade/notice.php:30 -msgid "" -"Please also check all premium add-ons (%s) are updated to the latest version." -msgstr "" -"Veuillez également vérifier que tous les modules premium (%s) soient mis à " -"jour à la dernière version." - -#: includes/admin/views/upgrade/notice.php:28 -msgid "" -"This version contains improvements to your database and requires an upgrade." -msgstr "" -"Cette version contient des améliorations de la base de données et nécessite " -"une mise à niveau." - -#: includes/admin/views/upgrade/notice.php:28 -msgid "Thank you for updating to %1$s v%2$s!" -msgstr "Merci d‘avoir mis à jour %1$s v%2$s !" - -#: includes/admin/views/upgrade/notice.php:27 -msgid "Database Upgrade Required" -msgstr "Mise à niveau de la base de données requise" - -#: includes/admin/post-types/admin-field-group.php:141 -#: includes/admin/views/upgrade/notice.php:18 -msgid "Options Page" -msgstr "Page d’options" - -#: includes/admin/views/upgrade/notice.php:15 includes/fields.php:462 -msgid "Gallery" -msgstr "Galerie" - -#: includes/admin/views/upgrade/notice.php:12 includes/fields.php:452 -msgid "Flexible Content" -msgstr "Contenu flexible" - -#: includes/admin/views/upgrade/notice.php:9 includes/fields.php:472 -msgid "Repeater" -msgstr "Répéteur" - -#: includes/admin/views/tools/tools.php:24 -msgid "Back to all tools" -msgstr "Retour aux outils" - -#: includes/admin/views/acf-field-group/options.php:195 -msgid "" -"If multiple field groups appear on an edit screen, the first field group's " -"options will be used (the one with the lowest order number)" -msgstr "" -"Si plusieurs groupes de champs apparaissent sur un écran de modification, " -"les options du premier groupe de champs seront utilisées (celle avec le " -"numéro de commande le plus bas)." - -#: includes/admin/views/acf-field-group/options.php:195 -msgid "Select items to hide them from the edit screen." -msgstr "" -"Sélectionner les éléments à masquer sur l’écran de " -"modification." - -#: includes/admin/views/acf-field-group/options.php:194 -msgid "Hide on screen" -msgstr "Masquer de l’écran" - -#: includes/admin/views/acf-field-group/options.php:186 -msgid "Send Trackbacks" -msgstr "Envoyer des rétroliens" - -#: includes/admin/post-types/admin-taxonomy.php:128 -#: includes/admin/views/acf-field-group/options.php:185 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:159 -#: assets/build/js/acf-internal-post-type.js:180 -#: assets/build/js/acf-internal-post-type.js:254 -msgid "Tags" -msgstr "Étiquettes" - -#: includes/admin/post-types/admin-taxonomy.php:130 -#: includes/admin/views/acf-field-group/options.php:184 -#: assets/build/js/acf-internal-post-type.js:183 -#: assets/build/js/acf-internal-post-type.js:257 -msgid "Categories" -msgstr "Catégories" - -#: includes/admin/views/acf-field-group/options.php:182 -#: includes/admin/views/acf-post-type/advanced-settings.php:28 -msgid "Page Attributes" -msgstr "Attributs de page" - -#: includes/admin/views/acf-field-group/options.php:181 -msgid "Format" -msgstr "Format" - -#: includes/admin/views/acf-field-group/options.php:180 -#: includes/admin/views/acf-post-type/advanced-settings.php:22 -msgid "Author" -msgstr "Auteur/autrice" - -#: includes/admin/views/acf-field-group/options.php:179 -msgid "Slug" -msgstr "Slug" - -#: includes/admin/views/acf-field-group/options.php:178 -#: includes/admin/views/acf-post-type/advanced-settings.php:27 -msgid "Revisions" -msgstr "Révisions" - -#: includes/acf-wp-functions.php:66 -#: includes/admin/views/acf-field-group/options.php:177 -#: includes/admin/views/acf-post-type/advanced-settings.php:23 -msgid "Comments" -msgstr "Commentaires" - -#: includes/admin/views/acf-field-group/options.php:176 -msgid "Discussion" -msgstr "Commentaires" - -#: includes/admin/views/acf-field-group/options.php:174 -#: includes/admin/views/acf-post-type/advanced-settings.php:26 -msgid "Excerpt" -msgstr "Extrait" - -#: includes/admin/views/acf-field-group/options.php:173 -msgid "Content Editor" -msgstr "Éditeur de contenu" - -#: includes/admin/views/acf-field-group/options.php:172 -msgid "Permalink" -msgstr "Permalien" - -#: includes/admin/views/acf-field-group/options.php:250 -msgid "Shown in field group list" -msgstr "Affiché dans la liste des groupes de champs" - -#: includes/admin/views/acf-field-group/options.php:157 -msgid "Field groups with a lower order will appear first" -msgstr "Les groupes de champs avec un ordre inférieur apparaitront en premier" - -#: includes/admin/views/acf-field-group/options.php:156 -msgid "Order No." -msgstr "N° d’ordre." - -#: includes/admin/views/acf-field-group/options.php:147 -msgid "Below fields" -msgstr "Sous les champs" - -#: includes/admin/views/acf-field-group/options.php:146 -msgid "Below labels" -msgstr "Sous les libellés" - -#: includes/admin/views/acf-field-group/options.php:139 -msgid "Instruction Placement" -msgstr "Emplacement des instructions" - -#: includes/admin/views/acf-field-group/options.php:122 -msgid "Label Placement" -msgstr "Emplacement des libellés" - -#: includes/admin/views/acf-field-group/options.php:110 -msgid "Side" -msgstr "Sur le côté" - -#: includes/admin/views/acf-field-group/options.php:109 -msgid "Normal (after content)" -msgstr "Normal (après le contenu)" - -#: includes/admin/views/acf-field-group/options.php:108 -msgid "High (after title)" -msgstr "Haute (après le titre)" - -#: includes/admin/views/acf-field-group/options.php:101 -msgid "Position" -msgstr "Emplacement" - -#: includes/admin/views/acf-field-group/options.php:92 -msgid "Seamless (no metabox)" -msgstr "Sans contour (pas de boîte meta)" - -#: includes/admin/views/acf-field-group/options.php:91 -msgid "Standard (WP metabox)" -msgstr "Standard (boîte méta WP)" - -#: includes/admin/views/acf-field-group/options.php:84 -msgid "Style" -msgstr "Style" - -#: includes/admin/views/acf-field-group/fields.php:55 -msgid "Type" -msgstr "Type" - -#: includes/admin/post-types/admin-field-groups.php:117 -#: includes/admin/post-types/admin-post-types.php:136 -#: includes/admin/post-types/admin-taxonomies.php:136 -#: includes/admin/views/acf-field-group/fields.php:54 -msgid "Key" -msgstr "Clé" - -#. translators: Hidden accessibility text for the positional order number of -#. the field. -#: includes/admin/views/acf-field-group/fields.php:48 -msgid "Order" -msgstr "Ordre" - -#: includes/admin/views/acf-field-group/field.php:322 -msgid "Close Field" -msgstr "Fermer le champ" - -#: includes/admin/views/acf-field-group/field.php:253 -msgid "id" -msgstr "ID" - -#: includes/admin/views/acf-field-group/field.php:237 -msgid "class" -msgstr "classe" - -#: includes/admin/views/acf-field-group/field.php:279 -msgid "width" -msgstr "largeur" - -#: includes/admin/views/acf-field-group/field.php:273 -msgid "Wrapper Attributes" -msgstr "Attributs du conteneur" - -#: includes/admin/views/acf-field-group/field.php:196 -msgid "Required" -msgstr "Obligatoire" - -#: includes/admin/views/acf-field-group/field.php:221 -msgid "Instructions for authors. Shown when submitting data" -msgstr "" -"Instructions pour les auteurs et autrices. Affichées lors de l’envoi des " -"données" - -#: includes/admin/views/acf-field-group/field.php:220 -msgid "Instructions" -msgstr "Instructions" - -#: includes/admin/views/acf-field-group/field.php:129 -msgid "Field Type" -msgstr "Type de champ" - -#: includes/admin/views/acf-field-group/field.php:170 -msgid "Single word, no spaces. Underscores and dashes allowed" -msgstr "" -"Un seul mot. Aucun espace. Les tirets bas et les tirets sont autorisés." - -#: includes/admin/views/acf-field-group/field.php:169 -msgid "Field Name" -msgstr "Nom du champ" - -#: includes/admin/views/acf-field-group/field.php:157 -msgid "This is the name which will appear on the EDIT page" -msgstr "Ceci est le nom qui apparaîtra sur la page de modification" - -#: includes/admin/views/acf-field-group/field.php:156 -#: includes/admin/views/browse-fields-modal.php:59 -msgid "Field Label" -msgstr "Libellé du champ" - -#: includes/admin/views/acf-field-group/field.php:81 -msgid "Delete" -msgstr "Supprimer" - -#: includes/admin/views/acf-field-group/field.php:81 -msgid "Delete field" -msgstr "Supprimer le champ" - -#: includes/admin/views/acf-field-group/field.php:79 -msgid "Move" -msgstr "Déplacer" - -#: includes/admin/views/acf-field-group/field.php:79 -msgid "Move field to another group" -msgstr "Deplacer le champ vers un autre groupe" - -#: includes/admin/views/acf-field-group/field.php:77 -msgid "Duplicate field" -msgstr "Dupliquer le champ" - -#: includes/admin/views/acf-field-group/field.php:73 -#: includes/admin/views/acf-field-group/field.php:76 -msgid "Edit field" -msgstr "Modifier le champ" - -#: includes/admin/views/acf-field-group/field.php:69 -msgid "Drag to reorder" -msgstr "Faites glisser pour réorganiser" - -#: includes/admin/post-types/admin-field-group.php:103 -#: includes/admin/views/acf-field-group/location-group.php:3 -#: assets/build/js/acf-field-group.js:2347 -#: assets/build/js/acf-field-group.js:2763 -msgid "Show this field group if" -msgstr "Afficher ce groupe de champs si" - -#: includes/admin/views/upgrade/upgrade.php:94 -#: includes/ajax/class-acf-ajax-upgrade.php:34 -msgid "No updates available." -msgstr "Aucune mise à jour disponible." - -#: includes/admin/views/upgrade/upgrade.php:33 -msgid "Database upgrade complete. See what's new" -msgstr "" -"Mise à niveau de base de données complète. Voir les " -"nouveautés" - -#: includes/admin/views/upgrade/upgrade.php:30 -msgid "Reading upgrade tasks..." -msgstr "Lecture des tâches de mise à niveau…" - -#: includes/admin/views/upgrade/network.php:165 -#: includes/admin/views/upgrade/upgrade.php:65 -msgid "Upgrade failed." -msgstr "Mise à niveau échouée." - -#: includes/admin/views/upgrade/network.php:162 -msgid "Upgrade complete." -msgstr "Mise à niveau terminée." - -#: includes/admin/views/upgrade/network.php:148 -#: includes/admin/views/upgrade/upgrade.php:31 -msgid "Upgrading data to version %s" -msgstr "Mise à niveau des données vers la version %s" - -#: includes/admin/views/upgrade/network.php:121 -#: includes/admin/views/upgrade/notice.php:44 -msgid "" -"It is strongly recommended that you backup your database before proceeding. " -"Are you sure you wish to run the updater now?" -msgstr "" -"Il est recommandé de sauvegarder votre base de données avant de procéder. " -"Confirmez-vous le lancement de la mise à jour maintenant ?" - -#: includes/admin/views/upgrade/network.php:117 -msgid "Please select at least one site to upgrade." -msgstr "Veuillez choisir au moins un site à mettre à niveau." - -#: includes/admin/views/upgrade/network.php:97 -msgid "" -"Database Upgrade complete. Return to network dashboard" -msgstr "" -"Mise à niveau de la base de données effectuée. Retourner au " -"tableau de bord du réseau" - -#: includes/admin/views/upgrade/network.php:80 -msgid "Site is up to date" -msgstr "Le site est à jour" - -#: includes/admin/views/upgrade/network.php:78 -msgid "Site requires database upgrade from %1$s to %2$s" -msgstr "" -"Le site nécessite une mise à niveau de la base de données à partir de %1$s " -"vers %2$s" - -#: includes/admin/views/upgrade/network.php:36 -#: includes/admin/views/upgrade/network.php:47 -msgid "Site" -msgstr "Site" - -#: includes/admin/views/upgrade/network.php:26 -#: includes/admin/views/upgrade/network.php:27 -#: includes/admin/views/upgrade/network.php:96 -msgid "Upgrade Sites" -msgstr "Mettre à niveau les sites" - -#: includes/admin/views/upgrade/network.php:26 -msgid "" -"The following sites require a DB upgrade. Check the ones you want to update " -"and then click %s." -msgstr "" -"Les sites suivants nécessitent une mise à niveau de la base de données. " -"Sélectionner ceux que vous voulez mettre à jour et cliquer sur %s." - -#: includes/admin/views/acf-field-group/conditional-logic.php:171 -#: includes/admin/views/acf-field-group/locations.php:38 -msgid "Add rule group" -msgstr "Ajouter un groupe de règles" - -#: includes/admin/views/acf-field-group/locations.php:10 -msgid "" -"Create a set of rules to determine which edit screens will use these " -"advanced custom fields" -msgstr "" -"Créer un ensemble de règles pour déterminer quels écrans de modification " -"utiliseront ces champs personnalisés avancés" - -#: includes/admin/views/acf-field-group/locations.php:9 -msgid "Rules" -msgstr "Règles" - -#: includes/admin/tools/class-acf-admin-tool-export.php:510 -msgid "Copied" -msgstr "Copié" - -#: includes/admin/tools/class-acf-admin-tool-export.php:486 -msgid "Copy to clipboard" -msgstr "Copier dans le presse-papier" - -#: includes/admin/tools/class-acf-admin-tool-export.php:385 -msgid "" -"Select the items you would like to export and then select your export " -"method. Export As JSON to export to a .json file which you can then import " -"to another ACF installation. Generate PHP to export to PHP code which you " -"can place in your theme." -msgstr "" -"Sélectionnez les éléments que vous souhaitez exporter, puis choisissez la " -"méthode d’exportation. « Exporter comme JSON » pour exporter vers un " -"fichier .json que vous pouvez ensuite importer dans une autre installation " -"ACF. « Générer le PHP » pour exporter un code PHP que vous pouvez placer " -"dans votre thème." - -#: includes/admin/tools/class-acf-admin-tool-export.php:233 -msgid "Select Field Groups" -msgstr "Sélectionner les groupes de champs" - -#: includes/admin/tools/class-acf-admin-tool-export.php:96 -#: includes/admin/tools/class-acf-admin-tool-export.php:131 -msgid "No field groups selected" -msgstr "Aucun groupe de champs sélectionné" - -#: includes/admin/tools/class-acf-admin-tool-export.php:39 -#: includes/admin/tools/class-acf-admin-tool-export.php:393 -#: includes/admin/tools/class-acf-admin-tool-export.php:421 -msgid "Generate PHP" -msgstr "Générer le PHP" - -#: includes/admin/tools/class-acf-admin-tool-export.php:35 -msgid "Export Field Groups" -msgstr "Exporter les groupes de champs" - -#: includes/admin/tools/class-acf-admin-tool-import.php:177 -msgid "Import file empty" -msgstr "Fichier d’importation vide" - -#: includes/admin/tools/class-acf-admin-tool-import.php:168 -msgid "Incorrect file type" -msgstr "Type de fichier incorrect" - -#: includes/admin/tools/class-acf-admin-tool-import.php:163 -msgid "Error uploading file. Please try again" -msgstr "Erreur de téléversement du fichier. Veuillez réessayer." - -#: includes/admin/tools/class-acf-admin-tool-import.php:50 -msgid "" -"Select the Advanced Custom Fields JSON file you would like to import. When " -"you click the import button below, ACF will import the items in that file." -msgstr "" -"Sélectionnez le fichier JSON Advanced Custom Fields que vous souhaitez " -"importer. Quand vous cliquez sur le bouton « Importer » ci-dessous, ACF " -"importera les éléments dans ce fichier." - -#: includes/admin/tools/class-acf-admin-tool-import.php:27 -msgid "Import Field Groups" -msgstr "Importer les groupes de champs" - -#: includes/admin/admin-internal-post-type-list.php:401 -msgid "Sync" -msgstr "Synchroniser" - -#: includes/admin/admin-internal-post-type-list.php:858 -msgid "Select %s" -msgstr "Sélectionner %s" - -#: includes/admin/admin-internal-post-type-list.php:442 -#: includes/admin/admin-internal-post-type-list.php:474 -#: includes/admin/views/acf-field-group/field.php:77 -msgid "Duplicate" -msgstr "Dupliquer" - -#: includes/admin/admin-internal-post-type-list.php:442 -msgid "Duplicate this item" -msgstr "Dupliquer cet élément" - -#: includes/admin/views/acf-post-type/advanced-settings.php:41 -msgid "Supports" -msgstr "Prend en charge" - -#: includes/admin/admin.php:261 includes/admin/views/browse-fields-modal.php:92 -msgid "Documentation" -msgstr "Documentation" - -#: includes/admin/post-types/admin-field-groups.php:116 -#: includes/admin/post-types/admin-post-types.php:135 -#: includes/admin/post-types/admin-taxonomies.php:135 -#: includes/admin/views/acf-field-group/options.php:249 -#: includes/admin/views/acf-post-type/advanced-settings.php:62 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:114 -#: includes/admin/views/upgrade/network.php:38 -#: includes/admin/views/upgrade/network.php:49 -msgid "Description" -msgstr "Description" - -#: includes/admin/admin-internal-post-type-list.php:398 -#: includes/admin/admin-internal-post-type-list.php:747 -msgid "Sync available" -msgstr "Synchronisation disponible" - -#. translators: %s number of field groups synchronized -#: includes/admin/post-types/admin-field-groups.php:381 -msgid "Field group synchronized." -msgid_plural "%s field groups synchronized." -msgstr[0] "Groupe de champs synchronisé." -msgstr[1] "%s groupes de champs synchronisés." - -#. translators: %s number of field groups duplicated -#: includes/admin/post-types/admin-field-groups.php:374 -msgid "Field group duplicated." -msgid_plural "%s field groups duplicated." -msgstr[0] "Groupe de champs dupliqué." -msgstr[1] "%s groupes de champs dupliqués." - -#: includes/admin/admin-internal-post-type-list.php:137 -msgid "Active (%s)" -msgid_plural "Active (%s)" -msgstr[0] "Actif (%s)" -msgstr[1] "Actifs (%s)" - -#: includes/admin/admin-upgrade.php:254 -msgid "Review sites & upgrade" -msgstr "Examiner les sites et mettre à niveau" - -#: includes/admin/admin-upgrade.php:59 includes/admin/admin-upgrade.php:93 -#: includes/admin/admin-upgrade.php:94 includes/admin/admin-upgrade.php:230 -#: includes/admin/views/upgrade/network.php:24 -#: includes/admin/views/upgrade/upgrade.php:26 -msgid "Upgrade Database" -msgstr "Mettre à niveau la base de données" - -#: includes/admin/views/acf-field-group/options.php:175 -#: includes/admin/views/acf-post-type/advanced-settings.php:30 -msgid "Custom Fields" -msgstr "Champs personnalisés" - -#: includes/admin/post-types/admin-field-group.php:616 -msgid "Move Field" -msgstr "Déplacer le champ" - -#: includes/admin/post-types/admin-field-group.php:605 -#: includes/admin/post-types/admin-field-group.php:609 -msgid "Please select the destination for this field" -msgstr "Veuillez sélectionner la destination pour ce champ" - -#. translators: Confirmation message once a field has been moved to a different -#. field group. -#: includes/admin/post-types/admin-field-group.php:567 -msgid "The %1$s field can now be found in the %2$s field group" -msgstr "" -"Le champ %1$s peut maintenant être trouvé dans le groupe de champs %2$s" - -#: includes/admin/post-types/admin-field-group.php:564 -msgid "Move Complete." -msgstr "Déplacement effectué." - -#: includes/admin/views/acf-field-group/field.php:39 -#: includes/admin/views/acf-field-group/options.php:217 -#: includes/admin/views/acf-post-type/advanced-settings.php:78 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:130 -msgid "Active" -msgstr "Actif" - -#: includes/admin/post-types/admin-field-group.php:266 -msgid "Field Keys" -msgstr "Clés des champs" - -#: includes/admin/post-types/admin-field-group.php:164 -#: includes/admin/tools/class-acf-admin-tool-export.php:342 -msgid "Settings" -msgstr "Réglages" - -#: includes/admin/post-types/admin-field-groups.php:118 -msgid "Location" -msgstr "Emplacement" - -#: includes/admin/post-types/admin-field-group.php:104 -#: assets/build/js/acf-input.js:983 assets/build/js/acf-input.js:1075 -msgid "Null" -msgstr "Null" - -#: includes/admin/post-types/admin-field-group.php:101 -#: includes/class-acf-internal-post-type.php:730 -#: includes/post-types/class-acf-field-group.php:345 -#: assets/build/js/acf-field-group.js:1510 -#: assets/build/js/acf-field-group.js:1821 -msgid "copy" -msgstr "copier" - -#: includes/admin/post-types/admin-field-group.php:100 -#: assets/build/js/acf-field-group.js:623 -#: assets/build/js/acf-field-group.js:778 -msgid "(this field)" -msgstr "(ce champ)" - -#: includes/admin/post-types/admin-field-group.php:98 -#: assets/build/js/acf-input.js:918 assets/build/js/acf-input.js:943 -#: assets/build/js/acf-input.js:1002 assets/build/js/acf-input.js:1030 -msgid "Checked" -msgstr "Coché" - -#: includes/admin/post-types/admin-field-group.php:94 -#: assets/build/js/acf-field-group.js:1615 -#: assets/build/js/acf-field-group.js:1933 -msgid "Move Custom Field" -msgstr "Déplacer le champ personnalisé" - -#: includes/admin/post-types/admin-field-group.php:93 -#: assets/build/js/acf-field-group.js:649 -#: assets/build/js/acf-field-group.js:804 -msgid "No toggle fields available" -msgstr "Aucun champ de sélection disponible" - -#: includes/admin/post-types/admin-field-group.php:91 -msgid "Field group title is required" -msgstr "Le titre du groupe de champ est requis" - -#: includes/admin/post-types/admin-field-group.php:90 -#: assets/build/js/acf-field-group.js:1604 -#: assets/build/js/acf-field-group.js:1919 -msgid "This field cannot be moved until its changes have been saved" -msgstr "" -"Ce champ ne peut pas être déplacé tant que ses modifications n’ont pas été " -"enregistrées" - -#: includes/admin/post-types/admin-field-group.php:89 -#: assets/build/js/acf-field-group.js:1414 -#: assets/build/js/acf-field-group.js:1716 -msgid "The string \"field_\" may not be used at the start of a field name" -msgstr "" -"La chaine « field_ » ne peut pas être utilisée au début du nom d’un champ" - -#: includes/admin/post-types/admin-field-group.php:71 -msgid "Field group draft updated." -msgstr "Brouillon du groupe de champs mis à jour." - -#: includes/admin/post-types/admin-field-group.php:70 -msgid "Field group scheduled for." -msgstr "Groupe de champs programmé." - -#: includes/admin/post-types/admin-field-group.php:69 -msgid "Field group submitted." -msgstr "Groupe de champs envoyé." - -#: includes/admin/post-types/admin-field-group.php:68 -msgid "Field group saved." -msgstr "Groupe de champs sauvegardé." - -#: includes/admin/post-types/admin-field-group.php:67 -msgid "Field group published." -msgstr "Groupe de champs publié." - -#: includes/admin/post-types/admin-field-group.php:64 -msgid "Field group deleted." -msgstr "Groupe de champs supprimé." - -#: includes/admin/post-types/admin-field-group.php:62 -#: includes/admin/post-types/admin-field-group.php:63 -#: includes/admin/post-types/admin-field-group.php:65 -msgid "Field group updated." -msgstr "Groupe de champs mis à jour." - -#: includes/admin/admin-tools.php:118 -#: includes/admin/views/global/navigation.php:246 -#: includes/admin/views/tools/tools.php:21 -msgid "Tools" -msgstr "Outils" - -#: includes/locations/abstract-acf-location.php:106 -msgid "is not equal to" -msgstr "n’est pas égal à" - -#: includes/locations/abstract-acf-location.php:105 -msgid "is equal to" -msgstr "est égal à" - -#: includes/locations.php:102 -msgid "Forms" -msgstr "Formulaires" - -#: includes/admin/post-types/admin-post-type.php:127 includes/locations.php:100 -#: includes/locations/class-acf-location-page.php:22 -#: assets/build/js/acf-internal-post-type.js:175 -#: assets/build/js/acf-internal-post-type.js:249 -msgid "Page" -msgstr "Page" - -#: includes/admin/post-types/admin-post-type.php:125 includes/locations.php:99 -#: includes/locations/class-acf-location-post.php:22 -#: assets/build/js/acf-internal-post-type.js:172 -#: assets/build/js/acf-internal-post-type.js:246 -msgid "Post" -msgstr "Publication" - -#: includes/fields.php:354 -msgid "Relational" -msgstr "Relationnel" - -#: includes/fields.php:353 -msgid "Choice" -msgstr "Choix" - -#: includes/fields.php:351 -msgid "Basic" -msgstr "Basique" - -#: includes/fields.php:320 -msgid "Unknown" -msgstr "Inconnu" - -#: includes/fields.php:320 -msgid "Field type does not exist" -msgstr "Le type de champ n’existe pas" - -#: includes/forms/form-front.php:236 -msgid "Spam Detected" -msgstr "Indésirable détecté" - -#: includes/forms/form-front.php:107 -msgid "Post updated" -msgstr "Publication mise à jour" - -#: includes/forms/form-front.php:106 -msgid "Update" -msgstr "Mise à jour" - -#: includes/forms/form-front.php:57 -msgid "Validate Email" -msgstr "Valider l’e-mail" - -#: includes/fields.php:352 includes/forms/form-front.php:49 -msgid "Content" -msgstr "Contenu" - -#: includes/admin/views/acf-post-type/advanced-settings.php:21 -#: includes/forms/form-front.php:40 -msgid "Title" -msgstr "Titre" - -#: includes/assets.php:372 includes/forms/form-comment.php:160 -#: assets/build/js/acf-input.js:7382 assets/build/js/acf-input.js:7968 -msgid "Edit field group" -msgstr "Modifier le groupe de champs" - -#: includes/admin/post-types/admin-field-group.php:117 -#: assets/build/js/acf-input.js:1125 assets/build/js/acf-input.js:1230 -msgid "Selection is less than" -msgstr "La sélection est inférieure à" - -#: includes/admin/post-types/admin-field-group.php:116 -#: assets/build/js/acf-input.js:1106 assets/build/js/acf-input.js:1202 -msgid "Selection is greater than" -msgstr "La sélection est supérieure à" - -#: includes/admin/post-types/admin-field-group.php:115 -#: assets/build/js/acf-input.js:1075 assets/build/js/acf-input.js:1170 -msgid "Value is less than" -msgstr "La valeur est plus petite que" - -#: includes/admin/post-types/admin-field-group.php:114 -#: assets/build/js/acf-input.js:1045 assets/build/js/acf-input.js:1139 -msgid "Value is greater than" -msgstr "La valeur est plus grande que" - -#: includes/admin/post-types/admin-field-group.php:113 -#: assets/build/js/acf-input.js:888 assets/build/js/acf-input.js:960 -msgid "Value contains" -msgstr "La valeur contient" - -#: includes/admin/post-types/admin-field-group.php:112 -#: assets/build/js/acf-input.js:862 assets/build/js/acf-input.js:926 -msgid "Value matches pattern" -msgstr "La valeur correspond au modèle" - -#: includes/admin/post-types/admin-field-group.php:111 -#: assets/build/js/acf-input.js:840 assets/build/js/acf-input.js:1023 -#: assets/build/js/acf-input.js:903 assets/build/js/acf-input.js:1116 -msgid "Value is not equal to" -msgstr "La valeur n’est pas égale à" - -#: includes/admin/post-types/admin-field-group.php:110 -#: assets/build/js/acf-input.js:810 assets/build/js/acf-input.js:964 -#: assets/build/js/acf-input.js:864 assets/build/js/acf-input.js:1053 -msgid "Value is equal to" -msgstr "La valeur est égale à" - -#: includes/admin/post-types/admin-field-group.php:109 -#: assets/build/js/acf-input.js:788 assets/build/js/acf-input.js:841 -msgid "Has no value" -msgstr "A aucune valeur" - -#: includes/admin/post-types/admin-field-group.php:108 -#: assets/build/js/acf-input.js:758 assets/build/js/acf-input.js:783 -msgid "Has any value" -msgstr "A n’importe quelle valeur" - -#: includes/admin/admin-internal-post-type.php:345 -#: includes/admin/views/browse-fields-modal.php:62 includes/assets.php:353 -#: assets/build/js/acf.js:1564 assets/build/js/acf.js:1658 -msgid "Cancel" -msgstr "Annuler" - -#: includes/assets.php:349 assets/build/js/acf.js:1738 -#: assets/build/js/acf.js:1855 -msgid "Are you sure?" -msgstr "Confirmez-vous ?" - -#: includes/assets.php:369 assets/build/js/acf-input.js:9442 -#: assets/build/js/acf-input.js:10294 -msgid "%d fields require attention" -msgstr "%d champs nécessitent votre attention" - -#: includes/assets.php:368 assets/build/js/acf-input.js:9440 -#: assets/build/js/acf-input.js:10290 -msgid "1 field requires attention" -msgstr "Un champ nécessite votre attention" - -#: includes/assets.php:367 includes/validation.php:288 -#: includes/validation.php:298 assets/build/js/acf-input.js:9435 -#: assets/build/js/acf-input.js:10285 -msgid "Validation failed" -msgstr "Échec de la validation" - -#: includes/assets.php:366 assets/build/js/acf-input.js:9603 -#: assets/build/js/acf-input.js:10473 -msgid "Validation successful" -msgstr "Validation réussie" - -#: includes/media.php:54 assets/build/js/acf-input.js:7210 -#: assets/build/js/acf-input.js:7772 -msgid "Restricted" -msgstr "Limité" - -#: includes/media.php:53 assets/build/js/acf-input.js:7025 -#: assets/build/js/acf-input.js:7536 -msgid "Collapse Details" -msgstr "Replier les détails" - -#: includes/media.php:52 assets/build/js/acf-input.js:7025 -#: assets/build/js/acf-input.js:7533 -msgid "Expand Details" -msgstr "Déplier les détails" - -#: includes/admin/views/acf-post-type/advanced-settings.php:465 -#: includes/media.php:51 assets/build/js/acf-input.js:6892 -#: assets/build/js/acf-input.js:7381 -msgid "Uploaded to this post" -msgstr "Téléversé sur cette publication" - -#: includes/media.php:50 assets/build/js/acf-input.js:6931 -#: assets/build/js/acf-input.js:7420 -msgctxt "verb" -msgid "Update" -msgstr "Mettre à jour" - -#: includes/media.php:49 -msgctxt "verb" -msgid "Edit" -msgstr "Modifier" - -#: includes/assets.php:363 assets/build/js/acf-input.js:9212 -#: assets/build/js/acf-input.js:10056 -msgid "The changes you made will be lost if you navigate away from this page" -msgstr "" -"Les modifications que vous avez effectuées seront perdues si vous quittez " -"cette page" - -#: includes/api/api-helpers.php:3395 -msgid "File type must be %s." -msgstr "Le type de fichier doit être %s." - -#: includes/admin/post-types/admin-field-group.php:102 -#: includes/admin/views/acf-field-group/conditional-logic.php:59 -#: includes/admin/views/acf-field-group/conditional-logic.php:169 -#: includes/admin/views/acf-field-group/location-group.php:3 -#: includes/admin/views/acf-field-group/locations.php:36 -#: includes/api/api-helpers.php:3391 assets/build/js/acf-field-group.js:771 -#: assets/build/js/acf-field-group.js:2385 -#: assets/build/js/acf-field-group.js:933 -#: assets/build/js/acf-field-group.js:2807 -msgid "or" -msgstr "ou" - -#: includes/api/api-helpers.php:3364 -msgid "File size must not exceed %s." -msgstr "La taille du fichier ne doit pas excéder %s." - -#: includes/api/api-helpers.php:3359 -msgid "File size must be at least %s." -msgstr "La taille du fichier doit être d’au moins %s." - -#: includes/api/api-helpers.php:3344 -msgid "Image height must not exceed %dpx." -msgstr "La hauteur de l’image ne doit pas excéder %d px." - -#: includes/api/api-helpers.php:3339 -msgid "Image height must be at least %dpx." -msgstr "La hauteur de l’image doit être au minimum de %d px." - -#: includes/api/api-helpers.php:3325 -msgid "Image width must not exceed %dpx." -msgstr "La largeur de l’image ne doit pas excéder %d px." - -#: includes/api/api-helpers.php:3320 -msgid "Image width must be at least %dpx." -msgstr "La largeur de l’image doit être au minimum de %d px." - -#: includes/api/api-helpers.php:1561 includes/api/api-term.php:147 -msgid "(no title)" -msgstr "(aucun titre)" - -#: includes/api/api-helpers.php:853 -msgid "Full Size" -msgstr "Taille originale" - -#: includes/api/api-helpers.php:812 -msgid "Large" -msgstr "Grand" - -#: includes/api/api-helpers.php:811 -msgid "Medium" -msgstr "Moyen" - -#: includes/api/api-helpers.php:810 -msgid "Thumbnail" -msgstr "Miniature" - -#: includes/acf-field-functions.php:854 -#: includes/admin/post-types/admin-field-group.php:99 -#: assets/build/js/acf-field-group.js:1077 -#: assets/build/js/acf-field-group.js:1260 -msgid "(no label)" -msgstr "(aucun libellé)" - -#: includes/fields/class-acf-field-textarea.php:145 -msgid "Sets the textarea height" -msgstr "Définir la hauteur de la zone de texte" - -#: includes/fields/class-acf-field-textarea.php:144 -msgid "Rows" -msgstr "Lignes" - -#: includes/fields/class-acf-field-textarea.php:25 -msgid "Text Area" -msgstr "Zone de texte" - -#: includes/fields/class-acf-field-checkbox.php:451 -msgid "Prepend an extra checkbox to toggle all choices" -msgstr "Ajouter une case à cocher pour basculer tous les choix" - -#: includes/fields/class-acf-field-checkbox.php:413 -msgid "Save 'custom' values to the field's choices" -msgstr "Enregistrez les valeurs « personnalisées » dans les choix du champ" - -#: includes/fields/class-acf-field-checkbox.php:402 -msgid "Allow 'custom' values to be added" -msgstr "Autoriser l’ajout de valeurs personnalisées" - -#: includes/fields/class-acf-field-checkbox.php:38 -msgid "Add new choice" -msgstr "Ajouter un nouveau choix" - -#: includes/fields/class-acf-field-checkbox.php:174 -msgid "Toggle All" -msgstr "Tout (dé)sélectionner" - -#: includes/fields/class-acf-field-page_link.php:506 -msgid "Allow Archives URLs" -msgstr "Afficher les URL des archives" - -#: includes/fields/class-acf-field-page_link.php:179 -msgid "Archives" -msgstr "Archives" - -#: includes/fields/class-acf-field-page_link.php:25 -msgid "Page Link" -msgstr "Lien vers la page" - -#: includes/fields/class-acf-field-taxonomy.php:943 -#: includes/locations/class-acf-location-user-form.php:72 -msgid "Add" -msgstr "Ajouter" - -#: includes/admin/views/acf-field-group/fields.php:53 -#: includes/fields/class-acf-field-taxonomy.php:908 -msgid "Name" -msgstr "Nom" - -#: includes/fields/class-acf-field-taxonomy.php:892 -msgid "%s added" -msgstr "%s ajouté" - -#: includes/fields/class-acf-field-taxonomy.php:856 -msgid "%s already exists" -msgstr "%s existe déjà" - -#: includes/fields/class-acf-field-taxonomy.php:844 -msgid "User unable to add new %s" -msgstr "Compte incapable d’ajouter un nouveau %s" - -#: includes/fields/class-acf-field-taxonomy.php:742 -msgid "Term ID" -msgstr "ID de terme" - -#: includes/fields/class-acf-field-taxonomy.php:741 -msgid "Term Object" -msgstr "Objet de terme" - -#: includes/fields/class-acf-field-taxonomy.php:726 -msgid "Load value from posts terms" -msgstr "Charger une valeur depuis les termes de publications" - -#: includes/fields/class-acf-field-taxonomy.php:725 -msgid "Load Terms" -msgstr "Charger les termes" - -#: includes/fields/class-acf-field-taxonomy.php:715 -msgid "Connect selected terms to the post" -msgstr "Lier les termes sélectionnés à la publication" - -#: includes/fields/class-acf-field-taxonomy.php:714 -msgid "Save Terms" -msgstr "Enregistrer les termes" - -#: includes/fields/class-acf-field-taxonomy.php:704 -msgid "Allow new terms to be created whilst editing" -msgstr "Autoriser la création de nouveaux termes pendant la modification" - -#: includes/fields/class-acf-field-taxonomy.php:703 -msgid "Create Terms" -msgstr "Créer des termes" - -#: includes/fields/class-acf-field-taxonomy.php:762 -msgid "Radio Buttons" -msgstr "Boutons radio" - -#: includes/fields/class-acf-field-taxonomy.php:761 -msgid "Single Value" -msgstr "Valeur unique" - -#: includes/fields/class-acf-field-taxonomy.php:759 -msgid "Multi Select" -msgstr "Liste déroulante à multiple choix" - -#: includes/fields/class-acf-field-checkbox.php:25 -#: includes/fields/class-acf-field-taxonomy.php:758 -msgid "Checkbox" -msgstr "Case à cocher" - -#: includes/fields/class-acf-field-taxonomy.php:757 -msgid "Multiple Values" -msgstr "Valeurs multiples" - -#: includes/fields/class-acf-field-taxonomy.php:752 -msgid "Select the appearance of this field" -msgstr "Sélectionner l’apparence de ce champ" - -#: includes/fields/class-acf-field-taxonomy.php:751 -msgid "Appearance" -msgstr "Apparence" - -#: includes/fields/class-acf-field-taxonomy.php:693 -msgid "Select the taxonomy to be displayed" -msgstr "Sélectionner la taxonomie à afficher" - -#: includes/fields/class-acf-field-taxonomy.php:654 -msgctxt "No Terms" -msgid "No %s" -msgstr "N° %s" - -#: includes/fields/class-acf-field-number.php:266 -msgid "Value must be equal to or lower than %d" -msgstr "La valeur doit être inférieure ou égale à %d" - -#: includes/fields/class-acf-field-number.php:259 -msgid "Value must be equal to or higher than %d" -msgstr "La valeur doit être être supérieure ou égale à %d" - -#: includes/fields/class-acf-field-number.php:244 -msgid "Value must be a number" -msgstr "La valeur doit être un nombre" - -#: includes/fields/class-acf-field-number.php:25 -msgid "Number" -msgstr "Nombre" - -#: includes/fields/class-acf-field-radio.php:264 -msgid "Save 'other' values to the field's choices" -msgstr "Sauvegarder les valeurs « Autres » dans les choix des champs" - -#: includes/fields/class-acf-field-radio.php:253 -msgid "Add 'other' choice to allow for custom values" -msgstr "Ajouter le choix « Autre » pour autoriser les valeurs personnalisées" - -#: includes/admin/views/global/navigation.php:196 -msgid "Other" -msgstr "Autre" - -#: includes/fields/class-acf-field-radio.php:25 -msgid "Radio Button" -msgstr "Bouton radio" - -#: includes/fields/class-acf-field-accordion.php:107 -msgid "" -"Define an endpoint for the previous accordion to stop. This accordion will " -"not be visible." -msgstr "" -"Définir un point de terminaison pour l’accordéon précédent. Cet accordéon ne " -"sera pas visible." - -#: includes/fields/class-acf-field-accordion.php:96 -msgid "Allow this accordion to open without closing others." -msgstr "Autoriser l’ouverture de cet accordéon sans fermer les autres." - -#: includes/fields/class-acf-field-accordion.php:95 -msgid "Multi-Expand" -msgstr "" - -#: includes/fields/class-acf-field-accordion.php:85 -msgid "Display this accordion as open on page load." -msgstr "Ouvrir l’accordéon au chargement de la page." - -#: includes/fields/class-acf-field-accordion.php:84 -msgid "Open" -msgstr "Ouvrir" - -#: includes/fields/class-acf-field-accordion.php:25 -msgid "Accordion" -msgstr "Accordéon" - -#: includes/fields/class-acf-field-file.php:267 -#: includes/fields/class-acf-field-file.php:279 -msgid "Restrict which files can be uploaded" -msgstr "Restreindre quels fichiers peuvent être téléversés" - -#: includes/fields/class-acf-field-file.php:220 -msgid "File ID" -msgstr "ID du fichier" - -#: includes/fields/class-acf-field-file.php:219 -msgid "File URL" -msgstr "URL du fichier" - -#: includes/fields/class-acf-field-file.php:218 -msgid "File Array" -msgstr "Tableau de fichiers" - -#: includes/fields/class-acf-field-file.php:186 -msgid "Add File" -msgstr "Ajouter un fichier" - -#: includes/admin/tools/class-acf-admin-tool-import.php:156 -#: includes/fields/class-acf-field-file.php:186 -msgid "No file selected" -msgstr "Aucun fichier sélectionné" - -#: includes/fields/class-acf-field-file.php:150 -msgid "File name" -msgstr "Nom du fichier" - -#: includes/fields/class-acf-field-file.php:63 -#: assets/build/js/acf-input.js:2474 assets/build/js/acf-input.js:2625 -msgid "Update File" -msgstr "Mettre à jour le fichier" - -#: includes/fields/class-acf-field-file.php:62 -#: assets/build/js/acf-input.js:2473 assets/build/js/acf-input.js:2624 -msgid "Edit File" -msgstr "Modifier le fichier" - -#: includes/admin/tools/class-acf-admin-tool-import.php:58 -#: includes/fields/class-acf-field-file.php:61 -#: assets/build/js/acf-input.js:2447 assets/build/js/acf-input.js:2597 -msgid "Select File" -msgstr "Sélectionner un fichier" - -#: includes/fields/class-acf-field-file.php:25 -msgid "File" -msgstr "Fichier" - -#: includes/fields/class-acf-field-password.php:25 -msgid "Password" -msgstr "Mot de Passe" - -#: includes/fields/class-acf-field-select.php:392 -msgid "Specify the value returned" -msgstr "Spécifier la valeur retournée" - -#: includes/fields/class-acf-field-select.php:461 -msgid "Use AJAX to lazy load choices?" -msgstr "Utiliser AJAX pour un chargement différé des choix ?" - -#: includes/fields/class-acf-field-checkbox.php:362 -#: includes/fields/class-acf-field-select.php:381 -msgid "Enter each default value on a new line" -msgstr "Saisir chaque valeur par défaut sur une nouvelle ligne" - -#: includes/fields/class-acf-field-select.php:252 includes/media.php:48 -#: assets/build/js/acf-input.js:6790 assets/build/js/acf-input.js:7266 -msgctxt "verb" -msgid "Select" -msgstr "Sélectionner" - -#: includes/fields/class-acf-field-select.php:121 -msgctxt "Select2 JS load_fail" -msgid "Loading failed" -msgstr "Le chargement a échoué" - -#: includes/fields/class-acf-field-select.php:120 -msgctxt "Select2 JS searching" -msgid "Searching…" -msgstr "Recherche en cours..." - -#: includes/fields/class-acf-field-select.php:119 -msgctxt "Select2 JS load_more" -msgid "Loading more results…" -msgstr "Chargement de résultats supplémentaires…" - -#: includes/fields/class-acf-field-select.php:118 -msgctxt "Select2 JS selection_too_long_n" -msgid "You can only select %d items" -msgstr "Vous ne pouvez choisir que %d éléments" - -#: includes/fields/class-acf-field-select.php:117 -msgctxt "Select2 JS selection_too_long_1" -msgid "You can only select 1 item" -msgstr "Vous ne pouvez choisir qu’un seul élément" - -#: includes/fields/class-acf-field-select.php:116 -msgctxt "Select2 JS input_too_long_n" -msgid "Please delete %d characters" -msgstr "Veuillez supprimer %d caractères" - -#: includes/fields/class-acf-field-select.php:115 -msgctxt "Select2 JS input_too_long_1" -msgid "Please delete 1 character" -msgstr "Veuillez supprimer 1 caractère" - -#: includes/fields/class-acf-field-select.php:114 -msgctxt "Select2 JS input_too_short_n" -msgid "Please enter %d or more characters" -msgstr "Veuillez saisir %d caractères ou plus" - -#: includes/fields/class-acf-field-select.php:113 -msgctxt "Select2 JS input_too_short_1" -msgid "Please enter 1 or more characters" -msgstr "Veuillez saisir au minimum 1 caractère" - -#: includes/fields/class-acf-field-select.php:112 -msgctxt "Select2 JS matches_0" -msgid "No matches found" -msgstr "Aucun résultat" - -#: includes/fields/class-acf-field-select.php:111 -msgctxt "Select2 JS matches_n" -msgid "%d results are available, use up and down arrow keys to navigate." -msgstr "" -"%d résultats disponibles, utilisez les flèches haut et bas pour naviguer " -"parmi ceux-ci." - -#: includes/fields/class-acf-field-select.php:110 -msgctxt "Select2 JS matches_1" -msgid "One result is available, press enter to select it." -msgstr "" -"Un résultat est disponible, appuyez sur « Entrée » pour le sélectionner." - -#: includes/fields/class-acf-field-select.php:25 -#: includes/fields/class-acf-field-taxonomy.php:763 -msgctxt "noun" -msgid "Select" -msgstr "Liste déroulante" - -#: includes/fields/class-acf-field-user.php:73 -msgid "User ID" -msgstr "ID du compte" - -#: includes/fields/class-acf-field-user.php:72 -msgid "User Object" -msgstr "Objet du compte" - -#: includes/fields/class-acf-field-user.php:71 -msgid "User Array" -msgstr "Tableau de comptes" - -#: includes/fields/class-acf-field-user.php:59 -msgid "All user roles" -msgstr "Tous les rôles de comptes" - -#: includes/fields/class-acf-field-user.php:51 -msgid "Filter by Role" -msgstr "Filtrer par rôle" - -#: includes/fields/class-acf-field-user.php:15 includes/locations.php:101 -msgid "User" -msgstr "Compte" - -#: includes/fields/class-acf-field-separator.php:25 -msgid "Separator" -msgstr "Séparateur" - -#: includes/fields/class-acf-field-color_picker.php:75 -msgid "Select Color" -msgstr "Sélectionner une couleur" - -#: includes/admin/post-types/admin-post-type.php:129 -#: includes/admin/post-types/admin-taxonomy.php:131 -#: includes/fields/class-acf-field-color_picker.php:73 -#: assets/build/js/acf-internal-post-type.js:72 -#: assets/build/js/acf-internal-post-type.js:86 -msgid "Default" -msgstr "Par défaut" - -#: includes/admin/views/acf-post-type/advanced-settings.php:89 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:141 -#: includes/fields/class-acf-field-color_picker.php:71 -msgid "Clear" -msgstr "Effacer" - -#: includes/fields/class-acf-field-color_picker.php:25 -msgid "Color Picker" -msgstr "Sélecteur de couleur" - -#: includes/fields/class-acf-field-date_time_picker.php:88 -msgctxt "Date Time Picker JS pmTextShort" -msgid "P" -msgstr "P" - -#: includes/fields/class-acf-field-date_time_picker.php:87 -msgctxt "Date Time Picker JS pmText" -msgid "PM" -msgstr "PM" - -#: includes/fields/class-acf-field-date_time_picker.php:84 -msgctxt "Date Time Picker JS amTextShort" -msgid "A" -msgstr "A" - -#: includes/fields/class-acf-field-date_time_picker.php:83 -msgctxt "Date Time Picker JS amText" -msgid "AM" -msgstr "AM" - -#: includes/fields/class-acf-field-date_time_picker.php:81 -msgctxt "Date Time Picker JS selectText" -msgid "Select" -msgstr "Sélectionner" - -#: includes/fields/class-acf-field-date_time_picker.php:80 -msgctxt "Date Time Picker JS closeText" -msgid "Done" -msgstr "Terminé" - -#: includes/fields/class-acf-field-date_time_picker.php:79 -msgctxt "Date Time Picker JS currentText" -msgid "Now" -msgstr "Maintenant" - -#: includes/fields/class-acf-field-date_time_picker.php:78 -msgctxt "Date Time Picker JS timezoneText" -msgid "Time Zone" -msgstr "Fuseau horaire" - -#: includes/fields/class-acf-field-date_time_picker.php:77 -msgctxt "Date Time Picker JS microsecText" -msgid "Microsecond" -msgstr "Microseconde" - -#: includes/fields/class-acf-field-date_time_picker.php:76 -msgctxt "Date Time Picker JS millisecText" -msgid "Millisecond" -msgstr "Milliseconde" - -#: includes/fields/class-acf-field-date_time_picker.php:75 -msgctxt "Date Time Picker JS secondText" -msgid "Second" -msgstr "Seconde" - -#: includes/fields/class-acf-field-date_time_picker.php:74 -msgctxt "Date Time Picker JS minuteText" -msgid "Minute" -msgstr "Minute" - -#: includes/fields/class-acf-field-date_time_picker.php:73 -msgctxt "Date Time Picker JS hourText" -msgid "Hour" -msgstr "Heure" - -#: includes/fields/class-acf-field-date_time_picker.php:72 -msgctxt "Date Time Picker JS timeText" -msgid "Time" -msgstr "Heure" - -#: includes/fields/class-acf-field-date_time_picker.php:71 -msgctxt "Date Time Picker JS timeOnlyTitle" -msgid "Choose Time" -msgstr "Choisir l’heure" - -#: includes/fields/class-acf-field-date_time_picker.php:25 -msgid "Date Time Picker" -msgstr "Sélecteur de date et heure" - -#: includes/fields/class-acf-field-accordion.php:106 -msgid "Endpoint" -msgstr "Point de terminaison" - -#: includes/admin/views/acf-field-group/options.php:130 -#: includes/fields/class-acf-field-tab.php:115 -msgid "Left aligned" -msgstr "Aligné à gauche" - -#: includes/admin/views/acf-field-group/options.php:129 -#: includes/fields/class-acf-field-tab.php:114 -msgid "Top aligned" -msgstr "Aligné en haut" - -#: includes/fields/class-acf-field-tab.php:110 -msgid "Placement" -msgstr "Positionnement" - -#: includes/fields/class-acf-field-tab.php:26 -msgid "Tab" -msgstr "Onglet" - -#: includes/fields/class-acf-field-url.php:162 -msgid "Value must be a valid URL" -msgstr "Le champ doit contenir une URL valide" - -#: includes/fields/class-acf-field-link.php:177 -msgid "Link URL" -msgstr "URL du lien" - -#: includes/fields/class-acf-field-link.php:176 -msgid "Link Array" -msgstr "Tableau de liens" - -#: includes/fields/class-acf-field-link.php:145 -msgid "Opens in a new window/tab" -msgstr "Ouvrir dans une nouvelle fenêtre/onglet" - -#: includes/fields/class-acf-field-link.php:140 -msgid "Select Link" -msgstr "Sélectionner un lien" - -#: includes/fields/class-acf-field-link.php:25 -msgid "Link" -msgstr "Lien" - -#: includes/fields/class-acf-field-email.php:25 -msgid "Email" -msgstr "E-mail" - -#: includes/fields/class-acf-field-number.php:188 -#: includes/fields/class-acf-field-range.php:217 -msgid "Step Size" -msgstr "Taille de l’incrément" - -#: includes/fields/class-acf-field-number.php:158 -#: includes/fields/class-acf-field-range.php:195 -msgid "Maximum Value" -msgstr "Valeur maximum" - -#: includes/fields/class-acf-field-number.php:148 -#: includes/fields/class-acf-field-range.php:184 -msgid "Minimum Value" -msgstr "Valeur minimum" - -#: includes/fields/class-acf-field-range.php:25 -msgid "Range" -msgstr "Plage" - -#: includes/fields/class-acf-field-button-group.php:175 -#: includes/fields/class-acf-field-checkbox.php:379 -#: includes/fields/class-acf-field-radio.php:220 -#: includes/fields/class-acf-field-select.php:399 -msgid "Both (Array)" -msgstr "Les deux (tableau)" - -#: includes/admin/views/acf-field-group/fields.php:52 -#: includes/fields/class-acf-field-button-group.php:174 -#: includes/fields/class-acf-field-checkbox.php:378 -#: includes/fields/class-acf-field-radio.php:219 -#: includes/fields/class-acf-field-select.php:398 -msgid "Label" -msgstr "Libellé" - -#: includes/fields/class-acf-field-button-group.php:173 -#: includes/fields/class-acf-field-checkbox.php:377 -#: includes/fields/class-acf-field-radio.php:218 -#: includes/fields/class-acf-field-select.php:397 -msgid "Value" -msgstr "Valeur" - -#: includes/fields/class-acf-field-button-group.php:222 -#: includes/fields/class-acf-field-checkbox.php:441 -#: includes/fields/class-acf-field-radio.php:292 -msgid "Vertical" -msgstr "Vertical" - -#: includes/fields/class-acf-field-button-group.php:221 -#: includes/fields/class-acf-field-checkbox.php:442 -#: includes/fields/class-acf-field-radio.php:293 -msgid "Horizontal" -msgstr "Horizontal" - -#: includes/fields/class-acf-field-button-group.php:148 -#: includes/fields/class-acf-field-checkbox.php:352 -#: includes/fields/class-acf-field-radio.php:193 -#: includes/fields/class-acf-field-select.php:370 -msgid "red : Red" -msgstr "rouge : Rouge" - -#: includes/fields/class-acf-field-button-group.php:148 -#: includes/fields/class-acf-field-checkbox.php:352 -#: includes/fields/class-acf-field-radio.php:193 -#: includes/fields/class-acf-field-select.php:370 -msgid "For more control, you may specify both a value and label like this:" -msgstr "" -"Pour plus de contrôle, vous pouvez spécifier une valeur et un libellé de " -"cette manière :" - -#: includes/fields/class-acf-field-button-group.php:148 -#: includes/fields/class-acf-field-checkbox.php:352 -#: includes/fields/class-acf-field-radio.php:193 -#: includes/fields/class-acf-field-select.php:370 -msgid "Enter each choice on a new line." -msgstr "Saisir chaque choix sur une nouvelle ligne." - -#: includes/fields/class-acf-field-button-group.php:147 -#: includes/fields/class-acf-field-checkbox.php:351 -#: includes/fields/class-acf-field-radio.php:192 -#: includes/fields/class-acf-field-select.php:369 -msgid "Choices" -msgstr "Choix" - -#: includes/fields/class-acf-field-button-group.php:24 -msgid "Button Group" -msgstr "Groupe de boutons" - -#: includes/fields/class-acf-field-button-group.php:194 -#: includes/fields/class-acf-field-page_link.php:538 -#: includes/fields/class-acf-field-post_object.php:448 -#: includes/fields/class-acf-field-radio.php:238 -#: includes/fields/class-acf-field-select.php:429 -#: includes/fields/class-acf-field-taxonomy.php:772 -#: includes/fields/class-acf-field-user.php:103 -msgid "Allow Null" -msgstr "Autoriser une valeur vide" - -#: includes/fields/class-acf-field-page_link.php:263 -#: includes/fields/class-acf-field-post_object.php:257 -#: includes/fields/class-acf-field-taxonomy.php:930 -msgid "Parent" -msgstr "Parent" - -#: includes/fields/class-acf-field-wysiwyg.php:390 -msgid "TinyMCE will not be initialized until field is clicked" -msgstr "TinyMCE ne sera pas initialisé avant un clic dans le champ" - -#: includes/fields/class-acf-field-wysiwyg.php:389 -msgid "Delay Initialization" -msgstr "Retarder l’initialisation" - -#: includes/fields/class-acf-field-wysiwyg.php:378 -msgid "Show Media Upload Buttons" -msgstr "Afficher les boutons de téléversement de médias ?" - -#: includes/fields/class-acf-field-wysiwyg.php:362 -msgid "Toolbar" -msgstr "Barre d’outils" - -#: includes/fields/class-acf-field-wysiwyg.php:354 -msgid "Text Only" -msgstr "Texte Uniquement" - -#: includes/fields/class-acf-field-wysiwyg.php:353 -msgid "Visual Only" -msgstr "Visuel uniquement" - -#: includes/fields/class-acf-field-wysiwyg.php:352 -msgid "Visual & Text" -msgstr "Visuel & texte" - -#: includes/fields/class-acf-field-wysiwyg.php:347 -msgid "Tabs" -msgstr "Onglets" - -#: includes/fields/class-acf-field-wysiwyg.php:285 -msgid "Click to initialize TinyMCE" -msgstr "Cliquer pour initialiser TinyMCE" - -#: includes/fields/class-acf-field-wysiwyg.php:279 -msgctxt "Name for the Text editor tab (formerly HTML)" -msgid "Text" -msgstr "Texte" - -#: includes/fields/class-acf-field-wysiwyg.php:278 -msgid "Visual" -msgstr "Visuel" - -#: includes/fields/class-acf-field-text.php:189 -#: includes/fields/class-acf-field-textarea.php:236 -msgid "Value must not exceed %d characters" -msgstr "La valeur ne doit pas excéder %d caractères" - -#: includes/fields/class-acf-field-text.php:124 -#: includes/fields/class-acf-field-textarea.php:124 -msgid "Leave blank for no limit" -msgstr "Laisser vide pour ne fixer aucune limite" - -#: includes/fields/class-acf-field-text.php:123 -#: includes/fields/class-acf-field-textarea.php:123 -msgid "Character Limit" -msgstr "Limite de caractères" - -#: includes/fields/class-acf-field-email.php:158 -#: includes/fields/class-acf-field-number.php:209 -#: includes/fields/class-acf-field-password.php:105 -#: includes/fields/class-acf-field-range.php:239 -#: includes/fields/class-acf-field-text.php:164 -msgid "Appears after the input" -msgstr "Apparait après le champ" - -#: includes/fields/class-acf-field-email.php:157 -#: includes/fields/class-acf-field-number.php:208 -#: includes/fields/class-acf-field-password.php:104 -#: includes/fields/class-acf-field-range.php:238 -#: includes/fields/class-acf-field-text.php:163 -msgid "Append" -msgstr "Ajouter après" - -#: includes/fields/class-acf-field-email.php:148 -#: includes/fields/class-acf-field-number.php:199 -#: includes/fields/class-acf-field-password.php:95 -#: includes/fields/class-acf-field-range.php:229 -#: includes/fields/class-acf-field-text.php:154 -msgid "Appears before the input" -msgstr "Apparait avant le champ" - -#: includes/fields/class-acf-field-email.php:147 -#: includes/fields/class-acf-field-number.php:198 -#: includes/fields/class-acf-field-password.php:94 -#: includes/fields/class-acf-field-range.php:228 -#: includes/fields/class-acf-field-text.php:153 -msgid "Prepend" -msgstr "Ajouter avant" - -#: includes/fields/class-acf-field-email.php:138 -#: includes/fields/class-acf-field-number.php:179 -#: includes/fields/class-acf-field-password.php:85 -#: includes/fields/class-acf-field-text.php:144 -#: includes/fields/class-acf-field-textarea.php:156 -#: includes/fields/class-acf-field-url.php:122 -msgid "Appears within the input" -msgstr "Apparaît dans l’entrée" - -#: includes/fields/class-acf-field-email.php:137 -#: includes/fields/class-acf-field-number.php:178 -#: includes/fields/class-acf-field-password.php:84 -#: includes/fields/class-acf-field-text.php:143 -#: includes/fields/class-acf-field-textarea.php:155 -#: includes/fields/class-acf-field-url.php:121 -msgid "Placeholder Text" -msgstr "Texte indicatif" - -#: includes/fields/class-acf-field-button-group.php:158 -#: includes/fields/class-acf-field-email.php:118 -#: includes/fields/class-acf-field-number.php:129 -#: includes/fields/class-acf-field-radio.php:203 -#: includes/fields/class-acf-field-range.php:165 -#: includes/fields/class-acf-field-text.php:104 -#: includes/fields/class-acf-field-textarea.php:104 -#: includes/fields/class-acf-field-url.php:102 -#: includes/fields/class-acf-field-wysiwyg.php:312 -msgid "Appears when creating a new post" -msgstr "Apparaît à la création d’une nouvelle publication" - -#: includes/fields/class-acf-field-text.php:25 -msgid "Text" -msgstr "Texte" - -#: includes/fields/class-acf-field-relationship.php:794 -msgid "%1$s requires at least %2$s selection" -msgid_plural "%1$s requires at least %2$s selections" -msgstr[0] "%1$s requiert au moins %2$s sélection" -msgstr[1] "%1$s requiert au moins %2$s sélections" - -#: includes/fields/class-acf-field-post_object.php:417 -#: includes/fields/class-acf-field-relationship.php:644 -msgid "Post ID" -msgstr "ID de la publication" - -#: includes/fields/class-acf-field-post_object.php:17 -#: includes/fields/class-acf-field-post_object.php:416 -#: includes/fields/class-acf-field-relationship.php:643 -msgid "Post Object" -msgstr "Objet de la publication" - -#: includes/fields/class-acf-field-relationship.php:676 -msgid "Maximum Posts" -msgstr "Maximum de publications" - -#: includes/fields/class-acf-field-relationship.php:666 -msgid "Minimum Posts" -msgstr "Minimum de publications" - -#: includes/admin/views/acf-field-group/options.php:183 -#: includes/admin/views/acf-post-type/advanced-settings.php:29 -#: includes/fields/class-acf-field-relationship.php:701 -msgid "Featured Image" -msgstr "Image mise en avant" - -#: includes/fields/class-acf-field-relationship.php:697 -msgid "Selected elements will be displayed in each result" -msgstr "Les éléments sélectionnés seront affichés dans chaque résultat" - -#: includes/fields/class-acf-field-relationship.php:696 -msgid "Elements" -msgstr "Éléments" - -#: includes/fields/class-acf-field-relationship.php:630 -#: includes/fields/class-acf-field-taxonomy.php:20 -#: includes/fields/class-acf-field-taxonomy.php:692 -#: includes/locations/class-acf-location-taxonomy.php:22 -msgid "Taxonomy" -msgstr "Taxonomie" - -#: includes/fields/class-acf-field-relationship.php:629 -#: includes/locations/class-acf-location-post-type.php:22 -#: includes/post-types/class-acf-post-type.php:92 -msgid "Post Type" -msgstr "Type de publication" - -#: includes/fields/class-acf-field-relationship.php:623 -msgid "Filters" -msgstr "Filtres" - -#: includes/fields/class-acf-field-page_link.php:499 -#: includes/fields/class-acf-field-post_object.php:404 -#: includes/fields/class-acf-field-relationship.php:616 -msgid "All taxonomies" -msgstr "Toutes les taxonomies" - -#: includes/fields/class-acf-field-page_link.php:491 -#: includes/fields/class-acf-field-post_object.php:396 -#: includes/fields/class-acf-field-relationship.php:608 -msgid "Filter by Taxonomy" -msgstr "Filtrer par taxonomie" - -#: includes/fields/class-acf-field-page_link.php:469 -#: includes/fields/class-acf-field-post_object.php:374 -#: includes/fields/class-acf-field-relationship.php:586 -msgid "All post types" -msgstr "Tous les types de publication" - -#: includes/fields/class-acf-field-page_link.php:461 -#: includes/fields/class-acf-field-post_object.php:366 -#: includes/fields/class-acf-field-relationship.php:578 -msgid "Filter by Post Type" -msgstr "Filtrer par type de publication" - -#: includes/fields/class-acf-field-relationship.php:476 -msgid "Search..." -msgstr "Rechercher…" - -#: includes/fields/class-acf-field-relationship.php:406 -msgid "Select taxonomy" -msgstr "Sélectionner la taxonomie" - -#: includes/fields/class-acf-field-relationship.php:397 -msgid "Select post type" -msgstr "Choisissez le type de publication" - -#: includes/fields/class-acf-field-relationship.php:61 -#: assets/build/js/acf-input.js:3930 assets/build/js/acf-input.js:4214 -msgid "No matches found" -msgstr "Aucune correspondance trouvée" - -#: includes/fields/class-acf-field-relationship.php:60 -#: assets/build/js/acf-input.js:3913 assets/build/js/acf-input.js:4193 -msgid "Loading" -msgstr "Chargement" - -#: includes/fields/class-acf-field-relationship.php:59 -#: assets/build/js/acf-input.js:3818 assets/build/js/acf-input.js:4084 -msgid "Maximum values reached ( {max} values )" -msgstr "Valeurs maximum atteintes ({max} valeurs)" - -#: includes/fields/class-acf-field-relationship.php:17 -msgid "Relationship" -msgstr "Relation" - -#: includes/fields/class-acf-field-file.php:291 -#: includes/fields/class-acf-field-image.php:317 -msgid "Comma separated list. Leave blank for all types" -msgstr "" -"Séparez les valeurs par une virgule. Laissez blanc pour tout autoriser." - -#: includes/fields/class-acf-field-file.php:290 -#: includes/fields/class-acf-field-image.php:316 -msgid "Allowed File Types" -msgstr "Types de fichiers autorisés" - -#: includes/fields/class-acf-field-file.php:278 -#: includes/fields/class-acf-field-image.php:280 -msgid "Maximum" -msgstr "Maximum" - -#: includes/fields/class-acf-field-file.php:154 -#: includes/fields/class-acf-field-file.php:270 -#: includes/fields/class-acf-field-file.php:282 -#: includes/fields/class-acf-field-image.php:271 -#: includes/fields/class-acf-field-image.php:307 -msgid "File size" -msgstr "Taille du fichier" - -#: includes/fields/class-acf-field-image.php:245 -#: includes/fields/class-acf-field-image.php:281 -msgid "Restrict which images can be uploaded" -msgstr "Restreindre quelles images peuvent être téléversées" - -#: includes/fields/class-acf-field-file.php:266 -#: includes/fields/class-acf-field-image.php:244 -msgid "Minimum" -msgstr "Minimum" - -#: includes/fields/class-acf-field-file.php:235 -#: includes/fields/class-acf-field-image.php:210 -msgid "Uploaded to post" -msgstr "Téléversé dans la publication" - -#: includes/fields/class-acf-field-file.php:234 -#: includes/fields/class-acf-field-image.php:209 -#: includes/locations/class-acf-location-attachment.php:73 -#: includes/locations/class-acf-location-comment.php:61 -#: includes/locations/class-acf-location-nav-menu.php:74 -#: includes/locations/class-acf-location-taxonomy.php:63 -#: includes/locations/class-acf-location-user-form.php:71 -#: includes/locations/class-acf-location-user-role.php:78 -#: includes/locations/class-acf-location-widget.php:65 -msgid "All" -msgstr "Tous" - -#: includes/fields/class-acf-field-file.php:229 -#: includes/fields/class-acf-field-image.php:204 -msgid "Limit the media library choice" -msgstr "Limiter le choix de la médiathèque" - -#: includes/fields/class-acf-field-file.php:228 -#: includes/fields/class-acf-field-image.php:203 -msgid "Library" -msgstr "Médiathèque" - -#: includes/fields/class-acf-field-image.php:336 -msgid "Preview Size" -msgstr "Taille de prévisualisation" - -#: includes/fields/class-acf-field-image.php:195 -msgid "Image ID" -msgstr "ID de l’image" - -#: includes/fields/class-acf-field-image.php:194 -msgid "Image URL" -msgstr "URL de l’image" - -#: includes/fields/class-acf-field-image.php:193 -msgid "Image Array" -msgstr "Tableau de l’image" - -#: includes/fields/class-acf-field-button-group.php:168 -#: includes/fields/class-acf-field-checkbox.php:372 -#: includes/fields/class-acf-field-file.php:213 -#: includes/fields/class-acf-field-link.php:171 -#: includes/fields/class-acf-field-radio.php:213 -msgid "Specify the returned value on front end" -msgstr "Spécifier la valeur renvoyée publiquement" - -#: includes/fields/class-acf-field-button-group.php:167 -#: includes/fields/class-acf-field-checkbox.php:371 -#: includes/fields/class-acf-field-file.php:212 -#: includes/fields/class-acf-field-link.php:170 -#: includes/fields/class-acf-field-radio.php:212 -#: includes/fields/class-acf-field-taxonomy.php:736 -msgid "Return Value" -msgstr "Valeur de retour" - -#: includes/fields/class-acf-field-image.php:162 -msgid "Add Image" -msgstr "Ajouter image" - -#: includes/fields/class-acf-field-image.php:162 -msgid "No image selected" -msgstr "Aucune image sélectionnée" - -#: includes/assets.php:352 includes/fields/class-acf-field-file.php:162 -#: includes/fields/class-acf-field-image.php:142 -#: includes/fields/class-acf-field-link.php:145 assets/build/js/acf.js:1563 -#: assets/build/js/acf.js:1657 -msgid "Remove" -msgstr "Retirer" - -#: includes/admin/views/acf-field-group/field.php:76 -#: includes/fields/class-acf-field-file.php:160 -#: includes/fields/class-acf-field-image.php:140 -#: includes/fields/class-acf-field-link.php:145 -msgid "Edit" -msgstr "Modifier" - -#: includes/fields/class-acf-field-image.php:70 includes/media.php:55 -#: assets/build/js/acf-input.js:6837 assets/build/js/acf-input.js:7320 -msgid "All images" -msgstr "Toutes les images" - -#: includes/fields/class-acf-field-image.php:69 -#: assets/build/js/acf-input.js:3181 assets/build/js/acf-input.js:3399 -msgid "Update Image" -msgstr "Mettre à jour l’image" - -#: includes/fields/class-acf-field-image.php:68 -#: assets/build/js/acf-input.js:3180 assets/build/js/acf-input.js:3398 -msgid "Edit Image" -msgstr "Modifier l’image" - -#: includes/fields/class-acf-field-image.php:67 -#: assets/build/js/acf-input.js:3156 assets/build/js/acf-input.js:3373 -msgid "Select Image" -msgstr "Sélectionner une image" - -#: includes/fields/class-acf-field-image.php:25 -msgid "Image" -msgstr "Image" - -#: includes/fields/class-acf-field-message.php:125 -msgid "Allow HTML markup to display as visible text instead of rendering" -msgstr "Permet l’affichage du code HTML à l’écran au lieu de l’interpréter" - -#: includes/fields/class-acf-field-message.php:124 -msgid "Escape HTML" -msgstr "Autoriser le code HTML" - -#: includes/fields/class-acf-field-message.php:116 -#: includes/fields/class-acf-field-textarea.php:172 -msgid "No Formatting" -msgstr "Aucun formatage" - -#: includes/fields/class-acf-field-message.php:115 -#: includes/fields/class-acf-field-textarea.php:171 -msgid "Automatically add <br>" -msgstr "Ajouter automatiquement <br>" - -#: includes/fields/class-acf-field-message.php:114 -#: includes/fields/class-acf-field-textarea.php:170 -msgid "Automatically add paragraphs" -msgstr "Ajouter automatiquement des paragraphes" - -#: includes/fields/class-acf-field-message.php:110 -#: includes/fields/class-acf-field-textarea.php:166 -msgid "Controls how new lines are rendered" -msgstr "Contrôle comment les nouvelles lignes sont rendues" - -#: includes/fields/class-acf-field-message.php:109 -#: includes/fields/class-acf-field-textarea.php:165 -msgid "New Lines" -msgstr "Nouvelles lignes" - -#: includes/fields/class-acf-field-date_picker.php:232 -#: includes/fields/class-acf-field-date_time_picker.php:220 -msgid "Week Starts On" -msgstr "La semaine débute le" - -#: includes/fields/class-acf-field-date_picker.php:201 -msgid "The format used when saving a value" -msgstr "Le format utilisé lors de la sauvegarde d’une valeur" - -#: includes/fields/class-acf-field-date_picker.php:200 -msgid "Save Format" -msgstr "Enregistrer le format" - -#: includes/fields/class-acf-field-date_picker.php:67 -msgctxt "Date Picker JS weekHeader" -msgid "Wk" -msgstr "Sem." - -#: includes/fields/class-acf-field-date_picker.php:66 -msgctxt "Date Picker JS prevText" -msgid "Prev" -msgstr "Préc." - -#: includes/fields/class-acf-field-date_picker.php:65 -msgctxt "Date Picker JS nextText" -msgid "Next" -msgstr "Suivant" - -#: includes/fields/class-acf-field-date_picker.php:64 -msgctxt "Date Picker JS currentText" -msgid "Today" -msgstr "Aujourd’hui" - -#: includes/fields/class-acf-field-date_picker.php:63 -msgctxt "Date Picker JS closeText" -msgid "Done" -msgstr "Terminé" - -#: includes/fields/class-acf-field-date_picker.php:25 -msgid "Date Picker" -msgstr "Sélecteur de date" - -#: includes/fields/class-acf-field-image.php:248 -#: includes/fields/class-acf-field-image.php:284 -#: includes/fields/class-acf-field-oembed.php:268 -msgid "Width" -msgstr "Largeur" - -#: includes/fields/class-acf-field-oembed.php:265 -#: includes/fields/class-acf-field-oembed.php:277 -msgid "Embed Size" -msgstr "Taille d’intégration" - -#: includes/fields/class-acf-field-oembed.php:222 -msgid "Enter URL" -msgstr "Saisissez l’URL" - -#: includes/fields/class-acf-field-oembed.php:25 -msgid "oEmbed" -msgstr "Contenu oEmbed" - -#: includes/fields/class-acf-field-true_false.php:184 -msgid "Text shown when inactive" -msgstr "Texte affiché lorsque inactif" - -#: includes/fields/class-acf-field-true_false.php:183 -msgid "Off Text" -msgstr "Texte « Inactif »" - -#: includes/fields/class-acf-field-true_false.php:168 -msgid "Text shown when active" -msgstr "Texte affiché lorsque actif" - -#: includes/fields/class-acf-field-true_false.php:167 -msgid "On Text" -msgstr "Texte « Actif »" - -#: includes/fields/class-acf-field-select.php:450 -#: includes/fields/class-acf-field-true_false.php:199 -msgid "Stylized UI" -msgstr "Interface (UI) stylisée" - -#: includes/fields/class-acf-field-button-group.php:157 -#: includes/fields/class-acf-field-checkbox.php:361 -#: includes/fields/class-acf-field-color_picker.php:156 -#: includes/fields/class-acf-field-email.php:117 -#: includes/fields/class-acf-field-number.php:128 -#: includes/fields/class-acf-field-radio.php:202 -#: includes/fields/class-acf-field-range.php:164 -#: includes/fields/class-acf-field-select.php:380 -#: includes/fields/class-acf-field-text.php:103 -#: includes/fields/class-acf-field-textarea.php:103 -#: includes/fields/class-acf-field-true_false.php:147 -#: includes/fields/class-acf-field-url.php:101 -#: includes/fields/class-acf-field-wysiwyg.php:311 -msgid "Default Value" -msgstr "Valeur par défaut" - -#: includes/fields/class-acf-field-true_false.php:138 -msgid "Displays text alongside the checkbox" -msgstr "Affiche le texte à côté de la case à cocher" - -#: includes/fields/class-acf-field-message.php:26 -#: includes/fields/class-acf-field-message.php:99 -#: includes/fields/class-acf-field-true_false.php:137 -msgid "Message" -msgstr "Message" - -#: includes/assets.php:351 includes/fields/class-acf-field-true_false.php:86 -#: includes/fields/class-acf-field-true_false.php:187 -#: assets/build/js/acf.js:1740 assets/build/js/acf.js:1857 -msgid "No" -msgstr "Non" - -#: includes/assets.php:350 includes/fields/class-acf-field-true_false.php:83 -#: includes/fields/class-acf-field-true_false.php:171 -#: assets/build/js/acf.js:1739 assets/build/js/acf.js:1856 -msgid "Yes" -msgstr "Oui" - -#: includes/fields/class-acf-field-true_false.php:25 -msgid "True / False" -msgstr "Vrai/Faux" - -#: includes/fields/class-acf-field-group.php:474 -msgid "Row" -msgstr "Ligne" - -#: includes/fields/class-acf-field-group.php:473 -msgid "Table" -msgstr "Tableau" - -#: includes/admin/post-types/admin-field-group.php:140 -#: includes/fields/class-acf-field-group.php:472 -msgid "Block" -msgstr "Bloc" - -#: includes/fields/class-acf-field-group.php:467 -msgid "Specify the style used to render the selected fields" -msgstr "Spécifier le style utilisé pour afficher les champs sélectionnés" - -#: includes/fields.php:356 includes/fields/class-acf-field-button-group.php:215 -#: includes/fields/class-acf-field-checkbox.php:435 -#: includes/fields/class-acf-field-group.php:466 -#: includes/fields/class-acf-field-radio.php:286 -msgid "Layout" -msgstr "Mise en page" - -#: includes/fields/class-acf-field-group.php:450 -msgid "Sub Fields" -msgstr "Sous-champs" - -#: includes/fields/class-acf-field-group.php:25 -msgid "Group" -msgstr "Groupe" - -#: includes/fields/class-acf-field-google-map.php:235 -msgid "Customize the map height" -msgstr "Personnaliser la hauteur de la carte" - -#: includes/fields/class-acf-field-google-map.php:234 -#: includes/fields/class-acf-field-image.php:259 -#: includes/fields/class-acf-field-image.php:295 -#: includes/fields/class-acf-field-oembed.php:280 -msgid "Height" -msgstr "Hauteur" - -#: includes/fields/class-acf-field-google-map.php:223 -msgid "Set the initial zoom level" -msgstr "Définir le niveau de zoom initial" - -#: includes/fields/class-acf-field-google-map.php:222 -msgid "Zoom" -msgstr "Zoom" - -#: includes/fields/class-acf-field-google-map.php:196 -#: includes/fields/class-acf-field-google-map.php:209 -msgid "Center the initial map" -msgstr "Centrer la carte initiale" - -#: includes/fields/class-acf-field-google-map.php:195 -#: includes/fields/class-acf-field-google-map.php:208 -msgid "Center" -msgstr "Centrer" - -#: includes/fields/class-acf-field-google-map.php:163 -msgid "Search for address..." -msgstr "Rechercher une adresse…" - -#: includes/fields/class-acf-field-google-map.php:160 -msgid "Find current location" -msgstr "Obtenir l’emplacement actuel" - -#: includes/fields/class-acf-field-google-map.php:159 -msgid "Clear location" -msgstr "Effacer la position" - -#: includes/fields/class-acf-field-google-map.php:158 -#: includes/fields/class-acf-field-relationship.php:628 -msgid "Search" -msgstr "Rechercher" - -#: includes/fields/class-acf-field-google-map.php:63 -#: assets/build/js/acf-input.js:2840 assets/build/js/acf-input.js:3026 -msgid "Sorry, this browser does not support geolocation" -msgstr "Désolé, ce navigateur ne prend pas en charge la géolocalisation" - -#: includes/fields/class-acf-field-google-map.php:25 -msgid "Google Map" -msgstr "Google Map" - -#: includes/fields/class-acf-field-date_picker.php:212 -#: includes/fields/class-acf-field-date_time_picker.php:201 -#: includes/fields/class-acf-field-time_picker.php:132 -msgid "The format returned via template functions" -msgstr "Le format retourné via les fonctions du modèle" - -#: includes/fields/class-acf-field-color_picker.php:180 -#: includes/fields/class-acf-field-date_picker.php:211 -#: includes/fields/class-acf-field-date_time_picker.php:200 -#: includes/fields/class-acf-field-image.php:187 -#: includes/fields/class-acf-field-post_object.php:411 -#: includes/fields/class-acf-field-relationship.php:638 -#: includes/fields/class-acf-field-select.php:391 -#: includes/fields/class-acf-field-time_picker.php:131 -#: includes/fields/class-acf-field-user.php:66 -msgid "Return Format" -msgstr "Format de retour" - -#: includes/fields/class-acf-field-date_picker.php:190 -#: includes/fields/class-acf-field-date_picker.php:221 -#: includes/fields/class-acf-field-date_time_picker.php:192 -#: includes/fields/class-acf-field-date_time_picker.php:210 -#: includes/fields/class-acf-field-time_picker.php:123 -#: includes/fields/class-acf-field-time_picker.php:139 -msgid "Custom:" -msgstr "Personnalisé :" - -#: includes/fields/class-acf-field-date_picker.php:182 -#: includes/fields/class-acf-field-date_time_picker.php:183 -#: includes/fields/class-acf-field-time_picker.php:116 -msgid "The format displayed when editing a post" -msgstr "Le format affiché lors de la modification d’une publication" - -#: includes/fields/class-acf-field-date_picker.php:181 -#: includes/fields/class-acf-field-date_time_picker.php:182 -#: includes/fields/class-acf-field-time_picker.php:115 -msgid "Display Format" -msgstr "Format d’affichage" - -#: includes/fields/class-acf-field-time_picker.php:25 -msgid "Time Picker" -msgstr "Sélecteur d’heure" - -#. translators: counts for inactive field groups -#: acf.php:503 -msgid "Inactive (%s)" -msgid_plural "Inactive (%s)" -msgstr[0] "(%s) inactif" -msgstr[1] "(%s) inactifs" - -#: acf.php:462 -msgid "No Fields found in Trash" -msgstr "Aucun champ trouvé dans la corbeille" - -#: acf.php:461 -msgid "No Fields found" -msgstr "Aucun champ trouvé" - -#: acf.php:460 -msgid "Search Fields" -msgstr "Rechercher des champs" - -#: acf.php:459 -msgid "View Field" -msgstr "Voir le champ" - -#: acf.php:458 includes/admin/views/acf-field-group/fields.php:115 -msgid "New Field" -msgstr "Nouveau champ" - -#: acf.php:457 -msgid "Edit Field" -msgstr "Modifier le champ" - -#: acf.php:456 -msgid "Add New Field" -msgstr "Ajouter un nouveau champ" - -#: acf.php:454 -msgid "Field" -msgstr "Champ" - -#: acf.php:453 includes/admin/post-types/admin-field-group.php:163 -#: includes/admin/post-types/admin-field-groups.php:119 -#: includes/admin/views/acf-field-group/fields.php:32 -msgid "Fields" -msgstr "Champs" - -#: acf.php:428 -msgid "No Field Groups found in Trash" -msgstr "Aucun groupe de champs trouvé dans la corbeille" - -#: acf.php:427 -msgid "No Field Groups found" -msgstr "Aucun groupe de champs trouvé" - -#: acf.php:426 -msgid "Search Field Groups" -msgstr "Rechercher des groupes de champs" - -#: acf.php:425 -msgid "View Field Group" -msgstr "Voir le groupe de champs" - -#: acf.php:424 -msgid "New Field Group" -msgstr "Nouveau groupe de champs" - -#: acf.php:423 -msgid "Edit Field Group" -msgstr "Modifier le groupe de champs" - -#: acf.php:422 -msgid "Add New Field Group" -msgstr "Ajouter un groupe de champs" - -#: acf.php:421 acf.php:455 -#: includes/admin/views/acf-post-type/advanced-settings.php:219 -#: includes/admin/views/acf-post-type/advanced-settings.php:221 -#: includes/post-types/class-acf-post-type.php:93 -#: includes/post-types/class-acf-taxonomy.php:92 -msgid "Add New" -msgstr "Ajouter" - -#: acf.php:420 -msgid "Field Group" -msgstr "Groupe de champs" - -#: acf.php:419 includes/admin/post-types/admin-field-groups.php:78 -#: includes/admin/post-types/admin-post-types.php:138 -#: includes/admin/post-types/admin-taxonomies.php:138 -msgid "Field Groups" -msgstr "Groupes de champs" - -#. Description of the plugin -msgid "Customize WordPress with powerful, professional and intuitive fields." -msgstr "" -"Personnalisez WordPress avec des champs intuitifs, puissants et " -"professionnels." - -#. Plugin URI of the plugin -msgid "https://www.advancedcustomfields.com" -msgstr "https://www.advancedcustomfields.com/" - -#. Plugin Name of the plugin -#: acf.php:94 -msgid "Advanced Custom Fields" -msgstr "Advanced Custom Fields" - -# @ acf -#: pro/acf-pro.php:27 -msgid "Advanced Custom Fields PRO" -msgstr "Advanced Custom Fields PRO" - -#: pro/blocks.php:170 -msgid "Block type name is required." -msgstr "Le nom du type de bloc est obligatoire." - -#. translators: The name of the block type -#: pro/blocks.php:178 -msgid "Block type \"%s\" is already registered." -msgstr "Le type de bloc \"%s\" est déjà déclaré." - -#: pro/blocks.php:726 -msgid "Switch to Edit" -msgstr "Passer en mode Édition" - -#: pro/blocks.php:727 -msgid "Switch to Preview" -msgstr "Passer en mode Aperçu" - -#: pro/blocks.php:728 -msgid "Change content alignment" -msgstr "Modifier l’alignement du contenu" - -#. translators: %s: Block type title -#: pro/blocks.php:731 -msgid "%s settings" -msgstr "Réglages de %s" - -#: pro/blocks.php:936 -msgid "This block contains no editable fields." -msgstr "Ce bloc ne contient aucun champ éditable." - -#. translators: %s: an admin URL to the field group edit screen -#: pro/blocks.php:942 -msgid "" -"Assign a field group to add fields to " -"this block." -msgstr "" -"Assignez un groupe de champs pour " -"ajouter des champs à ce bloc." - -# @ acf -#: pro/options-page.php:78 -msgid "Options Updated" -msgstr "Options mises à jour" - -#: pro/updates.php:99 -msgid "" -"To enable updates, please enter your license key on the Updates page. If you don't have a licence key, please see details & pricing." -msgstr "" -"Pour activer les mises à jour, veuillez indiquer votre clé de licence sur la " -"page Mises à jour. Si vous n’en possédez pas encore " -"une, jetez un oeil à nos détails & " -"tarifs." - -#: pro/updates.php:159 -msgid "" -"ACF Activation Error. Your defined license key has changed, but an " -"error occurred when deactivating your old licence" -msgstr "" -"Erreur d’activation d’ACF. Votre clé de licence a été modifiée, mais " -"une erreur est survenue lors de la désactivation de votre précédente licence" - -#: pro/updates.php:154 -msgid "" -"ACF Activation Error. Your defined license key has changed, but an " -"error occurred when connecting to activation server" -msgstr "" -"Erreur d’activation d’ACF. Votre clé de licence définie a été " -"modifiée, mais une erreur est survenue lors de la connexion au serveur " -"d’activation" - -#: pro/updates.php:192 -msgid "ACF Activation Error" -msgstr "Erreur d’activation d’ACF" - -#: pro/updates.php:187 -msgid "" -"ACF Activation Error. An error occurred when connecting to activation " -"server" -msgstr "" -"Erreur d’activation d’ACF. Une erreur est survenue lors de la " -"connexion au serveur d’activation" - -#: pro/updates.php:279 -msgid "Check Again" -msgstr "Vérifier à nouveau" - -#: pro/updates.php:593 -msgid "ACF Activation Error. Could not connect to activation server" -msgstr "" -"Erreur d’activation d’ACF. Impossible de se connecter au serveur " -"d’activation" - -#: pro/admin/admin-options-page.php:195 -msgid "Publish" -msgstr "Publier" - -# @ default -#: pro/admin/admin-options-page.php:199 -msgid "" -"No Custom Field Groups found for this options page. Create a " -"Custom Field Group" -msgstr "" -"Aucun groupe de champs trouvé pour cette page options. Créer " -"un groupe de champs" - -#: pro/admin/admin-updates.php:52 -msgid "Error. Could not connect to update server" -msgstr "Erreur. Impossible de joindre le serveur" - -#: pro/admin/admin-updates.php:212 -msgid "" -"Error. Could not authenticate update package. Please check again or " -"deactivate and reactivate your ACF PRO license." -msgstr "" -"Erreur. Impossible d’authentifier la mise à jour. Merci d’essayer à " -"nouveau et si le problème persiste, désactivez et réactivez votre licence " -"ACF PRO." - -#: pro/admin/admin-updates.php:199 -msgid "" -"Error. Your license for this site has expired or been deactivated. " -"Please reactivate your ACF PRO license." -msgstr "" -"Erreur. La licence pour ce site a expiré ou a été désactivée. " -"Veuillez réactiver votre licence ACF PRO." - -#: pro/fields/class-acf-field-clone.php:27, -#: pro/fields/class-acf-field-repeater.php:31 -msgid "" -"Allows you to select and display existing fields. It does not duplicate any " -"fields in the database, but loads and displays the selected fields at run-" -"time. The Clone field can either replace itself with the selected fields or " -"display the selected fields as a group of subfields." -msgstr "" -"Vous permet de sélectionner et afficher des champs existants. Le clone ne " -"duplique pas les champs dans la base de données, il récupère leurs valeurs " -"au chargement de la page. Le Clone sera remplacé par les champs qu’il " -"représente et les affiche comme un groupe de sous-champs." - -#: pro/fields/class-acf-field-clone.php:819 -msgid "Select one or more fields you wish to clone" -msgstr "Sélectionnez un ou plusieurs champs à cloner" - -# @ acf -#: pro/fields/class-acf-field-clone.php:838 -msgid "Display" -msgstr "Format d’affichage" - -#: pro/fields/class-acf-field-clone.php:839 -msgid "Specify the style used to render the clone field" -msgstr "Définit le style utilisé pour générer le champ dupliqué" - -#: pro/fields/class-acf-field-clone.php:844 -msgid "Group (displays selected fields in a group within this field)" -msgstr "" -"Groupe (affiche les champs sélectionnés dans un groupe à l’intérieur de ce " -"champ)" - -#: pro/fields/class-acf-field-clone.php:845 -msgid "Seamless (replaces this field with selected fields)" -msgstr "Remplace ce champ par les champs sélectionnés" - -#: pro/fields/class-acf-field-clone.php:868 -msgid "Labels will be displayed as %s" -msgstr "Les libellés seront affichés en tant que %s" - -#: pro/fields/class-acf-field-clone.php:873 -msgid "Prefix Field Labels" -msgstr "Préfixer les libellés de champs" - -#: pro/fields/class-acf-field-clone.php:883 -msgid "Values will be saved as %s" -msgstr "Les valeurs seront enregistrées en tant que %s" - -#: pro/fields/class-acf-field-clone.php:888 -msgid "Prefix Field Names" -msgstr "Préfixer les noms de champs" - -#: pro/fields/class-acf-field-clone.php:1005 -msgid "Unknown field" -msgstr "Champ inconnu" - -#: pro/fields/class-acf-field-clone.php:1042 -msgid "Unknown field group" -msgstr "Groupe de champ inconnu" - -#: pro/fields/class-acf-field-clone.php:1046 -msgid "All fields from %s field group" -msgstr "Tous les champs du groupe %s" - -#: pro/fields/class-acf-field-flexible-content.php:27 -msgid "" -"Allows you to define, create and manage content with total control by " -"creating layouts that contain subfields that content editors can choose from." -msgstr "" -"Vous permet de définir, créer et gérer des contenus avec un contrôle total : " -"les éditeurs peuvent créer des mises en page en sélectionnant des " -"dispositions basées sur des sous-champs." - -# @ acf -#: pro/fields/class-acf-field-flexible-content.php:36, -#: pro/fields/class-acf-field-repeater.php:103, -#: pro/fields/class-acf-field-repeater.php:297 -msgid "Add Row" -msgstr "Ajouter un élément" - -# @ acf -#: pro/fields/class-acf-field-flexible-content.php:76, -#: pro/fields/class-acf-field-flexible-content.php:943, -#: pro/fields/class-acf-field-flexible-content.php:1022 -msgid "layout" -msgid_plural "layouts" -msgstr[0] "disposition" -msgstr[1] "dispositions" - -# @ acf -#: pro/fields/class-acf-field-flexible-content.php:77 -msgid "layouts" -msgstr "dispositions" - -#: pro/fields/class-acf-field-flexible-content.php:81, -#: pro/fields/class-acf-field-flexible-content.php:942, -#: pro/fields/class-acf-field-flexible-content.php:1021 -msgid "This field requires at least {min} {label} {identifier}" -msgstr "Ce champ requiert au moins {min} {label} {identifier}" - -#: pro/fields/class-acf-field-flexible-content.php:82 -msgid "This field has a limit of {max} {label} {identifier}" -msgstr "Ce champ a une limite de {max} {label} {identifier}" - -#: pro/fields/class-acf-field-flexible-content.php:85 -msgid "{available} {label} {identifier} available (max {max})" -msgstr "{available} {label} {identifier} disponible (max {max})" - -#: pro/fields/class-acf-field-flexible-content.php:86 -msgid "{required} {label} {identifier} required (min {min})" -msgstr "{required} {label} {identifier} required (min {min})" - -# @ acf -#: pro/fields/class-acf-field-flexible-content.php:89 -msgid "Flexible Content requires at least 1 layout" -msgstr "Le contenu flexible nécessite au moins une disposition" - -#: pro/fields/class-acf-field-flexible-content.php:282 -msgid "Click the \"%s\" button below to start creating your layout" -msgstr "" -"Cliquez sur le bouton \"%s\" ci-dessous pour créer votre première disposition" - -# @ acf -#: pro/fields/class-acf-field-flexible-content.php:423 -msgid "Add layout" -msgstr "Ajouter une disposition" - -#: pro/fields/class-acf-field-flexible-content.php:424 -msgid "Duplicate layout" -msgstr "Dupliquer la disposition" - -# @ acf -#: pro/fields/class-acf-field-flexible-content.php:425 -msgid "Remove layout" -msgstr "Retirer la disposition" - -#: pro/fields/class-acf-field-flexible-content.php:426, -#: pro/fields/class-acf-repeater-table.php:382 -msgid "Click to toggle" -msgstr "Cliquer pour afficher/cacher" - -# @ acf -#: pro/fields/class-acf-field-flexible-content.php:562 -msgid "Delete Layout" -msgstr "Supprimer la disposition" - -#: pro/fields/class-acf-field-flexible-content.php:563 -msgid "Duplicate Layout" -msgstr "Dupliquer la disposition" - -# @ acf -#: pro/fields/class-acf-field-flexible-content.php:564 -msgid "Add New Layout" -msgstr "Ajouter une disposition" - -# @ acf -#: pro/fields/class-acf-field-flexible-content.php:564 -msgid "Add Layout" -msgstr "Ajouter une disposition" - -#: pro/fields/class-acf-field-flexible-content.php:647 -msgid "Min" -msgstr "Min" - -#: pro/fields/class-acf-field-flexible-content.php:662 -msgid "Max" -msgstr "Max" - -# @ acf -#: pro/fields/class-acf-field-flexible-content.php:705 -msgid "Minimum Layouts" -msgstr "Nombre minimum de dispositions" - -# @ acf -#: pro/fields/class-acf-field-flexible-content.php:716 -msgid "Maximum Layouts" -msgstr "Nombre maximum de dispositions" - -#: pro/fields/class-acf-field-flexible-content.php:727, -#: pro/fields/class-acf-field-repeater.php:293 -msgid "Button Label" -msgstr "Intitulé du bouton" - -#: pro/fields/class-acf-field-flexible-content.php:1710, -#: pro/fields/class-acf-field-repeater.php:918 -msgid "%s must be of type array or null." -msgstr "la valeur de %s doit être un tableau ou null." - -#: pro/fields/class-acf-field-flexible-content.php:1721 -msgid "%1$s must contain at least %2$s %3$s layout." -msgid_plural "%1$s must contain at least %2$s %3$s layouts." -msgstr[0] "Le champ %1$s doit contenir au moins %2$s %3$s disposition." -msgstr[1] "Le champ %1$s doit contenir au moins %2$s %3$s dispositions." - -#: pro/fields/class-acf-field-flexible-content.php:1737 -msgid "%1$s must contain at most %2$s %3$s layout." -msgid_plural "%1$s must contain at most %2$s %3$s layouts." -msgstr[0] "Le champ %1$s doit contenir au maximum %2$s %3$s disposition." -msgstr[1] "Le champ %1$s doit contenir au maximum %2$s %3$s dispositions." - -#: pro/fields/class-acf-field-gallery.php:27 -msgid "" -"An interactive interface for managing a collection of attachments, such as " -"images." -msgstr "" -"Une interface interactive pour gérer une collection de fichiers joints, " -"telles que des images." - -# @ acf -#: pro/fields/class-acf-field-gallery.php:77 -msgid "Add Image to Gallery" -msgstr "Ajouter l’image à la galerie" - -#: pro/fields/class-acf-field-gallery.php:78 -msgid "Maximum selection reached" -msgstr "Nombre de sélections maximales atteint" - -#: pro/fields/class-acf-field-gallery.php:324 -msgid "Length" -msgstr "Longueur" - -#: pro/fields/class-acf-field-gallery.php:368 -msgid "Caption" -msgstr "Légende" - -#: pro/fields/class-acf-field-gallery.php:380 -msgid "Alt Text" -msgstr "Texte alternatif" - -#: pro/fields/class-acf-field-gallery.php:504 -msgid "Add to gallery" -msgstr "Ajouter à la galerie" - -# @ acf -#: pro/fields/class-acf-field-gallery.php:508 -msgid "Bulk actions" -msgstr "Actions de groupe" - -#: pro/fields/class-acf-field-gallery.php:509 -msgid "Sort by date uploaded" -msgstr "Ranger par date d’import" - -#: pro/fields/class-acf-field-gallery.php:510 -msgid "Sort by date modified" -msgstr "Ranger par date de modification" - -# @ acf -#: pro/fields/class-acf-field-gallery.php:511 -msgid "Sort by title" -msgstr "Ranger par titre" - -#: pro/fields/class-acf-field-gallery.php:512 -msgid "Reverse current order" -msgstr "Inverser l’ordre actuel" - -# @ acf -#: pro/fields/class-acf-field-gallery.php:524 -msgid "Close" -msgstr "Appliquer" - -# @ acf -#: pro/fields/class-acf-field-gallery.php:615 -msgid "Minimum Selection" -msgstr "Minimum d’images" - -# @ acf -#: pro/fields/class-acf-field-gallery.php:625 -msgid "Maximum Selection" -msgstr "Maximum d’images" - -#: pro/fields/class-acf-field-gallery.php:707 -msgid "Allowed file types" -msgstr "Types de fichiers autorisés" - -#: pro/fields/class-acf-field-gallery.php:727 -msgid "Insert" -msgstr "Insérer" - -#: pro/fields/class-acf-field-gallery.php:728 -msgid "Specify where new attachments are added" -msgstr "Définir comment les images sont insérées" - -#: pro/fields/class-acf-field-gallery.php:732 -msgid "Append to the end" -msgstr "Insérer à la fin" - -#: pro/fields/class-acf-field-gallery.php:733 -msgid "Prepend to the beginning" -msgstr "Insérer au début" - -#: pro/fields/class-acf-field-repeater.php:66, -#: pro/fields/class-acf-field-repeater.php:463 -msgid "Minimum rows not reached ({min} rows)" -msgstr "Nombre minimal d’éléments insuffisant ({min} éléments)" - -#: pro/fields/class-acf-field-repeater.php:67 -msgid "Maximum rows reached ({max} rows)" -msgstr "Nombre maximal d’éléments atteint ({max} éléments)" - -#: pro/fields/class-acf-field-repeater.php:68 -msgid "Error loading page" -msgstr "Erreur de chargement de la page" - -#: pro/fields/class-acf-field-repeater.php:69 -msgid "Order will be assigned upon save" -msgstr "L’ordre sera assigné après l’enregistrement" - -#: pro/fields/class-acf-field-repeater.php:196 -msgid "Useful for fields with a large number of rows." -msgstr "Utile pour les champs avec un grand nombre de lignes." - -#: pro/fields/class-acf-field-repeater.php:207 -msgid "Rows Per Page" -msgstr "Lignes par Page" - -#: pro/fields/class-acf-field-repeater.php:208 -msgid "Set the number of rows to be displayed on a page." -msgstr "Définir le nombre de lignes à afficher sur une page." - -# @ acf -#: pro/fields/class-acf-field-repeater.php:240 -msgid "Minimum Rows" -msgstr "Nombre minimum d’éléments" - -# @ acf -#: pro/fields/class-acf-field-repeater.php:251 -msgid "Maximum Rows" -msgstr "Nombre maximum d’éléments" - -#: pro/fields/class-acf-field-repeater.php:281 -msgid "Collapsed" -msgstr "Replié" - -#: pro/fields/class-acf-field-repeater.php:282 -msgid "Select a sub field to show when row is collapsed" -msgstr "Choisir un sous champ à montrer lorsque la ligne est refermée" - -#: pro/fields/class-acf-field-repeater.php:1060 -msgid "Invalid field key or name." -msgstr "Clé de champ invalide." - -#: pro/fields/class-acf-field-repeater.php:1069 -msgid "There was an error retrieving the field." -msgstr "Il y a une erreur lors de la récupération du champ." - -#: pro/fields/class-acf-repeater-table.php:369 -msgid "Click to reorder" -msgstr "Cliquer pour réorganiser" - -# @ acf -#: pro/fields/class-acf-repeater-table.php:402 -msgid "Add row" -msgstr "Ajouter un élément" - -#: pro/fields/class-acf-repeater-table.php:403 -msgid "Duplicate row" -msgstr "Dupliquer la ligne" - -# @ acf -#: pro/fields/class-acf-repeater-table.php:404 -msgid "Remove row" -msgstr "Retirer l’élément" - -#: pro/fields/class-acf-repeater-table.php:448, -#: pro/fields/class-acf-repeater-table.php:465, -#: pro/fields/class-acf-repeater-table.php:466 -msgid "Current Page" -msgstr "Page actuelle" - -#: pro/fields/class-acf-repeater-table.php:456, -#: pro/fields/class-acf-repeater-table.php:457 -msgid "First Page" -msgstr "Première page" - -#: pro/fields/class-acf-repeater-table.php:460, -#: pro/fields/class-acf-repeater-table.php:461 -msgid "Previous Page" -msgstr "Page précédente" - -#. translators: 1: Current page, 2: Total pages. -#: pro/fields/class-acf-repeater-table.php:470 -msgctxt "paging" -msgid "%1$s of %2$s" -msgstr "%1$s sur %2$s" - -#: pro/fields/class-acf-repeater-table.php:477, -#: pro/fields/class-acf-repeater-table.php:478 -msgid "Next Page" -msgstr "Page suivante" - -#: pro/fields/class-acf-repeater-table.php:481, -#: pro/fields/class-acf-repeater-table.php:482 -msgid "Last Page" -msgstr "Dernière page" - -#: pro/locations/class-acf-location-block.php:71 -msgid "No block types exist" -msgstr "Aucun type de blocs existant" - -#: pro/locations/class-acf-location-options-page.php:70 -msgid "No options pages exist" -msgstr "Aucune page d’option créée" - -#: pro/admin/views/html-settings-updates.php:6 -msgid "Deactivate License" -msgstr "Désactiver la licence" - -# @ acf -#: pro/admin/views/html-settings-updates.php:6 -msgid "Activate License" -msgstr "Activer votre licence" - -# @ acf -#: pro/admin/views/html-settings-updates.php:16 -msgid "License Information" -msgstr "Informations sur la licence" - -#: pro/admin/views/html-settings-updates.php:34 -msgid "" -"To unlock updates, please enter your license key below. If you don't have a " -"licence key, please see details & pricing." -msgstr "" -"Pour débloquer les mises à jour, veuillez entrer votre clé de licence ci-" -"dessous. Si vous n’en possédez pas encore une, jetez un oeil à nos détails & tarifs." - -# @ acf -#: pro/admin/views/html-settings-updates.php:37 -msgid "License Key" -msgstr "Clé de licence" - -#: pro/admin/views/html-settings-updates.php:22 -msgid "Your license key is defined in wp-config.php." -msgstr "Votre clé de licence est définie dans le fichier wp-config.php." - -#: pro/admin/views/html-settings-updates.php:29 -msgid "Retry Activation" -msgstr "Retenter l’activation" - -# @ acf -#: pro/admin/views/html-settings-updates.php:61 -msgid "Update Information" -msgstr "Informations de mise à jour" - -#: pro/admin/views/html-settings-updates.php:68 -msgid "Current Version" -msgstr "Version actuelle" - -#: pro/admin/views/html-settings-updates.php:76 -msgid "Latest Version" -msgstr "Dernière version" - -# @ acf -#: pro/admin/views/html-settings-updates.php:84 -msgid "Update Available" -msgstr "Mise à jour disponible" - -# @ wp3i -#: pro/admin/views/html-settings-updates.php:98 -msgid "Upgrade Notice" -msgstr "Améliorations" - -#: pro/admin/views/html-settings-updates.php:126 -msgid "Check For Updates" -msgstr "Vérifier les mises à jour" - -#: pro/admin/views/html-settings-updates.php:121 -msgid "Enter your license key to unlock updates" -msgstr "Indiquez votre clé de licence pour activer les mises à jour" - -# @ acf -#: pro/admin/views/html-settings-updates.php:119 -msgid "Update Plugin" -msgstr "Mettre à jour l’extension" - -#: pro/admin/views/html-settings-updates.php:117 -msgid "Please reactivate your license to unlock updates" -msgstr "Veuillez réactiver votre licence afin de débloquer les mises à jour" diff --git a/lang/acf-gl_ES.mo b/lang/acf-gl_ES.mo deleted file mode 100644 index 4b8fdfd..0000000 Binary files a/lang/acf-gl_ES.mo and /dev/null differ diff --git a/lang/acf-gl_ES.po b/lang/acf-gl_ES.po deleted file mode 100644 index 767998c..0000000 --- a/lang/acf-gl_ES.po +++ /dev/null @@ -1,5626 +0,0 @@ -# Advanced Custom Fields Translations are a combination of translate.wordpress.org contributions, -# combined with user contributed strings for the PRO version. -# Translations from translate.wordpress.org take priority over translations in this file. -# translate.wordpress.org contributions are synced at the time of each release. -# -# If you would like to contribute translations, please visit -# https://translate.wordpress.org/projects/wp-plugins/advanced-custom-fields/stable/ -# -# For additional ACF PRO strings, please submit a pull request over on the ACF GitHub repo at -# http://github.com/advancedcustomfields/acf using the .pot (and any existing .po) files in /lang/pro/ -# -# This file is distributed under the same license as Advanced Custom Fields. -msgid "" -msgstr "" -"PO-Revision-Date: 2023-11-28T09:14:32+00:00\n" -"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n" -"Language: gl_ES\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: gettext\n" -"Project-Id-Version: Advanced Custom Fields\n" - -#: includes/admin/views/global/navigation.php:221 -msgid "Renew ACF PRO License" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:17 -msgid "Renew License" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:14 -msgid "Manage License" -msgstr "" - -#: includes/admin/views/acf-field-group/options.php:102 -msgid "'High' position not supported in the Block Editor" -msgstr "" - -#: includes/admin/views/options-page-preview.php:30 -msgid "Upgrade to ACF PRO" -msgstr "" - -#. translators: %s URL to ACF options pages documentation -#: includes/admin/views/options-page-preview.php:7 -msgid "" -"ACF options pages are custom admin " -"pages for managing global settings via fields. You can create multiple pages " -"and sub-pages." -msgstr "" - -#: includes/admin/views/global/header.php:35 -msgid "Add Options Page" -msgstr "Engadir páxina de opcións" - -#: includes/admin/views/acf-post-type/advanced-settings.php:703 -msgid "In the editor used as the placeholder of the title." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:702 -msgid "Title Placeholder" -msgstr "" - -#: includes/admin/views/global/navigation.php:97 -msgid "4 Months Free" -msgstr "4 meses de balde" - -#. translators: %s - A singular label for a post type or taxonomy. -#: includes/admin/views/global/form-top.php:56 -msgid " (Duplicated from %s)" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:298 -msgid "Select Options Pages" -msgstr "Seleccionar páxinas de opcións" - -#: includes/admin/post-types/admin-taxonomy.php:107 -msgid "Duplicate taxonomy" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:106 -#: includes/admin/post-types/admin-taxonomy.php:106 -msgid "Create taxonomy" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:105 -msgid "Duplicate post type" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:104 -#: includes/admin/post-types/admin-taxonomy.php:108 -msgid "Create post type" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:103 -#: includes/admin/post-types/admin-taxonomy.php:105 -msgid "Link field groups" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:102 -#: includes/admin/post-types/admin-taxonomy.php:104 -msgid "Add fields" -msgstr "Engadir campos" - -#: includes/admin/post-types/admin-field-group.php:121 -#: assets/build/js/acf-field-group.js:2753 -#: assets/build/js/acf-field-group.js:3236 -msgid "This Field" -msgstr "" - -#: includes/admin/admin.php:267 -msgid "ACF PRO" -msgstr "" - -#: includes/admin/admin.php:265 -msgid "Feedback" -msgstr "" - -#: includes/admin/admin.php:263 -msgid "Support" -msgstr "" - -#. translators: This text is prepended by a link to ACF's website, and appended -#. by a link to WP Engine's website. -#: includes/admin/admin.php:238 -msgid "is developed and maintained by" -msgstr "" - -#. translators: %s - either "post type" or "taxonomy" -#: includes/admin/admin-internal-post-type.php:321 -msgid "Add this %s to the location rules of the selected field groups." -msgstr "" - -#. translators: %s the URL to ACF's bidirectional relationship documentation -#: includes/acf-bidirectional-functions.php:271 -msgid "" -"Enabling the bidirectional setting allows you to update a value in the " -"target fields for each value selected for this field, adding or removing the " -"Post ID, Taxonomy ID or User ID of the item being updated. For more " -"information, please read the documentation." -msgstr "" - -#: includes/acf-bidirectional-functions.php:247 -msgid "" -"Select field(s) to store the reference back to the item being updated. You " -"may select this field. Target fields must be compatible with where this " -"field is being displayed. For example, if this field is displayed on a " -"Taxonomy, your target field should be of type Taxonomy" -msgstr "" - -#: includes/acf-bidirectional-functions.php:246 -msgid "Target Field" -msgstr "" - -#: includes/acf-bidirectional-functions.php:220 -msgid "Update a field on the selected values, referencing back to this ID" -msgstr "" - -#: includes/acf-bidirectional-functions.php:219 -msgid "Bidirectional" -msgstr "" - -#. translators: %s A field type name, such as "Relationship" -#: includes/acf-bidirectional-functions.php:192 -msgid "%s Field" -msgstr "" - -#: includes/fields/class-acf-field-page_link.php:517 -#: includes/fields/class-acf-field-post_object.php:426 -#: includes/fields/class-acf-field-select.php:407 -#: includes/fields/class-acf-field-user.php:82 -msgid "Select Multiple" -msgstr "" - -#: includes/admin/views/global/navigation.php:233 -msgid "WP Engine logo" -msgstr "" - -#: includes/admin/views/acf-taxonomy/basic-settings.php:58 -msgid "Lower case letters, underscores and dashes only, Max 32 characters." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1136 -msgid "The capability name for assigning terms of this taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1135 -msgid "Assign Terms Capability" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1119 -msgid "The capability name for deleting terms of this taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1118 -msgid "Delete Terms Capability" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1102 -msgid "The capability name for editing terms of this taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1101 -msgid "Edit Terms Capability" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1085 -msgid "The capability name for managing terms of this taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1084 -msgid "Manage Terms Capability" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:886 -msgid "" -"Sets whether posts should be excluded from search results and taxonomy " -"archive pages." -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:74 -msgid "More Tools from WP Engine" -msgstr "" - -#. translators: %s - WP Engine logo -#: includes/admin/views/acf-field-group/pro-features.php:69 -msgid "Built for those that build with WordPress, by the team at %s" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:6 -msgid "View Pricing & Upgrade" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:3 -#: includes/admin/views/options-page-preview.php:29 -msgid "Learn More" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:28 -msgid "" -"Speed up your workflow and develop better websites with features like ACF " -"Blocks and Options Pages, and sophisticated field types like Repeater, " -"Flexible Content, Clone, and Gallery." -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:2 -msgid "Unlock Advanced Features and Build Even More with ACF PRO" -msgstr "" - -#. translators: %s - singular label of post type/taxonomy, i.e. "Movie"/"Genre" -#: includes/admin/views/global/form-top.php:19 -msgid "%s fields" -msgstr "" - -#: includes/admin/post-types/admin-taxonomies.php:293 -msgid "No terms" -msgstr "" - -#: includes/admin/post-types/admin-taxonomies.php:266 -msgid "No post types" -msgstr "" - -#: includes/admin/post-types/admin-post-types.php:289 -msgid "No posts" -msgstr "" - -#: includes/admin/post-types/admin-post-types.php:263 -msgid "No taxonomies" -msgstr "" - -#: includes/admin/post-types/admin-post-types.php:208 -#: includes/admin/post-types/admin-taxonomies.php:208 -msgid "No field groups" -msgstr "" - -#: includes/admin/post-types/admin-field-groups.php:281 -msgid "No fields" -msgstr "" - -#: includes/admin/post-types/admin-field-groups.php:154 -#: includes/admin/post-types/admin-post-types.php:172 -#: includes/admin/post-types/admin-taxonomies.php:172 -msgid "No description" -msgstr "" - -#: includes/fields/class-acf-field-page_link.php:484 -#: includes/fields/class-acf-field-post_object.php:389 -#: includes/fields/class-acf-field-relationship.php:601 -msgid "Any post status" -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:284 -msgid "" -"This taxonomy key is already in use by another taxonomy registered outside " -"of ACF and cannot be used." -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:279 -msgid "" -"This taxonomy key is already in use by another taxonomy in ACF and cannot be " -"used." -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:252 -msgid "" -"The taxonomy key must only contain lower case alphanumeric characters, " -"underscores or dashes." -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:247 -msgid "The taxonomy key must be under 32 characters." -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:99 -msgid "No Taxonomies found in Trash" -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:98 -msgid "No Taxonomies found" -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:97 -msgid "Search Taxonomies" -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:96 -msgid "View Taxonomy" -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:95 -msgid "New Taxonomy" -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:94 -msgid "Edit Taxonomy" -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:93 -msgid "Add New Taxonomy" -msgstr "" - -#: includes/post-types/class-acf-post-type.php:100 -msgid "No Post Types found in Trash" -msgstr "" - -#: includes/post-types/class-acf-post-type.php:99 -msgid "No Post Types found" -msgstr "" - -#: includes/post-types/class-acf-post-type.php:98 -msgid "Search Post Types" -msgstr "" - -#: includes/post-types/class-acf-post-type.php:97 -msgid "View Post Type" -msgstr "" - -#: includes/post-types/class-acf-post-type.php:96 -msgid "New Post Type" -msgstr "" - -#: includes/post-types/class-acf-post-type.php:95 -msgid "Edit Post Type" -msgstr "" - -#: includes/post-types/class-acf-post-type.php:94 -msgid "Add New Post Type" -msgstr "" - -#: includes/post-types/class-acf-post-type.php:361 -msgid "" -"This post type key is already in use by another post type registered outside " -"of ACF and cannot be used." -msgstr "" - -#: includes/post-types/class-acf-post-type.php:356 -msgid "" -"This post type key is already in use by another post type in ACF and cannot " -"be used." -msgstr "" - -#. translators: %s a link to WordPress.org's Reserved Terms page -#: includes/post-types/class-acf-post-type.php:335 -#: includes/post-types/class-acf-taxonomy.php:258 -msgid "" -"This field must not be a WordPress reserved " -"term." -msgstr "" - -#: includes/post-types/class-acf-post-type.php:329 -msgid "" -"The post type key must only contain lower case alphanumeric characters, " -"underscores or dashes." -msgstr "" - -#: includes/post-types/class-acf-post-type.php:324 -msgid "The post type key must be under 20 characters." -msgstr "" - -#: includes/fields/class-acf-field-wysiwyg.php:27 -msgid "We do not recommend using this field in ACF Blocks." -msgstr "" - -#: includes/fields/class-acf-field-wysiwyg.php:27 -msgid "" -"Displays the WordPress WYSIWYG editor as seen in Posts and Pages allowing " -"for a rich text-editing experience that also allows for multimedia content." -msgstr "" - -#: includes/fields/class-acf-field-wysiwyg.php:25 -msgid "WYSIWYG Editor" -msgstr "" - -#: includes/fields/class-acf-field-user.php:17 -msgid "" -"Allows the selection of one or more users which can be used to create " -"relationships between data objects." -msgstr "" - -#: includes/fields/class-acf-field-url.php:26 -msgid "A text input specifically designed for storing web addresses." -msgstr "" - -#: includes/fields/class-acf-field-url.php:25 -msgid "URL" -msgstr "" - -#: includes/fields/class-acf-field-true_false.php:27 -msgid "" -"A toggle that allows you to pick a value of 1 or 0 (on or off, true or " -"false, etc). Can be presented as a stylized switch or checkbox." -msgstr "" - -#: includes/fields/class-acf-field-time_picker.php:27 -msgid "" -"An interactive UI for picking a time. The time format can be customized " -"using the field settings." -msgstr "" - -#: includes/fields/class-acf-field-textarea.php:26 -msgid "A basic textarea input for storing paragraphs of text." -msgstr "" - -#: includes/fields/class-acf-field-text.php:26 -msgid "A basic text input, useful for storing single string values." -msgstr "" - -#: includes/fields/class-acf-field-taxonomy.php:22 -msgid "" -"Allows the selection of one or more taxonomy terms based on the criteria and " -"options specified in the fields settings." -msgstr "" - -#: includes/fields/class-acf-field-tab.php:28 -msgid "" -"Allows you to group fields into tabbed sections in the edit screen. Useful " -"for keeping fields organized and structured." -msgstr "" - -#: includes/fields/class-acf-field-select.php:27 -msgid "A dropdown list with a selection of choices that you specify." -msgstr "" - -#: includes/fields/class-acf-field-relationship.php:19 -msgid "" -"A dual-column interface to select one or more posts, pages, or custom post " -"type items to create a relationship with the item that you're currently " -"editing. Includes options to search and filter." -msgstr "" - -#: includes/fields/class-acf-field-range.php:26 -msgid "" -"An input for selecting a numerical value within a specified range using a " -"range slider element." -msgstr "" - -#: includes/fields/class-acf-field-radio.php:27 -msgid "" -"A group of radio button inputs that allows the user to make a single " -"selection from values that you specify." -msgstr "" - -#: includes/fields/class-acf-field-post_object.php:19 -msgid "" -"An interactive and customizable UI for picking one or many posts, pages or " -"post type items with the option to search. " -msgstr "" - -#: includes/fields/class-acf-field-password.php:26 -msgid "An input for providing a password using a masked field." -msgstr "" - -#: includes/fields/class-acf-field-page_link.php:476 -#: includes/fields/class-acf-field-post_object.php:381 -#: includes/fields/class-acf-field-relationship.php:593 -msgid "Filter by Post Status" -msgstr "" - -#: includes/fields/class-acf-field-page_link.php:27 -msgid "" -"An interactive dropdown to select one or more posts, pages, custom post type " -"items or archive URLs, with the option to search." -msgstr "" - -#: includes/fields/class-acf-field-oembed.php:27 -msgid "" -"An interactive component for embedding videos, images, tweets, audio and " -"other content by making use of the native WordPress oEmbed functionality." -msgstr "" - -#: includes/fields/class-acf-field-number.php:26 -msgid "An input limited to numerical values." -msgstr "" - -#: includes/fields/class-acf-field-message.php:28 -msgid "" -"Used to display a message to editors alongside other fields. Useful for " -"providing additional context or instructions around your fields." -msgstr "" - -#: includes/fields/class-acf-field-link.php:27 -msgid "" -"Allows you to specify a link and its properties such as title and target " -"using the WordPress native link picker." -msgstr "" - -#: includes/fields/class-acf-field-image.php:27 -msgid "Uses the native WordPress media picker to upload, or choose images." -msgstr "" - -#: includes/fields/class-acf-field-group.php:27 -msgid "" -"Provides a way to structure fields into groups to better organize the data " -"and the edit screen." -msgstr "" - -#: includes/fields/class-acf-field-google-map.php:27 -msgid "" -"An interactive UI for selecting a location using Google Maps. Requires a " -"Google Maps API key and additional configuration to display correctly." -msgstr "" - -#: includes/fields/class-acf-field-file.php:27 -msgid "Uses the native WordPress media picker to upload, or choose files." -msgstr "" - -#: includes/fields/class-acf-field-email.php:26 -msgid "A text input specifically designed for storing email addresses." -msgstr "" - -#: includes/fields/class-acf-field-date_time_picker.php:27 -msgid "" -"An interactive UI for picking a date and time. The date return format can be " -"customized using the field settings." -msgstr "" - -#: includes/fields/class-acf-field-date_picker.php:27 -msgid "" -"An interactive UI for picking a date. The date return format can be " -"customized using the field settings." -msgstr "" - -#: includes/fields/class-acf-field-color_picker.php:27 -msgid "An interactive UI for selecting a color, or specifying a Hex value." -msgstr "" - -#: includes/fields/class-acf-field-checkbox.php:27 -msgid "" -"A group of checkbox inputs that allow the user to select one, or multiple " -"values that you specify." -msgstr "" - -#: includes/fields/class-acf-field-button-group.php:26 -msgid "" -"A group of buttons with values that you specify, users can choose one option " -"from the values provided." -msgstr "" - -#: includes/fields/class-acf-field-accordion.php:27 -msgid "" -"Allows you to group and organize custom fields into collapsable panels that " -"are shown while editing content. Useful for keeping large datasets tidy." -msgstr "" - -#: includes/fields.php:475 -msgid "" -"This provides a solution for repeating content such as slides, team members, " -"and call-to-action tiles, by acting as a parent to a set of subfields which " -"can be repeated again and again." -msgstr "" - -#: includes/fields.php:465 -msgid "" -"This provides an interactive interface for managing a collection of " -"attachments. Most settings are similar to the Image field type. Additional " -"settings allow you to specify where new attachments are added in the gallery " -"and the minimum/maximum number of attachments allowed." -msgstr "" - -#: includes/fields.php:455 -msgid "" -"This provides a simple, structured, layout-based editor. The Flexible " -"Content field allows you to define, create and manage content with total " -"control by using layouts and subfields to design the available blocks." -msgstr "" - -#: includes/fields.php:445 -msgid "" -"This allows you to select and display existing fields. It does not duplicate " -"any fields in the database, but loads and displays the selected fields at " -"run-time. The Clone field can either replace itself with the selected fields " -"or display the selected fields as a group of subfields." -msgstr "" - -#: includes/fields.php:442 -msgctxt "noun" -msgid "Clone" -msgstr "" - -#: includes/admin/views/global/navigation.php:86 includes/fields.php:357 -msgid "PRO" -msgstr "" - -#: includes/fields.php:355 includes/fields.php:412 -msgid "Advanced" -msgstr "" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:85 -msgid "JSON (newer)" -msgstr "" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:81 -msgid "Original" -msgstr "" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:55 -msgid "Invalid post ID." -msgstr "" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:47 -msgid "Invalid post type selected for review." -msgstr "" - -#: includes/admin/views/global/navigation.php:186 -msgid "More" -msgstr "" - -#: includes/admin/views/browse-fields-modal.php:86 -msgid "Tutorial" -msgstr "" - -#: includes/admin/views/browse-fields-modal.php:75 -msgid "Available with ACF PRO" -msgstr "" - -#: includes/admin/views/browse-fields-modal.php:63 -msgid "Select Field" -msgstr "" - -#. translators: %s: A link to the popular fields used in ACF -#: includes/admin/views/browse-fields-modal.php:50 -msgid "Try a different search term or browse %s" -msgstr "" - -#: includes/admin/views/browse-fields-modal.php:47 -msgid "Popular fields" -msgstr "" - -#. translators: %s: The invalid search term -#: includes/admin/views/browse-fields-modal.php:40 -msgid "No search results for '%s'" -msgstr "" - -#: includes/admin/views/browse-fields-modal.php:13 -msgid "Search fields..." -msgstr "" - -#: includes/admin/views/browse-fields-modal.php:11 -msgid "Select Field Type" -msgstr "" - -#: includes/admin/views/browse-fields-modal.php:4 -msgid "Popular" -msgstr "" - -#: includes/admin/views/acf-taxonomy/list-empty.php:7 -msgid "Add Taxonomy" -msgstr "" - -#: includes/admin/views/acf-taxonomy/list-empty.php:6 -msgid "Create custom taxonomies to classify post type content" -msgstr "" - -#: includes/admin/views/acf-taxonomy/list-empty.php:5 -msgid "Add Your First Taxonomy" -msgstr "" - -#: includes/admin/views/acf-taxonomy/basic-settings.php:122 -msgid "Hierarchical taxonomies can have descendants (like categories)." -msgstr "" - -#: includes/admin/views/acf-taxonomy/basic-settings.php:107 -msgid "Makes a taxonomy visible on the frontend and in the admin dashboard." -msgstr "" - -#: includes/admin/views/acf-taxonomy/basic-settings.php:91 -msgid "One or many post types that can be classified with this taxonomy." -msgstr "" - -#. translators: example taxonomy -#: includes/admin/views/acf-taxonomy/basic-settings.php:60 -msgid "genre" -msgstr "" - -#. translators: example taxonomy -#: includes/admin/views/acf-taxonomy/basic-settings.php:42 -msgid "Genre" -msgstr "" - -#. translators: example taxonomy -#: includes/admin/views/acf-taxonomy/basic-settings.php:25 -msgid "Genres" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1211 -msgid "" -"Optional custom controller to use instead of `WP_REST_Terms_Controller `." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1155 -msgid "Expose this post type in the REST API." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1055 -msgid "Customize the query variable name" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1028 -msgid "" -"Terms can be accessed using the non-pretty permalink, e.g., {query_var}" -"={term_slug}." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:981 -msgid "Parent-child terms in URLs for hierarchical taxonomies." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:941 -msgid "Customize the slug used in the URL" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:924 -msgid "Permalinks for this taxonomy are disabled." -msgstr "" - -#. translators: this string will be appended with the new permalink structure. -#: includes/admin/views/acf-taxonomy/advanced-settings.php:921 -msgid "" -"Rewrite the URL using the taxonomy key as the slug. Your permalink structure " -"will be" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:913 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1030 -#: includes/admin/views/acf-taxonomy/basic-settings.php:57 -msgid "Taxonomy Key" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:911 -msgid "Select the type of permalink to use for this taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:896 -msgid "Display a column for the taxonomy on post type listing screens." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:895 -msgid "Show Admin Column" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:882 -msgid "Show the taxonomy in the quick/bulk edit panel." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:881 -msgid "Quick Edit" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:868 -msgid "List the taxonomy in the Tag Cloud Widget controls." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:867 -msgid "Tag Cloud" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:824 -msgid "" -"A PHP function name to be called for sanitizing taxonomy data saved from a " -"meta box." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:823 -msgid "Meta Box Sanitization Callback" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:805 -msgid "" -"A PHP function name to be called to handle the content of a meta box on your " -"taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:804 -msgid "Register Meta Box Callback" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:763 -msgid "No Meta Box" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:762 -msgid "Custom Meta Box" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:758 -msgid "" -"Controls the meta box on the content editor screen. By default, the " -"Categories meta box is shown for hierarchical taxonomies, and the Tags meta " -"box is shown for non-hierarchical taxonomies." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:757 -msgid "Meta Box" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:746 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:767 -msgid "Categories Meta Box" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:745 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:766 -msgid "Tags Meta Box" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:704 -msgid "A link to a tag" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:703 -msgid "Describes a navigation link block variation used in the block editor." -msgstr "" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:698 -msgid "A link to a %s" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:683 -msgid "Tag Link" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:682 -msgid "" -"Assigns a title for navigation link block variation used in the block editor." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:663 -msgid "← Go to tags" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:662 -msgid "" -"Assigns the text used to link back to the main index after updating a term." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:661 -msgid "Back To Items" -msgstr "" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:657 -msgid "← Go to %s" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:642 -msgid "Tags list" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:641 -msgid "Assigns text to the table hidden heading." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:622 -msgid "Tags list navigation" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:621 -msgid "Assigns text to the table pagination hidden heading." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:597 -msgid "Filter by category" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:596 -msgid "Assigns text to the filter button in the posts lists table." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:595 -msgid "Filter By Item" -msgstr "" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:591 -msgid "Filter by %s" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:575 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:576 -msgid "" -"The description is not prominent by default; however, some themes may show " -"it." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:574 -msgid "Describes the Description field on the Edit Tags screen." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:573 -msgid "Description Field Description" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:554 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:555 -msgid "" -"Assign a parent term to create a hierarchy. The term Jazz, for example, " -"would be the parent of Bebop and Big Band" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:553 -msgid "Describes the Parent field on the Edit Tags screen." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:552 -msgid "Parent Field Description" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:538 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:539 -msgid "" -"The \"slug\" is the URL-friendly version of the name. It is usually all " -"lower case and contains only letters, numbers, and hyphens." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:537 -msgid "Describes the Slug field on the Edit Tags screen." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:536 -msgid "Slug Field Description" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:522 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:523 -msgid "The name is how it appears on your site" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:521 -msgid "Describes the Name field on the Edit Tags screen." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:520 -msgid "Name Field Description" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:507 -msgid "No tags" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:506 -msgid "" -"Assigns the text displayed in the posts and media list tables when no tags " -"or categories are available." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:505 -msgid "No Terms" -msgstr "" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:501 -msgid "No %s" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:486 -msgid "No tags found" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:485 -msgid "" -"Assigns the text displayed when clicking the 'choose from most used' text in " -"the taxonomy meta box when no tags are available, and assigns the text used " -"in the terms list table when there are no items for a taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:484 -msgid "Not Found" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:463 -msgid "Assigns text to the Title field of the Most Used tab." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:462 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:464 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:465 -msgid "Most Used" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:444 -msgid "Choose from the most used tags" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:443 -msgid "" -"Assigns the 'choose from most used' text used in the meta box when " -"JavaScript is disabled. Only used on non-hierarchical taxonomies." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:442 -msgid "Choose From Most Used" -msgstr "" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:438 -msgid "Choose from the most used %s" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:418 -msgid "Add or remove tags" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:417 -msgid "" -"Assigns the add or remove items text used in the meta box when JavaScript is " -"disabled. Only used on non-hierarchical taxonomies" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:416 -msgid "Add Or Remove Items" -msgstr "" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:412 -msgid "Add or remove %s" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:392 -msgid "Separate tags with commas" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:391 -msgid "" -"Assigns the separate item with commas text used in the taxonomy meta box. " -"Only used on non-hierarchical taxonomies." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:390 -msgid "Separate Items With Commas" -msgstr "" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:386 -msgid "Separate %s with commas" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:366 -msgid "Popular Tags" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:365 -msgid "Assigns popular items text. Only used for non-hierarchical taxonomies." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:364 -msgid "Popular Items" -msgstr "" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:361 -msgid "Popular %s" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:347 -msgid "Search Tags" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:346 -msgid "Assigns search items text." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:323 -msgid "Parent Category:" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:322 -msgid "Assigns parent item text, but with a colon (:) added to the end." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:321 -msgid "Parent Item With Colon" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:298 -msgid "Parent Category" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:297 -msgid "Assigns parent item text. Only used on hierarchical taxonomies." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:296 -msgid "Parent Item" -msgstr "" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:293 -msgid "Parent %s" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:278 -msgid "New Tag Name" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:277 -msgid "Assigns the new item name text." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:276 -msgid "New Item Name" -msgstr "" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:273 -msgid "New %s Name" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:258 -msgid "Add New Tag" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:257 -msgid "Assigns the add new item text." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:238 -msgid "Update Tag" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:237 -msgid "Assigns the update item text." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:236 -msgid "Update Item" -msgstr "" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:233 -msgid "Update %s" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:218 -msgid "View Tag" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:217 -msgid "In the admin bar to view term during editing." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:198 -msgid "Edit Tag" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:197 -msgid "At the top of the editor screen when editing a term." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:178 -msgid "All Tags" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:177 -msgid "Assigns the all items text." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:158 -msgid "Assigns the menu name text." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:157 -msgid "Menu Label" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:131 -msgid "Active taxonomies are enabled and registered with WordPress." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:115 -msgid "A descriptive summary of the taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:95 -msgid "A descriptive summary of the term." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:94 -msgid "Term Description" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:76 -msgid "Single word, no spaces. Underscores and dashes allowed." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:75 -msgid "Term Slug" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:56 -msgid "The name of the default term." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:55 -msgid "Term Name" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:41 -msgid "" -"Create a term for the taxonomy that cannot be deleted. It will not be " -"selected for posts by default." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:40 -msgid "Default Term" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:28 -msgid "" -"Whether terms in this taxonomy should be sorted in the order they are " -"provided to `wp_set_object_terms()`." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:27 -msgid "Sort Terms" -msgstr "" - -#: includes/admin/views/acf-post-type/list-empty.php:7 -msgid "Add Post Type" -msgstr "" - -#: includes/admin/views/acf-post-type/list-empty.php:6 -msgid "" -"Expand the functionality of WordPress beyond standard posts and pages with " -"custom post types." -msgstr "" - -#: includes/admin/views/acf-post-type/list-empty.php:5 -msgid "Add Your First Post Type" -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:136 -#: includes/admin/views/acf-taxonomy/basic-settings.php:135 -msgid "I know what I'm doing, show me all the options." -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:135 -#: includes/admin/views/acf-taxonomy/basic-settings.php:134 -msgid "Advanced Configuration" -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:123 -msgid "Hierarchical post types can have descendants (like pages)." -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:122 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:980 -#: includes/admin/views/acf-taxonomy/basic-settings.php:121 -msgid "Hierarchical" -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:107 -msgid "Visible on the frontend and in the admin dashboard." -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:106 -#: includes/admin/views/acf-taxonomy/basic-settings.php:106 -msgid "Public" -msgstr "" - -#. translators: example post type -#: includes/admin/views/acf-post-type/basic-settings.php:59 -msgid "movie" -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:57 -msgid "Lower case letters, underscores and dashes only, Max 20 characters." -msgstr "" - -#. translators: example post type -#: includes/admin/views/acf-post-type/basic-settings.php:41 -msgid "Movie" -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:39 -#: includes/admin/views/acf-taxonomy/basic-settings.php:40 -msgid "Singular Label" -msgstr "" - -#. translators: example post type -#: includes/admin/views/acf-post-type/basic-settings.php:24 -msgid "Movies" -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:22 -#: includes/admin/views/acf-taxonomy/basic-settings.php:23 -msgid "Plural Label" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1270 -msgid "" -"Optional custom controller to use instead of `WP_REST_Posts_Controller`." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1269 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1210 -msgid "Controller Class" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1251 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1191 -msgid "The namespace part of the REST API URL." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1250 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1190 -msgid "Namespace Route" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1232 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1172 -msgid "The base URL for the post type REST API URLs." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1231 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1171 -msgid "Base URL" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1217 -msgid "" -"Exposes this post type in the REST API. Required to use the block editor." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1216 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1154 -msgid "Show In REST API" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1195 -msgid "Customize the query variable name." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1194 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1054 -msgid "Query Variable" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1172 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1032 -msgid "No Query Variable Support" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1171 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1031 -msgid "Custom Query Variable" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1168 -msgid "" -"Items can be accessed using the non-pretty permalink, eg. {post_type}" -"={post_slug}." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1167 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1027 -msgid "Query Variable Support" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1142 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1003 -msgid "URLs for an item and items can be accessed with a query string." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1141 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1002 -msgid "Publicly Queryable" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1120 -msgid "Custom slug for the Archive URL." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1119 -msgid "Archive Slug" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1106 -msgid "" -"Has an item archive that can be customized with an archive template file in " -"your theme." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1105 -msgid "Archive" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1085 -msgid "Pagination support for the items URLs such as the archives." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1084 -msgid "Pagination" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1067 -msgid "RSS feed URL for the post type items." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1066 -msgid "Feed URL" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1048 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:961 -msgid "" -"Alters the permalink structure to add the `WP_Rewrite::$front` prefix to " -"URLs." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1047 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:960 -msgid "Front URL Prefix" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1028 -msgid "Customize the slug used in the URL." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1027 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:940 -msgid "URL Slug" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1011 -msgid "Permalinks for this post type are disabled." -msgstr "" - -#. translators: this string will be appended with the new permalink structure. -#: includes/admin/views/acf-post-type/advanced-settings.php:1010 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:923 -msgid "" -"Rewrite the URL using a custom slug defined in the input below. Your " -"permalink structure will be" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1002 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:915 -msgid "No Permalink (prevent URL rewriting)" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1001 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:914 -msgid "Custom Permalink" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1000 -#: includes/admin/views/acf-post-type/advanced-settings.php:1170 -#: includes/admin/views/acf-post-type/basic-settings.php:56 -msgid "Post Type Key" -msgstr "" - -#. translators: this string will be appended with the new permalink structure. -#: includes/admin/views/acf-post-type/advanced-settings.php:998 -#: includes/admin/views/acf-post-type/advanced-settings.php:1008 -msgid "" -"Rewrite the URL using the post type key as the slug. Your permalink " -"structure will be" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:996 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:910 -msgid "Permalink Rewrite" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:982 -msgid "Delete items by a user when that user is deleted." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:981 -msgid "Delete With User" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:967 -msgid "Allow the post type to be exported from 'Tools' > 'Export'." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:966 -msgid "Can Export" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:935 -msgid "Optionally provide a plural to be used in capabilities." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:934 -msgid "Plural Capability Name" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:916 -msgid "Choose another post type to base the capabilities for this post type." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:915 -msgid "Singular Capability Name" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:901 -msgid "" -"By default the capabilities of the post type will inherit the 'Post' " -"capability names, eg. edit_post, delete_posts. Enable to use post type " -"specific capabilities, eg. edit_{singular}, delete_{plural}." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:900 -msgid "Rename Capabilities" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:885 -msgid "Exclude From Search" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:872 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:854 -msgid "" -"Allow items to be added to menus in the 'Appearance' > 'Menus' screen. Must " -"be turned on in 'Screen options'." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:871 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:853 -msgid "Appearance Menus Support" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:853 -msgid "Appears as an item in the 'New' menu in the admin bar." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:852 -msgid "Show In Admin Bar" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:821 -msgid "" -"A PHP function name to be called when setting up the meta boxes for the edit " -"screen." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:820 -msgid "Custom Meta Box Callback" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:800 -msgid "Menu Icon" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:782 -msgid "The position in the sidebar menu in the admin dashboard." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:781 -msgid "Menu Position" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:763 -msgid "" -"By default the post type will get a new top level item in the admin menu. If " -"an existing top level item is supplied here, the post type will be added as " -"a submenu item under it." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:762 -msgid "Admin Menu Parent" -msgstr "" - -#. translators: %s = "dashicon class name", link to the WordPress dashicon -#. documentation. -#: includes/admin/views/acf-post-type/advanced-settings.php:750 -msgid "" -"The icon used for the post type menu item in the admin dashboard. Can be a " -"URL or %s to use for the icon." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:745 -msgid "Dashicon class name" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:734 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:734 -msgid "Admin editor navigation in the sidebar menu." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:733 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:733 -msgid "Show In Admin Menu" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:720 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:719 -msgid "Items can be edited and managed in the admin dashboard." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:719 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:718 -msgid "Show In UI" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:689 -msgid "A link to a post." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:688 -msgid "Description for a navigation link block variation." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:687 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:702 -msgid "Item Link Description" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:683 -msgid "A link to a %s." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:668 -msgid "Post Link" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:667 -msgid "Title for a navigation link block variation." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:666 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:681 -msgid "Item Link" -msgstr "" - -#. translators: %s Singular form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:663 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:678 -msgid "%s Link" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:648 -msgid "Post updated." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:647 -msgid "In the editor notice after an item is updated." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:646 -msgid "Item Updated" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:643 -msgid "%s updated." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:628 -msgid "Post scheduled." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:627 -msgid "In the editor notice after scheduling an item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:626 -msgid "Item Scheduled" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:623 -msgid "%s scheduled." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:608 -msgid "Post reverted to draft." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:607 -msgid "In the editor notice after reverting an item to draft." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:606 -msgid "Item Reverted To Draft" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:603 -msgid "%s reverted to draft." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:588 -msgid "Post published privately." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:587 -msgid "In the editor notice after publishing a private item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:586 -msgid "Item Published Privately" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:583 -msgid "%s published privately." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:568 -msgid "Post published." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:567 -msgid "In the editor notice after publishing an item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:566 -msgid "Item Published" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:563 -msgid "%s published." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:548 -msgid "Posts list" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:547 -msgid "Used by screen readers for the items list on the post type list screen." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:546 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:640 -msgid "Items List" -msgstr "" - -#. translators: %s Plural form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:543 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:637 -msgid "%s list" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:528 -msgid "Posts list navigation" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:527 -msgid "" -"Used by screen readers for the filter list pagination on the post type list " -"screen." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:526 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:620 -msgid "Items List Navigation" -msgstr "" - -#. translators: %s Plural form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:523 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:617 -msgid "%s list navigation" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:507 -msgid "Filter posts by date" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:506 -msgid "" -"Used by screen readers for the filter by date heading on the post type list " -"screen." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:505 -msgid "Filter Items By Date" -msgstr "" - -#. translators: %s Plural form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:501 -msgid "Filter %s by date" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:486 -msgid "Filter posts list" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:485 -msgid "" -"Used by screen readers for the filter links heading on the post type list " -"screen." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:484 -msgid "Filter Items List" -msgstr "" - -#. translators: %s Plural form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:480 -msgid "Filter %s list" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:464 -msgid "In the media modal showing all media uploaded to this item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:463 -msgid "Uploaded To This Item" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:459 -msgid "Uploaded to this %s" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:444 -msgid "Insert into post" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:443 -msgid "As the button label when adding media to content." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:442 -msgid "Insert Into Media Button" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:438 -msgid "Insert into %s" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:423 -msgid "Use as featured image" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:422 -msgid "" -"As the button label for selecting to use an image as the featured image." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:421 -msgid "Use Featured Image" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:408 -msgid "Remove featured image" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:407 -msgid "As the button label when removing the featured image." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:406 -msgid "Remove Featured Image" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:393 -msgid "Set featured image" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:392 -msgid "As the button label when setting the featured image." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:391 -msgid "Set Featured Image" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:378 -msgid "Featured image" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:377 -msgid "In the editor used for the title of the featured image meta box." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:376 -msgid "Featured Image Meta Box" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:363 -msgid "Post Attributes" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:362 -msgid "In the editor used for the title of the post attributes meta box." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:361 -msgid "Attributes Meta Box" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:358 -msgid "%s Attributes" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:343 -msgid "Post Archives" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:342 -msgid "" -"Adds 'Post Type Archive' items with this label to the list of posts shown " -"when adding items to an existing menu in a CPT with archives enabled. Only " -"appears when editing menus in 'Live Preview' mode and a custom archive slug " -"has been provided." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:341 -msgid "Archives Nav Menu" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:338 -msgid "%s Archives" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:323 -msgid "No posts found in Trash" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:322 -msgid "" -"At the top of the post type list screen when there are no posts in the trash." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:321 -msgid "No Items Found in Trash" -msgstr "" - -#. translators: %s Plural form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:317 -msgid "No %s found in Trash" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:302 -msgid "No posts found" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:301 -msgid "" -"At the top of the post type list screen when there are no posts to display." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:300 -msgid "No Items Found" -msgstr "" - -#. translators: %s Plural form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:296 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:480 -msgid "No %s found" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:281 -msgid "Search Posts" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:280 -msgid "At the top of the items screen when searching for an item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:279 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:345 -msgid "Search Items" -msgstr "" - -#. translators: %s Singular form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:276 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:342 -msgid "Search %s" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:261 -msgid "Parent Page:" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:260 -msgid "For hierarchical types in the post type list screen." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:259 -msgid "Parent Item Prefix" -msgstr "" - -#. translators: %s Singular form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:256 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:318 -msgid "Parent %s:" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:241 -msgid "New Post" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:239 -msgid "New Item" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:236 -msgid "New %s" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:206 -msgid "Add New Post" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:205 -msgid "At the top of the editor screen when adding a new item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:204 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:256 -msgid "Add New Item" -msgstr "" - -#. translators: %s Singular form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:201 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:253 -msgid "Add New %s" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:186 -msgid "View Posts" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:185 -msgid "" -"Appears in the admin bar in the 'All Posts' view, provided the post type " -"supports archives and the home page is not an archive of that post type." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:184 -msgid "View Items" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:166 -msgid "View Post" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:165 -msgid "In the admin bar to view item when editing it." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:164 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:216 -msgid "View Item" -msgstr "" - -#. translators: %s Singular form of post type name -#. translators: %s Plural form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:161 -#: includes/admin/views/acf-post-type/advanced-settings.php:181 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:213 -msgid "View %s" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:146 -msgid "Edit Post" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:145 -msgid "At the top of the editor screen when editing an item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:144 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:196 -msgid "Edit Item" -msgstr "" - -#. translators: %s Singular form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:141 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:193 -msgid "Edit %s" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:126 -msgid "All Posts" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:125 -#: includes/admin/views/acf-post-type/advanced-settings.php:220 -#: includes/admin/views/acf-post-type/advanced-settings.php:240 -msgid "In the post type submenu in the admin dashboard." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:124 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:176 -msgid "All Items" -msgstr "" - -#. translators: %s Plural form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:121 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:173 -msgid "All %s" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:105 -msgid "Admin menu name for the post type." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:104 -msgid "Menu Name" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:90 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:142 -msgid "Regenerate all labels using the Singular and Plural labels" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:88 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:140 -msgid "Regenerate" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:79 -msgid "Active post types are enabled and registered with WordPress." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:63 -msgid "A descriptive summary of the post type." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:48 -msgid "Add Custom" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:42 -msgid "Enable various features in the content editor." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:31 -msgid "Post Formats" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:25 -msgid "Editor" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:24 -msgid "Trackbacks" -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:87 -msgid "Select existing taxonomies to classify items of the post type." -msgstr "" - -#: includes/admin/views/acf-field-group/field.php:145 -msgid "Browse Fields" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:292 -msgid "Nothing to import" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:287 -msgid ". The Custom Post Type UI plugin can be deactivated." -msgstr "" - -#. translators: %d - number of items imported from CPTUI -#: includes/admin/tools/class-acf-admin-tool-import.php:278 -msgid "Imported %d item from Custom Post Type UI -" -msgid_plural "Imported %d items from Custom Post Type UI -" -msgstr[0] "" -msgstr[1] "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:262 -msgid "Failed to import taxonomies." -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:244 -msgid "Failed to import post types." -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:233 -msgid "Nothing from Custom Post Type UI plugin selected for import." -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:209 -msgid "Imported 1 item" -msgid_plural "Imported %s items" -msgstr[0] "" -msgstr[1] "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:122 -msgid "" -"Importing a Post Type or Taxonomy with the same key as one that already " -"exists will overwrite the settings for the existing Post Type or Taxonomy " -"with those of the import." -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:111 -#: includes/admin/tools/class-acf-admin-tool-import.php:127 -msgid "Import from Custom Post Type UI" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:412 -msgid "" -"The following code can be used to register a local version of the selected " -"items. Storing field groups, post types, or taxonomies locally can provide " -"many benefits such as faster load times, version control & dynamic fields/" -"settings. Simply copy and paste the following code to your theme's functions." -"php file or include it within an external file, then deactivate or delete " -"the items from the ACF admin." -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:411 -msgid "Export - Generate PHP" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:384 -msgid "Export" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:276 -msgid "Select Taxonomies" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:254 -msgid "Select Post Types" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:167 -msgid "Exported 1 item." -msgid_plural "Exported %s items." -msgstr[0] "" -msgstr[1] "" - -#: includes/admin/post-types/admin-taxonomy.php:129 -#: assets/build/js/acf-internal-post-type.js:182 -#: assets/build/js/acf-internal-post-type.js:256 -msgid "Category" -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:127 -#: assets/build/js/acf-internal-post-type.js:179 -#: assets/build/js/acf-internal-post-type.js:253 -msgid "Tag" -msgstr "" - -#. translators: %s taxonomy name -#: includes/admin/post-types/admin-taxonomy.php:82 -msgid "%s taxonomy created" -msgstr "" - -#. translators: %s taxonomy name -#: includes/admin/post-types/admin-taxonomy.php:76 -msgid "%s taxonomy updated" -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:56 -msgid "Taxonomy draft updated." -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:55 -msgid "Taxonomy scheduled for." -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:54 -msgid "Taxonomy submitted." -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:53 -msgid "Taxonomy saved." -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:49 -msgid "Taxonomy deleted." -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:48 -msgid "Taxonomy updated." -msgstr "" - -#: includes/admin/post-types/admin-taxonomies.php:377 -#: includes/admin/post-types/admin-taxonomy.php:157 -msgid "" -"This taxonomy could not be registered because its key is in use by another " -"taxonomy registered by another plugin or theme." -msgstr "" - -#. translators: %s number of taxonomies synchronized -#: includes/admin/post-types/admin-taxonomies.php:359 -msgid "Taxonomy synchronized." -msgid_plural "%s taxonomies synchronized." -msgstr[0] "" -msgstr[1] "" - -#. translators: %s number of taxonomies duplicated -#: includes/admin/post-types/admin-taxonomies.php:352 -msgid "Taxonomy duplicated." -msgid_plural "%s taxonomies duplicated." -msgstr[0] "" -msgstr[1] "" - -#. translators: %s number of taxonomies deactivated -#: includes/admin/post-types/admin-taxonomies.php:345 -msgid "Taxonomy deactivated." -msgid_plural "%s taxonomies deactivated." -msgstr[0] "" -msgstr[1] "" - -#. translators: %s number of taxonomies activated -#: includes/admin/post-types/admin-taxonomies.php:338 -msgid "Taxonomy activated." -msgid_plural "%s taxonomies activated." -msgstr[0] "" -msgstr[1] "" - -#: includes/admin/post-types/admin-taxonomies.php:139 -msgid "Terms" -msgstr "" - -#. translators: %s number of post types synchronized -#: includes/admin/post-types/admin-post-types.php:352 -msgid "Post type synchronized." -msgid_plural "%s post types synchronized." -msgstr[0] "" -msgstr[1] "" - -#. translators: %s number of post types duplicated -#: includes/admin/post-types/admin-post-types.php:345 -msgid "Post type duplicated." -msgid_plural "%s post types duplicated." -msgstr[0] "" -msgstr[1] "" - -#. translators: %s number of post types deactivated -#: includes/admin/post-types/admin-post-types.php:338 -msgid "Post type deactivated." -msgid_plural "%s post types deactivated." -msgstr[0] "" -msgstr[1] "" - -#. translators: %s number of post types activated -#: includes/admin/post-types/admin-post-types.php:331 -msgid "Post type activated." -msgid_plural "%s post types activated." -msgstr[0] "" -msgstr[1] "" - -#: includes/admin/post-types/admin-post-types.php:112 -#: includes/admin/post-types/admin-taxonomies.php:137 -#: includes/admin/tools/class-acf-admin-tool-import.php:82 -#: includes/admin/views/acf-taxonomy/basic-settings.php:82 -#: includes/post-types/class-acf-post-type.php:91 -msgid "Post Types" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:162 -#: includes/admin/post-types/admin-taxonomy.php:164 -msgid "Advanced Settings" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:161 -#: includes/admin/post-types/admin-taxonomy.php:163 -msgid "Basic Settings" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:155 -#: includes/admin/post-types/admin-post-types.php:370 -msgid "" -"This post type could not be registered because its key is in use by another " -"post type registered by another plugin or theme." -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:128 -#: assets/build/js/acf-internal-post-type.js:176 -#: assets/build/js/acf-internal-post-type.js:250 -msgid "Pages" -msgstr "" - -#: includes/admin/admin-internal-post-type.php:355 -msgid "Link Existing Field Groups" -msgstr "" - -#. translators: %s post type name -#: includes/admin/post-types/admin-post-type.php:80 -msgid "%s post type created" -msgstr "" - -#. translators: %s taxonomy name -#: includes/admin/post-types/admin-taxonomy.php:78 -msgid "Add fields to %s" -msgstr "" - -#. translators: %s post type name -#: includes/admin/post-types/admin-post-type.php:76 -msgid "%s post type updated" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:56 -msgid "Post type draft updated." -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:55 -msgid "Post type scheduled for." -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:54 -msgid "Post type submitted." -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:53 -msgid "Post type saved." -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:50 -msgid "Post type updated." -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:49 -msgid "Post type deleted." -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:120 -#: assets/build/js/acf-field-group.js:1146 -#: assets/build/js/acf-field-group.js:1366 -msgid "Type to search..." -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:105 -#: assets/build/js/acf-field-group.js:1172 -#: assets/build/js/acf-field-group.js:2319 -#: assets/build/js/acf-field-group.js:1414 -#: assets/build/js/acf-field-group.js:2727 -msgid "PRO Only" -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:97 -#: assets/build/js/acf-internal-post-type.js:308 -#: assets/build/js/acf-internal-post-type.js:417 -msgid "Field groups linked successfully." -msgstr "" - -#. translators: %s - URL to ACF tools page. -#: includes/admin/admin.php:195 -msgid "" -"Import Post Types and Taxonomies registered with Custom Post Type UI and " -"manage them with ACF. Get Started." -msgstr "" - -#: includes/admin/admin.php:48 includes/admin/admin.php:267 -msgid "ACF" -msgstr "" - -#: includes/admin/admin-internal-post-type.php:322 -msgid "taxonomy" -msgstr "" - -#: includes/admin/admin-internal-post-type.php:322 -msgid "post type" -msgstr "" - -#: includes/admin/admin-internal-post-type.php:346 -msgid "Done" -msgstr "" - -#: includes/admin/admin-internal-post-type.php:332 -msgid "Field Group(s)" -msgstr "" - -#: includes/admin/admin-internal-post-type.php:331 -msgid "Select one or many field groups..." -msgstr "" - -#: includes/admin/admin-internal-post-type.php:330 -msgid "Please select the field groups to link." -msgstr "" - -#: includes/admin/admin-internal-post-type.php:288 -msgid "Field group linked successfully." -msgid_plural "Field groups linked successfully." -msgstr[0] "" -msgstr[1] "" - -#: includes/admin/admin-internal-post-type-list.php:261 -#: includes/admin/post-types/admin-post-types.php:371 -#: includes/admin/post-types/admin-taxonomies.php:378 -msgctxt "post status" -msgid "Registration Failed" -msgstr "" - -#: includes/admin/admin-internal-post-type-list.php:260 -msgid "" -"This item could not be registered because its key is in use by another item " -"registered by another plugin or theme." -msgstr "" - -#: includes/acf-internal-post-type-functions.php:482 -#: includes/acf-internal-post-type-functions.php:511 -msgid "REST API" -msgstr "" - -#: includes/acf-internal-post-type-functions.php:481 -#: includes/acf-internal-post-type-functions.php:510 -#: includes/acf-internal-post-type-functions.php:537 -msgid "Permissions" -msgstr "" - -#: includes/acf-internal-post-type-functions.php:480 -#: includes/acf-internal-post-type-functions.php:509 -msgid "URLs" -msgstr "" - -#: includes/acf-internal-post-type-functions.php:479 -#: includes/acf-internal-post-type-functions.php:508 -#: includes/acf-internal-post-type-functions.php:535 -msgid "Visibility" -msgstr "" - -#: includes/acf-internal-post-type-functions.php:478 -#: includes/acf-internal-post-type-functions.php:507 -#: includes/acf-internal-post-type-functions.php:536 -msgid "Labels" -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:269 -msgid "Field Settings Tabs" -msgstr "Pestanas de axustes de campos" - -#. Author URI of the plugin -msgid "" -"https://wpengine.com/?utm_source=wordpress." -"org&utm_medium=referral&utm_campaign=plugin_directory&utm_content=advanced_custom_fields" -msgstr "" -"https://wpengine.com/?utm_source=wordpress." -"org&utm_medium=referral&utm_campaign=plugin_directory&utm_content=advanced_custom_fields" - -#: includes/api/api-template.php:867 -msgid "[ACF shortcode value disabled for preview]" -msgstr "[valor do shortcode de ACF desactivado na vista previa]" - -#: includes/admin/admin-internal-post-type.php:298 -#: includes/admin/post-types/admin-field-group.php:571 -msgid "Close Modal" -msgstr "Cerrar ventá emerxente" - -#: includes/admin/post-types/admin-field-group.php:96 -#: assets/build/js/acf-field-group.js:1670 -#: assets/build/js/acf-field-group.js:1993 -msgid "Field moved to other group" -msgstr "Campo movido a outro grupo" - -#: includes/admin/post-types/admin-field-group.php:95 -#: assets/build/js/acf.js:1437 assets/build/js/acf.js:1517 -msgid "Close modal" -msgstr "Cerrar ventá emerxente" - -#: includes/fields/class-acf-field-tab.php:125 -msgid "Start a new group of tabs at this tab." -msgstr "Empeza un novo grupo de pestanas nesta pestana" - -#: includes/fields/class-acf-field-tab.php:124 -msgid "New Tab Group" -msgstr "Novo grupo de pestanas" - -#: includes/fields/class-acf-field-select.php:451 -#: includes/fields/class-acf-field-true_false.php:200 -msgid "Use a stylized checkbox using select2" -msgstr "Usa un recadro de verificación estilizado utilizando select2" - -#: includes/fields/class-acf-field-radio.php:260 -msgid "Save Other Choice" -msgstr "Gardar a opción «Outro»" - -#: includes/fields/class-acf-field-radio.php:249 -msgid "Allow Other Choice" -msgstr "Permitir a opción «Outro»" - -#: includes/fields/class-acf-field-checkbox.php:450 -msgid "Add Toggle All" -msgstr "Engade un «Alternar todos»" - -#: includes/fields/class-acf-field-checkbox.php:409 -msgid "Save Custom Values" -msgstr "Gardar os valores personalizados" - -#: includes/fields/class-acf-field-checkbox.php:398 -msgid "Allow Custom Values" -msgstr "Permitir valores personalizados" - -#: includes/fields/class-acf-field-checkbox.php:148 -msgid "Checkbox custom values cannot be empty. Uncheck any empty values." -msgstr "" -"Os valores personalizados do recadro de verificación non poden estar " -"baleiros. Desmarca calquera valor baleiro." - -#: includes/admin/views/global/navigation.php:248 -msgid "Updates" -msgstr "Actualizacións" - -#: includes/admin/views/global/navigation.php:176 -msgid "Advanced Custom Fields logo" -msgstr "Logo de Advanced Custom Fields" - -#: includes/admin/views/global/form-top.php:89 -msgid "Save Changes" -msgstr "Gardar cambios" - -#: includes/admin/views/global/form-top.php:76 -msgid "Field Group Title" -msgstr "Título do grupo de campos" - -#: includes/admin/views/acf-post-type/advanced-settings.php:704 -#: includes/admin/views/global/form-top.php:3 -msgid "Add title" -msgstr "Engadir título" - -#. translators: %s url to getting started guide -#: includes/admin/views/acf-field-group/list-empty.php:20 -#: includes/admin/views/acf-post-type/list-empty.php:12 -#: includes/admin/views/acf-taxonomy/list-empty.php:12 -#: includes/admin/views/options-page-preview.php:13 -msgid "" -"New to ACF? Take a look at our getting " -"started guide." -msgstr "" -"Novo en ACF? Bota unha ollada á nosa guía " -"para comezar." - -#: includes/admin/views/acf-field-group/list-empty.php:15 -msgid "Add Field Group" -msgstr "Engadir grupo de campos" - -#. translators: %s url to creating a field group page -#: includes/admin/views/acf-field-group/list-empty.php:10 -msgid "" -"ACF uses field groups to group custom " -"fields together, and then attach those fields to edit screens." -msgstr "" -"ACF utiliza grupos de campos para " -"agrupar campos personalizados xuntos, e despois engadir eses campos ás " -"pantallas de edición." - -#: includes/admin/views/acf-field-group/list-empty.php:5 -msgid "Add Your First Field Group" -msgstr "Engade o teu primeiro grupo de campos" - -#: includes/admin/admin-options-pages-preview.php:28 -#: includes/admin/views/acf-field-group/pro-features.php:54 -#: includes/admin/views/global/navigation.php:86 -#: includes/admin/views/global/navigation.php:250 -msgid "Options Pages" -msgstr "Páxinas de opcións" - -#: includes/admin/views/acf-field-group/pro-features.php:50 -msgid "ACF Blocks" -msgstr "ACF Blocks" - -#: includes/admin/views/acf-field-group/pro-features.php:58 -msgid "Gallery Field" -msgstr "Campo galería" - -#: includes/admin/views/acf-field-group/pro-features.php:38 -msgid "Flexible Content Field" -msgstr "Campo de contido flexible" - -#: includes/admin/views/acf-field-group/pro-features.php:42 -msgid "Repeater Field" -msgstr "Campo repetidor" - -#: includes/admin/views/global/navigation.php:212 -msgid "Unlock Extra Features with ACF PRO" -msgstr "Desbloquea as características extra con ACF PRO" - -#: includes/admin/views/acf-field-group/options.php:267 -msgid "Delete Field Group" -msgstr "Borrar grupo de campos" - -#. translators: 1: Post creation date 2: Post creation time -#: includes/admin/views/acf-field-group/options.php:261 -msgid "Created on %1$s at %2$s" -msgstr "Creado o %1$s ás %2$s" - -#: includes/acf-field-group-functions.php:497 -msgid "Group Settings" -msgstr "Axustes de grupo" - -#: includes/acf-field-group-functions.php:495 -msgid "Location Rules" -msgstr "Regras de ubicación" - -#. translators: %s url to field types list -#: includes/admin/views/acf-field-group/fields.php:72 -msgid "" -"Choose from over 30 field types. Learn " -"more." -msgstr "" -"Elixe de entre máis de 30 tipos de campos. Aprende máis." - -#: includes/admin/views/acf-field-group/fields.php:65 -msgid "" -"Get started creating new custom fields for your posts, pages, custom post " -"types and other WordPress content." -msgstr "" -"Comeza creando novos campos personalizados para as túas entradas, páxinas, " -"tipos de contido personalizados e outros contidos de WordPress." - -#: includes/admin/views/acf-field-group/fields.php:64 -msgid "Add Your First Field" -msgstr "Engade o teu primeiro campo" - -#. translators: A symbol (or text, if not available in your locale) meaning -#. "Order Number", in terms of positional placement. -#: includes/admin/views/acf-field-group/fields.php:43 -msgid "#" -msgstr "#" - -#: includes/admin/views/acf-field-group/fields.php:33 -#: includes/admin/views/acf-field-group/fields.php:67 -#: includes/admin/views/acf-field-group/fields.php:103 -#: includes/admin/views/global/form-top.php:85 -msgid "Add Field" -msgstr "Engadir campo" - -#: includes/acf-field-group-functions.php:496 includes/fields.php:410 -msgid "Presentation" -msgstr "Presentación" - -#: includes/fields.php:409 -msgid "Validation" -msgstr "Validación" - -#: includes/acf-internal-post-type-functions.php:477 -#: includes/acf-internal-post-type-functions.php:506 includes/fields.php:408 -msgid "General" -msgstr "Xeral" - -#: includes/admin/tools/class-acf-admin-tool-import.php:70 -msgid "Import JSON" -msgstr "Importar JSON" - -#: includes/admin/tools/class-acf-admin-tool-export.php:392 -msgid "Export As JSON" -msgstr "Exportar como JSON" - -#. translators: %s number of field groups deactivated -#: includes/admin/post-types/admin-field-groups.php:367 -msgid "Field group deactivated." -msgid_plural "%s field groups deactivated." -msgstr[0] "Grupo de campos desactivado." -msgstr[1] "%s grupos de campos desactivados." - -#. translators: %s number of field groups activated -#: includes/admin/post-types/admin-field-groups.php:360 -msgid "Field group activated." -msgid_plural "%s field groups activated." -msgstr[0] "Grupo de campos activado." -msgstr[1] "%s grupos de campos activados." - -#: includes/admin/admin-internal-post-type-list.php:452 -#: includes/admin/admin-internal-post-type-list.php:478 -msgid "Deactivate" -msgstr "Desactivar" - -#: includes/admin/admin-internal-post-type-list.php:452 -msgid "Deactivate this item" -msgstr "Desactiva este elemento" - -#: includes/admin/admin-internal-post-type-list.php:448 -#: includes/admin/admin-internal-post-type-list.php:477 -msgid "Activate" -msgstr "Activar" - -#: includes/admin/admin-internal-post-type-list.php:448 -msgid "Activate this item" -msgstr "Activa este elemento" - -#: includes/admin/post-types/admin-field-group.php:92 -#: assets/build/js/acf-field-group.js:2812 -#: assets/build/js/acf-field-group.js:3313 -msgid "Move field group to trash?" -msgstr "Mover este grupo de campos á papeleira?" - -#: acf.php:497 includes/admin/admin-internal-post-type-list.php:248 -#: includes/admin/post-types/admin-field-group.php:297 -#: includes/admin/post-types/admin-post-type.php:295 -#: includes/admin/post-types/admin-taxonomy.php:297 -msgctxt "post status" -msgid "Inactive" -msgstr "Inactivo" - -#. Author of the plugin -msgid "WP Engine" -msgstr "WP Engine" - -#: acf.php:555 -msgid "" -"Advanced Custom Fields and Advanced Custom Fields PRO should not be active " -"at the same time. We've automatically deactivated Advanced Custom Fields PRO." -msgstr "" -"Advanced Custom Fields e Advanced Custom Fields PRO non deberían estar " -"activos ao mesmo tempo. Desactivamos automaticamente Advanced Custom Fields " -"PRO." - -#: acf.php:553 -msgid "" -"Advanced Custom Fields and Advanced Custom Fields PRO should not be active " -"at the same time. We've automatically deactivated Advanced Custom Fields." -msgstr "" -"Advanced Custom Fields e Advanced Custom Fields PRO non deberían estar " -"activos ao mesmo tempo. Desactivamos automaticamente Advanced Custom Fields." - -#: includes/acf-value-functions.php:374 -msgid "" -"%1$s - We've detected one or more calls to retrieve ACF " -"field values before ACF has been initialized. This is not supported and can " -"result in malformed or missing data. Learn how to fix this." -msgstr "" -"%1$s -Detectamos unha ou máis chamadas para obter valores " -"de campo de ACF antes de que ACF se iniciara. Isto non é compatible e pode " -"ocasionar datos mal formados ou faltantes. Aprende como corrixilo." - -#: includes/fields/class-acf-field-user.php:551 -msgid "%1$s must have a user with the %2$s role." -msgid_plural "%1$s must have a user with one of the following roles: %2$s" -msgstr[0] "%1$s debe ter un usuario co perfil %2$s." -msgstr[1] "%1$s debe ter un usuario cun dos seguintes perfís: %2$s" - -#: includes/fields/class-acf-field-user.php:542 -msgid "%1$s must have a valid user ID." -msgstr "%1$s debe ter un ID de usuario válido." - -#: includes/fields/class-acf-field-user.php:380 -msgid "Invalid request." -msgstr "Petición non válida." - -#: includes/fields/class-acf-field-select.php:684 -msgid "%1$s is not one of %2$s" -msgstr "%1$s non é ningunha das seguintes %2$s" - -#: includes/fields/class-acf-field-post_object.php:700 -msgid "%1$s must have term %2$s." -msgid_plural "%1$s must have one of the following terms: %2$s" -msgstr[0] "%1$s debe ter un termo %2$s." -msgstr[1] "%1$s debe ter un dos seguintes termos: %2$s" - -#: includes/fields/class-acf-field-post_object.php:684 -msgid "%1$s must be of post type %2$s." -msgid_plural "%1$s must be of one of the following post types: %2$s" -msgstr[0] "%1$s debe ser do tipo de contido %2$s." -msgstr[1] "%1$s debe ser dun dos seguintes tipos de contido: %2$s" - -#: includes/fields/class-acf-field-post_object.php:675 -msgid "%1$s must have a valid post ID." -msgstr "%1$s debe ter un ID de entrada válido." - -#: includes/fields/class-acf-field-file.php:475 -msgid "%s requires a valid attachment ID." -msgstr "%s necesita un ID de adxunto válido." - -#: includes/admin/views/acf-field-group/options.php:233 -msgid "Show in REST API" -msgstr "Amosar na API REST" - -#: includes/fields/class-acf-field-color_picker.php:168 -msgid "Enable Transparency" -msgstr "Activar transparencia" - -#: includes/fields/class-acf-field-color_picker.php:187 -msgid "RGBA Array" -msgstr "Array RGBA" - -#: includes/fields/class-acf-field-color_picker.php:98 -msgid "RGBA String" -msgstr "Cadea RGBA" - -#: includes/fields/class-acf-field-color_picker.php:97 -#: includes/fields/class-acf-field-color_picker.php:186 -msgid "Hex String" -msgstr "Cadea Hex" - -#: includes/admin/views/browse-fields-modal.php:65 -msgid "Upgrade to PRO" -msgstr "Actualizar a PRO" - -#: includes/admin/post-types/admin-field-group.php:297 -#: includes/admin/post-types/admin-post-type.php:295 -#: includes/admin/post-types/admin-taxonomy.php:297 -msgctxt "post status" -msgid "Active" -msgstr "Activo" - -#: includes/fields/class-acf-field-email.php:181 -msgid "'%s' is not a valid email address" -msgstr "«%s» non é un enderezo de correo electrónico válido" - -#: includes/fields/class-acf-field-color_picker.php:76 -msgid "Color value" -msgstr "Valor da cor" - -#: includes/fields/class-acf-field-color_picker.php:74 -msgid "Select default color" -msgstr "Seleccionar cor por defecto" - -#: includes/fields/class-acf-field-color_picker.php:72 -msgid "Clear color" -msgstr "Baleirar cor" - -#: includes/acf-wp-functions.php:90 -msgid "Blocks" -msgstr "Bloques" - -#: includes/acf-wp-functions.php:86 -msgid "Options" -msgstr "Opcións" - -#: includes/acf-wp-functions.php:82 -msgid "Users" -msgstr "Usuarios" - -#: includes/acf-wp-functions.php:78 -msgid "Menu items" -msgstr "Elementos do menú" - -#: includes/acf-wp-functions.php:70 -msgid "Widgets" -msgstr "Widgets" - -#: includes/acf-wp-functions.php:62 -msgid "Attachments" -msgstr "Adxuntos" - -#: includes/acf-wp-functions.php:57 -#: includes/admin/post-types/admin-post-types.php:137 -#: includes/admin/post-types/admin-taxonomies.php:112 -#: includes/admin/tools/class-acf-admin-tool-import.php:93 -#: includes/admin/views/acf-post-type/basic-settings.php:86 -#: includes/post-types/class-acf-taxonomy.php:90 -#: includes/post-types/class-acf-taxonomy.php:91 -msgid "Taxonomies" -msgstr "Taxonomías" - -#: includes/acf-wp-functions.php:44 -#: includes/admin/post-types/admin-post-type.php:126 -#: includes/admin/post-types/admin-post-types.php:139 -#: includes/admin/views/acf-post-type/advanced-settings.php:106 -#: assets/build/js/acf-internal-post-type.js:173 -#: assets/build/js/acf-internal-post-type.js:247 -msgid "Posts" -msgstr "Entradas" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:76 -msgid "Last updated: %s" -msgstr "Última actualización: %s" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:70 -msgid "Sorry, this post is unavailable for diff comparison." -msgstr "Síntoo, esta entrada non está dispoñible para a comparación diff." - -#: includes/ajax/class-acf-ajax-local-json-diff.php:42 -msgid "Invalid field group parameter(s)." -msgstr "Parámetro do grupo de campos non válido." - -#: includes/admin/admin-internal-post-type-list.php:413 -msgid "Awaiting save" -msgstr "Pendente de gardar" - -#: includes/admin/admin-internal-post-type-list.php:410 -msgid "Saved" -msgstr "Gardado" - -#: includes/admin/admin-internal-post-type-list.php:406 -#: includes/admin/tools/class-acf-admin-tool-import.php:49 -msgid "Import" -msgstr "Importar" - -#: includes/admin/admin-internal-post-type-list.php:402 -msgid "Review changes" -msgstr "Revisar cambios" - -#: includes/admin/admin-internal-post-type-list.php:378 -msgid "Located in: %s" -msgstr "Localizado en: %s" - -#: includes/admin/admin-internal-post-type-list.php:375 -msgid "Located in plugin: %s" -msgstr "Localizado no plugin: %s" - -#: includes/admin/admin-internal-post-type-list.php:372 -msgid "Located in theme: %s" -msgstr "Localizado no tema: %s" - -#: includes/admin/post-types/admin-field-groups.php:261 -msgid "Various" -msgstr "Varios" - -#: includes/admin/admin-internal-post-type-list.php:216 -#: includes/admin/admin-internal-post-type-list.php:485 -msgid "Sync changes" -msgstr "Sincronizar cambios" - -#: includes/admin/admin-internal-post-type-list.php:215 -msgid "Loading diff" -msgstr "Cargando diff" - -#: includes/admin/admin-internal-post-type-list.php:214 -msgid "Review local JSON changes" -msgstr "Revisar cambios do JSON local" - -#: includes/admin/admin.php:170 -msgid "Visit website" -msgstr "Visitar a web" - -#: includes/admin/admin.php:169 -msgid "View details" -msgstr "Ver detalles" - -#: includes/admin/admin.php:168 -msgid "Version %s" -msgstr "Versión %s" - -#: includes/admin/admin.php:167 -msgid "Information" -msgstr "Información" - -#: includes/admin/admin.php:158 -msgid "" -"Help Desk. The support professionals on " -"our Help Desk will assist with your more in depth, technical challenges." -msgstr "" -"Centro de axuda. Os profesionais de " -"soporte do noso xentro de xxuda axudaranche cos problemas máis técnicos." - -#: includes/admin/admin.php:154 -msgid "" -"Discussions. We have an active and " -"friendly community on our Community Forums who may be able to help you " -"figure out the 'how-tos' of the ACF world." -msgstr "" -"Debates. Temos unha comunidade activa e " -"amistosa nos nosos foros da comunidade, que pode axudarche a descubrir como " -"facer todo no mundo de ACF." - -#: includes/admin/admin.php:150 -msgid "" -"Documentation. Our extensive " -"documentation contains references and guides for most situations you may " -"encounter." -msgstr "" -"Documentación. A nosa extensa " -"documentación contén referencias e guías para a maioría das situacións nas " -"que te podes atopar." - -#: includes/admin/admin.php:147 -msgid "" -"We are fanatical about support, and want you to get the best out of your " -"website with ACF. If you run into any difficulties, there are several places " -"you can find help:" -msgstr "" -"Nós somos moi fans do soporte, e ti queres tirarlle o máximo partido á túa " -"web con ACF. Se tes algunha dificultade, hai varios sitios onde atopar axuda:" - -#: includes/admin/admin.php:144 includes/admin/admin.php:146 -msgid "Help & Support" -msgstr "Axuda e Soporte" - -#: includes/admin/admin.php:135 -msgid "" -"Please use the Help & Support tab to get in touch should you find yourself " -"requiring assistance." -msgstr "" -"Por favor, usa a pestana de Axuda e Soporte para poñerte en contacto se ves " -"que precisas axuda." - -#: includes/admin/admin.php:132 -msgid "" -"Before creating your first Field Group, we recommend first reading our Getting started guide to familiarize " -"yourself with the plugin's philosophy and best practises." -msgstr "" -"Antes de crear o teu primeiro Grupo de Campos, recomendámosche que primeiro " -"leas a nosa guía de Primeiros pasos " -"para familiarizarte coa filosofía do plugin e as mellores prácticas." - -#: includes/admin/admin.php:130 -msgid "" -"The Advanced Custom Fields plugin provides a visual form builder to " -"customize WordPress edit screens with extra fields, and an intuitive API to " -"display custom field values in any theme template file." -msgstr "" -"O plugin Advanced Custom Fields ofrece un maquetador visual co que " -"personalizar as pantallas de edición de WordPress con campos extra, e unha " -"API intuitiva coa que mostrar os valores deses campos en calquera ficheiro " -"modelo do tema. " - -#: includes/admin/admin.php:127 includes/admin/admin.php:129 -msgid "Overview" -msgstr "Resumo" - -#: includes/locations.php:36 -msgid "Location type \"%s\" is already registered." -msgstr "O tipo de ubicación \"%s\" xa está rexistrado." - -#: includes/locations.php:25 -msgid "Class \"%s\" does not exist." -msgstr "A clase «%s» non existe." - -#: includes/ajax/class-acf-ajax.php:157 -msgid "Invalid nonce." -msgstr "Nonce non válido." - -#: includes/fields/class-acf-field-user.php:375 -msgid "Error loading field." -msgstr "Erro ao cargar o campo." - -#: assets/build/js/acf-input.js:2750 assets/build/js/acf-input.js:2819 -#: assets/build/js/acf-input.js:2926 assets/build/js/acf-input.js:3000 -msgid "Location not found: %s" -msgstr "Ubicación non encontrada: %s" - -#: includes/forms/form-user.php:353 -msgid "Error: %s" -msgstr "Erro: %s" - -#: includes/locations/class-acf-location-widget.php:22 -msgid "Widget" -msgstr "Widget" - -#: includes/locations/class-acf-location-user-role.php:24 -msgid "User Role" -msgstr "Perfil do usuario" - -#: includes/locations/class-acf-location-comment.php:22 -msgid "Comment" -msgstr "Comentario" - -#: includes/locations/class-acf-location-post-format.php:22 -msgid "Post Format" -msgstr "Formato de entrada" - -#: includes/locations/class-acf-location-nav-menu-item.php:22 -msgid "Menu Item" -msgstr "Elemento do menú" - -#: includes/locations/class-acf-location-post-status.php:22 -msgid "Post Status" -msgstr "Estado de entrada" - -#: includes/acf-wp-functions.php:74 -#: includes/locations/class-acf-location-nav-menu.php:89 -msgid "Menus" -msgstr "Menús" - -#: includes/locations/class-acf-location-nav-menu.php:80 -msgid "Menu Locations" -msgstr "Ubicacións de menú" - -#: includes/locations/class-acf-location-nav-menu.php:22 -msgid "Menu" -msgstr "Menú" - -#: includes/locations/class-acf-location-post-taxonomy.php:22 -msgid "Post Taxonomy" -msgstr "Taxonomía da entrada" - -#: includes/locations/class-acf-location-page-type.php:114 -msgid "Child Page (has parent)" -msgstr "Páxina filla (ten pai)" - -#: includes/locations/class-acf-location-page-type.php:113 -msgid "Parent Page (has children)" -msgstr "Páxina superior (con fillos)" - -#: includes/locations/class-acf-location-page-type.php:112 -msgid "Top Level Page (no parent)" -msgstr "Páxina de nivel superior (sen pais)" - -#: includes/locations/class-acf-location-page-type.php:111 -msgid "Posts Page" -msgstr "Páxina de entradas" - -#: includes/locations/class-acf-location-page-type.php:110 -msgid "Front Page" -msgstr "Páxina de inicio" - -#: includes/locations/class-acf-location-page-type.php:22 -msgid "Page Type" -msgstr "Tipo de páxina" - -#: includes/locations/class-acf-location-current-user.php:73 -msgid "Viewing back end" -msgstr "Vendo a parte traseira" - -#: includes/locations/class-acf-location-current-user.php:72 -msgid "Viewing front end" -msgstr "Vendo a web" - -#: includes/locations/class-acf-location-current-user.php:71 -msgid "Logged in" -msgstr "Conectado" - -#: includes/locations/class-acf-location-current-user.php:22 -msgid "Current User" -msgstr "Usuario actual" - -#: includes/locations/class-acf-location-page-template.php:22 -msgid "Page Template" -msgstr "Modelo de páxina" - -#: includes/locations/class-acf-location-user-form.php:74 -msgid "Register" -msgstr "Rexistro" - -#: includes/locations/class-acf-location-user-form.php:73 -msgid "Add / Edit" -msgstr "Engadir / Editar" - -#: includes/locations/class-acf-location-user-form.php:22 -msgid "User Form" -msgstr "Formulario de usuario" - -#: includes/locations/class-acf-location-page-parent.php:22 -msgid "Page Parent" -msgstr "Páxina pai" - -#: includes/locations/class-acf-location-current-user-role.php:77 -msgid "Super Admin" -msgstr "Super administrador" - -#: includes/locations/class-acf-location-current-user-role.php:22 -msgid "Current User Role" -msgstr "Rol do usuario actual" - -#: includes/locations/class-acf-location-page-template.php:73 -#: includes/locations/class-acf-location-post-template.php:85 -msgid "Default Template" -msgstr "Modelo predeterminado" - -#: includes/locations/class-acf-location-post-template.php:22 -msgid "Post Template" -msgstr "Modelo de entrada" - -#: includes/locations/class-acf-location-post-category.php:22 -msgid "Post Category" -msgstr "Categoría de entrada" - -#: includes/locations/class-acf-location-attachment.php:84 -msgid "All %s formats" -msgstr "Todo os formatos de %s" - -#: includes/locations/class-acf-location-attachment.php:22 -msgid "Attachment" -msgstr "Adxunto" - -#: includes/validation.php:366 -msgid "%s value is required" -msgstr "O valor de %s é obligatorio" - -#: includes/admin/views/acf-field-group/conditional-logic.php:59 -msgid "Show this field if" -msgstr "Amosar este campo se" - -#: includes/admin/views/acf-field-group/conditional-logic.php:26 -#: includes/admin/views/acf-field-group/field.php:109 includes/fields.php:411 -msgid "Conditional Logic" -msgstr "Lóxica condicional" - -#: includes/admin/views/acf-field-group/conditional-logic.php:156 -#: includes/admin/views/acf-field-group/location-rule.php:92 -msgid "and" -msgstr "e" - -#: includes/admin/post-types/admin-field-groups.php:123 -#: includes/admin/post-types/admin-post-types.php:143 -#: includes/admin/post-types/admin-taxonomies.php:143 -msgid "Local JSON" -msgstr "JSON local" - -#: includes/admin/views/acf-field-group/pro-features.php:46 -msgid "Clone Field" -msgstr "Campo clonar" - -#: includes/admin/views/upgrade/notice.php:30 -msgid "" -"Please also check all premium add-ons (%s) are updated to the latest version." -msgstr "" -"Por favor, comproba tamén que todas as extensións premium (%s) estean " -"actualizadas á última versión." - -#: includes/admin/views/upgrade/notice.php:28 -msgid "" -"This version contains improvements to your database and requires an upgrade." -msgstr "" -"Esta versión contén melloras na súa base de datos e require unha " -"actualización." - -#: includes/admin/views/upgrade/notice.php:28 -msgid "Thank you for updating to %1$s v%2$s!" -msgstr "Grazas por actualizar a %1$s v%2$s!" - -#: includes/admin/views/upgrade/notice.php:27 -msgid "Database Upgrade Required" -msgstr "É preciso actualizar a base de datos" - -#: includes/admin/post-types/admin-field-group.php:141 -#: includes/admin/views/upgrade/notice.php:18 -msgid "Options Page" -msgstr "Páxina de opcións" - -#: includes/admin/views/upgrade/notice.php:15 includes/fields.php:462 -msgid "Gallery" -msgstr "Galería" - -#: includes/admin/views/upgrade/notice.php:12 includes/fields.php:452 -msgid "Flexible Content" -msgstr "Contido flexible" - -#: includes/admin/views/upgrade/notice.php:9 includes/fields.php:472 -msgid "Repeater" -msgstr "Repetidor" - -#: includes/admin/views/tools/tools.php:24 -msgid "Back to all tools" -msgstr "Volver a todas as ferramentas" - -#: includes/admin/views/acf-field-group/options.php:195 -msgid "" -"If multiple field groups appear on an edit screen, the first field group's " -"options will be used (the one with the lowest order number)" -msgstr "" -"Se aparecen múltiples grupos de campos nunha pantalla de edición, " -"utilizaranse as opcións do primeiro grupo (o que teña o número de orde menor)" - -#: includes/admin/views/acf-field-group/options.php:195 -msgid "Select items to hide them from the edit screen." -msgstr "" -"Selecciona os elementos que ocultar da pantalla de edición." - -#: includes/admin/views/acf-field-group/options.php:194 -msgid "Hide on screen" -msgstr "Ocultar en pantalla" - -#: includes/admin/views/acf-field-group/options.php:186 -msgid "Send Trackbacks" -msgstr "Enviar trackbacks" - -#: includes/admin/post-types/admin-taxonomy.php:128 -#: includes/admin/views/acf-field-group/options.php:185 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:159 -#: assets/build/js/acf-internal-post-type.js:180 -#: assets/build/js/acf-internal-post-type.js:254 -msgid "Tags" -msgstr "Etiquetas" - -#: includes/admin/post-types/admin-taxonomy.php:130 -#: includes/admin/views/acf-field-group/options.php:184 -#: assets/build/js/acf-internal-post-type.js:183 -#: assets/build/js/acf-internal-post-type.js:257 -msgid "Categories" -msgstr "Categorías" - -#: includes/admin/views/acf-field-group/options.php:182 -#: includes/admin/views/acf-post-type/advanced-settings.php:28 -msgid "Page Attributes" -msgstr "Atributos da páxina" - -#: includes/admin/views/acf-field-group/options.php:181 -msgid "Format" -msgstr "Formato" - -#: includes/admin/views/acf-field-group/options.php:180 -#: includes/admin/views/acf-post-type/advanced-settings.php:22 -msgid "Author" -msgstr "Autor" - -#: includes/admin/views/acf-field-group/options.php:179 -msgid "Slug" -msgstr "Slug" - -#: includes/admin/views/acf-field-group/options.php:178 -#: includes/admin/views/acf-post-type/advanced-settings.php:27 -msgid "Revisions" -msgstr "Revisións" - -#: includes/acf-wp-functions.php:66 -#: includes/admin/views/acf-field-group/options.php:177 -#: includes/admin/views/acf-post-type/advanced-settings.php:23 -msgid "Comments" -msgstr "Comentarios" - -#: includes/admin/views/acf-field-group/options.php:176 -msgid "Discussion" -msgstr "Discusión" - -#: includes/admin/views/acf-field-group/options.php:174 -#: includes/admin/views/acf-post-type/advanced-settings.php:26 -msgid "Excerpt" -msgstr "Extracto" - -#: includes/admin/views/acf-field-group/options.php:173 -msgid "Content Editor" -msgstr "Editor de contido" - -#: includes/admin/views/acf-field-group/options.php:172 -msgid "Permalink" -msgstr "Enlace permanente" - -#: includes/admin/views/acf-field-group/options.php:250 -msgid "Shown in field group list" -msgstr "Mostrado en lista de grupos de campos" - -#: includes/admin/views/acf-field-group/options.php:157 -msgid "Field groups with a lower order will appear first" -msgstr "Os grupos de campos con menor orde aparecerán primeiro" - -#: includes/admin/views/acf-field-group/options.php:156 -msgid "Order No." -msgstr "Número de orde" - -#: includes/admin/views/acf-field-group/options.php:147 -msgid "Below fields" -msgstr "Debaixo dos campos" - -#: includes/admin/views/acf-field-group/options.php:146 -msgid "Below labels" -msgstr "Debaixo das etiquetas" - -#: includes/admin/views/acf-field-group/options.php:139 -msgid "Instruction Placement" -msgstr "Localización da instrución" - -#: includes/admin/views/acf-field-group/options.php:122 -msgid "Label Placement" -msgstr "Localización da etiqueta" - -#: includes/admin/views/acf-field-group/options.php:110 -msgid "Side" -msgstr "Lateral" - -#: includes/admin/views/acf-field-group/options.php:109 -msgid "Normal (after content)" -msgstr "Normal (despois do contido)" - -#: includes/admin/views/acf-field-group/options.php:108 -msgid "High (after title)" -msgstr "Alta (despois do título)" - -#: includes/admin/views/acf-field-group/options.php:101 -msgid "Position" -msgstr "Posición" - -#: includes/admin/views/acf-field-group/options.php:92 -msgid "Seamless (no metabox)" -msgstr "Directo (sen caixa meta)" - -#: includes/admin/views/acf-field-group/options.php:91 -msgid "Standard (WP metabox)" -msgstr "Estándar (caixa meta de WP)" - -#: includes/admin/views/acf-field-group/options.php:84 -msgid "Style" -msgstr "Estilo" - -#: includes/admin/views/acf-field-group/fields.php:55 -msgid "Type" -msgstr "Tipo" - -#: includes/admin/post-types/admin-field-groups.php:117 -#: includes/admin/post-types/admin-post-types.php:136 -#: includes/admin/post-types/admin-taxonomies.php:136 -#: includes/admin/views/acf-field-group/fields.php:54 -msgid "Key" -msgstr "Clave" - -#. translators: Hidden accessibility text for the positional order number of -#. the field. -#: includes/admin/views/acf-field-group/fields.php:48 -msgid "Order" -msgstr "Orde" - -#: includes/admin/views/acf-field-group/field.php:322 -msgid "Close Field" -msgstr "Cerrar campo" - -#: includes/admin/views/acf-field-group/field.php:253 -msgid "id" -msgstr "id" - -#: includes/admin/views/acf-field-group/field.php:237 -msgid "class" -msgstr "class" - -#: includes/admin/views/acf-field-group/field.php:279 -msgid "width" -msgstr "ancho" - -#: includes/admin/views/acf-field-group/field.php:273 -msgid "Wrapper Attributes" -msgstr "Atributos do contedor" - -#: includes/admin/views/acf-field-group/field.php:196 -msgid "Required" -msgstr "Obrigatorio" - -#: includes/admin/views/acf-field-group/field.php:221 -msgid "Instructions for authors. Shown when submitting data" -msgstr "Instrucións para os autores. Móstrase á hora de enviar os datos" - -#: includes/admin/views/acf-field-group/field.php:220 -msgid "Instructions" -msgstr "Instrucións" - -#: includes/admin/views/acf-field-group/field.php:129 -msgid "Field Type" -msgstr "Tipo de campo" - -#: includes/admin/views/acf-field-group/field.php:170 -msgid "Single word, no spaces. Underscores and dashes allowed" -msgstr "Unha soa palabra, sen espazos. Permítense guións e guións bajos" - -#: includes/admin/views/acf-field-group/field.php:169 -msgid "Field Name" -msgstr "Nome do campo" - -#: includes/admin/views/acf-field-group/field.php:157 -msgid "This is the name which will appear on the EDIT page" -msgstr "Este é o nome que aparecerá na páxina EDITAR" - -#: includes/admin/views/acf-field-group/field.php:156 -#: includes/admin/views/browse-fields-modal.php:59 -msgid "Field Label" -msgstr "Etiqueta do campo" - -#: includes/admin/views/acf-field-group/field.php:81 -msgid "Delete" -msgstr "Borrar" - -#: includes/admin/views/acf-field-group/field.php:81 -msgid "Delete field" -msgstr "Borrar campo" - -#: includes/admin/views/acf-field-group/field.php:79 -msgid "Move" -msgstr "Mover" - -#: includes/admin/views/acf-field-group/field.php:79 -msgid "Move field to another group" -msgstr "Mover campo a outro grupo" - -#: includes/admin/views/acf-field-group/field.php:77 -msgid "Duplicate field" -msgstr "Duplicar campo" - -#: includes/admin/views/acf-field-group/field.php:73 -#: includes/admin/views/acf-field-group/field.php:76 -msgid "Edit field" -msgstr "Editar campo" - -#: includes/admin/views/acf-field-group/field.php:69 -msgid "Drag to reorder" -msgstr "Arrastra para reordenar" - -#: includes/admin/post-types/admin-field-group.php:103 -#: includes/admin/views/acf-field-group/location-group.php:3 -#: assets/build/js/acf-field-group.js:2347 -#: assets/build/js/acf-field-group.js:2763 -msgid "Show this field group if" -msgstr "Amosar este grupo de campos se" - -#: includes/admin/views/upgrade/upgrade.php:94 -#: includes/ajax/class-acf-ajax-upgrade.php:34 -msgid "No updates available." -msgstr "Non hai actualizacións dispoñibles." - -#: includes/admin/views/upgrade/upgrade.php:33 -msgid "Database upgrade complete. See what's new" -msgstr "" -"Actualización da base de datos completa. Ver as novidades" - -#: includes/admin/views/upgrade/upgrade.php:30 -msgid "Reading upgrade tasks..." -msgstr "Lendo tarefas de actualización..." - -#: includes/admin/views/upgrade/network.php:165 -#: includes/admin/views/upgrade/upgrade.php:65 -msgid "Upgrade failed." -msgstr "A actualización fallou." - -#: includes/admin/views/upgrade/network.php:162 -msgid "Upgrade complete." -msgstr "Actualización completa" - -#: includes/admin/views/upgrade/network.php:148 -#: includes/admin/views/upgrade/upgrade.php:31 -msgid "Upgrading data to version %s" -msgstr "Actualizando datos á versión %s" - -#: includes/admin/views/upgrade/network.php:121 -#: includes/admin/views/upgrade/notice.php:44 -msgid "" -"It is strongly recommended that you backup your database before proceeding. " -"Are you sure you wish to run the updater now?" -msgstr "" -"É moi recomendable que fagas unha copia de seguridade da túa base de datos " -"antes de continuar. Estás seguro que queres executar xa a actualización?" - -#: includes/admin/views/upgrade/network.php:117 -msgid "Please select at least one site to upgrade." -msgstr "Por favor, selecciona polo menos un sitio para actualizalo." - -#: includes/admin/views/upgrade/network.php:97 -msgid "" -"Database Upgrade complete. Return to network dashboard" -msgstr "" -"Actualización da base de datos completa. Volver ao escritorio " -"de rede" - -#: includes/admin/views/upgrade/network.php:80 -msgid "Site is up to date" -msgstr "O sitio está actualizado" - -#: includes/admin/views/upgrade/network.php:78 -msgid "Site requires database upgrade from %1$s to %2$s" -msgstr "O sitio necesita actualizar a base de datos de %1$s a %2$s" - -#: includes/admin/views/upgrade/network.php:36 -#: includes/admin/views/upgrade/network.php:47 -msgid "Site" -msgstr "Sitio" - -#: includes/admin/views/upgrade/network.php:26 -#: includes/admin/views/upgrade/network.php:27 -#: includes/admin/views/upgrade/network.php:96 -msgid "Upgrade Sites" -msgstr "Actualizar os sitios" - -#: includes/admin/views/upgrade/network.php:26 -msgid "" -"The following sites require a DB upgrade. Check the ones you want to update " -"and then click %s." -msgstr "" -"É preciso actualizar a base de datos dos seguintes sitios. Marca os que " -"queiras actualizar e fai clic en %s." - -#: includes/admin/views/acf-field-group/conditional-logic.php:171 -#: includes/admin/views/acf-field-group/locations.php:38 -msgid "Add rule group" -msgstr "Engadir grupo de regras" - -#: includes/admin/views/acf-field-group/locations.php:10 -msgid "" -"Create a set of rules to determine which edit screens will use these " -"advanced custom fields" -msgstr "" -"Crea un conxunto de regras para determinar que pantallas de edición " -"utilizarán estes campos personalizados" - -#: includes/admin/views/acf-field-group/locations.php:9 -msgid "Rules" -msgstr "Regras" - -#: includes/admin/tools/class-acf-admin-tool-export.php:510 -msgid "Copied" -msgstr "Copiado" - -#: includes/admin/tools/class-acf-admin-tool-export.php:486 -msgid "Copy to clipboard" -msgstr "Copiar ao portapapeis" - -#: includes/admin/tools/class-acf-admin-tool-export.php:385 -msgid "" -"Select the items you would like to export and then select your export " -"method. Export As JSON to export to a .json file which you can then import " -"to another ACF installation. Generate PHP to export to PHP code which you " -"can place in your theme." -msgstr "" -"Selecciona os elementos que che gustaría exportar e logo elixe o teu método " -"de exportación. Exporta como JSON para exportar a un arquivo .json que podes " -"logo importar noutra instalación de ACF. Xera PHP para exportar a código PHP " -"que podes incluír no teu tema." - -#: includes/admin/tools/class-acf-admin-tool-export.php:233 -msgid "Select Field Groups" -msgstr "Selecciona grupos de campos" - -#: includes/admin/tools/class-acf-admin-tool-export.php:96 -#: includes/admin/tools/class-acf-admin-tool-export.php:131 -msgid "No field groups selected" -msgstr "Ningún grupo de campos seleccionado" - -#: includes/admin/tools/class-acf-admin-tool-export.php:39 -#: includes/admin/tools/class-acf-admin-tool-export.php:393 -#: includes/admin/tools/class-acf-admin-tool-export.php:421 -msgid "Generate PHP" -msgstr "Xerar PHP" - -#: includes/admin/tools/class-acf-admin-tool-export.php:35 -msgid "Export Field Groups" -msgstr "Exportar grupos de campos" - -#: includes/admin/tools/class-acf-admin-tool-import.php:177 -msgid "Import file empty" -msgstr "Arquivo de imporación baleiro" - -#: includes/admin/tools/class-acf-admin-tool-import.php:168 -msgid "Incorrect file type" -msgstr "Tipo de campo incorrecto" - -#: includes/admin/tools/class-acf-admin-tool-import.php:163 -msgid "Error uploading file. Please try again" -msgstr "Erro ao subir o arquivo. Por favor, inténtao de novo" - -#: includes/admin/tools/class-acf-admin-tool-import.php:50 -msgid "" -"Select the Advanced Custom Fields JSON file you would like to import. When " -"you click the import button below, ACF will import the items in that file." -msgstr "" -"Selecciona o arquivo JSON de Advanced Custom Fields que che gustaría " -"importar. Cando fagas clic no botón importar de abaixo, ACF importará os " -"elementos nese arquivo." - -#: includes/admin/tools/class-acf-admin-tool-import.php:27 -msgid "Import Field Groups" -msgstr "Importar grupo de campos" - -#: includes/admin/admin-internal-post-type-list.php:401 -msgid "Sync" -msgstr "Sincronizar" - -#: includes/admin/admin-internal-post-type-list.php:858 -msgid "Select %s" -msgstr "Selecciona %s" - -#: includes/admin/admin-internal-post-type-list.php:442 -#: includes/admin/admin-internal-post-type-list.php:474 -#: includes/admin/views/acf-field-group/field.php:77 -msgid "Duplicate" -msgstr "Duplicar" - -#: includes/admin/admin-internal-post-type-list.php:442 -msgid "Duplicate this item" -msgstr "Duplicar este elemento" - -#: includes/admin/views/acf-post-type/advanced-settings.php:41 -msgid "Supports" -msgstr "Soporta" - -#: includes/admin/admin.php:261 includes/admin/views/browse-fields-modal.php:92 -msgid "Documentation" -msgstr "Documentación" - -#: includes/admin/post-types/admin-field-groups.php:116 -#: includes/admin/post-types/admin-post-types.php:135 -#: includes/admin/post-types/admin-taxonomies.php:135 -#: includes/admin/views/acf-field-group/options.php:249 -#: includes/admin/views/acf-post-type/advanced-settings.php:62 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:114 -#: includes/admin/views/upgrade/network.php:38 -#: includes/admin/views/upgrade/network.php:49 -msgid "Description" -msgstr "Descrición" - -#: includes/admin/admin-internal-post-type-list.php:398 -#: includes/admin/admin-internal-post-type-list.php:747 -msgid "Sync available" -msgstr "Sincronización dispoñible" - -#. translators: %s number of field groups synchronized -#: includes/admin/post-types/admin-field-groups.php:381 -msgid "Field group synchronized." -msgid_plural "%s field groups synchronized." -msgstr[0] "Grupo de campos sincronizado." -msgstr[1] "%s grupos de campos sincronizados." - -#. translators: %s number of field groups duplicated -#: includes/admin/post-types/admin-field-groups.php:374 -msgid "Field group duplicated." -msgid_plural "%s field groups duplicated." -msgstr[0] "Grupo de campos duplicado." -msgstr[1] "%s grupos de campos duplicados." - -#: includes/admin/admin-internal-post-type-list.php:137 -msgid "Active (%s)" -msgid_plural "Active (%s)" -msgstr[0] "Activo (%s)" -msgstr[1] "Activos (%s)" - -#: includes/admin/admin-upgrade.php:254 -msgid "Review sites & upgrade" -msgstr "Revisar sitios e actualizar" - -#: includes/admin/admin-upgrade.php:59 includes/admin/admin-upgrade.php:93 -#: includes/admin/admin-upgrade.php:94 includes/admin/admin-upgrade.php:230 -#: includes/admin/views/upgrade/network.php:24 -#: includes/admin/views/upgrade/upgrade.php:26 -msgid "Upgrade Database" -msgstr "Actualizar base de datos" - -#: includes/admin/views/acf-field-group/options.php:175 -#: includes/admin/views/acf-post-type/advanced-settings.php:30 -msgid "Custom Fields" -msgstr "Campos personalizados" - -#: includes/admin/post-types/admin-field-group.php:616 -msgid "Move Field" -msgstr "Mover campo" - -#: includes/admin/post-types/admin-field-group.php:605 -#: includes/admin/post-types/admin-field-group.php:609 -msgid "Please select the destination for this field" -msgstr "Por favor, selecciona o destino para este campo" - -#. translators: Confirmation message once a field has been moved to a different -#. field group. -#: includes/admin/post-types/admin-field-group.php:567 -msgid "The %1$s field can now be found in the %2$s field group" -msgstr "O campo %1$s agora pódese atopar no grupo de campos %2$s" - -#: includes/admin/post-types/admin-field-group.php:564 -msgid "Move Complete." -msgstr "Movemento completo." - -#: includes/admin/views/acf-field-group/field.php:39 -#: includes/admin/views/acf-field-group/options.php:217 -#: includes/admin/views/acf-post-type/advanced-settings.php:78 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:130 -msgid "Active" -msgstr "Activo" - -#: includes/admin/post-types/admin-field-group.php:266 -msgid "Field Keys" -msgstr "Claves de campo" - -#: includes/admin/post-types/admin-field-group.php:164 -#: includes/admin/tools/class-acf-admin-tool-export.php:342 -msgid "Settings" -msgstr "Axustes" - -#: includes/admin/post-types/admin-field-groups.php:118 -msgid "Location" -msgstr "Localización" - -#: includes/admin/post-types/admin-field-group.php:104 -#: assets/build/js/acf-input.js:983 assets/build/js/acf-input.js:1075 -msgid "Null" -msgstr "Null" - -#: includes/admin/post-types/admin-field-group.php:101 -#: includes/class-acf-internal-post-type.php:730 -#: includes/post-types/class-acf-field-group.php:345 -#: assets/build/js/acf-field-group.js:1510 -#: assets/build/js/acf-field-group.js:1821 -msgid "copy" -msgstr "copiar" - -#: includes/admin/post-types/admin-field-group.php:100 -#: assets/build/js/acf-field-group.js:623 -#: assets/build/js/acf-field-group.js:778 -msgid "(this field)" -msgstr "(este campo)" - -#: includes/admin/post-types/admin-field-group.php:98 -#: assets/build/js/acf-input.js:918 assets/build/js/acf-input.js:943 -#: assets/build/js/acf-input.js:1002 assets/build/js/acf-input.js:1030 -msgid "Checked" -msgstr "Seleccionado" - -#: includes/admin/post-types/admin-field-group.php:94 -#: assets/build/js/acf-field-group.js:1615 -#: assets/build/js/acf-field-group.js:1933 -msgid "Move Custom Field" -msgstr "Mover campo personalizado" - -#: includes/admin/post-types/admin-field-group.php:93 -#: assets/build/js/acf-field-group.js:649 -#: assets/build/js/acf-field-group.js:804 -msgid "No toggle fields available" -msgstr "Non hai campos de conmutación dispoñibles" - -#: includes/admin/post-types/admin-field-group.php:91 -msgid "Field group title is required" -msgstr "O título do grupo de campos é obligatorio" - -#: includes/admin/post-types/admin-field-group.php:90 -#: assets/build/js/acf-field-group.js:1604 -#: assets/build/js/acf-field-group.js:1919 -msgid "This field cannot be moved until its changes have been saved" -msgstr "Este campo pódese mover ata que os seus trocos garden" - -#: includes/admin/post-types/admin-field-group.php:89 -#: assets/build/js/acf-field-group.js:1414 -#: assets/build/js/acf-field-group.js:1716 -msgid "The string \"field_\" may not be used at the start of a field name" -msgstr "A cadea \"field_\" non se debe utilizar ao comezo dun nome de campo" - -#: includes/admin/post-types/admin-field-group.php:71 -msgid "Field group draft updated." -msgstr "Borrador do grupo de campos actualizado." - -#: includes/admin/post-types/admin-field-group.php:70 -msgid "Field group scheduled for." -msgstr "Grupo de campos programado." - -#: includes/admin/post-types/admin-field-group.php:69 -msgid "Field group submitted." -msgstr "Grupo de campos enviado." - -#: includes/admin/post-types/admin-field-group.php:68 -msgid "Field group saved." -msgstr "Grupo de campos gardado." - -#: includes/admin/post-types/admin-field-group.php:67 -msgid "Field group published." -msgstr "Grupo de campos publicado." - -#: includes/admin/post-types/admin-field-group.php:64 -msgid "Field group deleted." -msgstr "Grupo de campos eliminado." - -#: includes/admin/post-types/admin-field-group.php:62 -#: includes/admin/post-types/admin-field-group.php:63 -#: includes/admin/post-types/admin-field-group.php:65 -msgid "Field group updated." -msgstr "Grupo de campos actualizado." - -#: includes/admin/admin-tools.php:118 -#: includes/admin/views/global/navigation.php:246 -#: includes/admin/views/tools/tools.php:21 -msgid "Tools" -msgstr "Ferramentas" - -#: includes/locations/abstract-acf-location.php:106 -msgid "is not equal to" -msgstr "non é igual a" - -#: includes/locations/abstract-acf-location.php:105 -msgid "is equal to" -msgstr "é igual a" - -#: includes/locations.php:102 -msgid "Forms" -msgstr "Formularios" - -#: includes/admin/post-types/admin-post-type.php:127 includes/locations.php:100 -#: includes/locations/class-acf-location-page.php:22 -#: assets/build/js/acf-internal-post-type.js:175 -#: assets/build/js/acf-internal-post-type.js:249 -msgid "Page" -msgstr "Páxina" - -#: includes/admin/post-types/admin-post-type.php:125 includes/locations.php:99 -#: includes/locations/class-acf-location-post.php:22 -#: assets/build/js/acf-internal-post-type.js:172 -#: assets/build/js/acf-internal-post-type.js:246 -msgid "Post" -msgstr "Entrada" - -#: includes/fields.php:354 -msgid "Relational" -msgstr "Relacional" - -#: includes/fields.php:353 -msgid "Choice" -msgstr "Elección" - -#: includes/fields.php:351 -msgid "Basic" -msgstr "Básico" - -#: includes/fields.php:320 -msgid "Unknown" -msgstr "Descoñecido" - -#: includes/fields.php:320 -msgid "Field type does not exist" -msgstr "O tipo de campo non existe" - -#: includes/forms/form-front.php:236 -msgid "Spam Detected" -msgstr "Spam detectado" - -#: includes/forms/form-front.php:107 -msgid "Post updated" -msgstr "Publicación actualizada" - -#: includes/forms/form-front.php:106 -msgid "Update" -msgstr "Actualizar" - -#: includes/forms/form-front.php:57 -msgid "Validate Email" -msgstr "Validar correo electrónico" - -#: includes/fields.php:352 includes/forms/form-front.php:49 -msgid "Content" -msgstr "Contido" - -#: includes/admin/views/acf-post-type/advanced-settings.php:21 -#: includes/forms/form-front.php:40 -msgid "Title" -msgstr "Título" - -#: includes/assets.php:372 includes/forms/form-comment.php:160 -#: assets/build/js/acf-input.js:7382 assets/build/js/acf-input.js:7968 -msgid "Edit field group" -msgstr "Editar grupo de campos" - -#: includes/admin/post-types/admin-field-group.php:117 -#: assets/build/js/acf-input.js:1125 assets/build/js/acf-input.js:1230 -msgid "Selection is less than" -msgstr "A selección é menor que" - -#: includes/admin/post-types/admin-field-group.php:116 -#: assets/build/js/acf-input.js:1106 assets/build/js/acf-input.js:1202 -msgid "Selection is greater than" -msgstr "A selección é maior que" - -#: includes/admin/post-types/admin-field-group.php:115 -#: assets/build/js/acf-input.js:1075 assets/build/js/acf-input.js:1170 -msgid "Value is less than" -msgstr "O valor é menor que" - -#: includes/admin/post-types/admin-field-group.php:114 -#: assets/build/js/acf-input.js:1045 assets/build/js/acf-input.js:1139 -msgid "Value is greater than" -msgstr "O valor é maior que" - -#: includes/admin/post-types/admin-field-group.php:113 -#: assets/build/js/acf-input.js:888 assets/build/js/acf-input.js:960 -msgid "Value contains" -msgstr "O valor contén" - -#: includes/admin/post-types/admin-field-group.php:112 -#: assets/build/js/acf-input.js:862 assets/build/js/acf-input.js:926 -msgid "Value matches pattern" -msgstr "O valor coincide co patrón" - -#: includes/admin/post-types/admin-field-group.php:111 -#: assets/build/js/acf-input.js:840 assets/build/js/acf-input.js:1023 -#: assets/build/js/acf-input.js:903 assets/build/js/acf-input.js:1116 -msgid "Value is not equal to" -msgstr "O valor non é igual a" - -#: includes/admin/post-types/admin-field-group.php:110 -#: assets/build/js/acf-input.js:810 assets/build/js/acf-input.js:964 -#: assets/build/js/acf-input.js:864 assets/build/js/acf-input.js:1053 -msgid "Value is equal to" -msgstr "O valor é igual a" - -#: includes/admin/post-types/admin-field-group.php:109 -#: assets/build/js/acf-input.js:788 assets/build/js/acf-input.js:841 -msgid "Has no value" -msgstr "Nob ten ningún valor" - -#: includes/admin/post-types/admin-field-group.php:108 -#: assets/build/js/acf-input.js:758 assets/build/js/acf-input.js:783 -msgid "Has any value" -msgstr "Ten algún valor" - -#: includes/admin/admin-internal-post-type.php:345 -#: includes/admin/views/browse-fields-modal.php:62 includes/assets.php:353 -#: assets/build/js/acf.js:1564 assets/build/js/acf.js:1658 -msgid "Cancel" -msgstr "Cancelar" - -#: includes/assets.php:349 assets/build/js/acf.js:1738 -#: assets/build/js/acf.js:1855 -msgid "Are you sure?" -msgstr "Estás seguro?" - -#: includes/assets.php:369 assets/build/js/acf-input.js:9442 -#: assets/build/js/acf-input.js:10294 -msgid "%d fields require attention" -msgstr "%d campos requiren atención" - -#: includes/assets.php:368 assets/build/js/acf-input.js:9440 -#: assets/build/js/acf-input.js:10290 -msgid "1 field requires attention" -msgstr "1 campo require atención" - -#: includes/assets.php:367 includes/validation.php:288 -#: includes/validation.php:298 assets/build/js/acf-input.js:9435 -#: assets/build/js/acf-input.js:10285 -msgid "Validation failed" -msgstr "Validación fallida" - -#: includes/assets.php:366 assets/build/js/acf-input.js:9603 -#: assets/build/js/acf-input.js:10473 -msgid "Validation successful" -msgstr "Validación correcta" - -#: includes/media.php:54 assets/build/js/acf-input.js:7210 -#: assets/build/js/acf-input.js:7772 -msgid "Restricted" -msgstr "Restrinxido" - -#: includes/media.php:53 assets/build/js/acf-input.js:7025 -#: assets/build/js/acf-input.js:7536 -msgid "Collapse Details" -msgstr "Contraer detalles" - -#: includes/media.php:52 assets/build/js/acf-input.js:7025 -#: assets/build/js/acf-input.js:7533 -msgid "Expand Details" -msgstr "Ampliar detalles" - -#: includes/admin/views/acf-post-type/advanced-settings.php:465 -#: includes/media.php:51 assets/build/js/acf-input.js:6892 -#: assets/build/js/acf-input.js:7381 -msgid "Uploaded to this post" -msgstr "Subido a esta publicación" - -#: includes/media.php:50 assets/build/js/acf-input.js:6931 -#: assets/build/js/acf-input.js:7420 -msgctxt "verb" -msgid "Update" -msgstr "Actualizar" - -#: includes/media.php:49 -msgctxt "verb" -msgid "Edit" -msgstr "Editar" - -#: includes/assets.php:363 assets/build/js/acf-input.js:9212 -#: assets/build/js/acf-input.js:10056 -msgid "The changes you made will be lost if you navigate away from this page" -msgstr "Os trocos que realizaras perderanse se navegas cara á outra páxina" - -#: includes/api/api-helpers.php:3395 -msgid "File type must be %s." -msgstr "O tipo de arquivo debe ser %s." - -#: includes/admin/post-types/admin-field-group.php:102 -#: includes/admin/views/acf-field-group/conditional-logic.php:59 -#: includes/admin/views/acf-field-group/conditional-logic.php:169 -#: includes/admin/views/acf-field-group/location-group.php:3 -#: includes/admin/views/acf-field-group/locations.php:36 -#: includes/api/api-helpers.php:3391 assets/build/js/acf-field-group.js:771 -#: assets/build/js/acf-field-group.js:2385 -#: assets/build/js/acf-field-group.js:933 -#: assets/build/js/acf-field-group.js:2807 -msgid "or" -msgstr "ou" - -#: includes/api/api-helpers.php:3364 -msgid "File size must not exceed %s." -msgstr "O tamaño de arquivo non debe ser maior de %s." - -#: includes/api/api-helpers.php:3359 -msgid "File size must be at least %s." -msgstr "O tamaño do arquivo debe ser polo menos %s." - -#: includes/api/api-helpers.php:3344 -msgid "Image height must not exceed %dpx." -msgstr "A altura da imaxe non debe exceder %dpx." - -#: includes/api/api-helpers.php:3339 -msgid "Image height must be at least %dpx." -msgstr "A altura da imaxe debe ser polo menos %dpx." - -#: includes/api/api-helpers.php:3325 -msgid "Image width must not exceed %dpx." -msgstr "O ancho da imaxe non debe exceder %dpx." - -#: includes/api/api-helpers.php:3320 -msgid "Image width must be at least %dpx." -msgstr "O ancho da imaxe debe ser polo menos %dpx." - -#: includes/api/api-helpers.php:1561 includes/api/api-term.php:147 -msgid "(no title)" -msgstr "(sen título)" - -#: includes/api/api-helpers.php:853 -msgid "Full Size" -msgstr "Tamaño completo" - -#: includes/api/api-helpers.php:812 -msgid "Large" -msgstr "Grande" - -#: includes/api/api-helpers.php:811 -msgid "Medium" -msgstr "Mediano" - -#: includes/api/api-helpers.php:810 -msgid "Thumbnail" -msgstr "Miniatura" - -#: includes/acf-field-functions.php:854 -#: includes/admin/post-types/admin-field-group.php:99 -#: assets/build/js/acf-field-group.js:1077 -#: assets/build/js/acf-field-group.js:1260 -msgid "(no label)" -msgstr "(sen etiqueta)" - -#: includes/fields/class-acf-field-textarea.php:145 -msgid "Sets the textarea height" -msgstr "Establece a altura da área de texto" - -#: includes/fields/class-acf-field-textarea.php:144 -msgid "Rows" -msgstr "Filas" - -#: includes/fields/class-acf-field-textarea.php:25 -msgid "Text Area" -msgstr "Área de texto" - -#: includes/fields/class-acf-field-checkbox.php:451 -msgid "Prepend an extra checkbox to toggle all choices" -msgstr "" -"Antopoñer un recadro de verificación extra para cambiar todas as opcións" - -#: includes/fields/class-acf-field-checkbox.php:413 -msgid "Save 'custom' values to the field's choices" -msgstr "Garda os valores «personalizados» nas opcións do campo" - -#: includes/fields/class-acf-field-checkbox.php:402 -msgid "Allow 'custom' values to be added" -msgstr "Permite engadir valores personalizados" - -#: includes/fields/class-acf-field-checkbox.php:38 -msgid "Add new choice" -msgstr "Engadir nova opción" - -#: includes/fields/class-acf-field-checkbox.php:174 -msgid "Toggle All" -msgstr "Invertir todos" - -#: includes/fields/class-acf-field-page_link.php:506 -msgid "Allow Archives URLs" -msgstr "Permitir as URLs dos arquivos" - -#: includes/fields/class-acf-field-page_link.php:179 -msgid "Archives" -msgstr "Arquivo" - -#: includes/fields/class-acf-field-page_link.php:25 -msgid "Page Link" -msgstr "Enlace á páxina" - -#: includes/fields/class-acf-field-taxonomy.php:943 -#: includes/locations/class-acf-location-user-form.php:72 -msgid "Add" -msgstr "Engadir" - -#: includes/admin/views/acf-field-group/fields.php:53 -#: includes/fields/class-acf-field-taxonomy.php:908 -msgid "Name" -msgstr "Nome" - -#: includes/fields/class-acf-field-taxonomy.php:892 -msgid "%s added" -msgstr "%s engadido(s)" - -#: includes/fields/class-acf-field-taxonomy.php:856 -msgid "%s already exists" -msgstr "%s xa existe" - -#: includes/fields/class-acf-field-taxonomy.php:844 -msgid "User unable to add new %s" -msgstr "O usuario non pode engadir novos %s" - -#: includes/fields/class-acf-field-taxonomy.php:742 -msgid "Term ID" -msgstr "ID do termo" - -#: includes/fields/class-acf-field-taxonomy.php:741 -msgid "Term Object" -msgstr "Obxecto de termo" - -#: includes/fields/class-acf-field-taxonomy.php:726 -msgid "Load value from posts terms" -msgstr "Cargar o valor dos termos da publicación" - -#: includes/fields/class-acf-field-taxonomy.php:725 -msgid "Load Terms" -msgstr "Cargar termos" - -#: includes/fields/class-acf-field-taxonomy.php:715 -msgid "Connect selected terms to the post" -msgstr "Conectar os termos seleccionados coa publicación" - -#: includes/fields/class-acf-field-taxonomy.php:714 -msgid "Save Terms" -msgstr "Gardar termos" - -#: includes/fields/class-acf-field-taxonomy.php:704 -msgid "Allow new terms to be created whilst editing" -msgstr "Permitir a creación de novos termos mentres se edita" - -#: includes/fields/class-acf-field-taxonomy.php:703 -msgid "Create Terms" -msgstr "Crear termos" - -#: includes/fields/class-acf-field-taxonomy.php:762 -msgid "Radio Buttons" -msgstr "Botóns de opción" - -#: includes/fields/class-acf-field-taxonomy.php:761 -msgid "Single Value" -msgstr "Valor único" - -#: includes/fields/class-acf-field-taxonomy.php:759 -msgid "Multi Select" -msgstr "Selección múltiple" - -#: includes/fields/class-acf-field-checkbox.php:25 -#: includes/fields/class-acf-field-taxonomy.php:758 -msgid "Checkbox" -msgstr "Caixa de verificación" - -#: includes/fields/class-acf-field-taxonomy.php:757 -msgid "Multiple Values" -msgstr "Valores múltiples" - -#: includes/fields/class-acf-field-taxonomy.php:752 -msgid "Select the appearance of this field" -msgstr "Selecciona a aparencia deste campo" - -#: includes/fields/class-acf-field-taxonomy.php:751 -msgid "Appearance" -msgstr "Aparencia" - -#: includes/fields/class-acf-field-taxonomy.php:693 -msgid "Select the taxonomy to be displayed" -msgstr "Selecciona a taxonomía a amosar" - -#: includes/fields/class-acf-field-taxonomy.php:654 -msgctxt "No Terms" -msgid "No %s" -msgstr "Non %s" - -#: includes/fields/class-acf-field-number.php:266 -msgid "Value must be equal to or lower than %d" -msgstr "O valor debe ser menor ou igual a %d" - -#: includes/fields/class-acf-field-number.php:259 -msgid "Value must be equal to or higher than %d" -msgstr "O valor debe ser maior ou igual a %d" - -#: includes/fields/class-acf-field-number.php:244 -msgid "Value must be a number" -msgstr "O valor debe ser un número" - -#: includes/fields/class-acf-field-number.php:25 -msgid "Number" -msgstr "Número" - -#: includes/fields/class-acf-field-radio.php:264 -msgid "Save 'other' values to the field's choices" -msgstr "Gardar os valores de «outros» nas opcións do campo" - -#: includes/fields/class-acf-field-radio.php:253 -msgid "Add 'other' choice to allow for custom values" -msgstr "Engade a opción «outros» para permitir valores personalizados" - -#: includes/admin/views/global/navigation.php:196 -msgid "Other" -msgstr "Outros" - -#: includes/fields/class-acf-field-radio.php:25 -msgid "Radio Button" -msgstr "Botón de opción" - -#: includes/fields/class-acf-field-accordion.php:107 -msgid "" -"Define an endpoint for the previous accordion to stop. This accordion will " -"not be visible." -msgstr "" -"Define un punto final para que o acordeón anterior se deteña. Este acordeón " -"non será visible." - -#: includes/fields/class-acf-field-accordion.php:96 -msgid "Allow this accordion to open without closing others." -msgstr "Permite que este acordeón se abra sen pechar outros." - -#: includes/fields/class-acf-field-accordion.php:95 -msgid "Multi-Expand" -msgstr "Multi-Expandir" - -#: includes/fields/class-acf-field-accordion.php:85 -msgid "Display this accordion as open on page load." -msgstr "Mostrar este acordeón como aberto na carga da páxina." - -#: includes/fields/class-acf-field-accordion.php:84 -msgid "Open" -msgstr "Abrir" - -#: includes/fields/class-acf-field-accordion.php:25 -msgid "Accordion" -msgstr "Acordeón" - -#: includes/fields/class-acf-field-file.php:267 -#: includes/fields/class-acf-field-file.php:279 -msgid "Restrict which files can be uploaded" -msgstr "Restrinxir que arquivos se poden subir" - -#: includes/fields/class-acf-field-file.php:220 -msgid "File ID" -msgstr "ID do arquivo" - -#: includes/fields/class-acf-field-file.php:219 -msgid "File URL" -msgstr "URL do arquivo" - -#: includes/fields/class-acf-field-file.php:218 -msgid "File Array" -msgstr "Array do arquivo" - -#: includes/fields/class-acf-field-file.php:186 -msgid "Add File" -msgstr "Engadir arquivo" - -#: includes/admin/tools/class-acf-admin-tool-import.php:156 -#: includes/fields/class-acf-field-file.php:186 -msgid "No file selected" -msgstr "Ningún arquivo seleccionado" - -#: includes/fields/class-acf-field-file.php:150 -msgid "File name" -msgstr "Nome do arquivo" - -#: includes/fields/class-acf-field-file.php:63 -#: assets/build/js/acf-input.js:2474 assets/build/js/acf-input.js:2625 -msgid "Update File" -msgstr "Actualizar arquivo" - -#: includes/fields/class-acf-field-file.php:62 -#: assets/build/js/acf-input.js:2473 assets/build/js/acf-input.js:2624 -msgid "Edit File" -msgstr "Editar arquivo" - -#: includes/admin/tools/class-acf-admin-tool-import.php:58 -#: includes/fields/class-acf-field-file.php:61 -#: assets/build/js/acf-input.js:2447 assets/build/js/acf-input.js:2597 -msgid "Select File" -msgstr "Seleccionar arquivo" - -#: includes/fields/class-acf-field-file.php:25 -msgid "File" -msgstr "Arquivo" - -#: includes/fields/class-acf-field-password.php:25 -msgid "Password" -msgstr "Contrasinal" - -#: includes/fields/class-acf-field-select.php:392 -msgid "Specify the value returned" -msgstr "Especifica o valor devolto" - -#: includes/fields/class-acf-field-select.php:461 -msgid "Use AJAX to lazy load choices?" -msgstr "Usar AJAX para cargar as opcións de xeito diferido?" - -#: includes/fields/class-acf-field-checkbox.php:362 -#: includes/fields/class-acf-field-select.php:381 -msgid "Enter each default value on a new line" -msgstr "Engade cada valor nunha nova liña" - -#: includes/fields/class-acf-field-select.php:252 includes/media.php:48 -#: assets/build/js/acf-input.js:6790 assets/build/js/acf-input.js:7266 -msgctxt "verb" -msgid "Select" -msgstr "Selecciona" - -#: includes/fields/class-acf-field-select.php:121 -msgctxt "Select2 JS load_fail" -msgid "Loading failed" -msgstr "Erro ao cargar" - -#: includes/fields/class-acf-field-select.php:120 -msgctxt "Select2 JS searching" -msgid "Searching…" -msgstr "Buscando…" - -#: includes/fields/class-acf-field-select.php:119 -msgctxt "Select2 JS load_more" -msgid "Loading more results…" -msgstr "Cargando máis resultados…" - -#: includes/fields/class-acf-field-select.php:118 -msgctxt "Select2 JS selection_too_long_n" -msgid "You can only select %d items" -msgstr "Só podes seleccionar %d elementos" - -#: includes/fields/class-acf-field-select.php:117 -msgctxt "Select2 JS selection_too_long_1" -msgid "You can only select 1 item" -msgstr "Só podes seleccionar 1 elemento" - -#: includes/fields/class-acf-field-select.php:116 -msgctxt "Select2 JS input_too_long_n" -msgid "Please delete %d characters" -msgstr "Por favor, borra %d caracteres" - -#: includes/fields/class-acf-field-select.php:115 -msgctxt "Select2 JS input_too_long_1" -msgid "Please delete 1 character" -msgstr "Por favor, borra 1 carácter" - -#: includes/fields/class-acf-field-select.php:114 -msgctxt "Select2 JS input_too_short_n" -msgid "Please enter %d or more characters" -msgstr "Por favor, insire %d ou máis caracteres" - -#: includes/fields/class-acf-field-select.php:113 -msgctxt "Select2 JS input_too_short_1" -msgid "Please enter 1 or more characters" -msgstr "Por favor, insire 1 ou máis caracteres" - -#: includes/fields/class-acf-field-select.php:112 -msgctxt "Select2 JS matches_0" -msgid "No matches found" -msgstr "Non se encontraron coincidencias" - -#: includes/fields/class-acf-field-select.php:111 -msgctxt "Select2 JS matches_n" -msgid "%d results are available, use up and down arrow keys to navigate." -msgstr "" -"%d resultados dispoñibles, utiliza as frechas arriba e abaixo para navegar " -"polos resultados." - -#: includes/fields/class-acf-field-select.php:110 -msgctxt "Select2 JS matches_1" -msgid "One result is available, press enter to select it." -msgstr "Hai un resultado dispoñible, pulsa enter para seleccionalo." - -#: includes/fields/class-acf-field-select.php:25 -#: includes/fields/class-acf-field-taxonomy.php:763 -msgctxt "noun" -msgid "Select" -msgstr "Selecciona" - -#: includes/fields/class-acf-field-user.php:73 -msgid "User ID" -msgstr "ID do usuario" - -#: includes/fields/class-acf-field-user.php:72 -msgid "User Object" -msgstr "Obxecto de usuario" - -#: includes/fields/class-acf-field-user.php:71 -msgid "User Array" -msgstr "Grupo de usuarios" - -#: includes/fields/class-acf-field-user.php:59 -msgid "All user roles" -msgstr "Todos os roles de usuario" - -#: includes/fields/class-acf-field-user.php:51 -msgid "Filter by Role" -msgstr "Filtrar por perfil" - -#: includes/fields/class-acf-field-user.php:15 includes/locations.php:101 -msgid "User" -msgstr "Usuario" - -#: includes/fields/class-acf-field-separator.php:25 -msgid "Separator" -msgstr "Separador" - -#: includes/fields/class-acf-field-color_picker.php:75 -msgid "Select Color" -msgstr "Seleccionar cor" - -#: includes/admin/post-types/admin-post-type.php:129 -#: includes/admin/post-types/admin-taxonomy.php:131 -#: includes/fields/class-acf-field-color_picker.php:73 -#: assets/build/js/acf-internal-post-type.js:72 -#: assets/build/js/acf-internal-post-type.js:86 -msgid "Default" -msgstr "Por defecto" - -#: includes/admin/views/acf-post-type/advanced-settings.php:89 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:141 -#: includes/fields/class-acf-field-color_picker.php:71 -msgid "Clear" -msgstr "Baleirar" - -#: includes/fields/class-acf-field-color_picker.php:25 -msgid "Color Picker" -msgstr "Selector de cor" - -#: includes/fields/class-acf-field-date_time_picker.php:88 -msgctxt "Date Time Picker JS pmTextShort" -msgid "P" -msgstr "P" - -#: includes/fields/class-acf-field-date_time_picker.php:87 -msgctxt "Date Time Picker JS pmText" -msgid "PM" -msgstr "PM" - -#: includes/fields/class-acf-field-date_time_picker.php:84 -msgctxt "Date Time Picker JS amTextShort" -msgid "A" -msgstr "A" - -#: includes/fields/class-acf-field-date_time_picker.php:83 -msgctxt "Date Time Picker JS amText" -msgid "AM" -msgstr "AM" - -#: includes/fields/class-acf-field-date_time_picker.php:81 -msgctxt "Date Time Picker JS selectText" -msgid "Select" -msgstr "Selecciona" - -#: includes/fields/class-acf-field-date_time_picker.php:80 -msgctxt "Date Time Picker JS closeText" -msgid "Done" -msgstr "Feito" - -#: includes/fields/class-acf-field-date_time_picker.php:79 -msgctxt "Date Time Picker JS currentText" -msgid "Now" -msgstr "Agora" - -#: includes/fields/class-acf-field-date_time_picker.php:78 -msgctxt "Date Time Picker JS timezoneText" -msgid "Time Zone" -msgstr "Zona horaria" - -#: includes/fields/class-acf-field-date_time_picker.php:77 -msgctxt "Date Time Picker JS microsecText" -msgid "Microsecond" -msgstr "Microsegundo" - -#: includes/fields/class-acf-field-date_time_picker.php:76 -msgctxt "Date Time Picker JS millisecText" -msgid "Millisecond" -msgstr "Milisegundo" - -#: includes/fields/class-acf-field-date_time_picker.php:75 -msgctxt "Date Time Picker JS secondText" -msgid "Second" -msgstr "Segundo" - -#: includes/fields/class-acf-field-date_time_picker.php:74 -msgctxt "Date Time Picker JS minuteText" -msgid "Minute" -msgstr "Minuto" - -#: includes/fields/class-acf-field-date_time_picker.php:73 -msgctxt "Date Time Picker JS hourText" -msgid "Hour" -msgstr "Hora" - -#: includes/fields/class-acf-field-date_time_picker.php:72 -msgctxt "Date Time Picker JS timeText" -msgid "Time" -msgstr "Hora" - -#: includes/fields/class-acf-field-date_time_picker.php:71 -msgctxt "Date Time Picker JS timeOnlyTitle" -msgid "Choose Time" -msgstr "Elixir hora" - -#: includes/fields/class-acf-field-date_time_picker.php:25 -msgid "Date Time Picker" -msgstr "Selector de data e hora" - -#: includes/fields/class-acf-field-accordion.php:106 -msgid "Endpoint" -msgstr "Endpoint" - -#: includes/admin/views/acf-field-group/options.php:130 -#: includes/fields/class-acf-field-tab.php:115 -msgid "Left aligned" -msgstr "Aliñada á esquerda" - -#: includes/admin/views/acf-field-group/options.php:129 -#: includes/fields/class-acf-field-tab.php:114 -msgid "Top aligned" -msgstr "Aliñada arriba" - -#: includes/fields/class-acf-field-tab.php:110 -msgid "Placement" -msgstr "Ubicación" - -#: includes/fields/class-acf-field-tab.php:26 -msgid "Tab" -msgstr "Pestana" - -#: includes/fields/class-acf-field-url.php:162 -msgid "Value must be a valid URL" -msgstr "O valor debe ser unha URL válida" - -#: includes/fields/class-acf-field-link.php:177 -msgid "Link URL" -msgstr "URL do enlace" - -#: includes/fields/class-acf-field-link.php:176 -msgid "Link Array" -msgstr "Array de enlaces" - -#: includes/fields/class-acf-field-link.php:145 -msgid "Opens in a new window/tab" -msgstr "Abrir nunha nova ventá/pestana" - -#: includes/fields/class-acf-field-link.php:140 -msgid "Select Link" -msgstr "Elixe o enlace" - -#: includes/fields/class-acf-field-link.php:25 -msgid "Link" -msgstr "Ligazón" - -#: includes/fields/class-acf-field-email.php:25 -msgid "Email" -msgstr "Correo electrónico" - -#: includes/fields/class-acf-field-number.php:188 -#: includes/fields/class-acf-field-range.php:217 -msgid "Step Size" -msgstr "Tamaño de paso" - -#: includes/fields/class-acf-field-number.php:158 -#: includes/fields/class-acf-field-range.php:195 -msgid "Maximum Value" -msgstr "Valor máximo" - -#: includes/fields/class-acf-field-number.php:148 -#: includes/fields/class-acf-field-range.php:184 -msgid "Minimum Value" -msgstr "Valor mínimo" - -#: includes/fields/class-acf-field-range.php:25 -msgid "Range" -msgstr "Rango" - -#: includes/fields/class-acf-field-button-group.php:175 -#: includes/fields/class-acf-field-checkbox.php:379 -#: includes/fields/class-acf-field-radio.php:220 -#: includes/fields/class-acf-field-select.php:399 -msgid "Both (Array)" -msgstr "Ambos (Array)" - -#: includes/admin/views/acf-field-group/fields.php:52 -#: includes/fields/class-acf-field-button-group.php:174 -#: includes/fields/class-acf-field-checkbox.php:378 -#: includes/fields/class-acf-field-radio.php:219 -#: includes/fields/class-acf-field-select.php:398 -msgid "Label" -msgstr "Etiqueta" - -#: includes/fields/class-acf-field-button-group.php:173 -#: includes/fields/class-acf-field-checkbox.php:377 -#: includes/fields/class-acf-field-radio.php:218 -#: includes/fields/class-acf-field-select.php:397 -msgid "Value" -msgstr "Valor" - -#: includes/fields/class-acf-field-button-group.php:222 -#: includes/fields/class-acf-field-checkbox.php:441 -#: includes/fields/class-acf-field-radio.php:292 -msgid "Vertical" -msgstr "Vertical" - -#: includes/fields/class-acf-field-button-group.php:221 -#: includes/fields/class-acf-field-checkbox.php:442 -#: includes/fields/class-acf-field-radio.php:293 -msgid "Horizontal" -msgstr "Horizontal" - -#: includes/fields/class-acf-field-button-group.php:148 -#: includes/fields/class-acf-field-checkbox.php:352 -#: includes/fields/class-acf-field-radio.php:193 -#: includes/fields/class-acf-field-select.php:370 -msgid "red : Red" -msgstr "vermello : Vermello" - -#: includes/fields/class-acf-field-button-group.php:148 -#: includes/fields/class-acf-field-checkbox.php:352 -#: includes/fields/class-acf-field-radio.php:193 -#: includes/fields/class-acf-field-select.php:370 -msgid "For more control, you may specify both a value and label like this:" -msgstr "" -"Para máis control, podes especificar tanto un valor como unha etiqueta, así:" - -#: includes/fields/class-acf-field-button-group.php:148 -#: includes/fields/class-acf-field-checkbox.php:352 -#: includes/fields/class-acf-field-radio.php:193 -#: includes/fields/class-acf-field-select.php:370 -msgid "Enter each choice on a new line." -msgstr "Engade cada opción nunha nova liña." - -#: includes/fields/class-acf-field-button-group.php:147 -#: includes/fields/class-acf-field-checkbox.php:351 -#: includes/fields/class-acf-field-radio.php:192 -#: includes/fields/class-acf-field-select.php:369 -msgid "Choices" -msgstr "Opcións" - -#: includes/fields/class-acf-field-button-group.php:24 -msgid "Button Group" -msgstr "Grupo de botóns" - -#: includes/fields/class-acf-field-button-group.php:194 -#: includes/fields/class-acf-field-page_link.php:538 -#: includes/fields/class-acf-field-post_object.php:448 -#: includes/fields/class-acf-field-radio.php:238 -#: includes/fields/class-acf-field-select.php:429 -#: includes/fields/class-acf-field-taxonomy.php:772 -#: includes/fields/class-acf-field-user.php:103 -msgid "Allow Null" -msgstr "Permitir nulo" - -#: includes/fields/class-acf-field-page_link.php:263 -#: includes/fields/class-acf-field-post_object.php:257 -#: includes/fields/class-acf-field-taxonomy.php:930 -msgid "Parent" -msgstr "Superior" - -#: includes/fields/class-acf-field-wysiwyg.php:390 -msgid "TinyMCE will not be initialized until field is clicked" -msgstr "TinyMCE non se iniciará ata que se faga clic no campo" - -#: includes/fields/class-acf-field-wysiwyg.php:389 -msgid "Delay Initialization" -msgstr "Retrasar o inicio" - -#: includes/fields/class-acf-field-wysiwyg.php:378 -msgid "Show Media Upload Buttons" -msgstr "Amosar botóns de subida de medios" - -#: includes/fields/class-acf-field-wysiwyg.php:362 -msgid "Toolbar" -msgstr "Barra de ferramentas" - -#: includes/fields/class-acf-field-wysiwyg.php:354 -msgid "Text Only" -msgstr "Só texto" - -#: includes/fields/class-acf-field-wysiwyg.php:353 -msgid "Visual Only" -msgstr "Só visual" - -#: includes/fields/class-acf-field-wysiwyg.php:352 -msgid "Visual & Text" -msgstr "Visual e Texto" - -#: includes/fields/class-acf-field-wysiwyg.php:347 -msgid "Tabs" -msgstr "Pestanas" - -#: includes/fields/class-acf-field-wysiwyg.php:285 -msgid "Click to initialize TinyMCE" -msgstr "Fai clic para iniciar TinyMCE" - -#: includes/fields/class-acf-field-wysiwyg.php:279 -msgctxt "Name for the Text editor tab (formerly HTML)" -msgid "Text" -msgstr "Texto" - -#: includes/fields/class-acf-field-wysiwyg.php:278 -msgid "Visual" -msgstr "Visual" - -#: includes/fields/class-acf-field-text.php:189 -#: includes/fields/class-acf-field-textarea.php:236 -msgid "Value must not exceed %d characters" -msgstr "O valor non debe exceder os %d caracteres" - -#: includes/fields/class-acf-field-text.php:124 -#: includes/fields/class-acf-field-textarea.php:124 -msgid "Leave blank for no limit" -msgstr "Déixao en branco para ilimitado" - -#: includes/fields/class-acf-field-text.php:123 -#: includes/fields/class-acf-field-textarea.php:123 -msgid "Character Limit" -msgstr "Límite de caracteres" - -#: includes/fields/class-acf-field-email.php:158 -#: includes/fields/class-acf-field-number.php:209 -#: includes/fields/class-acf-field-password.php:105 -#: includes/fields/class-acf-field-range.php:239 -#: includes/fields/class-acf-field-text.php:164 -msgid "Appears after the input" -msgstr "Aparece despois da entrada" - -#: includes/fields/class-acf-field-email.php:157 -#: includes/fields/class-acf-field-number.php:208 -#: includes/fields/class-acf-field-password.php:104 -#: includes/fields/class-acf-field-range.php:238 -#: includes/fields/class-acf-field-text.php:163 -msgid "Append" -msgstr "Anexar" - -#: includes/fields/class-acf-field-email.php:148 -#: includes/fields/class-acf-field-number.php:199 -#: includes/fields/class-acf-field-password.php:95 -#: includes/fields/class-acf-field-range.php:229 -#: includes/fields/class-acf-field-text.php:154 -msgid "Appears before the input" -msgstr "Aparece antes do campo" - -#: includes/fields/class-acf-field-email.php:147 -#: includes/fields/class-acf-field-number.php:198 -#: includes/fields/class-acf-field-password.php:94 -#: includes/fields/class-acf-field-range.php:228 -#: includes/fields/class-acf-field-text.php:153 -msgid "Prepend" -msgstr "Antepor" - -#: includes/fields/class-acf-field-email.php:138 -#: includes/fields/class-acf-field-number.php:179 -#: includes/fields/class-acf-field-password.php:85 -#: includes/fields/class-acf-field-text.php:144 -#: includes/fields/class-acf-field-textarea.php:156 -#: includes/fields/class-acf-field-url.php:122 -msgid "Appears within the input" -msgstr "Aparece no campo" - -#: includes/fields/class-acf-field-email.php:137 -#: includes/fields/class-acf-field-number.php:178 -#: includes/fields/class-acf-field-password.php:84 -#: includes/fields/class-acf-field-text.php:143 -#: includes/fields/class-acf-field-textarea.php:155 -#: includes/fields/class-acf-field-url.php:121 -msgid "Placeholder Text" -msgstr "Marcador de posición" - -#: includes/fields/class-acf-field-button-group.php:158 -#: includes/fields/class-acf-field-email.php:118 -#: includes/fields/class-acf-field-number.php:129 -#: includes/fields/class-acf-field-radio.php:203 -#: includes/fields/class-acf-field-range.php:165 -#: includes/fields/class-acf-field-text.php:104 -#: includes/fields/class-acf-field-textarea.php:104 -#: includes/fields/class-acf-field-url.php:102 -#: includes/fields/class-acf-field-wysiwyg.php:312 -msgid "Appears when creating a new post" -msgstr "Aparece cando se está creando unha nova entrada" - -#: includes/fields/class-acf-field-text.php:25 -msgid "Text" -msgstr "Texto" - -#: includes/fields/class-acf-field-relationship.php:794 -msgid "%1$s requires at least %2$s selection" -msgid_plural "%1$s requires at least %2$s selections" -msgstr[0] "%1$s necesita polo menos %2$s selección" -msgstr[1] "%1$s necesita polo menos %2$s seleccións" - -#: includes/fields/class-acf-field-post_object.php:417 -#: includes/fields/class-acf-field-relationship.php:644 -msgid "Post ID" -msgstr "ID da publicación" - -#: includes/fields/class-acf-field-post_object.php:17 -#: includes/fields/class-acf-field-post_object.php:416 -#: includes/fields/class-acf-field-relationship.php:643 -msgid "Post Object" -msgstr "Obxecto de publicación" - -#: includes/fields/class-acf-field-relationship.php:676 -msgid "Maximum Posts" -msgstr "Publicacións máximas" - -#: includes/fields/class-acf-field-relationship.php:666 -msgid "Minimum Posts" -msgstr "Publicacións mínimas" - -#: includes/admin/views/acf-field-group/options.php:183 -#: includes/admin/views/acf-post-type/advanced-settings.php:29 -#: includes/fields/class-acf-field-relationship.php:701 -msgid "Featured Image" -msgstr "Imaxe destacada" - -#: includes/fields/class-acf-field-relationship.php:697 -msgid "Selected elements will be displayed in each result" -msgstr "Os elementos seleccionados mostraranse en cada resultado" - -#: includes/fields/class-acf-field-relationship.php:696 -msgid "Elements" -msgstr "Elementos" - -#: includes/fields/class-acf-field-relationship.php:630 -#: includes/fields/class-acf-field-taxonomy.php:20 -#: includes/fields/class-acf-field-taxonomy.php:692 -#: includes/locations/class-acf-location-taxonomy.php:22 -msgid "Taxonomy" -msgstr "Taxonomía" - -#: includes/fields/class-acf-field-relationship.php:629 -#: includes/locations/class-acf-location-post-type.php:22 -#: includes/post-types/class-acf-post-type.php:92 -msgid "Post Type" -msgstr "Tipo de contido" - -#: includes/fields/class-acf-field-relationship.php:623 -msgid "Filters" -msgstr "Filtros" - -#: includes/fields/class-acf-field-page_link.php:499 -#: includes/fields/class-acf-field-post_object.php:404 -#: includes/fields/class-acf-field-relationship.php:616 -msgid "All taxonomies" -msgstr "Todas as taxonomías" - -#: includes/fields/class-acf-field-page_link.php:491 -#: includes/fields/class-acf-field-post_object.php:396 -#: includes/fields/class-acf-field-relationship.php:608 -msgid "Filter by Taxonomy" -msgstr "Filtrar por taxonomía" - -#: includes/fields/class-acf-field-page_link.php:469 -#: includes/fields/class-acf-field-post_object.php:374 -#: includes/fields/class-acf-field-relationship.php:586 -msgid "All post types" -msgstr "Todos os tipos de contido" - -#: includes/fields/class-acf-field-page_link.php:461 -#: includes/fields/class-acf-field-post_object.php:366 -#: includes/fields/class-acf-field-relationship.php:578 -msgid "Filter by Post Type" -msgstr "Filtrar por tipo de contido" - -#: includes/fields/class-acf-field-relationship.php:476 -msgid "Search..." -msgstr "Buscar..." - -#: includes/fields/class-acf-field-relationship.php:406 -msgid "Select taxonomy" -msgstr "Selecciona taxonomía" - -#: includes/fields/class-acf-field-relationship.php:397 -msgid "Select post type" -msgstr "Seleccionar tipo de contido" - -#: includes/fields/class-acf-field-relationship.php:61 -#: assets/build/js/acf-input.js:3930 assets/build/js/acf-input.js:4214 -msgid "No matches found" -msgstr "Non se encontraron coincidencias" - -#: includes/fields/class-acf-field-relationship.php:60 -#: assets/build/js/acf-input.js:3913 assets/build/js/acf-input.js:4193 -msgid "Loading" -msgstr "Cargando" - -#: includes/fields/class-acf-field-relationship.php:59 -#: assets/build/js/acf-input.js:3818 assets/build/js/acf-input.js:4084 -msgid "Maximum values reached ( {max} values )" -msgstr "Valores máximos alcanzados ( {max} valores )" - -#: includes/fields/class-acf-field-relationship.php:17 -msgid "Relationship" -msgstr "Relación" - -#: includes/fields/class-acf-field-file.php:291 -#: includes/fields/class-acf-field-image.php:317 -msgid "Comma separated list. Leave blank for all types" -msgstr "Lista separada por comas. Déixao en branco para todos os tipos" - -#: includes/fields/class-acf-field-file.php:290 -#: includes/fields/class-acf-field-image.php:316 -msgid "Allowed File Types" -msgstr "Tipos de arquivos permitidos" - -#: includes/fields/class-acf-field-file.php:278 -#: includes/fields/class-acf-field-image.php:280 -msgid "Maximum" -msgstr "Máximo" - -#: includes/fields/class-acf-field-file.php:154 -#: includes/fields/class-acf-field-file.php:270 -#: includes/fields/class-acf-field-file.php:282 -#: includes/fields/class-acf-field-image.php:271 -#: includes/fields/class-acf-field-image.php:307 -msgid "File size" -msgstr "Tamaño do arquivo" - -#: includes/fields/class-acf-field-image.php:245 -#: includes/fields/class-acf-field-image.php:281 -msgid "Restrict which images can be uploaded" -msgstr "Restrinxir que imaxes se poden subir" - -#: includes/fields/class-acf-field-file.php:266 -#: includes/fields/class-acf-field-image.php:244 -msgid "Minimum" -msgstr "Mínimo" - -#: includes/fields/class-acf-field-file.php:235 -#: includes/fields/class-acf-field-image.php:210 -msgid "Uploaded to post" -msgstr "Subidos ao contido" - -#: includes/fields/class-acf-field-file.php:234 -#: includes/fields/class-acf-field-image.php:209 -#: includes/locations/class-acf-location-attachment.php:73 -#: includes/locations/class-acf-location-comment.php:61 -#: includes/locations/class-acf-location-nav-menu.php:74 -#: includes/locations/class-acf-location-taxonomy.php:63 -#: includes/locations/class-acf-location-user-form.php:71 -#: includes/locations/class-acf-location-user-role.php:78 -#: includes/locations/class-acf-location-widget.php:65 -msgid "All" -msgstr "Todos" - -#: includes/fields/class-acf-field-file.php:229 -#: includes/fields/class-acf-field-image.php:204 -msgid "Limit the media library choice" -msgstr "Limitar as opcións da biblioteca de medios" - -#: includes/fields/class-acf-field-file.php:228 -#: includes/fields/class-acf-field-image.php:203 -msgid "Library" -msgstr "Biblioteca" - -#: includes/fields/class-acf-field-image.php:336 -msgid "Preview Size" -msgstr "Tamaño de vista previa" - -#: includes/fields/class-acf-field-image.php:195 -msgid "Image ID" -msgstr "ID da imaxe" - -#: includes/fields/class-acf-field-image.php:194 -msgid "Image URL" -msgstr "URL de imaxe" - -#: includes/fields/class-acf-field-image.php:193 -msgid "Image Array" -msgstr "Array de imaxes" - -#: includes/fields/class-acf-field-button-group.php:168 -#: includes/fields/class-acf-field-checkbox.php:372 -#: includes/fields/class-acf-field-file.php:213 -#: includes/fields/class-acf-field-link.php:171 -#: includes/fields/class-acf-field-radio.php:213 -msgid "Specify the returned value on front end" -msgstr "Especificar o valor devolto na web" - -#: includes/fields/class-acf-field-button-group.php:167 -#: includes/fields/class-acf-field-checkbox.php:371 -#: includes/fields/class-acf-field-file.php:212 -#: includes/fields/class-acf-field-link.php:170 -#: includes/fields/class-acf-field-radio.php:212 -#: includes/fields/class-acf-field-taxonomy.php:736 -msgid "Return Value" -msgstr "Valor de retorno" - -#: includes/fields/class-acf-field-image.php:162 -msgid "Add Image" -msgstr "Engadir imaxe" - -#: includes/fields/class-acf-field-image.php:162 -msgid "No image selected" -msgstr "Non hai ningunha imaxe seleccionada" - -#: includes/assets.php:352 includes/fields/class-acf-field-file.php:162 -#: includes/fields/class-acf-field-image.php:142 -#: includes/fields/class-acf-field-link.php:145 assets/build/js/acf.js:1563 -#: assets/build/js/acf.js:1657 -msgid "Remove" -msgstr "Quitar" - -#: includes/admin/views/acf-field-group/field.php:76 -#: includes/fields/class-acf-field-file.php:160 -#: includes/fields/class-acf-field-image.php:140 -#: includes/fields/class-acf-field-link.php:145 -msgid "Edit" -msgstr "Editar" - -#: includes/fields/class-acf-field-image.php:70 includes/media.php:55 -#: assets/build/js/acf-input.js:6837 assets/build/js/acf-input.js:7320 -msgid "All images" -msgstr "Todas as imaxes" - -#: includes/fields/class-acf-field-image.php:69 -#: assets/build/js/acf-input.js:3181 assets/build/js/acf-input.js:3399 -msgid "Update Image" -msgstr "Actualizar imaxe" - -#: includes/fields/class-acf-field-image.php:68 -#: assets/build/js/acf-input.js:3180 assets/build/js/acf-input.js:3398 -msgid "Edit Image" -msgstr "Editar imaxe" - -#: includes/fields/class-acf-field-image.php:67 -#: assets/build/js/acf-input.js:3156 assets/build/js/acf-input.js:3373 -msgid "Select Image" -msgstr "Seleccionar imaxe" - -#: includes/fields/class-acf-field-image.php:25 -msgid "Image" -msgstr "Imaxe" - -#: includes/fields/class-acf-field-message.php:125 -msgid "Allow HTML markup to display as visible text instead of rendering" -msgstr "" -"Permitir que o maquetado HTML se mostre como texto visible no canto de " -"interpretalo" - -#: includes/fields/class-acf-field-message.php:124 -msgid "Escape HTML" -msgstr "Escapar HTML" - -#: includes/fields/class-acf-field-message.php:116 -#: includes/fields/class-acf-field-textarea.php:172 -msgid "No Formatting" -msgstr "Sen formato" - -#: includes/fields/class-acf-field-message.php:115 -#: includes/fields/class-acf-field-textarea.php:171 -msgid "Automatically add <br>" -msgstr "Engadir <br> automaticamente" - -#: includes/fields/class-acf-field-message.php:114 -#: includes/fields/class-acf-field-textarea.php:170 -msgid "Automatically add paragraphs" -msgstr "Engadir parágrafos automaticamente" - -#: includes/fields/class-acf-field-message.php:110 -#: includes/fields/class-acf-field-textarea.php:166 -msgid "Controls how new lines are rendered" -msgstr "Controla como se mostran os saltos de liña" - -#: includes/fields/class-acf-field-message.php:109 -#: includes/fields/class-acf-field-textarea.php:165 -msgid "New Lines" -msgstr "Novas liñas" - -#: includes/fields/class-acf-field-date_picker.php:232 -#: includes/fields/class-acf-field-date_time_picker.php:220 -msgid "Week Starts On" -msgstr "A semana comeza o" - -#: includes/fields/class-acf-field-date_picker.php:201 -msgid "The format used when saving a value" -msgstr "O formato utilizado cando se garda un valor" - -#: includes/fields/class-acf-field-date_picker.php:200 -msgid "Save Format" -msgstr "Gardar formato" - -#: includes/fields/class-acf-field-date_picker.php:67 -msgctxt "Date Picker JS weekHeader" -msgid "Wk" -msgstr "Sem" - -#: includes/fields/class-acf-field-date_picker.php:66 -msgctxt "Date Picker JS prevText" -msgid "Prev" -msgstr "Anterior" - -#: includes/fields/class-acf-field-date_picker.php:65 -msgctxt "Date Picker JS nextText" -msgid "Next" -msgstr "Seguinte" - -#: includes/fields/class-acf-field-date_picker.php:64 -msgctxt "Date Picker JS currentText" -msgid "Today" -msgstr "Hoxe" - -#: includes/fields/class-acf-field-date_picker.php:63 -msgctxt "Date Picker JS closeText" -msgid "Done" -msgstr "Feito" - -#: includes/fields/class-acf-field-date_picker.php:25 -msgid "Date Picker" -msgstr "Selector de data" - -#: includes/fields/class-acf-field-image.php:248 -#: includes/fields/class-acf-field-image.php:284 -#: includes/fields/class-acf-field-oembed.php:268 -msgid "Width" -msgstr "Ancho" - -#: includes/fields/class-acf-field-oembed.php:265 -#: includes/fields/class-acf-field-oembed.php:277 -msgid "Embed Size" -msgstr "Tamaño da inserción" - -#: includes/fields/class-acf-field-oembed.php:222 -msgid "Enter URL" -msgstr "Introduce a URL" - -#: includes/fields/class-acf-field-oembed.php:25 -msgid "oEmbed" -msgstr "oEmbed" - -#: includes/fields/class-acf-field-true_false.php:184 -msgid "Text shown when inactive" -msgstr "Texto mostrado cando está inactivo" - -#: includes/fields/class-acf-field-true_false.php:183 -msgid "Off Text" -msgstr "Texto desactivado" - -#: includes/fields/class-acf-field-true_false.php:168 -msgid "Text shown when active" -msgstr "Texto mostrado cando está activo" - -#: includes/fields/class-acf-field-true_false.php:167 -msgid "On Text" -msgstr "Texto activado" - -#: includes/fields/class-acf-field-select.php:450 -#: includes/fields/class-acf-field-true_false.php:199 -msgid "Stylized UI" -msgstr "UI estilizada" - -#: includes/fields/class-acf-field-button-group.php:157 -#: includes/fields/class-acf-field-checkbox.php:361 -#: includes/fields/class-acf-field-color_picker.php:156 -#: includes/fields/class-acf-field-email.php:117 -#: includes/fields/class-acf-field-number.php:128 -#: includes/fields/class-acf-field-radio.php:202 -#: includes/fields/class-acf-field-range.php:164 -#: includes/fields/class-acf-field-select.php:380 -#: includes/fields/class-acf-field-text.php:103 -#: includes/fields/class-acf-field-textarea.php:103 -#: includes/fields/class-acf-field-true_false.php:147 -#: includes/fields/class-acf-field-url.php:101 -#: includes/fields/class-acf-field-wysiwyg.php:311 -msgid "Default Value" -msgstr "Valor por defecto" - -#: includes/fields/class-acf-field-true_false.php:138 -msgid "Displays text alongside the checkbox" -msgstr "Mostra o texto xunto ao recadro de verificación" - -#: includes/fields/class-acf-field-message.php:26 -#: includes/fields/class-acf-field-message.php:99 -#: includes/fields/class-acf-field-true_false.php:137 -msgid "Message" -msgstr "Mensaxe" - -#: includes/assets.php:351 includes/fields/class-acf-field-true_false.php:86 -#: includes/fields/class-acf-field-true_false.php:187 -#: assets/build/js/acf.js:1740 assets/build/js/acf.js:1857 -msgid "No" -msgstr "Non" - -#: includes/assets.php:350 includes/fields/class-acf-field-true_false.php:83 -#: includes/fields/class-acf-field-true_false.php:171 -#: assets/build/js/acf.js:1739 assets/build/js/acf.js:1856 -msgid "Yes" -msgstr "Si" - -#: includes/fields/class-acf-field-true_false.php:25 -msgid "True / False" -msgstr "Verdadeiro / Falso" - -#: includes/fields/class-acf-field-group.php:474 -msgid "Row" -msgstr "Fila" - -#: includes/fields/class-acf-field-group.php:473 -msgid "Table" -msgstr "Táboa" - -#: includes/admin/post-types/admin-field-group.php:140 -#: includes/fields/class-acf-field-group.php:472 -msgid "Block" -msgstr "Bloque" - -#: includes/fields/class-acf-field-group.php:467 -msgid "Specify the style used to render the selected fields" -msgstr "Especifica o estilo utilizado para representar os campos seleccionados" - -#: includes/fields.php:356 includes/fields/class-acf-field-button-group.php:215 -#: includes/fields/class-acf-field-checkbox.php:435 -#: includes/fields/class-acf-field-group.php:466 -#: includes/fields/class-acf-field-radio.php:286 -msgid "Layout" -msgstr "Estrutura" - -#: includes/fields/class-acf-field-group.php:450 -msgid "Sub Fields" -msgstr "Subcampos" - -#: includes/fields/class-acf-field-group.php:25 -msgid "Group" -msgstr "Grupo" - -#: includes/fields/class-acf-field-google-map.php:235 -msgid "Customize the map height" -msgstr "Personalizar a altura do mapa" - -#: includes/fields/class-acf-field-google-map.php:234 -#: includes/fields/class-acf-field-image.php:259 -#: includes/fields/class-acf-field-image.php:295 -#: includes/fields/class-acf-field-oembed.php:280 -msgid "Height" -msgstr "Altura" - -#: includes/fields/class-acf-field-google-map.php:223 -msgid "Set the initial zoom level" -msgstr "Establecer o nivel inicial de zoom" - -#: includes/fields/class-acf-field-google-map.php:222 -msgid "Zoom" -msgstr "Zoom" - -#: includes/fields/class-acf-field-google-map.php:196 -#: includes/fields/class-acf-field-google-map.php:209 -msgid "Center the initial map" -msgstr "Centrar inicialmente o mapa" - -#: includes/fields/class-acf-field-google-map.php:195 -#: includes/fields/class-acf-field-google-map.php:208 -msgid "Center" -msgstr "Centro" - -#: includes/fields/class-acf-field-google-map.php:163 -msgid "Search for address..." -msgstr "Buscar enderezo..." - -#: includes/fields/class-acf-field-google-map.php:160 -msgid "Find current location" -msgstr "Encontrar ubicación actual" - -#: includes/fields/class-acf-field-google-map.php:159 -msgid "Clear location" -msgstr "Borrar ubicación" - -#: includes/fields/class-acf-field-google-map.php:158 -#: includes/fields/class-acf-field-relationship.php:628 -msgid "Search" -msgstr "Buscar" - -#: includes/fields/class-acf-field-google-map.php:63 -#: assets/build/js/acf-input.js:2840 assets/build/js/acf-input.js:3026 -msgid "Sorry, this browser does not support geolocation" -msgstr "Síntoo, este navegador non é compatible coa xeolocalización" - -#: includes/fields/class-acf-field-google-map.php:25 -msgid "Google Map" -msgstr "Mapa de Google" - -#: includes/fields/class-acf-field-date_picker.php:212 -#: includes/fields/class-acf-field-date_time_picker.php:201 -#: includes/fields/class-acf-field-time_picker.php:132 -msgid "The format returned via template functions" -msgstr "O formato devolto polas funcións do tema" - -#: includes/fields/class-acf-field-color_picker.php:180 -#: includes/fields/class-acf-field-date_picker.php:211 -#: includes/fields/class-acf-field-date_time_picker.php:200 -#: includes/fields/class-acf-field-image.php:187 -#: includes/fields/class-acf-field-post_object.php:411 -#: includes/fields/class-acf-field-relationship.php:638 -#: includes/fields/class-acf-field-select.php:391 -#: includes/fields/class-acf-field-time_picker.php:131 -#: includes/fields/class-acf-field-user.php:66 -msgid "Return Format" -msgstr "Formato de retorno" - -#: includes/fields/class-acf-field-date_picker.php:190 -#: includes/fields/class-acf-field-date_picker.php:221 -#: includes/fields/class-acf-field-date_time_picker.php:192 -#: includes/fields/class-acf-field-date_time_picker.php:210 -#: includes/fields/class-acf-field-time_picker.php:123 -#: includes/fields/class-acf-field-time_picker.php:139 -msgid "Custom:" -msgstr "Personalizado:" - -#: includes/fields/class-acf-field-date_picker.php:182 -#: includes/fields/class-acf-field-date_time_picker.php:183 -#: includes/fields/class-acf-field-time_picker.php:116 -msgid "The format displayed when editing a post" -msgstr "O formato mostrado cando se edita unha publicación" - -#: includes/fields/class-acf-field-date_picker.php:181 -#: includes/fields/class-acf-field-date_time_picker.php:182 -#: includes/fields/class-acf-field-time_picker.php:115 -msgid "Display Format" -msgstr "Formato de visualización" - -#: includes/fields/class-acf-field-time_picker.php:25 -msgid "Time Picker" -msgstr "Selector de hora" - -#. translators: counts for inactive field groups -#: acf.php:503 -msgid "Inactive (%s)" -msgid_plural "Inactive (%s)" -msgstr[0] "Inactivo (%s)" -msgstr[1] "Inactivos (%s)" - -#: acf.php:462 -msgid "No Fields found in Trash" -msgstr "Non se encontraron campos na papeleira" - -#: acf.php:461 -msgid "No Fields found" -msgstr "Non se encontraron campos" - -#: acf.php:460 -msgid "Search Fields" -msgstr "Buscar campos" - -#: acf.php:459 -msgid "View Field" -msgstr "Ver campo" - -#: acf.php:458 includes/admin/views/acf-field-group/fields.php:115 -msgid "New Field" -msgstr "Novo campo" - -#: acf.php:457 -msgid "Edit Field" -msgstr "Editar campo" - -#: acf.php:456 -msgid "Add New Field" -msgstr "Engadir novo campo" - -#: acf.php:454 -msgid "Field" -msgstr "Campo" - -#: acf.php:453 includes/admin/post-types/admin-field-group.php:163 -#: includes/admin/post-types/admin-field-groups.php:119 -#: includes/admin/views/acf-field-group/fields.php:32 -msgid "Fields" -msgstr "Campos" - -#: acf.php:428 -msgid "No Field Groups found in Trash" -msgstr "Non se atoparon os grupos de campos na papeleira" - -#: acf.php:427 -msgid "No Field Groups found" -msgstr "Non se encontraron grupos de campos" - -#: acf.php:426 -msgid "Search Field Groups" -msgstr "Buscar grupo de campos" - -#: acf.php:425 -msgid "View Field Group" -msgstr "Ver grupo de campos" - -#: acf.php:424 -msgid "New Field Group" -msgstr "Novo grupo de campos" - -#: acf.php:423 -msgid "Edit Field Group" -msgstr "Editar grupo de campos" - -#: acf.php:422 -msgid "Add New Field Group" -msgstr "Engadir novo grupo de campos" - -#: acf.php:421 acf.php:455 -#: includes/admin/views/acf-post-type/advanced-settings.php:219 -#: includes/admin/views/acf-post-type/advanced-settings.php:221 -#: includes/post-types/class-acf-post-type.php:93 -#: includes/post-types/class-acf-taxonomy.php:92 -msgid "Add New" -msgstr "Engadir novo" - -#: acf.php:420 -msgid "Field Group" -msgstr "Grupo de campos" - -#: acf.php:419 includes/admin/post-types/admin-field-groups.php:78 -#: includes/admin/post-types/admin-post-types.php:138 -#: includes/admin/post-types/admin-taxonomies.php:138 -msgid "Field Groups" -msgstr "Grupos de campos" - -#. Description of the plugin -msgid "Customize WordPress with powerful, professional and intuitive fields." -msgstr "Personaliza WordPress con campos potentes, profesionais e intuitivos." - -#. Plugin URI of the plugin -msgid "https://www.advancedcustomfields.com" -msgstr "https://www.advancedcustomfields.com" - -#. Plugin Name of the plugin -#: acf.php:94 -msgid "Advanced Custom Fields" -msgstr "Advanced Custom Fields" diff --git a/lang/acf-gu.mo b/lang/acf-gu.mo deleted file mode 100644 index 7c92502..0000000 Binary files a/lang/acf-gu.mo and /dev/null differ diff --git a/lang/acf-gu.po b/lang/acf-gu.po deleted file mode 100644 index 81dccb7..0000000 --- a/lang/acf-gu.po +++ /dev/null @@ -1,5723 +0,0 @@ -# Advanced Custom Fields Translations are a combination of translate.wordpress.org contributions, -# combined with user contributed strings for the PRO version. -# Translations from translate.wordpress.org take priority over translations in this file. -# translate.wordpress.org contributions are synced at the time of each release. -# -# If you would like to contribute translations, please visit -# https://translate.wordpress.org/projects/wp-plugins/advanced-custom-fields/stable/ -# -# For additional ACF PRO strings, please submit a pull request over on the ACF GitHub repo at -# http://github.com/advancedcustomfields/acf using the .pot (and any existing .po) files in /lang/pro/ -# -# This file is distributed under the same license as Advanced Custom Fields. -msgid "" -msgstr "" -"PO-Revision-Date: 2023-11-28T09:14:32+00:00\n" -"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n" -"Language: gu\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: gettext\n" -"Project-Id-Version: Advanced Custom Fields\n" - -#: includes/admin/views/global/navigation.php:221 -msgid "Renew ACF PRO License" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:17 -msgid "Renew License" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:14 -msgid "Manage License" -msgstr "" - -#: includes/admin/views/acf-field-group/options.php:102 -msgid "'High' position not supported in the Block Editor" -msgstr "" - -#: includes/admin/views/options-page-preview.php:30 -msgid "Upgrade to ACF PRO" -msgstr "" - -#. translators: %s URL to ACF options pages documentation -#: includes/admin/views/options-page-preview.php:7 -msgid "" -"ACF options pages are custom admin " -"pages for managing global settings via fields. You can create multiple pages " -"and sub-pages." -msgstr "" - -#: includes/admin/views/global/header.php:35 -msgid "Add Options Page" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:703 -msgid "In the editor used as the placeholder of the title." -msgstr "શીર્ષકના પ્લેસહોલ્ડર તરીકે ઉપયોગમાં લેવાતા એડિટરમાં." - -#: includes/admin/views/acf-post-type/advanced-settings.php:702 -msgid "Title Placeholder" -msgstr "શીર્ષક પ્લેસહોલ્ડર" - -#: includes/admin/views/global/navigation.php:97 -msgid "4 Months Free" -msgstr "4 મહિના મફત" - -#. translators: %s - A singular label for a post type or taxonomy. -#: includes/admin/views/global/form-top.php:56 -msgid " (Duplicated from %s)" -msgstr " (%s માંથી ડુપ્લિકેટ)" - -#: includes/admin/tools/class-acf-admin-tool-export.php:298 -msgid "Select Options Pages" -msgstr "વિકલ્પો પૃષ્ઠો પસંદ કરો" - -#: includes/admin/post-types/admin-taxonomy.php:107 -msgid "Duplicate taxonomy" -msgstr "ડુપ્લિકેટ વર્ગીકરણ" - -#: includes/admin/post-types/admin-post-type.php:106 -#: includes/admin/post-types/admin-taxonomy.php:106 -msgid "Create taxonomy" -msgstr "વર્ગીકરણ બનાવો" - -#: includes/admin/post-types/admin-post-type.php:105 -msgid "Duplicate post type" -msgstr "ડુપ્લિકેટ પોસ્ટ પ્રકાર" - -#: includes/admin/post-types/admin-post-type.php:104 -#: includes/admin/post-types/admin-taxonomy.php:108 -msgid "Create post type" -msgstr "પોસ્ટ પ્રકાર બનાવો" - -#: includes/admin/post-types/admin-post-type.php:103 -#: includes/admin/post-types/admin-taxonomy.php:105 -msgid "Link field groups" -msgstr "ફીલ્ડ જૂથોને લિંક કરો" - -#: includes/admin/post-types/admin-post-type.php:102 -#: includes/admin/post-types/admin-taxonomy.php:104 -msgid "Add fields" -msgstr "ક્ષેત્રો ઉમેરો" - -#: includes/admin/post-types/admin-field-group.php:121 -#: assets/build/js/acf-field-group.js:2753 -#: assets/build/js/acf-field-group.js:3236 -msgid "This Field" -msgstr "આ ક્ષેત્ર" - -#: includes/admin/admin.php:267 -msgid "ACF PRO" -msgstr "એસીએફ પ્રો" - -#: includes/admin/admin.php:265 -msgid "Feedback" -msgstr "પ્રતિસાદ" - -#: includes/admin/admin.php:263 -msgid "Support" -msgstr "સપોર્ટ" - -#. translators: This text is prepended by a link to ACF's website, and appended -#. by a link to WP Engine's website. -#: includes/admin/admin.php:238 -msgid "is developed and maintained by" -msgstr "દ્વારા વિકસિત અને જાળવણી કરવામાં આવે છે" - -#. translators: %s - either "post type" or "taxonomy" -#: includes/admin/admin-internal-post-type.php:321 -msgid "Add this %s to the location rules of the selected field groups." -msgstr "પસંદ કરેલ ક્ષેત્ર જૂથોના સ્થાન નિયમોમાં આ %s ઉમેરો." - -#. translators: %s the URL to ACF's bidirectional relationship documentation -#: includes/acf-bidirectional-functions.php:271 -msgid "" -"Enabling the bidirectional setting allows you to update a value in the " -"target fields for each value selected for this field, adding or removing the " -"Post ID, Taxonomy ID or User ID of the item being updated. For more " -"information, please read the documentation." -msgstr "" -"દ્વિપક્ષીય સેટિંગને સક્ષમ કરવાથી તમે આ ફીલ્ડ માટે પસંદ કરેલ દરેક મૂલ્ય માટે લક્ષ્ય ફીલ્ડમાં મૂલ્ય " -"અપડેટ કરી શકો છો, પોસ્ટ ID, વર્ગીકરણ ID અથવા અપડેટ કરવામાં આવી રહેલી આઇટમના " -"વપરાશકર્તા ID ને ઉમેરીને અથવા દૂર કરી શકો છો. વધુ માહિતી માટે, કૃપા કરીને દસ્તાવેજીકરણ વાંચો." - -#: includes/acf-bidirectional-functions.php:247 -msgid "" -"Select field(s) to store the reference back to the item being updated. You " -"may select this field. Target fields must be compatible with where this " -"field is being displayed. For example, if this field is displayed on a " -"Taxonomy, your target field should be of type Taxonomy" -msgstr "" -"અપડેટ કરવામાં આવી રહેલી આઇટમનો સંદર્ભ પાછો સંગ્રહિત કરવા માટે ક્ષેત્ર(ઓ) પસંદ કરો. તમે આ " -"ક્ષેત્ર પસંદ કરી શકો છો. જ્યાં આ ક્ષેત્ર પ્રદર્શિત થઈ રહ્યું છે તેની સાથે લક્ષ્ય ક્ષેત્રો સુસંગત " -"હોવા જોઈએ. ઉદાહરણ તરીકે, જો આ ક્ષેત્ર વર્ગીકરણ પર પ્રદર્શિત થાય છે, તો તમારું લક્ષ્ય " -"ક્ષેત્ર વર્ગીકરણ પ્રકારનું હોવું જોઈએ" - -#: includes/acf-bidirectional-functions.php:246 -msgid "Target Field" -msgstr "લક્ષ્ય ક્ષેત્ર" - -#: includes/acf-bidirectional-functions.php:220 -msgid "Update a field on the selected values, referencing back to this ID" -msgstr "આ ID નો સંદર્ભ આપીને પસંદ કરેલ મૂલ્યો પર ફીલ્ડ અપડેટ કરો" - -#: includes/acf-bidirectional-functions.php:219 -msgid "Bidirectional" -msgstr "દ્વિપક્ષીય" - -#. translators: %s A field type name, such as "Relationship" -#: includes/acf-bidirectional-functions.php:192 -msgid "%s Field" -msgstr "%s ફીલ્ડ" - -#: includes/fields/class-acf-field-page_link.php:517 -#: includes/fields/class-acf-field-post_object.php:426 -#: includes/fields/class-acf-field-select.php:407 -#: includes/fields/class-acf-field-user.php:82 -msgid "Select Multiple" -msgstr "બહુવિધ પસંદ કરો" - -#: includes/admin/views/global/navigation.php:233 -msgid "WP Engine logo" -msgstr "WP એન્જિન લોગો" - -#: includes/admin/views/acf-taxonomy/basic-settings.php:58 -msgid "Lower case letters, underscores and dashes only, Max 32 characters." -msgstr "લોઅર કેસ અક્ષરો, માત્ર અન્ડરસ્કોર અને ડૅશ, મહત્તમ 32 અક્ષરો." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1136 -msgid "The capability name for assigning terms of this taxonomy." -msgstr "આ વર્ગીકરણની શરતો સોંપવા માટેની ક્ષમતાનું નામ." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1135 -msgid "Assign Terms Capability" -msgstr "ટર્મ ક્ષમતા સોંપો" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1119 -msgid "The capability name for deleting terms of this taxonomy." -msgstr "આ વર્ગીકરણની શરતોને કાઢી નાખવા માટેની ક્ષમતાનું નામ." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1118 -msgid "Delete Terms Capability" -msgstr "ટર્મ ક્ષમતા કાઢી નાખો" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1102 -msgid "The capability name for editing terms of this taxonomy." -msgstr "આ વર્ગીકરણની શરતોને સંપાદિત કરવા માટેની ક્ષમતાનું નામ." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1101 -msgid "Edit Terms Capability" -msgstr "શરતો ક્ષમતા સંપાદિત કરો" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1085 -msgid "The capability name for managing terms of this taxonomy." -msgstr "આ વર્ગીકરણની શરતોનું સંચાલન કરવા માટેની ક્ષમતાનું નામ." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1084 -msgid "Manage Terms Capability" -msgstr "શરતોની ક્ષમતા મેનેજ કરો" - -#: includes/admin/views/acf-post-type/advanced-settings.php:886 -msgid "" -"Sets whether posts should be excluded from search results and taxonomy " -"archive pages." -msgstr "" -"શોધ પરિણામો અને વર્ગીકરણ આર્કાઇવ પૃષ્ઠોમાંથી પોસ્ટ્સને બાકાત રાખવા જોઈએ કે કેમ તે સેટ કરે " -"છે." - -#: includes/admin/views/acf-field-group/pro-features.php:74 -msgid "More Tools from WP Engine" -msgstr "WP એન્જિનના વધુ સાધનો" - -#. translators: %s - WP Engine logo -#: includes/admin/views/acf-field-group/pro-features.php:69 -msgid "Built for those that build with WordPress, by the team at %s" -msgstr "%s પરની ટીમ દ્વારા વર્ડપ્રેસ સાથે બિલ્ડ કરનારાઓ માટે બનાવેલ છે" - -#: includes/admin/views/acf-field-group/pro-features.php:6 -msgid "View Pricing & Upgrade" -msgstr "કિંમત અને અપગ્રેડ જુઓ" - -#: includes/admin/views/acf-field-group/pro-features.php:3 -#: includes/admin/views/options-page-preview.php:29 -msgid "Learn More" -msgstr "વધુ શીખો" - -#: includes/admin/views/acf-field-group/pro-features.php:28 -msgid "" -"Speed up your workflow and develop better websites with features like ACF " -"Blocks and Options Pages, and sophisticated field types like Repeater, " -"Flexible Content, Clone, and Gallery." -msgstr "" -"તમારા વર્કફ્લોને ઝડપી બનાવો અને ACF બ્લોક્સ અને ઓપ્શન્સ પેજીસ જેવી સુવિધાઓ અને રિપીટર, " -"ફ્લેક્સિબલ કન્ટેન્ટ, ક્લોન અને ગેલેરી જેવા અત્યાધુનિક ફીલ્ડ પ્રકારો સાથે વધુ સારી વેબસાઇટ્સ " -"વિકસાવો." - -#: includes/admin/views/acf-field-group/pro-features.php:2 -msgid "Unlock Advanced Features and Build Even More with ACF PRO" -msgstr "ACF PRO સાથે અદ્યતન સુવિધાઓને અનલૉક કરો અને હજી વધુ બનાવો" - -#. translators: %s - singular label of post type/taxonomy, i.e. "Movie"/"Genre" -#: includes/admin/views/global/form-top.php:19 -msgid "%s fields" -msgstr "%s ફીલ્ડ" - -#: includes/admin/post-types/admin-taxonomies.php:293 -msgid "No terms" -msgstr "કોઈ શરતો નથી" - -#: includes/admin/post-types/admin-taxonomies.php:266 -msgid "No post types" -msgstr "કોઈ પોસ્ટ પ્રકાર નથી" - -#: includes/admin/post-types/admin-post-types.php:289 -msgid "No posts" -msgstr "કોઈ પોસ્ટ નથી" - -#: includes/admin/post-types/admin-post-types.php:263 -msgid "No taxonomies" -msgstr "કોઈ વર્ગીકરણ નથી" - -#: includes/admin/post-types/admin-post-types.php:208 -#: includes/admin/post-types/admin-taxonomies.php:208 -msgid "No field groups" -msgstr "કોઈ ક્ષેત્ર જૂથો નથી" - -#: includes/admin/post-types/admin-field-groups.php:281 -msgid "No fields" -msgstr "કોઈ ફીલ્ડ નથી" - -#: includes/admin/post-types/admin-field-groups.php:154 -#: includes/admin/post-types/admin-post-types.php:172 -#: includes/admin/post-types/admin-taxonomies.php:172 -msgid "No description" -msgstr "કોઈ વર્ણન નથી" - -#: includes/fields/class-acf-field-page_link.php:484 -#: includes/fields/class-acf-field-post_object.php:389 -#: includes/fields/class-acf-field-relationship.php:601 -msgid "Any post status" -msgstr "કોઈપણ પોસ્ટ સ્થિતિ" - -#: includes/post-types/class-acf-taxonomy.php:284 -msgid "" -"This taxonomy key is already in use by another taxonomy registered outside " -"of ACF and cannot be used." -msgstr "" -"આ વર્ગીકરણ કી પહેલેથી જ ACF ની બહાર નોંધાયેલ અન્ય વર્ગીકરણ દ્વારા ઉપયોગમાં લેવાય છે અને " -"તેનો ઉપયોગ કરી શકાતો નથી." - -#: includes/post-types/class-acf-taxonomy.php:279 -msgid "" -"This taxonomy key is already in use by another taxonomy in ACF and cannot be " -"used." -msgstr "" -"આ વર્ગીકરણ કી પહેલેથી જ ACF માં અન્ય વર્ગીકરણ દ્વારા ઉપયોગમાં લેવાય છે અને તેનો ઉપયોગ " -"કરી શકાતો નથી." - -#: includes/post-types/class-acf-taxonomy.php:252 -msgid "" -"The taxonomy key must only contain lower case alphanumeric characters, " -"underscores or dashes." -msgstr "" -"વર્ગીકરણ કી માં માત્ર લોઅર કેસ આલ્ફાન્યૂમેરિક અક્ષરો, અન્ડરસ્કોર અથવા ડેશ હોવા જોઈએ." - -#: includes/post-types/class-acf-taxonomy.php:247 -msgid "The taxonomy key must be under 32 characters." -msgstr "વર્ગીકરણ કી 32 અક્ષરોથી ઓછી હોવી જોઈએ." - -#: includes/post-types/class-acf-taxonomy.php:99 -msgid "No Taxonomies found in Trash" -msgstr "ટ્રેશમાં કોઈ વર્ગીકરણ મળ્યું નથી" - -#: includes/post-types/class-acf-taxonomy.php:98 -msgid "No Taxonomies found" -msgstr "કોઈ વર્ગીકરણ મળ્યું નથી" - -#: includes/post-types/class-acf-taxonomy.php:97 -msgid "Search Taxonomies" -msgstr "વર્ગીકરણ શોધો" - -#: includes/post-types/class-acf-taxonomy.php:96 -msgid "View Taxonomy" -msgstr "વર્ગીકરણ જુઓ" - -#: includes/post-types/class-acf-taxonomy.php:95 -msgid "New Taxonomy" -msgstr "નવુ વર્ગીકરણ" - -#: includes/post-types/class-acf-taxonomy.php:94 -msgid "Edit Taxonomy" -msgstr "વર્ગીકરણ સંપાદિત કરો" - -#: includes/post-types/class-acf-taxonomy.php:93 -msgid "Add New Taxonomy" -msgstr "નવુ વર્ગીકરણ ઉમેરો" - -#: includes/post-types/class-acf-post-type.php:100 -msgid "No Post Types found in Trash" -msgstr "ટ્રેશમાં કોઈ પોસ્ટ પ્રકારો મળ્યા નથી" - -#: includes/post-types/class-acf-post-type.php:99 -msgid "No Post Types found" -msgstr "કોઈ પોસ્ટ પ્રકારો મળ્યા નથી" - -#: includes/post-types/class-acf-post-type.php:98 -msgid "Search Post Types" -msgstr "પોસ્ટ પ્રકારો શોધો" - -#: includes/post-types/class-acf-post-type.php:97 -msgid "View Post Type" -msgstr "પોસ્ટનો પ્રકાર જુઓ" - -#: includes/post-types/class-acf-post-type.php:96 -msgid "New Post Type" -msgstr "નવો પોસ્ટ પ્રકાર" - -#: includes/post-types/class-acf-post-type.php:95 -msgid "Edit Post Type" -msgstr "પોસ્ટ પ્રકાર સંપાદિત કરો" - -#: includes/post-types/class-acf-post-type.php:94 -msgid "Add New Post Type" -msgstr "નવો પોસ્ટ પ્રકાર ઉમેરો" - -#: includes/post-types/class-acf-post-type.php:361 -msgid "" -"This post type key is already in use by another post type registered outside " -"of ACF and cannot be used." -msgstr "" -"આ પોસ્ટ ટાઇપ કી પહેલેથી જ ACF ની બહાર નોંધાયેલ અન્ય પોસ્ટ પ્રકાર દ્વારા ઉપયોગમાં લેવાય " -"છે અને તેનો ઉપયોગ કરી શકાતો નથી." - -#: includes/post-types/class-acf-post-type.php:356 -msgid "" -"This post type key is already in use by another post type in ACF and cannot " -"be used." -msgstr "" -"આ પોસ્ટ ટાઇપ કી પહેલેથી જ ACF માં અન્ય પોસ્ટ પ્રકાર દ્વારા ઉપયોગમાં છે અને તેનો ઉપયોગ " -"કરી શકાતો નથી." - -#. translators: %s a link to WordPress.org's Reserved Terms page -#: includes/post-types/class-acf-post-type.php:335 -#: includes/post-types/class-acf-taxonomy.php:258 -msgid "" -"This field must not be a WordPress reserved " -"term." -msgstr "" -"આ ફીલ્ડ વર્ડપ્રેસનો આરક્ષિત શબ્દ ન હોવો જોઈએ." - -#: includes/post-types/class-acf-post-type.php:329 -msgid "" -"The post type key must only contain lower case alphanumeric characters, " -"underscores or dashes." -msgstr "" -"પોસ્ટ ટાઈપ કીમાં માત્ર લોઅર કેસ આલ્ફાન્યૂમેરિક અક્ષરો, અન્ડરસ્કોર અથવા ડેશ હોવા જોઈએ." - -#: includes/post-types/class-acf-post-type.php:324 -msgid "The post type key must be under 20 characters." -msgstr "પોસ્ટ પ્રકાર કી 20 અક્ષરોથી ઓછી હોવી જોઈએ." - -#: includes/fields/class-acf-field-wysiwyg.php:27 -msgid "We do not recommend using this field in ACF Blocks." -msgstr "અમે ACF બ્લોક્સમાં આ ક્ષેત્રનો ઉપયોગ કરવાની ભલામણ કરતા નથી." - -#: includes/fields/class-acf-field-wysiwyg.php:27 -msgid "" -"Displays the WordPress WYSIWYG editor as seen in Posts and Pages allowing " -"for a rich text-editing experience that also allows for multimedia content." -msgstr "" -"વર્ડપ્રેસ WYSIWYG એડિટર પ્રદર્શિત કરે છે જે પોસ્ટ્સ અને પૃષ્ઠો જોવા મળે છે જે સમૃદ્ધ ટેક્સ્ટ-" -"એડિટિંગ અનુભવ માટે પરવાનગી આપે છે જે મલ્ટીમીડિયા સામગ્રી માટે પણ પરવાનગી આપે છે." - -#: includes/fields/class-acf-field-wysiwyg.php:25 -msgid "WYSIWYG Editor" -msgstr "WYSIWYG સંપાદક" - -#: includes/fields/class-acf-field-user.php:17 -msgid "" -"Allows the selection of one or more users which can be used to create " -"relationships between data objects." -msgstr "" -"એક અથવા વધુ વપરાશકર્તાઓની પસંદગીની મંજૂરી આપે છે જેનો ઉપયોગ ડેટા ઑબ્જેક્ટ્સ વચ્ચે સંબંધ " -"બનાવવા માટે થઈ શકે છે." - -#: includes/fields/class-acf-field-url.php:26 -msgid "A text input specifically designed for storing web addresses." -msgstr "ખાસ કરીને વેબ એડ્રેસ સ્ટોર કરવા માટે રચાયેલ ટેક્સ્ટ ઇનપુટ." - -#: includes/fields/class-acf-field-url.php:25 -msgid "URL" -msgstr "URL" - -#: includes/fields/class-acf-field-true_false.php:27 -msgid "" -"A toggle that allows you to pick a value of 1 or 0 (on or off, true or " -"false, etc). Can be presented as a stylized switch or checkbox." -msgstr "" -"એક ટૉગલ જે તમને 1 અથવા 0 (ચાલુ અથવા બંધ, સાચું કે ખોટું, વગેરે) નું મૂલ્ય પસંદ કરવાની મંજૂરી " -"આપે છે. સ્ટાઇલાઇઝ્ડ સ્વીચ અથવા ચેકબોક્સ તરીકે રજૂ કરી શકાય છે." - -#: includes/fields/class-acf-field-time_picker.php:27 -msgid "" -"An interactive UI for picking a time. The time format can be customized " -"using the field settings." -msgstr "" -"સમય પસંદ કરવા માટે એક ઇન્ટરેક્ટિવ UI. ક્ષેત્ર સેટિંગ્સ ઉપયોગ કરીને સમય ફોર્મેટ કસ્ટમાઇઝ કરી " -"શકાય છે." - -#: includes/fields/class-acf-field-textarea.php:26 -msgid "A basic textarea input for storing paragraphs of text." -msgstr "ટેક્સ્ટના ફકરાને સ્ટોર કરવા માટે મૂળભૂત ટેક્સ્ટેરિયા ઇનપુટ." - -#: includes/fields/class-acf-field-text.php:26 -msgid "A basic text input, useful for storing single string values." -msgstr "મૂળભૂત મૂળ લખાણ ઇનપુટ, એક તાર મૂલ્યો સંગ્રહ કરવા માટે ઉપયોગી." - -#: includes/fields/class-acf-field-taxonomy.php:22 -msgid "" -"Allows the selection of one or more taxonomy terms based on the criteria and " -"options specified in the fields settings." -msgstr "" -"ફીલ્ડ સેટિંગ્સમાં ઉલ્લેખિત માપદંડ અને વિકલ્પોના આધારે એક અથવા વધુ વર્ગીકરણ શરતોની પસંદગીની " -"મંજૂરી આપે છે." - -#: includes/fields/class-acf-field-tab.php:28 -msgid "" -"Allows you to group fields into tabbed sections in the edit screen. Useful " -"for keeping fields organized and structured." -msgstr "" -"તમને સંપાદન સ્ક્રીનમાં ટેબ કરેલ વિભાગોમાં ક્ષેત્રોને જૂથબદ્ધ કરવાની મંજૂરી આપે છે. ક્ષેત્રોને " -"વ્યવસ્થિત અને સંરચિત રાખવા માટે ઉપયોગી." - -#: includes/fields/class-acf-field-select.php:27 -msgid "A dropdown list with a selection of choices that you specify." -msgstr "તમે ઉલ્લેખિત કરો છો તે પસંદગીઓની પસંદગી સાથે ડ્રોપડાઉન સૂચિ." - -#: includes/fields/class-acf-field-relationship.php:19 -msgid "" -"A dual-column interface to select one or more posts, pages, or custom post " -"type items to create a relationship with the item that you're currently " -"editing. Includes options to search and filter." -msgstr "" -"તમે હાલમાં સંપાદિત કરી રહ્યાં છો તે આઇટમ સાથે સંબંધ બનાવવા માટે એક અથવા વધુ પોસ્ટ્સ, પૃષ્ઠો " -"અથવા કસ્ટમ પોસ્ટ પ્રકારની આઇટમ્સ પસંદ કરવા માટેનું ડ્યુઅલ-કૉલમ ઇન્ટરફેસ. શોધવા અને ફિલ્ટર " -"કરવાના વિકલ્પોનો સમાવેશ થાય છે." - -#: includes/fields/class-acf-field-range.php:26 -msgid "" -"An input for selecting a numerical value within a specified range using a " -"range slider element." -msgstr "" -"શ્રેણી સ્લાઇડર તત્વનો ઉપયોગ કરીને ઉલ્લેખિત શ્રેણીમાં સંખ્યાત્મક મૂલ્ય પસંદ કરવા માટેનું ઇનપુટ." - -#: includes/fields/class-acf-field-radio.php:27 -msgid "" -"A group of radio button inputs that allows the user to make a single " -"selection from values that you specify." -msgstr "" -"રેડિયો બટન ઇનપુટ્સનું એક જૂથ જે વપરાશકર્તાને તમે ઉલ્લેખિત મૂલ્યોમાંથી એક જ પસંદગી કરવાની " -"મંજૂરી આપે છે." - -#: includes/fields/class-acf-field-post_object.php:19 -msgid "" -"An interactive and customizable UI for picking one or many posts, pages or " -"post type items with the option to search. " -msgstr "" -"શોધવાના વિકલ્પ સાથે એક અથવા ઘણી પોસ્ટ્સ, પૃષ્ઠો અથવા પોસ્ટ પ્રકારની વસ્તુઓ પસંદ કરવા " -"માટે એક ઇન્ટરેક્ટિવ અને વૈવિધ્યપૂર્ણ UI. " - -#: includes/fields/class-acf-field-password.php:26 -msgid "An input for providing a password using a masked field." -msgstr "માસ્ક્ડ ફીલ્ડનો ઉપયોગ કરીને પાસવર્ડ આપવા માટેનું ઇનપુટ." - -#: includes/fields/class-acf-field-page_link.php:476 -#: includes/fields/class-acf-field-post_object.php:381 -#: includes/fields/class-acf-field-relationship.php:593 -msgid "Filter by Post Status" -msgstr "પોસ્ટ સ્ટેટસ દ્વારા ફિલ્ટર કરો" - -#: includes/fields/class-acf-field-page_link.php:27 -msgid "" -"An interactive dropdown to select one or more posts, pages, custom post type " -"items or archive URLs, with the option to search." -msgstr "" -"શોધવાના વિકલ્પ સાથે, એક અથવા વધુ પોસ્ટ્સ, પૃષ્ઠો, કસ્ટમ પોસ્ટ પ્રકારની આઇટમ્સ અથવા " -"આર્કાઇવ URL પસંદ કરવા માટે એક ઇન્ટરેક્ટિવ ડ્રોપડાઉન." - -#: includes/fields/class-acf-field-oembed.php:27 -msgid "" -"An interactive component for embedding videos, images, tweets, audio and " -"other content by making use of the native WordPress oEmbed functionality." -msgstr "" -"મૂળ WordPress oEmbed કાર્યક્ષમતાનો ઉપયોગ કરીને વિડિઓઝ, છબીઓ, ટ્વીટ્સ, ઑડિઓ અને અન્ય " -"સામગ્રીને એમ્બેડ કરવા માટે એક ઇન્ટરેક્ટિવ ઘટક." - -#: includes/fields/class-acf-field-number.php:26 -msgid "An input limited to numerical values." -msgstr "સંખ્યાત્મક મૂલ્યો સુધી મર્યાદિત ઇનપુટ." - -#: includes/fields/class-acf-field-message.php:28 -msgid "" -"Used to display a message to editors alongside other fields. Useful for " -"providing additional context or instructions around your fields." -msgstr "" -"અન્ય ક્ષેત્રોની સાથે સંપાદકોને સંદેશ પ્રદર્શિત કરવા માટે વપરાય છે. તમારા ક્ષેત્રોની આસપાસ " -"વધારાના સંદર્ભ અથવા સૂચનાઓ પ્રદાન કરવા માટે ઉપયોગી." - -#: includes/fields/class-acf-field-link.php:27 -msgid "" -"Allows you to specify a link and its properties such as title and target " -"using the WordPress native link picker." -msgstr "" -"તમને વર્ડપ્રેસ મૂળ લિંક પીકરનો ઉપયોગ કરીને લિંક અને તેના ગુણધર્મો જેવા કે શીર્ષક અને લક્ષ્યનો " -"ઉલ્લેખ કરવાની મંજૂરી આપે છે." - -#: includes/fields/class-acf-field-image.php:27 -msgid "Uses the native WordPress media picker to upload, or choose images." -msgstr "અપલોડ કરવા અથવા છબીઓ પસંદ કરવા માટે મૂળ વર્ડપ્રેસ મીડિયા પીકરનો ઉપયોગ કરે છે." - -#: includes/fields/class-acf-field-group.php:27 -msgid "" -"Provides a way to structure fields into groups to better organize the data " -"and the edit screen." -msgstr "" -"ડેટા અને સંપાદન સ્ક્રીનને વધુ સારી રીતે ગોઠવવા માટે જૂથોમાં ક્ષેત્રોને સંરચિત કરવાનો માર્ગ " -"પૂરો પાડે છે." - -#: includes/fields/class-acf-field-google-map.php:27 -msgid "" -"An interactive UI for selecting a location using Google Maps. Requires a " -"Google Maps API key and additional configuration to display correctly." -msgstr "" -"Google નકશાનો ઉપયોગ કરીને સ્થાન પસંદ કરવા માટે એક ઇન્ટરેક્ટિવ UI. યોગ્ય રીતે પ્રદર્શિત " -"કરવા માટે Google Maps API કી અને વધારાના ગોઠવણીની જરૂર છે." - -#: includes/fields/class-acf-field-file.php:27 -msgid "Uses the native WordPress media picker to upload, or choose files." -msgstr "અપલોડ કરવા અથવા છબીઓ પસંદ કરવા માટે મૂળ વર્ડપ્રેસ મીડિયા પીકરનો ઉપયોગ કરે છે." - -#: includes/fields/class-acf-field-email.php:26 -msgid "A text input specifically designed for storing email addresses." -msgstr "ખાસ કરીને ઈમેલ એડ્રેસ સ્ટોર કરવા માટે રચાયેલ ટેક્સ્ટ ઇનપુટ." - -#: includes/fields/class-acf-field-date_time_picker.php:27 -msgid "" -"An interactive UI for picking a date and time. The date return format can be " -"customized using the field settings." -msgstr "" -"તારીખ અને સમય પસંદ કરવા માટે એક ઇન્ટરેક્ટિવ UI. તારીખ રીટર્ન ફોર્મેટ ફીલ્ડ સેટિંગ્સનો " -"ઉપયોગ કરીને કસ્ટમાઇઝ કરી શકાય છે." - -#: includes/fields/class-acf-field-date_picker.php:27 -msgid "" -"An interactive UI for picking a date. The date return format can be " -"customized using the field settings." -msgstr "" -"સમય પસંદ કરવા માટે એક ઇન્ટરેક્ટિવ UI. ક્ષેત્ર સેટિંગ્સ ઉપયોગ કરીને સમય ફોર્મેટ કસ્ટમાઇઝ કરી " -"શકાય છે." - -#: includes/fields/class-acf-field-color_picker.php:27 -msgid "An interactive UI for selecting a color, or specifying a Hex value." -msgstr "રંગ પસંદ કરવા અથવા હેક્સ મૂલ્યનો ઉલ્લેખ કરવા માટે એક ઇન્ટરેક્ટિવ UI." - -#: includes/fields/class-acf-field-checkbox.php:27 -msgid "" -"A group of checkbox inputs that allow the user to select one, or multiple " -"values that you specify." -msgstr "" -"ચેકબૉક્સ ઇનપુટ્સનું જૂથ કે જે વપરાશકર્તાને તમે ઉલ્લેખિત કરો છો તે એક અથવા બહુવિધ મૂલ્યો પસંદ " -"કરવાની મંજૂરી આપે છે." - -#: includes/fields/class-acf-field-button-group.php:26 -msgid "" -"A group of buttons with values that you specify, users can choose one option " -"from the values provided." -msgstr "" -"તમે ઉલ્લેખિત કરેલ મૂલ્યો સાથેના બટનોનું જૂથ, વપરાશકર્તાઓ પ્રદાન કરેલ મૂલ્યોમાંથી એક વિકલ્પ " -"પસંદ કરી શકે છે." - -#: includes/fields/class-acf-field-accordion.php:27 -msgid "" -"Allows you to group and organize custom fields into collapsable panels that " -"are shown while editing content. Useful for keeping large datasets tidy." -msgstr "" -"તમને કન્ટેન્ટ સંપાદિત કરતી વખતે બતાવવામાં આવતી સંકુચિત પેનલ્સમાં કસ્ટમ ફીલ્ડ્સને જૂથ અને " -"ગોઠવવાની મંજૂરી આપે છે. મોટા ડેટાસેટ્સને વ્યવસ્થિત રાખવા માટે ઉપયોગી." - -#: includes/fields.php:475 -msgid "" -"This provides a solution for repeating content such as slides, team members, " -"and call-to-action tiles, by acting as a parent to a set of subfields which " -"can be repeated again and again." -msgstr "" -"આ સ્લાઇડ્સ, ટીમના સભ્યો અને કૉલ-ટુ-એક્શન ટાઇલ્સ જેવી સામગ્રીને પુનરાવર્તિત કરવા માટેનો " -"ઉકેલ પૂરો પાડે છે, પેરન્ટ તરીકે કામ કરીને પેટાફિલ્ડના સમૂહ કે જેને વારંવાર પુનરાવર્તિત કરી " -"શકાય છે." - -#: includes/fields.php:465 -msgid "" -"This provides an interactive interface for managing a collection of " -"attachments. Most settings are similar to the Image field type. Additional " -"settings allow you to specify where new attachments are added in the gallery " -"and the minimum/maximum number of attachments allowed." -msgstr "" -"આ જોડાણોના સંગ્રહનું સંચાલન કરવા માટે એક ઇન્ટરેક્ટિવ ઇન્ટરફેસ પૂરું પાડે છે. મોટાભાગની સેટિંગ્સ " -"ઇમેજ ફીલ્ડના પ્રકાર જેવી જ હોય ​​છે. વધારાની સેટિંગ્સ તમને ગેલેરીમાં નવા જોડાણો ક્યાં " -"ઉમેરવામાં આવે છે અને જોડાણોની ન્યૂનતમ/મહત્તમ સંખ્યાને મંજૂરી આપે છે તેનો ઉલ્લેખ કરવાની મંજૂરી આપે " -"છે." - -#: includes/fields.php:455 -msgid "" -"This provides a simple, structured, layout-based editor. The Flexible " -"Content field allows you to define, create and manage content with total " -"control by using layouts and subfields to design the available blocks." -msgstr "" -"આ એક સરળ, સંરચિત, લેઆઉટ-આધારિત સંપાદક પ્રદાન કરે છે. લવચીક સામગ્રી ક્ષેત્ર તમને ઉપલબ્ધ " -"બ્લોક્સ ડિઝાઇન કરવા માટે લેઆઉટ અને સબફિલ્ડનો ઉપયોગ કરીને સંપૂર્ણ નિયંત્રણ સાથે સામગ્રીને " -"વ્યાખ્યાયિત કરવા, બનાવવા અને સંચાલિત કરવાની મંજૂરી આપે છે." - -#: includes/fields.php:445 -msgid "" -"This allows you to select and display existing fields. It does not duplicate " -"any fields in the database, but loads and displays the selected fields at " -"run-time. The Clone field can either replace itself with the selected fields " -"or display the selected fields as a group of subfields." -msgstr "" -"આ તમને વર્તમાન ક્ષેત્રોને પસંદ કરવા અને પ્રદર્શિત કરવાની મંજૂરી આપે છે. તે ડેટાબેઝમાં કોઈપણ " -"ફીલ્ડની નકલ કરતું નથી, પરંતુ રન-ટાઇમ પર પસંદ કરેલ ફીલ્ડ્સને લોડ કરે છે અને પ્રદર્શિત કરે છે. " -"ક્લોન ફીલ્ડ કાં તો પોતાને પસંદ કરેલ ફીલ્ડ્સ સાથે બદલી શકે છે અથવા પસંદ કરેલ ફીલ્ડ્સને " -"સબફિલ્ડના જૂથ તરીકે પ્રદર્શિત કરી શકે છે." - -#: includes/fields.php:442 -msgctxt "noun" -msgid "Clone" -msgstr "ક્લોન" - -#: includes/admin/views/global/navigation.php:86 includes/fields.php:357 -msgid "PRO" -msgstr "પ્રો" - -#: includes/fields.php:355 includes/fields.php:412 -msgid "Advanced" -msgstr "અદ્યતન" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:85 -msgid "JSON (newer)" -msgstr "JSON (નવું)" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:81 -msgid "Original" -msgstr "અસલ" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:55 -msgid "Invalid post ID." -msgstr "અમાન્ય પોસ્ટ આઈડી." - -#: includes/ajax/class-acf-ajax-local-json-diff.php:47 -msgid "Invalid post type selected for review." -msgstr "સમીક્ષા માટે અમાન્ય પોસ્ટ પ્રકાર પસંદ કર્યો." - -#: includes/admin/views/global/navigation.php:186 -msgid "More" -msgstr "વધુ" - -#: includes/admin/views/browse-fields-modal.php:86 -msgid "Tutorial" -msgstr "ટ્યુટોરીયલ" - -#: includes/admin/views/browse-fields-modal.php:75 -msgid "Available with ACF PRO" -msgstr "ACF PRO સાથે ઉપલબ્ધ છે" - -#: includes/admin/views/browse-fields-modal.php:63 -msgid "Select Field" -msgstr "ક્ષેત્ર પસંદ કરો" - -#. translators: %s: A link to the popular fields used in ACF -#: includes/admin/views/browse-fields-modal.php:50 -msgid "Try a different search term or browse %s" -msgstr "એક અલગ શોધ શબ્દ અજમાવો અથવા %s બ્રાઉઝ કરો" - -#: includes/admin/views/browse-fields-modal.php:47 -msgid "Popular fields" -msgstr "લોકપ્રિય ક્ષેત્રો" - -#. translators: %s: The invalid search term -#: includes/admin/views/browse-fields-modal.php:40 -msgid "No search results for '%s'" -msgstr "'%s' માટે કોઈ શોધ પરિણામો નથી" - -#: includes/admin/views/browse-fields-modal.php:13 -msgid "Search fields..." -msgstr "ફીલ્ડ્સ શોધો..." - -#: includes/admin/views/browse-fields-modal.php:11 -msgid "Select Field Type" -msgstr "ક્ષેત્ર પ્રકાર પસંદ કરો" - -#: includes/admin/views/browse-fields-modal.php:4 -msgid "Popular" -msgstr "પ્રખ્યાત" - -#: includes/admin/views/acf-taxonomy/list-empty.php:7 -msgid "Add Taxonomy" -msgstr "વર્ગીકરણ ઉમેરો" - -#: includes/admin/views/acf-taxonomy/list-empty.php:6 -msgid "Create custom taxonomies to classify post type content" -msgstr "પોસ્ટ પ્રકારની સામગ્રીને વર્ગીકૃત કરવા માટે કસ્ટમ વર્ગીકરણ બનાવો" - -#: includes/admin/views/acf-taxonomy/list-empty.php:5 -msgid "Add Your First Taxonomy" -msgstr "તમારી પ્રથમ વર્ગીકરણ ઉમેરો" - -#: includes/admin/views/acf-taxonomy/basic-settings.php:122 -msgid "Hierarchical taxonomies can have descendants (like categories)." -msgstr "અધિક્રમિક વર્ગીકરણમાં વંશજો હોઈ શકે છે (જેમ કે શ્રેણીઓ)." - -#: includes/admin/views/acf-taxonomy/basic-settings.php:107 -msgid "Makes a taxonomy visible on the frontend and in the admin dashboard." -msgstr "અગ્રભાગ પર અને એડમિન ડેશબોર્ડમાં વર્ગીકરણ દૃશ્યમાન બનાવે છે." - -#: includes/admin/views/acf-taxonomy/basic-settings.php:91 -msgid "One or many post types that can be classified with this taxonomy." -msgstr "આ વર્ગીકરણ સાથે વર્ગીકૃત કરી શકાય તેવા એક અથવા ઘણા પોસ્ટ પ્રકારો." - -#. translators: example taxonomy -#: includes/admin/views/acf-taxonomy/basic-settings.php:60 -msgid "genre" -msgstr "શૈલી" - -#. translators: example taxonomy -#: includes/admin/views/acf-taxonomy/basic-settings.php:42 -msgid "Genre" -msgstr "શૈલી" - -#. translators: example taxonomy -#: includes/admin/views/acf-taxonomy/basic-settings.php:25 -msgid "Genres" -msgstr "શૈલીઓ" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1211 -msgid "" -"Optional custom controller to use instead of `WP_REST_Terms_Controller `." -msgstr "`WP_REST_Terms_Controller` ને બદલે વાપરવા માટે વૈકલ્પિક કસ્ટમ નિયંત્રક." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1155 -msgid "Expose this post type in the REST API." -msgstr "REST API માં આ પોસ્ટ પ્રકારનો પર્દાફાશ કરો." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1055 -msgid "Customize the query variable name" -msgstr "ક્વેરી વેરીએબલ નામને કસ્ટમાઇઝ કરો" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1028 -msgid "" -"Terms can be accessed using the non-pretty permalink, e.g., {query_var}" -"={term_slug}." -msgstr "" -"બિન-સુંદર પરમાલિંકનો ઉપયોગ કરીને શરતોને ઍક્સેસ કરી શકાય છે, દા.ત., {query_var}" -"={term_slug}." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:981 -msgid "Parent-child terms in URLs for hierarchical taxonomies." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:941 -msgid "Customize the slug used in the URL" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:924 -msgid "Permalinks for this taxonomy are disabled." -msgstr "આ વર્ગીકરણ માટે પરમાલિંક્સ અક્ષમ છે." - -#. translators: this string will be appended with the new permalink structure. -#: includes/admin/views/acf-taxonomy/advanced-settings.php:921 -msgid "" -"Rewrite the URL using the taxonomy key as the slug. Your permalink structure " -"will be" -msgstr "સ્લગ તરીકે વર્ગીકરણ કીનો ઉપયોગ કરીને URL ને ફરીથી લખો. તમારું પરમાલિંક માળખું હશે" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:913 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1030 -#: includes/admin/views/acf-taxonomy/basic-settings.php:57 -msgid "Taxonomy Key" -msgstr "વર્ગીકરણ કી" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:911 -msgid "Select the type of permalink to use for this taxonomy." -msgstr "આ વર્ગીકરણ માટે વાપરવા માટે પરમાલિંકનો પ્રકાર પસંદ કરો." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:896 -msgid "Display a column for the taxonomy on post type listing screens." -msgstr "પોસ્ટ ટાઇપ લિસ્ટિંગ સ્ક્રીન પર વર્ગીકરણ માટે કૉલમ પ્રદર્શિત કરો." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:895 -msgid "Show Admin Column" -msgstr "એડમિન કૉલમ બતાવો" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:882 -msgid "Show the taxonomy in the quick/bulk edit panel." -msgstr "ઝડપી/બલ્ક સંપાદન પેનલમાં વર્ગીકરણ બતાવો." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:881 -msgid "Quick Edit" -msgstr "ઝડપી સંપાદન" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:868 -msgid "List the taxonomy in the Tag Cloud Widget controls." -msgstr "ટેગ ક્લાઉડ વિજેટ નિયંત્રણોમાં વર્ગીકરણની સૂચિ બનાવો." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:867 -msgid "Tag Cloud" -msgstr "ટૅગ ક્લાઉડ" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:824 -msgid "" -"A PHP function name to be called for sanitizing taxonomy data saved from a " -"meta box." -msgstr "" -"મેટા બૉક્સમાંથી સાચવેલા વર્ગીકરણ ડેટાને સેનિટાઇઝ કરવા માટે કૉલ કરવા માટે PHP ફંક્શન નામ." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:823 -msgid "Meta Box Sanitization Callback" -msgstr "મેટા બોક્સ સેનિટાઈઝેશન કોલબેક" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:805 -msgid "" -"A PHP function name to be called to handle the content of a meta box on your " -"taxonomy." -msgstr "" -"તમારા વર્ગીકરણ પર મેટા બોક્સની સામગ્રીને હેન્ડલ કરવા માટે કૉલ કરવા માટે PHP ફંક્શન નામ." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:804 -msgid "Register Meta Box Callback" -msgstr "મેટા બોક્સ કોલબેક રજીસ્ટર કરો" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:763 -msgid "No Meta Box" -msgstr "કોઈ મેટા બોક્સ નથી" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:762 -msgid "Custom Meta Box" -msgstr "કસ્ટમ મેટા બોક્સ" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:758 -msgid "" -"Controls the meta box on the content editor screen. By default, the " -"Categories meta box is shown for hierarchical taxonomies, and the Tags meta " -"box is shown for non-hierarchical taxonomies." -msgstr "" -"સામગ્રી સંપાદક સ્ક્રીન પરના મેટા બોક્સને નિયંત્રિત કરે છે. મૂળભૂત રીતે, શ્રેણીઓ મેટા બોક્સ " -"અધિક્રમિક વર્ગીકરણ માટે બતાવવામાં આવે છે, અને ટૅગ્સ મેટા બૉક્સ બિન-હાયરાર્કિકલ વર્ગીકરણ " -"માટે બતાવવામાં આવે છે." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:757 -msgid "Meta Box" -msgstr "મેટા બોક્સ" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:746 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:767 -msgid "Categories Meta Box" -msgstr "શ્રેણીઓ મેટા બોક્સ" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:745 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:766 -msgid "Tags Meta Box" -msgstr "ટૅગ્સ મેટા બોક્સ" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:704 -msgid "A link to a tag" -msgstr "ટેગની લિંક" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:703 -msgid "Describes a navigation link block variation used in the block editor." -msgstr "બ્લોક એડિટરમાં વપરાતી નેવિગેશન લિંક બ્લોક ભિન્નતાનું વર્ણન કરે છે." - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:698 -msgid "A link to a %s" -msgstr "%s ની લિંક" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:683 -msgid "Tag Link" -msgstr "ટૅગ લિંક" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:682 -msgid "" -"Assigns a title for navigation link block variation used in the block editor." -msgstr "બ્લોક એડિટરમાં વપરાતી નેવિગેશન લિંક બ્લોક ભિન્નતાનું વર્ણન કરે છે." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:663 -msgid "← Go to tags" -msgstr "← ટૅગ્સ પર જાઓ" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:662 -msgid "" -"Assigns the text used to link back to the main index after updating a term." -msgstr "" -"શબ્દને અપડેટ કર્યા પછી મુખ્ય અનુક્રમણિકા સાથે પાછા લિંક કરવા માટે વપરાયેલ ટેક્સ્ટને સોંપે છે." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:661 -msgid "Back To Items" -msgstr "આઇટમ્સ પર પાછા ફરો" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:657 -msgid "← Go to %s" -msgstr "← %s પર જાઓ" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:642 -msgid "Tags list" -msgstr "ટૅગ્સની સૂચિ" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:641 -msgid "Assigns text to the table hidden heading." -msgstr "કોષ્ટક છુપાયેલા મથાળાને ટેક્સ્ટ અસાઇન કરે છે." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:622 -msgid "Tags list navigation" -msgstr "ટૅગ્સ સૂચિ નેવિગેશન" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:621 -msgid "Assigns text to the table pagination hidden heading." -msgstr "કોષ્ટક પૃષ્ઠ ક્રમાંકન છુપાયેલા મથાળાને ટેક્સ્ટ અસાઇન કરે છે." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:597 -msgid "Filter by category" -msgstr "શ્રેણી દ્વારા ફિલ્ટર કરો" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:596 -msgid "Assigns text to the filter button in the posts lists table." -msgstr "પોસ્ટ લિસ્ટ ટેબલમાં ફિલ્ટર બટન પર ટેક્સ્ટ અસાઇન કરે છે." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:595 -msgid "Filter By Item" -msgstr "આઇટમ દ્વારા ફિલ્ટર કરો" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:591 -msgid "Filter by %s" -msgstr "%s દ્વારા ફિલ્ટર કરો" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:575 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:576 -msgid "" -"The description is not prominent by default; however, some themes may show " -"it." -msgstr "આ વર્ણન મૂળભૂત રીતે જાણીતું નથી; તેમ છતાં, કોઈક થિમમા કદાચ દેખાય." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:574 -msgid "Describes the Description field on the Edit Tags screen." -msgstr "એડિટ ટૅગ્સ સ્ક્રીન પર પેરેન્ટ ફીલ્ડનું વર્ણન કરે છે." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:573 -msgid "Description Field Description" -msgstr "વર્ણન ક્ષેત્રનું વર્ણન" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:554 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:555 -msgid "" -"Assign a parent term to create a hierarchy. The term Jazz, for example, " -"would be the parent of Bebop and Big Band" -msgstr "" -"અધિક્રમ(hierarchy) બનાવવા માટે એક પેરન્ટ ટર્મ સોંપો. ઉદાહરણ તરીકે જાઝ ટર્મ, બેબોપ અને " -"બિગ બેન્ડની પેરન્ટ હશે." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:553 -msgid "Describes the Parent field on the Edit Tags screen." -msgstr "એડિટ ટૅગ્સ સ્ક્રીન પર પેરેન્ટ ફીલ્ડનું વર્ણન કરે છે." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:552 -msgid "Parent Field Description" -msgstr "પિતૃ ક્ષેત્રનું વર્ણન" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:538 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:539 -msgid "" -"The \"slug\" is the URL-friendly version of the name. It is usually all " -"lower case and contains only letters, numbers, and hyphens." -msgstr "" -"\"સ્લગ\" એ નામનું URL-મૈત્રીપૂર્ણ સંસ્કરણ છે. તે સામાન્ય રીતે બધા લોઅરકેસ હોય છે અને તેમાં " -"માત્ર અક્ષરો, સંખ્યાઓ અને હાઇફન્સ હોય છે." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:537 -msgid "Describes the Slug field on the Edit Tags screen." -msgstr "એડિટ ટૅગ્સ સ્ક્રીન પર નામ ફીલ્ડનું વર્ણન કરે છે." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:536 -msgid "Slug Field Description" -msgstr "નામ ક્ષેત્ર વર્ણન" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:522 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:523 -msgid "The name is how it appears on your site" -msgstr "નામ જે તમારી સાઇટ પર દેખાશે." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:521 -msgid "Describes the Name field on the Edit Tags screen." -msgstr "એડિટ ટૅગ્સ સ્ક્રીન પર નામ ફીલ્ડનું વર્ણન કરે છે." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:520 -msgid "Name Field Description" -msgstr "નામ ક્ષેત્ર વર્ણન" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:507 -msgid "No tags" -msgstr "ટૅગ્સ નથી" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:506 -msgid "" -"Assigns the text displayed in the posts and media list tables when no tags " -"or categories are available." -msgstr "" -"જ્યારે કોઈ ટૅગ્સ અથવા કૅટેગરીઝ ઉપલબ્ધ ન હોય ત્યારે પોસ્ટ્સ અને મીડિયા સૂચિ કોષ્ટકોમાં " -"પ્રદર્શિત ટેક્સ્ટને અસાઇન કરે છે." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:505 -msgid "No Terms" -msgstr "કોઈ શરતો નથી" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:501 -msgid "No %s" -msgstr "ના %s" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:486 -msgid "No tags found" -msgstr "કોઈ ટેગ મળ્યા નથી" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:485 -msgid "" -"Assigns the text displayed when clicking the 'choose from most used' text in " -"the taxonomy meta box when no tags are available, and assigns the text used " -"in the terms list table when there are no items for a taxonomy." -msgstr "" -"જ્યારે કોઈ ટૅગ્સ ઉપલબ્ધ ન હોય ત્યારે વર્ગીકરણ મેટા બૉક્સમાં 'સૌથી વધુ વપરાયેલામાંથી પસંદ " -"કરો' ટેક્સ્ટને ક્લિક કરતી વખતે પ્રદર્શિત ટેક્સ્ટને અસાઇન કરે છે અને જ્યારે વર્ગીકરણ માટે કોઈ " -"આઇટમ ન હોય ત્યારે ટર્મ્સ લિસ્ટ કોષ્ટકમાં વપરાયેલ ટેક્સ્ટને અસાઇન કરે છે." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:484 -msgid "Not Found" -msgstr "મળ્યું નથી" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:463 -msgid "Assigns text to the Title field of the Most Used tab." -msgstr "સૌથી વધુ ઉપયોગમાં લેવાતી ટેબના શીર્ષક ક્ષેત્રમાં ટેક્સ્ટ અસાઇન કરે છે." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:462 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:464 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:465 -msgid "Most Used" -msgstr "સૌથી વધુ વપરાયેલ" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:444 -msgid "Choose from the most used tags" -msgstr "સૌથી વધુ ઉપયોગ થયેલ ટૅગ્સ માંથી પસંદ કરો" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:443 -msgid "" -"Assigns the 'choose from most used' text used in the meta box when " -"JavaScript is disabled. Only used on non-hierarchical taxonomies." -msgstr "" -"જ્યારે JavaScript અક્ષમ હોય ત્યારે મેટા બૉક્સમાં વપરાયેલ 'સૌથી વધુ ઉપયોગમાંથી પસંદ કરો' " -"ટેક્સ્ટને અસાઇન કરે છે. માત્ર બિન-હાયરાર્કીકલ વર્ગીકરણ પર વપરાય છે." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:442 -msgid "Choose From Most Used" -msgstr "સૌથી વધુ વપરાયેલમાંથી પસંદ કરો" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:438 -msgid "Choose from the most used %s" -msgstr "%s સૌથી વધુ ઉપયોગ થયેલ ટૅગ્સ માંથી પસંદ કરો" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:418 -msgid "Add or remove tags" -msgstr "ટૅગ્સ ઉમેરો અથવા દૂર કરો" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:417 -msgid "" -"Assigns the add or remove items text used in the meta box when JavaScript is " -"disabled. Only used on non-hierarchical taxonomies" -msgstr "" -"જ્યારે JavaScript અક્ષમ હોય ત્યારે મેટા બૉક્સમાં ઉપયોગમાં લેવાતી આઇટમ્સ ઉમેરો અથવા દૂર " -"કરો ટેક્સ્ટને સોંપે છે. માત્ર બિન-હાયરાર્કીકલ વર્ગીકરણ પર વપરાય છે" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:416 -msgid "Add Or Remove Items" -msgstr "વસ્તુઓ ઉમેરો અથવા દૂર કરો" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:412 -msgid "Add or remove %s" -msgstr "%s ઉમેરો અથવા દૂર કરો" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:392 -msgid "Separate tags with commas" -msgstr "અલ્પવિરામથી ટૅગ્સ અલગ કરો" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:391 -msgid "" -"Assigns the separate item with commas text used in the taxonomy meta box. " -"Only used on non-hierarchical taxonomies." -msgstr "" -"વર્ગીકરણ મેટા બોક્સમાં વપરાયેલ અલ્પવિરામ ટેક્સ્ટ સાથે અલગ આઇટમ સોંપે છે. માત્ર બિન-" -"હાયરાર્કીકલ વર્ગીકરણ પર વપરાય છે." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:390 -msgid "Separate Items With Commas" -msgstr "અલ્પવિરામથી ટૅગ્સ અલગ કરો" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:386 -msgid "Separate %s with commas" -msgstr "અલ્પવિરામથી %s ને અલગ કરો" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:366 -msgid "Popular Tags" -msgstr "લોકપ્રિય ટૅગ્સ" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:365 -msgid "Assigns popular items text. Only used for non-hierarchical taxonomies." -msgstr "લોકપ્રિય આઇટમ ટેક્સ્ટ અસાઇન કરે છે. માત્ર બિન-હાયરાર્કીકલ વર્ગીકરણ માટે વપરાય છે." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:364 -msgid "Popular Items" -msgstr "લોકપ્રિય વસ્તુઓ" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:361 -msgid "Popular %s" -msgstr "લોકપ્રિય %s" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:347 -msgid "Search Tags" -msgstr "ટૅગ્સ શોધો" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:346 -msgid "Assigns search items text." -msgstr "શોધ આઇટમ ટેક્સ્ટ સોંપે છે." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:323 -msgid "Parent Category:" -msgstr "પિતૃ શ્રેણી:" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:322 -msgid "Assigns parent item text, but with a colon (:) added to the end." -msgstr "પેરેન્ટ આઇટમ ટેક્સ્ટ અસાઇન કરે છે, પરંતુ અંતમાં કોલોન (:) સાથે ઉમેરવામાં આવે છે." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:321 -msgid "Parent Item With Colon" -msgstr "કોલોન સાથે પિતૃ શ્રેણી" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:298 -msgid "Parent Category" -msgstr "પિતૃ શ્રેણી" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:297 -msgid "Assigns parent item text. Only used on hierarchical taxonomies." -msgstr "પેરેન્ટ આઇટમ ટેક્સ્ટ અસાઇન કરે છે. માત્ર અધિક્રમિક વર્ગીકરણ પર વપરાય છે." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:296 -msgid "Parent Item" -msgstr "પિતૃ વસ્તુ" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:293 -msgid "Parent %s" -msgstr "પેરન્ટ %s" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:278 -msgid "New Tag Name" -msgstr "નવા ટેગ નું નામ" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:277 -msgid "Assigns the new item name text." -msgstr "નવી આઇટમ નામનો ટેક્સ્ટ અસાઇન કરે છે." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:276 -msgid "New Item Name" -msgstr "નવી આઇટમનું નામ" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:273 -msgid "New %s Name" -msgstr "નવું %s નામ" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:258 -msgid "Add New Tag" -msgstr "નવું ટેગ ઉમેરો" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:257 -msgid "Assigns the add new item text." -msgstr "નવી આઇટમ ઉમેરો ટેક્સ્ટ સોંપે છે." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:238 -msgid "Update Tag" -msgstr "અદ્યતન ટેગ" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:237 -msgid "Assigns the update item text." -msgstr "અપડેટ આઇટમ ટેક્સ્ટ સોંપે છે." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:236 -msgid "Update Item" -msgstr "આઇટમ અપડેટ કરો" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:233 -msgid "Update %s" -msgstr "%s અપડેટ કરો" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:218 -msgid "View Tag" -msgstr "ટેગ જુઓ" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:217 -msgid "In the admin bar to view term during editing." -msgstr "સંપાદન દરમિયાન શબ્દ જોવા માટે એડમિન બારમાં." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:198 -msgid "Edit Tag" -msgstr "ટેગ માં ફેરફાર કરો" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:197 -msgid "At the top of the editor screen when editing a term." -msgstr "શબ્દ સંપાદિત કરતી વખતે સંપાદક સ્ક્રીનની ટોચ પર." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:178 -msgid "All Tags" -msgstr "બધા ટૅગ્સ" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:177 -msgid "Assigns the all items text." -msgstr "બધી આઇટમ ટેક્સ્ટ અસાઇન કરે છે." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:158 -msgid "Assigns the menu name text." -msgstr "મેનુ નામ લખાણ સોંપે છે." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:157 -msgid "Menu Label" -msgstr "મેનુ લેબલ" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:131 -msgid "Active taxonomies are enabled and registered with WordPress." -msgstr "સક્રિય વર્ગીકરણ વર્ડપ્રેસ સાથે સક્ષમ અને નોંધાયેલ છે." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:115 -msgid "A descriptive summary of the taxonomy." -msgstr "વર્ગીકરણનો વર્ણનાત્મક સારાંશ." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:95 -msgid "A descriptive summary of the term." -msgstr "શબ્દનો વર્ણનાત્મક સારાંશ." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:94 -msgid "Term Description" -msgstr "ટર્મ વર્ણન" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:76 -msgid "Single word, no spaces. Underscores and dashes allowed." -msgstr "એક શબ્દ, કોઈ જગ્યા નથી. અન્ડરસ્કોર અને ડેશની મંજૂરી છે." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:75 -msgid "Term Slug" -msgstr "ટર્મ સ્લગ" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:56 -msgid "The name of the default term." -msgstr "મૂળભૂત શબ્દનું નામ." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:55 -msgid "Term Name" -msgstr "ટર્મ નામ" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:41 -msgid "" -"Create a term for the taxonomy that cannot be deleted. It will not be " -"selected for posts by default." -msgstr "" -"વર્ગીકરણ માટે એક શબ્દ બનાવો કે જેને કાઢી ન શકાય. તે મૂળભૂત રીતે પોસ્ટ્સ માટે પસંદ કરવામાં " -"આવશે નહીં." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:40 -msgid "Default Term" -msgstr "ડિફૉલ્ટ ટર્મ" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:28 -msgid "" -"Whether terms in this taxonomy should be sorted in the order they are " -"provided to `wp_set_object_terms()`." -msgstr "" -"શું આ વર્ગીકરણની શરતો `wp_set_object_terms()` ને પ્રદાન કરવામાં આવી છે તે ક્રમમાં સૉર્ટ " -"કરવી જોઈએ." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:27 -msgid "Sort Terms" -msgstr "સૉર્ટ શરતો" - -#: includes/admin/views/acf-post-type/list-empty.php:7 -msgid "Add Post Type" -msgstr "નવો પોસ્ટ પ્રકાર" - -#: includes/admin/views/acf-post-type/list-empty.php:6 -msgid "" -"Expand the functionality of WordPress beyond standard posts and pages with " -"custom post types." -msgstr "" -"વર્ડપ્રેસની કાર્યક્ષમતાને કસ્ટમ પોસ્ટ પ્રકારો સાથે પ્રમાણભૂત પોસ્ટ્સ અને પૃષ્ઠોથી આગળ વિસ્તૃત " -"કરો" - -#: includes/admin/views/acf-post-type/list-empty.php:5 -msgid "Add Your First Post Type" -msgstr "તમારો પ્રથમ પોસ્ટ પ્રકાર ઉમેરો" - -#: includes/admin/views/acf-post-type/basic-settings.php:136 -#: includes/admin/views/acf-taxonomy/basic-settings.php:135 -msgid "I know what I'm doing, show me all the options." -msgstr "હું જાણું છું કે હું શું કરી રહ્યો છું, મને બધા વિકલ્પો બતાવો." - -#: includes/admin/views/acf-post-type/basic-settings.php:135 -#: includes/admin/views/acf-taxonomy/basic-settings.php:134 -msgid "Advanced Configuration" -msgstr "અદ્યતન રૂપરેખાંકન" - -#: includes/admin/views/acf-post-type/basic-settings.php:123 -msgid "Hierarchical post types can have descendants (like pages)." -msgstr "અધિક્રમિક વર્ગીકરણમાં વંશજો હોઈ શકે છે (જેમ કે શ્રેણીઓ)." - -#: includes/admin/views/acf-post-type/basic-settings.php:122 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:980 -#: includes/admin/views/acf-taxonomy/basic-settings.php:121 -msgid "Hierarchical" -msgstr "વંશવેલો" - -#: includes/admin/views/acf-post-type/basic-settings.php:107 -msgid "Visible on the frontend and in the admin dashboard." -msgstr "અગ્રભાગ પર અને એડમિન ડેશબોર્ડમાં દૃશ્યમાન." - -#: includes/admin/views/acf-post-type/basic-settings.php:106 -#: includes/admin/views/acf-taxonomy/basic-settings.php:106 -msgid "Public" -msgstr "પબ્લિક" - -#. translators: example post type -#: includes/admin/views/acf-post-type/basic-settings.php:59 -msgid "movie" -msgstr "ફિલ્મ" - -#: includes/admin/views/acf-post-type/basic-settings.php:57 -msgid "Lower case letters, underscores and dashes only, Max 20 characters." -msgstr "લોઅર કેસ અક્ષરો, માત્ર અન્ડરસ્કોર અને ડૅશ, મહત્તમ ૨૦ અક્ષરો." - -#. translators: example post type -#: includes/admin/views/acf-post-type/basic-settings.php:41 -msgid "Movie" -msgstr "ફિલ્મ" - -#: includes/admin/views/acf-post-type/basic-settings.php:39 -#: includes/admin/views/acf-taxonomy/basic-settings.php:40 -msgid "Singular Label" -msgstr "એકવચન નામ" - -#. translators: example post type -#: includes/admin/views/acf-post-type/basic-settings.php:24 -msgid "Movies" -msgstr "મૂવીઝ" - -#: includes/admin/views/acf-post-type/basic-settings.php:22 -#: includes/admin/views/acf-taxonomy/basic-settings.php:23 -msgid "Plural Label" -msgstr "બહુવચન નામ" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1270 -msgid "" -"Optional custom controller to use instead of `WP_REST_Posts_Controller`." -msgstr "`WP_REST_Posts_Controller` ને બદલે વાપરવા માટે વૈકલ્પિક કસ્ટમ નિયંત્રક." - -#: includes/admin/views/acf-post-type/advanced-settings.php:1269 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1210 -msgid "Controller Class" -msgstr "નિયંત્રક વર્ગ" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1251 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1191 -msgid "The namespace part of the REST API URL." -msgstr "REST API URL નો નેમસ્પેસ ભાગ." - -#: includes/admin/views/acf-post-type/advanced-settings.php:1250 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1190 -msgid "Namespace Route" -msgstr "નેમસ્પેસ રૂટ" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1232 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1172 -msgid "The base URL for the post type REST API URLs." -msgstr "પોસ્ટ પ્રકાર REST API URL માટે આધાર URL." - -#: includes/admin/views/acf-post-type/advanced-settings.php:1231 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1171 -msgid "Base URL" -msgstr "આધાર URL" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1217 -msgid "" -"Exposes this post type in the REST API. Required to use the block editor." -msgstr "" -"REST API માં આ પોસ્ટ પ્રકારનો પર્દાફાશ કરે છે. બ્લોક એડિટરનો ઉપયોગ કરવા માટે જરૂરી છે." - -#: includes/admin/views/acf-post-type/advanced-settings.php:1216 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1154 -msgid "Show In REST API" -msgstr "REST API માં બતાવો" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1195 -msgid "Customize the query variable name." -msgstr "ક્વેરી વેરીએબલ નામને કસ્ટમાઇઝ કરો" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1194 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1054 -msgid "Query Variable" -msgstr "ક્વેરી વેરીએબલ" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1172 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1032 -msgid "No Query Variable Support" -msgstr "કોઈ ક્વેરી વેરીએબલ સપોર્ટ નથી" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1171 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1031 -msgid "Custom Query Variable" -msgstr "કસ્ટમ ક્વેરી વેરીએબલ" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1168 -msgid "" -"Items can be accessed using the non-pretty permalink, eg. {post_type}" -"={post_slug}." -msgstr "" -"બિન-સુંદર પરમાલિંકનો ઉપયોગ કરીને શરતોને ઍક્સેસ કરી શકાય છે, દા.ત., {query_var}" -"={term_slug}." - -#: includes/admin/views/acf-post-type/advanced-settings.php:1167 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1027 -msgid "Query Variable Support" -msgstr "વેરીએબલ સપોર્ટ ક્વેરી" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1142 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1003 -msgid "URLs for an item and items can be accessed with a query string." -msgstr "આઇટમ અને આઇટમ્સ માટેના URL ને ક્વેરી સ્ટ્રિંગ વડે એક્સેસ કરી શકાય છે." - -#: includes/admin/views/acf-post-type/advanced-settings.php:1141 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1002 -msgid "Publicly Queryable" -msgstr "સાર્વજનિક રૂપે પૂછવા યોગ્ય" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1120 -msgid "Custom slug for the Archive URL." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1119 -msgid "Archive Slug" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1106 -msgid "" -"Has an item archive that can be customized with an archive template file in " -"your theme." -msgstr "" -"તમારી થીમમાં આર્કાઇવ ટેમ્પલેટ ફાઇલ સાથે કસ્ટમાઇઝ કરી શકાય તેવી આઇટમ આર્કાઇવ ધરાવે છે." - -#: includes/admin/views/acf-post-type/advanced-settings.php:1105 -msgid "Archive" -msgstr "આર્કાઇવ્સ" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1085 -msgid "Pagination support for the items URLs such as the archives." -msgstr "આર્કાઇવ્સ જેવી વસ્તુઓ URL માટે પૃષ્ઠ ક્રમાંકન સપોર્ટ." - -#: includes/admin/views/acf-post-type/advanced-settings.php:1084 -msgid "Pagination" -msgstr "પૃષ્ઠ ક્રમાંકન" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1067 -msgid "RSS feed URL for the post type items." -msgstr "પોસ્ટ પ્રકારની વસ્તુઓ માટે RSS ફીડ URL." - -#: includes/admin/views/acf-post-type/advanced-settings.php:1066 -msgid "Feed URL" -msgstr "ફીડ URL" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1048 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:961 -msgid "" -"Alters the permalink structure to add the `WP_Rewrite::$front` prefix to " -"URLs." -msgstr "URL માં `WP_Rwrite::$front` ઉપસર્ગ ઉમેરવા માટે પરમાલિંક માળખું બદલે છે." - -#: includes/admin/views/acf-post-type/advanced-settings.php:1047 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:960 -msgid "Front URL Prefix" -msgstr "ફ્રન્ટ URL ઉપસર્ગ" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1028 -msgid "Customize the slug used in the URL." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1027 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:940 -msgid "URL Slug" -msgstr "URL સ્લગ" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1011 -msgid "Permalinks for this post type are disabled." -msgstr "આ વર્ગીકરણ માટે પરમાલિંક્સ અક્ષમ છે." - -#. translators: this string will be appended with the new permalink structure. -#: includes/admin/views/acf-post-type/advanced-settings.php:1010 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:923 -msgid "" -"Rewrite the URL using a custom slug defined in the input below. Your " -"permalink structure will be" -msgstr "" -"નીચેના ઇનપુટમાં વ્યાખ્યાયિત કસ્ટમ સ્લગનો ઉપયોગ કરીને URL ને ફરીથી લખો. તમારું પરમાલિંક " -"માળખું હશે" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1002 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:915 -msgid "No Permalink (prevent URL rewriting)" -msgstr "કોઈ પરમાલિંક નથી (URL પુનઃલેખન અટકાવો)" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1001 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:914 -msgid "Custom Permalink" -msgstr "કસ્ટમ પરમાલિંક" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1000 -#: includes/admin/views/acf-post-type/advanced-settings.php:1170 -#: includes/admin/views/acf-post-type/basic-settings.php:56 -msgid "Post Type Key" -msgstr "પોસ્ટ પ્રકાર કી" - -#. translators: this string will be appended with the new permalink structure. -#: includes/admin/views/acf-post-type/advanced-settings.php:998 -#: includes/admin/views/acf-post-type/advanced-settings.php:1008 -msgid "" -"Rewrite the URL using the post type key as the slug. Your permalink " -"structure will be" -msgstr "સ્લગ તરીકે વર્ગીકરણ કીનો ઉપયોગ કરીને URL ને ફરીથી લખો. તમારું પરમાલિંક માળખું હશે" - -#: includes/admin/views/acf-post-type/advanced-settings.php:996 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:910 -msgid "Permalink Rewrite" -msgstr "પરમાલિંક ફરીથી લખો" - -#: includes/admin/views/acf-post-type/advanced-settings.php:982 -msgid "Delete items by a user when that user is deleted." -msgstr "જ્યારે તે વપરાશકર્તા કાઢી નાખવામાં આવે ત્યારે વપરાશકર્તા દ્વારા આઇટમ્સ કાઢી નાખો." - -#: includes/admin/views/acf-post-type/advanced-settings.php:981 -msgid "Delete With User" -msgstr "વપરાશકર્તા સાથે કાઢી નાખો" - -#: includes/admin/views/acf-post-type/advanced-settings.php:967 -msgid "Allow the post type to be exported from 'Tools' > 'Export'." -msgstr "પોસ્ટ પ્રકારને 'ટૂલ્સ' > 'નિકાસ'માંથી નિકાસ કરવાની મંજૂરી આપો." - -#: includes/admin/views/acf-post-type/advanced-settings.php:966 -msgid "Can Export" -msgstr "નિકાસ કરી શકે છે" - -#: includes/admin/views/acf-post-type/advanced-settings.php:935 -msgid "Optionally provide a plural to be used in capabilities." -msgstr "વૈકલ્પિક રીતે ક્ષમતાઓમાં ઉપયોગમાં લેવા માટે બહુવચન પ્રદાન કરો." - -#: includes/admin/views/acf-post-type/advanced-settings.php:934 -msgid "Plural Capability Name" -msgstr "બહુવચન ક્ષમતા નામ" - -#: includes/admin/views/acf-post-type/advanced-settings.php:916 -msgid "Choose another post type to base the capabilities for this post type." -msgstr "આ પોસ્ટ પ્રકાર માટેની ક્ષમતાઓને આધાર આપવા માટે અન્ય પોસ્ટ પ્રકાર પસંદ કરો." - -#: includes/admin/views/acf-post-type/advanced-settings.php:915 -msgid "Singular Capability Name" -msgstr "એકવચન ક્ષમતા નામ" - -#: includes/admin/views/acf-post-type/advanced-settings.php:901 -msgid "" -"By default the capabilities of the post type will inherit the 'Post' " -"capability names, eg. edit_post, delete_posts. Enable to use post type " -"specific capabilities, eg. edit_{singular}, delete_{plural}." -msgstr "" -"મૂળભૂત રીતે પોસ્ટ પ્રકારની ક્ષમતાઓ 'પોસ્ટ' ક્ષમતાના નામોને વારસામાં મેળવશે, દા.ત. " -"એડિટ_પોસ્ટ, ડિલીટ_પોસ્ટ. પોસ્ટ પ્રકારની વિશિષ્ટ ક્ષમતાઓનો ઉપયોગ કરવા સક્ષમ કરો, દા." -"ત. edit_{singular}, delete_{plural}." - -#: includes/admin/views/acf-post-type/advanced-settings.php:900 -msgid "Rename Capabilities" -msgstr "ક્ષમતાઓનું નામ બદલો" - -#: includes/admin/views/acf-post-type/advanced-settings.php:885 -msgid "Exclude From Search" -msgstr "શોધમાંથી બાકાત રાખો" - -#: includes/admin/views/acf-post-type/advanced-settings.php:872 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:854 -msgid "" -"Allow items to be added to menus in the 'Appearance' > 'Menus' screen. Must " -"be turned on in 'Screen options'." -msgstr "" -"આઇટમ્સને 'દેખાવ' > 'મેનૂઝ' સ્ક્રીનમાં મેનૂમાં ઉમેરવાની મંજૂરી આપો. 'સ્ક્રીન વિકલ્પો'માં ચાલુ " -"કરવું આવશ્યક છે." - -#: includes/admin/views/acf-post-type/advanced-settings.php:871 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:853 -msgid "Appearance Menus Support" -msgstr "દેખાવ મેનુ આધાર" - -#: includes/admin/views/acf-post-type/advanced-settings.php:853 -msgid "Appears as an item in the 'New' menu in the admin bar." -msgstr "એડમિન બારમાં 'નવા' મેનૂમાં આઇટમ તરીકે દેખાય છે." - -#: includes/admin/views/acf-post-type/advanced-settings.php:852 -msgid "Show In Admin Bar" -msgstr "એડમિન બારમાં બતાવો" - -#: includes/admin/views/acf-post-type/advanced-settings.php:821 -msgid "" -"A PHP function name to be called when setting up the meta boxes for the edit " -"screen." -msgstr "સંપાદન સ્ક્રીન માટે મેટા બોક્સ સેટ કરતી વખતે કૉલ કરવા માટે PHP ફંક્શન નામ." - -#: includes/admin/views/acf-post-type/advanced-settings.php:820 -msgid "Custom Meta Box Callback" -msgstr "કસ્ટમ મેટા બોક્સ કોલબેક" - -#: includes/admin/views/acf-post-type/advanced-settings.php:800 -msgid "Menu Icon" -msgstr "મેનુ આયકન" - -#: includes/admin/views/acf-post-type/advanced-settings.php:782 -msgid "The position in the sidebar menu in the admin dashboard." -msgstr "એડમિન ડેશબોર્ડમાં સાઇડબાર મેનૂમાં સ્થિતિ." - -#: includes/admin/views/acf-post-type/advanced-settings.php:781 -msgid "Menu Position" -msgstr "મેનુ સ્થિતિ" - -#: includes/admin/views/acf-post-type/advanced-settings.php:763 -msgid "" -"By default the post type will get a new top level item in the admin menu. If " -"an existing top level item is supplied here, the post type will be added as " -"a submenu item under it." -msgstr "" -"ડિફૉલ્ટ રૂપે પોસ્ટના પ્રકારને એડમિન મેનૂમાં નવી ટોચની આઇટમ મળશે. જો હાલની ટોચની આઇટમ " -"અહીં પૂરી પાડવામાં આવે છે, તો પોસ્ટનો પ્રકાર તેની હેઠળ સબમેનુ આઇટમ તરીકે ઉમેરવામાં આવશે." - -#: includes/admin/views/acf-post-type/advanced-settings.php:762 -msgid "Admin Menu Parent" -msgstr "એડમિન મેનુ પેરન્ટ" - -#. translators: %s = "dashicon class name", link to the WordPress dashicon -#. documentation. -#: includes/admin/views/acf-post-type/advanced-settings.php:750 -msgid "" -"The icon used for the post type menu item in the admin dashboard. Can be a " -"URL or %s to use for the icon." -msgstr "" -"એડમિન ડેશબોર્ડમાં પોસ્ટ ટાઇપ મેનૂ આઇટમ માટે વપરાયેલ આઇકન. આયકન માટે વાપરવા માટે URL " -"અથવા %s હોઈ શકે છે." - -#: includes/admin/views/acf-post-type/advanced-settings.php:745 -msgid "Dashicon class name" -msgstr "ડૅશઆઇકન વર્ગ નામ" - -#: includes/admin/views/acf-post-type/advanced-settings.php:734 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:734 -msgid "Admin editor navigation in the sidebar menu." -msgstr "સાઇડબાર મેનૂમાં એડમિન એડિટર નેવિગેશન." - -#: includes/admin/views/acf-post-type/advanced-settings.php:733 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:733 -msgid "Show In Admin Menu" -msgstr "એડમિન મેનુમાં બતાવો" - -#: includes/admin/views/acf-post-type/advanced-settings.php:720 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:719 -msgid "Items can be edited and managed in the admin dashboard." -msgstr "એડમિન ડેશબોર્ડમાં વસ્તુઓને સંપાદિત અને સંચાલિત કરી શકાય છે." - -#: includes/admin/views/acf-post-type/advanced-settings.php:719 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:718 -msgid "Show In UI" -msgstr "UI માં બતાવો" - -#: includes/admin/views/acf-post-type/advanced-settings.php:689 -msgid "A link to a post." -msgstr "પોસ્ટની લિંક." - -#: includes/admin/views/acf-post-type/advanced-settings.php:688 -msgid "Description for a navigation link block variation." -msgstr "નેવિગેશન લિંક બ્લોક વિવિધતા માટે વર્ણન." - -#: includes/admin/views/acf-post-type/advanced-settings.php:687 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:702 -msgid "Item Link Description" -msgstr "આઇટમ લિંક વર્ણન" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:683 -msgid "A link to a %s." -msgstr "%s ની લિંક." - -#: includes/admin/views/acf-post-type/advanced-settings.php:668 -msgid "Post Link" -msgstr "પોસ્ટ લિંક" - -#: includes/admin/views/acf-post-type/advanced-settings.php:667 -msgid "Title for a navigation link block variation." -msgstr "નેવિગેશન લિંક બ્લોક વિવિધતા માટે શીર્ષક." - -#: includes/admin/views/acf-post-type/advanced-settings.php:666 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:681 -msgid "Item Link" -msgstr "આઇટમ લિંક" - -#. translators: %s Singular form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:663 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:678 -msgid "%s Link" -msgstr "%s લિંક" - -#: includes/admin/views/acf-post-type/advanced-settings.php:648 -msgid "Post updated." -msgstr "પોસ્ટ અપડેટ થઇ ગઈ છે." - -#: includes/admin/views/acf-post-type/advanced-settings.php:647 -msgid "In the editor notice after an item is updated." -msgstr "આઇટમ અપડેટ થયા પછી એડિટર નોટિસમાં." - -#: includes/admin/views/acf-post-type/advanced-settings.php:646 -msgid "Item Updated" -msgstr "આઈટમ અપડેટેડ." - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:643 -msgid "%s updated." -msgstr "%s અપડેટ થઇ ગયું!" - -#: includes/admin/views/acf-post-type/advanced-settings.php:628 -msgid "Post scheduled." -msgstr "સુનિશ્ચિત પોસ્ટ." - -#: includes/admin/views/acf-post-type/advanced-settings.php:627 -msgid "In the editor notice after scheduling an item." -msgstr "આઇટમ સુનિશ્ચિત કર્યા પછી સંપાદક સૂચનામાં." - -#: includes/admin/views/acf-post-type/advanced-settings.php:626 -msgid "Item Scheduled" -msgstr "આઇટમ સુનિશ્ચિત" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:623 -msgid "%s scheduled." -msgstr "%s શેડ્યૂલ." - -#: includes/admin/views/acf-post-type/advanced-settings.php:608 -msgid "Post reverted to draft." -msgstr "પોસ્ટ ડ્રાફ્ટમાં પાછું ફેરવ્યું." - -#: includes/admin/views/acf-post-type/advanced-settings.php:607 -msgid "In the editor notice after reverting an item to draft." -msgstr "આઇટમને ડ્રાફ્ટમાં પાછી ફેરવ્યા પછી સંપાદક સૂચનામાં." - -#: includes/admin/views/acf-post-type/advanced-settings.php:606 -msgid "Item Reverted To Draft" -msgstr "આઇટમ ડ્રાફ્ટમાં પાછી ફેરવાઈ" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:603 -msgid "%s reverted to draft." -msgstr "%s ડ્રાફ્ટમાં પાછું ફર્યું." - -#: includes/admin/views/acf-post-type/advanced-settings.php:588 -msgid "Post published privately." -msgstr "પોસ્ટ ખાનગી રીતે પ્રકાશિત." - -#: includes/admin/views/acf-post-type/advanced-settings.php:587 -msgid "In the editor notice after publishing a private item." -msgstr "આઇટમ સુનિશ્ચિત કર્યા પછી સંપાદક સૂચનામાં." - -#: includes/admin/views/acf-post-type/advanced-settings.php:586 -msgid "Item Published Privately" -msgstr "આઇટમ ખાનગી રીતે પ્રકાશિત" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:583 -msgid "%s published privately." -msgstr "%s ખાનગી રીતે પ્રકાશિત." - -#: includes/admin/views/acf-post-type/advanced-settings.php:568 -msgid "Post published." -msgstr "પોસ્ટ પ્રકાશિત થઇ ગઈ છે." - -#: includes/admin/views/acf-post-type/advanced-settings.php:567 -msgid "In the editor notice after publishing an item." -msgstr "આઇટમ સુનિશ્ચિત કર્યા પછી સંપાદક સૂચનામાં." - -#: includes/admin/views/acf-post-type/advanced-settings.php:566 -msgid "Item Published" -msgstr "આઇટમ પ્રકાશિત" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:563 -msgid "%s published." -msgstr "%s પ્રકાશિત." - -#: includes/admin/views/acf-post-type/advanced-settings.php:548 -msgid "Posts list" -msgstr "પોસ્ટ્સ યાદી" - -#: includes/admin/views/acf-post-type/advanced-settings.php:547 -msgid "Used by screen readers for the items list on the post type list screen." -msgstr "" -"પોસ્ટ ટાઇપ લિસ્ટ સ્ક્રીન પરની ફિલ્ટર લિંક્સ માટે સ્ક્રીન રીડર્સ દ્વારા ઉપયોગમાં લેવાય છે." - -#: includes/admin/views/acf-post-type/advanced-settings.php:546 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:640 -msgid "Items List" -msgstr "આઇટ્મસ યાદી" - -#. translators: %s Plural form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:543 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:637 -msgid "%s list" -msgstr "%s યાદી" - -#: includes/admin/views/acf-post-type/advanced-settings.php:528 -msgid "Posts list navigation" -msgstr "પોસ્ટ્સ સંશોધક માટે ની યાદી" - -#: includes/admin/views/acf-post-type/advanced-settings.php:527 -msgid "" -"Used by screen readers for the filter list pagination on the post type list " -"screen." -msgstr "" -"પોસ્ટ ટાઇપ લિસ્ટ સ્ક્રીન પરની ફિલ્ટર લિંક્સ માટે સ્ક્રીન રીડર્સ દ્વારા ઉપયોગમાં લેવાય છે." - -#: includes/admin/views/acf-post-type/advanced-settings.php:526 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:620 -msgid "Items List Navigation" -msgstr "વસ્તુઓની યાદી સંશોધક" - -#. translators: %s Plural form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:523 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:617 -msgid "%s list navigation" -msgstr "%s ટૅગ્સ યાદી નેવિગેશન" - -#: includes/admin/views/acf-post-type/advanced-settings.php:507 -msgid "Filter posts by date" -msgstr "તારીખ દ્વારા પોસ્ટ્સ ફિલ્ટર કરો" - -#: includes/admin/views/acf-post-type/advanced-settings.php:506 -msgid "" -"Used by screen readers for the filter by date heading on the post type list " -"screen." -msgstr "" -"પોસ્ટ ટાઇપ લિસ્ટ સ્ક્રીન પર તારીખ દ્વારા ફિલ્ટર માટે સ્ક્રીન રીડર્સ દ્વારા ઉપયોગમાં લેવાય " -"છે." - -#: includes/admin/views/acf-post-type/advanced-settings.php:505 -msgid "Filter Items By Date" -msgstr "તારીખ દ્વારા આઇટમ્સ ફિલ્ટર કરો" - -#. translators: %s Plural form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:501 -msgid "Filter %s by date" -msgstr "તારીખ દ્વારા %s ફિલ્ટર કરો" - -#: includes/admin/views/acf-post-type/advanced-settings.php:486 -msgid "Filter posts list" -msgstr "પોસ્ટની સૂચિ ને ફિલ્ટર કરો" - -#: includes/admin/views/acf-post-type/advanced-settings.php:485 -msgid "" -"Used by screen readers for the filter links heading on the post type list " -"screen." -msgstr "" -"પોસ્ટ ટાઇપ લિસ્ટ સ્ક્રીન પરની ફિલ્ટર લિંક્સ માટે સ્ક્રીન રીડર્સ દ્વારા ઉપયોગમાં લેવાય છે." - -#: includes/admin/views/acf-post-type/advanced-settings.php:484 -msgid "Filter Items List" -msgstr "વસ્તુઓ ની યાદી ફિલ્ટર કરો" - -#. translators: %s Plural form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:480 -msgid "Filter %s list" -msgstr "%s સૂચિને ફિલ્ટર કરો" - -#: includes/admin/views/acf-post-type/advanced-settings.php:464 -msgid "In the media modal showing all media uploaded to this item." -msgstr "મીડિયા મોડલમાં આ આઇટમ પર અપલોડ કરેલ તમામ મીડિયા દર્શાવે છે." - -#: includes/admin/views/acf-post-type/advanced-settings.php:463 -msgid "Uploaded To This Item" -msgstr "આ પોસ્ટમાં અપલોડ કરવામાં આવ્યું છે" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:459 -msgid "Uploaded to this %s" -msgstr "%s આ પોસ્ટમાં અપલોડ કરવામાં આવ્યું છે" - -#: includes/admin/views/acf-post-type/advanced-settings.php:444 -msgid "Insert into post" -msgstr "પોસ્ટ માં સામેલ કરો" - -#: includes/admin/views/acf-post-type/advanced-settings.php:443 -msgid "As the button label when adding media to content." -msgstr "સામગ્રીમાં મીડિયા ઉમેરતી વખતે બટન લેબલ તરીકે." - -#: includes/admin/views/acf-post-type/advanced-settings.php:442 -msgid "Insert Into Media Button" -msgstr "મીડિયા બટનમાં દાખલ કરો" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:438 -msgid "Insert into %s" -msgstr "%s માં દાખલ કરો" - -#: includes/admin/views/acf-post-type/advanced-settings.php:423 -msgid "Use as featured image" -msgstr "વૈશિષ્ટિકૃત છબી તરીકે ઉપયોગ કરો" - -#: includes/admin/views/acf-post-type/advanced-settings.php:422 -msgid "" -"As the button label for selecting to use an image as the featured image." -msgstr "વૈશિષ્ટિકૃત છબી તરીકે છબીનો ઉપયોગ કરવા માટે પસંદ કરવા માટેના બટન લેબલ તરીકે." - -#: includes/admin/views/acf-post-type/advanced-settings.php:421 -msgid "Use Featured Image" -msgstr "વૈશિષ્ટિકૃત છબીનો ઉપયોગ કરો" - -#: includes/admin/views/acf-post-type/advanced-settings.php:408 -msgid "Remove featured image" -msgstr "વૈશિષ્ટિકૃત છબી દૂર કરો" - -#: includes/admin/views/acf-post-type/advanced-settings.php:407 -msgid "As the button label when removing the featured image." -msgstr "ફીચર્ડ ઈમેજ દૂર કરતી વખતે બટન લેબલ તરીકે." - -#: includes/admin/views/acf-post-type/advanced-settings.php:406 -msgid "Remove Featured Image" -msgstr "વિશેષ ચિત્ર દૂર કરો" - -#: includes/admin/views/acf-post-type/advanced-settings.php:393 -msgid "Set featured image" -msgstr "ફીચર્ડ ચિત્ર સેટ કરો" - -#: includes/admin/views/acf-post-type/advanced-settings.php:392 -msgid "As the button label when setting the featured image." -msgstr "ફીચર્ડ ઈમેજ સેટ કરતી વખતે બટન લેબલ તરીકે." - -#: includes/admin/views/acf-post-type/advanced-settings.php:391 -msgid "Set Featured Image" -msgstr "ફીચર્ડ છબી સેટ કરો" - -#: includes/admin/views/acf-post-type/advanced-settings.php:378 -msgid "Featured image" -msgstr "વૈશિષ્ટિકૃત છબી" - -#: includes/admin/views/acf-post-type/advanced-settings.php:377 -msgid "In the editor used for the title of the featured image meta box." -msgstr "ફીચર્ડ ઈમેજ મેટા બોક્સના શીર્ષક માટે ઉપયોગમાં લેવાતા એડિટરમાં." - -#: includes/admin/views/acf-post-type/advanced-settings.php:376 -msgid "Featured Image Meta Box" -msgstr "ફીચર્ડ ઇમેજ મેટા બોક્સ" - -#: includes/admin/views/acf-post-type/advanced-settings.php:363 -msgid "Post Attributes" -msgstr "પોસ્ટ લક્ષણો" - -#: includes/admin/views/acf-post-type/advanced-settings.php:362 -msgid "In the editor used for the title of the post attributes meta box." -msgstr "પોસ્ટ એટ્રીબ્યુટ્સ મેટા બોક્સના શીર્ષક માટે ઉપયોગમાં લેવાતા એડિટરમાં." - -#: includes/admin/views/acf-post-type/advanced-settings.php:361 -msgid "Attributes Meta Box" -msgstr "લક્ષણો મેટા બોક્સ" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:358 -msgid "%s Attributes" -msgstr "%s પોસ્ટ લક્ષણો" - -#: includes/admin/views/acf-post-type/advanced-settings.php:343 -msgid "Post Archives" -msgstr "કાર્ય આર્કાઇવ્ઝ" - -#: includes/admin/views/acf-post-type/advanced-settings.php:342 -msgid "" -"Adds 'Post Type Archive' items with this label to the list of posts shown " -"when adding items to an existing menu in a CPT with archives enabled. Only " -"appears when editing menus in 'Live Preview' mode and a custom archive slug " -"has been provided." -msgstr "" -"આ લેબલ સાથે 'પોસ્ટ ટાઇપ આર્કાઇવ' આઇટમ્સને આર્કાઇવ્સ સક્ષમ સાથે CPTમાં અસ્તિત્વમાંના મેનૂમાં " -"આઇટમ ઉમેરતી વખતે બતાવવામાં આવેલી પોસ્ટ્સની સૂચિમાં ઉમેરે છે. જ્યારે 'લાઈવ પ્રીવ્યૂ' મોડમાં મેનુ " -"સંપાદિત કરવામાં આવે ત્યારે જ દેખાય છે અને કસ્ટમ આર્કાઈવ સ્લગ પ્રદાન કરવામાં આવે છે." - -#: includes/admin/views/acf-post-type/advanced-settings.php:341 -msgid "Archives Nav Menu" -msgstr "આર્કાઇવ્સ નેવ મેનુ" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:338 -msgid "%s Archives" -msgstr "%s આર્કાઇવ્સ" - -#: includes/admin/views/acf-post-type/advanced-settings.php:323 -msgid "No posts found in Trash" -msgstr "ટ્રેશમાં કોઈ પોસ્ટ્સ મળી નથી" - -#: includes/admin/views/acf-post-type/advanced-settings.php:322 -msgid "" -"At the top of the post type list screen when there are no posts in the trash." -msgstr "જ્યારે ટ્રેશમાં કોઈ પોસ્ટ ન હોય ત્યારે પોસ્ટ ટાઇપ લિસ્ટ સ્ક્રીનની ટોચ પર." - -#: includes/admin/views/acf-post-type/advanced-settings.php:321 -msgid "No Items Found in Trash" -msgstr "ટ્રેશમાં કોઈ આઇટમ્સ મળી નથી" - -#. translators: %s Plural form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:317 -msgid "No %s found in Trash" -msgstr "ટ્રેશમાં કોઈ %s મળ્યું નથી" - -#: includes/admin/views/acf-post-type/advanced-settings.php:302 -msgid "No posts found" -msgstr "કોઈ પોસ્ટ મળી નથી" - -#: includes/admin/views/acf-post-type/advanced-settings.php:301 -msgid "" -"At the top of the post type list screen when there are no posts to display." -msgstr "" -"જ્યારે પ્રદર્શિત કરવા માટે કોઈ પોસ્ટ્સ ન હોય ત્યારે પોસ્ટ ટાઇપ સૂચિ સ્ક્રીનની ટોચ પર." - -#: includes/admin/views/acf-post-type/advanced-settings.php:300 -msgid "No Items Found" -msgstr "કોઈ આઇટમ્સ મળી નથી" - -#. translators: %s Plural form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:296 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:480 -msgid "No %s found" -msgstr "કોઈ %s મળ્યું નથી" - -#: includes/admin/views/acf-post-type/advanced-settings.php:281 -msgid "Search Posts" -msgstr "પોસ્ટ્સ શોધો" - -#: includes/admin/views/acf-post-type/advanced-settings.php:280 -msgid "At the top of the items screen when searching for an item." -msgstr "શબ્દ સંપાદિત કરતી વખતે સંપાદક સ્ક્રીનની ટોચ પર." - -#: includes/admin/views/acf-post-type/advanced-settings.php:279 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:345 -msgid "Search Items" -msgstr "આઇટમ્સ શોધો" - -#. translators: %s Singular form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:276 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:342 -msgid "Search %s" -msgstr "%s શોધો" - -#: includes/admin/views/acf-post-type/advanced-settings.php:261 -msgid "Parent Page:" -msgstr "પિતૃ પૃષ્ઠ:" - -#: includes/admin/views/acf-post-type/advanced-settings.php:260 -msgid "For hierarchical types in the post type list screen." -msgstr "પોસ્ટ ટાઇપ લિસ્ટ સ્ક્રીનમાં અધિક્રમિક પ્રકારો માટે." - -#: includes/admin/views/acf-post-type/advanced-settings.php:259 -msgid "Parent Item Prefix" -msgstr "" - -#. translators: %s Singular form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:256 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:318 -msgid "Parent %s:" -msgstr "પેરન્ટ %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:241 -msgid "New Post" -msgstr "નવી પોસ્ટ" - -#: includes/admin/views/acf-post-type/advanced-settings.php:239 -msgid "New Item" -msgstr "નવી આઇટમ" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:236 -msgid "New %s" -msgstr "નવું %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:206 -msgid "Add New Post" -msgstr "નવી પોસ્ટ ઉમેરો" - -#: includes/admin/views/acf-post-type/advanced-settings.php:205 -msgid "At the top of the editor screen when adding a new item." -msgstr "શબ્દ સંપાદિત કરતી વખતે સંપાદક સ્ક્રીનની ટોચ પર." - -#: includes/admin/views/acf-post-type/advanced-settings.php:204 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:256 -msgid "Add New Item" -msgstr "નવી આઇટમ ઉમેરો" - -#. translators: %s Singular form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:201 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:253 -msgid "Add New %s" -msgstr "નવું %s ઉમેરો" - -#: includes/admin/views/acf-post-type/advanced-settings.php:186 -msgid "View Posts" -msgstr "પોસ્ટ્સ જુઓ" - -#: includes/admin/views/acf-post-type/advanced-settings.php:185 -msgid "" -"Appears in the admin bar in the 'All Posts' view, provided the post type " -"supports archives and the home page is not an archive of that post type." -msgstr "" -"પેરેન્ટ આઇટમ 'બધી પોસ્ટ્સ' વ્યુમાં એડમિન બારમાં દેખાય છે, જો પોસ્ટ પ્રકાર આર્કાઇવ્સને સપોર્ટ " -"કરે છે અને હોમ પેજ તે પોસ્ટ પ્રકારનું આર્કાઇવ નથી." - -#: includes/admin/views/acf-post-type/advanced-settings.php:184 -msgid "View Items" -msgstr "આઇટમ જુઓ" - -#: includes/admin/views/acf-post-type/advanced-settings.php:166 -msgid "View Post" -msgstr "પોસ્ટ જુઓ" - -#: includes/admin/views/acf-post-type/advanced-settings.php:165 -msgid "In the admin bar to view item when editing it." -msgstr "આઇટમમાં ફેરફાર કરતી વખતે તેને જોવા માટે એડમિન બારમાં." - -#: includes/admin/views/acf-post-type/advanced-settings.php:164 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:216 -msgid "View Item" -msgstr "આઇટમ જુઓ" - -#. translators: %s Singular form of post type name -#. translators: %s Plural form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:161 -#: includes/admin/views/acf-post-type/advanced-settings.php:181 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:213 -msgid "View %s" -msgstr "%s જુઓ" - -#: includes/admin/views/acf-post-type/advanced-settings.php:146 -msgid "Edit Post" -msgstr "પોસ્ટ સુધારો" - -#: includes/admin/views/acf-post-type/advanced-settings.php:145 -msgid "At the top of the editor screen when editing an item." -msgstr "આઇટમ સંપાદિત કરતી વખતે એડિટર સ્ક્રીનની ટોચ પર." - -#: includes/admin/views/acf-post-type/advanced-settings.php:144 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:196 -msgid "Edit Item" -msgstr "આઇટમ સંપાદિત કરો" - -#. translators: %s Singular form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:141 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:193 -msgid "Edit %s" -msgstr "%s સંપાદિત કરો" - -#: includes/admin/views/acf-post-type/advanced-settings.php:126 -msgid "All Posts" -msgstr "બધા પોસ્ટ્સ" - -#: includes/admin/views/acf-post-type/advanced-settings.php:125 -#: includes/admin/views/acf-post-type/advanced-settings.php:220 -#: includes/admin/views/acf-post-type/advanced-settings.php:240 -msgid "In the post type submenu in the admin dashboard." -msgstr "એડમિન ડેશબોર્ડમાં પોસ્ટ ટાઇપ સબમેનુમાં." - -#: includes/admin/views/acf-post-type/advanced-settings.php:124 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:176 -msgid "All Items" -msgstr "બધી વસ્તુઓ" - -#. translators: %s Plural form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:121 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:173 -msgid "All %s" -msgstr "બધા %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:105 -msgid "Admin menu name for the post type." -msgstr "પોસ્ટ પ્રકાર માટે એડમિન મેનુ નામ." - -#: includes/admin/views/acf-post-type/advanced-settings.php:104 -msgid "Menu Name" -msgstr "મેનુ નુ નામ" - -#: includes/admin/views/acf-post-type/advanced-settings.php:90 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:142 -msgid "Regenerate all labels using the Singular and Plural labels" -msgstr "એકવચન અને બહુવચન લેબલ્સનો ઉપયોગ કરીને બધા લેબલ્સ ફરીથી બનાવો" - -#: includes/admin/views/acf-post-type/advanced-settings.php:88 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:140 -msgid "Regenerate" -msgstr "પુનઃસર્જન કરો" - -#: includes/admin/views/acf-post-type/advanced-settings.php:79 -msgid "Active post types are enabled and registered with WordPress." -msgstr "સક્રિય પોસ્ટ પ્રકારો સક્ષમ અને વર્ડપ્રેસ સાથે નોંધાયેલ છે." - -#: includes/admin/views/acf-post-type/advanced-settings.php:63 -msgid "A descriptive summary of the post type." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:48 -msgid "Add Custom" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:42 -msgid "Enable various features in the content editor." -msgstr "સામગ્રી સંપાદકમાં વિવિધ સુવિધાઓને સક્ષમ કરો." - -#: includes/admin/views/acf-post-type/advanced-settings.php:31 -msgid "Post Formats" -msgstr "પોસ્ટ ફોર્મેટ્સ" - -#: includes/admin/views/acf-post-type/advanced-settings.php:25 -msgid "Editor" -msgstr "સંપાદક" - -#: includes/admin/views/acf-post-type/advanced-settings.php:24 -msgid "Trackbacks" -msgstr "ટ્રેકબેક્સ" - -#: includes/admin/views/acf-post-type/basic-settings.php:87 -msgid "Select existing taxonomies to classify items of the post type." -msgstr "પોસ્ટ પ્રકારની વસ્તુઓનું વર્ગીકરણ કરવા માટે વર્તમાન વર્ગીકરણ પસંદ કરો." - -#: includes/admin/views/acf-field-group/field.php:145 -msgid "Browse Fields" -msgstr "ક્ષેત્રો બ્રાઉઝ કરો" - -#: includes/admin/tools/class-acf-admin-tool-import.php:292 -msgid "Nothing to import" -msgstr "આયાત કરવા માટે કંઈ નથી" - -#: includes/admin/tools/class-acf-admin-tool-import.php:287 -msgid ". The Custom Post Type UI plugin can be deactivated." -msgstr ". કસ્ટમ પોસ્ટ પ્રકાર UI પ્લગઇન નિષ્ક્રિય કરી શકાય છે." - -#. translators: %d - number of items imported from CPTUI -#: includes/admin/tools/class-acf-admin-tool-import.php:278 -msgid "Imported %d item from Custom Post Type UI -" -msgid_plural "Imported %d items from Custom Post Type UI -" -msgstr[0] "કસ્ટમ પોસ્ટ પ્રકાર UI માંથી %d આઇટમ આયાત કરી -" -msgstr[1] "કસ્ટમ પોસ્ટ પ્રકાર UI માંથી %d આઇટમ આયાત કરી -" - -#: includes/admin/tools/class-acf-admin-tool-import.php:262 -msgid "Failed to import taxonomies." -msgstr "વર્ગીકરણ આયાત કરવામાં નિષ્ફળ." - -#: includes/admin/tools/class-acf-admin-tool-import.php:244 -msgid "Failed to import post types." -msgstr "પોસ્ટ પ્રકારો આયાત કરવામાં નિષ્ફળ." - -#: includes/admin/tools/class-acf-admin-tool-import.php:233 -msgid "Nothing from Custom Post Type UI plugin selected for import." -msgstr "કસ્ટમ પોસ્ટ પ્રકાર UI પ્લગઇનમાંથી કંઈપણ આયાત માટે પસંદ કરેલ નથી." - -#: includes/admin/tools/class-acf-admin-tool-import.php:209 -msgid "Imported 1 item" -msgid_plural "Imported %s items" -msgstr[0] "1 આઇટમ આયાત કરી" -msgstr[1] "%s આઇટમ આયાત કરી" - -#: includes/admin/tools/class-acf-admin-tool-import.php:122 -msgid "" -"Importing a Post Type or Taxonomy with the same key as one that already " -"exists will overwrite the settings for the existing Post Type or Taxonomy " -"with those of the import." -msgstr "" -"પહેલાથી જ અસ્તિત્વમાં છે તે જ કી સાથે પોસ્ટ પ્રકાર અથવા વર્ગીકરણ આયાત કરવાથી વર્તમાન " -"પોસ્ટ પ્રકાર અથવા વર્ગીકરણની સેટિંગ્સ આયાતની સાથે ઓવરરાઈટ થઈ જશે." - -#: includes/admin/tools/class-acf-admin-tool-import.php:111 -#: includes/admin/tools/class-acf-admin-tool-import.php:127 -msgid "Import from Custom Post Type UI" -msgstr "કસ્ટમ પોસ્ટ પ્રકાર UI માંથી આયાત કરો" - -#: includes/admin/tools/class-acf-admin-tool-export.php:412 -msgid "" -"The following code can be used to register a local version of the selected " -"items. Storing field groups, post types, or taxonomies locally can provide " -"many benefits such as faster load times, version control & dynamic fields/" -"settings. Simply copy and paste the following code to your theme's functions." -"php file or include it within an external file, then deactivate or delete " -"the items from the ACF admin." -msgstr "" -"નીચેના કોડનો ઉપયોગ પસંદ કરેલી વસ્તુઓના સ્થાનિક સંસ્કરણની નોંધણી કરવા માટે થઈ શકે છે. " -"સ્થાનિક રીતે ફીલ્ડ જૂથો, પોસ્ટ પ્રકારો અથવા વર્ગીકરણને સંગ્રહિત કરવાથી ઝડપી લોડ ટાઈમ, " -"વર્ઝન કંટ્રોલ અને ડાયનેમિક ફીલ્ડ્સ/સેટિંગ્સ જેવા ઘણા ફાયદા મળી શકે છે. ફક્ત નીચેના કોડને " -"તમારી થીમની functions.php ફાઇલમાં કોપી અને પેસ્ટ કરો અથવા તેને બાહ્ય ફાઇલમાં સમાવિષ્ટ " -"કરો, પછી ACF એડમિન તરફથી આઇટમ્સને નિષ્ક્રિય કરો અથવા કાઢી નાખો." - -#: includes/admin/tools/class-acf-admin-tool-export.php:411 -msgid "Export - Generate PHP" -msgstr "નિકાસ - PHP જનરેટ કરો" - -#: includes/admin/tools/class-acf-admin-tool-export.php:384 -msgid "Export" -msgstr "નિકાસ કરો" - -#: includes/admin/tools/class-acf-admin-tool-export.php:276 -msgid "Select Taxonomies" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:254 -msgid "Select Post Types" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:167 -msgid "Exported 1 item." -msgid_plural "Exported %s items." -msgstr[0] "" -msgstr[1] "" - -#: includes/admin/post-types/admin-taxonomy.php:129 -#: assets/build/js/acf-internal-post-type.js:182 -#: assets/build/js/acf-internal-post-type.js:256 -msgid "Category" -msgstr "વર્ગ" - -#: includes/admin/post-types/admin-taxonomy.php:127 -#: assets/build/js/acf-internal-post-type.js:179 -#: assets/build/js/acf-internal-post-type.js:253 -msgid "Tag" -msgstr "ટૅગ" - -#. translators: %s taxonomy name -#: includes/admin/post-types/admin-taxonomy.php:82 -msgid "%s taxonomy created" -msgstr "" - -#. translators: %s taxonomy name -#: includes/admin/post-types/admin-taxonomy.php:76 -msgid "%s taxonomy updated" -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:56 -msgid "Taxonomy draft updated." -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:55 -msgid "Taxonomy scheduled for." -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:54 -msgid "Taxonomy submitted." -msgstr "વર્ગીકરણ સબમિટ કર્યું." - -#: includes/admin/post-types/admin-taxonomy.php:53 -msgid "Taxonomy saved." -msgstr "વર્ગીકરણ સાચવ્યું." - -#: includes/admin/post-types/admin-taxonomy.php:49 -msgid "Taxonomy deleted." -msgstr "વર્ગીકરણ કાઢી નાખ્યું." - -#: includes/admin/post-types/admin-taxonomy.php:48 -msgid "Taxonomy updated." -msgstr "વર્ગીકરણ અપડેટ કર્યું." - -#: includes/admin/post-types/admin-taxonomies.php:377 -#: includes/admin/post-types/admin-taxonomy.php:157 -msgid "" -"This taxonomy could not be registered because its key is in use by another " -"taxonomy registered by another plugin or theme." -msgstr "" -"આ વર્ગીકરણ રજીસ્ટર થઈ શક્યું નથી કારણ કે તેની કી અન્ય પ્લગઈન અથવા થીમ દ્વારા નોંધાયેલ " -"અન્ય વર્ગીકરણ દ્વારા ઉપયોગમાં લેવાય છે." - -#. translators: %s number of taxonomies synchronized -#: includes/admin/post-types/admin-taxonomies.php:359 -msgid "Taxonomy synchronized." -msgid_plural "%s taxonomies synchronized." -msgstr[0] "વર્ગીકરણ સમન્વયિત." -msgstr[1] "%s વર્ગીકરણ સમન્વયિત." - -#. translators: %s number of taxonomies duplicated -#: includes/admin/post-types/admin-taxonomies.php:352 -msgid "Taxonomy duplicated." -msgid_plural "%s taxonomies duplicated." -msgstr[0] "વર્ગીકરણ ડુપ્લિકેટ." -msgstr[1] "%s વર્ગીકરણ ડુપ્લિકેટ." - -#. translators: %s number of taxonomies deactivated -#: includes/admin/post-types/admin-taxonomies.php:345 -msgid "Taxonomy deactivated." -msgid_plural "%s taxonomies deactivated." -msgstr[0] "વર્ગીકરણ નિષ્ક્રિય." -msgstr[1] "%s વર્ગીકરણ નિષ્ક્રિય." - -#. translators: %s number of taxonomies activated -#: includes/admin/post-types/admin-taxonomies.php:338 -msgid "Taxonomy activated." -msgid_plural "%s taxonomies activated." -msgstr[0] "વર્ગીકરણ સક્રિય થયું." -msgstr[1] "%s વર્ગીકરણ સક્રિય." - -#: includes/admin/post-types/admin-taxonomies.php:139 -msgid "Terms" -msgstr "શરતો" - -#. translators: %s number of post types synchronized -#: includes/admin/post-types/admin-post-types.php:352 -msgid "Post type synchronized." -msgid_plural "%s post types synchronized." -msgstr[0] "પોસ્ટ પ્રકાર સમન્વયિત." -msgstr[1] "%s પોસ્ટ પ્રકારો સમન્વયિત." - -#. translators: %s number of post types duplicated -#: includes/admin/post-types/admin-post-types.php:345 -msgid "Post type duplicated." -msgid_plural "%s post types duplicated." -msgstr[0] "પોસ્ટ પ્રકાર ડુપ્લિકેટ." -msgstr[1] "%s પોસ્ટ પ્રકારો ડુપ્લિકેટ." - -#. translators: %s number of post types deactivated -#: includes/admin/post-types/admin-post-types.php:338 -msgid "Post type deactivated." -msgid_plural "%s post types deactivated." -msgstr[0] "પોસ્ટ પ્રકાર નિષ્ક્રિય." -msgstr[1] "%s પોસ્ટ પ્રકારો નિષ્ક્રિય કર્યા." - -#. translators: %s number of post types activated -#: includes/admin/post-types/admin-post-types.php:331 -msgid "Post type activated." -msgid_plural "%s post types activated." -msgstr[0] "પોસ્ટનો પ્રકાર સક્રિય કર્યો." -msgstr[1] "%s પોસ્ટ પ્રકારો સક્રિય થયા." - -#: includes/admin/post-types/admin-post-types.php:112 -#: includes/admin/post-types/admin-taxonomies.php:137 -#: includes/admin/tools/class-acf-admin-tool-import.php:82 -#: includes/admin/views/acf-taxonomy/basic-settings.php:82 -#: includes/post-types/class-acf-post-type.php:91 -msgid "Post Types" -msgstr "પોસ્ટ પ્રકારો" - -#: includes/admin/post-types/admin-post-type.php:162 -#: includes/admin/post-types/admin-taxonomy.php:164 -msgid "Advanced Settings" -msgstr "સંવર્ધિત વિકલ્પો" - -#: includes/admin/post-types/admin-post-type.php:161 -#: includes/admin/post-types/admin-taxonomy.php:163 -msgid "Basic Settings" -msgstr "મૂળભૂત સેટિંગ્સ" - -#: includes/admin/post-types/admin-post-type.php:155 -#: includes/admin/post-types/admin-post-types.php:370 -msgid "" -"This post type could not be registered because its key is in use by another " -"post type registered by another plugin or theme." -msgstr "" -"આ પોસ્ટ પ્રકાર રજીસ્ટર થઈ શક્યો નથી કારણ કે તેની કી અન્ય પ્લગઈન અથવા થીમ દ્વારા " -"નોંધાયેલ અન્ય પોસ્ટ પ્રકાર દ્વારા ઉપયોગમાં લેવાય છે." - -#: includes/admin/post-types/admin-post-type.php:128 -#: assets/build/js/acf-internal-post-type.js:176 -#: assets/build/js/acf-internal-post-type.js:250 -msgid "Pages" -msgstr "પૃષ્ઠો" - -#: includes/admin/admin-internal-post-type.php:355 -msgid "Link Existing Field Groups" -msgstr "હાલના ફીલ્ડ જૂથોને લિંક કરો" - -#. translators: %s post type name -#: includes/admin/post-types/admin-post-type.php:80 -msgid "%s post type created" -msgstr "%s પોસ્ટ પ્રકાર બનાવ્યો" - -#. translators: %s taxonomy name -#: includes/admin/post-types/admin-taxonomy.php:78 -msgid "Add fields to %s" -msgstr "%s માં ફીલ્ડ્સ ઉમેરો" - -#. translators: %s post type name -#: includes/admin/post-types/admin-post-type.php:76 -msgid "%s post type updated" -msgstr "%s પોસ્ટ પ્રકાર અપડેટ કર્યો" - -#: includes/admin/post-types/admin-post-type.php:56 -msgid "Post type draft updated." -msgstr "પોસ્ટ પ્રકાર ડ્રાફ્ટ અપડેટ કર્યો." - -#: includes/admin/post-types/admin-post-type.php:55 -msgid "Post type scheduled for." -msgstr "પોસ્ટ પ્રકાર માટે સુનિશ્ચિત થયેલ છે." - -#: includes/admin/post-types/admin-post-type.php:54 -msgid "Post type submitted." -msgstr "પોસ્ટનો પ્રકાર સબમિટ કર્યો." - -#: includes/admin/post-types/admin-post-type.php:53 -msgid "Post type saved." -msgstr "પોસ્ટનો પ્રકાર સાચવ્યો." - -#: includes/admin/post-types/admin-post-type.php:50 -msgid "Post type updated." -msgstr "પોસ્ટ પ્રકાર અપડેટ કર્યો." - -#: includes/admin/post-types/admin-post-type.php:49 -msgid "Post type deleted." -msgstr "પોસ્ટનો પ્રકાર કાઢી નાખ્યો." - -#: includes/admin/post-types/admin-field-group.php:120 -#: assets/build/js/acf-field-group.js:1146 -#: assets/build/js/acf-field-group.js:1366 -msgid "Type to search..." -msgstr "શોધવા માટે ટાઇપ કરો..." - -#: includes/admin/post-types/admin-field-group.php:105 -#: assets/build/js/acf-field-group.js:1172 -#: assets/build/js/acf-field-group.js:2319 -#: assets/build/js/acf-field-group.js:1414 -#: assets/build/js/acf-field-group.js:2727 -msgid "PRO Only" -msgstr "માત્ર પ્રો" - -#: includes/admin/post-types/admin-field-group.php:97 -#: assets/build/js/acf-internal-post-type.js:308 -#: assets/build/js/acf-internal-post-type.js:417 -msgid "Field groups linked successfully." -msgstr "ક્ષેત્ર જૂથો સફળતાપૂર્વક લિંક થયા." - -#. translators: %s - URL to ACF tools page. -#: includes/admin/admin.php:195 -msgid "" -"Import Post Types and Taxonomies registered with Custom Post Type UI and " -"manage them with ACF. Get Started." -msgstr "" -"કસ્ટમ પોસ્ટ પ્રકાર UI સાથે નોંધાયેલ પોસ્ટ પ્રકારો અને વર્ગીકરણ આયાત કરો અને ACF સાથે તેનું " -"સંચાલન કરો. પ્રારંભ કરો." - -#: includes/admin/admin.php:48 includes/admin/admin.php:267 -msgid "ACF" -msgstr "" - -#: includes/admin/admin-internal-post-type.php:322 -msgid "taxonomy" -msgstr "વર્ગીકરણ" - -#: includes/admin/admin-internal-post-type.php:322 -msgid "post type" -msgstr "પોસ્ટ પ્રકાર" - -#: includes/admin/admin-internal-post-type.php:346 -msgid "Done" -msgstr "પૂર્ણ" - -#: includes/admin/admin-internal-post-type.php:332 -msgid "Field Group(s)" -msgstr "ક્ષેત્ર જૂથો" - -#: includes/admin/admin-internal-post-type.php:331 -msgid "Select one or many field groups..." -msgstr "" - -#: includes/admin/admin-internal-post-type.php:330 -msgid "Please select the field groups to link." -msgstr "" - -#: includes/admin/admin-internal-post-type.php:288 -msgid "Field group linked successfully." -msgid_plural "Field groups linked successfully." -msgstr[0] "" -msgstr[1] "" - -#: includes/admin/admin-internal-post-type-list.php:261 -#: includes/admin/post-types/admin-post-types.php:371 -#: includes/admin/post-types/admin-taxonomies.php:378 -msgctxt "post status" -msgid "Registration Failed" -msgstr "" - -#: includes/admin/admin-internal-post-type-list.php:260 -msgid "" -"This item could not be registered because its key is in use by another item " -"registered by another plugin or theme." -msgstr "" - -#: includes/acf-internal-post-type-functions.php:482 -#: includes/acf-internal-post-type-functions.php:511 -msgid "REST API" -msgstr "" - -#: includes/acf-internal-post-type-functions.php:481 -#: includes/acf-internal-post-type-functions.php:510 -#: includes/acf-internal-post-type-functions.php:537 -msgid "Permissions" -msgstr "પરવાનગીઓ" - -#: includes/acf-internal-post-type-functions.php:480 -#: includes/acf-internal-post-type-functions.php:509 -msgid "URLs" -msgstr "URLs" - -#: includes/acf-internal-post-type-functions.php:479 -#: includes/acf-internal-post-type-functions.php:508 -#: includes/acf-internal-post-type-functions.php:535 -msgid "Visibility" -msgstr "દૃશ્યતા" - -#: includes/acf-internal-post-type-functions.php:478 -#: includes/acf-internal-post-type-functions.php:507 -#: includes/acf-internal-post-type-functions.php:536 -msgid "Labels" -msgstr "લેબલ્સ" - -#: includes/admin/post-types/admin-field-group.php:269 -msgid "Field Settings Tabs" -msgstr "ફીલ્ડ સેટિંગ્સ ટૅબ્સ" - -#. Author URI of the plugin -msgid "" -"https://wpengine.com/?utm_source=wordpress." -"org&utm_medium=referral&utm_campaign=plugin_directory&utm_content=advanced_custom_fields" -msgstr "" -"https://wpengine.com/?utm_source=wordpress." -"org&utm_medium=referral&utm_campaign=plugin_directory&utm_content=advanced_custom_fields" - -#: includes/api/api-template.php:867 -msgid "[ACF shortcode value disabled for preview]" -msgstr "[એસીએફ શોર્ટકોડ મૂલ્ય પૂર્વાવલોકન માટે અક્ષમ કર્યું]" - -#: includes/admin/admin-internal-post-type.php:298 -#: includes/admin/post-types/admin-field-group.php:571 -msgid "Close Modal" -msgstr "મોડલ બંધ કરો" - -#: includes/admin/post-types/admin-field-group.php:96 -#: assets/build/js/acf-field-group.js:1670 -#: assets/build/js/acf-field-group.js:1993 -msgid "Field moved to other group" -msgstr "ફિલ્ડ અન્ય જૂથમાં ખસેડવામાં આવ્યું" - -#: includes/admin/post-types/admin-field-group.php:95 -#: assets/build/js/acf.js:1437 assets/build/js/acf.js:1517 -msgid "Close modal" -msgstr "મોડલ બંધ કરો" - -#: includes/fields/class-acf-field-tab.php:125 -msgid "Start a new group of tabs at this tab." -msgstr "આ ટૅબ પર ટૅબનું નવું જૂથ શરૂ કરો." - -#: includes/fields/class-acf-field-tab.php:124 -msgid "New Tab Group" -msgstr "" - -#: includes/fields/class-acf-field-select.php:451 -#: includes/fields/class-acf-field-true_false.php:200 -msgid "Use a stylized checkbox using select2" -msgstr "" - -#: includes/fields/class-acf-field-radio.php:260 -msgid "Save Other Choice" -msgstr "" - -#: includes/fields/class-acf-field-radio.php:249 -msgid "Allow Other Choice" -msgstr "" - -#: includes/fields/class-acf-field-checkbox.php:450 -msgid "Add Toggle All" -msgstr "" - -#: includes/fields/class-acf-field-checkbox.php:409 -msgid "Save Custom Values" -msgstr "" - -#: includes/fields/class-acf-field-checkbox.php:398 -msgid "Allow Custom Values" -msgstr "" - -#: includes/fields/class-acf-field-checkbox.php:148 -msgid "Checkbox custom values cannot be empty. Uncheck any empty values." -msgstr "" - -#: includes/admin/views/global/navigation.php:248 -msgid "Updates" -msgstr "સુધારાઓ" - -#: includes/admin/views/global/navigation.php:176 -msgid "Advanced Custom Fields logo" -msgstr "" - -#: includes/admin/views/global/form-top.php:89 -msgid "Save Changes" -msgstr "ફેરફારો સેવ કરો" - -#: includes/admin/views/global/form-top.php:76 -msgid "Field Group Title" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:704 -#: includes/admin/views/global/form-top.php:3 -msgid "Add title" -msgstr "શીર્ષક ઉમેરો" - -#. translators: %s url to getting started guide -#: includes/admin/views/acf-field-group/list-empty.php:20 -#: includes/admin/views/acf-post-type/list-empty.php:12 -#: includes/admin/views/acf-taxonomy/list-empty.php:12 -#: includes/admin/views/options-page-preview.php:13 -msgid "" -"New to ACF? Take a look at our getting " -"started guide." -msgstr "" - -#: includes/admin/views/acf-field-group/list-empty.php:15 -msgid "Add Field Group" -msgstr "" - -#. translators: %s url to creating a field group page -#: includes/admin/views/acf-field-group/list-empty.php:10 -msgid "" -"ACF uses field groups to group custom " -"fields together, and then attach those fields to edit screens." -msgstr "" - -#: includes/admin/views/acf-field-group/list-empty.php:5 -msgid "Add Your First Field Group" -msgstr "" - -#: includes/admin/admin-options-pages-preview.php:28 -#: includes/admin/views/acf-field-group/pro-features.php:54 -#: includes/admin/views/global/navigation.php:86 -#: includes/admin/views/global/navigation.php:250 -msgid "Options Pages" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:50 -msgid "ACF Blocks" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:58 -msgid "Gallery Field" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:38 -msgid "Flexible Content Field" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:42 -msgid "Repeater Field" -msgstr "" - -#: includes/admin/views/global/navigation.php:212 -msgid "Unlock Extra Features with ACF PRO" -msgstr "" - -#: includes/admin/views/acf-field-group/options.php:267 -msgid "Delete Field Group" -msgstr "" - -#. translators: 1: Post creation date 2: Post creation time -#: includes/admin/views/acf-field-group/options.php:261 -msgid "Created on %1$s at %2$s" -msgstr "" - -#: includes/acf-field-group-functions.php:497 -msgid "Group Settings" -msgstr "" - -#: includes/acf-field-group-functions.php:495 -msgid "Location Rules" -msgstr "" - -#. translators: %s url to field types list -#: includes/admin/views/acf-field-group/fields.php:72 -msgid "" -"Choose from over 30 field types. Learn " -"more." -msgstr "" - -#: includes/admin/views/acf-field-group/fields.php:65 -msgid "" -"Get started creating new custom fields for your posts, pages, custom post " -"types and other WordPress content." -msgstr "" - -#: includes/admin/views/acf-field-group/fields.php:64 -msgid "Add Your First Field" -msgstr "" - -#. translators: A symbol (or text, if not available in your locale) meaning -#. "Order Number", in terms of positional placement. -#: includes/admin/views/acf-field-group/fields.php:43 -msgid "#" -msgstr "#" - -#: includes/admin/views/acf-field-group/fields.php:33 -#: includes/admin/views/acf-field-group/fields.php:67 -#: includes/admin/views/acf-field-group/fields.php:103 -#: includes/admin/views/global/form-top.php:85 -msgid "Add Field" -msgstr "" - -#: includes/acf-field-group-functions.php:496 includes/fields.php:410 -msgid "Presentation" -msgstr "રજૂઆત" - -#: includes/fields.php:409 -msgid "Validation" -msgstr "" - -#: includes/acf-internal-post-type-functions.php:477 -#: includes/acf-internal-post-type-functions.php:506 includes/fields.php:408 -msgid "General" -msgstr "સામાન્ય" - -#: includes/admin/tools/class-acf-admin-tool-import.php:70 -msgid "Import JSON" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:392 -msgid "Export As JSON" -msgstr "" - -#. translators: %s number of field groups deactivated -#: includes/admin/post-types/admin-field-groups.php:367 -msgid "Field group deactivated." -msgid_plural "%s field groups deactivated." -msgstr[0] "" -msgstr[1] "" - -#. translators: %s number of field groups activated -#: includes/admin/post-types/admin-field-groups.php:360 -msgid "Field group activated." -msgid_plural "%s field groups activated." -msgstr[0] "" -msgstr[1] "" - -#: includes/admin/admin-internal-post-type-list.php:452 -#: includes/admin/admin-internal-post-type-list.php:478 -msgid "Deactivate" -msgstr "નિષ્ક્રિય" - -#: includes/admin/admin-internal-post-type-list.php:452 -msgid "Deactivate this item" -msgstr "આ આઇટમ નિષ્ક્રિય કરો" - -#: includes/admin/admin-internal-post-type-list.php:448 -#: includes/admin/admin-internal-post-type-list.php:477 -msgid "Activate" -msgstr "સક્રિય કરો" - -#: includes/admin/admin-internal-post-type-list.php:448 -msgid "Activate this item" -msgstr "આ આઇટમ સક્રિય કરો" - -#: includes/admin/post-types/admin-field-group.php:92 -#: assets/build/js/acf-field-group.js:2812 -#: assets/build/js/acf-field-group.js:3313 -msgid "Move field group to trash?" -msgstr "" - -#: acf.php:497 includes/admin/admin-internal-post-type-list.php:248 -#: includes/admin/post-types/admin-field-group.php:297 -#: includes/admin/post-types/admin-post-type.php:295 -#: includes/admin/post-types/admin-taxonomy.php:297 -msgctxt "post status" -msgid "Inactive" -msgstr "નિષ્ક્રિય" - -#. Author of the plugin -msgid "WP Engine" -msgstr "" - -#: acf.php:555 -msgid "" -"Advanced Custom Fields and Advanced Custom Fields PRO should not be active " -"at the same time. We've automatically deactivated Advanced Custom Fields PRO." -msgstr "" -"અદ્યતન કસ્ટમ ફીલ્ડ્સ અને એડવાન્સ કસ્ટમ ફીલ્ડ્સ PRO એક જ સમયે સક્રિય ન હોવા જોઈએ. અમે " -"એડવાન્સ્ડ કસ્ટમ ફીલ્ડ્સ પ્રોને આપમેળે નિષ્ક્રિય કરી દીધું છે." - -#: acf.php:553 -msgid "" -"Advanced Custom Fields and Advanced Custom Fields PRO should not be active " -"at the same time. We've automatically deactivated Advanced Custom Fields." -msgstr "" -"અદ્યતન કસ્ટમ ફીલ્ડ્સ અને એડવાન્સ કસ્ટમ ફીલ્ડ્સ PRO એક જ સમયે સક્રિય ન હોવા જોઈએ. અમે " -"એડવાન્સ્ડ કસ્ટમ ફીલ્ડ્સને આપમેળે નિષ્ક્રિય કરી દીધા છે." - -#: includes/acf-value-functions.php:374 -msgid "" -"%1$s - We've detected one or more calls to retrieve ACF " -"field values before ACF has been initialized. This is not supported and can " -"result in malformed or missing data. Learn how to fix this." -msgstr "" -"%1$s - ACF શરૂ થાય તે પહેલાં અમે ACF ફીલ્ડ મૂલ્યો પુનઃપ્રાપ્ત કરવા માટે " -"એક અથવા વધુ કૉલ્સ શોધી કાઢ્યા છે. આ સમર્થિત નથી અને તે ખોટા અથવા ખોવાયેલા ડેટામાં " -"પરિણમી શકે છે. આને કેવી રીતે ઠીક કરવું તે જાણો." - -#: includes/fields/class-acf-field-user.php:551 -msgid "%1$s must have a user with the %2$s role." -msgid_plural "%1$s must have a user with one of the following roles: %2$s" -msgstr[0] "" -msgstr[1] "" - -#: includes/fields/class-acf-field-user.php:542 -msgid "%1$s must have a valid user ID." -msgstr "" - -#: includes/fields/class-acf-field-user.php:380 -msgid "Invalid request." -msgstr "અમાન્ય વિનંતી." - -#: includes/fields/class-acf-field-select.php:684 -msgid "%1$s is not one of %2$s" -msgstr "" - -#: includes/fields/class-acf-field-post_object.php:700 -msgid "%1$s must have term %2$s." -msgid_plural "%1$s must have one of the following terms: %2$s" -msgstr[0] "" -msgstr[1] "" - -#: includes/fields/class-acf-field-post_object.php:684 -msgid "%1$s must be of post type %2$s." -msgid_plural "%1$s must be of one of the following post types: %2$s" -msgstr[0] "" -msgstr[1] "" - -#: includes/fields/class-acf-field-post_object.php:675 -msgid "%1$s must have a valid post ID." -msgstr "" - -#: includes/fields/class-acf-field-file.php:475 -msgid "%s requires a valid attachment ID." -msgstr "" - -#: includes/admin/views/acf-field-group/options.php:233 -msgid "Show in REST API" -msgstr "REST API માં બતાવો" - -#: includes/fields/class-acf-field-color_picker.php:168 -msgid "Enable Transparency" -msgstr "પારદર્શિતા સક્ષમ કરો" - -#: includes/fields/class-acf-field-color_picker.php:187 -msgid "RGBA Array" -msgstr "" - -#: includes/fields/class-acf-field-color_picker.php:98 -msgid "RGBA String" -msgstr "" - -#: includes/fields/class-acf-field-color_picker.php:97 -#: includes/fields/class-acf-field-color_picker.php:186 -msgid "Hex String" -msgstr "" - -#: includes/admin/views/browse-fields-modal.php:65 -msgid "Upgrade to PRO" -msgstr "પ્રો પર અપગ્રેડ કરો" - -#: includes/admin/post-types/admin-field-group.php:297 -#: includes/admin/post-types/admin-post-type.php:295 -#: includes/admin/post-types/admin-taxonomy.php:297 -msgctxt "post status" -msgid "Active" -msgstr "સક્રિય" - -#: includes/fields/class-acf-field-email.php:181 -msgid "'%s' is not a valid email address" -msgstr "'%s' ઈ - મેઈલ સરનામું માન્ય નથી." - -#: includes/fields/class-acf-field-color_picker.php:76 -msgid "Color value" -msgstr "રંગનું મુલ્ય" - -#: includes/fields/class-acf-field-color_picker.php:74 -msgid "Select default color" -msgstr "મુળભૂત રંગ પસંદ કરો" - -#: includes/fields/class-acf-field-color_picker.php:72 -msgid "Clear color" -msgstr "રંગ સાફ કરો" - -#: includes/acf-wp-functions.php:90 -msgid "Blocks" -msgstr "બ્લોક્સ" - -#: includes/acf-wp-functions.php:86 -msgid "Options" -msgstr "વિકલ્પો" - -#: includes/acf-wp-functions.php:82 -msgid "Users" -msgstr "વપરાશકર્તાઓ" - -#: includes/acf-wp-functions.php:78 -msgid "Menu items" -msgstr "મેનુ વસ્તુઓ" - -#: includes/acf-wp-functions.php:70 -msgid "Widgets" -msgstr "વિજેટો" - -#: includes/acf-wp-functions.php:62 -msgid "Attachments" -msgstr "જોડાણો" - -#: includes/acf-wp-functions.php:57 -#: includes/admin/post-types/admin-post-types.php:137 -#: includes/admin/post-types/admin-taxonomies.php:112 -#: includes/admin/tools/class-acf-admin-tool-import.php:93 -#: includes/admin/views/acf-post-type/basic-settings.php:86 -#: includes/post-types/class-acf-taxonomy.php:90 -#: includes/post-types/class-acf-taxonomy.php:91 -msgid "Taxonomies" -msgstr "વર્ગીકરણ" - -#: includes/acf-wp-functions.php:44 -#: includes/admin/post-types/admin-post-type.php:126 -#: includes/admin/post-types/admin-post-types.php:139 -#: includes/admin/views/acf-post-type/advanced-settings.php:106 -#: assets/build/js/acf-internal-post-type.js:173 -#: assets/build/js/acf-internal-post-type.js:247 -msgid "Posts" -msgstr "પોસ્ટો" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:76 -msgid "Last updated: %s" -msgstr "છેલ્લી અપડેટ: %s" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:70 -msgid "Sorry, this post is unavailable for diff comparison." -msgstr "માફ કરશો, આ પોસ્ટ અલગ સરખામણી માટે અનુપલબ્ધ છે." - -#: includes/ajax/class-acf-ajax-local-json-diff.php:42 -msgid "Invalid field group parameter(s)." -msgstr "અમાન્ય ક્ષેત્ર જૂથ પરિમાણ(ઓ)." - -#: includes/admin/admin-internal-post-type-list.php:413 -msgid "Awaiting save" -msgstr "સેવ પ્રતીક્ષામાં છે" - -#: includes/admin/admin-internal-post-type-list.php:410 -msgid "Saved" -msgstr "સેવ થયેલ" - -#: includes/admin/admin-internal-post-type-list.php:406 -#: includes/admin/tools/class-acf-admin-tool-import.php:49 -msgid "Import" -msgstr "આયાત" - -#: includes/admin/admin-internal-post-type-list.php:402 -msgid "Review changes" -msgstr "ફેરફારોની સમીક્ષા કરો" - -#: includes/admin/admin-internal-post-type-list.php:378 -msgid "Located in: %s" -msgstr "સ્થિત થયેલ છે: %s" - -#: includes/admin/admin-internal-post-type-list.php:375 -msgid "Located in plugin: %s" -msgstr "" - -#: includes/admin/admin-internal-post-type-list.php:372 -msgid "Located in theme: %s" -msgstr "" - -#: includes/admin/post-types/admin-field-groups.php:261 -msgid "Various" -msgstr "વિવિધ" - -#: includes/admin/admin-internal-post-type-list.php:216 -#: includes/admin/admin-internal-post-type-list.php:485 -msgid "Sync changes" -msgstr "સમન્વય ફેરફારો" - -#: includes/admin/admin-internal-post-type-list.php:215 -msgid "Loading diff" -msgstr "તફાવત લોડ કરી રહ્યું છે" - -#: includes/admin/admin-internal-post-type-list.php:214 -msgid "Review local JSON changes" -msgstr "સ્થાનિક JSON ફેરફારોની સમીક્ષા કરો" - -#: includes/admin/admin.php:170 -msgid "Visit website" -msgstr "વેબસાઇટની મુલાકાત લો" - -#: includes/admin/admin.php:169 -msgid "View details" -msgstr "વિગતો જુઓ" - -#: includes/admin/admin.php:168 -msgid "Version %s" -msgstr "આવૃત્તિ %s" - -#: includes/admin/admin.php:167 -msgid "Information" -msgstr "માહિતી" - -#: includes/admin/admin.php:158 -msgid "" -"Help Desk. The support professionals on " -"our Help Desk will assist with your more in depth, technical challenges." -msgstr "" - -#: includes/admin/admin.php:154 -msgid "" -"Discussions. We have an active and " -"friendly community on our Community Forums who may be able to help you " -"figure out the 'how-tos' of the ACF world." -msgstr "" - -#: includes/admin/admin.php:150 -msgid "" -"Documentation. Our extensive " -"documentation contains references and guides for most situations you may " -"encounter." -msgstr "" - -#: includes/admin/admin.php:147 -msgid "" -"We are fanatical about support, and want you to get the best out of your " -"website with ACF. If you run into any difficulties, there are several places " -"you can find help:" -msgstr "" -"અમે સમર્થનને લઈને કટ્ટરપંથી છીએ અને ઈચ્છીએ છીએ કે તમે ACF સાથે તમારી વેબસાઇટનો શ્રેષ્ઠ લાભ " -"મેળવો. જો તમને કોઈ મુશ્કેલી આવે, તો ત્યાં ઘણી જગ્યાએ મદદ મળી શકે છે:" - -#: includes/admin/admin.php:144 includes/admin/admin.php:146 -msgid "Help & Support" -msgstr "મદદ અને આધાર" - -#: includes/admin/admin.php:135 -msgid "" -"Please use the Help & Support tab to get in touch should you find yourself " -"requiring assistance." -msgstr "" -"જો તમને તમારી જાતને સહાયની જરૂર જણાય તો સંપર્કમાં રહેવા માટે કૃપા કરીને મદદ અને સમર્થન " -"ટેબનો ઉપયોગ કરો." - -#: includes/admin/admin.php:132 -msgid "" -"Before creating your first Field Group, we recommend first reading our Getting started guide to familiarize " -"yourself with the plugin's philosophy and best practises." -msgstr "" - -#: includes/admin/admin.php:130 -msgid "" -"The Advanced Custom Fields plugin provides a visual form builder to " -"customize WordPress edit screens with extra fields, and an intuitive API to " -"display custom field values in any theme template file." -msgstr "" - -#: includes/admin/admin.php:127 includes/admin/admin.php:129 -msgid "Overview" -msgstr "અવલોકન" - -#: includes/locations.php:36 -msgid "Location type \"%s\" is already registered." -msgstr "" - -#: includes/locations.php:25 -msgid "Class \"%s\" does not exist." -msgstr "" - -#: includes/ajax/class-acf-ajax.php:157 -msgid "Invalid nonce." -msgstr "અમાન્ય નૉન." - -#: includes/fields/class-acf-field-user.php:375 -msgid "Error loading field." -msgstr "" - -#: assets/build/js/acf-input.js:2750 assets/build/js/acf-input.js:2819 -#: assets/build/js/acf-input.js:2926 assets/build/js/acf-input.js:3000 -msgid "Location not found: %s" -msgstr "સ્થાન મળ્યું નથી: %s" - -#: includes/forms/form-user.php:353 -msgid "Error: %s" -msgstr "" - -#: includes/locations/class-acf-location-widget.php:22 -msgid "Widget" -msgstr "વિજેટ" - -#: includes/locations/class-acf-location-user-role.php:24 -msgid "User Role" -msgstr "વપરાશકર્તાની ભૂમિકા" - -#: includes/locations/class-acf-location-comment.php:22 -msgid "Comment" -msgstr "ટિપ્પણી" - -#: includes/locations/class-acf-location-post-format.php:22 -msgid "Post Format" -msgstr "પોસ્ટ ફોર્મેટ" - -#: includes/locations/class-acf-location-nav-menu-item.php:22 -msgid "Menu Item" -msgstr "મેનુ વસ્તુ" - -#: includes/locations/class-acf-location-post-status.php:22 -msgid "Post Status" -msgstr "પોસ્ટની સ્થિતિ" - -#: includes/acf-wp-functions.php:74 -#: includes/locations/class-acf-location-nav-menu.php:89 -msgid "Menus" -msgstr "મેનુઓ" - -#: includes/locations/class-acf-location-nav-menu.php:80 -msgid "Menu Locations" -msgstr "મેનુ ની જગ્યાઓ" - -#: includes/locations/class-acf-location-nav-menu.php:22 -msgid "Menu" -msgstr "મેનુ" - -#: includes/locations/class-acf-location-post-taxonomy.php:22 -msgid "Post Taxonomy" -msgstr "" - -#: includes/locations/class-acf-location-page-type.php:114 -msgid "Child Page (has parent)" -msgstr "" - -#: includes/locations/class-acf-location-page-type.php:113 -msgid "Parent Page (has children)" -msgstr "" - -#: includes/locations/class-acf-location-page-type.php:112 -msgid "Top Level Page (no parent)" -msgstr "" - -#: includes/locations/class-acf-location-page-type.php:111 -msgid "Posts Page" -msgstr "પોસ્ટ્સ પેજ" - -#: includes/locations/class-acf-location-page-type.php:110 -msgid "Front Page" -msgstr "પહેલું પાનું" - -#: includes/locations/class-acf-location-page-type.php:22 -msgid "Page Type" -msgstr "પેજ પ્રકાર" - -#: includes/locations/class-acf-location-current-user.php:73 -msgid "Viewing back end" -msgstr "" - -#: includes/locations/class-acf-location-current-user.php:72 -msgid "Viewing front end" -msgstr "" - -#: includes/locations/class-acf-location-current-user.php:71 -msgid "Logged in" -msgstr "લૉગ ઇન કર્યું" - -#: includes/locations/class-acf-location-current-user.php:22 -msgid "Current User" -msgstr "વર્તમાન વપરાશકર્તા" - -#: includes/locations/class-acf-location-page-template.php:22 -msgid "Page Template" -msgstr "પેજ ટેમ્પલેટ" - -#: includes/locations/class-acf-location-user-form.php:74 -msgid "Register" -msgstr "રજિસ્ટર" - -#: includes/locations/class-acf-location-user-form.php:73 -msgid "Add / Edit" -msgstr "ઉમેરો / સંપાદિત કરો" - -#: includes/locations/class-acf-location-user-form.php:22 -msgid "User Form" -msgstr "વપરાશકર્તા ફોર્મ" - -#: includes/locations/class-acf-location-page-parent.php:22 -msgid "Page Parent" -msgstr "પેજ પેરન્ટ" - -#: includes/locations/class-acf-location-current-user-role.php:77 -msgid "Super Admin" -msgstr "સુપર સંચાલક" - -#: includes/locations/class-acf-location-current-user-role.php:22 -msgid "Current User Role" -msgstr "વર્તમાન વપરાશકર્તા ભૂમિકા" - -#: includes/locations/class-acf-location-page-template.php:73 -#: includes/locations/class-acf-location-post-template.php:85 -msgid "Default Template" -msgstr "મૂળભૂત ટેમ્પલેટ" - -#: includes/locations/class-acf-location-post-template.php:22 -msgid "Post Template" -msgstr "પોસ્ટ ટેમ્પલેટ" - -#: includes/locations/class-acf-location-post-category.php:22 -msgid "Post Category" -msgstr "પોસ્ટ કેટેગરી" - -#: includes/locations/class-acf-location-attachment.php:84 -msgid "All %s formats" -msgstr "બધા %s ફોર્મેટ" - -#: includes/locations/class-acf-location-attachment.php:22 -msgid "Attachment" -msgstr "જોડાણ" - -#: includes/validation.php:366 -msgid "%s value is required" -msgstr "" - -#: includes/admin/views/acf-field-group/conditional-logic.php:59 -msgid "Show this field if" -msgstr "" - -#: includes/admin/views/acf-field-group/conditional-logic.php:26 -#: includes/admin/views/acf-field-group/field.php:109 includes/fields.php:411 -msgid "Conditional Logic" -msgstr "" - -#: includes/admin/views/acf-field-group/conditional-logic.php:156 -#: includes/admin/views/acf-field-group/location-rule.php:92 -msgid "and" -msgstr "અને" - -#: includes/admin/post-types/admin-field-groups.php:123 -#: includes/admin/post-types/admin-post-types.php:143 -#: includes/admin/post-types/admin-taxonomies.php:143 -msgid "Local JSON" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:46 -msgid "Clone Field" -msgstr "" - -#: includes/admin/views/upgrade/notice.php:30 -msgid "" -"Please also check all premium add-ons (%s) are updated to the latest version." -msgstr "" -"કૃપા કરીને તમામ પ્રીમિયમ એડ-ઓન્સ (%s) નવીનતમ સંસ્કરણ પર અપડેટ થયા છે તે પણ તપાસો." - -#: includes/admin/views/upgrade/notice.php:28 -msgid "" -"This version contains improvements to your database and requires an upgrade." -msgstr "" - -#: includes/admin/views/upgrade/notice.php:28 -msgid "Thank you for updating to %1$s v%2$s!" -msgstr "" - -#: includes/admin/views/upgrade/notice.php:27 -msgid "Database Upgrade Required" -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:141 -#: includes/admin/views/upgrade/notice.php:18 -msgid "Options Page" -msgstr "" - -#: includes/admin/views/upgrade/notice.php:15 includes/fields.php:462 -msgid "Gallery" -msgstr "ગેલેરી" - -#: includes/admin/views/upgrade/notice.php:12 includes/fields.php:452 -msgid "Flexible Content" -msgstr "" - -#: includes/admin/views/upgrade/notice.php:9 includes/fields.php:472 -msgid "Repeater" -msgstr "" - -#: includes/admin/views/tools/tools.php:24 -msgid "Back to all tools" -msgstr "" - -#: includes/admin/views/acf-field-group/options.php:195 -msgid "" -"If multiple field groups appear on an edit screen, the first field group's " -"options will be used (the one with the lowest order number)" -msgstr "" - -#: includes/admin/views/acf-field-group/options.php:195 -msgid "Select items to hide them from the edit screen." -msgstr "" - -#: includes/admin/views/acf-field-group/options.php:194 -msgid "Hide on screen" -msgstr "સ્ક્રીન પર છુપાવો" - -#: includes/admin/views/acf-field-group/options.php:186 -msgid "Send Trackbacks" -msgstr "ટ્રેકબેકસ મોકલો" - -#: includes/admin/post-types/admin-taxonomy.php:128 -#: includes/admin/views/acf-field-group/options.php:185 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:159 -#: assets/build/js/acf-internal-post-type.js:180 -#: assets/build/js/acf-internal-post-type.js:254 -msgid "Tags" -msgstr "ટૅગ્સ" - -#: includes/admin/post-types/admin-taxonomy.php:130 -#: includes/admin/views/acf-field-group/options.php:184 -#: assets/build/js/acf-internal-post-type.js:183 -#: assets/build/js/acf-internal-post-type.js:257 -msgid "Categories" -msgstr "કેટેગરીઓ" - -#: includes/admin/views/acf-field-group/options.php:182 -#: includes/admin/views/acf-post-type/advanced-settings.php:28 -msgid "Page Attributes" -msgstr "પેજ લક્ષણો" - -#: includes/admin/views/acf-field-group/options.php:181 -msgid "Format" -msgstr "ફોર્મેટ" - -#: includes/admin/views/acf-field-group/options.php:180 -#: includes/admin/views/acf-post-type/advanced-settings.php:22 -msgid "Author" -msgstr "લેખક" - -#: includes/admin/views/acf-field-group/options.php:179 -msgid "Slug" -msgstr "સ્લગ" - -#: includes/admin/views/acf-field-group/options.php:178 -#: includes/admin/views/acf-post-type/advanced-settings.php:27 -msgid "Revisions" -msgstr "પુનરાવર્તનો" - -#: includes/acf-wp-functions.php:66 -#: includes/admin/views/acf-field-group/options.php:177 -#: includes/admin/views/acf-post-type/advanced-settings.php:23 -msgid "Comments" -msgstr "ટિપ્પણીઓ" - -#: includes/admin/views/acf-field-group/options.php:176 -msgid "Discussion" -msgstr "ચર્ચા" - -#: includes/admin/views/acf-field-group/options.php:174 -#: includes/admin/views/acf-post-type/advanced-settings.php:26 -msgid "Excerpt" -msgstr "અવતરણ" - -#: includes/admin/views/acf-field-group/options.php:173 -msgid "Content Editor" -msgstr "" - -#: includes/admin/views/acf-field-group/options.php:172 -msgid "Permalink" -msgstr "પરમાલિંક" - -#: includes/admin/views/acf-field-group/options.php:250 -msgid "Shown in field group list" -msgstr "" - -#: includes/admin/views/acf-field-group/options.php:157 -msgid "Field groups with a lower order will appear first" -msgstr "" - -#: includes/admin/views/acf-field-group/options.php:156 -msgid "Order No." -msgstr "" - -#: includes/admin/views/acf-field-group/options.php:147 -msgid "Below fields" -msgstr "" - -#: includes/admin/views/acf-field-group/options.php:146 -msgid "Below labels" -msgstr "" - -#: includes/admin/views/acf-field-group/options.php:139 -msgid "Instruction Placement" -msgstr "" - -#: includes/admin/views/acf-field-group/options.php:122 -msgid "Label Placement" -msgstr "" - -#: includes/admin/views/acf-field-group/options.php:110 -msgid "Side" -msgstr "" - -#: includes/admin/views/acf-field-group/options.php:109 -msgid "Normal (after content)" -msgstr "" - -#: includes/admin/views/acf-field-group/options.php:108 -msgid "High (after title)" -msgstr "" - -#: includes/admin/views/acf-field-group/options.php:101 -msgid "Position" -msgstr "પદ" - -#: includes/admin/views/acf-field-group/options.php:92 -msgid "Seamless (no metabox)" -msgstr "" - -#: includes/admin/views/acf-field-group/options.php:91 -msgid "Standard (WP metabox)" -msgstr "" - -#: includes/admin/views/acf-field-group/options.php:84 -msgid "Style" -msgstr "સ્ટાઇલ" - -#: includes/admin/views/acf-field-group/fields.php:55 -msgid "Type" -msgstr "પ્રકાર" - -#: includes/admin/post-types/admin-field-groups.php:117 -#: includes/admin/post-types/admin-post-types.php:136 -#: includes/admin/post-types/admin-taxonomies.php:136 -#: includes/admin/views/acf-field-group/fields.php:54 -msgid "Key" -msgstr "ચાવી" - -#. translators: Hidden accessibility text for the positional order number of -#. the field. -#: includes/admin/views/acf-field-group/fields.php:48 -msgid "Order" -msgstr "ઓર્ડર" - -#: includes/admin/views/acf-field-group/field.php:322 -msgid "Close Field" -msgstr "" - -#: includes/admin/views/acf-field-group/field.php:253 -msgid "id" -msgstr "" - -#: includes/admin/views/acf-field-group/field.php:237 -msgid "class" -msgstr "" - -#: includes/admin/views/acf-field-group/field.php:279 -msgid "width" -msgstr "પહોળાઈ" - -#: includes/admin/views/acf-field-group/field.php:273 -msgid "Wrapper Attributes" -msgstr "" - -#: includes/admin/views/acf-field-group/field.php:196 -msgid "Required" -msgstr "જરૂરી?" - -#: includes/admin/views/acf-field-group/field.php:221 -msgid "Instructions for authors. Shown when submitting data" -msgstr "" - -#: includes/admin/views/acf-field-group/field.php:220 -msgid "Instructions" -msgstr "" - -#: includes/admin/views/acf-field-group/field.php:129 -msgid "Field Type" -msgstr "ક્ષેત્ર પ્રકાર" - -#: includes/admin/views/acf-field-group/field.php:170 -msgid "Single word, no spaces. Underscores and dashes allowed" -msgstr "" - -#: includes/admin/views/acf-field-group/field.php:169 -msgid "Field Name" -msgstr "ક્ષેત્રનું નામ" - -#: includes/admin/views/acf-field-group/field.php:157 -msgid "This is the name which will appear on the EDIT page" -msgstr "" - -#: includes/admin/views/acf-field-group/field.php:156 -#: includes/admin/views/browse-fields-modal.php:59 -msgid "Field Label" -msgstr "ફીલ્ડ લેબલ" - -#: includes/admin/views/acf-field-group/field.php:81 -msgid "Delete" -msgstr "કાઢી નાખો" - -#: includes/admin/views/acf-field-group/field.php:81 -msgid "Delete field" -msgstr "ફિલ્ડ કાઢી નાખો" - -#: includes/admin/views/acf-field-group/field.php:79 -msgid "Move" -msgstr "ખસેડો" - -#: includes/admin/views/acf-field-group/field.php:79 -msgid "Move field to another group" -msgstr "" - -#: includes/admin/views/acf-field-group/field.php:77 -msgid "Duplicate field" -msgstr "" - -#: includes/admin/views/acf-field-group/field.php:73 -#: includes/admin/views/acf-field-group/field.php:76 -msgid "Edit field" -msgstr "ફાઇલ સંપાદિત કરો" - -#: includes/admin/views/acf-field-group/field.php:69 -msgid "Drag to reorder" -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:103 -#: includes/admin/views/acf-field-group/location-group.php:3 -#: assets/build/js/acf-field-group.js:2347 -#: assets/build/js/acf-field-group.js:2763 -msgid "Show this field group if" -msgstr "" - -#: includes/admin/views/upgrade/upgrade.php:94 -#: includes/ajax/class-acf-ajax-upgrade.php:34 -msgid "No updates available." -msgstr "કોઈ અપડેટ ઉપલબ્ધ નથી." - -#: includes/admin/views/upgrade/upgrade.php:33 -msgid "Database upgrade complete. See what's new" -msgstr "ડેટાબેઝ અપગ્રેડ પૂર્ણ. નવું શું છે તે જુઓ" - -#: includes/admin/views/upgrade/upgrade.php:30 -msgid "Reading upgrade tasks..." -msgstr "" - -#: includes/admin/views/upgrade/network.php:165 -#: includes/admin/views/upgrade/upgrade.php:65 -msgid "Upgrade failed." -msgstr "" - -#: includes/admin/views/upgrade/network.php:162 -msgid "Upgrade complete." -msgstr "" - -#: includes/admin/views/upgrade/network.php:148 -#: includes/admin/views/upgrade/upgrade.php:31 -msgid "Upgrading data to version %s" -msgstr "" - -#: includes/admin/views/upgrade/network.php:121 -#: includes/admin/views/upgrade/notice.php:44 -msgid "" -"It is strongly recommended that you backup your database before proceeding. " -"Are you sure you wish to run the updater now?" -msgstr "" - -#: includes/admin/views/upgrade/network.php:117 -msgid "Please select at least one site to upgrade." -msgstr "કૃપા કરીને અપગ્રેડ કરવા માટે ઓછામાં ઓછી એક સાઇટ પસંદ કરો." - -#: includes/admin/views/upgrade/network.php:97 -msgid "" -"Database Upgrade complete. Return to network dashboard" -msgstr "" - -#: includes/admin/views/upgrade/network.php:80 -msgid "Site is up to date" -msgstr "" - -#: includes/admin/views/upgrade/network.php:78 -msgid "Site requires database upgrade from %1$s to %2$s" -msgstr "વેબસાઈટને %1$s થી %2$s સુધી ડેટાબેઝ સુધારાની જરૂર છે" - -#: includes/admin/views/upgrade/network.php:36 -#: includes/admin/views/upgrade/network.php:47 -msgid "Site" -msgstr "સાઇટ" - -#: includes/admin/views/upgrade/network.php:26 -#: includes/admin/views/upgrade/network.php:27 -#: includes/admin/views/upgrade/network.php:96 -msgid "Upgrade Sites" -msgstr "અપગ્રેડ સાઇટ્સ" - -#: includes/admin/views/upgrade/network.php:26 -msgid "" -"The following sites require a DB upgrade. Check the ones you want to update " -"and then click %s." -msgstr "" -"નીચેની સાઇટ્સને DB સુધારાની જરૂર છે. તમે અદ્યતન બનાવા માંગો છો તે તપાસો અને પછી %s પર " -"ક્લિક કરો." - -#: includes/admin/views/acf-field-group/conditional-logic.php:171 -#: includes/admin/views/acf-field-group/locations.php:38 -msgid "Add rule group" -msgstr "" - -#: includes/admin/views/acf-field-group/locations.php:10 -msgid "" -"Create a set of rules to determine which edit screens will use these " -"advanced custom fields" -msgstr "" - -#: includes/admin/views/acf-field-group/locations.php:9 -msgid "Rules" -msgstr "નિયમો" - -#: includes/admin/tools/class-acf-admin-tool-export.php:510 -msgid "Copied" -msgstr "કૉપિ થઇ ગયું" - -#: includes/admin/tools/class-acf-admin-tool-export.php:486 -msgid "Copy to clipboard" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:385 -msgid "" -"Select the items you would like to export and then select your export " -"method. Export As JSON to export to a .json file which you can then import " -"to another ACF installation. Generate PHP to export to PHP code which you " -"can place in your theme." -msgstr "" -"તમે નિકાસ કરવા માંગો છો તે વસ્તુઓ પસંદ કરો અને પછી તમારી નિકાસ પદ્ધતિ પસંદ કરો. .json " -"ફાઇલમાં નિકાસ કરવા માટે JSON તરીકે નિકાસ કરો જે પછી તમે અન્ય ACF સ્થાપનમાં આયાત કરી " -"શકો છો. PHP કોડ પર નિકાસ કરવા માટે PHP ઉત્પન્ન કરો જેને તમે તમારી થીમમાં મૂકી શકો છો." - -#: includes/admin/tools/class-acf-admin-tool-export.php:233 -msgid "Select Field Groups" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:96 -#: includes/admin/tools/class-acf-admin-tool-export.php:131 -msgid "No field groups selected" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:39 -#: includes/admin/tools/class-acf-admin-tool-export.php:393 -#: includes/admin/tools/class-acf-admin-tool-export.php:421 -msgid "Generate PHP" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:35 -msgid "Export Field Groups" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:177 -msgid "Import file empty" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:168 -msgid "Incorrect file type" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:163 -msgid "Error uploading file. Please try again" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:50 -msgid "" -"Select the Advanced Custom Fields JSON file you would like to import. When " -"you click the import button below, ACF will import the items in that file." -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:27 -msgid "Import Field Groups" -msgstr "" - -#: includes/admin/admin-internal-post-type-list.php:401 -msgid "Sync" -msgstr "સમન્વય" - -#: includes/admin/admin-internal-post-type-list.php:858 -msgid "Select %s" -msgstr "%s પસંદ કરો" - -#: includes/admin/admin-internal-post-type-list.php:442 -#: includes/admin/admin-internal-post-type-list.php:474 -#: includes/admin/views/acf-field-group/field.php:77 -msgid "Duplicate" -msgstr "ડુપ્લિકેટ" - -#: includes/admin/admin-internal-post-type-list.php:442 -msgid "Duplicate this item" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:41 -msgid "Supports" -msgstr "" - -#: includes/admin/admin.php:261 includes/admin/views/browse-fields-modal.php:92 -msgid "Documentation" -msgstr "માર્ગદર્શિકા" - -#: includes/admin/post-types/admin-field-groups.php:116 -#: includes/admin/post-types/admin-post-types.php:135 -#: includes/admin/post-types/admin-taxonomies.php:135 -#: includes/admin/views/acf-field-group/options.php:249 -#: includes/admin/views/acf-post-type/advanced-settings.php:62 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:114 -#: includes/admin/views/upgrade/network.php:38 -#: includes/admin/views/upgrade/network.php:49 -msgid "Description" -msgstr "વર્ણન" - -#: includes/admin/admin-internal-post-type-list.php:398 -#: includes/admin/admin-internal-post-type-list.php:747 -msgid "Sync available" -msgstr "" - -#. translators: %s number of field groups synchronized -#: includes/admin/post-types/admin-field-groups.php:381 -msgid "Field group synchronized." -msgid_plural "%s field groups synchronized." -msgstr[0] "" -msgstr[1] "" - -#. translators: %s number of field groups duplicated -#: includes/admin/post-types/admin-field-groups.php:374 -msgid "Field group duplicated." -msgid_plural "%s field groups duplicated." -msgstr[0] "" -msgstr[1] "" - -#: includes/admin/admin-internal-post-type-list.php:137 -msgid "Active (%s)" -msgid_plural "Active (%s)" -msgstr[0] "સક્રિય (%s)" -msgstr[1] "સક્રિય (%s)" - -#: includes/admin/admin-upgrade.php:254 -msgid "Review sites & upgrade" -msgstr "" - -#: includes/admin/admin-upgrade.php:59 includes/admin/admin-upgrade.php:93 -#: includes/admin/admin-upgrade.php:94 includes/admin/admin-upgrade.php:230 -#: includes/admin/views/upgrade/network.php:24 -#: includes/admin/views/upgrade/upgrade.php:26 -msgid "Upgrade Database" -msgstr "" - -#: includes/admin/views/acf-field-group/options.php:175 -#: includes/admin/views/acf-post-type/advanced-settings.php:30 -msgid "Custom Fields" -msgstr "કસ્ટમ ફીલ્ડ" - -#: includes/admin/post-types/admin-field-group.php:616 -msgid "Move Field" -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:605 -#: includes/admin/post-types/admin-field-group.php:609 -msgid "Please select the destination for this field" -msgstr "" - -#. translators: Confirmation message once a field has been moved to a different -#. field group. -#: includes/admin/post-types/admin-field-group.php:567 -msgid "The %1$s field can now be found in the %2$s field group" -msgstr "%1$s ક્ષેત્ર હવે %2$s ક્ષેત્ર જૂથમાં મળી શકે છે" - -#: includes/admin/post-types/admin-field-group.php:564 -msgid "Move Complete." -msgstr "" - -#: includes/admin/views/acf-field-group/field.php:39 -#: includes/admin/views/acf-field-group/options.php:217 -#: includes/admin/views/acf-post-type/advanced-settings.php:78 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:130 -msgid "Active" -msgstr "સક્રિય" - -#: includes/admin/post-types/admin-field-group.php:266 -msgid "Field Keys" -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:164 -#: includes/admin/tools/class-acf-admin-tool-export.php:342 -msgid "Settings" -msgstr "સેટિંગ્સ" - -#: includes/admin/post-types/admin-field-groups.php:118 -msgid "Location" -msgstr "સ્થાન" - -#: includes/admin/post-types/admin-field-group.php:104 -#: assets/build/js/acf-input.js:983 assets/build/js/acf-input.js:1075 -msgid "Null" -msgstr "શૂન્ય" - -#: includes/admin/post-types/admin-field-group.php:101 -#: includes/class-acf-internal-post-type.php:730 -#: includes/post-types/class-acf-field-group.php:345 -#: assets/build/js/acf-field-group.js:1510 -#: assets/build/js/acf-field-group.js:1821 -msgid "copy" -msgstr "નકલ" - -#: includes/admin/post-types/admin-field-group.php:100 -#: assets/build/js/acf-field-group.js:623 -#: assets/build/js/acf-field-group.js:778 -msgid "(this field)" -msgstr "(આ ક્ષેત્ર)" - -#: includes/admin/post-types/admin-field-group.php:98 -#: assets/build/js/acf-input.js:918 assets/build/js/acf-input.js:943 -#: assets/build/js/acf-input.js:1002 assets/build/js/acf-input.js:1030 -msgid "Checked" -msgstr "ચકાસાયેલ" - -#: includes/admin/post-types/admin-field-group.php:94 -#: assets/build/js/acf-field-group.js:1615 -#: assets/build/js/acf-field-group.js:1933 -msgid "Move Custom Field" -msgstr "કસ્ટમ ફીલ્ડ ખસેડો" - -#: includes/admin/post-types/admin-field-group.php:93 -#: assets/build/js/acf-field-group.js:649 -#: assets/build/js/acf-field-group.js:804 -msgid "No toggle fields available" -msgstr "કોઈ ટૉગલ ફીલ્ડ ઉપલબ્ધ નથી" - -#: includes/admin/post-types/admin-field-group.php:91 -msgid "Field group title is required" -msgstr "ક્ષેત્ર જૂથ શીર્ષક આવશ્યક છે" - -#: includes/admin/post-types/admin-field-group.php:90 -#: assets/build/js/acf-field-group.js:1604 -#: assets/build/js/acf-field-group.js:1919 -msgid "This field cannot be moved until its changes have been saved" -msgstr "જ્યાં સુધી તેના ફેરફારો સાચવવામાં ન આવે ત્યાં સુધી આ ક્ષેત્ર ખસેડી શકાતું નથી" - -#: includes/admin/post-types/admin-field-group.php:89 -#: assets/build/js/acf-field-group.js:1414 -#: assets/build/js/acf-field-group.js:1716 -msgid "The string \"field_\" may not be used at the start of a field name" -msgstr "શબ્દમાળા \"field_\" નો ઉપયોગ ક્ષેત્રના નામની શરૂઆતમાં થઈ શકશે નહીં" - -#: includes/admin/post-types/admin-field-group.php:71 -msgid "Field group draft updated." -msgstr "ફીલ્ડ ગ્રુપ ડ્રાફ્ટ અપડેટ કર્યો." - -#: includes/admin/post-types/admin-field-group.php:70 -msgid "Field group scheduled for." -msgstr "ક્ષેત્ર જૂથ માટે સુનિશ્ચિત થયેલ છે." - -#: includes/admin/post-types/admin-field-group.php:69 -msgid "Field group submitted." -msgstr "ક્ષેત્ર જૂથ સબમિટ." - -#: includes/admin/post-types/admin-field-group.php:68 -msgid "Field group saved." -msgstr "ક્ષેત્ર જૂથ સાચવ્યું." - -#: includes/admin/post-types/admin-field-group.php:67 -msgid "Field group published." -msgstr "ક્ષેત્ર જૂથ પ્રકાશિત." - -#: includes/admin/post-types/admin-field-group.php:64 -msgid "Field group deleted." -msgstr "ફીલ્ડ જૂથ કાઢી નાખ્યું." - -#: includes/admin/post-types/admin-field-group.php:62 -#: includes/admin/post-types/admin-field-group.php:63 -#: includes/admin/post-types/admin-field-group.php:65 -msgid "Field group updated." -msgstr "ફીલ્ડ જૂથ અપડેટ કર્યું." - -#: includes/admin/admin-tools.php:118 -#: includes/admin/views/global/navigation.php:246 -#: includes/admin/views/tools/tools.php:21 -msgid "Tools" -msgstr "સાધનો" - -#: includes/locations/abstract-acf-location.php:106 -msgid "is not equal to" -msgstr "" - -#: includes/locations/abstract-acf-location.php:105 -msgid "is equal to" -msgstr "" - -#: includes/locations.php:102 -msgid "Forms" -msgstr "સ્વરૂપો" - -#: includes/admin/post-types/admin-post-type.php:127 includes/locations.php:100 -#: includes/locations/class-acf-location-page.php:22 -#: assets/build/js/acf-internal-post-type.js:175 -#: assets/build/js/acf-internal-post-type.js:249 -msgid "Page" -msgstr "પેજ" - -#: includes/admin/post-types/admin-post-type.php:125 includes/locations.php:99 -#: includes/locations/class-acf-location-post.php:22 -#: assets/build/js/acf-internal-post-type.js:172 -#: assets/build/js/acf-internal-post-type.js:246 -msgid "Post" -msgstr "પોસ્ટ" - -#: includes/fields.php:354 -msgid "Relational" -msgstr "સંબંધી" - -#: includes/fields.php:353 -msgid "Choice" -msgstr "પસંદગી" - -#: includes/fields.php:351 -msgid "Basic" -msgstr "પાયાની" - -#: includes/fields.php:320 -msgid "Unknown" -msgstr "અજ્ઞાત" - -#: includes/fields.php:320 -msgid "Field type does not exist" -msgstr "ક્ષેત્ર પ્રકાર અસ્તિત્વમાં નથી" - -#: includes/forms/form-front.php:236 -msgid "Spam Detected" -msgstr "" - -#: includes/forms/form-front.php:107 -msgid "Post updated" -msgstr "પોસ્ટ અપડેટ થઇ ગઈ" - -#: includes/forms/form-front.php:106 -msgid "Update" -msgstr "સુધારો" - -#: includes/forms/form-front.php:57 -msgid "Validate Email" -msgstr "ઇમેઇલ માન્ય કરો" - -#: includes/fields.php:352 includes/forms/form-front.php:49 -msgid "Content" -msgstr "લખાણ" - -#: includes/admin/views/acf-post-type/advanced-settings.php:21 -#: includes/forms/form-front.php:40 -msgid "Title" -msgstr "શીર્ષક" - -#: includes/assets.php:372 includes/forms/form-comment.php:160 -#: assets/build/js/acf-input.js:7382 assets/build/js/acf-input.js:7968 -msgid "Edit field group" -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:117 -#: assets/build/js/acf-input.js:1125 assets/build/js/acf-input.js:1230 -msgid "Selection is less than" -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:116 -#: assets/build/js/acf-input.js:1106 assets/build/js/acf-input.js:1202 -msgid "Selection is greater than" -msgstr "પસંદગી કરતાં વધારે છે" - -#: includes/admin/post-types/admin-field-group.php:115 -#: assets/build/js/acf-input.js:1075 assets/build/js/acf-input.js:1170 -msgid "Value is less than" -msgstr "કરતાં ઓછું મૂલ્ય છે" - -#: includes/admin/post-types/admin-field-group.php:114 -#: assets/build/js/acf-input.js:1045 assets/build/js/acf-input.js:1139 -msgid "Value is greater than" -msgstr "કરતાં વધુ મૂલ્ય છે" - -#: includes/admin/post-types/admin-field-group.php:113 -#: assets/build/js/acf-input.js:888 assets/build/js/acf-input.js:960 -msgid "Value contains" -msgstr "મૂલ્ય સમાવે છે" - -#: includes/admin/post-types/admin-field-group.php:112 -#: assets/build/js/acf-input.js:862 assets/build/js/acf-input.js:926 -msgid "Value matches pattern" -msgstr "મૂલ્ય પેટર્ન સાથે મેળ ખાય છે" - -#: includes/admin/post-types/admin-field-group.php:111 -#: assets/build/js/acf-input.js:840 assets/build/js/acf-input.js:1023 -#: assets/build/js/acf-input.js:903 assets/build/js/acf-input.js:1116 -msgid "Value is not equal to" -msgstr "મૂલ્ય સમાન નથી" - -#: includes/admin/post-types/admin-field-group.php:110 -#: assets/build/js/acf-input.js:810 assets/build/js/acf-input.js:964 -#: assets/build/js/acf-input.js:864 assets/build/js/acf-input.js:1053 -msgid "Value is equal to" -msgstr "મૂલ્ય સમાન છે" - -#: includes/admin/post-types/admin-field-group.php:109 -#: assets/build/js/acf-input.js:788 assets/build/js/acf-input.js:841 -msgid "Has no value" -msgstr "કોઈ મૂલ્ય નથી" - -#: includes/admin/post-types/admin-field-group.php:108 -#: assets/build/js/acf-input.js:758 assets/build/js/acf-input.js:783 -msgid "Has any value" -msgstr "કોઈપણ મૂલ્ય ધરાવે છે" - -#: includes/admin/admin-internal-post-type.php:345 -#: includes/admin/views/browse-fields-modal.php:62 includes/assets.php:353 -#: assets/build/js/acf.js:1564 assets/build/js/acf.js:1658 -msgid "Cancel" -msgstr "રદ" - -#: includes/assets.php:349 assets/build/js/acf.js:1738 -#: assets/build/js/acf.js:1855 -msgid "Are you sure?" -msgstr "શું તમને ખાતરી છે?" - -#: includes/assets.php:369 assets/build/js/acf-input.js:9442 -#: assets/build/js/acf-input.js:10294 -msgid "%d fields require attention" -msgstr "" - -#: includes/assets.php:368 assets/build/js/acf-input.js:9440 -#: assets/build/js/acf-input.js:10290 -msgid "1 field requires attention" -msgstr "" - -#: includes/assets.php:367 includes/validation.php:288 -#: includes/validation.php:298 assets/build/js/acf-input.js:9435 -#: assets/build/js/acf-input.js:10285 -msgid "Validation failed" -msgstr "" - -#: includes/assets.php:366 assets/build/js/acf-input.js:9603 -#: assets/build/js/acf-input.js:10473 -msgid "Validation successful" -msgstr "" - -#: includes/media.php:54 assets/build/js/acf-input.js:7210 -#: assets/build/js/acf-input.js:7772 -msgid "Restricted" -msgstr "પ્રતિબંધિત" - -#: includes/media.php:53 assets/build/js/acf-input.js:7025 -#: assets/build/js/acf-input.js:7536 -msgid "Collapse Details" -msgstr "" - -#: includes/media.php:52 assets/build/js/acf-input.js:7025 -#: assets/build/js/acf-input.js:7533 -msgid "Expand Details" -msgstr "વિગતો વિસ્તૃત કરો" - -#: includes/admin/views/acf-post-type/advanced-settings.php:465 -#: includes/media.php:51 assets/build/js/acf-input.js:6892 -#: assets/build/js/acf-input.js:7381 -msgid "Uploaded to this post" -msgstr "આ પોસ્ટમાં અપલોડ કરવામાં આવ્યું છે" - -#: includes/media.php:50 assets/build/js/acf-input.js:6931 -#: assets/build/js/acf-input.js:7420 -msgctxt "verb" -msgid "Update" -msgstr "સુધારો" - -#: includes/media.php:49 -msgctxt "verb" -msgid "Edit" -msgstr "સંપાદિત કરો" - -#: includes/assets.php:363 assets/build/js/acf-input.js:9212 -#: assets/build/js/acf-input.js:10056 -msgid "The changes you made will be lost if you navigate away from this page" -msgstr "જો તમે આ પૃષ્ઠ છોડીને જશો તો તમે કરેલા ફેરફારો ખોવાઈ જશે" - -#: includes/api/api-helpers.php:3395 -msgid "File type must be %s." -msgstr "ફાઇલનો પ્રકાર %s હોવો આવશ્યક છે." - -#: includes/admin/post-types/admin-field-group.php:102 -#: includes/admin/views/acf-field-group/conditional-logic.php:59 -#: includes/admin/views/acf-field-group/conditional-logic.php:169 -#: includes/admin/views/acf-field-group/location-group.php:3 -#: includes/admin/views/acf-field-group/locations.php:36 -#: includes/api/api-helpers.php:3391 assets/build/js/acf-field-group.js:771 -#: assets/build/js/acf-field-group.js:2385 -#: assets/build/js/acf-field-group.js:933 -#: assets/build/js/acf-field-group.js:2807 -msgid "or" -msgstr "અથવા" - -#: includes/api/api-helpers.php:3364 -msgid "File size must not exceed %s." -msgstr "ફાઇલનું કદ %s થી વધુ ન હોવું જોઈએ." - -#: includes/api/api-helpers.php:3359 -msgid "File size must be at least %s." -msgstr "" - -#: includes/api/api-helpers.php:3344 -msgid "Image height must not exceed %dpx." -msgstr "છબીની ઊંચાઈ %dpx કરતાં વધુ ન હોવી જોઈએ." - -#: includes/api/api-helpers.php:3339 -msgid "Image height must be at least %dpx." -msgstr "છબીની ઊંચાઈ ઓછામાં ઓછી %dpx હોવી જોઈએ." - -#: includes/api/api-helpers.php:3325 -msgid "Image width must not exceed %dpx." -msgstr "છબીની પહોળાઈ %dpx થી વધુ ન હોવી જોઈએ." - -#: includes/api/api-helpers.php:3320 -msgid "Image width must be at least %dpx." -msgstr "છબીની પહોળાઈ ઓછામાં ઓછી %dpx હોવી જોઈએ." - -#: includes/api/api-helpers.php:1561 includes/api/api-term.php:147 -msgid "(no title)" -msgstr "(કોઈ શીર્ષક નથી)" - -#: includes/api/api-helpers.php:853 -msgid "Full Size" -msgstr "પૂર્ણ કદ" - -#: includes/api/api-helpers.php:812 -msgid "Large" -msgstr "મોટું" - -#: includes/api/api-helpers.php:811 -msgid "Medium" -msgstr "મધ્યમ" - -#: includes/api/api-helpers.php:810 -msgid "Thumbnail" -msgstr "થંબનેલ" - -#: includes/acf-field-functions.php:854 -#: includes/admin/post-types/admin-field-group.php:99 -#: assets/build/js/acf-field-group.js:1077 -#: assets/build/js/acf-field-group.js:1260 -msgid "(no label)" -msgstr "(લેબલ નથી)" - -#: includes/fields/class-acf-field-textarea.php:145 -msgid "Sets the textarea height" -msgstr "" - -#: includes/fields/class-acf-field-textarea.php:144 -msgid "Rows" -msgstr "પંક્તિઓ" - -#: includes/fields/class-acf-field-textarea.php:25 -msgid "Text Area" -msgstr "" - -#: includes/fields/class-acf-field-checkbox.php:451 -msgid "Prepend an extra checkbox to toggle all choices" -msgstr "" - -#: includes/fields/class-acf-field-checkbox.php:413 -msgid "Save 'custom' values to the field's choices" -msgstr "" - -#: includes/fields/class-acf-field-checkbox.php:402 -msgid "Allow 'custom' values to be added" -msgstr "" - -#: includes/fields/class-acf-field-checkbox.php:38 -msgid "Add new choice" -msgstr "" - -#: includes/fields/class-acf-field-checkbox.php:174 -msgid "Toggle All" -msgstr "" - -#: includes/fields/class-acf-field-page_link.php:506 -msgid "Allow Archives URLs" -msgstr "" - -#: includes/fields/class-acf-field-page_link.php:179 -msgid "Archives" -msgstr "આર્કાઇવ્સ" - -#: includes/fields/class-acf-field-page_link.php:25 -msgid "Page Link" -msgstr "પૃષ્ઠ લિંક" - -#: includes/fields/class-acf-field-taxonomy.php:943 -#: includes/locations/class-acf-location-user-form.php:72 -msgid "Add" -msgstr "ઉમેરો" - -#: includes/admin/views/acf-field-group/fields.php:53 -#: includes/fields/class-acf-field-taxonomy.php:908 -msgid "Name" -msgstr "નામ" - -#: includes/fields/class-acf-field-taxonomy.php:892 -msgid "%s added" -msgstr "%s ઉમેર્યું" - -#: includes/fields/class-acf-field-taxonomy.php:856 -msgid "%s already exists" -msgstr "" - -#: includes/fields/class-acf-field-taxonomy.php:844 -msgid "User unable to add new %s" -msgstr "વપરાશકર્તા નવા %s ઉમેરવામાં અસમર્થ છે" - -#: includes/fields/class-acf-field-taxonomy.php:742 -msgid "Term ID" -msgstr "" - -#: includes/fields/class-acf-field-taxonomy.php:741 -msgid "Term Object" -msgstr "" - -#: includes/fields/class-acf-field-taxonomy.php:726 -msgid "Load value from posts terms" -msgstr "" - -#: includes/fields/class-acf-field-taxonomy.php:725 -msgid "Load Terms" -msgstr "" - -#: includes/fields/class-acf-field-taxonomy.php:715 -msgid "Connect selected terms to the post" -msgstr "" - -#: includes/fields/class-acf-field-taxonomy.php:714 -msgid "Save Terms" -msgstr "" - -#: includes/fields/class-acf-field-taxonomy.php:704 -msgid "Allow new terms to be created whilst editing" -msgstr "સંપાદન કરતી વખતે નવી શરતો બનાવવાની મંજૂરી આપો" - -#: includes/fields/class-acf-field-taxonomy.php:703 -msgid "Create Terms" -msgstr "" - -#: includes/fields/class-acf-field-taxonomy.php:762 -msgid "Radio Buttons" -msgstr "" - -#: includes/fields/class-acf-field-taxonomy.php:761 -msgid "Single Value" -msgstr "" - -#: includes/fields/class-acf-field-taxonomy.php:759 -msgid "Multi Select" -msgstr "" - -#: includes/fields/class-acf-field-checkbox.php:25 -#: includes/fields/class-acf-field-taxonomy.php:758 -msgid "Checkbox" -msgstr "ચેકબોક્સ" - -#: includes/fields/class-acf-field-taxonomy.php:757 -msgid "Multiple Values" -msgstr "" - -#: includes/fields/class-acf-field-taxonomy.php:752 -msgid "Select the appearance of this field" -msgstr "" - -#: includes/fields/class-acf-field-taxonomy.php:751 -msgid "Appearance" -msgstr "દેખાવ" - -#: includes/fields/class-acf-field-taxonomy.php:693 -msgid "Select the taxonomy to be displayed" -msgstr "" - -#: includes/fields/class-acf-field-taxonomy.php:654 -msgctxt "No Terms" -msgid "No %s" -msgstr "ના %s" - -#: includes/fields/class-acf-field-number.php:266 -msgid "Value must be equal to or lower than %d" -msgstr "" - -#: includes/fields/class-acf-field-number.php:259 -msgid "Value must be equal to or higher than %d" -msgstr "મૂલ્ય %d ની બરાબર અથવા વધારે હોવું જોઈએ" - -#: includes/fields/class-acf-field-number.php:244 -msgid "Value must be a number" -msgstr "મૂલ્ય સંખ્યા હોવી જોઈએ" - -#: includes/fields/class-acf-field-number.php:25 -msgid "Number" -msgstr "સંખ્યા" - -#: includes/fields/class-acf-field-radio.php:264 -msgid "Save 'other' values to the field's choices" -msgstr "ક્ષેત્રની પસંદગીમાં 'અન્ય' મૂલ્યો સાચવો" - -#: includes/fields/class-acf-field-radio.php:253 -msgid "Add 'other' choice to allow for custom values" -msgstr "" - -#: includes/admin/views/global/navigation.php:196 -msgid "Other" -msgstr "અન્ય" - -#: includes/fields/class-acf-field-radio.php:25 -msgid "Radio Button" -msgstr "" - -#: includes/fields/class-acf-field-accordion.php:107 -msgid "" -"Define an endpoint for the previous accordion to stop. This accordion will " -"not be visible." -msgstr "" -"પાછલા એકોર્ડિયનને રોકવા માટે અંતિમ બિંદુને વ્યાખ્યાયિત કરો. આ એકોર્ડિયન દેખાશે નહીં." - -#: includes/fields/class-acf-field-accordion.php:96 -msgid "Allow this accordion to open without closing others." -msgstr "" - -#: includes/fields/class-acf-field-accordion.php:95 -msgid "Multi-Expand" -msgstr "" - -#: includes/fields/class-acf-field-accordion.php:85 -msgid "Display this accordion as open on page load." -msgstr "" - -#: includes/fields/class-acf-field-accordion.php:84 -msgid "Open" -msgstr "ઓપન" - -#: includes/fields/class-acf-field-accordion.php:25 -msgid "Accordion" -msgstr "" - -#: includes/fields/class-acf-field-file.php:267 -#: includes/fields/class-acf-field-file.php:279 -msgid "Restrict which files can be uploaded" -msgstr "" - -#: includes/fields/class-acf-field-file.php:220 -msgid "File ID" -msgstr "" - -#: includes/fields/class-acf-field-file.php:219 -msgid "File URL" -msgstr "ફાઈલ યુઆરએલ" - -#: includes/fields/class-acf-field-file.php:218 -msgid "File Array" -msgstr "" - -#: includes/fields/class-acf-field-file.php:186 -msgid "Add File" -msgstr "ફાઇલ ઉમેરો" - -#: includes/admin/tools/class-acf-admin-tool-import.php:156 -#: includes/fields/class-acf-field-file.php:186 -msgid "No file selected" -msgstr "કોઈ ફાઇલ પસંદ કરી નથી" - -#: includes/fields/class-acf-field-file.php:150 -msgid "File name" -msgstr "ફાઇલનું નામ" - -#: includes/fields/class-acf-field-file.php:63 -#: assets/build/js/acf-input.js:2474 assets/build/js/acf-input.js:2625 -msgid "Update File" -msgstr "ફાઇલ અપડેટ કરો" - -#: includes/fields/class-acf-field-file.php:62 -#: assets/build/js/acf-input.js:2473 assets/build/js/acf-input.js:2624 -msgid "Edit File" -msgstr "ફાઇલ સંપાદિત કરો\t" - -#: includes/admin/tools/class-acf-admin-tool-import.php:58 -#: includes/fields/class-acf-field-file.php:61 -#: assets/build/js/acf-input.js:2447 assets/build/js/acf-input.js:2597 -msgid "Select File" -msgstr "ફાઇલ પસંદ કરો" - -#: includes/fields/class-acf-field-file.php:25 -msgid "File" -msgstr "ફાઇલ" - -#: includes/fields/class-acf-field-password.php:25 -msgid "Password" -msgstr "પાસવર્ડ" - -#: includes/fields/class-acf-field-select.php:392 -msgid "Specify the value returned" -msgstr "" - -#: includes/fields/class-acf-field-select.php:461 -msgid "Use AJAX to lazy load choices?" -msgstr "" - -#: includes/fields/class-acf-field-checkbox.php:362 -#: includes/fields/class-acf-field-select.php:381 -msgid "Enter each default value on a new line" -msgstr "" - -#: includes/fields/class-acf-field-select.php:252 includes/media.php:48 -#: assets/build/js/acf-input.js:6790 assets/build/js/acf-input.js:7266 -msgctxt "verb" -msgid "Select" -msgstr "પસંદ કરો" - -#: includes/fields/class-acf-field-select.php:121 -msgctxt "Select2 JS load_fail" -msgid "Loading failed" -msgstr "" - -#: includes/fields/class-acf-field-select.php:120 -msgctxt "Select2 JS searching" -msgid "Searching…" -msgstr "" - -#: includes/fields/class-acf-field-select.php:119 -msgctxt "Select2 JS load_more" -msgid "Loading more results…" -msgstr "" - -#: includes/fields/class-acf-field-select.php:118 -msgctxt "Select2 JS selection_too_long_n" -msgid "You can only select %d items" -msgstr "તમે માત્ર %d વસ્તુઓ પસંદ કરી શકો છો" - -#: includes/fields/class-acf-field-select.php:117 -msgctxt "Select2 JS selection_too_long_1" -msgid "You can only select 1 item" -msgstr "તમે માત્ર 1 આઇટમ પસંદ કરી શકો છો" - -#: includes/fields/class-acf-field-select.php:116 -msgctxt "Select2 JS input_too_long_n" -msgid "Please delete %d characters" -msgstr "કૃપા કરીને %d અક્ષરો કાઢી નાખો" - -#: includes/fields/class-acf-field-select.php:115 -msgctxt "Select2 JS input_too_long_1" -msgid "Please delete 1 character" -msgstr "કૃપા કરીને 1 અક્ષર કાઢી નાખો" - -#: includes/fields/class-acf-field-select.php:114 -msgctxt "Select2 JS input_too_short_n" -msgid "Please enter %d or more characters" -msgstr "કૃપા કરીને %d અથવા વધુ અક્ષરો દાખલ કરો" - -#: includes/fields/class-acf-field-select.php:113 -msgctxt "Select2 JS input_too_short_1" -msgid "Please enter 1 or more characters" -msgstr "કૃપા કરીને 1 અથવા વધુ અક્ષરો દાખલ કરો" - -#: includes/fields/class-acf-field-select.php:112 -msgctxt "Select2 JS matches_0" -msgid "No matches found" -msgstr "" - -#: includes/fields/class-acf-field-select.php:111 -msgctxt "Select2 JS matches_n" -msgid "%d results are available, use up and down arrow keys to navigate." -msgstr "%d પરિણામો ઉપલબ્ધ છે, શોધખોળ કરવા માટે ઉપર અને નીચે એરો કીનો ઉપયોગ કરો." - -#: includes/fields/class-acf-field-select.php:110 -msgctxt "Select2 JS matches_1" -msgid "One result is available, press enter to select it." -msgstr "એક પરિણામ ઉપલબ્ધ છે, તેને પસંદ કરવા માટે એન્ટર દબાવો." - -#: includes/fields/class-acf-field-select.php:25 -#: includes/fields/class-acf-field-taxonomy.php:763 -msgctxt "noun" -msgid "Select" -msgstr "પસંદ કરો" - -#: includes/fields/class-acf-field-user.php:73 -msgid "User ID" -msgstr "વપરાશકર્તા ID" - -#: includes/fields/class-acf-field-user.php:72 -msgid "User Object" -msgstr "" - -#: includes/fields/class-acf-field-user.php:71 -msgid "User Array" -msgstr "" - -#: includes/fields/class-acf-field-user.php:59 -msgid "All user roles" -msgstr "" - -#: includes/fields/class-acf-field-user.php:51 -msgid "Filter by Role" -msgstr "" - -#: includes/fields/class-acf-field-user.php:15 includes/locations.php:101 -msgid "User" -msgstr "વપરાશકર્તા" - -#: includes/fields/class-acf-field-separator.php:25 -msgid "Separator" -msgstr "વિભાજક" - -#: includes/fields/class-acf-field-color_picker.php:75 -msgid "Select Color" -msgstr "રંગ પસંદ કરો" - -#: includes/admin/post-types/admin-post-type.php:129 -#: includes/admin/post-types/admin-taxonomy.php:131 -#: includes/fields/class-acf-field-color_picker.php:73 -#: assets/build/js/acf-internal-post-type.js:72 -#: assets/build/js/acf-internal-post-type.js:86 -msgid "Default" -msgstr "મૂળભૂત" - -#: includes/admin/views/acf-post-type/advanced-settings.php:89 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:141 -#: includes/fields/class-acf-field-color_picker.php:71 -msgid "Clear" -msgstr "સાફ કરો" - -#: includes/fields/class-acf-field-color_picker.php:25 -msgid "Color Picker" -msgstr "" - -#: includes/fields/class-acf-field-date_time_picker.php:88 -msgctxt "Date Time Picker JS pmTextShort" -msgid "P" -msgstr "" - -#: includes/fields/class-acf-field-date_time_picker.php:87 -msgctxt "Date Time Picker JS pmText" -msgid "PM" -msgstr "પી એમ(PM)" - -#: includes/fields/class-acf-field-date_time_picker.php:84 -msgctxt "Date Time Picker JS amTextShort" -msgid "A" -msgstr "" - -#: includes/fields/class-acf-field-date_time_picker.php:83 -msgctxt "Date Time Picker JS amText" -msgid "AM" -msgstr "" - -#: includes/fields/class-acf-field-date_time_picker.php:81 -msgctxt "Date Time Picker JS selectText" -msgid "Select" -msgstr "પસંદ કરો" - -#: includes/fields/class-acf-field-date_time_picker.php:80 -msgctxt "Date Time Picker JS closeText" -msgid "Done" -msgstr "પૂર્ણ" - -#: includes/fields/class-acf-field-date_time_picker.php:79 -msgctxt "Date Time Picker JS currentText" -msgid "Now" -msgstr "હવે" - -#: includes/fields/class-acf-field-date_time_picker.php:78 -msgctxt "Date Time Picker JS timezoneText" -msgid "Time Zone" -msgstr "સમય ઝોન" - -#: includes/fields/class-acf-field-date_time_picker.php:77 -msgctxt "Date Time Picker JS microsecText" -msgid "Microsecond" -msgstr "માઇક્રોસેકન્ડ" - -#: includes/fields/class-acf-field-date_time_picker.php:76 -msgctxt "Date Time Picker JS millisecText" -msgid "Millisecond" -msgstr "મિલીસેકન્ડ" - -#: includes/fields/class-acf-field-date_time_picker.php:75 -msgctxt "Date Time Picker JS secondText" -msgid "Second" -msgstr "સેકન્ડ" - -#: includes/fields/class-acf-field-date_time_picker.php:74 -msgctxt "Date Time Picker JS minuteText" -msgid "Minute" -msgstr "મિનિટ" - -#: includes/fields/class-acf-field-date_time_picker.php:73 -msgctxt "Date Time Picker JS hourText" -msgid "Hour" -msgstr "કલાક" - -#: includes/fields/class-acf-field-date_time_picker.php:72 -msgctxt "Date Time Picker JS timeText" -msgid "Time" -msgstr "સમય" - -#: includes/fields/class-acf-field-date_time_picker.php:71 -msgctxt "Date Time Picker JS timeOnlyTitle" -msgid "Choose Time" -msgstr "સમય પસંદ કરો" - -#: includes/fields/class-acf-field-date_time_picker.php:25 -msgid "Date Time Picker" -msgstr "" - -#: includes/fields/class-acf-field-accordion.php:106 -msgid "Endpoint" -msgstr "" - -#: includes/admin/views/acf-field-group/options.php:130 -#: includes/fields/class-acf-field-tab.php:115 -msgid "Left aligned" -msgstr "" - -#: includes/admin/views/acf-field-group/options.php:129 -#: includes/fields/class-acf-field-tab.php:114 -msgid "Top aligned" -msgstr "" - -#: includes/fields/class-acf-field-tab.php:110 -msgid "Placement" -msgstr "પ્લેસમેન્ટ" - -#: includes/fields/class-acf-field-tab.php:26 -msgid "Tab" -msgstr "ટેબ" - -#: includes/fields/class-acf-field-url.php:162 -msgid "Value must be a valid URL" -msgstr "મૂલ્ય એક માન્ય URL હોવું આવશ્યક છે" - -#: includes/fields/class-acf-field-link.php:177 -msgid "Link URL" -msgstr "લિંક યુઆરએલ" - -#: includes/fields/class-acf-field-link.php:176 -msgid "Link Array" -msgstr "" - -#: includes/fields/class-acf-field-link.php:145 -msgid "Opens in a new window/tab" -msgstr "" - -#: includes/fields/class-acf-field-link.php:140 -msgid "Select Link" -msgstr "" - -#: includes/fields/class-acf-field-link.php:25 -msgid "Link" -msgstr "લિંક" - -#: includes/fields/class-acf-field-email.php:25 -msgid "Email" -msgstr "ઇમેઇલ" - -#: includes/fields/class-acf-field-number.php:188 -#: includes/fields/class-acf-field-range.php:217 -msgid "Step Size" -msgstr "" - -#: includes/fields/class-acf-field-number.php:158 -#: includes/fields/class-acf-field-range.php:195 -msgid "Maximum Value" -msgstr "મહત્તમ મૂલ્ય" - -#: includes/fields/class-acf-field-number.php:148 -#: includes/fields/class-acf-field-range.php:184 -msgid "Minimum Value" -msgstr "ન્યૂનતમ મૂલ્ય" - -#: includes/fields/class-acf-field-range.php:25 -msgid "Range" -msgstr "" - -#: includes/fields/class-acf-field-button-group.php:175 -#: includes/fields/class-acf-field-checkbox.php:379 -#: includes/fields/class-acf-field-radio.php:220 -#: includes/fields/class-acf-field-select.php:399 -msgid "Both (Array)" -msgstr "" - -#: includes/admin/views/acf-field-group/fields.php:52 -#: includes/fields/class-acf-field-button-group.php:174 -#: includes/fields/class-acf-field-checkbox.php:378 -#: includes/fields/class-acf-field-radio.php:219 -#: includes/fields/class-acf-field-select.php:398 -msgid "Label" -msgstr "લેબલ" - -#: includes/fields/class-acf-field-button-group.php:173 -#: includes/fields/class-acf-field-checkbox.php:377 -#: includes/fields/class-acf-field-radio.php:218 -#: includes/fields/class-acf-field-select.php:397 -msgid "Value" -msgstr "મૂલ્ય" - -#: includes/fields/class-acf-field-button-group.php:222 -#: includes/fields/class-acf-field-checkbox.php:441 -#: includes/fields/class-acf-field-radio.php:292 -msgid "Vertical" -msgstr "ઊભું" - -#: includes/fields/class-acf-field-button-group.php:221 -#: includes/fields/class-acf-field-checkbox.php:442 -#: includes/fields/class-acf-field-radio.php:293 -msgid "Horizontal" -msgstr "આડું" - -#: includes/fields/class-acf-field-button-group.php:148 -#: includes/fields/class-acf-field-checkbox.php:352 -#: includes/fields/class-acf-field-radio.php:193 -#: includes/fields/class-acf-field-select.php:370 -msgid "red : Red" -msgstr "" - -#: includes/fields/class-acf-field-button-group.php:148 -#: includes/fields/class-acf-field-checkbox.php:352 -#: includes/fields/class-acf-field-radio.php:193 -#: includes/fields/class-acf-field-select.php:370 -msgid "For more control, you may specify both a value and label like this:" -msgstr "વધુ નિયંત્રણ માટે, તમે આના જેવું મૂલ્ય અને નામપટ્ટી બંનેનો ઉલ્લેખ કરી શકો છો:" - -#: includes/fields/class-acf-field-button-group.php:148 -#: includes/fields/class-acf-field-checkbox.php:352 -#: includes/fields/class-acf-field-radio.php:193 -#: includes/fields/class-acf-field-select.php:370 -msgid "Enter each choice on a new line." -msgstr "દરેક પસંદગીને નવી લાઇન પર દાખલ કરો." - -#: includes/fields/class-acf-field-button-group.php:147 -#: includes/fields/class-acf-field-checkbox.php:351 -#: includes/fields/class-acf-field-radio.php:192 -#: includes/fields/class-acf-field-select.php:369 -msgid "Choices" -msgstr "પસંદગીઓ" - -#: includes/fields/class-acf-field-button-group.php:24 -msgid "Button Group" -msgstr "" - -#: includes/fields/class-acf-field-button-group.php:194 -#: includes/fields/class-acf-field-page_link.php:538 -#: includes/fields/class-acf-field-post_object.php:448 -#: includes/fields/class-acf-field-radio.php:238 -#: includes/fields/class-acf-field-select.php:429 -#: includes/fields/class-acf-field-taxonomy.php:772 -#: includes/fields/class-acf-field-user.php:103 -msgid "Allow Null" -msgstr "" - -#: includes/fields/class-acf-field-page_link.php:263 -#: includes/fields/class-acf-field-post_object.php:257 -#: includes/fields/class-acf-field-taxonomy.php:930 -msgid "Parent" -msgstr "પેરેન્ટ" - -#: includes/fields/class-acf-field-wysiwyg.php:390 -msgid "TinyMCE will not be initialized until field is clicked" -msgstr "જ્યાં સુધી ફીલ્ડ ક્લિક ન થાય ત્યાં સુધી TinyMCE પ્રારંભ કરવામાં આવશે નહીં" - -#: includes/fields/class-acf-field-wysiwyg.php:389 -msgid "Delay Initialization" -msgstr "" - -#: includes/fields/class-acf-field-wysiwyg.php:378 -msgid "Show Media Upload Buttons" -msgstr "" - -#: includes/fields/class-acf-field-wysiwyg.php:362 -msgid "Toolbar" -msgstr "ટૂલબાર" - -#: includes/fields/class-acf-field-wysiwyg.php:354 -msgid "Text Only" -msgstr "ફક્ત ટેક્સ્ટ" - -#: includes/fields/class-acf-field-wysiwyg.php:353 -msgid "Visual Only" -msgstr "" - -#: includes/fields/class-acf-field-wysiwyg.php:352 -msgid "Visual & Text" -msgstr "" - -#: includes/fields/class-acf-field-wysiwyg.php:347 -msgid "Tabs" -msgstr "ટૅબ્સ" - -#: includes/fields/class-acf-field-wysiwyg.php:285 -msgid "Click to initialize TinyMCE" -msgstr "" - -#: includes/fields/class-acf-field-wysiwyg.php:279 -msgctxt "Name for the Text editor tab (formerly HTML)" -msgid "Text" -msgstr "લખાણ" - -#: includes/fields/class-acf-field-wysiwyg.php:278 -msgid "Visual" -msgstr "દ્રશ્ય" - -#: includes/fields/class-acf-field-text.php:189 -#: includes/fields/class-acf-field-textarea.php:236 -msgid "Value must not exceed %d characters" -msgstr "મૂલ્ય %d અક્ષરોથી વધુ ન હોવું જોઈએ" - -#: includes/fields/class-acf-field-text.php:124 -#: includes/fields/class-acf-field-textarea.php:124 -msgid "Leave blank for no limit" -msgstr "" - -#: includes/fields/class-acf-field-text.php:123 -#: includes/fields/class-acf-field-textarea.php:123 -msgid "Character Limit" -msgstr "" - -#: includes/fields/class-acf-field-email.php:158 -#: includes/fields/class-acf-field-number.php:209 -#: includes/fields/class-acf-field-password.php:105 -#: includes/fields/class-acf-field-range.php:239 -#: includes/fields/class-acf-field-text.php:164 -msgid "Appears after the input" -msgstr "" - -#: includes/fields/class-acf-field-email.php:157 -#: includes/fields/class-acf-field-number.php:208 -#: includes/fields/class-acf-field-password.php:104 -#: includes/fields/class-acf-field-range.php:238 -#: includes/fields/class-acf-field-text.php:163 -msgid "Append" -msgstr "" - -#: includes/fields/class-acf-field-email.php:148 -#: includes/fields/class-acf-field-number.php:199 -#: includes/fields/class-acf-field-password.php:95 -#: includes/fields/class-acf-field-range.php:229 -#: includes/fields/class-acf-field-text.php:154 -msgid "Appears before the input" -msgstr "" - -#: includes/fields/class-acf-field-email.php:147 -#: includes/fields/class-acf-field-number.php:198 -#: includes/fields/class-acf-field-password.php:94 -#: includes/fields/class-acf-field-range.php:228 -#: includes/fields/class-acf-field-text.php:153 -msgid "Prepend" -msgstr "" - -#: includes/fields/class-acf-field-email.php:138 -#: includes/fields/class-acf-field-number.php:179 -#: includes/fields/class-acf-field-password.php:85 -#: includes/fields/class-acf-field-text.php:144 -#: includes/fields/class-acf-field-textarea.php:156 -#: includes/fields/class-acf-field-url.php:122 -msgid "Appears within the input" -msgstr "" - -#: includes/fields/class-acf-field-email.php:137 -#: includes/fields/class-acf-field-number.php:178 -#: includes/fields/class-acf-field-password.php:84 -#: includes/fields/class-acf-field-text.php:143 -#: includes/fields/class-acf-field-textarea.php:155 -#: includes/fields/class-acf-field-url.php:121 -msgid "Placeholder Text" -msgstr "" - -#: includes/fields/class-acf-field-button-group.php:158 -#: includes/fields/class-acf-field-email.php:118 -#: includes/fields/class-acf-field-number.php:129 -#: includes/fields/class-acf-field-radio.php:203 -#: includes/fields/class-acf-field-range.php:165 -#: includes/fields/class-acf-field-text.php:104 -#: includes/fields/class-acf-field-textarea.php:104 -#: includes/fields/class-acf-field-url.php:102 -#: includes/fields/class-acf-field-wysiwyg.php:312 -msgid "Appears when creating a new post" -msgstr "નવી પોસ્ટ બનાવતી વખતે દેખાય છે" - -#: includes/fields/class-acf-field-text.php:25 -msgid "Text" -msgstr "લખાણ" - -#: includes/fields/class-acf-field-relationship.php:794 -msgid "%1$s requires at least %2$s selection" -msgid_plural "%1$s requires at least %2$s selections" -msgstr[0] "%1$s ને ઓછામાં ઓછા %2$s પસંદગીની જરૂર છે" -msgstr[1] "%1$s ને ઓછામાં ઓછી %2$s પસંદગીની જરૂર છે" - -#: includes/fields/class-acf-field-post_object.php:417 -#: includes/fields/class-acf-field-relationship.php:644 -msgid "Post ID" -msgstr "" - -#: includes/fields/class-acf-field-post_object.php:17 -#: includes/fields/class-acf-field-post_object.php:416 -#: includes/fields/class-acf-field-relationship.php:643 -msgid "Post Object" -msgstr "" - -#: includes/fields/class-acf-field-relationship.php:676 -msgid "Maximum Posts" -msgstr "" - -#: includes/fields/class-acf-field-relationship.php:666 -msgid "Minimum Posts" -msgstr "" - -#: includes/admin/views/acf-field-group/options.php:183 -#: includes/admin/views/acf-post-type/advanced-settings.php:29 -#: includes/fields/class-acf-field-relationship.php:701 -msgid "Featured Image" -msgstr "ફીચર્ડ છબી" - -#: includes/fields/class-acf-field-relationship.php:697 -msgid "Selected elements will be displayed in each result" -msgstr "" - -#: includes/fields/class-acf-field-relationship.php:696 -msgid "Elements" -msgstr "તત્વો" - -#: includes/fields/class-acf-field-relationship.php:630 -#: includes/fields/class-acf-field-taxonomy.php:20 -#: includes/fields/class-acf-field-taxonomy.php:692 -#: includes/locations/class-acf-location-taxonomy.php:22 -msgid "Taxonomy" -msgstr "વર્ગીકરણ" - -#: includes/fields/class-acf-field-relationship.php:629 -#: includes/locations/class-acf-location-post-type.php:22 -#: includes/post-types/class-acf-post-type.php:92 -msgid "Post Type" -msgstr "પોસ્ટ પ્રકાર" - -#: includes/fields/class-acf-field-relationship.php:623 -msgid "Filters" -msgstr "ફિલ્ટર્સ" - -#: includes/fields/class-acf-field-page_link.php:499 -#: includes/fields/class-acf-field-post_object.php:404 -#: includes/fields/class-acf-field-relationship.php:616 -msgid "All taxonomies" -msgstr "બધા વર્ગીકરણ" - -#: includes/fields/class-acf-field-page_link.php:491 -#: includes/fields/class-acf-field-post_object.php:396 -#: includes/fields/class-acf-field-relationship.php:608 -msgid "Filter by Taxonomy" -msgstr "" - -#: includes/fields/class-acf-field-page_link.php:469 -#: includes/fields/class-acf-field-post_object.php:374 -#: includes/fields/class-acf-field-relationship.php:586 -msgid "All post types" -msgstr "" - -#: includes/fields/class-acf-field-page_link.php:461 -#: includes/fields/class-acf-field-post_object.php:366 -#: includes/fields/class-acf-field-relationship.php:578 -msgid "Filter by Post Type" -msgstr "" - -#: includes/fields/class-acf-field-relationship.php:476 -msgid "Search..." -msgstr "શોધો" - -#: includes/fields/class-acf-field-relationship.php:406 -msgid "Select taxonomy" -msgstr "" - -#: includes/fields/class-acf-field-relationship.php:397 -msgid "Select post type" -msgstr "" - -#: includes/fields/class-acf-field-relationship.php:61 -#: assets/build/js/acf-input.js:3930 assets/build/js/acf-input.js:4214 -msgid "No matches found" -msgstr "" - -#: includes/fields/class-acf-field-relationship.php:60 -#: assets/build/js/acf-input.js:3913 assets/build/js/acf-input.js:4193 -msgid "Loading" -msgstr "લોડ કરી રહ્યું છે" - -#: includes/fields/class-acf-field-relationship.php:59 -#: assets/build/js/acf-input.js:3818 assets/build/js/acf-input.js:4084 -msgid "Maximum values reached ( {max} values )" -msgstr "મહત્તમ મૂલ્યો પહોંચી ગયા ( {max} મૂલ્યો )" - -#: includes/fields/class-acf-field-relationship.php:17 -msgid "Relationship" -msgstr "સંબંધ" - -#: includes/fields/class-acf-field-file.php:291 -#: includes/fields/class-acf-field-image.php:317 -msgid "Comma separated list. Leave blank for all types" -msgstr "અલ્પવિરામથી વિભાજિત સૂચિ. તમામ પ્રકારના માટે ખાલી છોડો" - -#: includes/fields/class-acf-field-file.php:290 -#: includes/fields/class-acf-field-image.php:316 -msgid "Allowed File Types" -msgstr "" - -#: includes/fields/class-acf-field-file.php:278 -#: includes/fields/class-acf-field-image.php:280 -msgid "Maximum" -msgstr "મહત્તમ" - -#: includes/fields/class-acf-field-file.php:154 -#: includes/fields/class-acf-field-file.php:270 -#: includes/fields/class-acf-field-file.php:282 -#: includes/fields/class-acf-field-image.php:271 -#: includes/fields/class-acf-field-image.php:307 -msgid "File size" -msgstr "ફાઈલ સાઇઝ઼:" - -#: includes/fields/class-acf-field-image.php:245 -#: includes/fields/class-acf-field-image.php:281 -msgid "Restrict which images can be uploaded" -msgstr "કઈ છબીઓ અપલોડ કરી શકાય તે પ્રતિબંધિત કરો" - -#: includes/fields/class-acf-field-file.php:266 -#: includes/fields/class-acf-field-image.php:244 -msgid "Minimum" -msgstr "ન્યૂનતમ" - -#: includes/fields/class-acf-field-file.php:235 -#: includes/fields/class-acf-field-image.php:210 -msgid "Uploaded to post" -msgstr "પોસ્ટમાં અપલોડ કરવામાં આવ્યું છે" - -#: includes/fields/class-acf-field-file.php:234 -#: includes/fields/class-acf-field-image.php:209 -#: includes/locations/class-acf-location-attachment.php:73 -#: includes/locations/class-acf-location-comment.php:61 -#: includes/locations/class-acf-location-nav-menu.php:74 -#: includes/locations/class-acf-location-taxonomy.php:63 -#: includes/locations/class-acf-location-user-form.php:71 -#: includes/locations/class-acf-location-user-role.php:78 -#: includes/locations/class-acf-location-widget.php:65 -msgid "All" -msgstr "બધા" - -#: includes/fields/class-acf-field-file.php:229 -#: includes/fields/class-acf-field-image.php:204 -msgid "Limit the media library choice" -msgstr "મીડિયા લાઇબ્રેરીની પસંદગીને મર્યાદિત કરો" - -#: includes/fields/class-acf-field-file.php:228 -#: includes/fields/class-acf-field-image.php:203 -msgid "Library" -msgstr "લાઇબ્રેરી" - -#: includes/fields/class-acf-field-image.php:336 -msgid "Preview Size" -msgstr "" - -#: includes/fields/class-acf-field-image.php:195 -msgid "Image ID" -msgstr "" - -#: includes/fields/class-acf-field-image.php:194 -msgid "Image URL" -msgstr "" - -#: includes/fields/class-acf-field-image.php:193 -msgid "Image Array" -msgstr "" - -#: includes/fields/class-acf-field-button-group.php:168 -#: includes/fields/class-acf-field-checkbox.php:372 -#: includes/fields/class-acf-field-file.php:213 -#: includes/fields/class-acf-field-link.php:171 -#: includes/fields/class-acf-field-radio.php:213 -msgid "Specify the returned value on front end" -msgstr "અગ્રભાગ પર પરત કરેલ મૂલ્યનો ઉલ્લેખ કરો" - -#: includes/fields/class-acf-field-button-group.php:167 -#: includes/fields/class-acf-field-checkbox.php:371 -#: includes/fields/class-acf-field-file.php:212 -#: includes/fields/class-acf-field-link.php:170 -#: includes/fields/class-acf-field-radio.php:212 -#: includes/fields/class-acf-field-taxonomy.php:736 -msgid "Return Value" -msgstr "વળતર મૂલ્ય" - -#: includes/fields/class-acf-field-image.php:162 -msgid "Add Image" -msgstr "ચિત્ર ઉમેરો" - -#: includes/fields/class-acf-field-image.php:162 -msgid "No image selected" -msgstr "કોઇ ચિત્ર પસંદ નથી કયુઁ" - -#: includes/assets.php:352 includes/fields/class-acf-field-file.php:162 -#: includes/fields/class-acf-field-image.php:142 -#: includes/fields/class-acf-field-link.php:145 assets/build/js/acf.js:1563 -#: assets/build/js/acf.js:1657 -msgid "Remove" -msgstr "દૂર કરો" - -#: includes/admin/views/acf-field-group/field.php:76 -#: includes/fields/class-acf-field-file.php:160 -#: includes/fields/class-acf-field-image.php:140 -#: includes/fields/class-acf-field-link.php:145 -msgid "Edit" -msgstr "સંપાદિત કરો" - -#: includes/fields/class-acf-field-image.php:70 includes/media.php:55 -#: assets/build/js/acf-input.js:6837 assets/build/js/acf-input.js:7320 -msgid "All images" -msgstr "બધી છબીઓ" - -#: includes/fields/class-acf-field-image.php:69 -#: assets/build/js/acf-input.js:3181 assets/build/js/acf-input.js:3399 -msgid "Update Image" -msgstr "છબી અપડેટ કરો" - -#: includes/fields/class-acf-field-image.php:68 -#: assets/build/js/acf-input.js:3180 assets/build/js/acf-input.js:3398 -msgid "Edit Image" -msgstr "છબી સંપાદિત કરો" - -#: includes/fields/class-acf-field-image.php:67 -#: assets/build/js/acf-input.js:3156 assets/build/js/acf-input.js:3373 -msgid "Select Image" -msgstr "છબી પસંદ કરો" - -#: includes/fields/class-acf-field-image.php:25 -msgid "Image" -msgstr "છબી" - -#: includes/fields/class-acf-field-message.php:125 -msgid "Allow HTML markup to display as visible text instead of rendering" -msgstr "HTML માર્કઅપને અનુવાદ બદલે દૃશ્યમાન લખાણ તરીકે પ્રદર્શિત કરવાની મંજૂરી આપો" - -#: includes/fields/class-acf-field-message.php:124 -msgid "Escape HTML" -msgstr "" - -#: includes/fields/class-acf-field-message.php:116 -#: includes/fields/class-acf-field-textarea.php:172 -msgid "No Formatting" -msgstr "" - -#: includes/fields/class-acf-field-message.php:115 -#: includes/fields/class-acf-field-textarea.php:171 -msgid "Automatically add <br>" -msgstr "" - -#: includes/fields/class-acf-field-message.php:114 -#: includes/fields/class-acf-field-textarea.php:170 -msgid "Automatically add paragraphs" -msgstr "" - -#: includes/fields/class-acf-field-message.php:110 -#: includes/fields/class-acf-field-textarea.php:166 -msgid "Controls how new lines are rendered" -msgstr "નવી રેખાઓ કેવી રીતે રેન્ડર કરવામાં આવે છે તેનું નિયંત્રણ કરે છે" - -#: includes/fields/class-acf-field-message.php:109 -#: includes/fields/class-acf-field-textarea.php:165 -msgid "New Lines" -msgstr "નવી રેખાઓ" - -#: includes/fields/class-acf-field-date_picker.php:232 -#: includes/fields/class-acf-field-date_time_picker.php:220 -msgid "Week Starts On" -msgstr "" - -#: includes/fields/class-acf-field-date_picker.php:201 -msgid "The format used when saving a value" -msgstr "મૂલ્ય સાચવતી વખતે વપરાતી ગોઠવણ" - -#: includes/fields/class-acf-field-date_picker.php:200 -msgid "Save Format" -msgstr "" - -#: includes/fields/class-acf-field-date_picker.php:67 -msgctxt "Date Picker JS weekHeader" -msgid "Wk" -msgstr "" - -#: includes/fields/class-acf-field-date_picker.php:66 -msgctxt "Date Picker JS prevText" -msgid "Prev" -msgstr "પૂર્વ" - -#: includes/fields/class-acf-field-date_picker.php:65 -msgctxt "Date Picker JS nextText" -msgid "Next" -msgstr "આગળ" - -#: includes/fields/class-acf-field-date_picker.php:64 -msgctxt "Date Picker JS currentText" -msgid "Today" -msgstr "આજે" - -#: includes/fields/class-acf-field-date_picker.php:63 -msgctxt "Date Picker JS closeText" -msgid "Done" -msgstr "પૂર્ણ" - -#: includes/fields/class-acf-field-date_picker.php:25 -msgid "Date Picker" -msgstr "તારીખ પીકર" - -#: includes/fields/class-acf-field-image.php:248 -#: includes/fields/class-acf-field-image.php:284 -#: includes/fields/class-acf-field-oembed.php:268 -msgid "Width" -msgstr "પહોળાઈ" - -#: includes/fields/class-acf-field-oembed.php:265 -#: includes/fields/class-acf-field-oembed.php:277 -msgid "Embed Size" -msgstr "" - -#: includes/fields/class-acf-field-oembed.php:222 -msgid "Enter URL" -msgstr "યુઆરએલ દાખલ કરો" - -#: includes/fields/class-acf-field-oembed.php:25 -msgid "oEmbed" -msgstr "" - -#: includes/fields/class-acf-field-true_false.php:184 -msgid "Text shown when inactive" -msgstr "જ્યારે નિષ્ક્રિય હોય ત્યારે લખાણ બતાવવામાં આવે છે" - -#: includes/fields/class-acf-field-true_false.php:183 -msgid "Off Text" -msgstr "" - -#: includes/fields/class-acf-field-true_false.php:168 -msgid "Text shown when active" -msgstr "" - -#: includes/fields/class-acf-field-true_false.php:167 -msgid "On Text" -msgstr "" - -#: includes/fields/class-acf-field-select.php:450 -#: includes/fields/class-acf-field-true_false.php:199 -msgid "Stylized UI" -msgstr "" - -#: includes/fields/class-acf-field-button-group.php:157 -#: includes/fields/class-acf-field-checkbox.php:361 -#: includes/fields/class-acf-field-color_picker.php:156 -#: includes/fields/class-acf-field-email.php:117 -#: includes/fields/class-acf-field-number.php:128 -#: includes/fields/class-acf-field-radio.php:202 -#: includes/fields/class-acf-field-range.php:164 -#: includes/fields/class-acf-field-select.php:380 -#: includes/fields/class-acf-field-text.php:103 -#: includes/fields/class-acf-field-textarea.php:103 -#: includes/fields/class-acf-field-true_false.php:147 -#: includes/fields/class-acf-field-url.php:101 -#: includes/fields/class-acf-field-wysiwyg.php:311 -msgid "Default Value" -msgstr "મૂળભૂત મૂલ્ય" - -#: includes/fields/class-acf-field-true_false.php:138 -msgid "Displays text alongside the checkbox" -msgstr "" - -#: includes/fields/class-acf-field-message.php:26 -#: includes/fields/class-acf-field-message.php:99 -#: includes/fields/class-acf-field-true_false.php:137 -msgid "Message" -msgstr "સંદેશ" - -#: includes/assets.php:351 includes/fields/class-acf-field-true_false.php:86 -#: includes/fields/class-acf-field-true_false.php:187 -#: assets/build/js/acf.js:1740 assets/build/js/acf.js:1857 -msgid "No" -msgstr "ના" - -#: includes/assets.php:350 includes/fields/class-acf-field-true_false.php:83 -#: includes/fields/class-acf-field-true_false.php:171 -#: assets/build/js/acf.js:1739 assets/build/js/acf.js:1856 -msgid "Yes" -msgstr "હા" - -#: includes/fields/class-acf-field-true_false.php:25 -msgid "True / False" -msgstr "સાચું / ખોટું" - -#: includes/fields/class-acf-field-group.php:474 -msgid "Row" -msgstr "પંક્તિ" - -#: includes/fields/class-acf-field-group.php:473 -msgid "Table" -msgstr "ટેબલ" - -#: includes/admin/post-types/admin-field-group.php:140 -#: includes/fields/class-acf-field-group.php:472 -msgid "Block" -msgstr "બ્લોક" - -#: includes/fields/class-acf-field-group.php:467 -msgid "Specify the style used to render the selected fields" -msgstr "" - -#: includes/fields.php:356 includes/fields/class-acf-field-button-group.php:215 -#: includes/fields/class-acf-field-checkbox.php:435 -#: includes/fields/class-acf-field-group.php:466 -#: includes/fields/class-acf-field-radio.php:286 -msgid "Layout" -msgstr "લેઆઉટ" - -#: includes/fields/class-acf-field-group.php:450 -msgid "Sub Fields" -msgstr "" - -#: includes/fields/class-acf-field-group.php:25 -msgid "Group" -msgstr "જૂથ" - -#: includes/fields/class-acf-field-google-map.php:235 -msgid "Customize the map height" -msgstr "" - -#: includes/fields/class-acf-field-google-map.php:234 -#: includes/fields/class-acf-field-image.php:259 -#: includes/fields/class-acf-field-image.php:295 -#: includes/fields/class-acf-field-oembed.php:280 -msgid "Height" -msgstr "ઊંચાઈ" - -#: includes/fields/class-acf-field-google-map.php:223 -msgid "Set the initial zoom level" -msgstr "" - -#: includes/fields/class-acf-field-google-map.php:222 -msgid "Zoom" -msgstr "ઝૂમ" - -#: includes/fields/class-acf-field-google-map.php:196 -#: includes/fields/class-acf-field-google-map.php:209 -msgid "Center the initial map" -msgstr "" - -#: includes/fields/class-acf-field-google-map.php:195 -#: includes/fields/class-acf-field-google-map.php:208 -msgid "Center" -msgstr "મધ્ય" - -#: includes/fields/class-acf-field-google-map.php:163 -msgid "Search for address..." -msgstr "" - -#: includes/fields/class-acf-field-google-map.php:160 -msgid "Find current location" -msgstr "" - -#: includes/fields/class-acf-field-google-map.php:159 -msgid "Clear location" -msgstr "સ્થાન સાફ કરો" - -#: includes/fields/class-acf-field-google-map.php:158 -#: includes/fields/class-acf-field-relationship.php:628 -msgid "Search" -msgstr "શોધો" - -#: includes/fields/class-acf-field-google-map.php:63 -#: assets/build/js/acf-input.js:2840 assets/build/js/acf-input.js:3026 -msgid "Sorry, this browser does not support geolocation" -msgstr "" - -#: includes/fields/class-acf-field-google-map.php:25 -msgid "Google Map" -msgstr "ગૂગલે નકશો" - -#: includes/fields/class-acf-field-date_picker.php:212 -#: includes/fields/class-acf-field-date_time_picker.php:201 -#: includes/fields/class-acf-field-time_picker.php:132 -msgid "The format returned via template functions" -msgstr "" - -#: includes/fields/class-acf-field-color_picker.php:180 -#: includes/fields/class-acf-field-date_picker.php:211 -#: includes/fields/class-acf-field-date_time_picker.php:200 -#: includes/fields/class-acf-field-image.php:187 -#: includes/fields/class-acf-field-post_object.php:411 -#: includes/fields/class-acf-field-relationship.php:638 -#: includes/fields/class-acf-field-select.php:391 -#: includes/fields/class-acf-field-time_picker.php:131 -#: includes/fields/class-acf-field-user.php:66 -msgid "Return Format" -msgstr "" - -#: includes/fields/class-acf-field-date_picker.php:190 -#: includes/fields/class-acf-field-date_picker.php:221 -#: includes/fields/class-acf-field-date_time_picker.php:192 -#: includes/fields/class-acf-field-date_time_picker.php:210 -#: includes/fields/class-acf-field-time_picker.php:123 -#: includes/fields/class-acf-field-time_picker.php:139 -msgid "Custom:" -msgstr "કસ્ટમ:" - -#: includes/fields/class-acf-field-date_picker.php:182 -#: includes/fields/class-acf-field-date_time_picker.php:183 -#: includes/fields/class-acf-field-time_picker.php:116 -msgid "The format displayed when editing a post" -msgstr "" - -#: includes/fields/class-acf-field-date_picker.php:181 -#: includes/fields/class-acf-field-date_time_picker.php:182 -#: includes/fields/class-acf-field-time_picker.php:115 -msgid "Display Format" -msgstr "" - -#: includes/fields/class-acf-field-time_picker.php:25 -msgid "Time Picker" -msgstr "તારીખ પીકર" - -#. translators: counts for inactive field groups -#: acf.php:503 -msgid "Inactive (%s)" -msgid_plural "Inactive (%s)" -msgstr[0] "નિષ્ક્રિય (%s)" -msgstr[1] "નિષ્ક્રિય (%s)" - -#: acf.php:462 -msgid "No Fields found in Trash" -msgstr "ટ્રેશમાં કોઈ ફીલ્ડ મળ્યાં નથી" - -#: acf.php:461 -msgid "No Fields found" -msgstr "કોઈ ક્ષેત્રો મળ્યાં નથી" - -#: acf.php:460 -msgid "Search Fields" -msgstr "શોધ ક્ષેત્રો" - -#: acf.php:459 -msgid "View Field" -msgstr "ક્ષેત્ર જુઓ" - -#: acf.php:458 includes/admin/views/acf-field-group/fields.php:115 -msgid "New Field" -msgstr "નવી ફીલ્ડ" - -#: acf.php:457 -msgid "Edit Field" -msgstr "ફીલ્ડ સંપાદિત કરો" - -#: acf.php:456 -msgid "Add New Field" -msgstr "નવી ફીલ્ડ ઉમેરો" - -#: acf.php:454 -msgid "Field" -msgstr "ફિલ્ડ" - -#: acf.php:453 includes/admin/post-types/admin-field-group.php:163 -#: includes/admin/post-types/admin-field-groups.php:119 -#: includes/admin/views/acf-field-group/fields.php:32 -msgid "Fields" -msgstr "ક્ષેત્રો" - -#: acf.php:428 -msgid "No Field Groups found in Trash" -msgstr "ટ્રેશમાં કોઈ ફીલ્ડ જૂથો મળ્યાં નથી" - -#: acf.php:427 -msgid "No Field Groups found" -msgstr "કોઈ ક્ષેત્ર જૂથો મળ્યાં નથી" - -#: acf.php:426 -msgid "Search Field Groups" -msgstr "ક્ષેત્ર જૂથો શોધો" - -#: acf.php:425 -msgid "View Field Group" -msgstr "ક્ષેત્ર જૂથ જુઓ" - -#: acf.php:424 -msgid "New Field Group" -msgstr "નવું ક્ષેત્ર જૂથ" - -#: acf.php:423 -msgid "Edit Field Group" -msgstr "ક્ષેત્ર જૂથ સંપાદિત કરો" - -#: acf.php:422 -msgid "Add New Field Group" -msgstr "નવું ક્ષેત્ર જૂથ ઉમેરો" - -#: acf.php:421 acf.php:455 -#: includes/admin/views/acf-post-type/advanced-settings.php:219 -#: includes/admin/views/acf-post-type/advanced-settings.php:221 -#: includes/post-types/class-acf-post-type.php:93 -#: includes/post-types/class-acf-taxonomy.php:92 -msgid "Add New" -msgstr "નવું ઉમેરો" - -#: acf.php:420 -msgid "Field Group" -msgstr "ક્ષેત્ર જૂથ" - -#: acf.php:419 includes/admin/post-types/admin-field-groups.php:78 -#: includes/admin/post-types/admin-post-types.php:138 -#: includes/admin/post-types/admin-taxonomies.php:138 -msgid "Field Groups" -msgstr "ક્ષેત્ર જૂથો" - -#. Description of the plugin -msgid "Customize WordPress with powerful, professional and intuitive fields." -msgstr "શક્તિશાળી, વ્યાવસાયિક અને સાહજિક ક્ષેત્રો સાથે વર્ડપ્રેસ ને કસ્ટમાઇઝ કરો." - -#. Plugin URI of the plugin -msgid "https://www.advancedcustomfields.com" -msgstr "https://www.advancedcustomfields.com" - -#. Plugin Name of the plugin -#: acf.php:94 -msgid "Advanced Custom Fields" -msgstr "અદ્યતન કસ્ટમ ક્ષેત્રો" diff --git a/lang/acf-he_IL.mo b/lang/acf-he_IL.mo deleted file mode 100644 index a7d505f..0000000 Binary files a/lang/acf-he_IL.mo and /dev/null differ diff --git a/lang/acf-he_IL.po b/lang/acf-he_IL.po deleted file mode 100644 index 882acf9..0000000 --- a/lang/acf-he_IL.po +++ /dev/null @@ -1,828 +0,0 @@ -# Advanced Custom Fields Translations are a combination of translate.wordpress.org contributions, -# combined with user contributed strings for the PRO version. -# Translations from translate.wordpress.org take priority over translations in this file. -# translate.wordpress.org contributions are synced at the time of each release. -# -# If you would like to contribute translations, please visit -# https://translate.wordpress.org/projects/wp-plugins/advanced-custom-fields/stable/ -# -# For additional ACF PRO strings, please submit a pull request over on the ACF GitHub repo at -# http://github.com/advancedcustomfields/acf using the .pot (and any existing .po) files in /lang/pro/ -# -# This file is distributed under the same license as Advanced Custom Fields. -msgid "" -msgstr "" -"PO-Revision-Date: 2023-11-28T09:14:32+00:00\n" -"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n" -"Language: he_IL\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: gettext\n" -"Project-Id-Version: Advanced Custom Fields\n" - -#: pro/acf-pro.php:27 -msgid "Advanced Custom Fields PRO" -msgstr "שדות מיוחדים מתקדמים פרו" - -#: pro/blocks.php:170 -#, fuzzy -#| msgid "%s value is required" -msgid "Block type name is required." -msgstr "ערך %s נדרש" - -#. translators: The name of the block type -#: pro/blocks.php:178 -msgid "Block type \"%s\" is already registered." -msgstr "" - -#: pro/blocks.php:726 -msgid "Switch to Edit" -msgstr "" - -#: pro/blocks.php:727 -msgid "Switch to Preview" -msgstr "" - -#: pro/blocks.php:728 -msgid "Change content alignment" -msgstr "" - -#. translators: %s: Block type title -#: pro/blocks.php:731 -#, fuzzy -#| msgid "Settings" -msgid "%s settings" -msgstr "הגדרות" - -#: pro/blocks.php:936 -msgid "This block contains no editable fields." -msgstr "" - -#. translators: %s: an admin URL to the field group edit screen -#: pro/blocks.php:942 -msgid "" -"Assign a field group to add fields to " -"this block." -msgstr "" - -#: pro/options-page.php:47 -msgid "Options" -msgstr "אפשרויות" - -#: pro/options-page.php:77, pro/fields/class-acf-field-gallery.php:527 -msgid "Update" -msgstr "עדכון" - -#: pro/options-page.php:78 -msgid "Options Updated" -msgstr "האפשרויות עודכנו" - -#: pro/updates.php:99 -#, fuzzy -#| msgid "" -#| "To enable updates, please enter your license key on the Updates page. If you don't have a licence key, please see details & pricing" -msgid "" -"To enable updates, please enter your license key on the Updates page. If you don't have a licence key, please see details & pricing." -msgstr "" -"כדי לאפשר עדכונים, בבקשה הקלד את מפתח הרשיון שלך בדף העדכונים. אם אין לך מפתח רשיון, בבקשה עבור לדף פרטים " -"ומחירים" - -#: pro/updates.php:159 -msgid "" -"ACF Activation Error. Your defined license key has changed, but an " -"error occurred when deactivating your old licence" -msgstr "" - -#: pro/updates.php:154 -msgid "" -"ACF Activation Error. Your defined license key has changed, but an " -"error occurred when connecting to activation server" -msgstr "" - -#: pro/updates.php:192 -msgid "ACF Activation Error" -msgstr "" - -#: pro/updates.php:187 -#, fuzzy -#| msgid "Error. Could not connect to update server" -msgid "" -"ACF Activation Error. An error occurred when connecting to activation " -"server" -msgstr "‏שגיאה. החיבור לשרת העדכון נכשל" - -#: pro/updates.php:279 -msgid "Check Again" -msgstr "בדיקה חוזרת" - -#: pro/updates.php:593 -#, fuzzy -#| msgid "Error. Could not connect to update server" -msgid "ACF Activation Error. Could not connect to activation server" -msgstr "‏שגיאה. החיבור לשרת העדכון נכשל" - -#: pro/admin/admin-options-page.php:195 -msgid "Publish" -msgstr "פורסם" - -#: pro/admin/admin-options-page.php:199 -msgid "" -"No Custom Field Groups found for this options page. Create a " -"Custom Field Group" -msgstr "" -"אף קבוצת שדות לא נמצאה בפח. יצירת קבוצת שדות מיוחדים" - -#: pro/admin/admin-options-page.php:309 -msgid "Edit field group" -msgstr "" - -#: pro/admin/admin-updates.php:52 -msgid "Error. Could not connect to update server" -msgstr "‏שגיאה. החיבור לשרת העדכון נכשל" - -#: pro/admin/admin-updates.php:122, -#: pro/admin/views/html-settings-updates.php:12 -msgid "Updates" -msgstr "עדכונים" - -#: pro/admin/admin-updates.php:212 -msgid "" -"Error. Could not authenticate update package. Please check again or " -"deactivate and reactivate your ACF PRO license." -msgstr "" - -#: pro/admin/admin-updates.php:199 -msgid "" -"Error. Your license for this site has expired or been deactivated. " -"Please reactivate your ACF PRO license." -msgstr "" - -#: pro/fields/class-acf-field-clone.php:25 -msgctxt "noun" -msgid "Clone" -msgstr "" - -#: pro/fields/class-acf-field-clone.php:27, -#: pro/fields/class-acf-field-repeater.php:31 -msgid "" -"Allows you to select and display existing fields. It does not duplicate any " -"fields in the database, but loads and displays the selected fields at run-" -"time. The Clone field can either replace itself with the selected fields or " -"display the selected fields as a group of subfields." -msgstr "" - -#: pro/fields/class-acf-field-clone.php:818, -#: pro/fields/class-acf-field-flexible-content.php:78 -msgid "Fields" -msgstr "שדות" - -#: pro/fields/class-acf-field-clone.php:819 -msgid "Select one or more fields you wish to clone" -msgstr "" - -#: pro/fields/class-acf-field-clone.php:838 -msgid "Display" -msgstr "תצוגה" - -#: pro/fields/class-acf-field-clone.php:839 -msgid "Specify the style used to render the clone field" -msgstr "" - -#: pro/fields/class-acf-field-clone.php:844 -msgid "Group (displays selected fields in a group within this field)" -msgstr "" - -#: pro/fields/class-acf-field-clone.php:845 -msgid "Seamless (replaces this field with selected fields)" -msgstr "" - -#: pro/fields/class-acf-field-clone.php:854, -#: pro/fields/class-acf-field-flexible-content.php:558, -#: pro/fields/class-acf-field-flexible-content.php:616, -#: pro/fields/class-acf-field-repeater.php:177 -msgid "Layout" -msgstr "פריסת תוכן" - -#: pro/fields/class-acf-field-clone.php:855 -msgid "Specify the style used to render the selected fields" -msgstr "" - -#: pro/fields/class-acf-field-clone.php:860, -#: pro/fields/class-acf-field-flexible-content.php:629, -#: pro/fields/class-acf-field-repeater.php:185, -#: pro/locations/class-acf-location-block.php:22 -msgid "Block" -msgstr "בלוק" - -#: pro/fields/class-acf-field-clone.php:861, -#: pro/fields/class-acf-field-flexible-content.php:628, -#: pro/fields/class-acf-field-repeater.php:184 -msgid "Table" -msgstr "טבלה" - -#: pro/fields/class-acf-field-clone.php:862, -#: pro/fields/class-acf-field-flexible-content.php:630, -#: pro/fields/class-acf-field-repeater.php:186 -msgid "Row" -msgstr "שורה" - -#: pro/fields/class-acf-field-clone.php:868 -msgid "Labels will be displayed as %s" -msgstr "" - -#: pro/fields/class-acf-field-clone.php:873 -msgid "Prefix Field Labels" -msgstr "" - -#: pro/fields/class-acf-field-clone.php:883 -msgid "Values will be saved as %s" -msgstr "" - -#: pro/fields/class-acf-field-clone.php:888 -msgid "Prefix Field Names" -msgstr "" - -#: pro/fields/class-acf-field-clone.php:1005 -msgid "Unknown field" -msgstr "" - -#: pro/fields/class-acf-field-clone.php:1009 -msgid "(no title)" -msgstr "(אין כותרת)" - -#: pro/fields/class-acf-field-clone.php:1042 -msgid "Unknown field group" -msgstr "" - -#: pro/fields/class-acf-field-clone.php:1046 -msgid "All fields from %s field group" -msgstr "" - -#: pro/fields/class-acf-field-flexible-content.php:25 -msgid "Flexible Content" -msgstr "תוכן גמיש" - -#: pro/fields/class-acf-field-flexible-content.php:27 -msgid "" -"Allows you to define, create and manage content with total control by " -"creating layouts that contain subfields that content editors can choose from." -msgstr "" - -#: pro/fields/class-acf-field-flexible-content.php:27 -msgid "We do not recommend using this field in ACF Blocks." -msgstr "" - -#: pro/fields/class-acf-field-flexible-content.php:36, -#: pro/fields/class-acf-field-repeater.php:103, -#: pro/fields/class-acf-field-repeater.php:297 -msgid "Add Row" -msgstr "הוספת שורה חדשה" - -#: pro/fields/class-acf-field-flexible-content.php:76, -#: pro/fields/class-acf-field-flexible-content.php:943, -#: pro/fields/class-acf-field-flexible-content.php:1022 -#, fuzzy -#| msgid "layout" -msgid "layout" -msgid_plural "layouts" -msgstr[0] "פריסה" -msgstr[1] "פריסה" - -#: pro/fields/class-acf-field-flexible-content.php:77 -msgid "layouts" -msgstr "פריסות" - -#: pro/fields/class-acf-field-flexible-content.php:81, -#: pro/fields/class-acf-field-flexible-content.php:942, -#: pro/fields/class-acf-field-flexible-content.php:1021 -msgid "This field requires at least {min} {label} {identifier}" -msgstr "שדה זה דורש לפחות {min} {label} {identifier}" - -#: pro/fields/class-acf-field-flexible-content.php:82 -#, fuzzy -#| msgid "This field has a limit of {max} {identifier}" -msgid "This field has a limit of {max} {label} {identifier}" -msgstr "לשדה זה יש מגבלה של {max} {identifier}" - -#: pro/fields/class-acf-field-flexible-content.php:85 -msgid "{available} {label} {identifier} available (max {max})" -msgstr "‏{available} {label} {identifier} זמינים (מקסימום {max})" - -#: pro/fields/class-acf-field-flexible-content.php:86 -msgid "{required} {label} {identifier} required (min {min})" -msgstr "‏{required} {label} {identifier} נדרש (מינימום {min})" - -#: pro/fields/class-acf-field-flexible-content.php:89 -msgid "Flexible Content requires at least 1 layout" -msgstr "דרושה לפחות פריסה אחת לתוכן הגמיש" - -#: pro/fields/class-acf-field-flexible-content.php:282 -msgid "Click the \"%s\" button below to start creating your layout" -msgstr "לחצו על כפתור \"%s\" שלמטה כדי להתחיל ביצירת הפריסה" - -#: pro/fields/class-acf-field-flexible-content.php:420, -#: pro/fields/class-acf-repeater-table.php:366 -msgid "Drag to reorder" -msgstr "גרור ושחרר לסידור מחדש" - -#: pro/fields/class-acf-field-flexible-content.php:423 -msgid "Add layout" -msgstr "הוספת פריסה" - -#: pro/fields/class-acf-field-flexible-content.php:424 -#, fuzzy -#| msgid "Duplicate Layout" -msgid "Duplicate layout" -msgstr "שכפול פריסת תוכן" - -#: pro/fields/class-acf-field-flexible-content.php:425 -msgid "Remove layout" -msgstr "הסרת פריסה" - -#: pro/fields/class-acf-field-flexible-content.php:426, -#: pro/fields/class-acf-repeater-table.php:382 -msgid "Click to toggle" -msgstr "" - -#: pro/fields/class-acf-field-flexible-content.php:562 -msgid "Delete Layout" -msgstr "מחיקת פריסת תוכן" - -#: pro/fields/class-acf-field-flexible-content.php:563 -msgid "Duplicate Layout" -msgstr "שכפול פריסת תוכן" - -#: pro/fields/class-acf-field-flexible-content.php:564 -msgid "Add New Layout" -msgstr "הוספת פריסת תוכן חדשה" - -#: pro/fields/class-acf-field-flexible-content.php:564 -#, fuzzy -#| msgid "Add layout" -msgid "Add Layout" -msgstr "הוספת פריסה" - -#: pro/fields/class-acf-field-flexible-content.php:593 -msgid "Label" -msgstr "תווית" - -#: pro/fields/class-acf-field-flexible-content.php:609 -msgid "Name" -msgstr "שם" - -#: pro/fields/class-acf-field-flexible-content.php:647 -msgid "Min" -msgstr "מינימום" - -#: pro/fields/class-acf-field-flexible-content.php:662 -msgid "Max" -msgstr "מקסימום" - -#: pro/fields/class-acf-field-flexible-content.php:705 -msgid "Minimum Layouts" -msgstr "מינימום פריסות" - -#: pro/fields/class-acf-field-flexible-content.php:716 -msgid "Maximum Layouts" -msgstr "מקסימום פריסות" - -#: pro/fields/class-acf-field-flexible-content.php:727, -#: pro/fields/class-acf-field-repeater.php:293 -msgid "Button Label" -msgstr "תווית כפתור" - -#: pro/fields/class-acf-field-flexible-content.php:1710, -#: pro/fields/class-acf-field-repeater.php:918 -msgid "%s must be of type array or null." -msgstr "" - -#: pro/fields/class-acf-field-flexible-content.php:1721 -msgid "%1$s must contain at least %2$s %3$s layout." -msgid_plural "%1$s must contain at least %2$s %3$s layouts." -msgstr[0] "" -msgstr[1] "" - -#: pro/fields/class-acf-field-flexible-content.php:1737 -msgid "%1$s must contain at most %2$s %3$s layout." -msgid_plural "%1$s must contain at most %2$s %3$s layouts." -msgstr[0] "" -msgstr[1] "" - -#: pro/fields/class-acf-field-gallery.php:25 -msgid "Gallery" -msgstr "גלריה" - -#: pro/fields/class-acf-field-gallery.php:27 -msgid "" -"An interactive interface for managing a collection of attachments, such as " -"images." -msgstr "" - -#: pro/fields/class-acf-field-gallery.php:77 -msgid "Add Image to Gallery" -msgstr "הוספת תמונה לגלריה" - -#: pro/fields/class-acf-field-gallery.php:78 -msgid "Maximum selection reached" -msgstr "הגעתם למקסימום בחירה" - -#: pro/fields/class-acf-field-gallery.php:324 -msgid "Length" -msgstr "אורך" - -#: pro/fields/class-acf-field-gallery.php:339 -msgid "Edit" -msgstr "עריכה" - -#: pro/fields/class-acf-field-gallery.php:340, -#: pro/fields/class-acf-field-gallery.php:495 -msgid "Remove" -msgstr "הסר" - -#: pro/fields/class-acf-field-gallery.php:356 -msgid "Title" -msgstr "כותרת" - -#: pro/fields/class-acf-field-gallery.php:368 -msgid "Caption" -msgstr "" - -#: pro/fields/class-acf-field-gallery.php:380 -msgid "Alt Text" -msgstr "" - -#: pro/fields/class-acf-field-gallery.php:392 -msgid "Description" -msgstr "תיאור" - -#: pro/fields/class-acf-field-gallery.php:504 -msgid "Add to gallery" -msgstr "הוספה לגלריה" - -#: pro/fields/class-acf-field-gallery.php:508 -msgid "Bulk actions" -msgstr "עריכה קבוצתית" - -#: pro/fields/class-acf-field-gallery.php:509 -msgid "Sort by date uploaded" -msgstr "מיון לפי תאריך העלאה" - -#: pro/fields/class-acf-field-gallery.php:510 -msgid "Sort by date modified" -msgstr "מיון לפי תאריך שינוי" - -#: pro/fields/class-acf-field-gallery.php:511 -msgid "Sort by title" -msgstr "מיון לפי כותרת" - -#: pro/fields/class-acf-field-gallery.php:512 -msgid "Reverse current order" -msgstr "הפוך סדר נוכחי" - -#: pro/fields/class-acf-field-gallery.php:524 -msgid "Close" -msgstr "סגור" - -#: pro/fields/class-acf-field-gallery.php:556 -msgid "Return Format" -msgstr "פורמט חוזר" - -#: pro/fields/class-acf-field-gallery.php:562 -msgid "Image Array" -msgstr "מערך תמונות" - -#: pro/fields/class-acf-field-gallery.php:563 -msgid "Image URL" -msgstr "כתובת אינטרנט של התמונה" - -#: pro/fields/class-acf-field-gallery.php:564 -msgid "Image ID" -msgstr "מזהה ייחודי של תמונה" - -#: pro/fields/class-acf-field-gallery.php:572 -msgid "Library" -msgstr "ספריה" - -#: pro/fields/class-acf-field-gallery.php:573 -msgid "Limit the media library choice" -msgstr "הגבלת אפשרויות ספריית המדיה" - -#: pro/fields/class-acf-field-gallery.php:578, -#: pro/locations/class-acf-location-block.php:66 -msgid "All" -msgstr "הכל" - -#: pro/fields/class-acf-field-gallery.php:579 -msgid "Uploaded to post" -msgstr "הועלה לפוסט" - -#: pro/fields/class-acf-field-gallery.php:615 -msgid "Minimum Selection" -msgstr "מינימום בחירה" - -#: pro/fields/class-acf-field-gallery.php:625 -msgid "Maximum Selection" -msgstr "מקסימום בחירה" - -#: pro/fields/class-acf-field-gallery.php:635 -msgid "Minimum" -msgstr "" - -#: pro/fields/class-acf-field-gallery.php:636, -#: pro/fields/class-acf-field-gallery.php:672 -msgid "Restrict which images can be uploaded" -msgstr "" - -#: pro/fields/class-acf-field-gallery.php:639, -#: pro/fields/class-acf-field-gallery.php:675 -msgid "Width" -msgstr "" - -#: pro/fields/class-acf-field-gallery.php:650, -#: pro/fields/class-acf-field-gallery.php:686 -msgid "Height" -msgstr "גובה" - -#: pro/fields/class-acf-field-gallery.php:662, -#: pro/fields/class-acf-field-gallery.php:698 -msgid "File size" -msgstr "" - -#: pro/fields/class-acf-field-gallery.php:671 -msgid "Maximum" -msgstr "" - -#: pro/fields/class-acf-field-gallery.php:707 -msgid "Allowed file types" -msgstr "" - -#: pro/fields/class-acf-field-gallery.php:708 -msgid "Comma separated list. Leave blank for all types" -msgstr "" - -#: pro/fields/class-acf-field-gallery.php:727 -msgid "Insert" -msgstr "" - -#: pro/fields/class-acf-field-gallery.php:728 -msgid "Specify where new attachments are added" -msgstr "" - -#: pro/fields/class-acf-field-gallery.php:732 -msgid "Append to the end" -msgstr "" - -#: pro/fields/class-acf-field-gallery.php:733 -msgid "Prepend to the beginning" -msgstr "" - -#: pro/fields/class-acf-field-gallery.php:741 -msgid "Preview Size" -msgstr "גודל תצוגה" - -#: pro/fields/class-acf-field-gallery.php:844 -#, fuzzy -msgid "%1$s requires at least %2$s selection" -msgid_plural "%1$s requires at least %2$s selections" -msgstr[0] "%s מחייב לפחות בחירה %s" -msgstr[1] "%s מחייב לפחות בחירה %s" - -#: pro/fields/class-acf-field-repeater.php:29 -msgid "Repeater" -msgstr "שדה חזרה" - -#: pro/fields/class-acf-field-repeater.php:66, -#: pro/fields/class-acf-field-repeater.php:463 -#, fuzzy -#| msgid "Minimum rows reached ({min} rows)" -msgid "Minimum rows not reached ({min} rows)" -msgstr "הגעתם למינימום שורות האפשרי ({min} שורות)" - -#: pro/fields/class-acf-field-repeater.php:67 -msgid "Maximum rows reached ({max} rows)" -msgstr "הגעתם למקסימום שורות האפשרי ({max} שורות)" - -#: pro/fields/class-acf-field-repeater.php:68 -#, fuzzy -#| msgid "Error validating request" -msgid "Error loading page" -msgstr "שגיאה בבקשת האימות" - -#: pro/fields/class-acf-field-repeater.php:69 -msgid "Order will be assigned upon save" -msgstr "" - -#: pro/fields/class-acf-field-repeater.php:162 -msgid "Sub Fields" -msgstr "שדות משנה" - -#: pro/fields/class-acf-field-repeater.php:195 -#, fuzzy -#| msgid "Position" -msgid "Pagination" -msgstr "מיקום" - -#: pro/fields/class-acf-field-repeater.php:196 -msgid "Useful for fields with a large number of rows." -msgstr "" - -#: pro/fields/class-acf-field-repeater.php:207 -#, fuzzy -#| msgid "Posts Page" -msgid "Rows Per Page" -msgstr "עמוד פוסטים" - -#: pro/fields/class-acf-field-repeater.php:208 -msgid "Set the number of rows to be displayed on a page." -msgstr "" - -#: pro/fields/class-acf-field-repeater.php:240 -msgid "Minimum Rows" -msgstr "מינימום שורות" - -#: pro/fields/class-acf-field-repeater.php:251 -msgid "Maximum Rows" -msgstr "מקסימום שורות" - -#: pro/fields/class-acf-field-repeater.php:281 -msgid "Collapsed" -msgstr "" - -#: pro/fields/class-acf-field-repeater.php:282 -msgid "Select a sub field to show when row is collapsed" -msgstr "" - -#: pro/fields/class-acf-field-repeater.php:1045 -msgid "Invalid nonce." -msgstr "" - -#: pro/fields/class-acf-field-repeater.php:1060 -msgid "Invalid field key or name." -msgstr "" - -#: pro/fields/class-acf-field-repeater.php:1069 -msgid "There was an error retrieving the field." -msgstr "" - -#: pro/fields/class-acf-repeater-table.php:369 -#, fuzzy -#| msgid "Drag to reorder" -msgid "Click to reorder" -msgstr "גרור ושחרר לסידור מחדש" - -#: pro/fields/class-acf-repeater-table.php:402 -msgid "Add row" -msgstr "הוספת שורה" - -#: pro/fields/class-acf-repeater-table.php:403 -#, fuzzy -#| msgid "Duplicate" -msgid "Duplicate row" -msgstr "שיכפול" - -#: pro/fields/class-acf-repeater-table.php:404 -msgid "Remove row" -msgstr "הסרת שורה" - -#: pro/fields/class-acf-repeater-table.php:448, -#: pro/fields/class-acf-repeater-table.php:465, -#: pro/fields/class-acf-repeater-table.php:466 -#, fuzzy -#| msgid "Front Page" -msgid "Current Page" -msgstr "עמוד ראשי" - -#: pro/fields/class-acf-repeater-table.php:456, -#: pro/fields/class-acf-repeater-table.php:457 -#, fuzzy -#| msgid "Front Page" -msgid "First Page" -msgstr "עמוד ראשי" - -#: pro/fields/class-acf-repeater-table.php:460, -#: pro/fields/class-acf-repeater-table.php:461 -#, fuzzy -#| msgid "Posts Page" -msgid "Previous Page" -msgstr "עמוד פוסטים" - -#. translators: 1: Current page, 2: Total pages. -#: pro/fields/class-acf-repeater-table.php:470 -msgctxt "paging" -msgid "%1$s of %2$s" -msgstr "" - -#: pro/fields/class-acf-repeater-table.php:477, -#: pro/fields/class-acf-repeater-table.php:478 -#, fuzzy -#| msgid "Front Page" -msgid "Next Page" -msgstr "עמוד ראשי" - -#: pro/fields/class-acf-repeater-table.php:481, -#: pro/fields/class-acf-repeater-table.php:482 -#, fuzzy -#| msgid "Posts Page" -msgid "Last Page" -msgstr "עמוד פוסטים" - -#: pro/locations/class-acf-location-block.php:71 -#, fuzzy -#| msgid "No options pages exist" -msgid "No block types exist" -msgstr "לא קיים דף אפשרויות" - -#: pro/locations/class-acf-location-options-page.php:22 -msgid "Options Page" -msgstr "עמוד אפשרויות" - -#: pro/locations/class-acf-location-options-page.php:70 -msgid "No options pages exist" -msgstr "לא קיים דף אפשרויות" - -#: pro/admin/views/html-settings-updates.php:6 -msgid "Deactivate License" -msgstr "ביטול הפעלת רשיון" - -#: pro/admin/views/html-settings-updates.php:6 -msgid "Activate License" -msgstr "הפעל את הרשיון" - -#: pro/admin/views/html-settings-updates.php:16 -msgid "License Information" -msgstr "" - -#: pro/admin/views/html-settings-updates.php:34 -msgid "" -"To unlock updates, please enter your license key below. If you don't have a " -"licence key, please see details & pricing." -msgstr "" - -#: pro/admin/views/html-settings-updates.php:37 -msgid "License Key" -msgstr "מפתח רשיון" - -#: pro/admin/views/html-settings-updates.php:22 -msgid "Your license key is defined in wp-config.php." -msgstr "" - -#: pro/admin/views/html-settings-updates.php:29 -#, fuzzy -#| msgid "Better Validation" -msgid "Retry Activation" -msgstr "אימות נתונים משופר" - -#: pro/admin/views/html-settings-updates.php:61 -msgid "Update Information" -msgstr "מידע על העדכון" - -#: pro/admin/views/html-settings-updates.php:68 -msgid "Current Version" -msgstr "גרסה נוכחית" - -#: pro/admin/views/html-settings-updates.php:76 -msgid "Latest Version" -msgstr "גרסה אחרונה" - -#: pro/admin/views/html-settings-updates.php:84 -msgid "Update Available" -msgstr "יש עדכון זמין" - -#: pro/admin/views/html-settings-updates.php:91 -msgid "No" -msgstr "לא" - -#: pro/admin/views/html-settings-updates.php:89 -msgid "Yes" -msgstr "כן" - -#: pro/admin/views/html-settings-updates.php:98 -msgid "Upgrade Notice" -msgstr "הודעת שדרוג" - -#: pro/admin/views/html-settings-updates.php:126 -msgid "Check For Updates" -msgstr "" - -#: pro/admin/views/html-settings-updates.php:121 -#, fuzzy -#| msgid "Please enter your license key above to unlock updates" -msgid "Enter your license key to unlock updates" -msgstr "הקלד בבקשה את מפתח הרשיון שלך לעיל כדי לשחרר את נעילת העדכונים" - -#: pro/admin/views/html-settings-updates.php:119 -msgid "Update Plugin" -msgstr "עדכון התוסף" - -#: pro/admin/views/html-settings-updates.php:117 -#, fuzzy -#| msgid "Please enter your license key above to unlock updates" -msgid "Please reactivate your license to unlock updates" -msgstr "הקלד בבקשה את מפתח הרשיון שלך לעיל כדי לשחרר את נעילת העדכונים" diff --git a/lang/acf-hr.mo b/lang/acf-hr.mo deleted file mode 100644 index d0ddfc6..0000000 Binary files a/lang/acf-hr.mo and /dev/null differ diff --git a/lang/acf-hr.po b/lang/acf-hr.po deleted file mode 100644 index 829f224..0000000 --- a/lang/acf-hr.po +++ /dev/null @@ -1,6212 +0,0 @@ -# Advanced Custom Fields Translations are a combination of translate.wordpress.org contributions, -# combined with user contributed strings for the PRO version. -# Translations from translate.wordpress.org take priority over translations in this file. -# translate.wordpress.org contributions are synced at the time of each release. -# -# If you would like to contribute translations, please visit -# https://translate.wordpress.org/projects/wp-plugins/advanced-custom-fields/stable/ -# -# For additional ACF PRO strings, please submit a pull request over on the ACF GitHub repo at -# http://github.com/advancedcustomfields/acf using the .pot (and any existing .po) files in /lang/pro/ -# -# This file is distributed under the same license as Advanced Custom Fields. -msgid "" -msgstr "" -"PO-Revision-Date: 2023-11-28T09:14:32+00:00\n" -"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n" -"Language: hr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: gettext\n" -"Project-Id-Version: Advanced Custom Fields\n" - -#: includes/admin/views/global/navigation.php:221 -msgid "Renew ACF PRO License" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:17 -msgid "Renew License" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:14 -msgid "Manage License" -msgstr "" - -#: includes/admin/views/acf-field-group/options.php:102 -msgid "'High' position not supported in the Block Editor" -msgstr "" - -#: includes/admin/views/options-page-preview.php:30 -msgid "Upgrade to ACF PRO" -msgstr "" - -#. translators: %s URL to ACF options pages documentation -#: includes/admin/views/options-page-preview.php:7 -msgid "" -"ACF options pages are custom admin " -"pages for managing global settings via fields. You can create multiple pages " -"and sub-pages." -msgstr "" - -#: includes/admin/views/global/header.php:35 -msgid "Add Options Page" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:703 -msgid "In the editor used as the placeholder of the title." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:702 -msgid "Title Placeholder" -msgstr "" - -#: includes/admin/views/global/navigation.php:97 -msgid "4 Months Free" -msgstr "" - -#. translators: %s - A singular label for a post type or taxonomy. -#: includes/admin/views/global/form-top.php:56 -msgid " (Duplicated from %s)" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:298 -msgid "Select Options Pages" -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:107 -msgid "Duplicate taxonomy" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:106 -#: includes/admin/post-types/admin-taxonomy.php:106 -msgid "Create taxonomy" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:105 -msgid "Duplicate post type" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:104 -#: includes/admin/post-types/admin-taxonomy.php:108 -msgid "Create post type" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:103 -#: includes/admin/post-types/admin-taxonomy.php:105 -msgid "Link field groups" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:102 -#: includes/admin/post-types/admin-taxonomy.php:104 -msgid "Add fields" -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:121 -#: assets/build/js/acf-field-group.js:2753 -#: assets/build/js/acf-field-group.js:3236 -msgid "This Field" -msgstr "" - -#: includes/admin/admin.php:267 -msgid "ACF PRO" -msgstr "" - -#: includes/admin/admin.php:265 -msgid "Feedback" -msgstr "" - -#: includes/admin/admin.php:263 -msgid "Support" -msgstr "" - -#. translators: This text is prepended by a link to ACF's website, and appended -#. by a link to WP Engine's website. -#: includes/admin/admin.php:238 -msgid "is developed and maintained by" -msgstr "" - -#. translators: %s - either "post type" or "taxonomy" -#: includes/admin/admin-internal-post-type.php:321 -msgid "Add this %s to the location rules of the selected field groups." -msgstr "" - -#. translators: %s the URL to ACF's bidirectional relationship documentation -#: includes/acf-bidirectional-functions.php:271 -msgid "" -"Enabling the bidirectional setting allows you to update a value in the " -"target fields for each value selected for this field, adding or removing the " -"Post ID, Taxonomy ID or User ID of the item being updated. For more " -"information, please read the documentation." -msgstr "" - -#: includes/acf-bidirectional-functions.php:247 -msgid "" -"Select field(s) to store the reference back to the item being updated. You " -"may select this field. Target fields must be compatible with where this " -"field is being displayed. For example, if this field is displayed on a " -"Taxonomy, your target field should be of type Taxonomy" -msgstr "" - -#: includes/acf-bidirectional-functions.php:246 -msgid "Target Field" -msgstr "" - -#: includes/acf-bidirectional-functions.php:220 -msgid "Update a field on the selected values, referencing back to this ID" -msgstr "" - -#: includes/acf-bidirectional-functions.php:219 -msgid "Bidirectional" -msgstr "" - -#. translators: %s A field type name, such as "Relationship" -#: includes/acf-bidirectional-functions.php:192 -msgid "%s Field" -msgstr "" - -#: includes/fields/class-acf-field-page_link.php:517 -#: includes/fields/class-acf-field-post_object.php:426 -#: includes/fields/class-acf-field-select.php:407 -#: includes/fields/class-acf-field-user.php:82 -msgid "Select Multiple" -msgstr "" - -#: includes/admin/views/global/navigation.php:233 -msgid "WP Engine logo" -msgstr "" - -#: includes/admin/views/acf-taxonomy/basic-settings.php:58 -msgid "Lower case letters, underscores and dashes only, Max 32 characters." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1136 -msgid "The capability name for assigning terms of this taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1135 -msgid "Assign Terms Capability" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1119 -msgid "The capability name for deleting terms of this taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1118 -msgid "Delete Terms Capability" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1102 -msgid "The capability name for editing terms of this taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1101 -msgid "Edit Terms Capability" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1085 -msgid "The capability name for managing terms of this taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1084 -msgid "Manage Terms Capability" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:886 -msgid "" -"Sets whether posts should be excluded from search results and taxonomy " -"archive pages." -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:74 -msgid "More Tools from WP Engine" -msgstr "" - -#. translators: %s - WP Engine logo -#: includes/admin/views/acf-field-group/pro-features.php:69 -msgid "Built for those that build with WordPress, by the team at %s" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:6 -msgid "View Pricing & Upgrade" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:3 -#: includes/admin/views/options-page-preview.php:29 -msgid "Learn More" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:28 -msgid "" -"Speed up your workflow and develop better websites with features like ACF " -"Blocks and Options Pages, and sophisticated field types like Repeater, " -"Flexible Content, Clone, and Gallery." -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:2 -msgid "Unlock Advanced Features and Build Even More with ACF PRO" -msgstr "" - -#. translators: %s - singular label of post type/taxonomy, i.e. "Movie"/"Genre" -#: includes/admin/views/global/form-top.php:19 -msgid "%s fields" -msgstr "%s polja" - -#: includes/admin/post-types/admin-taxonomies.php:293 -msgid "No terms" -msgstr "Nema uvjeta" - -#: includes/admin/post-types/admin-taxonomies.php:266 -msgid "No post types" -msgstr "Nema vrste objava" - -#: includes/admin/post-types/admin-post-types.php:289 -msgid "No posts" -msgstr "Nema objava" - -#: includes/admin/post-types/admin-post-types.php:263 -msgid "No taxonomies" -msgstr "Nema taksonomije" - -#: includes/admin/post-types/admin-post-types.php:208 -#: includes/admin/post-types/admin-taxonomies.php:208 -msgid "No field groups" -msgstr "Nema grupa polja" - -#: includes/admin/post-types/admin-field-groups.php:281 -msgid "No fields" -msgstr "Nema polja" - -#: includes/admin/post-types/admin-field-groups.php:154 -#: includes/admin/post-types/admin-post-types.php:172 -#: includes/admin/post-types/admin-taxonomies.php:172 -msgid "No description" -msgstr "Nema opisa" - -#: includes/fields/class-acf-field-page_link.php:484 -#: includes/fields/class-acf-field-post_object.php:389 -#: includes/fields/class-acf-field-relationship.php:601 -msgid "Any post status" -msgstr "Bilo koji status objave" - -#: includes/post-types/class-acf-taxonomy.php:284 -msgid "" -"This taxonomy key is already in use by another taxonomy registered outside " -"of ACF and cannot be used." -msgstr "" -"Ovaj ključ taksonomije već koristi druga taksonomija registrirana izvan ACF-" -"a i ne može se koristiti." - -#: includes/post-types/class-acf-taxonomy.php:279 -msgid "" -"This taxonomy key is already in use by another taxonomy in ACF and cannot be " -"used." -msgstr "" -"Ovaj ključ taksonomije već koristi druga taksonomija u ACF-u i ne može se " -"koristiti." - -#: includes/post-types/class-acf-taxonomy.php:252 -msgid "" -"The taxonomy key must only contain lower case alphanumeric characters, " -"underscores or dashes." -msgstr "" -"Taksonomski ključ smije sadržavati samo mala slova, alfanumeričke znakove, " -"podvlake ili crtice." - -#: includes/post-types/class-acf-taxonomy.php:247 -msgid "The taxonomy key must be under 32 characters." -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:99 -msgid "No Taxonomies found in Trash" -msgstr "Nema taksonomija pronađenih u smeću" - -#: includes/post-types/class-acf-taxonomy.php:98 -msgid "No Taxonomies found" -msgstr "Taksonomije nisu pronađene" - -#: includes/post-types/class-acf-taxonomy.php:97 -msgid "Search Taxonomies" -msgstr "Pretražite taksonomije" - -#: includes/post-types/class-acf-taxonomy.php:96 -msgid "View Taxonomy" -msgstr "Pregledaj taksonomije" - -#: includes/post-types/class-acf-taxonomy.php:95 -msgid "New Taxonomy" -msgstr "Nove taksonomije" - -#: includes/post-types/class-acf-taxonomy.php:94 -msgid "Edit Taxonomy" -msgstr "Uredi taksonomije" - -#: includes/post-types/class-acf-taxonomy.php:93 -msgid "Add New Taxonomy" -msgstr "Dodaj nove taksonomije" - -#: includes/post-types/class-acf-post-type.php:100 -msgid "No Post Types found in Trash" -msgstr "Nema vrsta objava pronađenih u smeću" - -#: includes/post-types/class-acf-post-type.php:99 -msgid "No Post Types found" -msgstr "Nema pronađenih vrsta objava" - -#: includes/post-types/class-acf-post-type.php:98 -msgid "Search Post Types" -msgstr "Pretraži vrste objava" - -#: includes/post-types/class-acf-post-type.php:97 -msgid "View Post Type" -msgstr "Pregledaj vrste objava" - -#: includes/post-types/class-acf-post-type.php:96 -msgid "New Post Type" -msgstr "Nove vrste objava" - -#: includes/post-types/class-acf-post-type.php:95 -msgid "Edit Post Type" -msgstr "Uredi vrste objava" - -#: includes/post-types/class-acf-post-type.php:94 -msgid "Add New Post Type" -msgstr "Dodaj nove vrste objava" - -#: includes/post-types/class-acf-post-type.php:361 -msgid "" -"This post type key is already in use by another post type registered outside " -"of ACF and cannot be used." -msgstr "" -"Ovaj ključ vrste objave već koristi druga vrsta objave registrirane izvan " -"ACF-a i ne može se koristiti." - -#: includes/post-types/class-acf-post-type.php:356 -msgid "" -"This post type key is already in use by another post type in ACF and cannot " -"be used." -msgstr "" -"Ovaj ključ vrste objave već koristi druga vrsta objave u ACF-u i ne može se " -"koristiti." - -#. translators: %s a link to WordPress.org's Reserved Terms page -#: includes/post-types/class-acf-post-type.php:335 -#: includes/post-types/class-acf-taxonomy.php:258 -msgid "" -"This field must not be a WordPress reserved " -"term." -msgstr "" -"Ovo polje ne smije biti WordPress rezervirani pojam." - -#: includes/post-types/class-acf-post-type.php:329 -msgid "" -"The post type key must only contain lower case alphanumeric characters, " -"underscores or dashes." -msgstr "" - -#: includes/post-types/class-acf-post-type.php:324 -msgid "The post type key must be under 20 characters." -msgstr "" - -#: includes/fields/class-acf-field-wysiwyg.php:27 -msgid "We do not recommend using this field in ACF Blocks." -msgstr "" - -#: includes/fields/class-acf-field-wysiwyg.php:27 -msgid "" -"Displays the WordPress WYSIWYG editor as seen in Posts and Pages allowing " -"for a rich text-editing experience that also allows for multimedia content." -msgstr "" - -#: includes/fields/class-acf-field-wysiwyg.php:25 -msgid "WYSIWYG Editor" -msgstr "" - -#: includes/fields/class-acf-field-user.php:17 -msgid "" -"Allows the selection of one or more users which can be used to create " -"relationships between data objects." -msgstr "" - -#: includes/fields/class-acf-field-url.php:26 -msgid "A text input specifically designed for storing web addresses." -msgstr "" - -#: includes/fields/class-acf-field-url.php:25 -msgid "URL" -msgstr "" - -#: includes/fields/class-acf-field-true_false.php:27 -msgid "" -"A toggle that allows you to pick a value of 1 or 0 (on or off, true or " -"false, etc). Can be presented as a stylized switch or checkbox." -msgstr "" - -#: includes/fields/class-acf-field-time_picker.php:27 -msgid "" -"An interactive UI for picking a time. The time format can be customized " -"using the field settings." -msgstr "" - -#: includes/fields/class-acf-field-textarea.php:26 -msgid "A basic textarea input for storing paragraphs of text." -msgstr "" - -#: includes/fields/class-acf-field-text.php:26 -msgid "A basic text input, useful for storing single string values." -msgstr "" - -#: includes/fields/class-acf-field-taxonomy.php:22 -msgid "" -"Allows the selection of one or more taxonomy terms based on the criteria and " -"options specified in the fields settings." -msgstr "" - -#: includes/fields/class-acf-field-tab.php:28 -msgid "" -"Allows you to group fields into tabbed sections in the edit screen. Useful " -"for keeping fields organized and structured." -msgstr "" - -#: includes/fields/class-acf-field-select.php:27 -msgid "A dropdown list with a selection of choices that you specify." -msgstr "" - -#: includes/fields/class-acf-field-relationship.php:19 -msgid "" -"A dual-column interface to select one or more posts, pages, or custom post " -"type items to create a relationship with the item that you're currently " -"editing. Includes options to search and filter." -msgstr "" - -#: includes/fields/class-acf-field-range.php:26 -msgid "" -"An input for selecting a numerical value within a specified range using a " -"range slider element." -msgstr "" - -#: includes/fields/class-acf-field-radio.php:27 -msgid "" -"A group of radio button inputs that allows the user to make a single " -"selection from values that you specify." -msgstr "" - -#: includes/fields/class-acf-field-post_object.php:19 -msgid "" -"An interactive and customizable UI for picking one or many posts, pages or " -"post type items with the option to search. " -msgstr "" - -#: includes/fields/class-acf-field-password.php:26 -msgid "An input for providing a password using a masked field." -msgstr "" - -#: includes/fields/class-acf-field-page_link.php:476 -#: includes/fields/class-acf-field-post_object.php:381 -#: includes/fields/class-acf-field-relationship.php:593 -msgid "Filter by Post Status" -msgstr "" - -#: includes/fields/class-acf-field-page_link.php:27 -msgid "" -"An interactive dropdown to select one or more posts, pages, custom post type " -"items or archive URLs, with the option to search." -msgstr "" - -#: includes/fields/class-acf-field-oembed.php:27 -msgid "" -"An interactive component for embedding videos, images, tweets, audio and " -"other content by making use of the native WordPress oEmbed functionality." -msgstr "" - -#: includes/fields/class-acf-field-number.php:26 -msgid "An input limited to numerical values." -msgstr "" - -#: includes/fields/class-acf-field-message.php:28 -msgid "" -"Used to display a message to editors alongside other fields. Useful for " -"providing additional context or instructions around your fields." -msgstr "" - -#: includes/fields/class-acf-field-link.php:27 -msgid "" -"Allows you to specify a link and its properties such as title and target " -"using the WordPress native link picker." -msgstr "" - -#: includes/fields/class-acf-field-image.php:27 -msgid "Uses the native WordPress media picker to upload, or choose images." -msgstr "" - -#: includes/fields/class-acf-field-group.php:27 -msgid "" -"Provides a way to structure fields into groups to better organize the data " -"and the edit screen." -msgstr "" - -#: includes/fields/class-acf-field-google-map.php:27 -msgid "" -"An interactive UI for selecting a location using Google Maps. Requires a " -"Google Maps API key and additional configuration to display correctly." -msgstr "" - -#: includes/fields/class-acf-field-file.php:27 -msgid "Uses the native WordPress media picker to upload, or choose files." -msgstr "" - -#: includes/fields/class-acf-field-email.php:26 -msgid "A text input specifically designed for storing email addresses." -msgstr "" - -#: includes/fields/class-acf-field-date_time_picker.php:27 -msgid "" -"An interactive UI for picking a date and time. The date return format can be " -"customized using the field settings." -msgstr "" - -#: includes/fields/class-acf-field-date_picker.php:27 -msgid "" -"An interactive UI for picking a date. The date return format can be " -"customized using the field settings." -msgstr "" - -#: includes/fields/class-acf-field-color_picker.php:27 -msgid "An interactive UI for selecting a color, or specifying a Hex value." -msgstr "" - -#: includes/fields/class-acf-field-checkbox.php:27 -msgid "" -"A group of checkbox inputs that allow the user to select one, or multiple " -"values that you specify." -msgstr "" - -#: includes/fields/class-acf-field-button-group.php:26 -msgid "" -"A group of buttons with values that you specify, users can choose one option " -"from the values provided." -msgstr "" - -#: includes/fields/class-acf-field-accordion.php:27 -msgid "" -"Allows you to group and organize custom fields into collapsable panels that " -"are shown while editing content. Useful for keeping large datasets tidy." -msgstr "" - -#: includes/fields.php:475 -msgid "" -"This provides a solution for repeating content such as slides, team members, " -"and call-to-action tiles, by acting as a parent to a set of subfields which " -"can be repeated again and again." -msgstr "" - -#: includes/fields.php:465 -msgid "" -"This provides an interactive interface for managing a collection of " -"attachments. Most settings are similar to the Image field type. Additional " -"settings allow you to specify where new attachments are added in the gallery " -"and the minimum/maximum number of attachments allowed." -msgstr "" - -#: includes/fields.php:455 -msgid "" -"This provides a simple, structured, layout-based editor. The Flexible " -"Content field allows you to define, create and manage content with total " -"control by using layouts and subfields to design the available blocks." -msgstr "" - -#: includes/fields.php:445 -msgid "" -"This allows you to select and display existing fields. It does not duplicate " -"any fields in the database, but loads and displays the selected fields at " -"run-time. The Clone field can either replace itself with the selected fields " -"or display the selected fields as a group of subfields." -msgstr "" - -#: pro/fields/class-acf-field-clone.php:25 -msgctxt "noun" -msgid "Clone" -msgstr "Kloniraj" - -#: includes/admin/views/global/navigation.php:86 includes/fields.php:357 -msgid "PRO" -msgstr "" - -#: includes/fields.php:355 includes/fields.php:412 -msgid "Advanced" -msgstr "" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:85 -msgid "JSON (newer)" -msgstr "" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:81 -msgid "Original" -msgstr "" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:55 -msgid "Invalid post ID." -msgstr "" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:47 -msgid "Invalid post type selected for review." -msgstr "" - -#: includes/admin/views/global/navigation.php:186 -msgid "More" -msgstr "" - -#: includes/admin/views/browse-fields-modal.php:86 -msgid "Tutorial" -msgstr "" - -#: includes/admin/views/browse-fields-modal.php:75 -msgid "Available with ACF PRO" -msgstr "" - -#: includes/admin/views/browse-fields-modal.php:63 -msgid "Select Field" -msgstr "" - -#. translators: %s: A link to the popular fields used in ACF -#: includes/admin/views/browse-fields-modal.php:50 -msgid "Try a different search term or browse %s" -msgstr "" - -#: includes/admin/views/browse-fields-modal.php:47 -msgid "Popular fields" -msgstr "" - -#. translators: %s: The invalid search term -#: includes/admin/views/browse-fields-modal.php:40 -msgid "No search results for '%s'" -msgstr "" - -#: includes/admin/views/browse-fields-modal.php:13 -msgid "Search fields..." -msgstr "" - -#: includes/admin/views/browse-fields-modal.php:11 -msgid "Select Field Type" -msgstr "" - -#: includes/admin/views/browse-fields-modal.php:4 -msgid "Popular" -msgstr "" - -#: includes/admin/views/acf-taxonomy/list-empty.php:7 -msgid "Add Taxonomy" -msgstr "" - -#: includes/admin/views/acf-taxonomy/list-empty.php:6 -msgid "Create custom taxonomies to classify post type content" -msgstr "" - -#: includes/admin/views/acf-taxonomy/list-empty.php:5 -msgid "Add Your First Taxonomy" -msgstr "" - -#: includes/admin/views/acf-taxonomy/basic-settings.php:122 -msgid "Hierarchical taxonomies can have descendants (like categories)." -msgstr "" - -#: includes/admin/views/acf-taxonomy/basic-settings.php:107 -msgid "Makes a taxonomy visible on the frontend and in the admin dashboard." -msgstr "" - -#: includes/admin/views/acf-taxonomy/basic-settings.php:91 -msgid "One or many post types that can be classified with this taxonomy." -msgstr "" - -#. translators: example taxonomy -#: includes/admin/views/acf-taxonomy/basic-settings.php:60 -msgid "genre" -msgstr "" - -#. translators: example taxonomy -#: includes/admin/views/acf-taxonomy/basic-settings.php:42 -msgid "Genre" -msgstr "" - -#. translators: example taxonomy -#: includes/admin/views/acf-taxonomy/basic-settings.php:25 -msgid "Genres" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1211 -msgid "" -"Optional custom controller to use instead of `WP_REST_Terms_Controller `." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1155 -msgid "Expose this post type in the REST API." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1055 -msgid "Customize the query variable name" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1028 -msgid "" -"Terms can be accessed using the non-pretty permalink, e.g., {query_var}" -"={term_slug}." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:981 -msgid "Parent-child terms in URLs for hierarchical taxonomies." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:941 -msgid "Customize the slug used in the URL" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:924 -msgid "Permalinks for this taxonomy are disabled." -msgstr "" - -#. translators: this string will be appended with the new permalink structure. -#: includes/admin/views/acf-taxonomy/advanced-settings.php:921 -msgid "" -"Rewrite the URL using the taxonomy key as the slug. Your permalink structure " -"will be" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:913 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1030 -#: includes/admin/views/acf-taxonomy/basic-settings.php:57 -msgid "Taxonomy Key" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:911 -msgid "Select the type of permalink to use for this taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:896 -msgid "Display a column for the taxonomy on post type listing screens." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:895 -msgid "Show Admin Column" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:882 -msgid "Show the taxonomy in the quick/bulk edit panel." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:881 -msgid "Quick Edit" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:868 -msgid "List the taxonomy in the Tag Cloud Widget controls." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:867 -msgid "Tag Cloud" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:824 -msgid "" -"A PHP function name to be called for sanitizing taxonomy data saved from a " -"meta box." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:823 -msgid "Meta Box Sanitization Callback" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:805 -msgid "" -"A PHP function name to be called to handle the content of a meta box on your " -"taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:804 -msgid "Register Meta Box Callback" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:763 -msgid "No Meta Box" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:762 -msgid "Custom Meta Box" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:758 -msgid "" -"Controls the meta box on the content editor screen. By default, the " -"Categories meta box is shown for hierarchical taxonomies, and the Tags meta " -"box is shown for non-hierarchical taxonomies." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:757 -msgid "Meta Box" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:746 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:767 -msgid "Categories Meta Box" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:745 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:766 -msgid "Tags Meta Box" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:704 -msgid "A link to a tag" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:703 -msgid "Describes a navigation link block variation used in the block editor." -msgstr "" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:698 -msgid "A link to a %s" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:683 -msgid "Tag Link" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:682 -msgid "" -"Assigns a title for navigation link block variation used in the block editor." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:663 -msgid "← Go to tags" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:662 -msgid "" -"Assigns the text used to link back to the main index after updating a term." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:661 -msgid "Back To Items" -msgstr "" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:657 -msgid "← Go to %s" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:642 -msgid "Tags list" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:641 -msgid "Assigns text to the table hidden heading." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:622 -msgid "Tags list navigation" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:621 -msgid "Assigns text to the table pagination hidden heading." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:597 -msgid "Filter by category" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:596 -msgid "Assigns text to the filter button in the posts lists table." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:595 -msgid "Filter By Item" -msgstr "" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:591 -msgid "Filter by %s" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:575 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:576 -msgid "" -"The description is not prominent by default; however, some themes may show " -"it." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:574 -msgid "Describes the Description field on the Edit Tags screen." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:573 -msgid "Description Field Description" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:554 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:555 -msgid "" -"Assign a parent term to create a hierarchy. The term Jazz, for example, " -"would be the parent of Bebop and Big Band" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:553 -msgid "Describes the Parent field on the Edit Tags screen." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:552 -msgid "Parent Field Description" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:538 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:539 -msgid "" -"The \"slug\" is the URL-friendly version of the name. It is usually all " -"lower case and contains only letters, numbers, and hyphens." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:537 -msgid "Describes the Slug field on the Edit Tags screen." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:536 -msgid "Slug Field Description" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:522 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:523 -msgid "The name is how it appears on your site" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:521 -msgid "Describes the Name field on the Edit Tags screen." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:520 -msgid "Name Field Description" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:507 -msgid "No tags" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:506 -msgid "" -"Assigns the text displayed in the posts and media list tables when no tags " -"or categories are available." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:505 -msgid "No Terms" -msgstr "" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:501 -msgid "No %s" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:486 -msgid "No tags found" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:485 -msgid "" -"Assigns the text displayed when clicking the 'choose from most used' text in " -"the taxonomy meta box when no tags are available, and assigns the text used " -"in the terms list table when there are no items for a taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:484 -msgid "Not Found" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:463 -msgid "Assigns text to the Title field of the Most Used tab." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:462 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:464 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:465 -msgid "Most Used" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:444 -msgid "Choose from the most used tags" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:443 -msgid "" -"Assigns the 'choose from most used' text used in the meta box when " -"JavaScript is disabled. Only used on non-hierarchical taxonomies." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:442 -msgid "Choose From Most Used" -msgstr "" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:438 -msgid "Choose from the most used %s" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:418 -msgid "Add or remove tags" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:417 -msgid "" -"Assigns the add or remove items text used in the meta box when JavaScript is " -"disabled. Only used on non-hierarchical taxonomies" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:416 -msgid "Add Or Remove Items" -msgstr "" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:412 -msgid "Add or remove %s" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:392 -msgid "Separate tags with commas" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:391 -msgid "" -"Assigns the separate item with commas text used in the taxonomy meta box. " -"Only used on non-hierarchical taxonomies." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:390 -msgid "Separate Items With Commas" -msgstr "" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:386 -msgid "Separate %s with commas" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:366 -msgid "Popular Tags" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:365 -msgid "Assigns popular items text. Only used for non-hierarchical taxonomies." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:364 -msgid "Popular Items" -msgstr "" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:361 -msgid "Popular %s" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:347 -msgid "Search Tags" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:346 -msgid "Assigns search items text." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:323 -msgid "Parent Category:" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:322 -msgid "Assigns parent item text, but with a colon (:) added to the end." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:321 -msgid "Parent Item With Colon" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:298 -msgid "Parent Category" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:297 -msgid "Assigns parent item text. Only used on hierarchical taxonomies." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:296 -msgid "Parent Item" -msgstr "" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:293 -msgid "Parent %s" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:278 -msgid "New Tag Name" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:277 -msgid "Assigns the new item name text." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:276 -msgid "New Item Name" -msgstr "" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:273 -msgid "New %s Name" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:258 -msgid "Add New Tag" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:257 -msgid "Assigns the add new item text." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:238 -msgid "Update Tag" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:237 -msgid "Assigns the update item text." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:236 -msgid "Update Item" -msgstr "" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:233 -msgid "Update %s" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:218 -msgid "View Tag" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:217 -msgid "In the admin bar to view term during editing." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:198 -msgid "Edit Tag" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:197 -msgid "At the top of the editor screen when editing a term." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:178 -msgid "All Tags" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:177 -msgid "Assigns the all items text." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:158 -msgid "Assigns the menu name text." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:157 -msgid "Menu Label" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:131 -msgid "Active taxonomies are enabled and registered with WordPress." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:115 -msgid "A descriptive summary of the taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:95 -msgid "A descriptive summary of the term." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:94 -msgid "Term Description" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:76 -msgid "Single word, no spaces. Underscores and dashes allowed." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:75 -msgid "Term Slug" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:56 -msgid "The name of the default term." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:55 -msgid "Term Name" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:41 -msgid "" -"Create a term for the taxonomy that cannot be deleted. It will not be " -"selected for posts by default." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:40 -msgid "Default Term" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:28 -msgid "" -"Whether terms in this taxonomy should be sorted in the order they are " -"provided to `wp_set_object_terms()`." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:27 -msgid "Sort Terms" -msgstr "" - -#: includes/admin/views/acf-post-type/list-empty.php:7 -msgid "Add Post Type" -msgstr "" - -#: includes/admin/views/acf-post-type/list-empty.php:6 -msgid "" -"Expand the functionality of WordPress beyond standard posts and pages with " -"custom post types." -msgstr "" - -#: includes/admin/views/acf-post-type/list-empty.php:5 -msgid "Add Your First Post Type" -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:136 -#: includes/admin/views/acf-taxonomy/basic-settings.php:135 -msgid "I know what I'm doing, show me all the options." -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:135 -#: includes/admin/views/acf-taxonomy/basic-settings.php:134 -msgid "Advanced Configuration" -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:123 -msgid "Hierarchical post types can have descendants (like pages)." -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:122 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:980 -#: includes/admin/views/acf-taxonomy/basic-settings.php:121 -msgid "Hierarchical" -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:107 -msgid "Visible on the frontend and in the admin dashboard." -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:106 -#: includes/admin/views/acf-taxonomy/basic-settings.php:106 -msgid "Public" -msgstr "" - -#. translators: example post type -#: includes/admin/views/acf-post-type/basic-settings.php:59 -msgid "movie" -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:57 -msgid "Lower case letters, underscores and dashes only, Max 20 characters." -msgstr "" - -#. translators: example post type -#: includes/admin/views/acf-post-type/basic-settings.php:41 -msgid "Movie" -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:39 -#: includes/admin/views/acf-taxonomy/basic-settings.php:40 -msgid "Singular Label" -msgstr "" - -#. translators: example post type -#: includes/admin/views/acf-post-type/basic-settings.php:24 -msgid "Movies" -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:22 -#: includes/admin/views/acf-taxonomy/basic-settings.php:23 -msgid "Plural Label" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1270 -msgid "" -"Optional custom controller to use instead of `WP_REST_Posts_Controller`." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1269 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1210 -msgid "Controller Class" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1251 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1191 -msgid "The namespace part of the REST API URL." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1250 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1190 -msgid "Namespace Route" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1232 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1172 -msgid "The base URL for the post type REST API URLs." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1231 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1171 -msgid "Base URL" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1217 -msgid "" -"Exposes this post type in the REST API. Required to use the block editor." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1216 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1154 -msgid "Show In REST API" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1195 -msgid "Customize the query variable name." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1194 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1054 -msgid "Query Variable" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1172 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1032 -msgid "No Query Variable Support" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1171 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1031 -msgid "Custom Query Variable" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1168 -msgid "" -"Items can be accessed using the non-pretty permalink, eg. {post_type}" -"={post_slug}." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1167 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1027 -msgid "Query Variable Support" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1142 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1003 -msgid "URLs for an item and items can be accessed with a query string." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1141 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1002 -msgid "Publicly Queryable" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1120 -msgid "Custom slug for the Archive URL." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1119 -msgid "Archive Slug" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1106 -msgid "" -"Has an item archive that can be customized with an archive template file in " -"your theme." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1105 -msgid "Archive" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1085 -msgid "Pagination support for the items URLs such as the archives." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1084 -msgid "Pagination" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1067 -msgid "RSS feed URL for the post type items." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1066 -msgid "Feed URL" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1048 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:961 -msgid "" -"Alters the permalink structure to add the `WP_Rewrite::$front` prefix to " -"URLs." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1047 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:960 -msgid "Front URL Prefix" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1028 -msgid "Customize the slug used in the URL." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1027 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:940 -msgid "URL Slug" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1011 -msgid "Permalinks for this post type are disabled." -msgstr "" - -#. translators: this string will be appended with the new permalink structure. -#: includes/admin/views/acf-post-type/advanced-settings.php:1010 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:923 -msgid "" -"Rewrite the URL using a custom slug defined in the input below. Your " -"permalink structure will be" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1002 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:915 -msgid "No Permalink (prevent URL rewriting)" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1001 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:914 -msgid "Custom Permalink" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1000 -#: includes/admin/views/acf-post-type/advanced-settings.php:1170 -#: includes/admin/views/acf-post-type/basic-settings.php:56 -msgid "Post Type Key" -msgstr "" - -#. translators: this string will be appended with the new permalink structure. -#: includes/admin/views/acf-post-type/advanced-settings.php:998 -#: includes/admin/views/acf-post-type/advanced-settings.php:1008 -msgid "" -"Rewrite the URL using the post type key as the slug. Your permalink " -"structure will be" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:996 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:910 -msgid "Permalink Rewrite" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:982 -msgid "Delete items by a user when that user is deleted." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:981 -msgid "Delete With User" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:967 -msgid "Allow the post type to be exported from 'Tools' > 'Export'." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:966 -msgid "Can Export" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:935 -msgid "Optionally provide a plural to be used in capabilities." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:934 -msgid "Plural Capability Name" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:916 -msgid "Choose another post type to base the capabilities for this post type." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:915 -msgid "Singular Capability Name" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:901 -msgid "" -"By default the capabilities of the post type will inherit the 'Post' " -"capability names, eg. edit_post, delete_posts. Enable to use post type " -"specific capabilities, eg. edit_{singular}, delete_{plural}." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:900 -msgid "Rename Capabilities" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:885 -msgid "Exclude From Search" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:872 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:854 -msgid "" -"Allow items to be added to menus in the 'Appearance' > 'Menus' screen. Must " -"be turned on in 'Screen options'." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:871 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:853 -msgid "Appearance Menus Support" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:853 -msgid "Appears as an item in the 'New' menu in the admin bar." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:852 -msgid "Show In Admin Bar" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:821 -msgid "" -"A PHP function name to be called when setting up the meta boxes for the edit " -"screen." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:820 -msgid "Custom Meta Box Callback" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:800 -msgid "Menu Icon" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:782 -msgid "The position in the sidebar menu in the admin dashboard." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:781 -msgid "Menu Position" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:763 -msgid "" -"By default the post type will get a new top level item in the admin menu. If " -"an existing top level item is supplied here, the post type will be added as " -"a submenu item under it." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:762 -msgid "Admin Menu Parent" -msgstr "" - -#. translators: %s = "dashicon class name", link to the WordPress dashicon -#. documentation. -#: includes/admin/views/acf-post-type/advanced-settings.php:750 -msgid "" -"The icon used for the post type menu item in the admin dashboard. Can be a " -"URL or %s to use for the icon." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:745 -msgid "Dashicon class name" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:734 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:734 -msgid "Admin editor navigation in the sidebar menu." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:733 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:733 -msgid "Show In Admin Menu" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:720 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:719 -msgid "Items can be edited and managed in the admin dashboard." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:719 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:718 -msgid "Show In UI" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:689 -msgid "A link to a post." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:688 -msgid "Description for a navigation link block variation." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:687 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:702 -msgid "Item Link Description" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:683 -msgid "A link to a %s." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:668 -msgid "Post Link" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:667 -msgid "Title for a navigation link block variation." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:666 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:681 -msgid "Item Link" -msgstr "" - -#. translators: %s Singular form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:663 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:678 -msgid "%s Link" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:648 -msgid "Post updated." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:647 -msgid "In the editor notice after an item is updated." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:646 -msgid "Item Updated" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:643 -msgid "%s updated." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:628 -msgid "Post scheduled." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:627 -msgid "In the editor notice after scheduling an item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:626 -msgid "Item Scheduled" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:623 -msgid "%s scheduled." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:608 -msgid "Post reverted to draft." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:607 -msgid "In the editor notice after reverting an item to draft." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:606 -msgid "Item Reverted To Draft" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:603 -msgid "%s reverted to draft." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:588 -msgid "Post published privately." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:587 -msgid "In the editor notice after publishing a private item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:586 -msgid "Item Published Privately" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:583 -msgid "%s published privately." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:568 -msgid "Post published." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:567 -msgid "In the editor notice after publishing an item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:566 -msgid "Item Published" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:563 -msgid "%s published." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:548 -msgid "Posts list" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:547 -msgid "Used by screen readers for the items list on the post type list screen." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:546 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:640 -msgid "Items List" -msgstr "" - -#. translators: %s Plural form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:543 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:637 -msgid "%s list" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:528 -msgid "Posts list navigation" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:527 -msgid "" -"Used by screen readers for the filter list pagination on the post type list " -"screen." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:526 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:620 -msgid "Items List Navigation" -msgstr "" - -#. translators: %s Plural form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:523 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:617 -msgid "%s list navigation" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:507 -msgid "Filter posts by date" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:506 -msgid "" -"Used by screen readers for the filter by date heading on the post type list " -"screen." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:505 -msgid "Filter Items By Date" -msgstr "" - -#. translators: %s Plural form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:501 -msgid "Filter %s by date" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:486 -msgid "Filter posts list" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:485 -msgid "" -"Used by screen readers for the filter links heading on the post type list " -"screen." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:484 -msgid "Filter Items List" -msgstr "" - -#. translators: %s Plural form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:480 -msgid "Filter %s list" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:464 -msgid "In the media modal showing all media uploaded to this item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:463 -msgid "Uploaded To This Item" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:459 -msgid "Uploaded to this %s" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:444 -msgid "Insert into post" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:443 -msgid "As the button label when adding media to content." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:442 -msgid "Insert Into Media Button" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:438 -msgid "Insert into %s" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:423 -msgid "Use as featured image" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:422 -msgid "" -"As the button label for selecting to use an image as the featured image." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:421 -msgid "Use Featured Image" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:408 -msgid "Remove featured image" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:407 -msgid "As the button label when removing the featured image." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:406 -msgid "Remove Featured Image" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:393 -msgid "Set featured image" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:392 -msgid "As the button label when setting the featured image." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:391 -msgid "Set Featured Image" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:378 -msgid "Featured image" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:377 -msgid "In the editor used for the title of the featured image meta box." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:376 -msgid "Featured Image Meta Box" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:363 -msgid "Post Attributes" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:362 -msgid "In the editor used for the title of the post attributes meta box." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:361 -msgid "Attributes Meta Box" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:358 -msgid "%s Attributes" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:343 -msgid "Post Archives" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:342 -msgid "" -"Adds 'Post Type Archive' items with this label to the list of posts shown " -"when adding items to an existing menu in a CPT with archives enabled. Only " -"appears when editing menus in 'Live Preview' mode and a custom archive slug " -"has been provided." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:341 -msgid "Archives Nav Menu" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:338 -msgid "%s Archives" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:323 -msgid "No posts found in Trash" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:322 -msgid "" -"At the top of the post type list screen when there are no posts in the trash." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:321 -msgid "No Items Found in Trash" -msgstr "" - -#. translators: %s Plural form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:317 -msgid "No %s found in Trash" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:302 -msgid "No posts found" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:301 -msgid "" -"At the top of the post type list screen when there are no posts to display." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:300 -msgid "No Items Found" -msgstr "" - -#. translators: %s Plural form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:296 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:480 -msgid "No %s found" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:281 -msgid "Search Posts" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:280 -msgid "At the top of the items screen when searching for an item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:279 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:345 -msgid "Search Items" -msgstr "" - -#. translators: %s Singular form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:276 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:342 -msgid "Search %s" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:261 -msgid "Parent Page:" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:260 -msgid "For hierarchical types in the post type list screen." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:259 -msgid "Parent Item Prefix" -msgstr "" - -#. translators: %s Singular form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:256 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:318 -msgid "Parent %s:" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:241 -msgid "New Post" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:239 -msgid "New Item" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:236 -msgid "New %s" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:206 -msgid "Add New Post" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:205 -msgid "At the top of the editor screen when adding a new item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:204 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:256 -msgid "Add New Item" -msgstr "" - -#. translators: %s Singular form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:201 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:253 -msgid "Add New %s" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:186 -msgid "View Posts" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:185 -msgid "" -"Appears in the admin bar in the 'All Posts' view, provided the post type " -"supports archives and the home page is not an archive of that post type." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:184 -msgid "View Items" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:166 -msgid "View Post" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:165 -msgid "In the admin bar to view item when editing it." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:164 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:216 -msgid "View Item" -msgstr "" - -#. translators: %s Singular form of post type name -#. translators: %s Plural form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:161 -#: includes/admin/views/acf-post-type/advanced-settings.php:181 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:213 -msgid "View %s" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:146 -msgid "Edit Post" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:145 -msgid "At the top of the editor screen when editing an item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:144 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:196 -msgid "Edit Item" -msgstr "" - -#. translators: %s Singular form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:141 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:193 -msgid "Edit %s" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:126 -msgid "All Posts" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:125 -#: includes/admin/views/acf-post-type/advanced-settings.php:220 -#: includes/admin/views/acf-post-type/advanced-settings.php:240 -msgid "In the post type submenu in the admin dashboard." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:124 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:176 -msgid "All Items" -msgstr "" - -#. translators: %s Plural form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:121 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:173 -msgid "All %s" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:105 -msgid "Admin menu name for the post type." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:104 -msgid "Menu Name" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:90 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:142 -msgid "Regenerate all labels using the Singular and Plural labels" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:88 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:140 -msgid "Regenerate" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:79 -msgid "Active post types are enabled and registered with WordPress." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:63 -msgid "A descriptive summary of the post type." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:48 -msgid "Add Custom" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:42 -msgid "Enable various features in the content editor." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:31 -msgid "Post Formats" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:25 -msgid "Editor" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:24 -msgid "Trackbacks" -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:87 -msgid "Select existing taxonomies to classify items of the post type." -msgstr "" - -#: includes/admin/views/acf-field-group/field.php:145 -msgid "Browse Fields" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:292 -msgid "Nothing to import" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:287 -msgid ". The Custom Post Type UI plugin can be deactivated." -msgstr "" - -#. translators: %d - number of items imported from CPTUI -#: includes/admin/tools/class-acf-admin-tool-import.php:278 -msgid "Imported %d item from Custom Post Type UI -" -msgid_plural "Imported %d items from Custom Post Type UI -" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:262 -msgid "Failed to import taxonomies." -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:244 -msgid "Failed to import post types." -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:233 -msgid "Nothing from Custom Post Type UI plugin selected for import." -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:209 -msgid "Imported 1 item" -msgid_plural "Imported %s items" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:122 -msgid "" -"Importing a Post Type or Taxonomy with the same key as one that already " -"exists will overwrite the settings for the existing Post Type or Taxonomy " -"with those of the import." -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:111 -#: includes/admin/tools/class-acf-admin-tool-import.php:127 -msgid "Import from Custom Post Type UI" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:412 -msgid "" -"The following code can be used to register a local version of the selected " -"items. Storing field groups, post types, or taxonomies locally can provide " -"many benefits such as faster load times, version control & dynamic fields/" -"settings. Simply copy and paste the following code to your theme's functions." -"php file or include it within an external file, then deactivate or delete " -"the items from the ACF admin." -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:411 -msgid "Export - Generate PHP" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:384 -msgid "Export" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:276 -msgid "Select Taxonomies" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:254 -msgid "Select Post Types" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:167 -msgid "Exported 1 item." -msgid_plural "Exported %s items." -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: includes/admin/post-types/admin-taxonomy.php:129 -#: assets/build/js/acf-internal-post-type.js:182 -#: assets/build/js/acf-internal-post-type.js:256 -msgid "Category" -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:127 -#: assets/build/js/acf-internal-post-type.js:179 -#: assets/build/js/acf-internal-post-type.js:253 -msgid "Tag" -msgstr "" - -#. translators: %s taxonomy name -#: includes/admin/post-types/admin-taxonomy.php:82 -msgid "%s taxonomy created" -msgstr "" - -#. translators: %s taxonomy name -#: includes/admin/post-types/admin-taxonomy.php:76 -msgid "%s taxonomy updated" -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:56 -msgid "Taxonomy draft updated." -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:55 -msgid "Taxonomy scheduled for." -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:54 -msgid "Taxonomy submitted." -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:53 -msgid "Taxonomy saved." -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:49 -msgid "Taxonomy deleted." -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:48 -msgid "Taxonomy updated." -msgstr "" - -#: includes/admin/post-types/admin-taxonomies.php:377 -#: includes/admin/post-types/admin-taxonomy.php:157 -msgid "" -"This taxonomy could not be registered because its key is in use by another " -"taxonomy registered by another plugin or theme." -msgstr "" - -#. translators: %s number of taxonomies synchronized -#: includes/admin/post-types/admin-taxonomies.php:359 -msgid "Taxonomy synchronized." -msgid_plural "%s taxonomies synchronized." -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. translators: %s number of taxonomies duplicated -#: includes/admin/post-types/admin-taxonomies.php:352 -msgid "Taxonomy duplicated." -msgid_plural "%s taxonomies duplicated." -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. translators: %s number of taxonomies deactivated -#: includes/admin/post-types/admin-taxonomies.php:345 -msgid "Taxonomy deactivated." -msgid_plural "%s taxonomies deactivated." -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. translators: %s number of taxonomies activated -#: includes/admin/post-types/admin-taxonomies.php:338 -msgid "Taxonomy activated." -msgid_plural "%s taxonomies activated." -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: includes/admin/post-types/admin-taxonomies.php:139 -msgid "Terms" -msgstr "" - -#. translators: %s number of post types synchronized -#: includes/admin/post-types/admin-post-types.php:352 -msgid "Post type synchronized." -msgid_plural "%s post types synchronized." -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. translators: %s number of post types duplicated -#: includes/admin/post-types/admin-post-types.php:345 -msgid "Post type duplicated." -msgid_plural "%s post types duplicated." -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. translators: %s number of post types deactivated -#: includes/admin/post-types/admin-post-types.php:338 -msgid "Post type deactivated." -msgid_plural "%s post types deactivated." -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. translators: %s number of post types activated -#: includes/admin/post-types/admin-post-types.php:331 -msgid "Post type activated." -msgid_plural "%s post types activated." -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: includes/admin/post-types/admin-post-types.php:112 -#: includes/admin/post-types/admin-taxonomies.php:137 -#: includes/admin/tools/class-acf-admin-tool-import.php:82 -#: includes/admin/views/acf-taxonomy/basic-settings.php:82 -#: includes/post-types/class-acf-post-type.php:91 -msgid "Post Types" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:162 -#: includes/admin/post-types/admin-taxonomy.php:164 -msgid "Advanced Settings" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:161 -#: includes/admin/post-types/admin-taxonomy.php:163 -msgid "Basic Settings" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:155 -#: includes/admin/post-types/admin-post-types.php:370 -msgid "" -"This post type could not be registered because its key is in use by another " -"post type registered by another plugin or theme." -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:128 -#: assets/build/js/acf-internal-post-type.js:176 -#: assets/build/js/acf-internal-post-type.js:250 -msgid "Pages" -msgstr "" - -#: includes/admin/admin-internal-post-type.php:355 -msgid "Link Existing Field Groups" -msgstr "" - -#. translators: %s post type name -#: includes/admin/post-types/admin-post-type.php:80 -msgid "%s post type created" -msgstr "" - -#. translators: %s taxonomy name -#: includes/admin/post-types/admin-taxonomy.php:78 -msgid "Add fields to %s" -msgstr "" - -#. translators: %s post type name -#: includes/admin/post-types/admin-post-type.php:76 -msgid "%s post type updated" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:56 -msgid "Post type draft updated." -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:55 -msgid "Post type scheduled for." -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:54 -msgid "Post type submitted." -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:53 -msgid "Post type saved." -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:50 -msgid "Post type updated." -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:49 -msgid "Post type deleted." -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:120 -#: assets/build/js/acf-field-group.js:1146 -#: assets/build/js/acf-field-group.js:1366 -msgid "Type to search..." -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:105 -#: assets/build/js/acf-field-group.js:1172 -#: assets/build/js/acf-field-group.js:2319 -#: assets/build/js/acf-field-group.js:1414 -#: assets/build/js/acf-field-group.js:2727 -msgid "PRO Only" -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:97 -#: assets/build/js/acf-internal-post-type.js:308 -#: assets/build/js/acf-internal-post-type.js:417 -msgid "Field groups linked successfully." -msgstr "" - -#. translators: %s - URL to ACF tools page. -#: includes/admin/admin.php:195 -msgid "" -"Import Post Types and Taxonomies registered with Custom Post Type UI and " -"manage them with ACF. Get Started." -msgstr "" - -#: includes/admin/admin.php:48 includes/admin/admin.php:267 -msgid "ACF" -msgstr "" - -#: includes/admin/admin-internal-post-type.php:322 -msgid "taxonomy" -msgstr "" - -#: includes/admin/admin-internal-post-type.php:322 -msgid "post type" -msgstr "" - -#: includes/admin/admin-internal-post-type.php:346 -msgid "Done" -msgstr "" - -#: includes/admin/admin-internal-post-type.php:332 -msgid "Field Group(s)" -msgstr "" - -#: includes/admin/admin-internal-post-type.php:331 -msgid "Select one or many field groups..." -msgstr "" - -#: includes/admin/admin-internal-post-type.php:330 -msgid "Please select the field groups to link." -msgstr "" - -#: includes/admin/admin-internal-post-type.php:288 -msgid "Field group linked successfully." -msgid_plural "Field groups linked successfully." -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: includes/admin/admin-internal-post-type-list.php:261 -#: includes/admin/post-types/admin-post-types.php:371 -#: includes/admin/post-types/admin-taxonomies.php:378 -msgctxt "post status" -msgid "Registration Failed" -msgstr "" - -#: includes/admin/admin-internal-post-type-list.php:260 -msgid "" -"This item could not be registered because its key is in use by another item " -"registered by another plugin or theme." -msgstr "" - -#: includes/acf-internal-post-type-functions.php:482 -#: includes/acf-internal-post-type-functions.php:511 -msgid "REST API" -msgstr "" - -#: includes/acf-internal-post-type-functions.php:481 -#: includes/acf-internal-post-type-functions.php:510 -#: includes/acf-internal-post-type-functions.php:537 -msgid "Permissions" -msgstr "" - -#: includes/acf-internal-post-type-functions.php:480 -#: includes/acf-internal-post-type-functions.php:509 -msgid "URLs" -msgstr "" - -#: includes/acf-internal-post-type-functions.php:479 -#: includes/acf-internal-post-type-functions.php:508 -#: includes/acf-internal-post-type-functions.php:535 -msgid "Visibility" -msgstr "" - -#: includes/acf-internal-post-type-functions.php:478 -#: includes/acf-internal-post-type-functions.php:507 -#: includes/acf-internal-post-type-functions.php:536 -msgid "Labels" -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:269 -msgid "Field Settings Tabs" -msgstr "" - -#. Author URI of the plugin -msgid "" -"https://wpengine.com/?utm_source=wordpress." -"org&utm_medium=referral&utm_campaign=plugin_directory&utm_content=advanced_custom_fields" -msgstr "" - -#: includes/api/api-template.php:867 -msgid "[ACF shortcode value disabled for preview]" -msgstr "" - -#: includes/admin/admin-internal-post-type.php:298 -#: includes/admin/post-types/admin-field-group.php:571 -msgid "Close Modal" -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:96 -#: assets/build/js/acf-field-group.js:1670 -#: assets/build/js/acf-field-group.js:1993 -msgid "Field moved to other group" -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:95 -#: assets/build/js/acf.js:1437 assets/build/js/acf.js:1517 -msgid "Close modal" -msgstr "" - -#: includes/fields/class-acf-field-tab.php:125 -msgid "Start a new group of tabs at this tab." -msgstr "" - -#: includes/fields/class-acf-field-tab.php:124 -msgid "New Tab Group" -msgstr "" - -#: includes/fields/class-acf-field-select.php:451 -#: includes/fields/class-acf-field-true_false.php:200 -msgid "Use a stylized checkbox using select2" -msgstr "" - -#: includes/fields/class-acf-field-radio.php:260 -msgid "Save Other Choice" -msgstr "" - -#: includes/fields/class-acf-field-radio.php:249 -msgid "Allow Other Choice" -msgstr "" - -#: includes/fields/class-acf-field-checkbox.php:450 -msgid "Add Toggle All" -msgstr "" - -#: includes/fields/class-acf-field-checkbox.php:409 -msgid "Save Custom Values" -msgstr "" - -#: includes/fields/class-acf-field-checkbox.php:398 -msgid "Allow Custom Values" -msgstr "" - -#: includes/fields/class-acf-field-checkbox.php:148 -msgid "Checkbox custom values cannot be empty. Uncheck any empty values." -msgstr "" - -#: pro/admin/admin-updates.php:122, -#: pro/admin/views/html-settings-updates.php:12 -msgid "Updates" -msgstr "Ažuriranja" - -#: includes/admin/views/global/navigation.php:176 -msgid "Advanced Custom Fields logo" -msgstr "" - -#: includes/admin/views/global/form-top.php:89 -msgid "Save Changes" -msgstr "" - -#: includes/admin/views/global/form-top.php:76 -msgid "Field Group Title" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:704 -#: includes/admin/views/global/form-top.php:3 -msgid "Add title" -msgstr "" - -#. translators: %s url to getting started guide -#: includes/admin/views/acf-field-group/list-empty.php:20 -#: includes/admin/views/acf-post-type/list-empty.php:12 -#: includes/admin/views/acf-taxonomy/list-empty.php:12 -#: includes/admin/views/options-page-preview.php:13 -msgid "" -"New to ACF? Take a look at our getting " -"started guide." -msgstr "" - -#: includes/admin/views/acf-field-group/list-empty.php:15 -msgid "Add Field Group" -msgstr "" - -#. translators: %s url to creating a field group page -#: includes/admin/views/acf-field-group/list-empty.php:10 -msgid "" -"ACF uses field groups to group custom " -"fields together, and then attach those fields to edit screens." -msgstr "" - -#: includes/admin/views/acf-field-group/list-empty.php:5 -msgid "Add Your First Field Group" -msgstr "" - -#: includes/admin/admin-options-pages-preview.php:28 -#: includes/admin/views/acf-field-group/pro-features.php:54 -#: includes/admin/views/global/navigation.php:86 -#: includes/admin/views/global/navigation.php:250 -msgid "Options Pages" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:50 -msgid "ACF Blocks" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:58 -msgid "Gallery Field" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:38 -msgid "Flexible Content Field" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:42 -msgid "Repeater Field" -msgstr "" - -#: includes/admin/views/global/navigation.php:212 -msgid "Unlock Extra Features with ACF PRO" -msgstr "" - -#: includes/admin/views/acf-field-group/options.php:267 -msgid "Delete Field Group" -msgstr "" - -#. translators: 1: Post creation date 2: Post creation time -#: includes/admin/views/acf-field-group/options.php:261 -msgid "Created on %1$s at %2$s" -msgstr "" - -#: includes/acf-field-group-functions.php:497 -msgid "Group Settings" -msgstr "" - -#: includes/acf-field-group-functions.php:495 -msgid "Location Rules" -msgstr "" - -#. translators: %s url to field types list -#: includes/admin/views/acf-field-group/fields.php:72 -msgid "" -"Choose from over 30 field types. Learn " -"more." -msgstr "" - -#: includes/admin/views/acf-field-group/fields.php:65 -msgid "" -"Get started creating new custom fields for your posts, pages, custom post " -"types and other WordPress content." -msgstr "" - -#: includes/admin/views/acf-field-group/fields.php:64 -msgid "Add Your First Field" -msgstr "" - -#. translators: A symbol (or text, if not available in your locale) meaning -#. "Order Number", in terms of positional placement. -#: includes/admin/views/acf-field-group/fields.php:43 -msgid "#" -msgstr "" - -#: includes/admin/views/acf-field-group/fields.php:33 -#: includes/admin/views/acf-field-group/fields.php:67 -#: includes/admin/views/acf-field-group/fields.php:103 -#: includes/admin/views/global/form-top.php:85 -msgid "Add Field" -msgstr "" - -#: includes/acf-field-group-functions.php:496 includes/fields.php:410 -msgid "Presentation" -msgstr "" - -#: includes/fields.php:409 -msgid "Validation" -msgstr "" - -#: includes/acf-internal-post-type-functions.php:477 -#: includes/acf-internal-post-type-functions.php:506 includes/fields.php:408 -msgid "General" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:70 -msgid "Import JSON" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:392 -msgid "Export As JSON" -msgstr "" - -#. translators: %s number of field groups deactivated -#: includes/admin/post-types/admin-field-groups.php:367 -msgid "Field group deactivated." -msgid_plural "%s field groups deactivated." -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. translators: %s number of field groups activated -#: includes/admin/post-types/admin-field-groups.php:360 -msgid "Field group activated." -msgid_plural "%s field groups activated." -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: includes/admin/admin-internal-post-type-list.php:452 -#: includes/admin/admin-internal-post-type-list.php:478 -msgid "Deactivate" -msgstr "" - -#: includes/admin/admin-internal-post-type-list.php:452 -msgid "Deactivate this item" -msgstr "" - -#: includes/admin/admin-internal-post-type-list.php:448 -#: includes/admin/admin-internal-post-type-list.php:477 -msgid "Activate" -msgstr "" - -#: includes/admin/admin-internal-post-type-list.php:448 -msgid "Activate this item" -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:92 -#: assets/build/js/acf-field-group.js:2812 -#: assets/build/js/acf-field-group.js:3313 -msgid "Move field group to trash?" -msgstr "" - -#: acf.php:497 includes/admin/admin-internal-post-type-list.php:248 -#: includes/admin/post-types/admin-field-group.php:297 -#: includes/admin/post-types/admin-post-type.php:295 -#: includes/admin/post-types/admin-taxonomy.php:297 -msgctxt "post status" -msgid "Inactive" -msgstr "" - -#. Author of the plugin -msgid "WP Engine" -msgstr "" - -#: acf.php:555 -msgid "" -"Advanced Custom Fields and Advanced Custom Fields PRO should not be active " -"at the same time. We've automatically deactivated Advanced Custom Fields PRO." -msgstr "" - -#: acf.php:553 -msgid "" -"Advanced Custom Fields and Advanced Custom Fields PRO should not be active " -"at the same time. We've automatically deactivated Advanced Custom Fields." -msgstr "" - -#: includes/acf-value-functions.php:374 -msgid "" -"%1$s - We've detected one or more calls to retrieve ACF " -"field values before ACF has been initialized. This is not supported and can " -"result in malformed or missing data. Learn how to fix this." -msgstr "" - -#: includes/fields/class-acf-field-user.php:551 -msgid "%1$s must have a user with the %2$s role." -msgid_plural "%1$s must have a user with one of the following roles: %2$s" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: includes/fields/class-acf-field-user.php:542 -msgid "%1$s must have a valid user ID." -msgstr "" - -#: includes/fields/class-acf-field-user.php:380 -msgid "Invalid request." -msgstr "" - -#: includes/fields/class-acf-field-select.php:684 -msgid "%1$s is not one of %2$s" -msgstr "" - -#: includes/fields/class-acf-field-post_object.php:700 -msgid "%1$s must have term %2$s." -msgid_plural "%1$s must have one of the following terms: %2$s" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: includes/fields/class-acf-field-post_object.php:684 -msgid "%1$s must be of post type %2$s." -msgid_plural "%1$s must be of one of the following post types: %2$s" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: includes/fields/class-acf-field-post_object.php:675 -msgid "%1$s must have a valid post ID." -msgstr "" - -#: includes/fields/class-acf-field-file.php:475 -msgid "%s requires a valid attachment ID." -msgstr "" - -#: includes/admin/views/acf-field-group/options.php:233 -msgid "Show in REST API" -msgstr "" - -#: includes/fields/class-acf-field-color_picker.php:168 -msgid "Enable Transparency" -msgstr "" - -#: includes/fields/class-acf-field-color_picker.php:187 -msgid "RGBA Array" -msgstr "" - -#: includes/fields/class-acf-field-color_picker.php:98 -msgid "RGBA String" -msgstr "" - -#: includes/fields/class-acf-field-color_picker.php:97 -#: includes/fields/class-acf-field-color_picker.php:186 -msgid "Hex String" -msgstr "" - -#: includes/admin/views/browse-fields-modal.php:65 -msgid "Upgrade to PRO" -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:297 -#: includes/admin/post-types/admin-post-type.php:295 -#: includes/admin/post-types/admin-taxonomy.php:297 -msgctxt "post status" -msgid "Active" -msgstr "" - -#: includes/fields/class-acf-field-email.php:181 -msgid "'%s' is not a valid email address" -msgstr "" - -#: includes/fields/class-acf-field-color_picker.php:76 -msgid "Color value" -msgstr "" - -#: includes/fields/class-acf-field-color_picker.php:74 -msgid "Select default color" -msgstr "" - -#: includes/fields/class-acf-field-color_picker.php:72 -msgid "Clear color" -msgstr "" - -#: includes/acf-wp-functions.php:90 -msgid "Blocks" -msgstr "" - -#: includes/acf-wp-functions.php:86 -msgid "Options" -msgstr "Postavke" - -#: includes/acf-wp-functions.php:82 -msgid "Users" -msgstr "" - -#: includes/acf-wp-functions.php:78 -msgid "Menu items" -msgstr "" - -#: includes/acf-wp-functions.php:70 -msgid "Widgets" -msgstr "" - -#: includes/acf-wp-functions.php:62 -msgid "Attachments" -msgstr "" - -#: includes/acf-wp-functions.php:57 -#: includes/admin/post-types/admin-post-types.php:137 -#: includes/admin/post-types/admin-taxonomies.php:112 -#: includes/admin/tools/class-acf-admin-tool-import.php:93 -#: includes/admin/views/acf-post-type/basic-settings.php:86 -#: includes/post-types/class-acf-taxonomy.php:90 -#: includes/post-types/class-acf-taxonomy.php:91 -msgid "Taxonomies" -msgstr "" - -#: includes/acf-wp-functions.php:44 -#: includes/admin/post-types/admin-post-type.php:126 -#: includes/admin/post-types/admin-post-types.php:139 -#: includes/admin/views/acf-post-type/advanced-settings.php:106 -#: assets/build/js/acf-internal-post-type.js:173 -#: assets/build/js/acf-internal-post-type.js:247 -msgid "Posts" -msgstr "" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:76 -msgid "Last updated: %s" -msgstr "" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:70 -msgid "Sorry, this post is unavailable for diff comparison." -msgstr "" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:42 -msgid "Invalid field group parameter(s)." -msgstr "" - -#: includes/admin/admin-internal-post-type-list.php:413 -msgid "Awaiting save" -msgstr "" - -#: includes/admin/admin-internal-post-type-list.php:410 -msgid "Saved" -msgstr "" - -#: includes/admin/admin-internal-post-type-list.php:406 -#: includes/admin/tools/class-acf-admin-tool-import.php:49 -msgid "Import" -msgstr "Uvoz" - -#: includes/admin/admin-internal-post-type-list.php:402 -msgid "Review changes" -msgstr "" - -#: includes/admin/admin-internal-post-type-list.php:378 -msgid "Located in: %s" -msgstr "" - -#: includes/admin/admin-internal-post-type-list.php:375 -msgid "Located in plugin: %s" -msgstr "" - -#: includes/admin/admin-internal-post-type-list.php:372 -msgid "Located in theme: %s" -msgstr "" - -#: includes/admin/post-types/admin-field-groups.php:261 -msgid "Various" -msgstr "" - -#: includes/admin/admin-internal-post-type-list.php:216 -#: includes/admin/admin-internal-post-type-list.php:485 -msgid "Sync changes" -msgstr "" - -#: includes/admin/admin-internal-post-type-list.php:215 -msgid "Loading diff" -msgstr "" - -#: includes/admin/admin-internal-post-type-list.php:214 -msgid "Review local JSON changes" -msgstr "" - -#: includes/admin/admin.php:170 -msgid "Visit website" -msgstr "" - -#: includes/admin/admin.php:169 -msgid "View details" -msgstr "" - -#: includes/admin/admin.php:168 -msgid "Version %s" -msgstr "" - -#: includes/admin/admin.php:167 -msgid "Information" -msgstr "" - -#: includes/admin/admin.php:158 -msgid "" -"Help Desk. The support professionals on " -"our Help Desk will assist with your more in depth, technical challenges." -msgstr "" - -#: includes/admin/admin.php:154 -msgid "" -"Discussions. We have an active and " -"friendly community on our Community Forums who may be able to help you " -"figure out the 'how-tos' of the ACF world." -msgstr "" - -#: includes/admin/admin.php:150 -msgid "" -"Documentation. Our extensive " -"documentation contains references and guides for most situations you may " -"encounter." -msgstr "" - -#: includes/admin/admin.php:147 -msgid "" -"We are fanatical about support, and want you to get the best out of your " -"website with ACF. If you run into any difficulties, there are several places " -"you can find help:" -msgstr "" - -#: includes/admin/admin.php:144 includes/admin/admin.php:146 -msgid "Help & Support" -msgstr "" - -#: includes/admin/admin.php:135 -msgid "" -"Please use the Help & Support tab to get in touch should you find yourself " -"requiring assistance." -msgstr "" - -#: includes/admin/admin.php:132 -msgid "" -"Before creating your first Field Group, we recommend first reading our Getting started guide to familiarize " -"yourself with the plugin's philosophy and best practises." -msgstr "" - -#: includes/admin/admin.php:130 -msgid "" -"The Advanced Custom Fields plugin provides a visual form builder to " -"customize WordPress edit screens with extra fields, and an intuitive API to " -"display custom field values in any theme template file." -msgstr "" - -#: includes/admin/admin.php:127 includes/admin/admin.php:129 -msgid "Overview" -msgstr "" - -#: includes/locations.php:36 -msgid "Location type \"%s\" is already registered." -msgstr "" - -#: includes/locations.php:25 -msgid "Class \"%s\" does not exist." -msgstr "" - -#: includes/ajax/class-acf-ajax.php:157 -msgid "Invalid nonce." -msgstr "" - -#: includes/fields/class-acf-field-user.php:375 -msgid "Error loading field." -msgstr "" - -#: assets/build/js/acf-input.js:2750 assets/build/js/acf-input.js:2819 -#: assets/build/js/acf-input.js:2926 assets/build/js/acf-input.js:3000 -msgid "Location not found: %s" -msgstr "" - -#: includes/forms/form-user.php:353 -msgid "Error: %s" -msgstr "" - -#: includes/locations/class-acf-location-widget.php:22 -msgid "Widget" -msgstr "Widget" - -#: includes/locations/class-acf-location-user-role.php:24 -msgid "User Role" -msgstr "Tip korisnika" - -#: includes/locations/class-acf-location-comment.php:22 -msgid "Comment" -msgstr "Komentar" - -#: includes/locations/class-acf-location-post-format.php:22 -msgid "Post Format" -msgstr "Format objave" - -#: includes/locations/class-acf-location-nav-menu-item.php:22 -msgid "Menu Item" -msgstr "Stavka izbornika" - -#: includes/locations/class-acf-location-post-status.php:22 -msgid "Post Status" -msgstr "Status objave" - -#: includes/acf-wp-functions.php:74 -#: includes/locations/class-acf-location-nav-menu.php:89 -msgid "Menus" -msgstr "Izbornici" - -#: includes/locations/class-acf-location-nav-menu.php:80 -msgid "Menu Locations" -msgstr "Lokacije izbornika" - -#: includes/locations/class-acf-location-nav-menu.php:22 -msgid "Menu" -msgstr "Izbornik" - -#: includes/locations/class-acf-location-post-taxonomy.php:22 -msgid "Post Taxonomy" -msgstr "Taksonomija objave" - -#: includes/locations/class-acf-location-page-type.php:114 -msgid "Child Page (has parent)" -msgstr "Pod-stranica (Ima matičnu stranicu)" - -#: includes/locations/class-acf-location-page-type.php:113 -msgid "Parent Page (has children)" -msgstr "Matičan stranica (Ima podstranice)" - -#: includes/locations/class-acf-location-page-type.php:112 -msgid "Top Level Page (no parent)" -msgstr "Matična stranica (Nije podstranica)" - -#: includes/locations/class-acf-location-page-type.php:111 -msgid "Posts Page" -msgstr "Stranica za objave" - -#: includes/locations/class-acf-location-page-type.php:110 -msgid "Front Page" -msgstr "Početna stranica" - -#: includes/locations/class-acf-location-page-type.php:22 -msgid "Page Type" -msgstr "Tip stranice" - -#: includes/locations/class-acf-location-current-user.php:73 -msgid "Viewing back end" -msgstr "Prikazuje administracijki dio" - -#: includes/locations/class-acf-location-current-user.php:72 -msgid "Viewing front end" -msgstr "Prikazuje web stranicu" - -#: includes/locations/class-acf-location-current-user.php:71 -msgid "Logged in" -msgstr "Prijavljen" - -#: includes/locations/class-acf-location-current-user.php:22 -msgid "Current User" -msgstr "Trenutni korisnik" - -#: includes/locations/class-acf-location-page-template.php:22 -msgid "Page Template" -msgstr "Predložak stranice" - -#: includes/locations/class-acf-location-user-form.php:74 -msgid "Register" -msgstr "Registriraj" - -#: includes/locations/class-acf-location-user-form.php:73 -msgid "Add / Edit" -msgstr "Dodaj / Uredi" - -#: includes/locations/class-acf-location-user-form.php:22 -msgid "User Form" -msgstr "Korisnički obrazac" - -#: includes/locations/class-acf-location-page-parent.php:22 -msgid "Page Parent" -msgstr "Matična stranica" - -#: includes/locations/class-acf-location-current-user-role.php:77 -msgid "Super Admin" -msgstr "Super Admin" - -#: includes/locations/class-acf-location-current-user-role.php:22 -msgid "Current User Role" -msgstr "Trenutni tip korisnika" - -#: includes/locations/class-acf-location-page-template.php:73 -#: includes/locations/class-acf-location-post-template.php:85 -msgid "Default Template" -msgstr "Zadani predložak" - -#: includes/locations/class-acf-location-post-template.php:22 -msgid "Post Template" -msgstr "Predložak stranice" - -#: includes/locations/class-acf-location-post-category.php:22 -msgid "Post Category" -msgstr "Kategorija objave" - -#: includes/locations/class-acf-location-attachment.php:84 -msgid "All %s formats" -msgstr "Svi oblici %s" - -#: includes/locations/class-acf-location-attachment.php:22 -msgid "Attachment" -msgstr "Prilog" - -#: includes/validation.php:366 -msgid "%s value is required" -msgstr "%s je obavezno" - -#: includes/admin/views/acf-field-group/conditional-logic.php:59 -msgid "Show this field if" -msgstr "Prikaži polje ako" - -#: includes/admin/views/acf-field-group/conditional-logic.php:26 -#: includes/admin/views/acf-field-group/field.php:109 includes/fields.php:411 -msgid "Conditional Logic" -msgstr "Uvjet za prikaz" - -#: includes/admin/views/acf-field-group/conditional-logic.php:156 -#: includes/admin/views/acf-field-group/location-rule.php:92 -msgid "and" -msgstr "i" - -#: includes/admin/post-types/admin-field-groups.php:123 -#: includes/admin/post-types/admin-post-types.php:143 -#: includes/admin/post-types/admin-taxonomies.php:143 -msgid "Local JSON" -msgstr "Učitavanje polja iz JSON datoteke" - -#: includes/admin/views/acf-field-group/pro-features.php:46 -msgid "Clone Field" -msgstr "" - -#: includes/admin/views/upgrade/notice.php:30 -msgid "" -"Please also check all premium add-ons (%s) are updated to the latest version." -msgstr "" - -#: includes/admin/views/upgrade/notice.php:28 -msgid "" -"This version contains improvements to your database and requires an upgrade." -msgstr "" - -#: includes/admin/views/upgrade/notice.php:28 -msgid "Thank you for updating to %1$s v%2$s!" -msgstr "" - -#: includes/admin/views/upgrade/notice.php:27 -msgid "Database Upgrade Required" -msgstr "Potrebno je nadograditi bazu podataka" - -#: includes/admin/post-types/admin-field-group.php:141 -#: includes/admin/views/upgrade/notice.php:18 -msgid "Options Page" -msgstr "Postavke" - -#: includes/admin/views/upgrade/notice.php:15 includes/fields.php:462 -msgid "Gallery" -msgstr "Galerija" - -#: includes/admin/views/upgrade/notice.php:12 includes/fields.php:452 -msgid "Flexible Content" -msgstr "Fleksibilno polje" - -#: includes/admin/views/upgrade/notice.php:9 includes/fields.php:472 -msgid "Repeater" -msgstr "Ponavljajuće polje" - -#: includes/admin/views/tools/tools.php:24 -msgid "Back to all tools" -msgstr "" - -#: includes/admin/views/acf-field-group/options.php:195 -msgid "" -"If multiple field groups appear on an edit screen, the first field group's " -"options will be used (the one with the lowest order number)" -msgstr "" -"Ukoliko je više skupova polja prikazano na istom ekranu, postavke prvog " -"skupa polja će biti korištene (postavke polja sa nižim brojem u redosljedu)" - -#: includes/admin/views/acf-field-group/options.php:195 -msgid "Select items to hide them from the edit screen." -msgstr "Odaberite koje grupe želite sakriti prilikom uređivanja." - -#: includes/admin/views/acf-field-group/options.php:194 -msgid "Hide on screen" -msgstr "Sakrij" - -#: includes/admin/views/acf-field-group/options.php:186 -msgid "Send Trackbacks" -msgstr "Pošalji povratnu vezu" - -#: includes/admin/post-types/admin-taxonomy.php:128 -#: includes/admin/views/acf-field-group/options.php:185 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:159 -#: assets/build/js/acf-internal-post-type.js:180 -#: assets/build/js/acf-internal-post-type.js:254 -msgid "Tags" -msgstr "Oznake" - -#: includes/admin/post-types/admin-taxonomy.php:130 -#: includes/admin/views/acf-field-group/options.php:184 -#: assets/build/js/acf-internal-post-type.js:183 -#: assets/build/js/acf-internal-post-type.js:257 -msgid "Categories" -msgstr "Kategorije" - -#: includes/admin/views/acf-field-group/options.php:182 -#: includes/admin/views/acf-post-type/advanced-settings.php:28 -msgid "Page Attributes" -msgstr "Atributi stranice" - -#: includes/admin/views/acf-field-group/options.php:181 -msgid "Format" -msgstr "Format" - -#: includes/admin/views/acf-field-group/options.php:180 -#: includes/admin/views/acf-post-type/advanced-settings.php:22 -msgid "Author" -msgstr "Autor" - -#: includes/admin/views/acf-field-group/options.php:179 -msgid "Slug" -msgstr "Slug" - -#: includes/admin/views/acf-field-group/options.php:178 -#: includes/admin/views/acf-post-type/advanced-settings.php:27 -msgid "Revisions" -msgstr "Revizija" - -#: includes/acf-wp-functions.php:66 -#: includes/admin/views/acf-field-group/options.php:177 -#: includes/admin/views/acf-post-type/advanced-settings.php:23 -msgid "Comments" -msgstr "Komentari" - -#: includes/admin/views/acf-field-group/options.php:176 -msgid "Discussion" -msgstr "Rasprava" - -#: includes/admin/views/acf-field-group/options.php:174 -#: includes/admin/views/acf-post-type/advanced-settings.php:26 -msgid "Excerpt" -msgstr "Izvadak" - -#: includes/admin/views/acf-field-group/options.php:173 -msgid "Content Editor" -msgstr "Uređivač sadržaja" - -#: includes/admin/views/acf-field-group/options.php:172 -msgid "Permalink" -msgstr "Stalna veza" - -#: includes/admin/views/acf-field-group/options.php:250 -msgid "Shown in field group list" -msgstr "Vidljivo u popisu" - -#: includes/admin/views/acf-field-group/options.php:157 -msgid "Field groups with a lower order will appear first" -msgstr "Skup polja sa nižim brojem će biti više pozicioniran" - -#: includes/admin/views/acf-field-group/options.php:156 -msgid "Order No." -msgstr "Redni broj." - -#: includes/admin/views/acf-field-group/options.php:147 -msgid "Below fields" -msgstr "Iznad oznake" - -#: includes/admin/views/acf-field-group/options.php:146 -msgid "Below labels" -msgstr "Ispod oznake" - -#: includes/admin/views/acf-field-group/options.php:139 -msgid "Instruction Placement" -msgstr "Pozicija uputa" - -#: includes/admin/views/acf-field-group/options.php:122 -msgid "Label Placement" -msgstr "Pozicija oznake" - -#: includes/admin/views/acf-field-group/options.php:110 -msgid "Side" -msgstr "Desni stupac" - -#: includes/admin/views/acf-field-group/options.php:109 -msgid "Normal (after content)" -msgstr "Normalno (nakon saržaja)" - -#: includes/admin/views/acf-field-group/options.php:108 -msgid "High (after title)" -msgstr "Visoko (nakon naslova)" - -#: includes/admin/views/acf-field-group/options.php:101 -msgid "Position" -msgstr "Pozicija" - -#: includes/admin/views/acf-field-group/options.php:92 -msgid "Seamless (no metabox)" -msgstr "" - -#: includes/admin/views/acf-field-group/options.php:91 -msgid "Standard (WP metabox)" -msgstr "Zadano (WP metabox)" - -#: includes/admin/views/acf-field-group/options.php:84 -msgid "Style" -msgstr "Stil" - -#: includes/admin/views/acf-field-group/fields.php:55 -msgid "Type" -msgstr "Tip" - -#: includes/admin/post-types/admin-field-groups.php:117 -#: includes/admin/post-types/admin-post-types.php:136 -#: includes/admin/post-types/admin-taxonomies.php:136 -#: includes/admin/views/acf-field-group/fields.php:54 -msgid "Key" -msgstr "Ključ" - -#. translators: Hidden accessibility text for the positional order number of -#. the field. -#: includes/admin/views/acf-field-group/fields.php:48 -msgid "Order" -msgstr "Redni broj" - -#: includes/admin/views/acf-field-group/field.php:322 -msgid "Close Field" -msgstr "Zatvori polje" - -#: includes/admin/views/acf-field-group/field.php:253 -msgid "id" -msgstr "id" - -#: includes/admin/views/acf-field-group/field.php:237 -msgid "class" -msgstr "klasa" - -#: includes/admin/views/acf-field-group/field.php:279 -msgid "width" -msgstr "širina" - -#: includes/admin/views/acf-field-group/field.php:273 -msgid "Wrapper Attributes" -msgstr "Značajke prethodnog elementa" - -#: includes/admin/views/acf-field-group/field.php:196 -msgid "Required" -msgstr "Obavezno?" - -#: includes/admin/views/acf-field-group/field.php:221 -msgid "Instructions for authors. Shown when submitting data" -msgstr "Upute priliko uređivanja. Vidljivo prilikom spremanja podataka" - -#: includes/admin/views/acf-field-group/field.php:220 -msgid "Instructions" -msgstr "Upute" - -#: includes/admin/views/acf-field-group/field.php:129 -msgid "Field Type" -msgstr "Tip polja" - -#: includes/admin/views/acf-field-group/field.php:170 -msgid "Single word, no spaces. Underscores and dashes allowed" -msgstr "Jedna riječ, bez razmaka. Povlaka i donja crta su dozvoljeni" - -#: includes/admin/views/acf-field-group/field.php:169 -msgid "Field Name" -msgstr "Naziv polja" - -#: includes/admin/views/acf-field-group/field.php:157 -msgid "This is the name which will appear on the EDIT page" -msgstr "Naziv koji se prikazuje prilikom uređivanja stranice" - -#: includes/admin/views/acf-field-group/field.php:156 -#: includes/admin/views/browse-fields-modal.php:59 -msgid "Field Label" -msgstr "Naziv polja" - -#: includes/admin/views/acf-field-group/field.php:81 -msgid "Delete" -msgstr "Obriši" - -#: includes/admin/views/acf-field-group/field.php:81 -msgid "Delete field" -msgstr "Obriši polje" - -#: includes/admin/views/acf-field-group/field.php:79 -msgid "Move" -msgstr "Premjesti" - -#: includes/admin/views/acf-field-group/field.php:79 -msgid "Move field to another group" -msgstr "Premjeti polje u drugu skupinu" - -#: includes/admin/views/acf-field-group/field.php:77 -msgid "Duplicate field" -msgstr "Dupliciraj polje" - -#: includes/admin/views/acf-field-group/field.php:73 -#: includes/admin/views/acf-field-group/field.php:76 -msgid "Edit field" -msgstr "Uredi polje" - -#: includes/admin/views/acf-field-group/field.php:69 -msgid "Drag to reorder" -msgstr "Presloži polja povlačenjem" - -#: includes/admin/post-types/admin-field-group.php:103 -#: includes/admin/views/acf-field-group/location-group.php:3 -#: assets/build/js/acf-field-group.js:2347 -#: assets/build/js/acf-field-group.js:2763 -msgid "Show this field group if" -msgstr "Prikaži ovaj skup polja ako" - -#: includes/admin/views/upgrade/upgrade.php:94 -#: includes/ajax/class-acf-ajax-upgrade.php:34 -msgid "No updates available." -msgstr "Nema novih nadogradnji." - -#: includes/admin/views/upgrade/upgrade.php:33 -msgid "Database upgrade complete. See what's new" -msgstr "" - -#: includes/admin/views/upgrade/upgrade.php:30 -msgid "Reading upgrade tasks..." -msgstr "Učitavam podatke za nadogradnju…" - -#: includes/admin/views/upgrade/network.php:165 -#: includes/admin/views/upgrade/upgrade.php:65 -msgid "Upgrade failed." -msgstr "" - -#: includes/admin/views/upgrade/network.php:162 -msgid "Upgrade complete." -msgstr "" - -#: includes/admin/views/upgrade/network.php:148 -#: includes/admin/views/upgrade/upgrade.php:31 -msgid "Upgrading data to version %s" -msgstr "Nadogradnja na verziju %s" - -#: includes/admin/views/upgrade/network.php:121 -#: includes/admin/views/upgrade/notice.php:44 -msgid "" -"It is strongly recommended that you backup your database before proceeding. " -"Are you sure you wish to run the updater now?" -msgstr "" -"Prije nego nastavite preporučamo da napravite sigurnosnu kopiju baze " -"podataka. Jeste li sigurni da želite nastaviti ažuriranje?" - -#: includes/admin/views/upgrade/network.php:117 -msgid "Please select at least one site to upgrade." -msgstr "" - -#: includes/admin/views/upgrade/network.php:97 -msgid "" -"Database Upgrade complete. Return to network dashboard" -msgstr "" -"Baza podataka je nadograđena. Kliknite ovdje za povratak na " -"administraciju WordPress mreže" - -#: includes/admin/views/upgrade/network.php:80 -msgid "Site is up to date" -msgstr "Nema novih ažuriranja za web stranica" - -#: includes/admin/views/upgrade/network.php:78 -msgid "Site requires database upgrade from %1$s to %2$s" -msgstr "" - -#: includes/admin/views/upgrade/network.php:36 -#: includes/admin/views/upgrade/network.php:47 -msgid "Site" -msgstr "Web stranica" - -#: includes/admin/views/upgrade/network.php:26 -#: includes/admin/views/upgrade/network.php:27 -#: includes/admin/views/upgrade/network.php:96 -msgid "Upgrade Sites" -msgstr "Ažuriraj stranice" - -#: includes/admin/views/upgrade/network.php:26 -msgid "" -"The following sites require a DB upgrade. Check the ones you want to update " -"and then click %s." -msgstr "" -"Ažuriranje baze podatak dovršeno. Provjerite koje web stranice u svojoj " -"mreži želite nadograditi i zatim kliknite %s." - -#: includes/admin/views/acf-field-group/conditional-logic.php:171 -#: includes/admin/views/acf-field-group/locations.php:38 -msgid "Add rule group" -msgstr "Dodaj skup pravila" - -#: includes/admin/views/acf-field-group/locations.php:10 -msgid "" -"Create a set of rules to determine which edit screens will use these " -"advanced custom fields" -msgstr "Odaberite pravila koja određuju koji prikaz će koristiti ACF polja" - -#: includes/admin/views/acf-field-group/locations.php:9 -msgid "Rules" -msgstr "Pravila" - -#: includes/admin/tools/class-acf-admin-tool-export.php:510 -msgid "Copied" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:486 -msgid "Copy to clipboard" -msgstr "Kopiraj u međuspremnik" - -#: includes/admin/tools/class-acf-admin-tool-export.php:385 -msgid "" -"Select the items you would like to export and then select your export " -"method. Export As JSON to export to a .json file which you can then import " -"to another ACF installation. Generate PHP to export to PHP code which you " -"can place in your theme." -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:233 -msgid "Select Field Groups" -msgstr "Odaberite skup polja" - -#: includes/admin/tools/class-acf-admin-tool-export.php:96 -#: includes/admin/tools/class-acf-admin-tool-export.php:131 -msgid "No field groups selected" -msgstr "Niste odabrali polje" - -#: includes/admin/tools/class-acf-admin-tool-export.php:39 -#: includes/admin/tools/class-acf-admin-tool-export.php:393 -#: includes/admin/tools/class-acf-admin-tool-export.php:421 -msgid "Generate PHP" -msgstr "Generiraj PHP kod" - -#: includes/admin/tools/class-acf-admin-tool-export.php:35 -msgid "Export Field Groups" -msgstr "Izvezi skup polja" - -#: includes/admin/tools/class-acf-admin-tool-import.php:177 -msgid "Import file empty" -msgstr "Odabrana datoteka za uvoz ne sadrži" - -#: includes/admin/tools/class-acf-admin-tool-import.php:168 -msgid "Incorrect file type" -msgstr "Nedozvoljeni format datoteke" - -#: includes/admin/tools/class-acf-admin-tool-import.php:163 -msgid "Error uploading file. Please try again" -msgstr "Greška prilikom prijenosa datoteke, molimo pokušaj ponovno" - -#: includes/admin/tools/class-acf-admin-tool-import.php:50 -msgid "" -"Select the Advanced Custom Fields JSON file you would like to import. When " -"you click the import button below, ACF will import the items in that file." -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:27 -msgid "Import Field Groups" -msgstr "Uvoz skupa polja" - -#: includes/admin/admin-internal-post-type-list.php:401 -msgid "Sync" -msgstr "Sinkroniziraj" - -#: includes/admin/admin-internal-post-type-list.php:858 -msgid "Select %s" -msgstr "Odaberi %s" - -#: includes/admin/admin-internal-post-type-list.php:442 -#: includes/admin/admin-internal-post-type-list.php:474 -#: includes/admin/views/acf-field-group/field.php:77 -msgid "Duplicate" -msgstr "Dupliciraj" - -#: includes/admin/admin-internal-post-type-list.php:442 -msgid "Duplicate this item" -msgstr "Dupliciraj" - -#: includes/admin/views/acf-post-type/advanced-settings.php:41 -msgid "Supports" -msgstr "" - -#: includes/admin/admin.php:261 includes/admin/views/browse-fields-modal.php:92 -msgid "Documentation" -msgstr "" - -#: includes/admin/post-types/admin-field-groups.php:116 -#: includes/admin/post-types/admin-post-types.php:135 -#: includes/admin/post-types/admin-taxonomies.php:135 -#: includes/admin/views/acf-field-group/options.php:249 -#: includes/admin/views/acf-post-type/advanced-settings.php:62 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:114 -#: includes/admin/views/upgrade/network.php:38 -#: includes/admin/views/upgrade/network.php:49 -msgid "Description" -msgstr "Opis" - -#: includes/admin/admin-internal-post-type-list.php:398 -#: includes/admin/admin-internal-post-type-list.php:747 -msgid "Sync available" -msgstr "Sinkronizacija dostupna" - -#. translators: %s number of field groups synchronized -#: includes/admin/post-types/admin-field-groups.php:381 -msgid "Field group synchronized." -msgid_plural "%s field groups synchronized." -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. translators: %s number of field groups duplicated -#: includes/admin/post-types/admin-field-groups.php:374 -msgid "Field group duplicated." -msgid_plural "%s field groups duplicated." -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: includes/admin/admin-internal-post-type-list.php:137 -msgid "Active (%s)" -msgid_plural "Active (%s)" -msgstr[0] "Aktivno (%s)" -msgstr[1] "Aktivno (%s)" -msgstr[2] "Aktivno (%s)" - -#: includes/admin/admin-upgrade.php:254 -msgid "Review sites & upgrade" -msgstr "Pregledaj stranice i nadogradi" - -#: includes/admin/admin-upgrade.php:59 includes/admin/admin-upgrade.php:93 -#: includes/admin/admin-upgrade.php:94 includes/admin/admin-upgrade.php:230 -#: includes/admin/views/upgrade/network.php:24 -#: includes/admin/views/upgrade/upgrade.php:26 -msgid "Upgrade Database" -msgstr "Nadogradi bazu podataka" - -#: includes/admin/views/acf-field-group/options.php:175 -#: includes/admin/views/acf-post-type/advanced-settings.php:30 -msgid "Custom Fields" -msgstr "Dodatna polja" - -#: includes/admin/post-types/admin-field-group.php:616 -msgid "Move Field" -msgstr "Premjesti polje" - -#: includes/admin/post-types/admin-field-group.php:605 -#: includes/admin/post-types/admin-field-group.php:609 -msgid "Please select the destination for this field" -msgstr "Odaberite lokaciju za ovo polje" - -#. translators: Confirmation message once a field has been moved to a different -#. field group. -#: includes/admin/post-types/admin-field-group.php:567 -msgid "The %1$s field can now be found in the %2$s field group" -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:564 -msgid "Move Complete." -msgstr "Premještanje dovršeno." - -#: includes/admin/views/acf-field-group/field.php:39 -#: includes/admin/views/acf-field-group/options.php:217 -#: includes/admin/views/acf-post-type/advanced-settings.php:78 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:130 -msgid "Active" -msgstr "Aktivan" - -#: includes/admin/post-types/admin-field-group.php:266 -msgid "Field Keys" -msgstr "Oznaka polja" - -#: includes/admin/post-types/admin-field-group.php:164 -#: includes/admin/tools/class-acf-admin-tool-export.php:342 -msgid "Settings" -msgstr "Postavke" - -#: includes/admin/post-types/admin-field-groups.php:118 -msgid "Location" -msgstr "Lokacija" - -#: includes/admin/post-types/admin-field-group.php:104 -#: assets/build/js/acf-input.js:983 assets/build/js/acf-input.js:1075 -msgid "Null" -msgstr "Null" - -#: includes/admin/post-types/admin-field-group.php:101 -#: includes/class-acf-internal-post-type.php:730 -#: includes/post-types/class-acf-field-group.php:345 -#: assets/build/js/acf-field-group.js:1510 -#: assets/build/js/acf-field-group.js:1821 -msgid "copy" -msgstr "kopiraj" - -#: includes/admin/post-types/admin-field-group.php:100 -#: assets/build/js/acf-field-group.js:623 -#: assets/build/js/acf-field-group.js:778 -msgid "(this field)" -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:98 -#: assets/build/js/acf-input.js:918 assets/build/js/acf-input.js:943 -#: assets/build/js/acf-input.js:1002 assets/build/js/acf-input.js:1030 -msgid "Checked" -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:94 -#: assets/build/js/acf-field-group.js:1615 -#: assets/build/js/acf-field-group.js:1933 -msgid "Move Custom Field" -msgstr "Premjesti polje" - -#: includes/admin/post-types/admin-field-group.php:93 -#: assets/build/js/acf-field-group.js:649 -#: assets/build/js/acf-field-group.js:804 -msgid "No toggle fields available" -msgstr "Nema polja koji omoguću korisniku odabir" - -#: includes/admin/post-types/admin-field-group.php:91 -msgid "Field group title is required" -msgstr "Naziv polja je obavezna" - -#: includes/admin/post-types/admin-field-group.php:90 -#: assets/build/js/acf-field-group.js:1604 -#: assets/build/js/acf-field-group.js:1919 -msgid "This field cannot be moved until its changes have been saved" -msgstr "Potrebno je spremiti izmjene prije nego možete premjestiti polje" - -#: includes/admin/post-types/admin-field-group.php:89 -#: assets/build/js/acf-field-group.js:1414 -#: assets/build/js/acf-field-group.js:1716 -msgid "The string \"field_\" may not be used at the start of a field name" -msgstr "Polje ne može započinjati sa “field_”, odabrite drugi naziv" - -#: includes/admin/post-types/admin-field-group.php:71 -msgid "Field group draft updated." -msgstr "Skica ažurirana." - -#: includes/admin/post-types/admin-field-group.php:70 -msgid "Field group scheduled for." -msgstr "Skup polja je označen za." - -#: includes/admin/post-types/admin-field-group.php:69 -msgid "Field group submitted." -msgstr "Skup polja je spremljen." - -#: includes/admin/post-types/admin-field-group.php:68 -msgid "Field group saved." -msgstr "Skup polja spremljen." - -#: includes/admin/post-types/admin-field-group.php:67 -msgid "Field group published." -msgstr "Skup polja objavljen." - -#: includes/admin/post-types/admin-field-group.php:64 -msgid "Field group deleted." -msgstr "Skup polja izbrisan." - -#: includes/admin/post-types/admin-field-group.php:62 -#: includes/admin/post-types/admin-field-group.php:63 -#: includes/admin/post-types/admin-field-group.php:65 -msgid "Field group updated." -msgstr "Skup polja ažuriran." - -#: includes/admin/admin-tools.php:118 -#: includes/admin/views/global/navigation.php:246 -#: includes/admin/views/tools/tools.php:21 -msgid "Tools" -msgstr "Alati" - -#: includes/locations/abstract-acf-location.php:106 -msgid "is not equal to" -msgstr "je drukčije" - -#: includes/locations/abstract-acf-location.php:105 -msgid "is equal to" -msgstr "je jednako" - -#: includes/locations.php:102 -msgid "Forms" -msgstr "Forme" - -#: includes/admin/post-types/admin-post-type.php:127 includes/locations.php:100 -#: includes/locations/class-acf-location-page.php:22 -#: assets/build/js/acf-internal-post-type.js:175 -#: assets/build/js/acf-internal-post-type.js:249 -msgid "Page" -msgstr "Stranice" - -#: includes/admin/post-types/admin-post-type.php:125 includes/locations.php:99 -#: includes/locations/class-acf-location-post.php:22 -#: assets/build/js/acf-internal-post-type.js:172 -#: assets/build/js/acf-internal-post-type.js:246 -msgid "Post" -msgstr "Objava" - -#: includes/fields.php:354 -msgid "Relational" -msgstr "Relacijski" - -#: includes/fields.php:353 -msgid "Choice" -msgstr "Odabir" - -#: includes/fields.php:351 -msgid "Basic" -msgstr "Osnovno" - -#: includes/fields.php:320 -msgid "Unknown" -msgstr "Nepoznato polje" - -#: includes/fields.php:320 -msgid "Field type does not exist" -msgstr "Tip polja ne postoji" - -#: includes/forms/form-front.php:236 -msgid "Spam Detected" -msgstr "Spam" - -#: includes/forms/form-front.php:107 -msgid "Post updated" -msgstr "Objava ažurirana" - -#: includes/forms/form-front.php:106 -msgid "Update" -msgstr "Ažuriraj" - -#: includes/forms/form-front.php:57 -msgid "Validate Email" -msgstr "Verificiraj email" - -#: includes/fields.php:352 includes/forms/form-front.php:49 -msgid "Content" -msgstr "Sadržaj" - -#: includes/admin/views/acf-post-type/advanced-settings.php:21 -#: includes/forms/form-front.php:40 -msgid "Title" -msgstr "Naziv" - -#: includes/assets.php:372 includes/forms/form-comment.php:160 -#: assets/build/js/acf-input.js:7382 assets/build/js/acf-input.js:7968 -msgid "Edit field group" -msgstr "Uredi skup polja" - -#: includes/admin/post-types/admin-field-group.php:117 -#: assets/build/js/acf-input.js:1125 assets/build/js/acf-input.js:1230 -msgid "Selection is less than" -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:116 -#: assets/build/js/acf-input.js:1106 assets/build/js/acf-input.js:1202 -msgid "Selection is greater than" -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:115 -#: assets/build/js/acf-input.js:1075 assets/build/js/acf-input.js:1170 -msgid "Value is less than" -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:114 -#: assets/build/js/acf-input.js:1045 assets/build/js/acf-input.js:1139 -msgid "Value is greater than" -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:113 -#: assets/build/js/acf-input.js:888 assets/build/js/acf-input.js:960 -msgid "Value contains" -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:112 -#: assets/build/js/acf-input.js:862 assets/build/js/acf-input.js:926 -msgid "Value matches pattern" -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:111 -#: assets/build/js/acf-input.js:840 assets/build/js/acf-input.js:1023 -#: assets/build/js/acf-input.js:903 assets/build/js/acf-input.js:1116 -msgid "Value is not equal to" -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:110 -#: assets/build/js/acf-input.js:810 assets/build/js/acf-input.js:964 -#: assets/build/js/acf-input.js:864 assets/build/js/acf-input.js:1053 -msgid "Value is equal to" -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:109 -#: assets/build/js/acf-input.js:788 assets/build/js/acf-input.js:841 -msgid "Has no value" -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:108 -#: assets/build/js/acf-input.js:758 assets/build/js/acf-input.js:783 -msgid "Has any value" -msgstr "" - -#: includes/admin/admin-internal-post-type.php:345 -#: includes/admin/views/browse-fields-modal.php:62 includes/assets.php:353 -#: assets/build/js/acf.js:1564 assets/build/js/acf.js:1658 -msgid "Cancel" -msgstr "Otkaži" - -#: includes/assets.php:349 assets/build/js/acf.js:1738 -#: assets/build/js/acf.js:1855 -msgid "Are you sure?" -msgstr "Jeste li sigurni?" - -#: includes/assets.php:369 assets/build/js/acf-input.js:9442 -#: assets/build/js/acf-input.js:10294 -msgid "%d fields require attention" -msgstr "Nekoliko polja treba vašu pažnje: %d" - -#: includes/assets.php:368 assets/build/js/acf-input.js:9440 -#: assets/build/js/acf-input.js:10290 -msgid "1 field requires attention" -msgstr "1 polje treba vašu pažnju" - -#: includes/assets.php:367 includes/validation.php:288 -#: includes/validation.php:298 assets/build/js/acf-input.js:9435 -#: assets/build/js/acf-input.js:10285 -msgid "Validation failed" -msgstr "Verifikacija nije uspjela" - -#: includes/assets.php:366 assets/build/js/acf-input.js:9603 -#: assets/build/js/acf-input.js:10473 -msgid "Validation successful" -msgstr "Uspješna verifikacija" - -#: includes/media.php:54 assets/build/js/acf-input.js:7210 -#: assets/build/js/acf-input.js:7772 -msgid "Restricted" -msgstr "Ograničen pristup" - -#: includes/media.php:53 assets/build/js/acf-input.js:7025 -#: assets/build/js/acf-input.js:7536 -msgid "Collapse Details" -msgstr "Sakrij detalje" - -#: includes/media.php:52 assets/build/js/acf-input.js:7025 -#: assets/build/js/acf-input.js:7533 -msgid "Expand Details" -msgstr "Prošireni prikaz" - -#: includes/admin/views/acf-post-type/advanced-settings.php:465 -#: includes/media.php:51 assets/build/js/acf-input.js:6892 -#: assets/build/js/acf-input.js:7381 -msgid "Uploaded to this post" -msgstr "Postavljeno uz ovu objavu" - -#: includes/media.php:50 assets/build/js/acf-input.js:6931 -#: assets/build/js/acf-input.js:7420 -msgctxt "verb" -msgid "Update" -msgstr "Ažuriraj" - -#: includes/media.php:49 -msgctxt "verb" -msgid "Edit" -msgstr "Uredi" - -#: includes/assets.php:363 assets/build/js/acf-input.js:9212 -#: assets/build/js/acf-input.js:10056 -msgid "The changes you made will be lost if you navigate away from this page" -msgstr "" -"Izmjene koje ste napravili bit će izgubljene ukoliko napustite ovu stranicu" - -#: includes/api/api-helpers.php:3395 -msgid "File type must be %s." -msgstr "Tip datoteke mora biti %s." - -#: includes/admin/post-types/admin-field-group.php:102 -#: includes/admin/views/acf-field-group/conditional-logic.php:59 -#: includes/admin/views/acf-field-group/conditional-logic.php:169 -#: includes/admin/views/acf-field-group/location-group.php:3 -#: includes/admin/views/acf-field-group/locations.php:36 -#: includes/api/api-helpers.php:3391 assets/build/js/acf-field-group.js:771 -#: assets/build/js/acf-field-group.js:2385 -#: assets/build/js/acf-field-group.js:933 -#: assets/build/js/acf-field-group.js:2807 -msgid "or" -msgstr "ili" - -#: includes/api/api-helpers.php:3364 -msgid "File size must not exceed %s." -msgstr "" - -#: includes/api/api-helpers.php:3359 -msgid "File size must be at least %s." -msgstr "Veličina datoteke mora biti najmanje %s." - -#: includes/api/api-helpers.php:3344 -msgid "Image height must not exceed %dpx." -msgstr "Visina slike ne smije biti veća od %dpx." - -#: includes/api/api-helpers.php:3339 -msgid "Image height must be at least %dpx." -msgstr "Visina slike mora biti najmanje %dpx." - -#: includes/api/api-helpers.php:3325 -msgid "Image width must not exceed %dpx." -msgstr "Širina slike ne smije biti veća od %dpx." - -#: includes/api/api-helpers.php:3320 -msgid "Image width must be at least %dpx." -msgstr "Širina slike mora biti najmanje %dpx." - -#: includes/api/api-helpers.php:1561 includes/api/api-term.php:147 -msgid "(no title)" -msgstr "(bez naziva)" - -#: includes/api/api-helpers.php:853 -msgid "Full Size" -msgstr "Puna veličina" - -#: includes/api/api-helpers.php:812 -msgid "Large" -msgstr "Velika" - -#: includes/api/api-helpers.php:811 -msgid "Medium" -msgstr "Srednja" - -#: includes/api/api-helpers.php:810 -msgid "Thumbnail" -msgstr "Sličica" - -#: includes/acf-field-functions.php:854 -#: includes/admin/post-types/admin-field-group.php:99 -#: assets/build/js/acf-field-group.js:1077 -#: assets/build/js/acf-field-group.js:1260 -msgid "(no label)" -msgstr "" - -#: includes/fields/class-acf-field-textarea.php:145 -msgid "Sets the textarea height" -msgstr "Podesi visinu tekstualnog polja" - -#: includes/fields/class-acf-field-textarea.php:144 -msgid "Rows" -msgstr "Broj redova" - -#: includes/fields/class-acf-field-textarea.php:25 -msgid "Text Area" -msgstr "Tekst polje" - -#: includes/fields/class-acf-field-checkbox.php:451 -msgid "Prepend an extra checkbox to toggle all choices" -msgstr "Dodaj okvir za izbor koji omogućje odabir svih opcija" - -#: includes/fields/class-acf-field-checkbox.php:413 -msgid "Save 'custom' values to the field's choices" -msgstr "Spremi ‘dodatne’ vrijednosti i prikaži ih omogući njihov odabir" - -#: includes/fields/class-acf-field-checkbox.php:402 -msgid "Allow 'custom' values to be added" -msgstr "Omogući ‘dodatne’ vrijednosti" - -#: includes/fields/class-acf-field-checkbox.php:38 -msgid "Add new choice" -msgstr "Dodaj odabir" - -#: includes/fields/class-acf-field-checkbox.php:174 -msgid "Toggle All" -msgstr "Sakrij sve" - -#: includes/fields/class-acf-field-page_link.php:506 -msgid "Allow Archives URLs" -msgstr "Omogući odabir arhive tipova" - -#: includes/fields/class-acf-field-page_link.php:179 -msgid "Archives" -msgstr "Arhiva" - -#: includes/fields/class-acf-field-page_link.php:25 -msgid "Page Link" -msgstr "URL stranice" - -#: includes/fields/class-acf-field-taxonomy.php:943 -#: includes/locations/class-acf-location-user-form.php:72 -msgid "Add" -msgstr "Dodaj" - -#: includes/admin/views/acf-field-group/fields.php:53 -#: includes/fields/class-acf-field-taxonomy.php:908 -msgid "Name" -msgstr "Naziv" - -#: includes/fields/class-acf-field-taxonomy.php:892 -msgid "%s added" -msgstr "Dodano: %s" - -#: includes/fields/class-acf-field-taxonomy.php:856 -msgid "%s already exists" -msgstr "%s već postoji" - -#: includes/fields/class-acf-field-taxonomy.php:844 -msgid "User unable to add new %s" -msgstr "Korisnik nije u mogućnosti dodati %s" - -#: includes/fields/class-acf-field-taxonomy.php:742 -msgid "Term ID" -msgstr "Vrijednost kao: ID pojma" - -#: includes/fields/class-acf-field-taxonomy.php:741 -msgid "Term Object" -msgstr "Vrijednost pojma kao objekt" - -#: includes/fields/class-acf-field-taxonomy.php:726 -msgid "Load value from posts terms" -msgstr "Učitaj pojmove iz objave" - -#: includes/fields/class-acf-field-taxonomy.php:725 -msgid "Load Terms" -msgstr "Učitaj pojmove" - -#: includes/fields/class-acf-field-taxonomy.php:715 -msgid "Connect selected terms to the post" -msgstr "Spoji odabrane pojmove sa objavom" - -#: includes/fields/class-acf-field-taxonomy.php:714 -msgid "Save Terms" -msgstr "Spremi pojmove" - -#: includes/fields/class-acf-field-taxonomy.php:704 -msgid "Allow new terms to be created whilst editing" -msgstr "Omogući kreiranje pojmova prilikom uređivanja" - -#: includes/fields/class-acf-field-taxonomy.php:703 -msgid "Create Terms" -msgstr "Kreiraj pojmove" - -#: includes/fields/class-acf-field-taxonomy.php:762 -msgid "Radio Buttons" -msgstr "Radiogumbi" - -#: includes/fields/class-acf-field-taxonomy.php:761 -msgid "Single Value" -msgstr "Jedan odabir" - -#: includes/fields/class-acf-field-taxonomy.php:759 -msgid "Multi Select" -msgstr "Više odabira" - -#: includes/fields/class-acf-field-checkbox.php:25 -#: includes/fields/class-acf-field-taxonomy.php:758 -msgid "Checkbox" -msgstr "Skup dugmadi" - -#: includes/fields/class-acf-field-taxonomy.php:757 -msgid "Multiple Values" -msgstr "Omogući odabir više vrijednosti" - -#: includes/fields/class-acf-field-taxonomy.php:752 -msgid "Select the appearance of this field" -msgstr "Odaberite izgled polja" - -#: includes/fields/class-acf-field-taxonomy.php:751 -msgid "Appearance" -msgstr "Prikaz" - -#: includes/fields/class-acf-field-taxonomy.php:693 -msgid "Select the taxonomy to be displayed" -msgstr "Odaberite taksonomiju za prikaz" - -#: includes/fields/class-acf-field-taxonomy.php:654 -msgctxt "No Terms" -msgid "No %s" -msgstr "Nema %s" - -#: includes/fields/class-acf-field-number.php:266 -msgid "Value must be equal to or lower than %d" -msgstr "Unešena vrijednost mora biti jednaka ili niža od %d" - -#: includes/fields/class-acf-field-number.php:259 -msgid "Value must be equal to or higher than %d" -msgstr "Unešena vrijednost mora biti jednaka ili viša od %d" - -#: includes/fields/class-acf-field-number.php:244 -msgid "Value must be a number" -msgstr "Vrijednost mora biti broj" - -#: includes/fields/class-acf-field-number.php:25 -msgid "Number" -msgstr "Broj" - -#: includes/fields/class-acf-field-radio.php:264 -msgid "Save 'other' values to the field's choices" -msgstr "Spremi ostale vrijednosti i omogući njihov odabir" - -#: includes/fields/class-acf-field-radio.php:253 -msgid "Add 'other' choice to allow for custom values" -msgstr "Dodaj odabir ’ostalo’ za slobodan unost" - -#: includes/admin/views/global/navigation.php:196 -msgid "Other" -msgstr "Drugo" - -#: includes/fields/class-acf-field-radio.php:25 -msgid "Radio Button" -msgstr "Radiogumb" - -#: includes/fields/class-acf-field-accordion.php:107 -msgid "" -"Define an endpoint for the previous accordion to stop. This accordion will " -"not be visible." -msgstr "" -"Preciziraj prijelomnu točku za prethoda polja accordion. Ovo će omogućiti " -"novi skup polja nakon prijelomne točke." - -#: includes/fields/class-acf-field-accordion.php:96 -msgid "Allow this accordion to open without closing others." -msgstr "Omogući prikaz ovog accordion polja bez zatvaranje ostalih." - -#: includes/fields/class-acf-field-accordion.php:95 -msgid "Multi-Expand" -msgstr "Mulit-proširenje" - -#: includes/fields/class-acf-field-accordion.php:85 -msgid "Display this accordion as open on page load." -msgstr "Prikaži accordion polje kao otvoreno prilikom učitavanja." - -#: includes/fields/class-acf-field-accordion.php:84 -msgid "Open" -msgstr "Otvori" - -#: includes/fields/class-acf-field-accordion.php:25 -msgid "Accordion" -msgstr "Multi prošireno" - -#: includes/fields/class-acf-field-file.php:267 -#: includes/fields/class-acf-field-file.php:279 -msgid "Restrict which files can be uploaded" -msgstr "Ograniči tip datoteka koji se smije uvesti" - -#: includes/fields/class-acf-field-file.php:220 -msgid "File ID" -msgstr "Vrijednost kao ID" - -#: includes/fields/class-acf-field-file.php:219 -msgid "File URL" -msgstr "Putanja datoteke" - -#: includes/fields/class-acf-field-file.php:218 -msgid "File Array" -msgstr "Vrijednost kao niz" - -#: includes/fields/class-acf-field-file.php:186 -msgid "Add File" -msgstr "Dodaj datoteku" - -#: includes/admin/tools/class-acf-admin-tool-import.php:156 -#: includes/fields/class-acf-field-file.php:186 -msgid "No file selected" -msgstr "Niste odabrali datoteku" - -#: includes/fields/class-acf-field-file.php:150 -msgid "File name" -msgstr "Naziv datoteke" - -#: includes/fields/class-acf-field-file.php:63 -#: assets/build/js/acf-input.js:2474 assets/build/js/acf-input.js:2625 -msgid "Update File" -msgstr "Ažuriraj datoteku" - -#: includes/fields/class-acf-field-file.php:62 -#: assets/build/js/acf-input.js:2473 assets/build/js/acf-input.js:2624 -msgid "Edit File" -msgstr "Uredi datoteku" - -#: includes/admin/tools/class-acf-admin-tool-import.php:58 -#: includes/fields/class-acf-field-file.php:61 -#: assets/build/js/acf-input.js:2447 assets/build/js/acf-input.js:2597 -msgid "Select File" -msgstr "Odaberite datoteku" - -#: includes/fields/class-acf-field-file.php:25 -msgid "File" -msgstr "Datoteka" - -#: includes/fields/class-acf-field-password.php:25 -msgid "Password" -msgstr "Lozinka" - -#: includes/fields/class-acf-field-select.php:392 -msgid "Specify the value returned" -msgstr "Preciziraj vrijednost za povrat" - -#: includes/fields/class-acf-field-select.php:461 -msgid "Use AJAX to lazy load choices?" -msgstr "Asinkrono učitaj dostupne odabire?" - -#: includes/fields/class-acf-field-checkbox.php:362 -#: includes/fields/class-acf-field-select.php:381 -msgid "Enter each default value on a new line" -msgstr "Unesite svaku novu vrijednost u zasebnu liniju" - -#: includes/fields/class-acf-field-select.php:252 includes/media.php:48 -#: assets/build/js/acf-input.js:6790 assets/build/js/acf-input.js:7266 -msgctxt "verb" -msgid "Select" -msgstr "Odaberi" - -#: includes/fields/class-acf-field-select.php:121 -msgctxt "Select2 JS load_fail" -msgid "Loading failed" -msgstr "Neuspješno učitavanje" - -#: includes/fields/class-acf-field-select.php:120 -msgctxt "Select2 JS searching" -msgid "Searching…" -msgstr "Pretražujem…" - -#: includes/fields/class-acf-field-select.php:119 -msgctxt "Select2 JS load_more" -msgid "Loading more results…" -msgstr "Učitavam rezultate…" - -#: includes/fields/class-acf-field-select.php:118 -msgctxt "Select2 JS selection_too_long_n" -msgid "You can only select %d items" -msgstr "Odabir opcija je ograničen na najviše %d" - -#: includes/fields/class-acf-field-select.php:117 -msgctxt "Select2 JS selection_too_long_1" -msgid "You can only select 1 item" -msgstr "Moguće je odabrati samo jednu opciju" - -#: includes/fields/class-acf-field-select.php:116 -msgctxt "Select2 JS input_too_long_n" -msgid "Please delete %d characters" -msgstr "Molimo obrišite višak znakova - %d znak(ova) je višak" - -#: includes/fields/class-acf-field-select.php:115 -msgctxt "Select2 JS input_too_long_1" -msgid "Please delete 1 character" -msgstr "Molimo obrišite 1 znak" - -#: includes/fields/class-acf-field-select.php:114 -msgctxt "Select2 JS input_too_short_n" -msgid "Please enter %d or more characters" -msgstr "Molimo unesite najmanje %d ili više znakova" - -#: includes/fields/class-acf-field-select.php:113 -msgctxt "Select2 JS input_too_short_1" -msgid "Please enter 1 or more characters" -msgstr "Molimo unesite 1 ili više znakova" - -#: includes/fields/class-acf-field-select.php:112 -msgctxt "Select2 JS matches_0" -msgid "No matches found" -msgstr "Nema rezultata" - -#: includes/fields/class-acf-field-select.php:111 -msgctxt "Select2 JS matches_n" -msgid "%d results are available, use up and down arrow keys to navigate." -msgstr "%d rezultata dostupno, za pomicanje koristite strelice gore/dole." - -#: includes/fields/class-acf-field-select.php:110 -msgctxt "Select2 JS matches_1" -msgid "One result is available, press enter to select it." -msgstr "Jedan rezultat dostupan, pritisnite enter za odabir." - -#: includes/fields/class-acf-field-select.php:25 -#: includes/fields/class-acf-field-taxonomy.php:763 -msgctxt "noun" -msgid "Select" -msgstr "Odaberi" - -#: includes/fields/class-acf-field-user.php:73 -msgid "User ID" -msgstr "" - -#: includes/fields/class-acf-field-user.php:72 -msgid "User Object" -msgstr "" - -#: includes/fields/class-acf-field-user.php:71 -msgid "User Array" -msgstr "" - -#: includes/fields/class-acf-field-user.php:59 -msgid "All user roles" -msgstr "Sve uloge" - -#: includes/fields/class-acf-field-user.php:51 -msgid "Filter by Role" -msgstr "Filtar prema ulozi" - -#: includes/fields/class-acf-field-user.php:15 includes/locations.php:101 -msgid "User" -msgstr "Korisnik" - -#: includes/fields/class-acf-field-separator.php:25 -msgid "Separator" -msgstr "Razdjelnik" - -#: includes/fields/class-acf-field-color_picker.php:75 -msgid "Select Color" -msgstr "Odaberite boju" - -#: includes/admin/post-types/admin-post-type.php:129 -#: includes/admin/post-types/admin-taxonomy.php:131 -#: includes/fields/class-acf-field-color_picker.php:73 -#: assets/build/js/acf-internal-post-type.js:72 -#: assets/build/js/acf-internal-post-type.js:86 -msgid "Default" -msgstr "Zadano" - -#: includes/admin/views/acf-post-type/advanced-settings.php:89 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:141 -#: includes/fields/class-acf-field-color_picker.php:71 -msgid "Clear" -msgstr "Ukloni" - -#: includes/fields/class-acf-field-color_picker.php:25 -msgid "Color Picker" -msgstr "Odabir boje" - -#: includes/fields/class-acf-field-date_time_picker.php:88 -msgctxt "Date Time Picker JS pmTextShort" -msgid "P" -msgstr "" - -#: includes/fields/class-acf-field-date_time_picker.php:87 -msgctxt "Date Time Picker JS pmText" -msgid "PM" -msgstr "" - -#: includes/fields/class-acf-field-date_time_picker.php:84 -msgctxt "Date Time Picker JS amTextShort" -msgid "A" -msgstr "" - -#: includes/fields/class-acf-field-date_time_picker.php:83 -msgctxt "Date Time Picker JS amText" -msgid "AM" -msgstr "" - -#: includes/fields/class-acf-field-date_time_picker.php:81 -msgctxt "Date Time Picker JS selectText" -msgid "Select" -msgstr "Odaberi" - -#: includes/fields/class-acf-field-date_time_picker.php:80 -msgctxt "Date Time Picker JS closeText" -msgid "Done" -msgstr "Završeno" - -#: includes/fields/class-acf-field-date_time_picker.php:79 -msgctxt "Date Time Picker JS currentText" -msgid "Now" -msgstr "" - -#: includes/fields/class-acf-field-date_time_picker.php:78 -msgctxt "Date Time Picker JS timezoneText" -msgid "Time Zone" -msgstr "Vremenska zona" - -#: includes/fields/class-acf-field-date_time_picker.php:77 -msgctxt "Date Time Picker JS microsecText" -msgid "Microsecond" -msgstr "Mikrosekunda" - -#: includes/fields/class-acf-field-date_time_picker.php:76 -msgctxt "Date Time Picker JS millisecText" -msgid "Millisecond" -msgstr "Milisekunda" - -#: includes/fields/class-acf-field-date_time_picker.php:75 -msgctxt "Date Time Picker JS secondText" -msgid "Second" -msgstr "Sekunda" - -#: includes/fields/class-acf-field-date_time_picker.php:74 -msgctxt "Date Time Picker JS minuteText" -msgid "Minute" -msgstr "Minuta" - -#: includes/fields/class-acf-field-date_time_picker.php:73 -msgctxt "Date Time Picker JS hourText" -msgid "Hour" -msgstr "Sat" - -#: includes/fields/class-acf-field-date_time_picker.php:72 -msgctxt "Date Time Picker JS timeText" -msgid "Time" -msgstr "Vrijeme" - -#: includes/fields/class-acf-field-date_time_picker.php:71 -msgctxt "Date Time Picker JS timeOnlyTitle" -msgid "Choose Time" -msgstr "Odaberi vrijeme" - -#: includes/fields/class-acf-field-date_time_picker.php:25 -msgid "Date Time Picker" -msgstr "Odabir datuma i sata" - -#: includes/fields/class-acf-field-accordion.php:106 -msgid "Endpoint" -msgstr "Prijelomna točka" - -#: includes/admin/views/acf-field-group/options.php:130 -#: includes/fields/class-acf-field-tab.php:115 -msgid "Left aligned" -msgstr "Lijevo poravnato" - -#: includes/admin/views/acf-field-group/options.php:129 -#: includes/fields/class-acf-field-tab.php:114 -msgid "Top aligned" -msgstr "Poravnato sa vrhom" - -#: includes/fields/class-acf-field-tab.php:110 -msgid "Placement" -msgstr "Pozicija" - -#: includes/fields/class-acf-field-tab.php:26 -msgid "Tab" -msgstr "Kartica" - -#: includes/fields/class-acf-field-url.php:162 -msgid "Value must be a valid URL" -msgstr "Vrijednost molja biti valjana" - -#: includes/fields/class-acf-field-link.php:177 -msgid "Link URL" -msgstr "Putanja poveznice" - -#: includes/fields/class-acf-field-link.php:176 -msgid "Link Array" -msgstr "Vrijednost kao niz" - -#: includes/fields/class-acf-field-link.php:145 -msgid "Opens in a new window/tab" -msgstr "Otvori u novom prozoru/kartici" - -#: includes/fields/class-acf-field-link.php:140 -msgid "Select Link" -msgstr "Odaberite poveznicu" - -#: includes/fields/class-acf-field-link.php:25 -msgid "Link" -msgstr "Poveznica" - -#: includes/fields/class-acf-field-email.php:25 -msgid "Email" -msgstr "Email" - -#: includes/fields/class-acf-field-number.php:188 -#: includes/fields/class-acf-field-range.php:217 -msgid "Step Size" -msgstr "Korak" - -#: includes/fields/class-acf-field-number.php:158 -#: includes/fields/class-acf-field-range.php:195 -msgid "Maximum Value" -msgstr "Maksimum" - -#: includes/fields/class-acf-field-number.php:148 -#: includes/fields/class-acf-field-range.php:184 -msgid "Minimum Value" -msgstr "Minimum" - -#: includes/fields/class-acf-field-range.php:25 -msgid "Range" -msgstr "Raspon" - -#: includes/fields/class-acf-field-button-group.php:175 -#: includes/fields/class-acf-field-checkbox.php:379 -#: includes/fields/class-acf-field-radio.php:220 -#: includes/fields/class-acf-field-select.php:399 -msgid "Both (Array)" -msgstr "Oboje (podatkovni niz)" - -#: includes/admin/views/acf-field-group/fields.php:52 -#: includes/fields/class-acf-field-button-group.php:174 -#: includes/fields/class-acf-field-checkbox.php:378 -#: includes/fields/class-acf-field-radio.php:219 -#: includes/fields/class-acf-field-select.php:398 -msgid "Label" -msgstr "Oznaka" - -#: includes/fields/class-acf-field-button-group.php:173 -#: includes/fields/class-acf-field-checkbox.php:377 -#: includes/fields/class-acf-field-radio.php:218 -#: includes/fields/class-acf-field-select.php:397 -msgid "Value" -msgstr "Vrijednost" - -#: includes/fields/class-acf-field-button-group.php:222 -#: includes/fields/class-acf-field-checkbox.php:441 -#: includes/fields/class-acf-field-radio.php:292 -msgid "Vertical" -msgstr "Vertikalno" - -#: includes/fields/class-acf-field-button-group.php:221 -#: includes/fields/class-acf-field-checkbox.php:442 -#: includes/fields/class-acf-field-radio.php:293 -msgid "Horizontal" -msgstr "Horizontalno" - -#: includes/fields/class-acf-field-button-group.php:148 -#: includes/fields/class-acf-field-checkbox.php:352 -#: includes/fields/class-acf-field-radio.php:193 -#: includes/fields/class-acf-field-select.php:370 -msgid "red : Red" -msgstr "crvena : Crvena" - -#: includes/fields/class-acf-field-button-group.php:148 -#: includes/fields/class-acf-field-checkbox.php:352 -#: includes/fields/class-acf-field-radio.php:193 -#: includes/fields/class-acf-field-select.php:370 -msgid "For more control, you may specify both a value and label like this:" -msgstr "Za bolju kontrolu unesite oboje, vrijednost i naziv, kao npr:" - -#: includes/fields/class-acf-field-button-group.php:148 -#: includes/fields/class-acf-field-checkbox.php:352 -#: includes/fields/class-acf-field-radio.php:193 -#: includes/fields/class-acf-field-select.php:370 -msgid "Enter each choice on a new line." -msgstr "Svaki odabir je potrebno dodati kao novi red." - -#: includes/fields/class-acf-field-button-group.php:147 -#: includes/fields/class-acf-field-checkbox.php:351 -#: includes/fields/class-acf-field-radio.php:192 -#: includes/fields/class-acf-field-select.php:369 -msgid "Choices" -msgstr "Mogući odabiri" - -#: includes/fields/class-acf-field-button-group.php:24 -msgid "Button Group" -msgstr "Skup dugmadi" - -#: includes/fields/class-acf-field-button-group.php:194 -#: includes/fields/class-acf-field-page_link.php:538 -#: includes/fields/class-acf-field-post_object.php:448 -#: includes/fields/class-acf-field-radio.php:238 -#: includes/fields/class-acf-field-select.php:429 -#: includes/fields/class-acf-field-taxonomy.php:772 -#: includes/fields/class-acf-field-user.php:103 -msgid "Allow Null" -msgstr "Dozvoli null vrijednost?" - -#: includes/fields/class-acf-field-page_link.php:263 -#: includes/fields/class-acf-field-post_object.php:257 -#: includes/fields/class-acf-field-taxonomy.php:930 -msgid "Parent" -msgstr "Matični" - -#: includes/fields/class-acf-field-wysiwyg.php:390 -msgid "TinyMCE will not be initialized until field is clicked" -msgstr "" - -#: includes/fields/class-acf-field-wysiwyg.php:389 -msgid "Delay Initialization" -msgstr "Odgodi učitavanje?" - -#: includes/fields/class-acf-field-wysiwyg.php:378 -msgid "Show Media Upload Buttons" -msgstr "Prikaži gumb za odabir datoteka?" - -#: includes/fields/class-acf-field-wysiwyg.php:362 -msgid "Toolbar" -msgstr "Alatna traka" - -#: includes/fields/class-acf-field-wysiwyg.php:354 -msgid "Text Only" -msgstr "Samo tekstualno" - -#: includes/fields/class-acf-field-wysiwyg.php:353 -msgid "Visual Only" -msgstr "Samo vizualni" - -#: includes/fields/class-acf-field-wysiwyg.php:352 -msgid "Visual & Text" -msgstr "Vizualno i tekstualno" - -#: includes/fields/class-acf-field-wysiwyg.php:347 -msgid "Tabs" -msgstr "Kartice" - -#: includes/fields/class-acf-field-wysiwyg.php:285 -msgid "Click to initialize TinyMCE" -msgstr "Aktiviraj vizualno uređivanje na klik" - -#: includes/fields/class-acf-field-wysiwyg.php:279 -msgctxt "Name for the Text editor tab (formerly HTML)" -msgid "Text" -msgstr "Tekst polje" - -#: includes/fields/class-acf-field-wysiwyg.php:278 -msgid "Visual" -msgstr "Vizualno" - -#: includes/fields/class-acf-field-text.php:189 -#: includes/fields/class-acf-field-textarea.php:236 -msgid "Value must not exceed %d characters" -msgstr "" - -#: includes/fields/class-acf-field-text.php:124 -#: includes/fields/class-acf-field-textarea.php:124 -msgid "Leave blank for no limit" -msgstr "Ostavite prazno za neograničeno" - -#: includes/fields/class-acf-field-text.php:123 -#: includes/fields/class-acf-field-textarea.php:123 -msgid "Character Limit" -msgstr "Ograniči broj znakova" - -#: includes/fields/class-acf-field-email.php:158 -#: includes/fields/class-acf-field-number.php:209 -#: includes/fields/class-acf-field-password.php:105 -#: includes/fields/class-acf-field-range.php:239 -#: includes/fields/class-acf-field-text.php:164 -msgid "Appears after the input" -msgstr "Prikazuje se iza polja" - -#: includes/fields/class-acf-field-email.php:157 -#: includes/fields/class-acf-field-number.php:208 -#: includes/fields/class-acf-field-password.php:104 -#: includes/fields/class-acf-field-range.php:238 -#: includes/fields/class-acf-field-text.php:163 -msgid "Append" -msgstr "Umetni na kraj" - -#: includes/fields/class-acf-field-email.php:148 -#: includes/fields/class-acf-field-number.php:199 -#: includes/fields/class-acf-field-password.php:95 -#: includes/fields/class-acf-field-range.php:229 -#: includes/fields/class-acf-field-text.php:154 -msgid "Appears before the input" -msgstr "Prijazuje se ispred polja" - -#: includes/fields/class-acf-field-email.php:147 -#: includes/fields/class-acf-field-number.php:198 -#: includes/fields/class-acf-field-password.php:94 -#: includes/fields/class-acf-field-range.php:228 -#: includes/fields/class-acf-field-text.php:153 -msgid "Prepend" -msgstr "Umetni ispred" - -#: includes/fields/class-acf-field-email.php:138 -#: includes/fields/class-acf-field-number.php:179 -#: includes/fields/class-acf-field-password.php:85 -#: includes/fields/class-acf-field-text.php:144 -#: includes/fields/class-acf-field-textarea.php:156 -#: includes/fields/class-acf-field-url.php:122 -msgid "Appears within the input" -msgstr "Prikazuje se unutar polja" - -#: includes/fields/class-acf-field-email.php:137 -#: includes/fields/class-acf-field-number.php:178 -#: includes/fields/class-acf-field-password.php:84 -#: includes/fields/class-acf-field-text.php:143 -#: includes/fields/class-acf-field-textarea.php:155 -#: includes/fields/class-acf-field-url.php:121 -msgid "Placeholder Text" -msgstr "Zadana vrijednost" - -#: includes/fields/class-acf-field-button-group.php:158 -#: includes/fields/class-acf-field-email.php:118 -#: includes/fields/class-acf-field-number.php:129 -#: includes/fields/class-acf-field-radio.php:203 -#: includes/fields/class-acf-field-range.php:165 -#: includes/fields/class-acf-field-text.php:104 -#: includes/fields/class-acf-field-textarea.php:104 -#: includes/fields/class-acf-field-url.php:102 -#: includes/fields/class-acf-field-wysiwyg.php:312 -msgid "Appears when creating a new post" -msgstr "Prikazuje se prilikom kreiranje nove objave" - -#: includes/fields/class-acf-field-text.php:25 -msgid "Text" -msgstr "Tekst" - -#: includes/fields/class-acf-field-relationship.php:794 -msgid "%1$s requires at least %2$s selection" -msgid_plural "%1$s requires at least %2$s selections" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: includes/fields/class-acf-field-post_object.php:417 -#: includes/fields/class-acf-field-relationship.php:644 -msgid "Post ID" -msgstr "ID objave" - -#: includes/fields/class-acf-field-post_object.php:17 -#: includes/fields/class-acf-field-post_object.php:416 -#: includes/fields/class-acf-field-relationship.php:643 -msgid "Post Object" -msgstr "Objekt" - -#: includes/fields/class-acf-field-relationship.php:676 -msgid "Maximum Posts" -msgstr "" - -#: includes/fields/class-acf-field-relationship.php:666 -msgid "Minimum Posts" -msgstr "" - -#: includes/admin/views/acf-field-group/options.php:183 -#: includes/admin/views/acf-post-type/advanced-settings.php:29 -#: includes/fields/class-acf-field-relationship.php:701 -msgid "Featured Image" -msgstr "Istaknuta slika" - -#: includes/fields/class-acf-field-relationship.php:697 -msgid "Selected elements will be displayed in each result" -msgstr "Odabrani elementi bit će prikazani u svakom rezultatu" - -#: includes/fields/class-acf-field-relationship.php:696 -msgid "Elements" -msgstr "Elementi" - -#: includes/fields/class-acf-field-relationship.php:630 -#: includes/fields/class-acf-field-taxonomy.php:20 -#: includes/fields/class-acf-field-taxonomy.php:692 -#: includes/locations/class-acf-location-taxonomy.php:22 -msgid "Taxonomy" -msgstr "Taksonomija" - -#: includes/fields/class-acf-field-relationship.php:629 -#: includes/locations/class-acf-location-post-type.php:22 -#: includes/post-types/class-acf-post-type.php:92 -msgid "Post Type" -msgstr "Tip objave" - -#: includes/fields/class-acf-field-relationship.php:623 -msgid "Filters" -msgstr "Filteri" - -#: includes/fields/class-acf-field-page_link.php:499 -#: includes/fields/class-acf-field-post_object.php:404 -#: includes/fields/class-acf-field-relationship.php:616 -msgid "All taxonomies" -msgstr "Sve taksonomije" - -#: includes/fields/class-acf-field-page_link.php:491 -#: includes/fields/class-acf-field-post_object.php:396 -#: includes/fields/class-acf-field-relationship.php:608 -msgid "Filter by Taxonomy" -msgstr "Filtriraj prema taksonomiji" - -#: includes/fields/class-acf-field-page_link.php:469 -#: includes/fields/class-acf-field-post_object.php:374 -#: includes/fields/class-acf-field-relationship.php:586 -msgid "All post types" -msgstr "Svi tipovi" - -#: includes/fields/class-acf-field-page_link.php:461 -#: includes/fields/class-acf-field-post_object.php:366 -#: includes/fields/class-acf-field-relationship.php:578 -msgid "Filter by Post Type" -msgstr "Filtriraj po tipu objave" - -#: includes/fields/class-acf-field-relationship.php:476 -msgid "Search..." -msgstr "Pretraga…" - -#: includes/fields/class-acf-field-relationship.php:406 -msgid "Select taxonomy" -msgstr "Odebarite taksonomiju" - -#: includes/fields/class-acf-field-relationship.php:397 -msgid "Select post type" -msgstr "Odaberi vrstu objave" - -#: includes/fields/class-acf-field-relationship.php:61 -#: assets/build/js/acf-input.js:3930 assets/build/js/acf-input.js:4214 -msgid "No matches found" -msgstr "Nema rezultata" - -#: includes/fields/class-acf-field-relationship.php:60 -#: assets/build/js/acf-input.js:3913 assets/build/js/acf-input.js:4193 -msgid "Loading" -msgstr "Učitavanje" - -#: includes/fields/class-acf-field-relationship.php:59 -#: assets/build/js/acf-input.js:3818 assets/build/js/acf-input.js:4084 -msgid "Maximum values reached ( {max} values )" -msgstr "Već ste dodali najviše dozvoljenih vrijednosti (najviše: {max})" - -#: includes/fields/class-acf-field-relationship.php:17 -msgid "Relationship" -msgstr "Veza" - -#: includes/fields/class-acf-field-file.php:291 -#: includes/fields/class-acf-field-image.php:317 -msgid "Comma separated list. Leave blank for all types" -msgstr "" -"Dodaj kao niz odvojen zarezom, npr: .txt, .jpg, ... Ukoliko je prazno, sve " -"datoteke su dozvoljene" - -#: includes/fields/class-acf-field-file.php:290 -#: includes/fields/class-acf-field-image.php:316 -msgid "Allowed File Types" -msgstr "Dozvoljeni tipovi datoteka" - -#: includes/fields/class-acf-field-file.php:278 -#: includes/fields/class-acf-field-image.php:280 -msgid "Maximum" -msgstr "Maksimum" - -#: includes/fields/class-acf-field-file.php:154 -#: includes/fields/class-acf-field-file.php:270 -#: includes/fields/class-acf-field-file.php:282 -#: includes/fields/class-acf-field-image.php:271 -#: includes/fields/class-acf-field-image.php:307 -msgid "File size" -msgstr "Veličina datoteke" - -#: includes/fields/class-acf-field-image.php:245 -#: includes/fields/class-acf-field-image.php:281 -msgid "Restrict which images can be uploaded" -msgstr "Ograniči koje slike mogu biti dodane" - -#: includes/fields/class-acf-field-file.php:266 -#: includes/fields/class-acf-field-image.php:244 -msgid "Minimum" -msgstr "Minimum" - -#: includes/fields/class-acf-field-file.php:235 -#: includes/fields/class-acf-field-image.php:210 -msgid "Uploaded to post" -msgstr "Dodani uz trenutnu objavu" - -#: includes/fields/class-acf-field-file.php:234 -#: includes/fields/class-acf-field-image.php:209 -#: includes/locations/class-acf-location-attachment.php:73 -#: includes/locations/class-acf-location-comment.php:61 -#: includes/locations/class-acf-location-nav-menu.php:74 -#: includes/locations/class-acf-location-taxonomy.php:63 -#: includes/locations/class-acf-location-user-form.php:71 -#: includes/locations/class-acf-location-user-role.php:78 -#: includes/locations/class-acf-location-widget.php:65 -msgid "All" -msgstr "Sve" - -#: includes/fields/class-acf-field-file.php:229 -#: includes/fields/class-acf-field-image.php:204 -msgid "Limit the media library choice" -msgstr "Ograniči odabir iz zbirke" - -#: includes/fields/class-acf-field-file.php:228 -#: includes/fields/class-acf-field-image.php:203 -msgid "Library" -msgstr "Zbirka" - -#: includes/fields/class-acf-field-image.php:336 -msgid "Preview Size" -msgstr "Veličina prikaza prilikom uređivanja stranice" - -#: includes/fields/class-acf-field-image.php:195 -msgid "Image ID" -msgstr "ID slike" - -#: includes/fields/class-acf-field-image.php:194 -msgid "Image URL" -msgstr "Putanja slike" - -#: includes/fields/class-acf-field-image.php:193 -msgid "Image Array" -msgstr "Podaci kao niz" - -#: includes/fields/class-acf-field-button-group.php:168 -#: includes/fields/class-acf-field-checkbox.php:372 -#: includes/fields/class-acf-field-file.php:213 -#: includes/fields/class-acf-field-link.php:171 -#: includes/fields/class-acf-field-radio.php:213 -msgid "Specify the returned value on front end" -msgstr "Vrijednost koja će biti vraćena na pristupnom dijelu" - -#: includes/fields/class-acf-field-button-group.php:167 -#: includes/fields/class-acf-field-checkbox.php:371 -#: includes/fields/class-acf-field-file.php:212 -#: includes/fields/class-acf-field-link.php:170 -#: includes/fields/class-acf-field-radio.php:212 -#: includes/fields/class-acf-field-taxonomy.php:736 -msgid "Return Value" -msgstr "Vrati vrijednost" - -#: includes/fields/class-acf-field-image.php:162 -msgid "Add Image" -msgstr "Dodaj sliku" - -#: includes/fields/class-acf-field-image.php:162 -msgid "No image selected" -msgstr "Nema odabranih slika" - -#: includes/assets.php:352 includes/fields/class-acf-field-file.php:162 -#: includes/fields/class-acf-field-image.php:142 -#: includes/fields/class-acf-field-link.php:145 assets/build/js/acf.js:1563 -#: assets/build/js/acf.js:1657 -msgid "Remove" -msgstr "Ukloni" - -#: includes/admin/views/acf-field-group/field.php:76 -#: includes/fields/class-acf-field-file.php:160 -#: includes/fields/class-acf-field-image.php:140 -#: includes/fields/class-acf-field-link.php:145 -msgid "Edit" -msgstr "Uredi" - -#: includes/fields/class-acf-field-image.php:70 includes/media.php:55 -#: assets/build/js/acf-input.js:6837 assets/build/js/acf-input.js:7320 -msgid "All images" -msgstr "Sve slike" - -#: includes/fields/class-acf-field-image.php:69 -#: assets/build/js/acf-input.js:3181 assets/build/js/acf-input.js:3399 -msgid "Update Image" -msgstr "Ažuriraj sliku" - -#: includes/fields/class-acf-field-image.php:68 -#: assets/build/js/acf-input.js:3180 assets/build/js/acf-input.js:3398 -msgid "Edit Image" -msgstr "Uredi sliku" - -#: includes/fields/class-acf-field-image.php:67 -#: assets/build/js/acf-input.js:3156 assets/build/js/acf-input.js:3373 -msgid "Select Image" -msgstr "Odaberi sliku" - -#: includes/fields/class-acf-field-image.php:25 -msgid "Image" -msgstr "Slika" - -#: includes/fields/class-acf-field-message.php:125 -msgid "Allow HTML markup to display as visible text instead of rendering" -msgstr "Prikažite HTML kodove kao tekst umjesto iscrtavanja" - -#: includes/fields/class-acf-field-message.php:124 -msgid "Escape HTML" -msgstr "Onemogući HTML" - -#: includes/fields/class-acf-field-message.php:116 -#: includes/fields/class-acf-field-textarea.php:172 -msgid "No Formatting" -msgstr "Bez obrade" - -#: includes/fields/class-acf-field-message.php:115 -#: includes/fields/class-acf-field-textarea.php:171 -msgid "Automatically add <br>" -msgstr "Dodaj novi red - <br>" - -#: includes/fields/class-acf-field-message.php:114 -#: includes/fields/class-acf-field-textarea.php:170 -msgid "Automatically add paragraphs" -msgstr "Dodaj paragraf" - -#: includes/fields/class-acf-field-message.php:110 -#: includes/fields/class-acf-field-textarea.php:166 -msgid "Controls how new lines are rendered" -msgstr "Određuje način prikaza novih linija" - -#: includes/fields/class-acf-field-message.php:109 -#: includes/fields/class-acf-field-textarea.php:165 -msgid "New Lines" -msgstr "Broj linija" - -#: includes/fields/class-acf-field-date_picker.php:232 -#: includes/fields/class-acf-field-date_time_picker.php:220 -msgid "Week Starts On" -msgstr "Tjedan počinje" - -#: includes/fields/class-acf-field-date_picker.php:201 -msgid "The format used when saving a value" -msgstr "Format koji će biti spremljen" - -#: includes/fields/class-acf-field-date_picker.php:200 -msgid "Save Format" -msgstr "Spremi format" - -#: includes/fields/class-acf-field-date_picker.php:67 -msgctxt "Date Picker JS weekHeader" -msgid "Wk" -msgstr "Tjedan" - -#: includes/fields/class-acf-field-date_picker.php:66 -msgctxt "Date Picker JS prevText" -msgid "Prev" -msgstr "Prethodni" - -#: includes/fields/class-acf-field-date_picker.php:65 -msgctxt "Date Picker JS nextText" -msgid "Next" -msgstr "Slijedeći" - -#: includes/fields/class-acf-field-date_picker.php:64 -msgctxt "Date Picker JS currentText" -msgid "Today" -msgstr "Danas" - -#: includes/fields/class-acf-field-date_picker.php:63 -msgctxt "Date Picker JS closeText" -msgid "Done" -msgstr "Završeno" - -#: includes/fields/class-acf-field-date_picker.php:25 -msgid "Date Picker" -msgstr "Odabir datuma" - -#: includes/fields/class-acf-field-image.php:248 -#: includes/fields/class-acf-field-image.php:284 -#: includes/fields/class-acf-field-oembed.php:268 -msgid "Width" -msgstr "Širina" - -#: includes/fields/class-acf-field-oembed.php:265 -#: includes/fields/class-acf-field-oembed.php:277 -msgid "Embed Size" -msgstr "Dimenzija umetka" - -#: includes/fields/class-acf-field-oembed.php:222 -msgid "Enter URL" -msgstr "Poveznica" - -#: includes/fields/class-acf-field-oembed.php:25 -msgid "oEmbed" -msgstr "oEmbed" - -#: includes/fields/class-acf-field-true_false.php:184 -msgid "Text shown when inactive" -msgstr "Tekst prikazan dok je polje neaktivno" - -#: includes/fields/class-acf-field-true_false.php:183 -msgid "Off Text" -msgstr "Tekst za neaktivno stanje" - -#: includes/fields/class-acf-field-true_false.php:168 -msgid "Text shown when active" -msgstr "Tekst prikazan dok je polje aktivno" - -#: includes/fields/class-acf-field-true_false.php:167 -msgid "On Text" -msgstr "Tekst za aktivno stanje" - -#: includes/fields/class-acf-field-select.php:450 -#: includes/fields/class-acf-field-true_false.php:199 -msgid "Stylized UI" -msgstr "Stilizirano sučelje" - -#: includes/fields/class-acf-field-button-group.php:157 -#: includes/fields/class-acf-field-checkbox.php:361 -#: includes/fields/class-acf-field-color_picker.php:156 -#: includes/fields/class-acf-field-email.php:117 -#: includes/fields/class-acf-field-number.php:128 -#: includes/fields/class-acf-field-radio.php:202 -#: includes/fields/class-acf-field-range.php:164 -#: includes/fields/class-acf-field-select.php:380 -#: includes/fields/class-acf-field-text.php:103 -#: includes/fields/class-acf-field-textarea.php:103 -#: includes/fields/class-acf-field-true_false.php:147 -#: includes/fields/class-acf-field-url.php:101 -#: includes/fields/class-acf-field-wysiwyg.php:311 -msgid "Default Value" -msgstr "Zadana vrijednost" - -#: includes/fields/class-acf-field-true_false.php:138 -msgid "Displays text alongside the checkbox" -msgstr "Prikazuje tekst uz odabirni okvir" - -#: includes/fields/class-acf-field-message.php:26 -#: includes/fields/class-acf-field-message.php:99 -#: includes/fields/class-acf-field-true_false.php:137 -msgid "Message" -msgstr "Poruka" - -#: includes/assets.php:351 includes/fields/class-acf-field-true_false.php:86 -#: includes/fields/class-acf-field-true_false.php:187 -#: assets/build/js/acf.js:1740 assets/build/js/acf.js:1857 -msgid "No" -msgstr "Ne" - -#: includes/assets.php:350 includes/fields/class-acf-field-true_false.php:83 -#: includes/fields/class-acf-field-true_false.php:171 -#: assets/build/js/acf.js:1739 assets/build/js/acf.js:1856 -msgid "Yes" -msgstr "Da" - -#: includes/fields/class-acf-field-true_false.php:25 -msgid "True / False" -msgstr "True / False" - -#: includes/fields/class-acf-field-group.php:474 -msgid "Row" -msgstr "Red" - -#: includes/fields/class-acf-field-group.php:473 -msgid "Table" -msgstr "Tablica" - -#: includes/admin/post-types/admin-field-group.php:140 -#: includes/fields/class-acf-field-group.php:472 -msgid "Block" -msgstr "Blok" - -#: includes/fields/class-acf-field-group.php:467 -msgid "Specify the style used to render the selected fields" -msgstr "Odaberite način prikaza odabranih polja" - -#: includes/fields.php:356 includes/fields/class-acf-field-button-group.php:215 -#: includes/fields/class-acf-field-checkbox.php:435 -#: includes/fields/class-acf-field-group.php:466 -#: includes/fields/class-acf-field-radio.php:286 -msgid "Layout" -msgstr "Format" - -#: includes/fields/class-acf-field-group.php:450 -msgid "Sub Fields" -msgstr "Pod polja" - -#: includes/fields/class-acf-field-group.php:25 -msgid "Group" -msgstr "Skup polja" - -#: includes/fields/class-acf-field-google-map.php:235 -msgid "Customize the map height" -msgstr "" - -#: includes/fields/class-acf-field-google-map.php:234 -#: includes/fields/class-acf-field-image.php:259 -#: includes/fields/class-acf-field-image.php:295 -#: includes/fields/class-acf-field-oembed.php:280 -msgid "Height" -msgstr "Visina" - -#: includes/fields/class-acf-field-google-map.php:223 -msgid "Set the initial zoom level" -msgstr "Postavi zadanu vrijednost uvećanja" - -#: includes/fields/class-acf-field-google-map.php:222 -msgid "Zoom" -msgstr "Uvećaj" - -#: includes/fields/class-acf-field-google-map.php:196 -#: includes/fields/class-acf-field-google-map.php:209 -msgid "Center the initial map" -msgstr "Centriraj prilikom učitavanja" - -#: includes/fields/class-acf-field-google-map.php:195 -#: includes/fields/class-acf-field-google-map.php:208 -msgid "Center" -msgstr "Centriraj" - -#: includes/fields/class-acf-field-google-map.php:163 -msgid "Search for address..." -msgstr "Pretraži po adresi..." - -#: includes/fields/class-acf-field-google-map.php:160 -msgid "Find current location" -msgstr "Pronađi trenutnu lokaciju" - -#: includes/fields/class-acf-field-google-map.php:159 -msgid "Clear location" -msgstr "Ukloni lokaciju" - -#: includes/fields/class-acf-field-google-map.php:158 -#: includes/fields/class-acf-field-relationship.php:628 -msgid "Search" -msgstr "Pretraži" - -#: includes/fields/class-acf-field-google-map.php:63 -#: assets/build/js/acf-input.js:2840 assets/build/js/acf-input.js:3026 -msgid "Sorry, this browser does not support geolocation" -msgstr "Nažalost, ovaj preglednik ne podržava geo lociranje" - -#: includes/fields/class-acf-field-google-map.php:25 -msgid "Google Map" -msgstr "Google mapa" - -#: includes/fields/class-acf-field-date_picker.php:212 -#: includes/fields/class-acf-field-date_time_picker.php:201 -#: includes/fields/class-acf-field-time_picker.php:132 -msgid "The format returned via template functions" -msgstr "Format koji vraća funkcija" - -#: includes/fields/class-acf-field-color_picker.php:180 -#: includes/fields/class-acf-field-date_picker.php:211 -#: includes/fields/class-acf-field-date_time_picker.php:200 -#: includes/fields/class-acf-field-image.php:187 -#: includes/fields/class-acf-field-post_object.php:411 -#: includes/fields/class-acf-field-relationship.php:638 -#: includes/fields/class-acf-field-select.php:391 -#: includes/fields/class-acf-field-time_picker.php:131 -#: includes/fields/class-acf-field-user.php:66 -msgid "Return Format" -msgstr "Format za prikaz na web stranici" - -#: includes/fields/class-acf-field-date_picker.php:190 -#: includes/fields/class-acf-field-date_picker.php:221 -#: includes/fields/class-acf-field-date_time_picker.php:192 -#: includes/fields/class-acf-field-date_time_picker.php:210 -#: includes/fields/class-acf-field-time_picker.php:123 -#: includes/fields/class-acf-field-time_picker.php:139 -msgid "Custom:" -msgstr "Prilagođeno:" - -#: includes/fields/class-acf-field-date_picker.php:182 -#: includes/fields/class-acf-field-date_time_picker.php:183 -#: includes/fields/class-acf-field-time_picker.php:116 -msgid "The format displayed when editing a post" -msgstr "Format za prikaz prilikom administracije" - -#: includes/fields/class-acf-field-date_picker.php:181 -#: includes/fields/class-acf-field-date_time_picker.php:182 -#: includes/fields/class-acf-field-time_picker.php:115 -msgid "Display Format" -msgstr "Format prikaza" - -#: includes/fields/class-acf-field-time_picker.php:25 -msgid "Time Picker" -msgstr "Odabri vremena (sat i minute)" - -#. translators: counts for inactive field groups -#: acf.php:503 -msgid "Inactive (%s)" -msgid_plural "Inactive (%s)" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: acf.php:462 -msgid "No Fields found in Trash" -msgstr "Nije pronađeno nijedno polje u smeću" - -#: acf.php:461 -msgid "No Fields found" -msgstr "Nije pronađeno nijedno polje" - -#: acf.php:460 -msgid "Search Fields" -msgstr "Pretraži polja" - -#: acf.php:459 -msgid "View Field" -msgstr "Pregledaj polje" - -#: acf.php:458 includes/admin/views/acf-field-group/fields.php:115 -msgid "New Field" -msgstr "Dodaj polje" - -#: acf.php:457 -msgid "Edit Field" -msgstr "Uredi polje" - -#: acf.php:456 -msgid "Add New Field" -msgstr "Dodaj polje" - -#: acf.php:454 -msgid "Field" -msgstr "Polje" - -#: acf.php:453 includes/admin/post-types/admin-field-group.php:163 -#: includes/admin/post-types/admin-field-groups.php:119 -#: includes/admin/views/acf-field-group/fields.php:32 -msgid "Fields" -msgstr "Polja" - -#: acf.php:428 -msgid "No Field Groups found in Trash" -msgstr "Nije pronađena nijedna stranica" - -#: acf.php:427 -msgid "No Field Groups found" -msgstr "Niste dodali nijedno polje" - -#: acf.php:426 -msgid "Search Field Groups" -msgstr "Pretraži polja" - -#: acf.php:425 -msgid "View Field Group" -msgstr "Pregledaj polje" - -#: acf.php:424 -msgid "New Field Group" -msgstr "Novo polje" - -#: acf.php:423 -msgid "Edit Field Group" -msgstr "Uredi polje" - -#: acf.php:422 -msgid "Add New Field Group" -msgstr "Dodaj novo polje" - -#: acf.php:421 acf.php:455 -#: includes/admin/views/acf-post-type/advanced-settings.php:219 -#: includes/admin/views/acf-post-type/advanced-settings.php:221 -#: includes/post-types/class-acf-post-type.php:93 -#: includes/post-types/class-acf-taxonomy.php:92 -msgid "Add New" -msgstr "Dodaj" - -#: acf.php:420 -msgid "Field Group" -msgstr "Grupa polja" - -#: acf.php:419 includes/admin/post-types/admin-field-groups.php:78 -#: includes/admin/post-types/admin-post-types.php:138 -#: includes/admin/post-types/admin-taxonomies.php:138 -msgid "Field Groups" -msgstr "Grupe polja" - -#. Description of the plugin -msgid "Customize WordPress with powerful, professional and intuitive fields." -msgstr "" - -#. Plugin URI of the plugin -msgid "https://www.advancedcustomfields.com" -msgstr "" - -#. Plugin Name of the plugin -#: acf.php:94 -msgid "Advanced Custom Fields" -msgstr "Advanced Custom Fields" - -#: pro/acf-pro.php:27 -msgid "Advanced Custom Fields PRO" -msgstr "Advanced Custom Fields PRO" - -#: pro/blocks.php:170 -#, fuzzy -#| msgid "%s value is required" -msgid "Block type name is required." -msgstr "%s je obavezno" - -#. translators: The name of the block type -#: pro/blocks.php:178 -msgid "Block type \"%s\" is already registered." -msgstr "" - -#: pro/blocks.php:726 -msgid "Switch to Edit" -msgstr "" - -#: pro/blocks.php:727 -msgid "Switch to Preview" -msgstr "" - -#: pro/blocks.php:728 -msgid "Change content alignment" -msgstr "" - -#. translators: %s: Block type title -#: pro/blocks.php:731 -#, fuzzy -#| msgid "Settings" -msgid "%s settings" -msgstr "Postavke" - -#: pro/blocks.php:936 -msgid "This block contains no editable fields." -msgstr "" - -#. translators: %s: an admin URL to the field group edit screen -#: pro/blocks.php:942 -msgid "" -"Assign a field group to add fields to " -"this block." -msgstr "" - -#: pro/options-page.php:78 -msgid "Options Updated" -msgstr "Postavke spremljene" - -#: pro/updates.php:99 -#, fuzzy -#| msgid "" -#| "To enable updates, please enter your license key on the Updates page. If you don't have a licence key, please see details & pricing." -msgid "" -"To enable updates, please enter your license key on the Updates page. If you don't have a licence key, please see details & pricing." -msgstr "" -"Da bi omogućili automatsko ažuriranje, molimo unesite licencu na stranici ažuriranja. Ukoliko nemate licencu, pogledajte opcije i cijene." - -#: pro/updates.php:159 -msgid "" -"ACF Activation Error. Your defined license key has changed, but an " -"error occurred when deactivating your old licence" -msgstr "" - -#: pro/updates.php:154 -msgid "" -"ACF Activation Error. Your defined license key has changed, but an " -"error occurred when connecting to activation server" -msgstr "" - -#: pro/updates.php:192 -msgid "ACF Activation Error" -msgstr "" - -#: pro/updates.php:187 -#, fuzzy -#| msgid "Error. Could not connect to update server" -msgid "" -"ACF Activation Error. An error occurred when connecting to activation " -"server" -msgstr "Greška. Greška prilikom spajanja na server" - -#: pro/updates.php:279 -msgid "Check Again" -msgstr "Provjeri ponovno" - -#: pro/updates.php:593 -#, fuzzy -#| msgid "Error. Could not connect to update server" -msgid "ACF Activation Error. Could not connect to activation server" -msgstr "Greška. Greška prilikom spajanja na server" - -#: pro/admin/admin-options-page.php:195 -msgid "Publish" -msgstr "Objavi" - -#: pro/admin/admin-options-page.php:199 -msgid "" -"No Custom Field Groups found for this options page. Create a " -"Custom Field Group" -msgstr "" -"Niste dodali nijedan skup polja na ovu stranicu, Dodaj skup " -"polja" - -#: pro/admin/admin-updates.php:52 -msgid "Error. Could not connect to update server" -msgstr "Greška. Greška prilikom spajanja na server" - -#: pro/admin/admin-updates.php:212 -msgid "" -"Error. Could not authenticate update package. Please check again or " -"deactivate and reactivate your ACF PRO license." -msgstr "" - -#: pro/admin/admin-updates.php:199 -msgid "" -"Error. Your license for this site has expired or been deactivated. " -"Please reactivate your ACF PRO license." -msgstr "" - -#: pro/fields/class-acf-field-clone.php:27, -#: pro/fields/class-acf-field-repeater.php:31 -msgid "" -"Allows you to select and display existing fields. It does not duplicate any " -"fields in the database, but loads and displays the selected fields at run-" -"time. The Clone field can either replace itself with the selected fields or " -"display the selected fields as a group of subfields." -msgstr "" - -#: pro/fields/class-acf-field-clone.php:819 -msgid "Select one or more fields you wish to clone" -msgstr "Odaberite jedno ili više polja koja želite klonirati" - -#: pro/fields/class-acf-field-clone.php:838 -msgid "Display" -msgstr "Prikaz" - -#: pro/fields/class-acf-field-clone.php:839 -msgid "Specify the style used to render the clone field" -msgstr "Odaberite način prikaza kloniranog polja" - -#: pro/fields/class-acf-field-clone.php:844 -msgid "Group (displays selected fields in a group within this field)" -msgstr "" -"Skupno (Prikazuje odabrana polja kao dodatni skup unutar trenutnog polja)" - -#: pro/fields/class-acf-field-clone.php:845 -msgid "Seamless (replaces this field with selected fields)" -msgstr "Zamjena (Prikazuje odabrana polja umjesto trenutnog polja)" - -#: pro/fields/class-acf-field-clone.php:868 -msgid "Labels will be displayed as %s" -msgstr "Oznake će biti prikazane kao %s" - -#: pro/fields/class-acf-field-clone.php:873 -msgid "Prefix Field Labels" -msgstr "Dodaj prefiks ispred oznake" - -#: pro/fields/class-acf-field-clone.php:883 -msgid "Values will be saved as %s" -msgstr "Vrijednosti će biti spremljene kao %s" - -#: pro/fields/class-acf-field-clone.php:888 -msgid "Prefix Field Names" -msgstr "Dodaj prefiks ispred naziva polja" - -#: pro/fields/class-acf-field-clone.php:1005 -msgid "Unknown field" -msgstr "Nepoznato polje" - -#: pro/fields/class-acf-field-clone.php:1042 -msgid "Unknown field group" -msgstr "Nepoznat skup polja" - -#: pro/fields/class-acf-field-clone.php:1046 -msgid "All fields from %s field group" -msgstr "Sva polje iz %s skupa polja" - -#: pro/fields/class-acf-field-flexible-content.php:27 -msgid "" -"Allows you to define, create and manage content with total control by " -"creating layouts that contain subfields that content editors can choose from." -msgstr "" - -#: pro/fields/class-acf-field-flexible-content.php:36, -#: pro/fields/class-acf-field-repeater.php:103, -#: pro/fields/class-acf-field-repeater.php:297 -msgid "Add Row" -msgstr "Dodaj red" - -#: pro/fields/class-acf-field-flexible-content.php:76, -#: pro/fields/class-acf-field-flexible-content.php:943, -#: pro/fields/class-acf-field-flexible-content.php:1022 -#, fuzzy -#| msgid "layout" -msgid "layout" -msgid_plural "layouts" -msgstr[0] "raspored" -msgstr[1] "raspored" -msgstr[2] "raspored" - -#: pro/fields/class-acf-field-flexible-content.php:77 -msgid "layouts" -msgstr "rasporedi" - -#: pro/fields/class-acf-field-flexible-content.php:81, -#: pro/fields/class-acf-field-flexible-content.php:942, -#: pro/fields/class-acf-field-flexible-content.php:1021 -msgid "This field requires at least {min} {label} {identifier}" -msgstr "Polje mora sadržavati najmanje {min} {label} {identifier}" - -#: pro/fields/class-acf-field-flexible-content.php:82 -#, fuzzy -#| msgid "This field has a limit of {max} {identifier}" -msgid "This field has a limit of {max} {label} {identifier}" -msgstr "Polje je ograničeno na najviše {max} {identifier}" - -#: pro/fields/class-acf-field-flexible-content.php:85 -msgid "{available} {label} {identifier} available (max {max})" -msgstr "{available} {label} {identifier} preostalo (najviše {max})" - -#: pro/fields/class-acf-field-flexible-content.php:86 -msgid "{required} {label} {identifier} required (min {min})" -msgstr "{required} {label} {identifier} obavezno (najmanje {min})" - -#: pro/fields/class-acf-field-flexible-content.php:89 -msgid "Flexible Content requires at least 1 layout" -msgstr "Potrebno je unijeti najmanje jedno fleksibilni polje" - -#: pro/fields/class-acf-field-flexible-content.php:282 -msgid "Click the \"%s\" button below to start creating your layout" -msgstr "Kliknite “%s” gumb kako bi započeki kreiranje raspored" - -#: pro/fields/class-acf-field-flexible-content.php:423 -msgid "Add layout" -msgstr "Dodaj razmještaj" - -#: pro/fields/class-acf-field-flexible-content.php:424 -#, fuzzy -#| msgid "Duplicate Layout" -msgid "Duplicate layout" -msgstr "Dupliciraj razmještaj" - -#: pro/fields/class-acf-field-flexible-content.php:425 -msgid "Remove layout" -msgstr "Ukloni razmještaj" - -#: pro/fields/class-acf-field-flexible-content.php:426, -#: pro/fields/class-acf-repeater-table.php:382 -msgid "Click to toggle" -msgstr "Klikni za uključivanje/isključivanje" - -#: pro/fields/class-acf-field-flexible-content.php:562 -msgid "Delete Layout" -msgstr "Obriši" - -#: pro/fields/class-acf-field-flexible-content.php:563 -msgid "Duplicate Layout" -msgstr "Dupliciraj razmještaj" - -#: pro/fields/class-acf-field-flexible-content.php:564 -msgid "Add New Layout" -msgstr "Dodaj novi razmještaj" - -#: pro/fields/class-acf-field-flexible-content.php:564 -#, fuzzy -#| msgid "Add layout" -msgid "Add Layout" -msgstr "Dodaj razmještaj" - -#: pro/fields/class-acf-field-flexible-content.php:647 -msgid "Min" -msgstr "Minimum" - -#: pro/fields/class-acf-field-flexible-content.php:662 -msgid "Max" -msgstr "Maksimum" - -#: pro/fields/class-acf-field-flexible-content.php:705 -msgid "Minimum Layouts" -msgstr "Najmanje" - -#: pro/fields/class-acf-field-flexible-content.php:716 -msgid "Maximum Layouts" -msgstr "Najviše" - -#: pro/fields/class-acf-field-flexible-content.php:727, -#: pro/fields/class-acf-field-repeater.php:293 -msgid "Button Label" -msgstr "Tekst gumba" - -#: pro/fields/class-acf-field-flexible-content.php:1710, -#: pro/fields/class-acf-field-repeater.php:918 -msgid "%s must be of type array or null." -msgstr "" - -#: pro/fields/class-acf-field-flexible-content.php:1721 -msgid "%1$s must contain at least %2$s %3$s layout." -msgid_plural "%1$s must contain at least %2$s %3$s layouts." -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: pro/fields/class-acf-field-flexible-content.php:1737 -msgid "%1$s must contain at most %2$s %3$s layout." -msgid_plural "%1$s must contain at most %2$s %3$s layouts." -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: pro/fields/class-acf-field-gallery.php:27 -msgid "" -"An interactive interface for managing a collection of attachments, such as " -"images." -msgstr "" - -#: pro/fields/class-acf-field-gallery.php:77 -msgid "Add Image to Gallery" -msgstr "Dodaj sliku u galeriju" - -#: pro/fields/class-acf-field-gallery.php:78 -msgid "Maximum selection reached" -msgstr "Već ste dodali najviše dozovoljenih polja" - -#: pro/fields/class-acf-field-gallery.php:324 -msgid "Length" -msgstr "Dužina" - -#: pro/fields/class-acf-field-gallery.php:368 -msgid "Caption" -msgstr "Potpis" - -#: pro/fields/class-acf-field-gallery.php:380 -msgid "Alt Text" -msgstr "Alternativni tekst" - -#: pro/fields/class-acf-field-gallery.php:504 -msgid "Add to gallery" -msgstr "Dodaj u galeriju" - -#: pro/fields/class-acf-field-gallery.php:508 -msgid "Bulk actions" -msgstr "Grupne akcije" - -#: pro/fields/class-acf-field-gallery.php:509 -msgid "Sort by date uploaded" -msgstr "Razvrstaj po datumu dodavanja" - -#: pro/fields/class-acf-field-gallery.php:510 -msgid "Sort by date modified" -msgstr "Razvrstaj po datumu zadnje promjene" - -#: pro/fields/class-acf-field-gallery.php:511 -msgid "Sort by title" -msgstr "Razvrstaj po naslovu" - -#: pro/fields/class-acf-field-gallery.php:512 -msgid "Reverse current order" -msgstr "Obrnuti redosljed" - -#: pro/fields/class-acf-field-gallery.php:524 -msgid "Close" -msgstr "Zatvori" - -#: pro/fields/class-acf-field-gallery.php:615 -msgid "Minimum Selection" -msgstr "Minimalni odabri" - -#: pro/fields/class-acf-field-gallery.php:625 -msgid "Maximum Selection" -msgstr "Maksimalni odabir" - -#: pro/fields/class-acf-field-gallery.php:707 -msgid "Allowed file types" -msgstr "Dozvoljeni tipovi datoteka" - -#: pro/fields/class-acf-field-gallery.php:727 -msgid "Insert" -msgstr "Umetni" - -#: pro/fields/class-acf-field-gallery.php:728 -msgid "Specify where new attachments are added" -msgstr "Precizirajte gdje se dodaju novi prilozi" - -#: pro/fields/class-acf-field-gallery.php:732 -msgid "Append to the end" -msgstr "Umetni na kraj" - -#: pro/fields/class-acf-field-gallery.php:733 -msgid "Prepend to the beginning" -msgstr "Umetni na početak" - -#: pro/fields/class-acf-field-repeater.php:66, -#: pro/fields/class-acf-field-repeater.php:463 -#, fuzzy -#| msgid "Minimum rows reached ({min} rows)" -msgid "Minimum rows not reached ({min} rows)" -msgstr "Minimalni broj redova je već odabran ({min})" - -#: pro/fields/class-acf-field-repeater.php:67 -msgid "Maximum rows reached ({max} rows)" -msgstr "Maksimalni broj redova je već odabran ({max})" - -#: pro/fields/class-acf-field-repeater.php:68 -#, fuzzy -#| msgctxt "Select2 JS load_fail" -#| msgid "Loading failed" -msgid "Error loading page" -msgstr "Neuspješno učitavanje" - -#: pro/fields/class-acf-field-repeater.php:69 -msgid "Order will be assigned upon save" -msgstr "" - -#: pro/fields/class-acf-field-repeater.php:196 -msgid "Useful for fields with a large number of rows." -msgstr "" - -#: pro/fields/class-acf-field-repeater.php:207 -#, fuzzy -#| msgid "Posts Page" -msgid "Rows Per Page" -msgstr "Stranica za objave" - -#: pro/fields/class-acf-field-repeater.php:208 -#, fuzzy -#| msgid "Select the taxonomy to be displayed" -msgid "Set the number of rows to be displayed on a page." -msgstr "Odaberite taksonomiju za prikaz" - -#: pro/fields/class-acf-field-repeater.php:240 -msgid "Minimum Rows" -msgstr "Minimalno redova" - -#: pro/fields/class-acf-field-repeater.php:251 -msgid "Maximum Rows" -msgstr "Maksimalno redova" - -#: pro/fields/class-acf-field-repeater.php:281 -msgid "Collapsed" -msgstr "Sklopljeno" - -#: pro/fields/class-acf-field-repeater.php:282 -msgid "Select a sub field to show when row is collapsed" -msgstr "Odaberite pod polje koje će biti prikazano dok je red sklopljen" - -#: pro/fields/class-acf-field-repeater.php:1060 -#, fuzzy -#| msgid "Edit field group" -msgid "Invalid field key or name." -msgstr "Uredi skup polja" - -#: pro/fields/class-acf-field-repeater.php:1069 -msgid "There was an error retrieving the field." -msgstr "" - -#: pro/fields/class-acf-repeater-table.php:369 -#, fuzzy -#| msgid "Drag to reorder" -msgid "Click to reorder" -msgstr "Presloži polja povlačenjem" - -#: pro/fields/class-acf-repeater-table.php:402 -msgid "Add row" -msgstr "Dodaj red" - -#: pro/fields/class-acf-repeater-table.php:403 -#, fuzzy -#| msgid "Duplicate" -msgid "Duplicate row" -msgstr "Dupliciraj" - -#: pro/fields/class-acf-repeater-table.php:404 -msgid "Remove row" -msgstr "Ukloni red" - -#: pro/fields/class-acf-repeater-table.php:448, -#: pro/fields/class-acf-repeater-table.php:465, -#: pro/fields/class-acf-repeater-table.php:466 -#, fuzzy -#| msgid "Current User" -msgid "Current Page" -msgstr "Trenutni korisnik" - -#: pro/fields/class-acf-repeater-table.php:456, -#: pro/fields/class-acf-repeater-table.php:457 -#, fuzzy -#| msgid "Front Page" -msgid "First Page" -msgstr "Početna stranica" - -#: pro/fields/class-acf-repeater-table.php:460, -#: pro/fields/class-acf-repeater-table.php:461 -#, fuzzy -#| msgid "Posts Page" -msgid "Previous Page" -msgstr "Stranica za objave" - -#. translators: 1: Current page, 2: Total pages. -#: pro/fields/class-acf-repeater-table.php:470 -msgctxt "paging" -msgid "%1$s of %2$s" -msgstr "" - -#: pro/fields/class-acf-repeater-table.php:477, -#: pro/fields/class-acf-repeater-table.php:478 -#, fuzzy -#| msgid "Front Page" -msgid "Next Page" -msgstr "Početna stranica" - -#: pro/fields/class-acf-repeater-table.php:481, -#: pro/fields/class-acf-repeater-table.php:482 -#, fuzzy -#| msgid "Posts Page" -msgid "Last Page" -msgstr "Stranica za objave" - -#: pro/locations/class-acf-location-block.php:71 -#, fuzzy -#| msgid "No options pages exist" -msgid "No block types exist" -msgstr "Ne postoji stranica sa postavkama" - -#: pro/locations/class-acf-location-options-page.php:70 -msgid "No options pages exist" -msgstr "Ne postoji stranica sa postavkama" - -#: pro/admin/views/html-settings-updates.php:6 -msgid "Deactivate License" -msgstr "Deaktiviraj licencu" - -#: pro/admin/views/html-settings-updates.php:6 -msgid "Activate License" -msgstr "Aktiviraj licencu" - -#: pro/admin/views/html-settings-updates.php:16 -msgid "License Information" -msgstr "Informacije o licenci" - -#: pro/admin/views/html-settings-updates.php:34 -msgid "" -"To unlock updates, please enter your license key below. If you don't have a " -"licence key, please see details & pricing." -msgstr "" -"Da bi omogućili ažuriranje, molimo unesite vašu licencu i polje ispod. " -"Ukoliko ne posjedujete licencu, molimo posjetite detalji i cijene." - -#: pro/admin/views/html-settings-updates.php:37 -msgid "License Key" -msgstr "Licenca" - -#: pro/admin/views/html-settings-updates.php:22 -msgid "Your license key is defined in wp-config.php." -msgstr "" - -#: pro/admin/views/html-settings-updates.php:29 -#, fuzzy -#| msgid "Better Validation" -msgid "Retry Activation" -msgstr "Bolja verifikacija polja" - -#: pro/admin/views/html-settings-updates.php:61 -msgid "Update Information" -msgstr "Ažuriraj informacije" - -#: pro/admin/views/html-settings-updates.php:68 -msgid "Current Version" -msgstr "Trenutna vezija" - -#: pro/admin/views/html-settings-updates.php:76 -msgid "Latest Version" -msgstr "Posljednja dostupna verzija" - -#: pro/admin/views/html-settings-updates.php:84 -msgid "Update Available" -msgstr "Dostupna nadogradnja" - -#: pro/admin/views/html-settings-updates.php:98 -msgid "Upgrade Notice" -msgstr "Obavijest od nadogradnjama" - -#: pro/admin/views/html-settings-updates.php:126 -msgid "Check For Updates" -msgstr "" - -#: pro/admin/views/html-settings-updates.php:121 -#, fuzzy -#| msgid "Please enter your license key above to unlock updates" -msgid "Enter your license key to unlock updates" -msgstr "Unesite licencu kako bi mogli izvršiti nadogradnju" - -#: pro/admin/views/html-settings-updates.php:119 -msgid "Update Plugin" -msgstr "Nadogradi dodatak" - -#: pro/admin/views/html-settings-updates.php:117 -#, fuzzy -#| msgid "Please enter your license key above to unlock updates" -msgid "Please reactivate your license to unlock updates" -msgstr "Unesite licencu kako bi mogli izvršiti nadogradnju" diff --git a/lang/acf-hu_HU.mo b/lang/acf-hu_HU.mo deleted file mode 100644 index c0848ca..0000000 Binary files a/lang/acf-hu_HU.mo and /dev/null differ diff --git a/lang/acf-hu_HU.po b/lang/acf-hu_HU.po deleted file mode 100644 index 197bb72..0000000 --- a/lang/acf-hu_HU.po +++ /dev/null @@ -1,869 +0,0 @@ -# Advanced Custom Fields Translations are a combination of translate.wordpress.org contributions, -# combined with user contributed strings for the PRO version. -# Translations from translate.wordpress.org take priority over translations in this file. -# translate.wordpress.org contributions are synced at the time of each release. -# -# If you would like to contribute translations, please visit -# https://translate.wordpress.org/projects/wp-plugins/advanced-custom-fields/stable/ -# -# For additional ACF PRO strings, please submit a pull request over on the ACF GitHub repo at -# http://github.com/advancedcustomfields/acf using the .pot (and any existing .po) files in /lang/pro/ -# -# This file is distributed under the same license as Advanced Custom Fields. -msgid "" -msgstr "" -"PO-Revision-Date: 2023-11-28T09:14:32+00:00\n" -"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n" -"Language: hu_HU\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: gettext\n" -"Project-Id-Version: Advanced Custom Fields\n" - -#: pro/acf-pro.php:27 -#, fuzzy -msgid "Advanced Custom Fields PRO" -msgstr "Advanced Custom Fields PRO" - -#: pro/blocks.php:170 -#, fuzzy -#| msgid "%s value is required" -msgid "Block type name is required." -msgstr "%s kitöltése kötelező" - -#. translators: The name of the block type -#: pro/blocks.php:178 -msgid "Block type \"%s\" is already registered." -msgstr "" - -#: pro/blocks.php:726 -msgid "Switch to Edit" -msgstr "" - -#: pro/blocks.php:727 -msgid "Switch to Preview" -msgstr "" - -#: pro/blocks.php:728 -msgid "Change content alignment" -msgstr "" - -#. translators: %s: Block type title -#: pro/blocks.php:731 -#, fuzzy -#| msgid "New Settings" -msgid "%s settings" -msgstr "Új beállítások" - -#: pro/blocks.php:936 -msgid "This block contains no editable fields." -msgstr "" - -#. translators: %s: an admin URL to the field group edit screen -#: pro/blocks.php:942 -msgid "" -"Assign a field group to add fields to " -"this block." -msgstr "" - -#: pro/options-page.php:47 -msgid "Options" -msgstr "Beállítások" - -#: pro/options-page.php:77, pro/fields/class-acf-field-gallery.php:527 -msgid "Update" -msgstr "Frissítés" - -#: pro/options-page.php:78 -msgid "Options Updated" -msgstr "Beállítások elmentve" - -#: pro/updates.php:99 -#, fuzzy -#| msgid "" -#| "To enable updates, please enter your license key on the Updates page. If you don't have a licence key, please see details & pricing" -msgid "" -"To enable updates, please enter your license key on the Updates page. If you don't have a licence key, please see details & pricing." -msgstr "" -"A frissítések engedélyezéséhez adjuk meg a licenckulcsot a Frissítések oldalon. Ha még nem rendelkezünk licenckulcsal, tekintsük " -"át a licencek részleteit és árait." - -#: pro/updates.php:159 -msgid "" -"ACF Activation Error. Your defined license key has changed, but an " -"error occurred when deactivating your old licence" -msgstr "" - -#: pro/updates.php:154 -msgid "" -"ACF Activation Error. Your defined license key has changed, but an " -"error occurred when connecting to activation server" -msgstr "" - -#: pro/updates.php:192 -msgid "ACF Activation Error" -msgstr "" - -#: pro/updates.php:187 -#, fuzzy -#| msgid "Error. Could not connect to update server" -msgid "" -"ACF Activation Error. An error occurred when connecting to activation " -"server" -msgstr "Hiba. Nem hozható létre kapcsolat a frissítési szerverrel." - -#: pro/updates.php:279 -msgid "Check Again" -msgstr "Ismételt ellenőrzés" - -#: pro/updates.php:593 -#, fuzzy -#| msgid "Error. Could not connect to update server" -msgid "ACF Activation Error. Could not connect to activation server" -msgstr "Hiba. Nem hozható létre kapcsolat a frissítési szerverrel." - -#: pro/admin/admin-options-page.php:195 -msgid "Publish" -msgstr "Közzététel" - -#: pro/admin/admin-options-page.php:199 -msgid "" -"No Custom Field Groups found for this options page. Create a " -"Custom Field Group" -msgstr "" -"Nincsenek mezőcsoportok ehhez a beállítás oldalhoz. Mezőcsoport hozzáadása" - -#: pro/admin/admin-options-page.php:309 -msgid "Edit field group" -msgstr "" - -#: pro/admin/admin-updates.php:52 -msgid "Error. Could not connect to update server" -msgstr "Hiba. Nem hozható létre kapcsolat a frissítési szerverrel." - -#: pro/admin/admin-updates.php:122, -#: pro/admin/views/html-settings-updates.php:12 -msgid "Updates" -msgstr "Frissítések" - -#: pro/admin/admin-updates.php:212 -msgid "" -"Error. Could not authenticate update package. Please check again or " -"deactivate and reactivate your ACF PRO license." -msgstr "" - -#: pro/admin/admin-updates.php:199 -msgid "" -"Error. Your license for this site has expired or been deactivated. " -"Please reactivate your ACF PRO license." -msgstr "" - -#: pro/fields/class-acf-field-clone.php:25 -msgctxt "noun" -msgid "Clone" -msgstr "" - -#: pro/fields/class-acf-field-clone.php:27, -#: pro/fields/class-acf-field-repeater.php:31 -msgid "" -"Allows you to select and display existing fields. It does not duplicate any " -"fields in the database, but loads and displays the selected fields at run-" -"time. The Clone field can either replace itself with the selected fields or " -"display the selected fields as a group of subfields." -msgstr "" - -#: pro/fields/class-acf-field-clone.php:818, -#: pro/fields/class-acf-field-flexible-content.php:78 -msgid "Fields" -msgstr "Mezők" - -#: pro/fields/class-acf-field-clone.php:819 -msgid "Select one or more fields you wish to clone" -msgstr "" - -#: pro/fields/class-acf-field-clone.php:838 -msgid "Display" -msgstr "Megjelenítés" - -#: pro/fields/class-acf-field-clone.php:839 -msgid "Specify the style used to render the clone field" -msgstr "" - -#: pro/fields/class-acf-field-clone.php:844 -msgid "Group (displays selected fields in a group within this field)" -msgstr "" - -#: pro/fields/class-acf-field-clone.php:845 -msgid "Seamless (replaces this field with selected fields)" -msgstr "" - -#: pro/fields/class-acf-field-clone.php:854, -#: pro/fields/class-acf-field-flexible-content.php:558, -#: pro/fields/class-acf-field-flexible-content.php:616, -#: pro/fields/class-acf-field-repeater.php:177 -msgid "Layout" -msgstr "Tartalom elrendezés" - -#: pro/fields/class-acf-field-clone.php:855 -msgid "Specify the style used to render the selected fields" -msgstr "" - -#: pro/fields/class-acf-field-clone.php:860, -#: pro/fields/class-acf-field-flexible-content.php:629, -#: pro/fields/class-acf-field-repeater.php:185, -#: pro/locations/class-acf-location-block.php:22 -msgid "Block" -msgstr "Blokk" - -#: pro/fields/class-acf-field-clone.php:861, -#: pro/fields/class-acf-field-flexible-content.php:628, -#: pro/fields/class-acf-field-repeater.php:184 -msgid "Table" -msgstr "Táblázat" - -#: pro/fields/class-acf-field-clone.php:862, -#: pro/fields/class-acf-field-flexible-content.php:630, -#: pro/fields/class-acf-field-repeater.php:186 -#, fuzzy -msgid "Row" -msgstr "Sorok" - -#: pro/fields/class-acf-field-clone.php:868 -#, fuzzy -#| msgid "Selected elements will be displayed in each result" -msgid "Labels will be displayed as %s" -msgstr "A kiválasztott elemek jelennek meg az eredményekben" - -#: pro/fields/class-acf-field-clone.php:873 -#, fuzzy -#| msgid "Field Label" -msgid "Prefix Field Labels" -msgstr "Mezőfelirat" - -#: pro/fields/class-acf-field-clone.php:883 -msgid "Values will be saved as %s" -msgstr "" - -#: pro/fields/class-acf-field-clone.php:888 -#, fuzzy -#| msgid "Field Name" -msgid "Prefix Field Names" -msgstr "Mezőnév" - -#: pro/fields/class-acf-field-clone.php:1005 -#, fuzzy -#| msgid "Below fields" -msgid "Unknown field" -msgstr "Mezők alatt" - -#: pro/fields/class-acf-field-clone.php:1009 -#, fuzzy -msgid "(no title)" -msgstr "Rendezés cím szerint" - -#: pro/fields/class-acf-field-clone.php:1042 -#, fuzzy -#| msgid "Show this field group if" -msgid "Unknown field group" -msgstr "Mezőcsoport megjelenítése, ha" - -#: pro/fields/class-acf-field-clone.php:1046 -msgid "All fields from %s field group" -msgstr "" - -#: pro/fields/class-acf-field-flexible-content.php:25 -msgid "Flexible Content" -msgstr "Rugalmas tartalom (flexible content)" - -#: pro/fields/class-acf-field-flexible-content.php:27 -msgid "" -"Allows you to define, create and manage content with total control by " -"creating layouts that contain subfields that content editors can choose from." -msgstr "" - -#: pro/fields/class-acf-field-flexible-content.php:27 -msgid "We do not recommend using this field in ACF Blocks." -msgstr "" - -#: pro/fields/class-acf-field-flexible-content.php:36, -#: pro/fields/class-acf-field-repeater.php:103, -#: pro/fields/class-acf-field-repeater.php:297 -msgid "Add Row" -msgstr "Sor hozzáadása" - -# Revision suggested -#: pro/fields/class-acf-field-flexible-content.php:76, -#: pro/fields/class-acf-field-flexible-content.php:943, -#: pro/fields/class-acf-field-flexible-content.php:1022 -#, fuzzy -#| msgid "layout" -msgid "layout" -msgid_plural "layouts" -msgstr[0] "elrendezés" -msgstr[1] "elrendezés" - -# Revision suggested -#: pro/fields/class-acf-field-flexible-content.php:77 -msgid "layouts" -msgstr "elrendezés" - -# Revision suggested -#: pro/fields/class-acf-field-flexible-content.php:81, -#: pro/fields/class-acf-field-flexible-content.php:942, -#: pro/fields/class-acf-field-flexible-content.php:1021 -msgid "This field requires at least {min} {label} {identifier}" -msgstr "" -"Ennél a mezőnél legalább {min} {label} {identifier} hozzáadása szükséges" - -# Revision suggested -#: pro/fields/class-acf-field-flexible-content.php:82 -#, fuzzy -#| msgid "This field has a limit of {max} {identifier}" -msgid "This field has a limit of {max} {label} {identifier}" -msgstr "Ennél a mezőnél legfeljebb {max} {identifier} adható hozzá." - -# Revision suggested -#: pro/fields/class-acf-field-flexible-content.php:85 -msgid "{available} {label} {identifier} available (max {max})" -msgstr "{available} {label} {identifier} adható még hozzá (maximum {max})" - -# Revision suggested -#: pro/fields/class-acf-field-flexible-content.php:86 -msgid "{required} {label} {identifier} required (min {min})" -msgstr "{required} {label} {identifier} hozzáadása szükséges (minimum {min})" - -#: pro/fields/class-acf-field-flexible-content.php:89 -msgid "Flexible Content requires at least 1 layout" -msgstr "Rugalmas tartalomnál legalább egy elrendezést definiálni kell." - -# Revision suggested -#: pro/fields/class-acf-field-flexible-content.php:282 -msgid "Click the \"%s\" button below to start creating your layout" -msgstr "Kattintsunk lent a \"%s\" gombra egyéni tartalom létrehozásához." - -#: pro/fields/class-acf-field-flexible-content.php:420, -#: pro/fields/class-acf-repeater-table.php:366 -msgid "Drag to reorder" -msgstr "Átrendezéshez húzzuk a megfelelő helyre" - -#: pro/fields/class-acf-field-flexible-content.php:423 -msgid "Add layout" -msgstr "Elrendezés hozzáadása" - -#: pro/fields/class-acf-field-flexible-content.php:424 -#, fuzzy -#| msgid "Duplicate Layout" -msgid "Duplicate layout" -msgstr "Elrendezés duplikálása" - -#: pro/fields/class-acf-field-flexible-content.php:425 -msgid "Remove layout" -msgstr "Elrendezés eltávolítása" - -#: pro/fields/class-acf-field-flexible-content.php:426, -#: pro/fields/class-acf-repeater-table.php:382 -msgid "Click to toggle" -msgstr "" - -#: pro/fields/class-acf-field-flexible-content.php:562 -msgid "Delete Layout" -msgstr "Elrendezés törlése" - -#: pro/fields/class-acf-field-flexible-content.php:563 -msgid "Duplicate Layout" -msgstr "Elrendezés duplikálása" - -#: pro/fields/class-acf-field-flexible-content.php:564 -msgid "Add New Layout" -msgstr "Új elrendezés hozzáadása" - -#: pro/fields/class-acf-field-flexible-content.php:564 -#, fuzzy -#| msgid "Add layout" -msgid "Add Layout" -msgstr "Elrendezés hozzáadása" - -#: pro/fields/class-acf-field-flexible-content.php:593 -msgid "Label" -msgstr "Felirat" - -#: pro/fields/class-acf-field-flexible-content.php:609 -msgid "Name" -msgstr "Név" - -#: pro/fields/class-acf-field-flexible-content.php:647 -msgid "Min" -msgstr "Minimum" - -#: pro/fields/class-acf-field-flexible-content.php:662 -msgid "Max" -msgstr "Maximum" - -#: pro/fields/class-acf-field-flexible-content.php:705 -msgid "Minimum Layouts" -msgstr "Tartalmak minimális száma" - -#: pro/fields/class-acf-field-flexible-content.php:716 -msgid "Maximum Layouts" -msgstr "Tartalmak maximális száma" - -#: pro/fields/class-acf-field-flexible-content.php:727, -#: pro/fields/class-acf-field-repeater.php:293 -msgid "Button Label" -msgstr "Gomb felirata" - -#: pro/fields/class-acf-field-flexible-content.php:1710, -#: pro/fields/class-acf-field-repeater.php:918 -msgid "%s must be of type array or null." -msgstr "" - -#: pro/fields/class-acf-field-flexible-content.php:1721 -msgid "%1$s must contain at least %2$s %3$s layout." -msgid_plural "%1$s must contain at least %2$s %3$s layouts." -msgstr[0] "" -msgstr[1] "" - -#: pro/fields/class-acf-field-flexible-content.php:1737 -msgid "%1$s must contain at most %2$s %3$s layout." -msgid_plural "%1$s must contain at most %2$s %3$s layouts." -msgstr[0] "" -msgstr[1] "" - -#: pro/fields/class-acf-field-gallery.php:25 -msgid "Gallery" -msgstr "Galéria" - -#: pro/fields/class-acf-field-gallery.php:27 -msgid "" -"An interactive interface for managing a collection of attachments, such as " -"images." -msgstr "" - -#: pro/fields/class-acf-field-gallery.php:77 -msgid "Add Image to Gallery" -msgstr "Kép hozzáadása a galériához" - -#: pro/fields/class-acf-field-gallery.php:78 -msgid "Maximum selection reached" -msgstr "Elértük a kiválasztható elemek maximális számát" - -#: pro/fields/class-acf-field-gallery.php:324 -msgid "Length" -msgstr "" - -#: pro/fields/class-acf-field-gallery.php:339 -msgid "Edit" -msgstr "Szerkesztés" - -#: pro/fields/class-acf-field-gallery.php:340, -#: pro/fields/class-acf-field-gallery.php:495 -msgid "Remove" -msgstr "" - -#: pro/fields/class-acf-field-gallery.php:356 -msgid "Title" -msgstr "Cím" - -#: pro/fields/class-acf-field-gallery.php:368 -#, fuzzy -#| msgid "Options" -msgid "Caption" -msgstr "Beállítások" - -#: pro/fields/class-acf-field-gallery.php:380 -#, fuzzy -#| msgid "Text" -msgid "Alt Text" -msgstr "Szöveg (text)" - -#: pro/fields/class-acf-field-gallery.php:392 -msgid "Description" -msgstr "" - -#: pro/fields/class-acf-field-gallery.php:504 -msgid "Add to gallery" -msgstr "Hozzáadás galériához" - -#: pro/fields/class-acf-field-gallery.php:508 -msgid "Bulk actions" -msgstr "Csoportművelet" - -#: pro/fields/class-acf-field-gallery.php:509 -msgid "Sort by date uploaded" -msgstr "Rendezés feltöltési dátum szerint" - -#: pro/fields/class-acf-field-gallery.php:510 -msgid "Sort by date modified" -msgstr "Rendezés módosítási dátum szerint" - -#: pro/fields/class-acf-field-gallery.php:511 -msgid "Sort by title" -msgstr "Rendezés cím szerint" - -#: pro/fields/class-acf-field-gallery.php:512 -msgid "Reverse current order" -msgstr "Fordított sorrend" - -#: pro/fields/class-acf-field-gallery.php:524 -msgid "Close" -msgstr "Bezárás" - -#: pro/fields/class-acf-field-gallery.php:556 -msgid "Return Format" -msgstr "Visszaadott formátum" - -#: pro/fields/class-acf-field-gallery.php:562 -msgid "Image Array" -msgstr "Kép adattömb (array)" - -#: pro/fields/class-acf-field-gallery.php:563 -msgid "Image URL" -msgstr "Kép URL" - -#: pro/fields/class-acf-field-gallery.php:564 -msgid "Image ID" -msgstr "Kép azonosító" - -#: pro/fields/class-acf-field-gallery.php:572 -msgid "Library" -msgstr "Médiatár" - -#: pro/fields/class-acf-field-gallery.php:573 -msgid "Limit the media library choice" -msgstr "Kiválasztható médiatár elemek korlátozása" - -#: pro/fields/class-acf-field-gallery.php:578, -#: pro/locations/class-acf-location-block.php:66 -msgid "All" -msgstr "Összes" - -#: pro/fields/class-acf-field-gallery.php:579 -msgid "Uploaded to post" -msgstr "Feltöltve a bejegyzéshez" - -#: pro/fields/class-acf-field-gallery.php:615 -msgid "Minimum Selection" -msgstr "Minimális választás" - -#: pro/fields/class-acf-field-gallery.php:625 -msgid "Maximum Selection" -msgstr "Maximális választás" - -#: pro/fields/class-acf-field-gallery.php:635 -msgid "Minimum" -msgstr "" - -#: pro/fields/class-acf-field-gallery.php:636, -#: pro/fields/class-acf-field-gallery.php:672 -msgid "Restrict which images can be uploaded" -msgstr "" - -#: pro/fields/class-acf-field-gallery.php:639, -#: pro/fields/class-acf-field-gallery.php:675 -msgid "Width" -msgstr "" - -#: pro/fields/class-acf-field-gallery.php:650, -#: pro/fields/class-acf-field-gallery.php:686 -msgid "Height" -msgstr "Magasság" - -#: pro/fields/class-acf-field-gallery.php:662, -#: pro/fields/class-acf-field-gallery.php:698 -msgid "File size" -msgstr "" - -#: pro/fields/class-acf-field-gallery.php:671 -msgid "Maximum" -msgstr "" - -#: pro/fields/class-acf-field-gallery.php:707 -msgid "Allowed file types" -msgstr "" - -#: pro/fields/class-acf-field-gallery.php:708 -msgid "Comma separated list. Leave blank for all types" -msgstr "" - -#: pro/fields/class-acf-field-gallery.php:727 -msgid "Insert" -msgstr "" - -#: pro/fields/class-acf-field-gallery.php:728 -msgid "Specify where new attachments are added" -msgstr "" - -#: pro/fields/class-acf-field-gallery.php:732 -#, fuzzy -#| msgid "Appears after the input" -msgid "Append to the end" -msgstr "Beviteli mező után jelenik meg" - -#: pro/fields/class-acf-field-gallery.php:733 -msgid "Prepend to the beginning" -msgstr "" - -#: pro/fields/class-acf-field-gallery.php:741 -msgid "Preview Size" -msgstr "Előnézeti méret" - -#: pro/fields/class-acf-field-gallery.php:844 -#, fuzzy -#| msgid "%s requires at least %s selection" -#| msgid_plural "%s requires at least %s selections" -msgid "%1$s requires at least %2$s selection" -msgid_plural "%1$s requires at least %2$s selections" -msgstr[0] "%s mező esetében legalább %s értéket ki kell választani" -msgstr[1] "%s mező esetében legalább %s értéket ki kell választani" - -#: pro/fields/class-acf-field-repeater.php:29 -msgid "Repeater" -msgstr "Ismétlő csoportmező (repeater)" - -#: pro/fields/class-acf-field-repeater.php:66, -#: pro/fields/class-acf-field-repeater.php:463 -#, fuzzy -#| msgid "Minimum rows reached ({min} rows)" -msgid "Minimum rows not reached ({min} rows)" -msgstr "" -"Nem érjük el a sorok minimális számát (legalább {min} sort hozzá kell adni)" - -#: pro/fields/class-acf-field-repeater.php:67 -msgid "Maximum rows reached ({max} rows)" -msgstr "Elértük a sorok maximális számát (legfeljebb {max} sor adható hozzá)" - -#: pro/fields/class-acf-field-repeater.php:68 -msgid "Error loading page" -msgstr "" - -#: pro/fields/class-acf-field-repeater.php:69 -msgid "Order will be assigned upon save" -msgstr "" - -#: pro/fields/class-acf-field-repeater.php:162 -msgid "Sub Fields" -msgstr "Almezők" - -#: pro/fields/class-acf-field-repeater.php:195 -#, fuzzy -#| msgid "Position" -msgid "Pagination" -msgstr "Pozíció" - -#: pro/fields/class-acf-field-repeater.php:196 -msgid "Useful for fields with a large number of rows." -msgstr "" - -#: pro/fields/class-acf-field-repeater.php:207 -#, fuzzy -#| msgid "Posts Page" -msgid "Rows Per Page" -msgstr "Bejegyzések oldala" - -#: pro/fields/class-acf-field-repeater.php:208 -msgid "Set the number of rows to be displayed on a page." -msgstr "" - -#: pro/fields/class-acf-field-repeater.php:240 -msgid "Minimum Rows" -msgstr "Sorok minimális száma" - -#: pro/fields/class-acf-field-repeater.php:251 -msgid "Maximum Rows" -msgstr "Sorok maximális száma" - -#: pro/fields/class-acf-field-repeater.php:281 -#, fuzzy -#| msgid "Collapse Details" -msgid "Collapsed" -msgstr "Részletek bezárása" - -#: pro/fields/class-acf-field-repeater.php:282 -msgid "Select a sub field to show when row is collapsed" -msgstr "" - -#: pro/fields/class-acf-field-repeater.php:1045 -msgid "Invalid nonce." -msgstr "" - -#: pro/fields/class-acf-field-repeater.php:1060 -msgid "Invalid field key or name." -msgstr "" - -#: pro/fields/class-acf-field-repeater.php:1069 -msgid "There was an error retrieving the field." -msgstr "" - -#: pro/fields/class-acf-repeater-table.php:369 -#, fuzzy -#| msgid "Drag to reorder" -msgid "Click to reorder" -msgstr "Átrendezéshez húzzuk a megfelelő helyre" - -#: pro/fields/class-acf-repeater-table.php:402 -msgid "Add row" -msgstr "Sor hozzáadása" - -#: pro/fields/class-acf-repeater-table.php:403 -#, fuzzy -#| msgid "Duplicate" -msgid "Duplicate row" -msgstr "Duplikálás" - -#: pro/fields/class-acf-repeater-table.php:404 -msgid "Remove row" -msgstr "Sor eltávolítása" - -#: pro/fields/class-acf-repeater-table.php:448, -#: pro/fields/class-acf-repeater-table.php:465, -#: pro/fields/class-acf-repeater-table.php:466 -#, fuzzy -#| msgid "Front Page" -msgid "Current Page" -msgstr "Kezdőoldal" - -#: pro/fields/class-acf-repeater-table.php:456, -#: pro/fields/class-acf-repeater-table.php:457 -#, fuzzy -#| msgid "Front Page" -msgid "First Page" -msgstr "Kezdőoldal" - -#: pro/fields/class-acf-repeater-table.php:460, -#: pro/fields/class-acf-repeater-table.php:461 -#, fuzzy -#| msgid "Posts Page" -msgid "Previous Page" -msgstr "Bejegyzések oldala" - -#. translators: 1: Current page, 2: Total pages. -#: pro/fields/class-acf-repeater-table.php:470 -msgctxt "paging" -msgid "%1$s of %2$s" -msgstr "" - -#: pro/fields/class-acf-repeater-table.php:477, -#: pro/fields/class-acf-repeater-table.php:478 -#, fuzzy -#| msgid "Front Page" -msgid "Next Page" -msgstr "Kezdőoldal" - -#: pro/fields/class-acf-repeater-table.php:481, -#: pro/fields/class-acf-repeater-table.php:482 -#, fuzzy -#| msgid "Posts Page" -msgid "Last Page" -msgstr "Bejegyzések oldala" - -#: pro/locations/class-acf-location-block.php:71 -#, fuzzy -#| msgid "No options pages exist" -msgid "No block types exist" -msgstr "Nincsenek beállítás oldalak" - -#: pro/locations/class-acf-location-options-page.php:22 -msgid "Options Page" -msgstr "Beállítások oldal" - -#: pro/locations/class-acf-location-options-page.php:70 -msgid "No options pages exist" -msgstr "Nincsenek beállítás oldalak" - -#: pro/admin/views/html-settings-updates.php:6 -msgid "Deactivate License" -msgstr "Licenc deaktiválása" - -#: pro/admin/views/html-settings-updates.php:6 -msgid "Activate License" -msgstr "Licenc aktiválása" - -#: pro/admin/views/html-settings-updates.php:16 -#, fuzzy -#| msgid "Update Information" -msgid "License Information" -msgstr "Frissítési információ" - -#: pro/admin/views/html-settings-updates.php:34 -#, fuzzy -#| msgid "" -#| "To enable updates, please enter your license key on the Updates page. If you don't have a licence key, please see details & pricing" -msgid "" -"To unlock updates, please enter your license key below. If you don't have a " -"licence key, please see details & pricing." -msgstr "" -"A frissítések engedélyezéséhez adjuk meg a licenckulcsot a Frissítések oldalon. Ha még nem rendelkezünk licenckulcsal, tekintsük " -"át a licencek részleteit és árait." - -#: pro/admin/views/html-settings-updates.php:37 -msgid "License Key" -msgstr "Licenckulcs" - -#: pro/admin/views/html-settings-updates.php:22 -msgid "Your license key is defined in wp-config.php." -msgstr "" - -#: pro/admin/views/html-settings-updates.php:29 -#, fuzzy -#| msgid "Better Validation" -msgid "Retry Activation" -msgstr "Jobb ellenőrzés és érvényesítés" - -#: pro/admin/views/html-settings-updates.php:61 -msgid "Update Information" -msgstr "Frissítési információ" - -#: pro/admin/views/html-settings-updates.php:68 -msgid "Current Version" -msgstr "Jelenlegi verzió" - -#: pro/admin/views/html-settings-updates.php:76 -msgid "Latest Version" -msgstr "Legújabb verzió" - -#: pro/admin/views/html-settings-updates.php:84 -msgid "Update Available" -msgstr "Frissítés elérhető" - -#: pro/admin/views/html-settings-updates.php:91 -msgid "No" -msgstr "Nem" - -#: pro/admin/views/html-settings-updates.php:89 -msgid "Yes" -msgstr "Igen" - -#: pro/admin/views/html-settings-updates.php:98 -msgid "Upgrade Notice" -msgstr "Frissítési figyelmeztetés" - -#: pro/admin/views/html-settings-updates.php:126 -msgid "Check For Updates" -msgstr "" - -#: pro/admin/views/html-settings-updates.php:121 -#, fuzzy -#| msgid "Please enter your license key above to unlock updates" -msgid "Enter your license key to unlock updates" -msgstr "Adjuk meg a licenckulcsot a frissítések engedélyezéséhez" - -#: pro/admin/views/html-settings-updates.php:119 -msgid "Update Plugin" -msgstr "Bővítmény frissítése" - -#: pro/admin/views/html-settings-updates.php:117 -#, fuzzy -#| msgid "Please enter your license key above to unlock updates" -msgid "Please reactivate your license to unlock updates" -msgstr "Adjuk meg a licenckulcsot a frissítések engedélyezéséhez" diff --git a/lang/acf-id_ID.mo b/lang/acf-id_ID.mo deleted file mode 100644 index 22a1a5d..0000000 Binary files a/lang/acf-id_ID.mo and /dev/null differ diff --git a/lang/acf-id_ID.po b/lang/acf-id_ID.po deleted file mode 100644 index 49d8ae3..0000000 --- a/lang/acf-id_ID.po +++ /dev/null @@ -1,830 +0,0 @@ -# Advanced Custom Fields Translations are a combination of translate.wordpress.org contributions, -# combined with user contributed strings for the PRO version. -# Translations from translate.wordpress.org take priority over translations in this file. -# translate.wordpress.org contributions are synced at the time of each release. -# -# If you would like to contribute translations, please visit -# https://translate.wordpress.org/projects/wp-plugins/advanced-custom-fields/stable/ -# -# For additional ACF PRO strings, please submit a pull request over on the ACF GitHub repo at -# http://github.com/advancedcustomfields/acf using the .pot (and any existing .po) files in /lang/pro/ -# -# This file is distributed under the same license as Advanced Custom Fields. -msgid "" -msgstr "" -"PO-Revision-Date: 2023-11-28T09:14:32+00:00\n" -"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n" -"Language: id_ID\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: gettext\n" -"Project-Id-Version: Advanced Custom Fields\n" - -#: pro/acf-pro.php:27 -msgid "Advanced Custom Fields PRO" -msgstr "Advanced Custom Fields PRO" - -#: pro/blocks.php:170 -msgid "Block type name is required." -msgstr "Blok tipe nama diharuskan." - -#. translators: The name of the block type -#: pro/blocks.php:178 -msgid "Block type \"%s\" is already registered." -msgstr "Blok tipe “%s” telah terdaftar." - -#: pro/blocks.php:726 -msgid "Switch to Edit" -msgstr "Beralih ke Penyuntingan" - -#: pro/blocks.php:727 -msgid "Switch to Preview" -msgstr "Beralih ke Pratinjau" - -#: pro/blocks.php:728 -msgid "Change content alignment" -msgstr "Sunting perataan konten" - -#. translators: %s: Block type title -#: pro/blocks.php:731 -msgid "%s settings" -msgstr "%s pengaturan" - -#: pro/blocks.php:936 -msgid "This block contains no editable fields." -msgstr "" - -#. translators: %s: an admin URL to the field group edit screen -#: pro/blocks.php:942 -msgid "" -"Assign a field group to add fields to " -"this block." -msgstr "" - -#: pro/options-page.php:47 -msgid "Options" -msgstr "Pengaturan" - -#: pro/options-page.php:77, pro/fields/class-acf-field-gallery.php:527 -msgid "Update" -msgstr "Perbarui" - -#: pro/options-page.php:78 -msgid "Options Updated" -msgstr "Pilihan Diperbarui" - -#: pro/updates.php:99 -#, fuzzy -#| msgid "" -#| "To enable updates, please enter your license key on the Updates page. If you don't have a licence key, please see details & pricing." -msgid "" -"To enable updates, please enter your license key on the Updates page. If you don't have a licence key, please see details & pricing." -msgstr "" -"Untuk mengaktifkan update, masukkan kunci lisensi Anda pada halaman Pembaruan. Jika anda tidak memiliki kunci lisensi, silakan lihat " -"rincian & harga." - -#: pro/updates.php:159 -msgid "" -"ACF Activation Error. Your defined license key has changed, but an " -"error occurred when deactivating your old licence" -msgstr "" - -#: pro/updates.php:154 -msgid "" -"ACF Activation Error. Your defined license key has changed, but an " -"error occurred when connecting to activation server" -msgstr "" - -#: pro/updates.php:192 -msgid "ACF Activation Error" -msgstr "" - -#: pro/updates.php:187 -#, fuzzy -#| msgid "Error. Could not connect to update server" -msgid "" -"ACF Activation Error. An error occurred when connecting to activation " -"server" -msgstr "Kesalahan. Tidak dapat terhubung ke server yang memperbarui" - -#: pro/updates.php:279 -msgid "Check Again" -msgstr "Periksa lagi" - -#: pro/updates.php:593 -#, fuzzy -#| msgid "Error. Could not connect to update server" -msgid "ACF Activation Error. Could not connect to activation server" -msgstr "Kesalahan. Tidak dapat terhubung ke server yang memperbarui" - -#: pro/admin/admin-options-page.php:195 -msgid "Publish" -msgstr "Terbitkan" - -#: pro/admin/admin-options-page.php:199 -msgid "" -"No Custom Field Groups found for this options page. Create a " -"Custom Field Group" -msgstr "" -"Tidak ada Grup Bidang Kustom ditemukan untuk halaman pilihan ini. Buat Grup Bidang Kustom" - -#: pro/admin/admin-options-page.php:309 -msgid "Edit field group" -msgstr "Sunting Grup Bidang" - -#: pro/admin/admin-updates.php:52 -msgid "Error. Could not connect to update server" -msgstr "Kesalahan. Tidak dapat terhubung ke server yang memperbarui" - -#: pro/admin/admin-updates.php:122, -#: pro/admin/views/html-settings-updates.php:12 -msgid "Updates" -msgstr "Pembaruan" - -#: pro/admin/admin-updates.php:212 -msgid "" -"Error. Could not authenticate update package. Please check again or " -"deactivate and reactivate your ACF PRO license." -msgstr "" -"Terjadi Kesalahan. Tidak dapat mengautentikasi paket pembaruan. " -"Silakan periksa lagi atau nonaktifkan dan aktifkan kembali lisensi ACF PRO " -"Anda." - -#: pro/admin/admin-updates.php:199 -#, fuzzy -#| msgid "" -#| "Error. Could not authenticate update package. Please check again " -#| "or deactivate and reactivate your ACF PRO license." -msgid "" -"Error. Your license for this site has expired or been deactivated. " -"Please reactivate your ACF PRO license." -msgstr "" -"Terjadi Kesalahan. Tidak dapat mengautentikasi paket pembaruan. " -"Silakan periksa lagi atau nonaktifkan dan aktifkan kembali lisensi ACF PRO " -"Anda." - -#: pro/fields/class-acf-field-clone.php:25 -msgctxt "noun" -msgid "Clone" -msgstr "Klon" - -#: pro/fields/class-acf-field-clone.php:27, -#: pro/fields/class-acf-field-repeater.php:31 -msgid "" -"Allows you to select and display existing fields. It does not duplicate any " -"fields in the database, but loads and displays the selected fields at run-" -"time. The Clone field can either replace itself with the selected fields or " -"display the selected fields as a group of subfields." -msgstr "" - -#: pro/fields/class-acf-field-clone.php:818, -#: pro/fields/class-acf-field-flexible-content.php:78 -msgid "Fields" -msgstr "Bidang" - -#: pro/fields/class-acf-field-clone.php:819 -msgid "Select one or more fields you wish to clone" -msgstr "Pilih satu atau lebih bidang yang ingin Anda gandakan" - -#: pro/fields/class-acf-field-clone.php:838 -msgid "Display" -msgstr "Tampilan" - -#: pro/fields/class-acf-field-clone.php:839 -msgid "Specify the style used to render the clone field" -msgstr "Tentukan gaya yang digunakan untuk merender bidang ganda" - -#: pro/fields/class-acf-field-clone.php:844 -msgid "Group (displays selected fields in a group within this field)" -msgstr "Grup (menampilkan bidang yang dipilih dalam grup dalam bidang ini)" - -#: pro/fields/class-acf-field-clone.php:845 -msgid "Seamless (replaces this field with selected fields)" -msgstr "Seamless (mengganti bidang ini dengan bidang yang dipilih)" - -#: pro/fields/class-acf-field-clone.php:854, -#: pro/fields/class-acf-field-flexible-content.php:558, -#: pro/fields/class-acf-field-flexible-content.php:616, -#: pro/fields/class-acf-field-repeater.php:177 -msgid "Layout" -msgstr "Layout" - -#: pro/fields/class-acf-field-clone.php:855 -msgid "Specify the style used to render the selected fields" -msgstr "Tentukan gaya yang digunakan untuk merender bidang yang dipilih" - -#: pro/fields/class-acf-field-clone.php:860, -#: pro/fields/class-acf-field-flexible-content.php:629, -#: pro/fields/class-acf-field-repeater.php:185, -#: pro/locations/class-acf-location-block.php:22 -msgid "Block" -msgstr "Blok" - -#: pro/fields/class-acf-field-clone.php:861, -#: pro/fields/class-acf-field-flexible-content.php:628, -#: pro/fields/class-acf-field-repeater.php:184 -msgid "Table" -msgstr "Tabel" - -#: pro/fields/class-acf-field-clone.php:862, -#: pro/fields/class-acf-field-flexible-content.php:630, -#: pro/fields/class-acf-field-repeater.php:186 -msgid "Row" -msgstr "Baris" - -#: pro/fields/class-acf-field-clone.php:868 -msgid "Labels will be displayed as %s" -msgstr "Label akan ditampilkan sebagai %s" - -#: pro/fields/class-acf-field-clone.php:873 -msgid "Prefix Field Labels" -msgstr "Awalan Label Bidang" - -#: pro/fields/class-acf-field-clone.php:883 -msgid "Values will be saved as %s" -msgstr "Nilai akan disimpan sebagai %s" - -#: pro/fields/class-acf-field-clone.php:888 -msgid "Prefix Field Names" -msgstr "Awalan Nama Bidang" - -#: pro/fields/class-acf-field-clone.php:1005 -msgid "Unknown field" -msgstr "Bidang tidak diketahui" - -#: pro/fields/class-acf-field-clone.php:1009 -msgid "(no title)" -msgstr "(tanpa judul)" - -#: pro/fields/class-acf-field-clone.php:1042 -msgid "Unknown field group" -msgstr "Grup bidang tidak diketahui" - -#: pro/fields/class-acf-field-clone.php:1046 -msgid "All fields from %s field group" -msgstr "Semua bidang dari %s grup bidang" - -#: pro/fields/class-acf-field-flexible-content.php:25 -msgid "Flexible Content" -msgstr "Konten Fleksibel" - -#: pro/fields/class-acf-field-flexible-content.php:27 -msgid "" -"Allows you to define, create and manage content with total control by " -"creating layouts that contain subfields that content editors can choose from." -msgstr "" - -#: pro/fields/class-acf-field-flexible-content.php:27 -msgid "We do not recommend using this field in ACF Blocks." -msgstr "" - -#: pro/fields/class-acf-field-flexible-content.php:36, -#: pro/fields/class-acf-field-repeater.php:103, -#: pro/fields/class-acf-field-repeater.php:297 -msgid "Add Row" -msgstr "Tambah Baris" - -#: pro/fields/class-acf-field-flexible-content.php:76, -#: pro/fields/class-acf-field-flexible-content.php:943, -#: pro/fields/class-acf-field-flexible-content.php:1022 -msgid "layout" -msgid_plural "layouts" -msgstr[0] "tata letak" - -#: pro/fields/class-acf-field-flexible-content.php:77 -msgid "layouts" -msgstr "layout" - -#: pro/fields/class-acf-field-flexible-content.php:81, -#: pro/fields/class-acf-field-flexible-content.php:942, -#: pro/fields/class-acf-field-flexible-content.php:1021 -msgid "This field requires at least {min} {label} {identifier}" -msgstr "Bidang ini membutuhkan setidaknya {min} {label} {identifier}" - -#: pro/fields/class-acf-field-flexible-content.php:82 -msgid "This field has a limit of {max} {label} {identifier}" -msgstr "Bidang ini memiliki batas {max} {label} {identifier}" - -#: pro/fields/class-acf-field-flexible-content.php:85 -msgid "{available} {label} {identifier} available (max {max})" -msgstr "{available} {label} {identifier} tersedia (max {max})" - -#: pro/fields/class-acf-field-flexible-content.php:86 -msgid "{required} {label} {identifier} required (min {min})" -msgstr "{required} {label} {identifier} diperlukan (min {min})" - -#: pro/fields/class-acf-field-flexible-content.php:89 -msgid "Flexible Content requires at least 1 layout" -msgstr "Konten fleksibel memerlukan setidaknya 1 layout" - -#: pro/fields/class-acf-field-flexible-content.php:282 -msgid "Click the \"%s\" button below to start creating your layout" -msgstr "Klik tombol\"%s\" dibawah untuk mulai membuat layout Anda" - -#: pro/fields/class-acf-field-flexible-content.php:420, -#: pro/fields/class-acf-repeater-table.php:366 -msgid "Drag to reorder" -msgstr "Seret untuk menyusun ulang" - -#: pro/fields/class-acf-field-flexible-content.php:423 -msgid "Add layout" -msgstr "Tambah Layout" - -#: pro/fields/class-acf-field-flexible-content.php:424 -msgid "Duplicate layout" -msgstr "Gandakan Layout" - -#: pro/fields/class-acf-field-flexible-content.php:425 -msgid "Remove layout" -msgstr "Hapus layout" - -#: pro/fields/class-acf-field-flexible-content.php:426, -#: pro/fields/class-acf-repeater-table.php:382 -msgid "Click to toggle" -msgstr "Klik untuk toggle" - -#: pro/fields/class-acf-field-flexible-content.php:562 -msgid "Delete Layout" -msgstr "Hapus Layout" - -#: pro/fields/class-acf-field-flexible-content.php:563 -msgid "Duplicate Layout" -msgstr "Duplikat Layout" - -#: pro/fields/class-acf-field-flexible-content.php:564 -msgid "Add New Layout" -msgstr "Tambah Layout Baru" - -#: pro/fields/class-acf-field-flexible-content.php:564 -#, fuzzy -#| msgid "Add layout" -msgid "Add Layout" -msgstr "Tambah Layout" - -#: pro/fields/class-acf-field-flexible-content.php:593 -msgid "Label" -msgstr "Label" - -#: pro/fields/class-acf-field-flexible-content.php:609 -msgid "Name" -msgstr "Nama" - -#: pro/fields/class-acf-field-flexible-content.php:647 -msgid "Min" -msgstr "Min" - -#: pro/fields/class-acf-field-flexible-content.php:662 -msgid "Max" -msgstr "Maks" - -#: pro/fields/class-acf-field-flexible-content.php:705 -msgid "Minimum Layouts" -msgstr "Minimum Layouts" - -#: pro/fields/class-acf-field-flexible-content.php:716 -msgid "Maximum Layouts" -msgstr "Maksimum Layout" - -#: pro/fields/class-acf-field-flexible-content.php:727, -#: pro/fields/class-acf-field-repeater.php:293 -msgid "Button Label" -msgstr "Label tombol" - -#: pro/fields/class-acf-field-flexible-content.php:1710, -#: pro/fields/class-acf-field-repeater.php:918 -msgid "%s must be of type array or null." -msgstr "" - -#: pro/fields/class-acf-field-flexible-content.php:1721 -msgid "%1$s must contain at least %2$s %3$s layout." -msgid_plural "%1$s must contain at least %2$s %3$s layouts." -msgstr[0] "" - -#: pro/fields/class-acf-field-flexible-content.php:1737 -msgid "%1$s must contain at most %2$s %3$s layout." -msgid_plural "%1$s must contain at most %2$s %3$s layouts." -msgstr[0] "" - -#: pro/fields/class-acf-field-gallery.php:25 -msgid "Gallery" -msgstr "Galeri" - -#: pro/fields/class-acf-field-gallery.php:27 -msgid "" -"An interactive interface for managing a collection of attachments, such as " -"images." -msgstr "" - -#: pro/fields/class-acf-field-gallery.php:77 -msgid "Add Image to Gallery" -msgstr "Tambahkan Gambar ke Galeri" - -#: pro/fields/class-acf-field-gallery.php:78 -msgid "Maximum selection reached" -msgstr "Batas pilihan maksimum" - -#: pro/fields/class-acf-field-gallery.php:324 -msgid "Length" -msgstr "Panjang" - -#: pro/fields/class-acf-field-gallery.php:339 -msgid "Edit" -msgstr "Sunting" - -#: pro/fields/class-acf-field-gallery.php:340, -#: pro/fields/class-acf-field-gallery.php:495 -msgid "Remove" -msgstr "Singkirkan" - -#: pro/fields/class-acf-field-gallery.php:356 -msgid "Title" -msgstr "Judul" - -#: pro/fields/class-acf-field-gallery.php:368 -msgid "Caption" -msgstr "Judul" - -#: pro/fields/class-acf-field-gallery.php:380 -msgid "Alt Text" -msgstr "Alt Teks" - -#: pro/fields/class-acf-field-gallery.php:392 -msgid "Description" -msgstr "Deskripsi" - -#: pro/fields/class-acf-field-gallery.php:504 -msgid "Add to gallery" -msgstr "Tambahkan ke galeri" - -#: pro/fields/class-acf-field-gallery.php:508 -msgid "Bulk actions" -msgstr "Aksi besar" - -#: pro/fields/class-acf-field-gallery.php:509 -msgid "Sort by date uploaded" -msgstr "Urutkan berdasarkan tanggal unggah" - -#: pro/fields/class-acf-field-gallery.php:510 -msgid "Sort by date modified" -msgstr "Urutkan berdasarkan tanggal modifikasi" - -#: pro/fields/class-acf-field-gallery.php:511 -msgid "Sort by title" -msgstr "Urutkan menurut judul" - -#: pro/fields/class-acf-field-gallery.php:512 -msgid "Reverse current order" -msgstr "Balik urutan saat ini" - -#: pro/fields/class-acf-field-gallery.php:524 -msgid "Close" -msgstr "Tutup" - -#: pro/fields/class-acf-field-gallery.php:556 -msgid "Return Format" -msgstr "Kembalikan format" - -#: pro/fields/class-acf-field-gallery.php:562 -msgid "Image Array" -msgstr "Gambar Array" - -#: pro/fields/class-acf-field-gallery.php:563 -msgid "Image URL" -msgstr "URL Gambar" - -#: pro/fields/class-acf-field-gallery.php:564 -msgid "Image ID" -msgstr "ID Gambar" - -#: pro/fields/class-acf-field-gallery.php:572 -msgid "Library" -msgstr "Perpustakaan" - -#: pro/fields/class-acf-field-gallery.php:573 -msgid "Limit the media library choice" -msgstr "Batasi pilihan pustaka media" - -#: pro/fields/class-acf-field-gallery.php:578, -#: pro/locations/class-acf-location-block.php:66 -msgid "All" -msgstr "Semua" - -#: pro/fields/class-acf-field-gallery.php:579 -msgid "Uploaded to post" -msgstr "Diunggah ke post" - -#: pro/fields/class-acf-field-gallery.php:615 -msgid "Minimum Selection" -msgstr "Seleksi Minimum" - -#: pro/fields/class-acf-field-gallery.php:625 -msgid "Maximum Selection" -msgstr "Seleksi maksimum" - -#: pro/fields/class-acf-field-gallery.php:635 -msgid "Minimum" -msgstr "Minimum" - -#: pro/fields/class-acf-field-gallery.php:636, -#: pro/fields/class-acf-field-gallery.php:672 -msgid "Restrict which images can be uploaded" -msgstr "Batasi gambar mana yang dapat diunggah" - -#: pro/fields/class-acf-field-gallery.php:639, -#: pro/fields/class-acf-field-gallery.php:675 -msgid "Width" -msgstr "Lebar" - -#: pro/fields/class-acf-field-gallery.php:650, -#: pro/fields/class-acf-field-gallery.php:686 -msgid "Height" -msgstr "Tinggi" - -#: pro/fields/class-acf-field-gallery.php:662, -#: pro/fields/class-acf-field-gallery.php:698 -msgid "File size" -msgstr "Ukuran Berkas" - -#: pro/fields/class-acf-field-gallery.php:671 -msgid "Maximum" -msgstr "Maksimum" - -#: pro/fields/class-acf-field-gallery.php:707 -msgid "Allowed file types" -msgstr "Jenis berkas yang diperbolehkan" - -#: pro/fields/class-acf-field-gallery.php:708 -msgid "Comma separated list. Leave blank for all types" -msgstr "Daftar dipisahkan koma. Kosongkan untuk semua jenis" - -#: pro/fields/class-acf-field-gallery.php:727 -msgid "Insert" -msgstr "Masukkan" - -#: pro/fields/class-acf-field-gallery.php:728 -msgid "Specify where new attachments are added" -msgstr "Tentukan di mana lampiran baru ditambahkan" - -#: pro/fields/class-acf-field-gallery.php:732 -msgid "Append to the end" -msgstr "Tambahkan ke bagian akhir" - -#: pro/fields/class-acf-field-gallery.php:733 -msgid "Prepend to the beginning" -msgstr "Tambahkan ke bagian awal" - -#: pro/fields/class-acf-field-gallery.php:741 -msgid "Preview Size" -msgstr "Ukuran Tinjauan" - -#: pro/fields/class-acf-field-gallery.php:844 -#, fuzzy -#| msgid "%s requires at least %s selection" -#| msgid_plural "%s requires at least %s selections" -msgid "%1$s requires at least %2$s selection" -msgid_plural "%1$s requires at least %2$s selections" -msgstr[0] "%s diperlukan setidaknya %s pilihan" - -#: pro/fields/class-acf-field-repeater.php:29 -msgid "Repeater" -msgstr "Pengulang" - -#: pro/fields/class-acf-field-repeater.php:66, -#: pro/fields/class-acf-field-repeater.php:463 -#, fuzzy -#| msgid "Minimum rows reached ({min} rows)" -msgid "Minimum rows not reached ({min} rows)" -msgstr "Baris minimal mencapai ({min} baris)" - -#: pro/fields/class-acf-field-repeater.php:67 -msgid "Maximum rows reached ({max} rows)" -msgstr "Baris maksimum mencapai ({max} baris)" - -#: pro/fields/class-acf-field-repeater.php:68 -#, fuzzy -#| msgid "Error loading field." -msgid "Error loading page" -msgstr "Kesalahan saat memproses bidang." - -#: pro/fields/class-acf-field-repeater.php:69 -msgid "Order will be assigned upon save" -msgstr "" - -#: pro/fields/class-acf-field-repeater.php:162 -msgid "Sub Fields" -msgstr "Sub Bidang" - -#: pro/fields/class-acf-field-repeater.php:195 -#, fuzzy -#| msgid "Position" -msgid "Pagination" -msgstr "Posisi" - -#: pro/fields/class-acf-field-repeater.php:196 -msgid "Useful for fields with a large number of rows." -msgstr "" - -#: pro/fields/class-acf-field-repeater.php:207 -#, fuzzy -#| msgid "Posts Page" -msgid "Rows Per Page" -msgstr "Laman Post" - -#: pro/fields/class-acf-field-repeater.php:208 -#, fuzzy -#| msgid "Select the taxonomy to be displayed" -msgid "Set the number of rows to be displayed on a page." -msgstr "Pilih taksonomi yang akan ditampilkan" - -#: pro/fields/class-acf-field-repeater.php:240 -msgid "Minimum Rows" -msgstr "Minimum Baris" - -#: pro/fields/class-acf-field-repeater.php:251 -msgid "Maximum Rows" -msgstr "Maksimum Baris" - -#: pro/fields/class-acf-field-repeater.php:281 -msgid "Collapsed" -msgstr "Disempitkan" - -#: pro/fields/class-acf-field-repeater.php:282 -msgid "Select a sub field to show when row is collapsed" -msgstr "Pilih sub bidang untuk ditampilkan ketika baris disempitkan" - -#: pro/fields/class-acf-field-repeater.php:1045 -msgid "Invalid nonce." -msgstr "Nonce tidak valid." - -#: pro/fields/class-acf-field-repeater.php:1060 -#, fuzzy -#| msgid "Invalid field group ID." -msgid "Invalid field key or name." -msgstr "ID grup bidang tidak valid." - -#: pro/fields/class-acf-field-repeater.php:1069 -msgid "There was an error retrieving the field." -msgstr "" - -#: pro/fields/class-acf-repeater-table.php:369 -#, fuzzy -#| msgid "Drag to reorder" -msgid "Click to reorder" -msgstr "Seret untuk menyusun ulang" - -#: pro/fields/class-acf-repeater-table.php:402 -msgid "Add row" -msgstr "Tambah Baris" - -#: pro/fields/class-acf-repeater-table.php:403 -msgid "Duplicate row" -msgstr "Gandakan baris" - -#: pro/fields/class-acf-repeater-table.php:404 -msgid "Remove row" -msgstr "Hapus baris" - -#: pro/fields/class-acf-repeater-table.php:448, -#: pro/fields/class-acf-repeater-table.php:465, -#: pro/fields/class-acf-repeater-table.php:466 -#, fuzzy -#| msgid "Current User" -msgid "Current Page" -msgstr "Pengguna saat ini" - -#: pro/fields/class-acf-repeater-table.php:456, -#: pro/fields/class-acf-repeater-table.php:457 -#, fuzzy -#| msgid "Front Page" -msgid "First Page" -msgstr "Laman Depan" - -#: pro/fields/class-acf-repeater-table.php:460, -#: pro/fields/class-acf-repeater-table.php:461 -#, fuzzy -#| msgid "Posts Page" -msgid "Previous Page" -msgstr "Laman Post" - -#. translators: 1: Current page, 2: Total pages. -#: pro/fields/class-acf-repeater-table.php:470 -msgctxt "paging" -msgid "%1$s of %2$s" -msgstr "" - -#: pro/fields/class-acf-repeater-table.php:477, -#: pro/fields/class-acf-repeater-table.php:478 -#, fuzzy -#| msgid "Front Page" -msgid "Next Page" -msgstr "Laman Depan" - -#: pro/fields/class-acf-repeater-table.php:481, -#: pro/fields/class-acf-repeater-table.php:482 -#, fuzzy -#| msgid "Posts Page" -msgid "Last Page" -msgstr "Laman Post" - -#: pro/locations/class-acf-location-block.php:71 -msgid "No block types exist" -msgstr "Tidak ada tipe blok tersedia" - -#: pro/locations/class-acf-location-options-page.php:22 -msgid "Options Page" -msgstr "Opsi Laman" - -#: pro/locations/class-acf-location-options-page.php:70 -msgid "No options pages exist" -msgstr "Tidak ada pilihan halaman yang ada" - -#: pro/admin/views/html-settings-updates.php:6 -msgid "Deactivate License" -msgstr "Nonaktifkan Lisensi" - -#: pro/admin/views/html-settings-updates.php:6 -msgid "Activate License" -msgstr "Aktifkan Lisensi" - -#: pro/admin/views/html-settings-updates.php:16 -msgid "License Information" -msgstr "Informasi Lisensi" - -#: pro/admin/views/html-settings-updates.php:34 -msgid "" -"To unlock updates, please enter your license key below. If you don't have a " -"licence key, please see details & pricing." -msgstr "" -"Untuk membuka kunci pembaruan, masukkan kunci lisensi Anda di bawah. Jika " -"Anda tidak memiliki kunci lisensi, silakan lihat rincian & " -"harga." - -#: pro/admin/views/html-settings-updates.php:37 -msgid "License Key" -msgstr "Kunci lisensi" - -#: pro/admin/views/html-settings-updates.php:22 -msgid "Your license key is defined in wp-config.php." -msgstr "" - -#: pro/admin/views/html-settings-updates.php:29 -#, fuzzy -#| msgid "Better Validation" -msgid "Retry Activation" -msgstr "Validasi lebih baik" - -#: pro/admin/views/html-settings-updates.php:61 -msgid "Update Information" -msgstr "Informasi Pembaruan" - -#: pro/admin/views/html-settings-updates.php:68 -msgid "Current Version" -msgstr "Versi sekarang" - -#: pro/admin/views/html-settings-updates.php:76 -msgid "Latest Version" -msgstr "Versi terbaru" - -#: pro/admin/views/html-settings-updates.php:84 -msgid "Update Available" -msgstr "Pembaruan Tersedia" - -#: pro/admin/views/html-settings-updates.php:91 -msgid "No" -msgstr "Tidak" - -#: pro/admin/views/html-settings-updates.php:89 -msgid "Yes" -msgstr "Ya" - -#: pro/admin/views/html-settings-updates.php:98 -msgid "Upgrade Notice" -msgstr "Pemberitahuan Upgrade" - -#: pro/admin/views/html-settings-updates.php:126 -msgid "Check For Updates" -msgstr "" - -#: pro/admin/views/html-settings-updates.php:121 -#, fuzzy -#| msgid "Please enter your license key above to unlock updates" -msgid "Enter your license key to unlock updates" -msgstr "Masukkan kunci lisensi Anda di atas untuk membuka pembaruan" - -#: pro/admin/views/html-settings-updates.php:119 -msgid "Update Plugin" -msgstr "Perbarui Plugin" - -#: pro/admin/views/html-settings-updates.php:117 -#, fuzzy -#| msgid "Please enter your license key above to unlock updates" -msgid "Please reactivate your license to unlock updates" -msgstr "Masukkan kunci lisensi Anda di atas untuk membuka pembaruan" diff --git a/lang/acf-it_IT.mo b/lang/acf-it_IT.mo deleted file mode 100644 index 0dec75f..0000000 Binary files a/lang/acf-it_IT.mo and /dev/null differ diff --git a/lang/acf-it_IT.po b/lang/acf-it_IT.po deleted file mode 100644 index 750b5b4..0000000 --- a/lang/acf-it_IT.po +++ /dev/null @@ -1,6191 +0,0 @@ -# Advanced Custom Fields Translations are a combination of translate.wordpress.org contributions, -# combined with user contributed strings for the PRO version. -# Translations from translate.wordpress.org take priority over translations in this file. -# translate.wordpress.org contributions are synced at the time of each release. -# -# If you would like to contribute translations, please visit -# https://translate.wordpress.org/projects/wp-plugins/advanced-custom-fields/stable/ -# -# For additional ACF PRO strings, please submit a pull request over on the ACF GitHub repo at -# http://github.com/advancedcustomfields/acf using the .pot (and any existing .po) files in /lang/pro/ -# -# This file is distributed under the same license as Advanced Custom Fields. -msgid "" -msgstr "" -"PO-Revision-Date: 2023-11-28T09:14:32+00:00\n" -"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n" -"Language: it_IT\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: gettext\n" -"Project-Id-Version: Advanced Custom Fields\n" - -#: includes/admin/views/global/navigation.php:221 -msgid "Renew ACF PRO License" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:17 -msgid "Renew License" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:14 -msgid "Manage License" -msgstr "" - -#: includes/admin/views/acf-field-group/options.php:102 -msgid "'High' position not supported in the Block Editor" -msgstr "" - -#: includes/admin/views/options-page-preview.php:30 -msgid "Upgrade to ACF PRO" -msgstr "" - -#. translators: %s URL to ACF options pages documentation -#: includes/admin/views/options-page-preview.php:7 -msgid "" -"ACF options pages are custom admin " -"pages for managing global settings via fields. You can create multiple pages " -"and sub-pages." -msgstr "" - -#: includes/admin/views/global/header.php:35 -msgid "Add Options Page" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:703 -msgid "In the editor used as the placeholder of the title." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:702 -msgid "Title Placeholder" -msgstr "" - -#: includes/admin/views/global/navigation.php:97 -msgid "4 Months Free" -msgstr "" - -#. translators: %s - A singular label for a post type or taxonomy. -#: includes/admin/views/global/form-top.php:56 -msgid " (Duplicated from %s)" -msgstr " (Duplicato da %s)" - -#: includes/admin/tools/class-acf-admin-tool-export.php:298 -msgid "Select Options Pages" -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:107 -msgid "Duplicate taxonomy" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:106 -#: includes/admin/post-types/admin-taxonomy.php:106 -msgid "Create taxonomy" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:105 -msgid "Duplicate post type" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:104 -#: includes/admin/post-types/admin-taxonomy.php:108 -msgid "Create post type" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:103 -#: includes/admin/post-types/admin-taxonomy.php:105 -msgid "Link field groups" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:102 -#: includes/admin/post-types/admin-taxonomy.php:104 -msgid "Add fields" -msgstr "Aggiungi campi" - -#: includes/admin/post-types/admin-field-group.php:121 -#: assets/build/js/acf-field-group.js:2753 -#: assets/build/js/acf-field-group.js:3236 -msgid "This Field" -msgstr "Questo campo" - -#: includes/admin/admin.php:267 -msgid "ACF PRO" -msgstr "ACF PRO" - -#: includes/admin/admin.php:265 -msgid "Feedback" -msgstr "Feedback" - -#: includes/admin/admin.php:263 -msgid "Support" -msgstr "" - -#. translators: This text is prepended by a link to ACF's website, and appended -#. by a link to WP Engine's website. -#: includes/admin/admin.php:238 -msgid "is developed and maintained by" -msgstr "" - -#. translators: %s - either "post type" or "taxonomy" -#: includes/admin/admin-internal-post-type.php:321 -msgid "Add this %s to the location rules of the selected field groups." -msgstr "" - -#. translators: %s the URL to ACF's bidirectional relationship documentation -#: includes/acf-bidirectional-functions.php:271 -msgid "" -"Enabling the bidirectional setting allows you to update a value in the " -"target fields for each value selected for this field, adding or removing the " -"Post ID, Taxonomy ID or User ID of the item being updated. For more " -"information, please read the documentation." -msgstr "" - -#: includes/acf-bidirectional-functions.php:247 -msgid "" -"Select field(s) to store the reference back to the item being updated. You " -"may select this field. Target fields must be compatible with where this " -"field is being displayed. For example, if this field is displayed on a " -"Taxonomy, your target field should be of type Taxonomy" -msgstr "" - -#: includes/acf-bidirectional-functions.php:246 -msgid "Target Field" -msgstr "" - -#: includes/acf-bidirectional-functions.php:220 -msgid "Update a field on the selected values, referencing back to this ID" -msgstr "" - -#: includes/acf-bidirectional-functions.php:219 -msgid "Bidirectional" -msgstr "" - -#. translators: %s A field type name, such as "Relationship" -#: includes/acf-bidirectional-functions.php:192 -msgid "%s Field" -msgstr "" - -#: includes/fields/class-acf-field-page_link.php:517 -#: includes/fields/class-acf-field-post_object.php:426 -#: includes/fields/class-acf-field-select.php:407 -#: includes/fields/class-acf-field-user.php:82 -msgid "Select Multiple" -msgstr "" - -#: includes/admin/views/global/navigation.php:233 -msgid "WP Engine logo" -msgstr "Logo WP Engine" - -#: includes/admin/views/acf-taxonomy/basic-settings.php:58 -msgid "Lower case letters, underscores and dashes only, Max 32 characters." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1136 -msgid "The capability name for assigning terms of this taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1135 -msgid "Assign Terms Capability" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1119 -msgid "The capability name for deleting terms of this taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1118 -msgid "Delete Terms Capability" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1102 -msgid "The capability name for editing terms of this taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1101 -msgid "Edit Terms Capability" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1085 -msgid "The capability name for managing terms of this taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1084 -msgid "Manage Terms Capability" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:886 -msgid "" -"Sets whether posts should be excluded from search results and taxonomy " -"archive pages." -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:74 -msgid "More Tools from WP Engine" -msgstr "Altri strumenti da WP Engine" - -#. translators: %s - WP Engine logo -#: includes/admin/views/acf-field-group/pro-features.php:69 -msgid "Built for those that build with WordPress, by the team at %s" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:6 -msgid "View Pricing & Upgrade" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:3 -#: includes/admin/views/options-page-preview.php:29 -msgid "Learn More" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:28 -msgid "" -"Speed up your workflow and develop better websites with features like ACF " -"Blocks and Options Pages, and sophisticated field types like Repeater, " -"Flexible Content, Clone, and Gallery." -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:2 -msgid "Unlock Advanced Features and Build Even More with ACF PRO" -msgstr "" - -#. translators: %s - singular label of post type/taxonomy, i.e. "Movie"/"Genre" -#: includes/admin/views/global/form-top.php:19 -msgid "%s fields" -msgstr "" - -#: includes/admin/post-types/admin-taxonomies.php:293 -msgid "No terms" -msgstr "Nessun termine" - -#: includes/admin/post-types/admin-taxonomies.php:266 -msgid "No post types" -msgstr "" - -#: includes/admin/post-types/admin-post-types.php:289 -msgid "No posts" -msgstr "Nessun articolo" - -#: includes/admin/post-types/admin-post-types.php:263 -msgid "No taxonomies" -msgstr "Nessuna tassonomia" - -#: includes/admin/post-types/admin-post-types.php:208 -#: includes/admin/post-types/admin-taxonomies.php:208 -msgid "No field groups" -msgstr "Nessun gruppo di campi" - -#: includes/admin/post-types/admin-field-groups.php:281 -msgid "No fields" -msgstr "Nessun campo" - -#: includes/admin/post-types/admin-field-groups.php:154 -#: includes/admin/post-types/admin-post-types.php:172 -#: includes/admin/post-types/admin-taxonomies.php:172 -msgid "No description" -msgstr "Nessuna descrizione" - -#: includes/fields/class-acf-field-page_link.php:484 -#: includes/fields/class-acf-field-post_object.php:389 -#: includes/fields/class-acf-field-relationship.php:601 -msgid "Any post status" -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:284 -msgid "" -"This taxonomy key is already in use by another taxonomy registered outside " -"of ACF and cannot be used." -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:279 -msgid "" -"This taxonomy key is already in use by another taxonomy in ACF and cannot be " -"used." -msgstr "" -"Questa chiave di tassonomia è già stata usata da un'altra tassonomia in ACF " -"e non può essere usata." - -#: includes/post-types/class-acf-taxonomy.php:252 -msgid "" -"The taxonomy key must only contain lower case alphanumeric characters, " -"underscores or dashes." -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:247 -msgid "The taxonomy key must be under 32 characters." -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:99 -msgid "No Taxonomies found in Trash" -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:98 -msgid "No Taxonomies found" -msgstr "Nessuna tassonomia trovata" - -#: includes/post-types/class-acf-taxonomy.php:97 -msgid "Search Taxonomies" -msgstr "Cerca tassonomie" - -#: includes/post-types/class-acf-taxonomy.php:96 -msgid "View Taxonomy" -msgstr "Visualizza tassonomia" - -#: includes/post-types/class-acf-taxonomy.php:95 -msgid "New Taxonomy" -msgstr "Nuova tassonomia" - -#: includes/post-types/class-acf-taxonomy.php:94 -msgid "Edit Taxonomy" -msgstr "Modifica tassonomia" - -#: includes/post-types/class-acf-taxonomy.php:93 -msgid "Add New Taxonomy" -msgstr "Aggiungi nuova tassonomia" - -#: includes/post-types/class-acf-post-type.php:100 -msgid "No Post Types found in Trash" -msgstr "" - -#: includes/post-types/class-acf-post-type.php:99 -msgid "No Post Types found" -msgstr "" - -#: includes/post-types/class-acf-post-type.php:98 -msgid "Search Post Types" -msgstr "" - -#: includes/post-types/class-acf-post-type.php:97 -msgid "View Post Type" -msgstr "" - -#: includes/post-types/class-acf-post-type.php:96 -msgid "New Post Type" -msgstr "" - -#: includes/post-types/class-acf-post-type.php:95 -msgid "Edit Post Type" -msgstr "" - -#: includes/post-types/class-acf-post-type.php:94 -msgid "Add New Post Type" -msgstr "" - -#: includes/post-types/class-acf-post-type.php:361 -msgid "" -"This post type key is already in use by another post type registered outside " -"of ACF and cannot be used." -msgstr "" - -#: includes/post-types/class-acf-post-type.php:356 -msgid "" -"This post type key is already in use by another post type in ACF and cannot " -"be used." -msgstr "" - -#. translators: %s a link to WordPress.org's Reserved Terms page -#: includes/post-types/class-acf-post-type.php:335 -#: includes/post-types/class-acf-taxonomy.php:258 -msgid "" -"This field must not be a WordPress reserved " -"term." -msgstr "" - -#: includes/post-types/class-acf-post-type.php:329 -msgid "" -"The post type key must only contain lower case alphanumeric characters, " -"underscores or dashes." -msgstr "" - -#: includes/post-types/class-acf-post-type.php:324 -msgid "The post type key must be under 20 characters." -msgstr "" - -#: includes/fields/class-acf-field-wysiwyg.php:27 -msgid "We do not recommend using this field in ACF Blocks." -msgstr "" - -#: includes/fields/class-acf-field-wysiwyg.php:27 -msgid "" -"Displays the WordPress WYSIWYG editor as seen in Posts and Pages allowing " -"for a rich text-editing experience that also allows for multimedia content." -msgstr "" - -#: includes/fields/class-acf-field-wysiwyg.php:25 -msgid "WYSIWYG Editor" -msgstr "Editor WYSIWYG" - -#: includes/fields/class-acf-field-user.php:17 -msgid "" -"Allows the selection of one or more users which can be used to create " -"relationships between data objects." -msgstr "" - -#: includes/fields/class-acf-field-url.php:26 -msgid "A text input specifically designed for storing web addresses." -msgstr "" - -#: includes/fields/class-acf-field-url.php:25 -msgid "URL" -msgstr "URL" - -#: includes/fields/class-acf-field-true_false.php:27 -msgid "" -"A toggle that allows you to pick a value of 1 or 0 (on or off, true or " -"false, etc). Can be presented as a stylized switch or checkbox." -msgstr "" - -#: includes/fields/class-acf-field-time_picker.php:27 -msgid "" -"An interactive UI for picking a time. The time format can be customized " -"using the field settings." -msgstr "" - -#: includes/fields/class-acf-field-textarea.php:26 -msgid "A basic textarea input for storing paragraphs of text." -msgstr "" - -#: includes/fields/class-acf-field-text.php:26 -msgid "A basic text input, useful for storing single string values." -msgstr "" - -#: includes/fields/class-acf-field-taxonomy.php:22 -msgid "" -"Allows the selection of one or more taxonomy terms based on the criteria and " -"options specified in the fields settings." -msgstr "" - -#: includes/fields/class-acf-field-tab.php:28 -msgid "" -"Allows you to group fields into tabbed sections in the edit screen. Useful " -"for keeping fields organized and structured." -msgstr "" - -#: includes/fields/class-acf-field-select.php:27 -msgid "A dropdown list with a selection of choices that you specify." -msgstr "" - -#: includes/fields/class-acf-field-relationship.php:19 -msgid "" -"A dual-column interface to select one or more posts, pages, or custom post " -"type items to create a relationship with the item that you're currently " -"editing. Includes options to search and filter." -msgstr "" - -#: includes/fields/class-acf-field-range.php:26 -msgid "" -"An input for selecting a numerical value within a specified range using a " -"range slider element." -msgstr "" - -#: includes/fields/class-acf-field-radio.php:27 -msgid "" -"A group of radio button inputs that allows the user to make a single " -"selection from values that you specify." -msgstr "" - -#: includes/fields/class-acf-field-post_object.php:19 -msgid "" -"An interactive and customizable UI for picking one or many posts, pages or " -"post type items with the option to search. " -msgstr "" - -#: includes/fields/class-acf-field-password.php:26 -msgid "An input for providing a password using a masked field." -msgstr "" - -#: includes/fields/class-acf-field-page_link.php:476 -#: includes/fields/class-acf-field-post_object.php:381 -#: includes/fields/class-acf-field-relationship.php:593 -msgid "Filter by Post Status" -msgstr "" - -#: includes/fields/class-acf-field-page_link.php:27 -msgid "" -"An interactive dropdown to select one or more posts, pages, custom post type " -"items or archive URLs, with the option to search." -msgstr "" - -#: includes/fields/class-acf-field-oembed.php:27 -msgid "" -"An interactive component for embedding videos, images, tweets, audio and " -"other content by making use of the native WordPress oEmbed functionality." -msgstr "" - -#: includes/fields/class-acf-field-number.php:26 -msgid "An input limited to numerical values." -msgstr "Un input limitato a valori numerici." - -#: includes/fields/class-acf-field-message.php:28 -msgid "" -"Used to display a message to editors alongside other fields. Useful for " -"providing additional context or instructions around your fields." -msgstr "" - -#: includes/fields/class-acf-field-link.php:27 -msgid "" -"Allows you to specify a link and its properties such as title and target " -"using the WordPress native link picker." -msgstr "" - -#: includes/fields/class-acf-field-image.php:27 -msgid "Uses the native WordPress media picker to upload, or choose images." -msgstr "" - -#: includes/fields/class-acf-field-group.php:27 -msgid "" -"Provides a way to structure fields into groups to better organize the data " -"and the edit screen." -msgstr "" - -#: includes/fields/class-acf-field-google-map.php:27 -msgid "" -"An interactive UI for selecting a location using Google Maps. Requires a " -"Google Maps API key and additional configuration to display correctly." -msgstr "" - -#: includes/fields/class-acf-field-file.php:27 -msgid "Uses the native WordPress media picker to upload, or choose files." -msgstr "" - -#: includes/fields/class-acf-field-email.php:26 -msgid "A text input specifically designed for storing email addresses." -msgstr "" - -#: includes/fields/class-acf-field-date_time_picker.php:27 -msgid "" -"An interactive UI for picking a date and time. The date return format can be " -"customized using the field settings." -msgstr "" - -#: includes/fields/class-acf-field-date_picker.php:27 -msgid "" -"An interactive UI for picking a date. The date return format can be " -"customized using the field settings." -msgstr "" - -#: includes/fields/class-acf-field-color_picker.php:27 -msgid "An interactive UI for selecting a color, or specifying a Hex value." -msgstr "" - -#: includes/fields/class-acf-field-checkbox.php:27 -msgid "" -"A group of checkbox inputs that allow the user to select one, or multiple " -"values that you specify." -msgstr "" - -#: includes/fields/class-acf-field-button-group.php:26 -msgid "" -"A group of buttons with values that you specify, users can choose one option " -"from the values provided." -msgstr "" - -#: includes/fields/class-acf-field-accordion.php:27 -msgid "" -"Allows you to group and organize custom fields into collapsable panels that " -"are shown while editing content. Useful for keeping large datasets tidy." -msgstr "" - -#: includes/fields.php:475 -msgid "" -"This provides a solution for repeating content such as slides, team members, " -"and call-to-action tiles, by acting as a parent to a set of subfields which " -"can be repeated again and again." -msgstr "" - -#: includes/fields.php:465 -msgid "" -"This provides an interactive interface for managing a collection of " -"attachments. Most settings are similar to the Image field type. Additional " -"settings allow you to specify where new attachments are added in the gallery " -"and the minimum/maximum number of attachments allowed." -msgstr "" - -#: includes/fields.php:455 -msgid "" -"This provides a simple, structured, layout-based editor. The Flexible " -"Content field allows you to define, create and manage content with total " -"control by using layouts and subfields to design the available blocks." -msgstr "" - -#: includes/fields.php:445 -msgid "" -"This allows you to select and display existing fields. It does not duplicate " -"any fields in the database, but loads and displays the selected fields at " -"run-time. The Clone field can either replace itself with the selected fields " -"or display the selected fields as a group of subfields." -msgstr "" - -#: pro/fields/class-acf-field-clone.php:25 -msgctxt "noun" -msgid "Clone" -msgstr "Clona" - -#: includes/admin/views/global/navigation.php:86 includes/fields.php:357 -msgid "PRO" -msgstr "PRO" - -#: includes/fields.php:355 includes/fields.php:412 -msgid "Advanced" -msgstr "Avanzato" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:85 -msgid "JSON (newer)" -msgstr "" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:81 -msgid "Original" -msgstr "Originale" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:55 -msgid "Invalid post ID." -msgstr "ID articolo non valido." - -#: includes/ajax/class-acf-ajax-local-json-diff.php:47 -msgid "Invalid post type selected for review." -msgstr "" - -#: includes/admin/views/global/navigation.php:186 -msgid "More" -msgstr "" - -#: includes/admin/views/browse-fields-modal.php:86 -msgid "Tutorial" -msgstr "Tutorial" - -#: includes/admin/views/browse-fields-modal.php:75 -msgid "Available with ACF PRO" -msgstr "" - -#: includes/admin/views/browse-fields-modal.php:63 -msgid "Select Field" -msgstr "Seleziona campo" - -#. translators: %s: A link to the popular fields used in ACF -#: includes/admin/views/browse-fields-modal.php:50 -msgid "Try a different search term or browse %s" -msgstr "" - -#: includes/admin/views/browse-fields-modal.php:47 -msgid "Popular fields" -msgstr "" - -#. translators: %s: The invalid search term -#: includes/admin/views/browse-fields-modal.php:40 -msgid "No search results for '%s'" -msgstr "Nessun risultato di ricerca per '%s'" - -#: includes/admin/views/browse-fields-modal.php:13 -msgid "Search fields..." -msgstr "Cerca campi..." - -#: includes/admin/views/browse-fields-modal.php:11 -msgid "Select Field Type" -msgstr "Seleziona tipo di campo" - -#: includes/admin/views/browse-fields-modal.php:4 -msgid "Popular" -msgstr "" - -#: includes/admin/views/acf-taxonomy/list-empty.php:7 -msgid "Add Taxonomy" -msgstr "Aggiungi tassonomia" - -#: includes/admin/views/acf-taxonomy/list-empty.php:6 -msgid "Create custom taxonomies to classify post type content" -msgstr "" - -#: includes/admin/views/acf-taxonomy/list-empty.php:5 -msgid "Add Your First Taxonomy" -msgstr "" - -#: includes/admin/views/acf-taxonomy/basic-settings.php:122 -msgid "Hierarchical taxonomies can have descendants (like categories)." -msgstr "" - -#: includes/admin/views/acf-taxonomy/basic-settings.php:107 -msgid "Makes a taxonomy visible on the frontend and in the admin dashboard." -msgstr "" - -#: includes/admin/views/acf-taxonomy/basic-settings.php:91 -msgid "One or many post types that can be classified with this taxonomy." -msgstr "" - -#. translators: example taxonomy -#: includes/admin/views/acf-taxonomy/basic-settings.php:60 -msgid "genre" -msgstr "genere" - -#. translators: example taxonomy -#: includes/admin/views/acf-taxonomy/basic-settings.php:42 -msgid "Genre" -msgstr "Genere" - -#. translators: example taxonomy -#: includes/admin/views/acf-taxonomy/basic-settings.php:25 -msgid "Genres" -msgstr "Generi" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1211 -msgid "" -"Optional custom controller to use instead of `WP_REST_Terms_Controller `." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1155 -msgid "Expose this post type in the REST API." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1055 -msgid "Customize the query variable name" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1028 -msgid "" -"Terms can be accessed using the non-pretty permalink, e.g., {query_var}" -"={term_slug}." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:981 -msgid "Parent-child terms in URLs for hierarchical taxonomies." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:941 -msgid "Customize the slug used in the URL" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:924 -msgid "Permalinks for this taxonomy are disabled." -msgstr "" - -#. translators: this string will be appended with the new permalink structure. -#: includes/admin/views/acf-taxonomy/advanced-settings.php:921 -msgid "" -"Rewrite the URL using the taxonomy key as the slug. Your permalink structure " -"will be" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:913 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1030 -#: includes/admin/views/acf-taxonomy/basic-settings.php:57 -msgid "Taxonomy Key" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:911 -msgid "Select the type of permalink to use for this taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:896 -msgid "Display a column for the taxonomy on post type listing screens." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:895 -msgid "Show Admin Column" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:882 -msgid "Show the taxonomy in the quick/bulk edit panel." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:881 -msgid "Quick Edit" -msgstr "Modifica rapida" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:868 -msgid "List the taxonomy in the Tag Cloud Widget controls." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:867 -msgid "Tag Cloud" -msgstr "Tag Cloud" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:824 -msgid "" -"A PHP function name to be called for sanitizing taxonomy data saved from a " -"meta box." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:823 -msgid "Meta Box Sanitization Callback" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:805 -msgid "" -"A PHP function name to be called to handle the content of a meta box on your " -"taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:804 -msgid "Register Meta Box Callback" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:763 -msgid "No Meta Box" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:762 -msgid "Custom Meta Box" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:758 -msgid "" -"Controls the meta box on the content editor screen. By default, the " -"Categories meta box is shown for hierarchical taxonomies, and the Tags meta " -"box is shown for non-hierarchical taxonomies." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:757 -msgid "Meta Box" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:746 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:767 -msgid "Categories Meta Box" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:745 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:766 -msgid "Tags Meta Box" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:704 -msgid "A link to a tag" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:703 -msgid "Describes a navigation link block variation used in the block editor." -msgstr "" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:698 -msgid "A link to a %s" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:683 -msgid "Tag Link" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:682 -msgid "" -"Assigns a title for navigation link block variation used in the block editor." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:663 -msgid "← Go to tags" -msgstr "← Vai ai tag" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:662 -msgid "" -"Assigns the text used to link back to the main index after updating a term." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:661 -msgid "Back To Items" -msgstr "Torna agli elementi" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:657 -msgid "← Go to %s" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:642 -msgid "Tags list" -msgstr "Elenco dei tag" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:641 -msgid "Assigns text to the table hidden heading." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:622 -msgid "Tags list navigation" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:621 -msgid "Assigns text to the table pagination hidden heading." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:597 -msgid "Filter by category" -msgstr "Filtra per categoria" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:596 -msgid "Assigns text to the filter button in the posts lists table." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:595 -msgid "Filter By Item" -msgstr "Filtra per elemento" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:591 -msgid "Filter by %s" -msgstr "Filtra per %s" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:575 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:576 -msgid "" -"The description is not prominent by default; however, some themes may show " -"it." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:574 -msgid "Describes the Description field on the Edit Tags screen." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:573 -msgid "Description Field Description" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:554 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:555 -msgid "" -"Assign a parent term to create a hierarchy. The term Jazz, for example, " -"would be the parent of Bebop and Big Band" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:553 -msgid "Describes the Parent field on the Edit Tags screen." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:552 -msgid "Parent Field Description" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:538 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:539 -msgid "" -"The \"slug\" is the URL-friendly version of the name. It is usually all " -"lower case and contains only letters, numbers, and hyphens." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:537 -msgid "Describes the Slug field on the Edit Tags screen." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:536 -msgid "Slug Field Description" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:522 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:523 -msgid "The name is how it appears on your site" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:521 -msgid "Describes the Name field on the Edit Tags screen." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:520 -msgid "Name Field Description" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:507 -msgid "No tags" -msgstr "Nessun tag" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:506 -msgid "" -"Assigns the text displayed in the posts and media list tables when no tags " -"or categories are available." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:505 -msgid "No Terms" -msgstr "" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:501 -msgid "No %s" -msgstr "Nessun %s" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:486 -msgid "No tags found" -msgstr "Nessun tag trovato" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:485 -msgid "" -"Assigns the text displayed when clicking the 'choose from most used' text in " -"the taxonomy meta box when no tags are available, and assigns the text used " -"in the terms list table when there are no items for a taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:484 -msgid "Not Found" -msgstr "Non trovato" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:463 -msgid "Assigns text to the Title field of the Most Used tab." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:462 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:464 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:465 -msgid "Most Used" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:444 -msgid "Choose from the most used tags" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:443 -msgid "" -"Assigns the 'choose from most used' text used in the meta box when " -"JavaScript is disabled. Only used on non-hierarchical taxonomies." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:442 -msgid "Choose From Most Used" -msgstr "" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:438 -msgid "Choose from the most used %s" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:418 -msgid "Add or remove tags" -msgstr "Aggiungi o rimuovi tag" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:417 -msgid "" -"Assigns the add or remove items text used in the meta box when JavaScript is " -"disabled. Only used on non-hierarchical taxonomies" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:416 -msgid "Add Or Remove Items" -msgstr "Aggiungi o rimuovi elementi" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:412 -msgid "Add or remove %s" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:392 -msgid "Separate tags with commas" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:391 -msgid "" -"Assigns the separate item with commas text used in the taxonomy meta box. " -"Only used on non-hierarchical taxonomies." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:390 -msgid "Separate Items With Commas" -msgstr "" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:386 -msgid "Separate %s with commas" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:366 -msgid "Popular Tags" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:365 -msgid "Assigns popular items text. Only used for non-hierarchical taxonomies." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:364 -msgid "Popular Items" -msgstr "" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:361 -msgid "Popular %s" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:347 -msgid "Search Tags" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:346 -msgid "Assigns search items text." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:323 -msgid "Parent Category:" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:322 -msgid "Assigns parent item text, but with a colon (:) added to the end." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:321 -msgid "Parent Item With Colon" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:298 -msgid "Parent Category" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:297 -msgid "Assigns parent item text. Only used on hierarchical taxonomies." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:296 -msgid "Parent Item" -msgstr "" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:293 -msgid "Parent %s" -msgstr "Genitore %s" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:278 -msgid "New Tag Name" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:277 -msgid "Assigns the new item name text." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:276 -msgid "New Item Name" -msgstr "" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:273 -msgid "New %s Name" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:258 -msgid "Add New Tag" -msgstr "Aggiungi nuovo tag" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:257 -msgid "Assigns the add new item text." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:238 -msgid "Update Tag" -msgstr "Aggiorna tag" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:237 -msgid "Assigns the update item text." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:236 -msgid "Update Item" -msgstr "Aggiorna elemento" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:233 -msgid "Update %s" -msgstr "Aggiorna %s" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:218 -msgid "View Tag" -msgstr "Visualizza tag" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:217 -msgid "In the admin bar to view term during editing." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:198 -msgid "Edit Tag" -msgstr "Modifica tag" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:197 -msgid "At the top of the editor screen when editing a term." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:178 -msgid "All Tags" -msgstr "Tutti i tag" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:177 -msgid "Assigns the all items text." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:158 -msgid "Assigns the menu name text." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:157 -msgid "Menu Label" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:131 -msgid "Active taxonomies are enabled and registered with WordPress." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:115 -msgid "A descriptive summary of the taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:95 -msgid "A descriptive summary of the term." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:94 -msgid "Term Description" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:76 -msgid "Single word, no spaces. Underscores and dashes allowed." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:75 -msgid "Term Slug" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:56 -msgid "The name of the default term." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:55 -msgid "Term Name" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:41 -msgid "" -"Create a term for the taxonomy that cannot be deleted. It will not be " -"selected for posts by default." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:40 -msgid "Default Term" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:28 -msgid "" -"Whether terms in this taxonomy should be sorted in the order they are " -"provided to `wp_set_object_terms()`." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:27 -msgid "Sort Terms" -msgstr "" - -#: includes/admin/views/acf-post-type/list-empty.php:7 -msgid "Add Post Type" -msgstr "" - -#: includes/admin/views/acf-post-type/list-empty.php:6 -msgid "" -"Expand the functionality of WordPress beyond standard posts and pages with " -"custom post types." -msgstr "" - -#: includes/admin/views/acf-post-type/list-empty.php:5 -msgid "Add Your First Post Type" -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:136 -#: includes/admin/views/acf-taxonomy/basic-settings.php:135 -msgid "I know what I'm doing, show me all the options." -msgstr "So cosa sto facendo, mostrami tutte le opzioni." - -#: includes/admin/views/acf-post-type/basic-settings.php:135 -#: includes/admin/views/acf-taxonomy/basic-settings.php:134 -msgid "Advanced Configuration" -msgstr "Configurazione avanazata" - -#: includes/admin/views/acf-post-type/basic-settings.php:123 -msgid "Hierarchical post types can have descendants (like pages)." -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:122 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:980 -#: includes/admin/views/acf-taxonomy/basic-settings.php:121 -msgid "Hierarchical" -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:107 -msgid "Visible on the frontend and in the admin dashboard." -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:106 -#: includes/admin/views/acf-taxonomy/basic-settings.php:106 -msgid "Public" -msgstr "Pubblico" - -#. translators: example post type -#: includes/admin/views/acf-post-type/basic-settings.php:59 -msgid "movie" -msgstr "film" - -#: includes/admin/views/acf-post-type/basic-settings.php:57 -msgid "Lower case letters, underscores and dashes only, Max 20 characters." -msgstr "" -"Solo lettere minuscole, trattini bassi e trattini, massimo 20 caratteri." - -#. translators: example post type -#: includes/admin/views/acf-post-type/basic-settings.php:41 -msgid "Movie" -msgstr "Film" - -#: includes/admin/views/acf-post-type/basic-settings.php:39 -#: includes/admin/views/acf-taxonomy/basic-settings.php:40 -msgid "Singular Label" -msgstr "Etichetta singolare" - -#. translators: example post type -#: includes/admin/views/acf-post-type/basic-settings.php:24 -msgid "Movies" -msgstr "Film" - -#: includes/admin/views/acf-post-type/basic-settings.php:22 -#: includes/admin/views/acf-taxonomy/basic-settings.php:23 -msgid "Plural Label" -msgstr "Etichetta plurale" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1270 -msgid "" -"Optional custom controller to use instead of `WP_REST_Posts_Controller`." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1269 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1210 -msgid "Controller Class" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1251 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1191 -msgid "The namespace part of the REST API URL." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1250 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1190 -msgid "Namespace Route" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1232 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1172 -msgid "The base URL for the post type REST API URLs." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1231 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1171 -msgid "Base URL" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1217 -msgid "" -"Exposes this post type in the REST API. Required to use the block editor." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1216 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1154 -msgid "Show In REST API" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1195 -msgid "Customize the query variable name." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1194 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1054 -msgid "Query Variable" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1172 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1032 -msgid "No Query Variable Support" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1171 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1031 -msgid "Custom Query Variable" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1168 -msgid "" -"Items can be accessed using the non-pretty permalink, eg. {post_type}" -"={post_slug}." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1167 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1027 -msgid "Query Variable Support" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1142 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1003 -msgid "URLs for an item and items can be accessed with a query string." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1141 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1002 -msgid "Publicly Queryable" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1120 -msgid "Custom slug for the Archive URL." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1119 -msgid "Archive Slug" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1106 -msgid "" -"Has an item archive that can be customized with an archive template file in " -"your theme." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1105 -msgid "Archive" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1085 -msgid "Pagination support for the items URLs such as the archives." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1084 -msgid "Pagination" -msgstr "Paginazione" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1067 -msgid "RSS feed URL for the post type items." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1066 -msgid "Feed URL" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1048 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:961 -msgid "" -"Alters the permalink structure to add the `WP_Rewrite::$front` prefix to " -"URLs." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1047 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:960 -msgid "Front URL Prefix" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1028 -msgid "Customize the slug used in the URL." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1027 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:940 -msgid "URL Slug" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1011 -msgid "Permalinks for this post type are disabled." -msgstr "" - -#. translators: this string will be appended with the new permalink structure. -#: includes/admin/views/acf-post-type/advanced-settings.php:1010 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:923 -msgid "" -"Rewrite the URL using a custom slug defined in the input below. Your " -"permalink structure will be" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1002 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:915 -msgid "No Permalink (prevent URL rewriting)" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1001 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:914 -msgid "Custom Permalink" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1000 -#: includes/admin/views/acf-post-type/advanced-settings.php:1170 -#: includes/admin/views/acf-post-type/basic-settings.php:56 -msgid "Post Type Key" -msgstr "" - -#. translators: this string will be appended with the new permalink structure. -#: includes/admin/views/acf-post-type/advanced-settings.php:998 -#: includes/admin/views/acf-post-type/advanced-settings.php:1008 -msgid "" -"Rewrite the URL using the post type key as the slug. Your permalink " -"structure will be" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:996 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:910 -msgid "Permalink Rewrite" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:982 -msgid "Delete items by a user when that user is deleted." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:981 -msgid "Delete With User" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:967 -msgid "Allow the post type to be exported from 'Tools' > 'Export'." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:966 -msgid "Can Export" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:935 -msgid "Optionally provide a plural to be used in capabilities." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:934 -msgid "Plural Capability Name" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:916 -msgid "Choose another post type to base the capabilities for this post type." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:915 -msgid "Singular Capability Name" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:901 -msgid "" -"By default the capabilities of the post type will inherit the 'Post' " -"capability names, eg. edit_post, delete_posts. Enable to use post type " -"specific capabilities, eg. edit_{singular}, delete_{plural}." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:900 -msgid "Rename Capabilities" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:885 -msgid "Exclude From Search" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:872 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:854 -msgid "" -"Allow items to be added to menus in the 'Appearance' > 'Menus' screen. Must " -"be turned on in 'Screen options'." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:871 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:853 -msgid "Appearance Menus Support" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:853 -msgid "Appears as an item in the 'New' menu in the admin bar." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:852 -msgid "Show In Admin Bar" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:821 -msgid "" -"A PHP function name to be called when setting up the meta boxes for the edit " -"screen." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:820 -msgid "Custom Meta Box Callback" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:800 -msgid "Menu Icon" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:782 -msgid "The position in the sidebar menu in the admin dashboard." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:781 -msgid "Menu Position" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:763 -msgid "" -"By default the post type will get a new top level item in the admin menu. If " -"an existing top level item is supplied here, the post type will be added as " -"a submenu item under it." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:762 -msgid "Admin Menu Parent" -msgstr "" - -#. translators: %s = "dashicon class name", link to the WordPress dashicon -#. documentation. -#: includes/admin/views/acf-post-type/advanced-settings.php:750 -msgid "" -"The icon used for the post type menu item in the admin dashboard. Can be a " -"URL or %s to use for the icon." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:745 -msgid "Dashicon class name" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:734 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:734 -msgid "Admin editor navigation in the sidebar menu." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:733 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:733 -msgid "Show In Admin Menu" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:720 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:719 -msgid "Items can be edited and managed in the admin dashboard." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:719 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:718 -msgid "Show In UI" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:689 -msgid "A link to a post." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:688 -msgid "Description for a navigation link block variation." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:687 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:702 -msgid "Item Link Description" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:683 -msgid "A link to a %s." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:668 -msgid "Post Link" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:667 -msgid "Title for a navigation link block variation." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:666 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:681 -msgid "Item Link" -msgstr "" - -#. translators: %s Singular form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:663 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:678 -msgid "%s Link" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:648 -msgid "Post updated." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:647 -msgid "In the editor notice after an item is updated." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:646 -msgid "Item Updated" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:643 -msgid "%s updated." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:628 -msgid "Post scheduled." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:627 -msgid "In the editor notice after scheduling an item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:626 -msgid "Item Scheduled" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:623 -msgid "%s scheduled." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:608 -msgid "Post reverted to draft." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:607 -msgid "In the editor notice after reverting an item to draft." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:606 -msgid "Item Reverted To Draft" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:603 -msgid "%s reverted to draft." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:588 -msgid "Post published privately." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:587 -msgid "In the editor notice after publishing a private item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:586 -msgid "Item Published Privately" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:583 -msgid "%s published privately." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:568 -msgid "Post published." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:567 -msgid "In the editor notice after publishing an item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:566 -msgid "Item Published" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:563 -msgid "%s published." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:548 -msgid "Posts list" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:547 -msgid "Used by screen readers for the items list on the post type list screen." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:546 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:640 -msgid "Items List" -msgstr "" - -#. translators: %s Plural form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:543 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:637 -msgid "%s list" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:528 -msgid "Posts list navigation" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:527 -msgid "" -"Used by screen readers for the filter list pagination on the post type list " -"screen." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:526 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:620 -msgid "Items List Navigation" -msgstr "" - -#. translators: %s Plural form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:523 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:617 -msgid "%s list navigation" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:507 -msgid "Filter posts by date" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:506 -msgid "" -"Used by screen readers for the filter by date heading on the post type list " -"screen." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:505 -msgid "Filter Items By Date" -msgstr "" - -#. translators: %s Plural form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:501 -msgid "Filter %s by date" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:486 -msgid "Filter posts list" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:485 -msgid "" -"Used by screen readers for the filter links heading on the post type list " -"screen." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:484 -msgid "Filter Items List" -msgstr "" - -#. translators: %s Plural form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:480 -msgid "Filter %s list" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:464 -msgid "In the media modal showing all media uploaded to this item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:463 -msgid "Uploaded To This Item" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:459 -msgid "Uploaded to this %s" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:444 -msgid "Insert into post" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:443 -msgid "As the button label when adding media to content." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:442 -msgid "Insert Into Media Button" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:438 -msgid "Insert into %s" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:423 -msgid "Use as featured image" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:422 -msgid "" -"As the button label for selecting to use an image as the featured image." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:421 -msgid "Use Featured Image" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:408 -msgid "Remove featured image" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:407 -msgid "As the button label when removing the featured image." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:406 -msgid "Remove Featured Image" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:393 -msgid "Set featured image" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:392 -msgid "As the button label when setting the featured image." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:391 -msgid "Set Featured Image" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:378 -msgid "Featured image" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:377 -msgid "In the editor used for the title of the featured image meta box." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:376 -msgid "Featured Image Meta Box" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:363 -msgid "Post Attributes" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:362 -msgid "In the editor used for the title of the post attributes meta box." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:361 -msgid "Attributes Meta Box" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:358 -msgid "%s Attributes" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:343 -msgid "Post Archives" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:342 -msgid "" -"Adds 'Post Type Archive' items with this label to the list of posts shown " -"when adding items to an existing menu in a CPT with archives enabled. Only " -"appears when editing menus in 'Live Preview' mode and a custom archive slug " -"has been provided." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:341 -msgid "Archives Nav Menu" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:338 -msgid "%s Archives" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:323 -msgid "No posts found in Trash" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:322 -msgid "" -"At the top of the post type list screen when there are no posts in the trash." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:321 -msgid "No Items Found in Trash" -msgstr "" - -#. translators: %s Plural form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:317 -msgid "No %s found in Trash" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:302 -msgid "No posts found" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:301 -msgid "" -"At the top of the post type list screen when there are no posts to display." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:300 -msgid "No Items Found" -msgstr "" - -#. translators: %s Plural form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:296 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:480 -msgid "No %s found" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:281 -msgid "Search Posts" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:280 -msgid "At the top of the items screen when searching for an item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:279 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:345 -msgid "Search Items" -msgstr "" - -#. translators: %s Singular form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:276 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:342 -msgid "Search %s" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:261 -msgid "Parent Page:" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:260 -msgid "For hierarchical types in the post type list screen." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:259 -msgid "Parent Item Prefix" -msgstr "" - -#. translators: %s Singular form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:256 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:318 -msgid "Parent %s:" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:241 -msgid "New Post" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:239 -msgid "New Item" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:236 -msgid "New %s" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:206 -msgid "Add New Post" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:205 -msgid "At the top of the editor screen when adding a new item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:204 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:256 -msgid "Add New Item" -msgstr "" - -#. translators: %s Singular form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:201 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:253 -msgid "Add New %s" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:186 -msgid "View Posts" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:185 -msgid "" -"Appears in the admin bar in the 'All Posts' view, provided the post type " -"supports archives and the home page is not an archive of that post type." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:184 -msgid "View Items" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:166 -msgid "View Post" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:165 -msgid "In the admin bar to view item when editing it." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:164 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:216 -msgid "View Item" -msgstr "" - -#. translators: %s Singular form of post type name -#. translators: %s Plural form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:161 -#: includes/admin/views/acf-post-type/advanced-settings.php:181 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:213 -msgid "View %s" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:146 -msgid "Edit Post" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:145 -msgid "At the top of the editor screen when editing an item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:144 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:196 -msgid "Edit Item" -msgstr "" - -#. translators: %s Singular form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:141 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:193 -msgid "Edit %s" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:126 -msgid "All Posts" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:125 -#: includes/admin/views/acf-post-type/advanced-settings.php:220 -#: includes/admin/views/acf-post-type/advanced-settings.php:240 -msgid "In the post type submenu in the admin dashboard." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:124 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:176 -msgid "All Items" -msgstr "" - -#. translators: %s Plural form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:121 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:173 -msgid "All %s" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:105 -msgid "Admin menu name for the post type." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:104 -msgid "Menu Name" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:90 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:142 -msgid "Regenerate all labels using the Singular and Plural labels" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:88 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:140 -msgid "Regenerate" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:79 -msgid "Active post types are enabled and registered with WordPress." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:63 -msgid "A descriptive summary of the post type." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:48 -msgid "Add Custom" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:42 -msgid "Enable various features in the content editor." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:31 -msgid "Post Formats" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:25 -msgid "Editor" -msgstr "Editor" - -#: includes/admin/views/acf-post-type/advanced-settings.php:24 -msgid "Trackbacks" -msgstr "Trackback" - -#: includes/admin/views/acf-post-type/basic-settings.php:87 -msgid "Select existing taxonomies to classify items of the post type." -msgstr "" - -#: includes/admin/views/acf-field-group/field.php:145 -msgid "Browse Fields" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:292 -msgid "Nothing to import" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:287 -msgid ". The Custom Post Type UI plugin can be deactivated." -msgstr "" - -#. translators: %d - number of items imported from CPTUI -#: includes/admin/tools/class-acf-admin-tool-import.php:278 -msgid "Imported %d item from Custom Post Type UI -" -msgid_plural "Imported %d items from Custom Post Type UI -" -msgstr[0] "" -msgstr[1] "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:262 -msgid "Failed to import taxonomies." -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:244 -msgid "Failed to import post types." -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:233 -msgid "Nothing from Custom Post Type UI plugin selected for import." -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:209 -msgid "Imported 1 item" -msgid_plural "Imported %s items" -msgstr[0] "1 elemento importato." -msgstr[1] "%s elementi importati." - -#: includes/admin/tools/class-acf-admin-tool-import.php:122 -msgid "" -"Importing a Post Type or Taxonomy with the same key as one that already " -"exists will overwrite the settings for the existing Post Type or Taxonomy " -"with those of the import." -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:111 -#: includes/admin/tools/class-acf-admin-tool-import.php:127 -msgid "Import from Custom Post Type UI" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:412 -msgid "" -"The following code can be used to register a local version of the selected " -"items. Storing field groups, post types, or taxonomies locally can provide " -"many benefits such as faster load times, version control & dynamic fields/" -"settings. Simply copy and paste the following code to your theme's functions." -"php file or include it within an external file, then deactivate or delete " -"the items from the ACF admin." -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:411 -msgid "Export - Generate PHP" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:384 -msgid "Export" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:276 -msgid "Select Taxonomies" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:254 -msgid "Select Post Types" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:167 -msgid "Exported 1 item." -msgid_plural "Exported %s items." -msgstr[0] "1 elemento esportato." -msgstr[1] "%s elementi esportati." - -#: includes/admin/post-types/admin-taxonomy.php:129 -#: assets/build/js/acf-internal-post-type.js:182 -#: assets/build/js/acf-internal-post-type.js:256 -msgid "Category" -msgstr "Categoria" - -#: includes/admin/post-types/admin-taxonomy.php:127 -#: assets/build/js/acf-internal-post-type.js:179 -#: assets/build/js/acf-internal-post-type.js:253 -msgid "Tag" -msgstr "Tag" - -#. translators: %s taxonomy name -#: includes/admin/post-types/admin-taxonomy.php:82 -msgid "%s taxonomy created" -msgstr "" - -#. translators: %s taxonomy name -#: includes/admin/post-types/admin-taxonomy.php:76 -msgid "%s taxonomy updated" -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:56 -msgid "Taxonomy draft updated." -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:55 -msgid "Taxonomy scheduled for." -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:54 -msgid "Taxonomy submitted." -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:53 -msgid "Taxonomy saved." -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:49 -msgid "Taxonomy deleted." -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:48 -msgid "Taxonomy updated." -msgstr "" - -#: includes/admin/post-types/admin-taxonomies.php:377 -#: includes/admin/post-types/admin-taxonomy.php:157 -msgid "" -"This taxonomy could not be registered because its key is in use by another " -"taxonomy registered by another plugin or theme." -msgstr "" - -#. translators: %s number of taxonomies synchronized -#: includes/admin/post-types/admin-taxonomies.php:359 -msgid "Taxonomy synchronized." -msgid_plural "%s taxonomies synchronized." -msgstr[0] "" -msgstr[1] "" - -#. translators: %s number of taxonomies duplicated -#: includes/admin/post-types/admin-taxonomies.php:352 -msgid "Taxonomy duplicated." -msgid_plural "%s taxonomies duplicated." -msgstr[0] "" -msgstr[1] "" - -#. translators: %s number of taxonomies deactivated -#: includes/admin/post-types/admin-taxonomies.php:345 -msgid "Taxonomy deactivated." -msgid_plural "%s taxonomies deactivated." -msgstr[0] "" -msgstr[1] "" - -#. translators: %s number of taxonomies activated -#: includes/admin/post-types/admin-taxonomies.php:338 -msgid "Taxonomy activated." -msgid_plural "%s taxonomies activated." -msgstr[0] "" -msgstr[1] "" - -#: includes/admin/post-types/admin-taxonomies.php:139 -msgid "Terms" -msgstr "" - -#. translators: %s number of post types synchronized -#: includes/admin/post-types/admin-post-types.php:352 -msgid "Post type synchronized." -msgid_plural "%s post types synchronized." -msgstr[0] "" -msgstr[1] "" - -#. translators: %s number of post types duplicated -#: includes/admin/post-types/admin-post-types.php:345 -msgid "Post type duplicated." -msgid_plural "%s post types duplicated." -msgstr[0] "" -msgstr[1] "" - -#. translators: %s number of post types deactivated -#: includes/admin/post-types/admin-post-types.php:338 -msgid "Post type deactivated." -msgid_plural "%s post types deactivated." -msgstr[0] "" -msgstr[1] "" - -#. translators: %s number of post types activated -#: includes/admin/post-types/admin-post-types.php:331 -msgid "Post type activated." -msgid_plural "%s post types activated." -msgstr[0] "" -msgstr[1] "" - -#: includes/admin/post-types/admin-post-types.php:112 -#: includes/admin/post-types/admin-taxonomies.php:137 -#: includes/admin/tools/class-acf-admin-tool-import.php:82 -#: includes/admin/views/acf-taxonomy/basic-settings.php:82 -#: includes/post-types/class-acf-post-type.php:91 -msgid "Post Types" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:162 -#: includes/admin/post-types/admin-taxonomy.php:164 -msgid "Advanced Settings" -msgstr "Impostazioni avanzate" - -#: includes/admin/post-types/admin-post-type.php:161 -#: includes/admin/post-types/admin-taxonomy.php:163 -msgid "Basic Settings" -msgstr "Impostazioni di base" - -#: includes/admin/post-types/admin-post-type.php:155 -#: includes/admin/post-types/admin-post-types.php:370 -msgid "" -"This post type could not be registered because its key is in use by another " -"post type registered by another plugin or theme." -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:128 -#: assets/build/js/acf-internal-post-type.js:176 -#: assets/build/js/acf-internal-post-type.js:250 -msgid "Pages" -msgstr "Pagine" - -#: includes/admin/admin-internal-post-type.php:355 -msgid "Link Existing Field Groups" -msgstr "" - -#. translators: %s post type name -#: includes/admin/post-types/admin-post-type.php:80 -msgid "%s post type created" -msgstr "" - -#. translators: %s taxonomy name -#: includes/admin/post-types/admin-taxonomy.php:78 -msgid "Add fields to %s" -msgstr "" - -#. translators: %s post type name -#: includes/admin/post-types/admin-post-type.php:76 -msgid "%s post type updated" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:56 -msgid "Post type draft updated." -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:55 -msgid "Post type scheduled for." -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:54 -msgid "Post type submitted." -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:53 -msgid "Post type saved." -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:50 -msgid "Post type updated." -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:49 -msgid "Post type deleted." -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:120 -#: assets/build/js/acf-field-group.js:1146 -#: assets/build/js/acf-field-group.js:1366 -msgid "Type to search..." -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:105 -#: assets/build/js/acf-field-group.js:1172 -#: assets/build/js/acf-field-group.js:2319 -#: assets/build/js/acf-field-group.js:1414 -#: assets/build/js/acf-field-group.js:2727 -msgid "PRO Only" -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:97 -#: assets/build/js/acf-internal-post-type.js:308 -#: assets/build/js/acf-internal-post-type.js:417 -msgid "Field groups linked successfully." -msgstr "" - -#. translators: %s - URL to ACF tools page. -#: includes/admin/admin.php:195 -msgid "" -"Import Post Types and Taxonomies registered with Custom Post Type UI and " -"manage them with ACF. Get Started." -msgstr "" - -#: includes/admin/admin.php:48 includes/admin/admin.php:267 -msgid "ACF" -msgstr "ACF" - -#: includes/admin/admin-internal-post-type.php:322 -msgid "taxonomy" -msgstr "tassonomia" - -#: includes/admin/admin-internal-post-type.php:322 -msgid "post type" -msgstr "" - -#: includes/admin/admin-internal-post-type.php:346 -msgid "Done" -msgstr "" - -#: includes/admin/admin-internal-post-type.php:332 -msgid "Field Group(s)" -msgstr "" - -#: includes/admin/admin-internal-post-type.php:331 -msgid "Select one or many field groups..." -msgstr "" - -#: includes/admin/admin-internal-post-type.php:330 -msgid "Please select the field groups to link." -msgstr "" - -#: includes/admin/admin-internal-post-type.php:288 -msgid "Field group linked successfully." -msgid_plural "Field groups linked successfully." -msgstr[0] "" -msgstr[1] "" - -#: includes/admin/admin-internal-post-type-list.php:261 -#: includes/admin/post-types/admin-post-types.php:371 -#: includes/admin/post-types/admin-taxonomies.php:378 -msgctxt "post status" -msgid "Registration Failed" -msgstr "" - -#: includes/admin/admin-internal-post-type-list.php:260 -msgid "" -"This item could not be registered because its key is in use by another item " -"registered by another plugin or theme." -msgstr "" - -#: includes/acf-internal-post-type-functions.php:482 -#: includes/acf-internal-post-type-functions.php:511 -msgid "REST API" -msgstr "REST API" - -#: includes/acf-internal-post-type-functions.php:481 -#: includes/acf-internal-post-type-functions.php:510 -#: includes/acf-internal-post-type-functions.php:537 -msgid "Permissions" -msgstr "Autorizzazioni" - -#: includes/acf-internal-post-type-functions.php:480 -#: includes/acf-internal-post-type-functions.php:509 -msgid "URLs" -msgstr "URL" - -#: includes/acf-internal-post-type-functions.php:479 -#: includes/acf-internal-post-type-functions.php:508 -#: includes/acf-internal-post-type-functions.php:535 -msgid "Visibility" -msgstr "Visibilità" - -#: includes/acf-internal-post-type-functions.php:478 -#: includes/acf-internal-post-type-functions.php:507 -#: includes/acf-internal-post-type-functions.php:536 -msgid "Labels" -msgstr "Etichette" - -#: includes/admin/post-types/admin-field-group.php:269 -msgid "Field Settings Tabs" -msgstr "" - -#. Author URI of the plugin -msgid "" -"https://wpengine.com/?utm_source=wordpress." -"org&utm_medium=referral&utm_campaign=plugin_directory&utm_content=advanced_custom_fields" -msgstr "" - -#: includes/api/api-template.php:867 -msgid "[ACF shortcode value disabled for preview]" -msgstr "" - -#: includes/admin/admin-internal-post-type.php:298 -#: includes/admin/post-types/admin-field-group.php:571 -msgid "Close Modal" -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:96 -#: assets/build/js/acf-field-group.js:1670 -#: assets/build/js/acf-field-group.js:1993 -msgid "Field moved to other group" -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:95 -#: assets/build/js/acf.js:1437 assets/build/js/acf.js:1517 -msgid "Close modal" -msgstr "" - -#: includes/fields/class-acf-field-tab.php:125 -msgid "Start a new group of tabs at this tab." -msgstr "" - -#: includes/fields/class-acf-field-tab.php:124 -msgid "New Tab Group" -msgstr "" - -#: includes/fields/class-acf-field-select.php:451 -#: includes/fields/class-acf-field-true_false.php:200 -msgid "Use a stylized checkbox using select2" -msgstr "" - -#: includes/fields/class-acf-field-radio.php:260 -msgid "Save Other Choice" -msgstr "" - -#: includes/fields/class-acf-field-radio.php:249 -msgid "Allow Other Choice" -msgstr "" - -#: includes/fields/class-acf-field-checkbox.php:450 -msgid "Add Toggle All" -msgstr "" - -#: includes/fields/class-acf-field-checkbox.php:409 -msgid "Save Custom Values" -msgstr "Salva valori personalizzati" - -#: includes/fields/class-acf-field-checkbox.php:398 -msgid "Allow Custom Values" -msgstr "Consenti valori personalizzati" - -#: includes/fields/class-acf-field-checkbox.php:148 -msgid "Checkbox custom values cannot be empty. Uncheck any empty values." -msgstr "" - -#: includes/admin/views/global/navigation.php:248 -msgid "Updates" -msgstr "Aggiornamenti" - -#: includes/admin/views/global/navigation.php:176 -msgid "Advanced Custom Fields logo" -msgstr "Logo Advanced Custom Fields" - -#: includes/admin/views/global/form-top.php:89 -msgid "Save Changes" -msgstr "Salva le modifiche" - -#: includes/admin/views/global/form-top.php:76 -msgid "Field Group Title" -msgstr "Titolo gruppo di campi" - -#: includes/admin/views/acf-post-type/advanced-settings.php:704 -#: includes/admin/views/global/form-top.php:3 -msgid "Add title" -msgstr "Aggiungi titolo" - -#. translators: %s url to getting started guide -#: includes/admin/views/acf-field-group/list-empty.php:20 -#: includes/admin/views/acf-post-type/list-empty.php:12 -#: includes/admin/views/acf-taxonomy/list-empty.php:12 -#: includes/admin/views/options-page-preview.php:13 -msgid "" -"New to ACF? Take a look at our getting " -"started guide." -msgstr "" -"Nuovo in ACF? Dai un'occhiata alla nostra guida per iniziare." - -#: includes/admin/views/acf-field-group/list-empty.php:15 -msgid "Add Field Group" -msgstr "Aggiungi un nuovo gruppo di campi" - -#. translators: %s url to creating a field group page -#: includes/admin/views/acf-field-group/list-empty.php:10 -msgid "" -"ACF uses field groups to group custom " -"fields together, and then attach those fields to edit screens." -msgstr "" - -#: includes/admin/views/acf-field-group/list-empty.php:5 -msgid "Add Your First Field Group" -msgstr "Aggiungi il tuo primo gruppo di campi" - -#: includes/admin/admin-options-pages-preview.php:28 -#: includes/admin/views/acf-field-group/pro-features.php:54 -#: includes/admin/views/global/navigation.php:86 -#: includes/admin/views/global/navigation.php:250 -msgid "Options Pages" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:50 -msgid "ACF Blocks" -msgstr "Blocchi ACF" - -#: includes/admin/views/acf-field-group/pro-features.php:58 -msgid "Gallery Field" -msgstr "Campo galleria" - -#: includes/admin/views/acf-field-group/pro-features.php:38 -msgid "Flexible Content Field" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:42 -msgid "Repeater Field" -msgstr "Campo ripetitore" - -#: includes/admin/views/global/navigation.php:212 -msgid "Unlock Extra Features with ACF PRO" -msgstr "Sblocca funzionalità aggiuntive con ACF PRO" - -#: includes/admin/views/acf-field-group/options.php:267 -msgid "Delete Field Group" -msgstr "" - -#. translators: 1: Post creation date 2: Post creation time -#: includes/admin/views/acf-field-group/options.php:261 -msgid "Created on %1$s at %2$s" -msgstr "Creato il %1$s alle %2$s" - -#: includes/acf-field-group-functions.php:497 -msgid "Group Settings" -msgstr "Impostazioni gruppo" - -#: includes/acf-field-group-functions.php:495 -msgid "Location Rules" -msgstr "" - -#. translators: %s url to field types list -#: includes/admin/views/acf-field-group/fields.php:72 -msgid "" -"Choose from over 30 field types. Learn " -"more." -msgstr "" -"Scegli tra più di 30 tipologie di campo. Scopri di più." - -#: includes/admin/views/acf-field-group/fields.php:65 -msgid "" -"Get started creating new custom fields for your posts, pages, custom post " -"types and other WordPress content." -msgstr "" - -#: includes/admin/views/acf-field-group/fields.php:64 -msgid "Add Your First Field" -msgstr "Aggiungi il tuo primo campo" - -#. translators: A symbol (or text, if not available in your locale) meaning -#. "Order Number", in terms of positional placement. -#: includes/admin/views/acf-field-group/fields.php:43 -msgid "#" -msgstr "#" - -#: includes/admin/views/acf-field-group/fields.php:33 -#: includes/admin/views/acf-field-group/fields.php:67 -#: includes/admin/views/acf-field-group/fields.php:103 -#: includes/admin/views/global/form-top.php:85 -msgid "Add Field" -msgstr "Aggiungi campo" - -#: includes/acf-field-group-functions.php:496 includes/fields.php:410 -msgid "Presentation" -msgstr "Presentazione" - -#: includes/fields.php:409 -msgid "Validation" -msgstr "Validazione" - -#: includes/acf-internal-post-type-functions.php:477 -#: includes/acf-internal-post-type-functions.php:506 includes/fields.php:408 -msgid "General" -msgstr "Generale" - -#: includes/admin/tools/class-acf-admin-tool-import.php:70 -msgid "Import JSON" -msgstr "Importa JSON" - -#: includes/admin/tools/class-acf-admin-tool-export.php:392 -msgid "Export As JSON" -msgstr "Esporta come JSON" - -#. translators: %s number of field groups deactivated -#: includes/admin/post-types/admin-field-groups.php:367 -msgid "Field group deactivated." -msgid_plural "%s field groups deactivated." -msgstr[0] "Gruppo di campi disattivato." -msgstr[1] "%s gruppi di campi disattivati." - -#. translators: %s number of field groups activated -#: includes/admin/post-types/admin-field-groups.php:360 -msgid "Field group activated." -msgid_plural "%s field groups activated." -msgstr[0] "Gruppo di campi attivato." -msgstr[1] "%s gruppi di campi attivati." - -#: includes/admin/admin-internal-post-type-list.php:452 -#: includes/admin/admin-internal-post-type-list.php:478 -msgid "Deactivate" -msgstr "Disattiva" - -#: includes/admin/admin-internal-post-type-list.php:452 -msgid "Deactivate this item" -msgstr "Disattiva questo elemento" - -#: includes/admin/admin-internal-post-type-list.php:448 -#: includes/admin/admin-internal-post-type-list.php:477 -msgid "Activate" -msgstr "Attiva" - -#: includes/admin/admin-internal-post-type-list.php:448 -msgid "Activate this item" -msgstr "Attiva questo elemento" - -#: includes/admin/post-types/admin-field-group.php:92 -#: assets/build/js/acf-field-group.js:2812 -#: assets/build/js/acf-field-group.js:3313 -msgid "Move field group to trash?" -msgstr "" - -#: acf.php:497 includes/admin/admin-internal-post-type-list.php:248 -#: includes/admin/post-types/admin-field-group.php:297 -#: includes/admin/post-types/admin-post-type.php:295 -#: includes/admin/post-types/admin-taxonomy.php:297 -msgctxt "post status" -msgid "Inactive" -msgstr "Inattivo" - -#. Author of the plugin -msgid "WP Engine" -msgstr "WP Engine" - -#: acf.php:555 -msgid "" -"Advanced Custom Fields and Advanced Custom Fields PRO should not be active " -"at the same time. We've automatically deactivated Advanced Custom Fields PRO." -msgstr "" -"Advanced Custom Fields e Advanced Custom Fields PRO non dovrebbero essere " -"attivi contemporaneamente. Abbiamo automaticamente disattivato Advanced " -"Custom Fields PRO." - -#: acf.php:553 -msgid "" -"Advanced Custom Fields and Advanced Custom Fields PRO should not be active " -"at the same time. We've automatically deactivated Advanced Custom Fields." -msgstr "" -"Advanced Custom Fields e Advanced Custom Fields PRO non dovrebbero essere " -"attivi contemporaneamente. Abbiamo automaticamente disattivato Advanced " -"Custom Fields." - -#: includes/acf-value-functions.php:374 -msgid "" -"%1$s - We've detected one or more calls to retrieve ACF " -"field values before ACF has been initialized. This is not supported and can " -"result in malformed or missing data. Learn how to fix this." -msgstr "" -"%1$s - Sono state rilevate una o più chiamate per " -"recuperare valori di campi ACF prima che ACF fosse inizializzato. Questo non " -"è supportato e può causare dati non corretti o mancanti. Scopri come correggere questo problema." - -#: includes/fields/class-acf-field-user.php:551 -msgid "%1$s must have a user with the %2$s role." -msgid_plural "%1$s must have a user with one of the following roles: %2$s" -msgstr[0] "%1$s deve aver un utente con il ruolo %2$s." -msgstr[1] "%1$s deve aver un utente con uno dei seguenti ruoli: %2$s" - -#: includes/fields/class-acf-field-user.php:542 -msgid "%1$s must have a valid user ID." -msgstr "%1$s deve avere un ID utente valido." - -#: includes/fields/class-acf-field-user.php:380 -msgid "Invalid request." -msgstr "Richiesta non valida." - -#: includes/fields/class-acf-field-select.php:684 -msgid "%1$s is not one of %2$s" -msgstr "%1$s non è uno di %2$s" - -#: includes/fields/class-acf-field-post_object.php:700 -msgid "%1$s must have term %2$s." -msgid_plural "%1$s must have one of the following terms: %2$s" -msgstr[0] "%1$s deve avere il termine %2$s." -msgstr[1] "%1$s deve avere uno dei seguenti termini: %2$s" - -#: includes/fields/class-acf-field-post_object.php:684 -msgid "%1$s must be of post type %2$s." -msgid_plural "%1$s must be of one of the following post types: %2$s" -msgstr[0] "%1$s deve essere di tipo %2$s." -msgstr[1] "%1$s deve essere di uno dei seguenti tipi: %2$s" - -#: includes/fields/class-acf-field-post_object.php:675 -msgid "%1$s must have a valid post ID." -msgstr "%1$s deve avere un ID articolo valido." - -#: includes/fields/class-acf-field-file.php:475 -msgid "%s requires a valid attachment ID." -msgstr "%s richiede un ID allegato valido." - -#: includes/admin/views/acf-field-group/options.php:233 -msgid "Show in REST API" -msgstr "Mostra in API REST" - -#: includes/fields/class-acf-field-color_picker.php:168 -msgid "Enable Transparency" -msgstr "Abilita trasparenza" - -#: includes/fields/class-acf-field-color_picker.php:187 -msgid "RGBA Array" -msgstr "Array RGBA" - -#: includes/fields/class-acf-field-color_picker.php:98 -msgid "RGBA String" -msgstr "Stringa RGBA" - -#: includes/fields/class-acf-field-color_picker.php:97 -#: includes/fields/class-acf-field-color_picker.php:186 -msgid "Hex String" -msgstr "Stringa esadecimale" - -#: includes/admin/views/browse-fields-modal.php:65 -msgid "Upgrade to PRO" -msgstr "Aggiorna a Pro" - -#: includes/admin/post-types/admin-field-group.php:297 -#: includes/admin/post-types/admin-post-type.php:295 -#: includes/admin/post-types/admin-taxonomy.php:297 -msgctxt "post status" -msgid "Active" -msgstr "Attivo" - -#: includes/fields/class-acf-field-email.php:181 -msgid "'%s' is not a valid email address" -msgstr "'%s' non è un indirizzo email valido" - -#: includes/fields/class-acf-field-color_picker.php:76 -msgid "Color value" -msgstr "Valore del colore" - -#: includes/fields/class-acf-field-color_picker.php:74 -msgid "Select default color" -msgstr "Seleziona il colore predefinito" - -#: includes/fields/class-acf-field-color_picker.php:72 -msgid "Clear color" -msgstr "Rimuovi colore" - -#: includes/acf-wp-functions.php:90 -msgid "Blocks" -msgstr "Blocchi" - -#: includes/acf-wp-functions.php:86 -msgid "Options" -msgstr "Opzioni" - -#: includes/acf-wp-functions.php:82 -msgid "Users" -msgstr "Utenti" - -#: includes/acf-wp-functions.php:78 -msgid "Menu items" -msgstr "Elementi del menu" - -#: includes/acf-wp-functions.php:70 -msgid "Widgets" -msgstr "Widget" - -#: includes/acf-wp-functions.php:62 -msgid "Attachments" -msgstr "Allegati" - -#: includes/acf-wp-functions.php:57 -#: includes/admin/post-types/admin-post-types.php:137 -#: includes/admin/post-types/admin-taxonomies.php:112 -#: includes/admin/tools/class-acf-admin-tool-import.php:93 -#: includes/admin/views/acf-post-type/basic-settings.php:86 -#: includes/post-types/class-acf-taxonomy.php:90 -#: includes/post-types/class-acf-taxonomy.php:91 -msgid "Taxonomies" -msgstr "Tassonomie" - -#: includes/acf-wp-functions.php:44 -#: includes/admin/post-types/admin-post-type.php:126 -#: includes/admin/post-types/admin-post-types.php:139 -#: includes/admin/views/acf-post-type/advanced-settings.php:106 -#: assets/build/js/acf-internal-post-type.js:173 -#: assets/build/js/acf-internal-post-type.js:247 -msgid "Posts" -msgstr "Articoli" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:76 -msgid "Last updated: %s" -msgstr "Ultimo aggiornamento: %s" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:70 -msgid "Sorry, this post is unavailable for diff comparison." -msgstr "" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:42 -msgid "Invalid field group parameter(s)." -msgstr "Parametri del gruppo di campi non validi." - -#: includes/admin/admin-internal-post-type-list.php:413 -msgid "Awaiting save" -msgstr "In attesa del salvataggio" - -#: includes/admin/admin-internal-post-type-list.php:410 -msgid "Saved" -msgstr "Salvato" - -#: includes/admin/admin-internal-post-type-list.php:406 -#: includes/admin/tools/class-acf-admin-tool-import.php:49 -msgid "Import" -msgstr "Importa" - -#: includes/admin/admin-internal-post-type-list.php:402 -msgid "Review changes" -msgstr "Rivedi le modifiche" - -#: includes/admin/admin-internal-post-type-list.php:378 -msgid "Located in: %s" -msgstr "Situato in: %s" - -#: includes/admin/admin-internal-post-type-list.php:375 -msgid "Located in plugin: %s" -msgstr "Situato in plugin: %s" - -#: includes/admin/admin-internal-post-type-list.php:372 -msgid "Located in theme: %s" -msgstr "Situato in tema: %s" - -#: includes/admin/post-types/admin-field-groups.php:261 -msgid "Various" -msgstr "Varie" - -#: includes/admin/admin-internal-post-type-list.php:216 -#: includes/admin/admin-internal-post-type-list.php:485 -msgid "Sync changes" -msgstr "Sincronizza modifiche" - -#: includes/admin/admin-internal-post-type-list.php:215 -msgid "Loading diff" -msgstr "Caricamento differenze" - -#: includes/admin/admin-internal-post-type-list.php:214 -msgid "Review local JSON changes" -msgstr "Verifica modifiche a JSON locale" - -#: includes/admin/admin.php:170 -msgid "Visit website" -msgstr "Visita il sito" - -#: includes/admin/admin.php:169 -msgid "View details" -msgstr "Visualizza i dettagli" - -#: includes/admin/admin.php:168 -msgid "Version %s" -msgstr "Versione %s" - -#: includes/admin/admin.php:167 -msgid "Information" -msgstr "Informazioni" - -#: includes/admin/admin.php:158 -msgid "" -"Help Desk. The support professionals on " -"our Help Desk will assist with your more in depth, technical challenges." -msgstr "" -"Help Desk. I professionisti del nostro " -"Help Desk ti assisteranno per problematiche tecniche." - -#: includes/admin/admin.php:154 -msgid "" -"Discussions. We have an active and " -"friendly community on our Community Forums who may be able to help you " -"figure out the 'how-tos' of the ACF world." -msgstr "" - -#: includes/admin/admin.php:150 -msgid "" -"Documentation. Our extensive " -"documentation contains references and guides for most situations you may " -"encounter." -msgstr "" -"Documentazione. La nostra estesa " -"documentazione contiene riferimenti e guide per la maggior parte delle " -"situazioni che potresti incontrare." - -#: includes/admin/admin.php:147 -msgid "" -"We are fanatical about support, and want you to get the best out of your " -"website with ACF. If you run into any difficulties, there are several places " -"you can find help:" -msgstr "" -"Siamo fissati con il supporto, e vogliamo che tu ottenga il meglio dal tuo " -"sito web con ACF. Se incontri difficoltà, ci sono vari posti in cui puoi " -"trovare aiuto:" - -#: includes/admin/admin.php:144 includes/admin/admin.php:146 -msgid "Help & Support" -msgstr "Aiuto e supporto" - -#: includes/admin/admin.php:135 -msgid "" -"Please use the Help & Support tab to get in touch should you find yourself " -"requiring assistance." -msgstr "" -"Utilizza la scheda \"Aiuto e supporto\" per contattarci in caso di necessità " -"di assistenza." - -#: includes/admin/admin.php:132 -msgid "" -"Before creating your first Field Group, we recommend first reading our Getting started guide to familiarize " -"yourself with the plugin's philosophy and best practises." -msgstr "" -"Prima di creare il tuo primo gruppo di campi, ti raccomandiamo di leggere la " -"nostra guida Getting started per " -"familiarizzare con la filosofia del plugin e le buone pratiche da adottare." - -#: includes/admin/admin.php:130 -msgid "" -"The Advanced Custom Fields plugin provides a visual form builder to " -"customize WordPress edit screens with extra fields, and an intuitive API to " -"display custom field values in any theme template file." -msgstr "" -"Il plugin Advanced Custom Fields fornisce un costruttore visuale di moduli " -"per personalizzare le schermate di modifica di WordPress con campi " -"aggiuntivi, ed un'intuitiva API per la visualizzazione dei campi " -"personalizzati in qualunque file di template di un tema." - -#: includes/admin/admin.php:127 includes/admin/admin.php:129 -msgid "Overview" -msgstr "Panoramica" - -#: includes/locations.php:36 -msgid "Location type \"%s\" is already registered." -msgstr "Il tipo di posizione \"%s\" è già registrato." - -#: includes/locations.php:25 -msgid "Class \"%s\" does not exist." -msgstr "La classe \"%s\" non esiste." - -#: includes/ajax/class-acf-ajax.php:157 -msgid "Invalid nonce." -msgstr "Nonce non valido." - -#: includes/fields/class-acf-field-user.php:375 -msgid "Error loading field." -msgstr "Errore nel caricamento del campo." - -#: assets/build/js/acf-input.js:2750 assets/build/js/acf-input.js:2819 -#: assets/build/js/acf-input.js:2926 assets/build/js/acf-input.js:3000 -msgid "Location not found: %s" -msgstr "Posizione non trovata: %s" - -#: includes/forms/form-user.php:353 -msgid "Error: %s" -msgstr "Errore: %s" - -#: includes/locations/class-acf-location-widget.php:22 -msgid "Widget" -msgstr "Widget" - -#: includes/locations/class-acf-location-user-role.php:24 -msgid "User Role" -msgstr "Ruolo utente" - -#: includes/locations/class-acf-location-comment.php:22 -msgid "Comment" -msgstr "Commento" - -#: includes/locations/class-acf-location-post-format.php:22 -msgid "Post Format" -msgstr "Formato articolo" - -#: includes/locations/class-acf-location-nav-menu-item.php:22 -msgid "Menu Item" -msgstr "Elemento menu" - -#: includes/locations/class-acf-location-post-status.php:22 -msgid "Post Status" -msgstr "Stato articolo" - -#: includes/acf-wp-functions.php:74 -#: includes/locations/class-acf-location-nav-menu.php:89 -msgid "Menus" -msgstr "Menu" - -#: includes/locations/class-acf-location-nav-menu.php:80 -msgid "Menu Locations" -msgstr "Posizioni menu" - -#: includes/locations/class-acf-location-nav-menu.php:22 -msgid "Menu" -msgstr "Menu" - -#: includes/locations/class-acf-location-post-taxonomy.php:22 -msgid "Post Taxonomy" -msgstr "Tassonomia articolo" - -#: includes/locations/class-acf-location-page-type.php:114 -msgid "Child Page (has parent)" -msgstr "Pagina figlia (ha un genitore)" - -#: includes/locations/class-acf-location-page-type.php:113 -msgid "Parent Page (has children)" -msgstr "Pagina genitore (ha figli)" - -#: includes/locations/class-acf-location-page-type.php:112 -msgid "Top Level Page (no parent)" -msgstr "Pagina di primo livello (senza genitore)" - -#: includes/locations/class-acf-location-page-type.php:111 -msgid "Posts Page" -msgstr "Pagina articoli" - -#: includes/locations/class-acf-location-page-type.php:110 -msgid "Front Page" -msgstr "Home page" - -#: includes/locations/class-acf-location-page-type.php:22 -msgid "Page Type" -msgstr "Tipo di pagina" - -#: includes/locations/class-acf-location-current-user.php:73 -msgid "Viewing back end" -msgstr "Visualizzazione back-end" - -#: includes/locations/class-acf-location-current-user.php:72 -msgid "Viewing front end" -msgstr "Visualizzazione front-end" - -#: includes/locations/class-acf-location-current-user.php:71 -msgid "Logged in" -msgstr "Connesso" - -#: includes/locations/class-acf-location-current-user.php:22 -msgid "Current User" -msgstr "Utente corrente" - -#: includes/locations/class-acf-location-page-template.php:22 -msgid "Page Template" -msgstr "Template pagina" - -#: includes/locations/class-acf-location-user-form.php:74 -msgid "Register" -msgstr "Registrati" - -#: includes/locations/class-acf-location-user-form.php:73 -msgid "Add / Edit" -msgstr "Aggiungi / Modifica" - -#: includes/locations/class-acf-location-user-form.php:22 -msgid "User Form" -msgstr "Modulo utente" - -#: includes/locations/class-acf-location-page-parent.php:22 -msgid "Page Parent" -msgstr "Genitore pagina" - -#: includes/locations/class-acf-location-current-user-role.php:77 -msgid "Super Admin" -msgstr "Super amministratore" - -#: includes/locations/class-acf-location-current-user-role.php:22 -msgid "Current User Role" -msgstr "Ruolo dell'utente corrente" - -#: includes/locations/class-acf-location-page-template.php:73 -#: includes/locations/class-acf-location-post-template.php:85 -msgid "Default Template" -msgstr "Template predefinito" - -#: includes/locations/class-acf-location-post-template.php:22 -msgid "Post Template" -msgstr "Template articolo" - -#: includes/locations/class-acf-location-post-category.php:22 -msgid "Post Category" -msgstr "Categoria articolo" - -#: includes/locations/class-acf-location-attachment.php:84 -msgid "All %s formats" -msgstr "Tutti i formati %s" - -#: includes/locations/class-acf-location-attachment.php:22 -msgid "Attachment" -msgstr "Allegato" - -#: includes/validation.php:366 -msgid "%s value is required" -msgstr "Il valore %s è richiesto" - -#: includes/admin/views/acf-field-group/conditional-logic.php:59 -msgid "Show this field if" -msgstr "Mostra questo campo se" - -#: includes/admin/views/acf-field-group/conditional-logic.php:26 -#: includes/admin/views/acf-field-group/field.php:109 includes/fields.php:411 -msgid "Conditional Logic" -msgstr "Condizione logica" - -#: includes/admin/views/acf-field-group/conditional-logic.php:156 -#: includes/admin/views/acf-field-group/location-rule.php:92 -msgid "and" -msgstr "e" - -#: includes/admin/post-types/admin-field-groups.php:123 -#: includes/admin/post-types/admin-post-types.php:143 -#: includes/admin/post-types/admin-taxonomies.php:143 -msgid "Local JSON" -msgstr "JSON locale" - -#: includes/admin/views/acf-field-group/pro-features.php:46 -msgid "Clone Field" -msgstr "Clona campo" - -#: includes/admin/views/upgrade/notice.php:30 -msgid "" -"Please also check all premium add-ons (%s) are updated to the latest version." -msgstr "" -"Controlla anche che tutti gli add-on premium (%s) siano aggiornati " -"all'ultima versione." - -#: includes/admin/views/upgrade/notice.php:28 -msgid "" -"This version contains improvements to your database and requires an upgrade." -msgstr "" -"Questa versione contiene miglioramenti al tuo database e richiede un " -"aggiornamento." - -#: includes/admin/views/upgrade/notice.php:28 -msgid "Thank you for updating to %1$s v%2$s!" -msgstr "Grazie per aver aggiornato a %1$s v%2$s!" - -#: includes/admin/views/upgrade/notice.php:27 -msgid "Database Upgrade Required" -msgstr "È richiesto un aggiornamento del database" - -#: includes/admin/post-types/admin-field-group.php:141 -#: includes/admin/views/upgrade/notice.php:18 -msgid "Options Page" -msgstr "Pagina opzioni" - -#: includes/admin/views/upgrade/notice.php:15 includes/fields.php:462 -msgid "Gallery" -msgstr "Galleria" - -#: includes/admin/views/upgrade/notice.php:12 includes/fields.php:452 -msgid "Flexible Content" -msgstr "Contenuto flessibile" - -#: includes/admin/views/upgrade/notice.php:9 includes/fields.php:472 -msgid "Repeater" -msgstr "Ripetitore" - -#: includes/admin/views/tools/tools.php:24 -msgid "Back to all tools" -msgstr "Torna a tutti gli strumenti" - -#: includes/admin/views/acf-field-group/options.php:195 -msgid "" -"If multiple field groups appear on an edit screen, the first field group's " -"options will be used (the one with the lowest order number)" -msgstr "" -"Se più gruppi di campi appaiono su una schermata di modifica, verranno usate " -"le opzioni del primo gruppo di campi usato (quello con il numero d'ordine " -"più basso)" - -#: includes/admin/views/acf-field-group/options.php:195 -msgid "Select items to hide them from the edit screen." -msgstr "" -"Seleziona gli elementi per nasconderli dalla schermata di " -"modifica." - -#: includes/admin/views/acf-field-group/options.php:194 -msgid "Hide on screen" -msgstr "Nascondi nella schermata" - -#: includes/admin/views/acf-field-group/options.php:186 -msgid "Send Trackbacks" -msgstr "Invia trackback" - -#: includes/admin/post-types/admin-taxonomy.php:128 -#: includes/admin/views/acf-field-group/options.php:185 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:159 -#: assets/build/js/acf-internal-post-type.js:180 -#: assets/build/js/acf-internal-post-type.js:254 -msgid "Tags" -msgstr "Tag" - -#: includes/admin/post-types/admin-taxonomy.php:130 -#: includes/admin/views/acf-field-group/options.php:184 -#: assets/build/js/acf-internal-post-type.js:183 -#: assets/build/js/acf-internal-post-type.js:257 -msgid "Categories" -msgstr "Categorie" - -#: includes/admin/views/acf-field-group/options.php:182 -#: includes/admin/views/acf-post-type/advanced-settings.php:28 -msgid "Page Attributes" -msgstr "Attributi della pagina" - -#: includes/admin/views/acf-field-group/options.php:181 -msgid "Format" -msgstr "Formato" - -#: includes/admin/views/acf-field-group/options.php:180 -#: includes/admin/views/acf-post-type/advanced-settings.php:22 -msgid "Author" -msgstr "Autore" - -#: includes/admin/views/acf-field-group/options.php:179 -msgid "Slug" -msgstr "Slug" - -#: includes/admin/views/acf-field-group/options.php:178 -#: includes/admin/views/acf-post-type/advanced-settings.php:27 -msgid "Revisions" -msgstr "Revisioni" - -#: includes/acf-wp-functions.php:66 -#: includes/admin/views/acf-field-group/options.php:177 -#: includes/admin/views/acf-post-type/advanced-settings.php:23 -msgid "Comments" -msgstr "Commenti" - -#: includes/admin/views/acf-field-group/options.php:176 -msgid "Discussion" -msgstr "Discussione" - -#: includes/admin/views/acf-field-group/options.php:174 -#: includes/admin/views/acf-post-type/advanced-settings.php:26 -msgid "Excerpt" -msgstr "Riassunto" - -#: includes/admin/views/acf-field-group/options.php:173 -msgid "Content Editor" -msgstr "Editor contenuto" - -#: includes/admin/views/acf-field-group/options.php:172 -msgid "Permalink" -msgstr "Permalink" - -#: includes/admin/views/acf-field-group/options.php:250 -msgid "Shown in field group list" -msgstr "Mostrato nell'elenco dei gruppi di campi" - -#: includes/admin/views/acf-field-group/options.php:157 -msgid "Field groups with a lower order will appear first" -msgstr "I gruppi di campi con un valore inferiore appariranno per primi" - -#: includes/admin/views/acf-field-group/options.php:156 -msgid "Order No." -msgstr "N. ordine" - -#: includes/admin/views/acf-field-group/options.php:147 -msgid "Below fields" -msgstr "Sotto ai campi" - -#: includes/admin/views/acf-field-group/options.php:146 -msgid "Below labels" -msgstr "Sotto alle etichette" - -#: includes/admin/views/acf-field-group/options.php:139 -msgid "Instruction Placement" -msgstr "" - -#: includes/admin/views/acf-field-group/options.php:122 -msgid "Label Placement" -msgstr "Posizione etichetta" - -#: includes/admin/views/acf-field-group/options.php:110 -msgid "Side" -msgstr "Laterale" - -#: includes/admin/views/acf-field-group/options.php:109 -msgid "Normal (after content)" -msgstr "Normale (dopo il contenuto)" - -#: includes/admin/views/acf-field-group/options.php:108 -msgid "High (after title)" -msgstr "Alta (dopo il titolo)" - -#: includes/admin/views/acf-field-group/options.php:101 -msgid "Position" -msgstr "Posizione" - -#: includes/admin/views/acf-field-group/options.php:92 -msgid "Seamless (no metabox)" -msgstr "Senza soluzione di continuità (senza metabox)" - -#: includes/admin/views/acf-field-group/options.php:91 -msgid "Standard (WP metabox)" -msgstr "Standard (metabox WP)" - -#: includes/admin/views/acf-field-group/options.php:84 -msgid "Style" -msgstr "Stile" - -#: includes/admin/views/acf-field-group/fields.php:55 -msgid "Type" -msgstr "Tipo" - -#: includes/admin/post-types/admin-field-groups.php:117 -#: includes/admin/post-types/admin-post-types.php:136 -#: includes/admin/post-types/admin-taxonomies.php:136 -#: includes/admin/views/acf-field-group/fields.php:54 -msgid "Key" -msgstr "Chiave" - -#. translators: Hidden accessibility text for the positional order number of -#. the field. -#: includes/admin/views/acf-field-group/fields.php:48 -msgid "Order" -msgstr "Ordine" - -#: includes/admin/views/acf-field-group/field.php:322 -msgid "Close Field" -msgstr "Chiudi campo" - -#: includes/admin/views/acf-field-group/field.php:253 -msgid "id" -msgstr "id" - -#: includes/admin/views/acf-field-group/field.php:237 -msgid "class" -msgstr "classe" - -#: includes/admin/views/acf-field-group/field.php:279 -msgid "width" -msgstr "larghezza" - -#: includes/admin/views/acf-field-group/field.php:273 -msgid "Wrapper Attributes" -msgstr "Attributi contenitore" - -#: includes/admin/views/acf-field-group/field.php:196 -msgid "Required" -msgstr "" - -#: includes/admin/views/acf-field-group/field.php:221 -msgid "Instructions for authors. Shown when submitting data" -msgstr "Istruzioni per gli autori. Mostrato in fase di invio dei dati" - -#: includes/admin/views/acf-field-group/field.php:220 -msgid "Instructions" -msgstr "Istruzioni" - -#: includes/admin/views/acf-field-group/field.php:129 -msgid "Field Type" -msgstr "Tipo di campo" - -#: includes/admin/views/acf-field-group/field.php:170 -msgid "Single word, no spaces. Underscores and dashes allowed" -msgstr "Singola parola, nessun spazio. Sottolineatura e trattini consentiti" - -#: includes/admin/views/acf-field-group/field.php:169 -msgid "Field Name" -msgstr "Nome campo" - -#: includes/admin/views/acf-field-group/field.php:157 -msgid "This is the name which will appear on the EDIT page" -msgstr "Questo è il nome che apparirà sulla pagina di modifica" - -#: includes/admin/views/acf-field-group/field.php:156 -#: includes/admin/views/browse-fields-modal.php:59 -msgid "Field Label" -msgstr "Etichetta campo" - -#: includes/admin/views/acf-field-group/field.php:81 -msgid "Delete" -msgstr "Elimina" - -#: includes/admin/views/acf-field-group/field.php:81 -msgid "Delete field" -msgstr "Elimina campo" - -#: includes/admin/views/acf-field-group/field.php:79 -msgid "Move" -msgstr "Sposta" - -#: includes/admin/views/acf-field-group/field.php:79 -msgid "Move field to another group" -msgstr "Sposta campo in un altro gruppo" - -#: includes/admin/views/acf-field-group/field.php:77 -msgid "Duplicate field" -msgstr "Duplica campo" - -#: includes/admin/views/acf-field-group/field.php:73 -#: includes/admin/views/acf-field-group/field.php:76 -msgid "Edit field" -msgstr "Modifica campo" - -#: includes/admin/views/acf-field-group/field.php:69 -msgid "Drag to reorder" -msgstr "Trascina per riordinare" - -#: includes/admin/post-types/admin-field-group.php:103 -#: includes/admin/views/acf-field-group/location-group.php:3 -#: assets/build/js/acf-field-group.js:2347 -#: assets/build/js/acf-field-group.js:2763 -msgid "Show this field group if" -msgstr "Mostra questo gruppo di campo se" - -#: includes/admin/views/upgrade/upgrade.php:94 -#: includes/ajax/class-acf-ajax-upgrade.php:34 -msgid "No updates available." -msgstr "Nessun aggiornamento disponibile." - -#: includes/admin/views/upgrade/upgrade.php:33 -msgid "Database upgrade complete. See what's new" -msgstr "" -"Aggiornamento del database completato. Leggi le novità" - -#: includes/admin/views/upgrade/upgrade.php:30 -msgid "Reading upgrade tasks..." -msgstr "Lettura attività di aggiornamento..." - -#: includes/admin/views/upgrade/network.php:165 -#: includes/admin/views/upgrade/upgrade.php:65 -msgid "Upgrade failed." -msgstr "Aggiornamento fallito." - -#: includes/admin/views/upgrade/network.php:162 -msgid "Upgrade complete." -msgstr "Aggiornamento completato." - -#: includes/admin/views/upgrade/network.php:148 -#: includes/admin/views/upgrade/upgrade.php:31 -msgid "Upgrading data to version %s" -msgstr "Aggiornamento dati alla versione %s" - -#: includes/admin/views/upgrade/network.php:121 -#: includes/admin/views/upgrade/notice.php:44 -msgid "" -"It is strongly recommended that you backup your database before proceeding. " -"Are you sure you wish to run the updater now?" -msgstr "" -"È caldamente raccomandato eseguire il backup del tuo database prima di " -"procedere. Desideri davvero eseguire il programma di aggiornamento ora?" - -#: includes/admin/views/upgrade/network.php:117 -msgid "Please select at least one site to upgrade." -msgstr "Seleziona almeno un sito da aggiornare." - -#: includes/admin/views/upgrade/network.php:97 -msgid "" -"Database Upgrade complete. Return to network dashboard" -msgstr "" -"L'aggiornamento del database è stato completato. Ritorna alla " -"bacheca del network" - -#: includes/admin/views/upgrade/network.php:80 -msgid "Site is up to date" -msgstr "Il sito è aggiornato" - -#: includes/admin/views/upgrade/network.php:78 -msgid "Site requires database upgrade from %1$s to %2$s" -msgstr "" -"Il sito necessita di un aggiornamento del database dalla versione %1$s alla " -"%2$s" - -#: includes/admin/views/upgrade/network.php:36 -#: includes/admin/views/upgrade/network.php:47 -msgid "Site" -msgstr "Sito" - -#: includes/admin/views/upgrade/network.php:26 -#: includes/admin/views/upgrade/network.php:27 -#: includes/admin/views/upgrade/network.php:96 -msgid "Upgrade Sites" -msgstr "Aggiorna siti" - -#: includes/admin/views/upgrade/network.php:26 -msgid "" -"The following sites require a DB upgrade. Check the ones you want to update " -"and then click %s." -msgstr "" -"I seguenti siti hanno necessità di un aggiornamento del DB. Controlla quelli " -"che vuoi aggiornare e fai clic su %s." - -#: includes/admin/views/acf-field-group/conditional-logic.php:171 -#: includes/admin/views/acf-field-group/locations.php:38 -msgid "Add rule group" -msgstr "Aggiungi gruppo di regole" - -#: includes/admin/views/acf-field-group/locations.php:10 -msgid "" -"Create a set of rules to determine which edit screens will use these " -"advanced custom fields" -msgstr "" -"Crea un insieme di regole per determinare in quali schermate di modifica " -"saranno usati i campi personalizzati avanzati" - -#: includes/admin/views/acf-field-group/locations.php:9 -msgid "Rules" -msgstr "Regole" - -#: includes/admin/tools/class-acf-admin-tool-export.php:510 -msgid "Copied" -msgstr "Copiato" - -#: includes/admin/tools/class-acf-admin-tool-export.php:486 -msgid "Copy to clipboard" -msgstr "Copia negli appunti" - -#: includes/admin/tools/class-acf-admin-tool-export.php:385 -msgid "" -"Select the items you would like to export and then select your export " -"method. Export As JSON to export to a .json file which you can then import " -"to another ACF installation. Generate PHP to export to PHP code which you " -"can place in your theme." -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:233 -msgid "Select Field Groups" -msgstr "Seleziona gruppi di campi" - -#: includes/admin/tools/class-acf-admin-tool-export.php:96 -#: includes/admin/tools/class-acf-admin-tool-export.php:131 -msgid "No field groups selected" -msgstr "Nessun gruppo di campi selezionato" - -#: includes/admin/tools/class-acf-admin-tool-export.php:39 -#: includes/admin/tools/class-acf-admin-tool-export.php:393 -#: includes/admin/tools/class-acf-admin-tool-export.php:421 -msgid "Generate PHP" -msgstr "Genera PHP" - -#: includes/admin/tools/class-acf-admin-tool-export.php:35 -msgid "Export Field Groups" -msgstr "Esporta gruppi di campi" - -#: includes/admin/tools/class-acf-admin-tool-import.php:177 -msgid "Import file empty" -msgstr "File da importare vuoto" - -#: includes/admin/tools/class-acf-admin-tool-import.php:168 -msgid "Incorrect file type" -msgstr "Tipo file non corretto" - -#: includes/admin/tools/class-acf-admin-tool-import.php:163 -msgid "Error uploading file. Please try again" -msgstr "Errore durante il caricamento del file. Prova di nuovo" - -#: includes/admin/tools/class-acf-admin-tool-import.php:50 -msgid "" -"Select the Advanced Custom Fields JSON file you would like to import. When " -"you click the import button below, ACF will import the items in that file." -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:27 -msgid "Import Field Groups" -msgstr "Importa gruppi di campi" - -#: includes/admin/admin-internal-post-type-list.php:401 -msgid "Sync" -msgstr "Sincronizza" - -#: includes/admin/admin-internal-post-type-list.php:858 -msgid "Select %s" -msgstr "Seleziona %s" - -#: includes/admin/admin-internal-post-type-list.php:442 -#: includes/admin/admin-internal-post-type-list.php:474 -#: includes/admin/views/acf-field-group/field.php:77 -msgid "Duplicate" -msgstr "Duplica" - -#: includes/admin/admin-internal-post-type-list.php:442 -msgid "Duplicate this item" -msgstr "Duplica questo elemento" - -#: includes/admin/views/acf-post-type/advanced-settings.php:41 -msgid "Supports" -msgstr "" - -#: includes/admin/admin.php:261 includes/admin/views/browse-fields-modal.php:92 -msgid "Documentation" -msgstr "Documentazione" - -#: includes/admin/post-types/admin-field-groups.php:116 -#: includes/admin/post-types/admin-post-types.php:135 -#: includes/admin/post-types/admin-taxonomies.php:135 -#: includes/admin/views/acf-field-group/options.php:249 -#: includes/admin/views/acf-post-type/advanced-settings.php:62 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:114 -#: includes/admin/views/upgrade/network.php:38 -#: includes/admin/views/upgrade/network.php:49 -msgid "Description" -msgstr "Descrizione" - -#: includes/admin/admin-internal-post-type-list.php:398 -#: includes/admin/admin-internal-post-type-list.php:747 -msgid "Sync available" -msgstr "Sincronizzazione disponibile" - -#. translators: %s number of field groups synchronized -#: includes/admin/post-types/admin-field-groups.php:381 -msgid "Field group synchronized." -msgid_plural "%s field groups synchronized." -msgstr[0] "Gruppo di campi sincronizzato." -msgstr[1] "%s gruppi di campi sincronizzati." - -#. translators: %s number of field groups duplicated -#: includes/admin/post-types/admin-field-groups.php:374 -msgid "Field group duplicated." -msgid_plural "%s field groups duplicated." -msgstr[0] "Gruppo di campi duplicato." -msgstr[1] "%s gruppi di campi duplicati." - -#: includes/admin/admin-internal-post-type-list.php:137 -msgid "Active (%s)" -msgid_plural "Active (%s)" -msgstr[0] "Attivo (%s)" -msgstr[1] "Attivi (%s)" - -#: includes/admin/admin-upgrade.php:254 -msgid "Review sites & upgrade" -msgstr "Verifica i siti ed effettua l'aggiornamento" - -#: includes/admin/admin-upgrade.php:59 includes/admin/admin-upgrade.php:93 -#: includes/admin/admin-upgrade.php:94 includes/admin/admin-upgrade.php:230 -#: includes/admin/views/upgrade/network.php:24 -#: includes/admin/views/upgrade/upgrade.php:26 -msgid "Upgrade Database" -msgstr "Aggiorna database" - -#: includes/admin/views/acf-field-group/options.php:175 -#: includes/admin/views/acf-post-type/advanced-settings.php:30 -msgid "Custom Fields" -msgstr "Campi personalizzati" - -#: includes/admin/post-types/admin-field-group.php:616 -msgid "Move Field" -msgstr "Sposta campo" - -#: includes/admin/post-types/admin-field-group.php:605 -#: includes/admin/post-types/admin-field-group.php:609 -msgid "Please select the destination for this field" -msgstr "Seleziona la destinazione per questo campo" - -#. translators: Confirmation message once a field has been moved to a different -#. field group. -#: includes/admin/post-types/admin-field-group.php:567 -msgid "The %1$s field can now be found in the %2$s field group" -msgstr "Il campo %1$s può essere trovato nel gruppo di campi %2$s" - -#: includes/admin/post-types/admin-field-group.php:564 -msgid "Move Complete." -msgstr "Spostamento completato." - -#: includes/admin/views/acf-field-group/field.php:39 -#: includes/admin/views/acf-field-group/options.php:217 -#: includes/admin/views/acf-post-type/advanced-settings.php:78 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:130 -msgid "Active" -msgstr "Attivo" - -#: includes/admin/post-types/admin-field-group.php:266 -msgid "Field Keys" -msgstr "Chiavi campo" - -#: includes/admin/post-types/admin-field-group.php:164 -#: includes/admin/tools/class-acf-admin-tool-export.php:342 -msgid "Settings" -msgstr "Impostazioni" - -#: includes/admin/post-types/admin-field-groups.php:118 -msgid "Location" -msgstr "Posizione" - -#: includes/admin/post-types/admin-field-group.php:104 -#: assets/build/js/acf-input.js:983 assets/build/js/acf-input.js:1075 -msgid "Null" -msgstr "Null" - -#: includes/admin/post-types/admin-field-group.php:101 -#: includes/class-acf-internal-post-type.php:730 -#: includes/post-types/class-acf-field-group.php:345 -#: assets/build/js/acf-field-group.js:1510 -#: assets/build/js/acf-field-group.js:1821 -msgid "copy" -msgstr "copia" - -#: includes/admin/post-types/admin-field-group.php:100 -#: assets/build/js/acf-field-group.js:623 -#: assets/build/js/acf-field-group.js:778 -msgid "(this field)" -msgstr "(questo campo)" - -#: includes/admin/post-types/admin-field-group.php:98 -#: assets/build/js/acf-input.js:918 assets/build/js/acf-input.js:943 -#: assets/build/js/acf-input.js:1002 assets/build/js/acf-input.js:1030 -msgid "Checked" -msgstr "Selezionato" - -#: includes/admin/post-types/admin-field-group.php:94 -#: assets/build/js/acf-field-group.js:1615 -#: assets/build/js/acf-field-group.js:1933 -msgid "Move Custom Field" -msgstr "Sposta campo personalizzato" - -#: includes/admin/post-types/admin-field-group.php:93 -#: assets/build/js/acf-field-group.js:649 -#: assets/build/js/acf-field-group.js:804 -msgid "No toggle fields available" -msgstr "Nessun campo attiva/disattiva disponibile" - -#: includes/admin/post-types/admin-field-group.php:91 -msgid "Field group title is required" -msgstr "Il titolo del gruppo di campi è necessario" - -#: includes/admin/post-types/admin-field-group.php:90 -#: assets/build/js/acf-field-group.js:1604 -#: assets/build/js/acf-field-group.js:1919 -msgid "This field cannot be moved until its changes have been saved" -msgstr "" -"Questo campo non può essere spostato fino a quando non saranno state salvate " -"le modifiche" - -#: includes/admin/post-types/admin-field-group.php:89 -#: assets/build/js/acf-field-group.js:1414 -#: assets/build/js/acf-field-group.js:1716 -msgid "The string \"field_\" may not be used at the start of a field name" -msgstr "" -"La stringa \"field_\" non può essere usata come inizio nel nome di un campo" - -#: includes/admin/post-types/admin-field-group.php:71 -msgid "Field group draft updated." -msgstr "Bozza del gruppo di campi aggiornata." - -#: includes/admin/post-types/admin-field-group.php:70 -msgid "Field group scheduled for." -msgstr "Gruppo di campi programmato." - -#: includes/admin/post-types/admin-field-group.php:69 -msgid "Field group submitted." -msgstr "Gruppo di campi inviato." - -#: includes/admin/post-types/admin-field-group.php:68 -msgid "Field group saved." -msgstr "Gruppo di campi salvato." - -#: includes/admin/post-types/admin-field-group.php:67 -msgid "Field group published." -msgstr "Gruppo di campi pubblicato." - -#: includes/admin/post-types/admin-field-group.php:64 -msgid "Field group deleted." -msgstr "Gruppo di campi eliminato." - -#: includes/admin/post-types/admin-field-group.php:62 -#: includes/admin/post-types/admin-field-group.php:63 -#: includes/admin/post-types/admin-field-group.php:65 -msgid "Field group updated." -msgstr "Gruppo di campi aggiornato." - -#: includes/admin/admin-tools.php:118 -#: includes/admin/views/global/navigation.php:246 -#: includes/admin/views/tools/tools.php:21 -msgid "Tools" -msgstr "Strumenti" - -#: includes/locations/abstract-acf-location.php:106 -msgid "is not equal to" -msgstr "non è uguale a" - -#: includes/locations/abstract-acf-location.php:105 -msgid "is equal to" -msgstr "è uguale a" - -#: includes/locations.php:102 -msgid "Forms" -msgstr "Moduli" - -#: includes/admin/post-types/admin-post-type.php:127 includes/locations.php:100 -#: includes/locations/class-acf-location-page.php:22 -#: assets/build/js/acf-internal-post-type.js:175 -#: assets/build/js/acf-internal-post-type.js:249 -msgid "Page" -msgstr "Pagina" - -#: includes/admin/post-types/admin-post-type.php:125 includes/locations.php:99 -#: includes/locations/class-acf-location-post.php:22 -#: assets/build/js/acf-internal-post-type.js:172 -#: assets/build/js/acf-internal-post-type.js:246 -msgid "Post" -msgstr "Articolo" - -#: includes/fields.php:354 -msgid "Relational" -msgstr "Relazionale" - -#: includes/fields.php:353 -msgid "Choice" -msgstr "Scelta" - -#: includes/fields.php:351 -msgid "Basic" -msgstr "Base" - -#: includes/fields.php:320 -msgid "Unknown" -msgstr "Sconosciuto" - -#: includes/fields.php:320 -msgid "Field type does not exist" -msgstr "Il tipo di campo non esiste" - -#: includes/forms/form-front.php:236 -msgid "Spam Detected" -msgstr "Spam rilevato" - -#: includes/forms/form-front.php:107 -msgid "Post updated" -msgstr "Articolo aggiornato" - -#: includes/forms/form-front.php:106 -msgid "Update" -msgstr "Aggiorna" - -#: includes/forms/form-front.php:57 -msgid "Validate Email" -msgstr "Valida email" - -#: includes/fields.php:352 includes/forms/form-front.php:49 -msgid "Content" -msgstr "Contenuto" - -#: includes/admin/views/acf-post-type/advanced-settings.php:21 -#: includes/forms/form-front.php:40 -msgid "Title" -msgstr "Titolo" - -#: includes/assets.php:372 includes/forms/form-comment.php:160 -#: assets/build/js/acf-input.js:7382 assets/build/js/acf-input.js:7968 -msgid "Edit field group" -msgstr "Modifica gruppo di campi" - -#: includes/admin/post-types/admin-field-group.php:117 -#: assets/build/js/acf-input.js:1125 assets/build/js/acf-input.js:1230 -msgid "Selection is less than" -msgstr "La selezione è minore di" - -#: includes/admin/post-types/admin-field-group.php:116 -#: assets/build/js/acf-input.js:1106 assets/build/js/acf-input.js:1202 -msgid "Selection is greater than" -msgstr "La selezione è maggiore di" - -#: includes/admin/post-types/admin-field-group.php:115 -#: assets/build/js/acf-input.js:1075 assets/build/js/acf-input.js:1170 -msgid "Value is less than" -msgstr "Il valore è minore di" - -#: includes/admin/post-types/admin-field-group.php:114 -#: assets/build/js/acf-input.js:1045 assets/build/js/acf-input.js:1139 -msgid "Value is greater than" -msgstr "Il valore è maggiore di" - -#: includes/admin/post-types/admin-field-group.php:113 -#: assets/build/js/acf-input.js:888 assets/build/js/acf-input.js:960 -msgid "Value contains" -msgstr "Il valore contiene" - -#: includes/admin/post-types/admin-field-group.php:112 -#: assets/build/js/acf-input.js:862 assets/build/js/acf-input.js:926 -msgid "Value matches pattern" -msgstr "Il valore ha corrispondenza con il pattern" - -#: includes/admin/post-types/admin-field-group.php:111 -#: assets/build/js/acf-input.js:840 assets/build/js/acf-input.js:1023 -#: assets/build/js/acf-input.js:903 assets/build/js/acf-input.js:1116 -msgid "Value is not equal to" -msgstr "Il valore non è uguale a" - -#: includes/admin/post-types/admin-field-group.php:110 -#: assets/build/js/acf-input.js:810 assets/build/js/acf-input.js:964 -#: assets/build/js/acf-input.js:864 assets/build/js/acf-input.js:1053 -msgid "Value is equal to" -msgstr "Il valore è uguale a" - -#: includes/admin/post-types/admin-field-group.php:109 -#: assets/build/js/acf-input.js:788 assets/build/js/acf-input.js:841 -msgid "Has no value" -msgstr "Non ha un valore" - -#: includes/admin/post-types/admin-field-group.php:108 -#: assets/build/js/acf-input.js:758 assets/build/js/acf-input.js:783 -msgid "Has any value" -msgstr "Ha qualunque valore" - -#: includes/admin/admin-internal-post-type.php:345 -#: includes/admin/views/browse-fields-modal.php:62 includes/assets.php:353 -#: assets/build/js/acf.js:1564 assets/build/js/acf.js:1658 -msgid "Cancel" -msgstr "Annulla" - -#: includes/assets.php:349 assets/build/js/acf.js:1738 -#: assets/build/js/acf.js:1855 -msgid "Are you sure?" -msgstr "Sei sicuro?" - -#: includes/assets.php:369 assets/build/js/acf-input.js:9442 -#: assets/build/js/acf-input.js:10294 -msgid "%d fields require attention" -msgstr "%d campi necessitano attenzione" - -#: includes/assets.php:368 assets/build/js/acf-input.js:9440 -#: assets/build/js/acf-input.js:10290 -msgid "1 field requires attention" -msgstr "1 campo richiede attenzione" - -#: includes/assets.php:367 includes/validation.php:288 -#: includes/validation.php:298 assets/build/js/acf-input.js:9435 -#: assets/build/js/acf-input.js:10285 -msgid "Validation failed" -msgstr "Validazione fallita" - -#: includes/assets.php:366 assets/build/js/acf-input.js:9603 -#: assets/build/js/acf-input.js:10473 -msgid "Validation successful" -msgstr "Validazione avvenuta con successo" - -#: includes/media.php:54 assets/build/js/acf-input.js:7210 -#: assets/build/js/acf-input.js:7772 -msgid "Restricted" -msgstr "Limitato" - -#: includes/media.php:53 assets/build/js/acf-input.js:7025 -#: assets/build/js/acf-input.js:7536 -msgid "Collapse Details" -msgstr "Comprimi dettagli" - -#: includes/media.php:52 assets/build/js/acf-input.js:7025 -#: assets/build/js/acf-input.js:7533 -msgid "Expand Details" -msgstr "Espandi dettagli" - -#: includes/admin/views/acf-post-type/advanced-settings.php:465 -#: includes/media.php:51 assets/build/js/acf-input.js:6892 -#: assets/build/js/acf-input.js:7381 -msgid "Uploaded to this post" -msgstr "Caricato in questo articolo" - -#: includes/media.php:50 assets/build/js/acf-input.js:6931 -#: assets/build/js/acf-input.js:7420 -msgctxt "verb" -msgid "Update" -msgstr "Aggiorna" - -#: includes/media.php:49 -msgctxt "verb" -msgid "Edit" -msgstr "Modifica" - -#: includes/assets.php:363 assets/build/js/acf-input.js:9212 -#: assets/build/js/acf-input.js:10056 -msgid "The changes you made will be lost if you navigate away from this page" -msgstr "Le modifiche effettuate verranno cancellate se esci da questa pagina" - -#: includes/api/api-helpers.php:3395 -msgid "File type must be %s." -msgstr "La tipologia del file deve essere %s." - -#: includes/admin/post-types/admin-field-group.php:102 -#: includes/admin/views/acf-field-group/conditional-logic.php:59 -#: includes/admin/views/acf-field-group/conditional-logic.php:169 -#: includes/admin/views/acf-field-group/location-group.php:3 -#: includes/admin/views/acf-field-group/locations.php:36 -#: includes/api/api-helpers.php:3391 assets/build/js/acf-field-group.js:771 -#: assets/build/js/acf-field-group.js:2385 -#: assets/build/js/acf-field-group.js:933 -#: assets/build/js/acf-field-group.js:2807 -msgid "or" -msgstr "oppure" - -#: includes/api/api-helpers.php:3364 -msgid "File size must not exceed %s." -msgstr "La dimensione del file non deve superare %s." - -#: includes/api/api-helpers.php:3359 -msgid "File size must be at least %s." -msgstr "La dimensione del file deve essere di almeno %s." - -#: includes/api/api-helpers.php:3344 -msgid "Image height must not exceed %dpx." -msgstr "L'altezza dell'immagine non deve superare i %dpx." - -#: includes/api/api-helpers.php:3339 -msgid "Image height must be at least %dpx." -msgstr "L'altezza dell'immagine deve essere di almeno %dpx." - -#: includes/api/api-helpers.php:3325 -msgid "Image width must not exceed %dpx." -msgstr "La larghezza dell'immagine non deve superare i %dpx." - -#: includes/api/api-helpers.php:3320 -msgid "Image width must be at least %dpx." -msgstr "La larghezza dell'immagine deve essere di almeno %dpx." - -#: includes/api/api-helpers.php:1561 includes/api/api-term.php:147 -msgid "(no title)" -msgstr "(nessun titolo)" - -#: includes/api/api-helpers.php:853 -msgid "Full Size" -msgstr "Dimensione originale" - -#: includes/api/api-helpers.php:812 -msgid "Large" -msgstr "Grande" - -#: includes/api/api-helpers.php:811 -msgid "Medium" -msgstr "Media" - -#: includes/api/api-helpers.php:810 -msgid "Thumbnail" -msgstr "Miniatura" - -#: includes/acf-field-functions.php:854 -#: includes/admin/post-types/admin-field-group.php:99 -#: assets/build/js/acf-field-group.js:1077 -#: assets/build/js/acf-field-group.js:1260 -msgid "(no label)" -msgstr "(nessuna etichetta)" - -#: includes/fields/class-acf-field-textarea.php:145 -msgid "Sets the textarea height" -msgstr "Imposta l'altezza dell'area di testo" - -#: includes/fields/class-acf-field-textarea.php:144 -msgid "Rows" -msgstr "Righe" - -#: includes/fields/class-acf-field-textarea.php:25 -msgid "Text Area" -msgstr "Area di testo" - -#: includes/fields/class-acf-field-checkbox.php:451 -msgid "Prepend an extra checkbox to toggle all choices" -msgstr "" -"Anteponi un checkbox aggiuntivo per poter selezionare/deselzionare tutte le " -"opzioni" - -#: includes/fields/class-acf-field-checkbox.php:413 -msgid "Save 'custom' values to the field's choices" -msgstr "Salva i valori 'personalizzati' per le scelte del campo" - -#: includes/fields/class-acf-field-checkbox.php:402 -msgid "Allow 'custom' values to be added" -msgstr "Consenti l'aggiunta di valori 'personalizzati'" - -#: includes/fields/class-acf-field-checkbox.php:38 -msgid "Add new choice" -msgstr "Aggiungi nuova scelta" - -#: includes/fields/class-acf-field-checkbox.php:174 -msgid "Toggle All" -msgstr "Commuta tutti" - -#: includes/fields/class-acf-field-page_link.php:506 -msgid "Allow Archives URLs" -msgstr "Consenti URL degli archivi" - -#: includes/fields/class-acf-field-page_link.php:179 -msgid "Archives" -msgstr "Archivi" - -#: includes/fields/class-acf-field-page_link.php:25 -msgid "Page Link" -msgstr "Link pagina" - -#: includes/fields/class-acf-field-taxonomy.php:943 -#: includes/locations/class-acf-location-user-form.php:72 -msgid "Add" -msgstr "Aggiungi" - -#: includes/admin/views/acf-field-group/fields.php:53 -#: includes/fields/class-acf-field-taxonomy.php:908 -msgid "Name" -msgstr "Nome" - -#: includes/fields/class-acf-field-taxonomy.php:892 -msgid "%s added" -msgstr "%s aggiunto" - -#: includes/fields/class-acf-field-taxonomy.php:856 -msgid "%s already exists" -msgstr "%s esiste già" - -#: includes/fields/class-acf-field-taxonomy.php:844 -msgid "User unable to add new %s" -msgstr "Utente non abilitato ad aggiungere %s" - -#: includes/fields/class-acf-field-taxonomy.php:742 -msgid "Term ID" -msgstr "ID termine" - -#: includes/fields/class-acf-field-taxonomy.php:741 -msgid "Term Object" -msgstr "Oggetto termine" - -#: includes/fields/class-acf-field-taxonomy.php:726 -msgid "Load value from posts terms" -msgstr "Carica valori dai termini dell'articolo" - -#: includes/fields/class-acf-field-taxonomy.php:725 -msgid "Load Terms" -msgstr "Carica termini" - -#: includes/fields/class-acf-field-taxonomy.php:715 -msgid "Connect selected terms to the post" -msgstr "Collega i termini selezionati all'articolo" - -#: includes/fields/class-acf-field-taxonomy.php:714 -msgid "Save Terms" -msgstr "Salva termini" - -#: includes/fields/class-acf-field-taxonomy.php:704 -msgid "Allow new terms to be created whilst editing" -msgstr "Abilita la creazione di nuovi termini in fase di modifica" - -#: includes/fields/class-acf-field-taxonomy.php:703 -msgid "Create Terms" -msgstr "Crea termini" - -#: includes/fields/class-acf-field-taxonomy.php:762 -msgid "Radio Buttons" -msgstr "Pulsanti radio" - -#: includes/fields/class-acf-field-taxonomy.php:761 -msgid "Single Value" -msgstr "Valore singolo" - -#: includes/fields/class-acf-field-taxonomy.php:759 -msgid "Multi Select" -msgstr "Selezione multipla" - -#: includes/fields/class-acf-field-checkbox.php:25 -#: includes/fields/class-acf-field-taxonomy.php:758 -msgid "Checkbox" -msgstr "Checkbox" - -#: includes/fields/class-acf-field-taxonomy.php:757 -msgid "Multiple Values" -msgstr "Valori multipli" - -#: includes/fields/class-acf-field-taxonomy.php:752 -msgid "Select the appearance of this field" -msgstr "Seleziona l'aspetto di questo campo" - -#: includes/fields/class-acf-field-taxonomy.php:751 -msgid "Appearance" -msgstr "Aspetto" - -#: includes/fields/class-acf-field-taxonomy.php:693 -msgid "Select the taxonomy to be displayed" -msgstr "Seleziona la tassonomia da mostrare" - -#: includes/fields/class-acf-field-taxonomy.php:654 -msgctxt "No Terms" -msgid "No %s" -msgstr "Nessun %s" - -#: includes/fields/class-acf-field-number.php:266 -msgid "Value must be equal to or lower than %d" -msgstr "Il valore deve essere uguale o inferiore a %d" - -#: includes/fields/class-acf-field-number.php:259 -msgid "Value must be equal to or higher than %d" -msgstr "Il valore deve essere uguale o superiore a %d" - -#: includes/fields/class-acf-field-number.php:244 -msgid "Value must be a number" -msgstr "Il valore deve essere un numero" - -#: includes/fields/class-acf-field-number.php:25 -msgid "Number" -msgstr "Numero" - -#: includes/fields/class-acf-field-radio.php:264 -msgid "Save 'other' values to the field's choices" -msgstr "Salvare gli 'altri' valori nelle scelte del campo" - -#: includes/fields/class-acf-field-radio.php:253 -msgid "Add 'other' choice to allow for custom values" -msgstr "Aggiungi scelta 'altro' per consentire valori personalizzati" - -#: includes/admin/views/global/navigation.php:196 -msgid "Other" -msgstr "Altro" - -#: includes/fields/class-acf-field-radio.php:25 -msgid "Radio Button" -msgstr "Radio button" - -#: includes/fields/class-acf-field-accordion.php:107 -msgid "" -"Define an endpoint for the previous accordion to stop. This accordion will " -"not be visible." -msgstr "" -"Definisce il punto di chiusura del precedente accordion. Questo accordion " -"non sarà visibile." - -#: includes/fields/class-acf-field-accordion.php:96 -msgid "Allow this accordion to open without closing others." -msgstr "Consenti a questo accordion di essere aperto senza chiudere gli altri." - -#: includes/fields/class-acf-field-accordion.php:95 -msgid "Multi-Expand" -msgstr "" - -#: includes/fields/class-acf-field-accordion.php:85 -msgid "Display this accordion as open on page load." -msgstr "Mostra questo accordion aperto l caricamento della pagina." - -#: includes/fields/class-acf-field-accordion.php:84 -msgid "Open" -msgstr "Aperto" - -#: includes/fields/class-acf-field-accordion.php:25 -msgid "Accordion" -msgstr "Fisarmonica" - -#: includes/fields/class-acf-field-file.php:267 -#: includes/fields/class-acf-field-file.php:279 -msgid "Restrict which files can be uploaded" -msgstr "Limita i tipi di file che possono essere caricati" - -#: includes/fields/class-acf-field-file.php:220 -msgid "File ID" -msgstr "ID file" - -#: includes/fields/class-acf-field-file.php:219 -msgid "File URL" -msgstr "URL file" - -#: includes/fields/class-acf-field-file.php:218 -msgid "File Array" -msgstr "Array di file" - -#: includes/fields/class-acf-field-file.php:186 -msgid "Add File" -msgstr "Aggiungi file" - -#: includes/admin/tools/class-acf-admin-tool-import.php:156 -#: includes/fields/class-acf-field-file.php:186 -msgid "No file selected" -msgstr "Nessun file selezionato" - -#: includes/fields/class-acf-field-file.php:150 -msgid "File name" -msgstr "Nome file" - -#: includes/fields/class-acf-field-file.php:63 -#: assets/build/js/acf-input.js:2474 assets/build/js/acf-input.js:2625 -msgid "Update File" -msgstr "Aggiorna file" - -#: includes/fields/class-acf-field-file.php:62 -#: assets/build/js/acf-input.js:2473 assets/build/js/acf-input.js:2624 -msgid "Edit File" -msgstr "Modifica file" - -#: includes/admin/tools/class-acf-admin-tool-import.php:58 -#: includes/fields/class-acf-field-file.php:61 -#: assets/build/js/acf-input.js:2447 assets/build/js/acf-input.js:2597 -msgid "Select File" -msgstr "Seleziona file" - -#: includes/fields/class-acf-field-file.php:25 -msgid "File" -msgstr "File" - -#: includes/fields/class-acf-field-password.php:25 -msgid "Password" -msgstr "Password" - -#: includes/fields/class-acf-field-select.php:392 -msgid "Specify the value returned" -msgstr "Specifica il valore restituito" - -#: includes/fields/class-acf-field-select.php:461 -msgid "Use AJAX to lazy load choices?" -msgstr "Usa AJAX per il caricamento differito delle opzioni?" - -#: includes/fields/class-acf-field-checkbox.php:362 -#: includes/fields/class-acf-field-select.php:381 -msgid "Enter each default value on a new line" -msgstr "Inserire ogni valore predefinito su una nuova linea" - -#: includes/fields/class-acf-field-select.php:252 includes/media.php:48 -#: assets/build/js/acf-input.js:6790 assets/build/js/acf-input.js:7266 -msgctxt "verb" -msgid "Select" -msgstr "Seleziona" - -#: includes/fields/class-acf-field-select.php:121 -msgctxt "Select2 JS load_fail" -msgid "Loading failed" -msgstr "Caricamento fallito" - -#: includes/fields/class-acf-field-select.php:120 -msgctxt "Select2 JS searching" -msgid "Searching…" -msgstr "Ricerca …" - -#: includes/fields/class-acf-field-select.php:119 -msgctxt "Select2 JS load_more" -msgid "Loading more results…" -msgstr "Caricamento di altri risultati…" - -#: includes/fields/class-acf-field-select.php:118 -msgctxt "Select2 JS selection_too_long_n" -msgid "You can only select %d items" -msgstr "Puoi selezionare solo %d elementi" - -#: includes/fields/class-acf-field-select.php:117 -msgctxt "Select2 JS selection_too_long_1" -msgid "You can only select 1 item" -msgstr "Puoi selezionare solo 1 elemento" - -#: includes/fields/class-acf-field-select.php:116 -msgctxt "Select2 JS input_too_long_n" -msgid "Please delete %d characters" -msgstr "Elimina %d caratteri" - -#: includes/fields/class-acf-field-select.php:115 -msgctxt "Select2 JS input_too_long_1" -msgid "Please delete 1 character" -msgstr "Elimina 1 carattere" - -#: includes/fields/class-acf-field-select.php:114 -msgctxt "Select2 JS input_too_short_n" -msgid "Please enter %d or more characters" -msgstr "Inserisci %d o più caratteri" - -#: includes/fields/class-acf-field-select.php:113 -msgctxt "Select2 JS input_too_short_1" -msgid "Please enter 1 or more characters" -msgstr "Inserisci 1 o più caratteri" - -#: includes/fields/class-acf-field-select.php:112 -msgctxt "Select2 JS matches_0" -msgid "No matches found" -msgstr "Nessun riscontro trovato" - -#: includes/fields/class-acf-field-select.php:111 -msgctxt "Select2 JS matches_n" -msgid "%d results are available, use up and down arrow keys to navigate." -msgstr "%d risultati disponibili, usa i tasti freccia su e giù per scorrere." - -#: includes/fields/class-acf-field-select.php:110 -msgctxt "Select2 JS matches_1" -msgid "One result is available, press enter to select it." -msgstr "Un risultato disponibile, premi invio per selezionarlo." - -#: includes/fields/class-acf-field-select.php:25 -#: includes/fields/class-acf-field-taxonomy.php:763 -msgctxt "noun" -msgid "Select" -msgstr "Seleziona" - -#: includes/fields/class-acf-field-user.php:73 -msgid "User ID" -msgstr "ID utente" - -#: includes/fields/class-acf-field-user.php:72 -msgid "User Object" -msgstr "Oggetto utente" - -#: includes/fields/class-acf-field-user.php:71 -msgid "User Array" -msgstr "Array di utenti" - -#: includes/fields/class-acf-field-user.php:59 -msgid "All user roles" -msgstr "Tutti i ruoli utente" - -#: includes/fields/class-acf-field-user.php:51 -msgid "Filter by Role" -msgstr "Filtra per ruolo" - -#: includes/fields/class-acf-field-user.php:15 includes/locations.php:101 -msgid "User" -msgstr "Utente" - -#: includes/fields/class-acf-field-separator.php:25 -msgid "Separator" -msgstr "Separatore" - -#: includes/fields/class-acf-field-color_picker.php:75 -msgid "Select Color" -msgstr "Seleziona colore" - -#: includes/admin/post-types/admin-post-type.php:129 -#: includes/admin/post-types/admin-taxonomy.php:131 -#: includes/fields/class-acf-field-color_picker.php:73 -#: assets/build/js/acf-internal-post-type.js:72 -#: assets/build/js/acf-internal-post-type.js:86 -msgid "Default" -msgstr "Predefinito" - -#: includes/admin/views/acf-post-type/advanced-settings.php:89 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:141 -#: includes/fields/class-acf-field-color_picker.php:71 -msgid "Clear" -msgstr "Rimuovi" - -#: includes/fields/class-acf-field-color_picker.php:25 -msgid "Color Picker" -msgstr "Selettore colore" - -#: includes/fields/class-acf-field-date_time_picker.php:88 -msgctxt "Date Time Picker JS pmTextShort" -msgid "P" -msgstr "P" - -#: includes/fields/class-acf-field-date_time_picker.php:87 -msgctxt "Date Time Picker JS pmText" -msgid "PM" -msgstr "PM" - -#: includes/fields/class-acf-field-date_time_picker.php:84 -msgctxt "Date Time Picker JS amTextShort" -msgid "A" -msgstr "A" - -#: includes/fields/class-acf-field-date_time_picker.php:83 -msgctxt "Date Time Picker JS amText" -msgid "AM" -msgstr "AM" - -#: includes/fields/class-acf-field-date_time_picker.php:81 -msgctxt "Date Time Picker JS selectText" -msgid "Select" -msgstr "Seleziona" - -#: includes/fields/class-acf-field-date_time_picker.php:80 -msgctxt "Date Time Picker JS closeText" -msgid "Done" -msgstr "Fatto" - -#: includes/fields/class-acf-field-date_time_picker.php:79 -msgctxt "Date Time Picker JS currentText" -msgid "Now" -msgstr "Ora" - -#: includes/fields/class-acf-field-date_time_picker.php:78 -msgctxt "Date Time Picker JS timezoneText" -msgid "Time Zone" -msgstr "Fuso orario" - -#: includes/fields/class-acf-field-date_time_picker.php:77 -msgctxt "Date Time Picker JS microsecText" -msgid "Microsecond" -msgstr "Microsecondo" - -#: includes/fields/class-acf-field-date_time_picker.php:76 -msgctxt "Date Time Picker JS millisecText" -msgid "Millisecond" -msgstr "Millisecondo" - -#: includes/fields/class-acf-field-date_time_picker.php:75 -msgctxt "Date Time Picker JS secondText" -msgid "Second" -msgstr "Secondo" - -#: includes/fields/class-acf-field-date_time_picker.php:74 -msgctxt "Date Time Picker JS minuteText" -msgid "Minute" -msgstr "Minuto" - -#: includes/fields/class-acf-field-date_time_picker.php:73 -msgctxt "Date Time Picker JS hourText" -msgid "Hour" -msgstr "Ora" - -#: includes/fields/class-acf-field-date_time_picker.php:72 -msgctxt "Date Time Picker JS timeText" -msgid "Time" -msgstr "Orario" - -#: includes/fields/class-acf-field-date_time_picker.php:71 -msgctxt "Date Time Picker JS timeOnlyTitle" -msgid "Choose Time" -msgstr "Scegli orario" - -#: includes/fields/class-acf-field-date_time_picker.php:25 -msgid "Date Time Picker" -msgstr "Selettore data/ora" - -#: includes/fields/class-acf-field-accordion.php:106 -msgid "Endpoint" -msgstr "Endpoint" - -#: includes/admin/views/acf-field-group/options.php:130 -#: includes/fields/class-acf-field-tab.php:115 -msgid "Left aligned" -msgstr "Allineamento a sinistra" - -#: includes/admin/views/acf-field-group/options.php:129 -#: includes/fields/class-acf-field-tab.php:114 -msgid "Top aligned" -msgstr "Allineamento in alto" - -#: includes/fields/class-acf-field-tab.php:110 -msgid "Placement" -msgstr "Posizione" - -#: includes/fields/class-acf-field-tab.php:26 -msgid "Tab" -msgstr "Scheda" - -#: includes/fields/class-acf-field-url.php:162 -msgid "Value must be a valid URL" -msgstr "Il valore deve essere un URL valido" - -#: includes/fields/class-acf-field-link.php:177 -msgid "Link URL" -msgstr "Link URL" - -#: includes/fields/class-acf-field-link.php:176 -msgid "Link Array" -msgstr "Array di link" - -#: includes/fields/class-acf-field-link.php:145 -msgid "Opens in a new window/tab" -msgstr "Apri in una nuova scheda/finestra" - -#: includes/fields/class-acf-field-link.php:140 -msgid "Select Link" -msgstr "Seleziona link" - -#: includes/fields/class-acf-field-link.php:25 -msgid "Link" -msgstr "Link" - -#: includes/fields/class-acf-field-email.php:25 -msgid "Email" -msgstr "Email" - -#: includes/fields/class-acf-field-number.php:188 -#: includes/fields/class-acf-field-range.php:217 -msgid "Step Size" -msgstr "Dimensione step" - -#: includes/fields/class-acf-field-number.php:158 -#: includes/fields/class-acf-field-range.php:195 -msgid "Maximum Value" -msgstr "Valore massimo" - -#: includes/fields/class-acf-field-number.php:148 -#: includes/fields/class-acf-field-range.php:184 -msgid "Minimum Value" -msgstr "Valore minimo" - -#: includes/fields/class-acf-field-range.php:25 -msgid "Range" -msgstr "Intervallo" - -#: includes/fields/class-acf-field-button-group.php:175 -#: includes/fields/class-acf-field-checkbox.php:379 -#: includes/fields/class-acf-field-radio.php:220 -#: includes/fields/class-acf-field-select.php:399 -msgid "Both (Array)" -msgstr "Entrambi (Array)" - -#: includes/admin/views/acf-field-group/fields.php:52 -#: includes/fields/class-acf-field-button-group.php:174 -#: includes/fields/class-acf-field-checkbox.php:378 -#: includes/fields/class-acf-field-radio.php:219 -#: includes/fields/class-acf-field-select.php:398 -msgid "Label" -msgstr "Etichetta" - -#: includes/fields/class-acf-field-button-group.php:173 -#: includes/fields/class-acf-field-checkbox.php:377 -#: includes/fields/class-acf-field-radio.php:218 -#: includes/fields/class-acf-field-select.php:397 -msgid "Value" -msgstr "Valore" - -#: includes/fields/class-acf-field-button-group.php:222 -#: includes/fields/class-acf-field-checkbox.php:441 -#: includes/fields/class-acf-field-radio.php:292 -msgid "Vertical" -msgstr "Verticale" - -#: includes/fields/class-acf-field-button-group.php:221 -#: includes/fields/class-acf-field-checkbox.php:442 -#: includes/fields/class-acf-field-radio.php:293 -msgid "Horizontal" -msgstr "Orizzontale" - -#: includes/fields/class-acf-field-button-group.php:148 -#: includes/fields/class-acf-field-checkbox.php:352 -#: includes/fields/class-acf-field-radio.php:193 -#: includes/fields/class-acf-field-select.php:370 -msgid "red : Red" -msgstr "rosso : Rosso" - -#: includes/fields/class-acf-field-button-group.php:148 -#: includes/fields/class-acf-field-checkbox.php:352 -#: includes/fields/class-acf-field-radio.php:193 -#: includes/fields/class-acf-field-select.php:370 -msgid "For more control, you may specify both a value and label like this:" -msgstr "" -"Per un maggiore controllo, puoi specificare sia un valore che un'etichetta " -"in questo modo:" - -#: includes/fields/class-acf-field-button-group.php:148 -#: includes/fields/class-acf-field-checkbox.php:352 -#: includes/fields/class-acf-field-radio.php:193 -#: includes/fields/class-acf-field-select.php:370 -msgid "Enter each choice on a new line." -msgstr "Inserisci ogni scelta su una nuova linea." - -#: includes/fields/class-acf-field-button-group.php:147 -#: includes/fields/class-acf-field-checkbox.php:351 -#: includes/fields/class-acf-field-radio.php:192 -#: includes/fields/class-acf-field-select.php:369 -msgid "Choices" -msgstr "Scelte" - -#: includes/fields/class-acf-field-button-group.php:24 -msgid "Button Group" -msgstr "Gruppo di pulsanti" - -#: includes/fields/class-acf-field-button-group.php:194 -#: includes/fields/class-acf-field-page_link.php:538 -#: includes/fields/class-acf-field-post_object.php:448 -#: includes/fields/class-acf-field-radio.php:238 -#: includes/fields/class-acf-field-select.php:429 -#: includes/fields/class-acf-field-taxonomy.php:772 -#: includes/fields/class-acf-field-user.php:103 -msgid "Allow Null" -msgstr "" - -#: includes/fields/class-acf-field-page_link.php:263 -#: includes/fields/class-acf-field-post_object.php:257 -#: includes/fields/class-acf-field-taxonomy.php:930 -msgid "Parent" -msgstr "Genitore" - -#: includes/fields/class-acf-field-wysiwyg.php:390 -msgid "TinyMCE will not be initialized until field is clicked" -msgstr "" -"TinyMCE non sarà inizializzato fino a quando non verrà fatto clic sul campo" - -#: includes/fields/class-acf-field-wysiwyg.php:389 -msgid "Delay Initialization" -msgstr "" - -#: includes/fields/class-acf-field-wysiwyg.php:378 -msgid "Show Media Upload Buttons" -msgstr "" - -#: includes/fields/class-acf-field-wysiwyg.php:362 -msgid "Toolbar" -msgstr "Barra degli strumenti" - -#: includes/fields/class-acf-field-wysiwyg.php:354 -msgid "Text Only" -msgstr "Solo testo" - -#: includes/fields/class-acf-field-wysiwyg.php:353 -msgid "Visual Only" -msgstr "Solo visuale" - -#: includes/fields/class-acf-field-wysiwyg.php:352 -msgid "Visual & Text" -msgstr "Visuale e testo" - -#: includes/fields/class-acf-field-wysiwyg.php:347 -msgid "Tabs" -msgstr "Schede" - -#: includes/fields/class-acf-field-wysiwyg.php:285 -msgid "Click to initialize TinyMCE" -msgstr "Fare clic per inizializzare TinyMCE" - -#: includes/fields/class-acf-field-wysiwyg.php:279 -msgctxt "Name for the Text editor tab (formerly HTML)" -msgid "Text" -msgstr "Testo" - -#: includes/fields/class-acf-field-wysiwyg.php:278 -msgid "Visual" -msgstr "Visuale" - -#: includes/fields/class-acf-field-text.php:189 -#: includes/fields/class-acf-field-textarea.php:236 -msgid "Value must not exceed %d characters" -msgstr "Il valore non può superare %d caratteri" - -#: includes/fields/class-acf-field-text.php:124 -#: includes/fields/class-acf-field-textarea.php:124 -msgid "Leave blank for no limit" -msgstr "Lasciare vuoto per nessun limite" - -#: includes/fields/class-acf-field-text.php:123 -#: includes/fields/class-acf-field-textarea.php:123 -msgid "Character Limit" -msgstr "Limite caratteri" - -#: includes/fields/class-acf-field-email.php:158 -#: includes/fields/class-acf-field-number.php:209 -#: includes/fields/class-acf-field-password.php:105 -#: includes/fields/class-acf-field-range.php:239 -#: includes/fields/class-acf-field-text.php:164 -msgid "Appears after the input" -msgstr "Appare dopo il campo di input" - -#: includes/fields/class-acf-field-email.php:157 -#: includes/fields/class-acf-field-number.php:208 -#: includes/fields/class-acf-field-password.php:104 -#: includes/fields/class-acf-field-range.php:238 -#: includes/fields/class-acf-field-text.php:163 -msgid "Append" -msgstr "Postponi" - -#: includes/fields/class-acf-field-email.php:148 -#: includes/fields/class-acf-field-number.php:199 -#: includes/fields/class-acf-field-password.php:95 -#: includes/fields/class-acf-field-range.php:229 -#: includes/fields/class-acf-field-text.php:154 -msgid "Appears before the input" -msgstr "Appare prima del campo di input" - -#: includes/fields/class-acf-field-email.php:147 -#: includes/fields/class-acf-field-number.php:198 -#: includes/fields/class-acf-field-password.php:94 -#: includes/fields/class-acf-field-range.php:228 -#: includes/fields/class-acf-field-text.php:153 -msgid "Prepend" -msgstr "Anteponi" - -#: includes/fields/class-acf-field-email.php:138 -#: includes/fields/class-acf-field-number.php:179 -#: includes/fields/class-acf-field-password.php:85 -#: includes/fields/class-acf-field-text.php:144 -#: includes/fields/class-acf-field-textarea.php:156 -#: includes/fields/class-acf-field-url.php:122 -msgid "Appears within the input" -msgstr "Appare all'interno del campo di input" - -#: includes/fields/class-acf-field-email.php:137 -#: includes/fields/class-acf-field-number.php:178 -#: includes/fields/class-acf-field-password.php:84 -#: includes/fields/class-acf-field-text.php:143 -#: includes/fields/class-acf-field-textarea.php:155 -#: includes/fields/class-acf-field-url.php:121 -msgid "Placeholder Text" -msgstr "Testo segnaposto" - -#: includes/fields/class-acf-field-button-group.php:158 -#: includes/fields/class-acf-field-email.php:118 -#: includes/fields/class-acf-field-number.php:129 -#: includes/fields/class-acf-field-radio.php:203 -#: includes/fields/class-acf-field-range.php:165 -#: includes/fields/class-acf-field-text.php:104 -#: includes/fields/class-acf-field-textarea.php:104 -#: includes/fields/class-acf-field-url.php:102 -#: includes/fields/class-acf-field-wysiwyg.php:312 -msgid "Appears when creating a new post" -msgstr "Appare quando si crea un nuovo articolo" - -#: includes/fields/class-acf-field-text.php:25 -msgid "Text" -msgstr "Testo" - -#: includes/fields/class-acf-field-relationship.php:794 -msgid "%1$s requires at least %2$s selection" -msgid_plural "%1$s requires at least %2$s selections" -msgstr[0] "%1$s richiede la selezione di almeno %2$s elemento" -msgstr[1] "%1$s richiede la selezione di almeno %2$s elementi" - -#: includes/fields/class-acf-field-post_object.php:417 -#: includes/fields/class-acf-field-relationship.php:644 -msgid "Post ID" -msgstr "ID articolo" - -#: includes/fields/class-acf-field-post_object.php:17 -#: includes/fields/class-acf-field-post_object.php:416 -#: includes/fields/class-acf-field-relationship.php:643 -msgid "Post Object" -msgstr "Oggetto articolo" - -#: includes/fields/class-acf-field-relationship.php:676 -msgid "Maximum Posts" -msgstr "" - -#: includes/fields/class-acf-field-relationship.php:666 -msgid "Minimum Posts" -msgstr "" - -#: includes/admin/views/acf-field-group/options.php:183 -#: includes/admin/views/acf-post-type/advanced-settings.php:29 -#: includes/fields/class-acf-field-relationship.php:701 -msgid "Featured Image" -msgstr "Immagine in evidenza" - -#: includes/fields/class-acf-field-relationship.php:697 -msgid "Selected elements will be displayed in each result" -msgstr "Gli elementi selezionati verranno visualizzati in ogni risultato" - -#: includes/fields/class-acf-field-relationship.php:696 -msgid "Elements" -msgstr "Elementi" - -#: includes/fields/class-acf-field-relationship.php:630 -#: includes/fields/class-acf-field-taxonomy.php:20 -#: includes/fields/class-acf-field-taxonomy.php:692 -#: includes/locations/class-acf-location-taxonomy.php:22 -msgid "Taxonomy" -msgstr "Tassonomia" - -#: includes/fields/class-acf-field-relationship.php:629 -#: includes/locations/class-acf-location-post-type.php:22 -#: includes/post-types/class-acf-post-type.php:92 -msgid "Post Type" -msgstr "Tipo di contenuto" - -#: includes/fields/class-acf-field-relationship.php:623 -msgid "Filters" -msgstr "Filtri" - -#: includes/fields/class-acf-field-page_link.php:499 -#: includes/fields/class-acf-field-post_object.php:404 -#: includes/fields/class-acf-field-relationship.php:616 -msgid "All taxonomies" -msgstr "Tutte le tassonomie" - -#: includes/fields/class-acf-field-page_link.php:491 -#: includes/fields/class-acf-field-post_object.php:396 -#: includes/fields/class-acf-field-relationship.php:608 -msgid "Filter by Taxonomy" -msgstr "Filtra per tassonomia" - -#: includes/fields/class-acf-field-page_link.php:469 -#: includes/fields/class-acf-field-post_object.php:374 -#: includes/fields/class-acf-field-relationship.php:586 -msgid "All post types" -msgstr "Tutti i tipi di articolo" - -#: includes/fields/class-acf-field-page_link.php:461 -#: includes/fields/class-acf-field-post_object.php:366 -#: includes/fields/class-acf-field-relationship.php:578 -msgid "Filter by Post Type" -msgstr "Filtra per tipo di articolo" - -#: includes/fields/class-acf-field-relationship.php:476 -msgid "Search..." -msgstr "Cerca..." - -#: includes/fields/class-acf-field-relationship.php:406 -msgid "Select taxonomy" -msgstr "Seleziona tassonomia" - -#: includes/fields/class-acf-field-relationship.php:397 -msgid "Select post type" -msgstr "Seleziona tipo di articolo" - -#: includes/fields/class-acf-field-relationship.php:61 -#: assets/build/js/acf-input.js:3930 assets/build/js/acf-input.js:4214 -msgid "No matches found" -msgstr "Nessuna corrispondenza trovata" - -#: includes/fields/class-acf-field-relationship.php:60 -#: assets/build/js/acf-input.js:3913 assets/build/js/acf-input.js:4193 -msgid "Loading" -msgstr "Caricamento in corso" - -#: includes/fields/class-acf-field-relationship.php:59 -#: assets/build/js/acf-input.js:3818 assets/build/js/acf-input.js:4084 -msgid "Maximum values reached ( {max} values )" -msgstr "Numero massimo di valori raggiunto ( {max} valori )" - -#: includes/fields/class-acf-field-relationship.php:17 -msgid "Relationship" -msgstr "Relazione" - -#: includes/fields/class-acf-field-file.php:291 -#: includes/fields/class-acf-field-image.php:317 -msgid "Comma separated list. Leave blank for all types" -msgstr "Lista con valori separati da virgole. Lascia vuoto per tutti i tipi" - -#: includes/fields/class-acf-field-file.php:290 -#: includes/fields/class-acf-field-image.php:316 -msgid "Allowed File Types" -msgstr "" - -#: includes/fields/class-acf-field-file.php:278 -#: includes/fields/class-acf-field-image.php:280 -msgid "Maximum" -msgstr "Massimo" - -#: includes/fields/class-acf-field-file.php:154 -#: includes/fields/class-acf-field-file.php:270 -#: includes/fields/class-acf-field-file.php:282 -#: includes/fields/class-acf-field-image.php:271 -#: includes/fields/class-acf-field-image.php:307 -msgid "File size" -msgstr "Dimensione file" - -#: includes/fields/class-acf-field-image.php:245 -#: includes/fields/class-acf-field-image.php:281 -msgid "Restrict which images can be uploaded" -msgstr "Limita i tipi di immagine che possono essere caricati" - -#: includes/fields/class-acf-field-file.php:266 -#: includes/fields/class-acf-field-image.php:244 -msgid "Minimum" -msgstr "Minimo" - -#: includes/fields/class-acf-field-file.php:235 -#: includes/fields/class-acf-field-image.php:210 -msgid "Uploaded to post" -msgstr "Caricato nell'articolo" - -#: includes/fields/class-acf-field-file.php:234 -#: includes/fields/class-acf-field-image.php:209 -#: includes/locations/class-acf-location-attachment.php:73 -#: includes/locations/class-acf-location-comment.php:61 -#: includes/locations/class-acf-location-nav-menu.php:74 -#: includes/locations/class-acf-location-taxonomy.php:63 -#: includes/locations/class-acf-location-user-form.php:71 -#: includes/locations/class-acf-location-user-role.php:78 -#: includes/locations/class-acf-location-widget.php:65 -msgid "All" -msgstr "Tutti" - -#: includes/fields/class-acf-field-file.php:229 -#: includes/fields/class-acf-field-image.php:204 -msgid "Limit the media library choice" -msgstr "Limitare la scelta dalla libreria media" - -#: includes/fields/class-acf-field-file.php:228 -#: includes/fields/class-acf-field-image.php:203 -msgid "Library" -msgstr "Libreria" - -#: includes/fields/class-acf-field-image.php:336 -msgid "Preview Size" -msgstr "Dimensione anteprima" - -#: includes/fields/class-acf-field-image.php:195 -msgid "Image ID" -msgstr "ID immagine" - -#: includes/fields/class-acf-field-image.php:194 -msgid "Image URL" -msgstr "URL Immagine" - -#: includes/fields/class-acf-field-image.php:193 -msgid "Image Array" -msgstr "Array di immagini" - -#: includes/fields/class-acf-field-button-group.php:168 -#: includes/fields/class-acf-field-checkbox.php:372 -#: includes/fields/class-acf-field-file.php:213 -#: includes/fields/class-acf-field-link.php:171 -#: includes/fields/class-acf-field-radio.php:213 -msgid "Specify the returned value on front end" -msgstr "Specificare il valore restituito sul front-end" - -#: includes/fields/class-acf-field-button-group.php:167 -#: includes/fields/class-acf-field-checkbox.php:371 -#: includes/fields/class-acf-field-file.php:212 -#: includes/fields/class-acf-field-link.php:170 -#: includes/fields/class-acf-field-radio.php:212 -#: includes/fields/class-acf-field-taxonomy.php:736 -msgid "Return Value" -msgstr "Valore di ritorno" - -#: includes/fields/class-acf-field-image.php:162 -msgid "Add Image" -msgstr "Aggiungi immagine" - -#: includes/fields/class-acf-field-image.php:162 -msgid "No image selected" -msgstr "Nessuna immagine selezionata" - -#: includes/assets.php:352 includes/fields/class-acf-field-file.php:162 -#: includes/fields/class-acf-field-image.php:142 -#: includes/fields/class-acf-field-link.php:145 assets/build/js/acf.js:1563 -#: assets/build/js/acf.js:1657 -msgid "Remove" -msgstr "Rimuovi" - -#: includes/admin/views/acf-field-group/field.php:76 -#: includes/fields/class-acf-field-file.php:160 -#: includes/fields/class-acf-field-image.php:140 -#: includes/fields/class-acf-field-link.php:145 -msgid "Edit" -msgstr "Modifica" - -#: includes/fields/class-acf-field-image.php:70 includes/media.php:55 -#: assets/build/js/acf-input.js:6837 assets/build/js/acf-input.js:7320 -msgid "All images" -msgstr "Tutte le immagini" - -#: includes/fields/class-acf-field-image.php:69 -#: assets/build/js/acf-input.js:3181 assets/build/js/acf-input.js:3399 -msgid "Update Image" -msgstr "Aggiorna immagine" - -#: includes/fields/class-acf-field-image.php:68 -#: assets/build/js/acf-input.js:3180 assets/build/js/acf-input.js:3398 -msgid "Edit Image" -msgstr "Modifica immagine" - -#: includes/fields/class-acf-field-image.php:67 -#: assets/build/js/acf-input.js:3156 assets/build/js/acf-input.js:3373 -msgid "Select Image" -msgstr "Selezionare immagine" - -#: includes/fields/class-acf-field-image.php:25 -msgid "Image" -msgstr "Immagine" - -#: includes/fields/class-acf-field-message.php:125 -msgid "Allow HTML markup to display as visible text instead of rendering" -msgstr "" -"Consenti al markup HTML di essere visualizzato come testo visibile anziché " -"essere processato" - -#: includes/fields/class-acf-field-message.php:124 -msgid "Escape HTML" -msgstr "Effettua escape HTML" - -#: includes/fields/class-acf-field-message.php:116 -#: includes/fields/class-acf-field-textarea.php:172 -msgid "No Formatting" -msgstr "Nessuna formattazione" - -#: includes/fields/class-acf-field-message.php:115 -#: includes/fields/class-acf-field-textarea.php:171 -msgid "Automatically add <br>" -msgstr "Aggiungi automaticamente <br>" - -#: includes/fields/class-acf-field-message.php:114 -#: includes/fields/class-acf-field-textarea.php:170 -msgid "Automatically add paragraphs" -msgstr "Aggiungi automaticamente paragrafi" - -#: includes/fields/class-acf-field-message.php:110 -#: includes/fields/class-acf-field-textarea.php:166 -msgid "Controls how new lines are rendered" -msgstr "Controlla come le nuove linee sono renderizzate" - -#: includes/fields/class-acf-field-message.php:109 -#: includes/fields/class-acf-field-textarea.php:165 -msgid "New Lines" -msgstr "Nuove linee" - -#: includes/fields/class-acf-field-date_picker.php:232 -#: includes/fields/class-acf-field-date_time_picker.php:220 -msgid "Week Starts On" -msgstr "La settimana inizia" - -#: includes/fields/class-acf-field-date_picker.php:201 -msgid "The format used when saving a value" -msgstr "Il formato utilizzato durante il salvataggio di un valore" - -#: includes/fields/class-acf-field-date_picker.php:200 -msgid "Save Format" -msgstr "Salva formato" - -#: includes/fields/class-acf-field-date_picker.php:67 -msgctxt "Date Picker JS weekHeader" -msgid "Wk" -msgstr "Sett" - -#: includes/fields/class-acf-field-date_picker.php:66 -msgctxt "Date Picker JS prevText" -msgid "Prev" -msgstr "Prec" - -#: includes/fields/class-acf-field-date_picker.php:65 -msgctxt "Date Picker JS nextText" -msgid "Next" -msgstr "Succ" - -#: includes/fields/class-acf-field-date_picker.php:64 -msgctxt "Date Picker JS currentText" -msgid "Today" -msgstr "Oggi" - -#: includes/fields/class-acf-field-date_picker.php:63 -msgctxt "Date Picker JS closeText" -msgid "Done" -msgstr "Fatto" - -#: includes/fields/class-acf-field-date_picker.php:25 -msgid "Date Picker" -msgstr "Selettore data" - -#: includes/fields/class-acf-field-image.php:248 -#: includes/fields/class-acf-field-image.php:284 -#: includes/fields/class-acf-field-oembed.php:268 -msgid "Width" -msgstr "Larghezza" - -#: includes/fields/class-acf-field-oembed.php:265 -#: includes/fields/class-acf-field-oembed.php:277 -msgid "Embed Size" -msgstr "Dimensione oggetto incorporato" - -#: includes/fields/class-acf-field-oembed.php:222 -msgid "Enter URL" -msgstr "Inserisci URL" - -#: includes/fields/class-acf-field-oembed.php:25 -msgid "oEmbed" -msgstr "oEmbed" - -#: includes/fields/class-acf-field-true_false.php:184 -msgid "Text shown when inactive" -msgstr "Testo mostrato quando inattivo" - -#: includes/fields/class-acf-field-true_false.php:183 -msgid "Off Text" -msgstr "Testo Off" - -#: includes/fields/class-acf-field-true_false.php:168 -msgid "Text shown when active" -msgstr "Testo visualizzato quando è attivo" - -#: includes/fields/class-acf-field-true_false.php:167 -msgid "On Text" -msgstr "Testo On" - -#: includes/fields/class-acf-field-select.php:450 -#: includes/fields/class-acf-field-true_false.php:199 -msgid "Stylized UI" -msgstr "" - -#: includes/fields/class-acf-field-button-group.php:157 -#: includes/fields/class-acf-field-checkbox.php:361 -#: includes/fields/class-acf-field-color_picker.php:156 -#: includes/fields/class-acf-field-email.php:117 -#: includes/fields/class-acf-field-number.php:128 -#: includes/fields/class-acf-field-radio.php:202 -#: includes/fields/class-acf-field-range.php:164 -#: includes/fields/class-acf-field-select.php:380 -#: includes/fields/class-acf-field-text.php:103 -#: includes/fields/class-acf-field-textarea.php:103 -#: includes/fields/class-acf-field-true_false.php:147 -#: includes/fields/class-acf-field-url.php:101 -#: includes/fields/class-acf-field-wysiwyg.php:311 -msgid "Default Value" -msgstr "Valore predefinito" - -#: includes/fields/class-acf-field-true_false.php:138 -msgid "Displays text alongside the checkbox" -msgstr "Visualizza il testo a fianco alla casella di controllo" - -#: includes/fields/class-acf-field-message.php:26 -#: includes/fields/class-acf-field-message.php:99 -#: includes/fields/class-acf-field-true_false.php:137 -msgid "Message" -msgstr "Messaggio" - -#: includes/assets.php:351 includes/fields/class-acf-field-true_false.php:86 -#: includes/fields/class-acf-field-true_false.php:187 -#: assets/build/js/acf.js:1740 assets/build/js/acf.js:1857 -msgid "No" -msgstr "No" - -#: includes/assets.php:350 includes/fields/class-acf-field-true_false.php:83 -#: includes/fields/class-acf-field-true_false.php:171 -#: assets/build/js/acf.js:1739 assets/build/js/acf.js:1856 -msgid "Yes" -msgstr "Sì" - -#: includes/fields/class-acf-field-true_false.php:25 -msgid "True / False" -msgstr "Vero / Falso" - -#: includes/fields/class-acf-field-group.php:474 -msgid "Row" -msgstr "Riga" - -#: includes/fields/class-acf-field-group.php:473 -msgid "Table" -msgstr "Tabella" - -#: includes/admin/post-types/admin-field-group.php:140 -#: includes/fields/class-acf-field-group.php:472 -msgid "Block" -msgstr "Blocco" - -#: includes/fields/class-acf-field-group.php:467 -msgid "Specify the style used to render the selected fields" -msgstr "" -"Specifica lo stile utilizzato per la visualizzazione dei campi selezionati" - -#: includes/fields.php:356 includes/fields/class-acf-field-button-group.php:215 -#: includes/fields/class-acf-field-checkbox.php:435 -#: includes/fields/class-acf-field-group.php:466 -#: includes/fields/class-acf-field-radio.php:286 -msgid "Layout" -msgstr "Layout" - -#: includes/fields/class-acf-field-group.php:450 -msgid "Sub Fields" -msgstr "Sottocampi" - -#: includes/fields/class-acf-field-group.php:25 -msgid "Group" -msgstr "Gruppo" - -#: includes/fields/class-acf-field-google-map.php:235 -msgid "Customize the map height" -msgstr "Personalizza l'altezza della mappa" - -#: includes/fields/class-acf-field-google-map.php:234 -#: includes/fields/class-acf-field-image.php:259 -#: includes/fields/class-acf-field-image.php:295 -#: includes/fields/class-acf-field-oembed.php:280 -msgid "Height" -msgstr "Altezza" - -#: includes/fields/class-acf-field-google-map.php:223 -msgid "Set the initial zoom level" -msgstr "Imposta il livello di zoom iniziale" - -#: includes/fields/class-acf-field-google-map.php:222 -msgid "Zoom" -msgstr "Zoom" - -#: includes/fields/class-acf-field-google-map.php:196 -#: includes/fields/class-acf-field-google-map.php:209 -msgid "Center the initial map" -msgstr "Centra la mappa iniziale" - -#: includes/fields/class-acf-field-google-map.php:195 -#: includes/fields/class-acf-field-google-map.php:208 -msgid "Center" -msgstr "Centro" - -#: includes/fields/class-acf-field-google-map.php:163 -msgid "Search for address..." -msgstr "Cerca per indirizzo..." - -#: includes/fields/class-acf-field-google-map.php:160 -msgid "Find current location" -msgstr "Trova posizione corrente" - -#: includes/fields/class-acf-field-google-map.php:159 -msgid "Clear location" -msgstr "Rimuovi posizione" - -#: includes/fields/class-acf-field-google-map.php:158 -#: includes/fields/class-acf-field-relationship.php:628 -msgid "Search" -msgstr "Cerca" - -#: includes/fields/class-acf-field-google-map.php:63 -#: assets/build/js/acf-input.js:2840 assets/build/js/acf-input.js:3026 -msgid "Sorry, this browser does not support geolocation" -msgstr "Questo browser non supporta la geolocalizzazione" - -#: includes/fields/class-acf-field-google-map.php:25 -msgid "Google Map" -msgstr "Google Map" - -#: includes/fields/class-acf-field-date_picker.php:212 -#: includes/fields/class-acf-field-date_time_picker.php:201 -#: includes/fields/class-acf-field-time_picker.php:132 -msgid "The format returned via template functions" -msgstr "Il formato restituito tramite funzioni template" - -#: includes/fields/class-acf-field-color_picker.php:180 -#: includes/fields/class-acf-field-date_picker.php:211 -#: includes/fields/class-acf-field-date_time_picker.php:200 -#: includes/fields/class-acf-field-image.php:187 -#: includes/fields/class-acf-field-post_object.php:411 -#: includes/fields/class-acf-field-relationship.php:638 -#: includes/fields/class-acf-field-select.php:391 -#: includes/fields/class-acf-field-time_picker.php:131 -#: includes/fields/class-acf-field-user.php:66 -msgid "Return Format" -msgstr "Formato di ritorno" - -#: includes/fields/class-acf-field-date_picker.php:190 -#: includes/fields/class-acf-field-date_picker.php:221 -#: includes/fields/class-acf-field-date_time_picker.php:192 -#: includes/fields/class-acf-field-date_time_picker.php:210 -#: includes/fields/class-acf-field-time_picker.php:123 -#: includes/fields/class-acf-field-time_picker.php:139 -msgid "Custom:" -msgstr "Personalizzato:" - -#: includes/fields/class-acf-field-date_picker.php:182 -#: includes/fields/class-acf-field-date_time_picker.php:183 -#: includes/fields/class-acf-field-time_picker.php:116 -msgid "The format displayed when editing a post" -msgstr "Il formato visualizzato durante la modifica di un articolo" - -#: includes/fields/class-acf-field-date_picker.php:181 -#: includes/fields/class-acf-field-date_time_picker.php:182 -#: includes/fields/class-acf-field-time_picker.php:115 -msgid "Display Format" -msgstr "Formato di visualizzazione" - -#: includes/fields/class-acf-field-time_picker.php:25 -msgid "Time Picker" -msgstr "Selettore orario" - -#. translators: counts for inactive field groups -#: acf.php:503 -msgid "Inactive (%s)" -msgid_plural "Inactive (%s)" -msgstr[0] "" -msgstr[1] "" - -#: acf.php:462 -msgid "No Fields found in Trash" -msgstr "Nessun campo trovato nel cestino" - -#: acf.php:461 -msgid "No Fields found" -msgstr "Nessun campo trovato" - -#: acf.php:460 -msgid "Search Fields" -msgstr "Cerca campi" - -#: acf.php:459 -msgid "View Field" -msgstr "Visualizza campo" - -#: acf.php:458 includes/admin/views/acf-field-group/fields.php:115 -msgid "New Field" -msgstr "Nuovo campo" - -#: acf.php:457 -msgid "Edit Field" -msgstr "Modifica campo" - -#: acf.php:456 -msgid "Add New Field" -msgstr "Aggiungi nuovo campo" - -#: acf.php:454 -msgid "Field" -msgstr "Campo" - -#: acf.php:453 includes/admin/post-types/admin-field-group.php:163 -#: includes/admin/post-types/admin-field-groups.php:119 -#: includes/admin/views/acf-field-group/fields.php:32 -msgid "Fields" -msgstr "Campi" - -#: acf.php:428 -msgid "No Field Groups found in Trash" -msgstr "Nessun gruppo di campi trovato nel cestino" - -#: acf.php:427 -msgid "No Field Groups found" -msgstr "Nessun gruppo di campi trovato" - -#: acf.php:426 -msgid "Search Field Groups" -msgstr "Cerca gruppi di campi" - -#: acf.php:425 -msgid "View Field Group" -msgstr "Visualizza gruppo di campi" - -#: acf.php:424 -msgid "New Field Group" -msgstr "Nuovo gruppo di campi" - -#: acf.php:423 -msgid "Edit Field Group" -msgstr "Modifica gruppo di campi" - -#: acf.php:422 -msgid "Add New Field Group" -msgstr "Aggiungi nuovo gruppo di campi" - -#: acf.php:421 acf.php:455 -#: includes/admin/views/acf-post-type/advanced-settings.php:219 -#: includes/admin/views/acf-post-type/advanced-settings.php:221 -#: includes/post-types/class-acf-post-type.php:93 -#: includes/post-types/class-acf-taxonomy.php:92 -msgid "Add New" -msgstr "Aggiungi nuovo" - -#: acf.php:420 -msgid "Field Group" -msgstr "Gruppo di campi" - -#: acf.php:419 includes/admin/post-types/admin-field-groups.php:78 -#: includes/admin/post-types/admin-post-types.php:138 -#: includes/admin/post-types/admin-taxonomies.php:138 -msgid "Field Groups" -msgstr "Gruppi di campi" - -#. Description of the plugin -msgid "Customize WordPress with powerful, professional and intuitive fields." -msgstr "Personalizza WordPress con campi potenti, professionali e intuitivi." - -#. Plugin URI of the plugin -msgid "https://www.advancedcustomfields.com" -msgstr "https://www.advancedcustomfields.com" - -#. Plugin Name of the plugin -#: acf.php:94 -msgid "Advanced Custom Fields" -msgstr "Advanced Custom Fields" - -#: pro/acf-pro.php:27 -msgid "Advanced Custom Fields PRO" -msgstr "Advanced Custom Fields PRO" - -#: pro/blocks.php:170 -msgid "Block type name is required." -msgstr "" - -#. translators: The name of the block type -#: pro/blocks.php:178 -msgid "Block type \"%s\" is already registered." -msgstr "" - -#: pro/blocks.php:726 -msgid "Switch to Edit" -msgstr "" - -#: pro/blocks.php:727 -msgid "Switch to Preview" -msgstr "" - -#: pro/blocks.php:728 -msgid "Change content alignment" -msgstr "" - -#. translators: %s: Block type title -#: pro/blocks.php:731 -msgid "%s settings" -msgstr "" - -#: pro/blocks.php:936 -msgid "This block contains no editable fields." -msgstr "" - -#. translators: %s: an admin URL to the field group edit screen -#: pro/blocks.php:942 -msgid "" -"Assign a field group to add fields to " -"this block." -msgstr "" - -#: pro/options-page.php:78 -msgid "Options Updated" -msgstr "Opzioni Aggiornate" - -#: pro/updates.php:99 -msgid "" -"To enable updates, please enter your license key on the Updates page. If you don't have a licence key, please see details & pricing." -msgstr "" - -#: pro/updates.php:159 -msgid "" -"ACF Activation Error. Your defined license key has changed, but an " -"error occurred when deactivating your old licence" -msgstr "" - -#: pro/updates.php:154 -msgid "" -"ACF Activation Error. Your defined license key has changed, but an " -"error occurred when connecting to activation server" -msgstr "" - -#: pro/updates.php:192 -msgid "ACF Activation Error" -msgstr "" - -#: pro/updates.php:187 -msgid "" -"ACF Activation Error. An error occurred when connecting to activation " -"server" -msgstr "" - -#: pro/updates.php:279 -msgid "Check Again" -msgstr "Ricontrollare" - -#: pro/updates.php:593 -msgid "ACF Activation Error. Could not connect to activation server" -msgstr "" - -#: pro/admin/admin-options-page.php:195 -msgid "Publish" -msgstr "Pubblica" - -#: pro/admin/admin-options-page.php:199 -msgid "" -"No Custom Field Groups found for this options page. Create a " -"Custom Field Group" -msgstr "" -"Nessun Field Group personalizzato trovato in questa Pagina Opzioni. Crea un Field Group personalizzato" - -#: pro/admin/admin-updates.php:52 -msgid "Error. Could not connect to update server" -msgstr "Errore.Impossibile connettersi al server di aggiornamento" - -#: pro/admin/admin-updates.php:212 -msgid "" -"Error. Could not authenticate update package. Please check again or " -"deactivate and reactivate your ACF PRO license." -msgstr "" - -#: pro/admin/admin-updates.php:199 -msgid "" -"Error. Your license for this site has expired or been deactivated. " -"Please reactivate your ACF PRO license." -msgstr "" - -#: pro/fields/class-acf-field-clone.php:27, -#: pro/fields/class-acf-field-repeater.php:31 -msgid "" -"Allows you to select and display existing fields. It does not duplicate any " -"fields in the database, but loads and displays the selected fields at run-" -"time. The Clone field can either replace itself with the selected fields or " -"display the selected fields as a group of subfields." -msgstr "" - -#: pro/fields/class-acf-field-clone.php:819 -msgid "Select one or more fields you wish to clone" -msgstr "Selezionare uno o più campi che si desidera clonare" - -#: pro/fields/class-acf-field-clone.php:838 -msgid "Display" -msgstr "Visualizza" - -#: pro/fields/class-acf-field-clone.php:839 -msgid "Specify the style used to render the clone field" -msgstr "Specificare lo stile utilizzato per il rendering del campo clona" - -#: pro/fields/class-acf-field-clone.php:844 -msgid "Group (displays selected fields in a group within this field)" -msgstr "" -"Gruppo (Visualizza campi selezionati in un gruppo all'interno di questo " -"campo)" - -#: pro/fields/class-acf-field-clone.php:845 -msgid "Seamless (replaces this field with selected fields)" -msgstr "Senza interruzione (sostituisce questo campo con i campi selezionati)" - -#: pro/fields/class-acf-field-clone.php:868 -msgid "Labels will be displayed as %s" -msgstr "Etichette verranno visualizzate come %s" - -#: pro/fields/class-acf-field-clone.php:873 -msgid "Prefix Field Labels" -msgstr "Prefisso Etichetta Campo" - -#: pro/fields/class-acf-field-clone.php:883 -msgid "Values will be saved as %s" -msgstr "I valori verranno salvati come %s" - -#: pro/fields/class-acf-field-clone.php:888 -msgid "Prefix Field Names" -msgstr "Prefisso Nomi Campo" - -#: pro/fields/class-acf-field-clone.php:1005 -msgid "Unknown field" -msgstr "Campo sconosciuto" - -#: pro/fields/class-acf-field-clone.php:1042 -msgid "Unknown field group" -msgstr "Field Group sconosciuto" - -#: pro/fields/class-acf-field-clone.php:1046 -msgid "All fields from %s field group" -msgstr "Tutti i campi dal %s field group" - -#: pro/fields/class-acf-field-flexible-content.php:27 -msgid "" -"Allows you to define, create and manage content with total control by " -"creating layouts that contain subfields that content editors can choose from." -msgstr "" - -#: pro/fields/class-acf-field-flexible-content.php:36, -#: pro/fields/class-acf-field-repeater.php:103, -#: pro/fields/class-acf-field-repeater.php:297 -msgid "Add Row" -msgstr "Aggiungi Riga" - -#: pro/fields/class-acf-field-flexible-content.php:76, -#: pro/fields/class-acf-field-flexible-content.php:943, -#: pro/fields/class-acf-field-flexible-content.php:1022 -#, fuzzy -#| msgid "layout" -msgid "layout" -msgid_plural "layouts" -msgstr[0] "layout" -msgstr[1] "layout" - -#: pro/fields/class-acf-field-flexible-content.php:77 -msgid "layouts" -msgstr "layout" - -#: pro/fields/class-acf-field-flexible-content.php:81, -#: pro/fields/class-acf-field-flexible-content.php:942, -#: pro/fields/class-acf-field-flexible-content.php:1021 -msgid "This field requires at least {min} {label} {identifier}" -msgstr "Questo campo richiede almeno {min} {label} {identifier}" - -#: pro/fields/class-acf-field-flexible-content.php:82 -msgid "This field has a limit of {max} {label} {identifier}" -msgstr "" - -#: pro/fields/class-acf-field-flexible-content.php:85 -msgid "{available} {label} {identifier} available (max {max})" -msgstr "{available} {label} {identifier} disponibile (max {max})" - -#: pro/fields/class-acf-field-flexible-content.php:86 -msgid "{required} {label} {identifier} required (min {min})" -msgstr "{required} {label} {identifier} richiesto (min {min})" - -#: pro/fields/class-acf-field-flexible-content.php:89 -msgid "Flexible Content requires at least 1 layout" -msgstr "Flexible Content richiede almeno 1 layout" - -#: pro/fields/class-acf-field-flexible-content.php:282 -msgid "Click the \"%s\" button below to start creating your layout" -msgstr "Clicca il bottone \"%s\" qui sotto per iniziare a creare il layout" - -#: pro/fields/class-acf-field-flexible-content.php:423 -msgid "Add layout" -msgstr "Aggiungi Layout" - -#: pro/fields/class-acf-field-flexible-content.php:424 -msgid "Duplicate layout" -msgstr "" - -#: pro/fields/class-acf-field-flexible-content.php:425 -msgid "Remove layout" -msgstr "Rimuovi Layout" - -#: pro/fields/class-acf-field-flexible-content.php:426, -#: pro/fields/class-acf-repeater-table.php:382 -msgid "Click to toggle" -msgstr "Clicca per alternare" - -#: pro/fields/class-acf-field-flexible-content.php:562 -msgid "Delete Layout" -msgstr "Cancella Layout" - -#: pro/fields/class-acf-field-flexible-content.php:563 -msgid "Duplicate Layout" -msgstr "Duplica Layout" - -#: pro/fields/class-acf-field-flexible-content.php:564 -msgid "Add New Layout" -msgstr "Aggiungi Nuovo Layout" - -#: pro/fields/class-acf-field-flexible-content.php:564 -#, fuzzy -#| msgid "Add layout" -msgid "Add Layout" -msgstr "Aggiungi Layout" - -#: pro/fields/class-acf-field-flexible-content.php:647 -msgid "Min" -msgstr "Min" - -#: pro/fields/class-acf-field-flexible-content.php:662 -msgid "Max" -msgstr "Max" - -#: pro/fields/class-acf-field-flexible-content.php:705 -msgid "Minimum Layouts" -msgstr "Layout Minimi" - -#: pro/fields/class-acf-field-flexible-content.php:716 -msgid "Maximum Layouts" -msgstr "Layout Massimi" - -#: pro/fields/class-acf-field-flexible-content.php:727, -#: pro/fields/class-acf-field-repeater.php:293 -msgid "Button Label" -msgstr "Etichetta Bottone" - -#: pro/fields/class-acf-field-flexible-content.php:1710, -#: pro/fields/class-acf-field-repeater.php:918 -msgid "%s must be of type array or null." -msgstr "" - -#: pro/fields/class-acf-field-flexible-content.php:1721 -msgid "%1$s must contain at least %2$s %3$s layout." -msgid_plural "%1$s must contain at least %2$s %3$s layouts." -msgstr[0] "" -msgstr[1] "" - -#: pro/fields/class-acf-field-flexible-content.php:1737 -msgid "%1$s must contain at most %2$s %3$s layout." -msgid_plural "%1$s must contain at most %2$s %3$s layouts." -msgstr[0] "" -msgstr[1] "" - -#: pro/fields/class-acf-field-gallery.php:27 -msgid "" -"An interactive interface for managing a collection of attachments, such as " -"images." -msgstr "" - -#: pro/fields/class-acf-field-gallery.php:77 -msgid "Add Image to Gallery" -msgstr "Aggiungi Immagine alla Galleria" - -#: pro/fields/class-acf-field-gallery.php:78 -msgid "Maximum selection reached" -msgstr "Selezione massima raggiunta" - -#: pro/fields/class-acf-field-gallery.php:324 -msgid "Length" -msgstr "Lunghezza" - -#: pro/fields/class-acf-field-gallery.php:368 -msgid "Caption" -msgstr "Didascalia" - -#: pro/fields/class-acf-field-gallery.php:380 -msgid "Alt Text" -msgstr "Testo Alt" - -#: pro/fields/class-acf-field-gallery.php:504 -msgid "Add to gallery" -msgstr "Aggiungi a Galleria" - -#: pro/fields/class-acf-field-gallery.php:508 -msgid "Bulk actions" -msgstr "Azioni in blocco" - -#: pro/fields/class-acf-field-gallery.php:509 -msgid "Sort by date uploaded" -msgstr "Ordina per aggiornamento data" - -#: pro/fields/class-acf-field-gallery.php:510 -msgid "Sort by date modified" -msgstr "Ordina per data modifica" - -#: pro/fields/class-acf-field-gallery.php:511 -msgid "Sort by title" -msgstr "Ordina per titolo" - -#: pro/fields/class-acf-field-gallery.php:512 -msgid "Reverse current order" -msgstr "Ordine corrente inversa" - -#: pro/fields/class-acf-field-gallery.php:524 -msgid "Close" -msgstr "Chiudi" - -#: pro/fields/class-acf-field-gallery.php:615 -msgid "Minimum Selection" -msgstr "Seleziona Minima" - -#: pro/fields/class-acf-field-gallery.php:625 -msgid "Maximum Selection" -msgstr "Seleziona Massima" - -#: pro/fields/class-acf-field-gallery.php:707 -msgid "Allowed file types" -msgstr "Tipologie File permesse" - -#: pro/fields/class-acf-field-gallery.php:727 -msgid "Insert" -msgstr "Inserisci" - -#: pro/fields/class-acf-field-gallery.php:728 -msgid "Specify where new attachments are added" -msgstr "Specificare dove vengono aggiunti nuovi allegati" - -#: pro/fields/class-acf-field-gallery.php:732 -msgid "Append to the end" -msgstr "Aggiungere alla fine" - -#: pro/fields/class-acf-field-gallery.php:733 -msgid "Prepend to the beginning" -msgstr "Anteporre all'inizio" - -#: pro/fields/class-acf-field-repeater.php:66, -#: pro/fields/class-acf-field-repeater.php:463 -#, fuzzy -#| msgid "Minimum rows reached ({min} rows)" -msgid "Minimum rows not reached ({min} rows)" -msgstr "Righe minime raggiunte ({min} righe)" - -#: pro/fields/class-acf-field-repeater.php:67 -msgid "Maximum rows reached ({max} rows)" -msgstr "Righe massime raggiunte ({max} righe)" - -#: pro/fields/class-acf-field-repeater.php:68 -msgid "Error loading page" -msgstr "" - -#: pro/fields/class-acf-field-repeater.php:69 -msgid "Order will be assigned upon save" -msgstr "" - -#: pro/fields/class-acf-field-repeater.php:196 -msgid "Useful for fields with a large number of rows." -msgstr "" - -#: pro/fields/class-acf-field-repeater.php:207 -msgid "Rows Per Page" -msgstr "" - -#: pro/fields/class-acf-field-repeater.php:208 -msgid "Set the number of rows to be displayed on a page." -msgstr "" - -#: pro/fields/class-acf-field-repeater.php:240 -msgid "Minimum Rows" -msgstr "Righe Minime" - -#: pro/fields/class-acf-field-repeater.php:251 -msgid "Maximum Rows" -msgstr "Righe Massime" - -#: pro/fields/class-acf-field-repeater.php:281 -msgid "Collapsed" -msgstr "Collassata" - -#: pro/fields/class-acf-field-repeater.php:282 -msgid "Select a sub field to show when row is collapsed" -msgstr "" -"Selezionare un campo secondario da visualizzare quando la riga è collassata" - -#: pro/fields/class-acf-field-repeater.php:1060 -msgid "Invalid field key or name." -msgstr "" - -#: pro/fields/class-acf-field-repeater.php:1069 -msgid "There was an error retrieving the field." -msgstr "" - -#: pro/fields/class-acf-repeater-table.php:369 -#, fuzzy -#| msgid "Drag to reorder" -msgid "Click to reorder" -msgstr "Trascinare per riordinare" - -#: pro/fields/class-acf-repeater-table.php:402 -msgid "Add row" -msgstr "Aggiungi riga" - -#: pro/fields/class-acf-repeater-table.php:403 -msgid "Duplicate row" -msgstr "" - -#: pro/fields/class-acf-repeater-table.php:404 -msgid "Remove row" -msgstr "Rimuovi riga" - -#: pro/fields/class-acf-repeater-table.php:448, -#: pro/fields/class-acf-repeater-table.php:465, -#: pro/fields/class-acf-repeater-table.php:466 -msgid "Current Page" -msgstr "" - -#: pro/fields/class-acf-repeater-table.php:456, -#: pro/fields/class-acf-repeater-table.php:457 -#, fuzzy -#| msgid "Front Page" -msgid "First Page" -msgstr "Pagina Principale" - -#: pro/fields/class-acf-repeater-table.php:460, -#: pro/fields/class-acf-repeater-table.php:461 -#, fuzzy -#| msgid "Posts Page" -msgid "Previous Page" -msgstr "Pagina Post" - -#. translators: 1: Current page, 2: Total pages. -#: pro/fields/class-acf-repeater-table.php:470 -msgctxt "paging" -msgid "%1$s of %2$s" -msgstr "" - -#: pro/fields/class-acf-repeater-table.php:477, -#: pro/fields/class-acf-repeater-table.php:478 -#, fuzzy -#| msgid "Front Page" -msgid "Next Page" -msgstr "Pagina Principale" - -#: pro/fields/class-acf-repeater-table.php:481, -#: pro/fields/class-acf-repeater-table.php:482 -#, fuzzy -#| msgid "Posts Page" -msgid "Last Page" -msgstr "Pagina Post" - -#: pro/locations/class-acf-location-block.php:71 -msgid "No block types exist" -msgstr "" - -#: pro/locations/class-acf-location-options-page.php:70 -msgid "No options pages exist" -msgstr "Nessuna Pagina Opzioni esistente" - -#: pro/admin/views/html-settings-updates.php:6 -msgid "Deactivate License" -msgstr "Disattivare Licenza" - -#: pro/admin/views/html-settings-updates.php:6 -msgid "Activate License" -msgstr "Attiva Licenza" - -#: pro/admin/views/html-settings-updates.php:16 -msgid "License Information" -msgstr "Informazioni Licenza" - -#: pro/admin/views/html-settings-updates.php:34 -msgid "" -"To unlock updates, please enter your license key below. If you don't have a " -"licence key, please see details & pricing." -msgstr "" -"Per sbloccare gli aggiornamenti, si prega di inserire la chiave di licenza " -"qui sotto. Se non hai una chiave di licenza, si prega di vedere Dettagli e prezzi." - -#: pro/admin/views/html-settings-updates.php:37 -msgid "License Key" -msgstr "Chiave di licenza" - -#: pro/admin/views/html-settings-updates.php:22 -msgid "Your license key is defined in wp-config.php." -msgstr "" - -#: pro/admin/views/html-settings-updates.php:29 -msgid "Retry Activation" -msgstr "" - -#: pro/admin/views/html-settings-updates.php:61 -msgid "Update Information" -msgstr "Informazioni di aggiornamento" - -#: pro/admin/views/html-settings-updates.php:68 -msgid "Current Version" -msgstr "Versione corrente" - -#: pro/admin/views/html-settings-updates.php:76 -msgid "Latest Version" -msgstr "Ultima versione" - -#: pro/admin/views/html-settings-updates.php:84 -msgid "Update Available" -msgstr "Aggiornamento Disponibile" - -#: pro/admin/views/html-settings-updates.php:98 -msgid "Upgrade Notice" -msgstr "Avviso di Aggiornamento" - -#: pro/admin/views/html-settings-updates.php:126 -msgid "Check For Updates" -msgstr "" - -#: pro/admin/views/html-settings-updates.php:121 -#, fuzzy -#| msgid "Please enter your license key above to unlock updates" -msgid "Enter your license key to unlock updates" -msgstr "Inserisci il tuo codice di licenza per sbloccare gli aggiornamenti" - -#: pro/admin/views/html-settings-updates.php:119 -msgid "Update Plugin" -msgstr "Aggiorna Plugin" - -#: pro/admin/views/html-settings-updates.php:117 -msgid "Please reactivate your license to unlock updates" -msgstr "" diff --git a/lang/acf-ja.mo b/lang/acf-ja.mo deleted file mode 100644 index 53d8653..0000000 Binary files a/lang/acf-ja.mo and /dev/null differ diff --git a/lang/acf-ja.po b/lang/acf-ja.po deleted file mode 100644 index a3ba067..0000000 --- a/lang/acf-ja.po +++ /dev/null @@ -1,6173 +0,0 @@ -# Advanced Custom Fields Translations are a combination of translate.wordpress.org contributions, -# combined with user contributed strings for the PRO version. -# Translations from translate.wordpress.org take priority over translations in this file. -# translate.wordpress.org contributions are synced at the time of each release. -# -# If you would like to contribute translations, please visit -# https://translate.wordpress.org/projects/wp-plugins/advanced-custom-fields/stable/ -# -# For additional ACF PRO strings, please submit a pull request over on the ACF GitHub repo at -# http://github.com/advancedcustomfields/acf using the .pot (and any existing .po) files in /lang/pro/ -# -# This file is distributed under the same license as Advanced Custom Fields. -msgid "" -msgstr "" -"PO-Revision-Date: 2023-11-28T09:14:32+00:00\n" -"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n" -"Language: ja\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: gettext\n" -"Project-Id-Version: Advanced Custom Fields\n" - -#: includes/admin/views/global/navigation.php:221 -msgid "Renew ACF PRO License" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:17 -msgid "Renew License" -msgstr "ライセンスを更新" - -#: includes/admin/views/acf-field-group/pro-features.php:14 -msgid "Manage License" -msgstr "ライセンスの管理" - -#: includes/admin/views/acf-field-group/options.php:102 -msgid "'High' position not supported in the Block Editor" -msgstr "" - -#: includes/admin/views/options-page-preview.php:30 -msgid "Upgrade to ACF PRO" -msgstr "ACF プロ版へアップグレード" - -#. translators: %s URL to ACF options pages documentation -#: includes/admin/views/options-page-preview.php:7 -msgid "" -"ACF options pages are custom admin " -"pages for managing global settings via fields. You can create multiple pages " -"and sub-pages." -msgstr "" - -#: includes/admin/views/global/header.php:35 -msgid "Add Options Page" -msgstr "オプションページを追加" - -#: includes/admin/views/acf-post-type/advanced-settings.php:703 -msgid "In the editor used as the placeholder of the title." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:702 -msgid "Title Placeholder" -msgstr "タイトルプレースホルダー" - -#: includes/admin/views/global/navigation.php:97 -msgid "4 Months Free" -msgstr "4ヶ月無料" - -#. translators: %s - A singular label for a post type or taxonomy. -#: includes/admin/views/global/form-top.php:56 -msgid " (Duplicated from %s)" -msgstr " (からの複製 %s)" - -#: includes/admin/tools/class-acf-admin-tool-export.php:298 -msgid "Select Options Pages" -msgstr "オプションページを選択" - -#: includes/admin/post-types/admin-taxonomy.php:107 -msgid "Duplicate taxonomy" -msgstr "タクソノミーを複製" - -#: includes/admin/post-types/admin-post-type.php:106 -#: includes/admin/post-types/admin-taxonomy.php:106 -msgid "Create taxonomy" -msgstr "タクソノミーを作成" - -#: includes/admin/post-types/admin-post-type.php:105 -msgid "Duplicate post type" -msgstr "投稿タイプを複製" - -#: includes/admin/post-types/admin-post-type.php:104 -#: includes/admin/post-types/admin-taxonomy.php:108 -msgid "Create post type" -msgstr "投稿タイプを作成" - -#: includes/admin/post-types/admin-post-type.php:103 -#: includes/admin/post-types/admin-taxonomy.php:105 -msgid "Link field groups" -msgstr "フィールドグループ" - -#: includes/admin/post-types/admin-post-type.php:102 -#: includes/admin/post-types/admin-taxonomy.php:104 -msgid "Add fields" -msgstr "フィールドを追加" - -#: includes/admin/post-types/admin-field-group.php:121 -#: assets/build/js/acf-field-group.js:2753 -#: assets/build/js/acf-field-group.js:3236 -msgid "This Field" -msgstr "このフィールド" - -#: includes/admin/admin.php:267 -msgid "ACF PRO" -msgstr "ACF PRO" - -#: includes/admin/admin.php:265 -msgid "Feedback" -msgstr "フィードバック" - -#: includes/admin/admin.php:263 -msgid "Support" -msgstr "サポート" - -#. translators: This text is prepended by a link to ACF's website, and appended -#. by a link to WP Engine's website. -#: includes/admin/admin.php:238 -msgid "is developed and maintained by" -msgstr "によって開発され、維持されている" - -#. translators: %s - either "post type" or "taxonomy" -#: includes/admin/admin-internal-post-type.php:321 -msgid "Add this %s to the location rules of the selected field groups." -msgstr "%s を選択したフィールドグループのロケーションルールに追加します。" - -#. translators: %s the URL to ACF's bidirectional relationship documentation -#: includes/acf-bidirectional-functions.php:271 -msgid "" -"Enabling the bidirectional setting allows you to update a value in the " -"target fields for each value selected for this field, adding or removing the " -"Post ID, Taxonomy ID or User ID of the item being updated. For more " -"information, please read the documentation." -msgstr "" - -#: includes/acf-bidirectional-functions.php:247 -msgid "" -"Select field(s) to store the reference back to the item being updated. You " -"may select this field. Target fields must be compatible with where this " -"field is being displayed. For example, if this field is displayed on a " -"Taxonomy, your target field should be of type Taxonomy" -msgstr "" - -#: includes/acf-bidirectional-functions.php:246 -msgid "Target Field" -msgstr "ターゲットフィールド" - -#: includes/acf-bidirectional-functions.php:220 -msgid "Update a field on the selected values, referencing back to this ID" -msgstr "" - -#: includes/acf-bidirectional-functions.php:219 -msgid "Bidirectional" -msgstr "双方向" - -#. translators: %s A field type name, such as "Relationship" -#: includes/acf-bidirectional-functions.php:192 -msgid "%s Field" -msgstr "%s フィールド" - -#: includes/fields/class-acf-field-page_link.php:517 -#: includes/fields/class-acf-field-post_object.php:426 -#: includes/fields/class-acf-field-select.php:407 -#: includes/fields/class-acf-field-user.php:82 -msgid "Select Multiple" -msgstr "複数選択" - -#: includes/admin/views/global/navigation.php:233 -msgid "WP Engine logo" -msgstr "WP Engine ロゴ" - -#: includes/admin/views/acf-taxonomy/basic-settings.php:58 -msgid "Lower case letters, underscores and dashes only, Max 32 characters." -msgstr "小文字、アンダースコア、ダッシュのみ、最大32文字" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1136 -msgid "The capability name for assigning terms of this taxonomy." -msgstr "投稿などでこのタクソノミーのタームを設定するための権限" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1135 -msgid "Assign Terms Capability" -msgstr "ターム割り当て" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1119 -msgid "The capability name for deleting terms of this taxonomy." -msgstr "このタクソノミーのタームを削除するための権限" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1118 -msgid "Delete Terms Capability" -msgstr "ターム削除機能" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1102 -msgid "The capability name for editing terms of this taxonomy." -msgstr "このタクソノミーのタームを編集するための権限" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1101 -msgid "Edit Terms Capability" -msgstr "ターム編集機能" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1085 -msgid "The capability name for managing terms of this taxonomy." -msgstr "このタクソノミーの管理画面へのアクセスを許可する権限" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1084 -msgid "Manage Terms Capability" -msgstr "ターム管理機能" - -#: includes/admin/views/acf-post-type/advanced-settings.php:886 -msgid "" -"Sets whether posts should be excluded from search results and taxonomy " -"archive pages." -msgstr "サイト内検索やタクソノミーアーカイブから投稿を除外するかどうかを設定。" - -#: includes/admin/views/acf-field-group/pro-features.php:74 -msgid "More Tools from WP Engine" -msgstr "WP Engine 他のツール" - -#. translators: %s - WP Engine logo -#: includes/admin/views/acf-field-group/pro-features.php:69 -msgid "Built for those that build with WordPress, by the team at %s" -msgstr "%s のチームによって、WordPressで構築する人々のために構築された" - -#: includes/admin/views/acf-field-group/pro-features.php:6 -msgid "View Pricing & Upgrade" -msgstr "価格とアップグレードを見る" - -#: includes/admin/views/acf-field-group/pro-features.php:3 -#: includes/admin/views/options-page-preview.php:29 -msgid "Learn More" -msgstr "さらに詳しく" - -#: includes/admin/views/acf-field-group/pro-features.php:28 -msgid "" -"Speed up your workflow and develop better websites with features like ACF " -"Blocks and Options Pages, and sophisticated field types like Repeater, " -"Flexible Content, Clone, and Gallery." -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:2 -msgid "Unlock Advanced Features and Build Even More with ACF PRO" -msgstr "" - -#. translators: %s - singular label of post type/taxonomy, i.e. "Movie"/"Genre" -#: includes/admin/views/global/form-top.php:19 -msgid "%s fields" -msgstr "%s フィールド" - -#: includes/admin/post-types/admin-taxonomies.php:293 -msgid "No terms" -msgstr "タームはありません" - -#: includes/admin/post-types/admin-taxonomies.php:266 -msgid "No post types" -msgstr "投稿タイプはありません" - -#: includes/admin/post-types/admin-post-types.php:289 -msgid "No posts" -msgstr "投稿はありません" - -#: includes/admin/post-types/admin-post-types.php:263 -msgid "No taxonomies" -msgstr "タクソノミーはありません" - -#: includes/admin/post-types/admin-post-types.php:208 -#: includes/admin/post-types/admin-taxonomies.php:208 -msgid "No field groups" -msgstr "フィールドグループはありません" - -#: includes/admin/post-types/admin-field-groups.php:281 -msgid "No fields" -msgstr "フィールドはありません" - -#: includes/admin/post-types/admin-field-groups.php:154 -#: includes/admin/post-types/admin-post-types.php:172 -#: includes/admin/post-types/admin-taxonomies.php:172 -msgid "No description" -msgstr "説明はありません" - -#: includes/fields/class-acf-field-page_link.php:484 -#: includes/fields/class-acf-field-post_object.php:389 -#: includes/fields/class-acf-field-relationship.php:601 -msgid "Any post status" -msgstr "すべての投稿ステータス" - -#: includes/post-types/class-acf-taxonomy.php:284 -msgid "" -"This taxonomy key is already in use by another taxonomy registered outside " -"of ACF and cannot be used." -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:279 -msgid "" -"This taxonomy key is already in use by another taxonomy in ACF and cannot be " -"used." -msgstr "" -"このタクソノミーのキーはすでに ACF の他のタクソノミーで使用されているので使用" -"できません。" - -#: includes/post-types/class-acf-taxonomy.php:252 -msgid "" -"The taxonomy key must only contain lower case alphanumeric characters, " -"underscores or dashes." -msgstr "" -"タクソノミーのキーは小文字の英数字、アンダースコア、またはダッシュのみが含ま" -"れます。" - -#: includes/post-types/class-acf-taxonomy.php:247 -msgid "The taxonomy key must be under 32 characters." -msgstr "タクソノミーのキーは32字以内にする必要があります。" - -#: includes/post-types/class-acf-taxonomy.php:99 -msgid "No Taxonomies found in Trash" -msgstr "ゴミ箱内にタクソノミーが見つかりませんでした。" - -#: includes/post-types/class-acf-taxonomy.php:98 -msgid "No Taxonomies found" -msgstr "タクソノミーが見つかりません" - -#: includes/post-types/class-acf-taxonomy.php:97 -msgid "Search Taxonomies" -msgstr "タクソノミーを検索" - -#: includes/post-types/class-acf-taxonomy.php:96 -msgid "View Taxonomy" -msgstr "タクソノミーを表示" - -#: includes/post-types/class-acf-taxonomy.php:95 -msgid "New Taxonomy" -msgstr "新規タクソノミー" - -#: includes/post-types/class-acf-taxonomy.php:94 -msgid "Edit Taxonomy" -msgstr "タクソノミーを編集" - -#: includes/post-types/class-acf-taxonomy.php:93 -msgid "Add New Taxonomy" -msgstr "新規タクソノミーを追加" - -#: includes/post-types/class-acf-post-type.php:100 -msgid "No Post Types found in Trash" -msgstr "ゴミ箱内に投稿タイプが見つかりませんでした。" - -#: includes/post-types/class-acf-post-type.php:99 -msgid "No Post Types found" -msgstr "投稿タイプが見つかりません。" - -#: includes/post-types/class-acf-post-type.php:98 -msgid "Search Post Types" -msgstr "投稿タイプを検索" - -#: includes/post-types/class-acf-post-type.php:97 -msgid "View Post Type" -msgstr "投稿タイプを表示" - -#: includes/post-types/class-acf-post-type.php:96 -msgid "New Post Type" -msgstr "新規投稿タイプ" - -#: includes/post-types/class-acf-post-type.php:95 -msgid "Edit Post Type" -msgstr "投稿タイプを編集" - -#: includes/post-types/class-acf-post-type.php:94 -msgid "Add New Post Type" -msgstr "新規投稿タイプを追加" - -#: includes/post-types/class-acf-post-type.php:361 -msgid "" -"This post type key is already in use by another post type registered outside " -"of ACF and cannot be used." -msgstr "" -"この投稿タイプキーは、ACF の外側で登録された別の投稿タイプによってすでに使用" -"されているため、使用できません。" - -#: includes/post-types/class-acf-post-type.php:356 -msgid "" -"This post type key is already in use by another post type in ACF and cannot " -"be used." -msgstr "" -"この投稿タイプキーは、ACF の別の投稿タイプによってすでに使用されているため、" -"使用できません。" - -#. translators: %s a link to WordPress.org's Reserved Terms page -#: includes/post-types/class-acf-post-type.php:335 -#: includes/post-types/class-acf-taxonomy.php:258 -msgid "" -"This field must not be a WordPress reserved " -"term." -msgstr "" - -#: includes/post-types/class-acf-post-type.php:329 -msgid "" -"The post type key must only contain lower case alphanumeric characters, " -"underscores or dashes." -msgstr "" - -#: includes/post-types/class-acf-post-type.php:324 -msgid "The post type key must be under 20 characters." -msgstr "投稿タイプのキーは20字以内にする必要があります。" - -#: includes/fields/class-acf-field-wysiwyg.php:27 -msgid "We do not recommend using this field in ACF Blocks." -msgstr "このフィールドの ACF ブロックでの使用は推奨されません。" - -#: includes/fields/class-acf-field-wysiwyg.php:27 -msgid "" -"Displays the WordPress WYSIWYG editor as seen in Posts and Pages allowing " -"for a rich text-editing experience that also allows for multimedia content." -msgstr "" - -#: includes/fields/class-acf-field-wysiwyg.php:25 -msgid "WYSIWYG Editor" -msgstr "リッチ エディター (WYSIWYG)" - -#: includes/fields/class-acf-field-user.php:17 -msgid "" -"Allows the selection of one or more users which can be used to create " -"relationships between data objects." -msgstr "" -"データオブジェクト間のリレーションシップを作成するために使用できる、1人または" -"複数のユーザーを選択できます。" - -#: includes/fields/class-acf-field-url.php:26 -msgid "A text input specifically designed for storing web addresses." -msgstr "ウェブアドレスを保存するために特別に設計されたテキスト入力。" - -#: includes/fields/class-acf-field-url.php:25 -msgid "URL" -msgstr "URL" - -#: includes/fields/class-acf-field-true_false.php:27 -msgid "" -"A toggle that allows you to pick a value of 1 or 0 (on or off, true or " -"false, etc). Can be presented as a stylized switch or checkbox." -msgstr "" - -#: includes/fields/class-acf-field-time_picker.php:27 -msgid "" -"An interactive UI for picking a time. The time format can be customized " -"using the field settings." -msgstr "" - -#: includes/fields/class-acf-field-textarea.php:26 -msgid "A basic textarea input for storing paragraphs of text." -msgstr "" - -#: includes/fields/class-acf-field-text.php:26 -msgid "A basic text input, useful for storing single string values." -msgstr "基本的なテキスト入力で、単一の文字列値を格納するのに便利です。" - -#: includes/fields/class-acf-field-taxonomy.php:22 -msgid "" -"Allows the selection of one or more taxonomy terms based on the criteria and " -"options specified in the fields settings." -msgstr "" - -#: includes/fields/class-acf-field-tab.php:28 -msgid "" -"Allows you to group fields into tabbed sections in the edit screen. Useful " -"for keeping fields organized and structured." -msgstr "" - -#: includes/fields/class-acf-field-select.php:27 -msgid "A dropdown list with a selection of choices that you specify." -msgstr "" - -#: includes/fields/class-acf-field-relationship.php:19 -msgid "" -"A dual-column interface to select one or more posts, pages, or custom post " -"type items to create a relationship with the item that you're currently " -"editing. Includes options to search and filter." -msgstr "" - -#: includes/fields/class-acf-field-range.php:26 -msgid "" -"An input for selecting a numerical value within a specified range using a " -"range slider element." -msgstr "" - -#: includes/fields/class-acf-field-radio.php:27 -msgid "" -"A group of radio button inputs that allows the user to make a single " -"selection from values that you specify." -msgstr "" - -#: includes/fields/class-acf-field-post_object.php:19 -msgid "" -"An interactive and customizable UI for picking one or many posts, pages or " -"post type items with the option to search. " -msgstr "" - -#: includes/fields/class-acf-field-password.php:26 -msgid "An input for providing a password using a masked field." -msgstr "" - -#: includes/fields/class-acf-field-page_link.php:476 -#: includes/fields/class-acf-field-post_object.php:381 -#: includes/fields/class-acf-field-relationship.php:593 -msgid "Filter by Post Status" -msgstr "投稿ステータスで絞り込む" - -#: includes/fields/class-acf-field-page_link.php:27 -msgid "" -"An interactive dropdown to select one or more posts, pages, custom post type " -"items or archive URLs, with the option to search." -msgstr "" - -#: includes/fields/class-acf-field-oembed.php:27 -msgid "" -"An interactive component for embedding videos, images, tweets, audio and " -"other content by making use of the native WordPress oEmbed functionality." -msgstr "" - -#: includes/fields/class-acf-field-number.php:26 -msgid "An input limited to numerical values." -msgstr "数値のみの入力" - -#: includes/fields/class-acf-field-message.php:28 -msgid "" -"Used to display a message to editors alongside other fields. Useful for " -"providing additional context or instructions around your fields." -msgstr "" - -#: includes/fields/class-acf-field-link.php:27 -msgid "" -"Allows you to specify a link and its properties such as title and target " -"using the WordPress native link picker." -msgstr "" - -#: includes/fields/class-acf-field-image.php:27 -msgid "Uses the native WordPress media picker to upload, or choose images." -msgstr "" - -#: includes/fields/class-acf-field-group.php:27 -msgid "" -"Provides a way to structure fields into groups to better organize the data " -"and the edit screen." -msgstr "" -"データと編集画面をよりよく整理するために、フィールドをグループに構造化する方" -"法を提供します。" - -#: includes/fields/class-acf-field-google-map.php:27 -msgid "" -"An interactive UI for selecting a location using Google Maps. Requires a " -"Google Maps API key and additional configuration to display correctly." -msgstr "" - -#: includes/fields/class-acf-field-file.php:27 -msgid "Uses the native WordPress media picker to upload, or choose files." -msgstr "" - -#: includes/fields/class-acf-field-email.php:26 -msgid "A text input specifically designed for storing email addresses." -msgstr "メールアドレスを保存するために特別に設計されたテキスト入力。" - -#: includes/fields/class-acf-field-date_time_picker.php:27 -msgid "" -"An interactive UI for picking a date and time. The date return format can be " -"customized using the field settings." -msgstr "" - -#: includes/fields/class-acf-field-date_picker.php:27 -msgid "" -"An interactive UI for picking a date. The date return format can be " -"customized using the field settings." -msgstr "" - -#: includes/fields/class-acf-field-color_picker.php:27 -msgid "An interactive UI for selecting a color, or specifying a Hex value." -msgstr "" - -#: includes/fields/class-acf-field-checkbox.php:27 -msgid "" -"A group of checkbox inputs that allow the user to select one, or multiple " -"values that you specify." -msgstr "" -"ユーザーが1つ、または指定した複数の値を選択できるチェックボックス入力のグルー" -"プ。" - -#: includes/fields/class-acf-field-button-group.php:26 -msgid "" -"A group of buttons with values that you specify, users can choose one option " -"from the values provided." -msgstr "" -"あなたが指定した値を持つボタンのグループ、ユーザーは提供された値から1つのオプ" -"ションを選択することができます。" - -#: includes/fields/class-acf-field-accordion.php:27 -msgid "" -"Allows you to group and organize custom fields into collapsable panels that " -"are shown while editing content. Useful for keeping large datasets tidy." -msgstr "" -"コンテンツの編集中に表示される折りたたみ可能なパネルに、カスタムフィールドを" -"グループ化して整理することができます。大規模なデータセットを整理整頓するのに" -"便利です。" - -#: includes/fields.php:475 -msgid "" -"This provides a solution for repeating content such as slides, team members, " -"and call-to-action tiles, by acting as a parent to a set of subfields which " -"can be repeated again and again." -msgstr "" -"これは、スライド、チームメンバー、行動喚起表示などのコンテンツを繰り返し表示" -"するためのソリューションで、繰り返し表示できる一連のサブフィールドの親として" -"機能します。" - -#: includes/fields.php:465 -msgid "" -"This provides an interactive interface for managing a collection of " -"attachments. Most settings are similar to the Image field type. Additional " -"settings allow you to specify where new attachments are added in the gallery " -"and the minimum/maximum number of attachments allowed." -msgstr "" -"これは、添付ファイルのコレクションを管理するためのインタラクティブなインター" -"フェイスを提供します。ほとんどの設定は画像フィールドタイプと似ています。追加" -"設定では、ギャラリーで新しい添付ファイルを追加する場所と、許可される添付ファ" -"イルの最小/最大数を指定できます。" - -#: includes/fields.php:455 -msgid "" -"This provides a simple, structured, layout-based editor. The Flexible " -"Content field allows you to define, create and manage content with total " -"control by using layouts and subfields to design the available blocks." -msgstr "" - -#: includes/fields.php:445 -msgid "" -"This allows you to select and display existing fields. It does not duplicate " -"any fields in the database, but loads and displays the selected fields at " -"run-time. The Clone field can either replace itself with the selected fields " -"or display the selected fields as a group of subfields." -msgstr "" - -#: includes/fields.php:442 -msgctxt "noun" -msgid "Clone" -msgstr "複製" - -#: includes/admin/views/global/navigation.php:86 includes/fields.php:357 -msgid "PRO" -msgstr "PRO" - -#: includes/fields.php:355 includes/fields.php:412 -msgid "Advanced" -msgstr "高度" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:85 -msgid "JSON (newer)" -msgstr "JSON (新しい)" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:81 -msgid "Original" -msgstr "オリジナル" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:55 -msgid "Invalid post ID." -msgstr "無効な投稿 ID です。" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:47 -msgid "Invalid post type selected for review." -msgstr "" - -#: includes/admin/views/global/navigation.php:186 -msgid "More" -msgstr "詳細" - -#: includes/admin/views/browse-fields-modal.php:86 -msgid "Tutorial" -msgstr "チュートリアル" - -#: includes/admin/views/browse-fields-modal.php:75 -msgid "Available with ACF PRO" -msgstr "" - -#: includes/admin/views/browse-fields-modal.php:63 -msgid "Select Field" -msgstr "フィールド選択" - -#. translators: %s: A link to the popular fields used in ACF -#: includes/admin/views/browse-fields-modal.php:50 -msgid "Try a different search term or browse %s" -msgstr "" - -#: includes/admin/views/browse-fields-modal.php:47 -msgid "Popular fields" -msgstr "よく使うフィールド" - -#. translators: %s: The invalid search term -#: includes/admin/views/browse-fields-modal.php:40 -msgid "No search results for '%s'" -msgstr "" - -#: includes/admin/views/browse-fields-modal.php:13 -msgid "Search fields..." -msgstr "フィールドを検索..." - -#: includes/admin/views/browse-fields-modal.php:11 -msgid "Select Field Type" -msgstr "フィールドタイプを選択する" - -#: includes/admin/views/browse-fields-modal.php:4 -msgid "Popular" -msgstr "人気" - -#: includes/admin/views/acf-taxonomy/list-empty.php:7 -msgid "Add Taxonomy" -msgstr "タクソノミーを追加" - -#: includes/admin/views/acf-taxonomy/list-empty.php:6 -msgid "Create custom taxonomies to classify post type content" -msgstr "" - -#: includes/admin/views/acf-taxonomy/list-empty.php:5 -msgid "Add Your First Taxonomy" -msgstr "" - -#: includes/admin/views/acf-taxonomy/basic-settings.php:122 -msgid "Hierarchical taxonomies can have descendants (like categories)." -msgstr "" - -#: includes/admin/views/acf-taxonomy/basic-settings.php:107 -msgid "Makes a taxonomy visible on the frontend and in the admin dashboard." -msgstr "" - -#: includes/admin/views/acf-taxonomy/basic-settings.php:91 -msgid "One or many post types that can be classified with this taxonomy." -msgstr "" - -#. translators: example taxonomy -#: includes/admin/views/acf-taxonomy/basic-settings.php:60 -msgid "genre" -msgstr "ジャンル" - -#. translators: example taxonomy -#: includes/admin/views/acf-taxonomy/basic-settings.php:42 -msgid "Genre" -msgstr "ジャンル" - -#. translators: example taxonomy -#: includes/admin/views/acf-taxonomy/basic-settings.php:25 -msgid "Genres" -msgstr "ジャンル" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1211 -msgid "" -"Optional custom controller to use instead of `WP_REST_Terms_Controller `." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1155 -msgid "Expose this post type in the REST API." -msgstr "この投稿タイプをREST APIで公開する。" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1055 -msgid "Customize the query variable name" -msgstr "クエリ変数名をカスタマイズ" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1028 -msgid "" -"Terms can be accessed using the non-pretty permalink, e.g., {query_var}" -"={term_slug}." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:981 -msgid "Parent-child terms in URLs for hierarchical taxonomies." -msgstr "このタクソノミーが親子関係を持つかどうか。" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:941 -msgid "Customize the slug used in the URL" -msgstr "URLに使用されるスラッグをカスタマイズする" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:924 -msgid "Permalinks for this taxonomy are disabled." -msgstr "このタクソノミーのパーマリンクは無効です。" - -#. translators: this string will be appended with the new permalink structure. -#: includes/admin/views/acf-taxonomy/advanced-settings.php:921 -msgid "" -"Rewrite the URL using the taxonomy key as the slug. Your permalink structure " -"will be" -msgstr "" -"タクソノミーのキーをスラッグとして使用してURLを書き換えます。パーマリンク構造" -"は次のようになります" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:913 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1030 -#: includes/admin/views/acf-taxonomy/basic-settings.php:57 -msgid "Taxonomy Key" -msgstr "タクソノミーキー" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:911 -msgid "Select the type of permalink to use for this taxonomy." -msgstr "このタクソノミーに使用するパーマリンクのタイプを選択します。" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:896 -msgid "Display a column for the taxonomy on post type listing screens." -msgstr "投稿タイプの一覧画面にタクソノミーの項目を表示します。" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:895 -msgid "Show Admin Column" -msgstr "管理画面でカラムを表示" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:882 -msgid "Show the taxonomy in the quick/bulk edit panel." -msgstr "タクソノミーをクイック/一括編集パネルで表示" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:881 -msgid "Quick Edit" -msgstr "クイック編集" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:868 -msgid "List the taxonomy in the Tag Cloud Widget controls." -msgstr "タグクラウドウィジェットにタクソノミーを表示" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:867 -msgid "Tag Cloud" -msgstr "タグクラウド" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:824 -msgid "" -"A PHP function name to be called for sanitizing taxonomy data saved from a " -"meta box." -msgstr "" -"メタボックスから保存されたタクソノミーデータをサニタイズするために呼び出され" -"るPHP関数名。" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:823 -msgid "Meta Box Sanitization Callback" -msgstr "メタボックスのサニタイズコールバック" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:805 -msgid "" -"A PHP function name to be called to handle the content of a meta box on your " -"taxonomy." -msgstr "メタボックスの内容を処理するために呼び出されるPHPのコールバック関数名" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:804 -msgid "Register Meta Box Callback" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:763 -msgid "No Meta Box" -msgstr "メタボックスなし" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:762 -msgid "Custom Meta Box" -msgstr "カスタムメタボックス" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:758 -msgid "" -"Controls the meta box on the content editor screen. By default, the " -"Categories meta box is shown for hierarchical taxonomies, and the Tags meta " -"box is shown for non-hierarchical taxonomies." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:757 -msgid "Meta Box" -msgstr "メタボックス" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:746 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:767 -msgid "Categories Meta Box" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:745 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:766 -msgid "Tags Meta Box" -msgstr "タグメタボックス" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:704 -msgid "A link to a tag" -msgstr "タグへのリンク" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:703 -msgid "Describes a navigation link block variation used in the block editor." -msgstr "" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:698 -msgid "A link to a %s" -msgstr "%s へのリンク" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:683 -msgid "Tag Link" -msgstr "タグリンク" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:682 -msgid "" -"Assigns a title for navigation link block variation used in the block editor." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:663 -msgid "← Go to tags" -msgstr "← タグへ戻る" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:662 -msgid "" -"Assigns the text used to link back to the main index after updating a term." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:661 -msgid "Back To Items" -msgstr "項目に戻る" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:657 -msgid "← Go to %s" -msgstr "← %s へ戻る" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:642 -msgid "Tags list" -msgstr "タグ一覧" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:641 -msgid "Assigns text to the table hidden heading." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:622 -msgid "Tags list navigation" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:621 -msgid "Assigns text to the table pagination hidden heading." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:597 -msgid "Filter by category" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:596 -msgid "Assigns text to the filter button in the posts lists table." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:595 -msgid "Filter By Item" -msgstr "アイテムをフィルタリング" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:591 -msgid "Filter by %s" -msgstr "%s で絞り込む" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:575 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:576 -msgid "" -"The description is not prominent by default; however, some themes may show " -"it." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:574 -msgid "Describes the Description field on the Edit Tags screen." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:573 -msgid "Description Field Description" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:554 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:555 -msgid "" -"Assign a parent term to create a hierarchy. The term Jazz, for example, " -"would be the parent of Bebop and Big Band" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:553 -msgid "Describes the Parent field on the Edit Tags screen." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:552 -msgid "Parent Field Description" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:538 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:539 -msgid "" -"The \"slug\" is the URL-friendly version of the name. It is usually all " -"lower case and contains only letters, numbers, and hyphens." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:537 -msgid "Describes the Slug field on the Edit Tags screen." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:536 -msgid "Slug Field Description" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:522 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:523 -msgid "The name is how it appears on your site" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:521 -msgid "Describes the Name field on the Edit Tags screen." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:520 -msgid "Name Field Description" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:507 -msgid "No tags" -msgstr "タグなし" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:506 -msgid "" -"Assigns the text displayed in the posts and media list tables when no tags " -"or categories are available." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:505 -msgid "No Terms" -msgstr "項目はありません" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:501 -msgid "No %s" -msgstr "No %s" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:486 -msgid "No tags found" -msgstr "タグが見つかりませんでした" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:485 -msgid "" -"Assigns the text displayed when clicking the 'choose from most used' text in " -"the taxonomy meta box when no tags are available, and assigns the text used " -"in the terms list table when there are no items for a taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:484 -msgid "Not Found" -msgstr "見つかりません" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:463 -msgid "Assigns text to the Title field of the Most Used tab." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:462 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:464 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:465 -msgid "Most Used" -msgstr "最も使われている" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:444 -msgid "Choose from the most used tags" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:443 -msgid "" -"Assigns the 'choose from most used' text used in the meta box when " -"JavaScript is disabled. Only used on non-hierarchical taxonomies." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:442 -msgid "Choose From Most Used" -msgstr "" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:438 -msgid "Choose from the most used %s" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:418 -msgid "Add or remove tags" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:417 -msgid "" -"Assigns the add or remove items text used in the meta box when JavaScript is " -"disabled. Only used on non-hierarchical taxonomies" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:416 -msgid "Add Or Remove Items" -msgstr "" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:412 -msgid "Add or remove %s" -msgstr "%s を追加または削除する" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:392 -msgid "Separate tags with commas" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:391 -msgid "" -"Assigns the separate item with commas text used in the taxonomy meta box. " -"Only used on non-hierarchical taxonomies." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:390 -msgid "Separate Items With Commas" -msgstr "" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:386 -msgid "Separate %s with commas" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:366 -msgid "Popular Tags" -msgstr "人気のタグ" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:365 -msgid "Assigns popular items text. Only used for non-hierarchical taxonomies." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:364 -msgid "Popular Items" -msgstr "よく使う項目" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:361 -msgid "Popular %s" -msgstr "人気の %s" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:347 -msgid "Search Tags" -msgstr "タグを検索" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:346 -msgid "Assigns search items text." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:323 -msgid "Parent Category:" -msgstr "親カテゴリー:" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:322 -msgid "Assigns parent item text, but with a colon (:) added to the end." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:321 -msgid "Parent Item With Colon" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:298 -msgid "Parent Category" -msgstr "親カテゴリー" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:297 -msgid "Assigns parent item text. Only used on hierarchical taxonomies." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:296 -msgid "Parent Item" -msgstr "親項目" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:293 -msgid "Parent %s" -msgstr "親 %s" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:278 -msgid "New Tag Name" -msgstr "新規タグ名" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:277 -msgid "Assigns the new item name text." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:276 -msgid "New Item Name" -msgstr "新規項目名" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:273 -msgid "New %s Name" -msgstr "新規 %s 名" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:258 -msgid "Add New Tag" -msgstr "新規タグを追加" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:257 -msgid "Assigns the add new item text." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:238 -msgid "Update Tag" -msgstr "タグを更新" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:237 -msgid "Assigns the update item text." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:236 -msgid "Update Item" -msgstr "アイテムを更新" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:233 -msgid "Update %s" -msgstr "%s を更新" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:218 -msgid "View Tag" -msgstr "タグを表示" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:217 -msgid "In the admin bar to view term during editing." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:198 -msgid "Edit Tag" -msgstr "タグを編集" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:197 -msgid "At the top of the editor screen when editing a term." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:178 -msgid "All Tags" -msgstr "すべての タグ" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:177 -msgid "Assigns the all items text." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:158 -msgid "Assigns the menu name text." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:157 -msgid "Menu Label" -msgstr "メニューラベル" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:131 -msgid "Active taxonomies are enabled and registered with WordPress." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:115 -msgid "A descriptive summary of the taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:95 -msgid "A descriptive summary of the term." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:94 -msgid "Term Description" -msgstr "タームの説明" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:76 -msgid "Single word, no spaces. Underscores and dashes allowed." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:75 -msgid "Term Slug" -msgstr "タームスラッグ" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:56 -msgid "The name of the default term." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:55 -msgid "Term Name" -msgstr "項目名" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:41 -msgid "" -"Create a term for the taxonomy that cannot be deleted. It will not be " -"selected for posts by default." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:40 -msgid "Default Term" -msgstr "デフォルト項目" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:28 -msgid "" -"Whether terms in this taxonomy should be sorted in the order they are " -"provided to `wp_set_object_terms()`." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:27 -msgid "Sort Terms" -msgstr "キーワード並び替え" - -#: includes/admin/views/acf-post-type/list-empty.php:7 -msgid "Add Post Type" -msgstr "投稿タイプを追加する" - -#: includes/admin/views/acf-post-type/list-empty.php:6 -msgid "" -"Expand the functionality of WordPress beyond standard posts and pages with " -"custom post types." -msgstr "" - -#: includes/admin/views/acf-post-type/list-empty.php:5 -msgid "Add Your First Post Type" -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:136 -#: includes/admin/views/acf-taxonomy/basic-settings.php:135 -msgid "I know what I'm doing, show me all the options." -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:135 -#: includes/admin/views/acf-taxonomy/basic-settings.php:134 -msgid "Advanced Configuration" -msgstr "高度な設定" - -#: includes/admin/views/acf-post-type/basic-settings.php:123 -msgid "Hierarchical post types can have descendants (like pages)." -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:122 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:980 -#: includes/admin/views/acf-taxonomy/basic-settings.php:121 -msgid "Hierarchical" -msgstr "階層的" - -#: includes/admin/views/acf-post-type/basic-settings.php:107 -msgid "Visible on the frontend and in the admin dashboard." -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:106 -#: includes/admin/views/acf-taxonomy/basic-settings.php:106 -msgid "Public" -msgstr "一般公開" - -#. translators: example post type -#: includes/admin/views/acf-post-type/basic-settings.php:59 -msgid "movie" -msgstr "動画" - -#: includes/admin/views/acf-post-type/basic-settings.php:57 -msgid "Lower case letters, underscores and dashes only, Max 20 characters." -msgstr "" - -#. translators: example post type -#: includes/admin/views/acf-post-type/basic-settings.php:41 -msgid "Movie" -msgstr "映画" - -#: includes/admin/views/acf-post-type/basic-settings.php:39 -#: includes/admin/views/acf-taxonomy/basic-settings.php:40 -msgid "Singular Label" -msgstr "単数ラベル" - -#. translators: example post type -#: includes/admin/views/acf-post-type/basic-settings.php:24 -msgid "Movies" -msgstr "映画" - -#: includes/admin/views/acf-post-type/basic-settings.php:22 -#: includes/admin/views/acf-taxonomy/basic-settings.php:23 -msgid "Plural Label" -msgstr "複数ラベル" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1270 -msgid "" -"Optional custom controller to use instead of `WP_REST_Posts_Controller`." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1269 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1210 -msgid "Controller Class" -msgstr "コントローラークラス" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1251 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1191 -msgid "The namespace part of the REST API URL." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1250 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1190 -msgid "Namespace Route" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1232 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1172 -msgid "The base URL for the post type REST API URLs." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1231 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1171 -msgid "Base URL" -msgstr "ベース URL" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1217 -msgid "" -"Exposes this post type in the REST API. Required to use the block editor." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1216 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1154 -msgid "Show In REST API" -msgstr "REST API で表示" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1195 -msgid "Customize the query variable name." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1194 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1054 -msgid "Query Variable" -msgstr "クエリー可変" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1172 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1032 -msgid "No Query Variable Support" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1171 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1031 -msgid "Custom Query Variable" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1168 -msgid "" -"Items can be accessed using the non-pretty permalink, eg. {post_type}" -"={post_slug}." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1167 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1027 -msgid "Query Variable Support" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1142 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1003 -msgid "URLs for an item and items can be accessed with a query string." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1141 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1002 -msgid "Publicly Queryable" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1120 -msgid "Custom slug for the Archive URL." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1119 -msgid "Archive Slug" -msgstr "アーカイブスラッグ" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1106 -msgid "" -"Has an item archive that can be customized with an archive template file in " -"your theme." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1105 -msgid "Archive" -msgstr "アーカイブ" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1085 -msgid "Pagination support for the items URLs such as the archives." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1084 -msgid "Pagination" -msgstr "ページ送り" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1067 -msgid "RSS feed URL for the post type items." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1066 -msgid "Feed URL" -msgstr "フィード URL" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1048 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:961 -msgid "" -"Alters the permalink structure to add the `WP_Rewrite::$front` prefix to " -"URLs." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1047 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:960 -msgid "Front URL Prefix" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1028 -msgid "Customize the slug used in the URL." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1027 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:940 -msgid "URL Slug" -msgstr "URL スラッグ" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1011 -msgid "Permalinks for this post type are disabled." -msgstr "" - -#. translators: this string will be appended with the new permalink structure. -#: includes/admin/views/acf-post-type/advanced-settings.php:1010 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:923 -msgid "" -"Rewrite the URL using a custom slug defined in the input below. Your " -"permalink structure will be" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1002 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:915 -msgid "No Permalink (prevent URL rewriting)" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1001 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:914 -msgid "Custom Permalink" -msgstr "カスタムパーマリンク" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1000 -#: includes/admin/views/acf-post-type/advanced-settings.php:1170 -#: includes/admin/views/acf-post-type/basic-settings.php:56 -msgid "Post Type Key" -msgstr "投稿タイプキー" - -#. translators: this string will be appended with the new permalink structure. -#: includes/admin/views/acf-post-type/advanced-settings.php:998 -#: includes/admin/views/acf-post-type/advanced-settings.php:1008 -msgid "" -"Rewrite the URL using the post type key as the slug. Your permalink " -"structure will be" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:996 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:910 -msgid "Permalink Rewrite" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:982 -msgid "Delete items by a user when that user is deleted." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:981 -msgid "Delete With User" -msgstr "ユーザーと一緒に削除" - -#: includes/admin/views/acf-post-type/advanced-settings.php:967 -msgid "Allow the post type to be exported from 'Tools' > 'Export'." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:966 -msgid "Can Export" -msgstr "エクスポート可能" - -#: includes/admin/views/acf-post-type/advanced-settings.php:935 -msgid "Optionally provide a plural to be used in capabilities." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:934 -msgid "Plural Capability Name" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:916 -msgid "Choose another post type to base the capabilities for this post type." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:915 -msgid "Singular Capability Name" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:901 -msgid "" -"By default the capabilities of the post type will inherit the 'Post' " -"capability names, eg. edit_post, delete_posts. Enable to use post type " -"specific capabilities, eg. edit_{singular}, delete_{plural}." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:900 -msgid "Rename Capabilities" -msgstr "リネーム機能" - -#: includes/admin/views/acf-post-type/advanced-settings.php:885 -msgid "Exclude From Search" -msgstr "検索から除外する" - -#: includes/admin/views/acf-post-type/advanced-settings.php:872 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:854 -msgid "" -"Allow items to be added to menus in the 'Appearance' > 'Menus' screen. Must " -"be turned on in 'Screen options'." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:871 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:853 -msgid "Appearance Menus Support" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:853 -msgid "Appears as an item in the 'New' menu in the admin bar." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:852 -msgid "Show In Admin Bar" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:821 -msgid "" -"A PHP function name to be called when setting up the meta boxes for the edit " -"screen." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:820 -msgid "Custom Meta Box Callback" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:800 -msgid "Menu Icon" -msgstr "メニュー アイコン" - -#: includes/admin/views/acf-post-type/advanced-settings.php:782 -msgid "The position in the sidebar menu in the admin dashboard." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:781 -msgid "Menu Position" -msgstr "メニューの位置" - -#: includes/admin/views/acf-post-type/advanced-settings.php:763 -msgid "" -"By default the post type will get a new top level item in the admin menu. If " -"an existing top level item is supplied here, the post type will be added as " -"a submenu item under it." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:762 -msgid "Admin Menu Parent" -msgstr "" - -#. translators: %s = "dashicon class name", link to the WordPress dashicon -#. documentation. -#: includes/admin/views/acf-post-type/advanced-settings.php:750 -msgid "" -"The icon used for the post type menu item in the admin dashboard. Can be a " -"URL or %s to use for the icon." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:745 -msgid "Dashicon class name" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:734 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:734 -msgid "Admin editor navigation in the sidebar menu." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:733 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:733 -msgid "Show In Admin Menu" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:720 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:719 -msgid "Items can be edited and managed in the admin dashboard." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:719 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:718 -msgid "Show In UI" -msgstr "UI に表示" - -#: includes/admin/views/acf-post-type/advanced-settings.php:689 -msgid "A link to a post." -msgstr "投稿へのリンク。" - -#: includes/admin/views/acf-post-type/advanced-settings.php:688 -msgid "Description for a navigation link block variation." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:687 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:702 -msgid "Item Link Description" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:683 -msgid "A link to a %s." -msgstr "%s へのリンク。" - -#: includes/admin/views/acf-post-type/advanced-settings.php:668 -msgid "Post Link" -msgstr "投稿リンク" - -#: includes/admin/views/acf-post-type/advanced-settings.php:667 -msgid "Title for a navigation link block variation." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:666 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:681 -msgid "Item Link" -msgstr "項目のリンク" - -#. translators: %s Singular form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:663 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:678 -msgid "%s Link" -msgstr "%s リンク" - -#: includes/admin/views/acf-post-type/advanced-settings.php:648 -msgid "Post updated." -msgstr "投稿を更新しました。" - -#: includes/admin/views/acf-post-type/advanced-settings.php:647 -msgid "In the editor notice after an item is updated." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:646 -msgid "Item Updated" -msgstr "項目を更新しました" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:643 -msgid "%s updated." -msgstr "%s を更新しました。" - -#: includes/admin/views/acf-post-type/advanced-settings.php:628 -msgid "Post scheduled." -msgstr "投稿を予約しました." - -#: includes/admin/views/acf-post-type/advanced-settings.php:627 -msgid "In the editor notice after scheduling an item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:626 -msgid "Item Scheduled" -msgstr "公開予約済み項目" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:623 -msgid "%s scheduled." -msgstr "%s を予約しました。" - -#: includes/admin/views/acf-post-type/advanced-settings.php:608 -msgid "Post reverted to draft." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:607 -msgid "In the editor notice after reverting an item to draft." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:606 -msgid "Item Reverted To Draft" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:603 -msgid "%s reverted to draft." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:588 -msgid "Post published privately." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:587 -msgid "In the editor notice after publishing a private item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:586 -msgid "Item Published Privately" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:583 -msgid "%s published privately." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:568 -msgid "Post published." -msgstr "投稿を公開しました." - -#: includes/admin/views/acf-post-type/advanced-settings.php:567 -msgid "In the editor notice after publishing an item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:566 -msgid "Item Published" -msgstr "公開済み項目" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:563 -msgid "%s published." -msgstr "%s を公開しました。" - -#: includes/admin/views/acf-post-type/advanced-settings.php:548 -msgid "Posts list" -msgstr "投稿リスト" - -#: includes/admin/views/acf-post-type/advanced-settings.php:547 -msgid "Used by screen readers for the items list on the post type list screen." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:546 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:640 -msgid "Items List" -msgstr "項目リスト" - -#. translators: %s Plural form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:543 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:637 -msgid "%s list" -msgstr "%s リスト" - -#: includes/admin/views/acf-post-type/advanced-settings.php:528 -msgid "Posts list navigation" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:527 -msgid "" -"Used by screen readers for the filter list pagination on the post type list " -"screen." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:526 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:620 -msgid "Items List Navigation" -msgstr "" - -#. translators: %s Plural form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:523 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:617 -msgid "%s list navigation" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:507 -msgid "Filter posts by date" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:506 -msgid "" -"Used by screen readers for the filter by date heading on the post type list " -"screen." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:505 -msgid "Filter Items By Date" -msgstr "" - -#. translators: %s Plural form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:501 -msgid "Filter %s by date" -msgstr "%s 日時で絞り込み" - -#: includes/admin/views/acf-post-type/advanced-settings.php:486 -msgid "Filter posts list" -msgstr "投稿リストの絞り込み" - -#: includes/admin/views/acf-post-type/advanced-settings.php:485 -msgid "" -"Used by screen readers for the filter links heading on the post type list " -"screen." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:484 -msgid "Filter Items List" -msgstr "項目一覧の絞り込み" - -#. translators: %s Plural form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:480 -msgid "Filter %s list" -msgstr "%s リストを絞り込み" - -#: includes/admin/views/acf-post-type/advanced-settings.php:464 -msgid "In the media modal showing all media uploaded to this item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:463 -msgid "Uploaded To This Item" -msgstr "この項目にアップロード" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:459 -msgid "Uploaded to this %s" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:444 -msgid "Insert into post" -msgstr "投稿に挿入" - -#: includes/admin/views/acf-post-type/advanced-settings.php:443 -msgid "As the button label when adding media to content." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:442 -msgid "Insert Into Media Button" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:438 -msgid "Insert into %s" -msgstr "%s に挿入" - -#: includes/admin/views/acf-post-type/advanced-settings.php:423 -msgid "Use as featured image" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:422 -msgid "" -"As the button label for selecting to use an image as the featured image." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:421 -msgid "Use Featured Image" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:408 -msgid "Remove featured image" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:407 -msgid "As the button label when removing the featured image." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:406 -msgid "Remove Featured Image" -msgstr "アイキャッチ画像を削除" - -#: includes/admin/views/acf-post-type/advanced-settings.php:393 -msgid "Set featured image" -msgstr "アイキャッチ画像を設定" - -#: includes/admin/views/acf-post-type/advanced-settings.php:392 -msgid "As the button label when setting the featured image." -msgstr "アイキャッチ画像を設定する際のボタンラベルとして" - -#: includes/admin/views/acf-post-type/advanced-settings.php:391 -msgid "Set Featured Image" -msgstr "アイキャッチ画像を設定" - -#: includes/admin/views/acf-post-type/advanced-settings.php:378 -msgid "Featured image" -msgstr "アイキャッチ画像" - -#: includes/admin/views/acf-post-type/advanced-settings.php:377 -msgid "In the editor used for the title of the featured image meta box." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:376 -msgid "Featured Image Meta Box" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:363 -msgid "Post Attributes" -msgstr "投稿の属性" - -#: includes/admin/views/acf-post-type/advanced-settings.php:362 -msgid "In the editor used for the title of the post attributes meta box." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:361 -msgid "Attributes Meta Box" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:358 -msgid "%s Attributes" -msgstr "%s の属性" - -#: includes/admin/views/acf-post-type/advanced-settings.php:343 -msgid "Post Archives" -msgstr "投稿アーカイブ" - -#: includes/admin/views/acf-post-type/advanced-settings.php:342 -msgid "" -"Adds 'Post Type Archive' items with this label to the list of posts shown " -"when adding items to an existing menu in a CPT with archives enabled. Only " -"appears when editing menus in 'Live Preview' mode and a custom archive slug " -"has been provided." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:341 -msgid "Archives Nav Menu" -msgstr "ナビメニューをアーカイブする" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:338 -msgid "%s Archives" -msgstr "%s アーカイブ" - -#: includes/admin/views/acf-post-type/advanced-settings.php:323 -msgid "No posts found in Trash" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:322 -msgid "" -"At the top of the post type list screen when there are no posts in the trash." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:321 -msgid "No Items Found in Trash" -msgstr "" - -#. translators: %s Plural form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:317 -msgid "No %s found in Trash" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:302 -msgid "No posts found" -msgstr "投稿が見つかりません" - -#: includes/admin/views/acf-post-type/advanced-settings.php:301 -msgid "" -"At the top of the post type list screen when there are no posts to display." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:300 -msgid "No Items Found" -msgstr "項目が見つかりませんでした" - -#. translators: %s Plural form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:296 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:480 -msgid "No %s found" -msgstr "%s が見つかりませんでした。" - -#: includes/admin/views/acf-post-type/advanced-settings.php:281 -msgid "Search Posts" -msgstr "投稿を検索" - -#: includes/admin/views/acf-post-type/advanced-settings.php:280 -msgid "At the top of the items screen when searching for an item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:279 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:345 -msgid "Search Items" -msgstr "項目を検索" - -#. translators: %s Singular form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:276 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:342 -msgid "Search %s" -msgstr "%s を検索" - -#: includes/admin/views/acf-post-type/advanced-settings.php:261 -msgid "Parent Page:" -msgstr "親ページ:" - -#: includes/admin/views/acf-post-type/advanced-settings.php:260 -msgid "For hierarchical types in the post type list screen." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:259 -msgid "Parent Item Prefix" -msgstr "" - -#. translators: %s Singular form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:256 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:318 -msgid "Parent %s:" -msgstr "親の%s:" - -#: includes/admin/views/acf-post-type/advanced-settings.php:241 -msgid "New Post" -msgstr "新規投稿" - -#: includes/admin/views/acf-post-type/advanced-settings.php:239 -msgid "New Item" -msgstr "新規項目" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:236 -msgid "New %s" -msgstr "新規 %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:206 -msgid "Add New Post" -msgstr "新規投稿を追加" - -#: includes/admin/views/acf-post-type/advanced-settings.php:205 -msgid "At the top of the editor screen when adding a new item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:204 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:256 -msgid "Add New Item" -msgstr "新規項目を追加" - -#. translators: %s Singular form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:201 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:253 -msgid "Add New %s" -msgstr "新規%sを追加" - -#: includes/admin/views/acf-post-type/advanced-settings.php:186 -msgid "View Posts" -msgstr "投稿一覧を表示" - -#: includes/admin/views/acf-post-type/advanced-settings.php:185 -msgid "" -"Appears in the admin bar in the 'All Posts' view, provided the post type " -"supports archives and the home page is not an archive of that post type." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:184 -msgid "View Items" -msgstr "アイテムを表示" - -#: includes/admin/views/acf-post-type/advanced-settings.php:166 -msgid "View Post" -msgstr "投稿を表示" - -#: includes/admin/views/acf-post-type/advanced-settings.php:165 -msgid "In the admin bar to view item when editing it." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:164 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:216 -msgid "View Item" -msgstr "項目を表示" - -#. translators: %s Singular form of post type name -#. translators: %s Plural form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:161 -#: includes/admin/views/acf-post-type/advanced-settings.php:181 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:213 -msgid "View %s" -msgstr "%s を表示" - -#: includes/admin/views/acf-post-type/advanced-settings.php:146 -msgid "Edit Post" -msgstr "投稿の編集" - -#: includes/admin/views/acf-post-type/advanced-settings.php:145 -msgid "At the top of the editor screen when editing an item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:144 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:196 -msgid "Edit Item" -msgstr "項目を編集" - -#. translators: %s Singular form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:141 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:193 -msgid "Edit %s" -msgstr "%s を編集" - -#: includes/admin/views/acf-post-type/advanced-settings.php:126 -msgid "All Posts" -msgstr "投稿一覧" - -#: includes/admin/views/acf-post-type/advanced-settings.php:125 -#: includes/admin/views/acf-post-type/advanced-settings.php:220 -#: includes/admin/views/acf-post-type/advanced-settings.php:240 -msgid "In the post type submenu in the admin dashboard." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:124 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:176 -msgid "All Items" -msgstr "すべての項目" - -#. translators: %s Plural form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:121 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:173 -msgid "All %s" -msgstr "%s 一覧" - -#: includes/admin/views/acf-post-type/advanced-settings.php:105 -msgid "Admin menu name for the post type." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:104 -msgid "Menu Name" -msgstr "メニュー名" - -#: includes/admin/views/acf-post-type/advanced-settings.php:90 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:142 -msgid "Regenerate all labels using the Singular and Plural labels" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:88 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:140 -msgid "Regenerate" -msgstr "再生成" - -#: includes/admin/views/acf-post-type/advanced-settings.php:79 -msgid "Active post types are enabled and registered with WordPress." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:63 -msgid "A descriptive summary of the post type." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:48 -msgid "Add Custom" -msgstr "カスタムの追加" - -#: includes/admin/views/acf-post-type/advanced-settings.php:42 -msgid "Enable various features in the content editor." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:31 -msgid "Post Formats" -msgstr "投稿フォーマット" - -#: includes/admin/views/acf-post-type/advanced-settings.php:25 -msgid "Editor" -msgstr "エディター" - -#: includes/admin/views/acf-post-type/advanced-settings.php:24 -msgid "Trackbacks" -msgstr "トラックバック" - -#: includes/admin/views/acf-post-type/basic-settings.php:87 -msgid "Select existing taxonomies to classify items of the post type." -msgstr "" - -#: includes/admin/views/acf-field-group/field.php:145 -msgid "Browse Fields" -msgstr "フィールドを見る" - -#: includes/admin/tools/class-acf-admin-tool-import.php:292 -msgid "Nothing to import" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:287 -msgid ". The Custom Post Type UI plugin can be deactivated." -msgstr "" - -#. translators: %d - number of items imported from CPTUI -#: includes/admin/tools/class-acf-admin-tool-import.php:278 -msgid "Imported %d item from Custom Post Type UI -" -msgid_plural "Imported %d items from Custom Post Type UI -" -msgstr[0] "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:262 -msgid "Failed to import taxonomies." -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:244 -msgid "Failed to import post types." -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:233 -msgid "Nothing from Custom Post Type UI plugin selected for import." -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:209 -msgid "Imported 1 item" -msgid_plural "Imported %s items" -msgstr[0] "インポートした %s 項目" - -#: includes/admin/tools/class-acf-admin-tool-import.php:122 -msgid "" -"Importing a Post Type or Taxonomy with the same key as one that already " -"exists will overwrite the settings for the existing Post Type or Taxonomy " -"with those of the import." -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:111 -#: includes/admin/tools/class-acf-admin-tool-import.php:127 -msgid "Import from Custom Post Type UI" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:412 -msgid "" -"The following code can be used to register a local version of the selected " -"items. Storing field groups, post types, or taxonomies locally can provide " -"many benefits such as faster load times, version control & dynamic fields/" -"settings. Simply copy and paste the following code to your theme's functions." -"php file or include it within an external file, then deactivate or delete " -"the items from the ACF admin." -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:411 -msgid "Export - Generate PHP" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:384 -msgid "Export" -msgstr "エクスポート" - -#: includes/admin/tools/class-acf-admin-tool-export.php:276 -msgid "Select Taxonomies" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:254 -msgid "Select Post Types" -msgstr "投稿タイプを選択" - -#: includes/admin/tools/class-acf-admin-tool-export.php:167 -msgid "Exported 1 item." -msgid_plural "Exported %s items." -msgstr[0] "" - -#: includes/admin/post-types/admin-taxonomy.php:129 -#: assets/build/js/acf-internal-post-type.js:182 -#: assets/build/js/acf-internal-post-type.js:256 -msgid "Category" -msgstr "カテゴリー" - -#: includes/admin/post-types/admin-taxonomy.php:127 -#: assets/build/js/acf-internal-post-type.js:179 -#: assets/build/js/acf-internal-post-type.js:253 -msgid "Tag" -msgstr "タグ" - -#. translators: %s taxonomy name -#: includes/admin/post-types/admin-taxonomy.php:82 -msgid "%s taxonomy created" -msgstr "" - -#. translators: %s taxonomy name -#: includes/admin/post-types/admin-taxonomy.php:76 -msgid "%s taxonomy updated" -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:56 -msgid "Taxonomy draft updated." -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:55 -msgid "Taxonomy scheduled for." -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:54 -msgid "Taxonomy submitted." -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:53 -msgid "Taxonomy saved." -msgstr "タクソノミーを保存する。" - -#: includes/admin/post-types/admin-taxonomy.php:49 -msgid "Taxonomy deleted." -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:48 -msgid "Taxonomy updated." -msgstr "" - -#: includes/admin/post-types/admin-taxonomies.php:377 -#: includes/admin/post-types/admin-taxonomy.php:157 -msgid "" -"This taxonomy could not be registered because its key is in use by another " -"taxonomy registered by another plugin or theme." -msgstr "" - -#. translators: %s number of taxonomies synchronized -#: includes/admin/post-types/admin-taxonomies.php:359 -msgid "Taxonomy synchronized." -msgid_plural "%s taxonomies synchronized." -msgstr[0] "" - -#. translators: %s number of taxonomies duplicated -#: includes/admin/post-types/admin-taxonomies.php:352 -msgid "Taxonomy duplicated." -msgid_plural "%s taxonomies duplicated." -msgstr[0] "" - -#. translators: %s number of taxonomies deactivated -#: includes/admin/post-types/admin-taxonomies.php:345 -msgid "Taxonomy deactivated." -msgid_plural "%s taxonomies deactivated." -msgstr[0] "" - -#. translators: %s number of taxonomies activated -#: includes/admin/post-types/admin-taxonomies.php:338 -msgid "Taxonomy activated." -msgid_plural "%s taxonomies activated." -msgstr[0] "" - -#: includes/admin/post-types/admin-taxonomies.php:139 -msgid "Terms" -msgstr "規約" - -#. translators: %s number of post types synchronized -#: includes/admin/post-types/admin-post-types.php:352 -msgid "Post type synchronized." -msgid_plural "%s post types synchronized." -msgstr[0] "投稿タイプ %s が同期されました。" - -#. translators: %s number of post types duplicated -#: includes/admin/post-types/admin-post-types.php:345 -msgid "Post type duplicated." -msgid_plural "%s post types duplicated." -msgstr[0] "投稿タイプ %s が複製されました。" - -#. translators: %s number of post types deactivated -#: includes/admin/post-types/admin-post-types.php:338 -msgid "Post type deactivated." -msgid_plural "%s post types deactivated." -msgstr[0] "投稿タイプ %s が無効化されました。" - -#. translators: %s number of post types activated -#: includes/admin/post-types/admin-post-types.php:331 -msgid "Post type activated." -msgid_plural "%s post types activated." -msgstr[0] "投稿タイプ %s が有効化されました。" - -#: includes/admin/post-types/admin-post-types.php:112 -#: includes/admin/post-types/admin-taxonomies.php:137 -#: includes/admin/tools/class-acf-admin-tool-import.php:82 -#: includes/admin/views/acf-taxonomy/basic-settings.php:82 -#: includes/post-types/class-acf-post-type.php:91 -msgid "Post Types" -msgstr "投稿タイプ" - -#: includes/admin/post-types/admin-post-type.php:162 -#: includes/admin/post-types/admin-taxonomy.php:164 -msgid "Advanced Settings" -msgstr "高度な設定" - -#: includes/admin/post-types/admin-post-type.php:161 -#: includes/admin/post-types/admin-taxonomy.php:163 -msgid "Basic Settings" -msgstr "基本設定" - -#: includes/admin/post-types/admin-post-type.php:155 -#: includes/admin/post-types/admin-post-types.php:370 -msgid "" -"This post type could not be registered because its key is in use by another " -"post type registered by another plugin or theme." -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:128 -#: assets/build/js/acf-internal-post-type.js:176 -#: assets/build/js/acf-internal-post-type.js:250 -msgid "Pages" -msgstr "固定ページ" - -#: includes/admin/admin-internal-post-type.php:355 -msgid "Link Existing Field Groups" -msgstr "" - -#. translators: %s post type name -#: includes/admin/post-types/admin-post-type.php:80 -msgid "%s post type created" -msgstr "" - -#. translators: %s taxonomy name -#: includes/admin/post-types/admin-taxonomy.php:78 -msgid "Add fields to %s" -msgstr "" - -#. translators: %s post type name -#: includes/admin/post-types/admin-post-type.php:76 -msgid "%s post type updated" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:56 -msgid "Post type draft updated." -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:55 -msgid "Post type scheduled for." -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:54 -msgid "Post type submitted." -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:53 -msgid "Post type saved." -msgstr "投稿タイプを保存しました。" - -#: includes/admin/post-types/admin-post-type.php:50 -msgid "Post type updated." -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:49 -msgid "Post type deleted." -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:120 -#: assets/build/js/acf-field-group.js:1146 -#: assets/build/js/acf-field-group.js:1366 -msgid "Type to search..." -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:105 -#: assets/build/js/acf-field-group.js:1172 -#: assets/build/js/acf-field-group.js:2319 -#: assets/build/js/acf-field-group.js:1414 -#: assets/build/js/acf-field-group.js:2727 -msgid "PRO Only" -msgstr "PRO 限定" - -#: includes/admin/post-types/admin-field-group.php:97 -#: assets/build/js/acf-internal-post-type.js:308 -#: assets/build/js/acf-internal-post-type.js:417 -msgid "Field groups linked successfully." -msgstr "" - -#. translators: %s - URL to ACF tools page. -#: includes/admin/admin.php:195 -msgid "" -"Import Post Types and Taxonomies registered with Custom Post Type UI and " -"manage them with ACF. Get Started." -msgstr "" - -#: includes/admin/admin.php:48 includes/admin/admin.php:267 -msgid "ACF" -msgstr "ACF" - -#: includes/admin/admin-internal-post-type.php:322 -msgid "taxonomy" -msgstr "タクソノミー" - -#: includes/admin/admin-internal-post-type.php:322 -msgid "post type" -msgstr "投稿タイプ" - -#: includes/admin/admin-internal-post-type.php:346 -msgid "Done" -msgstr "完了" - -#: includes/admin/admin-internal-post-type.php:332 -msgid "Field Group(s)" -msgstr "フィールドグループ" - -#: includes/admin/admin-internal-post-type.php:331 -msgid "Select one or many field groups..." -msgstr "" - -#: includes/admin/admin-internal-post-type.php:330 -msgid "Please select the field groups to link." -msgstr "" - -#: includes/admin/admin-internal-post-type.php:288 -msgid "Field group linked successfully." -msgid_plural "Field groups linked successfully." -msgstr[0] "" - -#: includes/admin/admin-internal-post-type-list.php:261 -#: includes/admin/post-types/admin-post-types.php:371 -#: includes/admin/post-types/admin-taxonomies.php:378 -msgctxt "post status" -msgid "Registration Failed" -msgstr "" - -#: includes/admin/admin-internal-post-type-list.php:260 -msgid "" -"This item could not be registered because its key is in use by another item " -"registered by another plugin or theme." -msgstr "" - -#: includes/acf-internal-post-type-functions.php:482 -#: includes/acf-internal-post-type-functions.php:511 -msgid "REST API" -msgstr "REST API" - -#: includes/acf-internal-post-type-functions.php:481 -#: includes/acf-internal-post-type-functions.php:510 -#: includes/acf-internal-post-type-functions.php:537 -msgid "Permissions" -msgstr "パーミッション" - -#: includes/acf-internal-post-type-functions.php:480 -#: includes/acf-internal-post-type-functions.php:509 -msgid "URLs" -msgstr "URL" - -#: includes/acf-internal-post-type-functions.php:479 -#: includes/acf-internal-post-type-functions.php:508 -#: includes/acf-internal-post-type-functions.php:535 -msgid "Visibility" -msgstr "可視性" - -#: includes/acf-internal-post-type-functions.php:478 -#: includes/acf-internal-post-type-functions.php:507 -#: includes/acf-internal-post-type-functions.php:536 -msgid "Labels" -msgstr "ラベル" - -#: includes/admin/post-types/admin-field-group.php:269 -msgid "Field Settings Tabs" -msgstr "" - -#. Author URI of the plugin -msgid "" -"https://wpengine.com/?utm_source=wordpress." -"org&utm_medium=referral&utm_campaign=plugin_directory&utm_content=advanced_custom_fields" -msgstr "" - -#: includes/api/api-template.php:867 -msgid "[ACF shortcode value disabled for preview]" -msgstr "" - -#: includes/admin/admin-internal-post-type.php:298 -#: includes/admin/post-types/admin-field-group.php:571 -msgid "Close Modal" -msgstr "モーダルを閉じる" - -#: includes/admin/post-types/admin-field-group.php:96 -#: assets/build/js/acf-field-group.js:1670 -#: assets/build/js/acf-field-group.js:1993 -msgid "Field moved to other group" -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:95 -#: assets/build/js/acf.js:1437 assets/build/js/acf.js:1517 -msgid "Close modal" -msgstr "モーダルを閉じる" - -#: includes/fields/class-acf-field-tab.php:125 -msgid "Start a new group of tabs at this tab." -msgstr "" - -#: includes/fields/class-acf-field-tab.php:124 -msgid "New Tab Group" -msgstr "新規タブグループ" - -#: includes/fields/class-acf-field-select.php:451 -#: includes/fields/class-acf-field-true_false.php:200 -msgid "Use a stylized checkbox using select2" -msgstr "" - -#: includes/fields/class-acf-field-radio.php:260 -msgid "Save Other Choice" -msgstr "" - -#: includes/fields/class-acf-field-radio.php:249 -msgid "Allow Other Choice" -msgstr "" - -#: includes/fields/class-acf-field-checkbox.php:450 -msgid "Add Toggle All" -msgstr "すべてのトグルを追加" - -#: includes/fields/class-acf-field-checkbox.php:409 -msgid "Save Custom Values" -msgstr "" - -#: includes/fields/class-acf-field-checkbox.php:398 -msgid "Allow Custom Values" -msgstr "" - -#: includes/fields/class-acf-field-checkbox.php:148 -msgid "Checkbox custom values cannot be empty. Uncheck any empty values." -msgstr "" - -#: includes/admin/views/global/navigation.php:248 -msgid "Updates" -msgstr "更新" - -#: includes/admin/views/global/navigation.php:176 -msgid "Advanced Custom Fields logo" -msgstr "Advanced Custom Fields ロゴ" - -#: includes/admin/views/global/form-top.php:89 -msgid "Save Changes" -msgstr "変更内容を保存" - -#: includes/admin/views/global/form-top.php:76 -msgid "Field Group Title" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:704 -#: includes/admin/views/global/form-top.php:3 -msgid "Add title" -msgstr "タイトルを追加" - -#. translators: %s url to getting started guide -#: includes/admin/views/acf-field-group/list-empty.php:20 -#: includes/admin/views/acf-post-type/list-empty.php:12 -#: includes/admin/views/acf-taxonomy/list-empty.php:12 -#: includes/admin/views/options-page-preview.php:13 -msgid "" -"New to ACF? Take a look at our getting " -"started guide." -msgstr "" - -#: includes/admin/views/acf-field-group/list-empty.php:15 -msgid "Add Field Group" -msgstr "フィールドグループを追加する" - -#. translators: %s url to creating a field group page -#: includes/admin/views/acf-field-group/list-empty.php:10 -msgid "" -"ACF uses field groups to group custom " -"fields together, and then attach those fields to edit screens." -msgstr "" - -#: includes/admin/views/acf-field-group/list-empty.php:5 -msgid "Add Your First Field Group" -msgstr "" - -#: includes/admin/admin-options-pages-preview.php:28 -#: includes/admin/views/acf-field-group/pro-features.php:54 -#: includes/admin/views/global/navigation.php:86 -#: includes/admin/views/global/navigation.php:250 -msgid "Options Pages" -msgstr "設定ページ" - -#: includes/admin/views/acf-field-group/pro-features.php:50 -msgid "ACF Blocks" -msgstr "ACF Blocks" - -#: includes/admin/views/acf-field-group/pro-features.php:58 -msgid "Gallery Field" -msgstr "ギャラリーフィールド" - -#: includes/admin/views/acf-field-group/pro-features.php:38 -msgid "Flexible Content Field" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:42 -msgid "Repeater Field" -msgstr "リピーターフィールド" - -#: includes/admin/views/global/navigation.php:212 -msgid "Unlock Extra Features with ACF PRO" -msgstr "" - -#: includes/admin/views/acf-field-group/options.php:267 -msgid "Delete Field Group" -msgstr "" - -#. translators: 1: Post creation date 2: Post creation time -#: includes/admin/views/acf-field-group/options.php:261 -msgid "Created on %1$s at %2$s" -msgstr "" - -#: includes/acf-field-group-functions.php:497 -msgid "Group Settings" -msgstr "グループ設定" - -#: includes/acf-field-group-functions.php:495 -msgid "Location Rules" -msgstr "ロケーションルール" - -#. translators: %s url to field types list -#: includes/admin/views/acf-field-group/fields.php:72 -msgid "" -"Choose from over 30 field types. Learn " -"more." -msgstr "" - -#: includes/admin/views/acf-field-group/fields.php:65 -msgid "" -"Get started creating new custom fields for your posts, pages, custom post " -"types and other WordPress content." -msgstr "" - -#: includes/admin/views/acf-field-group/fields.php:64 -msgid "Add Your First Field" -msgstr "最初のフィールドを追加" - -#. translators: A symbol (or text, if not available in your locale) meaning -#. "Order Number", in terms of positional placement. -#: includes/admin/views/acf-field-group/fields.php:43 -msgid "#" -msgstr "No." - -#: includes/admin/views/acf-field-group/fields.php:33 -#: includes/admin/views/acf-field-group/fields.php:67 -#: includes/admin/views/acf-field-group/fields.php:103 -#: includes/admin/views/global/form-top.php:85 -msgid "Add Field" -msgstr "フィールドを追加" - -#: includes/acf-field-group-functions.php:496 includes/fields.php:410 -msgid "Presentation" -msgstr "プレゼンテーション" - -#: includes/fields.php:409 -msgid "Validation" -msgstr "検証" - -#: includes/acf-internal-post-type-functions.php:477 -#: includes/acf-internal-post-type-functions.php:506 includes/fields.php:408 -msgid "General" -msgstr "全般" - -#: includes/admin/tools/class-acf-admin-tool-import.php:70 -msgid "Import JSON" -msgstr "JSON をインポート" - -#: includes/admin/tools/class-acf-admin-tool-export.php:392 -msgid "Export As JSON" -msgstr "JSON をエクスポート" - -#. translators: %s number of field groups deactivated -#: includes/admin/post-types/admin-field-groups.php:367 -msgid "Field group deactivated." -msgid_plural "%s field groups deactivated." -msgstr[0] "" - -#. translators: %s number of field groups activated -#: includes/admin/post-types/admin-field-groups.php:360 -msgid "Field group activated." -msgid_plural "%s field groups activated." -msgstr[0] "" - -#: includes/admin/admin-internal-post-type-list.php:452 -#: includes/admin/admin-internal-post-type-list.php:478 -msgid "Deactivate" -msgstr "無効化" - -#: includes/admin/admin-internal-post-type-list.php:452 -msgid "Deactivate this item" -msgstr "この項目を無効化する" - -#: includes/admin/admin-internal-post-type-list.php:448 -#: includes/admin/admin-internal-post-type-list.php:477 -msgid "Activate" -msgstr "有効化" - -#: includes/admin/admin-internal-post-type-list.php:448 -msgid "Activate this item" -msgstr "この項目を有効化する" - -#: includes/admin/post-types/admin-field-group.php:92 -#: assets/build/js/acf-field-group.js:2812 -#: assets/build/js/acf-field-group.js:3313 -msgid "Move field group to trash?" -msgstr "" - -#: acf.php:497 includes/admin/admin-internal-post-type-list.php:248 -#: includes/admin/post-types/admin-field-group.php:297 -#: includes/admin/post-types/admin-post-type.php:295 -#: includes/admin/post-types/admin-taxonomy.php:297 -msgctxt "post status" -msgid "Inactive" -msgstr "無効" - -#. Author of the plugin -msgid "WP Engine" -msgstr "WP Engine" - -#: acf.php:555 -msgid "" -"Advanced Custom Fields and Advanced Custom Fields PRO should not be active " -"at the same time. We've automatically deactivated Advanced Custom Fields PRO." -msgstr "" -"Advanced Custom Fields と Advanced Custom Fields PRO を同時に有効化しないでく" -"ださい。\n" -"Advanced Custom Fields PROを自動的に無効化しました。" - -#: acf.php:553 -msgid "" -"Advanced Custom Fields and Advanced Custom Fields PRO should not be active " -"at the same time. We've automatically deactivated Advanced Custom Fields." -msgstr "" -"Advanced Custom Fields と Advanced Custom Fields PRO を同時に有効化しないでく" -"ださい。\n" -"Advanced Custom Fields を自動的に無効化しました。" - -#: includes/acf-value-functions.php:374 -msgid "" -"%1$s - We've detected one or more calls to retrieve ACF " -"field values before ACF has been initialized. This is not supported and can " -"result in malformed or missing data. Learn how to fix this." -msgstr "" - -#: includes/fields/class-acf-field-user.php:551 -msgid "%1$s must have a user with the %2$s role." -msgid_plural "%1$s must have a user with one of the following roles: %2$s" -msgstr[0] "" - -#: includes/fields/class-acf-field-user.php:542 -msgid "%1$s must have a valid user ID." -msgstr "%1$s は有効なユーザー ID である必要があります。" - -#: includes/fields/class-acf-field-user.php:380 -msgid "Invalid request." -msgstr "無効なリクエストです。" - -#: includes/fields/class-acf-field-select.php:684 -msgid "%1$s is not one of %2$s" -msgstr "%1$s は %2$s に当てはまりません" - -#: includes/fields/class-acf-field-post_object.php:700 -msgid "%1$s must have term %2$s." -msgid_plural "%1$s must have one of the following terms: %2$s" -msgstr[0] "%1$s はターム %2$s である必要があります。" - -#: includes/fields/class-acf-field-post_object.php:684 -msgid "%1$s must be of post type %2$s." -msgid_plural "%1$s must be of one of the following post types: %2$s" -msgstr[0] "%1$s は投稿タイプ %2$s である必要があります。" - -#: includes/fields/class-acf-field-post_object.php:675 -msgid "%1$s must have a valid post ID." -msgstr "%1$s は有効な投稿 ID である必要があります。" - -#: includes/fields/class-acf-field-file.php:475 -msgid "%s requires a valid attachment ID." -msgstr "%s には有効な添付ファイル ID が必要です。" - -#: includes/admin/views/acf-field-group/options.php:233 -msgid "Show in REST API" -msgstr "REST API で表示" - -#: includes/fields/class-acf-field-color_picker.php:168 -msgid "Enable Transparency" -msgstr "透明度の有効化" - -#: includes/fields/class-acf-field-color_picker.php:187 -msgid "RGBA Array" -msgstr "RGBA 配列" - -#: includes/fields/class-acf-field-color_picker.php:98 -msgid "RGBA String" -msgstr "RGBA 文字列" - -#: includes/fields/class-acf-field-color_picker.php:97 -#: includes/fields/class-acf-field-color_picker.php:186 -msgid "Hex String" -msgstr "16進値文字列" - -#: includes/admin/views/browse-fields-modal.php:65 -msgid "Upgrade to PRO" -msgstr "プロ版にアップグレード" - -#: includes/admin/post-types/admin-field-group.php:297 -#: includes/admin/post-types/admin-post-type.php:295 -#: includes/admin/post-types/admin-taxonomy.php:297 -msgctxt "post status" -msgid "Active" -msgstr "有効" - -#: includes/fields/class-acf-field-email.php:181 -msgid "'%s' is not a valid email address" -msgstr "'%s' は有効なメールアドレスではありません" - -#: includes/fields/class-acf-field-color_picker.php:76 -msgid "Color value" -msgstr "明度" - -#: includes/fields/class-acf-field-color_picker.php:74 -msgid "Select default color" -msgstr "デフォルトの色を選択" - -#: includes/fields/class-acf-field-color_picker.php:72 -msgid "Clear color" -msgstr "色をクリア" - -#: includes/acf-wp-functions.php:90 -msgid "Blocks" -msgstr "ブロック" - -#: includes/acf-wp-functions.php:86 -msgid "Options" -msgstr "オプション" - -#: includes/acf-wp-functions.php:82 -msgid "Users" -msgstr "ユーザー" - -#: includes/acf-wp-functions.php:78 -msgid "Menu items" -msgstr "メニュー項目" - -#: includes/acf-wp-functions.php:70 -msgid "Widgets" -msgstr "ウィジェット" - -#: includes/acf-wp-functions.php:62 -msgid "Attachments" -msgstr "添付ファイル" - -#: includes/acf-wp-functions.php:57 -#: includes/admin/post-types/admin-post-types.php:137 -#: includes/admin/post-types/admin-taxonomies.php:112 -#: includes/admin/tools/class-acf-admin-tool-import.php:93 -#: includes/admin/views/acf-post-type/basic-settings.php:86 -#: includes/post-types/class-acf-taxonomy.php:90 -#: includes/post-types/class-acf-taxonomy.php:91 -msgid "Taxonomies" -msgstr "タクソノミー" - -#: includes/acf-wp-functions.php:44 -#: includes/admin/post-types/admin-post-type.php:126 -#: includes/admin/post-types/admin-post-types.php:139 -#: includes/admin/views/acf-post-type/advanced-settings.php:106 -#: assets/build/js/acf-internal-post-type.js:173 -#: assets/build/js/acf-internal-post-type.js:247 -msgid "Posts" -msgstr "投稿" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:76 -msgid "Last updated: %s" -msgstr "最終更新日: %s" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:70 -msgid "Sorry, this post is unavailable for diff comparison." -msgstr "このフィールドグループは diff 比較に使用できません。" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:42 -msgid "Invalid field group parameter(s)." -msgstr "無効なフィールドグループパラメータ。" - -#: includes/admin/admin-internal-post-type-list.php:413 -msgid "Awaiting save" -msgstr "保存待ち" - -#: includes/admin/admin-internal-post-type-list.php:410 -msgid "Saved" -msgstr "保存しました" - -#: includes/admin/admin-internal-post-type-list.php:406 -#: includes/admin/tools/class-acf-admin-tool-import.php:49 -msgid "Import" -msgstr "インポート" - -#: includes/admin/admin-internal-post-type-list.php:402 -msgid "Review changes" -msgstr "変更をレビュー" - -#: includes/admin/admin-internal-post-type-list.php:378 -msgid "Located in: %s" -msgstr "位置: %s" - -#: includes/admin/admin-internal-post-type-list.php:375 -msgid "Located in plugin: %s" -msgstr "プラグイン中の位置: %s" - -#: includes/admin/admin-internal-post-type-list.php:372 -msgid "Located in theme: %s" -msgstr "テーマ内の位置: %s" - -#: includes/admin/post-types/admin-field-groups.php:261 -msgid "Various" -msgstr "各種" - -#: includes/admin/admin-internal-post-type-list.php:216 -#: includes/admin/admin-internal-post-type-list.php:485 -msgid "Sync changes" -msgstr "変更を同期" - -#: includes/admin/admin-internal-post-type-list.php:215 -msgid "Loading diff" -msgstr "差分を読み込み中" - -#: includes/admin/admin-internal-post-type-list.php:214 -msgid "Review local JSON changes" -msgstr "ローカルの JSON 変更をレビュー" - -#: includes/admin/admin.php:170 -msgid "Visit website" -msgstr "サイトへ移動" - -#: includes/admin/admin.php:169 -msgid "View details" -msgstr "詳細を表示" - -#: includes/admin/admin.php:168 -msgid "Version %s" -msgstr "バージョン %s" - -#: includes/admin/admin.php:167 -msgid "Information" -msgstr "情報" - -#: includes/admin/admin.php:158 -msgid "" -"Help Desk. The support professionals on " -"our Help Desk will assist with your more in depth, technical challenges." -msgstr "" -"ヘルプデスク。サポートの専門家がお客様の" -"より詳細な技術的課題をサポートします。" - -#: includes/admin/admin.php:154 -msgid "" -"Discussions. We have an active and " -"friendly community on our Community Forums who may be able to help you " -"figure out the 'how-tos' of the ACF world." -msgstr "" -"ディスカッション。コミュニティフォーラム" -"には、活発でフレンドリーなコミュニティがあり、ACFの世界の「ハウツー」を理解す" -"る手助けをしてくれるかもしれません。" - -#: includes/admin/admin.php:150 -msgid "" -"Documentation. Our extensive " -"documentation contains references and guides for most situations you may " -"encounter." -msgstr "" -"ドキュメンテーション。私たちの豊富なド" -"キュメントには、お客様が遭遇する可能性のあるほとんどの状況に対するリファレン" -"スやガイドが含まれています。" - -#: includes/admin/admin.php:147 -msgid "" -"We are fanatical about support, and want you to get the best out of your " -"website with ACF. If you run into any difficulties, there are several places " -"you can find help:" -msgstr "" -"私たちはサポートを非常に重要視しており、ACF を使ったサイトを最大限に活用して" -"いただきたいと考えています。何か問題が発生した場合には、複数の場所でサポート" -"を受けることができます:" - -#: includes/admin/admin.php:144 includes/admin/admin.php:146 -msgid "Help & Support" -msgstr "ヘルプとサポート" - -#: includes/admin/admin.php:135 -msgid "" -"Please use the Help & Support tab to get in touch should you find yourself " -"requiring assistance." -msgstr "お困りの際は「ヘルプとサポート」タブからお問い合わせください。" - -#: includes/admin/admin.php:132 -msgid "" -"Before creating your first Field Group, we recommend first reading our Getting started guide to familiarize " -"yourself with the plugin's philosophy and best practises." -msgstr "" -"初めてフィールドグループを作成する前にまずス" -"タートガイドに目を通して、プラグインの理念やベストプラクティスを理解する" -"ことをおすすめします。" - -#: includes/admin/admin.php:130 -msgid "" -"The Advanced Custom Fields plugin provides a visual form builder to " -"customize WordPress edit screens with extra fields, and an intuitive API to " -"display custom field values in any theme template file." -msgstr "" -"Advanced Custom Fields プラグインは、WordPress の編集画面を追加フィールドでカ" -"スタマイズするためのビジュアルフォームビルダーと、カスタムフィールドの値を任" -"意のテーマテンプレートファイルに表示するための直感的な API を提供します。" - -#: includes/admin/admin.php:127 includes/admin/admin.php:129 -msgid "Overview" -msgstr "概要" - -#: includes/locations.php:36 -msgid "Location type \"%s\" is already registered." -msgstr "位置タイプ「%s」はすでに登録されています。" - -#: includes/locations.php:25 -msgid "Class \"%s\" does not exist." -msgstr "クラス \"%s\" は存在しません。" - -#: includes/ajax/class-acf-ajax.php:157 -msgid "Invalid nonce." -msgstr "無効な nonce。" - -#: includes/fields/class-acf-field-user.php:375 -msgid "Error loading field." -msgstr "フィールドの読み込みエラー。" - -#: assets/build/js/acf-input.js:2750 assets/build/js/acf-input.js:2819 -#: assets/build/js/acf-input.js:2926 assets/build/js/acf-input.js:3000 -msgid "Location not found: %s" -msgstr "位置情報が見つかりません: %s" - -#: includes/forms/form-user.php:353 -msgid "Error: %s" -msgstr "エラー: %s" - -#: includes/locations/class-acf-location-widget.php:22 -msgid "Widget" -msgstr "ウィジェット" - -#: includes/locations/class-acf-location-user-role.php:24 -msgid "User Role" -msgstr "ユーザー権限グループ" - -#: includes/locations/class-acf-location-comment.php:22 -msgid "Comment" -msgstr "コメント" - -#: includes/locations/class-acf-location-post-format.php:22 -msgid "Post Format" -msgstr "投稿フォーマット" - -#: includes/locations/class-acf-location-nav-menu-item.php:22 -msgid "Menu Item" -msgstr "メニュー項目" - -#: includes/locations/class-acf-location-post-status.php:22 -msgid "Post Status" -msgstr "投稿ステータス" - -#: includes/acf-wp-functions.php:74 -#: includes/locations/class-acf-location-nav-menu.php:89 -msgid "Menus" -msgstr "メニュー" - -#: includes/locations/class-acf-location-nav-menu.php:80 -msgid "Menu Locations" -msgstr "メニューの位置" - -#: includes/locations/class-acf-location-nav-menu.php:22 -msgid "Menu" -msgstr "メニュー" - -#: includes/locations/class-acf-location-post-taxonomy.php:22 -msgid "Post Taxonomy" -msgstr "投稿タクソノミー" - -#: includes/locations/class-acf-location-page-type.php:114 -msgid "Child Page (has parent)" -msgstr "子ページ (親ページあり)" - -#: includes/locations/class-acf-location-page-type.php:113 -msgid "Parent Page (has children)" -msgstr "親ページ (子ページあり)" - -#: includes/locations/class-acf-location-page-type.php:112 -msgid "Top Level Page (no parent)" -msgstr "最上位レベルのページ (親ページなし)" - -#: includes/locations/class-acf-location-page-type.php:111 -msgid "Posts Page" -msgstr "投稿ページ" - -#: includes/locations/class-acf-location-page-type.php:110 -msgid "Front Page" -msgstr "フロントページ" - -#: includes/locations/class-acf-location-page-type.php:22 -msgid "Page Type" -msgstr "ページタイプ" - -#: includes/locations/class-acf-location-current-user.php:73 -msgid "Viewing back end" -msgstr "バックエンドで表示" - -#: includes/locations/class-acf-location-current-user.php:72 -msgid "Viewing front end" -msgstr "フロントエンドで表示" - -#: includes/locations/class-acf-location-current-user.php:71 -msgid "Logged in" -msgstr "ログイン済み" - -#: includes/locations/class-acf-location-current-user.php:22 -msgid "Current User" -msgstr "現在のユーザー" - -#: includes/locations/class-acf-location-page-template.php:22 -msgid "Page Template" -msgstr "固定ページテンプレート" - -#: includes/locations/class-acf-location-user-form.php:74 -msgid "Register" -msgstr "登録" - -#: includes/locations/class-acf-location-user-form.php:73 -msgid "Add / Edit" -msgstr "追加 / 編集" - -#: includes/locations/class-acf-location-user-form.php:22 -msgid "User Form" -msgstr "ユーザーフォーム" - -#: includes/locations/class-acf-location-page-parent.php:22 -msgid "Page Parent" -msgstr "親ページ" - -#: includes/locations/class-acf-location-current-user-role.php:77 -msgid "Super Admin" -msgstr "特権管理者" - -#: includes/locations/class-acf-location-current-user-role.php:22 -msgid "Current User Role" -msgstr "現在のユーザー権限グループ" - -#: includes/locations/class-acf-location-page-template.php:73 -#: includes/locations/class-acf-location-post-template.php:85 -msgid "Default Template" -msgstr "デフォルトテンプレート" - -#: includes/locations/class-acf-location-post-template.php:22 -msgid "Post Template" -msgstr "投稿テンプレート" - -#: includes/locations/class-acf-location-post-category.php:22 -msgid "Post Category" -msgstr "投稿カテゴリー" - -#: includes/locations/class-acf-location-attachment.php:84 -msgid "All %s formats" -msgstr "すべての%sフォーマット" - -#: includes/locations/class-acf-location-attachment.php:22 -msgid "Attachment" -msgstr "添付ファイル" - -#: includes/validation.php:366 -msgid "%s value is required" -msgstr "%s の値は必須です" - -#: includes/admin/views/acf-field-group/conditional-logic.php:59 -msgid "Show this field if" -msgstr "このフィールドグループの表示条件" - -#: includes/admin/views/acf-field-group/conditional-logic.php:26 -#: includes/admin/views/acf-field-group/field.php:109 includes/fields.php:411 -msgid "Conditional Logic" -msgstr "条件判定" - -#: includes/admin/views/acf-field-group/conditional-logic.php:156 -#: includes/admin/views/acf-field-group/location-rule.php:92 -msgid "and" -msgstr "と" - -#: includes/admin/post-types/admin-field-groups.php:123 -#: includes/admin/post-types/admin-post-types.php:143 -#: includes/admin/post-types/admin-taxonomies.php:143 -msgid "Local JSON" -msgstr "ローカル JSON" - -#: includes/admin/views/acf-field-group/pro-features.php:46 -msgid "Clone Field" -msgstr "フィールドを複製" - -#: includes/admin/views/upgrade/notice.php:30 -msgid "" -"Please also check all premium add-ons (%s) are updated to the latest version." -msgstr "" -"また、すべてのプレミアムアドオン ( %s) が最新版に更新されていることを確認して" -"ください。" - -#: includes/admin/views/upgrade/notice.php:28 -msgid "" -"This version contains improvements to your database and requires an upgrade." -msgstr "" -"このバージョンにはデータベースの改善が含まれており、アップグレードが必要で" -"す。" - -#: includes/admin/views/upgrade/notice.php:28 -msgid "Thank you for updating to %1$s v%2$s!" -msgstr "%1$s v%2$sへの更新をありがとうございます。" - -#: includes/admin/views/upgrade/notice.php:27 -msgid "Database Upgrade Required" -msgstr "データベースのアップグレードが必要" - -#: includes/admin/post-types/admin-field-group.php:141 -#: includes/admin/views/upgrade/notice.php:18 -msgid "Options Page" -msgstr "オプションページ" - -#: includes/admin/views/upgrade/notice.php:15 includes/fields.php:462 -msgid "Gallery" -msgstr "ギャラリー" - -#: includes/admin/views/upgrade/notice.php:12 includes/fields.php:452 -msgid "Flexible Content" -msgstr "柔軟なコンテンツ" - -#: includes/admin/views/upgrade/notice.php:9 includes/fields.php:472 -msgid "Repeater" -msgstr "繰り返し" - -#: includes/admin/views/tools/tools.php:24 -msgid "Back to all tools" -msgstr "すべてのツールに戻る" - -#: includes/admin/views/acf-field-group/options.php:195 -msgid "" -"If multiple field groups appear on an edit screen, the first field group's " -"options will be used (the one with the lowest order number)" -msgstr "" -"複数のフィールドグループが編集画面に表示される場合、最初のフィールドグループ " -"(最小の番号を持つもの) のオプションが使用されます" - -#: includes/admin/views/acf-field-group/options.php:195 -msgid "Select items to hide them from the edit screen." -msgstr "編集画面で非表示にする項目を選択してください。" - -#: includes/admin/views/acf-field-group/options.php:194 -msgid "Hide on screen" -msgstr "画面上で非表示" - -#: includes/admin/views/acf-field-group/options.php:186 -msgid "Send Trackbacks" -msgstr "トラックバック送信" - -#: includes/admin/post-types/admin-taxonomy.php:128 -#: includes/admin/views/acf-field-group/options.php:185 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:159 -#: assets/build/js/acf-internal-post-type.js:180 -#: assets/build/js/acf-internal-post-type.js:254 -msgid "Tags" -msgstr "タグ" - -#: includes/admin/post-types/admin-taxonomy.php:130 -#: includes/admin/views/acf-field-group/options.php:184 -#: assets/build/js/acf-internal-post-type.js:183 -#: assets/build/js/acf-internal-post-type.js:257 -msgid "Categories" -msgstr "カテゴリー" - -#: includes/admin/views/acf-field-group/options.php:182 -#: includes/admin/views/acf-post-type/advanced-settings.php:28 -msgid "Page Attributes" -msgstr "ページ属性" - -#: includes/admin/views/acf-field-group/options.php:181 -msgid "Format" -msgstr "フォーマット" - -#: includes/admin/views/acf-field-group/options.php:180 -#: includes/admin/views/acf-post-type/advanced-settings.php:22 -msgid "Author" -msgstr "投稿者" - -#: includes/admin/views/acf-field-group/options.php:179 -msgid "Slug" -msgstr "スラッグ" - -#: includes/admin/views/acf-field-group/options.php:178 -#: includes/admin/views/acf-post-type/advanced-settings.php:27 -msgid "Revisions" -msgstr "リビジョン" - -#: includes/acf-wp-functions.php:66 -#: includes/admin/views/acf-field-group/options.php:177 -#: includes/admin/views/acf-post-type/advanced-settings.php:23 -msgid "Comments" -msgstr "コメント" - -#: includes/admin/views/acf-field-group/options.php:176 -msgid "Discussion" -msgstr "ディスカッション" - -#: includes/admin/views/acf-field-group/options.php:174 -#: includes/admin/views/acf-post-type/advanced-settings.php:26 -msgid "Excerpt" -msgstr "抜粋" - -#: includes/admin/views/acf-field-group/options.php:173 -msgid "Content Editor" -msgstr "コンテンツエディター" - -#: includes/admin/views/acf-field-group/options.php:172 -msgid "Permalink" -msgstr "パーマリンク" - -#: includes/admin/views/acf-field-group/options.php:250 -msgid "Shown in field group list" -msgstr "フィールドグループリストに表示" - -#: includes/admin/views/acf-field-group/options.php:157 -msgid "Field groups with a lower order will appear first" -msgstr "下位のフィールドグループを最初に表示" - -#: includes/admin/views/acf-field-group/options.php:156 -msgid "Order No." -msgstr "注文番号" - -#: includes/admin/views/acf-field-group/options.php:147 -msgid "Below fields" -msgstr "フィールドの下" - -#: includes/admin/views/acf-field-group/options.php:146 -msgid "Below labels" -msgstr "ラベルの下" - -#: includes/admin/views/acf-field-group/options.php:139 -msgid "Instruction Placement" -msgstr "手順の配置" - -#: includes/admin/views/acf-field-group/options.php:122 -msgid "Label Placement" -msgstr "ラベルの配置" - -#: includes/admin/views/acf-field-group/options.php:110 -msgid "Side" -msgstr "サイド" - -#: includes/admin/views/acf-field-group/options.php:109 -msgid "Normal (after content)" -msgstr "通常 (コンテンツの後)" - -#: includes/admin/views/acf-field-group/options.php:108 -msgid "High (after title)" -msgstr "高 (タイトルの後)" - -#: includes/admin/views/acf-field-group/options.php:101 -msgid "Position" -msgstr "位置" - -#: includes/admin/views/acf-field-group/options.php:92 -msgid "Seamless (no metabox)" -msgstr "シームレス (メタボックスなし)" - -#: includes/admin/views/acf-field-group/options.php:91 -msgid "Standard (WP metabox)" -msgstr "標準 (WP メタボックス)" - -#: includes/admin/views/acf-field-group/options.php:84 -msgid "Style" -msgstr "スタイル" - -#: includes/admin/views/acf-field-group/fields.php:55 -msgid "Type" -msgstr "タイプ" - -#: includes/admin/post-types/admin-field-groups.php:117 -#: includes/admin/post-types/admin-post-types.php:136 -#: includes/admin/post-types/admin-taxonomies.php:136 -#: includes/admin/views/acf-field-group/fields.php:54 -msgid "Key" -msgstr "キー" - -#. translators: Hidden accessibility text for the positional order number of -#. the field. -#: includes/admin/views/acf-field-group/fields.php:48 -msgid "Order" -msgstr "順序" - -#: includes/admin/views/acf-field-group/field.php:322 -msgid "Close Field" -msgstr "フィールドを閉じる" - -#: includes/admin/views/acf-field-group/field.php:253 -msgid "id" -msgstr "ID" - -#: includes/admin/views/acf-field-group/field.php:237 -msgid "class" -msgstr "クラス" - -#: includes/admin/views/acf-field-group/field.php:279 -msgid "width" -msgstr "横幅" - -#: includes/admin/views/acf-field-group/field.php:273 -msgid "Wrapper Attributes" -msgstr "ラッパー属性" - -#: includes/admin/views/acf-field-group/field.php:196 -msgid "Required" -msgstr "必須項目" - -#: includes/admin/views/acf-field-group/field.php:221 -msgid "Instructions for authors. Shown when submitting data" -msgstr "投稿者向けの手順。データ送信時に表示されます" - -#: includes/admin/views/acf-field-group/field.php:220 -msgid "Instructions" -msgstr "手順" - -#: includes/admin/views/acf-field-group/field.php:129 -msgid "Field Type" -msgstr "フィールドタイプ" - -#: includes/admin/views/acf-field-group/field.php:170 -msgid "Single word, no spaces. Underscores and dashes allowed" -msgstr "スペースは不可、アンダースコアとダッシュは使用可能" - -#: includes/admin/views/acf-field-group/field.php:169 -msgid "Field Name" -msgstr "フィールド名" - -#: includes/admin/views/acf-field-group/field.php:157 -msgid "This is the name which will appear on the EDIT page" -msgstr "これは、編集ページに表示される名前です" - -#: includes/admin/views/acf-field-group/field.php:156 -#: includes/admin/views/browse-fields-modal.php:59 -msgid "Field Label" -msgstr "フィールドラベル" - -#: includes/admin/views/acf-field-group/field.php:81 -msgid "Delete" -msgstr "削除" - -#: includes/admin/views/acf-field-group/field.php:81 -msgid "Delete field" -msgstr "フィールドを削除" - -#: includes/admin/views/acf-field-group/field.php:79 -msgid "Move" -msgstr "移動" - -#: includes/admin/views/acf-field-group/field.php:79 -msgid "Move field to another group" -msgstr "フィールドを別のグループへ移動" - -#: includes/admin/views/acf-field-group/field.php:77 -msgid "Duplicate field" -msgstr "フィールドを複製" - -#: includes/admin/views/acf-field-group/field.php:73 -#: includes/admin/views/acf-field-group/field.php:76 -msgid "Edit field" -msgstr "フィールドを編集" - -#: includes/admin/views/acf-field-group/field.php:69 -msgid "Drag to reorder" -msgstr "ドラッグして順序を変更" - -#: includes/admin/post-types/admin-field-group.php:103 -#: includes/admin/views/acf-field-group/location-group.php:3 -#: assets/build/js/acf-field-group.js:2347 -#: assets/build/js/acf-field-group.js:2763 -msgid "Show this field group if" -msgstr "このフィールドグループを表示する条件" - -#: includes/admin/views/upgrade/upgrade.php:94 -#: includes/ajax/class-acf-ajax-upgrade.php:34 -msgid "No updates available." -msgstr "利用可能な更新はありません。" - -#: includes/admin/views/upgrade/upgrade.php:33 -msgid "Database upgrade complete. See what's new" -msgstr "" -"データベースのアップグレードが完了しました。変更点を表示" - -#: includes/admin/views/upgrade/upgrade.php:30 -msgid "Reading upgrade tasks..." -msgstr "アップグレードタスクを読み込んでいます..." - -#: includes/admin/views/upgrade/network.php:165 -#: includes/admin/views/upgrade/upgrade.php:65 -msgid "Upgrade failed." -msgstr "アップグレードに失敗しました。" - -#: includes/admin/views/upgrade/network.php:162 -msgid "Upgrade complete." -msgstr "アップグレードが完了しました。" - -#: includes/admin/views/upgrade/network.php:148 -#: includes/admin/views/upgrade/upgrade.php:31 -msgid "Upgrading data to version %s" -msgstr "データをバージョン%sへアップグレード中" - -#: includes/admin/views/upgrade/network.php:121 -#: includes/admin/views/upgrade/notice.php:44 -msgid "" -"It is strongly recommended that you backup your database before proceeding. " -"Are you sure you wish to run the updater now?" -msgstr "" -"続行する前にデータベースをバックアップすることを強くおすすめします。本当に更" -"新ツールを今すぐ実行してもよいですか ?" - -#: includes/admin/views/upgrade/network.php:117 -msgid "Please select at least one site to upgrade." -msgstr "アップグレードするサイトを1つ以上選択してください。" - -#: includes/admin/views/upgrade/network.php:97 -msgid "" -"Database Upgrade complete. Return to network dashboard" -msgstr "" -"データベースのアップグレードが完了しました。ネットワークダッ" -"シュボードに戻る" - -#: includes/admin/views/upgrade/network.php:80 -msgid "Site is up to date" -msgstr "サイトは最新状態です" - -#: includes/admin/views/upgrade/network.php:78 -msgid "Site requires database upgrade from %1$s to %2$s" -msgstr "%1$s から %2$s へのデータベースのアップグレードが必要です" - -#: includes/admin/views/upgrade/network.php:36 -#: includes/admin/views/upgrade/network.php:47 -msgid "Site" -msgstr "サイト" - -#: includes/admin/views/upgrade/network.php:26 -#: includes/admin/views/upgrade/network.php:27 -#: includes/admin/views/upgrade/network.php:96 -msgid "Upgrade Sites" -msgstr "サイトをアップグレード" - -#: includes/admin/views/upgrade/network.php:26 -msgid "" -"The following sites require a DB upgrade. Check the ones you want to update " -"and then click %s." -msgstr "" -"以下のサイトはデータベースのアップグレードが必要です。更新したいものにチェッ" -"クを入れて、%s をクリックしてください。" - -#: includes/admin/views/acf-field-group/conditional-logic.php:171 -#: includes/admin/views/acf-field-group/locations.php:38 -msgid "Add rule group" -msgstr "ルールグループを追加" - -#: includes/admin/views/acf-field-group/locations.php:10 -msgid "" -"Create a set of rules to determine which edit screens will use these " -"advanced custom fields" -msgstr "" -"どの編集画面でカスタムフィールドを表示するかを決定するルールを作成します" - -#: includes/admin/views/acf-field-group/locations.php:9 -msgid "Rules" -msgstr "ルール" - -#: includes/admin/tools/class-acf-admin-tool-export.php:510 -msgid "Copied" -msgstr "コピーしました" - -#: includes/admin/tools/class-acf-admin-tool-export.php:486 -msgid "Copy to clipboard" -msgstr "クリップボードにコピー" - -#: includes/admin/tools/class-acf-admin-tool-export.php:385 -msgid "" -"Select the items you would like to export and then select your export " -"method. Export As JSON to export to a .json file which you can then import " -"to another ACF installation. Generate PHP to export to PHP code which you " -"can place in your theme." -msgstr "" -"エクスポートしたい項目とエクスポート方法を選んでください。「JSON としてエクス" -"ポート」では別の ACF をインストールした環境でインポートできる JSON ファイルが" -"エクスポートされます。「PHP の生成」ではテーマ内で利用できる PHP コードが生成" -"されます。" - -#: includes/admin/tools/class-acf-admin-tool-export.php:233 -msgid "Select Field Groups" -msgstr "フィールドグループを選択" - -#: includes/admin/tools/class-acf-admin-tool-export.php:96 -#: includes/admin/tools/class-acf-admin-tool-export.php:131 -msgid "No field groups selected" -msgstr "フィールド未選択" - -#: includes/admin/tools/class-acf-admin-tool-export.php:39 -#: includes/admin/tools/class-acf-admin-tool-export.php:393 -#: includes/admin/tools/class-acf-admin-tool-export.php:421 -msgid "Generate PHP" -msgstr "PHP を生成" - -#: includes/admin/tools/class-acf-admin-tool-export.php:35 -msgid "Export Field Groups" -msgstr "フィールドグループをエクスポート" - -#: includes/admin/tools/class-acf-admin-tool-import.php:177 -msgid "Import file empty" -msgstr "空ファイルのインポート" - -#: includes/admin/tools/class-acf-admin-tool-import.php:168 -msgid "Incorrect file type" -msgstr "不正なファイルの種類" - -#: includes/admin/tools/class-acf-admin-tool-import.php:163 -msgid "Error uploading file. Please try again" -msgstr "ファイルアップロードエラー。もう一度お試しください" - -#: includes/admin/tools/class-acf-admin-tool-import.php:50 -msgid "" -"Select the Advanced Custom Fields JSON file you would like to import. When " -"you click the import button below, ACF will import the items in that file." -msgstr "" -"インポートしたい ACF の JSON ファイルを選択してください。下のインポートボタン" -"をクリックすると、ACF はファイルに項目をインポートします。" - -#: includes/admin/tools/class-acf-admin-tool-import.php:27 -msgid "Import Field Groups" -msgstr "フィールドグループをインポート" - -#: includes/admin/admin-internal-post-type-list.php:401 -msgid "Sync" -msgstr "同期" - -#: includes/admin/admin-internal-post-type-list.php:858 -msgid "Select %s" -msgstr "%sを選択" - -#: includes/admin/admin-internal-post-type-list.php:442 -#: includes/admin/admin-internal-post-type-list.php:474 -#: includes/admin/views/acf-field-group/field.php:77 -msgid "Duplicate" -msgstr "複製" - -#: includes/admin/admin-internal-post-type-list.php:442 -msgid "Duplicate this item" -msgstr "この項目を複製" - -#: includes/admin/views/acf-post-type/advanced-settings.php:41 -msgid "Supports" -msgstr "サポート" - -#: includes/admin/admin.php:261 includes/admin/views/browse-fields-modal.php:92 -msgid "Documentation" -msgstr "ドキュメンテーション" - -#: includes/admin/post-types/admin-field-groups.php:116 -#: includes/admin/post-types/admin-post-types.php:135 -#: includes/admin/post-types/admin-taxonomies.php:135 -#: includes/admin/views/acf-field-group/options.php:249 -#: includes/admin/views/acf-post-type/advanced-settings.php:62 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:114 -#: includes/admin/views/upgrade/network.php:38 -#: includes/admin/views/upgrade/network.php:49 -msgid "Description" -msgstr "説明" - -#: includes/admin/admin-internal-post-type-list.php:398 -#: includes/admin/admin-internal-post-type-list.php:747 -msgid "Sync available" -msgstr "同期が利用できます" - -#. translators: %s number of field groups synchronized -#: includes/admin/post-types/admin-field-groups.php:381 -msgid "Field group synchronized." -msgid_plural "%s field groups synchronized." -msgstr[0] "%s件のフィールドグループを同期しました。" - -#. translators: %s number of field groups duplicated -#: includes/admin/post-types/admin-field-groups.php:374 -msgid "Field group duplicated." -msgid_plural "%s field groups duplicated." -msgstr[0] "%s件のフィールドグループを複製しました。" - -#: includes/admin/admin-internal-post-type-list.php:137 -msgid "Active (%s)" -msgid_plural "Active (%s)" -msgstr[0] "使用中 (%s)" - -#: includes/admin/admin-upgrade.php:254 -msgid "Review sites & upgrade" -msgstr "サイトをレビューしてアップグレード" - -#: includes/admin/admin-upgrade.php:59 includes/admin/admin-upgrade.php:93 -#: includes/admin/admin-upgrade.php:94 includes/admin/admin-upgrade.php:230 -#: includes/admin/views/upgrade/network.php:24 -#: includes/admin/views/upgrade/upgrade.php:26 -msgid "Upgrade Database" -msgstr "データベースをアップグレード" - -#: includes/admin/views/acf-field-group/options.php:175 -#: includes/admin/views/acf-post-type/advanced-settings.php:30 -msgid "Custom Fields" -msgstr "カスタムフィールド" - -#: includes/admin/post-types/admin-field-group.php:616 -msgid "Move Field" -msgstr "フィールドを移動" - -#: includes/admin/post-types/admin-field-group.php:605 -#: includes/admin/post-types/admin-field-group.php:609 -msgid "Please select the destination for this field" -msgstr "このフィールドの移動先を選択してください" - -#. translators: Confirmation message once a field has been moved to a different -#. field group. -#: includes/admin/post-types/admin-field-group.php:567 -msgid "The %1$s field can now be found in the %2$s field group" -msgstr "%1$s フィールドは現在 %2$s フィールドグループにあります" - -#: includes/admin/post-types/admin-field-group.php:564 -msgid "Move Complete." -msgstr "移動が完了しました。" - -#: includes/admin/views/acf-field-group/field.php:39 -#: includes/admin/views/acf-field-group/options.php:217 -#: includes/admin/views/acf-post-type/advanced-settings.php:78 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:130 -msgid "Active" -msgstr "有効" - -#: includes/admin/post-types/admin-field-group.php:266 -msgid "Field Keys" -msgstr "フィールドキー" - -#: includes/admin/post-types/admin-field-group.php:164 -#: includes/admin/tools/class-acf-admin-tool-export.php:342 -msgid "Settings" -msgstr "設定" - -#: includes/admin/post-types/admin-field-groups.php:118 -msgid "Location" -msgstr "所在地" - -#: includes/admin/post-types/admin-field-group.php:104 -#: assets/build/js/acf-input.js:983 assets/build/js/acf-input.js:1075 -msgid "Null" -msgstr "Null" - -#: includes/admin/post-types/admin-field-group.php:101 -#: includes/class-acf-internal-post-type.php:730 -#: includes/post-types/class-acf-field-group.php:345 -#: assets/build/js/acf-field-group.js:1510 -#: assets/build/js/acf-field-group.js:1821 -msgid "copy" -msgstr "コピー" - -#: includes/admin/post-types/admin-field-group.php:100 -#: assets/build/js/acf-field-group.js:623 -#: assets/build/js/acf-field-group.js:778 -msgid "(this field)" -msgstr "(このフィールド)" - -#: includes/admin/post-types/admin-field-group.php:98 -#: assets/build/js/acf-input.js:918 assets/build/js/acf-input.js:943 -#: assets/build/js/acf-input.js:1002 assets/build/js/acf-input.js:1030 -msgid "Checked" -msgstr "チェック済み" - -#: includes/admin/post-types/admin-field-group.php:94 -#: assets/build/js/acf-field-group.js:1615 -#: assets/build/js/acf-field-group.js:1933 -msgid "Move Custom Field" -msgstr "カスタムフィールドを移動" - -#: includes/admin/post-types/admin-field-group.php:93 -#: assets/build/js/acf-field-group.js:649 -#: assets/build/js/acf-field-group.js:804 -msgid "No toggle fields available" -msgstr "利用可能な切り替えフィールドがありません" - -#: includes/admin/post-types/admin-field-group.php:91 -msgid "Field group title is required" -msgstr "フィールドグループのタイトルは必須です" - -#: includes/admin/post-types/admin-field-group.php:90 -#: assets/build/js/acf-field-group.js:1604 -#: assets/build/js/acf-field-group.js:1919 -msgid "This field cannot be moved until its changes have been saved" -msgstr "変更を保存するまでこのフィールドは移動できません" - -#: includes/admin/post-types/admin-field-group.php:89 -#: assets/build/js/acf-field-group.js:1414 -#: assets/build/js/acf-field-group.js:1716 -msgid "The string \"field_\" may not be used at the start of a field name" -msgstr "\"field_\" という文字列はフィールド名の先頭に使うことはできません" - -#: includes/admin/post-types/admin-field-group.php:71 -msgid "Field group draft updated." -msgstr "フィールドグループ下書きを更新しました。" - -#: includes/admin/post-types/admin-field-group.php:70 -msgid "Field group scheduled for." -msgstr "フィールドグループを公開予約しました。" - -#: includes/admin/post-types/admin-field-group.php:69 -msgid "Field group submitted." -msgstr "フィールドグループを送信しました。" - -#: includes/admin/post-types/admin-field-group.php:68 -msgid "Field group saved." -msgstr "フィールドグループを保存しました。" - -#: includes/admin/post-types/admin-field-group.php:67 -msgid "Field group published." -msgstr "フィールドグループを公開しました。" - -#: includes/admin/post-types/admin-field-group.php:64 -msgid "Field group deleted." -msgstr "フィールドグループを削除しました。" - -#: includes/admin/post-types/admin-field-group.php:62 -#: includes/admin/post-types/admin-field-group.php:63 -#: includes/admin/post-types/admin-field-group.php:65 -msgid "Field group updated." -msgstr "フィールドグループを更新しました。" - -#: includes/admin/admin-tools.php:118 -#: includes/admin/views/global/navigation.php:246 -#: includes/admin/views/tools/tools.php:21 -msgid "Tools" -msgstr "ツール" - -#: includes/locations/abstract-acf-location.php:106 -msgid "is not equal to" -msgstr "等しくない" - -#: includes/locations/abstract-acf-location.php:105 -msgid "is equal to" -msgstr "等しい" - -#: includes/locations.php:102 -msgid "Forms" -msgstr "フォーム" - -#: includes/admin/post-types/admin-post-type.php:127 includes/locations.php:100 -#: includes/locations/class-acf-location-page.php:22 -#: assets/build/js/acf-internal-post-type.js:175 -#: assets/build/js/acf-internal-post-type.js:249 -msgid "Page" -msgstr "固定ページ" - -#: includes/admin/post-types/admin-post-type.php:125 includes/locations.php:99 -#: includes/locations/class-acf-location-post.php:22 -#: assets/build/js/acf-internal-post-type.js:172 -#: assets/build/js/acf-internal-post-type.js:246 -msgid "Post" -msgstr "投稿" - -#: includes/fields.php:354 -msgid "Relational" -msgstr "関連" - -#: includes/fields.php:353 -msgid "Choice" -msgstr "選択" - -#: includes/fields.php:351 -msgid "Basic" -msgstr "基本" - -#: includes/fields.php:320 -msgid "Unknown" -msgstr "不明" - -#: includes/fields.php:320 -msgid "Field type does not exist" -msgstr "フィールドタイプが存在しません" - -#: includes/forms/form-front.php:236 -msgid "Spam Detected" -msgstr "スパムを検出しました" - -#: includes/forms/form-front.php:107 -msgid "Post updated" -msgstr "投稿を更新しました" - -#: includes/forms/form-front.php:106 -msgid "Update" -msgstr "更新" - -#: includes/forms/form-front.php:57 -msgid "Validate Email" -msgstr "メールを確認" - -#: includes/fields.php:352 includes/forms/form-front.php:49 -msgid "Content" -msgstr "コンテンツ" - -#: includes/admin/views/acf-post-type/advanced-settings.php:21 -#: includes/forms/form-front.php:40 -msgid "Title" -msgstr "タイトル" - -#: includes/assets.php:372 includes/forms/form-comment.php:160 -#: assets/build/js/acf-input.js:7382 assets/build/js/acf-input.js:7968 -msgid "Edit field group" -msgstr "フィールドグループを編集" - -#: includes/admin/post-types/admin-field-group.php:117 -#: assets/build/js/acf-input.js:1125 assets/build/js/acf-input.js:1230 -msgid "Selection is less than" -msgstr "選択範囲が以下より小さい場合" - -#: includes/admin/post-types/admin-field-group.php:116 -#: assets/build/js/acf-input.js:1106 assets/build/js/acf-input.js:1202 -msgid "Selection is greater than" -msgstr "選択範囲が以下より大きい場合" - -#: includes/admin/post-types/admin-field-group.php:115 -#: assets/build/js/acf-input.js:1075 assets/build/js/acf-input.js:1170 -msgid "Value is less than" -msgstr "値が以下より小さい場合" - -#: includes/admin/post-types/admin-field-group.php:114 -#: assets/build/js/acf-input.js:1045 assets/build/js/acf-input.js:1139 -msgid "Value is greater than" -msgstr "値が以下より大きい場合" - -#: includes/admin/post-types/admin-field-group.php:113 -#: assets/build/js/acf-input.js:888 assets/build/js/acf-input.js:960 -msgid "Value contains" -msgstr "以下の値が含まれる場合" - -#: includes/admin/post-types/admin-field-group.php:112 -#: assets/build/js/acf-input.js:862 assets/build/js/acf-input.js:926 -msgid "Value matches pattern" -msgstr "値が以下のパターンに一致する場合" - -#: includes/admin/post-types/admin-field-group.php:111 -#: assets/build/js/acf-input.js:840 assets/build/js/acf-input.js:1023 -#: assets/build/js/acf-input.js:903 assets/build/js/acf-input.js:1116 -msgid "Value is not equal to" -msgstr "値が以下に等しくない場合" - -#: includes/admin/post-types/admin-field-group.php:110 -#: assets/build/js/acf-input.js:810 assets/build/js/acf-input.js:964 -#: assets/build/js/acf-input.js:864 assets/build/js/acf-input.js:1053 -msgid "Value is equal to" -msgstr "値が以下に等しい場合" - -#: includes/admin/post-types/admin-field-group.php:109 -#: assets/build/js/acf-input.js:788 assets/build/js/acf-input.js:841 -msgid "Has no value" -msgstr "値がない場合" - -#: includes/admin/post-types/admin-field-group.php:108 -#: assets/build/js/acf-input.js:758 assets/build/js/acf-input.js:783 -msgid "Has any value" -msgstr "任意の値あり" - -#: includes/admin/admin-internal-post-type.php:345 -#: includes/admin/views/browse-fields-modal.php:62 includes/assets.php:353 -#: assets/build/js/acf.js:1564 assets/build/js/acf.js:1658 -msgid "Cancel" -msgstr "キャンセル" - -#: includes/assets.php:349 assets/build/js/acf.js:1738 -#: assets/build/js/acf.js:1855 -msgid "Are you sure?" -msgstr "本当に実行しますか ?" - -#: includes/assets.php:369 assets/build/js/acf-input.js:9442 -#: assets/build/js/acf-input.js:10294 -msgid "%d fields require attention" -msgstr "%d個のフィールドで確認が必要です" - -#: includes/assets.php:368 assets/build/js/acf-input.js:9440 -#: assets/build/js/acf-input.js:10290 -msgid "1 field requires attention" -msgstr "1つのフィールドで確認が必要です" - -#: includes/assets.php:367 includes/validation.php:288 -#: includes/validation.php:298 assets/build/js/acf-input.js:9435 -#: assets/build/js/acf-input.js:10285 -msgid "Validation failed" -msgstr "検証失敗" - -#: includes/assets.php:366 assets/build/js/acf-input.js:9603 -#: assets/build/js/acf-input.js:10473 -msgid "Validation successful" -msgstr "検証成功" - -#: includes/media.php:54 assets/build/js/acf-input.js:7210 -#: assets/build/js/acf-input.js:7772 -msgid "Restricted" -msgstr "制限" - -#: includes/media.php:53 assets/build/js/acf-input.js:7025 -#: assets/build/js/acf-input.js:7536 -msgid "Collapse Details" -msgstr "詳細を折りたたむ" - -#: includes/media.php:52 assets/build/js/acf-input.js:7025 -#: assets/build/js/acf-input.js:7533 -msgid "Expand Details" -msgstr "詳細を展開" - -#: includes/admin/views/acf-post-type/advanced-settings.php:465 -#: includes/media.php:51 assets/build/js/acf-input.js:6892 -#: assets/build/js/acf-input.js:7381 -msgid "Uploaded to this post" -msgstr "この投稿へのアップロード" - -#: includes/media.php:50 assets/build/js/acf-input.js:6931 -#: assets/build/js/acf-input.js:7420 -msgctxt "verb" -msgid "Update" -msgstr "更新" - -#: includes/media.php:49 -msgctxt "verb" -msgid "Edit" -msgstr "編集" - -#: includes/assets.php:363 assets/build/js/acf-input.js:9212 -#: assets/build/js/acf-input.js:10056 -msgid "The changes you made will be lost if you navigate away from this page" -msgstr "このページから移動した場合、変更は失われます" - -#: includes/api/api-helpers.php:3395 -msgid "File type must be %s." -msgstr "ファイル形式は %s である必要があります。" - -#: includes/admin/post-types/admin-field-group.php:102 -#: includes/admin/views/acf-field-group/conditional-logic.php:59 -#: includes/admin/views/acf-field-group/conditional-logic.php:169 -#: includes/admin/views/acf-field-group/location-group.php:3 -#: includes/admin/views/acf-field-group/locations.php:36 -#: includes/api/api-helpers.php:3391 assets/build/js/acf-field-group.js:771 -#: assets/build/js/acf-field-group.js:2385 -#: assets/build/js/acf-field-group.js:933 -#: assets/build/js/acf-field-group.js:2807 -msgid "or" -msgstr "または" - -#: includes/api/api-helpers.php:3364 -msgid "File size must not exceed %s." -msgstr "ファイルサイズは %s 以下である必要があります。" - -#: includes/api/api-helpers.php:3359 -msgid "File size must be at least %s." -msgstr "ファイルサイズは %s 以上である必要があります。" - -#: includes/api/api-helpers.php:3344 -msgid "Image height must not exceed %dpx." -msgstr "画像の高さは %dpx 以下である必要があります。" - -#: includes/api/api-helpers.php:3339 -msgid "Image height must be at least %dpx." -msgstr "画像の高さは %dpx 以上である必要があります。" - -#: includes/api/api-helpers.php:3325 -msgid "Image width must not exceed %dpx." -msgstr "画像の幅は %dpx 以下である必要があります。" - -#: includes/api/api-helpers.php:3320 -msgid "Image width must be at least %dpx." -msgstr "画像の幅は %dpx 以上である必要があります。" - -#: includes/api/api-helpers.php:1561 includes/api/api-term.php:147 -msgid "(no title)" -msgstr "(タイトルなし)" - -#: includes/api/api-helpers.php:853 -msgid "Full Size" -msgstr "フルサイズ" - -#: includes/api/api-helpers.php:812 -msgid "Large" -msgstr "大" - -#: includes/api/api-helpers.php:811 -msgid "Medium" -msgstr "中" - -#: includes/api/api-helpers.php:810 -msgid "Thumbnail" -msgstr "サムネイル" - -#: includes/acf-field-functions.php:854 -#: includes/admin/post-types/admin-field-group.php:99 -#: assets/build/js/acf-field-group.js:1077 -#: assets/build/js/acf-field-group.js:1260 -msgid "(no label)" -msgstr "(ラベルなし)" - -#: includes/fields/class-acf-field-textarea.php:145 -msgid "Sets the textarea height" -msgstr "テキストエリアの高さを設定" - -#: includes/fields/class-acf-field-textarea.php:144 -msgid "Rows" -msgstr "行" - -#: includes/fields/class-acf-field-textarea.php:25 -msgid "Text Area" -msgstr "テキストエリア" - -#: includes/fields/class-acf-field-checkbox.php:451 -msgid "Prepend an extra checkbox to toggle all choices" -msgstr "追加のチェックボックスを先頭に追加して、すべての選択肢を切り替えます" - -#: includes/fields/class-acf-field-checkbox.php:413 -msgid "Save 'custom' values to the field's choices" -msgstr "フィールドの選択肢として「カスタム」を保存する" - -#: includes/fields/class-acf-field-checkbox.php:402 -msgid "Allow 'custom' values to be added" -msgstr "「カスタム」値の追加を許可する" - -#: includes/fields/class-acf-field-checkbox.php:38 -msgid "Add new choice" -msgstr "新規選択肢を追加" - -#: includes/fields/class-acf-field-checkbox.php:174 -msgid "Toggle All" -msgstr "すべて切り替え" - -#: includes/fields/class-acf-field-page_link.php:506 -msgid "Allow Archives URLs" -msgstr "アーカイブ URL を許可" - -#: includes/fields/class-acf-field-page_link.php:179 -msgid "Archives" -msgstr "アーカイブ" - -#: includes/fields/class-acf-field-page_link.php:25 -msgid "Page Link" -msgstr "ページリンク" - -#: includes/fields/class-acf-field-taxonomy.php:943 -#: includes/locations/class-acf-location-user-form.php:72 -msgid "Add" -msgstr "追加" - -#: includes/admin/views/acf-field-group/fields.php:53 -#: includes/fields/class-acf-field-taxonomy.php:908 -msgid "Name" -msgstr "名前" - -#: includes/fields/class-acf-field-taxonomy.php:892 -msgid "%s added" -msgstr "%s を追加しました" - -#: includes/fields/class-acf-field-taxonomy.php:856 -msgid "%s already exists" -msgstr "%s はすでに存在しています" - -#: includes/fields/class-acf-field-taxonomy.php:844 -msgid "User unable to add new %s" -msgstr "ユーザーが新規 %s を追加できません" - -#: includes/fields/class-acf-field-taxonomy.php:742 -msgid "Term ID" -msgstr "ターム ID" - -#: includes/fields/class-acf-field-taxonomy.php:741 -msgid "Term Object" -msgstr "タームオブジェクト" - -#: includes/fields/class-acf-field-taxonomy.php:726 -msgid "Load value from posts terms" -msgstr "投稿タームから値を読み込む" - -#: includes/fields/class-acf-field-taxonomy.php:725 -msgid "Load Terms" -msgstr "タームを読み込む" - -#: includes/fields/class-acf-field-taxonomy.php:715 -msgid "Connect selected terms to the post" -msgstr "選択したタームを投稿に関連付ける" - -#: includes/fields/class-acf-field-taxonomy.php:714 -msgid "Save Terms" -msgstr "タームを保存" - -#: includes/fields/class-acf-field-taxonomy.php:704 -msgid "Allow new terms to be created whilst editing" -msgstr "編集中に新しいタームを作成できるようにする" - -#: includes/fields/class-acf-field-taxonomy.php:703 -msgid "Create Terms" -msgstr "タームを追加" - -#: includes/fields/class-acf-field-taxonomy.php:762 -msgid "Radio Buttons" -msgstr "ラジオボタン" - -#: includes/fields/class-acf-field-taxonomy.php:761 -msgid "Single Value" -msgstr "単一値" - -#: includes/fields/class-acf-field-taxonomy.php:759 -msgid "Multi Select" -msgstr "複数選択" - -#: includes/fields/class-acf-field-checkbox.php:25 -#: includes/fields/class-acf-field-taxonomy.php:758 -msgid "Checkbox" -msgstr "チェックボックス" - -#: includes/fields/class-acf-field-taxonomy.php:757 -msgid "Multiple Values" -msgstr "複数値" - -#: includes/fields/class-acf-field-taxonomy.php:752 -msgid "Select the appearance of this field" -msgstr "このフィールドの外観を選択" - -#: includes/fields/class-acf-field-taxonomy.php:751 -msgid "Appearance" -msgstr "外観" - -#: includes/fields/class-acf-field-taxonomy.php:693 -msgid "Select the taxonomy to be displayed" -msgstr "表示するタクソノミーを選択" - -#: includes/fields/class-acf-field-taxonomy.php:654 -msgctxt "No Terms" -msgid "No %s" -msgstr "%s なし" - -#: includes/fields/class-acf-field-number.php:266 -msgid "Value must be equal to or lower than %d" -msgstr "値は%d文字以下である必要があります" - -#: includes/fields/class-acf-field-number.php:259 -msgid "Value must be equal to or higher than %d" -msgstr "値は%d文字以上である必要があります" - -#: includes/fields/class-acf-field-number.php:244 -msgid "Value must be a number" -msgstr "値は数字である必要があります" - -#: includes/fields/class-acf-field-number.php:25 -msgid "Number" -msgstr "番号" - -#: includes/fields/class-acf-field-radio.php:264 -msgid "Save 'other' values to the field's choices" -msgstr "フィールドの選択肢として「その他」を保存する" - -#: includes/fields/class-acf-field-radio.php:253 -msgid "Add 'other' choice to allow for custom values" -msgstr "「その他」の選択肢を追加してカスタム値を許可" - -#: includes/admin/views/global/navigation.php:196 -msgid "Other" -msgstr "その他" - -#: includes/fields/class-acf-field-radio.php:25 -msgid "Radio Button" -msgstr "ラジオボタン" - -#: includes/fields/class-acf-field-accordion.php:107 -msgid "" -"Define an endpoint for the previous accordion to stop. This accordion will " -"not be visible." -msgstr "" -"前のアコーディオンを停止するエンドポイントを定義します。このアコーディオンは" -"表示されません。" - -#: includes/fields/class-acf-field-accordion.php:96 -msgid "Allow this accordion to open without closing others." -msgstr "" -"他のアコーディオンを閉じずにこのアコーディオンを開くことができるようにする。" - -#: includes/fields/class-acf-field-accordion.php:95 -msgid "Multi-Expand" -msgstr "マルチ展開" - -#: includes/fields/class-acf-field-accordion.php:85 -msgid "Display this accordion as open on page load." -msgstr "このアコーディオンをページの読み込み時に開いた状態で表示します。" - -#: includes/fields/class-acf-field-accordion.php:84 -msgid "Open" -msgstr "受付中" - -#: includes/fields/class-acf-field-accordion.php:25 -msgid "Accordion" -msgstr "アコーディオン" - -#: includes/fields/class-acf-field-file.php:267 -#: includes/fields/class-acf-field-file.php:279 -msgid "Restrict which files can be uploaded" -msgstr "アップロード可能なファイルを制限" - -#: includes/fields/class-acf-field-file.php:220 -msgid "File ID" -msgstr "ファイル ID" - -#: includes/fields/class-acf-field-file.php:219 -msgid "File URL" -msgstr "ファイルの URL" - -#: includes/fields/class-acf-field-file.php:218 -msgid "File Array" -msgstr "ファイル配列" - -#: includes/fields/class-acf-field-file.php:186 -msgid "Add File" -msgstr "ファイルを追加" - -#: includes/admin/tools/class-acf-admin-tool-import.php:156 -#: includes/fields/class-acf-field-file.php:186 -msgid "No file selected" -msgstr "ファイルが選択されていません" - -#: includes/fields/class-acf-field-file.php:150 -msgid "File name" -msgstr "ファイル名" - -#: includes/fields/class-acf-field-file.php:63 -#: assets/build/js/acf-input.js:2474 assets/build/js/acf-input.js:2625 -msgid "Update File" -msgstr "ファイルを更新" - -#: includes/fields/class-acf-field-file.php:62 -#: assets/build/js/acf-input.js:2473 assets/build/js/acf-input.js:2624 -msgid "Edit File" -msgstr "ファイルを編集" - -#: includes/admin/tools/class-acf-admin-tool-import.php:58 -#: includes/fields/class-acf-field-file.php:61 -#: assets/build/js/acf-input.js:2447 assets/build/js/acf-input.js:2597 -msgid "Select File" -msgstr "ファイルを選択" - -#: includes/fields/class-acf-field-file.php:25 -msgid "File" -msgstr "ファイル" - -#: includes/fields/class-acf-field-password.php:25 -msgid "Password" -msgstr "パスワード" - -#: includes/fields/class-acf-field-select.php:392 -msgid "Specify the value returned" -msgstr "戻り値を指定します" - -#: includes/fields/class-acf-field-select.php:461 -msgid "Use AJAX to lazy load choices?" -msgstr "AJAX を使用して選択肢を遅延読み込みしますか ?" - -#: includes/fields/class-acf-field-checkbox.php:362 -#: includes/fields/class-acf-field-select.php:381 -msgid "Enter each default value on a new line" -msgstr "新しい行に各デフォルト値を入力してください" - -#: includes/fields/class-acf-field-select.php:252 includes/media.php:48 -#: assets/build/js/acf-input.js:6790 assets/build/js/acf-input.js:7266 -msgctxt "verb" -msgid "Select" -msgstr "選択" - -#: includes/fields/class-acf-field-select.php:121 -msgctxt "Select2 JS load_fail" -msgid "Loading failed" -msgstr "読み込み失敗" - -#: includes/fields/class-acf-field-select.php:120 -msgctxt "Select2 JS searching" -msgid "Searching…" -msgstr "検索中…" - -#: includes/fields/class-acf-field-select.php:119 -msgctxt "Select2 JS load_more" -msgid "Loading more results…" -msgstr "結果をさらに読み込み中…" - -#: includes/fields/class-acf-field-select.php:118 -msgctxt "Select2 JS selection_too_long_n" -msgid "You can only select %d items" -msgstr "%d項目のみ選択可能です" - -#: includes/fields/class-acf-field-select.php:117 -msgctxt "Select2 JS selection_too_long_1" -msgid "You can only select 1 item" -msgstr "1項目のみ選択可能です" - -#: includes/fields/class-acf-field-select.php:116 -msgctxt "Select2 JS input_too_long_n" -msgid "Please delete %d characters" -msgstr "%d文字を削除してください" - -#: includes/fields/class-acf-field-select.php:115 -msgctxt "Select2 JS input_too_long_1" -msgid "Please delete 1 character" -msgstr "1文字削除してください" - -#: includes/fields/class-acf-field-select.php:114 -msgctxt "Select2 JS input_too_short_n" -msgid "Please enter %d or more characters" -msgstr "%d文字以上を入力してください" - -#: includes/fields/class-acf-field-select.php:113 -msgctxt "Select2 JS input_too_short_1" -msgid "Please enter 1 or more characters" -msgstr "1つ以上の文字を入力してください" - -#: includes/fields/class-acf-field-select.php:112 -msgctxt "Select2 JS matches_0" -msgid "No matches found" -msgstr "一致する項目がありません" - -#: includes/fields/class-acf-field-select.php:111 -msgctxt "Select2 JS matches_n" -msgid "%d results are available, use up and down arrow keys to navigate." -msgstr "%d件の結果が見つかりました。上下矢印キーを使って移動してください。" - -#: includes/fields/class-acf-field-select.php:110 -msgctxt "Select2 JS matches_1" -msgid "One result is available, press enter to select it." -msgstr "1件の結果が利用可能です。Enter を押して選択してください。" - -#: includes/fields/class-acf-field-select.php:25 -#: includes/fields/class-acf-field-taxonomy.php:763 -msgctxt "noun" -msgid "Select" -msgstr "選択" - -#: includes/fields/class-acf-field-user.php:73 -msgid "User ID" -msgstr "ユーザー ID" - -#: includes/fields/class-acf-field-user.php:72 -msgid "User Object" -msgstr "ユーザーオブジェクト" - -#: includes/fields/class-acf-field-user.php:71 -msgid "User Array" -msgstr "ユーザー配列" - -#: includes/fields/class-acf-field-user.php:59 -msgid "All user roles" -msgstr "すべてのユーザー権限グループ" - -#: includes/fields/class-acf-field-user.php:51 -msgid "Filter by Role" -msgstr "権限グループで絞り込む" - -#: includes/fields/class-acf-field-user.php:15 includes/locations.php:101 -msgid "User" -msgstr "ユーザー" - -#: includes/fields/class-acf-field-separator.php:25 -msgid "Separator" -msgstr "区切り" - -#: includes/fields/class-acf-field-color_picker.php:75 -msgid "Select Color" -msgstr "色を選択" - -#: includes/admin/post-types/admin-post-type.php:129 -#: includes/admin/post-types/admin-taxonomy.php:131 -#: includes/fields/class-acf-field-color_picker.php:73 -#: assets/build/js/acf-internal-post-type.js:72 -#: assets/build/js/acf-internal-post-type.js:86 -msgid "Default" -msgstr "デフォルト" - -#: includes/admin/views/acf-post-type/advanced-settings.php:89 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:141 -#: includes/fields/class-acf-field-color_picker.php:71 -msgid "Clear" -msgstr "クリア" - -#: includes/fields/class-acf-field-color_picker.php:25 -msgid "Color Picker" -msgstr "カラーピッカー" - -#: includes/fields/class-acf-field-date_time_picker.php:88 -msgctxt "Date Time Picker JS pmTextShort" -msgid "P" -msgstr "P" - -#: includes/fields/class-acf-field-date_time_picker.php:87 -msgctxt "Date Time Picker JS pmText" -msgid "PM" -msgstr "PM" - -#: includes/fields/class-acf-field-date_time_picker.php:84 -msgctxt "Date Time Picker JS amTextShort" -msgid "A" -msgstr "A" - -#: includes/fields/class-acf-field-date_time_picker.php:83 -msgctxt "Date Time Picker JS amText" -msgid "AM" -msgstr "AM" - -#: includes/fields/class-acf-field-date_time_picker.php:81 -msgctxt "Date Time Picker JS selectText" -msgid "Select" -msgstr "選択" - -#: includes/fields/class-acf-field-date_time_picker.php:80 -msgctxt "Date Time Picker JS closeText" -msgid "Done" -msgstr "完了" - -#: includes/fields/class-acf-field-date_time_picker.php:79 -msgctxt "Date Time Picker JS currentText" -msgid "Now" -msgstr "現在" - -#: includes/fields/class-acf-field-date_time_picker.php:78 -msgctxt "Date Time Picker JS timezoneText" -msgid "Time Zone" -msgstr "タイムゾーン" - -#: includes/fields/class-acf-field-date_time_picker.php:77 -msgctxt "Date Time Picker JS microsecText" -msgid "Microsecond" -msgstr "マイクロ秒" - -#: includes/fields/class-acf-field-date_time_picker.php:76 -msgctxt "Date Time Picker JS millisecText" -msgid "Millisecond" -msgstr "ミリ秒" - -#: includes/fields/class-acf-field-date_time_picker.php:75 -msgctxt "Date Time Picker JS secondText" -msgid "Second" -msgstr "秒" - -#: includes/fields/class-acf-field-date_time_picker.php:74 -msgctxt "Date Time Picker JS minuteText" -msgid "Minute" -msgstr "分" - -#: includes/fields/class-acf-field-date_time_picker.php:73 -msgctxt "Date Time Picker JS hourText" -msgid "Hour" -msgstr "時" - -#: includes/fields/class-acf-field-date_time_picker.php:72 -msgctxt "Date Time Picker JS timeText" -msgid "Time" -msgstr "時間" - -#: includes/fields/class-acf-field-date_time_picker.php:71 -msgctxt "Date Time Picker JS timeOnlyTitle" -msgid "Choose Time" -msgstr "時間を選択" - -#: includes/fields/class-acf-field-date_time_picker.php:25 -msgid "Date Time Picker" -msgstr "日時選択ツール" - -#: includes/fields/class-acf-field-accordion.php:106 -msgid "Endpoint" -msgstr "エンドポイント" - -#: includes/admin/views/acf-field-group/options.php:130 -#: includes/fields/class-acf-field-tab.php:115 -msgid "Left aligned" -msgstr "左揃え" - -#: includes/admin/views/acf-field-group/options.php:129 -#: includes/fields/class-acf-field-tab.php:114 -msgid "Top aligned" -msgstr "上揃え" - -#: includes/fields/class-acf-field-tab.php:110 -msgid "Placement" -msgstr "配置" - -#: includes/fields/class-acf-field-tab.php:26 -msgid "Tab" -msgstr "タブ" - -#: includes/fields/class-acf-field-url.php:162 -msgid "Value must be a valid URL" -msgstr "値は有効な URL である必要があります" - -#: includes/fields/class-acf-field-link.php:177 -msgid "Link URL" -msgstr "リンク URL" - -#: includes/fields/class-acf-field-link.php:176 -msgid "Link Array" -msgstr "リンク配列" - -#: includes/fields/class-acf-field-link.php:145 -msgid "Opens in a new window/tab" -msgstr "新しいウィンドウまたはタブで開く" - -#: includes/fields/class-acf-field-link.php:140 -msgid "Select Link" -msgstr "リンクを選択" - -#: includes/fields/class-acf-field-link.php:25 -msgid "Link" -msgstr "リンク" - -#: includes/fields/class-acf-field-email.php:25 -msgid "Email" -msgstr "メール" - -#: includes/fields/class-acf-field-number.php:188 -#: includes/fields/class-acf-field-range.php:217 -msgid "Step Size" -msgstr "ステップサイズ" - -#: includes/fields/class-acf-field-number.php:158 -#: includes/fields/class-acf-field-range.php:195 -msgid "Maximum Value" -msgstr "最大値" - -#: includes/fields/class-acf-field-number.php:148 -#: includes/fields/class-acf-field-range.php:184 -msgid "Minimum Value" -msgstr "最小値" - -#: includes/fields/class-acf-field-range.php:25 -msgid "Range" -msgstr "範囲" - -#: includes/fields/class-acf-field-button-group.php:175 -#: includes/fields/class-acf-field-checkbox.php:379 -#: includes/fields/class-acf-field-radio.php:220 -#: includes/fields/class-acf-field-select.php:399 -msgid "Both (Array)" -msgstr "両方 (配列)" - -#: includes/admin/views/acf-field-group/fields.php:52 -#: includes/fields/class-acf-field-button-group.php:174 -#: includes/fields/class-acf-field-checkbox.php:378 -#: includes/fields/class-acf-field-radio.php:219 -#: includes/fields/class-acf-field-select.php:398 -msgid "Label" -msgstr "ラベル" - -#: includes/fields/class-acf-field-button-group.php:173 -#: includes/fields/class-acf-field-checkbox.php:377 -#: includes/fields/class-acf-field-radio.php:218 -#: includes/fields/class-acf-field-select.php:397 -msgid "Value" -msgstr "値" - -#: includes/fields/class-acf-field-button-group.php:222 -#: includes/fields/class-acf-field-checkbox.php:441 -#: includes/fields/class-acf-field-radio.php:292 -msgid "Vertical" -msgstr "垂直" - -#: includes/fields/class-acf-field-button-group.php:221 -#: includes/fields/class-acf-field-checkbox.php:442 -#: includes/fields/class-acf-field-radio.php:293 -msgid "Horizontal" -msgstr "水平" - -#: includes/fields/class-acf-field-button-group.php:148 -#: includes/fields/class-acf-field-checkbox.php:352 -#: includes/fields/class-acf-field-radio.php:193 -#: includes/fields/class-acf-field-select.php:370 -msgid "red : Red" -msgstr "red : Red" - -#: includes/fields/class-acf-field-button-group.php:148 -#: includes/fields/class-acf-field-checkbox.php:352 -#: includes/fields/class-acf-field-radio.php:193 -#: includes/fields/class-acf-field-select.php:370 -msgid "For more control, you may specify both a value and label like this:" -msgstr "下記のように記述すると、値とラベルの両方を制御することができます:" - -#: includes/fields/class-acf-field-button-group.php:148 -#: includes/fields/class-acf-field-checkbox.php:352 -#: includes/fields/class-acf-field-radio.php:193 -#: includes/fields/class-acf-field-select.php:370 -msgid "Enter each choice on a new line." -msgstr "選択肢を改行で区切って入力してください。" - -#: includes/fields/class-acf-field-button-group.php:147 -#: includes/fields/class-acf-field-checkbox.php:351 -#: includes/fields/class-acf-field-radio.php:192 -#: includes/fields/class-acf-field-select.php:369 -msgid "Choices" -msgstr "選択肢" - -#: includes/fields/class-acf-field-button-group.php:24 -msgid "Button Group" -msgstr "ボタングループ" - -#: includes/fields/class-acf-field-button-group.php:194 -#: includes/fields/class-acf-field-page_link.php:538 -#: includes/fields/class-acf-field-post_object.php:448 -#: includes/fields/class-acf-field-radio.php:238 -#: includes/fields/class-acf-field-select.php:429 -#: includes/fields/class-acf-field-taxonomy.php:772 -#: includes/fields/class-acf-field-user.php:103 -msgid "Allow Null" -msgstr "空の値を許可" - -#: includes/fields/class-acf-field-page_link.php:263 -#: includes/fields/class-acf-field-post_object.php:257 -#: includes/fields/class-acf-field-taxonomy.php:930 -msgid "Parent" -msgstr "親" - -#: includes/fields/class-acf-field-wysiwyg.php:390 -msgid "TinyMCE will not be initialized until field is clicked" -msgstr "フィールドがクリックされるまで TinyMCE は初期化されません" - -#: includes/fields/class-acf-field-wysiwyg.php:389 -msgid "Delay Initialization" -msgstr "初期化を遅延させる" - -#: includes/fields/class-acf-field-wysiwyg.php:378 -msgid "Show Media Upload Buttons" -msgstr "メディアアップロードボタンを表示" - -#: includes/fields/class-acf-field-wysiwyg.php:362 -msgid "Toolbar" -msgstr "ツールバー" - -#: includes/fields/class-acf-field-wysiwyg.php:354 -msgid "Text Only" -msgstr "テキストのみ" - -#: includes/fields/class-acf-field-wysiwyg.php:353 -msgid "Visual Only" -msgstr "ビジュアルのみ" - -#: includes/fields/class-acf-field-wysiwyg.php:352 -msgid "Visual & Text" -msgstr "ビジュアルとテキスト" - -#: includes/fields/class-acf-field-wysiwyg.php:347 -msgid "Tabs" -msgstr "タブ" - -#: includes/fields/class-acf-field-wysiwyg.php:285 -msgid "Click to initialize TinyMCE" -msgstr "クリックして TinyMCE を初期化" - -#: includes/fields/class-acf-field-wysiwyg.php:279 -msgctxt "Name for the Text editor tab (formerly HTML)" -msgid "Text" -msgstr "テキスト" - -#: includes/fields/class-acf-field-wysiwyg.php:278 -msgid "Visual" -msgstr "ビジュアル" - -#: includes/fields/class-acf-field-text.php:189 -#: includes/fields/class-acf-field-textarea.php:236 -msgid "Value must not exceed %d characters" -msgstr "値は%d文字以内である必要があります" - -#: includes/fields/class-acf-field-text.php:124 -#: includes/fields/class-acf-field-textarea.php:124 -msgid "Leave blank for no limit" -msgstr "制限しない場合は空白にする" - -#: includes/fields/class-acf-field-text.php:123 -#: includes/fields/class-acf-field-textarea.php:123 -msgid "Character Limit" -msgstr "文字数制限" - -#: includes/fields/class-acf-field-email.php:158 -#: includes/fields/class-acf-field-number.php:209 -#: includes/fields/class-acf-field-password.php:105 -#: includes/fields/class-acf-field-range.php:239 -#: includes/fields/class-acf-field-text.php:164 -msgid "Appears after the input" -msgstr "入力内容の後に表示" - -#: includes/fields/class-acf-field-email.php:157 -#: includes/fields/class-acf-field-number.php:208 -#: includes/fields/class-acf-field-password.php:104 -#: includes/fields/class-acf-field-range.php:238 -#: includes/fields/class-acf-field-text.php:163 -msgid "Append" -msgstr "追加" - -#: includes/fields/class-acf-field-email.php:148 -#: includes/fields/class-acf-field-number.php:199 -#: includes/fields/class-acf-field-password.php:95 -#: includes/fields/class-acf-field-range.php:229 -#: includes/fields/class-acf-field-text.php:154 -msgid "Appears before the input" -msgstr "入力内容の前に表示" - -#: includes/fields/class-acf-field-email.php:147 -#: includes/fields/class-acf-field-number.php:198 -#: includes/fields/class-acf-field-password.php:94 -#: includes/fields/class-acf-field-range.php:228 -#: includes/fields/class-acf-field-text.php:153 -msgid "Prepend" -msgstr "先頭に追加" - -#: includes/fields/class-acf-field-email.php:138 -#: includes/fields/class-acf-field-number.php:179 -#: includes/fields/class-acf-field-password.php:85 -#: includes/fields/class-acf-field-text.php:144 -#: includes/fields/class-acf-field-textarea.php:156 -#: includes/fields/class-acf-field-url.php:122 -msgid "Appears within the input" -msgstr "入力内容の中に表示" - -#: includes/fields/class-acf-field-email.php:137 -#: includes/fields/class-acf-field-number.php:178 -#: includes/fields/class-acf-field-password.php:84 -#: includes/fields/class-acf-field-text.php:143 -#: includes/fields/class-acf-field-textarea.php:155 -#: includes/fields/class-acf-field-url.php:121 -msgid "Placeholder Text" -msgstr "プレースホルダーテキスト" - -#: includes/fields/class-acf-field-button-group.php:158 -#: includes/fields/class-acf-field-email.php:118 -#: includes/fields/class-acf-field-number.php:129 -#: includes/fields/class-acf-field-radio.php:203 -#: includes/fields/class-acf-field-range.php:165 -#: includes/fields/class-acf-field-text.php:104 -#: includes/fields/class-acf-field-textarea.php:104 -#: includes/fields/class-acf-field-url.php:102 -#: includes/fields/class-acf-field-wysiwyg.php:312 -msgid "Appears when creating a new post" -msgstr "新規投稿作成時に表示" - -#: includes/fields/class-acf-field-text.php:25 -msgid "Text" -msgstr "テキスト" - -#: includes/fields/class-acf-field-relationship.php:794 -msgid "%1$s requires at least %2$s selection" -msgid_plural "%1$s requires at least %2$s selections" -msgstr[0] "%1$sは%2$s個以上選択する必要があります" - -#: includes/fields/class-acf-field-post_object.php:417 -#: includes/fields/class-acf-field-relationship.php:644 -msgid "Post ID" -msgstr "投稿 ID" - -#: includes/fields/class-acf-field-post_object.php:17 -#: includes/fields/class-acf-field-post_object.php:416 -#: includes/fields/class-acf-field-relationship.php:643 -msgid "Post Object" -msgstr "投稿オブジェクト" - -#: includes/fields/class-acf-field-relationship.php:676 -msgid "Maximum Posts" -msgstr "最大投稿数" - -#: includes/fields/class-acf-field-relationship.php:666 -msgid "Minimum Posts" -msgstr "最小投稿数" - -#: includes/admin/views/acf-field-group/options.php:183 -#: includes/admin/views/acf-post-type/advanced-settings.php:29 -#: includes/fields/class-acf-field-relationship.php:701 -msgid "Featured Image" -msgstr "アイキャッチ画像" - -#: includes/fields/class-acf-field-relationship.php:697 -msgid "Selected elements will be displayed in each result" -msgstr "選択した要素がそれぞれの結果に表示されます" - -#: includes/fields/class-acf-field-relationship.php:696 -msgid "Elements" -msgstr "要素" - -#: includes/fields/class-acf-field-relationship.php:630 -#: includes/fields/class-acf-field-taxonomy.php:20 -#: includes/fields/class-acf-field-taxonomy.php:692 -#: includes/locations/class-acf-location-taxonomy.php:22 -msgid "Taxonomy" -msgstr "タクソノミー" - -#: includes/fields/class-acf-field-relationship.php:629 -#: includes/locations/class-acf-location-post-type.php:22 -#: includes/post-types/class-acf-post-type.php:92 -msgid "Post Type" -msgstr "投稿タイプ" - -#: includes/fields/class-acf-field-relationship.php:623 -msgid "Filters" -msgstr "フィルター" - -#: includes/fields/class-acf-field-page_link.php:499 -#: includes/fields/class-acf-field-post_object.php:404 -#: includes/fields/class-acf-field-relationship.php:616 -msgid "All taxonomies" -msgstr "すべてのタクソノミー" - -#: includes/fields/class-acf-field-page_link.php:491 -#: includes/fields/class-acf-field-post_object.php:396 -#: includes/fields/class-acf-field-relationship.php:608 -msgid "Filter by Taxonomy" -msgstr "タクソノミーで絞り込み" - -#: includes/fields/class-acf-field-page_link.php:469 -#: includes/fields/class-acf-field-post_object.php:374 -#: includes/fields/class-acf-field-relationship.php:586 -msgid "All post types" -msgstr "すべての投稿タイプ" - -#: includes/fields/class-acf-field-page_link.php:461 -#: includes/fields/class-acf-field-post_object.php:366 -#: includes/fields/class-acf-field-relationship.php:578 -msgid "Filter by Post Type" -msgstr "投稿タイプでフィルター" - -#: includes/fields/class-acf-field-relationship.php:476 -msgid "Search..." -msgstr "検索…" - -#: includes/fields/class-acf-field-relationship.php:406 -msgid "Select taxonomy" -msgstr "タクソノミーを選択" - -#: includes/fields/class-acf-field-relationship.php:397 -msgid "Select post type" -msgstr "投稿タイプを選択" - -#: includes/fields/class-acf-field-relationship.php:61 -#: assets/build/js/acf-input.js:3930 assets/build/js/acf-input.js:4214 -msgid "No matches found" -msgstr "一致する項目がありません" - -#: includes/fields/class-acf-field-relationship.php:60 -#: assets/build/js/acf-input.js:3913 assets/build/js/acf-input.js:4193 -msgid "Loading" -msgstr "読み込み中" - -#: includes/fields/class-acf-field-relationship.php:59 -#: assets/build/js/acf-input.js:3818 assets/build/js/acf-input.js:4084 -msgid "Maximum values reached ( {max} values )" -msgstr "最大値 ({max}) に達しました" - -#: includes/fields/class-acf-field-relationship.php:17 -msgid "Relationship" -msgstr "関係" - -#: includes/fields/class-acf-field-file.php:291 -#: includes/fields/class-acf-field-image.php:317 -msgid "Comma separated list. Leave blank for all types" -msgstr "カンマ区切りのリスト。すべてのタイプを許可する場合は空白のままにします" - -#: includes/fields/class-acf-field-file.php:290 -#: includes/fields/class-acf-field-image.php:316 -msgid "Allowed File Types" -msgstr "許可されるファイルの種類" - -#: includes/fields/class-acf-field-file.php:278 -#: includes/fields/class-acf-field-image.php:280 -msgid "Maximum" -msgstr "最大" - -#: includes/fields/class-acf-field-file.php:154 -#: includes/fields/class-acf-field-file.php:270 -#: includes/fields/class-acf-field-file.php:282 -#: includes/fields/class-acf-field-image.php:271 -#: includes/fields/class-acf-field-image.php:307 -msgid "File size" -msgstr "ファイルサイズ" - -#: includes/fields/class-acf-field-image.php:245 -#: includes/fields/class-acf-field-image.php:281 -msgid "Restrict which images can be uploaded" -msgstr "アップロード可能な画像を制限" - -#: includes/fields/class-acf-field-file.php:266 -#: includes/fields/class-acf-field-image.php:244 -msgid "Minimum" -msgstr "最小" - -#: includes/fields/class-acf-field-file.php:235 -#: includes/fields/class-acf-field-image.php:210 -msgid "Uploaded to post" -msgstr "投稿にアップロード" - -#: includes/fields/class-acf-field-file.php:234 -#: includes/fields/class-acf-field-image.php:209 -#: includes/locations/class-acf-location-attachment.php:73 -#: includes/locations/class-acf-location-comment.php:61 -#: includes/locations/class-acf-location-nav-menu.php:74 -#: includes/locations/class-acf-location-taxonomy.php:63 -#: includes/locations/class-acf-location-user-form.php:71 -#: includes/locations/class-acf-location-user-role.php:78 -#: includes/locations/class-acf-location-widget.php:65 -msgid "All" -msgstr "すべて" - -#: includes/fields/class-acf-field-file.php:229 -#: includes/fields/class-acf-field-image.php:204 -msgid "Limit the media library choice" -msgstr "メディアライブラリの選択肢を制限" - -#: includes/fields/class-acf-field-file.php:228 -#: includes/fields/class-acf-field-image.php:203 -msgid "Library" -msgstr "ライブラリ" - -#: includes/fields/class-acf-field-image.php:336 -msgid "Preview Size" -msgstr "プレビューサイズ" - -#: includes/fields/class-acf-field-image.php:195 -msgid "Image ID" -msgstr "画像 ID" - -#: includes/fields/class-acf-field-image.php:194 -msgid "Image URL" -msgstr "画像 URL" - -#: includes/fields/class-acf-field-image.php:193 -msgid "Image Array" -msgstr "画像配列" - -#: includes/fields/class-acf-field-button-group.php:168 -#: includes/fields/class-acf-field-checkbox.php:372 -#: includes/fields/class-acf-field-file.php:213 -#: includes/fields/class-acf-field-link.php:171 -#: includes/fields/class-acf-field-radio.php:213 -msgid "Specify the returned value on front end" -msgstr "フロントエンドへの返り値を指定してください" - -#: includes/fields/class-acf-field-button-group.php:167 -#: includes/fields/class-acf-field-checkbox.php:371 -#: includes/fields/class-acf-field-file.php:212 -#: includes/fields/class-acf-field-link.php:170 -#: includes/fields/class-acf-field-radio.php:212 -#: includes/fields/class-acf-field-taxonomy.php:736 -msgid "Return Value" -msgstr "返り値" - -#: includes/fields/class-acf-field-image.php:162 -msgid "Add Image" -msgstr "画像を追加" - -#: includes/fields/class-acf-field-image.php:162 -msgid "No image selected" -msgstr "画像が選択されていません" - -#: includes/assets.php:352 includes/fields/class-acf-field-file.php:162 -#: includes/fields/class-acf-field-image.php:142 -#: includes/fields/class-acf-field-link.php:145 assets/build/js/acf.js:1563 -#: assets/build/js/acf.js:1657 -msgid "Remove" -msgstr "削除" - -#: includes/admin/views/acf-field-group/field.php:76 -#: includes/fields/class-acf-field-file.php:160 -#: includes/fields/class-acf-field-image.php:140 -#: includes/fields/class-acf-field-link.php:145 -msgid "Edit" -msgstr "編集" - -#: includes/fields/class-acf-field-image.php:70 includes/media.php:55 -#: assets/build/js/acf-input.js:6837 assets/build/js/acf-input.js:7320 -msgid "All images" -msgstr "すべての画像" - -#: includes/fields/class-acf-field-image.php:69 -#: assets/build/js/acf-input.js:3181 assets/build/js/acf-input.js:3399 -msgid "Update Image" -msgstr "画像を更新" - -#: includes/fields/class-acf-field-image.php:68 -#: assets/build/js/acf-input.js:3180 assets/build/js/acf-input.js:3398 -msgid "Edit Image" -msgstr "画像を編集" - -#: includes/fields/class-acf-field-image.php:67 -#: assets/build/js/acf-input.js:3156 assets/build/js/acf-input.js:3373 -msgid "Select Image" -msgstr "画像を選択" - -#: includes/fields/class-acf-field-image.php:25 -msgid "Image" -msgstr "画像" - -#: includes/fields/class-acf-field-message.php:125 -msgid "Allow HTML markup to display as visible text instead of rendering" -msgstr "HTML マークアップのコードとして表示を許可" - -#: includes/fields/class-acf-field-message.php:124 -msgid "Escape HTML" -msgstr "HTML をエスケープ" - -#: includes/fields/class-acf-field-message.php:116 -#: includes/fields/class-acf-field-textarea.php:172 -msgid "No Formatting" -msgstr "書式設定なし" - -#: includes/fields/class-acf-field-message.php:115 -#: includes/fields/class-acf-field-textarea.php:171 -msgid "Automatically add <br>" -msgstr "自動的に <br> を追加" - -#: includes/fields/class-acf-field-message.php:114 -#: includes/fields/class-acf-field-textarea.php:170 -msgid "Automatically add paragraphs" -msgstr "自動的に段落追加する" - -#: includes/fields/class-acf-field-message.php:110 -#: includes/fields/class-acf-field-textarea.php:166 -msgid "Controls how new lines are rendered" -msgstr "改行をどのように表示するか制御" - -#: includes/fields/class-acf-field-message.php:109 -#: includes/fields/class-acf-field-textarea.php:165 -msgid "New Lines" -msgstr "改行" - -#: includes/fields/class-acf-field-date_picker.php:232 -#: includes/fields/class-acf-field-date_time_picker.php:220 -msgid "Week Starts On" -msgstr "週の始まり" - -#: includes/fields/class-acf-field-date_picker.php:201 -msgid "The format used when saving a value" -msgstr "値を保存するときに使用される形式" - -#: includes/fields/class-acf-field-date_picker.php:200 -msgid "Save Format" -msgstr "書式を保存" - -#: includes/fields/class-acf-field-date_picker.php:67 -msgctxt "Date Picker JS weekHeader" -msgid "Wk" -msgstr "Wk" - -#: includes/fields/class-acf-field-date_picker.php:66 -msgctxt "Date Picker JS prevText" -msgid "Prev" -msgstr "前へ" - -#: includes/fields/class-acf-field-date_picker.php:65 -msgctxt "Date Picker JS nextText" -msgid "Next" -msgstr "次へ" - -#: includes/fields/class-acf-field-date_picker.php:64 -msgctxt "Date Picker JS currentText" -msgid "Today" -msgstr "今日" - -#: includes/fields/class-acf-field-date_picker.php:63 -msgctxt "Date Picker JS closeText" -msgid "Done" -msgstr "完了" - -#: includes/fields/class-acf-field-date_picker.php:25 -msgid "Date Picker" -msgstr "日付選択ツール" - -#: includes/fields/class-acf-field-image.php:248 -#: includes/fields/class-acf-field-image.php:284 -#: includes/fields/class-acf-field-oembed.php:268 -msgid "Width" -msgstr "幅" - -#: includes/fields/class-acf-field-oembed.php:265 -#: includes/fields/class-acf-field-oembed.php:277 -msgid "Embed Size" -msgstr "埋め込みサイズ" - -#: includes/fields/class-acf-field-oembed.php:222 -msgid "Enter URL" -msgstr "URL を入力" - -#: includes/fields/class-acf-field-oembed.php:25 -msgid "oEmbed" -msgstr "oEmbed" - -#: includes/fields/class-acf-field-true_false.php:184 -msgid "Text shown when inactive" -msgstr "無効化時に表示されるテキスト" - -#: includes/fields/class-acf-field-true_false.php:183 -msgid "Off Text" -msgstr "無効化時のテキスト" - -#: includes/fields/class-acf-field-true_false.php:168 -msgid "Text shown when active" -msgstr "有効時に表示するテキスト" - -#: includes/fields/class-acf-field-true_false.php:167 -msgid "On Text" -msgstr "アクティブ時のテキスト" - -#: includes/fields/class-acf-field-select.php:450 -#: includes/fields/class-acf-field-true_false.php:199 -msgid "Stylized UI" -msgstr "スタイリッシュな UI" - -#: includes/fields/class-acf-field-button-group.php:157 -#: includes/fields/class-acf-field-checkbox.php:361 -#: includes/fields/class-acf-field-color_picker.php:156 -#: includes/fields/class-acf-field-email.php:117 -#: includes/fields/class-acf-field-number.php:128 -#: includes/fields/class-acf-field-radio.php:202 -#: includes/fields/class-acf-field-range.php:164 -#: includes/fields/class-acf-field-select.php:380 -#: includes/fields/class-acf-field-text.php:103 -#: includes/fields/class-acf-field-textarea.php:103 -#: includes/fields/class-acf-field-true_false.php:147 -#: includes/fields/class-acf-field-url.php:101 -#: includes/fields/class-acf-field-wysiwyg.php:311 -msgid "Default Value" -msgstr "初期値" - -#: includes/fields/class-acf-field-true_false.php:138 -msgid "Displays text alongside the checkbox" -msgstr "チェックボックスの横にテキストを表示" - -#: includes/fields/class-acf-field-message.php:26 -#: includes/fields/class-acf-field-message.php:99 -#: includes/fields/class-acf-field-true_false.php:137 -msgid "Message" -msgstr "メッセージ" - -#: includes/assets.php:351 includes/fields/class-acf-field-true_false.php:86 -#: includes/fields/class-acf-field-true_false.php:187 -#: assets/build/js/acf.js:1740 assets/build/js/acf.js:1857 -msgid "No" -msgstr "いいえ" - -#: includes/assets.php:350 includes/fields/class-acf-field-true_false.php:83 -#: includes/fields/class-acf-field-true_false.php:171 -#: assets/build/js/acf.js:1739 assets/build/js/acf.js:1856 -msgid "Yes" -msgstr "はい" - -#: includes/fields/class-acf-field-true_false.php:25 -msgid "True / False" -msgstr "真/偽" - -#: includes/fields/class-acf-field-group.php:474 -msgid "Row" -msgstr "行" - -#: includes/fields/class-acf-field-group.php:473 -msgid "Table" -msgstr "テーブル" - -#: includes/admin/post-types/admin-field-group.php:140 -#: includes/fields/class-acf-field-group.php:472 -msgid "Block" -msgstr "ブロック" - -#: includes/fields/class-acf-field-group.php:467 -msgid "Specify the style used to render the selected fields" -msgstr "選択したフィールドのレンダリングに使用されるスタイルを指定します" - -#: includes/fields.php:356 includes/fields/class-acf-field-button-group.php:215 -#: includes/fields/class-acf-field-checkbox.php:435 -#: includes/fields/class-acf-field-group.php:466 -#: includes/fields/class-acf-field-radio.php:286 -msgid "Layout" -msgstr "レイアウト" - -#: includes/fields/class-acf-field-group.php:450 -msgid "Sub Fields" -msgstr "サブフィールド" - -#: includes/fields/class-acf-field-group.php:25 -msgid "Group" -msgstr "グループ" - -#: includes/fields/class-acf-field-google-map.php:235 -msgid "Customize the map height" -msgstr "地図の高さをカスタマイズ" - -#: includes/fields/class-acf-field-google-map.php:234 -#: includes/fields/class-acf-field-image.php:259 -#: includes/fields/class-acf-field-image.php:295 -#: includes/fields/class-acf-field-oembed.php:280 -msgid "Height" -msgstr "高さ" - -#: includes/fields/class-acf-field-google-map.php:223 -msgid "Set the initial zoom level" -msgstr "地図のデフォルトズームレベルを設定" - -#: includes/fields/class-acf-field-google-map.php:222 -msgid "Zoom" -msgstr "ズーム" - -#: includes/fields/class-acf-field-google-map.php:196 -#: includes/fields/class-acf-field-google-map.php:209 -msgid "Center the initial map" -msgstr "地図のデフォルト中心位置を設定" - -#: includes/fields/class-acf-field-google-map.php:195 -#: includes/fields/class-acf-field-google-map.php:208 -msgid "Center" -msgstr "中央" - -#: includes/fields/class-acf-field-google-map.php:163 -msgid "Search for address..." -msgstr "住所を検索…" - -#: includes/fields/class-acf-field-google-map.php:160 -msgid "Find current location" -msgstr "現在の場所を検索" - -#: includes/fields/class-acf-field-google-map.php:159 -msgid "Clear location" -msgstr "位置情報をクリア" - -#: includes/fields/class-acf-field-google-map.php:158 -#: includes/fields/class-acf-field-relationship.php:628 -msgid "Search" -msgstr "検索" - -#: includes/fields/class-acf-field-google-map.php:63 -#: assets/build/js/acf-input.js:2840 assets/build/js/acf-input.js:3026 -msgid "Sorry, this browser does not support geolocation" -msgstr "お使いのブラウザーは位置情報機能に対応していません" - -#: includes/fields/class-acf-field-google-map.php:25 -msgid "Google Map" -msgstr "Google マップ" - -#: includes/fields/class-acf-field-date_picker.php:212 -#: includes/fields/class-acf-field-date_time_picker.php:201 -#: includes/fields/class-acf-field-time_picker.php:132 -msgid "The format returned via template functions" -msgstr "テンプレート関数で返されるフォーマット" - -#: includes/fields/class-acf-field-color_picker.php:180 -#: includes/fields/class-acf-field-date_picker.php:211 -#: includes/fields/class-acf-field-date_time_picker.php:200 -#: includes/fields/class-acf-field-image.php:187 -#: includes/fields/class-acf-field-post_object.php:411 -#: includes/fields/class-acf-field-relationship.php:638 -#: includes/fields/class-acf-field-select.php:391 -#: includes/fields/class-acf-field-time_picker.php:131 -#: includes/fields/class-acf-field-user.php:66 -msgid "Return Format" -msgstr "戻り値の形式" - -#: includes/fields/class-acf-field-date_picker.php:190 -#: includes/fields/class-acf-field-date_picker.php:221 -#: includes/fields/class-acf-field-date_time_picker.php:192 -#: includes/fields/class-acf-field-date_time_picker.php:210 -#: includes/fields/class-acf-field-time_picker.php:123 -#: includes/fields/class-acf-field-time_picker.php:139 -msgid "Custom:" -msgstr "カスタム:" - -#: includes/fields/class-acf-field-date_picker.php:182 -#: includes/fields/class-acf-field-date_time_picker.php:183 -#: includes/fields/class-acf-field-time_picker.php:116 -msgid "The format displayed when editing a post" -msgstr "投稿編集時に表示される書式" - -#: includes/fields/class-acf-field-date_picker.php:181 -#: includes/fields/class-acf-field-date_time_picker.php:182 -#: includes/fields/class-acf-field-time_picker.php:115 -msgid "Display Format" -msgstr "表示形式" - -#: includes/fields/class-acf-field-time_picker.php:25 -msgid "Time Picker" -msgstr "時間選択ツール" - -#. translators: counts for inactive field groups -#: acf.php:503 -msgid "Inactive (%s)" -msgid_plural "Inactive (%s)" -msgstr[0] "停止中 (%s)" - -#: acf.php:462 -msgid "No Fields found in Trash" -msgstr "ゴミ箱にフィールドが見つかりません" - -#: acf.php:461 -msgid "No Fields found" -msgstr "フィールドが見つかりません" - -#: acf.php:460 -msgid "Search Fields" -msgstr "フィールドを検索" - -#: acf.php:459 -msgid "View Field" -msgstr "フィールドを表示" - -#: acf.php:458 includes/admin/views/acf-field-group/fields.php:115 -msgid "New Field" -msgstr "新規フィールド" - -#: acf.php:457 -msgid "Edit Field" -msgstr "フィールドを編集" - -#: acf.php:456 -msgid "Add New Field" -msgstr "新規フィールドを追加" - -#: acf.php:454 -msgid "Field" -msgstr "フィールド" - -#: acf.php:453 includes/admin/post-types/admin-field-group.php:163 -#: includes/admin/post-types/admin-field-groups.php:119 -#: includes/admin/views/acf-field-group/fields.php:32 -msgid "Fields" -msgstr "フィールド" - -#: acf.php:428 -msgid "No Field Groups found in Trash" -msgstr "ゴミ箱にフィールドグループが見つかりません" - -#: acf.php:427 -msgid "No Field Groups found" -msgstr "フィールドグループが見つかりません" - -#: acf.php:426 -msgid "Search Field Groups" -msgstr "フィールドグループを検索" - -#: acf.php:425 -msgid "View Field Group" -msgstr "フィールドグループを表示" - -#: acf.php:424 -msgid "New Field Group" -msgstr "新規フィールドグループ" - -#: acf.php:423 -msgid "Edit Field Group" -msgstr "フィールドグループを編集" - -#: acf.php:422 -msgid "Add New Field Group" -msgstr "新規フィールドグループを追加" - -#: acf.php:421 acf.php:455 -#: includes/admin/views/acf-post-type/advanced-settings.php:219 -#: includes/admin/views/acf-post-type/advanced-settings.php:221 -#: includes/post-types/class-acf-post-type.php:93 -#: includes/post-types/class-acf-taxonomy.php:92 -msgid "Add New" -msgstr "新規追加" - -#: acf.php:420 -msgid "Field Group" -msgstr "フィールドグループ" - -#: acf.php:419 includes/admin/post-types/admin-field-groups.php:78 -#: includes/admin/post-types/admin-post-types.php:138 -#: includes/admin/post-types/admin-taxonomies.php:138 -msgid "Field Groups" -msgstr "フィールドグループ" - -#. Description of the plugin -msgid "Customize WordPress with powerful, professional and intuitive fields." -msgstr "" -"パワフル、プロフェッショナル、直感的なフィールドで WordPress をカスタマイズ。" - -#. Plugin URI of the plugin -msgid "https://www.advancedcustomfields.com" -msgstr "https://www.advancedcustomfields.com" - -#. Plugin Name of the plugin -#: acf.php:94 -msgid "Advanced Custom Fields" -msgstr "Advanced Custom Fields" - -#: pro/acf-pro.php:27 -msgid "Advanced Custom Fields PRO" -msgstr "Advanced Custom Fields PRO" - -#: pro/blocks.php:170 -msgid "Block type name is required." -msgstr "" - -#. translators: The name of the block type -#: pro/blocks.php:178 -msgid "Block type \"%s\" is already registered." -msgstr "" - -#: pro/blocks.php:726 -msgid "Switch to Edit" -msgstr "" - -#: pro/blocks.php:727 -msgid "Switch to Preview" -msgstr "" - -#: pro/blocks.php:728 -msgid "Change content alignment" -msgstr "" - -#. translators: %s: Block type title -#: pro/blocks.php:731 -msgid "%s settings" -msgstr "" - -#: pro/blocks.php:936 -msgid "This block contains no editable fields." -msgstr "" - -#. translators: %s: an admin URL to the field group edit screen -#: pro/blocks.php:942 -msgid "" -"Assign a field group to add fields to " -"this block." -msgstr "" - -#: pro/options-page.php:78 -msgid "Options Updated" -msgstr "オプションを更新しました" - -#: pro/updates.php:99 -msgid "" -"To enable updates, please enter your license key on the Updates page. If you don't have a licence key, please see details & pricing." -msgstr "" - -#: pro/updates.php:159 -msgid "" -"ACF Activation Error. Your defined license key has changed, but an " -"error occurred when deactivating your old licence" -msgstr "" - -#: pro/updates.php:154 -msgid "" -"ACF Activation Error. Your defined license key has changed, but an " -"error occurred when connecting to activation server" -msgstr "" - -#: pro/updates.php:192 -msgid "ACF Activation Error" -msgstr "" - -#: pro/updates.php:187 -msgid "" -"ACF Activation Error. An error occurred when connecting to activation " -"server" -msgstr "" - -#: pro/updates.php:279 -msgid "Check Again" -msgstr "再確認" - -#: pro/updates.php:593 -msgid "ACF Activation Error. Could not connect to activation server" -msgstr "" - -#: pro/admin/admin-options-page.php:195 -msgid "Publish" -msgstr "公開" - -#: pro/admin/admin-options-page.php:199 -msgid "" -"No Custom Field Groups found for this options page. Create a " -"Custom Field Group" -msgstr "" -"このオプションページにカスタムフィールドグループがありません. " -"カスタムフィールドグループを作成" - -#: pro/admin/admin-updates.php:52 -msgid "Error. Could not connect to update server" -msgstr "エラー 更新サーバーに接続できません" - -#: pro/admin/admin-updates.php:212 -msgid "" -"Error. Could not authenticate update package. Please check again or " -"deactivate and reactivate your ACF PRO license." -msgstr "" - -#: pro/admin/admin-updates.php:199 -msgid "" -"Error. Your license for this site has expired or been deactivated. " -"Please reactivate your ACF PRO license." -msgstr "" - -#: pro/fields/class-acf-field-clone.php:27, -#: pro/fields/class-acf-field-repeater.php:31 -msgid "" -"Allows you to select and display existing fields. It does not duplicate any " -"fields in the database, but loads and displays the selected fields at run-" -"time. The Clone field can either replace itself with the selected fields or " -"display the selected fields as a group of subfields." -msgstr "" - -#: pro/fields/class-acf-field-clone.php:819 -msgid "Select one or more fields you wish to clone" -msgstr "" - -#: pro/fields/class-acf-field-clone.php:838 -msgid "Display" -msgstr "表示" - -#: pro/fields/class-acf-field-clone.php:839 -msgid "Specify the style used to render the clone field" -msgstr "" - -#: pro/fields/class-acf-field-clone.php:844 -msgid "Group (displays selected fields in a group within this field)" -msgstr "" - -#: pro/fields/class-acf-field-clone.php:845 -msgid "Seamless (replaces this field with selected fields)" -msgstr "" - -#: pro/fields/class-acf-field-clone.php:868 -msgid "Labels will be displayed as %s" -msgstr "" - -#: pro/fields/class-acf-field-clone.php:873 -msgid "Prefix Field Labels" -msgstr "" - -#: pro/fields/class-acf-field-clone.php:883 -msgid "Values will be saved as %s" -msgstr "" - -#: pro/fields/class-acf-field-clone.php:888 -msgid "Prefix Field Names" -msgstr "" - -#: pro/fields/class-acf-field-clone.php:1005 -msgid "Unknown field" -msgstr "" - -#: pro/fields/class-acf-field-clone.php:1042 -msgid "Unknown field group" -msgstr "" - -#: pro/fields/class-acf-field-clone.php:1046 -msgid "All fields from %s field group" -msgstr "" - -#: pro/fields/class-acf-field-flexible-content.php:27 -msgid "" -"Allows you to define, create and manage content with total control by " -"creating layouts that contain subfields that content editors can choose from." -msgstr "" - -#: pro/fields/class-acf-field-flexible-content.php:36, -#: pro/fields/class-acf-field-repeater.php:103, -#: pro/fields/class-acf-field-repeater.php:297 -msgid "Add Row" -msgstr "行を追加" - -#: pro/fields/class-acf-field-flexible-content.php:76, -#: pro/fields/class-acf-field-flexible-content.php:943, -#: pro/fields/class-acf-field-flexible-content.php:1022 -#, fuzzy -#| msgid "layout" -msgid "layout" -msgid_plural "layouts" -msgstr[0] "レイアウト" - -#: pro/fields/class-acf-field-flexible-content.php:77 -msgid "layouts" -msgstr "レイアウト" - -#: pro/fields/class-acf-field-flexible-content.php:81, -#: pro/fields/class-acf-field-flexible-content.php:942, -#: pro/fields/class-acf-field-flexible-content.php:1021 -msgid "This field requires at least {min} {label} {identifier}" -msgstr "{identifier}に{label}は最低{min}個必要です" - -#: pro/fields/class-acf-field-flexible-content.php:82 -msgid "This field has a limit of {max} {label} {identifier}" -msgstr "" - -#: pro/fields/class-acf-field-flexible-content.php:85 -msgid "{available} {label} {identifier} available (max {max})" -msgstr "" -"あと{available}個 {identifier}には {label} を利用できます(最大 {max}個)" - -#: pro/fields/class-acf-field-flexible-content.php:86 -msgid "{required} {label} {identifier} required (min {min})" -msgstr "" -"あと{required}個 {identifier}には {label} を利用する必要があります(最小 " -"{max}個)" - -#: pro/fields/class-acf-field-flexible-content.php:89 -msgid "Flexible Content requires at least 1 layout" -msgstr "柔軟コンテンツは少なくとも1個のレイアウトが必要です" - -#: pro/fields/class-acf-field-flexible-content.php:282 -msgid "Click the \"%s\" button below to start creating your layout" -msgstr "下の \"%s\" ボタンをクリックしてレイアウトの作成を始めてください" - -#: pro/fields/class-acf-field-flexible-content.php:423 -msgid "Add layout" -msgstr "レイアウトを追加" - -#: pro/fields/class-acf-field-flexible-content.php:424 -msgid "Duplicate layout" -msgstr "" - -#: pro/fields/class-acf-field-flexible-content.php:425 -msgid "Remove layout" -msgstr "レイアウトを削除" - -#: pro/fields/class-acf-field-flexible-content.php:426, -#: pro/fields/class-acf-repeater-table.php:382 -msgid "Click to toggle" -msgstr "" - -#: pro/fields/class-acf-field-flexible-content.php:562 -msgid "Delete Layout" -msgstr "レイアウトを削除" - -#: pro/fields/class-acf-field-flexible-content.php:563 -msgid "Duplicate Layout" -msgstr "レイアウトを複製" - -#: pro/fields/class-acf-field-flexible-content.php:564 -msgid "Add New Layout" -msgstr "新しいレイアウトを追加" - -#: pro/fields/class-acf-field-flexible-content.php:564 -#, fuzzy -#| msgid "Add layout" -msgid "Add Layout" -msgstr "レイアウトを追加" - -#: pro/fields/class-acf-field-flexible-content.php:647 -msgid "Min" -msgstr "最小数" - -#: pro/fields/class-acf-field-flexible-content.php:662 -msgid "Max" -msgstr "最大数" - -#: pro/fields/class-acf-field-flexible-content.php:705 -msgid "Minimum Layouts" -msgstr "レイアウトの最小数" - -#: pro/fields/class-acf-field-flexible-content.php:716 -msgid "Maximum Layouts" -msgstr "レイアウトの最大数" - -#: pro/fields/class-acf-field-flexible-content.php:727, -#: pro/fields/class-acf-field-repeater.php:293 -msgid "Button Label" -msgstr "ボタンのラベル" - -#: pro/fields/class-acf-field-flexible-content.php:1710, -#: pro/fields/class-acf-field-repeater.php:918 -msgid "%s must be of type array or null." -msgstr "" - -#: pro/fields/class-acf-field-flexible-content.php:1721 -msgid "%1$s must contain at least %2$s %3$s layout." -msgid_plural "%1$s must contain at least %2$s %3$s layouts." -msgstr[0] "" - -#: pro/fields/class-acf-field-flexible-content.php:1737 -msgid "%1$s must contain at most %2$s %3$s layout." -msgid_plural "%1$s must contain at most %2$s %3$s layouts." -msgstr[0] "" - -#: pro/fields/class-acf-field-gallery.php:27 -msgid "" -"An interactive interface for managing a collection of attachments, such as " -"images." -msgstr "" - -#: pro/fields/class-acf-field-gallery.php:77 -msgid "Add Image to Gallery" -msgstr "ギャラリーに画像を追加" - -#: pro/fields/class-acf-field-gallery.php:78 -msgid "Maximum selection reached" -msgstr "選択の最大数に到達しました" - -#: pro/fields/class-acf-field-gallery.php:324 -msgid "Length" -msgstr "長さ" - -#: pro/fields/class-acf-field-gallery.php:368 -msgid "Caption" -msgstr "" - -#: pro/fields/class-acf-field-gallery.php:380 -msgid "Alt Text" -msgstr "" - -#: pro/fields/class-acf-field-gallery.php:504 -msgid "Add to gallery" -msgstr "ギャラリーを追加" - -#: pro/fields/class-acf-field-gallery.php:508 -msgid "Bulk actions" -msgstr "一括操作" - -#: pro/fields/class-acf-field-gallery.php:509 -msgid "Sort by date uploaded" -msgstr "アップロード日で並べ替え" - -#: pro/fields/class-acf-field-gallery.php:510 -msgid "Sort by date modified" -msgstr "変更日で並び替え" - -#: pro/fields/class-acf-field-gallery.php:511 -msgid "Sort by title" -msgstr "タイトルで並び替え" - -#: pro/fields/class-acf-field-gallery.php:512 -msgid "Reverse current order" -msgstr "並び順を逆にする" - -#: pro/fields/class-acf-field-gallery.php:524 -msgid "Close" -msgstr "閉じる" - -#: pro/fields/class-acf-field-gallery.php:615 -msgid "Minimum Selection" -msgstr "最小選択数" - -#: pro/fields/class-acf-field-gallery.php:625 -msgid "Maximum Selection" -msgstr "最大選択数" - -#: pro/fields/class-acf-field-gallery.php:707 -msgid "Allowed file types" -msgstr "許可するファイルタイプ" - -#: pro/fields/class-acf-field-gallery.php:727 -msgid "Insert" -msgstr "" - -#: pro/fields/class-acf-field-gallery.php:728 -msgid "Specify where new attachments are added" -msgstr "" - -#: pro/fields/class-acf-field-gallery.php:732 -msgid "Append to the end" -msgstr "" - -#: pro/fields/class-acf-field-gallery.php:733 -msgid "Prepend to the beginning" -msgstr "" - -#: pro/fields/class-acf-field-repeater.php:66, -#: pro/fields/class-acf-field-repeater.php:463 -#, fuzzy -#| msgid "Minimum rows reached ({min} rows)" -msgid "Minimum rows not reached ({min} rows)" -msgstr "最小行数に達しました({min} 行)" - -#: pro/fields/class-acf-field-repeater.php:67 -msgid "Maximum rows reached ({max} rows)" -msgstr "最大行数に達しました({max} 行)" - -#: pro/fields/class-acf-field-repeater.php:68 -msgid "Error loading page" -msgstr "" - -#: pro/fields/class-acf-field-repeater.php:69 -msgid "Order will be assigned upon save" -msgstr "" - -#: pro/fields/class-acf-field-repeater.php:196 -msgid "Useful for fields with a large number of rows." -msgstr "" - -#: pro/fields/class-acf-field-repeater.php:207 -msgid "Rows Per Page" -msgstr "" - -#: pro/fields/class-acf-field-repeater.php:208 -msgid "Set the number of rows to be displayed on a page." -msgstr "" - -#: pro/fields/class-acf-field-repeater.php:240 -msgid "Minimum Rows" -msgstr "最小行数" - -#: pro/fields/class-acf-field-repeater.php:251 -msgid "Maximum Rows" -msgstr "最大行数" - -#: pro/fields/class-acf-field-repeater.php:281 -msgid "Collapsed" -msgstr "" - -#: pro/fields/class-acf-field-repeater.php:282 -msgid "Select a sub field to show when row is collapsed" -msgstr "" - -#: pro/fields/class-acf-field-repeater.php:1060 -msgid "Invalid field key or name." -msgstr "" - -#: pro/fields/class-acf-field-repeater.php:1069 -msgid "There was an error retrieving the field." -msgstr "" - -#: pro/fields/class-acf-repeater-table.php:369 -#, fuzzy -#| msgid "Drag to reorder" -msgid "Click to reorder" -msgstr "ドラッグして並び替え" - -#: pro/fields/class-acf-repeater-table.php:402 -msgid "Add row" -msgstr "行を追加" - -#: pro/fields/class-acf-repeater-table.php:403 -msgid "Duplicate row" -msgstr "" - -#: pro/fields/class-acf-repeater-table.php:404 -msgid "Remove row" -msgstr "行を削除" - -#: pro/fields/class-acf-repeater-table.php:448, -#: pro/fields/class-acf-repeater-table.php:465, -#: pro/fields/class-acf-repeater-table.php:466 -msgid "Current Page" -msgstr "" - -#: pro/fields/class-acf-repeater-table.php:456, -#: pro/fields/class-acf-repeater-table.php:457 -#, fuzzy -#| msgid "Front Page" -msgid "First Page" -msgstr "フロントページ" - -#: pro/fields/class-acf-repeater-table.php:460, -#: pro/fields/class-acf-repeater-table.php:461 -#, fuzzy -#| msgid "Posts Page" -msgid "Previous Page" -msgstr "投稿ページ" - -#. translators: 1: Current page, 2: Total pages. -#: pro/fields/class-acf-repeater-table.php:470 -msgctxt "paging" -msgid "%1$s of %2$s" -msgstr "" - -#: pro/fields/class-acf-repeater-table.php:477, -#: pro/fields/class-acf-repeater-table.php:478 -#, fuzzy -#| msgid "Front Page" -msgid "Next Page" -msgstr "フロントページ" - -#: pro/fields/class-acf-repeater-table.php:481, -#: pro/fields/class-acf-repeater-table.php:482 -#, fuzzy -#| msgid "Posts Page" -msgid "Last Page" -msgstr "投稿ページ" - -#: pro/locations/class-acf-location-block.php:71 -msgid "No block types exist" -msgstr "" - -#: pro/locations/class-acf-location-options-page.php:70 -msgid "No options pages exist" -msgstr "オプションページはありません" - -#: pro/admin/views/html-settings-updates.php:6 -msgid "Deactivate License" -msgstr "ライセンスのアクティベートを解除" - -#: pro/admin/views/html-settings-updates.php:6 -msgid "Activate License" -msgstr "ライセンスをアクティベート" - -#: pro/admin/views/html-settings-updates.php:16 -msgid "License Information" -msgstr "" - -#: pro/admin/views/html-settings-updates.php:34 -msgid "" -"To unlock updates, please enter your license key below. If you don't have a " -"licence key, please see details & pricing." -msgstr "" - -#: pro/admin/views/html-settings-updates.php:37 -msgid "License Key" -msgstr "ライセンスキー" - -#: pro/admin/views/html-settings-updates.php:22 -msgid "Your license key is defined in wp-config.php." -msgstr "" - -#: pro/admin/views/html-settings-updates.php:29 -msgid "Retry Activation" -msgstr "" - -#: pro/admin/views/html-settings-updates.php:61 -msgid "Update Information" -msgstr "アップデート情報" - -#: pro/admin/views/html-settings-updates.php:68 -msgid "Current Version" -msgstr "現在のバージョン" - -#: pro/admin/views/html-settings-updates.php:76 -msgid "Latest Version" -msgstr "最新のバージョン" - -#: pro/admin/views/html-settings-updates.php:84 -msgid "Update Available" -msgstr "利用可能なアップデート" - -#: pro/admin/views/html-settings-updates.php:98 -msgid "Upgrade Notice" -msgstr "アップグレード通知" - -#: pro/admin/views/html-settings-updates.php:126 -msgid "Check For Updates" -msgstr "" - -#: pro/admin/views/html-settings-updates.php:121 -#, fuzzy -#| msgid "Please enter your license key above to unlock updates" -msgid "Enter your license key to unlock updates" -msgstr "アップデートのロックを解除するためにライセンスキーを入力してください" - -#: pro/admin/views/html-settings-updates.php:119 -msgid "Update Plugin" -msgstr "プラグインをアップデート" - -#: pro/admin/views/html-settings-updates.php:117 -msgid "Please reactivate your license to unlock updates" -msgstr "" diff --git a/lang/acf-ko_KR.mo b/lang/acf-ko_KR.mo deleted file mode 100644 index 120089f..0000000 Binary files a/lang/acf-ko_KR.mo and /dev/null differ diff --git a/lang/acf-ko_KR.po b/lang/acf-ko_KR.po deleted file mode 100644 index 08d04b3..0000000 --- a/lang/acf-ko_KR.po +++ /dev/null @@ -1,5742 +0,0 @@ -# Advanced Custom Fields Translations are a combination of translate.wordpress.org contributions, -# combined with user contributed strings for the PRO version. -# Translations from translate.wordpress.org take priority over translations in this file. -# translate.wordpress.org contributions are synced at the time of each release. -# -# If you would like to contribute translations, please visit -# https://translate.wordpress.org/projects/wp-plugins/advanced-custom-fields/stable/ -# -# For additional ACF PRO strings, please submit a pull request over on the ACF GitHub repo at -# http://github.com/advancedcustomfields/acf using the .pot (and any existing .po) files in /lang/pro/ -# -# This file is distributed under the same license as Advanced Custom Fields. -msgid "" -msgstr "" -"PO-Revision-Date: 2023-11-28T09:14:32+00:00\n" -"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n" -"Language: ko_KR\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: gettext\n" -"Project-Id-Version: Advanced Custom Fields\n" - -#: includes/admin/views/global/navigation.php:221 -msgid "Renew ACF PRO License" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:17 -msgid "Renew License" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:14 -msgid "Manage License" -msgstr "" - -#: includes/admin/views/acf-field-group/options.php:102 -msgid "'High' position not supported in the Block Editor" -msgstr "" - -#: includes/admin/views/options-page-preview.php:30 -msgid "Upgrade to ACF PRO" -msgstr "" - -#. translators: %s URL to ACF options pages documentation -#: includes/admin/views/options-page-preview.php:7 -msgid "" -"ACF options pages are custom admin " -"pages for managing global settings via fields. You can create multiple pages " -"and sub-pages." -msgstr "" - -#: includes/admin/views/global/header.php:35 -msgid "Add Options Page" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:703 -msgid "In the editor used as the placeholder of the title." -msgstr "제목의 자리 표시자로 사용되는 편집기에서." - -#: includes/admin/views/acf-post-type/advanced-settings.php:702 -msgid "Title Placeholder" -msgstr "제목 자리 표시자" - -#: includes/admin/views/global/navigation.php:97 -msgid "4 Months Free" -msgstr "4개월 무료" - -#. translators: %s - A singular label for a post type or taxonomy. -#: includes/admin/views/global/form-top.php:56 -msgid " (Duplicated from %s)" -msgstr " (%s에서 복제됨)" - -#: includes/admin/tools/class-acf-admin-tool-export.php:298 -msgid "Select Options Pages" -msgstr "옵션 페이지 선택" - -#: includes/admin/post-types/admin-taxonomy.php:107 -msgid "Duplicate taxonomy" -msgstr "중복 분류" - -#: includes/admin/post-types/admin-post-type.php:106 -#: includes/admin/post-types/admin-taxonomy.php:106 -msgid "Create taxonomy" -msgstr "분류 체계 만들기" - -#: includes/admin/post-types/admin-post-type.php:105 -msgid "Duplicate post type" -msgstr "중복 글 유형" - -#: includes/admin/post-types/admin-post-type.php:104 -#: includes/admin/post-types/admin-taxonomy.php:108 -msgid "Create post type" -msgstr "글 유형 만들기" - -#: includes/admin/post-types/admin-post-type.php:103 -#: includes/admin/post-types/admin-taxonomy.php:105 -msgid "Link field groups" -msgstr "필드 그룹 연결" - -#: includes/admin/post-types/admin-post-type.php:102 -#: includes/admin/post-types/admin-taxonomy.php:104 -msgid "Add fields" -msgstr "필드 추가" - -#: includes/admin/post-types/admin-field-group.php:121 -#: assets/build/js/acf-field-group.js:2753 -#: assets/build/js/acf-field-group.js:3236 -msgid "This Field" -msgstr "이 필드" - -#: includes/admin/admin.php:267 -msgid "ACF PRO" -msgstr "ACF PRO" - -#: includes/admin/admin.php:265 -msgid "Feedback" -msgstr "피드백" - -#: includes/admin/admin.php:263 -msgid "Support" -msgstr "지원" - -#. translators: This text is prepended by a link to ACF's website, and appended -#. by a link to WP Engine's website. -#: includes/admin/admin.php:238 -msgid "is developed and maintained by" -msgstr "에 의해 개발 및 유지 관리됩니다." - -#. translators: %s - either "post type" or "taxonomy" -#: includes/admin/admin-internal-post-type.php:321 -msgid "Add this %s to the location rules of the selected field groups." -msgstr "선택한 필드 그룹의 위치 규칙에 이 %s를 추가합니다." - -#. translators: %s the URL to ACF's bidirectional relationship documentation -#: includes/acf-bidirectional-functions.php:271 -msgid "" -"Enabling the bidirectional setting allows you to update a value in the " -"target fields for each value selected for this field, adding or removing the " -"Post ID, Taxonomy ID or User ID of the item being updated. For more " -"information, please read the documentation." -msgstr "" -"양방향 설정을 활성화하면 이 필드에 대해 선택한 각 값에 대해 대상 필드에서 값" -"을 업데이트하고 업데이트할 항목의 글 ID, 분류 ID 또는 사용자 ID를 추가하거나 " -"제거할 수 있습니다. 자세한 내용은 문서" -"를 참조하세요." - -#: includes/acf-bidirectional-functions.php:247 -msgid "" -"Select field(s) to store the reference back to the item being updated. You " -"may select this field. Target fields must be compatible with where this " -"field is being displayed. For example, if this field is displayed on a " -"Taxonomy, your target field should be of type Taxonomy" -msgstr "" -"업데이트 중인 항목에 대한 참조를 다시 저장할 필드를 선택합니다. 이 필드를 선" -"택할 수 있습니다. 대상 필드는 이 필드가 표시되는 위치와 호환되어야 합니다. 예" -"를 들어 이 필드가 분류에 표시되는 경우 대상 필드는 분류 유형이어야 합니다." - -#: includes/acf-bidirectional-functions.php:246 -msgid "Target Field" -msgstr "대상 필드" - -#: includes/acf-bidirectional-functions.php:220 -msgid "Update a field on the selected values, referencing back to this ID" -msgstr "이 ID를 다시 참조하여 선택한 값의 필드를 업데이트합니다." - -#: includes/acf-bidirectional-functions.php:219 -msgid "Bidirectional" -msgstr "양방향" - -#. translators: %s A field type name, such as "Relationship" -#: includes/acf-bidirectional-functions.php:192 -msgid "%s Field" -msgstr "%s 필드" - -#: includes/fields/class-acf-field-page_link.php:517 -#: includes/fields/class-acf-field-post_object.php:426 -#: includes/fields/class-acf-field-select.php:407 -#: includes/fields/class-acf-field-user.php:82 -msgid "Select Multiple" -msgstr "여러 개 선택" - -#: includes/admin/views/global/navigation.php:233 -msgid "WP Engine logo" -msgstr "WP 엔진 로고" - -#: includes/admin/views/acf-taxonomy/basic-settings.php:58 -msgid "Lower case letters, underscores and dashes only, Max 32 characters." -msgstr "" -"소문자, 밑줄 및 대시만 입력할 수 있으며 최대 32자까지 입력할 수 있습니다." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1136 -msgid "The capability name for assigning terms of this taxonomy." -msgstr "이 택소노미의 용어를 할당하기 위한 기능 이름입니다." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1135 -msgid "Assign Terms Capability" -msgstr "용어 할당 가능" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1119 -msgid "The capability name for deleting terms of this taxonomy." -msgstr "이 택소노미의 용어를 삭제하기 위한 기능 이름입니다." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1118 -msgid "Delete Terms Capability" -msgstr "약관 삭제 가능" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1102 -msgid "The capability name for editing terms of this taxonomy." -msgstr "이 택소노미의 용어를 편집하기 위한 기능 이름입니다." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1101 -msgid "Edit Terms Capability" -msgstr "약관 편집 가능" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1085 -msgid "The capability name for managing terms of this taxonomy." -msgstr "이 택소노미의 용어를 관리하기 위한 기능 이름입니다." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1084 -msgid "Manage Terms Capability" -msgstr "약관 관리 가능" - -#: includes/admin/views/acf-post-type/advanced-settings.php:886 -msgid "" -"Sets whether posts should be excluded from search results and taxonomy " -"archive pages." -msgstr "" -"검색 결과 및 택소노미 아카이브 페이지에서 글을 제외할지 여부를 설정합니다." - -#: includes/admin/views/acf-field-group/pro-features.php:74 -msgid "More Tools from WP Engine" -msgstr "WP 엔진의 더 많은 도구" - -#. translators: %s - WP Engine logo -#: includes/admin/views/acf-field-group/pro-features.php:69 -msgid "Built for those that build with WordPress, by the team at %s" -msgstr "워드프레스로 제작하는 사용자를 위해 %s 팀에서 제작했습니다." - -#: includes/admin/views/acf-field-group/pro-features.php:6 -msgid "View Pricing & Upgrade" -msgstr "가격 및 업그레이드 보기" - -#: includes/admin/views/acf-field-group/pro-features.php:3 -#: includes/admin/views/options-page-preview.php:29 -msgid "Learn More" -msgstr "더 알아보기" - -#: includes/admin/views/acf-field-group/pro-features.php:28 -msgid "" -"Speed up your workflow and develop better websites with features like ACF " -"Blocks and Options Pages, and sophisticated field types like Repeater, " -"Flexible Content, Clone, and Gallery." -msgstr "" -"ACF 블록 및 옵션 페이지와 같은 기능과 리피터, 유연한 콘텐츠, 복제 및 갤러리" -"와 같은 정교한 필드 유형을 사용하여 워크플로우를 가속화하고 더 나은 웹사이트" -"를 개발할 수 있습니다." - -#: includes/admin/views/acf-field-group/pro-features.php:2 -msgid "Unlock Advanced Features and Build Even More with ACF PRO" -msgstr "ACF 프로로 고급 기능을 잠금 해제하고 더 많은 것을 구축하세요." - -#. translators: %s - singular label of post type/taxonomy, i.e. "Movie"/"Genre" -#: includes/admin/views/global/form-top.php:19 -msgid "%s fields" -msgstr "%s 필드" - -#: includes/admin/post-types/admin-taxonomies.php:293 -msgid "No terms" -msgstr "용어 없음" - -#: includes/admin/post-types/admin-taxonomies.php:266 -msgid "No post types" -msgstr "게시물 유형 없음" - -#: includes/admin/post-types/admin-post-types.php:289 -msgid "No posts" -msgstr "게시물 없음" - -#: includes/admin/post-types/admin-post-types.php:263 -msgid "No taxonomies" -msgstr "택소노미 없음" - -#: includes/admin/post-types/admin-post-types.php:208 -#: includes/admin/post-types/admin-taxonomies.php:208 -msgid "No field groups" -msgstr "필드 그룹 없음" - -#: includes/admin/post-types/admin-field-groups.php:281 -msgid "No fields" -msgstr "필드 없음" - -#: includes/admin/post-types/admin-field-groups.php:154 -#: includes/admin/post-types/admin-post-types.php:172 -#: includes/admin/post-types/admin-taxonomies.php:172 -msgid "No description" -msgstr "설명 없음" - -#: includes/fields/class-acf-field-page_link.php:484 -#: includes/fields/class-acf-field-post_object.php:389 -#: includes/fields/class-acf-field-relationship.php:601 -msgid "Any post status" -msgstr "모든 게시물 상태" - -#: includes/post-types/class-acf-taxonomy.php:284 -msgid "" -"This taxonomy key is already in use by another taxonomy registered outside " -"of ACF and cannot be used." -msgstr "" -"이 택소노미 키는 ACF 외부에 등록된 다른 택소노미에서 이미 사용 중이므로 사용" -"할 수 없습니다." - -#: includes/post-types/class-acf-taxonomy.php:279 -msgid "" -"This taxonomy key is already in use by another taxonomy in ACF and cannot be " -"used." -msgstr "" -"이 택소노미 키는 이미 ACF의 다른 택소노미에서 사용 중이므로 사용할 수 없습니" -"다." - -#: includes/post-types/class-acf-taxonomy.php:252 -msgid "" -"The taxonomy key must only contain lower case alphanumeric characters, " -"underscores or dashes." -msgstr "" -"택소노미 키에는 소문자 영숫자 문자, 밑줄 또는 대시만 포함되어야 합니다." - -#: includes/post-types/class-acf-taxonomy.php:247 -msgid "The taxonomy key must be under 32 characters." -msgstr "택소노미 키는 32자 미만이어야 합니다." - -#: includes/post-types/class-acf-taxonomy.php:99 -msgid "No Taxonomies found in Trash" -msgstr "휴지통에 택소노미가 없습니다." - -#: includes/post-types/class-acf-taxonomy.php:98 -msgid "No Taxonomies found" -msgstr "택소노미가 없습니다." - -#: includes/post-types/class-acf-taxonomy.php:97 -msgid "Search Taxonomies" -msgstr "택소노미 검색" - -#: includes/post-types/class-acf-taxonomy.php:96 -msgid "View Taxonomy" -msgstr "택소노미 보기" - -#: includes/post-types/class-acf-taxonomy.php:95 -msgid "New Taxonomy" -msgstr "새로운 택소노미" - -#: includes/post-types/class-acf-taxonomy.php:94 -msgid "Edit Taxonomy" -msgstr "택소노미 편집" - -#: includes/post-types/class-acf-taxonomy.php:93 -msgid "Add New Taxonomy" -msgstr "새 택소노미 추가" - -#: includes/post-types/class-acf-post-type.php:100 -msgid "No Post Types found in Trash" -msgstr "휴지통에서 게시물 유형을 찾을 수 없습니다." - -#: includes/post-types/class-acf-post-type.php:99 -msgid "No Post Types found" -msgstr "게시물 유형을 찾을 수 없습니다." - -#: includes/post-types/class-acf-post-type.php:98 -msgid "Search Post Types" -msgstr "게시물 유형 검색" - -#: includes/post-types/class-acf-post-type.php:97 -msgid "View Post Type" -msgstr "게시물 유형 보기" - -#: includes/post-types/class-acf-post-type.php:96 -msgid "New Post Type" -msgstr "새 게시물 유형" - -#: includes/post-types/class-acf-post-type.php:95 -msgid "Edit Post Type" -msgstr "게시물 유형 편집" - -#: includes/post-types/class-acf-post-type.php:94 -msgid "Add New Post Type" -msgstr "새 게시물 유형 추가" - -#: includes/post-types/class-acf-post-type.php:361 -msgid "" -"This post type key is already in use by another post type registered outside " -"of ACF and cannot be used." -msgstr "" -"이 게시물 유형 키는 ACF 외부에 등록된 다른 게시물 유형에서 이미 사용 중이므" -"로 사용할 수 없습니다." - -#: includes/post-types/class-acf-post-type.php:356 -msgid "" -"This post type key is already in use by another post type in ACF and cannot " -"be used." -msgstr "" -"이 게시물 유형 키는 이미 ACF의 다른 게시물 유형에서 사용 중이므로 사용할 수 " -"없습니다." - -#. translators: %s a link to WordPress.org's Reserved Terms page -#: includes/post-types/class-acf-post-type.php:335 -#: includes/post-types/class-acf-taxonomy.php:258 -msgid "" -"This field must not be a WordPress reserved " -"term." -msgstr "" -"이 필드는 워드프레스 예약어가 아니어야 " -"합니다." - -#: includes/post-types/class-acf-post-type.php:329 -msgid "" -"The post type key must only contain lower case alphanumeric characters, " -"underscores or dashes." -msgstr "" -"게시물 유형 키에는 소문자 영숫자 문자, 밑줄 또는 대시만 포함해야 합니다." - -#: includes/post-types/class-acf-post-type.php:324 -msgid "The post type key must be under 20 characters." -msgstr "게시물 유형 키는 20자 미만이어야 합니다." - -#: includes/fields/class-acf-field-wysiwyg.php:27 -msgid "We do not recommend using this field in ACF Blocks." -msgstr "ACF 블록에서는 이 필드를 사용하지 않는 것이 좋습니다." - -#: includes/fields/class-acf-field-wysiwyg.php:27 -msgid "" -"Displays the WordPress WYSIWYG editor as seen in Posts and Pages allowing " -"for a rich text-editing experience that also allows for multimedia content." -msgstr "" -"게시물 및 페이지에 표시되는 워드프레스 WYSIWYG 편집기를 표시하여 멀티미디어 " -"콘텐츠도 허용하는 풍부한 텍스트 편집 환경을 허용합니다." - -#: includes/fields/class-acf-field-wysiwyg.php:25 -msgid "WYSIWYG Editor" -msgstr "WYSIWYG 편집기" - -#: includes/fields/class-acf-field-user.php:17 -msgid "" -"Allows the selection of one or more users which can be used to create " -"relationships between data objects." -msgstr "" -"데이터 개체 간의 관계를 만드는 데 사용할 수 있는 하나 이상의 사용자를 선택할 " -"수 있습니다." - -#: includes/fields/class-acf-field-url.php:26 -msgid "A text input specifically designed for storing web addresses." -msgstr "웹 주소를 저장하기 위해 특별히 설계된 텍스트 입력입니다." - -#: includes/fields/class-acf-field-url.php:25 -msgid "URL" -msgstr "URL" - -#: includes/fields/class-acf-field-true_false.php:27 -msgid "" -"A toggle that allows you to pick a value of 1 or 0 (on or off, true or " -"false, etc). Can be presented as a stylized switch or checkbox." -msgstr "" -"1 또는 0 값(켜기 또는 끄기, 참 또는 거짓 등)을 선택할 수 있는 토글입니다. 양" -"식화된 스위치 또는 확인란으로 표시할 수 있습니다." - -#: includes/fields/class-acf-field-time_picker.php:27 -msgid "" -"An interactive UI for picking a time. The time format can be customized " -"using the field settings." -msgstr "" -"시간을 선택하기 위한 대화형 UI입니다. 시간 형식은 필드 설정을 사용하여 사용" -"자 정의할 수 있습니다." - -#: includes/fields/class-acf-field-textarea.php:26 -msgid "A basic textarea input for storing paragraphs of text." -msgstr "텍스트 단락을 저장하기 위한 기본 텍스트 영역 입력." - -#: includes/fields/class-acf-field-text.php:26 -msgid "A basic text input, useful for storing single string values." -msgstr "단일 문자열 값을 저장하는 데 유용한 기본 텍스트 입력입니다." - -#: includes/fields/class-acf-field-taxonomy.php:22 -msgid "" -"Allows the selection of one or more taxonomy terms based on the criteria and " -"options specified in the fields settings." -msgstr "" -"필드 설정에 지정된 기준 및 옵션에 따라 하나 이상의 택소노미 용어를 선택할 수 " -"있습니다." - -#: includes/fields/class-acf-field-tab.php:28 -msgid "" -"Allows you to group fields into tabbed sections in the edit screen. Useful " -"for keeping fields organized and structured." -msgstr "" -"편집 화면에서 필드를 탭 섹션으로 그룹화할 수 있습니다. 필드를 정리하고 체계적" -"으로 유지하는 데 유용합니다." - -#: includes/fields/class-acf-field-select.php:27 -msgid "A dropdown list with a selection of choices that you specify." -msgstr "지정한 선택 항목이 있는 드롭다운 목록입니다." - -#: includes/fields/class-acf-field-relationship.php:19 -msgid "" -"A dual-column interface to select one or more posts, pages, or custom post " -"type items to create a relationship with the item that you're currently " -"editing. Includes options to search and filter." -msgstr "" -"하나 이상의 게시물, 페이지 또는 사용자 정의 게시물 유형 항목을 선택하여 현재 " -"편집 중인 항목과의 관계를 만드는 이중 열 인터페이스입니다. 검색 및 필터링 옵" -"션이 포함되어 있습니다." - -#: includes/fields/class-acf-field-range.php:26 -msgid "" -"An input for selecting a numerical value within a specified range using a " -"range slider element." -msgstr "" -"범위 슬라이더 요소를 사용하여 지정된 범위 내에서 숫자 값을 선택하기 위한 입력" -"입니다." - -#: includes/fields/class-acf-field-radio.php:27 -msgid "" -"A group of radio button inputs that allows the user to make a single " -"selection from values that you specify." -msgstr "" -"사용자가 지정한 값에서 단일 선택을 할 수 있도록 하는 라디오 버튼 입력 그룹입" -"니다." - -#: includes/fields/class-acf-field-post_object.php:19 -msgid "" -"An interactive and customizable UI for picking one or many posts, pages or " -"post type items with the option to search. " -msgstr "" -"검색 옵션이 있는 하나 이상의 게시물, 페이지 또는 게시물 유형 항목을 선택할 " -"수 있는 대화형 및 사용자 정의 가능한 UI입니다. " - -#: includes/fields/class-acf-field-password.php:26 -msgid "An input for providing a password using a masked field." -msgstr "마스킹된 필드를 사용하여 암호를 제공하기 위한 입력입니다." - -#: includes/fields/class-acf-field-page_link.php:476 -#: includes/fields/class-acf-field-post_object.php:381 -#: includes/fields/class-acf-field-relationship.php:593 -msgid "Filter by Post Status" -msgstr "게시물 상태로 필터링" - -#: includes/fields/class-acf-field-page_link.php:27 -msgid "" -"An interactive dropdown to select one or more posts, pages, custom post type " -"items or archive URLs, with the option to search." -msgstr "" -"검색 옵션과 함께 하나 이상의 게시물, 페이지, 사용자 정의 게시물 유형 항목 또" -"는 아카이브 URL을 선택하는 대화형 드롭다운." - -#: includes/fields/class-acf-field-oembed.php:27 -msgid "" -"An interactive component for embedding videos, images, tweets, audio and " -"other content by making use of the native WordPress oEmbed functionality." -msgstr "" -"기본 워드프레스 oEmbed 기능을 사용하여 비디오, 이미지, 트윗, 오디오 및 기타 " -"콘텐츠를 삽입하기 위한 대화형 구성 요소입니다." - -#: includes/fields/class-acf-field-number.php:26 -msgid "An input limited to numerical values." -msgstr "숫자 값으로 제한된 입력입니다." - -#: includes/fields/class-acf-field-message.php:28 -msgid "" -"Used to display a message to editors alongside other fields. Useful for " -"providing additional context or instructions around your fields." -msgstr "" -"다른 필드와 함께 편집자에게 메시지를 표시하는 데 사용됩니다. 필드에 대한 추" -"가 컨텍스트 또는 지침을 제공하는 데 유용합니다." - -#: includes/fields/class-acf-field-link.php:27 -msgid "" -"Allows you to specify a link and its properties such as title and target " -"using the WordPress native link picker." -msgstr "" -"워드프레스 기본 링크 선택기를 사용하여 제목 및 대상과 같은 링크 및 해당 속성" -"을 지정할 수 있습니다." - -#: includes/fields/class-acf-field-image.php:27 -msgid "Uses the native WordPress media picker to upload, or choose images." -msgstr "" -"기본 워드프레스 미디어 선택기를 사용하여 이미지를 업로드하거나 선택합니다." - -#: includes/fields/class-acf-field-group.php:27 -msgid "" -"Provides a way to structure fields into groups to better organize the data " -"and the edit screen." -msgstr "" -"필드를 그룹으로 구성하여 데이터와 편집 화면을 더 잘 구성하는 방법을 제공합니" -"다." - -#: includes/fields/class-acf-field-google-map.php:27 -msgid "" -"An interactive UI for selecting a location using Google Maps. Requires a " -"Google Maps API key and additional configuration to display correctly." -msgstr "" -"Google 지도를 사용하여 위치를 선택하기 위한 대화형 UI입니다. 올바르게 표시하" -"려면 Google Maps API 키와 추가 구성이 필요합니다." - -#: includes/fields/class-acf-field-file.php:27 -msgid "Uses the native WordPress media picker to upload, or choose files." -msgstr "" -"기본 워드프레스 미디어 선택기를 사용하여 파일을 업로드하거나 선택합니다." - -#: includes/fields/class-acf-field-email.php:26 -msgid "A text input specifically designed for storing email addresses." -msgstr "이메일 주소를 저장하기 위해 특별히 설계된 텍스트 입력입니다." - -#: includes/fields/class-acf-field-date_time_picker.php:27 -msgid "" -"An interactive UI for picking a date and time. The date return format can be " -"customized using the field settings." -msgstr "" -"날짜와 시간을 선택하기 위한 대화형 UI입니다. 날짜 반환 형식은 필드 설정을 사" -"용하여 사용자 정의할 수 있습니다." - -#: includes/fields/class-acf-field-date_picker.php:27 -msgid "" -"An interactive UI for picking a date. The date return format can be " -"customized using the field settings." -msgstr "" -"날짜 선택을 위한 대화형 UI입니다. 날짜 반환 형식은 필드 설정을 사용하여 사용" -"자 정의할 수 있습니다." - -#: includes/fields/class-acf-field-color_picker.php:27 -msgid "An interactive UI for selecting a color, or specifying a Hex value." -msgstr "색상을 선택하거나 16진수 값을 지정하기 위한 대화형 UI입니다." - -#: includes/fields/class-acf-field-checkbox.php:27 -msgid "" -"A group of checkbox inputs that allow the user to select one, or multiple " -"values that you specify." -msgstr "" -"사용자가 지정한 하나 이상의 값을 선택할 수 있도록 하는 확인란 입력 그룹입니" -"다." - -#: includes/fields/class-acf-field-button-group.php:26 -msgid "" -"A group of buttons with values that you specify, users can choose one option " -"from the values provided." -msgstr "" -"지정한 값이 있는 버튼 그룹으로, 사용자는 제공된 값에서 하나의 옵션을 선택할 " -"수 있습니다." - -#: includes/fields/class-acf-field-accordion.php:27 -msgid "" -"Allows you to group and organize custom fields into collapsable panels that " -"are shown while editing content. Useful for keeping large datasets tidy." -msgstr "" -"콘텐츠를 편집하는 동안 표시되는 접을 수 있는 패널로 사용자 정의 필드를 그룹화" -"하고 구성할 수 있습니다. 큰 데이터 세트를 깔끔하게 유지하는 데 유용합니다." - -#: includes/fields.php:475 -msgid "" -"This provides a solution for repeating content such as slides, team members, " -"and call-to-action tiles, by acting as a parent to a set of subfields which " -"can be repeated again and again." -msgstr "" -"반복해서 반복할 수 있는 하위 필드 세트의 상위 역할을 하여 슬라이드, 팀 구성" -"원 및 클릭 유도 문안 타일과 같은 반복 콘텐츠에 대한 솔루션을 제공합니다." - -#: includes/fields.php:465 -msgid "" -"This provides an interactive interface for managing a collection of " -"attachments. Most settings are similar to the Image field type. Additional " -"settings allow you to specify where new attachments are added in the gallery " -"and the minimum/maximum number of attachments allowed." -msgstr "" -"이는 첨부 파일 모음을 관리하기 위한 대화형 인터페이스를 제공합니다. 대부분의 " -"설정은 이미지 필드 유형과 유사합니다. 추가 설정을 통해 갤러리에서 새 첨부 파" -"일이 추가되는 위치와 허용되는 첨부 파일의 최소/최대 수를 지정할 수 있습니다." - -#: includes/fields.php:455 -msgid "" -"This provides a simple, structured, layout-based editor. The Flexible " -"Content field allows you to define, create and manage content with total " -"control by using layouts and subfields to design the available blocks." -msgstr "" -"간단하고 구조화된 레이아웃 기반 편집기를 제공합니다. 유연한 콘텐츠 필드를 사" -"용하면 레이아웃과 하위 필드를 사용하여 사용 가능한 블록을 디자인함으로써 전" -"체 제어로 콘텐츠를 정의, 생성 및 관리할 수 있습니다." - -#: includes/fields.php:445 -msgid "" -"This allows you to select and display existing fields. It does not duplicate " -"any fields in the database, but loads and displays the selected fields at " -"run-time. The Clone field can either replace itself with the selected fields " -"or display the selected fields as a group of subfields." -msgstr "" -"이를 통해 기존 필드를 선택하고 표시할 수 있습니다. 데이터베이스의 어떤 필드" -"도 복제하지 않지만 런타임에 선택한 필드를 로드하고 표시합니다. 복제 필드는 선" -"택한 필드로 자신을 교체하거나 선택한 필드를 하위 필드 그룹으로 표시할 수 있습" -"니다." - -#: includes/fields.php:442 -msgctxt "noun" -msgid "Clone" -msgstr "복제" - -#: includes/admin/views/global/navigation.php:86 includes/fields.php:357 -msgid "PRO" -msgstr "프로" - -#: includes/fields.php:355 includes/fields.php:412 -msgid "Advanced" -msgstr "고급의" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:85 -msgid "JSON (newer)" -msgstr "JSON(최신)" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:81 -msgid "Original" -msgstr "원본" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:55 -msgid "Invalid post ID." -msgstr "게시물 ID가 잘못되었습니다." - -#: includes/ajax/class-acf-ajax-local-json-diff.php:47 -msgid "Invalid post type selected for review." -msgstr "검토를 위해 잘못된 게시물 유형을 선택했습니다." - -#: includes/admin/views/global/navigation.php:186 -msgid "More" -msgstr "더 보기" - -#: includes/admin/views/browse-fields-modal.php:86 -msgid "Tutorial" -msgstr "튜토리얼" - -#: includes/admin/views/browse-fields-modal.php:75 -msgid "Available with ACF PRO" -msgstr "ACF 프로와 함께 사용 가능" - -#: includes/admin/views/browse-fields-modal.php:63 -msgid "Select Field" -msgstr "필드 선택" - -#. translators: %s: A link to the popular fields used in ACF -#: includes/admin/views/browse-fields-modal.php:50 -msgid "Try a different search term or browse %s" -msgstr "다른 검색어를 입력하거나 %s 찾아보기" - -#: includes/admin/views/browse-fields-modal.php:47 -msgid "Popular fields" -msgstr "인기 분야" - -#. translators: %s: The invalid search term -#: includes/admin/views/browse-fields-modal.php:40 -msgid "No search results for '%s'" -msgstr "'%s'에 대한 검색 결과가 없습니다." - -#: includes/admin/views/browse-fields-modal.php:13 -msgid "Search fields..." -msgstr "검색 필드..." - -#: includes/admin/views/browse-fields-modal.php:11 -msgid "Select Field Type" -msgstr "필드 유형 선택" - -#: includes/admin/views/browse-fields-modal.php:4 -msgid "Popular" -msgstr "인기 있는" - -#: includes/admin/views/acf-taxonomy/list-empty.php:7 -msgid "Add Taxonomy" -msgstr "택소노미 추가" - -#: includes/admin/views/acf-taxonomy/list-empty.php:6 -msgid "Create custom taxonomies to classify post type content" -msgstr "게시물 유형 콘텐츠를 택소노미하기 위한 사용자 정의 택소노미 생성" - -#: includes/admin/views/acf-taxonomy/list-empty.php:5 -msgid "Add Your First Taxonomy" -msgstr "첫 번째 택소노미 추가" - -#: includes/admin/views/acf-taxonomy/basic-settings.php:122 -msgid "Hierarchical taxonomies can have descendants (like categories)." -msgstr "계층적 택소노미는 범주와 같은 하위 항목을 가질 수 있습니다." - -#: includes/admin/views/acf-taxonomy/basic-settings.php:107 -msgid "Makes a taxonomy visible on the frontend and in the admin dashboard." -msgstr "프런트엔드와 관리자 알림판에서 택소노미를 볼 수 있습니다." - -#: includes/admin/views/acf-taxonomy/basic-settings.php:91 -msgid "One or many post types that can be classified with this taxonomy." -msgstr "이 택소노미로 택소노미할 수 있는 하나 이상의 게시물 유형입니다." - -#. translators: example taxonomy -#: includes/admin/views/acf-taxonomy/basic-settings.php:60 -msgid "genre" -msgstr "장르" - -#. translators: example taxonomy -#: includes/admin/views/acf-taxonomy/basic-settings.php:42 -msgid "Genre" -msgstr "장르" - -#. translators: example taxonomy -#: includes/admin/views/acf-taxonomy/basic-settings.php:25 -msgid "Genres" -msgstr "장르" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1211 -msgid "" -"Optional custom controller to use instead of `WP_REST_Terms_Controller `." -msgstr "`WP_REST_Terms_Controller` 대신 사용할 선택적 사용자 정의 컨트롤러." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1155 -msgid "Expose this post type in the REST API." -msgstr "REST API에서 이 게시물 유형을 노출합니다." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1055 -msgid "Customize the query variable name" -msgstr "쿼리 변수 이름 사용자 지정" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1028 -msgid "" -"Terms can be accessed using the non-pretty permalink, e.g., {query_var}" -"={term_slug}." -msgstr "" -"{query_var}={term_slug}와 같이 예쁘지 않은 퍼머링크를 사용하여 용어에 액세스" -"할 수 있습니다." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:981 -msgid "Parent-child terms in URLs for hierarchical taxonomies." -msgstr "계층적 택소노미에 대한 URL의 상위-하위 용어." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:941 -msgid "Customize the slug used in the URL" -msgstr "URL에 사용된 슬러그 사용자 정의" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:924 -msgid "Permalinks for this taxonomy are disabled." -msgstr "이 택소노미에 대한 퍼머링크가 비활성화되었습니다." - -#. translators: this string will be appended with the new permalink structure. -#: includes/admin/views/acf-taxonomy/advanced-settings.php:921 -msgid "" -"Rewrite the URL using the taxonomy key as the slug. Your permalink structure " -"will be" -msgstr "" -"택소노미 키를 슬러그로 사용하여 URL을 다시 작성합니다. 귀하의 퍼머링크 구조는" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:913 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1030 -#: includes/admin/views/acf-taxonomy/basic-settings.php:57 -msgid "Taxonomy Key" -msgstr "택소노미 키" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:911 -msgid "Select the type of permalink to use for this taxonomy." -msgstr "이 택소노미에 사용할 퍼머링크 유형을 선택하십시오." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:896 -msgid "Display a column for the taxonomy on post type listing screens." -msgstr "게시물 유형 목록 화면에 택소노미에 대한 열을 표시합니다." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:895 -msgid "Show Admin Column" -msgstr "관리 열 표시" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:882 -msgid "Show the taxonomy in the quick/bulk edit panel." -msgstr "빠른/일괄 편집 패널에 택소노미를 표시합니다." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:881 -msgid "Quick Edit" -msgstr "빠른 편집" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:868 -msgid "List the taxonomy in the Tag Cloud Widget controls." -msgstr "Tag Cloud Widget 컨트롤에 택소노미를 나열합니다." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:867 -msgid "Tag Cloud" -msgstr "태그 클라우드" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:824 -msgid "" -"A PHP function name to be called for sanitizing taxonomy data saved from a " -"meta box." -msgstr "" -"메타박스에서 저장된 택소노미 데이터를 정리하기 위해 호출할 PHP 함수 이름입니" -"다." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:823 -msgid "Meta Box Sanitization Callback" -msgstr "메타 박스 정리 콜백" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:805 -msgid "" -"A PHP function name to be called to handle the content of a meta box on your " -"taxonomy." -msgstr "" -"택소노미에서 메타 상자의 내용을 처리하기 위해 호출할 PHP 함수 이름입니다." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:804 -msgid "Register Meta Box Callback" -msgstr "메타박스 콜백 등록" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:763 -msgid "No Meta Box" -msgstr "메타박스 없음" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:762 -msgid "Custom Meta Box" -msgstr "커스텀 메타 박스" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:758 -msgid "" -"Controls the meta box on the content editor screen. By default, the " -"Categories meta box is shown for hierarchical taxonomies, and the Tags meta " -"box is shown for non-hierarchical taxonomies." -msgstr "" -"콘텐츠 에디터 화면의 메타박스를 제어합니다. 기본적으로 계층적 택소노미에는 범" -"주 메타 상자가 표시되고 비계층적 택소노미에는 태그 메타 상자가 표시됩니다." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:757 -msgid "Meta Box" -msgstr "메타박스" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:746 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:767 -msgid "Categories Meta Box" -msgstr "카테고리 메타박스" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:745 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:766 -msgid "Tags Meta Box" -msgstr "태그 메타박스" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:704 -msgid "A link to a tag" -msgstr "태그에 대한 링크" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:703 -msgid "Describes a navigation link block variation used in the block editor." -msgstr "블록 편집기에서 사용되는 탐색 링크 블록 변형에 대해 설명합니다." - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:698 -msgid "A link to a %s" -msgstr "%s에 대한 링크" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:683 -msgid "Tag Link" -msgstr "태그 링크" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:682 -msgid "" -"Assigns a title for navigation link block variation used in the block editor." -msgstr "블록 편집기에서 사용되는 탐색 링크 블록 변형에 대한 제목을 지정합니다." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:663 -msgid "← Go to tags" -msgstr "← 태그로 이동" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:662 -msgid "" -"Assigns the text used to link back to the main index after updating a term." -msgstr "" -"용어를 업데이트한 후 기본 인덱스로 다시 연결하는 데 사용되는 텍스트를 할당합" -"니다." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:661 -msgid "Back To Items" -msgstr "항목으로 돌아가기" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:657 -msgid "← Go to %s" -msgstr "← %s로 이동" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:642 -msgid "Tags list" -msgstr "태그 목록" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:641 -msgid "Assigns text to the table hidden heading." -msgstr "테이블의 숨겨진 제목에 텍스트를 할당합니다." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:622 -msgid "Tags list navigation" -msgstr "태그 목록 탐색" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:621 -msgid "Assigns text to the table pagination hidden heading." -msgstr "테이블 페이지 매김 숨겨진 제목에 텍스트를 할당합니다." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:597 -msgid "Filter by category" -msgstr "카테고리별로 필터링" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:596 -msgid "Assigns text to the filter button in the posts lists table." -msgstr "게시물 목록 테이블의 필터 버튼에 텍스트를 할당합니다." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:595 -msgid "Filter By Item" -msgstr "항목별로 필터링" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:591 -msgid "Filter by %s" -msgstr "%s로 필터링" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:575 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:576 -msgid "" -"The description is not prominent by default; however, some themes may show " -"it." -msgstr "" -"설명은 기본적으로 눈에 띄지 않습니다. 그러나 일부 테마에서는 이를 표시할 수 " -"있습니다." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:574 -msgid "Describes the Description field on the Edit Tags screen." -msgstr "태그 편집 화면의 설명 필드에 대해 설명합니다." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:573 -msgid "Description Field Description" -msgstr "설명 필드 설명" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:554 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:555 -msgid "" -"Assign a parent term to create a hierarchy. The term Jazz, for example, " -"would be the parent of Bebop and Big Band" -msgstr "" -"계층 구조를 만들 상위 용어를 할당합니다. 예를 들어 재즈라는 용어는 Bebop과 " -"Big Band의 부모입니다." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:553 -msgid "Describes the Parent field on the Edit Tags screen." -msgstr "태그 편집 화면의 상위 필드를 설명합니다." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:552 -msgid "Parent Field Description" -msgstr "상위 필드 설명" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:538 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:539 -msgid "" -"The \"slug\" is the URL-friendly version of the name. It is usually all " -"lower case and contains only letters, numbers, and hyphens." -msgstr "" -"\"slug\"는 이름의 URL 친화적 버전입니다. 일반적으로 모두 소문자이며 문자, 숫" -"자 및 하이픈만 포함합니다." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:537 -msgid "Describes the Slug field on the Edit Tags screen." -msgstr "태그 편집 화면의 Slug 필드에 대해 설명합니다." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:536 -msgid "Slug Field Description" -msgstr "슬러그 필드 설명" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:522 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:523 -msgid "The name is how it appears on your site" -msgstr "이름은 사이트에 표시되는 방식입니다." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:521 -msgid "Describes the Name field on the Edit Tags screen." -msgstr "태그 편집 화면의 이름 필드를 설명합니다." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:520 -msgid "Name Field Description" -msgstr "이름 필드 설명" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:507 -msgid "No tags" -msgstr "태그 없음" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:506 -msgid "" -"Assigns the text displayed in the posts and media list tables when no tags " -"or categories are available." -msgstr "" -"태그 또는 카테고리를 사용할 수 없을 때 게시물 및 미디어 목록 테이블에 표시되" -"는 텍스트를 할당합니다." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:505 -msgid "No Terms" -msgstr "용어 없음" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:501 -msgid "No %s" -msgstr "%s 없음" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:486 -msgid "No tags found" -msgstr "태그를 찾을 수 없습니다." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:485 -msgid "" -"Assigns the text displayed when clicking the 'choose from most used' text in " -"the taxonomy meta box when no tags are available, and assigns the text used " -"in the terms list table when there are no items for a taxonomy." -msgstr "" -"사용 가능한 태그가 없는 경우 택소노미 메타 상자에서 '가장 많이 사용하는 항목" -"에서 선택' 텍스트를 클릭할 때 표시되는 텍스트를 지정하고, 택소노미 항목이 없" -"는 경우 용어 목록 테이블에 사용되는 텍스트를 지정합니다." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:484 -msgid "Not Found" -msgstr "찾을 수 없음" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:463 -msgid "Assigns text to the Title field of the Most Used tab." -msgstr "자주 사용됨 탭의 제목 필드에 텍스트를 할당합니다." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:462 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:464 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:465 -msgid "Most Used" -msgstr "가장 많이 사용" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:444 -msgid "Choose from the most used tags" -msgstr "가장 많이 사용되는 태그 중에서 선택" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:443 -msgid "" -"Assigns the 'choose from most used' text used in the meta box when " -"JavaScript is disabled. Only used on non-hierarchical taxonomies." -msgstr "" -"JavaScript가 비활성화된 경우 메타 상자에 사용되는 '가장 많이 사용되는 항목에" -"서 선택' 텍스트를 지정합니다. 비계층적 택소노미에만 사용됩니다." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:442 -msgid "Choose From Most Used" -msgstr "가장 많이 사용하는 것 중에서 선택" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:438 -msgid "Choose from the most used %s" -msgstr "가장 많이 사용된 %s에서 선택" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:418 -msgid "Add or remove tags" -msgstr "태그 추가 또는 제거" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:417 -msgid "" -"Assigns the add or remove items text used in the meta box when JavaScript is " -"disabled. Only used on non-hierarchical taxonomies" -msgstr "" -"JavaScript가 비활성화된 경우 메타 상자에 사용되는 항목 추가 또는 제거 텍스트" -"를 할당합니다. 비계층적 택소노미에만 사용됨" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:416 -msgid "Add Or Remove Items" -msgstr "항목 추가 또는 제거" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:412 -msgid "Add or remove %s" -msgstr "%s 추가 또는 제거" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:392 -msgid "Separate tags with commas" -msgstr "쉼표로 태그 구분" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:391 -msgid "" -"Assigns the separate item with commas text used in the taxonomy meta box. " -"Only used on non-hierarchical taxonomies." -msgstr "" -"택소노미 메타 상자에 사용되는 쉼표 텍스트로 별도의 항목을 할당합니다. 비계층" -"적 택소노미에만 사용됩니다." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:390 -msgid "Separate Items With Commas" -msgstr "쉼표로 항목 구분" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:386 -msgid "Separate %s with commas" -msgstr "%s를 쉼표로 구분" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:366 -msgid "Popular Tags" -msgstr "인기 태그" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:365 -msgid "Assigns popular items text. Only used for non-hierarchical taxonomies." -msgstr "인기 항목 텍스트를 할당합니다. 비계층적 택소노미에만 사용됩니다." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:364 -msgid "Popular Items" -msgstr "인기 상품" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:361 -msgid "Popular %s" -msgstr "인기 있는 %s" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:347 -msgid "Search Tags" -msgstr "검색 태그" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:346 -msgid "Assigns search items text." -msgstr "검색 항목 텍스트를 할당합니다." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:323 -msgid "Parent Category:" -msgstr "상위 카테고리:" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:322 -msgid "Assigns parent item text, but with a colon (:) added to the end." -msgstr "부모 항목 텍스트를 할당하지만 끝에 콜론(:)이 추가됩니다." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:321 -msgid "Parent Item With Colon" -msgstr "콜론이 있는 상위 항목" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:298 -msgid "Parent Category" -msgstr "상위 카테고리" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:297 -msgid "Assigns parent item text. Only used on hierarchical taxonomies." -msgstr "상위 항목 텍스트를 지정합니다. 계층적 택소노미에만 사용됩니다." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:296 -msgid "Parent Item" -msgstr "상위 항목" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:293 -msgid "Parent %s" -msgstr "부모 %s" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:278 -msgid "New Tag Name" -msgstr "새 태그 이름" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:277 -msgid "Assigns the new item name text." -msgstr "새 항목 이름 텍스트를 할당합니다." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:276 -msgid "New Item Name" -msgstr "새 항목 이름" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:273 -msgid "New %s Name" -msgstr "새 %s 이름" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:258 -msgid "Add New Tag" -msgstr "새 태그 추가" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:257 -msgid "Assigns the add new item text." -msgstr "새 항목 추가 텍스트를 할당합니다." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:238 -msgid "Update Tag" -msgstr "태그 업데이트" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:237 -msgid "Assigns the update item text." -msgstr "업데이트 항목 텍스트를 할당합니다." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:236 -msgid "Update Item" -msgstr "항목 업데이트" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:233 -msgid "Update %s" -msgstr "업데이트 %s" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:218 -msgid "View Tag" -msgstr "태그 보기" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:217 -msgid "In the admin bar to view term during editing." -msgstr "편집하는 동안 용어를 보려면 관리 표시줄에서." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:198 -msgid "Edit Tag" -msgstr "태그 편집" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:197 -msgid "At the top of the editor screen when editing a term." -msgstr "용어를 편집할 때 편집기 화면 상단에 있습니다." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:178 -msgid "All Tags" -msgstr "모든 태그" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:177 -msgid "Assigns the all items text." -msgstr "모든 항목 텍스트를 지정합니다." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:158 -msgid "Assigns the menu name text." -msgstr "메뉴 이름 텍스트를 할당합니다." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:157 -msgid "Menu Label" -msgstr "메뉴 레이블" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:131 -msgid "Active taxonomies are enabled and registered with WordPress." -msgstr "활성 택소노미가 활성화되고 워드프레스에 등록됩니다." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:115 -msgid "A descriptive summary of the taxonomy." -msgstr "택소노미에 대한 설명 요약입니다." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:95 -msgid "A descriptive summary of the term." -msgstr "용어에 대한 설명 요약입니다." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:94 -msgid "Term Description" -msgstr "용어 설명" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:76 -msgid "Single word, no spaces. Underscores and dashes allowed." -msgstr "한 단어, 공백 없음. 밑줄과 대시가 허용됩니다." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:75 -msgid "Term Slug" -msgstr "용어 슬러그" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:56 -msgid "The name of the default term." -msgstr "기본 용어의 이름입니다." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:55 -msgid "Term Name" -msgstr "용어 이름" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:41 -msgid "" -"Create a term for the taxonomy that cannot be deleted. It will not be " -"selected for posts by default." -msgstr "" -"삭제할 수 없는 택소노미에 대한 용어를 만듭니다. 기본적으로 게시물에 대해 선택" -"되지 않습니다." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:40 -msgid "Default Term" -msgstr "기본 용어" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:28 -msgid "" -"Whether terms in this taxonomy should be sorted in the order they are " -"provided to `wp_set_object_terms()`." -msgstr "" -"이 택소노미의 용어를 `wp_set_object_terms()`에 제공된 순서대로 정렬해야 하는" -"지 여부입니다." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:27 -msgid "Sort Terms" -msgstr "용어 정렬" - -#: includes/admin/views/acf-post-type/list-empty.php:7 -msgid "Add Post Type" -msgstr "게시물 유형 추가" - -#: includes/admin/views/acf-post-type/list-empty.php:6 -msgid "" -"Expand the functionality of WordPress beyond standard posts and pages with " -"custom post types." -msgstr "" -"사용자 정의 게시물 유형을 사용하여 표준 게시물 및 페이지 이상으로 워드프레스" -"의 기능을 확장합니다." - -#: includes/admin/views/acf-post-type/list-empty.php:5 -msgid "Add Your First Post Type" -msgstr "첫 게시물 유형 추가" - -#: includes/admin/views/acf-post-type/basic-settings.php:136 -#: includes/admin/views/acf-taxonomy/basic-settings.php:135 -msgid "I know what I'm doing, show me all the options." -msgstr "내가 무엇을 하는지 알고 모든 옵션을 보여주세요." - -#: includes/admin/views/acf-post-type/basic-settings.php:135 -#: includes/admin/views/acf-taxonomy/basic-settings.php:134 -msgid "Advanced Configuration" -msgstr "고급 구성" - -#: includes/admin/views/acf-post-type/basic-settings.php:123 -msgid "Hierarchical post types can have descendants (like pages)." -msgstr "계층적 게시물 유형은 페이지와 같은 하위 항목을 가질 수 있습니다." - -#: includes/admin/views/acf-post-type/basic-settings.php:122 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:980 -#: includes/admin/views/acf-taxonomy/basic-settings.php:121 -msgid "Hierarchical" -msgstr "계층적" - -#: includes/admin/views/acf-post-type/basic-settings.php:107 -msgid "Visible on the frontend and in the admin dashboard." -msgstr "프런트엔드와 관리 알림판에서 볼 수 있습니다." - -#: includes/admin/views/acf-post-type/basic-settings.php:106 -#: includes/admin/views/acf-taxonomy/basic-settings.php:106 -msgid "Public" -msgstr "공공의" - -#. translators: example post type -#: includes/admin/views/acf-post-type/basic-settings.php:59 -msgid "movie" -msgstr "동영상" - -#: includes/admin/views/acf-post-type/basic-settings.php:57 -msgid "Lower case letters, underscores and dashes only, Max 20 characters." -msgstr "소문자, 밑줄 및 대시만 가능하며 최대 20자입니다." - -#. translators: example post type -#: includes/admin/views/acf-post-type/basic-settings.php:41 -msgid "Movie" -msgstr "동영상" - -#: includes/admin/views/acf-post-type/basic-settings.php:39 -#: includes/admin/views/acf-taxonomy/basic-settings.php:40 -msgid "Singular Label" -msgstr "단일 레이블" - -#. translators: example post type -#: includes/admin/views/acf-post-type/basic-settings.php:24 -msgid "Movies" -msgstr "동영상" - -#: includes/admin/views/acf-post-type/basic-settings.php:22 -#: includes/admin/views/acf-taxonomy/basic-settings.php:23 -msgid "Plural Label" -msgstr "복수 라벨" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1270 -msgid "" -"Optional custom controller to use instead of `WP_REST_Posts_Controller`." -msgstr "`WP_REST_Posts_Controller` 대신 사용할 선택적 사용자 정의 컨트롤러." - -#: includes/admin/views/acf-post-type/advanced-settings.php:1269 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1210 -msgid "Controller Class" -msgstr "컨트롤러 클래스" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1251 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1191 -msgid "The namespace part of the REST API URL." -msgstr "REST API URL의 네임스페이스 부분입니다." - -#: includes/admin/views/acf-post-type/advanced-settings.php:1250 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1190 -msgid "Namespace Route" -msgstr "네임스페이스 경로" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1232 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1172 -msgid "The base URL for the post type REST API URLs." -msgstr "게시물 유형 REST API URL의 기본 URL입니다." - -#: includes/admin/views/acf-post-type/advanced-settings.php:1231 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1171 -msgid "Base URL" -msgstr "기본 URL" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1217 -msgid "" -"Exposes this post type in the REST API. Required to use the block editor." -msgstr "" -"REST API에서 이 게시물 유형을 노출합니다. 블록 편집기를 사용하는 데 필요합니" -"다." - -#: includes/admin/views/acf-post-type/advanced-settings.php:1216 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1154 -msgid "Show In REST API" -msgstr "REST API에 표시" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1195 -msgid "Customize the query variable name." -msgstr "쿼리 변수 이름을 사용자 지정합니다." - -#: includes/admin/views/acf-post-type/advanced-settings.php:1194 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1054 -msgid "Query Variable" -msgstr "쿼리 변수" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1172 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1032 -msgid "No Query Variable Support" -msgstr "쿼리 변수 지원 없음" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1171 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1031 -msgid "Custom Query Variable" -msgstr "맞춤 쿼리 변수" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1168 -msgid "" -"Items can be accessed using the non-pretty permalink, eg. {post_type}" -"={post_slug}." -msgstr "" -"항목은 예를 들어 non-pretty permalink를 사용하여 액세스할 수 있습니다. " -"{post_type}={post_slug}." - -#: includes/admin/views/acf-post-type/advanced-settings.php:1167 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1027 -msgid "Query Variable Support" -msgstr "쿼리 변수 지원" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1142 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1003 -msgid "URLs for an item and items can be accessed with a query string." -msgstr "항목 및 항목에 대한 URL은 쿼리 문자열을 사용하여 액세스할 수 있습니다." - -#: includes/admin/views/acf-post-type/advanced-settings.php:1141 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1002 -msgid "Publicly Queryable" -msgstr "공개적으로 쿼리 가능" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1120 -msgid "Custom slug for the Archive URL." -msgstr "아카이브 URL에 대한 사용자 지정 슬러그입니다." - -#: includes/admin/views/acf-post-type/advanced-settings.php:1119 -msgid "Archive Slug" -msgstr "아카이브 슬러그" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1106 -msgid "" -"Has an item archive that can be customized with an archive template file in " -"your theme." -msgstr "" -"테마의 아카이브 템플릿 파일로 사용자 정의할 수 있는 항목 아카이브가 있습니다." - -#: includes/admin/views/acf-post-type/advanced-settings.php:1105 -msgid "Archive" -msgstr "아카이브" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1085 -msgid "Pagination support for the items URLs such as the archives." -msgstr "아카이브와 같은 항목 URL에 대한 페이지 매김 지원." - -#: includes/admin/views/acf-post-type/advanced-settings.php:1084 -msgid "Pagination" -msgstr "쪽수 매기기" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1067 -msgid "RSS feed URL for the post type items." -msgstr "게시물 유형 항목에 대한 RSS 피드 URL입니다." - -#: includes/admin/views/acf-post-type/advanced-settings.php:1066 -msgid "Feed URL" -msgstr "피드 URL" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1048 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:961 -msgid "" -"Alters the permalink structure to add the `WP_Rewrite::$front` prefix to " -"URLs." -msgstr "" -"URL에 `WP_Rewrite::$front` 접두사를 추가하도록 퍼머링크 구조를 변경합니다." - -#: includes/admin/views/acf-post-type/advanced-settings.php:1047 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:960 -msgid "Front URL Prefix" -msgstr "프런트 URL 프리픽스" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1028 -msgid "Customize the slug used in the URL." -msgstr "URL에 사용된 슬러그를 사용자 지정합니다." - -#: includes/admin/views/acf-post-type/advanced-settings.php:1027 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:940 -msgid "URL Slug" -msgstr "URL 슬러그" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1011 -msgid "Permalinks for this post type are disabled." -msgstr "이 게시물 유형에 대한 퍼머링크가 비활성화되었습니다." - -#. translators: this string will be appended with the new permalink structure. -#: includes/admin/views/acf-post-type/advanced-settings.php:1010 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:923 -msgid "" -"Rewrite the URL using a custom slug defined in the input below. Your " -"permalink structure will be" -msgstr "" -"아래 입력에 정의된 사용자 지정 슬러그를 사용하여 URL을 다시 작성합니다. 귀하" -"의 퍼머링크 구조는" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1002 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:915 -msgid "No Permalink (prevent URL rewriting)" -msgstr "퍼머링크 없음(URL 재작성 방지)" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1001 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:914 -msgid "Custom Permalink" -msgstr "맞춤 퍼머링크" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1000 -#: includes/admin/views/acf-post-type/advanced-settings.php:1170 -#: includes/admin/views/acf-post-type/basic-settings.php:56 -msgid "Post Type Key" -msgstr "게시물 유형 키" - -#. translators: this string will be appended with the new permalink structure. -#: includes/admin/views/acf-post-type/advanced-settings.php:998 -#: includes/admin/views/acf-post-type/advanced-settings.php:1008 -msgid "" -"Rewrite the URL using the post type key as the slug. Your permalink " -"structure will be" -msgstr "" -"게시물 유형 키를 슬러그로 사용하여 URL을 다시 작성하십시오. 귀하의 퍼머링크 " -"구조는" - -#: includes/admin/views/acf-post-type/advanced-settings.php:996 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:910 -msgid "Permalink Rewrite" -msgstr "퍼머링크 재작성" - -#: includes/admin/views/acf-post-type/advanced-settings.php:982 -msgid "Delete items by a user when that user is deleted." -msgstr "해당 사용자가 삭제되면 해당 사용자가 항목을 삭제합니다." - -#: includes/admin/views/acf-post-type/advanced-settings.php:981 -msgid "Delete With User" -msgstr "사용자와 함께 삭제" - -#: includes/admin/views/acf-post-type/advanced-settings.php:967 -msgid "Allow the post type to be exported from 'Tools' > 'Export'." -msgstr "게시물 유형을 '도구' > '내보내기'에서 내보낼 수 있도록 허용합니다." - -#: includes/admin/views/acf-post-type/advanced-settings.php:966 -msgid "Can Export" -msgstr "내보내기 가능" - -#: includes/admin/views/acf-post-type/advanced-settings.php:935 -msgid "Optionally provide a plural to be used in capabilities." -msgstr "기능에 사용할 복수형을 선택적으로 제공합니다." - -#: includes/admin/views/acf-post-type/advanced-settings.php:934 -msgid "Plural Capability Name" -msgstr "복수 기능 이름" - -#: includes/admin/views/acf-post-type/advanced-settings.php:916 -msgid "Choose another post type to base the capabilities for this post type." -msgstr "" -"이 게시물 유형의 기능을 기반으로 하려면 다른 게시물 유형을 선택하십시오." - -#: includes/admin/views/acf-post-type/advanced-settings.php:915 -msgid "Singular Capability Name" -msgstr "단일 기능 이름" - -#: includes/admin/views/acf-post-type/advanced-settings.php:901 -msgid "" -"By default the capabilities of the post type will inherit the 'Post' " -"capability names, eg. edit_post, delete_posts. Enable to use post type " -"specific capabilities, eg. edit_{singular}, delete_{plural}." -msgstr "" -"기본적으로 게시 유형의 기능은 '게시' 기능 이름을 상속합니다. edit_post, " -"delete_posts. 예를 들어 게시물 유형별 기능을 사용하도록 설정합니다. " -"edit_{singular}, delete_{plural}." - -#: includes/admin/views/acf-post-type/advanced-settings.php:900 -msgid "Rename Capabilities" -msgstr "기능 이름 바꾸기" - -#: includes/admin/views/acf-post-type/advanced-settings.php:885 -msgid "Exclude From Search" -msgstr "검색에서 제외" - -#: includes/admin/views/acf-post-type/advanced-settings.php:872 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:854 -msgid "" -"Allow items to be added to menus in the 'Appearance' > 'Menus' screen. Must " -"be turned on in 'Screen options'." -msgstr "" -"'모양' > '메뉴' 화면에서 항목을 메뉴에 추가할 수 있도록 허용합니다. '화면 옵" -"션'에서 켜야 합니다." - -#: includes/admin/views/acf-post-type/advanced-settings.php:871 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:853 -msgid "Appearance Menus Support" -msgstr "모양 메뉴 지원" - -#: includes/admin/views/acf-post-type/advanced-settings.php:853 -msgid "Appears as an item in the 'New' menu in the admin bar." -msgstr "관리 표시줄의 '새로 만들기' 메뉴에 항목으로 나타납니다." - -#: includes/admin/views/acf-post-type/advanced-settings.php:852 -msgid "Show In Admin Bar" -msgstr "관리 표시줄에 표시" - -#: includes/admin/views/acf-post-type/advanced-settings.php:821 -msgid "" -"A PHP function name to be called when setting up the meta boxes for the edit " -"screen." -msgstr "편집 화면의 메타박스 설정 시 호출할 PHP 함수명." - -#: includes/admin/views/acf-post-type/advanced-settings.php:820 -msgid "Custom Meta Box Callback" -msgstr "커스텀 메타 박스 콜백" - -#: includes/admin/views/acf-post-type/advanced-settings.php:800 -msgid "Menu Icon" -msgstr "메뉴 아이콘" - -#: includes/admin/views/acf-post-type/advanced-settings.php:782 -msgid "The position in the sidebar menu in the admin dashboard." -msgstr "관리 알림판의 사이드바 메뉴에 있는 위치입니다." - -#: includes/admin/views/acf-post-type/advanced-settings.php:781 -msgid "Menu Position" -msgstr "메뉴 위치" - -#: includes/admin/views/acf-post-type/advanced-settings.php:763 -msgid "" -"By default the post type will get a new top level item in the admin menu. If " -"an existing top level item is supplied here, the post type will be added as " -"a submenu item under it." -msgstr "" -"기본적으로 게시물 유형은 관리자 메뉴에서 새로운 최상위 항목을 가져옵니다. 여" -"기에 기존 최상위 항목이 제공되면 게시물 유형이 그 아래 하위 메뉴 항목으로 추" -"가됩니다." - -#: includes/admin/views/acf-post-type/advanced-settings.php:762 -msgid "Admin Menu Parent" -msgstr "관리자 메뉴 부모" - -#. translators: %s = "dashicon class name", link to the WordPress dashicon -#. documentation. -#: includes/admin/views/acf-post-type/advanced-settings.php:750 -msgid "" -"The icon used for the post type menu item in the admin dashboard. Can be a " -"URL or %s to use for the icon." -msgstr "" -"관리자 알림판의 게시물 유형 메뉴 항목에 사용되는 아이콘입니다. 아이콘에 사용" -"할 URL 또는 %s일 수 있습니다." - -#: includes/admin/views/acf-post-type/advanced-settings.php:745 -msgid "Dashicon class name" -msgstr "Dashicon 클래스 이름" - -#: includes/admin/views/acf-post-type/advanced-settings.php:734 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:734 -msgid "Admin editor navigation in the sidebar menu." -msgstr "사이드바 메뉴의 관리 편집기 탐색." - -#: includes/admin/views/acf-post-type/advanced-settings.php:733 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:733 -msgid "Show In Admin Menu" -msgstr "관리자 메뉴에 표시" - -#: includes/admin/views/acf-post-type/advanced-settings.php:720 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:719 -msgid "Items can be edited and managed in the admin dashboard." -msgstr "어드민 알림판에서 항목을 수정하고 관리할 수 있습니다." - -#: includes/admin/views/acf-post-type/advanced-settings.php:719 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:718 -msgid "Show In UI" -msgstr "UI에 표시" - -#: includes/admin/views/acf-post-type/advanced-settings.php:689 -msgid "A link to a post." -msgstr "게시물에 대한 링크입니다." - -#: includes/admin/views/acf-post-type/advanced-settings.php:688 -msgid "Description for a navigation link block variation." -msgstr "탐색 링크 블록 변형에 대한 설명입니다." - -#: includes/admin/views/acf-post-type/advanced-settings.php:687 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:702 -msgid "Item Link Description" -msgstr "항목 링크 설명" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:683 -msgid "A link to a %s." -msgstr "%s에 대한 링크입니다." - -#: includes/admin/views/acf-post-type/advanced-settings.php:668 -msgid "Post Link" -msgstr "링크 게시" - -#: includes/admin/views/acf-post-type/advanced-settings.php:667 -msgid "Title for a navigation link block variation." -msgstr "탐색 링크 블록 변형의 제목입니다." - -#: includes/admin/views/acf-post-type/advanced-settings.php:666 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:681 -msgid "Item Link" -msgstr "항목 링크" - -#. translators: %s Singular form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:663 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:678 -msgid "%s Link" -msgstr "%s 링크" - -#: includes/admin/views/acf-post-type/advanced-settings.php:648 -msgid "Post updated." -msgstr "게시물이 업데이트되었습니다." - -#: includes/admin/views/acf-post-type/advanced-settings.php:647 -msgid "In the editor notice after an item is updated." -msgstr "항목이 업데이트된 후 편집기 알림에서." - -#: includes/admin/views/acf-post-type/advanced-settings.php:646 -msgid "Item Updated" -msgstr "항목 업데이트됨" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:643 -msgid "%s updated." -msgstr "%s 업데이트되었습니다." - -#: includes/admin/views/acf-post-type/advanced-settings.php:628 -msgid "Post scheduled." -msgstr "게시물 예정." - -#: includes/admin/views/acf-post-type/advanced-settings.php:627 -msgid "In the editor notice after scheduling an item." -msgstr "항목 예약 후 편집자 공지에서." - -#: includes/admin/views/acf-post-type/advanced-settings.php:626 -msgid "Item Scheduled" -msgstr "예약된 항목" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:623 -msgid "%s scheduled." -msgstr "%s 예약됨." - -#: includes/admin/views/acf-post-type/advanced-settings.php:608 -msgid "Post reverted to draft." -msgstr "게시물이 초안으로 돌아갔습니다." - -#: includes/admin/views/acf-post-type/advanced-settings.php:607 -msgid "In the editor notice after reverting an item to draft." -msgstr "항목을 초안으로 되돌린 후 편집자 알림에서." - -#: includes/admin/views/acf-post-type/advanced-settings.php:606 -msgid "Item Reverted To Draft" -msgstr "초안으로 되돌린 항목" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:603 -msgid "%s reverted to draft." -msgstr "%s이(가) 초안으로 되돌아갔습니다." - -#: includes/admin/views/acf-post-type/advanced-settings.php:588 -msgid "Post published privately." -msgstr "게시물이 비공개로 게시되었습니다." - -#: includes/admin/views/acf-post-type/advanced-settings.php:587 -msgid "In the editor notice after publishing a private item." -msgstr "비공개 항목 게시 후 편집자 공지에서." - -#: includes/admin/views/acf-post-type/advanced-settings.php:586 -msgid "Item Published Privately" -msgstr "비공개로 게시된 항목" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:583 -msgid "%s published privately." -msgstr "%s은(는) 비공개로 게시되었습니다." - -#: includes/admin/views/acf-post-type/advanced-settings.php:568 -msgid "Post published." -msgstr "게시물이 게시되었습니다." - -#: includes/admin/views/acf-post-type/advanced-settings.php:567 -msgid "In the editor notice after publishing an item." -msgstr "항목을 게시한 후 편집자 알림에서." - -#: includes/admin/views/acf-post-type/advanced-settings.php:566 -msgid "Item Published" -msgstr "게시된 항목" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:563 -msgid "%s published." -msgstr "%s이(가) 게시되었습니다." - -#: includes/admin/views/acf-post-type/advanced-settings.php:548 -msgid "Posts list" -msgstr "게시물 목록" - -#: includes/admin/views/acf-post-type/advanced-settings.php:547 -msgid "Used by screen readers for the items list on the post type list screen." -msgstr "게시물 유형 목록 화면의 항목 목록에 대한 화면 판독기에서 사용됩니다." - -#: includes/admin/views/acf-post-type/advanced-settings.php:546 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:640 -msgid "Items List" -msgstr "항목 목록" - -#. translators: %s Plural form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:543 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:637 -msgid "%s list" -msgstr "%s 목록" - -#: includes/admin/views/acf-post-type/advanced-settings.php:528 -msgid "Posts list navigation" -msgstr "게시물 목록 탐색" - -#: includes/admin/views/acf-post-type/advanced-settings.php:527 -msgid "" -"Used by screen readers for the filter list pagination on the post type list " -"screen." -msgstr "" -"게시물 유형 목록 화면에서 필터 목록 페이지 매김을 위해 스크린 리더에서 사용됩" -"니다." - -#: includes/admin/views/acf-post-type/advanced-settings.php:526 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:620 -msgid "Items List Navigation" -msgstr "항목 목록 탐색" - -#. translators: %s Plural form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:523 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:617 -msgid "%s list navigation" -msgstr "%s 목록 탐색" - -#: includes/admin/views/acf-post-type/advanced-settings.php:507 -msgid "Filter posts by date" -msgstr "날짜별로 게시물 필터링" - -#: includes/admin/views/acf-post-type/advanced-settings.php:506 -msgid "" -"Used by screen readers for the filter by date heading on the post type list " -"screen." -msgstr "" -"게시물 유형 목록 화면에서 날짜 제목으로 필터링하기 위해 화면 판독기에서 사용" -"됩니다." - -#: includes/admin/views/acf-post-type/advanced-settings.php:505 -msgid "Filter Items By Date" -msgstr "날짜별로 항목 필터링" - -#. translators: %s Plural form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:501 -msgid "Filter %s by date" -msgstr "날짜별로 %s 필터링" - -#: includes/admin/views/acf-post-type/advanced-settings.php:486 -msgid "Filter posts list" -msgstr "게시물 목록 필터링" - -#: includes/admin/views/acf-post-type/advanced-settings.php:485 -msgid "" -"Used by screen readers for the filter links heading on the post type list " -"screen." -msgstr "" -"게시물 유형 목록 화면의 필터 링크 제목에 대해 스크린 리더에서 사용됩니다." - -#: includes/admin/views/acf-post-type/advanced-settings.php:484 -msgid "Filter Items List" -msgstr "항목 목록 필터링" - -#. translators: %s Plural form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:480 -msgid "Filter %s list" -msgstr "%s 목록 필터링" - -#: includes/admin/views/acf-post-type/advanced-settings.php:464 -msgid "In the media modal showing all media uploaded to this item." -msgstr "이 항목에 업로드된 모든 미디어를 표시하는 미디어 모달에서." - -#: includes/admin/views/acf-post-type/advanced-settings.php:463 -msgid "Uploaded To This Item" -msgstr "이 항목에 업로드됨" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:459 -msgid "Uploaded to this %s" -msgstr "이 %s에 업로드됨" - -#: includes/admin/views/acf-post-type/advanced-settings.php:444 -msgid "Insert into post" -msgstr "게시물에 삽입" - -#: includes/admin/views/acf-post-type/advanced-settings.php:443 -msgid "As the button label when adding media to content." -msgstr "콘텐츠에 미디어를 추가할 때 버튼 레이블로 사용합니다." - -#: includes/admin/views/acf-post-type/advanced-settings.php:442 -msgid "Insert Into Media Button" -msgstr "미디어에 삽입 버튼" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:438 -msgid "Insert into %s" -msgstr "%s에 삽입" - -#: includes/admin/views/acf-post-type/advanced-settings.php:423 -msgid "Use as featured image" -msgstr "추천 이미지로 사용" - -#: includes/admin/views/acf-post-type/advanced-settings.php:422 -msgid "" -"As the button label for selecting to use an image as the featured image." -msgstr "이미지를 추천 이미지로 사용하도록 선택하기 위한 버튼 레이블로." - -#: includes/admin/views/acf-post-type/advanced-settings.php:421 -msgid "Use Featured Image" -msgstr "추천 이미지 사용" - -#: includes/admin/views/acf-post-type/advanced-settings.php:408 -msgid "Remove featured image" -msgstr "추천 이미지 삭제" - -#: includes/admin/views/acf-post-type/advanced-settings.php:407 -msgid "As the button label when removing the featured image." -msgstr "추천 이미지를 제거할 때 버튼 레이블로." - -#: includes/admin/views/acf-post-type/advanced-settings.php:406 -msgid "Remove Featured Image" -msgstr "추천 이미지 제거" - -#: includes/admin/views/acf-post-type/advanced-settings.php:393 -msgid "Set featured image" -msgstr "추천 이미지 설정" - -#: includes/admin/views/acf-post-type/advanced-settings.php:392 -msgid "As the button label when setting the featured image." -msgstr "추천 이미지를 설정할 때 버튼 레이블로." - -#: includes/admin/views/acf-post-type/advanced-settings.php:391 -msgid "Set Featured Image" -msgstr "추천 이미지 설정" - -#: includes/admin/views/acf-post-type/advanced-settings.php:378 -msgid "Featured image" -msgstr "나타난 그림" - -#: includes/admin/views/acf-post-type/advanced-settings.php:377 -msgid "In the editor used for the title of the featured image meta box." -msgstr "추천 이미지 메타 상자의 제목에 사용되는 편집기에서." - -#: includes/admin/views/acf-post-type/advanced-settings.php:376 -msgid "Featured Image Meta Box" -msgstr "추천 이미지 메타 상자" - -#: includes/admin/views/acf-post-type/advanced-settings.php:363 -msgid "Post Attributes" -msgstr "게시물 속성" - -#: includes/admin/views/acf-post-type/advanced-settings.php:362 -msgid "In the editor used for the title of the post attributes meta box." -msgstr "게시물 속성 메타 상자의 제목에 사용되는 편집기에서." - -#: includes/admin/views/acf-post-type/advanced-settings.php:361 -msgid "Attributes Meta Box" -msgstr "속성 메타박스" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:358 -msgid "%s Attributes" -msgstr "%s 속성" - -#: includes/admin/views/acf-post-type/advanced-settings.php:343 -msgid "Post Archives" -msgstr "게시물 아카이브" - -#: includes/admin/views/acf-post-type/advanced-settings.php:342 -msgid "" -"Adds 'Post Type Archive' items with this label to the list of posts shown " -"when adding items to an existing menu in a CPT with archives enabled. Only " -"appears when editing menus in 'Live Preview' mode and a custom archive slug " -"has been provided." -msgstr "" -"아카이브가 활성화된 CPT의 기존 메뉴에 항목을 추가할 때 표시되는 게시물 목록" -"에 이 레이블이 있는 '게시물 유형 아카이브' 항목을 추가합니다. '실시간 미리보" -"기' 모드에서 메뉴를 편집하고 사용자 정의 아카이브 슬러그가 제공되었을 때만 나" -"타납니다." - -#: includes/admin/views/acf-post-type/advanced-settings.php:341 -msgid "Archives Nav Menu" -msgstr "아카이브 탐색 메뉴" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:338 -msgid "%s Archives" -msgstr "%s 아카이브" - -#: includes/admin/views/acf-post-type/advanced-settings.php:323 -msgid "No posts found in Trash" -msgstr "휴지통에 게시물이 없습니다." - -#: includes/admin/views/acf-post-type/advanced-settings.php:322 -msgid "" -"At the top of the post type list screen when there are no posts in the trash." -msgstr "휴지통에 게시물이 없을 때 게시물 유형 목록 화면 상단에 표시됩니다." - -#: includes/admin/views/acf-post-type/advanced-settings.php:321 -msgid "No Items Found in Trash" -msgstr "휴지통에 항목이 없습니다." - -#. translators: %s Plural form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:317 -msgid "No %s found in Trash" -msgstr "휴지통에서 %s을(를) 찾을 수 없습니다." - -#: includes/admin/views/acf-post-type/advanced-settings.php:302 -msgid "No posts found" -msgstr "게시물이 없습니다." - -#: includes/admin/views/acf-post-type/advanced-settings.php:301 -msgid "" -"At the top of the post type list screen when there are no posts to display." -msgstr "표시할 게시물이 없을 때 게시물 유형 목록 화면 상단에 표시됩니다." - -#: includes/admin/views/acf-post-type/advanced-settings.php:300 -msgid "No Items Found" -msgstr "제품을 찾지 못했습니다" - -#. translators: %s Plural form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:296 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:480 -msgid "No %s found" -msgstr "%s 없음" - -#: includes/admin/views/acf-post-type/advanced-settings.php:281 -msgid "Search Posts" -msgstr "게시물 검색" - -#: includes/admin/views/acf-post-type/advanced-settings.php:280 -msgid "At the top of the items screen when searching for an item." -msgstr "항목 검색 시 항목 화면 상단" - -#: includes/admin/views/acf-post-type/advanced-settings.php:279 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:345 -msgid "Search Items" -msgstr "항목 검색" - -#. translators: %s Singular form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:276 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:342 -msgid "Search %s" -msgstr "%s 검색" - -#: includes/admin/views/acf-post-type/advanced-settings.php:261 -msgid "Parent Page:" -msgstr "상위 페이지:" - -#: includes/admin/views/acf-post-type/advanced-settings.php:260 -msgid "For hierarchical types in the post type list screen." -msgstr "게시물 유형 목록 화면의 계층적 유형의 경우." - -#: includes/admin/views/acf-post-type/advanced-settings.php:259 -msgid "Parent Item Prefix" -msgstr "상위 품목 접두어" - -#. translators: %s Singular form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:256 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:318 -msgid "Parent %s:" -msgstr "부모 %s:" - -#: includes/admin/views/acf-post-type/advanced-settings.php:241 -msgid "New Post" -msgstr "새로운 게시물" - -#: includes/admin/views/acf-post-type/advanced-settings.php:239 -msgid "New Item" -msgstr "새로운 물품" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:236 -msgid "New %s" -msgstr "신규 %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:206 -msgid "Add New Post" -msgstr "새 게시물 추가" - -#: includes/admin/views/acf-post-type/advanced-settings.php:205 -msgid "At the top of the editor screen when adding a new item." -msgstr "새 항목을 추가할 때 편집기 화면 상단에 있습니다." - -#: includes/admin/views/acf-post-type/advanced-settings.php:204 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:256 -msgid "Add New Item" -msgstr "새 항목 추가" - -#. translators: %s Singular form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:201 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:253 -msgid "Add New %s" -msgstr "새 %s 추가" - -#: includes/admin/views/acf-post-type/advanced-settings.php:186 -msgid "View Posts" -msgstr "게시물 보기" - -#: includes/admin/views/acf-post-type/advanced-settings.php:185 -msgid "" -"Appears in the admin bar in the 'All Posts' view, provided the post type " -"supports archives and the home page is not an archive of that post type." -msgstr "" -"게시물 유형이 아카이브를 지원하고 홈 페이지가 해당 게시물 유형의 아카이브가 " -"아닌 경우 '모든 게시물' 보기의 관리 표시줄에 나타납니다." - -#: includes/admin/views/acf-post-type/advanced-settings.php:184 -msgid "View Items" -msgstr "항목 보기" - -#: includes/admin/views/acf-post-type/advanced-settings.php:166 -msgid "View Post" -msgstr "게시물 보기" - -#: includes/admin/views/acf-post-type/advanced-settings.php:165 -msgid "In the admin bar to view item when editing it." -msgstr "항목을 편집할 때 관리 표시줄에서 항목을 봅니다." - -#: includes/admin/views/acf-post-type/advanced-settings.php:164 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:216 -msgid "View Item" -msgstr "항목 보기" - -#. translators: %s Singular form of post type name -#. translators: %s Plural form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:161 -#: includes/admin/views/acf-post-type/advanced-settings.php:181 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:213 -msgid "View %s" -msgstr "%s 보기" - -#: includes/admin/views/acf-post-type/advanced-settings.php:146 -msgid "Edit Post" -msgstr "게시물 수정" - -#: includes/admin/views/acf-post-type/advanced-settings.php:145 -msgid "At the top of the editor screen when editing an item." -msgstr "항목을 편집할 때 편집기 화면 상단에 있습니다." - -#: includes/admin/views/acf-post-type/advanced-settings.php:144 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:196 -msgid "Edit Item" -msgstr "항목 편집" - -#. translators: %s Singular form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:141 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:193 -msgid "Edit %s" -msgstr "%s 편집" - -#: includes/admin/views/acf-post-type/advanced-settings.php:126 -msgid "All Posts" -msgstr "모든 게시물" - -#: includes/admin/views/acf-post-type/advanced-settings.php:125 -#: includes/admin/views/acf-post-type/advanced-settings.php:220 -#: includes/admin/views/acf-post-type/advanced-settings.php:240 -msgid "In the post type submenu in the admin dashboard." -msgstr "관리 알림판의 게시물 유형 하위 메뉴에서." - -#: includes/admin/views/acf-post-type/advanced-settings.php:124 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:176 -msgid "All Items" -msgstr "모든 항목" - -#. translators: %s Plural form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:121 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:173 -msgid "All %s" -msgstr "모든 %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:105 -msgid "Admin menu name for the post type." -msgstr "게시물 유형의 관리자 메뉴 이름입니다." - -#: includes/admin/views/acf-post-type/advanced-settings.php:104 -msgid "Menu Name" -msgstr "메뉴명" - -#: includes/admin/views/acf-post-type/advanced-settings.php:90 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:142 -msgid "Regenerate all labels using the Singular and Plural labels" -msgstr "단일 및 복수 레이블을 사용하여 모든 레이블 재생성" - -#: includes/admin/views/acf-post-type/advanced-settings.php:88 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:140 -msgid "Regenerate" -msgstr "재생하다" - -#: includes/admin/views/acf-post-type/advanced-settings.php:79 -msgid "Active post types are enabled and registered with WordPress." -msgstr "활성 게시물 유형이 활성화되고 워드프레스에 등록됩니다." - -#: includes/admin/views/acf-post-type/advanced-settings.php:63 -msgid "A descriptive summary of the post type." -msgstr "게시물 유형에 대한 설명 요약입니다." - -#: includes/admin/views/acf-post-type/advanced-settings.php:48 -msgid "Add Custom" -msgstr "맞춤 추가" - -#: includes/admin/views/acf-post-type/advanced-settings.php:42 -msgid "Enable various features in the content editor." -msgstr "콘텐츠 편집기에서 다양한 기능을 활성화합니다." - -#: includes/admin/views/acf-post-type/advanced-settings.php:31 -msgid "Post Formats" -msgstr "게시물 형식" - -#: includes/admin/views/acf-post-type/advanced-settings.php:25 -msgid "Editor" -msgstr "편집자" - -#: includes/admin/views/acf-post-type/advanced-settings.php:24 -msgid "Trackbacks" -msgstr "트랙백" - -#: includes/admin/views/acf-post-type/basic-settings.php:87 -msgid "Select existing taxonomies to classify items of the post type." -msgstr "게시물 유형의 항목을 택소노미하려면 기존 택소노미를 선택하십시오." - -#: includes/admin/views/acf-field-group/field.php:145 -msgid "Browse Fields" -msgstr "필드 찾아보기" - -#: includes/admin/tools/class-acf-admin-tool-import.php:292 -msgid "Nothing to import" -msgstr "가져올 항목 없음" - -#: includes/admin/tools/class-acf-admin-tool-import.php:287 -msgid ". The Custom Post Type UI plugin can be deactivated." -msgstr ". Custom Post Type UI 플러그인을 비활성화할 수 있습니다." - -#. translators: %d - number of items imported from CPTUI -#: includes/admin/tools/class-acf-admin-tool-import.php:278 -msgid "Imported %d item from Custom Post Type UI -" -msgid_plural "Imported %d items from Custom Post Type UI -" -msgstr[0] "사용자 정의 게시물 유형 UI에서 %d개의 항목을 가져왔습니다. -" - -#: includes/admin/tools/class-acf-admin-tool-import.php:262 -msgid "Failed to import taxonomies." -msgstr "택소노미를 가져오지 못했습니다." - -#: includes/admin/tools/class-acf-admin-tool-import.php:244 -msgid "Failed to import post types." -msgstr "게시물 유형을 가져오지 못했습니다." - -#: includes/admin/tools/class-acf-admin-tool-import.php:233 -msgid "Nothing from Custom Post Type UI plugin selected for import." -msgstr "가져오기 위해 선택된 사용자 지정 게시물 유형 UI 플러그인이 없습니다." - -#: includes/admin/tools/class-acf-admin-tool-import.php:209 -msgid "Imported 1 item" -msgid_plural "Imported %s items" -msgstr[0] "가져온 %s개 항목" - -#: includes/admin/tools/class-acf-admin-tool-import.php:122 -msgid "" -"Importing a Post Type or Taxonomy with the same key as one that already " -"exists will overwrite the settings for the existing Post Type or Taxonomy " -"with those of the import." -msgstr "" -"이미 존재하는 키와 동일한 키를 사용하여 게시물 유형 또는 택소노미를 가져오면 " -"기존 게시물 유형 또는 택소노미에 대한 설정을 가져오기의 설정으로 덮어씁니다." - -#: includes/admin/tools/class-acf-admin-tool-import.php:111 -#: includes/admin/tools/class-acf-admin-tool-import.php:127 -msgid "Import from Custom Post Type UI" -msgstr "사용자 정의 게시물 유형 UI에서 가져오기" - -#: includes/admin/tools/class-acf-admin-tool-export.php:412 -msgid "" -"The following code can be used to register a local version of the selected " -"items. Storing field groups, post types, or taxonomies locally can provide " -"many benefits such as faster load times, version control & dynamic fields/" -"settings. Simply copy and paste the following code to your theme's functions." -"php file or include it within an external file, then deactivate or delete " -"the items from the ACF admin." -msgstr "" -"다음 코드는 선택한 항목의 로컬 버전을 등록하는 데 사용할 수 있습니다. 필드 그" -"룹, 게시물 유형 또는 택소노미를 로컬에 저장하면 더 빠른 로드 시간, 버전 제어 " -"및 동적 필드/설정과 같은 많은 이점을 제공할 수 있습니다. 다음 코드를 복사하" -"여 테마의 functions.php 파일에 붙여넣거나 외부 파일에 포함시킨 다음 ACF 관리" -"자에서 항목을 비활성화하거나 삭제하십시오." - -#: includes/admin/tools/class-acf-admin-tool-export.php:411 -msgid "Export - Generate PHP" -msgstr "내보내기 - PHP 생성" - -#: includes/admin/tools/class-acf-admin-tool-export.php:384 -msgid "Export" -msgstr "내보내다" - -#: includes/admin/tools/class-acf-admin-tool-export.php:276 -msgid "Select Taxonomies" -msgstr "택소노미 선택" - -#: includes/admin/tools/class-acf-admin-tool-export.php:254 -msgid "Select Post Types" -msgstr "게시물 유형 선택" - -#: includes/admin/tools/class-acf-admin-tool-export.php:167 -msgid "Exported 1 item." -msgid_plural "Exported %s items." -msgstr[0] "내보낸 %s개 항목" - -#: includes/admin/post-types/admin-taxonomy.php:129 -#: assets/build/js/acf-internal-post-type.js:182 -#: assets/build/js/acf-internal-post-type.js:256 -msgid "Category" -msgstr "범주" - -#: includes/admin/post-types/admin-taxonomy.php:127 -#: assets/build/js/acf-internal-post-type.js:179 -#: assets/build/js/acf-internal-post-type.js:253 -msgid "Tag" -msgstr "꼬리표" - -#. translators: %s taxonomy name -#: includes/admin/post-types/admin-taxonomy.php:82 -msgid "%s taxonomy created" -msgstr "%s 택소노미 생성됨" - -#. translators: %s taxonomy name -#: includes/admin/post-types/admin-taxonomy.php:76 -msgid "%s taxonomy updated" -msgstr "%s 택소노미 업데이트됨" - -#: includes/admin/post-types/admin-taxonomy.php:56 -msgid "Taxonomy draft updated." -msgstr "택소노미 초안이 업데이트되었습니다." - -#: includes/admin/post-types/admin-taxonomy.php:55 -msgid "Taxonomy scheduled for." -msgstr "예정된 택소노미." - -#: includes/admin/post-types/admin-taxonomy.php:54 -msgid "Taxonomy submitted." -msgstr "택소노미가 제출되었습니다." - -#: includes/admin/post-types/admin-taxonomy.php:53 -msgid "Taxonomy saved." -msgstr "택소노미가 저장되었습니다." - -#: includes/admin/post-types/admin-taxonomy.php:49 -msgid "Taxonomy deleted." -msgstr "택소노미가 삭제되었습니다." - -#: includes/admin/post-types/admin-taxonomy.php:48 -msgid "Taxonomy updated." -msgstr "택소노미가 업데이트되었습니다." - -#: includes/admin/post-types/admin-taxonomies.php:377 -#: includes/admin/post-types/admin-taxonomy.php:157 -msgid "" -"This taxonomy could not be registered because its key is in use by another " -"taxonomy registered by another plugin or theme." -msgstr "" -"다른 플러그인 또는 테마에서 등록한 다른 택소노미에서 해당 키를 사용 중이므로 " -"이 택소노미를 등록할 수 없습니다." - -#. translators: %s number of taxonomies synchronized -#: includes/admin/post-types/admin-taxonomies.php:359 -msgid "Taxonomy synchronized." -msgid_plural "%s taxonomies synchronized." -msgstr[0] "%s개의 택소노미가 동기화되었습니다." - -#. translators: %s number of taxonomies duplicated -#: includes/admin/post-types/admin-taxonomies.php:352 -msgid "Taxonomy duplicated." -msgid_plural "%s taxonomies duplicated." -msgstr[0] "%s개의 택소노미가 중복되었습니다." - -#. translators: %s number of taxonomies deactivated -#: includes/admin/post-types/admin-taxonomies.php:345 -msgid "Taxonomy deactivated." -msgid_plural "%s taxonomies deactivated." -msgstr[0] "%s개의 택소노미가 비활성화되었습니다." - -#. translators: %s number of taxonomies activated -#: includes/admin/post-types/admin-taxonomies.php:338 -msgid "Taxonomy activated." -msgid_plural "%s taxonomies activated." -msgstr[0] "%s개의 택소노미가 활성화되었습니다." - -#: includes/admin/post-types/admin-taxonomies.php:139 -msgid "Terms" -msgstr "용어" - -#. translators: %s number of post types synchronized -#: includes/admin/post-types/admin-post-types.php:352 -msgid "Post type synchronized." -msgid_plural "%s post types synchronized." -msgstr[0] "%s 게시물 유형이 동기화되었습니다." - -#. translators: %s number of post types duplicated -#: includes/admin/post-types/admin-post-types.php:345 -msgid "Post type duplicated." -msgid_plural "%s post types duplicated." -msgstr[0] "%s 게시물 유형이 중복되었습니다." - -#. translators: %s number of post types deactivated -#: includes/admin/post-types/admin-post-types.php:338 -msgid "Post type deactivated." -msgid_plural "%s post types deactivated." -msgstr[0] "%s 게시물 유형이 비활성화되었습니다." - -#. translators: %s number of post types activated -#: includes/admin/post-types/admin-post-types.php:331 -msgid "Post type activated." -msgid_plural "%s post types activated." -msgstr[0] "%s 게시물 유형이 활성화되었습니다." - -#: includes/admin/post-types/admin-post-types.php:112 -#: includes/admin/post-types/admin-taxonomies.php:137 -#: includes/admin/tools/class-acf-admin-tool-import.php:82 -#: includes/admin/views/acf-taxonomy/basic-settings.php:82 -#: includes/post-types/class-acf-post-type.php:91 -msgid "Post Types" -msgstr "게시물 유형" - -#: includes/admin/post-types/admin-post-type.php:162 -#: includes/admin/post-types/admin-taxonomy.php:164 -msgid "Advanced Settings" -msgstr "고급 설정" - -#: includes/admin/post-types/admin-post-type.php:161 -#: includes/admin/post-types/admin-taxonomy.php:163 -msgid "Basic Settings" -msgstr "기본 설정" - -#: includes/admin/post-types/admin-post-type.php:155 -#: includes/admin/post-types/admin-post-types.php:370 -msgid "" -"This post type could not be registered because its key is in use by another " -"post type registered by another plugin or theme." -msgstr "" -"이 게시물 유형은 다른 플러그인 또는 테마에서 등록한 다른 게시물 유형에서 해" -"당 키를 사용 중이므로 등록할 수 없습니다." - -#: includes/admin/post-types/admin-post-type.php:128 -#: assets/build/js/acf-internal-post-type.js:176 -#: assets/build/js/acf-internal-post-type.js:250 -msgid "Pages" -msgstr "페이지" - -#: includes/admin/admin-internal-post-type.php:355 -msgid "Link Existing Field Groups" -msgstr "기존 필드 그룹 연결" - -#. translators: %s post type name -#: includes/admin/post-types/admin-post-type.php:80 -msgid "%s post type created" -msgstr "%s 게시물 유형이 생성됨" - -#. translators: %s taxonomy name -#: includes/admin/post-types/admin-taxonomy.php:78 -msgid "Add fields to %s" -msgstr "%s에 필드 추가" - -#. translators: %s post type name -#: includes/admin/post-types/admin-post-type.php:76 -msgid "%s post type updated" -msgstr "%s 게시물 유형 업데이트됨" - -#: includes/admin/post-types/admin-post-type.php:56 -msgid "Post type draft updated." -msgstr "게시물 유형 초안이 업데이트되었습니다." - -#: includes/admin/post-types/admin-post-type.php:55 -msgid "Post type scheduled for." -msgstr "예정된 게시물 유형입니다." - -#: includes/admin/post-types/admin-post-type.php:54 -msgid "Post type submitted." -msgstr "게시물 유형이 제출되었습니다." - -#: includes/admin/post-types/admin-post-type.php:53 -msgid "Post type saved." -msgstr "게시물 유형이 저장되었습니다." - -#: includes/admin/post-types/admin-post-type.php:50 -msgid "Post type updated." -msgstr "게시물 유형이 업데이트되었습니다." - -#: includes/admin/post-types/admin-post-type.php:49 -msgid "Post type deleted." -msgstr "게시물 유형이 삭제되었습니다." - -#: includes/admin/post-types/admin-field-group.php:120 -#: assets/build/js/acf-field-group.js:1146 -#: assets/build/js/acf-field-group.js:1366 -msgid "Type to search..." -msgstr "검색하려면 입력하세요..." - -#: includes/admin/post-types/admin-field-group.php:105 -#: assets/build/js/acf-field-group.js:1172 -#: assets/build/js/acf-field-group.js:2319 -#: assets/build/js/acf-field-group.js:1414 -#: assets/build/js/acf-field-group.js:2727 -msgid "PRO Only" -msgstr "프로 전용" - -#: includes/admin/post-types/admin-field-group.php:97 -#: assets/build/js/acf-internal-post-type.js:308 -#: assets/build/js/acf-internal-post-type.js:417 -msgid "Field groups linked successfully." -msgstr "필드 그룹이 성공적으로 연결되었습니다." - -#. translators: %s - URL to ACF tools page. -#: includes/admin/admin.php:195 -msgid "" -"Import Post Types and Taxonomies registered with Custom Post Type UI and " -"manage them with ACF. Get Started." -msgstr "" -"Custom Post Type UI에 등록된 Post Type과 Taxonomies를 가져와서 ACF로 관리합니" -"다. 시작하기." - -#: includes/admin/admin.php:48 includes/admin/admin.php:267 -msgid "ACF" -msgstr "ACF" - -#: includes/admin/admin-internal-post-type.php:322 -msgid "taxonomy" -msgstr "택소노미" - -#: includes/admin/admin-internal-post-type.php:322 -msgid "post type" -msgstr "게시물 유형" - -#: includes/admin/admin-internal-post-type.php:346 -msgid "Done" -msgstr "완료" - -#: includes/admin/admin-internal-post-type.php:332 -msgid "Field Group(s)" -msgstr "필드 그룹" - -#: includes/admin/admin-internal-post-type.php:331 -msgid "Select one or many field groups..." -msgstr "하나 이상의 필드 그룹 선택..." - -#: includes/admin/admin-internal-post-type.php:330 -msgid "Please select the field groups to link." -msgstr "연결할 필드 그룹을 선택하십시오." - -#: includes/admin/admin-internal-post-type.php:288 -msgid "Field group linked successfully." -msgid_plural "Field groups linked successfully." -msgstr[0] "필드 그룹이 성공적으로 연결되었습니다." - -#: includes/admin/admin-internal-post-type-list.php:261 -#: includes/admin/post-types/admin-post-types.php:371 -#: includes/admin/post-types/admin-taxonomies.php:378 -msgctxt "post status" -msgid "Registration Failed" -msgstr "등록 실패" - -#: includes/admin/admin-internal-post-type-list.php:260 -msgid "" -"This item could not be registered because its key is in use by another item " -"registered by another plugin or theme." -msgstr "" -"이 항목은 다른 플러그인 또는 테마에서 등록한 다른 항목에서 해당 키를 사용 중" -"이므로 등록할 수 없습니다." - -#: includes/acf-internal-post-type-functions.php:482 -#: includes/acf-internal-post-type-functions.php:511 -msgid "REST API" -msgstr "REST API" - -#: includes/acf-internal-post-type-functions.php:481 -#: includes/acf-internal-post-type-functions.php:510 -#: includes/acf-internal-post-type-functions.php:537 -msgid "Permissions" -msgstr "권한" - -#: includes/acf-internal-post-type-functions.php:480 -#: includes/acf-internal-post-type-functions.php:509 -msgid "URLs" -msgstr "URL" - -#: includes/acf-internal-post-type-functions.php:479 -#: includes/acf-internal-post-type-functions.php:508 -#: includes/acf-internal-post-type-functions.php:535 -msgid "Visibility" -msgstr "가시성" - -#: includes/acf-internal-post-type-functions.php:478 -#: includes/acf-internal-post-type-functions.php:507 -#: includes/acf-internal-post-type-functions.php:536 -msgid "Labels" -msgstr "레이블" - -#: includes/admin/post-types/admin-field-group.php:269 -msgid "Field Settings Tabs" -msgstr "필드 설정 탭" - -#. Author URI of the plugin -msgid "" -"https://wpengine.com/?utm_source=wordpress." -"org&utm_medium=referral&utm_campaign=plugin_directory&utm_content=advanced_custom_fields" -msgstr "" -"https://wpengine.com/?utm_source=wordpress." -"org&utm_medium=referral&utm_campaign=plugin_directory&utm_content=advanced_custom_fields" - -#: includes/api/api-template.php:867 -msgid "[ACF shortcode value disabled for preview]" -msgstr "[미리보기에 사용할 수 없는 ACF 쇼트코드 값]" - -#: includes/admin/admin-internal-post-type.php:298 -#: includes/admin/post-types/admin-field-group.php:571 -msgid "Close Modal" -msgstr "모달 닫기" - -#: includes/admin/post-types/admin-field-group.php:96 -#: assets/build/js/acf-field-group.js:1670 -#: assets/build/js/acf-field-group.js:1993 -msgid "Field moved to other group" -msgstr "필드가 다른 그룹으로 이동됨" - -#: includes/admin/post-types/admin-field-group.php:95 -#: assets/build/js/acf.js:1437 assets/build/js/acf.js:1517 -msgid "Close modal" -msgstr "모달 닫기" - -#: includes/fields/class-acf-field-tab.php:125 -msgid "Start a new group of tabs at this tab." -msgstr "이 탭에서 새 탭 그룹을 시작합니다." - -#: includes/fields/class-acf-field-tab.php:124 -msgid "New Tab Group" -msgstr "새 탭 그룹" - -#: includes/fields/class-acf-field-select.php:451 -#: includes/fields/class-acf-field-true_false.php:200 -msgid "Use a stylized checkbox using select2" -msgstr "Select2를 사용하여 양식화된 체크박스 사용" - -#: includes/fields/class-acf-field-radio.php:260 -msgid "Save Other Choice" -msgstr "다른 선택 저장" - -#: includes/fields/class-acf-field-radio.php:249 -msgid "Allow Other Choice" -msgstr "다른 선택 허용" - -#: includes/fields/class-acf-field-checkbox.php:450 -msgid "Add Toggle All" -msgstr "모두 전환 추가" - -#: includes/fields/class-acf-field-checkbox.php:409 -msgid "Save Custom Values" -msgstr "사용자 지정 값 저장" - -#: includes/fields/class-acf-field-checkbox.php:398 -msgid "Allow Custom Values" -msgstr "사용자 지정 값 허용" - -#: includes/fields/class-acf-field-checkbox.php:148 -msgid "Checkbox custom values cannot be empty. Uncheck any empty values." -msgstr "" -"체크박스 맞춤 값은 비워둘 수 없습니다. 비어 있는 값을 모두 선택 취소합니다." - -#: includes/admin/views/global/navigation.php:248 -msgid "Updates" -msgstr "업데이트" - -#: includes/admin/views/global/navigation.php:176 -msgid "Advanced Custom Fields logo" -msgstr "고급 사용자 정의 필드 로고" - -#: includes/admin/views/global/form-top.php:89 -msgid "Save Changes" -msgstr "변경 사항을 저장하다" - -#: includes/admin/views/global/form-top.php:76 -msgid "Field Group Title" -msgstr "필드 그룹 제목" - -#: includes/admin/views/acf-post-type/advanced-settings.php:704 -#: includes/admin/views/global/form-top.php:3 -msgid "Add title" -msgstr "제목 추가" - -#. translators: %s url to getting started guide -#: includes/admin/views/acf-field-group/list-empty.php:20 -#: includes/admin/views/acf-post-type/list-empty.php:12 -#: includes/admin/views/acf-taxonomy/list-empty.php:12 -#: includes/admin/views/options-page-preview.php:13 -msgid "" -"New to ACF? Take a look at our getting " -"started guide." -msgstr "" -"ACF가 처음이신가요? 시작 가이드를 살펴보" -"세요." - -#: includes/admin/views/acf-field-group/list-empty.php:15 -msgid "Add Field Group" -msgstr "필드 그룹 추가" - -#. translators: %s url to creating a field group page -#: includes/admin/views/acf-field-group/list-empty.php:10 -msgid "" -"ACF uses field groups to group custom " -"fields together, and then attach those fields to edit screens." -msgstr "" -"ACF는 필드 그룹을 사용하여 사용자 정의 " -"필드를 함께 그룹화한 다음 해당 필드를 편집 화면에 첨부합니다." - -#: includes/admin/views/acf-field-group/list-empty.php:5 -msgid "Add Your First Field Group" -msgstr "첫 번째 필드 그룹 추가" - -#: includes/admin/admin-options-pages-preview.php:28 -#: includes/admin/views/acf-field-group/pro-features.php:54 -#: includes/admin/views/global/navigation.php:86 -#: includes/admin/views/global/navigation.php:250 -msgid "Options Pages" -msgstr "옵션 페이지" - -#: includes/admin/views/acf-field-group/pro-features.php:50 -msgid "ACF Blocks" -msgstr "ACF 블록" - -#: includes/admin/views/acf-field-group/pro-features.php:58 -msgid "Gallery Field" -msgstr "갤러리 필드" - -#: includes/admin/views/acf-field-group/pro-features.php:38 -msgid "Flexible Content Field" -msgstr "유연한 콘텐츠 필드" - -#: includes/admin/views/acf-field-group/pro-features.php:42 -msgid "Repeater Field" -msgstr "리피터 필드" - -#: includes/admin/views/global/navigation.php:212 -msgid "Unlock Extra Features with ACF PRO" -msgstr "ACF 프로로 추가 기능 잠금 해제" - -#: includes/admin/views/acf-field-group/options.php:267 -msgid "Delete Field Group" -msgstr "필드 그룹 삭제" - -#. translators: 1: Post creation date 2: Post creation time -#: includes/admin/views/acf-field-group/options.php:261 -msgid "Created on %1$s at %2$s" -msgstr "%1$s에서 %2$s에 생성됨" - -#: includes/acf-field-group-functions.php:497 -msgid "Group Settings" -msgstr "그룹 설정" - -#: includes/acf-field-group-functions.php:495 -msgid "Location Rules" -msgstr "위치 규칙" - -#. translators: %s url to field types list -#: includes/admin/views/acf-field-group/fields.php:72 -msgid "" -"Choose from over 30 field types. Learn " -"more." -msgstr "" -"30개 이상의 필드 유형 중에서 선택하십시오. " -"자세히 알아보세요." - -#: includes/admin/views/acf-field-group/fields.php:65 -msgid "" -"Get started creating new custom fields for your posts, pages, custom post " -"types and other WordPress content." -msgstr "" -"게시물, 페이지, 사용자 정의 게시물 유형 및 기타 워드프레스 콘텐츠에 대한 새로" -"운 사용자 정의 필드 생성을 시작하십시오." - -#: includes/admin/views/acf-field-group/fields.php:64 -msgid "Add Your First Field" -msgstr "첫 번째 필드 추가" - -#. translators: A symbol (or text, if not available in your locale) meaning -#. "Order Number", in terms of positional placement. -#: includes/admin/views/acf-field-group/fields.php:43 -msgid "#" -msgstr "#" - -#: includes/admin/views/acf-field-group/fields.php:33 -#: includes/admin/views/acf-field-group/fields.php:67 -#: includes/admin/views/acf-field-group/fields.php:103 -#: includes/admin/views/global/form-top.php:85 -msgid "Add Field" -msgstr "필드 추가" - -#: includes/acf-field-group-functions.php:496 includes/fields.php:410 -msgid "Presentation" -msgstr "프레젠테이션" - -#: includes/fields.php:409 -msgid "Validation" -msgstr "확인" - -#: includes/acf-internal-post-type-functions.php:477 -#: includes/acf-internal-post-type-functions.php:506 includes/fields.php:408 -msgid "General" -msgstr "일반적인" - -#: includes/admin/tools/class-acf-admin-tool-import.php:70 -msgid "Import JSON" -msgstr "JSON 가져오기" - -#: includes/admin/tools/class-acf-admin-tool-export.php:392 -msgid "Export As JSON" -msgstr "JSON으로 내보내기" - -#. translators: %s number of field groups deactivated -#: includes/admin/post-types/admin-field-groups.php:367 -msgid "Field group deactivated." -msgid_plural "%s field groups deactivated." -msgstr[0] "%s 필드 그룹이 비활성화되었습니다." - -#. translators: %s number of field groups activated -#: includes/admin/post-types/admin-field-groups.php:360 -msgid "Field group activated." -msgid_plural "%s field groups activated." -msgstr[0] "%s 필드 그룹이 활성화되었습니다." - -#: includes/admin/admin-internal-post-type-list.php:452 -#: includes/admin/admin-internal-post-type-list.php:478 -msgid "Deactivate" -msgstr "비활성화" - -#: includes/admin/admin-internal-post-type-list.php:452 -msgid "Deactivate this item" -msgstr "이 항목 비활성화" - -#: includes/admin/admin-internal-post-type-list.php:448 -#: includes/admin/admin-internal-post-type-list.php:477 -msgid "Activate" -msgstr "활성화" - -#: includes/admin/admin-internal-post-type-list.php:448 -msgid "Activate this item" -msgstr "이 항목 활성화" - -#: includes/admin/post-types/admin-field-group.php:92 -#: assets/build/js/acf-field-group.js:2812 -#: assets/build/js/acf-field-group.js:3313 -msgid "Move field group to trash?" -msgstr "필드 그룹을 휴지통으로 이동하시겠습니까?" - -#: acf.php:497 includes/admin/admin-internal-post-type-list.php:248 -#: includes/admin/post-types/admin-field-group.php:297 -#: includes/admin/post-types/admin-post-type.php:295 -#: includes/admin/post-types/admin-taxonomy.php:297 -msgctxt "post status" -msgid "Inactive" -msgstr "비활성" - -#. Author of the plugin -msgid "WP Engine" -msgstr "WP 엔진" - -#: acf.php:555 -msgid "" -"Advanced Custom Fields and Advanced Custom Fields PRO should not be active " -"at the same time. We've automatically deactivated Advanced Custom Fields PRO." -msgstr "" -"고급 사용자 정의 필드와 고급 사용자 정의 필드 프로는 동시에 활성화되어서는 " -"안 됩니다. 고급 사용자 정의 필드 프로를 자동으로 비활성화했습니다." - -#: acf.php:553 -msgid "" -"Advanced Custom Fields and Advanced Custom Fields PRO should not be active " -"at the same time. We've automatically deactivated Advanced Custom Fields." -msgstr "" -"고급 사용자 정의 필드와 고급 사용자 정의 필드 프로는 동시에 활성화되어서는 " -"안 됩니다. 고급 사용자 정의 필드를 자동으로 비활성화했습니다." - -#: includes/acf-value-functions.php:374 -msgid "" -"%1$s - We've detected one or more calls to retrieve ACF " -"field values before ACF has been initialized. This is not supported and can " -"result in malformed or missing data. Learn how to fix this." -msgstr "" -"%1$s - ACF가 초기화되기 전에 ACF 필드 값을 검색하는 호출이 " -"하나 이상 감지되었습니다. 이는 지원되지 않으며 잘못된 형식의 데이터 또는 누락" -"된 데이터가 발생할 수 있습니다. 이 문제를 " -"해결하는 방법을 알아보세요." - -#: includes/fields/class-acf-field-user.php:551 -msgid "%1$s must have a user with the %2$s role." -msgid_plural "%1$s must have a user with one of the following roles: %2$s" -msgstr[0] "%1$s에는 다음 역할 중 하나를 가진 사용자가 있어야 합니다. %2$s" - -#: includes/fields/class-acf-field-user.php:542 -msgid "%1$s must have a valid user ID." -msgstr "%1$s에는 유효한 사용자 ID가 있어야 합니다." - -#: includes/fields/class-acf-field-user.php:380 -msgid "Invalid request." -msgstr "잘못된 요청." - -#: includes/fields/class-acf-field-select.php:684 -msgid "%1$s is not one of %2$s" -msgstr "%1$s은(는) %2$s 중 하나가 아닙니다." - -#: includes/fields/class-acf-field-post_object.php:700 -msgid "%1$s must have term %2$s." -msgid_plural "%1$s must have one of the following terms: %2$s" -msgstr[0] "%1$s에는 다음 용어 중 하나가 있어야 합니다. %2$s" - -#: includes/fields/class-acf-field-post_object.php:684 -msgid "%1$s must be of post type %2$s." -msgid_plural "%1$s must be of one of the following post types: %2$s" -msgstr[0] "%1$s은(는) 다음 게시물 유형 중 하나여야 합니다: %2$s" - -#: includes/fields/class-acf-field-post_object.php:675 -msgid "%1$s must have a valid post ID." -msgstr "%1$s에는 유효한 게시물 ID가 있어야 합니다." - -#: includes/fields/class-acf-field-file.php:475 -msgid "%s requires a valid attachment ID." -msgstr "%s에는 유효한 첨부 파일 ID가 필요합니다." - -#: includes/admin/views/acf-field-group/options.php:233 -msgid "Show in REST API" -msgstr "REST API에 표시" - -#: includes/fields/class-acf-field-color_picker.php:168 -msgid "Enable Transparency" -msgstr "투명성 활성화" - -#: includes/fields/class-acf-field-color_picker.php:187 -msgid "RGBA Array" -msgstr "RGBA 배열" - -#: includes/fields/class-acf-field-color_picker.php:98 -msgid "RGBA String" -msgstr "RGBA 문자열" - -#: includes/fields/class-acf-field-color_picker.php:97 -#: includes/fields/class-acf-field-color_picker.php:186 -msgid "Hex String" -msgstr "16진수 문자열" - -#: includes/admin/views/browse-fields-modal.php:65 -msgid "Upgrade to PRO" -msgstr "프로로 업그레이드" - -#: includes/admin/post-types/admin-field-group.php:297 -#: includes/admin/post-types/admin-post-type.php:295 -#: includes/admin/post-types/admin-taxonomy.php:297 -msgctxt "post status" -msgid "Active" -msgstr "활성" - -#: includes/fields/class-acf-field-email.php:181 -msgid "'%s' is not a valid email address" -msgstr "‘%s’은(는) 유효한 이매일 주소가 아닙니다" - -#: includes/fields/class-acf-field-color_picker.php:76 -msgid "Color value" -msgstr "색상 값" - -#: includes/fields/class-acf-field-color_picker.php:74 -msgid "Select default color" -msgstr "기본 색상 선택하기" - -#: includes/fields/class-acf-field-color_picker.php:72 -msgid "Clear color" -msgstr "선명한 색상" - -#: includes/acf-wp-functions.php:90 -msgid "Blocks" -msgstr "블록" - -#: includes/acf-wp-functions.php:86 -msgid "Options" -msgstr "옵션" - -#: includes/acf-wp-functions.php:82 -msgid "Users" -msgstr "사용자" - -#: includes/acf-wp-functions.php:78 -msgid "Menu items" -msgstr "메뉴 항목" - -#: includes/acf-wp-functions.php:70 -msgid "Widgets" -msgstr "위젯" - -#: includes/acf-wp-functions.php:62 -msgid "Attachments" -msgstr "첨부파일" - -#: includes/acf-wp-functions.php:57 -#: includes/admin/post-types/admin-post-types.php:137 -#: includes/admin/post-types/admin-taxonomies.php:112 -#: includes/admin/tools/class-acf-admin-tool-import.php:93 -#: includes/admin/views/acf-post-type/basic-settings.php:86 -#: includes/post-types/class-acf-taxonomy.php:90 -#: includes/post-types/class-acf-taxonomy.php:91 -msgid "Taxonomies" -msgstr "택소노미" - -#: includes/acf-wp-functions.php:44 -#: includes/admin/post-types/admin-post-type.php:126 -#: includes/admin/post-types/admin-post-types.php:139 -#: includes/admin/views/acf-post-type/advanced-settings.php:106 -#: assets/build/js/acf-internal-post-type.js:173 -#: assets/build/js/acf-internal-post-type.js:247 -msgid "Posts" -msgstr "게시물" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:76 -msgid "Last updated: %s" -msgstr "최근 업대이트: %s" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:70 -msgid "Sorry, this post is unavailable for diff comparison." -msgstr "죄송합니다. 이 게시물은 diff 비교에 사용할 수 없습니다." - -#: includes/ajax/class-acf-ajax-local-json-diff.php:42 -msgid "Invalid field group parameter(s)." -msgstr "잘못된 필드 그룹 매개변수입니다." - -#: includes/admin/admin-internal-post-type-list.php:413 -msgid "Awaiting save" -msgstr "저장 대기 중" - -#: includes/admin/admin-internal-post-type-list.php:410 -msgid "Saved" -msgstr "저장했어요" - -#: includes/admin/admin-internal-post-type-list.php:406 -#: includes/admin/tools/class-acf-admin-tool-import.php:49 -msgid "Import" -msgstr "가져오기" - -#: includes/admin/admin-internal-post-type-list.php:402 -msgid "Review changes" -msgstr "변경사항 검토하기" - -#: includes/admin/admin-internal-post-type-list.php:378 -msgid "Located in: %s" -msgstr "위치: %s" - -#: includes/admin/admin-internal-post-type-list.php:375 -msgid "Located in plugin: %s" -msgstr "플러그인에 있음: %s" - -#: includes/admin/admin-internal-post-type-list.php:372 -msgid "Located in theme: %s" -msgstr "테마에 있음: %s" - -#: includes/admin/post-types/admin-field-groups.php:261 -msgid "Various" -msgstr "다양한" - -#: includes/admin/admin-internal-post-type-list.php:216 -#: includes/admin/admin-internal-post-type-list.php:485 -msgid "Sync changes" -msgstr "변경사항 동기화하기" - -#: includes/admin/admin-internal-post-type-list.php:215 -msgid "Loading diff" -msgstr "로딩 차이" - -#: includes/admin/admin-internal-post-type-list.php:214 -msgid "Review local JSON changes" -msgstr "지역 JSON 변경 검토하기" - -#: includes/admin/admin.php:170 -msgid "Visit website" -msgstr "웹 사이트 방문하기" - -#: includes/admin/admin.php:169 -msgid "View details" -msgstr "세부 정보 보기" - -#: includes/admin/admin.php:168 -msgid "Version %s" -msgstr "버전 %s" - -#: includes/admin/admin.php:167 -msgid "Information" -msgstr "정보" - -#: includes/admin/admin.php:158 -msgid "" -"Help Desk. The support professionals on " -"our Help Desk will assist with your more in depth, technical challenges." -msgstr "" -"헬프 데스크. 당사 헬프데스크의 지원 전문" -"가가 보다 심도 있는 기술 문제를 지원할 것입니다." - -#: includes/admin/admin.php:154 -msgid "" -"Discussions. We have an active and " -"friendly community on our Community Forums who may be able to help you " -"figure out the 'how-tos' of the ACF world." -msgstr "" -"토론. ACF 세계의 '방법'을 파악하는 데 도" -"움을 줄 수 있는 커뮤니티 포럼에 활발하고 친근한 커뮤니티가 있습니다." - -#: includes/admin/admin.php:150 -msgid "" -"Documentation. Our extensive " -"documentation contains references and guides for most situations you may " -"encounter." -msgstr "" -"문서. 광범위한 문서에는 발생할 수 있는 " -"대부분의 상황에 대한 참조 및 가이드가 포함되어 있습니다." - -#: includes/admin/admin.php:147 -msgid "" -"We are fanatical about support, and want you to get the best out of your " -"website with ACF. If you run into any difficulties, there are several places " -"you can find help:" -msgstr "" -"우리는 지원에 열광하며 ACF를 통해 웹 사이트를 최대한 활용하기를 바랍니다. 어" -"려움에 처한 경우 도움을 받을 수 있는 여러 곳이 있습니다." - -#: includes/admin/admin.php:144 includes/admin/admin.php:146 -msgid "Help & Support" -msgstr "도움말 및 지원" - -#: includes/admin/admin.php:135 -msgid "" -"Please use the Help & Support tab to get in touch should you find yourself " -"requiring assistance." -msgstr "도움이 필요한 경우 도움말 및 지원 탭을 사용하여 연락하십시오." - -#: includes/admin/admin.php:132 -msgid "" -"Before creating your first Field Group, we recommend first reading our Getting started guide to familiarize " -"yourself with the plugin's philosophy and best practises." -msgstr "" -"첫 번째 필드 그룹을 만들기 전에 먼저 시작하" -"기 가이드를 읽고 플러그인의 철학과 모범 사례를 숙지하는 것이 좋습니다." - -#: includes/admin/admin.php:130 -msgid "" -"The Advanced Custom Fields plugin provides a visual form builder to " -"customize WordPress edit screens with extra fields, and an intuitive API to " -"display custom field values in any theme template file." -msgstr "" -"고급 사용자 정의 필드 플러그인은 추가 필드로 워드프레스 편집 화면을 사용자 정" -"의할 수 있는 시각적 양식 빌더와 모든 테마 템플릿 파일에 사용자 정의 필드 값" -"을 표시하는 직관적인 API를 제공합니다." - -#: includes/admin/admin.php:127 includes/admin/admin.php:129 -msgid "Overview" -msgstr "개요" - -#: includes/locations.php:36 -msgid "Location type \"%s\" is already registered." -msgstr "위치 유형 \"%s\"이(가) 이미 등록되어 있습니다." - -#: includes/locations.php:25 -msgid "Class \"%s\" does not exist." -msgstr "\"%s\" 클래스가 존재하지 않습니다." - -#: includes/ajax/class-acf-ajax.php:157 -msgid "Invalid nonce." -msgstr "논스가 잘못되었습니다." - -#: includes/fields/class-acf-field-user.php:375 -msgid "Error loading field." -msgstr "필드를 로드하는 중 오류가 발생했습니다." - -#: assets/build/js/acf-input.js:2750 assets/build/js/acf-input.js:2819 -#: assets/build/js/acf-input.js:2926 assets/build/js/acf-input.js:3000 -msgid "Location not found: %s" -msgstr "찾을 수 없는 위치: %s" - -#: includes/forms/form-user.php:353 -msgid "Error: %s" -msgstr "오류: %s" - -#: includes/locations/class-acf-location-widget.php:22 -msgid "Widget" -msgstr "위젯" - -#: includes/locations/class-acf-location-user-role.php:24 -msgid "User Role" -msgstr "사용자 역할" - -#: includes/locations/class-acf-location-comment.php:22 -msgid "Comment" -msgstr "코멘트" - -#: includes/locations/class-acf-location-post-format.php:22 -msgid "Post Format" -msgstr "게시물 형식" - -#: includes/locations/class-acf-location-nav-menu-item.php:22 -msgid "Menu Item" -msgstr "메뉴 아이템" - -#: includes/locations/class-acf-location-post-status.php:22 -msgid "Post Status" -msgstr "게시물 상태" - -#: includes/acf-wp-functions.php:74 -#: includes/locations/class-acf-location-nav-menu.php:89 -msgid "Menus" -msgstr "메뉴" - -#: includes/locations/class-acf-location-nav-menu.php:80 -msgid "Menu Locations" -msgstr "메뉴 위치" - -#: includes/locations/class-acf-location-nav-menu.php:22 -msgid "Menu" -msgstr "메뉴" - -#: includes/locations/class-acf-location-post-taxonomy.php:22 -msgid "Post Taxonomy" -msgstr "게시물 택소노미" - -#: includes/locations/class-acf-location-page-type.php:114 -msgid "Child Page (has parent)" -msgstr "자식 페이지 (부모가 있습니다)" - -#: includes/locations/class-acf-location-page-type.php:113 -msgid "Parent Page (has children)" -msgstr "부모 페이지 (자식이 있습니다)" - -#: includes/locations/class-acf-location-page-type.php:112 -msgid "Top Level Page (no parent)" -msgstr "최상위 페이지 (부모가 없습니다)" - -#: includes/locations/class-acf-location-page-type.php:111 -msgid "Posts Page" -msgstr "글 페이지" - -#: includes/locations/class-acf-location-page-type.php:110 -msgid "Front Page" -msgstr "프론트 페이지" - -#: includes/locations/class-acf-location-page-type.php:22 -msgid "Page Type" -msgstr "페이지 유형" - -#: includes/locations/class-acf-location-current-user.php:73 -msgid "Viewing back end" -msgstr "백엔드 보기" - -#: includes/locations/class-acf-location-current-user.php:72 -msgid "Viewing front end" -msgstr "프런트 엔드 보기" - -#: includes/locations/class-acf-location-current-user.php:71 -msgid "Logged in" -msgstr "로그인" - -#: includes/locations/class-acf-location-current-user.php:22 -msgid "Current User" -msgstr "현재 사용자" - -#: includes/locations/class-acf-location-page-template.php:22 -msgid "Page Template" -msgstr "페이지 템플릿" - -#: includes/locations/class-acf-location-user-form.php:74 -msgid "Register" -msgstr "등록하기" - -#: includes/locations/class-acf-location-user-form.php:73 -msgid "Add / Edit" -msgstr "추가하기 / 편집하기" - -#: includes/locations/class-acf-location-user-form.php:22 -msgid "User Form" -msgstr "사용자 양식" - -#: includes/locations/class-acf-location-page-parent.php:22 -msgid "Page Parent" -msgstr "페이지 부모" - -#: includes/locations/class-acf-location-current-user-role.php:77 -msgid "Super Admin" -msgstr "최고 관리자" - -#: includes/locations/class-acf-location-current-user-role.php:22 -msgid "Current User Role" -msgstr "현재 사용자 역할" - -#: includes/locations/class-acf-location-page-template.php:73 -#: includes/locations/class-acf-location-post-template.php:85 -msgid "Default Template" -msgstr "기본 템플릿" - -#: includes/locations/class-acf-location-post-template.php:22 -msgid "Post Template" -msgstr "게시물 템플릿" - -#: includes/locations/class-acf-location-post-category.php:22 -msgid "Post Category" -msgstr "게시물 카테고리" - -#: includes/locations/class-acf-location-attachment.php:84 -msgid "All %s formats" -msgstr "모든 %s 형식" - -#: includes/locations/class-acf-location-attachment.php:22 -msgid "Attachment" -msgstr "첨부" - -#: includes/validation.php:366 -msgid "%s value is required" -msgstr "%s 값이 필요합니다." - -#: includes/admin/views/acf-field-group/conditional-logic.php:59 -msgid "Show this field if" -msgstr "다음과 같은 경우 이 필드를 표시합니다." - -#: includes/admin/views/acf-field-group/conditional-logic.php:26 -#: includes/admin/views/acf-field-group/field.php:109 includes/fields.php:411 -msgid "Conditional Logic" -msgstr "조건부 논리" - -#: includes/admin/views/acf-field-group/conditional-logic.php:156 -#: includes/admin/views/acf-field-group/location-rule.php:92 -msgid "and" -msgstr "그리고" - -#: includes/admin/post-types/admin-field-groups.php:123 -#: includes/admin/post-types/admin-post-types.php:143 -#: includes/admin/post-types/admin-taxonomies.php:143 -msgid "Local JSON" -msgstr "로컬 JSON" - -#: includes/admin/views/acf-field-group/pro-features.php:46 -msgid "Clone Field" -msgstr "클론 필드" - -#: includes/admin/views/upgrade/notice.php:30 -msgid "" -"Please also check all premium add-ons (%s) are updated to the latest version." -msgstr "최신 버전 프리미엄 애드온 (%s)의 업대이트를 확인하기 바랍니다." - -#: includes/admin/views/upgrade/notice.php:28 -msgid "" -"This version contains improvements to your database and requires an upgrade." -msgstr "이 버전은 데이터베이스 개선을 포함하고 있어 업그래이드가 필요합니다." - -#: includes/admin/views/upgrade/notice.php:28 -msgid "Thank you for updating to %1$s v%2$s!" -msgstr "%1$s v%2$s로 업데이트해주셔서 감사합니다!" - -#: includes/admin/views/upgrade/notice.php:27 -msgid "Database Upgrade Required" -msgstr "데이터베이스 업그래이드가 필요합니다" - -#: includes/admin/post-types/admin-field-group.php:141 -#: includes/admin/views/upgrade/notice.php:18 -msgid "Options Page" -msgstr "옵션 페이지" - -#: includes/admin/views/upgrade/notice.php:15 includes/fields.php:462 -msgid "Gallery" -msgstr "갤러리" - -#: includes/admin/views/upgrade/notice.php:12 includes/fields.php:452 -msgid "Flexible Content" -msgstr "유연한 콘텐츠" - -#: includes/admin/views/upgrade/notice.php:9 includes/fields.php:472 -msgid "Repeater" -msgstr "리피터" - -#: includes/admin/views/tools/tools.php:24 -msgid "Back to all tools" -msgstr "모든 도구로 돌아가기" - -#: includes/admin/views/acf-field-group/options.php:195 -msgid "" -"If multiple field groups appear on an edit screen, the first field group's " -"options will be used (the one with the lowest order number)" -msgstr "" -"편집 화면에 여러 개의 필드 그룹이 나타나는 경우 첫 번째 필드 그룹의 옵션(순" -"서 번호가 가장 낮은 옵션)이 사용됩니다." - -#: includes/admin/views/acf-field-group/options.php:195 -msgid "Select items to hide them from the edit screen." -msgstr "항목을 선택하여 편집 화면에서 숨깁니다." - -#: includes/admin/views/acf-field-group/options.php:194 -msgid "Hide on screen" -msgstr "화면에 숨기기" - -#: includes/admin/views/acf-field-group/options.php:186 -msgid "Send Trackbacks" -msgstr "트랙백 보내기" - -#: includes/admin/post-types/admin-taxonomy.php:128 -#: includes/admin/views/acf-field-group/options.php:185 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:159 -#: assets/build/js/acf-internal-post-type.js:180 -#: assets/build/js/acf-internal-post-type.js:254 -msgid "Tags" -msgstr "태그" - -#: includes/admin/post-types/admin-taxonomy.php:130 -#: includes/admin/views/acf-field-group/options.php:184 -#: assets/build/js/acf-internal-post-type.js:183 -#: assets/build/js/acf-internal-post-type.js:257 -msgid "Categories" -msgstr "카테고리" - -#: includes/admin/views/acf-field-group/options.php:182 -#: includes/admin/views/acf-post-type/advanced-settings.php:28 -msgid "Page Attributes" -msgstr "페이지 속성" - -#: includes/admin/views/acf-field-group/options.php:181 -msgid "Format" -msgstr "형식" - -#: includes/admin/views/acf-field-group/options.php:180 -#: includes/admin/views/acf-post-type/advanced-settings.php:22 -msgid "Author" -msgstr "작성자" - -#: includes/admin/views/acf-field-group/options.php:179 -msgid "Slug" -msgstr "슬러그" - -#: includes/admin/views/acf-field-group/options.php:178 -#: includes/admin/views/acf-post-type/advanced-settings.php:27 -msgid "Revisions" -msgstr "개정" - -#: includes/acf-wp-functions.php:66 -#: includes/admin/views/acf-field-group/options.php:177 -#: includes/admin/views/acf-post-type/advanced-settings.php:23 -msgid "Comments" -msgstr "코멘트" - -#: includes/admin/views/acf-field-group/options.php:176 -msgid "Discussion" -msgstr "논의" - -#: includes/admin/views/acf-field-group/options.php:174 -#: includes/admin/views/acf-post-type/advanced-settings.php:26 -msgid "Excerpt" -msgstr "요약문" - -#: includes/admin/views/acf-field-group/options.php:173 -msgid "Content Editor" -msgstr "콘텐츠 편집기" - -#: includes/admin/views/acf-field-group/options.php:172 -msgid "Permalink" -msgstr "퍼머링크" - -#: includes/admin/views/acf-field-group/options.php:250 -msgid "Shown in field group list" -msgstr "필드 그룹 목록에 표시됨" - -#: includes/admin/views/acf-field-group/options.php:157 -msgid "Field groups with a lower order will appear first" -msgstr "순서가 낮은 필드 그룹이 먼저 나타납니다." - -#: includes/admin/views/acf-field-group/options.php:156 -msgid "Order No." -msgstr "주문번호" - -#: includes/admin/views/acf-field-group/options.php:147 -msgid "Below fields" -msgstr "필드 아래" - -#: includes/admin/views/acf-field-group/options.php:146 -msgid "Below labels" -msgstr "레이블 아래" - -#: includes/admin/views/acf-field-group/options.php:139 -msgid "Instruction Placement" -msgstr "지침 배치" - -#: includes/admin/views/acf-field-group/options.php:122 -msgid "Label Placement" -msgstr "라벨 배치" - -#: includes/admin/views/acf-field-group/options.php:110 -msgid "Side" -msgstr "측면" - -#: includes/admin/views/acf-field-group/options.php:109 -msgid "Normal (after content)" -msgstr "일반(내용 후)" - -#: includes/admin/views/acf-field-group/options.php:108 -msgid "High (after title)" -msgstr "높음(제목 뒤)" - -#: includes/admin/views/acf-field-group/options.php:101 -msgid "Position" -msgstr "위치" - -#: includes/admin/views/acf-field-group/options.php:92 -msgid "Seamless (no metabox)" -msgstr "원활한(메타박스 없음)" - -#: includes/admin/views/acf-field-group/options.php:91 -msgid "Standard (WP metabox)" -msgstr "표준(WP 메타박스)" - -#: includes/admin/views/acf-field-group/options.php:84 -msgid "Style" -msgstr "스타일" - -#: includes/admin/views/acf-field-group/fields.php:55 -msgid "Type" -msgstr "유형" - -#: includes/admin/post-types/admin-field-groups.php:117 -#: includes/admin/post-types/admin-post-types.php:136 -#: includes/admin/post-types/admin-taxonomies.php:136 -#: includes/admin/views/acf-field-group/fields.php:54 -msgid "Key" -msgstr "키" - -#. translators: Hidden accessibility text for the positional order number of -#. the field. -#: includes/admin/views/acf-field-group/fields.php:48 -msgid "Order" -msgstr "정렬하기" - -#: includes/admin/views/acf-field-group/field.php:322 -msgid "Close Field" -msgstr "필드 닫기" - -#: includes/admin/views/acf-field-group/field.php:253 -msgid "id" -msgstr "id" - -#: includes/admin/views/acf-field-group/field.php:237 -msgid "class" -msgstr "클래스" - -#: includes/admin/views/acf-field-group/field.php:279 -msgid "width" -msgstr "너비" - -#: includes/admin/views/acf-field-group/field.php:273 -msgid "Wrapper Attributes" -msgstr "래퍼 속성" - -#: includes/admin/views/acf-field-group/field.php:196 -msgid "Required" -msgstr "필수" - -#: includes/admin/views/acf-field-group/field.php:221 -msgid "Instructions for authors. Shown when submitting data" -msgstr "작성자를 위한 지침. 데이터 제출 시 표시" - -#: includes/admin/views/acf-field-group/field.php:220 -msgid "Instructions" -msgstr "지침" - -#: includes/admin/views/acf-field-group/field.php:129 -msgid "Field Type" -msgstr "필드 유형" - -#: includes/admin/views/acf-field-group/field.php:170 -msgid "Single word, no spaces. Underscores and dashes allowed" -msgstr "한 단어, 공백 없음. 밑줄 및 대시 허용" - -#: includes/admin/views/acf-field-group/field.php:169 -msgid "Field Name" -msgstr "필드 명" - -#: includes/admin/views/acf-field-group/field.php:157 -msgid "This is the name which will appear on the EDIT page" -msgstr "이것은 편집하기 페이지에 보일 이름입니다." - -#: includes/admin/views/acf-field-group/field.php:156 -#: includes/admin/views/browse-fields-modal.php:59 -msgid "Field Label" -msgstr "필드 레이블" - -#: includes/admin/views/acf-field-group/field.php:81 -msgid "Delete" -msgstr "지우기" - -#: includes/admin/views/acf-field-group/field.php:81 -msgid "Delete field" -msgstr "필드 삭제" - -#: includes/admin/views/acf-field-group/field.php:79 -msgid "Move" -msgstr "이동하기" - -#: includes/admin/views/acf-field-group/field.php:79 -msgid "Move field to another group" -msgstr "다름 그룹으로 필드 이동하기" - -#: includes/admin/views/acf-field-group/field.php:77 -msgid "Duplicate field" -msgstr "필드 복제하기" - -#: includes/admin/views/acf-field-group/field.php:73 -#: includes/admin/views/acf-field-group/field.php:76 -msgid "Edit field" -msgstr "필드 편집하기" - -#: includes/admin/views/acf-field-group/field.php:69 -msgid "Drag to reorder" -msgstr "드래그하여 재정렬" - -#: includes/admin/post-types/admin-field-group.php:103 -#: includes/admin/views/acf-field-group/location-group.php:3 -#: assets/build/js/acf-field-group.js:2347 -#: assets/build/js/acf-field-group.js:2763 -msgid "Show this field group if" -msgstr "다음과 같은 경우 이 필드 그룹 표시" - -#: includes/admin/views/upgrade/upgrade.php:94 -#: includes/ajax/class-acf-ajax-upgrade.php:34 -msgid "No updates available." -msgstr "사용 가능한 업대이트가 없습니다." - -#: includes/admin/views/upgrade/upgrade.php:33 -msgid "Database upgrade complete. See what's new" -msgstr "" -"데이터베이스 업그래이드를 완료했습니다. 새로운 기능 보기 " - -#: includes/admin/views/upgrade/upgrade.php:30 -msgid "Reading upgrade tasks..." -msgstr "업그래이드 작업을 읽기 ..." - -#: includes/admin/views/upgrade/network.php:165 -#: includes/admin/views/upgrade/upgrade.php:65 -msgid "Upgrade failed." -msgstr "업그래이드에 실패했습니다." - -#: includes/admin/views/upgrade/network.php:162 -msgid "Upgrade complete." -msgstr "업그래이드를 완료했습니다." - -#: includes/admin/views/upgrade/network.php:148 -#: includes/admin/views/upgrade/upgrade.php:31 -msgid "Upgrading data to version %s" -msgstr "버전 %s(으)로 자료를 업그래이드하기" - -#: includes/admin/views/upgrade/network.php:121 -#: includes/admin/views/upgrade/notice.php:44 -msgid "" -"It is strongly recommended that you backup your database before proceeding. " -"Are you sure you wish to run the updater now?" -msgstr "" -"계속하기 전에 데이터베이스를 백업하는 것이 좋습니다. 지금 업데이트 도구를 실" -"행하기 원하는게 확실한가요?" - -#: includes/admin/views/upgrade/network.php:117 -msgid "Please select at least one site to upgrade." -msgstr "업그래이드 할 사이트를 하나 이상 선택하기 바랍니다." - -#: includes/admin/views/upgrade/network.php:97 -msgid "" -"Database Upgrade complete. Return to network dashboard" -msgstr "" -"데이터베이스 업그래이드를 완료했습니다. 네트워크 알림판으로 " -"돌아 가기 " - -#: includes/admin/views/upgrade/network.php:80 -msgid "Site is up to date" -msgstr "사이트가 최신 상태입니다." - -#: includes/admin/views/upgrade/network.php:78 -msgid "Site requires database upgrade from %1$s to %2$s" -msgstr "사이트는 %1$s에서 %2$s(으)로 데이터베이스 업그레이드가 필요합니다." - -#: includes/admin/views/upgrade/network.php:36 -#: includes/admin/views/upgrade/network.php:47 -msgid "Site" -msgstr "사이트" - -#: includes/admin/views/upgrade/network.php:26 -#: includes/admin/views/upgrade/network.php:27 -#: includes/admin/views/upgrade/network.php:96 -msgid "Upgrade Sites" -msgstr "사이트 업그래이드하기" - -#: includes/admin/views/upgrade/network.php:26 -msgid "" -"The following sites require a DB upgrade. Check the ones you want to update " -"and then click %s." -msgstr "" -"다음 사이트는 대배 업그래이드가 필요합니다. 업대이트하려는 항목을 확인한 다" -"음 %s을(를) 누르세요." - -#: includes/admin/views/acf-field-group/conditional-logic.php:171 -#: includes/admin/views/acf-field-group/locations.php:38 -msgid "Add rule group" -msgstr "그룹 규칙 추가하기" - -#: includes/admin/views/acf-field-group/locations.php:10 -msgid "" -"Create a set of rules to determine which edit screens will use these " -"advanced custom fields" -msgstr "" -"이러한 고급 사용자 정의 필드를 사용할 편집 화면을 결정하는 일련의 규칙을 만듭" -"니다." - -#: includes/admin/views/acf-field-group/locations.php:9 -msgid "Rules" -msgstr "규칙" - -#: includes/admin/tools/class-acf-admin-tool-export.php:510 -msgid "Copied" -msgstr "복사했습니다" - -#: includes/admin/tools/class-acf-admin-tool-export.php:486 -msgid "Copy to clipboard" -msgstr "클립보드에 복사하기" - -#: includes/admin/tools/class-acf-admin-tool-export.php:385 -msgid "" -"Select the items you would like to export and then select your export " -"method. Export As JSON to export to a .json file which you can then import " -"to another ACF installation. Generate PHP to export to PHP code which you " -"can place in your theme." -msgstr "" -"내보낼 항목을 선택한 다음 내보내기 방법을 선택합니다. JSON으로 내보내기 - ." -"json 파일로 내보낸 다음 다른 ACF 설치로 가져올 수 있습니다. PHP를 생성하여 테" -"마에 배치할 수 있는 PHP 코드로 내보냅니다." - -#: includes/admin/tools/class-acf-admin-tool-export.php:233 -msgid "Select Field Groups" -msgstr "필드 그룹 선택하기" - -#: includes/admin/tools/class-acf-admin-tool-export.php:96 -#: includes/admin/tools/class-acf-admin-tool-export.php:131 -msgid "No field groups selected" -msgstr "선택한 필드 그룹 없음" - -#: includes/admin/tools/class-acf-admin-tool-export.php:39 -#: includes/admin/tools/class-acf-admin-tool-export.php:393 -#: includes/admin/tools/class-acf-admin-tool-export.php:421 -msgid "Generate PHP" -msgstr "PHP 생성" - -#: includes/admin/tools/class-acf-admin-tool-export.php:35 -msgid "Export Field Groups" -msgstr "필드 그룹 내보내기" - -#: includes/admin/tools/class-acf-admin-tool-import.php:177 -msgid "Import file empty" -msgstr "가져오기 파일이 비어 있음" - -#: includes/admin/tools/class-acf-admin-tool-import.php:168 -msgid "Incorrect file type" -msgstr "잘못된 파일 형식" - -#: includes/admin/tools/class-acf-admin-tool-import.php:163 -msgid "Error uploading file. Please try again" -msgstr "파일을 업로드하는 중 오류가 발생했습니다. 다시 시도해 주세요" - -#: includes/admin/tools/class-acf-admin-tool-import.php:50 -msgid "" -"Select the Advanced Custom Fields JSON file you would like to import. When " -"you click the import button below, ACF will import the items in that file." -msgstr "" -"가져오려는 고급 사용자 정의 필드 JSON 파일을 선택합니다. 아래 가져오기 버튼" -"을 클릭하면 ACF가 해당 파일의 항목을 가져옵니다." - -#: includes/admin/tools/class-acf-admin-tool-import.php:27 -msgid "Import Field Groups" -msgstr "필드 그룹 가져오기" - -#: includes/admin/admin-internal-post-type-list.php:401 -msgid "Sync" -msgstr "동기화하기" - -#: includes/admin/admin-internal-post-type-list.php:858 -msgid "Select %s" -msgstr "%s 선택하기" - -#: includes/admin/admin-internal-post-type-list.php:442 -#: includes/admin/admin-internal-post-type-list.php:474 -#: includes/admin/views/acf-field-group/field.php:77 -msgid "Duplicate" -msgstr "복제하기" - -#: includes/admin/admin-internal-post-type-list.php:442 -msgid "Duplicate this item" -msgstr "이 항목 복제하기" - -#: includes/admin/views/acf-post-type/advanced-settings.php:41 -msgid "Supports" -msgstr "지원" - -#: includes/admin/admin.php:261 includes/admin/views/browse-fields-modal.php:92 -msgid "Documentation" -msgstr "문서화" - -#: includes/admin/post-types/admin-field-groups.php:116 -#: includes/admin/post-types/admin-post-types.php:135 -#: includes/admin/post-types/admin-taxonomies.php:135 -#: includes/admin/views/acf-field-group/options.php:249 -#: includes/admin/views/acf-post-type/advanced-settings.php:62 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:114 -#: includes/admin/views/upgrade/network.php:38 -#: includes/admin/views/upgrade/network.php:49 -msgid "Description" -msgstr "설명" - -#: includes/admin/admin-internal-post-type-list.php:398 -#: includes/admin/admin-internal-post-type-list.php:747 -msgid "Sync available" -msgstr "동기화 가능" - -#. translators: %s number of field groups synchronized -#: includes/admin/post-types/admin-field-groups.php:381 -msgid "Field group synchronized." -msgid_plural "%s field groups synchronized." -msgstr[0] "%s개의 필드 그룹을 동기화했습니다." - -#. translators: %s number of field groups duplicated -#: includes/admin/post-types/admin-field-groups.php:374 -msgid "Field group duplicated." -msgid_plural "%s field groups duplicated." -msgstr[0] "%s 필드 그룹이 복사되었습니다." - -#: includes/admin/admin-internal-post-type-list.php:137 -msgid "Active (%s)" -msgid_plural "Active (%s)" -msgstr[0] "활성 (%s)" - -#: includes/admin/admin-upgrade.php:254 -msgid "Review sites & upgrade" -msgstr "사이트 검토하기 & 업그래이드하기" - -#: includes/admin/admin-upgrade.php:59 includes/admin/admin-upgrade.php:93 -#: includes/admin/admin-upgrade.php:94 includes/admin/admin-upgrade.php:230 -#: includes/admin/views/upgrade/network.php:24 -#: includes/admin/views/upgrade/upgrade.php:26 -msgid "Upgrade Database" -msgstr "데이터베이스 업그래이드하기" - -#: includes/admin/views/acf-field-group/options.php:175 -#: includes/admin/views/acf-post-type/advanced-settings.php:30 -msgid "Custom Fields" -msgstr "사용자 정의 필드" - -#: includes/admin/post-types/admin-field-group.php:616 -msgid "Move Field" -msgstr "필드 이동하기" - -#: includes/admin/post-types/admin-field-group.php:605 -#: includes/admin/post-types/admin-field-group.php:609 -msgid "Please select the destination for this field" -msgstr "이 필드의 대상을 선택하십시오" - -#. translators: Confirmation message once a field has been moved to a different -#. field group. -#: includes/admin/post-types/admin-field-group.php:567 -msgid "The %1$s field can now be found in the %2$s field group" -msgstr "%1$s 필드는 이제 %2$s 필드 그룹에서 찾을 수 있습니다." - -#: includes/admin/post-types/admin-field-group.php:564 -msgid "Move Complete." -msgstr "이동완료." - -#: includes/admin/views/acf-field-group/field.php:39 -#: includes/admin/views/acf-field-group/options.php:217 -#: includes/admin/views/acf-post-type/advanced-settings.php:78 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:130 -msgid "Active" -msgstr "활동적인" - -#: includes/admin/post-types/admin-field-group.php:266 -msgid "Field Keys" -msgstr "필드 키" - -#: includes/admin/post-types/admin-field-group.php:164 -#: includes/admin/tools/class-acf-admin-tool-export.php:342 -msgid "Settings" -msgstr "설정" - -#: includes/admin/post-types/admin-field-groups.php:118 -msgid "Location" -msgstr "위치" - -#: includes/admin/post-types/admin-field-group.php:104 -#: assets/build/js/acf-input.js:983 assets/build/js/acf-input.js:1075 -msgid "Null" -msgstr "빈값" - -#: includes/admin/post-types/admin-field-group.php:101 -#: includes/class-acf-internal-post-type.php:730 -#: includes/post-types/class-acf-field-group.php:345 -#: assets/build/js/acf-field-group.js:1510 -#: assets/build/js/acf-field-group.js:1821 -msgid "copy" -msgstr "복사하기" - -#: includes/admin/post-types/admin-field-group.php:100 -#: assets/build/js/acf-field-group.js:623 -#: assets/build/js/acf-field-group.js:778 -msgid "(this field)" -msgstr "(이 필드)" - -#: includes/admin/post-types/admin-field-group.php:98 -#: assets/build/js/acf-input.js:918 assets/build/js/acf-input.js:943 -#: assets/build/js/acf-input.js:1002 assets/build/js/acf-input.js:1030 -msgid "Checked" -msgstr "체크" - -#: includes/admin/post-types/admin-field-group.php:94 -#: assets/build/js/acf-field-group.js:1615 -#: assets/build/js/acf-field-group.js:1933 -msgid "Move Custom Field" -msgstr "사용자 필드 이동하기" - -#: includes/admin/post-types/admin-field-group.php:93 -#: assets/build/js/acf-field-group.js:649 -#: assets/build/js/acf-field-group.js:804 -msgid "No toggle fields available" -msgstr "사용 가능한 토글 필드 없음" - -#: includes/admin/post-types/admin-field-group.php:91 -msgid "Field group title is required" -msgstr "필드 그룹 제목이 필요합니다." - -#: includes/admin/post-types/admin-field-group.php:90 -#: assets/build/js/acf-field-group.js:1604 -#: assets/build/js/acf-field-group.js:1919 -msgid "This field cannot be moved until its changes have been saved" -msgstr "변경 사항이 저장될 때까지 이 필드를 이동할 수 없습니다." - -#: includes/admin/post-types/admin-field-group.php:89 -#: assets/build/js/acf-field-group.js:1414 -#: assets/build/js/acf-field-group.js:1716 -msgid "The string \"field_\" may not be used at the start of a field name" -msgstr "문자열 \"field_\"는 필드 이름의 시작 부분에 사용할 수 없습니다." - -#: includes/admin/post-types/admin-field-group.php:71 -msgid "Field group draft updated." -msgstr "필드 그룹 초안을 업대이트했습니다." - -#: includes/admin/post-types/admin-field-group.php:70 -msgid "Field group scheduled for." -msgstr "필드 그룹이 예정되어 있습니다." - -#: includes/admin/post-types/admin-field-group.php:69 -msgid "Field group submitted." -msgstr "필드 그룹이 제출되었습니다." - -#: includes/admin/post-types/admin-field-group.php:68 -msgid "Field group saved." -msgstr "필드 그룹이 저장되었습니다." - -#: includes/admin/post-types/admin-field-group.php:67 -msgid "Field group published." -msgstr "필드 그룹이 게시되었습니다." - -#: includes/admin/post-types/admin-field-group.php:64 -msgid "Field group deleted." -msgstr "필드 그룹이 삭제되었습니다." - -#: includes/admin/post-types/admin-field-group.php:62 -#: includes/admin/post-types/admin-field-group.php:63 -#: includes/admin/post-types/admin-field-group.php:65 -msgid "Field group updated." -msgstr "필드 그룹을 업대이트했습니다." - -#: includes/admin/admin-tools.php:118 -#: includes/admin/views/global/navigation.php:246 -#: includes/admin/views/tools/tools.php:21 -msgid "Tools" -msgstr "도구" - -#: includes/locations/abstract-acf-location.php:106 -msgid "is not equal to" -msgstr "같지 않다" - -#: includes/locations/abstract-acf-location.php:105 -msgid "is equal to" -msgstr "동일하다" - -#: includes/locations.php:102 -msgid "Forms" -msgstr "양식" - -#: includes/admin/post-types/admin-post-type.php:127 includes/locations.php:100 -#: includes/locations/class-acf-location-page.php:22 -#: assets/build/js/acf-internal-post-type.js:175 -#: assets/build/js/acf-internal-post-type.js:249 -msgid "Page" -msgstr "페이지" - -#: includes/admin/post-types/admin-post-type.php:125 includes/locations.php:99 -#: includes/locations/class-acf-location-post.php:22 -#: assets/build/js/acf-internal-post-type.js:172 -#: assets/build/js/acf-internal-post-type.js:246 -msgid "Post" -msgstr "게시물" - -#: includes/fields.php:354 -msgid "Relational" -msgstr "관계형" - -#: includes/fields.php:353 -msgid "Choice" -msgstr "선택하기" - -#: includes/fields.php:351 -msgid "Basic" -msgstr "기초" - -#: includes/fields.php:320 -msgid "Unknown" -msgstr "알려지지 않은" - -#: includes/fields.php:320 -msgid "Field type does not exist" -msgstr "필드 유형이 존재하지 않습니다" - -#: includes/forms/form-front.php:236 -msgid "Spam Detected" -msgstr "스팸 감지됨" - -#: includes/forms/form-front.php:107 -msgid "Post updated" -msgstr "글 업대이트" - -#: includes/forms/form-front.php:106 -msgid "Update" -msgstr "업대이트하기" - -#: includes/forms/form-front.php:57 -msgid "Validate Email" -msgstr "이매일 확인하기" - -#: includes/fields.php:352 includes/forms/form-front.php:49 -msgid "Content" -msgstr "콘텐츠" - -#: includes/admin/views/acf-post-type/advanced-settings.php:21 -#: includes/forms/form-front.php:40 -msgid "Title" -msgstr "제목" - -#: includes/assets.php:372 includes/forms/form-comment.php:160 -#: assets/build/js/acf-input.js:7382 assets/build/js/acf-input.js:7968 -msgid "Edit field group" -msgstr "필드 그룹 편집하기" - -#: includes/admin/post-types/admin-field-group.php:117 -#: assets/build/js/acf-input.js:1125 assets/build/js/acf-input.js:1230 -msgid "Selection is less than" -msgstr "선택이 미만" - -#: includes/admin/post-types/admin-field-group.php:116 -#: assets/build/js/acf-input.js:1106 assets/build/js/acf-input.js:1202 -msgid "Selection is greater than" -msgstr "선택이 다음보다 큼" - -#: includes/admin/post-types/admin-field-group.php:115 -#: assets/build/js/acf-input.js:1075 assets/build/js/acf-input.js:1170 -msgid "Value is less than" -msgstr "값이 다음보다 작음" - -#: includes/admin/post-types/admin-field-group.php:114 -#: assets/build/js/acf-input.js:1045 assets/build/js/acf-input.js:1139 -msgid "Value is greater than" -msgstr "값이 다음보다 큼" - -#: includes/admin/post-types/admin-field-group.php:113 -#: assets/build/js/acf-input.js:888 assets/build/js/acf-input.js:960 -msgid "Value contains" -msgstr "값은 다음을 포함합니다." - -#: includes/admin/post-types/admin-field-group.php:112 -#: assets/build/js/acf-input.js:862 assets/build/js/acf-input.js:926 -msgid "Value matches pattern" -msgstr "값이 패턴과 일치" - -#: includes/admin/post-types/admin-field-group.php:111 -#: assets/build/js/acf-input.js:840 assets/build/js/acf-input.js:1023 -#: assets/build/js/acf-input.js:903 assets/build/js/acf-input.js:1116 -msgid "Value is not equal to" -msgstr "값이 같지 않음" - -#: includes/admin/post-types/admin-field-group.php:110 -#: assets/build/js/acf-input.js:810 assets/build/js/acf-input.js:964 -#: assets/build/js/acf-input.js:864 assets/build/js/acf-input.js:1053 -msgid "Value is equal to" -msgstr "값은 다음과 같습니다." - -#: includes/admin/post-types/admin-field-group.php:109 -#: assets/build/js/acf-input.js:788 assets/build/js/acf-input.js:841 -msgid "Has no value" -msgstr "값이 없음" - -#: includes/admin/post-types/admin-field-group.php:108 -#: assets/build/js/acf-input.js:758 assets/build/js/acf-input.js:783 -msgid "Has any value" -msgstr "값이 있음" - -#: includes/admin/admin-internal-post-type.php:345 -#: includes/admin/views/browse-fields-modal.php:62 includes/assets.php:353 -#: assets/build/js/acf.js:1564 assets/build/js/acf.js:1658 -msgid "Cancel" -msgstr "취소하기" - -#: includes/assets.php:349 assets/build/js/acf.js:1738 -#: assets/build/js/acf.js:1855 -msgid "Are you sure?" -msgstr "확실합니까?" - -#: includes/assets.php:369 assets/build/js/acf-input.js:9442 -#: assets/build/js/acf-input.js:10294 -msgid "%d fields require attention" -msgstr "%d개의 필드에 주의가 필요합니다." - -#: includes/assets.php:368 assets/build/js/acf-input.js:9440 -#: assets/build/js/acf-input.js:10290 -msgid "1 field requires attention" -msgstr "주의가 필요한 필드 1개" - -#: includes/assets.php:367 includes/validation.php:288 -#: includes/validation.php:298 assets/build/js/acf-input.js:9435 -#: assets/build/js/acf-input.js:10285 -msgid "Validation failed" -msgstr "검증에 실패했습니다" - -#: includes/assets.php:366 assets/build/js/acf-input.js:9603 -#: assets/build/js/acf-input.js:10473 -msgid "Validation successful" -msgstr "유효성 검사 성공" - -#: includes/media.php:54 assets/build/js/acf-input.js:7210 -#: assets/build/js/acf-input.js:7772 -msgid "Restricted" -msgstr "제한했습니다" - -#: includes/media.php:53 assets/build/js/acf-input.js:7025 -#: assets/build/js/acf-input.js:7536 -msgid "Collapse Details" -msgstr "세부 정보 접기" - -#: includes/media.php:52 assets/build/js/acf-input.js:7025 -#: assets/build/js/acf-input.js:7533 -msgid "Expand Details" -msgstr "세부정보 확장하기" - -#: includes/admin/views/acf-post-type/advanced-settings.php:465 -#: includes/media.php:51 assets/build/js/acf-input.js:6892 -#: assets/build/js/acf-input.js:7381 -msgid "Uploaded to this post" -msgstr "이 게시물에 업로드됨" - -#: includes/media.php:50 assets/build/js/acf-input.js:6931 -#: assets/build/js/acf-input.js:7420 -msgctxt "verb" -msgid "Update" -msgstr "업대이트하기" - -#: includes/media.php:49 -msgctxt "verb" -msgid "Edit" -msgstr "편집하기" - -#: includes/assets.php:363 assets/build/js/acf-input.js:9212 -#: assets/build/js/acf-input.js:10056 -msgid "The changes you made will be lost if you navigate away from this page" -msgstr "페이지를 벗어나면 변경 한 내용이 손실 됩니다" - -#: includes/api/api-helpers.php:3395 -msgid "File type must be %s." -msgstr "파일 유형은 %s여야 합니다." - -#: includes/admin/post-types/admin-field-group.php:102 -#: includes/admin/views/acf-field-group/conditional-logic.php:59 -#: includes/admin/views/acf-field-group/conditional-logic.php:169 -#: includes/admin/views/acf-field-group/location-group.php:3 -#: includes/admin/views/acf-field-group/locations.php:36 -#: includes/api/api-helpers.php:3391 assets/build/js/acf-field-group.js:771 -#: assets/build/js/acf-field-group.js:2385 -#: assets/build/js/acf-field-group.js:933 -#: assets/build/js/acf-field-group.js:2807 -msgid "or" -msgstr "또는" - -#: includes/api/api-helpers.php:3364 -msgid "File size must not exceed %s." -msgstr "파일 크기는 %s를 초과할 수 없습니다." - -#: includes/api/api-helpers.php:3359 -msgid "File size must be at least %s." -msgstr "파일 크기는 %s 이상이어야 합니다." - -#: includes/api/api-helpers.php:3344 -msgid "Image height must not exceed %dpx." -msgstr "이미지 높이는 %dpx를 초과할 수 없습니다." - -#: includes/api/api-helpers.php:3339 -msgid "Image height must be at least %dpx." -msgstr "이미지 높이는 %dpx 이상이어야 합니다." - -#: includes/api/api-helpers.php:3325 -msgid "Image width must not exceed %dpx." -msgstr "이미지 너비는 %dpx를 초과할 수 없습니다." - -#: includes/api/api-helpers.php:3320 -msgid "Image width must be at least %dpx." -msgstr "이미지 너비는 %dpx 이상이어야 합니다." - -#: includes/api/api-helpers.php:1561 includes/api/api-term.php:147 -msgid "(no title)" -msgstr "(제목 없음)" - -#: includes/api/api-helpers.php:853 -msgid "Full Size" -msgstr "전체 크기" - -#: includes/api/api-helpers.php:812 -msgid "Large" -msgstr "크기가 큰" - -#: includes/api/api-helpers.php:811 -msgid "Medium" -msgstr "중간" - -#: includes/api/api-helpers.php:810 -msgid "Thumbnail" -msgstr "썸네일" - -#: includes/acf-field-functions.php:854 -#: includes/admin/post-types/admin-field-group.php:99 -#: assets/build/js/acf-field-group.js:1077 -#: assets/build/js/acf-field-group.js:1260 -msgid "(no label)" -msgstr "(라벨 없음)" - -#: includes/fields/class-acf-field-textarea.php:145 -msgid "Sets the textarea height" -msgstr "문자 영역의 높이를 설정하기" - -#: includes/fields/class-acf-field-textarea.php:144 -msgid "Rows" -msgstr "행" - -#: includes/fields/class-acf-field-textarea.php:25 -msgid "Text Area" -msgstr "텍스트 영역" - -#: includes/fields/class-acf-field-checkbox.php:451 -msgid "Prepend an extra checkbox to toggle all choices" -msgstr "모든 선택 항목을 토글하려면 추가 확인란을 앞에 추가하십시오." - -#: includes/fields/class-acf-field-checkbox.php:413 -msgid "Save 'custom' values to the field's choices" -msgstr "선택한 필드에 ‘사용자 정의’값 저장하기" - -#: includes/fields/class-acf-field-checkbox.php:402 -msgid "Allow 'custom' values to be added" -msgstr "추가한 ‘사용자 정의’ 값 허용하기" - -#: includes/fields/class-acf-field-checkbox.php:38 -msgid "Add new choice" -msgstr "새로운 선택 추가하기" - -#: includes/fields/class-acf-field-checkbox.php:174 -msgid "Toggle All" -msgstr "모두 토글하기" - -#: includes/fields/class-acf-field-page_link.php:506 -msgid "Allow Archives URLs" -msgstr "보관소 URLs 허용하기" - -#: includes/fields/class-acf-field-page_link.php:179 -msgid "Archives" -msgstr "아카이브" - -#: includes/fields/class-acf-field-page_link.php:25 -msgid "Page Link" -msgstr "페이지 링크" - -#: includes/fields/class-acf-field-taxonomy.php:943 -#: includes/locations/class-acf-location-user-form.php:72 -msgid "Add" -msgstr "추가하기" - -#: includes/admin/views/acf-field-group/fields.php:53 -#: includes/fields/class-acf-field-taxonomy.php:908 -msgid "Name" -msgstr "이름" - -#: includes/fields/class-acf-field-taxonomy.php:892 -msgid "%s added" -msgstr "%s 추가됨" - -#: includes/fields/class-acf-field-taxonomy.php:856 -msgid "%s already exists" -msgstr "%s이(가) 이미 존재합니다." - -#: includes/fields/class-acf-field-taxonomy.php:844 -msgid "User unable to add new %s" -msgstr "사용자가 새 %s을(를) 추가할 수 없습니다." - -#: includes/fields/class-acf-field-taxonomy.php:742 -msgid "Term ID" -msgstr "용어 ID" - -#: includes/fields/class-acf-field-taxonomy.php:741 -msgid "Term Object" -msgstr "용어 객체" - -#: includes/fields/class-acf-field-taxonomy.php:726 -msgid "Load value from posts terms" -msgstr "글 용어에서 값 로드하기" - -#: includes/fields/class-acf-field-taxonomy.php:725 -msgid "Load Terms" -msgstr "용어 로드하기" - -#: includes/fields/class-acf-field-taxonomy.php:715 -msgid "Connect selected terms to the post" -msgstr "글에 선택한 조건을 연결하기" - -#: includes/fields/class-acf-field-taxonomy.php:714 -msgid "Save Terms" -msgstr "조건 저장하기" - -#: includes/fields/class-acf-field-taxonomy.php:704 -msgid "Allow new terms to be created whilst editing" -msgstr "편집하는 동안 생성할 새로운 조건을 허용하기" - -#: includes/fields/class-acf-field-taxonomy.php:703 -msgid "Create Terms" -msgstr "용어 만들기" - -#: includes/fields/class-acf-field-taxonomy.php:762 -msgid "Radio Buttons" -msgstr "라디오 버튼" - -#: includes/fields/class-acf-field-taxonomy.php:761 -msgid "Single Value" -msgstr "단일 값" - -#: includes/fields/class-acf-field-taxonomy.php:759 -msgid "Multi Select" -msgstr "다중 선택" - -#: includes/fields/class-acf-field-checkbox.php:25 -#: includes/fields/class-acf-field-taxonomy.php:758 -msgid "Checkbox" -msgstr "체크박스" - -#: includes/fields/class-acf-field-taxonomy.php:757 -msgid "Multiple Values" -msgstr "여러 값" - -#: includes/fields/class-acf-field-taxonomy.php:752 -msgid "Select the appearance of this field" -msgstr "이 필드의 외관 선택하기" - -#: includes/fields/class-acf-field-taxonomy.php:751 -msgid "Appearance" -msgstr "외관" - -#: includes/fields/class-acf-field-taxonomy.php:693 -msgid "Select the taxonomy to be displayed" -msgstr "보일 할 분류를 선택하기" - -#: includes/fields/class-acf-field-taxonomy.php:654 -msgctxt "No Terms" -msgid "No %s" -msgstr "%s 없음" - -#: includes/fields/class-acf-field-number.php:266 -msgid "Value must be equal to or lower than %d" -msgstr "값은 %d보다 작거나 같아야 합니다." - -#: includes/fields/class-acf-field-number.php:259 -msgid "Value must be equal to or higher than %d" -msgstr "값은 %d 이상이어야 합니다." - -#: includes/fields/class-acf-field-number.php:244 -msgid "Value must be a number" -msgstr "값은 숫자여야 합니다." - -#: includes/fields/class-acf-field-number.php:25 -msgid "Number" -msgstr "숫자" - -#: includes/fields/class-acf-field-radio.php:264 -msgid "Save 'other' values to the field's choices" -msgstr "선택한 필드에 ‘다른’ 값 저장하기" - -#: includes/fields/class-acf-field-radio.php:253 -msgid "Add 'other' choice to allow for custom values" -msgstr "사용자 정의 값을 허용하는 ‘기타’ 선택 사항 추가하기" - -#: includes/admin/views/global/navigation.php:196 -msgid "Other" -msgstr "기타" - -#: includes/fields/class-acf-field-radio.php:25 -msgid "Radio Button" -msgstr "라디오 버튼" - -#: includes/fields/class-acf-field-accordion.php:107 -msgid "" -"Define an endpoint for the previous accordion to stop. This accordion will " -"not be visible." -msgstr "" -"중지할 이전 아코디언의 끝점을 정의합니다. 이 아코디언은 보이지 않습니다." - -#: includes/fields/class-acf-field-accordion.php:96 -msgid "Allow this accordion to open without closing others." -msgstr "다른 아코디언을 닫지 않고 이 아코디언이 열리도록 허용합니다." - -#: includes/fields/class-acf-field-accordion.php:95 -msgid "Multi-Expand" -msgstr "다중 확장" - -#: includes/fields/class-acf-field-accordion.php:85 -msgid "Display this accordion as open on page load." -msgstr "이 아코디언은 페이지 로드시 열린 것으로 보입니다." - -#: includes/fields/class-acf-field-accordion.php:84 -msgid "Open" -msgstr "열기" - -#: includes/fields/class-acf-field-accordion.php:25 -msgid "Accordion" -msgstr "아코디언" - -#: includes/fields/class-acf-field-file.php:267 -#: includes/fields/class-acf-field-file.php:279 -msgid "Restrict which files can be uploaded" -msgstr "업로드 할 수 있는 파일 제한하기" - -#: includes/fields/class-acf-field-file.php:220 -msgid "File ID" -msgstr "파일 ID" - -#: includes/fields/class-acf-field-file.php:219 -msgid "File URL" -msgstr "파일 URL" - -#: includes/fields/class-acf-field-file.php:218 -msgid "File Array" -msgstr "파일 어레이" - -#: includes/fields/class-acf-field-file.php:186 -msgid "Add File" -msgstr "파일 추가하기" - -#: includes/admin/tools/class-acf-admin-tool-import.php:156 -#: includes/fields/class-acf-field-file.php:186 -msgid "No file selected" -msgstr "파일이 선택되지 않았습니다" - -#: includes/fields/class-acf-field-file.php:150 -msgid "File name" -msgstr "파일 이름" - -#: includes/fields/class-acf-field-file.php:63 -#: assets/build/js/acf-input.js:2474 assets/build/js/acf-input.js:2625 -msgid "Update File" -msgstr "파일 업대이트하기" - -#: includes/fields/class-acf-field-file.php:62 -#: assets/build/js/acf-input.js:2473 assets/build/js/acf-input.js:2624 -msgid "Edit File" -msgstr "파일 편집하기" - -#: includes/admin/tools/class-acf-admin-tool-import.php:58 -#: includes/fields/class-acf-field-file.php:61 -#: assets/build/js/acf-input.js:2447 assets/build/js/acf-input.js:2597 -msgid "Select File" -msgstr "파일 선택하기" - -#: includes/fields/class-acf-field-file.php:25 -msgid "File" -msgstr "파일" - -#: includes/fields/class-acf-field-password.php:25 -msgid "Password" -msgstr "비밀번호" - -#: includes/fields/class-acf-field-select.php:392 -msgid "Specify the value returned" -msgstr "반환할 값 지정하기" - -#: includes/fields/class-acf-field-select.php:461 -msgid "Use AJAX to lazy load choices?" -msgstr "지연 로드 선택에 AJAX를 사용하시겠습니까?" - -#: includes/fields/class-acf-field-checkbox.php:362 -#: includes/fields/class-acf-field-select.php:381 -msgid "Enter each default value on a new line" -msgstr "새로운 줄에 기본 값 입력하기" - -#: includes/fields/class-acf-field-select.php:252 includes/media.php:48 -#: assets/build/js/acf-input.js:6790 assets/build/js/acf-input.js:7266 -msgctxt "verb" -msgid "Select" -msgstr "선택하기" - -#: includes/fields/class-acf-field-select.php:121 -msgctxt "Select2 JS load_fail" -msgid "Loading failed" -msgstr "로딩 실패" - -#: includes/fields/class-acf-field-select.php:120 -msgctxt "Select2 JS searching" -msgid "Searching…" -msgstr "검색하기…" - -#: includes/fields/class-acf-field-select.php:119 -msgctxt "Select2 JS load_more" -msgid "Loading more results…" -msgstr "더 많은 결과 로드 중…" - -#: includes/fields/class-acf-field-select.php:118 -msgctxt "Select2 JS selection_too_long_n" -msgid "You can only select %d items" -msgstr "%d 항목만 선택할 수 있어요" - -#: includes/fields/class-acf-field-select.php:117 -msgctxt "Select2 JS selection_too_long_1" -msgid "You can only select 1 item" -msgstr "항목은 1개만 선택할 수 있습니다" - -#: includes/fields/class-acf-field-select.php:116 -msgctxt "Select2 JS input_too_long_n" -msgid "Please delete %d characters" -msgstr "%d글자를 지우기 바래요" - -#: includes/fields/class-acf-field-select.php:115 -msgctxt "Select2 JS input_too_long_1" -msgid "Please delete 1 character" -msgstr "글자 1개를 지워주세요" - -#: includes/fields/class-acf-field-select.php:114 -msgctxt "Select2 JS input_too_short_n" -msgid "Please enter %d or more characters" -msgstr "%d 또는 이상의 글자를 입력하시기 바래요" - -#: includes/fields/class-acf-field-select.php:113 -msgctxt "Select2 JS input_too_short_1" -msgid "Please enter 1 or more characters" -msgstr "글자를 1개 이상 입력하세요" - -#: includes/fields/class-acf-field-select.php:112 -msgctxt "Select2 JS matches_0" -msgid "No matches found" -msgstr "일치하는 항목이 없습니다" - -#: includes/fields/class-acf-field-select.php:111 -msgctxt "Select2 JS matches_n" -msgid "%d results are available, use up and down arrow keys to navigate." -msgstr "%d개의 결과가 사용가능하니, 위와 아래 방향키를 이용해 탐색하세요." - -#: includes/fields/class-acf-field-select.php:110 -msgctxt "Select2 JS matches_1" -msgid "One result is available, press enter to select it." -msgstr "1개 결과를 사용할 수 있습니다. 선택하려면 Enter 키를 누르세요." - -#: includes/fields/class-acf-field-select.php:25 -#: includes/fields/class-acf-field-taxonomy.php:763 -msgctxt "noun" -msgid "Select" -msgstr "선택하기" - -#: includes/fields/class-acf-field-user.php:73 -msgid "User ID" -msgstr "사용자 아이디" - -#: includes/fields/class-acf-field-user.php:72 -msgid "User Object" -msgstr "사용자 객체" - -#: includes/fields/class-acf-field-user.php:71 -msgid "User Array" -msgstr "사용자 배열" - -#: includes/fields/class-acf-field-user.php:59 -msgid "All user roles" -msgstr "모든 사용자 역할" - -#: includes/fields/class-acf-field-user.php:51 -msgid "Filter by Role" -msgstr "역할로 필터하기" - -#: includes/fields/class-acf-field-user.php:15 includes/locations.php:101 -msgid "User" -msgstr "사용자" - -#: includes/fields/class-acf-field-separator.php:25 -msgid "Separator" -msgstr "분리 기호" - -#: includes/fields/class-acf-field-color_picker.php:75 -msgid "Select Color" -msgstr "색상 선택하기" - -#: includes/admin/post-types/admin-post-type.php:129 -#: includes/admin/post-types/admin-taxonomy.php:131 -#: includes/fields/class-acf-field-color_picker.php:73 -#: assets/build/js/acf-internal-post-type.js:72 -#: assets/build/js/acf-internal-post-type.js:86 -msgid "Default" -msgstr "기본" - -#: includes/admin/views/acf-post-type/advanced-settings.php:89 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:141 -#: includes/fields/class-acf-field-color_picker.php:71 -msgid "Clear" -msgstr "정리" - -#: includes/fields/class-acf-field-color_picker.php:25 -msgid "Color Picker" -msgstr "색상 선택기" - -#: includes/fields/class-acf-field-date_time_picker.php:88 -msgctxt "Date Time Picker JS pmTextShort" -msgid "P" -msgstr "P" - -#: includes/fields/class-acf-field-date_time_picker.php:87 -msgctxt "Date Time Picker JS pmText" -msgid "PM" -msgstr "오후" - -#: includes/fields/class-acf-field-date_time_picker.php:84 -msgctxt "Date Time Picker JS amTextShort" -msgid "A" -msgstr "A" - -#: includes/fields/class-acf-field-date_time_picker.php:83 -msgctxt "Date Time Picker JS amText" -msgid "AM" -msgstr "오전" - -#: includes/fields/class-acf-field-date_time_picker.php:81 -msgctxt "Date Time Picker JS selectText" -msgid "Select" -msgstr "선택하기" - -#: includes/fields/class-acf-field-date_time_picker.php:80 -msgctxt "Date Time Picker JS closeText" -msgid "Done" -msgstr "완료" - -#: includes/fields/class-acf-field-date_time_picker.php:79 -msgctxt "Date Time Picker JS currentText" -msgid "Now" -msgstr "현재" - -#: includes/fields/class-acf-field-date_time_picker.php:78 -msgctxt "Date Time Picker JS timezoneText" -msgid "Time Zone" -msgstr "시간대" - -#: includes/fields/class-acf-field-date_time_picker.php:77 -msgctxt "Date Time Picker JS microsecText" -msgid "Microsecond" -msgstr "마이크로초" - -#: includes/fields/class-acf-field-date_time_picker.php:76 -msgctxt "Date Time Picker JS millisecText" -msgid "Millisecond" -msgstr "밀리초" - -#: includes/fields/class-acf-field-date_time_picker.php:75 -msgctxt "Date Time Picker JS secondText" -msgid "Second" -msgstr "초" - -#: includes/fields/class-acf-field-date_time_picker.php:74 -msgctxt "Date Time Picker JS minuteText" -msgid "Minute" -msgstr "분" - -#: includes/fields/class-acf-field-date_time_picker.php:73 -msgctxt "Date Time Picker JS hourText" -msgid "Hour" -msgstr "시간" - -#: includes/fields/class-acf-field-date_time_picker.php:72 -msgctxt "Date Time Picker JS timeText" -msgid "Time" -msgstr "시간" - -#: includes/fields/class-acf-field-date_time_picker.php:71 -msgctxt "Date Time Picker JS timeOnlyTitle" -msgid "Choose Time" -msgstr "시간 선택하기" - -#: includes/fields/class-acf-field-date_time_picker.php:25 -msgid "Date Time Picker" -msgstr "날짜 시간 선택기" - -#: includes/fields/class-acf-field-accordion.php:106 -msgid "Endpoint" -msgstr "끝점" - -#: includes/admin/views/acf-field-group/options.php:130 -#: includes/fields/class-acf-field-tab.php:115 -msgid "Left aligned" -msgstr "왼쪽 정렬" - -#: includes/admin/views/acf-field-group/options.php:129 -#: includes/fields/class-acf-field-tab.php:114 -msgid "Top aligned" -msgstr "상단 정렬" - -#: includes/fields/class-acf-field-tab.php:110 -msgid "Placement" -msgstr "놓기" - -#: includes/fields/class-acf-field-tab.php:26 -msgid "Tab" -msgstr "탭" - -#: includes/fields/class-acf-field-url.php:162 -msgid "Value must be a valid URL" -msgstr "값은 유효한 URL이어야 합니다." - -#: includes/fields/class-acf-field-link.php:177 -msgid "Link URL" -msgstr "링크 URL" - -#: includes/fields/class-acf-field-link.php:176 -msgid "Link Array" -msgstr "링크 어레이" - -#: includes/fields/class-acf-field-link.php:145 -msgid "Opens in a new window/tab" -msgstr "새 창/탭에서 열기" - -#: includes/fields/class-acf-field-link.php:140 -msgid "Select Link" -msgstr "링크 선택하기" - -#: includes/fields/class-acf-field-link.php:25 -msgid "Link" -msgstr "링크" - -#: includes/fields/class-acf-field-email.php:25 -msgid "Email" -msgstr "이매일" - -#: includes/fields/class-acf-field-number.php:188 -#: includes/fields/class-acf-field-range.php:217 -msgid "Step Size" -msgstr "단계 크기" - -#: includes/fields/class-acf-field-number.php:158 -#: includes/fields/class-acf-field-range.php:195 -msgid "Maximum Value" -msgstr "최대값" - -#: includes/fields/class-acf-field-number.php:148 -#: includes/fields/class-acf-field-range.php:184 -msgid "Minimum Value" -msgstr "최소값" - -#: includes/fields/class-acf-field-range.php:25 -msgid "Range" -msgstr "범위" - -#: includes/fields/class-acf-field-button-group.php:175 -#: includes/fields/class-acf-field-checkbox.php:379 -#: includes/fields/class-acf-field-radio.php:220 -#: includes/fields/class-acf-field-select.php:399 -msgid "Both (Array)" -msgstr "모두(배열)" - -#: includes/admin/views/acf-field-group/fields.php:52 -#: includes/fields/class-acf-field-button-group.php:174 -#: includes/fields/class-acf-field-checkbox.php:378 -#: includes/fields/class-acf-field-radio.php:219 -#: includes/fields/class-acf-field-select.php:398 -msgid "Label" -msgstr "레이블" - -#: includes/fields/class-acf-field-button-group.php:173 -#: includes/fields/class-acf-field-checkbox.php:377 -#: includes/fields/class-acf-field-radio.php:218 -#: includes/fields/class-acf-field-select.php:397 -msgid "Value" -msgstr "값" - -#: includes/fields/class-acf-field-button-group.php:222 -#: includes/fields/class-acf-field-checkbox.php:441 -#: includes/fields/class-acf-field-radio.php:292 -msgid "Vertical" -msgstr "수직" - -#: includes/fields/class-acf-field-button-group.php:221 -#: includes/fields/class-acf-field-checkbox.php:442 -#: includes/fields/class-acf-field-radio.php:293 -msgid "Horizontal" -msgstr "수평" - -#: includes/fields/class-acf-field-button-group.php:148 -#: includes/fields/class-acf-field-checkbox.php:352 -#: includes/fields/class-acf-field-radio.php:193 -#: includes/fields/class-acf-field-select.php:370 -msgid "red : Red" -msgstr "빨강 : 빨강" - -#: includes/fields/class-acf-field-button-group.php:148 -#: includes/fields/class-acf-field-checkbox.php:352 -#: includes/fields/class-acf-field-radio.php:193 -#: includes/fields/class-acf-field-select.php:370 -msgid "For more control, you may specify both a value and label like this:" -msgstr "더 많은 제어를 위해 다음과 같이 값과 레이블을 모두 지정할 수 있습니다." - -#: includes/fields/class-acf-field-button-group.php:148 -#: includes/fields/class-acf-field-checkbox.php:352 -#: includes/fields/class-acf-field-radio.php:193 -#: includes/fields/class-acf-field-select.php:370 -msgid "Enter each choice on a new line." -msgstr "새 줄에 각 선택 항목을 입력합니다." - -#: includes/fields/class-acf-field-button-group.php:147 -#: includes/fields/class-acf-field-checkbox.php:351 -#: includes/fields/class-acf-field-radio.php:192 -#: includes/fields/class-acf-field-select.php:369 -msgid "Choices" -msgstr "선택하기" - -#: includes/fields/class-acf-field-button-group.php:24 -msgid "Button Group" -msgstr "버튼 그룹" - -#: includes/fields/class-acf-field-button-group.php:194 -#: includes/fields/class-acf-field-page_link.php:538 -#: includes/fields/class-acf-field-post_object.php:448 -#: includes/fields/class-acf-field-radio.php:238 -#: includes/fields/class-acf-field-select.php:429 -#: includes/fields/class-acf-field-taxonomy.php:772 -#: includes/fields/class-acf-field-user.php:103 -msgid "Allow Null" -msgstr "Null 값 허용" - -#: includes/fields/class-acf-field-page_link.php:263 -#: includes/fields/class-acf-field-post_object.php:257 -#: includes/fields/class-acf-field-taxonomy.php:930 -msgid "Parent" -msgstr "부모" - -#: includes/fields/class-acf-field-wysiwyg.php:390 -msgid "TinyMCE will not be initialized until field is clicked" -msgstr "TinyMCE는 필드를 클릭할 때까지 초기화되지 않습니다." - -#: includes/fields/class-acf-field-wysiwyg.php:389 -msgid "Delay Initialization" -msgstr "초기화 지연" - -#: includes/fields/class-acf-field-wysiwyg.php:378 -msgid "Show Media Upload Buttons" -msgstr "미디어 업로드 버튼 표시" - -#: includes/fields/class-acf-field-wysiwyg.php:362 -msgid "Toolbar" -msgstr "툴바" - -#: includes/fields/class-acf-field-wysiwyg.php:354 -msgid "Text Only" -msgstr "텍스트만" - -#: includes/fields/class-acf-field-wysiwyg.php:353 -msgid "Visual Only" -msgstr "비주얼 전용" - -#: includes/fields/class-acf-field-wysiwyg.php:352 -msgid "Visual & Text" -msgstr "비주얼 및 텍스트" - -#: includes/fields/class-acf-field-wysiwyg.php:347 -msgid "Tabs" -msgstr "탭" - -#: includes/fields/class-acf-field-wysiwyg.php:285 -msgid "Click to initialize TinyMCE" -msgstr "TinyMCE를 초기화하려면 클릭하십시오." - -#: includes/fields/class-acf-field-wysiwyg.php:279 -msgctxt "Name for the Text editor tab (formerly HTML)" -msgid "Text" -msgstr "텍스트" - -#: includes/fields/class-acf-field-wysiwyg.php:278 -msgid "Visual" -msgstr "비주얼" - -#: includes/fields/class-acf-field-text.php:189 -#: includes/fields/class-acf-field-textarea.php:236 -msgid "Value must not exceed %d characters" -msgstr "값은 %d자를 초과할 수 없습니다." - -#: includes/fields/class-acf-field-text.php:124 -#: includes/fields/class-acf-field-textarea.php:124 -msgid "Leave blank for no limit" -msgstr "제한 없이 비워두세요" - -#: includes/fields/class-acf-field-text.php:123 -#: includes/fields/class-acf-field-textarea.php:123 -msgid "Character Limit" -msgstr "글자 수 제한" - -#: includes/fields/class-acf-field-email.php:158 -#: includes/fields/class-acf-field-number.php:209 -#: includes/fields/class-acf-field-password.php:105 -#: includes/fields/class-acf-field-range.php:239 -#: includes/fields/class-acf-field-text.php:164 -msgid "Appears after the input" -msgstr "입력란 후 나타납니다." - -#: includes/fields/class-acf-field-email.php:157 -#: includes/fields/class-acf-field-number.php:208 -#: includes/fields/class-acf-field-password.php:104 -#: includes/fields/class-acf-field-range.php:238 -#: includes/fields/class-acf-field-text.php:163 -msgid "Append" -msgstr "추가하기" - -#: includes/fields/class-acf-field-email.php:148 -#: includes/fields/class-acf-field-number.php:199 -#: includes/fields/class-acf-field-password.php:95 -#: includes/fields/class-acf-field-range.php:229 -#: includes/fields/class-acf-field-text.php:154 -msgid "Appears before the input" -msgstr "입력란 전에 나타납니다." - -#: includes/fields/class-acf-field-email.php:147 -#: includes/fields/class-acf-field-number.php:198 -#: includes/fields/class-acf-field-password.php:94 -#: includes/fields/class-acf-field-range.php:228 -#: includes/fields/class-acf-field-text.php:153 -msgid "Prepend" -msgstr "앞에 추가" - -#: includes/fields/class-acf-field-email.php:138 -#: includes/fields/class-acf-field-number.php:179 -#: includes/fields/class-acf-field-password.php:85 -#: includes/fields/class-acf-field-text.php:144 -#: includes/fields/class-acf-field-textarea.php:156 -#: includes/fields/class-acf-field-url.php:122 -msgid "Appears within the input" -msgstr "입력란 내에 나타납니다." - -#: includes/fields/class-acf-field-email.php:137 -#: includes/fields/class-acf-field-number.php:178 -#: includes/fields/class-acf-field-password.php:84 -#: includes/fields/class-acf-field-text.php:143 -#: includes/fields/class-acf-field-textarea.php:155 -#: includes/fields/class-acf-field-url.php:121 -msgid "Placeholder Text" -msgstr "자리표시자 텍스트" - -#: includes/fields/class-acf-field-button-group.php:158 -#: includes/fields/class-acf-field-email.php:118 -#: includes/fields/class-acf-field-number.php:129 -#: includes/fields/class-acf-field-radio.php:203 -#: includes/fields/class-acf-field-range.php:165 -#: includes/fields/class-acf-field-text.php:104 -#: includes/fields/class-acf-field-textarea.php:104 -#: includes/fields/class-acf-field-url.php:102 -#: includes/fields/class-acf-field-wysiwyg.php:312 -msgid "Appears when creating a new post" -msgstr "새 게시물을 작성할 때 나타납니다." - -#: includes/fields/class-acf-field-text.php:25 -msgid "Text" -msgstr "텍스트" - -#: includes/fields/class-acf-field-relationship.php:794 -msgid "%1$s requires at least %2$s selection" -msgid_plural "%1$s requires at least %2$s selections" -msgstr[0] "%1$s에는 %2$s개 이상의 선택 항목이 필요합니다." - -#: includes/fields/class-acf-field-post_object.php:417 -#: includes/fields/class-acf-field-relationship.php:644 -msgid "Post ID" -msgstr "게시물 ID" - -#: includes/fields/class-acf-field-post_object.php:17 -#: includes/fields/class-acf-field-post_object.php:416 -#: includes/fields/class-acf-field-relationship.php:643 -msgid "Post Object" -msgstr "개체 게시" - -#: includes/fields/class-acf-field-relationship.php:676 -msgid "Maximum Posts" -msgstr "최대 게시물" - -#: includes/fields/class-acf-field-relationship.php:666 -msgid "Minimum Posts" -msgstr "최소 게시물" - -#: includes/admin/views/acf-field-group/options.php:183 -#: includes/admin/views/acf-post-type/advanced-settings.php:29 -#: includes/fields/class-acf-field-relationship.php:701 -msgid "Featured Image" -msgstr "특성 이미지" - -#: includes/fields/class-acf-field-relationship.php:697 -msgid "Selected elements will be displayed in each result" -msgstr "선택한 요소가 각 결과에 표시됩니다." - -#: includes/fields/class-acf-field-relationship.php:696 -msgid "Elements" -msgstr "엘리먼트" - -#: includes/fields/class-acf-field-relationship.php:630 -#: includes/fields/class-acf-field-taxonomy.php:20 -#: includes/fields/class-acf-field-taxonomy.php:692 -#: includes/locations/class-acf-location-taxonomy.php:22 -msgid "Taxonomy" -msgstr "택소노미" - -#: includes/fields/class-acf-field-relationship.php:629 -#: includes/locations/class-acf-location-post-type.php:22 -#: includes/post-types/class-acf-post-type.php:92 -msgid "Post Type" -msgstr "게시물 유형" - -#: includes/fields/class-acf-field-relationship.php:623 -msgid "Filters" -msgstr "필터" - -#: includes/fields/class-acf-field-page_link.php:499 -#: includes/fields/class-acf-field-post_object.php:404 -#: includes/fields/class-acf-field-relationship.php:616 -msgid "All taxonomies" -msgstr "모든 분류" - -#: includes/fields/class-acf-field-page_link.php:491 -#: includes/fields/class-acf-field-post_object.php:396 -#: includes/fields/class-acf-field-relationship.php:608 -msgid "Filter by Taxonomy" -msgstr "분류로 필터하기" - -#: includes/fields/class-acf-field-page_link.php:469 -#: includes/fields/class-acf-field-post_object.php:374 -#: includes/fields/class-acf-field-relationship.php:586 -msgid "All post types" -msgstr "모든 게시물 유형" - -#: includes/fields/class-acf-field-page_link.php:461 -#: includes/fields/class-acf-field-post_object.php:366 -#: includes/fields/class-acf-field-relationship.php:578 -msgid "Filter by Post Type" -msgstr "글 유형으로 필터하기" - -#: includes/fields/class-acf-field-relationship.php:476 -msgid "Search..." -msgstr "검색하기..." - -#: includes/fields/class-acf-field-relationship.php:406 -msgid "Select taxonomy" -msgstr "분류 선택하기" - -#: includes/fields/class-acf-field-relationship.php:397 -msgid "Select post type" -msgstr "글 유형 선택하기" - -#: includes/fields/class-acf-field-relationship.php:61 -#: assets/build/js/acf-input.js:3930 assets/build/js/acf-input.js:4214 -msgid "No matches found" -msgstr "검색 결과가 없습니다" - -#: includes/fields/class-acf-field-relationship.php:60 -#: assets/build/js/acf-input.js:3913 assets/build/js/acf-input.js:4193 -msgid "Loading" -msgstr "로딩중" - -#: includes/fields/class-acf-field-relationship.php:59 -#: assets/build/js/acf-input.js:3818 assets/build/js/acf-input.js:4084 -msgid "Maximum values reached ( {max} values )" -msgstr "최대 값에 도달함( {max} values ​​)" - -#: includes/fields/class-acf-field-relationship.php:17 -msgid "Relationship" -msgstr "관계" - -#: includes/fields/class-acf-field-file.php:291 -#: includes/fields/class-acf-field-image.php:317 -msgid "Comma separated list. Leave blank for all types" -msgstr "쉼표로 구분된 목록입니다. 모든 유형에 대해 비워 두십시오." - -#: includes/fields/class-acf-field-file.php:290 -#: includes/fields/class-acf-field-image.php:316 -msgid "Allowed File Types" -msgstr "허용된 파일 형식" - -#: includes/fields/class-acf-field-file.php:278 -#: includes/fields/class-acf-field-image.php:280 -msgid "Maximum" -msgstr "최고" - -#: includes/fields/class-acf-field-file.php:154 -#: includes/fields/class-acf-field-file.php:270 -#: includes/fields/class-acf-field-file.php:282 -#: includes/fields/class-acf-field-image.php:271 -#: includes/fields/class-acf-field-image.php:307 -msgid "File size" -msgstr "파일 크기" - -#: includes/fields/class-acf-field-image.php:245 -#: includes/fields/class-acf-field-image.php:281 -msgid "Restrict which images can be uploaded" -msgstr "업로드 할 수 있는 이미지 제한하기" - -#: includes/fields/class-acf-field-file.php:266 -#: includes/fields/class-acf-field-image.php:244 -msgid "Minimum" -msgstr "최저" - -#: includes/fields/class-acf-field-file.php:235 -#: includes/fields/class-acf-field-image.php:210 -msgid "Uploaded to post" -msgstr "게시물에 업로드됨" - -#: includes/fields/class-acf-field-file.php:234 -#: includes/fields/class-acf-field-image.php:209 -#: includes/locations/class-acf-location-attachment.php:73 -#: includes/locations/class-acf-location-comment.php:61 -#: includes/locations/class-acf-location-nav-menu.php:74 -#: includes/locations/class-acf-location-taxonomy.php:63 -#: includes/locations/class-acf-location-user-form.php:71 -#: includes/locations/class-acf-location-user-role.php:78 -#: includes/locations/class-acf-location-widget.php:65 -msgid "All" -msgstr "모두" - -#: includes/fields/class-acf-field-file.php:229 -#: includes/fields/class-acf-field-image.php:204 -msgid "Limit the media library choice" -msgstr "미디어 라이브러리 선택 제한하기" - -#: includes/fields/class-acf-field-file.php:228 -#: includes/fields/class-acf-field-image.php:203 -msgid "Library" -msgstr "라이브러리" - -#: includes/fields/class-acf-field-image.php:336 -msgid "Preview Size" -msgstr "미리보기 크기" - -#: includes/fields/class-acf-field-image.php:195 -msgid "Image ID" -msgstr "이미지 ID" - -#: includes/fields/class-acf-field-image.php:194 -msgid "Image URL" -msgstr "이미지 URL" - -#: includes/fields/class-acf-field-image.php:193 -msgid "Image Array" -msgstr "이미지 배열" - -#: includes/fields/class-acf-field-button-group.php:168 -#: includes/fields/class-acf-field-checkbox.php:372 -#: includes/fields/class-acf-field-file.php:213 -#: includes/fields/class-acf-field-link.php:171 -#: includes/fields/class-acf-field-radio.php:213 -msgid "Specify the returned value on front end" -msgstr "프론트 엔드에 반환 값 지정하기" - -#: includes/fields/class-acf-field-button-group.php:167 -#: includes/fields/class-acf-field-checkbox.php:371 -#: includes/fields/class-acf-field-file.php:212 -#: includes/fields/class-acf-field-link.php:170 -#: includes/fields/class-acf-field-radio.php:212 -#: includes/fields/class-acf-field-taxonomy.php:736 -msgid "Return Value" -msgstr "값 반환하기" - -#: includes/fields/class-acf-field-image.php:162 -msgid "Add Image" -msgstr "이미지 추가하기" - -#: includes/fields/class-acf-field-image.php:162 -msgid "No image selected" -msgstr "선택한 이미지 없음" - -#: includes/assets.php:352 includes/fields/class-acf-field-file.php:162 -#: includes/fields/class-acf-field-image.php:142 -#: includes/fields/class-acf-field-link.php:145 assets/build/js/acf.js:1563 -#: assets/build/js/acf.js:1657 -msgid "Remove" -msgstr "제거하기" - -#: includes/admin/views/acf-field-group/field.php:76 -#: includes/fields/class-acf-field-file.php:160 -#: includes/fields/class-acf-field-image.php:140 -#: includes/fields/class-acf-field-link.php:145 -msgid "Edit" -msgstr "편집하기" - -#: includes/fields/class-acf-field-image.php:70 includes/media.php:55 -#: assets/build/js/acf-input.js:6837 assets/build/js/acf-input.js:7320 -msgid "All images" -msgstr "모든 이미지" - -#: includes/fields/class-acf-field-image.php:69 -#: assets/build/js/acf-input.js:3181 assets/build/js/acf-input.js:3399 -msgid "Update Image" -msgstr "이미지 업대이트하기" - -#: includes/fields/class-acf-field-image.php:68 -#: assets/build/js/acf-input.js:3180 assets/build/js/acf-input.js:3398 -msgid "Edit Image" -msgstr "이미지 편집하기" - -#: includes/fields/class-acf-field-image.php:67 -#: assets/build/js/acf-input.js:3156 assets/build/js/acf-input.js:3373 -msgid "Select Image" -msgstr "이미지 선택하기" - -#: includes/fields/class-acf-field-image.php:25 -msgid "Image" -msgstr "이미지" - -#: includes/fields/class-acf-field-message.php:125 -msgid "Allow HTML markup to display as visible text instead of rendering" -msgstr "렌더링 대신 보이는 텍스트로 HTML 마크 업을 허용하기" - -#: includes/fields/class-acf-field-message.php:124 -msgid "Escape HTML" -msgstr "HTML 이탈하기" - -#: includes/fields/class-acf-field-message.php:116 -#: includes/fields/class-acf-field-textarea.php:172 -msgid "No Formatting" -msgstr "서식 없음" - -#: includes/fields/class-acf-field-message.php:115 -#: includes/fields/class-acf-field-textarea.php:171 -msgid "Automatically add <br>" -msgstr "<br> 자동 추가하기" - -#: includes/fields/class-acf-field-message.php:114 -#: includes/fields/class-acf-field-textarea.php:170 -msgid "Automatically add paragraphs" -msgstr "단락 자동 추가하기" - -#: includes/fields/class-acf-field-message.php:110 -#: includes/fields/class-acf-field-textarea.php:166 -msgid "Controls how new lines are rendered" -msgstr "새 줄이 렌더링되는 방식을 제어합니다." - -#: includes/fields/class-acf-field-message.php:109 -#: includes/fields/class-acf-field-textarea.php:165 -msgid "New Lines" -msgstr "새로운 라인" - -#: includes/fields/class-acf-field-date_picker.php:232 -#: includes/fields/class-acf-field-date_time_picker.php:220 -msgid "Week Starts On" -msgstr "주간 시작 날짜" - -#: includes/fields/class-acf-field-date_picker.php:201 -msgid "The format used when saving a value" -msgstr "값을 저장할 때 사용되는 형식" - -#: includes/fields/class-acf-field-date_picker.php:200 -msgid "Save Format" -msgstr "형식 저장하기" - -#: includes/fields/class-acf-field-date_picker.php:67 -msgctxt "Date Picker JS weekHeader" -msgid "Wk" -msgstr "주" - -#: includes/fields/class-acf-field-date_picker.php:66 -msgctxt "Date Picker JS prevText" -msgid "Prev" -msgstr "이전" - -#: includes/fields/class-acf-field-date_picker.php:65 -msgctxt "Date Picker JS nextText" -msgid "Next" -msgstr "다음" - -#: includes/fields/class-acf-field-date_picker.php:64 -msgctxt "Date Picker JS currentText" -msgid "Today" -msgstr "오늘" - -#: includes/fields/class-acf-field-date_picker.php:63 -msgctxt "Date Picker JS closeText" -msgid "Done" -msgstr "완료" - -#: includes/fields/class-acf-field-date_picker.php:25 -msgid "Date Picker" -msgstr "날짜 선택기" - -#: includes/fields/class-acf-field-image.php:248 -#: includes/fields/class-acf-field-image.php:284 -#: includes/fields/class-acf-field-oembed.php:268 -msgid "Width" -msgstr "너비" - -#: includes/fields/class-acf-field-oembed.php:265 -#: includes/fields/class-acf-field-oembed.php:277 -msgid "Embed Size" -msgstr "임베드 크기" - -#: includes/fields/class-acf-field-oembed.php:222 -msgid "Enter URL" -msgstr "URL 입력" - -#: includes/fields/class-acf-field-oembed.php:25 -msgid "oEmbed" -msgstr "포함" - -#: includes/fields/class-acf-field-true_false.php:184 -msgid "Text shown when inactive" -msgstr "비활성 상태일 때 표시되는 텍스트" - -#: includes/fields/class-acf-field-true_false.php:183 -msgid "Off Text" -msgstr "오프 텍스트" - -#: includes/fields/class-acf-field-true_false.php:168 -msgid "Text shown when active" -msgstr "활성 상태일 때 표시되는 텍스트" - -#: includes/fields/class-acf-field-true_false.php:167 -msgid "On Text" -msgstr "텍스트에" - -#: includes/fields/class-acf-field-select.php:450 -#: includes/fields/class-acf-field-true_false.php:199 -msgid "Stylized UI" -msgstr "양식에 일치하는 UI" - -#: includes/fields/class-acf-field-button-group.php:157 -#: includes/fields/class-acf-field-checkbox.php:361 -#: includes/fields/class-acf-field-color_picker.php:156 -#: includes/fields/class-acf-field-email.php:117 -#: includes/fields/class-acf-field-number.php:128 -#: includes/fields/class-acf-field-radio.php:202 -#: includes/fields/class-acf-field-range.php:164 -#: includes/fields/class-acf-field-select.php:380 -#: includes/fields/class-acf-field-text.php:103 -#: includes/fields/class-acf-field-textarea.php:103 -#: includes/fields/class-acf-field-true_false.php:147 -#: includes/fields/class-acf-field-url.php:101 -#: includes/fields/class-acf-field-wysiwyg.php:311 -msgid "Default Value" -msgstr "기본값" - -#: includes/fields/class-acf-field-true_false.php:138 -msgid "Displays text alongside the checkbox" -msgstr "확인란 옆에 텍스트를 표시합니다." - -#: includes/fields/class-acf-field-message.php:26 -#: includes/fields/class-acf-field-message.php:99 -#: includes/fields/class-acf-field-true_false.php:137 -msgid "Message" -msgstr "메시지" - -#: includes/assets.php:351 includes/fields/class-acf-field-true_false.php:86 -#: includes/fields/class-acf-field-true_false.php:187 -#: assets/build/js/acf.js:1740 assets/build/js/acf.js:1857 -msgid "No" -msgstr "아니요" - -#: includes/assets.php:350 includes/fields/class-acf-field-true_false.php:83 -#: includes/fields/class-acf-field-true_false.php:171 -#: assets/build/js/acf.js:1739 assets/build/js/acf.js:1856 -msgid "Yes" -msgstr "예" - -#: includes/fields/class-acf-field-true_false.php:25 -msgid "True / False" -msgstr "허위 사실" - -#: includes/fields/class-acf-field-group.php:474 -msgid "Row" -msgstr "열" - -#: includes/fields/class-acf-field-group.php:473 -msgid "Table" -msgstr "태이블" - -#: includes/admin/post-types/admin-field-group.php:140 -#: includes/fields/class-acf-field-group.php:472 -msgid "Block" -msgstr "블록" - -#: includes/fields/class-acf-field-group.php:467 -msgid "Specify the style used to render the selected fields" -msgstr "선택한 필드를 렌더링하는 데 사용하는 스타일 지정하기" - -#: includes/fields.php:356 includes/fields/class-acf-field-button-group.php:215 -#: includes/fields/class-acf-field-checkbox.php:435 -#: includes/fields/class-acf-field-group.php:466 -#: includes/fields/class-acf-field-radio.php:286 -msgid "Layout" -msgstr "레이아웃" - -#: includes/fields/class-acf-field-group.php:450 -msgid "Sub Fields" -msgstr "하위 필드" - -#: includes/fields/class-acf-field-group.php:25 -msgid "Group" -msgstr "그룹" - -#: includes/fields/class-acf-field-google-map.php:235 -msgid "Customize the map height" -msgstr "지도 높이 맞춤설정" - -#: includes/fields/class-acf-field-google-map.php:234 -#: includes/fields/class-acf-field-image.php:259 -#: includes/fields/class-acf-field-image.php:295 -#: includes/fields/class-acf-field-oembed.php:280 -msgid "Height" -msgstr "키" - -#: includes/fields/class-acf-field-google-map.php:223 -msgid "Set the initial zoom level" -msgstr "초기화 줌 레벨 설정하기" - -#: includes/fields/class-acf-field-google-map.php:222 -msgid "Zoom" -msgstr "줌" - -#: includes/fields/class-acf-field-google-map.php:196 -#: includes/fields/class-acf-field-google-map.php:209 -msgid "Center the initial map" -msgstr "초기 맵 중앙에 배치" - -#: includes/fields/class-acf-field-google-map.php:195 -#: includes/fields/class-acf-field-google-map.php:208 -msgid "Center" -msgstr "중앙" - -#: includes/fields/class-acf-field-google-map.php:163 -msgid "Search for address..." -msgstr "주소를 검색하기..." - -#: includes/fields/class-acf-field-google-map.php:160 -msgid "Find current location" -msgstr "현재 위치 찾기" - -#: includes/fields/class-acf-field-google-map.php:159 -msgid "Clear location" -msgstr "위치 지우기" - -#: includes/fields/class-acf-field-google-map.php:158 -#: includes/fields/class-acf-field-relationship.php:628 -msgid "Search" -msgstr "검색하기" - -#: includes/fields/class-acf-field-google-map.php:63 -#: assets/build/js/acf-input.js:2840 assets/build/js/acf-input.js:3026 -msgid "Sorry, this browser does not support geolocation" -msgstr "죄송합니다. 이 브라우저는 지리적 위치를 지원하지 않습니다." - -#: includes/fields/class-acf-field-google-map.php:25 -msgid "Google Map" -msgstr "구글지도" - -#: includes/fields/class-acf-field-date_picker.php:212 -#: includes/fields/class-acf-field-date_time_picker.php:201 -#: includes/fields/class-acf-field-time_picker.php:132 -msgid "The format returned via template functions" -msgstr "템플릿 함수를 통해 반환되는 형식" - -#: includes/fields/class-acf-field-color_picker.php:180 -#: includes/fields/class-acf-field-date_picker.php:211 -#: includes/fields/class-acf-field-date_time_picker.php:200 -#: includes/fields/class-acf-field-image.php:187 -#: includes/fields/class-acf-field-post_object.php:411 -#: includes/fields/class-acf-field-relationship.php:638 -#: includes/fields/class-acf-field-select.php:391 -#: includes/fields/class-acf-field-time_picker.php:131 -#: includes/fields/class-acf-field-user.php:66 -msgid "Return Format" -msgstr "반환 형식" - -#: includes/fields/class-acf-field-date_picker.php:190 -#: includes/fields/class-acf-field-date_picker.php:221 -#: includes/fields/class-acf-field-date_time_picker.php:192 -#: includes/fields/class-acf-field-date_time_picker.php:210 -#: includes/fields/class-acf-field-time_picker.php:123 -#: includes/fields/class-acf-field-time_picker.php:139 -msgid "Custom:" -msgstr "사용자화:" - -#: includes/fields/class-acf-field-date_picker.php:182 -#: includes/fields/class-acf-field-date_time_picker.php:183 -#: includes/fields/class-acf-field-time_picker.php:116 -msgid "The format displayed when editing a post" -msgstr "게시물을 편집할 때 표시되는 형식" - -#: includes/fields/class-acf-field-date_picker.php:181 -#: includes/fields/class-acf-field-date_time_picker.php:182 -#: includes/fields/class-acf-field-time_picker.php:115 -msgid "Display Format" -msgstr "표시 형식" - -#: includes/fields/class-acf-field-time_picker.php:25 -msgid "Time Picker" -msgstr "시간 선택기" - -#. translators: counts for inactive field groups -#: acf.php:503 -msgid "Inactive (%s)" -msgid_plural "Inactive (%s)" -msgstr[0] "비활성 (%s)" - -#: acf.php:462 -msgid "No Fields found in Trash" -msgstr "휴지통에서 필드를 찾을 수 없습니다." - -#: acf.php:461 -msgid "No Fields found" -msgstr "필드를 찾을 수 없음" - -#: acf.php:460 -msgid "Search Fields" -msgstr "필드 검색하기" - -#: acf.php:459 -msgid "View Field" -msgstr "필드보기" - -#: acf.php:458 includes/admin/views/acf-field-group/fields.php:115 -msgid "New Field" -msgstr "새 필드" - -#: acf.php:457 -msgid "Edit Field" -msgstr "필드 편집하기" - -#: acf.php:456 -msgid "Add New Field" -msgstr "새로운 필드 추가하기" - -#: acf.php:454 -msgid "Field" -msgstr "필드" - -#: acf.php:453 includes/admin/post-types/admin-field-group.php:163 -#: includes/admin/post-types/admin-field-groups.php:119 -#: includes/admin/views/acf-field-group/fields.php:32 -msgid "Fields" -msgstr "필드" - -#: acf.php:428 -msgid "No Field Groups found in Trash" -msgstr "휴지통에서 필드 그룹을 찾을 수 없습니다." - -#: acf.php:427 -msgid "No Field Groups found" -msgstr "필드 그룹을 찾을 수 없음" - -#: acf.php:426 -msgid "Search Field Groups" -msgstr "필드 그룹 검색하기" - -#: acf.php:425 -msgid "View Field Group" -msgstr "필드 그룹 보기" - -#: acf.php:424 -msgid "New Field Group" -msgstr "새 필드 그룹" - -#: acf.php:423 -msgid "Edit Field Group" -msgstr "필드 그룹 편집하기" - -#: acf.php:422 -msgid "Add New Field Group" -msgstr "새 필드 그룹 추가하기" - -#: acf.php:421 acf.php:455 -#: includes/admin/views/acf-post-type/advanced-settings.php:219 -#: includes/admin/views/acf-post-type/advanced-settings.php:221 -#: includes/post-types/class-acf-post-type.php:93 -#: includes/post-types/class-acf-taxonomy.php:92 -msgid "Add New" -msgstr "새로 추가하기" - -#: acf.php:420 -msgid "Field Group" -msgstr "필드 그룹" - -#: acf.php:419 includes/admin/post-types/admin-field-groups.php:78 -#: includes/admin/post-types/admin-post-types.php:138 -#: includes/admin/post-types/admin-taxonomies.php:138 -msgid "Field Groups" -msgstr "필드 그룹" - -#. Description of the plugin -msgid "Customize WordPress with powerful, professional and intuitive fields." -msgstr "강력하고 전문적이며 직관적인 필드로 워드프레스를 사용자 정의하십시오." - -#. Plugin URI of the plugin -msgid "https://www.advancedcustomfields.com" -msgstr "https://www.advancedcustomfields.com" - -#. Plugin Name of the plugin -#: acf.php:94 -msgid "Advanced Custom Fields" -msgstr "고급 사용자 정의 필드" diff --git a/lang/acf-nb_NO.mo b/lang/acf-nb_NO.mo deleted file mode 100644 index e4ac2e5..0000000 Binary files a/lang/acf-nb_NO.mo and /dev/null differ diff --git a/lang/acf-nb_NO.po b/lang/acf-nb_NO.po deleted file mode 100644 index be6acd8..0000000 --- a/lang/acf-nb_NO.po +++ /dev/null @@ -1,6140 +0,0 @@ -# Advanced Custom Fields Translations are a combination of translate.wordpress.org contributions, -# combined with user contributed strings for the PRO version. -# Translations from translate.wordpress.org take priority over translations in this file. -# translate.wordpress.org contributions are synced at the time of each release. -# -# If you would like to contribute translations, please visit -# https://translate.wordpress.org/projects/wp-plugins/advanced-custom-fields/stable/ -# -# For additional ACF PRO strings, please submit a pull request over on the ACF GitHub repo at -# http://github.com/advancedcustomfields/acf using the .pot (and any existing .po) files in /lang/pro/ -# -# This file is distributed under the same license as Advanced Custom Fields. -msgid "" -msgstr "" -"PO-Revision-Date: 2023-11-28T09:14:32+00:00\n" -"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n" -"Language: nb_NO\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: gettext\n" -"Project-Id-Version: Advanced Custom Fields\n" - -#: includes/admin/views/global/navigation.php:221 -msgid "Renew ACF PRO License" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:17 -msgid "Renew License" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:14 -msgid "Manage License" -msgstr "" - -#: includes/admin/views/acf-field-group/options.php:102 -msgid "'High' position not supported in the Block Editor" -msgstr "" - -#: includes/admin/views/options-page-preview.php:30 -msgid "Upgrade to ACF PRO" -msgstr "" - -#. translators: %s URL to ACF options pages documentation -#: includes/admin/views/options-page-preview.php:7 -msgid "" -"ACF options pages are custom admin " -"pages for managing global settings via fields. You can create multiple pages " -"and sub-pages." -msgstr "" - -#: includes/admin/views/global/header.php:35 -msgid "Add Options Page" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:703 -msgid "In the editor used as the placeholder of the title." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:702 -msgid "Title Placeholder" -msgstr "" - -#: includes/admin/views/global/navigation.php:97 -msgid "4 Months Free" -msgstr "" - -#. translators: %s - A singular label for a post type or taxonomy. -#: includes/admin/views/global/form-top.php:56 -msgid " (Duplicated from %s)" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:298 -msgid "Select Options Pages" -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:107 -msgid "Duplicate taxonomy" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:106 -#: includes/admin/post-types/admin-taxonomy.php:106 -msgid "Create taxonomy" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:105 -msgid "Duplicate post type" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:104 -#: includes/admin/post-types/admin-taxonomy.php:108 -msgid "Create post type" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:103 -#: includes/admin/post-types/admin-taxonomy.php:105 -msgid "Link field groups" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:102 -#: includes/admin/post-types/admin-taxonomy.php:104 -msgid "Add fields" -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:121 -#: assets/build/js/acf-field-group.js:2753 -#: assets/build/js/acf-field-group.js:3236 -msgid "This Field" -msgstr "" - -#: includes/admin/admin.php:267 -msgid "ACF PRO" -msgstr "" - -#: includes/admin/admin.php:265 -msgid "Feedback" -msgstr "" - -#: includes/admin/admin.php:263 -msgid "Support" -msgstr "" - -#. translators: This text is prepended by a link to ACF's website, and appended -#. by a link to WP Engine's website. -#: includes/admin/admin.php:238 -msgid "is developed and maintained by" -msgstr "" - -#. translators: %s - either "post type" or "taxonomy" -#: includes/admin/admin-internal-post-type.php:321 -msgid "Add this %s to the location rules of the selected field groups." -msgstr "" - -#. translators: %s the URL to ACF's bidirectional relationship documentation -#: includes/acf-bidirectional-functions.php:271 -msgid "" -"Enabling the bidirectional setting allows you to update a value in the " -"target fields for each value selected for this field, adding or removing the " -"Post ID, Taxonomy ID or User ID of the item being updated. For more " -"information, please read the documentation." -msgstr "" - -#: includes/acf-bidirectional-functions.php:247 -msgid "" -"Select field(s) to store the reference back to the item being updated. You " -"may select this field. Target fields must be compatible with where this " -"field is being displayed. For example, if this field is displayed on a " -"Taxonomy, your target field should be of type Taxonomy" -msgstr "" - -#: includes/acf-bidirectional-functions.php:246 -msgid "Target Field" -msgstr "" - -#: includes/acf-bidirectional-functions.php:220 -msgid "Update a field on the selected values, referencing back to this ID" -msgstr "" - -#: includes/acf-bidirectional-functions.php:219 -msgid "Bidirectional" -msgstr "" - -#. translators: %s A field type name, such as "Relationship" -#: includes/acf-bidirectional-functions.php:192 -msgid "%s Field" -msgstr "" - -#: includes/fields/class-acf-field-page_link.php:517 -#: includes/fields/class-acf-field-post_object.php:426 -#: includes/fields/class-acf-field-select.php:407 -#: includes/fields/class-acf-field-user.php:82 -msgid "Select Multiple" -msgstr "" - -#: includes/admin/views/global/navigation.php:233 -msgid "WP Engine logo" -msgstr "" - -#: includes/admin/views/acf-taxonomy/basic-settings.php:58 -msgid "Lower case letters, underscores and dashes only, Max 32 characters." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1136 -msgid "The capability name for assigning terms of this taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1135 -msgid "Assign Terms Capability" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1119 -msgid "The capability name for deleting terms of this taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1118 -msgid "Delete Terms Capability" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1102 -msgid "The capability name for editing terms of this taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1101 -msgid "Edit Terms Capability" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1085 -msgid "The capability name for managing terms of this taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1084 -msgid "Manage Terms Capability" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:886 -msgid "" -"Sets whether posts should be excluded from search results and taxonomy " -"archive pages." -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:74 -msgid "More Tools from WP Engine" -msgstr "" - -#. translators: %s - WP Engine logo -#: includes/admin/views/acf-field-group/pro-features.php:69 -msgid "Built for those that build with WordPress, by the team at %s" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:6 -msgid "View Pricing & Upgrade" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:3 -#: includes/admin/views/options-page-preview.php:29 -msgid "Learn More" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:28 -msgid "" -"Speed up your workflow and develop better websites with features like ACF " -"Blocks and Options Pages, and sophisticated field types like Repeater, " -"Flexible Content, Clone, and Gallery." -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:2 -msgid "Unlock Advanced Features and Build Even More with ACF PRO" -msgstr "" - -#. translators: %s - singular label of post type/taxonomy, i.e. "Movie"/"Genre" -#: includes/admin/views/global/form-top.php:19 -msgid "%s fields" -msgstr "" - -#: includes/admin/post-types/admin-taxonomies.php:293 -msgid "No terms" -msgstr "" - -#: includes/admin/post-types/admin-taxonomies.php:266 -msgid "No post types" -msgstr "" - -#: includes/admin/post-types/admin-post-types.php:289 -msgid "No posts" -msgstr "" - -#: includes/admin/post-types/admin-post-types.php:263 -msgid "No taxonomies" -msgstr "" - -#: includes/admin/post-types/admin-post-types.php:208 -#: includes/admin/post-types/admin-taxonomies.php:208 -msgid "No field groups" -msgstr "" - -#: includes/admin/post-types/admin-field-groups.php:281 -msgid "No fields" -msgstr "" - -#: includes/admin/post-types/admin-field-groups.php:154 -#: includes/admin/post-types/admin-post-types.php:172 -#: includes/admin/post-types/admin-taxonomies.php:172 -msgid "No description" -msgstr "" - -#: includes/fields/class-acf-field-page_link.php:484 -#: includes/fields/class-acf-field-post_object.php:389 -#: includes/fields/class-acf-field-relationship.php:601 -msgid "Any post status" -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:284 -msgid "" -"This taxonomy key is already in use by another taxonomy registered outside " -"of ACF and cannot be used." -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:279 -msgid "" -"This taxonomy key is already in use by another taxonomy in ACF and cannot be " -"used." -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:252 -msgid "" -"The taxonomy key must only contain lower case alphanumeric characters, " -"underscores or dashes." -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:247 -msgid "The taxonomy key must be under 32 characters." -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:99 -msgid "No Taxonomies found in Trash" -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:98 -msgid "No Taxonomies found" -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:97 -msgid "Search Taxonomies" -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:96 -msgid "View Taxonomy" -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:95 -msgid "New Taxonomy" -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:94 -msgid "Edit Taxonomy" -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:93 -msgid "Add New Taxonomy" -msgstr "" - -#: includes/post-types/class-acf-post-type.php:100 -msgid "No Post Types found in Trash" -msgstr "" - -#: includes/post-types/class-acf-post-type.php:99 -msgid "No Post Types found" -msgstr "" - -#: includes/post-types/class-acf-post-type.php:98 -msgid "Search Post Types" -msgstr "" - -#: includes/post-types/class-acf-post-type.php:97 -msgid "View Post Type" -msgstr "" - -#: includes/post-types/class-acf-post-type.php:96 -msgid "New Post Type" -msgstr "" - -#: includes/post-types/class-acf-post-type.php:95 -msgid "Edit Post Type" -msgstr "" - -#: includes/post-types/class-acf-post-type.php:94 -msgid "Add New Post Type" -msgstr "" - -#: includes/post-types/class-acf-post-type.php:361 -msgid "" -"This post type key is already in use by another post type registered outside " -"of ACF and cannot be used." -msgstr "" - -#: includes/post-types/class-acf-post-type.php:356 -msgid "" -"This post type key is already in use by another post type in ACF and cannot " -"be used." -msgstr "" - -#. translators: %s a link to WordPress.org's Reserved Terms page -#: includes/post-types/class-acf-post-type.php:335 -#: includes/post-types/class-acf-taxonomy.php:258 -msgid "" -"This field must not be a WordPress reserved " -"term." -msgstr "" - -#: includes/post-types/class-acf-post-type.php:329 -msgid "" -"The post type key must only contain lower case alphanumeric characters, " -"underscores or dashes." -msgstr "" - -#: includes/post-types/class-acf-post-type.php:324 -msgid "The post type key must be under 20 characters." -msgstr "" - -#: includes/fields/class-acf-field-wysiwyg.php:27 -msgid "We do not recommend using this field in ACF Blocks." -msgstr "" - -#: includes/fields/class-acf-field-wysiwyg.php:27 -msgid "" -"Displays the WordPress WYSIWYG editor as seen in Posts and Pages allowing " -"for a rich text-editing experience that also allows for multimedia content." -msgstr "" - -#: includes/fields/class-acf-field-wysiwyg.php:25 -msgid "WYSIWYG Editor" -msgstr "" - -#: includes/fields/class-acf-field-user.php:17 -msgid "" -"Allows the selection of one or more users which can be used to create " -"relationships between data objects." -msgstr "" - -#: includes/fields/class-acf-field-url.php:26 -msgid "A text input specifically designed for storing web addresses." -msgstr "" - -#: includes/fields/class-acf-field-url.php:25 -msgid "URL" -msgstr "" - -#: includes/fields/class-acf-field-true_false.php:27 -msgid "" -"A toggle that allows you to pick a value of 1 or 0 (on or off, true or " -"false, etc). Can be presented as a stylized switch or checkbox." -msgstr "" - -#: includes/fields/class-acf-field-time_picker.php:27 -msgid "" -"An interactive UI for picking a time. The time format can be customized " -"using the field settings." -msgstr "" - -#: includes/fields/class-acf-field-textarea.php:26 -msgid "A basic textarea input for storing paragraphs of text." -msgstr "" - -#: includes/fields/class-acf-field-text.php:26 -msgid "A basic text input, useful for storing single string values." -msgstr "" - -#: includes/fields/class-acf-field-taxonomy.php:22 -msgid "" -"Allows the selection of one or more taxonomy terms based on the criteria and " -"options specified in the fields settings." -msgstr "" - -#: includes/fields/class-acf-field-tab.php:28 -msgid "" -"Allows you to group fields into tabbed sections in the edit screen. Useful " -"for keeping fields organized and structured." -msgstr "" - -#: includes/fields/class-acf-field-select.php:27 -msgid "A dropdown list with a selection of choices that you specify." -msgstr "" - -#: includes/fields/class-acf-field-relationship.php:19 -msgid "" -"A dual-column interface to select one or more posts, pages, or custom post " -"type items to create a relationship with the item that you're currently " -"editing. Includes options to search and filter." -msgstr "" - -#: includes/fields/class-acf-field-range.php:26 -msgid "" -"An input for selecting a numerical value within a specified range using a " -"range slider element." -msgstr "" - -#: includes/fields/class-acf-field-radio.php:27 -msgid "" -"A group of radio button inputs that allows the user to make a single " -"selection from values that you specify." -msgstr "" - -#: includes/fields/class-acf-field-post_object.php:19 -msgid "" -"An interactive and customizable UI for picking one or many posts, pages or " -"post type items with the option to search. " -msgstr "" - -#: includes/fields/class-acf-field-password.php:26 -msgid "An input for providing a password using a masked field." -msgstr "" - -#: includes/fields/class-acf-field-page_link.php:476 -#: includes/fields/class-acf-field-post_object.php:381 -#: includes/fields/class-acf-field-relationship.php:593 -msgid "Filter by Post Status" -msgstr "" - -#: includes/fields/class-acf-field-page_link.php:27 -msgid "" -"An interactive dropdown to select one or more posts, pages, custom post type " -"items or archive URLs, with the option to search." -msgstr "" - -#: includes/fields/class-acf-field-oembed.php:27 -msgid "" -"An interactive component for embedding videos, images, tweets, audio and " -"other content by making use of the native WordPress oEmbed functionality." -msgstr "" - -#: includes/fields/class-acf-field-number.php:26 -msgid "An input limited to numerical values." -msgstr "" - -#: includes/fields/class-acf-field-message.php:28 -msgid "" -"Used to display a message to editors alongside other fields. Useful for " -"providing additional context or instructions around your fields." -msgstr "" - -#: includes/fields/class-acf-field-link.php:27 -msgid "" -"Allows you to specify a link and its properties such as title and target " -"using the WordPress native link picker." -msgstr "" - -#: includes/fields/class-acf-field-image.php:27 -msgid "Uses the native WordPress media picker to upload, or choose images." -msgstr "" - -#: includes/fields/class-acf-field-group.php:27 -msgid "" -"Provides a way to structure fields into groups to better organize the data " -"and the edit screen." -msgstr "" - -#: includes/fields/class-acf-field-google-map.php:27 -msgid "" -"An interactive UI for selecting a location using Google Maps. Requires a " -"Google Maps API key and additional configuration to display correctly." -msgstr "" - -#: includes/fields/class-acf-field-file.php:27 -msgid "Uses the native WordPress media picker to upload, or choose files." -msgstr "" - -#: includes/fields/class-acf-field-email.php:26 -msgid "A text input specifically designed for storing email addresses." -msgstr "" - -#: includes/fields/class-acf-field-date_time_picker.php:27 -msgid "" -"An interactive UI for picking a date and time. The date return format can be " -"customized using the field settings." -msgstr "" - -#: includes/fields/class-acf-field-date_picker.php:27 -msgid "" -"An interactive UI for picking a date. The date return format can be " -"customized using the field settings." -msgstr "" - -#: includes/fields/class-acf-field-color_picker.php:27 -msgid "An interactive UI for selecting a color, or specifying a Hex value." -msgstr "" - -#: includes/fields/class-acf-field-checkbox.php:27 -msgid "" -"A group of checkbox inputs that allow the user to select one, or multiple " -"values that you specify." -msgstr "" - -#: includes/fields/class-acf-field-button-group.php:26 -msgid "" -"A group of buttons with values that you specify, users can choose one option " -"from the values provided." -msgstr "" - -#: includes/fields/class-acf-field-accordion.php:27 -msgid "" -"Allows you to group and organize custom fields into collapsable panels that " -"are shown while editing content. Useful for keeping large datasets tidy." -msgstr "" - -#: includes/fields.php:475 -msgid "" -"This provides a solution for repeating content such as slides, team members, " -"and call-to-action tiles, by acting as a parent to a set of subfields which " -"can be repeated again and again." -msgstr "" - -#: includes/fields.php:465 -msgid "" -"This provides an interactive interface for managing a collection of " -"attachments. Most settings are similar to the Image field type. Additional " -"settings allow you to specify where new attachments are added in the gallery " -"and the minimum/maximum number of attachments allowed." -msgstr "" - -#: includes/fields.php:455 -msgid "" -"This provides a simple, structured, layout-based editor. The Flexible " -"Content field allows you to define, create and manage content with total " -"control by using layouts and subfields to design the available blocks." -msgstr "" - -#: includes/fields.php:445 -msgid "" -"This allows you to select and display existing fields. It does not duplicate " -"any fields in the database, but loads and displays the selected fields at " -"run-time. The Clone field can either replace itself with the selected fields " -"or display the selected fields as a group of subfields." -msgstr "" - -#: pro/fields/class-acf-field-clone.php:25 -msgctxt "noun" -msgid "Clone" -msgstr "Klone" - -#: includes/admin/views/global/navigation.php:86 includes/fields.php:357 -msgid "PRO" -msgstr "" - -#: includes/fields.php:355 includes/fields.php:412 -msgid "Advanced" -msgstr "" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:85 -msgid "JSON (newer)" -msgstr "" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:81 -msgid "Original" -msgstr "" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:55 -msgid "Invalid post ID." -msgstr "" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:47 -msgid "Invalid post type selected for review." -msgstr "" - -#: includes/admin/views/global/navigation.php:186 -msgid "More" -msgstr "" - -#: includes/admin/views/browse-fields-modal.php:86 -msgid "Tutorial" -msgstr "" - -#: includes/admin/views/browse-fields-modal.php:75 -msgid "Available with ACF PRO" -msgstr "" - -#: includes/admin/views/browse-fields-modal.php:63 -msgid "Select Field" -msgstr "" - -#. translators: %s: A link to the popular fields used in ACF -#: includes/admin/views/browse-fields-modal.php:50 -msgid "Try a different search term or browse %s" -msgstr "" - -#: includes/admin/views/browse-fields-modal.php:47 -msgid "Popular fields" -msgstr "" - -#. translators: %s: The invalid search term -#: includes/admin/views/browse-fields-modal.php:40 -msgid "No search results for '%s'" -msgstr "" - -#: includes/admin/views/browse-fields-modal.php:13 -msgid "Search fields..." -msgstr "" - -#: includes/admin/views/browse-fields-modal.php:11 -msgid "Select Field Type" -msgstr "" - -#: includes/admin/views/browse-fields-modal.php:4 -msgid "Popular" -msgstr "" - -#: includes/admin/views/acf-taxonomy/list-empty.php:7 -msgid "Add Taxonomy" -msgstr "" - -#: includes/admin/views/acf-taxonomy/list-empty.php:6 -msgid "Create custom taxonomies to classify post type content" -msgstr "" - -#: includes/admin/views/acf-taxonomy/list-empty.php:5 -msgid "Add Your First Taxonomy" -msgstr "" - -#: includes/admin/views/acf-taxonomy/basic-settings.php:122 -msgid "Hierarchical taxonomies can have descendants (like categories)." -msgstr "" - -#: includes/admin/views/acf-taxonomy/basic-settings.php:107 -msgid "Makes a taxonomy visible on the frontend and in the admin dashboard." -msgstr "" - -#: includes/admin/views/acf-taxonomy/basic-settings.php:91 -msgid "One or many post types that can be classified with this taxonomy." -msgstr "" - -#. translators: example taxonomy -#: includes/admin/views/acf-taxonomy/basic-settings.php:60 -msgid "genre" -msgstr "" - -#. translators: example taxonomy -#: includes/admin/views/acf-taxonomy/basic-settings.php:42 -msgid "Genre" -msgstr "" - -#. translators: example taxonomy -#: includes/admin/views/acf-taxonomy/basic-settings.php:25 -msgid "Genres" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1211 -msgid "" -"Optional custom controller to use instead of `WP_REST_Terms_Controller `." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1155 -msgid "Expose this post type in the REST API." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1055 -msgid "Customize the query variable name" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1028 -msgid "" -"Terms can be accessed using the non-pretty permalink, e.g., {query_var}" -"={term_slug}." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:981 -msgid "Parent-child terms in URLs for hierarchical taxonomies." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:941 -msgid "Customize the slug used in the URL" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:924 -msgid "Permalinks for this taxonomy are disabled." -msgstr "" - -#. translators: this string will be appended with the new permalink structure. -#: includes/admin/views/acf-taxonomy/advanced-settings.php:921 -msgid "" -"Rewrite the URL using the taxonomy key as the slug. Your permalink structure " -"will be" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:913 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1030 -#: includes/admin/views/acf-taxonomy/basic-settings.php:57 -msgid "Taxonomy Key" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:911 -msgid "Select the type of permalink to use for this taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:896 -msgid "Display a column for the taxonomy on post type listing screens." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:895 -msgid "Show Admin Column" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:882 -msgid "Show the taxonomy in the quick/bulk edit panel." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:881 -msgid "Quick Edit" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:868 -msgid "List the taxonomy in the Tag Cloud Widget controls." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:867 -msgid "Tag Cloud" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:824 -msgid "" -"A PHP function name to be called for sanitizing taxonomy data saved from a " -"meta box." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:823 -msgid "Meta Box Sanitization Callback" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:805 -msgid "" -"A PHP function name to be called to handle the content of a meta box on your " -"taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:804 -msgid "Register Meta Box Callback" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:763 -msgid "No Meta Box" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:762 -msgid "Custom Meta Box" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:758 -msgid "" -"Controls the meta box on the content editor screen. By default, the " -"Categories meta box is shown for hierarchical taxonomies, and the Tags meta " -"box is shown for non-hierarchical taxonomies." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:757 -msgid "Meta Box" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:746 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:767 -msgid "Categories Meta Box" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:745 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:766 -msgid "Tags Meta Box" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:704 -msgid "A link to a tag" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:703 -msgid "Describes a navigation link block variation used in the block editor." -msgstr "" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:698 -msgid "A link to a %s" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:683 -msgid "Tag Link" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:682 -msgid "" -"Assigns a title for navigation link block variation used in the block editor." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:663 -msgid "← Go to tags" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:662 -msgid "" -"Assigns the text used to link back to the main index after updating a term." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:661 -msgid "Back To Items" -msgstr "" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:657 -msgid "← Go to %s" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:642 -msgid "Tags list" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:641 -msgid "Assigns text to the table hidden heading." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:622 -msgid "Tags list navigation" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:621 -msgid "Assigns text to the table pagination hidden heading." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:597 -msgid "Filter by category" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:596 -msgid "Assigns text to the filter button in the posts lists table." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:595 -msgid "Filter By Item" -msgstr "" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:591 -msgid "Filter by %s" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:575 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:576 -msgid "" -"The description is not prominent by default; however, some themes may show " -"it." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:574 -msgid "Describes the Description field on the Edit Tags screen." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:573 -msgid "Description Field Description" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:554 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:555 -msgid "" -"Assign a parent term to create a hierarchy. The term Jazz, for example, " -"would be the parent of Bebop and Big Band" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:553 -msgid "Describes the Parent field on the Edit Tags screen." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:552 -msgid "Parent Field Description" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:538 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:539 -msgid "" -"The \"slug\" is the URL-friendly version of the name. It is usually all " -"lower case and contains only letters, numbers, and hyphens." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:537 -msgid "Describes the Slug field on the Edit Tags screen." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:536 -msgid "Slug Field Description" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:522 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:523 -msgid "The name is how it appears on your site" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:521 -msgid "Describes the Name field on the Edit Tags screen." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:520 -msgid "Name Field Description" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:507 -msgid "No tags" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:506 -msgid "" -"Assigns the text displayed in the posts and media list tables when no tags " -"or categories are available." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:505 -msgid "No Terms" -msgstr "" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:501 -msgid "No %s" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:486 -msgid "No tags found" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:485 -msgid "" -"Assigns the text displayed when clicking the 'choose from most used' text in " -"the taxonomy meta box when no tags are available, and assigns the text used " -"in the terms list table when there are no items for a taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:484 -msgid "Not Found" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:463 -msgid "Assigns text to the Title field of the Most Used tab." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:462 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:464 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:465 -msgid "Most Used" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:444 -msgid "Choose from the most used tags" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:443 -msgid "" -"Assigns the 'choose from most used' text used in the meta box when " -"JavaScript is disabled. Only used on non-hierarchical taxonomies." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:442 -msgid "Choose From Most Used" -msgstr "" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:438 -msgid "Choose from the most used %s" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:418 -msgid "Add or remove tags" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:417 -msgid "" -"Assigns the add or remove items text used in the meta box when JavaScript is " -"disabled. Only used on non-hierarchical taxonomies" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:416 -msgid "Add Or Remove Items" -msgstr "" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:412 -msgid "Add or remove %s" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:392 -msgid "Separate tags with commas" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:391 -msgid "" -"Assigns the separate item with commas text used in the taxonomy meta box. " -"Only used on non-hierarchical taxonomies." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:390 -msgid "Separate Items With Commas" -msgstr "" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:386 -msgid "Separate %s with commas" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:366 -msgid "Popular Tags" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:365 -msgid "Assigns popular items text. Only used for non-hierarchical taxonomies." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:364 -msgid "Popular Items" -msgstr "" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:361 -msgid "Popular %s" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:347 -msgid "Search Tags" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:346 -msgid "Assigns search items text." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:323 -msgid "Parent Category:" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:322 -msgid "Assigns parent item text, but with a colon (:) added to the end." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:321 -msgid "Parent Item With Colon" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:298 -msgid "Parent Category" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:297 -msgid "Assigns parent item text. Only used on hierarchical taxonomies." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:296 -msgid "Parent Item" -msgstr "" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:293 -msgid "Parent %s" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:278 -msgid "New Tag Name" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:277 -msgid "Assigns the new item name text." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:276 -msgid "New Item Name" -msgstr "" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:273 -msgid "New %s Name" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:258 -msgid "Add New Tag" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:257 -msgid "Assigns the add new item text." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:238 -msgid "Update Tag" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:237 -msgid "Assigns the update item text." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:236 -msgid "Update Item" -msgstr "" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:233 -msgid "Update %s" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:218 -msgid "View Tag" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:217 -msgid "In the admin bar to view term during editing." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:198 -msgid "Edit Tag" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:197 -msgid "At the top of the editor screen when editing a term." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:178 -msgid "All Tags" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:177 -msgid "Assigns the all items text." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:158 -msgid "Assigns the menu name text." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:157 -msgid "Menu Label" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:131 -msgid "Active taxonomies are enabled and registered with WordPress." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:115 -msgid "A descriptive summary of the taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:95 -msgid "A descriptive summary of the term." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:94 -msgid "Term Description" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:76 -msgid "Single word, no spaces. Underscores and dashes allowed." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:75 -msgid "Term Slug" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:56 -msgid "The name of the default term." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:55 -msgid "Term Name" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:41 -msgid "" -"Create a term for the taxonomy that cannot be deleted. It will not be " -"selected for posts by default." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:40 -msgid "Default Term" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:28 -msgid "" -"Whether terms in this taxonomy should be sorted in the order they are " -"provided to `wp_set_object_terms()`." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:27 -msgid "Sort Terms" -msgstr "" - -#: includes/admin/views/acf-post-type/list-empty.php:7 -msgid "Add Post Type" -msgstr "" - -#: includes/admin/views/acf-post-type/list-empty.php:6 -msgid "" -"Expand the functionality of WordPress beyond standard posts and pages with " -"custom post types." -msgstr "" - -#: includes/admin/views/acf-post-type/list-empty.php:5 -msgid "Add Your First Post Type" -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:136 -#: includes/admin/views/acf-taxonomy/basic-settings.php:135 -msgid "I know what I'm doing, show me all the options." -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:135 -#: includes/admin/views/acf-taxonomy/basic-settings.php:134 -msgid "Advanced Configuration" -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:123 -msgid "Hierarchical post types can have descendants (like pages)." -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:122 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:980 -#: includes/admin/views/acf-taxonomy/basic-settings.php:121 -msgid "Hierarchical" -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:107 -msgid "Visible on the frontend and in the admin dashboard." -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:106 -#: includes/admin/views/acf-taxonomy/basic-settings.php:106 -msgid "Public" -msgstr "" - -#. translators: example post type -#: includes/admin/views/acf-post-type/basic-settings.php:59 -msgid "movie" -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:57 -msgid "Lower case letters, underscores and dashes only, Max 20 characters." -msgstr "" - -#. translators: example post type -#: includes/admin/views/acf-post-type/basic-settings.php:41 -msgid "Movie" -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:39 -#: includes/admin/views/acf-taxonomy/basic-settings.php:40 -msgid "Singular Label" -msgstr "" - -#. translators: example post type -#: includes/admin/views/acf-post-type/basic-settings.php:24 -msgid "Movies" -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:22 -#: includes/admin/views/acf-taxonomy/basic-settings.php:23 -msgid "Plural Label" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1270 -msgid "" -"Optional custom controller to use instead of `WP_REST_Posts_Controller`." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1269 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1210 -msgid "Controller Class" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1251 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1191 -msgid "The namespace part of the REST API URL." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1250 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1190 -msgid "Namespace Route" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1232 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1172 -msgid "The base URL for the post type REST API URLs." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1231 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1171 -msgid "Base URL" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1217 -msgid "" -"Exposes this post type in the REST API. Required to use the block editor." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1216 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1154 -msgid "Show In REST API" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1195 -msgid "Customize the query variable name." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1194 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1054 -msgid "Query Variable" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1172 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1032 -msgid "No Query Variable Support" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1171 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1031 -msgid "Custom Query Variable" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1168 -msgid "" -"Items can be accessed using the non-pretty permalink, eg. {post_type}" -"={post_slug}." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1167 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1027 -msgid "Query Variable Support" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1142 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1003 -msgid "URLs for an item and items can be accessed with a query string." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1141 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1002 -msgid "Publicly Queryable" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1120 -msgid "Custom slug for the Archive URL." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1119 -msgid "Archive Slug" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1106 -msgid "" -"Has an item archive that can be customized with an archive template file in " -"your theme." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1105 -msgid "Archive" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1085 -msgid "Pagination support for the items URLs such as the archives." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1084 -msgid "Pagination" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1067 -msgid "RSS feed URL for the post type items." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1066 -msgid "Feed URL" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1048 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:961 -msgid "" -"Alters the permalink structure to add the `WP_Rewrite::$front` prefix to " -"URLs." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1047 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:960 -msgid "Front URL Prefix" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1028 -msgid "Customize the slug used in the URL." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1027 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:940 -msgid "URL Slug" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1011 -msgid "Permalinks for this post type are disabled." -msgstr "" - -#. translators: this string will be appended with the new permalink structure. -#: includes/admin/views/acf-post-type/advanced-settings.php:1010 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:923 -msgid "" -"Rewrite the URL using a custom slug defined in the input below. Your " -"permalink structure will be" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1002 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:915 -msgid "No Permalink (prevent URL rewriting)" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1001 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:914 -msgid "Custom Permalink" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1000 -#: includes/admin/views/acf-post-type/advanced-settings.php:1170 -#: includes/admin/views/acf-post-type/basic-settings.php:56 -msgid "Post Type Key" -msgstr "" - -#. translators: this string will be appended with the new permalink structure. -#: includes/admin/views/acf-post-type/advanced-settings.php:998 -#: includes/admin/views/acf-post-type/advanced-settings.php:1008 -msgid "" -"Rewrite the URL using the post type key as the slug. Your permalink " -"structure will be" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:996 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:910 -msgid "Permalink Rewrite" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:982 -msgid "Delete items by a user when that user is deleted." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:981 -msgid "Delete With User" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:967 -msgid "Allow the post type to be exported from 'Tools' > 'Export'." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:966 -msgid "Can Export" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:935 -msgid "Optionally provide a plural to be used in capabilities." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:934 -msgid "Plural Capability Name" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:916 -msgid "Choose another post type to base the capabilities for this post type." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:915 -msgid "Singular Capability Name" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:901 -msgid "" -"By default the capabilities of the post type will inherit the 'Post' " -"capability names, eg. edit_post, delete_posts. Enable to use post type " -"specific capabilities, eg. edit_{singular}, delete_{plural}." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:900 -msgid "Rename Capabilities" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:885 -msgid "Exclude From Search" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:872 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:854 -msgid "" -"Allow items to be added to menus in the 'Appearance' > 'Menus' screen. Must " -"be turned on in 'Screen options'." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:871 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:853 -msgid "Appearance Menus Support" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:853 -msgid "Appears as an item in the 'New' menu in the admin bar." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:852 -msgid "Show In Admin Bar" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:821 -msgid "" -"A PHP function name to be called when setting up the meta boxes for the edit " -"screen." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:820 -msgid "Custom Meta Box Callback" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:800 -msgid "Menu Icon" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:782 -msgid "The position in the sidebar menu in the admin dashboard." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:781 -msgid "Menu Position" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:763 -msgid "" -"By default the post type will get a new top level item in the admin menu. If " -"an existing top level item is supplied here, the post type will be added as " -"a submenu item under it." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:762 -msgid "Admin Menu Parent" -msgstr "" - -#. translators: %s = "dashicon class name", link to the WordPress dashicon -#. documentation. -#: includes/admin/views/acf-post-type/advanced-settings.php:750 -msgid "" -"The icon used for the post type menu item in the admin dashboard. Can be a " -"URL or %s to use for the icon." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:745 -msgid "Dashicon class name" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:734 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:734 -msgid "Admin editor navigation in the sidebar menu." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:733 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:733 -msgid "Show In Admin Menu" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:720 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:719 -msgid "Items can be edited and managed in the admin dashboard." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:719 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:718 -msgid "Show In UI" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:689 -msgid "A link to a post." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:688 -msgid "Description for a navigation link block variation." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:687 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:702 -msgid "Item Link Description" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:683 -msgid "A link to a %s." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:668 -msgid "Post Link" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:667 -msgid "Title for a navigation link block variation." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:666 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:681 -msgid "Item Link" -msgstr "" - -#. translators: %s Singular form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:663 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:678 -msgid "%s Link" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:648 -msgid "Post updated." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:647 -msgid "In the editor notice after an item is updated." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:646 -msgid "Item Updated" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:643 -msgid "%s updated." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:628 -msgid "Post scheduled." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:627 -msgid "In the editor notice after scheduling an item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:626 -msgid "Item Scheduled" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:623 -msgid "%s scheduled." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:608 -msgid "Post reverted to draft." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:607 -msgid "In the editor notice after reverting an item to draft." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:606 -msgid "Item Reverted To Draft" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:603 -msgid "%s reverted to draft." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:588 -msgid "Post published privately." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:587 -msgid "In the editor notice after publishing a private item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:586 -msgid "Item Published Privately" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:583 -msgid "%s published privately." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:568 -msgid "Post published." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:567 -msgid "In the editor notice after publishing an item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:566 -msgid "Item Published" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:563 -msgid "%s published." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:548 -msgid "Posts list" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:547 -msgid "Used by screen readers for the items list on the post type list screen." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:546 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:640 -msgid "Items List" -msgstr "" - -#. translators: %s Plural form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:543 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:637 -msgid "%s list" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:528 -msgid "Posts list navigation" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:527 -msgid "" -"Used by screen readers for the filter list pagination on the post type list " -"screen." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:526 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:620 -msgid "Items List Navigation" -msgstr "" - -#. translators: %s Plural form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:523 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:617 -msgid "%s list navigation" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:507 -msgid "Filter posts by date" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:506 -msgid "" -"Used by screen readers for the filter by date heading on the post type list " -"screen." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:505 -msgid "Filter Items By Date" -msgstr "" - -#. translators: %s Plural form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:501 -msgid "Filter %s by date" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:486 -msgid "Filter posts list" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:485 -msgid "" -"Used by screen readers for the filter links heading on the post type list " -"screen." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:484 -msgid "Filter Items List" -msgstr "" - -#. translators: %s Plural form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:480 -msgid "Filter %s list" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:464 -msgid "In the media modal showing all media uploaded to this item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:463 -msgid "Uploaded To This Item" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:459 -msgid "Uploaded to this %s" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:444 -msgid "Insert into post" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:443 -msgid "As the button label when adding media to content." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:442 -msgid "Insert Into Media Button" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:438 -msgid "Insert into %s" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:423 -msgid "Use as featured image" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:422 -msgid "" -"As the button label for selecting to use an image as the featured image." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:421 -msgid "Use Featured Image" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:408 -msgid "Remove featured image" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:407 -msgid "As the button label when removing the featured image." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:406 -msgid "Remove Featured Image" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:393 -msgid "Set featured image" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:392 -msgid "As the button label when setting the featured image." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:391 -msgid "Set Featured Image" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:378 -msgid "Featured image" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:377 -msgid "In the editor used for the title of the featured image meta box." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:376 -msgid "Featured Image Meta Box" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:363 -msgid "Post Attributes" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:362 -msgid "In the editor used for the title of the post attributes meta box." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:361 -msgid "Attributes Meta Box" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:358 -msgid "%s Attributes" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:343 -msgid "Post Archives" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:342 -msgid "" -"Adds 'Post Type Archive' items with this label to the list of posts shown " -"when adding items to an existing menu in a CPT with archives enabled. Only " -"appears when editing menus in 'Live Preview' mode and a custom archive slug " -"has been provided." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:341 -msgid "Archives Nav Menu" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:338 -msgid "%s Archives" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:323 -msgid "No posts found in Trash" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:322 -msgid "" -"At the top of the post type list screen when there are no posts in the trash." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:321 -msgid "No Items Found in Trash" -msgstr "" - -#. translators: %s Plural form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:317 -msgid "No %s found in Trash" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:302 -msgid "No posts found" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:301 -msgid "" -"At the top of the post type list screen when there are no posts to display." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:300 -msgid "No Items Found" -msgstr "" - -#. translators: %s Plural form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:296 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:480 -msgid "No %s found" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:281 -msgid "Search Posts" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:280 -msgid "At the top of the items screen when searching for an item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:279 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:345 -msgid "Search Items" -msgstr "" - -#. translators: %s Singular form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:276 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:342 -msgid "Search %s" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:261 -msgid "Parent Page:" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:260 -msgid "For hierarchical types in the post type list screen." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:259 -msgid "Parent Item Prefix" -msgstr "" - -#. translators: %s Singular form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:256 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:318 -msgid "Parent %s:" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:241 -msgid "New Post" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:239 -msgid "New Item" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:236 -msgid "New %s" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:206 -msgid "Add New Post" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:205 -msgid "At the top of the editor screen when adding a new item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:204 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:256 -msgid "Add New Item" -msgstr "" - -#. translators: %s Singular form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:201 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:253 -msgid "Add New %s" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:186 -msgid "View Posts" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:185 -msgid "" -"Appears in the admin bar in the 'All Posts' view, provided the post type " -"supports archives and the home page is not an archive of that post type." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:184 -msgid "View Items" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:166 -msgid "View Post" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:165 -msgid "In the admin bar to view item when editing it." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:164 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:216 -msgid "View Item" -msgstr "" - -#. translators: %s Singular form of post type name -#. translators: %s Plural form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:161 -#: includes/admin/views/acf-post-type/advanced-settings.php:181 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:213 -msgid "View %s" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:146 -msgid "Edit Post" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:145 -msgid "At the top of the editor screen when editing an item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:144 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:196 -msgid "Edit Item" -msgstr "" - -#. translators: %s Singular form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:141 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:193 -msgid "Edit %s" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:126 -msgid "All Posts" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:125 -#: includes/admin/views/acf-post-type/advanced-settings.php:220 -#: includes/admin/views/acf-post-type/advanced-settings.php:240 -msgid "In the post type submenu in the admin dashboard." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:124 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:176 -msgid "All Items" -msgstr "" - -#. translators: %s Plural form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:121 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:173 -msgid "All %s" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:105 -msgid "Admin menu name for the post type." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:104 -msgid "Menu Name" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:90 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:142 -msgid "Regenerate all labels using the Singular and Plural labels" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:88 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:140 -msgid "Regenerate" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:79 -msgid "Active post types are enabled and registered with WordPress." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:63 -msgid "A descriptive summary of the post type." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:48 -msgid "Add Custom" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:42 -msgid "Enable various features in the content editor." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:31 -msgid "Post Formats" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:25 -msgid "Editor" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:24 -msgid "Trackbacks" -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:87 -msgid "Select existing taxonomies to classify items of the post type." -msgstr "" - -#: includes/admin/views/acf-field-group/field.php:145 -msgid "Browse Fields" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:292 -msgid "Nothing to import" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:287 -msgid ". The Custom Post Type UI plugin can be deactivated." -msgstr "" - -#. translators: %d - number of items imported from CPTUI -#: includes/admin/tools/class-acf-admin-tool-import.php:278 -msgid "Imported %d item from Custom Post Type UI -" -msgid_plural "Imported %d items from Custom Post Type UI -" -msgstr[0] "" -msgstr[1] "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:262 -msgid "Failed to import taxonomies." -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:244 -msgid "Failed to import post types." -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:233 -msgid "Nothing from Custom Post Type UI plugin selected for import." -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:209 -msgid "Imported 1 item" -msgid_plural "Imported %s items" -msgstr[0] "" -msgstr[1] "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:122 -msgid "" -"Importing a Post Type or Taxonomy with the same key as one that already " -"exists will overwrite the settings for the existing Post Type or Taxonomy " -"with those of the import." -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:111 -#: includes/admin/tools/class-acf-admin-tool-import.php:127 -msgid "Import from Custom Post Type UI" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:412 -msgid "" -"The following code can be used to register a local version of the selected " -"items. Storing field groups, post types, or taxonomies locally can provide " -"many benefits such as faster load times, version control & dynamic fields/" -"settings. Simply copy and paste the following code to your theme's functions." -"php file or include it within an external file, then deactivate or delete " -"the items from the ACF admin." -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:411 -msgid "Export - Generate PHP" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:384 -msgid "Export" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:276 -msgid "Select Taxonomies" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:254 -msgid "Select Post Types" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:167 -msgid "Exported 1 item." -msgid_plural "Exported %s items." -msgstr[0] "" -msgstr[1] "" - -#: includes/admin/post-types/admin-taxonomy.php:129 -#: assets/build/js/acf-internal-post-type.js:182 -#: assets/build/js/acf-internal-post-type.js:256 -msgid "Category" -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:127 -#: assets/build/js/acf-internal-post-type.js:179 -#: assets/build/js/acf-internal-post-type.js:253 -msgid "Tag" -msgstr "" - -#. translators: %s taxonomy name -#: includes/admin/post-types/admin-taxonomy.php:82 -msgid "%s taxonomy created" -msgstr "" - -#. translators: %s taxonomy name -#: includes/admin/post-types/admin-taxonomy.php:76 -msgid "%s taxonomy updated" -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:56 -msgid "Taxonomy draft updated." -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:55 -msgid "Taxonomy scheduled for." -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:54 -msgid "Taxonomy submitted." -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:53 -msgid "Taxonomy saved." -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:49 -msgid "Taxonomy deleted." -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:48 -msgid "Taxonomy updated." -msgstr "" - -#: includes/admin/post-types/admin-taxonomies.php:377 -#: includes/admin/post-types/admin-taxonomy.php:157 -msgid "" -"This taxonomy could not be registered because its key is in use by another " -"taxonomy registered by another plugin or theme." -msgstr "" - -#. translators: %s number of taxonomies synchronized -#: includes/admin/post-types/admin-taxonomies.php:359 -msgid "Taxonomy synchronized." -msgid_plural "%s taxonomies synchronized." -msgstr[0] "" -msgstr[1] "" - -#. translators: %s number of taxonomies duplicated -#: includes/admin/post-types/admin-taxonomies.php:352 -msgid "Taxonomy duplicated." -msgid_plural "%s taxonomies duplicated." -msgstr[0] "" -msgstr[1] "" - -#. translators: %s number of taxonomies deactivated -#: includes/admin/post-types/admin-taxonomies.php:345 -msgid "Taxonomy deactivated." -msgid_plural "%s taxonomies deactivated." -msgstr[0] "" -msgstr[1] "" - -#. translators: %s number of taxonomies activated -#: includes/admin/post-types/admin-taxonomies.php:338 -msgid "Taxonomy activated." -msgid_plural "%s taxonomies activated." -msgstr[0] "" -msgstr[1] "" - -#: includes/admin/post-types/admin-taxonomies.php:139 -msgid "Terms" -msgstr "" - -#. translators: %s number of post types synchronized -#: includes/admin/post-types/admin-post-types.php:352 -msgid "Post type synchronized." -msgid_plural "%s post types synchronized." -msgstr[0] "" -msgstr[1] "" - -#. translators: %s number of post types duplicated -#: includes/admin/post-types/admin-post-types.php:345 -msgid "Post type duplicated." -msgid_plural "%s post types duplicated." -msgstr[0] "" -msgstr[1] "" - -#. translators: %s number of post types deactivated -#: includes/admin/post-types/admin-post-types.php:338 -msgid "Post type deactivated." -msgid_plural "%s post types deactivated." -msgstr[0] "" -msgstr[1] "" - -#. translators: %s number of post types activated -#: includes/admin/post-types/admin-post-types.php:331 -msgid "Post type activated." -msgid_plural "%s post types activated." -msgstr[0] "" -msgstr[1] "" - -#: includes/admin/post-types/admin-post-types.php:112 -#: includes/admin/post-types/admin-taxonomies.php:137 -#: includes/admin/tools/class-acf-admin-tool-import.php:82 -#: includes/admin/views/acf-taxonomy/basic-settings.php:82 -#: includes/post-types/class-acf-post-type.php:91 -msgid "Post Types" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:162 -#: includes/admin/post-types/admin-taxonomy.php:164 -msgid "Advanced Settings" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:161 -#: includes/admin/post-types/admin-taxonomy.php:163 -msgid "Basic Settings" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:155 -#: includes/admin/post-types/admin-post-types.php:370 -msgid "" -"This post type could not be registered because its key is in use by another " -"post type registered by another plugin or theme." -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:128 -#: assets/build/js/acf-internal-post-type.js:176 -#: assets/build/js/acf-internal-post-type.js:250 -msgid "Pages" -msgstr "" - -#: includes/admin/admin-internal-post-type.php:355 -msgid "Link Existing Field Groups" -msgstr "" - -#. translators: %s post type name -#: includes/admin/post-types/admin-post-type.php:80 -msgid "%s post type created" -msgstr "" - -#. translators: %s taxonomy name -#: includes/admin/post-types/admin-taxonomy.php:78 -msgid "Add fields to %s" -msgstr "" - -#. translators: %s post type name -#: includes/admin/post-types/admin-post-type.php:76 -msgid "%s post type updated" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:56 -msgid "Post type draft updated." -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:55 -msgid "Post type scheduled for." -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:54 -msgid "Post type submitted." -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:53 -msgid "Post type saved." -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:50 -msgid "Post type updated." -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:49 -msgid "Post type deleted." -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:120 -#: assets/build/js/acf-field-group.js:1146 -#: assets/build/js/acf-field-group.js:1366 -msgid "Type to search..." -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:105 -#: assets/build/js/acf-field-group.js:1172 -#: assets/build/js/acf-field-group.js:2319 -#: assets/build/js/acf-field-group.js:1414 -#: assets/build/js/acf-field-group.js:2727 -msgid "PRO Only" -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:97 -#: assets/build/js/acf-internal-post-type.js:308 -#: assets/build/js/acf-internal-post-type.js:417 -msgid "Field groups linked successfully." -msgstr "" - -#. translators: %s - URL to ACF tools page. -#: includes/admin/admin.php:195 -msgid "" -"Import Post Types and Taxonomies registered with Custom Post Type UI and " -"manage them with ACF. Get Started." -msgstr "" - -#: includes/admin/admin.php:48 includes/admin/admin.php:267 -msgid "ACF" -msgstr "" - -#: includes/admin/admin-internal-post-type.php:322 -msgid "taxonomy" -msgstr "" - -#: includes/admin/admin-internal-post-type.php:322 -msgid "post type" -msgstr "" - -#: includes/admin/admin-internal-post-type.php:346 -msgid "Done" -msgstr "" - -#: includes/admin/admin-internal-post-type.php:332 -msgid "Field Group(s)" -msgstr "" - -#: includes/admin/admin-internal-post-type.php:331 -msgid "Select one or many field groups..." -msgstr "" - -#: includes/admin/admin-internal-post-type.php:330 -msgid "Please select the field groups to link." -msgstr "" - -#: includes/admin/admin-internal-post-type.php:288 -msgid "Field group linked successfully." -msgid_plural "Field groups linked successfully." -msgstr[0] "" -msgstr[1] "" - -#: includes/admin/admin-internal-post-type-list.php:261 -#: includes/admin/post-types/admin-post-types.php:371 -#: includes/admin/post-types/admin-taxonomies.php:378 -msgctxt "post status" -msgid "Registration Failed" -msgstr "" - -#: includes/admin/admin-internal-post-type-list.php:260 -msgid "" -"This item could not be registered because its key is in use by another item " -"registered by another plugin or theme." -msgstr "" - -#: includes/acf-internal-post-type-functions.php:482 -#: includes/acf-internal-post-type-functions.php:511 -msgid "REST API" -msgstr "" - -#: includes/acf-internal-post-type-functions.php:481 -#: includes/acf-internal-post-type-functions.php:510 -#: includes/acf-internal-post-type-functions.php:537 -msgid "Permissions" -msgstr "" - -#: includes/acf-internal-post-type-functions.php:480 -#: includes/acf-internal-post-type-functions.php:509 -msgid "URLs" -msgstr "" - -#: includes/acf-internal-post-type-functions.php:479 -#: includes/acf-internal-post-type-functions.php:508 -#: includes/acf-internal-post-type-functions.php:535 -msgid "Visibility" -msgstr "" - -#: includes/acf-internal-post-type-functions.php:478 -#: includes/acf-internal-post-type-functions.php:507 -#: includes/acf-internal-post-type-functions.php:536 -msgid "Labels" -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:269 -msgid "Field Settings Tabs" -msgstr "" - -#. Author URI of the plugin -msgid "" -"https://wpengine.com/?utm_source=wordpress." -"org&utm_medium=referral&utm_campaign=plugin_directory&utm_content=advanced_custom_fields" -msgstr "" - -#: includes/api/api-template.php:867 -msgid "[ACF shortcode value disabled for preview]" -msgstr "" - -#: includes/admin/admin-internal-post-type.php:298 -#: includes/admin/post-types/admin-field-group.php:571 -msgid "Close Modal" -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:96 -#: assets/build/js/acf-field-group.js:1670 -#: assets/build/js/acf-field-group.js:1993 -msgid "Field moved to other group" -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:95 -#: assets/build/js/acf.js:1437 assets/build/js/acf.js:1517 -msgid "Close modal" -msgstr "" - -#: includes/fields/class-acf-field-tab.php:125 -msgid "Start a new group of tabs at this tab." -msgstr "Begynn en ny grupe faner ved denne fanen." - -#: includes/fields/class-acf-field-tab.php:124 -msgid "New Tab Group" -msgstr "Ny fanegruppe" - -#: includes/fields/class-acf-field-select.php:451 -#: includes/fields/class-acf-field-true_false.php:200 -msgid "Use a stylized checkbox using select2" -msgstr "" - -#: includes/fields/class-acf-field-radio.php:260 -msgid "Save Other Choice" -msgstr "Lagre annet valg" - -#: includes/fields/class-acf-field-radio.php:249 -msgid "Allow Other Choice" -msgstr "Tillat andre valg" - -#: includes/fields/class-acf-field-checkbox.php:450 -msgid "Add Toggle All" -msgstr "Legg til veksle alle" - -#: includes/fields/class-acf-field-checkbox.php:409 -msgid "Save Custom Values" -msgstr "Lagee tilpassede verdier" - -#: includes/fields/class-acf-field-checkbox.php:398 -msgid "Allow Custom Values" -msgstr "Tilllat tilpassede verdier" - -#: includes/fields/class-acf-field-checkbox.php:148 -msgid "Checkbox custom values cannot be empty. Uncheck any empty values." -msgstr "" - -#: includes/admin/views/global/navigation.php:248 -msgid "Updates" -msgstr "Oppdateringer" - -#: includes/admin/views/global/navigation.php:176 -msgid "Advanced Custom Fields logo" -msgstr "" - -#: includes/admin/views/global/form-top.php:89 -msgid "Save Changes" -msgstr "Lagre endringer" - -#: includes/admin/views/global/form-top.php:76 -msgid "Field Group Title" -msgstr "Tittel for feltgruppe" - -#: includes/admin/views/acf-post-type/advanced-settings.php:704 -#: includes/admin/views/global/form-top.php:3 -msgid "Add title" -msgstr "Legg til tittel" - -#. translators: %s url to getting started guide -#: includes/admin/views/acf-field-group/list-empty.php:20 -#: includes/admin/views/acf-post-type/list-empty.php:12 -#: includes/admin/views/acf-taxonomy/list-empty.php:12 -#: includes/admin/views/options-page-preview.php:13 -msgid "" -"New to ACF? Take a look at our getting " -"started guide." -msgstr "" - -#: includes/admin/views/acf-field-group/list-empty.php:15 -msgid "Add Field Group" -msgstr "Legg til feltgruppe" - -#. translators: %s url to creating a field group page -#: includes/admin/views/acf-field-group/list-empty.php:10 -msgid "" -"ACF uses field groups to group custom " -"fields together, and then attach those fields to edit screens." -msgstr "" - -#: includes/admin/views/acf-field-group/list-empty.php:5 -msgid "Add Your First Field Group" -msgstr "Legg til din første feltgruppe" - -#: includes/admin/admin-options-pages-preview.php:28 -#: includes/admin/views/acf-field-group/pro-features.php:54 -#: includes/admin/views/global/navigation.php:86 -#: includes/admin/views/global/navigation.php:250 -msgid "Options Pages" -msgstr "Sider for innstillinger" - -#: includes/admin/views/acf-field-group/pro-features.php:50 -msgid "ACF Blocks" -msgstr "ACF-blokker" - -#: includes/admin/views/acf-field-group/pro-features.php:58 -msgid "Gallery Field" -msgstr "Gallerifelt" - -#: includes/admin/views/acf-field-group/pro-features.php:38 -msgid "Flexible Content Field" -msgstr "Felksibelt innholdsfelt" - -#: includes/admin/views/acf-field-group/pro-features.php:42 -msgid "Repeater Field" -msgstr "Gjentakende felt" - -#: includes/admin/views/global/navigation.php:212 -msgid "Unlock Extra Features with ACF PRO" -msgstr "" - -#: includes/admin/views/acf-field-group/options.php:267 -msgid "Delete Field Group" -msgstr "Slett feltgruppe" - -#. translators: 1: Post creation date 2: Post creation time -#: includes/admin/views/acf-field-group/options.php:261 -msgid "Created on %1$s at %2$s" -msgstr "Opprettet %1$s kl %2$s" - -#: includes/acf-field-group-functions.php:497 -msgid "Group Settings" -msgstr "Gruppeinnstillinger" - -#: includes/acf-field-group-functions.php:495 -msgid "Location Rules" -msgstr "" - -#. translators: %s url to field types list -#: includes/admin/views/acf-field-group/fields.php:72 -msgid "" -"Choose from over 30 field types. Learn " -"more." -msgstr "" - -#: includes/admin/views/acf-field-group/fields.php:65 -msgid "" -"Get started creating new custom fields for your posts, pages, custom post " -"types and other WordPress content." -msgstr "" - -#: includes/admin/views/acf-field-group/fields.php:64 -msgid "Add Your First Field" -msgstr "Legg til ditt første felt" - -#. translators: A symbol (or text, if not available in your locale) meaning -#. "Order Number", in terms of positional placement. -#: includes/admin/views/acf-field-group/fields.php:43 -msgid "#" -msgstr "#" - -#: includes/admin/views/acf-field-group/fields.php:33 -#: includes/admin/views/acf-field-group/fields.php:67 -#: includes/admin/views/acf-field-group/fields.php:103 -#: includes/admin/views/global/form-top.php:85 -msgid "Add Field" -msgstr "Legg til felt" - -#: includes/acf-field-group-functions.php:496 includes/fields.php:410 -msgid "Presentation" -msgstr "Presentasjon" - -#: includes/fields.php:409 -msgid "Validation" -msgstr "Validering" - -#: includes/acf-internal-post-type-functions.php:477 -#: includes/acf-internal-post-type-functions.php:506 includes/fields.php:408 -msgid "General" -msgstr "Generelt" - -#: includes/admin/tools/class-acf-admin-tool-import.php:70 -msgid "Import JSON" -msgstr "Importer JSON" - -#: includes/admin/tools/class-acf-admin-tool-export.php:392 -msgid "Export As JSON" -msgstr "Eksporter som JSON" - -#. translators: %s number of field groups deactivated -#: includes/admin/post-types/admin-field-groups.php:367 -msgid "Field group deactivated." -msgid_plural "%s field groups deactivated." -msgstr[0] "Feltgruppe deaktivert." -msgstr[1] "%s feltgrupper deaktivert." - -#. translators: %s number of field groups activated -#: includes/admin/post-types/admin-field-groups.php:360 -msgid "Field group activated." -msgid_plural "%s field groups activated." -msgstr[0] "Feltgruppe aktivert" -msgstr[1] "%s feltgrupper aktivert." - -#: includes/admin/admin-internal-post-type-list.php:452 -#: includes/admin/admin-internal-post-type-list.php:478 -msgid "Deactivate" -msgstr "Deaktiver" - -#: includes/admin/admin-internal-post-type-list.php:452 -msgid "Deactivate this item" -msgstr "Deaktiver dette elementet" - -#: includes/admin/admin-internal-post-type-list.php:448 -#: includes/admin/admin-internal-post-type-list.php:477 -msgid "Activate" -msgstr "Aktiver" - -#: includes/admin/admin-internal-post-type-list.php:448 -msgid "Activate this item" -msgstr "Aktiver dette elementet" - -#: includes/admin/post-types/admin-field-group.php:92 -#: assets/build/js/acf-field-group.js:2812 -#: assets/build/js/acf-field-group.js:3313 -msgid "Move field group to trash?" -msgstr "Flytte feltgruppe til papirkurven?" - -#: acf.php:497 includes/admin/admin-internal-post-type-list.php:248 -#: includes/admin/post-types/admin-field-group.php:297 -#: includes/admin/post-types/admin-post-type.php:295 -#: includes/admin/post-types/admin-taxonomy.php:297 -msgctxt "post status" -msgid "Inactive" -msgstr "Inaktiv" - -#. Author of the plugin -msgid "WP Engine" -msgstr "WP Engine" - -#: acf.php:555 -msgid "" -"Advanced Custom Fields and Advanced Custom Fields PRO should not be active " -"at the same time. We've automatically deactivated Advanced Custom Fields PRO." -msgstr "" - -#: acf.php:553 -msgid "" -"Advanced Custom Fields and Advanced Custom Fields PRO should not be active " -"at the same time. We've automatically deactivated Advanced Custom Fields." -msgstr "" - -#: includes/acf-value-functions.php:374 -msgid "" -"%1$s - We've detected one or more calls to retrieve ACF " -"field values before ACF has been initialized. This is not supported and can " -"result in malformed or missing data. Learn how to fix this." -msgstr "" - -#: includes/fields/class-acf-field-user.php:551 -msgid "%1$s must have a user with the %2$s role." -msgid_plural "%1$s must have a user with one of the following roles: %2$s" -msgstr[0] "%1$s må ha en bruker med rollen %2$s." -msgstr[1] "%1$s må ha en bruker med en av følgende roller: %2$s" - -#: includes/fields/class-acf-field-user.php:542 -msgid "%1$s must have a valid user ID." -msgstr "%1$s må ha en gyldig bruker-ID." - -#: includes/fields/class-acf-field-user.php:380 -msgid "Invalid request." -msgstr "Ugyldig forespørsel." - -#: includes/fields/class-acf-field-select.php:684 -msgid "%1$s is not one of %2$s" -msgstr "%1$s er ikke en av %2$s" - -#: includes/fields/class-acf-field-post_object.php:700 -msgid "%1$s must have term %2$s." -msgid_plural "%1$s must have one of the following terms: %2$s" -msgstr[0] "%1$s må ha termen %2$s." -msgstr[1] "%1$s må ha én av følgende termer: %2$s" - -#: includes/fields/class-acf-field-post_object.php:684 -msgid "%1$s must be of post type %2$s." -msgid_plural "%1$s must be of one of the following post types: %2$s" -msgstr[0] "" -msgstr[1] "" - -#: includes/fields/class-acf-field-post_object.php:675 -msgid "%1$s must have a valid post ID." -msgstr "%1$s må ha en gyldig innlegg-ID." - -#: includes/fields/class-acf-field-file.php:475 -msgid "%s requires a valid attachment ID." -msgstr "%s må ha en gyldig vedlegg-ID." - -#: includes/admin/views/acf-field-group/options.php:233 -msgid "Show in REST API" -msgstr "" - -#: includes/fields/class-acf-field-color_picker.php:168 -msgid "Enable Transparency" -msgstr "Aktiver gjennomsiktighet" - -#: includes/fields/class-acf-field-color_picker.php:187 -msgid "RGBA Array" -msgstr "" - -#: includes/fields/class-acf-field-color_picker.php:98 -msgid "RGBA String" -msgstr "" - -#: includes/fields/class-acf-field-color_picker.php:97 -#: includes/fields/class-acf-field-color_picker.php:186 -msgid "Hex String" -msgstr "" - -#: includes/admin/views/browse-fields-modal.php:65 -msgid "Upgrade to PRO" -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:297 -#: includes/admin/post-types/admin-post-type.php:295 -#: includes/admin/post-types/admin-taxonomy.php:297 -msgctxt "post status" -msgid "Active" -msgstr "Aktiv" - -#: includes/fields/class-acf-field-email.php:181 -msgid "'%s' is not a valid email address" -msgstr "'‌‌%s' er ikke en gyldig e-postadresse." - -#: includes/fields/class-acf-field-color_picker.php:76 -msgid "Color value" -msgstr "Fargeverdi" - -#: includes/fields/class-acf-field-color_picker.php:74 -msgid "Select default color" -msgstr "Velg standardfarge" - -#: includes/fields/class-acf-field-color_picker.php:72 -msgid "Clear color" -msgstr "Fjern farge" - -#: includes/acf-wp-functions.php:90 -msgid "Blocks" -msgstr "Blokker" - -#: includes/acf-wp-functions.php:86 -msgid "Options" -msgstr "Alternativer" - -#: includes/acf-wp-functions.php:82 -msgid "Users" -msgstr "Brukere" - -#: includes/acf-wp-functions.php:78 -msgid "Menu items" -msgstr "Menyelementer" - -#: includes/acf-wp-functions.php:70 -msgid "Widgets" -msgstr "Widgeter" - -#: includes/acf-wp-functions.php:62 -msgid "Attachments" -msgstr "Vedlegg" - -#: includes/acf-wp-functions.php:57 -#: includes/admin/post-types/admin-post-types.php:137 -#: includes/admin/post-types/admin-taxonomies.php:112 -#: includes/admin/tools/class-acf-admin-tool-import.php:93 -#: includes/admin/views/acf-post-type/basic-settings.php:86 -#: includes/post-types/class-acf-taxonomy.php:90 -#: includes/post-types/class-acf-taxonomy.php:91 -msgid "Taxonomies" -msgstr "Taksonomier" - -#: includes/acf-wp-functions.php:44 -#: includes/admin/post-types/admin-post-type.php:126 -#: includes/admin/post-types/admin-post-types.php:139 -#: includes/admin/views/acf-post-type/advanced-settings.php:106 -#: assets/build/js/acf-internal-post-type.js:173 -#: assets/build/js/acf-internal-post-type.js:247 -msgid "Posts" -msgstr "Innlegg" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:76 -msgid "Last updated: %s" -msgstr "Sist oppdatert: %s" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:70 -msgid "Sorry, this post is unavailable for diff comparison." -msgstr "" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:42 -msgid "Invalid field group parameter(s)." -msgstr "Ugyldige parametere for feltgruppe." - -#: includes/admin/admin-internal-post-type-list.php:413 -msgid "Awaiting save" -msgstr "Venter på lagring" - -#: includes/admin/admin-internal-post-type-list.php:410 -msgid "Saved" -msgstr "Lagret" - -#: includes/admin/admin-internal-post-type-list.php:406 -#: includes/admin/tools/class-acf-admin-tool-import.php:49 -msgid "Import" -msgstr "Importer" - -#: includes/admin/admin-internal-post-type-list.php:402 -msgid "Review changes" -msgstr "Gjennomgå endringer" - -#: includes/admin/admin-internal-post-type-list.php:378 -msgid "Located in: %s" -msgstr "Plassert i: %s" - -#: includes/admin/admin-internal-post-type-list.php:375 -msgid "Located in plugin: %s" -msgstr "Plassert i utvidelse: %s" - -#: includes/admin/admin-internal-post-type-list.php:372 -msgid "Located in theme: %s" -msgstr "Plassert i tema: %s" - -#: includes/admin/post-types/admin-field-groups.php:261 -msgid "Various" -msgstr "Forskjellig" - -#: includes/admin/admin-internal-post-type-list.php:216 -#: includes/admin/admin-internal-post-type-list.php:485 -msgid "Sync changes" -msgstr "Synkroniseringsendringer" - -#: includes/admin/admin-internal-post-type-list.php:215 -msgid "Loading diff" -msgstr "Laster diff" - -#: includes/admin/admin-internal-post-type-list.php:214 -msgid "Review local JSON changes" -msgstr "Se over lokale endinger for JSON" - -#: includes/admin/admin.php:170 -msgid "Visit website" -msgstr "Besøk nettsted" - -#: includes/admin/admin.php:169 -msgid "View details" -msgstr "Vis detaljer" - -#: includes/admin/admin.php:168 -msgid "Version %s" -msgstr "Versjon %s" - -#: includes/admin/admin.php:167 -msgid "Information" -msgstr "Informasjon" - -#: includes/admin/admin.php:158 -msgid "" -"Help Desk. The support professionals on " -"our Help Desk will assist with your more in depth, technical challenges." -msgstr "" - -#: includes/admin/admin.php:154 -msgid "" -"Discussions. We have an active and " -"friendly community on our Community Forums who may be able to help you " -"figure out the 'how-tos' of the ACF world." -msgstr "" - -#: includes/admin/admin.php:150 -msgid "" -"Documentation. Our extensive " -"documentation contains references and guides for most situations you may " -"encounter." -msgstr "" - -#: includes/admin/admin.php:147 -msgid "" -"We are fanatical about support, and want you to get the best out of your " -"website with ACF. If you run into any difficulties, there are several places " -"you can find help:" -msgstr "" - -#: includes/admin/admin.php:144 includes/admin/admin.php:146 -msgid "Help & Support" -msgstr "Hjelp og brukerstøtte" - -#: includes/admin/admin.php:135 -msgid "" -"Please use the Help & Support tab to get in touch should you find yourself " -"requiring assistance." -msgstr "" - -#: includes/admin/admin.php:132 -msgid "" -"Before creating your first Field Group, we recommend first reading our Getting started guide to familiarize " -"yourself with the plugin's philosophy and best practises." -msgstr "" - -#: includes/admin/admin.php:130 -msgid "" -"The Advanced Custom Fields plugin provides a visual form builder to " -"customize WordPress edit screens with extra fields, and an intuitive API to " -"display custom field values in any theme template file." -msgstr "" - -#: includes/admin/admin.php:127 includes/admin/admin.php:129 -msgid "Overview" -msgstr "Oversikt" - -#: includes/locations.php:36 -msgid "Location type \"%s\" is already registered." -msgstr "Lokasjonstypen \"%s\" er allerede registrert." - -#: includes/locations.php:25 -msgid "Class \"%s\" does not exist." -msgstr "Klassen \"%s\" finnes ikke." - -#: includes/ajax/class-acf-ajax.php:157 -msgid "Invalid nonce." -msgstr "Ugyldig engangskode." - -#: includes/fields/class-acf-field-user.php:375 -msgid "Error loading field." -msgstr "Feil ved lasting av felt." - -#: assets/build/js/acf-input.js:2750 assets/build/js/acf-input.js:2819 -#: assets/build/js/acf-input.js:2926 assets/build/js/acf-input.js:3000 -msgid "Location not found: %s" -msgstr "Posisjon ikke funnet: %s" - -#: includes/forms/form-user.php:353 -msgid "Error: %s" -msgstr "Feil: %s" - -#: includes/locations/class-acf-location-widget.php:22 -msgid "Widget" -msgstr "Widget" - -#: includes/locations/class-acf-location-user-role.php:24 -msgid "User Role" -msgstr "Brukerrolle" - -#: includes/locations/class-acf-location-comment.php:22 -msgid "Comment" -msgstr "Kommentar" - -#: includes/locations/class-acf-location-post-format.php:22 -msgid "Post Format" -msgstr "Innleggsformat" - -#: includes/locations/class-acf-location-nav-menu-item.php:22 -msgid "Menu Item" -msgstr "Menypunkt" - -#: includes/locations/class-acf-location-post-status.php:22 -msgid "Post Status" -msgstr "Innleggsstatus" - -#: includes/acf-wp-functions.php:74 -#: includes/locations/class-acf-location-nav-menu.php:89 -msgid "Menus" -msgstr "Menyer" - -#: includes/locations/class-acf-location-nav-menu.php:80 -msgid "Menu Locations" -msgstr "Menylokasjoner" - -#: includes/locations/class-acf-location-nav-menu.php:22 -msgid "Menu" -msgstr "Meny" - -#: includes/locations/class-acf-location-post-taxonomy.php:22 -msgid "Post Taxonomy" -msgstr "Innleggs Taksanomi" - -#: includes/locations/class-acf-location-page-type.php:114 -msgid "Child Page (has parent)" -msgstr "Underside (har forelder)" - -#: includes/locations/class-acf-location-page-type.php:113 -msgid "Parent Page (has children)" -msgstr "Forelderside (har undersider)" - -#: includes/locations/class-acf-location-page-type.php:112 -msgid "Top Level Page (no parent)" -msgstr "Toppnivåside (ingen forelder)" - -#: includes/locations/class-acf-location-page-type.php:111 -msgid "Posts Page" -msgstr "Innleggsside" - -#: includes/locations/class-acf-location-page-type.php:110 -msgid "Front Page" -msgstr "Forside" - -#: includes/locations/class-acf-location-page-type.php:22 -msgid "Page Type" -msgstr "Sidetype" - -#: includes/locations/class-acf-location-current-user.php:73 -msgid "Viewing back end" -msgstr "Viser baksiden" - -#: includes/locations/class-acf-location-current-user.php:72 -msgid "Viewing front end" -msgstr "Viser fremsiden" - -#: includes/locations/class-acf-location-current-user.php:71 -msgid "Logged in" -msgstr "Innlogget" - -#: includes/locations/class-acf-location-current-user.php:22 -msgid "Current User" -msgstr "Nåværende Bruker" - -#: includes/locations/class-acf-location-page-template.php:22 -msgid "Page Template" -msgstr "Sidemal" - -#: includes/locations/class-acf-location-user-form.php:74 -msgid "Register" -msgstr "Registrer" - -#: includes/locations/class-acf-location-user-form.php:73 -msgid "Add / Edit" -msgstr "Legg til / Endre" - -#: includes/locations/class-acf-location-user-form.php:22 -msgid "User Form" -msgstr "Brukerskjema" - -#: includes/locations/class-acf-location-page-parent.php:22 -msgid "Page Parent" -msgstr "Sideforelder" - -#: includes/locations/class-acf-location-current-user-role.php:77 -msgid "Super Admin" -msgstr "Superadmin" - -#: includes/locations/class-acf-location-current-user-role.php:22 -msgid "Current User Role" -msgstr "Nåværende Brukerrolle" - -#: includes/locations/class-acf-location-page-template.php:73 -#: includes/locations/class-acf-location-post-template.php:85 -msgid "Default Template" -msgstr "Standardmal" - -#: includes/locations/class-acf-location-post-template.php:22 -msgid "Post Template" -msgstr "Innleggsmal" - -#: includes/locations/class-acf-location-post-category.php:22 -msgid "Post Category" -msgstr "Innleggskategori" - -#: includes/locations/class-acf-location-attachment.php:84 -msgid "All %s formats" -msgstr "Alle %s-formater" - -#: includes/locations/class-acf-location-attachment.php:22 -msgid "Attachment" -msgstr "Vedlegg" - -#: includes/validation.php:366 -msgid "%s value is required" -msgstr "%s verdi er påkrevd" - -#: includes/admin/views/acf-field-group/conditional-logic.php:59 -msgid "Show this field if" -msgstr "Vis dette feltet hvis" - -#: includes/admin/views/acf-field-group/conditional-logic.php:26 -#: includes/admin/views/acf-field-group/field.php:109 includes/fields.php:411 -msgid "Conditional Logic" -msgstr "Betinget logikk" - -#: includes/admin/views/acf-field-group/conditional-logic.php:156 -#: includes/admin/views/acf-field-group/location-rule.php:92 -msgid "and" -msgstr "og" - -#: includes/admin/post-types/admin-field-groups.php:123 -#: includes/admin/post-types/admin-post-types.php:143 -#: includes/admin/post-types/admin-taxonomies.php:143 -msgid "Local JSON" -msgstr "Lokal JSON" - -#: includes/admin/views/acf-field-group/pro-features.php:46 -msgid "Clone Field" -msgstr "Klonefelt" - -#: includes/admin/views/upgrade/notice.php:30 -msgid "" -"Please also check all premium add-ons (%s) are updated to the latest version." -msgstr "" -"Vennligst sjekk at alle premium-tillegg (%s) er oppdatert til siste versjon." - -#: includes/admin/views/upgrade/notice.php:28 -msgid "" -"This version contains improvements to your database and requires an upgrade." -msgstr "" -"Denne versjonen inneholder forbedringer til din database, og krever en " -"oppgradering." - -#: includes/admin/views/upgrade/notice.php:28 -msgid "Thank you for updating to %1$s v%2$s!" -msgstr "Takk for at du oppgraderer til %1$s v%2$s!" - -#: includes/admin/views/upgrade/notice.php:27 -msgid "Database Upgrade Required" -msgstr "Oppdatering av database er påkrevd" - -#: includes/admin/post-types/admin-field-group.php:141 -#: includes/admin/views/upgrade/notice.php:18 -msgid "Options Page" -msgstr "Side for alternativer" - -#: includes/admin/views/upgrade/notice.php:15 includes/fields.php:462 -msgid "Gallery" -msgstr "Galleri" - -#: includes/admin/views/upgrade/notice.php:12 includes/fields.php:452 -msgid "Flexible Content" -msgstr "Fleksibelt Innhold" - -#: includes/admin/views/upgrade/notice.php:9 includes/fields.php:472 -msgid "Repeater" -msgstr "Gjentaker" - -#: includes/admin/views/tools/tools.php:24 -msgid "Back to all tools" -msgstr "Tilbake til alle verktøy" - -#: includes/admin/views/acf-field-group/options.php:195 -msgid "" -"If multiple field groups appear on an edit screen, the first field group's " -"options will be used (the one with the lowest order number)" -msgstr "" -"Om flere feltgrupper kommer på samme redigeringsskjerm, vil den første " -"gruppens innstillinger bli brukt (den med laveste rekkefølgenummer)" - -#: includes/admin/views/acf-field-group/options.php:195 -msgid "Select items to hide them from the edit screen." -msgstr "Velg elementer for å skjule dem på redigeringsskjermen." - -#: includes/admin/views/acf-field-group/options.php:194 -msgid "Hide on screen" -msgstr "Skjul på skjerm" - -#: includes/admin/views/acf-field-group/options.php:186 -msgid "Send Trackbacks" -msgstr "Send tilbakesporinger" - -#: includes/admin/post-types/admin-taxonomy.php:128 -#: includes/admin/views/acf-field-group/options.php:185 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:159 -#: assets/build/js/acf-internal-post-type.js:180 -#: assets/build/js/acf-internal-post-type.js:254 -msgid "Tags" -msgstr "Stikkord" - -#: includes/admin/post-types/admin-taxonomy.php:130 -#: includes/admin/views/acf-field-group/options.php:184 -#: assets/build/js/acf-internal-post-type.js:183 -#: assets/build/js/acf-internal-post-type.js:257 -msgid "Categories" -msgstr "Kategorier" - -#: includes/admin/views/acf-field-group/options.php:182 -#: includes/admin/views/acf-post-type/advanced-settings.php:28 -msgid "Page Attributes" -msgstr "Sideattributter" - -#: includes/admin/views/acf-field-group/options.php:181 -msgid "Format" -msgstr "Format" - -#: includes/admin/views/acf-field-group/options.php:180 -#: includes/admin/views/acf-post-type/advanced-settings.php:22 -msgid "Author" -msgstr "Forfatter" - -#: includes/admin/views/acf-field-group/options.php:179 -msgid "Slug" -msgstr "Identifikator" - -#: includes/admin/views/acf-field-group/options.php:178 -#: includes/admin/views/acf-post-type/advanced-settings.php:27 -msgid "Revisions" -msgstr "Revisjoner" - -#: includes/acf-wp-functions.php:66 -#: includes/admin/views/acf-field-group/options.php:177 -#: includes/admin/views/acf-post-type/advanced-settings.php:23 -msgid "Comments" -msgstr "Kommentarer" - -#: includes/admin/views/acf-field-group/options.php:176 -msgid "Discussion" -msgstr "Diskusjon" - -#: includes/admin/views/acf-field-group/options.php:174 -#: includes/admin/views/acf-post-type/advanced-settings.php:26 -msgid "Excerpt" -msgstr "Utdrag" - -#: includes/admin/views/acf-field-group/options.php:173 -msgid "Content Editor" -msgstr "Redigeringverktøy for innhold" - -#: includes/admin/views/acf-field-group/options.php:172 -msgid "Permalink" -msgstr "Permalenke" - -#: includes/admin/views/acf-field-group/options.php:250 -msgid "Shown in field group list" -msgstr "Vist i feltgruppeliste" - -#: includes/admin/views/acf-field-group/options.php:157 -msgid "Field groups with a lower order will appear first" -msgstr "Feltgrupper med en lavere rekkefølge vil vises først" - -#: includes/admin/views/acf-field-group/options.php:156 -msgid "Order No." -msgstr "Ordre Nr." - -#: includes/admin/views/acf-field-group/options.php:147 -msgid "Below fields" -msgstr "Under felter" - -#: includes/admin/views/acf-field-group/options.php:146 -msgid "Below labels" -msgstr "Under etiketter" - -#: includes/admin/views/acf-field-group/options.php:139 -msgid "Instruction Placement" -msgstr "" - -#: includes/admin/views/acf-field-group/options.php:122 -msgid "Label Placement" -msgstr "" - -#: includes/admin/views/acf-field-group/options.php:110 -msgid "Side" -msgstr "Sideordnet" - -#: includes/admin/views/acf-field-group/options.php:109 -msgid "Normal (after content)" -msgstr "Normal (etter innhold)" - -#: includes/admin/views/acf-field-group/options.php:108 -msgid "High (after title)" -msgstr "Høy (etter tittel)" - -#: includes/admin/views/acf-field-group/options.php:101 -msgid "Position" -msgstr "Posisjon" - -#: includes/admin/views/acf-field-group/options.php:92 -msgid "Seamless (no metabox)" -msgstr "Sømløs (ingen metaboks)" - -#: includes/admin/views/acf-field-group/options.php:91 -msgid "Standard (WP metabox)" -msgstr "Standard (WP metaboks)" - -#: includes/admin/views/acf-field-group/options.php:84 -msgid "Style" -msgstr "Stil" - -#: includes/admin/views/acf-field-group/fields.php:55 -msgid "Type" -msgstr "Type" - -#: includes/admin/post-types/admin-field-groups.php:117 -#: includes/admin/post-types/admin-post-types.php:136 -#: includes/admin/post-types/admin-taxonomies.php:136 -#: includes/admin/views/acf-field-group/fields.php:54 -msgid "Key" -msgstr "Nøkkel" - -#. translators: Hidden accessibility text for the positional order number of -#. the field. -#: includes/admin/views/acf-field-group/fields.php:48 -msgid "Order" -msgstr "Rekkefølge" - -#: includes/admin/views/acf-field-group/field.php:322 -msgid "Close Field" -msgstr "Stengt felt" - -#: includes/admin/views/acf-field-group/field.php:253 -msgid "id" -msgstr "id" - -#: includes/admin/views/acf-field-group/field.php:237 -msgid "class" -msgstr "klasse" - -#: includes/admin/views/acf-field-group/field.php:279 -msgid "width" -msgstr "bredde" - -#: includes/admin/views/acf-field-group/field.php:273 -msgid "Wrapper Attributes" -msgstr "Attributter for innpakning" - -#: includes/admin/views/acf-field-group/field.php:196 -msgid "Required" -msgstr "Obligatorisk" - -#: includes/admin/views/acf-field-group/field.php:221 -msgid "Instructions for authors. Shown when submitting data" -msgstr "Instruksjoner for forfattere. Vist ved innsending av data" - -#: includes/admin/views/acf-field-group/field.php:220 -msgid "Instructions" -msgstr "Instruksjoner" - -#: includes/admin/views/acf-field-group/field.php:129 -msgid "Field Type" -msgstr "Felttype" - -#: includes/admin/views/acf-field-group/field.php:170 -msgid "Single word, no spaces. Underscores and dashes allowed" -msgstr "Enkelt ord, ingen mellomrom. Understrekning og bindestreker tillatt" - -#: includes/admin/views/acf-field-group/field.php:169 -msgid "Field Name" -msgstr "Feltnavn" - -#: includes/admin/views/acf-field-group/field.php:157 -msgid "This is the name which will appear on the EDIT page" -msgstr "Dette er navnet som vil vises på redigeringssiden" - -#: includes/admin/views/acf-field-group/field.php:156 -#: includes/admin/views/browse-fields-modal.php:59 -msgid "Field Label" -msgstr "Feltetikett" - -#: includes/admin/views/acf-field-group/field.php:81 -msgid "Delete" -msgstr "Slett" - -#: includes/admin/views/acf-field-group/field.php:81 -msgid "Delete field" -msgstr "Slett felt" - -#: includes/admin/views/acf-field-group/field.php:79 -msgid "Move" -msgstr "Flytt" - -#: includes/admin/views/acf-field-group/field.php:79 -msgid "Move field to another group" -msgstr "Flytt felt til annen gruppe" - -#: includes/admin/views/acf-field-group/field.php:77 -msgid "Duplicate field" -msgstr "Dupliser felt" - -#: includes/admin/views/acf-field-group/field.php:73 -#: includes/admin/views/acf-field-group/field.php:76 -msgid "Edit field" -msgstr "Rediger felt" - -#: includes/admin/views/acf-field-group/field.php:69 -msgid "Drag to reorder" -msgstr "Dra for å endre rekkefølge" - -#: includes/admin/post-types/admin-field-group.php:103 -#: includes/admin/views/acf-field-group/location-group.php:3 -#: assets/build/js/acf-field-group.js:2347 -#: assets/build/js/acf-field-group.js:2763 -msgid "Show this field group if" -msgstr "Vis denne feltgruppen hvis" - -#: includes/admin/views/upgrade/upgrade.php:94 -#: includes/ajax/class-acf-ajax-upgrade.php:34 -msgid "No updates available." -msgstr "Ingen oppdateringer tilgjengelig." - -#: includes/admin/views/upgrade/upgrade.php:33 -msgid "Database upgrade complete. See what's new" -msgstr "" -"Oppgradering av database fullført. Se hva som er nytt" - -#: includes/admin/views/upgrade/upgrade.php:30 -msgid "Reading upgrade tasks..." -msgstr "Leser oppgraderingsoppgaver..." - -#: includes/admin/views/upgrade/network.php:165 -#: includes/admin/views/upgrade/upgrade.php:65 -msgid "Upgrade failed." -msgstr "Oppgradering milsyktes." - -#: includes/admin/views/upgrade/network.php:162 -msgid "Upgrade complete." -msgstr "Oppgradering fullført." - -#: includes/admin/views/upgrade/network.php:148 -#: includes/admin/views/upgrade/upgrade.php:31 -msgid "Upgrading data to version %s" -msgstr "Oppgraderer data til versjon %s" - -#: includes/admin/views/upgrade/network.php:121 -#: includes/admin/views/upgrade/notice.php:44 -msgid "" -"It is strongly recommended that you backup your database before proceeding. " -"Are you sure you wish to run the updater now?" -msgstr "" -"Det er sterkt anbefalt at du sikkerhetskopierer databasen før du fortsetter. " -"Er du sikker på at du vil kjøre oppdateringen nå?" - -#: includes/admin/views/upgrade/network.php:117 -msgid "Please select at least one site to upgrade." -msgstr "Vennligst velg minst ett nettsted å oppgradere." - -#: includes/admin/views/upgrade/network.php:97 -msgid "" -"Database Upgrade complete. Return to network dashboard" -msgstr "" -"Databaseoppgradering fullført. Tilbake til kontrollpanelet " -"for nettverket" - -#: includes/admin/views/upgrade/network.php:80 -msgid "Site is up to date" -msgstr "Nettstedet er oppdatert" - -#: includes/admin/views/upgrade/network.php:78 -msgid "Site requires database upgrade from %1$s to %2$s" -msgstr "Nettstedet krever databaseoppgradering fra %1$s til %2$s" - -#: includes/admin/views/upgrade/network.php:36 -#: includes/admin/views/upgrade/network.php:47 -msgid "Site" -msgstr "Nettsted" - -#: includes/admin/views/upgrade/network.php:26 -#: includes/admin/views/upgrade/network.php:27 -#: includes/admin/views/upgrade/network.php:96 -msgid "Upgrade Sites" -msgstr "Oppgrader nettsteder" - -#: includes/admin/views/upgrade/network.php:26 -msgid "" -"The following sites require a DB upgrade. Check the ones you want to update " -"and then click %s." -msgstr "" -"Følgende nettsteder krever en DB-oppgradering. Kryss av for de du ønsker å " -"oppgradere og klikk så %s." - -#: includes/admin/views/acf-field-group/conditional-logic.php:171 -#: includes/admin/views/acf-field-group/locations.php:38 -msgid "Add rule group" -msgstr "Legg til regelgruppe" - -#: includes/admin/views/acf-field-group/locations.php:10 -msgid "" -"Create a set of rules to determine which edit screens will use these " -"advanced custom fields" -msgstr "" -"Lag et sett regler for å bestemme hvilke skjermer som skal bruke disse " -"avanserte egendefinerte feltene" - -#: includes/admin/views/acf-field-group/locations.php:9 -msgid "Rules" -msgstr "Regler" - -#: includes/admin/tools/class-acf-admin-tool-export.php:510 -msgid "Copied" -msgstr "Kopiert" - -#: includes/admin/tools/class-acf-admin-tool-export.php:486 -msgid "Copy to clipboard" -msgstr "Kopier til utklippstavle" - -#: includes/admin/tools/class-acf-admin-tool-export.php:385 -msgid "" -"Select the items you would like to export and then select your export " -"method. Export As JSON to export to a .json file which you can then import " -"to another ACF installation. Generate PHP to export to PHP code which you " -"can place in your theme." -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:233 -msgid "Select Field Groups" -msgstr "Velg feltgrupper" - -#: includes/admin/tools/class-acf-admin-tool-export.php:96 -#: includes/admin/tools/class-acf-admin-tool-export.php:131 -msgid "No field groups selected" -msgstr "Ingen feltgrupper valgt" - -#: includes/admin/tools/class-acf-admin-tool-export.php:39 -#: includes/admin/tools/class-acf-admin-tool-export.php:393 -#: includes/admin/tools/class-acf-admin-tool-export.php:421 -msgid "Generate PHP" -msgstr "Generer PHP" - -#: includes/admin/tools/class-acf-admin-tool-export.php:35 -msgid "Export Field Groups" -msgstr "Eksporter feltgrupper" - -#: includes/admin/tools/class-acf-admin-tool-import.php:177 -msgid "Import file empty" -msgstr "Importfil tom" - -#: includes/admin/tools/class-acf-admin-tool-import.php:168 -msgid "Incorrect file type" -msgstr "Feil filtype" - -#: includes/admin/tools/class-acf-admin-tool-import.php:163 -msgid "Error uploading file. Please try again" -msgstr "Filopplastingsfeil. Vennligst forsøk på nytt" - -#: includes/admin/tools/class-acf-admin-tool-import.php:50 -msgid "" -"Select the Advanced Custom Fields JSON file you would like to import. When " -"you click the import button below, ACF will import the items in that file." -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:27 -msgid "Import Field Groups" -msgstr "Importer feltgrupper" - -#: includes/admin/admin-internal-post-type-list.php:401 -msgid "Sync" -msgstr "Synk" - -#: includes/admin/admin-internal-post-type-list.php:858 -msgid "Select %s" -msgstr "Velg %s" - -#: includes/admin/admin-internal-post-type-list.php:442 -#: includes/admin/admin-internal-post-type-list.php:474 -#: includes/admin/views/acf-field-group/field.php:77 -msgid "Duplicate" -msgstr "Dupliser" - -#: includes/admin/admin-internal-post-type-list.php:442 -msgid "Duplicate this item" -msgstr "Dupliser dette elementet" - -#: includes/admin/views/acf-post-type/advanced-settings.php:41 -msgid "Supports" -msgstr "" - -#: includes/admin/admin.php:261 includes/admin/views/browse-fields-modal.php:92 -msgid "Documentation" -msgstr "Dokumentasjon" - -#: includes/admin/post-types/admin-field-groups.php:116 -#: includes/admin/post-types/admin-post-types.php:135 -#: includes/admin/post-types/admin-taxonomies.php:135 -#: includes/admin/views/acf-field-group/options.php:249 -#: includes/admin/views/acf-post-type/advanced-settings.php:62 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:114 -#: includes/admin/views/upgrade/network.php:38 -#: includes/admin/views/upgrade/network.php:49 -msgid "Description" -msgstr "Beskrivelse" - -#: includes/admin/admin-internal-post-type-list.php:398 -#: includes/admin/admin-internal-post-type-list.php:747 -msgid "Sync available" -msgstr "Synk tilgjengelig" - -#. translators: %s number of field groups synchronized -#: includes/admin/post-types/admin-field-groups.php:381 -msgid "Field group synchronized." -msgid_plural "%s field groups synchronized." -msgstr[0] "" -msgstr[1] "" - -#. translators: %s number of field groups duplicated -#: includes/admin/post-types/admin-field-groups.php:374 -msgid "Field group duplicated." -msgid_plural "%s field groups duplicated." -msgstr[0] "Feltgruppe duplisert" -msgstr[1] "%s feltgrupper duplisert." - -#: includes/admin/admin-internal-post-type-list.php:137 -msgid "Active (%s)" -msgid_plural "Active (%s)" -msgstr[0] "Aktiv (%s)" -msgstr[1] "Aktive(%s)" - -#: includes/admin/admin-upgrade.php:254 -msgid "Review sites & upgrade" -msgstr "Gjennomgå nettsteder og oppgrader" - -#: includes/admin/admin-upgrade.php:59 includes/admin/admin-upgrade.php:93 -#: includes/admin/admin-upgrade.php:94 includes/admin/admin-upgrade.php:230 -#: includes/admin/views/upgrade/network.php:24 -#: includes/admin/views/upgrade/upgrade.php:26 -msgid "Upgrade Database" -msgstr "Oppgrader database" - -#: includes/admin/views/acf-field-group/options.php:175 -#: includes/admin/views/acf-post-type/advanced-settings.php:30 -msgid "Custom Fields" -msgstr "Egendefinerte felt" - -#: includes/admin/post-types/admin-field-group.php:616 -msgid "Move Field" -msgstr "Flytt felt" - -#: includes/admin/post-types/admin-field-group.php:605 -#: includes/admin/post-types/admin-field-group.php:609 -msgid "Please select the destination for this field" -msgstr "Vennligst velg destinasjon for dette feltet" - -#. translators: Confirmation message once a field has been moved to a different -#. field group. -#: includes/admin/post-types/admin-field-group.php:567 -msgid "The %1$s field can now be found in the %2$s field group" -msgstr "%1$s feltet kan nå bli funnet i feltgruppen %2$s" - -#: includes/admin/post-types/admin-field-group.php:564 -msgid "Move Complete." -msgstr "Flytting fullført." - -#: includes/admin/views/acf-field-group/field.php:39 -#: includes/admin/views/acf-field-group/options.php:217 -#: includes/admin/views/acf-post-type/advanced-settings.php:78 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:130 -msgid "Active" -msgstr "Aktiv" - -#: includes/admin/post-types/admin-field-group.php:266 -msgid "Field Keys" -msgstr "Feltnøkler" - -#: includes/admin/post-types/admin-field-group.php:164 -#: includes/admin/tools/class-acf-admin-tool-export.php:342 -msgid "Settings" -msgstr "Innstillinger" - -#: includes/admin/post-types/admin-field-groups.php:118 -msgid "Location" -msgstr "Plassering" - -#: includes/admin/post-types/admin-field-group.php:104 -#: assets/build/js/acf-input.js:983 assets/build/js/acf-input.js:1075 -msgid "Null" -msgstr "Null" - -#: includes/admin/post-types/admin-field-group.php:101 -#: includes/class-acf-internal-post-type.php:730 -#: includes/post-types/class-acf-field-group.php:345 -#: assets/build/js/acf-field-group.js:1510 -#: assets/build/js/acf-field-group.js:1821 -msgid "copy" -msgstr "kopi" - -#: includes/admin/post-types/admin-field-group.php:100 -#: assets/build/js/acf-field-group.js:623 -#: assets/build/js/acf-field-group.js:778 -msgid "(this field)" -msgstr "(dette feltet)" - -#: includes/admin/post-types/admin-field-group.php:98 -#: assets/build/js/acf-input.js:918 assets/build/js/acf-input.js:943 -#: assets/build/js/acf-input.js:1002 assets/build/js/acf-input.js:1030 -msgid "Checked" -msgstr "Avkrysset" - -#: includes/admin/post-types/admin-field-group.php:94 -#: assets/build/js/acf-field-group.js:1615 -#: assets/build/js/acf-field-group.js:1933 -msgid "Move Custom Field" -msgstr "Flytt egendefinert felt" - -#: includes/admin/post-types/admin-field-group.php:93 -#: assets/build/js/acf-field-group.js:649 -#: assets/build/js/acf-field-group.js:804 -msgid "No toggle fields available" -msgstr "Ingen vekslefelt er tilgjengelige" - -#: includes/admin/post-types/admin-field-group.php:91 -msgid "Field group title is required" -msgstr "Feltgruppetittel er obligatorisk" - -#: includes/admin/post-types/admin-field-group.php:90 -#: assets/build/js/acf-field-group.js:1604 -#: assets/build/js/acf-field-group.js:1919 -msgid "This field cannot be moved until its changes have been saved" -msgstr "Dette feltet kan ikke flyttes før endringene har blitt lagret" - -#: includes/admin/post-types/admin-field-group.php:89 -#: assets/build/js/acf-field-group.js:1414 -#: assets/build/js/acf-field-group.js:1716 -msgid "The string \"field_\" may not be used at the start of a field name" -msgstr "Strengen \"field_\" kan ikke brukes i starten på et feltnavn" - -#: includes/admin/post-types/admin-field-group.php:71 -msgid "Field group draft updated." -msgstr "Kladd for feltgruppe oppdatert." - -#: includes/admin/post-types/admin-field-group.php:70 -msgid "Field group scheduled for." -msgstr "Feltgruppe planlagt til." - -#: includes/admin/post-types/admin-field-group.php:69 -msgid "Field group submitted." -msgstr "Feltgruppe innsendt." - -#: includes/admin/post-types/admin-field-group.php:68 -msgid "Field group saved." -msgstr "Feltgruppe lagret" - -#: includes/admin/post-types/admin-field-group.php:67 -msgid "Field group published." -msgstr "Feltgruppe publisert." - -#: includes/admin/post-types/admin-field-group.php:64 -msgid "Field group deleted." -msgstr "Feltgruppe slettet." - -#: includes/admin/post-types/admin-field-group.php:62 -#: includes/admin/post-types/admin-field-group.php:63 -#: includes/admin/post-types/admin-field-group.php:65 -msgid "Field group updated." -msgstr "Feltgruppe oppdatert." - -#: includes/admin/admin-tools.php:118 -#: includes/admin/views/global/navigation.php:246 -#: includes/admin/views/tools/tools.php:21 -msgid "Tools" -msgstr "Verktøy" - -#: includes/locations/abstract-acf-location.php:106 -msgid "is not equal to" -msgstr "er ikke lik til" - -#: includes/locations/abstract-acf-location.php:105 -msgid "is equal to" -msgstr "er lik" - -#: includes/locations.php:102 -msgid "Forms" -msgstr "Skjema" - -#: includes/admin/post-types/admin-post-type.php:127 includes/locations.php:100 -#: includes/locations/class-acf-location-page.php:22 -#: assets/build/js/acf-internal-post-type.js:175 -#: assets/build/js/acf-internal-post-type.js:249 -msgid "Page" -msgstr "Side" - -#: includes/admin/post-types/admin-post-type.php:125 includes/locations.php:99 -#: includes/locations/class-acf-location-post.php:22 -#: assets/build/js/acf-internal-post-type.js:172 -#: assets/build/js/acf-internal-post-type.js:246 -msgid "Post" -msgstr "Innlegg" - -#: includes/fields.php:354 -msgid "Relational" -msgstr "Relasjonell" - -#: includes/fields.php:353 -msgid "Choice" -msgstr "Valg" - -#: includes/fields.php:351 -msgid "Basic" -msgstr "Grunnleggende" - -#: includes/fields.php:320 -msgid "Unknown" -msgstr "Ukjent" - -#: includes/fields.php:320 -msgid "Field type does not exist" -msgstr "Felttype eksisterer ikke" - -#: includes/forms/form-front.php:236 -msgid "Spam Detected" -msgstr "Spam oppdaget" - -#: includes/forms/form-front.php:107 -msgid "Post updated" -msgstr "Innlegg oppdatert" - -#: includes/forms/form-front.php:106 -msgid "Update" -msgstr "Oppdater" - -#: includes/forms/form-front.php:57 -msgid "Validate Email" -msgstr "Valider e-post" - -#: includes/fields.php:352 includes/forms/form-front.php:49 -msgid "Content" -msgstr "Innhold" - -#: includes/admin/views/acf-post-type/advanced-settings.php:21 -#: includes/forms/form-front.php:40 -msgid "Title" -msgstr "Tittel" - -#: includes/assets.php:372 includes/forms/form-comment.php:160 -#: assets/build/js/acf-input.js:7382 assets/build/js/acf-input.js:7968 -msgid "Edit field group" -msgstr "Rediger feltgruppe" - -#: includes/admin/post-types/admin-field-group.php:117 -#: assets/build/js/acf-input.js:1125 assets/build/js/acf-input.js:1230 -msgid "Selection is less than" -msgstr "Valget er mindre enn" - -#: includes/admin/post-types/admin-field-group.php:116 -#: assets/build/js/acf-input.js:1106 assets/build/js/acf-input.js:1202 -msgid "Selection is greater than" -msgstr "Valget er større enn" - -#: includes/admin/post-types/admin-field-group.php:115 -#: assets/build/js/acf-input.js:1075 assets/build/js/acf-input.js:1170 -msgid "Value is less than" -msgstr "Verdi er mindre enn" - -#: includes/admin/post-types/admin-field-group.php:114 -#: assets/build/js/acf-input.js:1045 assets/build/js/acf-input.js:1139 -msgid "Value is greater than" -msgstr "Verdi er større enn" - -#: includes/admin/post-types/admin-field-group.php:113 -#: assets/build/js/acf-input.js:888 assets/build/js/acf-input.js:960 -msgid "Value contains" -msgstr "Verdi inneholder" - -#: includes/admin/post-types/admin-field-group.php:112 -#: assets/build/js/acf-input.js:862 assets/build/js/acf-input.js:926 -msgid "Value matches pattern" -msgstr "Verdi passer til mønster" - -#: includes/admin/post-types/admin-field-group.php:111 -#: assets/build/js/acf-input.js:840 assets/build/js/acf-input.js:1023 -#: assets/build/js/acf-input.js:903 assets/build/js/acf-input.js:1116 -msgid "Value is not equal to" -msgstr "Verdi er ikke lik " - -#: includes/admin/post-types/admin-field-group.php:110 -#: assets/build/js/acf-input.js:810 assets/build/js/acf-input.js:964 -#: assets/build/js/acf-input.js:864 assets/build/js/acf-input.js:1053 -msgid "Value is equal to" -msgstr "Verdi er lik" - -#: includes/admin/post-types/admin-field-group.php:109 -#: assets/build/js/acf-input.js:788 assets/build/js/acf-input.js:841 -msgid "Has no value" -msgstr "Har ingen verdi" - -#: includes/admin/post-types/admin-field-group.php:108 -#: assets/build/js/acf-input.js:758 assets/build/js/acf-input.js:783 -msgid "Has any value" -msgstr "Har en verdi" - -#: includes/admin/admin-internal-post-type.php:345 -#: includes/admin/views/browse-fields-modal.php:62 includes/assets.php:353 -#: assets/build/js/acf.js:1564 assets/build/js/acf.js:1658 -msgid "Cancel" -msgstr "Avbryt" - -#: includes/assets.php:349 assets/build/js/acf.js:1738 -#: assets/build/js/acf.js:1855 -msgid "Are you sure?" -msgstr "Er du sikker?" - -#: includes/assets.php:369 assets/build/js/acf-input.js:9442 -#: assets/build/js/acf-input.js:10294 -msgid "%d fields require attention" -msgstr "%d felt krever oppmerksomhet" - -#: includes/assets.php:368 assets/build/js/acf-input.js:9440 -#: assets/build/js/acf-input.js:10290 -msgid "1 field requires attention" -msgstr "1 felt krever oppmerksomhet" - -#: includes/assets.php:367 includes/validation.php:288 -#: includes/validation.php:298 assets/build/js/acf-input.js:9435 -#: assets/build/js/acf-input.js:10285 -msgid "Validation failed" -msgstr "Validering feilet" - -#: includes/assets.php:366 assets/build/js/acf-input.js:9603 -#: assets/build/js/acf-input.js:10473 -msgid "Validation successful" -msgstr "Validering vellykket" - -#: includes/media.php:54 assets/build/js/acf-input.js:7210 -#: assets/build/js/acf-input.js:7772 -msgid "Restricted" -msgstr "Begrenset" - -#: includes/media.php:53 assets/build/js/acf-input.js:7025 -#: assets/build/js/acf-input.js:7536 -msgid "Collapse Details" -msgstr "Trekk sammen detaljer" - -#: includes/media.php:52 assets/build/js/acf-input.js:7025 -#: assets/build/js/acf-input.js:7533 -msgid "Expand Details" -msgstr "Utvid detaljer" - -#: includes/admin/views/acf-post-type/advanced-settings.php:465 -#: includes/media.php:51 assets/build/js/acf-input.js:6892 -#: assets/build/js/acf-input.js:7381 -msgid "Uploaded to this post" -msgstr "Lastet opp til dette innlegget" - -#: includes/media.php:50 assets/build/js/acf-input.js:6931 -#: assets/build/js/acf-input.js:7420 -msgctxt "verb" -msgid "Update" -msgstr "Oppdater" - -#: includes/media.php:49 -msgctxt "verb" -msgid "Edit" -msgstr "Rediger" - -#: includes/assets.php:363 assets/build/js/acf-input.js:9212 -#: assets/build/js/acf-input.js:10056 -msgid "The changes you made will be lost if you navigate away from this page" -msgstr "" -"Endringene du har gjort vil gå tapt om du navigerer bort fra denne siden." - -#: includes/api/api-helpers.php:3395 -msgid "File type must be %s." -msgstr "Filtype må være %s." - -#: includes/admin/post-types/admin-field-group.php:102 -#: includes/admin/views/acf-field-group/conditional-logic.php:59 -#: includes/admin/views/acf-field-group/conditional-logic.php:169 -#: includes/admin/views/acf-field-group/location-group.php:3 -#: includes/admin/views/acf-field-group/locations.php:36 -#: includes/api/api-helpers.php:3391 assets/build/js/acf-field-group.js:771 -#: assets/build/js/acf-field-group.js:2385 -#: assets/build/js/acf-field-group.js:933 -#: assets/build/js/acf-field-group.js:2807 -msgid "or" -msgstr "eller" - -#: includes/api/api-helpers.php:3364 -msgid "File size must not exceed %s." -msgstr "Filstørrelsen må ikke overstige %s." - -#: includes/api/api-helpers.php:3359 -msgid "File size must be at least %s." -msgstr "Filstørrelse må minst være %s." - -#: includes/api/api-helpers.php:3344 -msgid "Image height must not exceed %dpx." -msgstr "Bildehøyde må ikke overstige %dpx." - -#: includes/api/api-helpers.php:3339 -msgid "Image height must be at least %dpx." -msgstr "Bildehøyde må være minst %dpx." - -#: includes/api/api-helpers.php:3325 -msgid "Image width must not exceed %dpx." -msgstr "Bildebredde må ikke overstige %dpx." - -#: includes/api/api-helpers.php:3320 -msgid "Image width must be at least %dpx." -msgstr "Bildebredde må være minst %dpx." - -#: includes/api/api-helpers.php:1561 includes/api/api-term.php:147 -msgid "(no title)" -msgstr "(ingen tittel)" - -#: includes/api/api-helpers.php:853 -msgid "Full Size" -msgstr "Full størrelse" - -#: includes/api/api-helpers.php:812 -msgid "Large" -msgstr "Stor" - -#: includes/api/api-helpers.php:811 -msgid "Medium" -msgstr "Middels" - -#: includes/api/api-helpers.php:810 -msgid "Thumbnail" -msgstr "Miniatyrbilde" - -#: includes/acf-field-functions.php:854 -#: includes/admin/post-types/admin-field-group.php:99 -#: assets/build/js/acf-field-group.js:1077 -#: assets/build/js/acf-field-group.js:1260 -msgid "(no label)" -msgstr "(ingen etikett)" - -#: includes/fields/class-acf-field-textarea.php:145 -msgid "Sets the textarea height" -msgstr "Setter høyde på tekstområde" - -#: includes/fields/class-acf-field-textarea.php:144 -msgid "Rows" -msgstr "Rader" - -#: includes/fields/class-acf-field-textarea.php:25 -msgid "Text Area" -msgstr "Tekstområde" - -#: includes/fields/class-acf-field-checkbox.php:451 -msgid "Prepend an extra checkbox to toggle all choices" -msgstr "Legg en ekstra avkryssningsboks foran for å veksle alle valg " - -#: includes/fields/class-acf-field-checkbox.php:413 -msgid "Save 'custom' values to the field's choices" -msgstr "Lagre \"egendefinerte\" verdier til feltvalg" - -#: includes/fields/class-acf-field-checkbox.php:402 -msgid "Allow 'custom' values to be added" -msgstr "Tillat 'egendefinerte' verdier til å bli lagt til" - -#: includes/fields/class-acf-field-checkbox.php:38 -msgid "Add new choice" -msgstr "Legg til nytt valg" - -#: includes/fields/class-acf-field-checkbox.php:174 -msgid "Toggle All" -msgstr "Veksle alle" - -#: includes/fields/class-acf-field-page_link.php:506 -msgid "Allow Archives URLs" -msgstr "Tillat arkiv-URLer" - -#: includes/fields/class-acf-field-page_link.php:179 -msgid "Archives" -msgstr "Arkiv" - -#: includes/fields/class-acf-field-page_link.php:25 -msgid "Page Link" -msgstr "Sidelenke" - -#: includes/fields/class-acf-field-taxonomy.php:943 -#: includes/locations/class-acf-location-user-form.php:72 -msgid "Add" -msgstr "Legg til " - -#: includes/admin/views/acf-field-group/fields.php:53 -#: includes/fields/class-acf-field-taxonomy.php:908 -msgid "Name" -msgstr "Navn" - -#: includes/fields/class-acf-field-taxonomy.php:892 -msgid "%s added" -msgstr "%s lagt til" - -#: includes/fields/class-acf-field-taxonomy.php:856 -msgid "%s already exists" -msgstr "%s finnes allerede" - -#: includes/fields/class-acf-field-taxonomy.php:844 -msgid "User unable to add new %s" -msgstr "Bruker kan ikke legge til ny %s" - -#: includes/fields/class-acf-field-taxonomy.php:742 -msgid "Term ID" -msgstr "Term-ID" - -#: includes/fields/class-acf-field-taxonomy.php:741 -msgid "Term Object" -msgstr "Term-objekt" - -#: includes/fields/class-acf-field-taxonomy.php:726 -msgid "Load value from posts terms" -msgstr "Last verdi fra innleggstermer" - -#: includes/fields/class-acf-field-taxonomy.php:725 -msgid "Load Terms" -msgstr "Last termer" - -#: includes/fields/class-acf-field-taxonomy.php:715 -msgid "Connect selected terms to the post" -msgstr "Koble valgte termer til innlegget" - -#: includes/fields/class-acf-field-taxonomy.php:714 -msgid "Save Terms" -msgstr "Lagre termer" - -#: includes/fields/class-acf-field-taxonomy.php:704 -msgid "Allow new terms to be created whilst editing" -msgstr "Tillat at nye termer legges til ved redigering" - -#: includes/fields/class-acf-field-taxonomy.php:703 -msgid "Create Terms" -msgstr "Lag termer" - -#: includes/fields/class-acf-field-taxonomy.php:762 -msgid "Radio Buttons" -msgstr "Radioknapper" - -#: includes/fields/class-acf-field-taxonomy.php:761 -msgid "Single Value" -msgstr "Enkeltverdi" - -#: includes/fields/class-acf-field-taxonomy.php:759 -msgid "Multi Select" -msgstr "Flervalg" - -#: includes/fields/class-acf-field-checkbox.php:25 -#: includes/fields/class-acf-field-taxonomy.php:758 -msgid "Checkbox" -msgstr "Avkrysningsboks" - -#: includes/fields/class-acf-field-taxonomy.php:757 -msgid "Multiple Values" -msgstr "Flere verdier" - -#: includes/fields/class-acf-field-taxonomy.php:752 -msgid "Select the appearance of this field" -msgstr "Velg visning av dette feltet" - -#: includes/fields/class-acf-field-taxonomy.php:751 -msgid "Appearance" -msgstr "Utseende" - -#: includes/fields/class-acf-field-taxonomy.php:693 -msgid "Select the taxonomy to be displayed" -msgstr "Velg taksonomi som skal vises" - -#: includes/fields/class-acf-field-taxonomy.php:654 -msgctxt "No Terms" -msgid "No %s" -msgstr "Ingen %s" - -#: includes/fields/class-acf-field-number.php:266 -msgid "Value must be equal to or lower than %d" -msgstr "Verdi må være lik eller lavere enn %d" - -#: includes/fields/class-acf-field-number.php:259 -msgid "Value must be equal to or higher than %d" -msgstr "Verdi må være lik eller høyere enn %d" - -#: includes/fields/class-acf-field-number.php:244 -msgid "Value must be a number" -msgstr "Verdi må være et tall" - -#: includes/fields/class-acf-field-number.php:25 -msgid "Number" -msgstr "Tall" - -#: includes/fields/class-acf-field-radio.php:264 -msgid "Save 'other' values to the field's choices" -msgstr "Lagre \"andre\" verdier til feltets valg" - -#: includes/fields/class-acf-field-radio.php:253 -msgid "Add 'other' choice to allow for custom values" -msgstr "Legg \"andre\"-valget for å tillate egendefinerte verdier" - -#: includes/admin/views/global/navigation.php:196 -msgid "Other" -msgstr "Andre" - -#: includes/fields/class-acf-field-radio.php:25 -msgid "Radio Button" -msgstr "Radioknapp" - -#: includes/fields/class-acf-field-accordion.php:107 -msgid "" -"Define an endpoint for the previous accordion to stop. This accordion will " -"not be visible." -msgstr "" -"Definer et endepunkt å stanse for det forrige trekkspillet. Dette " -"trekkspillet vil ikke være synlig." - -#: includes/fields/class-acf-field-accordion.php:96 -msgid "Allow this accordion to open without closing others." -msgstr "Tillat dette trekkspillet å åpne uten å lukke andre." - -#: includes/fields/class-acf-field-accordion.php:95 -msgid "Multi-Expand" -msgstr "" - -#: includes/fields/class-acf-field-accordion.php:85 -msgid "Display this accordion as open on page load." -msgstr "Vis dette trekkspillet som åpent ved sidelastingen." - -#: includes/fields/class-acf-field-accordion.php:84 -msgid "Open" -msgstr "Åpne" - -#: includes/fields/class-acf-field-accordion.php:25 -msgid "Accordion" -msgstr "Trekkspill" - -#: includes/fields/class-acf-field-file.php:267 -#: includes/fields/class-acf-field-file.php:279 -msgid "Restrict which files can be uploaded" -msgstr "Begrens hvilke filer som kan lastes opp" - -#: includes/fields/class-acf-field-file.php:220 -msgid "File ID" -msgstr "Fil-ID" - -#: includes/fields/class-acf-field-file.php:219 -msgid "File URL" -msgstr "URL til fil" - -#: includes/fields/class-acf-field-file.php:218 -msgid "File Array" -msgstr "Filrekke" - -#: includes/fields/class-acf-field-file.php:186 -msgid "Add File" -msgstr "Legg til fil" - -#: includes/admin/tools/class-acf-admin-tool-import.php:156 -#: includes/fields/class-acf-field-file.php:186 -msgid "No file selected" -msgstr "Ingen fil valgt" - -#: includes/fields/class-acf-field-file.php:150 -msgid "File name" -msgstr "Filnavn" - -#: includes/fields/class-acf-field-file.php:63 -#: assets/build/js/acf-input.js:2474 assets/build/js/acf-input.js:2625 -msgid "Update File" -msgstr "Oppdater fil" - -#: includes/fields/class-acf-field-file.php:62 -#: assets/build/js/acf-input.js:2473 assets/build/js/acf-input.js:2624 -msgid "Edit File" -msgstr "Rediger fil" - -#: includes/admin/tools/class-acf-admin-tool-import.php:58 -#: includes/fields/class-acf-field-file.php:61 -#: assets/build/js/acf-input.js:2447 assets/build/js/acf-input.js:2597 -msgid "Select File" -msgstr "Velg fil" - -#: includes/fields/class-acf-field-file.php:25 -msgid "File" -msgstr "Fil" - -#: includes/fields/class-acf-field-password.php:25 -msgid "Password" -msgstr "Passord" - -#: includes/fields/class-acf-field-select.php:392 -msgid "Specify the value returned" -msgstr "Angi returnert verdi" - -#: includes/fields/class-acf-field-select.php:461 -msgid "Use AJAX to lazy load choices?" -msgstr "Bruk ajax for lat lastingsvalg?" - -#: includes/fields/class-acf-field-checkbox.php:362 -#: includes/fields/class-acf-field-select.php:381 -msgid "Enter each default value on a new line" -msgstr "Angi hver standardverdi på en ny linje" - -#: includes/fields/class-acf-field-select.php:252 includes/media.php:48 -#: assets/build/js/acf-input.js:6790 assets/build/js/acf-input.js:7266 -msgctxt "verb" -msgid "Select" -msgstr "Velg" - -#: includes/fields/class-acf-field-select.php:121 -msgctxt "Select2 JS load_fail" -msgid "Loading failed" -msgstr "Innlasting feilet" - -#: includes/fields/class-acf-field-select.php:120 -msgctxt "Select2 JS searching" -msgid "Searching…" -msgstr "Søker…" - -#: includes/fields/class-acf-field-select.php:119 -msgctxt "Select2 JS load_more" -msgid "Loading more results…" -msgstr "Laster flere resultat…" - -#: includes/fields/class-acf-field-select.php:118 -msgctxt "Select2 JS selection_too_long_n" -msgid "You can only select %d items" -msgstr "Du kan kun velge %d elementer" - -#: includes/fields/class-acf-field-select.php:117 -msgctxt "Select2 JS selection_too_long_1" -msgid "You can only select 1 item" -msgstr "Du kan kun velge 1 element" - -#: includes/fields/class-acf-field-select.php:116 -msgctxt "Select2 JS input_too_long_n" -msgid "Please delete %d characters" -msgstr "Vennligst slett %d tegn" - -#: includes/fields/class-acf-field-select.php:115 -msgctxt "Select2 JS input_too_long_1" -msgid "Please delete 1 character" -msgstr "Vennligst slett 1 tegn" - -#: includes/fields/class-acf-field-select.php:114 -msgctxt "Select2 JS input_too_short_n" -msgid "Please enter %d or more characters" -msgstr "Vennligst angi %d eller flere tegn" - -#: includes/fields/class-acf-field-select.php:113 -msgctxt "Select2 JS input_too_short_1" -msgid "Please enter 1 or more characters" -msgstr "Vennligst angi 1 eller flere tegn" - -#: includes/fields/class-acf-field-select.php:112 -msgctxt "Select2 JS matches_0" -msgid "No matches found" -msgstr "Ingen treff funnet" - -#: includes/fields/class-acf-field-select.php:111 -msgctxt "Select2 JS matches_n" -msgid "%d results are available, use up and down arrow keys to navigate." -msgstr "" -"%d resultater er tilgjengelige, bruk opp- og nedpiltaster for å navigere." - -#: includes/fields/class-acf-field-select.php:110 -msgctxt "Select2 JS matches_1" -msgid "One result is available, press enter to select it." -msgstr "Ett resultat er tilgjengelig, trykk enter for å velge det." - -#: includes/fields/class-acf-field-select.php:25 -#: includes/fields/class-acf-field-taxonomy.php:763 -msgctxt "noun" -msgid "Select" -msgstr "Velg" - -#: includes/fields/class-acf-field-user.php:73 -msgid "User ID" -msgstr "Bruker-ID" - -#: includes/fields/class-acf-field-user.php:72 -msgid "User Object" -msgstr "Bruker-objekt" - -#: includes/fields/class-acf-field-user.php:71 -msgid "User Array" -msgstr "Bruker-rekke" - -#: includes/fields/class-acf-field-user.php:59 -msgid "All user roles" -msgstr "Alle brukerroller" - -#: includes/fields/class-acf-field-user.php:51 -msgid "Filter by Role" -msgstr "" - -#: includes/fields/class-acf-field-user.php:15 includes/locations.php:101 -msgid "User" -msgstr "Bruker" - -#: includes/fields/class-acf-field-separator.php:25 -msgid "Separator" -msgstr "Skille" - -#: includes/fields/class-acf-field-color_picker.php:75 -msgid "Select Color" -msgstr "Velg farge" - -#: includes/admin/post-types/admin-post-type.php:129 -#: includes/admin/post-types/admin-taxonomy.php:131 -#: includes/fields/class-acf-field-color_picker.php:73 -#: assets/build/js/acf-internal-post-type.js:72 -#: assets/build/js/acf-internal-post-type.js:86 -msgid "Default" -msgstr "Standard" - -#: includes/admin/views/acf-post-type/advanced-settings.php:89 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:141 -#: includes/fields/class-acf-field-color_picker.php:71 -msgid "Clear" -msgstr "Fjern" - -#: includes/fields/class-acf-field-color_picker.php:25 -msgid "Color Picker" -msgstr "Fargevelger" - -#: includes/fields/class-acf-field-date_time_picker.php:88 -msgctxt "Date Time Picker JS pmTextShort" -msgid "P" -msgstr "P" - -#: includes/fields/class-acf-field-date_time_picker.php:87 -msgctxt "Date Time Picker JS pmText" -msgid "PM" -msgstr "PM" - -#: includes/fields/class-acf-field-date_time_picker.php:84 -msgctxt "Date Time Picker JS amTextShort" -msgid "A" -msgstr "A" - -#: includes/fields/class-acf-field-date_time_picker.php:83 -msgctxt "Date Time Picker JS amText" -msgid "AM" -msgstr "AM" - -#: includes/fields/class-acf-field-date_time_picker.php:81 -msgctxt "Date Time Picker JS selectText" -msgid "Select" -msgstr "Velg" - -#: includes/fields/class-acf-field-date_time_picker.php:80 -msgctxt "Date Time Picker JS closeText" -msgid "Done" -msgstr "Utført" - -#: includes/fields/class-acf-field-date_time_picker.php:79 -msgctxt "Date Time Picker JS currentText" -msgid "Now" -msgstr "Nå" - -#: includes/fields/class-acf-field-date_time_picker.php:78 -msgctxt "Date Time Picker JS timezoneText" -msgid "Time Zone" -msgstr "Tidssone" - -#: includes/fields/class-acf-field-date_time_picker.php:77 -msgctxt "Date Time Picker JS microsecText" -msgid "Microsecond" -msgstr "Mikrosekund" - -#: includes/fields/class-acf-field-date_time_picker.php:76 -msgctxt "Date Time Picker JS millisecText" -msgid "Millisecond" -msgstr "Millisekund" - -#: includes/fields/class-acf-field-date_time_picker.php:75 -msgctxt "Date Time Picker JS secondText" -msgid "Second" -msgstr "Sekund" - -#: includes/fields/class-acf-field-date_time_picker.php:74 -msgctxt "Date Time Picker JS minuteText" -msgid "Minute" -msgstr "Minutt" - -#: includes/fields/class-acf-field-date_time_picker.php:73 -msgctxt "Date Time Picker JS hourText" -msgid "Hour" -msgstr "Time" - -#: includes/fields/class-acf-field-date_time_picker.php:72 -msgctxt "Date Time Picker JS timeText" -msgid "Time" -msgstr "Tid" - -#: includes/fields/class-acf-field-date_time_picker.php:71 -msgctxt "Date Time Picker JS timeOnlyTitle" -msgid "Choose Time" -msgstr "Velg tid" - -#: includes/fields/class-acf-field-date_time_picker.php:25 -msgid "Date Time Picker" -msgstr "Datovelger" - -#: includes/fields/class-acf-field-accordion.php:106 -msgid "Endpoint" -msgstr "Endepunkt" - -#: includes/admin/views/acf-field-group/options.php:130 -#: includes/fields/class-acf-field-tab.php:115 -msgid "Left aligned" -msgstr "Venstrejustert" - -#: includes/admin/views/acf-field-group/options.php:129 -#: includes/fields/class-acf-field-tab.php:114 -msgid "Top aligned" -msgstr "Toppjustert" - -#: includes/fields/class-acf-field-tab.php:110 -msgid "Placement" -msgstr "Plassering" - -#: includes/fields/class-acf-field-tab.php:26 -msgid "Tab" -msgstr "Fane" - -#: includes/fields/class-acf-field-url.php:162 -msgid "Value must be a valid URL" -msgstr "Verdien må være en gyldig URL" - -#: includes/fields/class-acf-field-link.php:177 -msgid "Link URL" -msgstr "Lenke-URL" - -#: includes/fields/class-acf-field-link.php:176 -msgid "Link Array" -msgstr "Lenkerekke" - -#: includes/fields/class-acf-field-link.php:145 -msgid "Opens in a new window/tab" -msgstr "Åpnes i en ny fane" - -#: includes/fields/class-acf-field-link.php:140 -msgid "Select Link" -msgstr "Velg lenke" - -#: includes/fields/class-acf-field-link.php:25 -msgid "Link" -msgstr "Lenke" - -#: includes/fields/class-acf-field-email.php:25 -msgid "Email" -msgstr "E-post" - -#: includes/fields/class-acf-field-number.php:188 -#: includes/fields/class-acf-field-range.php:217 -msgid "Step Size" -msgstr "Trinnstørrelse" - -#: includes/fields/class-acf-field-number.php:158 -#: includes/fields/class-acf-field-range.php:195 -msgid "Maximum Value" -msgstr "Maksimumsverdi" - -#: includes/fields/class-acf-field-number.php:148 -#: includes/fields/class-acf-field-range.php:184 -msgid "Minimum Value" -msgstr "Minimumsverdi" - -#: includes/fields/class-acf-field-range.php:25 -msgid "Range" -msgstr "Område" - -#: includes/fields/class-acf-field-button-group.php:175 -#: includes/fields/class-acf-field-checkbox.php:379 -#: includes/fields/class-acf-field-radio.php:220 -#: includes/fields/class-acf-field-select.php:399 -msgid "Both (Array)" -msgstr "Begge (rekke)" - -#: includes/admin/views/acf-field-group/fields.php:52 -#: includes/fields/class-acf-field-button-group.php:174 -#: includes/fields/class-acf-field-checkbox.php:378 -#: includes/fields/class-acf-field-radio.php:219 -#: includes/fields/class-acf-field-select.php:398 -msgid "Label" -msgstr "Etikett" - -#: includes/fields/class-acf-field-button-group.php:173 -#: includes/fields/class-acf-field-checkbox.php:377 -#: includes/fields/class-acf-field-radio.php:218 -#: includes/fields/class-acf-field-select.php:397 -msgid "Value" -msgstr "Verdi" - -#: includes/fields/class-acf-field-button-group.php:222 -#: includes/fields/class-acf-field-checkbox.php:441 -#: includes/fields/class-acf-field-radio.php:292 -msgid "Vertical" -msgstr "Vertikal" - -#: includes/fields/class-acf-field-button-group.php:221 -#: includes/fields/class-acf-field-checkbox.php:442 -#: includes/fields/class-acf-field-radio.php:293 -msgid "Horizontal" -msgstr "Horisontal" - -#: includes/fields/class-acf-field-button-group.php:148 -#: includes/fields/class-acf-field-checkbox.php:352 -#: includes/fields/class-acf-field-radio.php:193 -#: includes/fields/class-acf-field-select.php:370 -msgid "red : Red" -msgstr "rød : Rød" - -#: includes/fields/class-acf-field-button-group.php:148 -#: includes/fields/class-acf-field-checkbox.php:352 -#: includes/fields/class-acf-field-radio.php:193 -#: includes/fields/class-acf-field-select.php:370 -msgid "For more control, you may specify both a value and label like this:" -msgstr "" -"For mer kontroll, kan du spesifisere både en verdi og en etikett som dette:" - -#: includes/fields/class-acf-field-button-group.php:148 -#: includes/fields/class-acf-field-checkbox.php:352 -#: includes/fields/class-acf-field-radio.php:193 -#: includes/fields/class-acf-field-select.php:370 -msgid "Enter each choice on a new line." -msgstr "Tast inn hvert valg på en ny linje." - -#: includes/fields/class-acf-field-button-group.php:147 -#: includes/fields/class-acf-field-checkbox.php:351 -#: includes/fields/class-acf-field-radio.php:192 -#: includes/fields/class-acf-field-select.php:369 -msgid "Choices" -msgstr "Valg" - -#: includes/fields/class-acf-field-button-group.php:24 -msgid "Button Group" -msgstr "Knappegruppe" - -#: includes/fields/class-acf-field-button-group.php:194 -#: includes/fields/class-acf-field-page_link.php:538 -#: includes/fields/class-acf-field-post_object.php:448 -#: includes/fields/class-acf-field-radio.php:238 -#: includes/fields/class-acf-field-select.php:429 -#: includes/fields/class-acf-field-taxonomy.php:772 -#: includes/fields/class-acf-field-user.php:103 -msgid "Allow Null" -msgstr "" - -#: includes/fields/class-acf-field-page_link.php:263 -#: includes/fields/class-acf-field-post_object.php:257 -#: includes/fields/class-acf-field-taxonomy.php:930 -msgid "Parent" -msgstr "Forelder" - -#: includes/fields/class-acf-field-wysiwyg.php:390 -msgid "TinyMCE will not be initialized until field is clicked" -msgstr "TinyMCE vil ikke bli initialisert før dette feltet er klikket" - -#: includes/fields/class-acf-field-wysiwyg.php:389 -msgid "Delay Initialization" -msgstr "" - -#: includes/fields/class-acf-field-wysiwyg.php:378 -msgid "Show Media Upload Buttons" -msgstr "" - -#: includes/fields/class-acf-field-wysiwyg.php:362 -msgid "Toolbar" -msgstr "Verktøylinje" - -#: includes/fields/class-acf-field-wysiwyg.php:354 -msgid "Text Only" -msgstr "Kun tekst" - -#: includes/fields/class-acf-field-wysiwyg.php:353 -msgid "Visual Only" -msgstr "Kun visuell" - -#: includes/fields/class-acf-field-wysiwyg.php:352 -msgid "Visual & Text" -msgstr "Visuell og tekst" - -#: includes/fields/class-acf-field-wysiwyg.php:347 -msgid "Tabs" -msgstr "Faner" - -#: includes/fields/class-acf-field-wysiwyg.php:285 -msgid "Click to initialize TinyMCE" -msgstr "Klikk for å initialisere TinyMCE" - -#: includes/fields/class-acf-field-wysiwyg.php:279 -msgctxt "Name for the Text editor tab (formerly HTML)" -msgid "Text" -msgstr "Tekst" - -#: includes/fields/class-acf-field-wysiwyg.php:278 -msgid "Visual" -msgstr "Visuell" - -#: includes/fields/class-acf-field-text.php:189 -#: includes/fields/class-acf-field-textarea.php:236 -msgid "Value must not exceed %d characters" -msgstr "Verdi må ikke overstige %d tegn" - -#: includes/fields/class-acf-field-text.php:124 -#: includes/fields/class-acf-field-textarea.php:124 -msgid "Leave blank for no limit" -msgstr "La være tom for ingen begrensning" - -#: includes/fields/class-acf-field-text.php:123 -#: includes/fields/class-acf-field-textarea.php:123 -msgid "Character Limit" -msgstr "Tegnbegrensing" - -#: includes/fields/class-acf-field-email.php:158 -#: includes/fields/class-acf-field-number.php:209 -#: includes/fields/class-acf-field-password.php:105 -#: includes/fields/class-acf-field-range.php:239 -#: includes/fields/class-acf-field-text.php:164 -msgid "Appears after the input" -msgstr "Vises etter input" - -#: includes/fields/class-acf-field-email.php:157 -#: includes/fields/class-acf-field-number.php:208 -#: includes/fields/class-acf-field-password.php:104 -#: includes/fields/class-acf-field-range.php:238 -#: includes/fields/class-acf-field-text.php:163 -msgid "Append" -msgstr "Tilføy" - -#: includes/fields/class-acf-field-email.php:148 -#: includes/fields/class-acf-field-number.php:199 -#: includes/fields/class-acf-field-password.php:95 -#: includes/fields/class-acf-field-range.php:229 -#: includes/fields/class-acf-field-text.php:154 -msgid "Appears before the input" -msgstr "Vises før input" - -#: includes/fields/class-acf-field-email.php:147 -#: includes/fields/class-acf-field-number.php:198 -#: includes/fields/class-acf-field-password.php:94 -#: includes/fields/class-acf-field-range.php:228 -#: includes/fields/class-acf-field-text.php:153 -msgid "Prepend" -msgstr "Legg til foran" - -#: includes/fields/class-acf-field-email.php:138 -#: includes/fields/class-acf-field-number.php:179 -#: includes/fields/class-acf-field-password.php:85 -#: includes/fields/class-acf-field-text.php:144 -#: includes/fields/class-acf-field-textarea.php:156 -#: includes/fields/class-acf-field-url.php:122 -msgid "Appears within the input" -msgstr "Vises innenfor input" - -#: includes/fields/class-acf-field-email.php:137 -#: includes/fields/class-acf-field-number.php:178 -#: includes/fields/class-acf-field-password.php:84 -#: includes/fields/class-acf-field-text.php:143 -#: includes/fields/class-acf-field-textarea.php:155 -#: includes/fields/class-acf-field-url.php:121 -msgid "Placeholder Text" -msgstr "Plassholder-tekst" - -#: includes/fields/class-acf-field-button-group.php:158 -#: includes/fields/class-acf-field-email.php:118 -#: includes/fields/class-acf-field-number.php:129 -#: includes/fields/class-acf-field-radio.php:203 -#: includes/fields/class-acf-field-range.php:165 -#: includes/fields/class-acf-field-text.php:104 -#: includes/fields/class-acf-field-textarea.php:104 -#: includes/fields/class-acf-field-url.php:102 -#: includes/fields/class-acf-field-wysiwyg.php:312 -msgid "Appears when creating a new post" -msgstr "Vises når nytt innlegg lages" - -#: includes/fields/class-acf-field-text.php:25 -msgid "Text" -msgstr "Tekst" - -#: includes/fields/class-acf-field-relationship.php:794 -msgid "%1$s requires at least %2$s selection" -msgid_plural "%1$s requires at least %2$s selections" -msgstr[0] "%1$s krever minst %2$s valgt" -msgstr[1] "%1$s krever minst %2$s valgte" - -#: includes/fields/class-acf-field-post_object.php:417 -#: includes/fields/class-acf-field-relationship.php:644 -msgid "Post ID" -msgstr "Innleggs-ID" - -#: includes/fields/class-acf-field-post_object.php:17 -#: includes/fields/class-acf-field-post_object.php:416 -#: includes/fields/class-acf-field-relationship.php:643 -msgid "Post Object" -msgstr "Innleggsobjekt" - -#: includes/fields/class-acf-field-relationship.php:676 -msgid "Maximum Posts" -msgstr "" - -#: includes/fields/class-acf-field-relationship.php:666 -msgid "Minimum Posts" -msgstr "" - -#: includes/admin/views/acf-field-group/options.php:183 -#: includes/admin/views/acf-post-type/advanced-settings.php:29 -#: includes/fields/class-acf-field-relationship.php:701 -msgid "Featured Image" -msgstr "Fremhevet bilde" - -#: includes/fields/class-acf-field-relationship.php:697 -msgid "Selected elements will be displayed in each result" -msgstr "Valgte elementer vil bli vist for hvert resultat" - -#: includes/fields/class-acf-field-relationship.php:696 -msgid "Elements" -msgstr "Elementer" - -#: includes/fields/class-acf-field-relationship.php:630 -#: includes/fields/class-acf-field-taxonomy.php:20 -#: includes/fields/class-acf-field-taxonomy.php:692 -#: includes/locations/class-acf-location-taxonomy.php:22 -msgid "Taxonomy" -msgstr "Taksonomi" - -#: includes/fields/class-acf-field-relationship.php:629 -#: includes/locations/class-acf-location-post-type.php:22 -#: includes/post-types/class-acf-post-type.php:92 -msgid "Post Type" -msgstr "Innholdstype" - -#: includes/fields/class-acf-field-relationship.php:623 -msgid "Filters" -msgstr "Filtre" - -#: includes/fields/class-acf-field-page_link.php:499 -#: includes/fields/class-acf-field-post_object.php:404 -#: includes/fields/class-acf-field-relationship.php:616 -msgid "All taxonomies" -msgstr "Alle taksonomier" - -#: includes/fields/class-acf-field-page_link.php:491 -#: includes/fields/class-acf-field-post_object.php:396 -#: includes/fields/class-acf-field-relationship.php:608 -msgid "Filter by Taxonomy" -msgstr "Filtrer etter taksonomi" - -#: includes/fields/class-acf-field-page_link.php:469 -#: includes/fields/class-acf-field-post_object.php:374 -#: includes/fields/class-acf-field-relationship.php:586 -msgid "All post types" -msgstr "Alle innholdstyper" - -#: includes/fields/class-acf-field-page_link.php:461 -#: includes/fields/class-acf-field-post_object.php:366 -#: includes/fields/class-acf-field-relationship.php:578 -msgid "Filter by Post Type" -msgstr "Filtrer etter innholdstype" - -#: includes/fields/class-acf-field-relationship.php:476 -msgid "Search..." -msgstr "Søk..." - -#: includes/fields/class-acf-field-relationship.php:406 -msgid "Select taxonomy" -msgstr "Velg taksonomi" - -#: includes/fields/class-acf-field-relationship.php:397 -msgid "Select post type" -msgstr "Velg innholdstype" - -#: includes/fields/class-acf-field-relationship.php:61 -#: assets/build/js/acf-input.js:3930 assets/build/js/acf-input.js:4214 -msgid "No matches found" -msgstr "Ingen treff funnet" - -#: includes/fields/class-acf-field-relationship.php:60 -#: assets/build/js/acf-input.js:3913 assets/build/js/acf-input.js:4193 -msgid "Loading" -msgstr "Laster" - -#: includes/fields/class-acf-field-relationship.php:59 -#: assets/build/js/acf-input.js:3818 assets/build/js/acf-input.js:4084 -msgid "Maximum values reached ( {max} values )" -msgstr "Maksimal verdi nådd ( {max} verdier )" - -#: includes/fields/class-acf-field-relationship.php:17 -msgid "Relationship" -msgstr "Forhold" - -#: includes/fields/class-acf-field-file.php:291 -#: includes/fields/class-acf-field-image.php:317 -msgid "Comma separated list. Leave blank for all types" -msgstr "Kommaseparert liste. La være tom for alle typer" - -#: includes/fields/class-acf-field-file.php:290 -#: includes/fields/class-acf-field-image.php:316 -msgid "Allowed File Types" -msgstr "" - -#: includes/fields/class-acf-field-file.php:278 -#: includes/fields/class-acf-field-image.php:280 -msgid "Maximum" -msgstr "Maksimum" - -#: includes/fields/class-acf-field-file.php:154 -#: includes/fields/class-acf-field-file.php:270 -#: includes/fields/class-acf-field-file.php:282 -#: includes/fields/class-acf-field-image.php:271 -#: includes/fields/class-acf-field-image.php:307 -msgid "File size" -msgstr "Filstørrelse" - -#: includes/fields/class-acf-field-image.php:245 -#: includes/fields/class-acf-field-image.php:281 -msgid "Restrict which images can be uploaded" -msgstr "Begrens hvilke bilder som kan lastes opp" - -#: includes/fields/class-acf-field-file.php:266 -#: includes/fields/class-acf-field-image.php:244 -msgid "Minimum" -msgstr "Minimum" - -#: includes/fields/class-acf-field-file.php:235 -#: includes/fields/class-acf-field-image.php:210 -msgid "Uploaded to post" -msgstr "Lastet opp til innlegget" - -#: includes/fields/class-acf-field-file.php:234 -#: includes/fields/class-acf-field-image.php:209 -#: includes/locations/class-acf-location-attachment.php:73 -#: includes/locations/class-acf-location-comment.php:61 -#: includes/locations/class-acf-location-nav-menu.php:74 -#: includes/locations/class-acf-location-taxonomy.php:63 -#: includes/locations/class-acf-location-user-form.php:71 -#: includes/locations/class-acf-location-user-role.php:78 -#: includes/locations/class-acf-location-widget.php:65 -msgid "All" -msgstr "Alle" - -#: includes/fields/class-acf-field-file.php:229 -#: includes/fields/class-acf-field-image.php:204 -msgid "Limit the media library choice" -msgstr "Begrens mediabibilotekutvalget" - -#: includes/fields/class-acf-field-file.php:228 -#: includes/fields/class-acf-field-image.php:203 -msgid "Library" -msgstr "Bibliotek" - -#: includes/fields/class-acf-field-image.php:336 -msgid "Preview Size" -msgstr "Forhåndsvis størrelse" - -#: includes/fields/class-acf-field-image.php:195 -msgid "Image ID" -msgstr "Bilde-ID" - -#: includes/fields/class-acf-field-image.php:194 -msgid "Image URL" -msgstr "Bilde-URL" - -#: includes/fields/class-acf-field-image.php:193 -msgid "Image Array" -msgstr "Bilderekke" - -#: includes/fields/class-acf-field-button-group.php:168 -#: includes/fields/class-acf-field-checkbox.php:372 -#: includes/fields/class-acf-field-file.php:213 -#: includes/fields/class-acf-field-link.php:171 -#: includes/fields/class-acf-field-radio.php:213 -msgid "Specify the returned value on front end" -msgstr "Angi den returnerte verdien på fremsiden" - -#: includes/fields/class-acf-field-button-group.php:167 -#: includes/fields/class-acf-field-checkbox.php:371 -#: includes/fields/class-acf-field-file.php:212 -#: includes/fields/class-acf-field-link.php:170 -#: includes/fields/class-acf-field-radio.php:212 -#: includes/fields/class-acf-field-taxonomy.php:736 -msgid "Return Value" -msgstr "Returverdi" - -#: includes/fields/class-acf-field-image.php:162 -msgid "Add Image" -msgstr "Legg til bilde" - -#: includes/fields/class-acf-field-image.php:162 -msgid "No image selected" -msgstr "Intet bilde valgt" - -#: includes/assets.php:352 includes/fields/class-acf-field-file.php:162 -#: includes/fields/class-acf-field-image.php:142 -#: includes/fields/class-acf-field-link.php:145 assets/build/js/acf.js:1563 -#: assets/build/js/acf.js:1657 -msgid "Remove" -msgstr "Fjern" - -#: includes/admin/views/acf-field-group/field.php:76 -#: includes/fields/class-acf-field-file.php:160 -#: includes/fields/class-acf-field-image.php:140 -#: includes/fields/class-acf-field-link.php:145 -msgid "Edit" -msgstr "Rediger" - -#: includes/fields/class-acf-field-image.php:70 includes/media.php:55 -#: assets/build/js/acf-input.js:6837 assets/build/js/acf-input.js:7320 -msgid "All images" -msgstr "Alle bilder" - -#: includes/fields/class-acf-field-image.php:69 -#: assets/build/js/acf-input.js:3181 assets/build/js/acf-input.js:3399 -msgid "Update Image" -msgstr "Oppdater bilde" - -#: includes/fields/class-acf-field-image.php:68 -#: assets/build/js/acf-input.js:3180 assets/build/js/acf-input.js:3398 -msgid "Edit Image" -msgstr "Rediger bilde" - -#: includes/fields/class-acf-field-image.php:67 -#: assets/build/js/acf-input.js:3156 assets/build/js/acf-input.js:3373 -msgid "Select Image" -msgstr "Velg bilde" - -#: includes/fields/class-acf-field-image.php:25 -msgid "Image" -msgstr "Bilde" - -#: includes/fields/class-acf-field-message.php:125 -msgid "Allow HTML markup to display as visible text instead of rendering" -msgstr "Tillat HTML-markering vises som synlig tekst i stedet for gjengivelse" - -#: includes/fields/class-acf-field-message.php:124 -msgid "Escape HTML" -msgstr "Unnslipp HTML" - -#: includes/fields/class-acf-field-message.php:116 -#: includes/fields/class-acf-field-textarea.php:172 -msgid "No Formatting" -msgstr "Ingen formatering" - -#: includes/fields/class-acf-field-message.php:115 -#: includes/fields/class-acf-field-textarea.php:171 -msgid "Automatically add <br>" -msgstr "Legg automatisk til <br>" - -#: includes/fields/class-acf-field-message.php:114 -#: includes/fields/class-acf-field-textarea.php:170 -msgid "Automatically add paragraphs" -msgstr "Legg til avsnitt automatisk" - -#: includes/fields/class-acf-field-message.php:110 -#: includes/fields/class-acf-field-textarea.php:166 -msgid "Controls how new lines are rendered" -msgstr "Kontrollerer hvordan nye linjer er gjengitt" - -#: includes/fields/class-acf-field-message.php:109 -#: includes/fields/class-acf-field-textarea.php:165 -msgid "New Lines" -msgstr "Nye linjer" - -#: includes/fields/class-acf-field-date_picker.php:232 -#: includes/fields/class-acf-field-date_time_picker.php:220 -msgid "Week Starts On" -msgstr "Uken starter på" - -#: includes/fields/class-acf-field-date_picker.php:201 -msgid "The format used when saving a value" -msgstr "Formatet som er brukt ved lagring av verdi" - -#: includes/fields/class-acf-field-date_picker.php:200 -msgid "Save Format" -msgstr "Lagringsformat" - -#: includes/fields/class-acf-field-date_picker.php:67 -msgctxt "Date Picker JS weekHeader" -msgid "Wk" -msgstr "Uke" - -#: includes/fields/class-acf-field-date_picker.php:66 -msgctxt "Date Picker JS prevText" -msgid "Prev" -msgstr "Forrige" - -#: includes/fields/class-acf-field-date_picker.php:65 -msgctxt "Date Picker JS nextText" -msgid "Next" -msgstr "Neste" - -#: includes/fields/class-acf-field-date_picker.php:64 -msgctxt "Date Picker JS currentText" -msgid "Today" -msgstr "I dag" - -#: includes/fields/class-acf-field-date_picker.php:63 -msgctxt "Date Picker JS closeText" -msgid "Done" -msgstr "Ferdig" - -#: includes/fields/class-acf-field-date_picker.php:25 -msgid "Date Picker" -msgstr "Datovelger" - -#: includes/fields/class-acf-field-image.php:248 -#: includes/fields/class-acf-field-image.php:284 -#: includes/fields/class-acf-field-oembed.php:268 -msgid "Width" -msgstr "Bredde" - -#: includes/fields/class-acf-field-oembed.php:265 -#: includes/fields/class-acf-field-oembed.php:277 -msgid "Embed Size" -msgstr "Innbyggingsstørrelse" - -#: includes/fields/class-acf-field-oembed.php:222 -msgid "Enter URL" -msgstr "Angi URL" - -#: includes/fields/class-acf-field-oembed.php:25 -msgid "oEmbed" -msgstr "oEmbed" - -#: includes/fields/class-acf-field-true_false.php:184 -msgid "Text shown when inactive" -msgstr "Tekst vist når inaktiv" - -#: includes/fields/class-acf-field-true_false.php:183 -msgid "Off Text" -msgstr "Tekst for av" - -#: includes/fields/class-acf-field-true_false.php:168 -msgid "Text shown when active" -msgstr "Tekst vist når aktiv" - -#: includes/fields/class-acf-field-true_false.php:167 -msgid "On Text" -msgstr "Tekst for på" - -#: includes/fields/class-acf-field-select.php:450 -#: includes/fields/class-acf-field-true_false.php:199 -msgid "Stylized UI" -msgstr "Stilisert UI" - -#: includes/fields/class-acf-field-button-group.php:157 -#: includes/fields/class-acf-field-checkbox.php:361 -#: includes/fields/class-acf-field-color_picker.php:156 -#: includes/fields/class-acf-field-email.php:117 -#: includes/fields/class-acf-field-number.php:128 -#: includes/fields/class-acf-field-radio.php:202 -#: includes/fields/class-acf-field-range.php:164 -#: includes/fields/class-acf-field-select.php:380 -#: includes/fields/class-acf-field-text.php:103 -#: includes/fields/class-acf-field-textarea.php:103 -#: includes/fields/class-acf-field-true_false.php:147 -#: includes/fields/class-acf-field-url.php:101 -#: includes/fields/class-acf-field-wysiwyg.php:311 -msgid "Default Value" -msgstr "Standardverdi" - -#: includes/fields/class-acf-field-true_false.php:138 -msgid "Displays text alongside the checkbox" -msgstr "Viser tekst ved siden av avkrysingsboksen" - -#: includes/fields/class-acf-field-message.php:26 -#: includes/fields/class-acf-field-message.php:99 -#: includes/fields/class-acf-field-true_false.php:137 -msgid "Message" -msgstr "Melding" - -#: includes/assets.php:351 includes/fields/class-acf-field-true_false.php:86 -#: includes/fields/class-acf-field-true_false.php:187 -#: assets/build/js/acf.js:1740 assets/build/js/acf.js:1857 -msgid "No" -msgstr "Nei" - -#: includes/assets.php:350 includes/fields/class-acf-field-true_false.php:83 -#: includes/fields/class-acf-field-true_false.php:171 -#: assets/build/js/acf.js:1739 assets/build/js/acf.js:1856 -msgid "Yes" -msgstr "Ja" - -#: includes/fields/class-acf-field-true_false.php:25 -msgid "True / False" -msgstr "Sann / usann" - -#: includes/fields/class-acf-field-group.php:474 -msgid "Row" -msgstr "Rad" - -#: includes/fields/class-acf-field-group.php:473 -msgid "Table" -msgstr "Tabell" - -#: includes/admin/post-types/admin-field-group.php:140 -#: includes/fields/class-acf-field-group.php:472 -msgid "Block" -msgstr "Blokk" - -#: includes/fields/class-acf-field-group.php:467 -msgid "Specify the style used to render the selected fields" -msgstr "Spesifiser stil brukt til å gjengi valgte felt" - -#: includes/fields.php:356 includes/fields/class-acf-field-button-group.php:215 -#: includes/fields/class-acf-field-checkbox.php:435 -#: includes/fields/class-acf-field-group.php:466 -#: includes/fields/class-acf-field-radio.php:286 -msgid "Layout" -msgstr "Oppsett" - -#: includes/fields/class-acf-field-group.php:450 -msgid "Sub Fields" -msgstr "Underfelt" - -#: includes/fields/class-acf-field-group.php:25 -msgid "Group" -msgstr "Gruppe" - -#: includes/fields/class-acf-field-google-map.php:235 -msgid "Customize the map height" -msgstr "Egendefinerte karthøyde" - -#: includes/fields/class-acf-field-google-map.php:234 -#: includes/fields/class-acf-field-image.php:259 -#: includes/fields/class-acf-field-image.php:295 -#: includes/fields/class-acf-field-oembed.php:280 -msgid "Height" -msgstr "Høyde" - -#: includes/fields/class-acf-field-google-map.php:223 -msgid "Set the initial zoom level" -msgstr "Velg første zoomnivå" - -#: includes/fields/class-acf-field-google-map.php:222 -msgid "Zoom" -msgstr "Forstørr" - -#: includes/fields/class-acf-field-google-map.php:196 -#: includes/fields/class-acf-field-google-map.php:209 -msgid "Center the initial map" -msgstr "Sentrer det opprinnelige kartet" - -#: includes/fields/class-acf-field-google-map.php:195 -#: includes/fields/class-acf-field-google-map.php:208 -msgid "Center" -msgstr "Midtstill" - -#: includes/fields/class-acf-field-google-map.php:163 -msgid "Search for address..." -msgstr "Søk etter adresse..." - -#: includes/fields/class-acf-field-google-map.php:160 -msgid "Find current location" -msgstr "Finn gjeldende plassering" - -#: includes/fields/class-acf-field-google-map.php:159 -msgid "Clear location" -msgstr "Fjern plassering" - -#: includes/fields/class-acf-field-google-map.php:158 -#: includes/fields/class-acf-field-relationship.php:628 -msgid "Search" -msgstr "Søk" - -#: includes/fields/class-acf-field-google-map.php:63 -#: assets/build/js/acf-input.js:2840 assets/build/js/acf-input.js:3026 -msgid "Sorry, this browser does not support geolocation" -msgstr "Beklager, denne nettleseren støtter ikke geolokalisering" - -#: includes/fields/class-acf-field-google-map.php:25 -msgid "Google Map" -msgstr "Google Maps" - -#: includes/fields/class-acf-field-date_picker.php:212 -#: includes/fields/class-acf-field-date_time_picker.php:201 -#: includes/fields/class-acf-field-time_picker.php:132 -msgid "The format returned via template functions" -msgstr "Formatet returnert via malfunksjoner" - -#: includes/fields/class-acf-field-color_picker.php:180 -#: includes/fields/class-acf-field-date_picker.php:211 -#: includes/fields/class-acf-field-date_time_picker.php:200 -#: includes/fields/class-acf-field-image.php:187 -#: includes/fields/class-acf-field-post_object.php:411 -#: includes/fields/class-acf-field-relationship.php:638 -#: includes/fields/class-acf-field-select.php:391 -#: includes/fields/class-acf-field-time_picker.php:131 -#: includes/fields/class-acf-field-user.php:66 -msgid "Return Format" -msgstr "Returformat" - -#: includes/fields/class-acf-field-date_picker.php:190 -#: includes/fields/class-acf-field-date_picker.php:221 -#: includes/fields/class-acf-field-date_time_picker.php:192 -#: includes/fields/class-acf-field-date_time_picker.php:210 -#: includes/fields/class-acf-field-time_picker.php:123 -#: includes/fields/class-acf-field-time_picker.php:139 -msgid "Custom:" -msgstr "Egendefinert:" - -#: includes/fields/class-acf-field-date_picker.php:182 -#: includes/fields/class-acf-field-date_time_picker.php:183 -#: includes/fields/class-acf-field-time_picker.php:116 -msgid "The format displayed when editing a post" -msgstr "Format som vises når innlegg redigeres" - -#: includes/fields/class-acf-field-date_picker.php:181 -#: includes/fields/class-acf-field-date_time_picker.php:182 -#: includes/fields/class-acf-field-time_picker.php:115 -msgid "Display Format" -msgstr "Vist format" - -#: includes/fields/class-acf-field-time_picker.php:25 -msgid "Time Picker" -msgstr "Tidsvelger" - -#. translators: counts for inactive field groups -#: acf.php:503 -msgid "Inactive (%s)" -msgid_plural "Inactive (%s)" -msgstr[0] "Inaktiv (%s)" -msgstr[1] "Inaktive (%s)" - -#: acf.php:462 -msgid "No Fields found in Trash" -msgstr "Ingen felt funnet i papirkurven" - -#: acf.php:461 -msgid "No Fields found" -msgstr "Ingen felter funnet" - -#: acf.php:460 -msgid "Search Fields" -msgstr "Søk felt" - -#: acf.php:459 -msgid "View Field" -msgstr "Vis felt" - -#: acf.php:458 includes/admin/views/acf-field-group/fields.php:115 -msgid "New Field" -msgstr "Nytt felt" - -#: acf.php:457 -msgid "Edit Field" -msgstr "Rediger felt" - -#: acf.php:456 -msgid "Add New Field" -msgstr "Legg til nytt felt" - -#: acf.php:454 -msgid "Field" -msgstr "Felt" - -#: acf.php:453 includes/admin/post-types/admin-field-group.php:163 -#: includes/admin/post-types/admin-field-groups.php:119 -#: includes/admin/views/acf-field-group/fields.php:32 -msgid "Fields" -msgstr "Felter" - -#: acf.php:428 -msgid "No Field Groups found in Trash" -msgstr "Ingen feltgrupper funnet i papirkurven" - -#: acf.php:427 -msgid "No Field Groups found" -msgstr "Ingen feltgrupper funnet" - -#: acf.php:426 -msgid "Search Field Groups" -msgstr "Søk feltgrupper" - -#: acf.php:425 -msgid "View Field Group" -msgstr "Vis feltgruppe" - -#: acf.php:424 -msgid "New Field Group" -msgstr "Ny feltgruppe" - -#: acf.php:423 -msgid "Edit Field Group" -msgstr "Rediger feltgruppe" - -#: acf.php:422 -msgid "Add New Field Group" -msgstr "Legg til ny feltgruppe" - -#: acf.php:421 acf.php:455 -#: includes/admin/views/acf-post-type/advanced-settings.php:219 -#: includes/admin/views/acf-post-type/advanced-settings.php:221 -#: includes/post-types/class-acf-post-type.php:93 -#: includes/post-types/class-acf-taxonomy.php:92 -msgid "Add New" -msgstr "Legg til ny" - -#: acf.php:420 -msgid "Field Group" -msgstr "Feltgruppe" - -#: acf.php:419 includes/admin/post-types/admin-field-groups.php:78 -#: includes/admin/post-types/admin-post-types.php:138 -#: includes/admin/post-types/admin-taxonomies.php:138 -msgid "Field Groups" -msgstr "Feltgrupper" - -#. Description of the plugin -msgid "Customize WordPress with powerful, professional and intuitive fields." -msgstr "Tilpass WordPress med kraftfulle, profesjonelle og intuitive felt" - -#. Plugin URI of the plugin -msgid "https://www.advancedcustomfields.com" -msgstr "https://www.advancedcustomfields.com" - -#. Plugin Name of the plugin -#: acf.php:94 -msgid "Advanced Custom Fields" -msgstr "Avanserte egendefinerte felt" - -#: pro/acf-pro.php:27 -msgid "Advanced Custom Fields PRO" -msgstr "Advanced Custom Fields PRO" - -#: pro/blocks.php:170 -msgid "Block type name is required." -msgstr "" - -#. translators: The name of the block type -#: pro/blocks.php:178 -msgid "Block type \"%s\" is already registered." -msgstr "" - -#: pro/blocks.php:726 -msgid "Switch to Edit" -msgstr "" - -#: pro/blocks.php:727 -msgid "Switch to Preview" -msgstr "" - -#: pro/blocks.php:728 -msgid "Change content alignment" -msgstr "" - -#. translators: %s: Block type title -#: pro/blocks.php:731 -msgid "%s settings" -msgstr "" - -#: pro/blocks.php:936 -msgid "This block contains no editable fields." -msgstr "" - -#. translators: %s: an admin URL to the field group edit screen -#: pro/blocks.php:942 -msgid "" -"Assign a field group to add fields to " -"this block." -msgstr "" - -#: pro/options-page.php:78 -msgid "Options Updated" -msgstr "Alternativer er oppdatert" - -#: pro/updates.php:99 -msgid "" -"To enable updates, please enter your license key on the Updates page. If you don't have a licence key, please see details & pricing." -msgstr "" - -#: pro/updates.php:159 -msgid "" -"ACF Activation Error. Your defined license key has changed, but an " -"error occurred when deactivating your old licence" -msgstr "" - -#: pro/updates.php:154 -msgid "" -"ACF Activation Error. Your defined license key has changed, but an " -"error occurred when connecting to activation server" -msgstr "" - -#: pro/updates.php:192 -msgid "ACF Activation Error" -msgstr "" - -#: pro/updates.php:187 -msgid "" -"ACF Activation Error. An error occurred when connecting to activation " -"server" -msgstr "" - -#: pro/updates.php:279 -msgid "Check Again" -msgstr "Sjekk igjen" - -#: pro/updates.php:593 -msgid "ACF Activation Error. Could not connect to activation server" -msgstr "" - -#: pro/admin/admin-options-page.php:195 -msgid "Publish" -msgstr "Publiser" - -#: pro/admin/admin-options-page.php:199 -msgid "" -"No Custom Field Groups found for this options page. Create a " -"Custom Field Group" -msgstr "" -"Ingen egendefinerte feltgrupper funnet for denne valg-siden. Opprette en egendefinert feltgruppe" - -#: pro/admin/admin-updates.php:52 -msgid "Error. Could not connect to update server" -msgstr "Feil. Kan ikke koble til oppdateringsserveren" - -#: pro/admin/admin-updates.php:212 -msgid "" -"Error. Could not authenticate update package. Please check again or " -"deactivate and reactivate your ACF PRO license." -msgstr "" - -#: pro/admin/admin-updates.php:199 -msgid "" -"Error. Your license for this site has expired or been deactivated. " -"Please reactivate your ACF PRO license." -msgstr "" - -#: pro/fields/class-acf-field-clone.php:27, -#: pro/fields/class-acf-field-repeater.php:31 -msgid "" -"Allows you to select and display existing fields. It does not duplicate any " -"fields in the database, but loads and displays the selected fields at run-" -"time. The Clone field can either replace itself with the selected fields or " -"display the selected fields as a group of subfields." -msgstr "" - -#: pro/fields/class-acf-field-clone.php:819 -msgid "Select one or more fields you wish to clone" -msgstr "Velg ett eller flere felt du ønsker å klone" - -#: pro/fields/class-acf-field-clone.php:838 -msgid "Display" -msgstr "Vis" - -#: pro/fields/class-acf-field-clone.php:839 -msgid "Specify the style used to render the clone field" -msgstr "Angi stil som brukes til å gjengi klone-feltet" - -#: pro/fields/class-acf-field-clone.php:844 -msgid "Group (displays selected fields in a group within this field)" -msgstr "Gruppe (viser valgt felt i en gruppe innenfor dette feltet)" - -#: pro/fields/class-acf-field-clone.php:845 -msgid "Seamless (replaces this field with selected fields)" -msgstr "Sømløs (erstatter dette feltet med utvalgte felter)" - -#: pro/fields/class-acf-field-clone.php:868 -msgid "Labels will be displayed as %s" -msgstr "Etiketter vises som %s" - -#: pro/fields/class-acf-field-clone.php:873 -msgid "Prefix Field Labels" -msgstr "Prefiks feltetiketter" - -#: pro/fields/class-acf-field-clone.php:883 -msgid "Values will be saved as %s" -msgstr "Verdier vil bli lagret som %s" - -#: pro/fields/class-acf-field-clone.php:888 -msgid "Prefix Field Names" -msgstr "Prefiks feltnavn" - -#: pro/fields/class-acf-field-clone.php:1005 -msgid "Unknown field" -msgstr "Ukjent felt" - -#: pro/fields/class-acf-field-clone.php:1042 -msgid "Unknown field group" -msgstr "Ukjent feltgruppe" - -#: pro/fields/class-acf-field-clone.php:1046 -msgid "All fields from %s field group" -msgstr "Alle felt fra %s feltgruppe" - -#: pro/fields/class-acf-field-flexible-content.php:27 -msgid "" -"Allows you to define, create and manage content with total control by " -"creating layouts that contain subfields that content editors can choose from." -msgstr "" - -#: pro/fields/class-acf-field-flexible-content.php:36, -#: pro/fields/class-acf-field-repeater.php:103, -#: pro/fields/class-acf-field-repeater.php:297 -msgid "Add Row" -msgstr "Legg til rad" - -#: pro/fields/class-acf-field-flexible-content.php:76, -#: pro/fields/class-acf-field-flexible-content.php:943, -#: pro/fields/class-acf-field-flexible-content.php:1022 -#, fuzzy -#| msgid "layout" -msgid "layout" -msgid_plural "layouts" -msgstr[0] "oppsett" -msgstr[1] "oppsett" - -#: pro/fields/class-acf-field-flexible-content.php:77 -msgid "layouts" -msgstr "oppsett" - -#: pro/fields/class-acf-field-flexible-content.php:81, -#: pro/fields/class-acf-field-flexible-content.php:942, -#: pro/fields/class-acf-field-flexible-content.php:1021 -msgid "This field requires at least {min} {label} {identifier}" -msgstr "Dette feltet krever minst {min} {label} {identifier}" - -#: pro/fields/class-acf-field-flexible-content.php:82 -msgid "This field has a limit of {max} {label} {identifier}" -msgstr "" - -#: pro/fields/class-acf-field-flexible-content.php:85 -msgid "{available} {label} {identifier} available (max {max})" -msgstr "{available} {label} {identifier} tilgjengelig (maks {max})" - -#: pro/fields/class-acf-field-flexible-content.php:86 -msgid "{required} {label} {identifier} required (min {min})" -msgstr "{required} {label} {identifier} kreves (min {min})" - -#: pro/fields/class-acf-field-flexible-content.php:89 -msgid "Flexible Content requires at least 1 layout" -msgstr "Fleksibelt innholdsfelt krever minst en layout" - -#: pro/fields/class-acf-field-flexible-content.php:282 -msgid "Click the \"%s\" button below to start creating your layout" -msgstr "Klikk \"%s\"-knappen nedenfor for å begynne å lage oppsettet" - -#: pro/fields/class-acf-field-flexible-content.php:423 -msgid "Add layout" -msgstr "Legg til oppsett" - -#: pro/fields/class-acf-field-flexible-content.php:424 -msgid "Duplicate layout" -msgstr "" - -#: pro/fields/class-acf-field-flexible-content.php:425 -msgid "Remove layout" -msgstr "Fjern oppsett" - -#: pro/fields/class-acf-field-flexible-content.php:426, -#: pro/fields/class-acf-repeater-table.php:382 -msgid "Click to toggle" -msgstr "Klikk for å veksle" - -#: pro/fields/class-acf-field-flexible-content.php:562 -msgid "Delete Layout" -msgstr "Slett oppsett" - -#: pro/fields/class-acf-field-flexible-content.php:563 -msgid "Duplicate Layout" -msgstr "Dupliser oppsett" - -#: pro/fields/class-acf-field-flexible-content.php:564 -msgid "Add New Layout" -msgstr "Legg til nytt oppsett" - -#: pro/fields/class-acf-field-flexible-content.php:564 -#, fuzzy -#| msgid "Add layout" -msgid "Add Layout" -msgstr "Legg til oppsett" - -#: pro/fields/class-acf-field-flexible-content.php:647 -msgid "Min" -msgstr "Minimum" - -#: pro/fields/class-acf-field-flexible-content.php:662 -msgid "Max" -msgstr "Maksimum" - -#: pro/fields/class-acf-field-flexible-content.php:705 -msgid "Minimum Layouts" -msgstr "Minimum oppsett" - -#: pro/fields/class-acf-field-flexible-content.php:716 -msgid "Maximum Layouts" -msgstr "Maksimum oppsett" - -#: pro/fields/class-acf-field-flexible-content.php:727, -#: pro/fields/class-acf-field-repeater.php:293 -msgid "Button Label" -msgstr "Knappetikett" - -#: pro/fields/class-acf-field-flexible-content.php:1710, -#: pro/fields/class-acf-field-repeater.php:918 -msgid "%s must be of type array or null." -msgstr "" - -#: pro/fields/class-acf-field-flexible-content.php:1721 -msgid "%1$s must contain at least %2$s %3$s layout." -msgid_plural "%1$s must contain at least %2$s %3$s layouts." -msgstr[0] "" -msgstr[1] "" - -#: pro/fields/class-acf-field-flexible-content.php:1737 -msgid "%1$s must contain at most %2$s %3$s layout." -msgid_plural "%1$s must contain at most %2$s %3$s layouts." -msgstr[0] "" -msgstr[1] "" - -#: pro/fields/class-acf-field-gallery.php:27 -msgid "" -"An interactive interface for managing a collection of attachments, such as " -"images." -msgstr "" - -#: pro/fields/class-acf-field-gallery.php:77 -msgid "Add Image to Gallery" -msgstr "Legg bildet til galleri" - -#: pro/fields/class-acf-field-gallery.php:78 -msgid "Maximum selection reached" -msgstr "Maksimalt utvalg nådd" - -#: pro/fields/class-acf-field-gallery.php:324 -msgid "Length" -msgstr "Lengde" - -#: pro/fields/class-acf-field-gallery.php:368 -msgid "Caption" -msgstr "Bildetekst" - -#: pro/fields/class-acf-field-gallery.php:380 -msgid "Alt Text" -msgstr "Alternativ tekst" - -#: pro/fields/class-acf-field-gallery.php:504 -msgid "Add to gallery" -msgstr "Legg til galleri" - -#: pro/fields/class-acf-field-gallery.php:508 -msgid "Bulk actions" -msgstr "Massehandlinger" - -#: pro/fields/class-acf-field-gallery.php:509 -msgid "Sort by date uploaded" -msgstr "Sorter etter dato lastet opp" - -#: pro/fields/class-acf-field-gallery.php:510 -msgid "Sort by date modified" -msgstr "Sorter etter dato endret" - -#: pro/fields/class-acf-field-gallery.php:511 -msgid "Sort by title" -msgstr "Sorter etter tittel" - -#: pro/fields/class-acf-field-gallery.php:512 -msgid "Reverse current order" -msgstr "Snu gjeldende rekkefølge" - -#: pro/fields/class-acf-field-gallery.php:524 -msgid "Close" -msgstr "Lukk" - -#: pro/fields/class-acf-field-gallery.php:615 -msgid "Minimum Selection" -msgstr "Minimum antall valg" - -#: pro/fields/class-acf-field-gallery.php:625 -msgid "Maximum Selection" -msgstr "Maksimum antall valg" - -#: pro/fields/class-acf-field-gallery.php:707 -msgid "Allowed file types" -msgstr "Tillatte filtyper" - -#: pro/fields/class-acf-field-gallery.php:727 -msgid "Insert" -msgstr "Sett inn" - -#: pro/fields/class-acf-field-gallery.php:728 -msgid "Specify where new attachments are added" -msgstr "Angi hvor nye vedlegg er lagt" - -#: pro/fields/class-acf-field-gallery.php:732 -msgid "Append to the end" -msgstr "Tilføy til slutten" - -#: pro/fields/class-acf-field-gallery.php:733 -msgid "Prepend to the beginning" -msgstr "Sett inn foran" - -#: pro/fields/class-acf-field-repeater.php:66, -#: pro/fields/class-acf-field-repeater.php:463 -#, fuzzy -#| msgid "Minimum rows reached ({min} rows)" -msgid "Minimum rows not reached ({min} rows)" -msgstr "Minimum antall rader nådd ({min} rader)" - -#: pro/fields/class-acf-field-repeater.php:67 -msgid "Maximum rows reached ({max} rows)" -msgstr "Maksimum antall rader nådd ({max} rader)" - -#: pro/fields/class-acf-field-repeater.php:68 -msgid "Error loading page" -msgstr "" - -#: pro/fields/class-acf-field-repeater.php:69 -msgid "Order will be assigned upon save" -msgstr "" - -#: pro/fields/class-acf-field-repeater.php:196 -msgid "Useful for fields with a large number of rows." -msgstr "" - -#: pro/fields/class-acf-field-repeater.php:207 -msgid "Rows Per Page" -msgstr "" - -#: pro/fields/class-acf-field-repeater.php:208 -msgid "Set the number of rows to be displayed on a page." -msgstr "" - -#: pro/fields/class-acf-field-repeater.php:240 -msgid "Minimum Rows" -msgstr "Minimum antall rader" - -#: pro/fields/class-acf-field-repeater.php:251 -msgid "Maximum Rows" -msgstr "Maksimum antall rader" - -#: pro/fields/class-acf-field-repeater.php:281 -msgid "Collapsed" -msgstr "Sammenfoldet" - -#: pro/fields/class-acf-field-repeater.php:282 -msgid "Select a sub field to show when row is collapsed" -msgstr "Velg et underfelt å vise når raden er skjult" - -#: pro/fields/class-acf-field-repeater.php:1060 -msgid "Invalid field key or name." -msgstr "" - -#: pro/fields/class-acf-field-repeater.php:1069 -msgid "There was an error retrieving the field." -msgstr "" - -#: pro/fields/class-acf-repeater-table.php:369 -#, fuzzy -#| msgid "Drag to reorder" -msgid "Click to reorder" -msgstr "Dra for å endre rekkefølge" - -#: pro/fields/class-acf-repeater-table.php:402 -msgid "Add row" -msgstr "Legg til rad" - -#: pro/fields/class-acf-repeater-table.php:403 -msgid "Duplicate row" -msgstr "" - -#: pro/fields/class-acf-repeater-table.php:404 -msgid "Remove row" -msgstr "Fjern rad" - -#: pro/fields/class-acf-repeater-table.php:448, -#: pro/fields/class-acf-repeater-table.php:465, -#: pro/fields/class-acf-repeater-table.php:466 -msgid "Current Page" -msgstr "" - -#: pro/fields/class-acf-repeater-table.php:456, -#: pro/fields/class-acf-repeater-table.php:457 -#, fuzzy -#| msgid "Front Page" -msgid "First Page" -msgstr "Forside" - -#: pro/fields/class-acf-repeater-table.php:460, -#: pro/fields/class-acf-repeater-table.php:461 -#, fuzzy -#| msgid "Posts Page" -msgid "Previous Page" -msgstr "Innleggsside" - -#. translators: 1: Current page, 2: Total pages. -#: pro/fields/class-acf-repeater-table.php:470 -msgctxt "paging" -msgid "%1$s of %2$s" -msgstr "" - -#: pro/fields/class-acf-repeater-table.php:477, -#: pro/fields/class-acf-repeater-table.php:478 -#, fuzzy -#| msgid "Front Page" -msgid "Next Page" -msgstr "Forside" - -#: pro/fields/class-acf-repeater-table.php:481, -#: pro/fields/class-acf-repeater-table.php:482 -#, fuzzy -#| msgid "Posts Page" -msgid "Last Page" -msgstr "Innleggsside" - -#: pro/locations/class-acf-location-block.php:71 -msgid "No block types exist" -msgstr "" - -#: pro/locations/class-acf-location-options-page.php:70 -msgid "No options pages exist" -msgstr "Ingen side for alternativer eksisterer" - -#: pro/admin/views/html-settings-updates.php:6 -msgid "Deactivate License" -msgstr "Deaktiver lisens" - -#: pro/admin/views/html-settings-updates.php:6 -msgid "Activate License" -msgstr "Aktiver lisens" - -#: pro/admin/views/html-settings-updates.php:16 -msgid "License Information" -msgstr "Lisensinformasjon" - -#: pro/admin/views/html-settings-updates.php:34 -msgid "" -"To unlock updates, please enter your license key below. If you don't have a " -"licence key, please see details & pricing." -msgstr "" -"For å låse opp oppdateringer må lisensnøkkelen skrives inn under. Se detaljer og priser dersom du ikke har " -"lisensnøkkel." - -#: pro/admin/views/html-settings-updates.php:37 -msgid "License Key" -msgstr "Lisensnøkkel" - -#: pro/admin/views/html-settings-updates.php:22 -msgid "Your license key is defined in wp-config.php." -msgstr "" - -#: pro/admin/views/html-settings-updates.php:29 -msgid "Retry Activation" -msgstr "" - -#: pro/admin/views/html-settings-updates.php:61 -msgid "Update Information" -msgstr "Oppdateringsinformasjon" - -#: pro/admin/views/html-settings-updates.php:68 -msgid "Current Version" -msgstr "Gjeldende versjon" - -#: pro/admin/views/html-settings-updates.php:76 -msgid "Latest Version" -msgstr "Siste versjon" - -#: pro/admin/views/html-settings-updates.php:84 -msgid "Update Available" -msgstr "Oppdatering tilgjengelig" - -#: pro/admin/views/html-settings-updates.php:98 -msgid "Upgrade Notice" -msgstr "Oppgraderingsvarsel" - -#: pro/admin/views/html-settings-updates.php:126 -msgid "Check For Updates" -msgstr "" - -#: pro/admin/views/html-settings-updates.php:121 -#, fuzzy -#| msgid "Please enter your license key above to unlock updates" -msgid "Enter your license key to unlock updates" -msgstr "Oppgi lisensnøkkelen ovenfor for låse opp oppdateringer" - -#: pro/admin/views/html-settings-updates.php:119 -msgid "Update Plugin" -msgstr "Oppdater plugin" - -#: pro/admin/views/html-settings-updates.php:117 -msgid "Please reactivate your license to unlock updates" -msgstr "" diff --git a/lang/acf-nl_BE.mo b/lang/acf-nl_BE.mo deleted file mode 100644 index adf51d9..0000000 Binary files a/lang/acf-nl_BE.mo and /dev/null differ diff --git a/lang/acf-nl_BE.po b/lang/acf-nl_BE.po deleted file mode 100644 index f3329ea..0000000 --- a/lang/acf-nl_BE.po +++ /dev/null @@ -1,6197 +0,0 @@ -# Advanced Custom Fields Translations are a combination of translate.wordpress.org contributions, -# combined with user contributed strings for the PRO version. -# Translations from translate.wordpress.org take priority over translations in this file. -# translate.wordpress.org contributions are synced at the time of each release. -# -# If you would like to contribute translations, please visit -# https://translate.wordpress.org/projects/wp-plugins/advanced-custom-fields/stable/ -# -# For additional ACF PRO strings, please submit a pull request over on the ACF GitHub repo at -# http://github.com/advancedcustomfields/acf using the .pot (and any existing .po) files in /lang/pro/ -# -# This file is distributed under the same license as Advanced Custom Fields. -msgid "" -msgstr "" -"PO-Revision-Date: 2023-11-28T09:14:32+00:00\n" -"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n" -"Language: nl_BE\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: gettext\n" -"Project-Id-Version: Advanced Custom Fields\n" - -#: includes/admin/views/global/navigation.php:221 -msgid "Renew ACF PRO License" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:17 -msgid "Renew License" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:14 -msgid "Manage License" -msgstr "" - -#: includes/admin/views/acf-field-group/options.php:102 -msgid "'High' position not supported in the Block Editor" -msgstr "" - -#: includes/admin/views/options-page-preview.php:30 -msgid "Upgrade to ACF PRO" -msgstr "" - -#. translators: %s URL to ACF options pages documentation -#: includes/admin/views/options-page-preview.php:7 -msgid "" -"ACF options pages are custom admin " -"pages for managing global settings via fields. You can create multiple pages " -"and sub-pages." -msgstr "" - -#: includes/admin/views/global/header.php:35 -msgid "Add Options Page" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:703 -msgid "In the editor used as the placeholder of the title." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:702 -msgid "Title Placeholder" -msgstr "" - -#: includes/admin/views/global/navigation.php:97 -msgid "4 Months Free" -msgstr "" - -#. translators: %s - A singular label for a post type or taxonomy. -#: includes/admin/views/global/form-top.php:56 -msgid " (Duplicated from %s)" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:298 -msgid "Select Options Pages" -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:107 -msgid "Duplicate taxonomy" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:106 -#: includes/admin/post-types/admin-taxonomy.php:106 -msgid "Create taxonomy" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:105 -msgid "Duplicate post type" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:104 -#: includes/admin/post-types/admin-taxonomy.php:108 -msgid "Create post type" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:103 -#: includes/admin/post-types/admin-taxonomy.php:105 -msgid "Link field groups" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:102 -#: includes/admin/post-types/admin-taxonomy.php:104 -msgid "Add fields" -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:121 -#: assets/build/js/acf-field-group.js:2753 -#: assets/build/js/acf-field-group.js:3236 -msgid "This Field" -msgstr "" - -#: includes/admin/admin.php:267 -msgid "ACF PRO" -msgstr "" - -#: includes/admin/admin.php:265 -msgid "Feedback" -msgstr "" - -#: includes/admin/admin.php:263 -msgid "Support" -msgstr "" - -#. translators: This text is prepended by a link to ACF's website, and appended -#. by a link to WP Engine's website. -#: includes/admin/admin.php:238 -msgid "is developed and maintained by" -msgstr "" - -#. translators: %s - either "post type" or "taxonomy" -#: includes/admin/admin-internal-post-type.php:321 -msgid "Add this %s to the location rules of the selected field groups." -msgstr "" - -#. translators: %s the URL to ACF's bidirectional relationship documentation -#: includes/acf-bidirectional-functions.php:271 -msgid "" -"Enabling the bidirectional setting allows you to update a value in the " -"target fields for each value selected for this field, adding or removing the " -"Post ID, Taxonomy ID or User ID of the item being updated. For more " -"information, please read the documentation." -msgstr "" - -#: includes/acf-bidirectional-functions.php:247 -msgid "" -"Select field(s) to store the reference back to the item being updated. You " -"may select this field. Target fields must be compatible with where this " -"field is being displayed. For example, if this field is displayed on a " -"Taxonomy, your target field should be of type Taxonomy" -msgstr "" - -#: includes/acf-bidirectional-functions.php:246 -msgid "Target Field" -msgstr "" - -#: includes/acf-bidirectional-functions.php:220 -msgid "Update a field on the selected values, referencing back to this ID" -msgstr "" - -#: includes/acf-bidirectional-functions.php:219 -msgid "Bidirectional" -msgstr "" - -#. translators: %s A field type name, such as "Relationship" -#: includes/acf-bidirectional-functions.php:192 -msgid "%s Field" -msgstr "" - -#: includes/fields/class-acf-field-page_link.php:517 -#: includes/fields/class-acf-field-post_object.php:426 -#: includes/fields/class-acf-field-select.php:407 -#: includes/fields/class-acf-field-user.php:82 -msgid "Select Multiple" -msgstr "" - -#: includes/admin/views/global/navigation.php:233 -msgid "WP Engine logo" -msgstr "" - -#: includes/admin/views/acf-taxonomy/basic-settings.php:58 -msgid "Lower case letters, underscores and dashes only, Max 32 characters." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1136 -msgid "The capability name for assigning terms of this taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1135 -msgid "Assign Terms Capability" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1119 -msgid "The capability name for deleting terms of this taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1118 -msgid "Delete Terms Capability" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1102 -msgid "The capability name for editing terms of this taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1101 -msgid "Edit Terms Capability" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1085 -msgid "The capability name for managing terms of this taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1084 -msgid "Manage Terms Capability" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:886 -msgid "" -"Sets whether posts should be excluded from search results and taxonomy " -"archive pages." -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:74 -msgid "More Tools from WP Engine" -msgstr "" - -#. translators: %s - WP Engine logo -#: includes/admin/views/acf-field-group/pro-features.php:69 -msgid "Built for those that build with WordPress, by the team at %s" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:6 -msgid "View Pricing & Upgrade" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:3 -#: includes/admin/views/options-page-preview.php:29 -msgid "Learn More" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:28 -msgid "" -"Speed up your workflow and develop better websites with features like ACF " -"Blocks and Options Pages, and sophisticated field types like Repeater, " -"Flexible Content, Clone, and Gallery." -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:2 -msgid "Unlock Advanced Features and Build Even More with ACF PRO" -msgstr "" - -#. translators: %s - singular label of post type/taxonomy, i.e. "Movie"/"Genre" -#: includes/admin/views/global/form-top.php:19 -msgid "%s fields" -msgstr "" - -#: includes/admin/post-types/admin-taxonomies.php:293 -msgid "No terms" -msgstr "" - -#: includes/admin/post-types/admin-taxonomies.php:266 -msgid "No post types" -msgstr "" - -#: includes/admin/post-types/admin-post-types.php:289 -msgid "No posts" -msgstr "" - -#: includes/admin/post-types/admin-post-types.php:263 -msgid "No taxonomies" -msgstr "" - -#: includes/admin/post-types/admin-post-types.php:208 -#: includes/admin/post-types/admin-taxonomies.php:208 -msgid "No field groups" -msgstr "" - -#: includes/admin/post-types/admin-field-groups.php:281 -msgid "No fields" -msgstr "" - -#: includes/admin/post-types/admin-field-groups.php:154 -#: includes/admin/post-types/admin-post-types.php:172 -#: includes/admin/post-types/admin-taxonomies.php:172 -msgid "No description" -msgstr "" - -#: includes/fields/class-acf-field-page_link.php:484 -#: includes/fields/class-acf-field-post_object.php:389 -#: includes/fields/class-acf-field-relationship.php:601 -msgid "Any post status" -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:284 -msgid "" -"This taxonomy key is already in use by another taxonomy registered outside " -"of ACF and cannot be used." -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:279 -msgid "" -"This taxonomy key is already in use by another taxonomy in ACF and cannot be " -"used." -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:252 -msgid "" -"The taxonomy key must only contain lower case alphanumeric characters, " -"underscores or dashes." -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:247 -msgid "The taxonomy key must be under 32 characters." -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:99 -msgid "No Taxonomies found in Trash" -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:98 -msgid "No Taxonomies found" -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:97 -msgid "Search Taxonomies" -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:96 -msgid "View Taxonomy" -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:95 -msgid "New Taxonomy" -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:94 -msgid "Edit Taxonomy" -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:93 -msgid "Add New Taxonomy" -msgstr "" - -#: includes/post-types/class-acf-post-type.php:100 -msgid "No Post Types found in Trash" -msgstr "" - -#: includes/post-types/class-acf-post-type.php:99 -msgid "No Post Types found" -msgstr "" - -#: includes/post-types/class-acf-post-type.php:98 -msgid "Search Post Types" -msgstr "" - -#: includes/post-types/class-acf-post-type.php:97 -msgid "View Post Type" -msgstr "" - -#: includes/post-types/class-acf-post-type.php:96 -msgid "New Post Type" -msgstr "" - -#: includes/post-types/class-acf-post-type.php:95 -msgid "Edit Post Type" -msgstr "" - -#: includes/post-types/class-acf-post-type.php:94 -msgid "Add New Post Type" -msgstr "" - -#: includes/post-types/class-acf-post-type.php:361 -msgid "" -"This post type key is already in use by another post type registered outside " -"of ACF and cannot be used." -msgstr "" - -#: includes/post-types/class-acf-post-type.php:356 -msgid "" -"This post type key is already in use by another post type in ACF and cannot " -"be used." -msgstr "" - -#. translators: %s a link to WordPress.org's Reserved Terms page -#: includes/post-types/class-acf-post-type.php:335 -#: includes/post-types/class-acf-taxonomy.php:258 -msgid "" -"This field must not be a WordPress reserved " -"term." -msgstr "" - -#: includes/post-types/class-acf-post-type.php:329 -msgid "" -"The post type key must only contain lower case alphanumeric characters, " -"underscores or dashes." -msgstr "" - -#: includes/post-types/class-acf-post-type.php:324 -msgid "The post type key must be under 20 characters." -msgstr "" - -#: includes/fields/class-acf-field-wysiwyg.php:27 -msgid "We do not recommend using this field in ACF Blocks." -msgstr "" - -#: includes/fields/class-acf-field-wysiwyg.php:27 -msgid "" -"Displays the WordPress WYSIWYG editor as seen in Posts and Pages allowing " -"for a rich text-editing experience that also allows for multimedia content." -msgstr "" - -#: includes/fields/class-acf-field-wysiwyg.php:25 -msgid "WYSIWYG Editor" -msgstr "" - -#: includes/fields/class-acf-field-user.php:17 -msgid "" -"Allows the selection of one or more users which can be used to create " -"relationships between data objects." -msgstr "" - -#: includes/fields/class-acf-field-url.php:26 -msgid "A text input specifically designed for storing web addresses." -msgstr "" - -#: includes/fields/class-acf-field-url.php:25 -msgid "URL" -msgstr "" - -#: includes/fields/class-acf-field-true_false.php:27 -msgid "" -"A toggle that allows you to pick a value of 1 or 0 (on or off, true or " -"false, etc). Can be presented as a stylized switch or checkbox." -msgstr "" - -#: includes/fields/class-acf-field-time_picker.php:27 -msgid "" -"An interactive UI for picking a time. The time format can be customized " -"using the field settings." -msgstr "" - -#: includes/fields/class-acf-field-textarea.php:26 -msgid "A basic textarea input for storing paragraphs of text." -msgstr "" - -#: includes/fields/class-acf-field-text.php:26 -msgid "A basic text input, useful for storing single string values." -msgstr "" - -#: includes/fields/class-acf-field-taxonomy.php:22 -msgid "" -"Allows the selection of one or more taxonomy terms based on the criteria and " -"options specified in the fields settings." -msgstr "" - -#: includes/fields/class-acf-field-tab.php:28 -msgid "" -"Allows you to group fields into tabbed sections in the edit screen. Useful " -"for keeping fields organized and structured." -msgstr "" - -#: includes/fields/class-acf-field-select.php:27 -msgid "A dropdown list with a selection of choices that you specify." -msgstr "" - -#: includes/fields/class-acf-field-relationship.php:19 -msgid "" -"A dual-column interface to select one or more posts, pages, or custom post " -"type items to create a relationship with the item that you're currently " -"editing. Includes options to search and filter." -msgstr "" - -#: includes/fields/class-acf-field-range.php:26 -msgid "" -"An input for selecting a numerical value within a specified range using a " -"range slider element." -msgstr "" - -#: includes/fields/class-acf-field-radio.php:27 -msgid "" -"A group of radio button inputs that allows the user to make a single " -"selection from values that you specify." -msgstr "" - -#: includes/fields/class-acf-field-post_object.php:19 -msgid "" -"An interactive and customizable UI for picking one or many posts, pages or " -"post type items with the option to search. " -msgstr "" - -#: includes/fields/class-acf-field-password.php:26 -msgid "An input for providing a password using a masked field." -msgstr "" - -#: includes/fields/class-acf-field-page_link.php:476 -#: includes/fields/class-acf-field-post_object.php:381 -#: includes/fields/class-acf-field-relationship.php:593 -msgid "Filter by Post Status" -msgstr "" - -#: includes/fields/class-acf-field-page_link.php:27 -msgid "" -"An interactive dropdown to select one or more posts, pages, custom post type " -"items or archive URLs, with the option to search." -msgstr "" - -#: includes/fields/class-acf-field-oembed.php:27 -msgid "" -"An interactive component for embedding videos, images, tweets, audio and " -"other content by making use of the native WordPress oEmbed functionality." -msgstr "" - -#: includes/fields/class-acf-field-number.php:26 -msgid "An input limited to numerical values." -msgstr "" - -#: includes/fields/class-acf-field-message.php:28 -msgid "" -"Used to display a message to editors alongside other fields. Useful for " -"providing additional context or instructions around your fields." -msgstr "" - -#: includes/fields/class-acf-field-link.php:27 -msgid "" -"Allows you to specify a link and its properties such as title and target " -"using the WordPress native link picker." -msgstr "" - -#: includes/fields/class-acf-field-image.php:27 -msgid "Uses the native WordPress media picker to upload, or choose images." -msgstr "" - -#: includes/fields/class-acf-field-group.php:27 -msgid "" -"Provides a way to structure fields into groups to better organize the data " -"and the edit screen." -msgstr "" - -#: includes/fields/class-acf-field-google-map.php:27 -msgid "" -"An interactive UI for selecting a location using Google Maps. Requires a " -"Google Maps API key and additional configuration to display correctly." -msgstr "" - -#: includes/fields/class-acf-field-file.php:27 -msgid "Uses the native WordPress media picker to upload, or choose files." -msgstr "" - -#: includes/fields/class-acf-field-email.php:26 -msgid "A text input specifically designed for storing email addresses." -msgstr "" - -#: includes/fields/class-acf-field-date_time_picker.php:27 -msgid "" -"An interactive UI for picking a date and time. The date return format can be " -"customized using the field settings." -msgstr "" - -#: includes/fields/class-acf-field-date_picker.php:27 -msgid "" -"An interactive UI for picking a date. The date return format can be " -"customized using the field settings." -msgstr "" - -#: includes/fields/class-acf-field-color_picker.php:27 -msgid "An interactive UI for selecting a color, or specifying a Hex value." -msgstr "" - -#: includes/fields/class-acf-field-checkbox.php:27 -msgid "" -"A group of checkbox inputs that allow the user to select one, or multiple " -"values that you specify." -msgstr "" - -#: includes/fields/class-acf-field-button-group.php:26 -msgid "" -"A group of buttons with values that you specify, users can choose one option " -"from the values provided." -msgstr "" - -#: includes/fields/class-acf-field-accordion.php:27 -msgid "" -"Allows you to group and organize custom fields into collapsable panels that " -"are shown while editing content. Useful for keeping large datasets tidy." -msgstr "" - -#: includes/fields.php:475 -msgid "" -"This provides a solution for repeating content such as slides, team members, " -"and call-to-action tiles, by acting as a parent to a set of subfields which " -"can be repeated again and again." -msgstr "" - -#: includes/fields.php:465 -msgid "" -"This provides an interactive interface for managing a collection of " -"attachments. Most settings are similar to the Image field type. Additional " -"settings allow you to specify where new attachments are added in the gallery " -"and the minimum/maximum number of attachments allowed." -msgstr "" - -#: includes/fields.php:455 -msgid "" -"This provides a simple, structured, layout-based editor. The Flexible " -"Content field allows you to define, create and manage content with total " -"control by using layouts and subfields to design the available blocks." -msgstr "" - -#: includes/fields.php:445 -msgid "" -"This allows you to select and display existing fields. It does not duplicate " -"any fields in the database, but loads and displays the selected fields at " -"run-time. The Clone field can either replace itself with the selected fields " -"or display the selected fields as a group of subfields." -msgstr "" - -#: pro/fields/class-acf-field-clone.php:25 -msgctxt "noun" -msgid "Clone" -msgstr "Kloon" - -#: includes/admin/views/global/navigation.php:86 includes/fields.php:357 -msgid "PRO" -msgstr "PRO" - -#: includes/fields.php:355 includes/fields.php:412 -msgid "Advanced" -msgstr "" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:85 -msgid "JSON (newer)" -msgstr "" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:81 -msgid "Original" -msgstr "" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:55 -msgid "Invalid post ID." -msgstr "" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:47 -msgid "Invalid post type selected for review." -msgstr "" - -#: includes/admin/views/global/navigation.php:186 -msgid "More" -msgstr "Meer" - -#: includes/admin/views/browse-fields-modal.php:86 -msgid "Tutorial" -msgstr "Tutorial" - -#: includes/admin/views/browse-fields-modal.php:75 -msgid "Available with ACF PRO" -msgstr "" - -#: includes/admin/views/browse-fields-modal.php:63 -msgid "Select Field" -msgstr "" - -#. translators: %s: A link to the popular fields used in ACF -#: includes/admin/views/browse-fields-modal.php:50 -msgid "Try a different search term or browse %s" -msgstr "" - -#: includes/admin/views/browse-fields-modal.php:47 -msgid "Popular fields" -msgstr "" - -#. translators: %s: The invalid search term -#: includes/admin/views/browse-fields-modal.php:40 -msgid "No search results for '%s'" -msgstr "" - -#: includes/admin/views/browse-fields-modal.php:13 -msgid "Search fields..." -msgstr "" - -#: includes/admin/views/browse-fields-modal.php:11 -msgid "Select Field Type" -msgstr "" - -#: includes/admin/views/browse-fields-modal.php:4 -msgid "Popular" -msgstr "" - -#: includes/admin/views/acf-taxonomy/list-empty.php:7 -msgid "Add Taxonomy" -msgstr "" - -#: includes/admin/views/acf-taxonomy/list-empty.php:6 -msgid "Create custom taxonomies to classify post type content" -msgstr "" - -#: includes/admin/views/acf-taxonomy/list-empty.php:5 -msgid "Add Your First Taxonomy" -msgstr "" - -#: includes/admin/views/acf-taxonomy/basic-settings.php:122 -msgid "Hierarchical taxonomies can have descendants (like categories)." -msgstr "" - -#: includes/admin/views/acf-taxonomy/basic-settings.php:107 -msgid "Makes a taxonomy visible on the frontend and in the admin dashboard." -msgstr "" - -#: includes/admin/views/acf-taxonomy/basic-settings.php:91 -msgid "One or many post types that can be classified with this taxonomy." -msgstr "" - -#. translators: example taxonomy -#: includes/admin/views/acf-taxonomy/basic-settings.php:60 -msgid "genre" -msgstr "genre" - -#. translators: example taxonomy -#: includes/admin/views/acf-taxonomy/basic-settings.php:42 -msgid "Genre" -msgstr "Genre" - -#. translators: example taxonomy -#: includes/admin/views/acf-taxonomy/basic-settings.php:25 -msgid "Genres" -msgstr "Genres" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1211 -msgid "" -"Optional custom controller to use instead of `WP_REST_Terms_Controller `." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1155 -msgid "Expose this post type in the REST API." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1055 -msgid "Customize the query variable name" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1028 -msgid "" -"Terms can be accessed using the non-pretty permalink, e.g., {query_var}" -"={term_slug}." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:981 -msgid "Parent-child terms in URLs for hierarchical taxonomies." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:941 -msgid "Customize the slug used in the URL" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:924 -msgid "Permalinks for this taxonomy are disabled." -msgstr "" - -#. translators: this string will be appended with the new permalink structure. -#: includes/admin/views/acf-taxonomy/advanced-settings.php:921 -msgid "" -"Rewrite the URL using the taxonomy key as the slug. Your permalink structure " -"will be" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:913 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1030 -#: includes/admin/views/acf-taxonomy/basic-settings.php:57 -msgid "Taxonomy Key" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:911 -msgid "Select the type of permalink to use for this taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:896 -msgid "Display a column for the taxonomy on post type listing screens." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:895 -msgid "Show Admin Column" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:882 -msgid "Show the taxonomy in the quick/bulk edit panel." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:881 -msgid "Quick Edit" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:868 -msgid "List the taxonomy in the Tag Cloud Widget controls." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:867 -msgid "Tag Cloud" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:824 -msgid "" -"A PHP function name to be called for sanitizing taxonomy data saved from a " -"meta box." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:823 -msgid "Meta Box Sanitization Callback" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:805 -msgid "" -"A PHP function name to be called to handle the content of a meta box on your " -"taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:804 -msgid "Register Meta Box Callback" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:763 -msgid "No Meta Box" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:762 -msgid "Custom Meta Box" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:758 -msgid "" -"Controls the meta box on the content editor screen. By default, the " -"Categories meta box is shown for hierarchical taxonomies, and the Tags meta " -"box is shown for non-hierarchical taxonomies." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:757 -msgid "Meta Box" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:746 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:767 -msgid "Categories Meta Box" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:745 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:766 -msgid "Tags Meta Box" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:704 -msgid "A link to a tag" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:703 -msgid "Describes a navigation link block variation used in the block editor." -msgstr "" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:698 -msgid "A link to a %s" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:683 -msgid "Tag Link" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:682 -msgid "" -"Assigns a title for navigation link block variation used in the block editor." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:663 -msgid "← Go to tags" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:662 -msgid "" -"Assigns the text used to link back to the main index after updating a term." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:661 -msgid "Back To Items" -msgstr "" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:657 -msgid "← Go to %s" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:642 -msgid "Tags list" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:641 -msgid "Assigns text to the table hidden heading." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:622 -msgid "Tags list navigation" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:621 -msgid "Assigns text to the table pagination hidden heading." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:597 -msgid "Filter by category" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:596 -msgid "Assigns text to the filter button in the posts lists table." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:595 -msgid "Filter By Item" -msgstr "" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:591 -msgid "Filter by %s" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:575 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:576 -msgid "" -"The description is not prominent by default; however, some themes may show " -"it." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:574 -msgid "Describes the Description field on the Edit Tags screen." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:573 -msgid "Description Field Description" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:554 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:555 -msgid "" -"Assign a parent term to create a hierarchy. The term Jazz, for example, " -"would be the parent of Bebop and Big Band" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:553 -msgid "Describes the Parent field on the Edit Tags screen." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:552 -msgid "Parent Field Description" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:538 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:539 -msgid "" -"The \"slug\" is the URL-friendly version of the name. It is usually all " -"lower case and contains only letters, numbers, and hyphens." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:537 -msgid "Describes the Slug field on the Edit Tags screen." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:536 -msgid "Slug Field Description" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:522 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:523 -msgid "The name is how it appears on your site" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:521 -msgid "Describes the Name field on the Edit Tags screen." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:520 -msgid "Name Field Description" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:507 -msgid "No tags" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:506 -msgid "" -"Assigns the text displayed in the posts and media list tables when no tags " -"or categories are available." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:505 -msgid "No Terms" -msgstr "" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:501 -msgid "No %s" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:486 -msgid "No tags found" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:485 -msgid "" -"Assigns the text displayed when clicking the 'choose from most used' text in " -"the taxonomy meta box when no tags are available, and assigns the text used " -"in the terms list table when there are no items for a taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:484 -msgid "Not Found" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:463 -msgid "Assigns text to the Title field of the Most Used tab." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:462 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:464 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:465 -msgid "Most Used" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:444 -msgid "Choose from the most used tags" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:443 -msgid "" -"Assigns the 'choose from most used' text used in the meta box when " -"JavaScript is disabled. Only used on non-hierarchical taxonomies." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:442 -msgid "Choose From Most Used" -msgstr "" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:438 -msgid "Choose from the most used %s" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:418 -msgid "Add or remove tags" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:417 -msgid "" -"Assigns the add or remove items text used in the meta box when JavaScript is " -"disabled. Only used on non-hierarchical taxonomies" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:416 -msgid "Add Or Remove Items" -msgstr "" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:412 -msgid "Add or remove %s" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:392 -msgid "Separate tags with commas" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:391 -msgid "" -"Assigns the separate item with commas text used in the taxonomy meta box. " -"Only used on non-hierarchical taxonomies." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:390 -msgid "Separate Items With Commas" -msgstr "" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:386 -msgid "Separate %s with commas" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:366 -msgid "Popular Tags" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:365 -msgid "Assigns popular items text. Only used for non-hierarchical taxonomies." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:364 -msgid "Popular Items" -msgstr "" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:361 -msgid "Popular %s" -msgstr "Populaire %s" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:347 -msgid "Search Tags" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:346 -msgid "Assigns search items text." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:323 -msgid "Parent Category:" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:322 -msgid "Assigns parent item text, but with a colon (:) added to the end." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:321 -msgid "Parent Item With Colon" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:298 -msgid "Parent Category" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:297 -msgid "Assigns parent item text. Only used on hierarchical taxonomies." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:296 -msgid "Parent Item" -msgstr "Hoofditem" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:293 -msgid "Parent %s" -msgstr "Hoofd %s" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:278 -msgid "New Tag Name" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:277 -msgid "Assigns the new item name text." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:276 -msgid "New Item Name" -msgstr "" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:273 -msgid "New %s Name" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:258 -msgid "Add New Tag" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:257 -msgid "Assigns the add new item text." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:238 -msgid "Update Tag" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:237 -msgid "Assigns the update item text." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:236 -msgid "Update Item" -msgstr "Item bijwerken" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:233 -msgid "Update %s" -msgstr "Bijwerken %s" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:218 -msgid "View Tag" -msgstr "Tag bekijken" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:217 -msgid "In the admin bar to view term during editing." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:198 -msgid "Edit Tag" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:197 -msgid "At the top of the editor screen when editing a term." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:178 -msgid "All Tags" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:177 -msgid "Assigns the all items text." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:158 -msgid "Assigns the menu name text." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:157 -msgid "Menu Label" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:131 -msgid "Active taxonomies are enabled and registered with WordPress." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:115 -msgid "A descriptive summary of the taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:95 -msgid "A descriptive summary of the term." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:94 -msgid "Term Description" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:76 -msgid "Single word, no spaces. Underscores and dashes allowed." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:75 -msgid "Term Slug" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:56 -msgid "The name of the default term." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:55 -msgid "Term Name" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:41 -msgid "" -"Create a term for the taxonomy that cannot be deleted. It will not be " -"selected for posts by default." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:40 -msgid "Default Term" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:28 -msgid "" -"Whether terms in this taxonomy should be sorted in the order they are " -"provided to `wp_set_object_terms()`." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:27 -msgid "Sort Terms" -msgstr "" - -#: includes/admin/views/acf-post-type/list-empty.php:7 -msgid "Add Post Type" -msgstr "" - -#: includes/admin/views/acf-post-type/list-empty.php:6 -msgid "" -"Expand the functionality of WordPress beyond standard posts and pages with " -"custom post types." -msgstr "" - -#: includes/admin/views/acf-post-type/list-empty.php:5 -msgid "Add Your First Post Type" -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:136 -#: includes/admin/views/acf-taxonomy/basic-settings.php:135 -msgid "I know what I'm doing, show me all the options." -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:135 -#: includes/admin/views/acf-taxonomy/basic-settings.php:134 -msgid "Advanced Configuration" -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:123 -msgid "Hierarchical post types can have descendants (like pages)." -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:122 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:980 -#: includes/admin/views/acf-taxonomy/basic-settings.php:121 -msgid "Hierarchical" -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:107 -msgid "Visible on the frontend and in the admin dashboard." -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:106 -#: includes/admin/views/acf-taxonomy/basic-settings.php:106 -msgid "Public" -msgstr "" - -#. translators: example post type -#: includes/admin/views/acf-post-type/basic-settings.php:59 -msgid "movie" -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:57 -msgid "Lower case letters, underscores and dashes only, Max 20 characters." -msgstr "" - -#. translators: example post type -#: includes/admin/views/acf-post-type/basic-settings.php:41 -msgid "Movie" -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:39 -#: includes/admin/views/acf-taxonomy/basic-settings.php:40 -msgid "Singular Label" -msgstr "" - -#. translators: example post type -#: includes/admin/views/acf-post-type/basic-settings.php:24 -msgid "Movies" -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:22 -#: includes/admin/views/acf-taxonomy/basic-settings.php:23 -msgid "Plural Label" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1270 -msgid "" -"Optional custom controller to use instead of `WP_REST_Posts_Controller`." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1269 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1210 -msgid "Controller Class" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1251 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1191 -msgid "The namespace part of the REST API URL." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1250 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1190 -msgid "Namespace Route" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1232 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1172 -msgid "The base URL for the post type REST API URLs." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1231 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1171 -msgid "Base URL" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1217 -msgid "" -"Exposes this post type in the REST API. Required to use the block editor." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1216 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1154 -msgid "Show In REST API" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1195 -msgid "Customize the query variable name." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1194 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1054 -msgid "Query Variable" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1172 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1032 -msgid "No Query Variable Support" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1171 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1031 -msgid "Custom Query Variable" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1168 -msgid "" -"Items can be accessed using the non-pretty permalink, eg. {post_type}" -"={post_slug}." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1167 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1027 -msgid "Query Variable Support" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1142 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1003 -msgid "URLs for an item and items can be accessed with a query string." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1141 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1002 -msgid "Publicly Queryable" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1120 -msgid "Custom slug for the Archive URL." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1119 -msgid "Archive Slug" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1106 -msgid "" -"Has an item archive that can be customized with an archive template file in " -"your theme." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1105 -msgid "Archive" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1085 -msgid "Pagination support for the items URLs such as the archives." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1084 -msgid "Pagination" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1067 -msgid "RSS feed URL for the post type items." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1066 -msgid "Feed URL" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1048 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:961 -msgid "" -"Alters the permalink structure to add the `WP_Rewrite::$front` prefix to " -"URLs." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1047 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:960 -msgid "Front URL Prefix" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1028 -msgid "Customize the slug used in the URL." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1027 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:940 -msgid "URL Slug" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1011 -msgid "Permalinks for this post type are disabled." -msgstr "" - -#. translators: this string will be appended with the new permalink structure. -#: includes/admin/views/acf-post-type/advanced-settings.php:1010 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:923 -msgid "" -"Rewrite the URL using a custom slug defined in the input below. Your " -"permalink structure will be" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1002 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:915 -msgid "No Permalink (prevent URL rewriting)" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1001 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:914 -msgid "Custom Permalink" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1000 -#: includes/admin/views/acf-post-type/advanced-settings.php:1170 -#: includes/admin/views/acf-post-type/basic-settings.php:56 -msgid "Post Type Key" -msgstr "" - -#. translators: this string will be appended with the new permalink structure. -#: includes/admin/views/acf-post-type/advanced-settings.php:998 -#: includes/admin/views/acf-post-type/advanced-settings.php:1008 -msgid "" -"Rewrite the URL using the post type key as the slug. Your permalink " -"structure will be" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:996 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:910 -msgid "Permalink Rewrite" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:982 -msgid "Delete items by a user when that user is deleted." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:981 -msgid "Delete With User" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:967 -msgid "Allow the post type to be exported from 'Tools' > 'Export'." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:966 -msgid "Can Export" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:935 -msgid "Optionally provide a plural to be used in capabilities." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:934 -msgid "Plural Capability Name" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:916 -msgid "Choose another post type to base the capabilities for this post type." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:915 -msgid "Singular Capability Name" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:901 -msgid "" -"By default the capabilities of the post type will inherit the 'Post' " -"capability names, eg. edit_post, delete_posts. Enable to use post type " -"specific capabilities, eg. edit_{singular}, delete_{plural}." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:900 -msgid "Rename Capabilities" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:885 -msgid "Exclude From Search" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:872 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:854 -msgid "" -"Allow items to be added to menus in the 'Appearance' > 'Menus' screen. Must " -"be turned on in 'Screen options'." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:871 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:853 -msgid "Appearance Menus Support" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:853 -msgid "Appears as an item in the 'New' menu in the admin bar." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:852 -msgid "Show In Admin Bar" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:821 -msgid "" -"A PHP function name to be called when setting up the meta boxes for the edit " -"screen." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:820 -msgid "Custom Meta Box Callback" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:800 -msgid "Menu Icon" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:782 -msgid "The position in the sidebar menu in the admin dashboard." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:781 -msgid "Menu Position" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:763 -msgid "" -"By default the post type will get a new top level item in the admin menu. If " -"an existing top level item is supplied here, the post type will be added as " -"a submenu item under it." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:762 -msgid "Admin Menu Parent" -msgstr "" - -#. translators: %s = "dashicon class name", link to the WordPress dashicon -#. documentation. -#: includes/admin/views/acf-post-type/advanced-settings.php:750 -msgid "" -"The icon used for the post type menu item in the admin dashboard. Can be a " -"URL or %s to use for the icon." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:745 -msgid "Dashicon class name" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:734 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:734 -msgid "Admin editor navigation in the sidebar menu." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:733 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:733 -msgid "Show In Admin Menu" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:720 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:719 -msgid "Items can be edited and managed in the admin dashboard." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:719 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:718 -msgid "Show In UI" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:689 -msgid "A link to a post." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:688 -msgid "Description for a navigation link block variation." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:687 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:702 -msgid "Item Link Description" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:683 -msgid "A link to a %s." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:668 -msgid "Post Link" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:667 -msgid "Title for a navigation link block variation." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:666 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:681 -msgid "Item Link" -msgstr "" - -#. translators: %s Singular form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:663 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:678 -msgid "%s Link" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:648 -msgid "Post updated." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:647 -msgid "In the editor notice after an item is updated." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:646 -msgid "Item Updated" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:643 -msgid "%s updated." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:628 -msgid "Post scheduled." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:627 -msgid "In the editor notice after scheduling an item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:626 -msgid "Item Scheduled" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:623 -msgid "%s scheduled." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:608 -msgid "Post reverted to draft." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:607 -msgid "In the editor notice after reverting an item to draft." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:606 -msgid "Item Reverted To Draft" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:603 -msgid "%s reverted to draft." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:588 -msgid "Post published privately." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:587 -msgid "In the editor notice after publishing a private item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:586 -msgid "Item Published Privately" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:583 -msgid "%s published privately." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:568 -msgid "Post published." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:567 -msgid "In the editor notice after publishing an item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:566 -msgid "Item Published" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:563 -msgid "%s published." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:548 -msgid "Posts list" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:547 -msgid "Used by screen readers for the items list on the post type list screen." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:546 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:640 -msgid "Items List" -msgstr "" - -#. translators: %s Plural form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:543 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:637 -msgid "%s list" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:528 -msgid "Posts list navigation" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:527 -msgid "" -"Used by screen readers for the filter list pagination on the post type list " -"screen." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:526 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:620 -msgid "Items List Navigation" -msgstr "" - -#. translators: %s Plural form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:523 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:617 -msgid "%s list navigation" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:507 -msgid "Filter posts by date" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:506 -msgid "" -"Used by screen readers for the filter by date heading on the post type list " -"screen." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:505 -msgid "Filter Items By Date" -msgstr "" - -#. translators: %s Plural form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:501 -msgid "Filter %s by date" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:486 -msgid "Filter posts list" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:485 -msgid "" -"Used by screen readers for the filter links heading on the post type list " -"screen." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:484 -msgid "Filter Items List" -msgstr "" - -#. translators: %s Plural form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:480 -msgid "Filter %s list" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:464 -msgid "In the media modal showing all media uploaded to this item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:463 -msgid "Uploaded To This Item" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:459 -msgid "Uploaded to this %s" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:444 -msgid "Insert into post" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:443 -msgid "As the button label when adding media to content." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:442 -msgid "Insert Into Media Button" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:438 -msgid "Insert into %s" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:423 -msgid "Use as featured image" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:422 -msgid "" -"As the button label for selecting to use an image as the featured image." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:421 -msgid "Use Featured Image" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:408 -msgid "Remove featured image" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:407 -msgid "As the button label when removing the featured image." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:406 -msgid "Remove Featured Image" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:393 -msgid "Set featured image" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:392 -msgid "As the button label when setting the featured image." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:391 -msgid "Set Featured Image" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:378 -msgid "Featured image" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:377 -msgid "In the editor used for the title of the featured image meta box." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:376 -msgid "Featured Image Meta Box" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:363 -msgid "Post Attributes" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:362 -msgid "In the editor used for the title of the post attributes meta box." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:361 -msgid "Attributes Meta Box" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:358 -msgid "%s Attributes" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:343 -msgid "Post Archives" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:342 -msgid "" -"Adds 'Post Type Archive' items with this label to the list of posts shown " -"when adding items to an existing menu in a CPT with archives enabled. Only " -"appears when editing menus in 'Live Preview' mode and a custom archive slug " -"has been provided." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:341 -msgid "Archives Nav Menu" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:338 -msgid "%s Archives" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:323 -msgid "No posts found in Trash" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:322 -msgid "" -"At the top of the post type list screen when there are no posts in the trash." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:321 -msgid "No Items Found in Trash" -msgstr "" - -#. translators: %s Plural form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:317 -msgid "No %s found in Trash" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:302 -msgid "No posts found" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:301 -msgid "" -"At the top of the post type list screen when there are no posts to display." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:300 -msgid "No Items Found" -msgstr "" - -#. translators: %s Plural form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:296 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:480 -msgid "No %s found" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:281 -msgid "Search Posts" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:280 -msgid "At the top of the items screen when searching for an item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:279 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:345 -msgid "Search Items" -msgstr "" - -#. translators: %s Singular form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:276 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:342 -msgid "Search %s" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:261 -msgid "Parent Page:" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:260 -msgid "For hierarchical types in the post type list screen." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:259 -msgid "Parent Item Prefix" -msgstr "" - -#. translators: %s Singular form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:256 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:318 -msgid "Parent %s:" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:241 -msgid "New Post" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:239 -msgid "New Item" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:236 -msgid "New %s" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:206 -msgid "Add New Post" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:205 -msgid "At the top of the editor screen when adding a new item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:204 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:256 -msgid "Add New Item" -msgstr "" - -#. translators: %s Singular form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:201 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:253 -msgid "Add New %s" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:186 -msgid "View Posts" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:185 -msgid "" -"Appears in the admin bar in the 'All Posts' view, provided the post type " -"supports archives and the home page is not an archive of that post type." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:184 -msgid "View Items" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:166 -msgid "View Post" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:165 -msgid "In the admin bar to view item when editing it." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:164 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:216 -msgid "View Item" -msgstr "" - -#. translators: %s Singular form of post type name -#. translators: %s Plural form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:161 -#: includes/admin/views/acf-post-type/advanced-settings.php:181 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:213 -msgid "View %s" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:146 -msgid "Edit Post" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:145 -msgid "At the top of the editor screen when editing an item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:144 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:196 -msgid "Edit Item" -msgstr "" - -#. translators: %s Singular form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:141 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:193 -msgid "Edit %s" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:126 -msgid "All Posts" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:125 -#: includes/admin/views/acf-post-type/advanced-settings.php:220 -#: includes/admin/views/acf-post-type/advanced-settings.php:240 -msgid "In the post type submenu in the admin dashboard." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:124 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:176 -msgid "All Items" -msgstr "" - -#. translators: %s Plural form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:121 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:173 -msgid "All %s" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:105 -msgid "Admin menu name for the post type." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:104 -msgid "Menu Name" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:90 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:142 -msgid "Regenerate all labels using the Singular and Plural labels" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:88 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:140 -msgid "Regenerate" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:79 -msgid "Active post types are enabled and registered with WordPress." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:63 -msgid "A descriptive summary of the post type." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:48 -msgid "Add Custom" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:42 -msgid "Enable various features in the content editor." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:31 -msgid "Post Formats" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:25 -msgid "Editor" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:24 -msgid "Trackbacks" -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:87 -msgid "Select existing taxonomies to classify items of the post type." -msgstr "" - -#: includes/admin/views/acf-field-group/field.php:145 -msgid "Browse Fields" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:292 -msgid "Nothing to import" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:287 -msgid ". The Custom Post Type UI plugin can be deactivated." -msgstr "" - -#. translators: %d - number of items imported from CPTUI -#: includes/admin/tools/class-acf-admin-tool-import.php:278 -msgid "Imported %d item from Custom Post Type UI -" -msgid_plural "Imported %d items from Custom Post Type UI -" -msgstr[0] "" -msgstr[1] "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:262 -msgid "Failed to import taxonomies." -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:244 -msgid "Failed to import post types." -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:233 -msgid "Nothing from Custom Post Type UI plugin selected for import." -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:209 -msgid "Imported 1 item" -msgid_plural "Imported %s items" -msgstr[0] "" -msgstr[1] "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:122 -msgid "" -"Importing a Post Type or Taxonomy with the same key as one that already " -"exists will overwrite the settings for the existing Post Type or Taxonomy " -"with those of the import." -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:111 -#: includes/admin/tools/class-acf-admin-tool-import.php:127 -msgid "Import from Custom Post Type UI" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:412 -msgid "" -"The following code can be used to register a local version of the selected " -"items. Storing field groups, post types, or taxonomies locally can provide " -"many benefits such as faster load times, version control & dynamic fields/" -"settings. Simply copy and paste the following code to your theme's functions." -"php file or include it within an external file, then deactivate or delete " -"the items from the ACF admin." -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:411 -msgid "Export - Generate PHP" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:384 -msgid "Export" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:276 -msgid "Select Taxonomies" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:254 -msgid "Select Post Types" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:167 -msgid "Exported 1 item." -msgid_plural "Exported %s items." -msgstr[0] "" -msgstr[1] "" - -#: includes/admin/post-types/admin-taxonomy.php:129 -#: assets/build/js/acf-internal-post-type.js:182 -#: assets/build/js/acf-internal-post-type.js:256 -msgid "Category" -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:127 -#: assets/build/js/acf-internal-post-type.js:179 -#: assets/build/js/acf-internal-post-type.js:253 -msgid "Tag" -msgstr "" - -#. translators: %s taxonomy name -#: includes/admin/post-types/admin-taxonomy.php:82 -msgid "%s taxonomy created" -msgstr "" - -#. translators: %s taxonomy name -#: includes/admin/post-types/admin-taxonomy.php:76 -msgid "%s taxonomy updated" -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:56 -msgid "Taxonomy draft updated." -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:55 -msgid "Taxonomy scheduled for." -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:54 -msgid "Taxonomy submitted." -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:53 -msgid "Taxonomy saved." -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:49 -msgid "Taxonomy deleted." -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:48 -msgid "Taxonomy updated." -msgstr "" - -#: includes/admin/post-types/admin-taxonomies.php:377 -#: includes/admin/post-types/admin-taxonomy.php:157 -msgid "" -"This taxonomy could not be registered because its key is in use by another " -"taxonomy registered by another plugin or theme." -msgstr "" - -#. translators: %s number of taxonomies synchronized -#: includes/admin/post-types/admin-taxonomies.php:359 -msgid "Taxonomy synchronized." -msgid_plural "%s taxonomies synchronized." -msgstr[0] "" -msgstr[1] "" - -#. translators: %s number of taxonomies duplicated -#: includes/admin/post-types/admin-taxonomies.php:352 -msgid "Taxonomy duplicated." -msgid_plural "%s taxonomies duplicated." -msgstr[0] "" -msgstr[1] "" - -#. translators: %s number of taxonomies deactivated -#: includes/admin/post-types/admin-taxonomies.php:345 -msgid "Taxonomy deactivated." -msgid_plural "%s taxonomies deactivated." -msgstr[0] "" -msgstr[1] "" - -#. translators: %s number of taxonomies activated -#: includes/admin/post-types/admin-taxonomies.php:338 -msgid "Taxonomy activated." -msgid_plural "%s taxonomies activated." -msgstr[0] "" -msgstr[1] "" - -#: includes/admin/post-types/admin-taxonomies.php:139 -msgid "Terms" -msgstr "" - -#. translators: %s number of post types synchronized -#: includes/admin/post-types/admin-post-types.php:352 -msgid "Post type synchronized." -msgid_plural "%s post types synchronized." -msgstr[0] "" -msgstr[1] "" - -#. translators: %s number of post types duplicated -#: includes/admin/post-types/admin-post-types.php:345 -msgid "Post type duplicated." -msgid_plural "%s post types duplicated." -msgstr[0] "" -msgstr[1] "" - -#. translators: %s number of post types deactivated -#: includes/admin/post-types/admin-post-types.php:338 -msgid "Post type deactivated." -msgid_plural "%s post types deactivated." -msgstr[0] "" -msgstr[1] "" - -#. translators: %s number of post types activated -#: includes/admin/post-types/admin-post-types.php:331 -msgid "Post type activated." -msgid_plural "%s post types activated." -msgstr[0] "" -msgstr[1] "" - -#: includes/admin/post-types/admin-post-types.php:112 -#: includes/admin/post-types/admin-taxonomies.php:137 -#: includes/admin/tools/class-acf-admin-tool-import.php:82 -#: includes/admin/views/acf-taxonomy/basic-settings.php:82 -#: includes/post-types/class-acf-post-type.php:91 -msgid "Post Types" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:162 -#: includes/admin/post-types/admin-taxonomy.php:164 -msgid "Advanced Settings" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:161 -#: includes/admin/post-types/admin-taxonomy.php:163 -msgid "Basic Settings" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:155 -#: includes/admin/post-types/admin-post-types.php:370 -msgid "" -"This post type could not be registered because its key is in use by another " -"post type registered by another plugin or theme." -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:128 -#: assets/build/js/acf-internal-post-type.js:176 -#: assets/build/js/acf-internal-post-type.js:250 -msgid "Pages" -msgstr "" - -#: includes/admin/admin-internal-post-type.php:355 -msgid "Link Existing Field Groups" -msgstr "" - -#. translators: %s post type name -#: includes/admin/post-types/admin-post-type.php:80 -msgid "%s post type created" -msgstr "" - -#. translators: %s taxonomy name -#: includes/admin/post-types/admin-taxonomy.php:78 -msgid "Add fields to %s" -msgstr "" - -#. translators: %s post type name -#: includes/admin/post-types/admin-post-type.php:76 -msgid "%s post type updated" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:56 -msgid "Post type draft updated." -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:55 -msgid "Post type scheduled for." -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:54 -msgid "Post type submitted." -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:53 -msgid "Post type saved." -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:50 -msgid "Post type updated." -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:49 -msgid "Post type deleted." -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:120 -#: assets/build/js/acf-field-group.js:1146 -#: assets/build/js/acf-field-group.js:1366 -msgid "Type to search..." -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:105 -#: assets/build/js/acf-field-group.js:1172 -#: assets/build/js/acf-field-group.js:2319 -#: assets/build/js/acf-field-group.js:1414 -#: assets/build/js/acf-field-group.js:2727 -msgid "PRO Only" -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:97 -#: assets/build/js/acf-internal-post-type.js:308 -#: assets/build/js/acf-internal-post-type.js:417 -msgid "Field groups linked successfully." -msgstr "" - -#. translators: %s - URL to ACF tools page. -#: includes/admin/admin.php:195 -msgid "" -"Import Post Types and Taxonomies registered with Custom Post Type UI and " -"manage them with ACF. Get Started." -msgstr "" - -#: includes/admin/admin.php:48 includes/admin/admin.php:267 -msgid "ACF" -msgstr "" - -#: includes/admin/admin-internal-post-type.php:322 -msgid "taxonomy" -msgstr "" - -#: includes/admin/admin-internal-post-type.php:322 -msgid "post type" -msgstr "" - -#: includes/admin/admin-internal-post-type.php:346 -msgid "Done" -msgstr "" - -#: includes/admin/admin-internal-post-type.php:332 -msgid "Field Group(s)" -msgstr "" - -#: includes/admin/admin-internal-post-type.php:331 -msgid "Select one or many field groups..." -msgstr "" - -#: includes/admin/admin-internal-post-type.php:330 -msgid "Please select the field groups to link." -msgstr "" - -#: includes/admin/admin-internal-post-type.php:288 -msgid "Field group linked successfully." -msgid_plural "Field groups linked successfully." -msgstr[0] "" -msgstr[1] "" - -#: includes/admin/admin-internal-post-type-list.php:261 -#: includes/admin/post-types/admin-post-types.php:371 -#: includes/admin/post-types/admin-taxonomies.php:378 -msgctxt "post status" -msgid "Registration Failed" -msgstr "" - -#: includes/admin/admin-internal-post-type-list.php:260 -msgid "" -"This item could not be registered because its key is in use by another item " -"registered by another plugin or theme." -msgstr "" - -#: includes/acf-internal-post-type-functions.php:482 -#: includes/acf-internal-post-type-functions.php:511 -msgid "REST API" -msgstr "" - -#: includes/acf-internal-post-type-functions.php:481 -#: includes/acf-internal-post-type-functions.php:510 -#: includes/acf-internal-post-type-functions.php:537 -msgid "Permissions" -msgstr "" - -#: includes/acf-internal-post-type-functions.php:480 -#: includes/acf-internal-post-type-functions.php:509 -msgid "URLs" -msgstr "" - -#: includes/acf-internal-post-type-functions.php:479 -#: includes/acf-internal-post-type-functions.php:508 -#: includes/acf-internal-post-type-functions.php:535 -msgid "Visibility" -msgstr "" - -#: includes/acf-internal-post-type-functions.php:478 -#: includes/acf-internal-post-type-functions.php:507 -#: includes/acf-internal-post-type-functions.php:536 -msgid "Labels" -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:269 -msgid "Field Settings Tabs" -msgstr "" - -#. Author URI of the plugin -msgid "" -"https://wpengine.com/?utm_source=wordpress." -"org&utm_medium=referral&utm_campaign=plugin_directory&utm_content=advanced_custom_fields" -msgstr "" -"https://wpengine.com/?utm_source=wordpress." -"org&utm_medium=referral&utm_campaign=plugin_directory&utm_content=advanced_custom_fields" - -#: includes/api/api-template.php:867 -msgid "[ACF shortcode value disabled for preview]" -msgstr "" - -#: includes/admin/admin-internal-post-type.php:298 -#: includes/admin/post-types/admin-field-group.php:571 -msgid "Close Modal" -msgstr "Modaal sluiten" - -#: includes/admin/post-types/admin-field-group.php:96 -#: assets/build/js/acf-field-group.js:1670 -#: assets/build/js/acf-field-group.js:1993 -msgid "Field moved to other group" -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:95 -#: assets/build/js/acf.js:1437 assets/build/js/acf.js:1517 -msgid "Close modal" -msgstr "" - -#: includes/fields/class-acf-field-tab.php:125 -msgid "Start a new group of tabs at this tab." -msgstr "" - -#: includes/fields/class-acf-field-tab.php:124 -msgid "New Tab Group" -msgstr "" - -#: includes/fields/class-acf-field-select.php:451 -#: includes/fields/class-acf-field-true_false.php:200 -msgid "Use a stylized checkbox using select2" -msgstr "Een gestileerd selectievakje gebruiken met select2" - -#: includes/fields/class-acf-field-radio.php:260 -msgid "Save Other Choice" -msgstr "Andere keuze opslaan" - -#: includes/fields/class-acf-field-radio.php:249 -msgid "Allow Other Choice" -msgstr "Andere keuze toestaan" - -#: includes/fields/class-acf-field-checkbox.php:450 -msgid "Add Toggle All" -msgstr "Toevoegen toggle alle" - -#: includes/fields/class-acf-field-checkbox.php:409 -msgid "Save Custom Values" -msgstr "Aangepaste waarden opslaan" - -#: includes/fields/class-acf-field-checkbox.php:398 -msgid "Allow Custom Values" -msgstr "Aangepaste waarden toestaan" - -#: includes/fields/class-acf-field-checkbox.php:148 -msgid "Checkbox custom values cannot be empty. Uncheck any empty values." -msgstr "" -"Aangepaste waarden van het selectievakje mogen niet leeg zijn. Vink lege " -"waarden uit." - -#: includes/admin/views/global/navigation.php:248 -msgid "Updates" -msgstr "Updates" - -#: includes/admin/views/global/navigation.php:176 -msgid "Advanced Custom Fields logo" -msgstr "Advanced Custom Fields logo" - -#: includes/admin/views/global/form-top.php:89 -msgid "Save Changes" -msgstr "Wijzigingen opslaan" - -#: includes/admin/views/global/form-top.php:76 -msgid "Field Group Title" -msgstr "Veldgroep titel" - -#: includes/admin/views/acf-post-type/advanced-settings.php:704 -#: includes/admin/views/global/form-top.php:3 -msgid "Add title" -msgstr "Titel toevoegen" - -#. translators: %s url to getting started guide -#: includes/admin/views/acf-field-group/list-empty.php:20 -#: includes/admin/views/acf-post-type/list-empty.php:12 -#: includes/admin/views/acf-taxonomy/list-empty.php:12 -#: includes/admin/views/options-page-preview.php:13 -msgid "" -"New to ACF? Take a look at our getting " -"started guide." -msgstr "" -"Ben je nieuw bij ACF? Bekijk onze startersgids." - -#: includes/admin/views/acf-field-group/list-empty.php:15 -msgid "Add Field Group" -msgstr "Veldgroep toevoegen" - -#. translators: %s url to creating a field group page -#: includes/admin/views/acf-field-group/list-empty.php:10 -msgid "" -"ACF uses field groups to group custom " -"fields together, and then attach those fields to edit screens." -msgstr "" -"ACF gebruikt veldgroepen om aangepaste " -"velden te groeperen, en die velden vervolgens te koppelen aan " -"bewerkingsschermen." - -#: includes/admin/views/acf-field-group/list-empty.php:5 -msgid "Add Your First Field Group" -msgstr "Je eerste veldgroep toevoegen" - -#: includes/admin/admin-options-pages-preview.php:28 -#: includes/admin/views/acf-field-group/pro-features.php:54 -#: includes/admin/views/global/navigation.php:86 -#: includes/admin/views/global/navigation.php:250 -msgid "Options Pages" -msgstr "Opties pagina's" - -#: includes/admin/views/acf-field-group/pro-features.php:50 -msgid "ACF Blocks" -msgstr "ACF blokken" - -#: includes/admin/views/acf-field-group/pro-features.php:58 -msgid "Gallery Field" -msgstr "Galerij veld" - -#: includes/admin/views/acf-field-group/pro-features.php:38 -msgid "Flexible Content Field" -msgstr "Flexibel inhoudsveld" - -#: includes/admin/views/acf-field-group/pro-features.php:42 -msgid "Repeater Field" -msgstr "Herhaler veld" - -#: includes/admin/views/global/navigation.php:212 -msgid "Unlock Extra Features with ACF PRO" -msgstr "Ontgrendel extra functies met ACF PRO" - -#: includes/admin/views/acf-field-group/options.php:267 -msgid "Delete Field Group" -msgstr "Veldgroep verwijderen" - -#. translators: 1: Post creation date 2: Post creation time -#: includes/admin/views/acf-field-group/options.php:261 -msgid "Created on %1$s at %2$s" -msgstr "Gemaakt op %1$s om %2$s" - -#: includes/acf-field-group-functions.php:497 -msgid "Group Settings" -msgstr "Groepsinstellingen" - -#: includes/acf-field-group-functions.php:495 -msgid "Location Rules" -msgstr "Locatieregels" - -#. translators: %s url to field types list -#: includes/admin/views/acf-field-group/fields.php:72 -msgid "" -"Choose from over 30 field types. Learn " -"more." -msgstr "" -"Kies uit meer dan 30 veldtypes. Meer " -"informatie." - -#: includes/admin/views/acf-field-group/fields.php:65 -msgid "" -"Get started creating new custom fields for your posts, pages, custom post " -"types and other WordPress content." -msgstr "" -"Ga aan de slag met het maken van nieuwe aangepaste velden voor je berichten, " -"pagina's, aangepaste berichttypes en andere WordPress inhoud." - -#: includes/admin/views/acf-field-group/fields.php:64 -msgid "Add Your First Field" -msgstr "Voeg je eerste veld toe" - -#. translators: A symbol (or text, if not available in your locale) meaning -#. "Order Number", in terms of positional placement. -#: includes/admin/views/acf-field-group/fields.php:43 -msgid "#" -msgstr "#" - -#: includes/admin/views/acf-field-group/fields.php:33 -#: includes/admin/views/acf-field-group/fields.php:67 -#: includes/admin/views/acf-field-group/fields.php:103 -#: includes/admin/views/global/form-top.php:85 -msgid "Add Field" -msgstr "Veld toevoegen" - -#: includes/acf-field-group-functions.php:496 includes/fields.php:410 -msgid "Presentation" -msgstr "Presentatie" - -#: includes/fields.php:409 -msgid "Validation" -msgstr "Validatie" - -#: includes/acf-internal-post-type-functions.php:477 -#: includes/acf-internal-post-type-functions.php:506 includes/fields.php:408 -msgid "General" -msgstr "Algemeen" - -#: includes/admin/tools/class-acf-admin-tool-import.php:70 -msgid "Import JSON" -msgstr "JSON importeren" - -#: includes/admin/tools/class-acf-admin-tool-export.php:392 -msgid "Export As JSON" -msgstr "Als JSON exporteren" - -#. translators: %s number of field groups deactivated -#: includes/admin/post-types/admin-field-groups.php:367 -msgid "Field group deactivated." -msgid_plural "%s field groups deactivated." -msgstr[0] "Veldgroep gedeactiveerd." -msgstr[1] "%s veldgroep gedeactiveerd." - -#. translators: %s number of field groups activated -#: includes/admin/post-types/admin-field-groups.php:360 -msgid "Field group activated." -msgid_plural "%s field groups activated." -msgstr[0] "Veldgroep geactiveerd." -msgstr[1] "%s veldgroep geactiveerd." - -#: includes/admin/admin-internal-post-type-list.php:452 -#: includes/admin/admin-internal-post-type-list.php:478 -msgid "Deactivate" -msgstr "Deactiveren" - -#: includes/admin/admin-internal-post-type-list.php:452 -msgid "Deactivate this item" -msgstr "Deactiveer dit item" - -#: includes/admin/admin-internal-post-type-list.php:448 -#: includes/admin/admin-internal-post-type-list.php:477 -msgid "Activate" -msgstr "Activeren" - -#: includes/admin/admin-internal-post-type-list.php:448 -msgid "Activate this item" -msgstr "Activeer dit item" - -#: includes/admin/post-types/admin-field-group.php:92 -#: assets/build/js/acf-field-group.js:2812 -#: assets/build/js/acf-field-group.js:3313 -msgid "Move field group to trash?" -msgstr "Veldgroep naar prullenmand verplaatsen?" - -#: acf.php:497 includes/admin/admin-internal-post-type-list.php:248 -#: includes/admin/post-types/admin-field-group.php:297 -#: includes/admin/post-types/admin-post-type.php:295 -#: includes/admin/post-types/admin-taxonomy.php:297 -msgctxt "post status" -msgid "Inactive" -msgstr "Inactief" - -#. Author of the plugin -msgid "WP Engine" -msgstr "WP Engine" - -#: acf.php:555 -msgid "" -"Advanced Custom Fields and Advanced Custom Fields PRO should not be active " -"at the same time. We've automatically deactivated Advanced Custom Fields PRO." -msgstr "" -"Advanced Custom Fields and Advanced Custom Fields PRO mogen niet " -"tegelijkertijd actief zijn. We hebben Advanced Custom Fields PRO automatisch " -"gedeactiveerd." - -#: acf.php:553 -msgid "" -"Advanced Custom Fields and Advanced Custom Fields PRO should not be active " -"at the same time. We've automatically deactivated Advanced Custom Fields." -msgstr "" -"Advanced Custom Fields en Advanced Custom Fields PRO mogen niet " -"tegelijkertijd actief zijn. We hebben Advanced Custom Fields automatisch " -"gedeactiveerd." - -#: includes/acf-value-functions.php:374 -msgid "" -"%1$s - We've detected one or more calls to retrieve ACF " -"field values before ACF has been initialized. This is not supported and can " -"result in malformed or missing data. Learn how to fix this." -msgstr "" -"%1$s - We hebben een of meer aanroepen gedetecteerd om ACF " -"veldwaarden op te halen voordat ACF is geïnitialiseerd. Dit wordt niet " -"ondersteund en kan leiden tot verkeerd ingedeelde of ontbrekende gegevens. " -"Meer informatie over hoe je dit kan " -"oplossen.." - -#: includes/fields/class-acf-field-user.php:551 -msgid "%1$s must have a user with the %2$s role." -msgid_plural "%1$s must have a user with one of the following roles: %2$s" -msgstr[0] "%1$s moet een gebruiker hebben met de rol %2$s." -msgstr[1] "%1$s moet een gebruiker hebben met een van de volgende rollen %2$s" - -#: includes/fields/class-acf-field-user.php:542 -msgid "%1$s must have a valid user ID." -msgstr "%1$s moet een geldig gebruikers ID hebben." - -#: includes/fields/class-acf-field-user.php:380 -msgid "Invalid request." -msgstr "Ongeldige aanvraag." - -#: includes/fields/class-acf-field-select.php:684 -msgid "%1$s is not one of %2$s" -msgstr "%1$s is niet een van %2$s" - -#: includes/fields/class-acf-field-post_object.php:700 -msgid "%1$s must have term %2$s." -msgid_plural "%1$s must have one of the following terms: %2$s" -msgstr[0] "%1$s moet term %2$s hebben." -msgstr[1] "%1$s moet een van de volgende termen hebben %2$s" - -#: includes/fields/class-acf-field-post_object.php:684 -msgid "%1$s must be of post type %2$s." -msgid_plural "%1$s must be of one of the following post types: %2$s" -msgstr[0] "%1$s moet van het berichttype %2$s zijn." -msgstr[1] "%1$s moet van een van de volgende berichttypes zijn %2$s" - -#: includes/fields/class-acf-field-post_object.php:675 -msgid "%1$s must have a valid post ID." -msgstr "%1$s moet een geldig bericht ID hebben." - -#: includes/fields/class-acf-field-file.php:475 -msgid "%s requires a valid attachment ID." -msgstr "%s vereist een geldig bijlage ID." - -#: includes/admin/views/acf-field-group/options.php:233 -msgid "Show in REST API" -msgstr "In REST-API tonen" - -#: includes/fields/class-acf-field-color_picker.php:168 -msgid "Enable Transparency" -msgstr "Transparantie inschakelen" - -#: includes/fields/class-acf-field-color_picker.php:187 -msgid "RGBA Array" -msgstr "RGBA array" - -#: includes/fields/class-acf-field-color_picker.php:98 -msgid "RGBA String" -msgstr "RGBA string" - -#: includes/fields/class-acf-field-color_picker.php:97 -#: includes/fields/class-acf-field-color_picker.php:186 -msgid "Hex String" -msgstr "Hex string" - -#: includes/admin/views/browse-fields-modal.php:65 -msgid "Upgrade to PRO" -msgstr "Upgraden naar PRO" - -#: includes/admin/post-types/admin-field-group.php:297 -#: includes/admin/post-types/admin-post-type.php:295 -#: includes/admin/post-types/admin-taxonomy.php:297 -msgctxt "post status" -msgid "Active" -msgstr "Actief" - -#: includes/fields/class-acf-field-email.php:181 -msgid "'%s' is not a valid email address" -msgstr "'%s' is geen geldig e-mailadres" - -#: includes/fields/class-acf-field-color_picker.php:76 -msgid "Color value" -msgstr "Kleurwaarde" - -#: includes/fields/class-acf-field-color_picker.php:74 -msgid "Select default color" -msgstr "Selecteer standaardkleur" - -#: includes/fields/class-acf-field-color_picker.php:72 -msgid "Clear color" -msgstr "Heldere kleur" - -#: includes/acf-wp-functions.php:90 -msgid "Blocks" -msgstr "Blokken" - -#: includes/acf-wp-functions.php:86 -msgid "Options" -msgstr "Opties" - -#: includes/acf-wp-functions.php:82 -msgid "Users" -msgstr "Gebruikers" - -#: includes/acf-wp-functions.php:78 -msgid "Menu items" -msgstr "Menu-items" - -#: includes/acf-wp-functions.php:70 -msgid "Widgets" -msgstr "Widgets" - -#: includes/acf-wp-functions.php:62 -msgid "Attachments" -msgstr "Bijlagen" - -#: includes/acf-wp-functions.php:57 -#: includes/admin/post-types/admin-post-types.php:137 -#: includes/admin/post-types/admin-taxonomies.php:112 -#: includes/admin/tools/class-acf-admin-tool-import.php:93 -#: includes/admin/views/acf-post-type/basic-settings.php:86 -#: includes/post-types/class-acf-taxonomy.php:90 -#: includes/post-types/class-acf-taxonomy.php:91 -msgid "Taxonomies" -msgstr "Taxonomieën" - -#: includes/acf-wp-functions.php:44 -#: includes/admin/post-types/admin-post-type.php:126 -#: includes/admin/post-types/admin-post-types.php:139 -#: includes/admin/views/acf-post-type/advanced-settings.php:106 -#: assets/build/js/acf-internal-post-type.js:173 -#: assets/build/js/acf-internal-post-type.js:247 -msgid "Posts" -msgstr "Berichten" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:76 -msgid "Last updated: %s" -msgstr "Laatst bijgewerkt: %s" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:70 -msgid "Sorry, this post is unavailable for diff comparison." -msgstr "Dit bericht is niet beschikbaar voor verschil vergelijking." - -#: includes/ajax/class-acf-ajax-local-json-diff.php:42 -msgid "Invalid field group parameter(s)." -msgstr "Ongeldige veldgroep parameter(s)." - -#: includes/admin/admin-internal-post-type-list.php:413 -msgid "Awaiting save" -msgstr "In afwachting van opslaan" - -#: includes/admin/admin-internal-post-type-list.php:410 -msgid "Saved" -msgstr "Opgeslagen" - -#: includes/admin/admin-internal-post-type-list.php:406 -#: includes/admin/tools/class-acf-admin-tool-import.php:49 -msgid "Import" -msgstr "Import" - -#: includes/admin/admin-internal-post-type-list.php:402 -msgid "Review changes" -msgstr "Wijzigingen beoordelen" - -#: includes/admin/admin-internal-post-type-list.php:378 -msgid "Located in: %s" -msgstr "Gelegen in: %s" - -#: includes/admin/admin-internal-post-type-list.php:375 -msgid "Located in plugin: %s" -msgstr "Gelegen in plugin: %s" - -#: includes/admin/admin-internal-post-type-list.php:372 -msgid "Located in theme: %s" -msgstr "Gelegen in thema: %s" - -#: includes/admin/post-types/admin-field-groups.php:261 -msgid "Various" -msgstr "Diverse" - -#: includes/admin/admin-internal-post-type-list.php:216 -#: includes/admin/admin-internal-post-type-list.php:485 -msgid "Sync changes" -msgstr "Synchroniseer wijzigingen" - -#: includes/admin/admin-internal-post-type-list.php:215 -msgid "Loading diff" -msgstr "Diff laden" - -#: includes/admin/admin-internal-post-type-list.php:214 -msgid "Review local JSON changes" -msgstr "Lokale JSON wijzigingen beoordelen" - -#: includes/admin/admin.php:170 -msgid "Visit website" -msgstr "Website bezoeken" - -#: includes/admin/admin.php:169 -msgid "View details" -msgstr "Bekijk details" - -#: includes/admin/admin.php:168 -msgid "Version %s" -msgstr "Versie %s" - -#: includes/admin/admin.php:167 -msgid "Information" -msgstr "Informatie" - -#: includes/admin/admin.php:158 -msgid "" -"Help Desk. The support professionals on " -"our Help Desk will assist with your more in depth, technical challenges." -msgstr "" -"Helpdesk. De ondersteuning " -"professionals op onze helpdesk zullen je helpen met meer diepgaande, " -"technische uitdagingen." - -#: includes/admin/admin.php:154 -msgid "" -"Discussions. We have an active and " -"friendly community on our Community Forums who may be able to help you " -"figure out the 'how-tos' of the ACF world." -msgstr "" -"Discussies. We hebben een actieve en " -"vriendelijke community op onze communityforums die je misschien kunnen " -"helpen bij het uitzoeken van de 'how-to's' van de ACF wereld." - -#: includes/admin/admin.php:150 -msgid "" -"Documentation. Our extensive " -"documentation contains references and guides for most situations you may " -"encounter." -msgstr "" -"Documentatie. Onze uitgebreide " -"documentatie bevat referenties en handleidingen voor de meeste situaties die " -"je kan tegenkomen." - -#: includes/admin/admin.php:147 -msgid "" -"We are fanatical about support, and want you to get the best out of your " -"website with ACF. If you run into any difficulties, there are several places " -"you can find help:" -msgstr "" -"Wij zijn fanatiek in ondersteuning en willen dat je met ACF het beste uit je " -"website haalt. Als je problemen ondervindt, zijn er verschillende plaatsen " -"waar je hulp kan vinden:" - -#: includes/admin/admin.php:144 includes/admin/admin.php:146 -msgid "Help & Support" -msgstr "Hulp & ondersteuning" - -#: includes/admin/admin.php:135 -msgid "" -"Please use the Help & Support tab to get in touch should you find yourself " -"requiring assistance." -msgstr "" -"Gebruik de tab hulp & ondersteuning om contact op te nemen als je merkt dat " -"je hulp nodig hebt." - -#: includes/admin/admin.php:132 -msgid "" -"Before creating your first Field Group, we recommend first reading our Getting started guide to familiarize " -"yourself with the plugin's philosophy and best practises." -msgstr "" -"Voordat je je eerste veldgroep maakt, raden we je aan om eerst onze Aan de slag gids te lezen om je vertrouwd te " -"maken met de filosofie en best practices van de plugin." - -#: includes/admin/admin.php:130 -msgid "" -"The Advanced Custom Fields plugin provides a visual form builder to " -"customize WordPress edit screens with extra fields, and an intuitive API to " -"display custom field values in any theme template file." -msgstr "" -"De Advanced Custom Fields plugin biedt een visuele formulierbouwer om " -"WordPress bewerkingsschermen aan te passen met extra velden, en een " -"intuïtieve API om aangepaste veldwaarden weer te geven in elk thema template " -"bestand." - -#: includes/admin/admin.php:127 includes/admin/admin.php:129 -msgid "Overview" -msgstr "Overzicht" - -#: includes/locations.php:36 -msgid "Location type \"%s\" is already registered." -msgstr "Locatietype \"%s\" is al geregistreerd." - -#: includes/locations.php:25 -msgid "Class \"%s\" does not exist." -msgstr "Class \"%s\" bestaat niet." - -#: includes/ajax/class-acf-ajax.php:157 -msgid "Invalid nonce." -msgstr "Ongeldige nonce." - -#: includes/fields/class-acf-field-user.php:375 -msgid "Error loading field." -msgstr "Fout tijdens laden van veld." - -#: assets/build/js/acf-input.js:2750 assets/build/js/acf-input.js:2819 -#: assets/build/js/acf-input.js:2926 assets/build/js/acf-input.js:3000 -msgid "Location not found: %s" -msgstr "Locatie niet gevonden: %s" - -#: includes/forms/form-user.php:353 -msgid "Error: %s" -msgstr "Fout: %s" - -#: includes/locations/class-acf-location-widget.php:22 -msgid "Widget" -msgstr "Widget" - -#: includes/locations/class-acf-location-user-role.php:24 -msgid "User Role" -msgstr "Gebruikersrol" - -#: includes/locations/class-acf-location-comment.php:22 -msgid "Comment" -msgstr "Reactie" - -#: includes/locations/class-acf-location-post-format.php:22 -msgid "Post Format" -msgstr "Berichtformaat" - -#: includes/locations/class-acf-location-nav-menu-item.php:22 -msgid "Menu Item" -msgstr "Menu-item" - -#: includes/locations/class-acf-location-post-status.php:22 -msgid "Post Status" -msgstr "Berichtstatus" - -#: includes/acf-wp-functions.php:74 -#: includes/locations/class-acf-location-nav-menu.php:89 -msgid "Menus" -msgstr "Menu's" - -#: includes/locations/class-acf-location-nav-menu.php:80 -msgid "Menu Locations" -msgstr "Menulocaties" - -#: includes/locations/class-acf-location-nav-menu.php:22 -msgid "Menu" -msgstr "Menu" - -#: includes/locations/class-acf-location-post-taxonomy.php:22 -msgid "Post Taxonomy" -msgstr "Bericht taxonomie" - -#: includes/locations/class-acf-location-page-type.php:114 -msgid "Child Page (has parent)" -msgstr "Subpagina (heeft hoofdpagina)" - -#: includes/locations/class-acf-location-page-type.php:113 -msgid "Parent Page (has children)" -msgstr "Hoofdpagina (heeft subpagina's)" - -#: includes/locations/class-acf-location-page-type.php:112 -msgid "Top Level Page (no parent)" -msgstr "Bovenste level pagina (geen hoofdpagina)" - -#: includes/locations/class-acf-location-page-type.php:111 -msgid "Posts Page" -msgstr "Berichtenpagina" - -#: includes/locations/class-acf-location-page-type.php:110 -msgid "Front Page" -msgstr "Startpagina" - -#: includes/locations/class-acf-location-page-type.php:22 -msgid "Page Type" -msgstr "Paginatype" - -#: includes/locations/class-acf-location-current-user.php:73 -msgid "Viewing back end" -msgstr "Back-end aan het bekijken" - -#: includes/locations/class-acf-location-current-user.php:72 -msgid "Viewing front end" -msgstr "Front-end aan het bekijken" - -#: includes/locations/class-acf-location-current-user.php:71 -msgid "Logged in" -msgstr "Ingelogd" - -#: includes/locations/class-acf-location-current-user.php:22 -msgid "Current User" -msgstr "Huidige gebruiker" - -#: includes/locations/class-acf-location-page-template.php:22 -msgid "Page Template" -msgstr "Paginatemplate" - -#: includes/locations/class-acf-location-user-form.php:74 -msgid "Register" -msgstr "Registreren" - -#: includes/locations/class-acf-location-user-form.php:73 -msgid "Add / Edit" -msgstr "Toevoegen / bewerken" - -#: includes/locations/class-acf-location-user-form.php:22 -msgid "User Form" -msgstr "Gebruikersformulier" - -#: includes/locations/class-acf-location-page-parent.php:22 -msgid "Page Parent" -msgstr "Hoofdpagina" - -#: includes/locations/class-acf-location-current-user-role.php:77 -msgid "Super Admin" -msgstr "Superbeheerder" - -#: includes/locations/class-acf-location-current-user-role.php:22 -msgid "Current User Role" -msgstr "Huidige gebruikersrol" - -#: includes/locations/class-acf-location-page-template.php:73 -#: includes/locations/class-acf-location-post-template.php:85 -msgid "Default Template" -msgstr "Standaard template" - -#: includes/locations/class-acf-location-post-template.php:22 -msgid "Post Template" -msgstr "Bericht template" - -#: includes/locations/class-acf-location-post-category.php:22 -msgid "Post Category" -msgstr "Berichtcategorie" - -#: includes/locations/class-acf-location-attachment.php:84 -msgid "All %s formats" -msgstr "Alle %s formaten" - -#: includes/locations/class-acf-location-attachment.php:22 -msgid "Attachment" -msgstr "Bijlage" - -#: includes/validation.php:366 -msgid "%s value is required" -msgstr "%s waarde is verplicht" - -#: includes/admin/views/acf-field-group/conditional-logic.php:59 -msgid "Show this field if" -msgstr "Toon dit veld als" - -#: includes/admin/views/acf-field-group/conditional-logic.php:26 -#: includes/admin/views/acf-field-group/field.php:109 includes/fields.php:411 -msgid "Conditional Logic" -msgstr "Voorwaardelijke logica" - -#: includes/admin/views/acf-field-group/conditional-logic.php:156 -#: includes/admin/views/acf-field-group/location-rule.php:92 -msgid "and" -msgstr "en" - -#: includes/admin/post-types/admin-field-groups.php:123 -#: includes/admin/post-types/admin-post-types.php:143 -#: includes/admin/post-types/admin-taxonomies.php:143 -msgid "Local JSON" -msgstr "Lokale JSON" - -#: includes/admin/views/acf-field-group/pro-features.php:46 -msgid "Clone Field" -msgstr "Dupliceer veld" - -#: includes/admin/views/upgrade/notice.php:30 -msgid "" -"Please also check all premium add-ons (%s) are updated to the latest version." -msgstr "" -"Controleer ook of alle premium add-ons (%s) zijn bijgewerkt naar de nieuwste " -"versie." - -#: includes/admin/views/upgrade/notice.php:28 -msgid "" -"This version contains improvements to your database and requires an upgrade." -msgstr "" -"Deze versie bevat verbeteringen voor je database en vereist een upgrade." - -#: includes/admin/views/upgrade/notice.php:28 -msgid "Thank you for updating to %1$s v%2$s!" -msgstr "Bedankt voor het bijwerken naar %1$s v%2$s!" - -#: includes/admin/views/upgrade/notice.php:27 -msgid "Database Upgrade Required" -msgstr "Database upgrade vereist" - -#: includes/admin/post-types/admin-field-group.php:141 -#: includes/admin/views/upgrade/notice.php:18 -msgid "Options Page" -msgstr "Opties pagina" - -#: includes/admin/views/upgrade/notice.php:15 includes/fields.php:462 -msgid "Gallery" -msgstr "Galerij" - -#: includes/admin/views/upgrade/notice.php:12 includes/fields.php:452 -msgid "Flexible Content" -msgstr "Flexibele inhoud" - -#: includes/admin/views/upgrade/notice.php:9 includes/fields.php:472 -msgid "Repeater" -msgstr "Repeater" - -#: includes/admin/views/tools/tools.php:24 -msgid "Back to all tools" -msgstr "Terug naar alle tools" - -#: includes/admin/views/acf-field-group/options.php:195 -msgid "" -"If multiple field groups appear on an edit screen, the first field group's " -"options will be used (the one with the lowest order number)" -msgstr "" -"Als er meerdere veldgroepen op een bewerkingsscherm verschijnen, worden de " -"opties van de eerste veldgroep gebruikt (degene met het laagste volgnummer)" - -#: includes/admin/views/acf-field-group/options.php:195 -msgid "Select items to hide them from the edit screen." -msgstr "" -"Selecteer items om ze te verbergen in het bewerkingsscherm." - -#: includes/admin/views/acf-field-group/options.php:194 -msgid "Hide on screen" -msgstr "Verberg op scherm" - -#: includes/admin/views/acf-field-group/options.php:186 -msgid "Send Trackbacks" -msgstr "Trackbacks verzenden" - -#: includes/admin/post-types/admin-taxonomy.php:128 -#: includes/admin/views/acf-field-group/options.php:185 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:159 -#: assets/build/js/acf-internal-post-type.js:180 -#: assets/build/js/acf-internal-post-type.js:254 -msgid "Tags" -msgstr "Tags" - -#: includes/admin/post-types/admin-taxonomy.php:130 -#: includes/admin/views/acf-field-group/options.php:184 -#: assets/build/js/acf-internal-post-type.js:183 -#: assets/build/js/acf-internal-post-type.js:257 -msgid "Categories" -msgstr "Categorieën" - -#: includes/admin/views/acf-field-group/options.php:182 -#: includes/admin/views/acf-post-type/advanced-settings.php:28 -msgid "Page Attributes" -msgstr "Pagina attributen" - -#: includes/admin/views/acf-field-group/options.php:181 -msgid "Format" -msgstr "Formaat" - -#: includes/admin/views/acf-field-group/options.php:180 -#: includes/admin/views/acf-post-type/advanced-settings.php:22 -msgid "Author" -msgstr "Auteur" - -#: includes/admin/views/acf-field-group/options.php:179 -msgid "Slug" -msgstr "Slug" - -#: includes/admin/views/acf-field-group/options.php:178 -#: includes/admin/views/acf-post-type/advanced-settings.php:27 -msgid "Revisions" -msgstr "Revisies" - -#: includes/acf-wp-functions.php:66 -#: includes/admin/views/acf-field-group/options.php:177 -#: includes/admin/views/acf-post-type/advanced-settings.php:23 -msgid "Comments" -msgstr "Reacties" - -#: includes/admin/views/acf-field-group/options.php:176 -msgid "Discussion" -msgstr "Discussie" - -#: includes/admin/views/acf-field-group/options.php:174 -#: includes/admin/views/acf-post-type/advanced-settings.php:26 -msgid "Excerpt" -msgstr "Samenvatting" - -#: includes/admin/views/acf-field-group/options.php:173 -msgid "Content Editor" -msgstr "Inhoud editor" - -#: includes/admin/views/acf-field-group/options.php:172 -msgid "Permalink" -msgstr "Permalink" - -#: includes/admin/views/acf-field-group/options.php:250 -msgid "Shown in field group list" -msgstr "Getoond in de veldgroep lijst" - -#: includes/admin/views/acf-field-group/options.php:157 -msgid "Field groups with a lower order will appear first" -msgstr "Veldgroepen met een lagere volgorde verschijnen als eerste" - -#: includes/admin/views/acf-field-group/options.php:156 -msgid "Order No." -msgstr "Bestelnr." - -#: includes/admin/views/acf-field-group/options.php:147 -msgid "Below fields" -msgstr "Onderstaande velden" - -#: includes/admin/views/acf-field-group/options.php:146 -msgid "Below labels" -msgstr "Onder labels" - -#: includes/admin/views/acf-field-group/options.php:139 -msgid "Instruction Placement" -msgstr "Instructie plaatsing" - -#: includes/admin/views/acf-field-group/options.php:122 -msgid "Label Placement" -msgstr "Label plaatsing" - -#: includes/admin/views/acf-field-group/options.php:110 -msgid "Side" -msgstr "Zijkant" - -#: includes/admin/views/acf-field-group/options.php:109 -msgid "Normal (after content)" -msgstr "Normaal (na inhoud)" - -#: includes/admin/views/acf-field-group/options.php:108 -msgid "High (after title)" -msgstr "Hoog (na titel)" - -#: includes/admin/views/acf-field-group/options.php:101 -msgid "Position" -msgstr "Positie" - -#: includes/admin/views/acf-field-group/options.php:92 -msgid "Seamless (no metabox)" -msgstr "Naadloos (geen metabox)" - -#: includes/admin/views/acf-field-group/options.php:91 -msgid "Standard (WP metabox)" -msgstr "Standaard (WP metabox)" - -#: includes/admin/views/acf-field-group/options.php:84 -msgid "Style" -msgstr "Stijl" - -#: includes/admin/views/acf-field-group/fields.php:55 -msgid "Type" -msgstr "Type" - -#: includes/admin/post-types/admin-field-groups.php:117 -#: includes/admin/post-types/admin-post-types.php:136 -#: includes/admin/post-types/admin-taxonomies.php:136 -#: includes/admin/views/acf-field-group/fields.php:54 -msgid "Key" -msgstr "Sleutel" - -#. translators: Hidden accessibility text for the positional order number of -#. the field. -#: includes/admin/views/acf-field-group/fields.php:48 -msgid "Order" -msgstr "Volgorde" - -#: includes/admin/views/acf-field-group/field.php:322 -msgid "Close Field" -msgstr "Veld sluiten" - -#: includes/admin/views/acf-field-group/field.php:253 -msgid "id" -msgstr "id" - -#: includes/admin/views/acf-field-group/field.php:237 -msgid "class" -msgstr "klasse" - -#: includes/admin/views/acf-field-group/field.php:279 -msgid "width" -msgstr "breedte" - -#: includes/admin/views/acf-field-group/field.php:273 -msgid "Wrapper Attributes" -msgstr "Wrapper attributen" - -#: includes/admin/views/acf-field-group/field.php:196 -msgid "Required" -msgstr "Vereist" - -#: includes/admin/views/acf-field-group/field.php:221 -msgid "Instructions for authors. Shown when submitting data" -msgstr "Instructies voor auteurs. Wordt getoond bij het indienen van gegevens" - -#: includes/admin/views/acf-field-group/field.php:220 -msgid "Instructions" -msgstr "Instructies" - -#: includes/admin/views/acf-field-group/field.php:129 -msgid "Field Type" -msgstr "Veldtype" - -#: includes/admin/views/acf-field-group/field.php:170 -msgid "Single word, no spaces. Underscores and dashes allowed" -msgstr "Één woord, geen spaties. Underscores en verbindingsstrepen toegestaan" - -#: includes/admin/views/acf-field-group/field.php:169 -msgid "Field Name" -msgstr "Veldnaam" - -#: includes/admin/views/acf-field-group/field.php:157 -msgid "This is the name which will appear on the EDIT page" -msgstr "Dit is de naam die op de BEWERK pagina zal verschijnen" - -#: includes/admin/views/acf-field-group/field.php:156 -#: includes/admin/views/browse-fields-modal.php:59 -msgid "Field Label" -msgstr "Veldlabel" - -#: includes/admin/views/acf-field-group/field.php:81 -msgid "Delete" -msgstr "Verwijderen" - -#: includes/admin/views/acf-field-group/field.php:81 -msgid "Delete field" -msgstr "Veld verwijderen" - -#: includes/admin/views/acf-field-group/field.php:79 -msgid "Move" -msgstr "Verplaatsen" - -#: includes/admin/views/acf-field-group/field.php:79 -msgid "Move field to another group" -msgstr "Veld naar een andere groep verplaatsen" - -#: includes/admin/views/acf-field-group/field.php:77 -msgid "Duplicate field" -msgstr "Veld dupliceren" - -#: includes/admin/views/acf-field-group/field.php:73 -#: includes/admin/views/acf-field-group/field.php:76 -msgid "Edit field" -msgstr "Veld bewerken" - -#: includes/admin/views/acf-field-group/field.php:69 -msgid "Drag to reorder" -msgstr "Sleep om te herschikken" - -#: includes/admin/post-types/admin-field-group.php:103 -#: includes/admin/views/acf-field-group/location-group.php:3 -#: assets/build/js/acf-field-group.js:2347 -#: assets/build/js/acf-field-group.js:2763 -msgid "Show this field group if" -msgstr "Deze veldgroep tonen als" - -#: includes/admin/views/upgrade/upgrade.php:94 -#: includes/ajax/class-acf-ajax-upgrade.php:34 -msgid "No updates available." -msgstr "Er zijn geen updates beschikbaar." - -#: includes/admin/views/upgrade/upgrade.php:33 -msgid "Database upgrade complete. See what's new" -msgstr "Database upgrade voltooid. Bekijk wat er nieuw is" - -#: includes/admin/views/upgrade/upgrade.php:30 -msgid "Reading upgrade tasks..." -msgstr "Upgrade taken aan het lezen..." - -#: includes/admin/views/upgrade/network.php:165 -#: includes/admin/views/upgrade/upgrade.php:65 -msgid "Upgrade failed." -msgstr "Upgrade mislukt." - -#: includes/admin/views/upgrade/network.php:162 -msgid "Upgrade complete." -msgstr "Upgrade voltooid." - -#: includes/admin/views/upgrade/network.php:148 -#: includes/admin/views/upgrade/upgrade.php:31 -msgid "Upgrading data to version %s" -msgstr "Gegevens upgraden naar versie %s" - -#: includes/admin/views/upgrade/network.php:121 -#: includes/admin/views/upgrade/notice.php:44 -msgid "" -"It is strongly recommended that you backup your database before proceeding. " -"Are you sure you wish to run the updater now?" -msgstr "" -"We raden je het sterk aanbevolen om eerst een back-up van je database te " -"maken voordat je verder gaat. Weet je zeker dat je de updater nu wilt " -"uitvoeren?" - -#: includes/admin/views/upgrade/network.php:117 -msgid "Please select at least one site to upgrade." -msgstr "Selecteer minstens één website om te upgraden." - -#: includes/admin/views/upgrade/network.php:97 -msgid "" -"Database Upgrade complete. Return to network dashboard" -msgstr "" -"Database upgrade voltooid. Terug naar netwerk dashboard" - -#: includes/admin/views/upgrade/network.php:80 -msgid "Site is up to date" -msgstr "Website is up-to-date" - -#: includes/admin/views/upgrade/network.php:78 -msgid "Site requires database upgrade from %1$s to %2$s" -msgstr "Website vereist database upgrade van %1$s naar %2$s" - -#: includes/admin/views/upgrade/network.php:36 -#: includes/admin/views/upgrade/network.php:47 -msgid "Site" -msgstr "Website" - -#: includes/admin/views/upgrade/network.php:26 -#: includes/admin/views/upgrade/network.php:27 -#: includes/admin/views/upgrade/network.php:96 -msgid "Upgrade Sites" -msgstr "Websites upgraden" - -#: includes/admin/views/upgrade/network.php:26 -msgid "" -"The following sites require a DB upgrade. Check the ones you want to update " -"and then click %s." -msgstr "" -"De volgende sites vereisen een upgrade van de database. Selecteer de " -"websites die je wilt bijwerken en klik vervolgens op %s." - -#: includes/admin/views/acf-field-group/conditional-logic.php:171 -#: includes/admin/views/acf-field-group/locations.php:38 -msgid "Add rule group" -msgstr "Regelgroep toevoegen" - -#: includes/admin/views/acf-field-group/locations.php:10 -msgid "" -"Create a set of rules to determine which edit screens will use these " -"advanced custom fields" -msgstr "" -"Maak een set met regels aan om te bepalen welke aangepaste schermen deze " -"extra velden zullen gebruiken" - -#: includes/admin/views/acf-field-group/locations.php:9 -msgid "Rules" -msgstr "Regels" - -#: includes/admin/tools/class-acf-admin-tool-export.php:510 -msgid "Copied" -msgstr "Gekopieerd" - -#: includes/admin/tools/class-acf-admin-tool-export.php:486 -msgid "Copy to clipboard" -msgstr "Kopieer naar klembord" - -#: includes/admin/tools/class-acf-admin-tool-export.php:385 -msgid "" -"Select the items you would like to export and then select your export " -"method. Export As JSON to export to a .json file which you can then import " -"to another ACF installation. Generate PHP to export to PHP code which you " -"can place in your theme." -msgstr "" -"Selecteer de items die je wil exporteren en selecteer dan je exportmethode. " -"Exporteer als JSON om te exporteren naar een .json bestand dat je vervolgens " -"kunt importeren in een andere ACF installatie. Genereer PHP om te exporteren " -"naar PHP-code die je in je thema kan plaatsen." - -#: includes/admin/tools/class-acf-admin-tool-export.php:233 -msgid "Select Field Groups" -msgstr "Selecteer veldgroepen" - -#: includes/admin/tools/class-acf-admin-tool-export.php:96 -#: includes/admin/tools/class-acf-admin-tool-export.php:131 -msgid "No field groups selected" -msgstr "Geen veldgroepen geselecteerd" - -#: includes/admin/tools/class-acf-admin-tool-export.php:39 -#: includes/admin/tools/class-acf-admin-tool-export.php:393 -#: includes/admin/tools/class-acf-admin-tool-export.php:421 -msgid "Generate PHP" -msgstr "Genereer PHP" - -#: includes/admin/tools/class-acf-admin-tool-export.php:35 -msgid "Export Field Groups" -msgstr "Exporteer veldgroepen" - -#: includes/admin/tools/class-acf-admin-tool-import.php:177 -msgid "Import file empty" -msgstr "Bestand leeg importeren" - -#: includes/admin/tools/class-acf-admin-tool-import.php:168 -msgid "Incorrect file type" -msgstr "Onjuist bestandstype" - -#: includes/admin/tools/class-acf-admin-tool-import.php:163 -msgid "Error uploading file. Please try again" -msgstr "Fout bij uploaden van bestand. Probeer het opnieuw" - -#: includes/admin/tools/class-acf-admin-tool-import.php:50 -msgid "" -"Select the Advanced Custom Fields JSON file you would like to import. When " -"you click the import button below, ACF will import the items in that file." -msgstr "" -"Selecteer het Advanced Custom Fields JSON bestand dat je wilt importeren. " -"Wanneer je op de onderstaande importknop klikt, importeert ACF items in dat " -"bestand." - -#: includes/admin/tools/class-acf-admin-tool-import.php:27 -msgid "Import Field Groups" -msgstr "Veldgroepen importeren" - -#: includes/admin/admin-internal-post-type-list.php:401 -msgid "Sync" -msgstr "Synchroniseren" - -#: includes/admin/admin-internal-post-type-list.php:858 -msgid "Select %s" -msgstr "Selecteer %s" - -#: includes/admin/admin-internal-post-type-list.php:442 -#: includes/admin/admin-internal-post-type-list.php:474 -#: includes/admin/views/acf-field-group/field.php:77 -msgid "Duplicate" -msgstr "Dupliceer" - -#: includes/admin/admin-internal-post-type-list.php:442 -msgid "Duplicate this item" -msgstr "Dupliceer dit item" - -#: includes/admin/views/acf-post-type/advanced-settings.php:41 -msgid "Supports" -msgstr "Ondersteunt" - -#: includes/admin/admin.php:261 includes/admin/views/browse-fields-modal.php:92 -msgid "Documentation" -msgstr "" - -#: includes/admin/post-types/admin-field-groups.php:116 -#: includes/admin/post-types/admin-post-types.php:135 -#: includes/admin/post-types/admin-taxonomies.php:135 -#: includes/admin/views/acf-field-group/options.php:249 -#: includes/admin/views/acf-post-type/advanced-settings.php:62 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:114 -#: includes/admin/views/upgrade/network.php:38 -#: includes/admin/views/upgrade/network.php:49 -msgid "Description" -msgstr "Beschrijving" - -#: includes/admin/admin-internal-post-type-list.php:398 -#: includes/admin/admin-internal-post-type-list.php:747 -msgid "Sync available" -msgstr "Synchronisatie beschikbaar" - -#. translators: %s number of field groups synchronized -#: includes/admin/post-types/admin-field-groups.php:381 -msgid "Field group synchronized." -msgid_plural "%s field groups synchronized." -msgstr[0] "Veldgroep gesynchroniseerd." -msgstr[1] "%s veldgroepen gesynchroniseerd." - -#. translators: %s number of field groups duplicated -#: includes/admin/post-types/admin-field-groups.php:374 -msgid "Field group duplicated." -msgid_plural "%s field groups duplicated." -msgstr[0] "Veldgroep gedupliceerd." -msgstr[1] "%s veldgroepen gedupliceerd." - -#: includes/admin/admin-internal-post-type-list.php:137 -msgid "Active (%s)" -msgid_plural "Active (%s)" -msgstr[0] "Actief (%s)" -msgstr[1] "Actief (%s)" - -#: includes/admin/admin-upgrade.php:254 -msgid "Review sites & upgrade" -msgstr "Beoordeel websites & upgrade" - -#: includes/admin/admin-upgrade.php:59 includes/admin/admin-upgrade.php:93 -#: includes/admin/admin-upgrade.php:94 includes/admin/admin-upgrade.php:230 -#: includes/admin/views/upgrade/network.php:24 -#: includes/admin/views/upgrade/upgrade.php:26 -msgid "Upgrade Database" -msgstr "Upgrade database" - -#: includes/admin/views/acf-field-group/options.php:175 -#: includes/admin/views/acf-post-type/advanced-settings.php:30 -msgid "Custom Fields" -msgstr "Aangepaste velden" - -#: includes/admin/post-types/admin-field-group.php:616 -msgid "Move Field" -msgstr "Veld verplaatsen" - -#: includes/admin/post-types/admin-field-group.php:605 -#: includes/admin/post-types/admin-field-group.php:609 -msgid "Please select the destination for this field" -msgstr "Selecteer de bestemming voor dit veld" - -#. translators: Confirmation message once a field has been moved to a different -#. field group. -#: includes/admin/post-types/admin-field-group.php:567 -msgid "The %1$s field can now be found in the %2$s field group" -msgstr "Het %1$s veld is nu te vinden in de %2$s veldgroep" - -#: includes/admin/post-types/admin-field-group.php:564 -msgid "Move Complete." -msgstr "Verplaatsen voltooid." - -#: includes/admin/views/acf-field-group/field.php:39 -#: includes/admin/views/acf-field-group/options.php:217 -#: includes/admin/views/acf-post-type/advanced-settings.php:78 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:130 -msgid "Active" -msgstr "Actief" - -#: includes/admin/post-types/admin-field-group.php:266 -msgid "Field Keys" -msgstr "Veldsleutels" - -#: includes/admin/post-types/admin-field-group.php:164 -#: includes/admin/tools/class-acf-admin-tool-export.php:342 -msgid "Settings" -msgstr "Instellingen" - -#: includes/admin/post-types/admin-field-groups.php:118 -msgid "Location" -msgstr "Locatie" - -#: includes/admin/post-types/admin-field-group.php:104 -#: assets/build/js/acf-input.js:983 assets/build/js/acf-input.js:1075 -msgid "Null" -msgstr "Null" - -#: includes/admin/post-types/admin-field-group.php:101 -#: includes/class-acf-internal-post-type.php:730 -#: includes/post-types/class-acf-field-group.php:345 -#: assets/build/js/acf-field-group.js:1510 -#: assets/build/js/acf-field-group.js:1821 -msgid "copy" -msgstr "kopiëren" - -#: includes/admin/post-types/admin-field-group.php:100 -#: assets/build/js/acf-field-group.js:623 -#: assets/build/js/acf-field-group.js:778 -msgid "(this field)" -msgstr "(dit veld)" - -#: includes/admin/post-types/admin-field-group.php:98 -#: assets/build/js/acf-input.js:918 assets/build/js/acf-input.js:943 -#: assets/build/js/acf-input.js:1002 assets/build/js/acf-input.js:1030 -msgid "Checked" -msgstr "Aangevinkt" - -#: includes/admin/post-types/admin-field-group.php:94 -#: assets/build/js/acf-field-group.js:1615 -#: assets/build/js/acf-field-group.js:1933 -msgid "Move Custom Field" -msgstr "Aangepast veld verplaatsen" - -#: includes/admin/post-types/admin-field-group.php:93 -#: assets/build/js/acf-field-group.js:649 -#: assets/build/js/acf-field-group.js:804 -msgid "No toggle fields available" -msgstr "Geen toggle velden beschikbaar" - -#: includes/admin/post-types/admin-field-group.php:91 -msgid "Field group title is required" -msgstr "Veldgroep titel is vereist" - -#: includes/admin/post-types/admin-field-group.php:90 -#: assets/build/js/acf-field-group.js:1604 -#: assets/build/js/acf-field-group.js:1919 -msgid "This field cannot be moved until its changes have been saved" -msgstr "" -"Dit veld kan niet worden verplaatst totdat de wijzigingen zijn opgeslagen" - -#: includes/admin/post-types/admin-field-group.php:89 -#: assets/build/js/acf-field-group.js:1414 -#: assets/build/js/acf-field-group.js:1716 -msgid "The string \"field_\" may not be used at the start of a field name" -msgstr "De string \"field_\" mag niet voor de veld naam staan" - -#: includes/admin/post-types/admin-field-group.php:71 -msgid "Field group draft updated." -msgstr "Concept veldgroep bijgewerkt." - -#: includes/admin/post-types/admin-field-group.php:70 -msgid "Field group scheduled for." -msgstr "Veldgroep gepland voor." - -#: includes/admin/post-types/admin-field-group.php:69 -msgid "Field group submitted." -msgstr "Veldgroep ingediend." - -#: includes/admin/post-types/admin-field-group.php:68 -msgid "Field group saved." -msgstr "Veldgroep opgeslagen." - -#: includes/admin/post-types/admin-field-group.php:67 -msgid "Field group published." -msgstr "Veldgroep gepubliceerd." - -#: includes/admin/post-types/admin-field-group.php:64 -msgid "Field group deleted." -msgstr "Veldgroep verwijderd." - -#: includes/admin/post-types/admin-field-group.php:62 -#: includes/admin/post-types/admin-field-group.php:63 -#: includes/admin/post-types/admin-field-group.php:65 -msgid "Field group updated." -msgstr "Veldgroep bijgewerkt." - -#: includes/admin/admin-tools.php:118 -#: includes/admin/views/global/navigation.php:246 -#: includes/admin/views/tools/tools.php:21 -msgid "Tools" -msgstr "Tools" - -#: includes/locations/abstract-acf-location.php:106 -msgid "is not equal to" -msgstr "is niet gelijk aan" - -#: includes/locations/abstract-acf-location.php:105 -msgid "is equal to" -msgstr "is gelijk aan" - -#: includes/locations.php:102 -msgid "Forms" -msgstr "Formulieren" - -#: includes/admin/post-types/admin-post-type.php:127 includes/locations.php:100 -#: includes/locations/class-acf-location-page.php:22 -#: assets/build/js/acf-internal-post-type.js:175 -#: assets/build/js/acf-internal-post-type.js:249 -msgid "Page" -msgstr "Pagina" - -#: includes/admin/post-types/admin-post-type.php:125 includes/locations.php:99 -#: includes/locations/class-acf-location-post.php:22 -#: assets/build/js/acf-internal-post-type.js:172 -#: assets/build/js/acf-internal-post-type.js:246 -msgid "Post" -msgstr "Bericht" - -#: includes/fields.php:354 -msgid "Relational" -msgstr "Relationele" - -#: includes/fields.php:353 -msgid "Choice" -msgstr "Keuze" - -#: includes/fields.php:351 -msgid "Basic" -msgstr "Basis" - -#: includes/fields.php:320 -msgid "Unknown" -msgstr "Onbekend" - -#: includes/fields.php:320 -msgid "Field type does not exist" -msgstr "Bestand bestaat niet" - -#: includes/forms/form-front.php:236 -msgid "Spam Detected" -msgstr "Spam gevonden" - -#: includes/forms/form-front.php:107 -msgid "Post updated" -msgstr "Bericht bijgewerkt" - -#: includes/forms/form-front.php:106 -msgid "Update" -msgstr "Bijwerken" - -#: includes/forms/form-front.php:57 -msgid "Validate Email" -msgstr "E-mail valideren" - -#: includes/fields.php:352 includes/forms/form-front.php:49 -msgid "Content" -msgstr "Inhoud" - -#: includes/admin/views/acf-post-type/advanced-settings.php:21 -#: includes/forms/form-front.php:40 -msgid "Title" -msgstr "Titel" - -#: includes/assets.php:372 includes/forms/form-comment.php:160 -#: assets/build/js/acf-input.js:7382 assets/build/js/acf-input.js:7968 -msgid "Edit field group" -msgstr "Veldgroep bewerken" - -#: includes/admin/post-types/admin-field-group.php:117 -#: assets/build/js/acf-input.js:1125 assets/build/js/acf-input.js:1230 -msgid "Selection is less than" -msgstr "Selectie is minder dan" - -#: includes/admin/post-types/admin-field-group.php:116 -#: assets/build/js/acf-input.js:1106 assets/build/js/acf-input.js:1202 -msgid "Selection is greater than" -msgstr "Selectie is groter dan" - -#: includes/admin/post-types/admin-field-group.php:115 -#: assets/build/js/acf-input.js:1075 assets/build/js/acf-input.js:1170 -msgid "Value is less than" -msgstr "Waarde is minder dan" - -#: includes/admin/post-types/admin-field-group.php:114 -#: assets/build/js/acf-input.js:1045 assets/build/js/acf-input.js:1139 -msgid "Value is greater than" -msgstr "Waarde is groter dan" - -#: includes/admin/post-types/admin-field-group.php:113 -#: assets/build/js/acf-input.js:888 assets/build/js/acf-input.js:960 -msgid "Value contains" -msgstr "Waarde bevat" - -#: includes/admin/post-types/admin-field-group.php:112 -#: assets/build/js/acf-input.js:862 assets/build/js/acf-input.js:926 -msgid "Value matches pattern" -msgstr "Waarde komt overeen met patroon" - -#: includes/admin/post-types/admin-field-group.php:111 -#: assets/build/js/acf-input.js:840 assets/build/js/acf-input.js:1023 -#: assets/build/js/acf-input.js:903 assets/build/js/acf-input.js:1116 -msgid "Value is not equal to" -msgstr "Waarde is niet gelijk aan" - -#: includes/admin/post-types/admin-field-group.php:110 -#: assets/build/js/acf-input.js:810 assets/build/js/acf-input.js:964 -#: assets/build/js/acf-input.js:864 assets/build/js/acf-input.js:1053 -msgid "Value is equal to" -msgstr "Waarde is gelijk aan" - -#: includes/admin/post-types/admin-field-group.php:109 -#: assets/build/js/acf-input.js:788 assets/build/js/acf-input.js:841 -msgid "Has no value" -msgstr "Heeft geen waarde" - -#: includes/admin/post-types/admin-field-group.php:108 -#: assets/build/js/acf-input.js:758 assets/build/js/acf-input.js:783 -msgid "Has any value" -msgstr "Heeft enige waarde" - -#: includes/admin/admin-internal-post-type.php:345 -#: includes/admin/views/browse-fields-modal.php:62 includes/assets.php:353 -#: assets/build/js/acf.js:1564 assets/build/js/acf.js:1658 -msgid "Cancel" -msgstr "Annuleren" - -#: includes/assets.php:349 assets/build/js/acf.js:1738 -#: assets/build/js/acf.js:1855 -msgid "Are you sure?" -msgstr "Weet je het zeker?" - -#: includes/assets.php:369 assets/build/js/acf-input.js:9442 -#: assets/build/js/acf-input.js:10294 -msgid "%d fields require attention" -msgstr "%d velden vereisen aandacht" - -#: includes/assets.php:368 assets/build/js/acf-input.js:9440 -#: assets/build/js/acf-input.js:10290 -msgid "1 field requires attention" -msgstr "1 veld vereist aandacht" - -#: includes/assets.php:367 includes/validation.php:288 -#: includes/validation.php:298 assets/build/js/acf-input.js:9435 -#: assets/build/js/acf-input.js:10285 -msgid "Validation failed" -msgstr "Validatie mislukt" - -#: includes/assets.php:366 assets/build/js/acf-input.js:9603 -#: assets/build/js/acf-input.js:10473 -msgid "Validation successful" -msgstr "Validatie geslaagd" - -#: includes/media.php:54 assets/build/js/acf-input.js:7210 -#: assets/build/js/acf-input.js:7772 -msgid "Restricted" -msgstr "Beperkt" - -#: includes/media.php:53 assets/build/js/acf-input.js:7025 -#: assets/build/js/acf-input.js:7536 -msgid "Collapse Details" -msgstr "Details dichtklappen" - -#: includes/media.php:52 assets/build/js/acf-input.js:7025 -#: assets/build/js/acf-input.js:7533 -msgid "Expand Details" -msgstr "Details uitvouwen" - -#: includes/admin/views/acf-post-type/advanced-settings.php:465 -#: includes/media.php:51 assets/build/js/acf-input.js:6892 -#: assets/build/js/acf-input.js:7381 -msgid "Uploaded to this post" -msgstr "Geüpload naar dit bericht" - -#: includes/media.php:50 assets/build/js/acf-input.js:6931 -#: assets/build/js/acf-input.js:7420 -msgctxt "verb" -msgid "Update" -msgstr "Bijwerken" - -#: includes/media.php:49 -msgctxt "verb" -msgid "Edit" -msgstr "Bewerken" - -#: includes/assets.php:363 assets/build/js/acf-input.js:9212 -#: assets/build/js/acf-input.js:10056 -msgid "The changes you made will be lost if you navigate away from this page" -msgstr "Je aangebrachte wijzigingen gaan verloren als je deze pagina verlaat" - -#: includes/api/api-helpers.php:3395 -msgid "File type must be %s." -msgstr "Het bestandstype moet %s zijn." - -#: includes/admin/post-types/admin-field-group.php:102 -#: includes/admin/views/acf-field-group/conditional-logic.php:59 -#: includes/admin/views/acf-field-group/conditional-logic.php:169 -#: includes/admin/views/acf-field-group/location-group.php:3 -#: includes/admin/views/acf-field-group/locations.php:36 -#: includes/api/api-helpers.php:3391 assets/build/js/acf-field-group.js:771 -#: assets/build/js/acf-field-group.js:2385 -#: assets/build/js/acf-field-group.js:933 -#: assets/build/js/acf-field-group.js:2807 -msgid "or" -msgstr "of" - -#: includes/api/api-helpers.php:3364 -msgid "File size must not exceed %s." -msgstr "Bestandsgrootte mag %s niet overschrijden." - -#: includes/api/api-helpers.php:3359 -msgid "File size must be at least %s." -msgstr "De bestandsgrootte moet ministens %s zijn." - -#: includes/api/api-helpers.php:3344 -msgid "Image height must not exceed %dpx." -msgstr "De hoogte van de afbeelding mag niet hoger zijn dan %dpx." - -#: includes/api/api-helpers.php:3339 -msgid "Image height must be at least %dpx." -msgstr "De hoogte van de afbeelding moet minstens %dpx zijn." - -#: includes/api/api-helpers.php:3325 -msgid "Image width must not exceed %dpx." -msgstr "De breedte van de afbeelding mag niet groter zijn dan %dpx." - -#: includes/api/api-helpers.php:3320 -msgid "Image width must be at least %dpx." -msgstr "De breedte van de afbeelding moet ten minste %dpx zijn." - -#: includes/api/api-helpers.php:1561 includes/api/api-term.php:147 -msgid "(no title)" -msgstr "(geen titel)" - -#: includes/api/api-helpers.php:853 -msgid "Full Size" -msgstr "Volledige grootte" - -#: includes/api/api-helpers.php:812 -msgid "Large" -msgstr "Groot" - -#: includes/api/api-helpers.php:811 -msgid "Medium" -msgstr "Medium" - -#: includes/api/api-helpers.php:810 -msgid "Thumbnail" -msgstr "Thumbnail" - -#: includes/acf-field-functions.php:854 -#: includes/admin/post-types/admin-field-group.php:99 -#: assets/build/js/acf-field-group.js:1077 -#: assets/build/js/acf-field-group.js:1260 -msgid "(no label)" -msgstr "(geen label)" - -#: includes/fields/class-acf-field-textarea.php:145 -msgid "Sets the textarea height" -msgstr "Bepaalt de hoogte van het tekstgebied" - -#: includes/fields/class-acf-field-textarea.php:144 -msgid "Rows" -msgstr "Rijen" - -#: includes/fields/class-acf-field-textarea.php:25 -msgid "Text Area" -msgstr "Tekstgebied" - -#: includes/fields/class-acf-field-checkbox.php:451 -msgid "Prepend an extra checkbox to toggle all choices" -msgstr "" -"Voeg ervoor een extra selectievakje toe om alle keuzes aan/uit te zetten" - -#: includes/fields/class-acf-field-checkbox.php:413 -msgid "Save 'custom' values to the field's choices" -msgstr "'Aangepaste' waarden opslaan in de keuzes van het veld" - -#: includes/fields/class-acf-field-checkbox.php:402 -msgid "Allow 'custom' values to be added" -msgstr "Toestaan dat 'aangepaste' waarden worden toegevoegd" - -#: includes/fields/class-acf-field-checkbox.php:38 -msgid "Add new choice" -msgstr "Nieuwe keuze toevoegen" - -#: includes/fields/class-acf-field-checkbox.php:174 -msgid "Toggle All" -msgstr "Alles aan-/uitzetten" - -#: includes/fields/class-acf-field-page_link.php:506 -msgid "Allow Archives URLs" -msgstr "Archieven URL's toestaan" - -#: includes/fields/class-acf-field-page_link.php:179 -msgid "Archives" -msgstr "Archieven" - -#: includes/fields/class-acf-field-page_link.php:25 -msgid "Page Link" -msgstr "Pagina link" - -#: includes/fields/class-acf-field-taxonomy.php:943 -#: includes/locations/class-acf-location-user-form.php:72 -msgid "Add" -msgstr "Toevoegen" - -#: includes/admin/views/acf-field-group/fields.php:53 -#: includes/fields/class-acf-field-taxonomy.php:908 -msgid "Name" -msgstr "Naam" - -#: includes/fields/class-acf-field-taxonomy.php:892 -msgid "%s added" -msgstr "%s toegevoegd" - -#: includes/fields/class-acf-field-taxonomy.php:856 -msgid "%s already exists" -msgstr "%s bestaat al" - -#: includes/fields/class-acf-field-taxonomy.php:844 -msgid "User unable to add new %s" -msgstr "Gebruiker kan geen nieuwe %s toevoegen" - -#: includes/fields/class-acf-field-taxonomy.php:742 -msgid "Term ID" -msgstr "Term ID" - -#: includes/fields/class-acf-field-taxonomy.php:741 -msgid "Term Object" -msgstr "Term object" - -#: includes/fields/class-acf-field-taxonomy.php:726 -msgid "Load value from posts terms" -msgstr "Laadwaarde van berichttermen" - -#: includes/fields/class-acf-field-taxonomy.php:725 -msgid "Load Terms" -msgstr "Laad voorwaarden" - -#: includes/fields/class-acf-field-taxonomy.php:715 -msgid "Connect selected terms to the post" -msgstr "Geselecteerde termen aan het bericht koppelen" - -#: includes/fields/class-acf-field-taxonomy.php:714 -msgid "Save Terms" -msgstr "Voorwaarden opslaan" - -#: includes/fields/class-acf-field-taxonomy.php:704 -msgid "Allow new terms to be created whilst editing" -msgstr "Toestaan dat nieuwe termen worden gemaakt tijdens het bewerken" - -#: includes/fields/class-acf-field-taxonomy.php:703 -msgid "Create Terms" -msgstr "Voorwaarden maken" - -#: includes/fields/class-acf-field-taxonomy.php:762 -msgid "Radio Buttons" -msgstr "Radioknoppen" - -#: includes/fields/class-acf-field-taxonomy.php:761 -msgid "Single Value" -msgstr "Eén waarde" - -#: includes/fields/class-acf-field-taxonomy.php:759 -msgid "Multi Select" -msgstr "Multi selecteren" - -#: includes/fields/class-acf-field-checkbox.php:25 -#: includes/fields/class-acf-field-taxonomy.php:758 -msgid "Checkbox" -msgstr "Selectievak" - -#: includes/fields/class-acf-field-taxonomy.php:757 -msgid "Multiple Values" -msgstr "Meerdere waarden" - -#: includes/fields/class-acf-field-taxonomy.php:752 -msgid "Select the appearance of this field" -msgstr "Selecteer de weergave van dit veld" - -#: includes/fields/class-acf-field-taxonomy.php:751 -msgid "Appearance" -msgstr "Weergave" - -#: includes/fields/class-acf-field-taxonomy.php:693 -msgid "Select the taxonomy to be displayed" -msgstr "Selecteer de taxonomie die moet worden getoond" - -#: includes/fields/class-acf-field-taxonomy.php:654 -msgctxt "No Terms" -msgid "No %s" -msgstr "Geen %s" - -#: includes/fields/class-acf-field-number.php:266 -msgid "Value must be equal to or lower than %d" -msgstr "De waarde moet gelijk zijn aan of lager zijn dan %d" - -#: includes/fields/class-acf-field-number.php:259 -msgid "Value must be equal to or higher than %d" -msgstr "De waarde moet gelijk zijn aan of hoger zijn dan %d" - -#: includes/fields/class-acf-field-number.php:244 -msgid "Value must be a number" -msgstr "Waarde moet een getal zijn" - -#: includes/fields/class-acf-field-number.php:25 -msgid "Number" -msgstr "Nummer" - -#: includes/fields/class-acf-field-radio.php:264 -msgid "Save 'other' values to the field's choices" -msgstr "'Andere' waarden opslaan in de keuzes van het veld" - -#: includes/fields/class-acf-field-radio.php:253 -msgid "Add 'other' choice to allow for custom values" -msgstr "De keuze 'overig' toevoegen om aangepaste waarden toe te staan" - -#: includes/admin/views/global/navigation.php:196 -msgid "Other" -msgstr "Ander" - -#: includes/fields/class-acf-field-radio.php:25 -msgid "Radio Button" -msgstr "Radio knop" - -#: includes/fields/class-acf-field-accordion.php:107 -msgid "" -"Define an endpoint for the previous accordion to stop. This accordion will " -"not be visible." -msgstr "" -"Definieer een eindpunt waar de vorige accordeon moet stoppen. Deze accordeon " -"is niet zichtbaar." - -#: includes/fields/class-acf-field-accordion.php:96 -msgid "Allow this accordion to open without closing others." -msgstr "Toestaan dat deze accordeon geopend wordt zonder anderen te sluiten." - -#: includes/fields/class-acf-field-accordion.php:95 -msgid "Multi-Expand" -msgstr "Multi uitvouwen" - -#: includes/fields/class-acf-field-accordion.php:85 -msgid "Display this accordion as open on page load." -msgstr "Geef deze accordeon weer als geopend bij het laden van de pagina." - -#: includes/fields/class-acf-field-accordion.php:84 -msgid "Open" -msgstr "Openen" - -#: includes/fields/class-acf-field-accordion.php:25 -msgid "Accordion" -msgstr "Accordeon" - -#: includes/fields/class-acf-field-file.php:267 -#: includes/fields/class-acf-field-file.php:279 -msgid "Restrict which files can be uploaded" -msgstr "Beperken welke bestanden kunnen worden geüpload" - -#: includes/fields/class-acf-field-file.php:220 -msgid "File ID" -msgstr "Bestand ID" - -#: includes/fields/class-acf-field-file.php:219 -msgid "File URL" -msgstr "Bestand URL" - -#: includes/fields/class-acf-field-file.php:218 -msgid "File Array" -msgstr "Bestand array" - -#: includes/fields/class-acf-field-file.php:186 -msgid "Add File" -msgstr "Bestand toevoegen" - -#: includes/admin/tools/class-acf-admin-tool-import.php:156 -#: includes/fields/class-acf-field-file.php:186 -msgid "No file selected" -msgstr "Geen bestand geselecteerd" - -#: includes/fields/class-acf-field-file.php:150 -msgid "File name" -msgstr "Bestandsnaam" - -#: includes/fields/class-acf-field-file.php:63 -#: assets/build/js/acf-input.js:2474 assets/build/js/acf-input.js:2625 -msgid "Update File" -msgstr "Bestand bijwerken" - -#: includes/fields/class-acf-field-file.php:62 -#: assets/build/js/acf-input.js:2473 assets/build/js/acf-input.js:2624 -msgid "Edit File" -msgstr "Bestand bewerken" - -#: includes/admin/tools/class-acf-admin-tool-import.php:58 -#: includes/fields/class-acf-field-file.php:61 -#: assets/build/js/acf-input.js:2447 assets/build/js/acf-input.js:2597 -msgid "Select File" -msgstr "Selecteer bestand" - -#: includes/fields/class-acf-field-file.php:25 -msgid "File" -msgstr "Bestand" - -#: includes/fields/class-acf-field-password.php:25 -msgid "Password" -msgstr "Wachtwoord" - -#: includes/fields/class-acf-field-select.php:392 -msgid "Specify the value returned" -msgstr "Geef de geretourneerde waarde op" - -#: includes/fields/class-acf-field-select.php:461 -msgid "Use AJAX to lazy load choices?" -msgstr "AJAX gebruiken om keuzes lazy in te laden?" - -#: includes/fields/class-acf-field-checkbox.php:362 -#: includes/fields/class-acf-field-select.php:381 -msgid "Enter each default value on a new line" -msgstr "Zet elke standaard waarde op een nieuwe regel" - -#: includes/fields/class-acf-field-select.php:252 includes/media.php:48 -#: assets/build/js/acf-input.js:6790 assets/build/js/acf-input.js:7266 -msgctxt "verb" -msgid "Select" -msgstr "Selecteer" - -#: includes/fields/class-acf-field-select.php:121 -msgctxt "Select2 JS load_fail" -msgid "Loading failed" -msgstr "Laden mislukt" - -#: includes/fields/class-acf-field-select.php:120 -msgctxt "Select2 JS searching" -msgid "Searching…" -msgstr "Aan het zoeken…" - -#: includes/fields/class-acf-field-select.php:119 -msgctxt "Select2 JS load_more" -msgid "Loading more results…" -msgstr "Meer resultaten laden…" - -#: includes/fields/class-acf-field-select.php:118 -msgctxt "Select2 JS selection_too_long_n" -msgid "You can only select %d items" -msgstr "Je kan slechts %d items selecteren" - -#: includes/fields/class-acf-field-select.php:117 -msgctxt "Select2 JS selection_too_long_1" -msgid "You can only select 1 item" -msgstr "Je kan slechts 1 item selecteren" - -#: includes/fields/class-acf-field-select.php:116 -msgctxt "Select2 JS input_too_long_n" -msgid "Please delete %d characters" -msgstr "Verwijder %d tekens" - -#: includes/fields/class-acf-field-select.php:115 -msgctxt "Select2 JS input_too_long_1" -msgid "Please delete 1 character" -msgstr "Verwijder 1 teken" - -#: includes/fields/class-acf-field-select.php:114 -msgctxt "Select2 JS input_too_short_n" -msgid "Please enter %d or more characters" -msgstr "Voer %d of meer tekens in" - -#: includes/fields/class-acf-field-select.php:113 -msgctxt "Select2 JS input_too_short_1" -msgid "Please enter 1 or more characters" -msgstr "Voer 1 of meer tekens in" - -#: includes/fields/class-acf-field-select.php:112 -msgctxt "Select2 JS matches_0" -msgid "No matches found" -msgstr "Geen overeenkomsten gevonden" - -#: includes/fields/class-acf-field-select.php:111 -msgctxt "Select2 JS matches_n" -msgid "%d results are available, use up and down arrow keys to navigate." -msgstr "" -"%d resultaten zijn beschikbaar, gebruik de pijltoetsen omhoog en omlaag om " -"te navigeren." - -#: includes/fields/class-acf-field-select.php:110 -msgctxt "Select2 JS matches_1" -msgid "One result is available, press enter to select it." -msgstr "Eén resultaat is beschikbaar, druk op enter om het te selecteren." - -#: includes/fields/class-acf-field-select.php:25 -#: includes/fields/class-acf-field-taxonomy.php:763 -msgctxt "noun" -msgid "Select" -msgstr "Selecteer" - -#: includes/fields/class-acf-field-user.php:73 -msgid "User ID" -msgstr "Gebruiker ID" - -#: includes/fields/class-acf-field-user.php:72 -msgid "User Object" -msgstr "Gebruikersobject" - -#: includes/fields/class-acf-field-user.php:71 -msgid "User Array" -msgstr "Gebruiker array" - -#: includes/fields/class-acf-field-user.php:59 -msgid "All user roles" -msgstr "Alle gebruikersrollen" - -#: includes/fields/class-acf-field-user.php:51 -msgid "Filter by Role" -msgstr "Filter op rol" - -#: includes/fields/class-acf-field-user.php:15 includes/locations.php:101 -msgid "User" -msgstr "Gebruiker" - -#: includes/fields/class-acf-field-separator.php:25 -msgid "Separator" -msgstr "Scheidingsteken" - -#: includes/fields/class-acf-field-color_picker.php:75 -msgid "Select Color" -msgstr "Selecteer kleur" - -#: includes/admin/post-types/admin-post-type.php:129 -#: includes/admin/post-types/admin-taxonomy.php:131 -#: includes/fields/class-acf-field-color_picker.php:73 -#: assets/build/js/acf-internal-post-type.js:72 -#: assets/build/js/acf-internal-post-type.js:86 -msgid "Default" -msgstr "Standaard" - -#: includes/admin/views/acf-post-type/advanced-settings.php:89 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:141 -#: includes/fields/class-acf-field-color_picker.php:71 -msgid "Clear" -msgstr "Leegmaken" - -#: includes/fields/class-acf-field-color_picker.php:25 -msgid "Color Picker" -msgstr "Kleurkiezer" - -#: includes/fields/class-acf-field-date_time_picker.php:88 -msgctxt "Date Time Picker JS pmTextShort" -msgid "P" -msgstr "P" - -#: includes/fields/class-acf-field-date_time_picker.php:87 -msgctxt "Date Time Picker JS pmText" -msgid "PM" -msgstr "PM" - -#: includes/fields/class-acf-field-date_time_picker.php:84 -msgctxt "Date Time Picker JS amTextShort" -msgid "A" -msgstr "A" - -#: includes/fields/class-acf-field-date_time_picker.php:83 -msgctxt "Date Time Picker JS amText" -msgid "AM" -msgstr "AM" - -#: includes/fields/class-acf-field-date_time_picker.php:81 -msgctxt "Date Time Picker JS selectText" -msgid "Select" -msgstr "Selecteer" - -#: includes/fields/class-acf-field-date_time_picker.php:80 -msgctxt "Date Time Picker JS closeText" -msgid "Done" -msgstr "Gedaan" - -#: includes/fields/class-acf-field-date_time_picker.php:79 -msgctxt "Date Time Picker JS currentText" -msgid "Now" -msgstr "Nu" - -#: includes/fields/class-acf-field-date_time_picker.php:78 -msgctxt "Date Time Picker JS timezoneText" -msgid "Time Zone" -msgstr "Tijdzone" - -#: includes/fields/class-acf-field-date_time_picker.php:77 -msgctxt "Date Time Picker JS microsecText" -msgid "Microsecond" -msgstr "Microseconde" - -#: includes/fields/class-acf-field-date_time_picker.php:76 -msgctxt "Date Time Picker JS millisecText" -msgid "Millisecond" -msgstr "Milliseconde" - -#: includes/fields/class-acf-field-date_time_picker.php:75 -msgctxt "Date Time Picker JS secondText" -msgid "Second" -msgstr "Seconde" - -#: includes/fields/class-acf-field-date_time_picker.php:74 -msgctxt "Date Time Picker JS minuteText" -msgid "Minute" -msgstr "Minuut" - -#: includes/fields/class-acf-field-date_time_picker.php:73 -msgctxt "Date Time Picker JS hourText" -msgid "Hour" -msgstr "Uur" - -#: includes/fields/class-acf-field-date_time_picker.php:72 -msgctxt "Date Time Picker JS timeText" -msgid "Time" -msgstr "Tijd" - -#: includes/fields/class-acf-field-date_time_picker.php:71 -msgctxt "Date Time Picker JS timeOnlyTitle" -msgid "Choose Time" -msgstr "Kies tijd" - -#: includes/fields/class-acf-field-date_time_picker.php:25 -msgid "Date Time Picker" -msgstr "Datum tijd kiezer" - -#: includes/fields/class-acf-field-accordion.php:106 -msgid "Endpoint" -msgstr "Eindpunt" - -#: includes/admin/views/acf-field-group/options.php:130 -#: includes/fields/class-acf-field-tab.php:115 -msgid "Left aligned" -msgstr "Links uitgelijnd" - -#: includes/admin/views/acf-field-group/options.php:129 -#: includes/fields/class-acf-field-tab.php:114 -msgid "Top aligned" -msgstr "Boven uitgelijnd" - -#: includes/fields/class-acf-field-tab.php:110 -msgid "Placement" -msgstr "Plaatsing" - -#: includes/fields/class-acf-field-tab.php:26 -msgid "Tab" -msgstr "Tab" - -#: includes/fields/class-acf-field-url.php:162 -msgid "Value must be a valid URL" -msgstr "Waarde moet een geldige URL zijn" - -#: includes/fields/class-acf-field-link.php:177 -msgid "Link URL" -msgstr "Link URL" - -#: includes/fields/class-acf-field-link.php:176 -msgid "Link Array" -msgstr "Link array" - -#: includes/fields/class-acf-field-link.php:145 -msgid "Opens in a new window/tab" -msgstr "Opent in een nieuw venster/tab" - -#: includes/fields/class-acf-field-link.php:140 -msgid "Select Link" -msgstr "Selecteer link" - -#: includes/fields/class-acf-field-link.php:25 -msgid "Link" -msgstr "Link" - -#: includes/fields/class-acf-field-email.php:25 -msgid "Email" -msgstr "E-mail" - -#: includes/fields/class-acf-field-number.php:188 -#: includes/fields/class-acf-field-range.php:217 -msgid "Step Size" -msgstr "Stapgrootte" - -#: includes/fields/class-acf-field-number.php:158 -#: includes/fields/class-acf-field-range.php:195 -msgid "Maximum Value" -msgstr "Maximale waarde" - -#: includes/fields/class-acf-field-number.php:148 -#: includes/fields/class-acf-field-range.php:184 -msgid "Minimum Value" -msgstr "Minimum waarde" - -#: includes/fields/class-acf-field-range.php:25 -msgid "Range" -msgstr "Bereik" - -#: includes/fields/class-acf-field-button-group.php:175 -#: includes/fields/class-acf-field-checkbox.php:379 -#: includes/fields/class-acf-field-radio.php:220 -#: includes/fields/class-acf-field-select.php:399 -msgid "Both (Array)" -msgstr "Beide (Array)" - -#: includes/admin/views/acf-field-group/fields.php:52 -#: includes/fields/class-acf-field-button-group.php:174 -#: includes/fields/class-acf-field-checkbox.php:378 -#: includes/fields/class-acf-field-radio.php:219 -#: includes/fields/class-acf-field-select.php:398 -msgid "Label" -msgstr "Label" - -#: includes/fields/class-acf-field-button-group.php:173 -#: includes/fields/class-acf-field-checkbox.php:377 -#: includes/fields/class-acf-field-radio.php:218 -#: includes/fields/class-acf-field-select.php:397 -msgid "Value" -msgstr "Waarde" - -#: includes/fields/class-acf-field-button-group.php:222 -#: includes/fields/class-acf-field-checkbox.php:441 -#: includes/fields/class-acf-field-radio.php:292 -msgid "Vertical" -msgstr "Verticaal" - -#: includes/fields/class-acf-field-button-group.php:221 -#: includes/fields/class-acf-field-checkbox.php:442 -#: includes/fields/class-acf-field-radio.php:293 -msgid "Horizontal" -msgstr "Horizontaal" - -#: includes/fields/class-acf-field-button-group.php:148 -#: includes/fields/class-acf-field-checkbox.php:352 -#: includes/fields/class-acf-field-radio.php:193 -#: includes/fields/class-acf-field-select.php:370 -msgid "red : Red" -msgstr "rood : rood" - -#: includes/fields/class-acf-field-button-group.php:148 -#: includes/fields/class-acf-field-checkbox.php:352 -#: includes/fields/class-acf-field-radio.php:193 -#: includes/fields/class-acf-field-select.php:370 -msgid "For more control, you may specify both a value and label like this:" -msgstr "" -"Voor meer controle kan je zowel een waarde als een label als volgt " -"specificeren:" - -#: includes/fields/class-acf-field-button-group.php:148 -#: includes/fields/class-acf-field-checkbox.php:352 -#: includes/fields/class-acf-field-radio.php:193 -#: includes/fields/class-acf-field-select.php:370 -msgid "Enter each choice on a new line." -msgstr "Voer elke keuze in op een nieuwe regel." - -#: includes/fields/class-acf-field-button-group.php:147 -#: includes/fields/class-acf-field-checkbox.php:351 -#: includes/fields/class-acf-field-radio.php:192 -#: includes/fields/class-acf-field-select.php:369 -msgid "Choices" -msgstr "Keuzes" - -#: includes/fields/class-acf-field-button-group.php:24 -msgid "Button Group" -msgstr "Knop groep" - -#: includes/fields/class-acf-field-button-group.php:194 -#: includes/fields/class-acf-field-page_link.php:538 -#: includes/fields/class-acf-field-post_object.php:448 -#: includes/fields/class-acf-field-radio.php:238 -#: includes/fields/class-acf-field-select.php:429 -#: includes/fields/class-acf-field-taxonomy.php:772 -#: includes/fields/class-acf-field-user.php:103 -msgid "Allow Null" -msgstr "Null toestaan" - -#: includes/fields/class-acf-field-page_link.php:263 -#: includes/fields/class-acf-field-post_object.php:257 -#: includes/fields/class-acf-field-taxonomy.php:930 -msgid "Parent" -msgstr "Hoofd" - -#: includes/fields/class-acf-field-wysiwyg.php:390 -msgid "TinyMCE will not be initialized until field is clicked" -msgstr "TinyMCE wordt niet geïnitialiseerd totdat er op het veld wordt geklikt" - -#: includes/fields/class-acf-field-wysiwyg.php:389 -msgid "Delay Initialization" -msgstr "Initialisatie uitstellen" - -#: includes/fields/class-acf-field-wysiwyg.php:378 -msgid "Show Media Upload Buttons" -msgstr "Media uploadknoppen tonen" - -#: includes/fields/class-acf-field-wysiwyg.php:362 -msgid "Toolbar" -msgstr "Werkbalk" - -#: includes/fields/class-acf-field-wysiwyg.php:354 -msgid "Text Only" -msgstr "Enkel tekst" - -#: includes/fields/class-acf-field-wysiwyg.php:353 -msgid "Visual Only" -msgstr "Alleen visueel" - -#: includes/fields/class-acf-field-wysiwyg.php:352 -msgid "Visual & Text" -msgstr "Visueel & tekst" - -#: includes/fields/class-acf-field-wysiwyg.php:347 -msgid "Tabs" -msgstr "Tabs" - -#: includes/fields/class-acf-field-wysiwyg.php:285 -msgid "Click to initialize TinyMCE" -msgstr "Klik om TinyMCE te initialiseren" - -#: includes/fields/class-acf-field-wysiwyg.php:279 -msgctxt "Name for the Text editor tab (formerly HTML)" -msgid "Text" -msgstr "Tekst" - -#: includes/fields/class-acf-field-wysiwyg.php:278 -msgid "Visual" -msgstr "Visueel" - -#: includes/fields/class-acf-field-text.php:189 -#: includes/fields/class-acf-field-textarea.php:236 -msgid "Value must not exceed %d characters" -msgstr "De waarde mag niet langer zijn dan %d karakters" - -#: includes/fields/class-acf-field-text.php:124 -#: includes/fields/class-acf-field-textarea.php:124 -msgid "Leave blank for no limit" -msgstr "Laat leeg voor geen limiet" - -#: includes/fields/class-acf-field-text.php:123 -#: includes/fields/class-acf-field-textarea.php:123 -msgid "Character Limit" -msgstr "Karakterlimiet" - -#: includes/fields/class-acf-field-email.php:158 -#: includes/fields/class-acf-field-number.php:209 -#: includes/fields/class-acf-field-password.php:105 -#: includes/fields/class-acf-field-range.php:239 -#: includes/fields/class-acf-field-text.php:164 -msgid "Appears after the input" -msgstr "Verschijnt na de invoer" - -#: includes/fields/class-acf-field-email.php:157 -#: includes/fields/class-acf-field-number.php:208 -#: includes/fields/class-acf-field-password.php:104 -#: includes/fields/class-acf-field-range.php:238 -#: includes/fields/class-acf-field-text.php:163 -msgid "Append" -msgstr "Toevoegen" - -#: includes/fields/class-acf-field-email.php:148 -#: includes/fields/class-acf-field-number.php:199 -#: includes/fields/class-acf-field-password.php:95 -#: includes/fields/class-acf-field-range.php:229 -#: includes/fields/class-acf-field-text.php:154 -msgid "Appears before the input" -msgstr "Verschijnt vóór de invoer" - -#: includes/fields/class-acf-field-email.php:147 -#: includes/fields/class-acf-field-number.php:198 -#: includes/fields/class-acf-field-password.php:94 -#: includes/fields/class-acf-field-range.php:228 -#: includes/fields/class-acf-field-text.php:153 -msgid "Prepend" -msgstr "Voorvoegen" - -#: includes/fields/class-acf-field-email.php:138 -#: includes/fields/class-acf-field-number.php:179 -#: includes/fields/class-acf-field-password.php:85 -#: includes/fields/class-acf-field-text.php:144 -#: includes/fields/class-acf-field-textarea.php:156 -#: includes/fields/class-acf-field-url.php:122 -msgid "Appears within the input" -msgstr "Verschijnt in de invoer" - -#: includes/fields/class-acf-field-email.php:137 -#: includes/fields/class-acf-field-number.php:178 -#: includes/fields/class-acf-field-password.php:84 -#: includes/fields/class-acf-field-text.php:143 -#: includes/fields/class-acf-field-textarea.php:155 -#: includes/fields/class-acf-field-url.php:121 -msgid "Placeholder Text" -msgstr "Plaatshouder tekst" - -#: includes/fields/class-acf-field-button-group.php:158 -#: includes/fields/class-acf-field-email.php:118 -#: includes/fields/class-acf-field-number.php:129 -#: includes/fields/class-acf-field-radio.php:203 -#: includes/fields/class-acf-field-range.php:165 -#: includes/fields/class-acf-field-text.php:104 -#: includes/fields/class-acf-field-textarea.php:104 -#: includes/fields/class-acf-field-url.php:102 -#: includes/fields/class-acf-field-wysiwyg.php:312 -msgid "Appears when creating a new post" -msgstr "Wordt getoond bij het maken van een nieuw bericht" - -#: includes/fields/class-acf-field-text.php:25 -msgid "Text" -msgstr "Tekst" - -#: includes/fields/class-acf-field-relationship.php:794 -msgid "%1$s requires at least %2$s selection" -msgid_plural "%1$s requires at least %2$s selections" -msgstr[0] "%1$s vereist minimaal %2$s selectie" -msgstr[1] "%1$s vereist minimaal %2$s selecties" - -#: includes/fields/class-acf-field-post_object.php:417 -#: includes/fields/class-acf-field-relationship.php:644 -msgid "Post ID" -msgstr "Bericht ID" - -#: includes/fields/class-acf-field-post_object.php:17 -#: includes/fields/class-acf-field-post_object.php:416 -#: includes/fields/class-acf-field-relationship.php:643 -msgid "Post Object" -msgstr "Bericht object" - -#: includes/fields/class-acf-field-relationship.php:676 -msgid "Maximum Posts" -msgstr "Maximum aantal berichten" - -#: includes/fields/class-acf-field-relationship.php:666 -msgid "Minimum Posts" -msgstr "Minimum aantal berichten" - -#: includes/admin/views/acf-field-group/options.php:183 -#: includes/admin/views/acf-post-type/advanced-settings.php:29 -#: includes/fields/class-acf-field-relationship.php:701 -msgid "Featured Image" -msgstr "Uitgelichte afbeelding" - -#: includes/fields/class-acf-field-relationship.php:697 -msgid "Selected elements will be displayed in each result" -msgstr "Geselecteerde elementen worden weergegeven in elk resultaat" - -#: includes/fields/class-acf-field-relationship.php:696 -msgid "Elements" -msgstr "Elementen" - -#: includes/fields/class-acf-field-relationship.php:630 -#: includes/fields/class-acf-field-taxonomy.php:20 -#: includes/fields/class-acf-field-taxonomy.php:692 -#: includes/locations/class-acf-location-taxonomy.php:22 -msgid "Taxonomy" -msgstr "Taxonomie" - -#: includes/fields/class-acf-field-relationship.php:629 -#: includes/locations/class-acf-location-post-type.php:22 -#: includes/post-types/class-acf-post-type.php:92 -msgid "Post Type" -msgstr "Berichttype" - -#: includes/fields/class-acf-field-relationship.php:623 -msgid "Filters" -msgstr "Filters" - -#: includes/fields/class-acf-field-page_link.php:499 -#: includes/fields/class-acf-field-post_object.php:404 -#: includes/fields/class-acf-field-relationship.php:616 -msgid "All taxonomies" -msgstr "Alle taxonomieën" - -#: includes/fields/class-acf-field-page_link.php:491 -#: includes/fields/class-acf-field-post_object.php:396 -#: includes/fields/class-acf-field-relationship.php:608 -msgid "Filter by Taxonomy" -msgstr "Filter op taxonomie" - -#: includes/fields/class-acf-field-page_link.php:469 -#: includes/fields/class-acf-field-post_object.php:374 -#: includes/fields/class-acf-field-relationship.php:586 -msgid "All post types" -msgstr "Alle berichttypen" - -#: includes/fields/class-acf-field-page_link.php:461 -#: includes/fields/class-acf-field-post_object.php:366 -#: includes/fields/class-acf-field-relationship.php:578 -msgid "Filter by Post Type" -msgstr "Filter op berichttype" - -#: includes/fields/class-acf-field-relationship.php:476 -msgid "Search..." -msgstr "Zoeken..." - -#: includes/fields/class-acf-field-relationship.php:406 -msgid "Select taxonomy" -msgstr "Selecteer taxonomie" - -#: includes/fields/class-acf-field-relationship.php:397 -msgid "Select post type" -msgstr "Selecteer berichttype" - -#: includes/fields/class-acf-field-relationship.php:61 -#: assets/build/js/acf-input.js:3930 assets/build/js/acf-input.js:4214 -msgid "No matches found" -msgstr "Geen overeenkomsten gevonden" - -#: includes/fields/class-acf-field-relationship.php:60 -#: assets/build/js/acf-input.js:3913 assets/build/js/acf-input.js:4193 -msgid "Loading" -msgstr "Aan het laden" - -#: includes/fields/class-acf-field-relationship.php:59 -#: assets/build/js/acf-input.js:3818 assets/build/js/acf-input.js:4084 -msgid "Maximum values reached ( {max} values )" -msgstr "Maximale waarden bereikt ({max} waarden)" - -#: includes/fields/class-acf-field-relationship.php:17 -msgid "Relationship" -msgstr "Relatie" - -#: includes/fields/class-acf-field-file.php:291 -#: includes/fields/class-acf-field-image.php:317 -msgid "Comma separated list. Leave blank for all types" -msgstr "Lijst met door komma's gescheiden. Leeg laten voor alle typen" - -#: includes/fields/class-acf-field-file.php:290 -#: includes/fields/class-acf-field-image.php:316 -msgid "Allowed File Types" -msgstr "Toegestane bestandstypen" - -#: includes/fields/class-acf-field-file.php:278 -#: includes/fields/class-acf-field-image.php:280 -msgid "Maximum" -msgstr "Maximum" - -#: includes/fields/class-acf-field-file.php:154 -#: includes/fields/class-acf-field-file.php:270 -#: includes/fields/class-acf-field-file.php:282 -#: includes/fields/class-acf-field-image.php:271 -#: includes/fields/class-acf-field-image.php:307 -msgid "File size" -msgstr "Bestandsgrootte" - -#: includes/fields/class-acf-field-image.php:245 -#: includes/fields/class-acf-field-image.php:281 -msgid "Restrict which images can be uploaded" -msgstr "Beperken welke afbeeldingen kunnen worden geüpload" - -#: includes/fields/class-acf-field-file.php:266 -#: includes/fields/class-acf-field-image.php:244 -msgid "Minimum" -msgstr "Minimum" - -#: includes/fields/class-acf-field-file.php:235 -#: includes/fields/class-acf-field-image.php:210 -msgid "Uploaded to post" -msgstr "Geüpload naar bericht" - -#: includes/fields/class-acf-field-file.php:234 -#: includes/fields/class-acf-field-image.php:209 -#: includes/locations/class-acf-location-attachment.php:73 -#: includes/locations/class-acf-location-comment.php:61 -#: includes/locations/class-acf-location-nav-menu.php:74 -#: includes/locations/class-acf-location-taxonomy.php:63 -#: includes/locations/class-acf-location-user-form.php:71 -#: includes/locations/class-acf-location-user-role.php:78 -#: includes/locations/class-acf-location-widget.php:65 -msgid "All" -msgstr "Alle" - -#: includes/fields/class-acf-field-file.php:229 -#: includes/fields/class-acf-field-image.php:204 -msgid "Limit the media library choice" -msgstr "Beperk de keuze van de mediabibliotheek" - -#: includes/fields/class-acf-field-file.php:228 -#: includes/fields/class-acf-field-image.php:203 -msgid "Library" -msgstr "Bibliotheek" - -#: includes/fields/class-acf-field-image.php:336 -msgid "Preview Size" -msgstr "Voorbeeld grootte" - -#: includes/fields/class-acf-field-image.php:195 -msgid "Image ID" -msgstr "Afbeelding ID" - -#: includes/fields/class-acf-field-image.php:194 -msgid "Image URL" -msgstr "Afbeelding URL" - -#: includes/fields/class-acf-field-image.php:193 -msgid "Image Array" -msgstr "Afbeelding array" - -#: includes/fields/class-acf-field-button-group.php:168 -#: includes/fields/class-acf-field-checkbox.php:372 -#: includes/fields/class-acf-field-file.php:213 -#: includes/fields/class-acf-field-link.php:171 -#: includes/fields/class-acf-field-radio.php:213 -msgid "Specify the returned value on front end" -msgstr "De geretourneerde waarde op de front-end opgeven" - -#: includes/fields/class-acf-field-button-group.php:167 -#: includes/fields/class-acf-field-checkbox.php:371 -#: includes/fields/class-acf-field-file.php:212 -#: includes/fields/class-acf-field-link.php:170 -#: includes/fields/class-acf-field-radio.php:212 -#: includes/fields/class-acf-field-taxonomy.php:736 -msgid "Return Value" -msgstr "Retour waarde" - -#: includes/fields/class-acf-field-image.php:162 -msgid "Add Image" -msgstr "Afbeelding toevoegen" - -#: includes/fields/class-acf-field-image.php:162 -msgid "No image selected" -msgstr "Geen afbeelding geselecteerd" - -#: includes/assets.php:352 includes/fields/class-acf-field-file.php:162 -#: includes/fields/class-acf-field-image.php:142 -#: includes/fields/class-acf-field-link.php:145 assets/build/js/acf.js:1563 -#: assets/build/js/acf.js:1657 -msgid "Remove" -msgstr "Verwijderen" - -#: includes/admin/views/acf-field-group/field.php:76 -#: includes/fields/class-acf-field-file.php:160 -#: includes/fields/class-acf-field-image.php:140 -#: includes/fields/class-acf-field-link.php:145 -msgid "Edit" -msgstr "Bewerken" - -#: includes/fields/class-acf-field-image.php:70 includes/media.php:55 -#: assets/build/js/acf-input.js:6837 assets/build/js/acf-input.js:7320 -msgid "All images" -msgstr "Alle afbeeldingen" - -#: includes/fields/class-acf-field-image.php:69 -#: assets/build/js/acf-input.js:3181 assets/build/js/acf-input.js:3399 -msgid "Update Image" -msgstr "Afbeelding bijwerken" - -#: includes/fields/class-acf-field-image.php:68 -#: assets/build/js/acf-input.js:3180 assets/build/js/acf-input.js:3398 -msgid "Edit Image" -msgstr "Afbeelding bewerken" - -#: includes/fields/class-acf-field-image.php:67 -#: assets/build/js/acf-input.js:3156 assets/build/js/acf-input.js:3373 -msgid "Select Image" -msgstr "Selecteer afbeelding" - -#: includes/fields/class-acf-field-image.php:25 -msgid "Image" -msgstr "Afbeelding" - -#: includes/fields/class-acf-field-message.php:125 -msgid "Allow HTML markup to display as visible text instead of rendering" -msgstr "" -"Toestaan dat HTML markeringen worden weergegeven als zichtbare tekst in " -"plaats van als weergave" - -#: includes/fields/class-acf-field-message.php:124 -msgid "Escape HTML" -msgstr "Escape HTML" - -#: includes/fields/class-acf-field-message.php:116 -#: includes/fields/class-acf-field-textarea.php:172 -msgid "No Formatting" -msgstr "Geen opmaak" - -#: includes/fields/class-acf-field-message.php:115 -#: includes/fields/class-acf-field-textarea.php:171 -msgid "Automatically add <br>" -msgstr "Automatisch <br> toevoegen;" - -#: includes/fields/class-acf-field-message.php:114 -#: includes/fields/class-acf-field-textarea.php:170 -msgid "Automatically add paragraphs" -msgstr "Automatisch paragrafen toevoegen" - -#: includes/fields/class-acf-field-message.php:110 -#: includes/fields/class-acf-field-textarea.php:166 -msgid "Controls how new lines are rendered" -msgstr "Bepaalt hoe nieuwe regels worden weergegeven" - -#: includes/fields/class-acf-field-message.php:109 -#: includes/fields/class-acf-field-textarea.php:165 -msgid "New Lines" -msgstr "Nieuwe lijnen" - -#: includes/fields/class-acf-field-date_picker.php:232 -#: includes/fields/class-acf-field-date_time_picker.php:220 -msgid "Week Starts On" -msgstr "Week begint op" - -#: includes/fields/class-acf-field-date_picker.php:201 -msgid "The format used when saving a value" -msgstr "Het formaat dat wordt gebruikt bij het opslaan van een waarde" - -#: includes/fields/class-acf-field-date_picker.php:200 -msgid "Save Format" -msgstr "Formaat opslaan" - -#: includes/fields/class-acf-field-date_picker.php:67 -msgctxt "Date Picker JS weekHeader" -msgid "Wk" -msgstr "Wk" - -#: includes/fields/class-acf-field-date_picker.php:66 -msgctxt "Date Picker JS prevText" -msgid "Prev" -msgstr "Vorige" - -#: includes/fields/class-acf-field-date_picker.php:65 -msgctxt "Date Picker JS nextText" -msgid "Next" -msgstr "Volgende" - -#: includes/fields/class-acf-field-date_picker.php:64 -msgctxt "Date Picker JS currentText" -msgid "Today" -msgstr "Vandaag" - -#: includes/fields/class-acf-field-date_picker.php:63 -msgctxt "Date Picker JS closeText" -msgid "Done" -msgstr "Klaar" - -#: includes/fields/class-acf-field-date_picker.php:25 -msgid "Date Picker" -msgstr "Datumkiezer" - -#: includes/fields/class-acf-field-image.php:248 -#: includes/fields/class-acf-field-image.php:284 -#: includes/fields/class-acf-field-oembed.php:268 -msgid "Width" -msgstr "Breedte" - -#: includes/fields/class-acf-field-oembed.php:265 -#: includes/fields/class-acf-field-oembed.php:277 -msgid "Embed Size" -msgstr "Insluit grootte" - -#: includes/fields/class-acf-field-oembed.php:222 -msgid "Enter URL" -msgstr "URL invoeren" - -#: includes/fields/class-acf-field-oembed.php:25 -msgid "oEmbed" -msgstr "oEmbed" - -#: includes/fields/class-acf-field-true_false.php:184 -msgid "Text shown when inactive" -msgstr "Tekst getoond indien inactief" - -#: includes/fields/class-acf-field-true_false.php:183 -msgid "Off Text" -msgstr "Uit-tekst" - -#: includes/fields/class-acf-field-true_false.php:168 -msgid "Text shown when active" -msgstr "Tekst getoond indien actief" - -#: includes/fields/class-acf-field-true_false.php:167 -msgid "On Text" -msgstr "Aan-tekst" - -#: includes/fields/class-acf-field-select.php:450 -#: includes/fields/class-acf-field-true_false.php:199 -msgid "Stylized UI" -msgstr "Gestileerde UI" - -#: includes/fields/class-acf-field-button-group.php:157 -#: includes/fields/class-acf-field-checkbox.php:361 -#: includes/fields/class-acf-field-color_picker.php:156 -#: includes/fields/class-acf-field-email.php:117 -#: includes/fields/class-acf-field-number.php:128 -#: includes/fields/class-acf-field-radio.php:202 -#: includes/fields/class-acf-field-range.php:164 -#: includes/fields/class-acf-field-select.php:380 -#: includes/fields/class-acf-field-text.php:103 -#: includes/fields/class-acf-field-textarea.php:103 -#: includes/fields/class-acf-field-true_false.php:147 -#: includes/fields/class-acf-field-url.php:101 -#: includes/fields/class-acf-field-wysiwyg.php:311 -msgid "Default Value" -msgstr "Standaardwaarde" - -#: includes/fields/class-acf-field-true_false.php:138 -msgid "Displays text alongside the checkbox" -msgstr "Toont tekst naast het selectievakje" - -#: includes/fields/class-acf-field-message.php:26 -#: includes/fields/class-acf-field-message.php:99 -#: includes/fields/class-acf-field-true_false.php:137 -msgid "Message" -msgstr "Bericht" - -#: includes/assets.php:351 includes/fields/class-acf-field-true_false.php:86 -#: includes/fields/class-acf-field-true_false.php:187 -#: assets/build/js/acf.js:1740 assets/build/js/acf.js:1857 -msgid "No" -msgstr "Nee" - -#: includes/assets.php:350 includes/fields/class-acf-field-true_false.php:83 -#: includes/fields/class-acf-field-true_false.php:171 -#: assets/build/js/acf.js:1739 assets/build/js/acf.js:1856 -msgid "Yes" -msgstr "Ja" - -#: includes/fields/class-acf-field-true_false.php:25 -msgid "True / False" -msgstr "Waar / Niet waar" - -#: includes/fields/class-acf-field-group.php:474 -msgid "Row" -msgstr "Rij" - -#: includes/fields/class-acf-field-group.php:473 -msgid "Table" -msgstr "Tabel" - -#: includes/admin/post-types/admin-field-group.php:140 -#: includes/fields/class-acf-field-group.php:472 -msgid "Block" -msgstr "Blok" - -#: includes/fields/class-acf-field-group.php:467 -msgid "Specify the style used to render the selected fields" -msgstr "" -"Geef de stijl op die wordt gebruikt om de geselecteerde velden weer te geven" - -#: includes/fields.php:356 includes/fields/class-acf-field-button-group.php:215 -#: includes/fields/class-acf-field-checkbox.php:435 -#: includes/fields/class-acf-field-group.php:466 -#: includes/fields/class-acf-field-radio.php:286 -msgid "Layout" -msgstr "Lay-out" - -#: includes/fields/class-acf-field-group.php:450 -msgid "Sub Fields" -msgstr "Subvelden" - -#: includes/fields/class-acf-field-group.php:25 -msgid "Group" -msgstr "Groep" - -#: includes/fields/class-acf-field-google-map.php:235 -msgid "Customize the map height" -msgstr "De kaarthoogte aanpassen" - -#: includes/fields/class-acf-field-google-map.php:234 -#: includes/fields/class-acf-field-image.php:259 -#: includes/fields/class-acf-field-image.php:295 -#: includes/fields/class-acf-field-oembed.php:280 -msgid "Height" -msgstr "Hoogte" - -#: includes/fields/class-acf-field-google-map.php:223 -msgid "Set the initial zoom level" -msgstr "Het initiële zoomniveau instellen" - -#: includes/fields/class-acf-field-google-map.php:222 -msgid "Zoom" -msgstr "Zoom" - -#: includes/fields/class-acf-field-google-map.php:196 -#: includes/fields/class-acf-field-google-map.php:209 -msgid "Center the initial map" -msgstr "De eerste kaart centreren" - -#: includes/fields/class-acf-field-google-map.php:195 -#: includes/fields/class-acf-field-google-map.php:208 -msgid "Center" -msgstr "Gecentreerd" - -#: includes/fields/class-acf-field-google-map.php:163 -msgid "Search for address..." -msgstr "Zoek naar adres..." - -#: includes/fields/class-acf-field-google-map.php:160 -msgid "Find current location" -msgstr "Huidige locatie opzoeken" - -#: includes/fields/class-acf-field-google-map.php:159 -msgid "Clear location" -msgstr "Duidelijke locatie" - -#: includes/fields/class-acf-field-google-map.php:158 -#: includes/fields/class-acf-field-relationship.php:628 -msgid "Search" -msgstr "Zoeken" - -#: includes/fields/class-acf-field-google-map.php:63 -#: assets/build/js/acf-input.js:2840 assets/build/js/acf-input.js:3026 -msgid "Sorry, this browser does not support geolocation" -msgstr "Deze browser ondersteunt geen geolocatie" - -#: includes/fields/class-acf-field-google-map.php:25 -msgid "Google Map" -msgstr "Google Map" - -#: includes/fields/class-acf-field-date_picker.php:212 -#: includes/fields/class-acf-field-date_time_picker.php:201 -#: includes/fields/class-acf-field-time_picker.php:132 -msgid "The format returned via template functions" -msgstr "Het formaat dat wordt geretourneerd via templatefuncties" - -#: includes/fields/class-acf-field-color_picker.php:180 -#: includes/fields/class-acf-field-date_picker.php:211 -#: includes/fields/class-acf-field-date_time_picker.php:200 -#: includes/fields/class-acf-field-image.php:187 -#: includes/fields/class-acf-field-post_object.php:411 -#: includes/fields/class-acf-field-relationship.php:638 -#: includes/fields/class-acf-field-select.php:391 -#: includes/fields/class-acf-field-time_picker.php:131 -#: includes/fields/class-acf-field-user.php:66 -msgid "Return Format" -msgstr "Retour formaat" - -#: includes/fields/class-acf-field-date_picker.php:190 -#: includes/fields/class-acf-field-date_picker.php:221 -#: includes/fields/class-acf-field-date_time_picker.php:192 -#: includes/fields/class-acf-field-date_time_picker.php:210 -#: includes/fields/class-acf-field-time_picker.php:123 -#: includes/fields/class-acf-field-time_picker.php:139 -msgid "Custom:" -msgstr "Aangepast:" - -#: includes/fields/class-acf-field-date_picker.php:182 -#: includes/fields/class-acf-field-date_time_picker.php:183 -#: includes/fields/class-acf-field-time_picker.php:116 -msgid "The format displayed when editing a post" -msgstr "Het formaat dat wordt weergegeven bij het bewerken van een bericht" - -#: includes/fields/class-acf-field-date_picker.php:181 -#: includes/fields/class-acf-field-date_time_picker.php:182 -#: includes/fields/class-acf-field-time_picker.php:115 -msgid "Display Format" -msgstr "Weergaveformaat" - -#: includes/fields/class-acf-field-time_picker.php:25 -msgid "Time Picker" -msgstr "Tijdkiezer" - -#. translators: counts for inactive field groups -#: acf.php:503 -msgid "Inactive (%s)" -msgid_plural "Inactive (%s)" -msgstr[0] "Inactief (%s)" -msgstr[1] "Inactief (%s)" - -#: acf.php:462 -msgid "No Fields found in Trash" -msgstr "Geen velden gevonden in de prullenmand" - -#: acf.php:461 -msgid "No Fields found" -msgstr "Geen velden gevonden" - -#: acf.php:460 -msgid "Search Fields" -msgstr "Zoek velden" - -#: acf.php:459 -msgid "View Field" -msgstr "Veld bekijken" - -#: acf.php:458 includes/admin/views/acf-field-group/fields.php:115 -msgid "New Field" -msgstr "Nieuw veld" - -#: acf.php:457 -msgid "Edit Field" -msgstr "Veld bewerken" - -#: acf.php:456 -msgid "Add New Field" -msgstr "Nieuw veld toevoegen" - -#: acf.php:454 -msgid "Field" -msgstr "Veld" - -#: acf.php:453 includes/admin/post-types/admin-field-group.php:163 -#: includes/admin/post-types/admin-field-groups.php:119 -#: includes/admin/views/acf-field-group/fields.php:32 -msgid "Fields" -msgstr "Velden" - -#: acf.php:428 -msgid "No Field Groups found in Trash" -msgstr "Geen veldgroepen gevonden in prullenmand" - -#: acf.php:427 -msgid "No Field Groups found" -msgstr "Geen veldgroepen gevonden" - -#: acf.php:426 -msgid "Search Field Groups" -msgstr "Zoeken veldgroepen" - -#: acf.php:425 -msgid "View Field Group" -msgstr "Veldgroep bekijken" - -#: acf.php:424 -msgid "New Field Group" -msgstr "Nieuwe veldgroep" - -#: acf.php:423 -msgid "Edit Field Group" -msgstr "Veldgroep bewerken" - -#: acf.php:422 -msgid "Add New Field Group" -msgstr "Nieuwe veldgroep toevoegen" - -#: acf.php:421 acf.php:455 -#: includes/admin/views/acf-post-type/advanced-settings.php:219 -#: includes/admin/views/acf-post-type/advanced-settings.php:221 -#: includes/post-types/class-acf-post-type.php:93 -#: includes/post-types/class-acf-taxonomy.php:92 -msgid "Add New" -msgstr "Nieuwe toevoegen" - -#: acf.php:420 -msgid "Field Group" -msgstr "Veldgroep" - -#: acf.php:419 includes/admin/post-types/admin-field-groups.php:78 -#: includes/admin/post-types/admin-post-types.php:138 -#: includes/admin/post-types/admin-taxonomies.php:138 -msgid "Field Groups" -msgstr "Veldgroepen" - -#. Description of the plugin -msgid "Customize WordPress with powerful, professional and intuitive fields." -msgstr "Pas WordPress aan met krachtige, professionele en intuïtieve velden." - -#. Plugin URI of the plugin -msgid "https://www.advancedcustomfields.com" -msgstr "https://www.advancedcustomfields.com" - -#. Plugin Name of the plugin -#: acf.php:94 -msgid "Advanced Custom Fields" -msgstr "Advanced Custom Fields" - -#: pro/acf-pro.php:27 -msgid "Advanced Custom Fields PRO" -msgstr "Advanced Custom Fields PRO" - -#: pro/blocks.php:170 -msgid "Block type name is required." -msgstr "" - -#. translators: The name of the block type -#: pro/blocks.php:178 -msgid "Block type \"%s\" is already registered." -msgstr "" - -#: pro/blocks.php:726 -msgid "Switch to Edit" -msgstr "" - -#: pro/blocks.php:727 -msgid "Switch to Preview" -msgstr "" - -#: pro/blocks.php:728 -msgid "Change content alignment" -msgstr "" - -#. translators: %s: Block type title -#: pro/blocks.php:731 -msgid "%s settings" -msgstr "" - -#: pro/blocks.php:936 -msgid "This block contains no editable fields." -msgstr "" - -#. translators: %s: an admin URL to the field group edit screen -#: pro/blocks.php:942 -msgid "" -"Assign a field group to add fields to " -"this block." -msgstr "" - -#: pro/options-page.php:78 -msgid "Options Updated" -msgstr "Opties bijgewerkt" - -#: pro/updates.php:99 -msgid "" -"To enable updates, please enter your license key on the Updates page. If you don't have a licence key, please see details & pricing." -msgstr "" - -#: pro/updates.php:159 -msgid "" -"ACF Activation Error. Your defined license key has changed, but an " -"error occurred when deactivating your old licence" -msgstr "" - -#: pro/updates.php:154 -msgid "" -"ACF Activation Error. Your defined license key has changed, but an " -"error occurred when connecting to activation server" -msgstr "" - -#: pro/updates.php:192 -msgid "ACF Activation Error" -msgstr "" - -#: pro/updates.php:187 -msgid "" -"ACF Activation Error. An error occurred when connecting to activation " -"server" -msgstr "" - -#: pro/updates.php:279 -msgid "Check Again" -msgstr "Controleer op updates" - -#: pro/updates.php:593 -msgid "ACF Activation Error. Could not connect to activation server" -msgstr "" - -#: pro/admin/admin-options-page.php:195 -msgid "Publish" -msgstr "Publiceer" - -#: pro/admin/admin-options-page.php:199 -msgid "" -"No Custom Field Groups found for this options page. Create a " -"Custom Field Group" -msgstr "" -"Er zijn geen groepen gevonden voor deze optie pagina. Maak " -"een extra velden groep" - -#: pro/admin/admin-updates.php:52 -msgid "Error. Could not connect to update server" -msgstr "Fout. Kan niet verbinden met de update server" - -#: pro/admin/admin-updates.php:212 -msgid "" -"Error. Could not authenticate update package. Please check again or " -"deactivate and reactivate your ACF PRO license." -msgstr "" - -#: pro/admin/admin-updates.php:199 -msgid "" -"Error. Your license for this site has expired or been deactivated. " -"Please reactivate your ACF PRO license." -msgstr "" - -#: pro/fields/class-acf-field-clone.php:27, -#: pro/fields/class-acf-field-repeater.php:31 -msgid "" -"Allows you to select and display existing fields. It does not duplicate any " -"fields in the database, but loads and displays the selected fields at run-" -"time. The Clone field can either replace itself with the selected fields or " -"display the selected fields as a group of subfields." -msgstr "" - -#: pro/fields/class-acf-field-clone.php:819 -msgid "Select one or more fields you wish to clone" -msgstr "Selecteer een of meer velden om te klonen" - -#: pro/fields/class-acf-field-clone.php:838 -msgid "Display" -msgstr "Toon" - -#: pro/fields/class-acf-field-clone.php:839 -msgid "Specify the style used to render the clone field" -msgstr "Kies de gebruikte stijl bij het renderen van het gekloonde veld" - -#: pro/fields/class-acf-field-clone.php:844 -msgid "Group (displays selected fields in a group within this field)" -msgstr "Groep (toont geselecteerde velden in een groep binnen dit veld)" - -#: pro/fields/class-acf-field-clone.php:845 -msgid "Seamless (replaces this field with selected fields)" -msgstr "Naadloos (vervangt dit veld met de geselecteerde velden)" - -#: pro/fields/class-acf-field-clone.php:868 -msgid "Labels will be displayed as %s" -msgstr "Labels worden getoond als %s" - -#: pro/fields/class-acf-field-clone.php:873 -msgid "Prefix Field Labels" -msgstr "Prefix veld labels" - -#: pro/fields/class-acf-field-clone.php:883 -msgid "Values will be saved as %s" -msgstr "Waarden worden opgeslagen als %s" - -#: pro/fields/class-acf-field-clone.php:888 -msgid "Prefix Field Names" -msgstr "Prefix veld namen" - -#: pro/fields/class-acf-field-clone.php:1005 -msgid "Unknown field" -msgstr "Onbekend veld" - -#: pro/fields/class-acf-field-clone.php:1042 -msgid "Unknown field group" -msgstr "Onbekend groep" - -#: pro/fields/class-acf-field-clone.php:1046 -msgid "All fields from %s field group" -msgstr "Alle velden van %s veld groep" - -#: pro/fields/class-acf-field-flexible-content.php:27 -msgid "" -"Allows you to define, create and manage content with total control by " -"creating layouts that contain subfields that content editors can choose from." -msgstr "" - -#: pro/fields/class-acf-field-flexible-content.php:36, -#: pro/fields/class-acf-field-repeater.php:103, -#: pro/fields/class-acf-field-repeater.php:297 -msgid "Add Row" -msgstr "Nieuwe regel" - -#: pro/fields/class-acf-field-flexible-content.php:76, -#: pro/fields/class-acf-field-flexible-content.php:943, -#: pro/fields/class-acf-field-flexible-content.php:1022 -#, fuzzy -#| msgid "layout" -msgid "layout" -msgid_plural "layouts" -msgstr[0] "layout" -msgstr[1] "layout" - -#: pro/fields/class-acf-field-flexible-content.php:77 -msgid "layouts" -msgstr "layouts" - -#: pro/fields/class-acf-field-flexible-content.php:81, -#: pro/fields/class-acf-field-flexible-content.php:942, -#: pro/fields/class-acf-field-flexible-content.php:1021 -msgid "This field requires at least {min} {label} {identifier}" -msgstr "Dit veld vereist op zijn minst {min} {label} {identifier}" - -#: pro/fields/class-acf-field-flexible-content.php:82 -msgid "This field has a limit of {max} {label} {identifier}" -msgstr "" - -#: pro/fields/class-acf-field-flexible-content.php:85 -msgid "{available} {label} {identifier} available (max {max})" -msgstr "{available} {label} {identifier} beschikbaar (max {max})" - -#: pro/fields/class-acf-field-flexible-content.php:86 -msgid "{required} {label} {identifier} required (min {min})" -msgstr "{required} {label} {identifier} verplicht (min {min})" - -#: pro/fields/class-acf-field-flexible-content.php:89 -msgid "Flexible Content requires at least 1 layout" -msgstr "Flexibele content vereist minimaal 1 layout" - -#: pro/fields/class-acf-field-flexible-content.php:282 -msgid "Click the \"%s\" button below to start creating your layout" -msgstr "Klik op de \"%s\" button om een nieuwe lay-out te maken" - -#: pro/fields/class-acf-field-flexible-content.php:423 -msgid "Add layout" -msgstr "Layout toevoegen" - -#: pro/fields/class-acf-field-flexible-content.php:424 -msgid "Duplicate layout" -msgstr "" - -#: pro/fields/class-acf-field-flexible-content.php:425 -msgid "Remove layout" -msgstr "Verwijder layout" - -#: pro/fields/class-acf-field-flexible-content.php:426, -#: pro/fields/class-acf-repeater-table.php:382 -msgid "Click to toggle" -msgstr "Klik om in/uit te klappen" - -#: pro/fields/class-acf-field-flexible-content.php:562 -msgid "Delete Layout" -msgstr "Verwijder layout" - -#: pro/fields/class-acf-field-flexible-content.php:563 -msgid "Duplicate Layout" -msgstr "Dupliceer layout" - -#: pro/fields/class-acf-field-flexible-content.php:564 -msgid "Add New Layout" -msgstr "Nieuwe layout" - -#: pro/fields/class-acf-field-flexible-content.php:564 -#, fuzzy -#| msgid "Add layout" -msgid "Add Layout" -msgstr "Layout toevoegen" - -#: pro/fields/class-acf-field-flexible-content.php:647 -msgid "Min" -msgstr "Min" - -#: pro/fields/class-acf-field-flexible-content.php:662 -msgid "Max" -msgstr "Max" - -#: pro/fields/class-acf-field-flexible-content.php:705 -msgid "Minimum Layouts" -msgstr "Minimale layouts" - -#: pro/fields/class-acf-field-flexible-content.php:716 -msgid "Maximum Layouts" -msgstr "Maximale layouts" - -#: pro/fields/class-acf-field-flexible-content.php:727, -#: pro/fields/class-acf-field-repeater.php:293 -msgid "Button Label" -msgstr "Button label" - -#: pro/fields/class-acf-field-flexible-content.php:1710, -#: pro/fields/class-acf-field-repeater.php:918 -msgid "%s must be of type array or null." -msgstr "" - -#: pro/fields/class-acf-field-flexible-content.php:1721 -msgid "%1$s must contain at least %2$s %3$s layout." -msgid_plural "%1$s must contain at least %2$s %3$s layouts." -msgstr[0] "" -msgstr[1] "" - -#: pro/fields/class-acf-field-flexible-content.php:1737 -msgid "%1$s must contain at most %2$s %3$s layout." -msgid_plural "%1$s must contain at most %2$s %3$s layouts." -msgstr[0] "" -msgstr[1] "" - -#: pro/fields/class-acf-field-gallery.php:27 -msgid "" -"An interactive interface for managing a collection of attachments, such as " -"images." -msgstr "" - -#: pro/fields/class-acf-field-gallery.php:77 -msgid "Add Image to Gallery" -msgstr "Voeg afbeelding toe aan galerij" - -#: pro/fields/class-acf-field-gallery.php:78 -msgid "Maximum selection reached" -msgstr "Maximale selectie bereikt" - -#: pro/fields/class-acf-field-gallery.php:324 -msgid "Length" -msgstr "Lengte" - -#: pro/fields/class-acf-field-gallery.php:368 -msgid "Caption" -msgstr "Onderschrift" - -#: pro/fields/class-acf-field-gallery.php:380 -msgid "Alt Text" -msgstr "Alt tekst" - -#: pro/fields/class-acf-field-gallery.php:504 -msgid "Add to gallery" -msgstr "Afbeelding(en) toevoegen" - -#: pro/fields/class-acf-field-gallery.php:508 -msgid "Bulk actions" -msgstr "Acties" - -#: pro/fields/class-acf-field-gallery.php:509 -msgid "Sort by date uploaded" -msgstr "Sorteer op datum geüpload" - -#: pro/fields/class-acf-field-gallery.php:510 -msgid "Sort by date modified" -msgstr "Sorteer op datum aangepast" - -#: pro/fields/class-acf-field-gallery.php:511 -msgid "Sort by title" -msgstr "Sorteer op titel" - -#: pro/fields/class-acf-field-gallery.php:512 -msgid "Reverse current order" -msgstr "Keer volgorde om" - -#: pro/fields/class-acf-field-gallery.php:524 -msgid "Close" -msgstr "Sluiten" - -#: pro/fields/class-acf-field-gallery.php:615 -msgid "Minimum Selection" -msgstr "Minimale selectie" - -#: pro/fields/class-acf-field-gallery.php:625 -msgid "Maximum Selection" -msgstr "Maximale selectie" - -#: pro/fields/class-acf-field-gallery.php:707 -msgid "Allowed file types" -msgstr "Toegestane bestandstypen" - -#: pro/fields/class-acf-field-gallery.php:727 -msgid "Insert" -msgstr "Invoegen" - -#: pro/fields/class-acf-field-gallery.php:728 -msgid "Specify where new attachments are added" -msgstr "Geef aan waar nieuwe bijlagen worden toegevoegd" - -#: pro/fields/class-acf-field-gallery.php:732 -msgid "Append to the end" -msgstr "Toevoegen aan het einde" - -#: pro/fields/class-acf-field-gallery.php:733 -msgid "Prepend to the beginning" -msgstr "Toevoegen aan het begin" - -#: pro/fields/class-acf-field-repeater.php:66, -#: pro/fields/class-acf-field-repeater.php:463 -#, fuzzy -#| msgid "Minimum rows reached ({min} rows)" -msgid "Minimum rows not reached ({min} rows)" -msgstr "Minimum aantal rijen bereikt ({max} rijen)" - -#: pro/fields/class-acf-field-repeater.php:67 -msgid "Maximum rows reached ({max} rows)" -msgstr "Maximum aantal rijen bereikt ({max} rijen)" - -#: pro/fields/class-acf-field-repeater.php:68 -msgid "Error loading page" -msgstr "" - -#: pro/fields/class-acf-field-repeater.php:69 -msgid "Order will be assigned upon save" -msgstr "" - -#: pro/fields/class-acf-field-repeater.php:196 -msgid "Useful for fields with a large number of rows." -msgstr "" - -#: pro/fields/class-acf-field-repeater.php:207 -msgid "Rows Per Page" -msgstr "" - -#: pro/fields/class-acf-field-repeater.php:208 -msgid "Set the number of rows to be displayed on a page." -msgstr "" - -#: pro/fields/class-acf-field-repeater.php:240 -msgid "Minimum Rows" -msgstr "Minimum aantal rijen" - -#: pro/fields/class-acf-field-repeater.php:251 -msgid "Maximum Rows" -msgstr "Maximum aantal rijen" - -#: pro/fields/class-acf-field-repeater.php:281 -msgid "Collapsed" -msgstr "Ingeklapt" - -#: pro/fields/class-acf-field-repeater.php:282 -msgid "Select a sub field to show when row is collapsed" -msgstr "Selecteer een sub-veld om te tonen wanneer rij dichtgeklapt is" - -#: pro/fields/class-acf-field-repeater.php:1060 -msgid "Invalid field key or name." -msgstr "" - -#: pro/fields/class-acf-field-repeater.php:1069 -msgid "There was an error retrieving the field." -msgstr "" - -#: pro/fields/class-acf-repeater-table.php:369 -#, fuzzy -#| msgid "Drag to reorder" -msgid "Click to reorder" -msgstr "Sleep om te sorteren" - -#: pro/fields/class-acf-repeater-table.php:402 -msgid "Add row" -msgstr "Nieuwe regel" - -#: pro/fields/class-acf-repeater-table.php:403 -msgid "Duplicate row" -msgstr "" - -#: pro/fields/class-acf-repeater-table.php:404 -msgid "Remove row" -msgstr "Verwijder regel" - -#: pro/fields/class-acf-repeater-table.php:448, -#: pro/fields/class-acf-repeater-table.php:465, -#: pro/fields/class-acf-repeater-table.php:466 -msgid "Current Page" -msgstr "" - -#: pro/fields/class-acf-repeater-table.php:456, -#: pro/fields/class-acf-repeater-table.php:457 -#, fuzzy -#| msgid "Front Page" -msgid "First Page" -msgstr "Hoofdpagina" - -#: pro/fields/class-acf-repeater-table.php:460, -#: pro/fields/class-acf-repeater-table.php:461 -#, fuzzy -#| msgid "Posts Page" -msgid "Previous Page" -msgstr "Berichten pagina" - -#. translators: 1: Current page, 2: Total pages. -#: pro/fields/class-acf-repeater-table.php:470 -msgctxt "paging" -msgid "%1$s of %2$s" -msgstr "" - -#: pro/fields/class-acf-repeater-table.php:477, -#: pro/fields/class-acf-repeater-table.php:478 -#, fuzzy -#| msgid "Front Page" -msgid "Next Page" -msgstr "Hoofdpagina" - -#: pro/fields/class-acf-repeater-table.php:481, -#: pro/fields/class-acf-repeater-table.php:482 -#, fuzzy -#| msgid "Posts Page" -msgid "Last Page" -msgstr "Berichten pagina" - -#: pro/locations/class-acf-location-block.php:71 -msgid "No block types exist" -msgstr "" - -#: pro/locations/class-acf-location-options-page.php:70 -msgid "No options pages exist" -msgstr "Er zijn nog geen optie pagina's" - -#: pro/admin/views/html-settings-updates.php:6 -msgid "Deactivate License" -msgstr "Licentiecode deactiveren" - -#: pro/admin/views/html-settings-updates.php:6 -msgid "Activate License" -msgstr "Activeer licentiecode" - -#: pro/admin/views/html-settings-updates.php:16 -msgid "License Information" -msgstr "Licentie informatie" - -#: pro/admin/views/html-settings-updates.php:34 -msgid "" -"To unlock updates, please enter your license key below. If you don't have a " -"licence key, please see details & pricing." -msgstr "" -"Om updates te ontvangen vul je hieronder je licentiecode in. Nog geen " -"licentiecode? Bekijk details & prijzen." - -#: pro/admin/views/html-settings-updates.php:37 -msgid "License Key" -msgstr "Licentiecode" - -#: pro/admin/views/html-settings-updates.php:22 -msgid "Your license key is defined in wp-config.php." -msgstr "" - -#: pro/admin/views/html-settings-updates.php:29 -msgid "Retry Activation" -msgstr "" - -#: pro/admin/views/html-settings-updates.php:61 -msgid "Update Information" -msgstr "Update informatie" - -#: pro/admin/views/html-settings-updates.php:68 -msgid "Current Version" -msgstr "Huidige versie" - -#: pro/admin/views/html-settings-updates.php:76 -msgid "Latest Version" -msgstr "Nieuwste versie" - -#: pro/admin/views/html-settings-updates.php:84 -msgid "Update Available" -msgstr "Update beschikbaar" - -#: pro/admin/views/html-settings-updates.php:98 -msgid "Upgrade Notice" -msgstr "Upgrade opmerking" - -#: pro/admin/views/html-settings-updates.php:126 -msgid "Check For Updates" -msgstr "" - -#: pro/admin/views/html-settings-updates.php:121 -#, fuzzy -#| msgid "Please enter your license key above to unlock updates" -msgid "Enter your license key to unlock updates" -msgstr "Vul uw licentiecode hierboven in om updates te ontvangen" - -#: pro/admin/views/html-settings-updates.php:119 -msgid "Update Plugin" -msgstr "Update plugin" - -#: pro/admin/views/html-settings-updates.php:117 -msgid "Please reactivate your license to unlock updates" -msgstr "" diff --git a/lang/acf-nl_NL.mo b/lang/acf-nl_NL.mo deleted file mode 100644 index dd85676..0000000 Binary files a/lang/acf-nl_NL.mo and /dev/null differ diff --git a/lang/acf-nl_NL.po b/lang/acf-nl_NL.po deleted file mode 100644 index d2cdce1..0000000 --- a/lang/acf-nl_NL.po +++ /dev/null @@ -1,6444 +0,0 @@ -# Advanced Custom Fields Translations are a combination of translate.wordpress.org contributions, -# combined with user contributed strings for the PRO version. -# Translations from translate.wordpress.org take priority over translations in this file. -# translate.wordpress.org contributions are synced at the time of each release. -# -# If you would like to contribute translations, please visit -# https://translate.wordpress.org/projects/wp-plugins/advanced-custom-fields/stable/ -# -# For additional ACF PRO strings, please submit a pull request over on the ACF GitHub repo at -# http://github.com/advancedcustomfields/acf using the .pot (and any existing .po) files in /lang/pro/ -# -# This file is distributed under the same license as Advanced Custom Fields. -msgid "" -msgstr "" -"PO-Revision-Date: 2023-11-28T09:14:32+00:00\n" -"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n" -"Language: nl_NL\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: gettext\n" -"Project-Id-Version: Advanced Custom Fields\n" - -#: includes/admin/views/global/navigation.php:221 -msgid "Renew ACF PRO License" -msgstr "Vernieuw ACF PRO licentie" - -#: includes/admin/views/acf-field-group/pro-features.php:17 -msgid "Renew License" -msgstr "Vernieuw licentie" - -#: includes/admin/views/acf-field-group/pro-features.php:14 -msgid "Manage License" -msgstr "Beheer licentie" - -#: includes/admin/views/acf-field-group/options.php:102 -msgid "'High' position not supported in the Block Editor" -msgstr "Hoge\" positie wordt niet ondersteund in de blok-editor." - -#: includes/admin/views/options-page-preview.php:30 -msgid "Upgrade to ACF PRO" -msgstr "Upgrade naar ACF PRO" - -#. translators: %s URL to ACF options pages documentation -#: includes/admin/views/options-page-preview.php:7 -msgid "" -"ACF options pages are custom admin " -"pages for managing global settings via fields. You can create multiple pages " -"and sub-pages." -msgstr "" -"ACF opties pagina's zijn aangepaste " -"beheerpagina's voor het beheren van globale instellingen via velden. Je kunt " -"meerdere pagina's en subpagina's maken." - -#: includes/admin/views/global/header.php:35 -msgid "Add Options Page" -msgstr "Opties pagina toevoegen" - -#: includes/admin/views/acf-post-type/advanced-settings.php:703 -msgid "In the editor used as the placeholder of the title." -msgstr "In de editor gebruikt als plaatshouder van de titel." - -#: includes/admin/views/acf-post-type/advanced-settings.php:702 -msgid "Title Placeholder" -msgstr "Titel plaatshouder" - -#: includes/admin/views/global/navigation.php:97 -msgid "4 Months Free" -msgstr "4 maanden gratis" - -#. translators: %s - A singular label for a post type or taxonomy. -#: includes/admin/views/global/form-top.php:56 -msgid " (Duplicated from %s)" -msgstr " (Overgenomen van %s)" - -#: includes/admin/tools/class-acf-admin-tool-export.php:298 -msgid "Select Options Pages" -msgstr "Opties pagina's selecteren" - -#: includes/admin/post-types/admin-taxonomy.php:107 -msgid "Duplicate taxonomy" -msgstr "Dubbele taxonomie" - -#: includes/admin/post-types/admin-post-type.php:106 -#: includes/admin/post-types/admin-taxonomy.php:106 -msgid "Create taxonomy" -msgstr "Creëer taxonomie" - -#: includes/admin/post-types/admin-post-type.php:105 -msgid "Duplicate post type" -msgstr "Duplicaat berichttype" - -#: includes/admin/post-types/admin-post-type.php:104 -#: includes/admin/post-types/admin-taxonomy.php:108 -msgid "Create post type" -msgstr "Berichttype maken" - -#: includes/admin/post-types/admin-post-type.php:103 -#: includes/admin/post-types/admin-taxonomy.php:105 -msgid "Link field groups" -msgstr "Veldgroepen linken" - -#: includes/admin/post-types/admin-post-type.php:102 -#: includes/admin/post-types/admin-taxonomy.php:104 -msgid "Add fields" -msgstr "Velden toevoegen" - -#: includes/admin/post-types/admin-field-group.php:121 -#: assets/build/js/acf-field-group.js:2753 -#: assets/build/js/acf-field-group.js:3236 -msgid "This Field" -msgstr "Dit veld" - -#: includes/admin/admin.php:267 -msgid "ACF PRO" -msgstr "ACF PRO" - -#: includes/admin/admin.php:265 -msgid "Feedback" -msgstr "Feedback" - -#: includes/admin/admin.php:263 -msgid "Support" -msgstr "Ondersteuning" - -#. translators: This text is prepended by a link to ACF's website, and appended -#. by a link to WP Engine's website. -#: includes/admin/admin.php:238 -msgid "is developed and maintained by" -msgstr "is ontwikkeld en wordt onderhouden door" - -#. translators: %s - either "post type" or "taxonomy" -#: includes/admin/admin-internal-post-type.php:321 -msgid "Add this %s to the location rules of the selected field groups." -msgstr "" -"Voeg deze %s toe aan de locatieregels van de geselecteerde veldgroepen." - -#. translators: %s the URL to ACF's bidirectional relationship documentation -#: includes/acf-bidirectional-functions.php:271 -msgid "" -"Enabling the bidirectional setting allows you to update a value in the " -"target fields for each value selected for this field, adding or removing the " -"Post ID, Taxonomy ID or User ID of the item being updated. For more " -"information, please read the documentation." -msgstr "" -"Als je de bidirectionele instelling inschakelt, kun je een waarde updaten in " -"de doelvelden voor elke waarde die voor dit veld is geselecteerd, door de " -"bericht ID, taxonomy ID of user ID van het item dat wordt geüpdatet toe te " -"voegen of te verwijderen. Lees voor meer informatie de documentatie." - -#: includes/acf-bidirectional-functions.php:247 -msgid "" -"Select field(s) to store the reference back to the item being updated. You " -"may select this field. Target fields must be compatible with where this " -"field is being displayed. For example, if this field is displayed on a " -"Taxonomy, your target field should be of type Taxonomy" -msgstr "" -"Selecteer veld(en) om de verwijzing terug naar het item dat wordt geüpdatet " -"op te slaan. Je kunt dit veld selecteren. Doelvelden moeten compatibel zijn " -"met waar dit veld wordt weergegeven. Als dit veld bijvoorbeeld wordt " -"weergegeven in een taxonomie, dan moet je doelveld van het type taxonomie " -"zijn" - -#: includes/acf-bidirectional-functions.php:246 -msgid "Target Field" -msgstr "Doelveld" - -#: includes/acf-bidirectional-functions.php:220 -msgid "Update a field on the selected values, referencing back to this ID" -msgstr "" -"Update een veld met de geselecteerde waarden en verwijs terug naar deze ID" - -#: includes/acf-bidirectional-functions.php:219 -msgid "Bidirectional" -msgstr "Bidirectioneel" - -#. translators: %s A field type name, such as "Relationship" -#: includes/acf-bidirectional-functions.php:192 -msgid "%s Field" -msgstr "%s veld" - -#: includes/fields/class-acf-field-page_link.php:517 -#: includes/fields/class-acf-field-post_object.php:426 -#: includes/fields/class-acf-field-select.php:407 -#: includes/fields/class-acf-field-user.php:82 -msgid "Select Multiple" -msgstr "Selecteer meerdere" - -#: includes/admin/views/global/navigation.php:233 -msgid "WP Engine logo" -msgstr "WP engine logo" - -#: includes/admin/views/acf-taxonomy/basic-settings.php:58 -msgid "Lower case letters, underscores and dashes only, Max 32 characters." -msgstr "" -"Alleen kleine letters, underscores en streepjes, maximaal 32 karakters." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1136 -msgid "The capability name for assigning terms of this taxonomy." -msgstr "De rechten naam voor het toewijzen van termen van deze taxonomie." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1135 -msgid "Assign Terms Capability" -msgstr "Termen rechten toewijzen" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1119 -msgid "The capability name for deleting terms of this taxonomy." -msgstr "De rechten naam voor het verwijderen van termen van deze taxonomie." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1118 -msgid "Delete Terms Capability" -msgstr "Termen rechten verwijderen" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1102 -msgid "The capability name for editing terms of this taxonomy." -msgstr "De rechten naam voor het bewerken van termen van deze taxonomie." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1101 -msgid "Edit Terms Capability" -msgstr "Termen rechten bewerken" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1085 -msgid "The capability name for managing terms of this taxonomy." -msgstr "De naam van de rechten voor het beheren van termen van deze taxonomie." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1084 -msgid "Manage Terms Capability" -msgstr "Beheer termen rechten" - -#: includes/admin/views/acf-post-type/advanced-settings.php:886 -msgid "" -"Sets whether posts should be excluded from search results and taxonomy " -"archive pages." -msgstr "" -"Stelt in of berichten moeten worden uitgesloten van zoekresultaten en " -"pagina's van taxonomie archieven." - -#: includes/admin/views/acf-field-group/pro-features.php:74 -msgid "More Tools from WP Engine" -msgstr "Meer gereedschappen van WP Engine" - -#. translators: %s - WP Engine logo -#: includes/admin/views/acf-field-group/pro-features.php:69 -msgid "Built for those that build with WordPress, by the team at %s" -msgstr "Gemaakt voor degenen die bouwen met WordPress, door het team van %s" - -#: includes/admin/views/acf-field-group/pro-features.php:6 -msgid "View Pricing & Upgrade" -msgstr "Bekijk prijzen & upgrade" - -#: includes/admin/views/acf-field-group/pro-features.php:3 -#: includes/admin/views/options-page-preview.php:29 -msgid "Learn More" -msgstr "Leer meer" - -#: includes/admin/views/acf-field-group/pro-features.php:28 -msgid "" -"Speed up your workflow and develop better websites with features like ACF " -"Blocks and Options Pages, and sophisticated field types like Repeater, " -"Flexible Content, Clone, and Gallery." -msgstr "" -"Versnel je workflow en ontwikkel betere sites met functies als ACF Blocks en " -"Options Pages, en geavanceerde veldtypen als Repeater, Flexible Content, " -"Clone en Gallery." - -#: includes/admin/views/acf-field-group/pro-features.php:2 -msgid "Unlock Advanced Features and Build Even More with ACF PRO" -msgstr "Ontgrendel geavanceerde functies en bouw nog meer met ACF PRO" - -#. translators: %s - singular label of post type/taxonomy, i.e. "Movie"/"Genre" -#: includes/admin/views/global/form-top.php:19 -msgid "%s fields" -msgstr "%s velden" - -#: includes/admin/post-types/admin-taxonomies.php:293 -msgid "No terms" -msgstr "Geen termen" - -#: includes/admin/post-types/admin-taxonomies.php:266 -msgid "No post types" -msgstr "Geen berichttypen" - -#: includes/admin/post-types/admin-post-types.php:289 -msgid "No posts" -msgstr "Geen berichten" - -#: includes/admin/post-types/admin-post-types.php:263 -msgid "No taxonomies" -msgstr "Geen taxonomieën" - -#: includes/admin/post-types/admin-post-types.php:208 -#: includes/admin/post-types/admin-taxonomies.php:208 -msgid "No field groups" -msgstr "Geen veld groepen" - -#: includes/admin/post-types/admin-field-groups.php:281 -msgid "No fields" -msgstr "Geen velden" - -#: includes/admin/post-types/admin-field-groups.php:154 -#: includes/admin/post-types/admin-post-types.php:172 -#: includes/admin/post-types/admin-taxonomies.php:172 -msgid "No description" -msgstr "Geen beschrijving" - -#: includes/fields/class-acf-field-page_link.php:484 -#: includes/fields/class-acf-field-post_object.php:389 -#: includes/fields/class-acf-field-relationship.php:601 -msgid "Any post status" -msgstr "Elke bericht status" - -#: includes/post-types/class-acf-taxonomy.php:284 -msgid "" -"This taxonomy key is already in use by another taxonomy registered outside " -"of ACF and cannot be used." -msgstr "" -"Deze taxonomie sleutel is al in gebruik door een andere taxonomie die buiten " -"ACF is geregistreerd en kan daarom niet worden gebruikt." - -#: includes/post-types/class-acf-taxonomy.php:279 -msgid "" -"This taxonomy key is already in use by another taxonomy in ACF and cannot be " -"used." -msgstr "" -"Deze taxonomie sleutel is al in gebruik door een andere taxonomie in ACF en " -"kan daarom niet worden gebruikt." - -#: includes/post-types/class-acf-taxonomy.php:252 -msgid "" -"The taxonomy key must only contain lower case alphanumeric characters, " -"underscores or dashes." -msgstr "" -"De taxonomie sleutel mag alleen kleine alfanumerieke tekens, underscores of " -"streepjes bevatten." - -#: includes/post-types/class-acf-taxonomy.php:247 -msgid "The taxonomy key must be under 32 characters." -msgstr "De taxonomie sleutel moet minder dan 32 karakters bevatten." - -#: includes/post-types/class-acf-taxonomy.php:99 -msgid "No Taxonomies found in Trash" -msgstr "Geen taxonomieën gevonden in prullenbak" - -#: includes/post-types/class-acf-taxonomy.php:98 -msgid "No Taxonomies found" -msgstr "Geen taxonomieën gevonden" - -#: includes/post-types/class-acf-taxonomy.php:97 -msgid "Search Taxonomies" -msgstr "Taxonomieën zoeken" - -#: includes/post-types/class-acf-taxonomy.php:96 -msgid "View Taxonomy" -msgstr "Taxonomie bekijken" - -#: includes/post-types/class-acf-taxonomy.php:95 -msgid "New Taxonomy" -msgstr "Nieuwe taxonomie" - -#: includes/post-types/class-acf-taxonomy.php:94 -msgid "Edit Taxonomy" -msgstr "Taxonomie bewerken" - -#: includes/post-types/class-acf-taxonomy.php:93 -msgid "Add New Taxonomy" -msgstr "Nieuwe taxonomie toevoegen" - -#: includes/post-types/class-acf-post-type.php:100 -msgid "No Post Types found in Trash" -msgstr "Geen berichttypen gevonden in prullenbak" - -#: includes/post-types/class-acf-post-type.php:99 -msgid "No Post Types found" -msgstr "Geen berichttypen gevonden" - -#: includes/post-types/class-acf-post-type.php:98 -msgid "Search Post Types" -msgstr "Berichttypen zoeken" - -#: includes/post-types/class-acf-post-type.php:97 -msgid "View Post Type" -msgstr "Berichttype bekijken" - -#: includes/post-types/class-acf-post-type.php:96 -msgid "New Post Type" -msgstr "Nieuw berichttype" - -#: includes/post-types/class-acf-post-type.php:95 -msgid "Edit Post Type" -msgstr "Berichttype bewerken" - -#: includes/post-types/class-acf-post-type.php:94 -msgid "Add New Post Type" -msgstr "Nieuw berichttype toevoegen" - -#: includes/post-types/class-acf-post-type.php:361 -msgid "" -"This post type key is already in use by another post type registered outside " -"of ACF and cannot be used." -msgstr "" -"Deze berichttype sleutel is al in gebruik door een ander berichttype dat " -"buiten ACF is geregistreerd en kan niet worden gebruikt." - -#: includes/post-types/class-acf-post-type.php:356 -msgid "" -"This post type key is already in use by another post type in ACF and cannot " -"be used." -msgstr "" -"Deze berichttype sleutel is al in gebruik door een ander berichttype in ACF " -"en kan niet worden gebruikt." - -#. translators: %s a link to WordPress.org's Reserved Terms page -#: includes/post-types/class-acf-post-type.php:335 -#: includes/post-types/class-acf-taxonomy.php:258 -msgid "" -"This field must not be a WordPress reserved " -"term." -msgstr "" -"Dit veld mag geen door WordPress gereserveerde term zijn." - -#: includes/post-types/class-acf-post-type.php:329 -msgid "" -"The post type key must only contain lower case alphanumeric characters, " -"underscores or dashes." -msgstr "" -"Het berichttype mag alleen kleine alfanumerieke tekens, underscores of " -"streepjes bevatten." - -#: includes/post-types/class-acf-post-type.php:324 -msgid "The post type key must be under 20 characters." -msgstr "De berichttype sleutel moet minder dan 20 karakters bevatten." - -#: includes/fields/class-acf-field-wysiwyg.php:27 -msgid "We do not recommend using this field in ACF Blocks." -msgstr "Wij raden het gebruik van dit veld in ACF blokken af." - -#: includes/fields/class-acf-field-wysiwyg.php:27 -msgid "" -"Displays the WordPress WYSIWYG editor as seen in Posts and Pages allowing " -"for a rich text-editing experience that also allows for multimedia content." -msgstr "" -"Toont de WordPress WYSIWYG editor zoals in berichten en pagina's voor een " -"rijke tekst bewerking ervaring die ook multi media inhoud mogelijk maakt." - -#: includes/fields/class-acf-field-wysiwyg.php:25 -msgid "WYSIWYG Editor" -msgstr "WYSIWYG editor" - -#: includes/fields/class-acf-field-user.php:17 -msgid "" -"Allows the selection of one or more users which can be used to create " -"relationships between data objects." -msgstr "" -"Maakt het mogelijk een of meer gebruikers te selecteren die kunnen worden " -"gebruikt om relaties te leggen tussen gegeven objecten." - -#: includes/fields/class-acf-field-url.php:26 -msgid "A text input specifically designed for storing web addresses." -msgstr "Een tekst invoer speciaal ontworpen voor het opslaan van web adressen." - -#: includes/fields/class-acf-field-url.php:25 -msgid "URL" -msgstr "URL" - -#: includes/fields/class-acf-field-true_false.php:27 -msgid "" -"A toggle that allows you to pick a value of 1 or 0 (on or off, true or " -"false, etc). Can be presented as a stylized switch or checkbox." -msgstr "" -"Een toggle waarmee je een waarde van 1 of 0 kunt kiezen (aan of uit, waar of " -"onwaar, enz.). Kan worden gepresenteerd als een gestileerde schakelaar of " -"selectievakje." - -#: includes/fields/class-acf-field-time_picker.php:27 -msgid "" -"An interactive UI for picking a time. The time format can be customized " -"using the field settings." -msgstr "" -"Een interactieve UI voor het kiezen van een tijd. De tijd format kan worden " -"aangepast via de veldinstellingen." - -#: includes/fields/class-acf-field-textarea.php:26 -msgid "A basic textarea input for storing paragraphs of text." -msgstr "Een basis tekstgebied voor het opslaan van alinea's tekst." - -#: includes/fields/class-acf-field-text.php:26 -msgid "A basic text input, useful for storing single string values." -msgstr "" -"Een basis tekstveld, handig voor het opslaan van een enkele string waarde." - -#: includes/fields/class-acf-field-taxonomy.php:22 -msgid "" -"Allows the selection of one or more taxonomy terms based on the criteria and " -"options specified in the fields settings." -msgstr "" -"Maakt de selectie mogelijk van een of meer taxonomie termen op basis van de " -"criteria en opties die zijn opgegeven in de veldinstellingen." - -#: includes/fields/class-acf-field-tab.php:28 -msgid "" -"Allows you to group fields into tabbed sections in the edit screen. Useful " -"for keeping fields organized and structured." -msgstr "" -"Hiermee kun je in het bewerking scherm velden groeperen in secties met tabs. " -"Nuttig om velden georganiseerd en gestructureerd te houden." - -#: includes/fields/class-acf-field-select.php:27 -msgid "A dropdown list with a selection of choices that you specify." -msgstr "Een dropdown lijst met een selectie van keuzes die je aangeeft." - -#: includes/fields/class-acf-field-relationship.php:19 -msgid "" -"A dual-column interface to select one or more posts, pages, or custom post " -"type items to create a relationship with the item that you're currently " -"editing. Includes options to search and filter." -msgstr "" -"Een interface met twee kolommen om een of meer berichten, pagina's of " -"aangepaste extra berichttype items te selecteren om een relatie te leggen " -"met het item dat je nu aan het bewerken bent. Inclusief opties om te zoeken " -"en te filteren." - -#: includes/fields/class-acf-field-range.php:26 -msgid "" -"An input for selecting a numerical value within a specified range using a " -"range slider element." -msgstr "" -"Een veld voor het selecteren van een numerieke waarde binnen een " -"gespecificeerd bereik met behulp van een bereik slider element." - -#: includes/fields/class-acf-field-radio.php:27 -msgid "" -"A group of radio button inputs that allows the user to make a single " -"selection from values that you specify." -msgstr "" -"Een groep keuzerondjes waarmee de gebruiker één keuze kan maken uit waarden " -"die je opgeeft." - -#: includes/fields/class-acf-field-post_object.php:19 -msgid "" -"An interactive and customizable UI for picking one or many posts, pages or " -"post type items with the option to search. " -msgstr "" -"Een interactieve en aanpasbare UI voor het kiezen van één of meerdere " -"berichten, pagina's of berichttype-items met de optie om te zoeken. " - -#: includes/fields/class-acf-field-password.php:26 -msgid "An input for providing a password using a masked field." -msgstr "" -"Een invoer voor het verstrekken van een wachtwoord via een afgeschermd veld." - -#: includes/fields/class-acf-field-page_link.php:476 -#: includes/fields/class-acf-field-post_object.php:381 -#: includes/fields/class-acf-field-relationship.php:593 -msgid "Filter by Post Status" -msgstr "Filter op berichtstatus" - -#: includes/fields/class-acf-field-page_link.php:27 -msgid "" -"An interactive dropdown to select one or more posts, pages, custom post type " -"items or archive URLs, with the option to search." -msgstr "" -"Een interactieve dropdown om een of meer berichten, pagina's, extra " -"berichttype items of archief URL's te selecteren, met de optie om te zoeken." - -#: includes/fields/class-acf-field-oembed.php:27 -msgid "" -"An interactive component for embedding videos, images, tweets, audio and " -"other content by making use of the native WordPress oEmbed functionality." -msgstr "" -"Een interactieve component voor het insluiten van video's, afbeeldingen, " -"tweets, audio en andere inhoud door gebruik te maken van de standaard " -"WordPress oEmbed functionaliteit." - -#: includes/fields/class-acf-field-number.php:26 -msgid "An input limited to numerical values." -msgstr "Een invoer die beperkt is tot numerieke waarden." - -#: includes/fields/class-acf-field-message.php:28 -msgid "" -"Used to display a message to editors alongside other fields. Useful for " -"providing additional context or instructions around your fields." -msgstr "" -"Gebruikt om een bericht te tonen aan editors naast andere velden. Nuttig om " -"extra context of instructies te geven rond je velden." - -#: includes/fields/class-acf-field-link.php:27 -msgid "" -"Allows you to specify a link and its properties such as title and target " -"using the WordPress native link picker." -msgstr "" -"Hiermee kun je een link en zijn eigenschappen zoals titel en doel " -"specificeren met behulp van de WordPress native link picker." - -#: includes/fields/class-acf-field-image.php:27 -msgid "Uses the native WordPress media picker to upload, or choose images." -msgstr "" -"Gebruikt de standaard WordPress mediakiezer om afbeeldingen te uploaden of " -"te kiezen." - -#: includes/fields/class-acf-field-group.php:27 -msgid "" -"Provides a way to structure fields into groups to better organize the data " -"and the edit screen." -msgstr "" -"Biedt een manier om velden te structureren in groepen om de gegevens en het " -"bewerking scherm beter te organiseren." - -#: includes/fields/class-acf-field-google-map.php:27 -msgid "" -"An interactive UI for selecting a location using Google Maps. Requires a " -"Google Maps API key and additional configuration to display correctly." -msgstr "" -"Een interactieve UI voor het selecteren van een locatie met Google Maps. " -"Vereist een Google Maps API-sleutel en aanvullende instellingen om correct " -"te worden weergegeven." - -#: includes/fields/class-acf-field-file.php:27 -msgid "Uses the native WordPress media picker to upload, or choose files." -msgstr "" -"Gebruikt de standaard WordPress mediakiezer om bestanden te uploaden of te " -"kiezen." - -#: includes/fields/class-acf-field-email.php:26 -msgid "A text input specifically designed for storing email addresses." -msgstr "" -"Een tekstinvoer speciaal ontworpen voor het opslaan van e-mailadressen." - -#: includes/fields/class-acf-field-date_time_picker.php:27 -msgid "" -"An interactive UI for picking a date and time. The date return format can be " -"customized using the field settings." -msgstr "" -"Een interactieve UI voor het kiezen van een datum en tijd. De datum retour " -"format en tijd kunnen worden aangepast via de veldinstellingen." - -#: includes/fields/class-acf-field-date_picker.php:27 -msgid "" -"An interactive UI for picking a date. The date return format can be " -"customized using the field settings." -msgstr "" -"Een interactieve UI voor het kiezen van een datum. Het format van de datum " -"kan worden aangepast via de veldinstellingen." - -#: includes/fields/class-acf-field-color_picker.php:27 -msgid "An interactive UI for selecting a color, or specifying a Hex value." -msgstr "" -"Een interactieve UI voor het selecteren van een kleur, of het opgeven van " -"een hex waarde." - -#: includes/fields/class-acf-field-checkbox.php:27 -msgid "" -"A group of checkbox inputs that allow the user to select one, or multiple " -"values that you specify." -msgstr "" -"Een groep selectievakjes waarmee de gebruiker één of meerdere waarden kan " -"selecteren die je opgeeft." - -#: includes/fields/class-acf-field-button-group.php:26 -msgid "" -"A group of buttons with values that you specify, users can choose one option " -"from the values provided." -msgstr "" -"Een groep knoppen met waarden die je opgeeft, gebruikers kunnen één optie " -"kiezen uit de opgegeven waarden." - -#: includes/fields/class-acf-field-accordion.php:27 -msgid "" -"Allows you to group and organize custom fields into collapsable panels that " -"are shown while editing content. Useful for keeping large datasets tidy." -msgstr "" -"Hiermee kun je aangepaste velden groeperen en organiseren in inklapbare " -"panelen die worden getoond tijdens het bewerken van inhoud. Handig om grote " -"datasets netjes te houden." - -#: includes/fields.php:475 -msgid "" -"This provides a solution for repeating content such as slides, team members, " -"and call-to-action tiles, by acting as a parent to a set of subfields which " -"can be repeated again and again." -msgstr "" -"Dit biedt een oplossing voor het herhalen van inhoud zoals slides, teamleden " -"en Call To Action tegels, door te fungeren als een hoofd voor een string sub " -"velden die steeds opnieuw kunnen worden herhaald." - -#: includes/fields.php:465 -msgid "" -"This provides an interactive interface for managing a collection of " -"attachments. Most settings are similar to the Image field type. Additional " -"settings allow you to specify where new attachments are added in the gallery " -"and the minimum/maximum number of attachments allowed." -msgstr "" -"Dit biedt een interactieve interface voor het beheerder van een verzameling " -"bijlagen. De meeste instellingen zijn vergelijkbaar met die van het veld " -"type afbeelding. Met extra instellingen kun je aangeven waar nieuwe bijlagen " -"in de galerij worden toegevoegd en het minimum/maximum aantal toegestane " -"bijlagen." - -#: includes/fields.php:455 -msgid "" -"This provides a simple, structured, layout-based editor. The Flexible " -"Content field allows you to define, create and manage content with total " -"control by using layouts and subfields to design the available blocks." -msgstr "" -"Dit biedt een eenvoudige, gestructureerde, op lay-out gebaseerde editor. Met " -"het veld flexibele inhoud kun je inhoud definiëren, creëren en beheren met " -"volledige controle door lay-outs en sub velden te gebruiken om de " -"beschikbare blokken vorm te geven." - -#: includes/fields.php:445 -msgid "" -"This allows you to select and display existing fields. It does not duplicate " -"any fields in the database, but loads and displays the selected fields at " -"run-time. The Clone field can either replace itself with the selected fields " -"or display the selected fields as a group of subfields." -msgstr "" -"Hiermee kun je bestaande velden selecteren en weergeven. Het dupliceert geen " -"velden in de database, maar laadt en toont de geselecteerde velden bij run " -"time. Het kloon veld kan zichzelf vervangen door de geselecteerde velden of " -"de geselecteerde velden weergeven als een groep sub velden." - -#: includes/fields.php:442 -msgctxt "noun" -msgid "Clone" -msgstr "Kloon" - -#: includes/admin/views/global/navigation.php:86 includes/fields.php:357 -msgid "PRO" -msgstr "PRO" - -#: includes/fields.php:355 includes/fields.php:412 -msgid "Advanced" -msgstr "Geavanceerd" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:85 -msgid "JSON (newer)" -msgstr "JSON (nieuwer)" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:81 -msgid "Original" -msgstr "Origineel" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:55 -msgid "Invalid post ID." -msgstr "Ongeldig bericht-ID." - -#: includes/ajax/class-acf-ajax-local-json-diff.php:47 -msgid "Invalid post type selected for review." -msgstr "Ongeldig berichttype geselecteerd voor beoordeling." - -#: includes/admin/views/global/navigation.php:186 -msgid "More" -msgstr "Meer" - -#: includes/admin/views/browse-fields-modal.php:86 -msgid "Tutorial" -msgstr "Tutorial" - -#: includes/admin/views/browse-fields-modal.php:75 -msgid "Available with ACF PRO" -msgstr "Beschikbaar in ACF PRO" - -#: includes/admin/views/browse-fields-modal.php:63 -msgid "Select Field" -msgstr "Selecteer veld" - -#. translators: %s: A link to the popular fields used in ACF -#: includes/admin/views/browse-fields-modal.php:50 -msgid "Try a different search term or browse %s" -msgstr "Probeer een andere zoekterm of blader door %s" - -#: includes/admin/views/browse-fields-modal.php:47 -msgid "Popular fields" -msgstr "Populaire velden" - -#. translators: %s: The invalid search term -#: includes/admin/views/browse-fields-modal.php:40 -msgid "No search results for '%s'" -msgstr "Geen zoekresultaten voor '%s'" - -#: includes/admin/views/browse-fields-modal.php:13 -msgid "Search fields..." -msgstr "Velden zoeken..." - -#: includes/admin/views/browse-fields-modal.php:11 -msgid "Select Field Type" -msgstr "Selecteer veldtype" - -#: includes/admin/views/browse-fields-modal.php:4 -msgid "Popular" -msgstr "Populair" - -#: includes/admin/views/acf-taxonomy/list-empty.php:7 -msgid "Add Taxonomy" -msgstr "Taxonomie toevoegen" - -#: includes/admin/views/acf-taxonomy/list-empty.php:6 -msgid "Create custom taxonomies to classify post type content" -msgstr "" -"Maak aangepaste taxonomieën aan om inhoud van berichttypen te classificeren" - -#: includes/admin/views/acf-taxonomy/list-empty.php:5 -msgid "Add Your First Taxonomy" -msgstr "Voeg je eerste taxonomie toe" - -#: includes/admin/views/acf-taxonomy/basic-settings.php:122 -msgid "Hierarchical taxonomies can have descendants (like categories)." -msgstr "" -"Hiërarchische taxonomieën kunnen afstammelingen hebben (zoals categorieën)." - -#: includes/admin/views/acf-taxonomy/basic-settings.php:107 -msgid "Makes a taxonomy visible on the frontend and in the admin dashboard." -msgstr "" -"Maakt een taxonomie zichtbaar op de voorkant en in de beheerder dashboard." - -#: includes/admin/views/acf-taxonomy/basic-settings.php:91 -msgid "One or many post types that can be classified with this taxonomy." -msgstr "" -"Eén of vele berichttypes die met deze taxonomie kunnen worden ingedeeld." - -#. translators: example taxonomy -#: includes/admin/views/acf-taxonomy/basic-settings.php:60 -msgid "genre" -msgstr "genre" - -#. translators: example taxonomy -#: includes/admin/views/acf-taxonomy/basic-settings.php:42 -msgid "Genre" -msgstr "Genre" - -#. translators: example taxonomy -#: includes/admin/views/acf-taxonomy/basic-settings.php:25 -msgid "Genres" -msgstr "Genres" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1211 -msgid "" -"Optional custom controller to use instead of `WP_REST_Terms_Controller `." -msgstr "" -"Optionele aangepaste controller om te gebruiken in plaats van " -"`WP_REST_Terms_Controller `." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1155 -msgid "Expose this post type in the REST API." -msgstr "Stel dit berichttype bloot in de REST API." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1055 -msgid "Customize the query variable name" -msgstr "De naam van de query variabele aanpassen" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1028 -msgid "" -"Terms can be accessed using the non-pretty permalink, e.g., {query_var}" -"={term_slug}." -msgstr "" -"Termen zijn toegankelijk via de niet pretty permalink, bijvoorbeeld " -"{query_var}={term_slug}." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:981 -msgid "Parent-child terms in URLs for hierarchical taxonomies." -msgstr "Hoofd sub termen in URL's voor hiërarchische taxonomieën." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:941 -msgid "Customize the slug used in the URL" -msgstr "Pas de slug in de URL aan" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:924 -msgid "Permalinks for this taxonomy are disabled." -msgstr "Permalinks voor deze taxonomie zijn uitgeschakeld." - -#. translators: this string will be appended with the new permalink structure. -#: includes/admin/views/acf-taxonomy/advanced-settings.php:921 -msgid "" -"Rewrite the URL using the taxonomy key as the slug. Your permalink structure " -"will be" -msgstr "" -"Herschrijf de URL met de taxonomie sleutel als slug. Je permalinkstructuur " -"zal zijn" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:913 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1030 -#: includes/admin/views/acf-taxonomy/basic-settings.php:57 -msgid "Taxonomy Key" -msgstr "Taxonomie sleutel" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:911 -msgid "Select the type of permalink to use for this taxonomy." -msgstr "Selecteer het type permalink dat je voor deze taxonomie wil gebruiken." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:896 -msgid "Display a column for the taxonomy on post type listing screens." -msgstr "" -"Toon een kolom voor de taxonomie op de schermen voor het tonen van " -"berichttypes." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:895 -msgid "Show Admin Column" -msgstr "Toon beheerder kolom" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:882 -msgid "Show the taxonomy in the quick/bulk edit panel." -msgstr "Toon de taxonomie in het snel/bulk bewerken paneel." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:881 -msgid "Quick Edit" -msgstr "Snel bewerken" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:868 -msgid "List the taxonomy in the Tag Cloud Widget controls." -msgstr "Vermeld de taxonomie in de tag cloud widget besturing elementen." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:867 -msgid "Tag Cloud" -msgstr "Tag cloud" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:824 -msgid "" -"A PHP function name to be called for sanitizing taxonomy data saved from a " -"meta box." -msgstr "" -"Een PHP functienaam die moet worden aangeroepen om taxonomie gegevens " -"opgeslagen in een meta box te zuiveren." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:823 -msgid "Meta Box Sanitization Callback" -msgstr "Meta box sanitatie callback" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:805 -msgid "" -"A PHP function name to be called to handle the content of a meta box on your " -"taxonomy." -msgstr "" -"Een PHP functienaam die moet worden aangeroepen om de inhoud van een meta " -"box op je taxonomie te verwerken." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:804 -msgid "Register Meta Box Callback" -msgstr "Meta box callback registreren" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:763 -msgid "No Meta Box" -msgstr "Geen meta box" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:762 -msgid "Custom Meta Box" -msgstr "Aangepaste meta box" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:758 -msgid "" -"Controls the meta box on the content editor screen. By default, the " -"Categories meta box is shown for hierarchical taxonomies, and the Tags meta " -"box is shown for non-hierarchical taxonomies." -msgstr "" -"Bepaalt het meta box op het inhoud editor scherm. Standaard wordt het " -"categorie meta box getoond voor hiërarchische taxonomieën, en het tags meta " -"box voor niet hiërarchische taxonomieën." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:757 -msgid "Meta Box" -msgstr "Meta box" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:746 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:767 -msgid "Categories Meta Box" -msgstr "Categorieën meta box" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:745 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:766 -msgid "Tags Meta Box" -msgstr "Tags meta box" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:704 -msgid "A link to a tag" -msgstr "Een link naar een tag" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:703 -msgid "Describes a navigation link block variation used in the block editor." -msgstr "" -"Beschrijft een navigatie link blok variatie gebruikt in de blok-editor." - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:698 -msgid "A link to a %s" -msgstr "Een link naar een %s" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:683 -msgid "Tag Link" -msgstr "Tag link" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:682 -msgid "" -"Assigns a title for navigation link block variation used in the block editor." -msgstr "" -"Wijst een titel toe aan de navigatie link blok variatie gebruikt in de blok-" -"editor." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:663 -msgid "← Go to tags" -msgstr "← Ga naar tags" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:662 -msgid "" -"Assigns the text used to link back to the main index after updating a term." -msgstr "" -"Wijst de tekst toe die wordt gebruikt om terug te linken naar de hoofd index " -"na het updaten van een term." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:661 -msgid "Back To Items" -msgstr "Terug naar items" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:657 -msgid "← Go to %s" -msgstr "← Ga naar %s" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:642 -msgid "Tags list" -msgstr "Tags lijst" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:641 -msgid "Assigns text to the table hidden heading." -msgstr "Wijst tekst toe aan de verborgen koptekst van de tabel." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:622 -msgid "Tags list navigation" -msgstr "Tags lijst navigatie" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:621 -msgid "Assigns text to the table pagination hidden heading." -msgstr "" -"Wijst tekst toe aan de verborgen koptekst van de paginering van de tabel." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:597 -msgid "Filter by category" -msgstr "Filter op categorie" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:596 -msgid "Assigns text to the filter button in the posts lists table." -msgstr "Wijst tekst toe aan de filterknop in de lijst met berichten." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:595 -msgid "Filter By Item" -msgstr "Filter op item" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:591 -msgid "Filter by %s" -msgstr "Filter op %s" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:575 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:576 -msgid "" -"The description is not prominent by default; however, some themes may show " -"it." -msgstr "" -"De beschrijving is standaard niet prominent aanwezig; sommige thema's kunnen " -"hem echter wel tonen." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:574 -msgid "Describes the Description field on the Edit Tags screen." -msgstr "Beschrijft het veld beschrijving in het scherm bewerken tags." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:573 -msgid "Description Field Description" -msgstr "Omschrijving veld beschrijving" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:554 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:555 -msgid "" -"Assign a parent term to create a hierarchy. The term Jazz, for example, " -"would be the parent of Bebop and Big Band" -msgstr "" -"Wijs een hoofdterm toe om een hiërarchie te creëren. De term jazz is " -"bijvoorbeeld het hoofd van Bebop en Big Band" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:553 -msgid "Describes the Parent field on the Edit Tags screen." -msgstr "Beschrijft het hoofd veld op het bewerken tags scherm." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:552 -msgid "Parent Field Description" -msgstr "Hoofdveld beschrijving" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:538 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:539 -msgid "" -"The \"slug\" is the URL-friendly version of the name. It is usually all " -"lower case and contains only letters, numbers, and hyphens." -msgstr "" -"De \"slug\" is de URL vriendelijke versie van de naam. Het zijn meestal " -"allemaal kleine letters en bevat alleen letters, cijfers en koppeltekens." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:537 -msgid "Describes the Slug field on the Edit Tags screen." -msgstr "Beschrijft het slug veld op het bewerken tags scherm." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:536 -msgid "Slug Field Description" -msgstr "Slug veld beschrijving" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:522 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:523 -msgid "The name is how it appears on your site" -msgstr "De naam is zoals hij op je site staat" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:521 -msgid "Describes the Name field on the Edit Tags screen." -msgstr "Beschrijft het naamveld op het bewerken tags scherm." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:520 -msgid "Name Field Description" -msgstr "Naamveld beschrijving" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:507 -msgid "No tags" -msgstr "Geen tags" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:506 -msgid "" -"Assigns the text displayed in the posts and media list tables when no tags " -"or categories are available." -msgstr "" -"Wijst de tekst toe die wordt weergegeven in de tabellen met berichten en " -"media lijsten als er geen tags of categorieën beschikbaar zijn." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:505 -msgid "No Terms" -msgstr "Geen termen" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:501 -msgid "No %s" -msgstr "Geen %s" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:486 -msgid "No tags found" -msgstr "Geen tags gevonden" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:485 -msgid "" -"Assigns the text displayed when clicking the 'choose from most used' text in " -"the taxonomy meta box when no tags are available, and assigns the text used " -"in the terms list table when there are no items for a taxonomy." -msgstr "" -"Wijst de tekst toe die wordt weergegeven wanneer je klikt op de 'kies uit " -"meest gebruikte' tekst in het taxonomie meta box wanneer er geen tags " -"beschikbaar zijn, en wijst de tekst toe die wordt gebruikt in de termen " -"lijst tabel wanneer er geen items zijn voor een taxonomie." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:484 -msgid "Not Found" -msgstr "Niet gevonden" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:463 -msgid "Assigns text to the Title field of the Most Used tab." -msgstr "Wijst tekst toe aan het titelveld van de tab meest gebruikt." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:462 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:464 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:465 -msgid "Most Used" -msgstr "Meest gebruikt" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:444 -msgid "Choose from the most used tags" -msgstr "Kies uit de meest gebruikte tags" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:443 -msgid "" -"Assigns the 'choose from most used' text used in the meta box when " -"JavaScript is disabled. Only used on non-hierarchical taxonomies." -msgstr "" -"Wijst de 'kies uit meest gebruikte' tekst toe die wordt gebruikt in het meta " -"box wanneer JavaScript is uitgeschakeld. Alleen gebruikt op niet " -"hiërarchische taxonomieën." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:442 -msgid "Choose From Most Used" -msgstr "Kies uit de meest gebruikte" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:438 -msgid "Choose from the most used %s" -msgstr "Kies uit de meest gebruikte %s" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:418 -msgid "Add or remove tags" -msgstr "Tags toevoegen of verwijderen" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:417 -msgid "" -"Assigns the add or remove items text used in the meta box when JavaScript is " -"disabled. Only used on non-hierarchical taxonomies" -msgstr "" -"Wijst de tekst voor het toevoegen of verwijderen van items toe die wordt " -"gebruikt in het meta box wanneer JavaScript is uitgeschakeld. Alleen " -"gebruikt op niet hiërarchische taxonomieën" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:416 -msgid "Add Or Remove Items" -msgstr "Items toevoegen of verwijderen" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:412 -msgid "Add or remove %s" -msgstr "%s toevoegen of verwijderen" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:392 -msgid "Separate tags with commas" -msgstr "Scheid tags met komma's" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:391 -msgid "" -"Assigns the separate item with commas text used in the taxonomy meta box. " -"Only used on non-hierarchical taxonomies." -msgstr "" -"Wijst de gescheiden item met komma's tekst toe die wordt gebruikt in het " -"taxonomie meta box. Alleen gebruikt op niet hiërarchische taxonomieën." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:390 -msgid "Separate Items With Commas" -msgstr "Scheid items met komma's" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:386 -msgid "Separate %s with commas" -msgstr "Scheid %s met komma's" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:366 -msgid "Popular Tags" -msgstr "Populaire tags" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:365 -msgid "Assigns popular items text. Only used for non-hierarchical taxonomies." -msgstr "" -"Wijst populaire items tekst toe. Alleen gebruikt voor niet hiërarchische " -"taxonomieën." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:364 -msgid "Popular Items" -msgstr "Populaire items" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:361 -msgid "Popular %s" -msgstr "Populaire %s" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:347 -msgid "Search Tags" -msgstr "Tags zoeken" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:346 -msgid "Assigns search items text." -msgstr "Wijst zoek items tekst toe." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:323 -msgid "Parent Category:" -msgstr "Hoofdcategorie:" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:322 -msgid "Assigns parent item text, but with a colon (:) added to the end." -msgstr "" -"Wijst hoofd item tekst toe, maar met een dubbele punt (:) toegevoegd aan het " -"einde." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:321 -msgid "Parent Item With Colon" -msgstr "Hoofditem met dubbele punt" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:298 -msgid "Parent Category" -msgstr "Hoofdcategorie" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:297 -msgid "Assigns parent item text. Only used on hierarchical taxonomies." -msgstr "" -"Wijst hoofd item tekst toe. Alleen gebruikt bij hiërarchische taxonomieën." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:296 -msgid "Parent Item" -msgstr "Hoofditem" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:293 -msgid "Parent %s" -msgstr "Hoofd %s" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:278 -msgid "New Tag Name" -msgstr "Nieuwe tagnaam" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:277 -msgid "Assigns the new item name text." -msgstr "Wijst de nieuwe item naam tekst toe." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:276 -msgid "New Item Name" -msgstr "Nieuw item naam" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:273 -msgid "New %s Name" -msgstr "Nieuwe %s naam" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:258 -msgid "Add New Tag" -msgstr "Nieuwe tag toevoegen" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:257 -msgid "Assigns the add new item text." -msgstr "Wijst de tekst van het nieuwe item toe." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:238 -msgid "Update Tag" -msgstr "Tag updaten" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:237 -msgid "Assigns the update item text." -msgstr "Wijst de tekst van het update item toe." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:236 -msgid "Update Item" -msgstr "Item updaten" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:233 -msgid "Update %s" -msgstr "%s updaten" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:218 -msgid "View Tag" -msgstr "Tag bekijken" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:217 -msgid "In the admin bar to view term during editing." -msgstr "In de toolbar om de term te bekijken tijdens het bewerken." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:198 -msgid "Edit Tag" -msgstr "Tag bewerken" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:197 -msgid "At the top of the editor screen when editing a term." -msgstr "Aan de bovenkant van het editor scherm bij het bewerken van een term." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:178 -msgid "All Tags" -msgstr "Alle tags" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:177 -msgid "Assigns the all items text." -msgstr "Wijst de tekst van alle items toe." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:158 -msgid "Assigns the menu name text." -msgstr "Wijst de tekst van de menu naam toe." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:157 -msgid "Menu Label" -msgstr "Menulabel" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:131 -msgid "Active taxonomies are enabled and registered with WordPress." -msgstr "Actieve taxonomieën zijn ingeschakeld en geregistreerd bij WordPress." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:115 -msgid "A descriptive summary of the taxonomy." -msgstr "Een beschrijvende samenvatting van de taxonomie." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:95 -msgid "A descriptive summary of the term." -msgstr "Een beschrijvende samenvatting van de term." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:94 -msgid "Term Description" -msgstr "Term beschrijving" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:76 -msgid "Single word, no spaces. Underscores and dashes allowed." -msgstr "Eén woord, geen spaties. Underscores en streepjes zijn toegestaan." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:75 -msgid "Term Slug" -msgstr "Term slug" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:56 -msgid "The name of the default term." -msgstr "De naam van de standaard term." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:55 -msgid "Term Name" -msgstr "Term naam" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:41 -msgid "" -"Create a term for the taxonomy that cannot be deleted. It will not be " -"selected for posts by default." -msgstr "" -"Maak een term aan voor de taxonomie die niet verwijderd kan worden. Deze zal " -"niet standaard worden geselecteerd voor berichten." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:40 -msgid "Default Term" -msgstr "Standaard term" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:28 -msgid "" -"Whether terms in this taxonomy should be sorted in the order they are " -"provided to `wp_set_object_terms()`." -msgstr "" -"Of termen in deze taxonomie moeten worden gesorteerd in de volgorde waarin " -"ze worden aangeleverd aan `wp_set_object_terms()`." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:27 -msgid "Sort Terms" -msgstr "Termen sorteren" - -#: includes/admin/views/acf-post-type/list-empty.php:7 -msgid "Add Post Type" -msgstr "Berichttype toevoegen" - -#: includes/admin/views/acf-post-type/list-empty.php:6 -msgid "" -"Expand the functionality of WordPress beyond standard posts and pages with " -"custom post types." -msgstr "" -"Breid de functionaliteit van WordPress verder uit met aangepaste " -"berichttypen." - -#: includes/admin/views/acf-post-type/list-empty.php:5 -msgid "Add Your First Post Type" -msgstr "Je eerste berichttype toevoegen" - -#: includes/admin/views/acf-post-type/basic-settings.php:136 -#: includes/admin/views/acf-taxonomy/basic-settings.php:135 -msgid "I know what I'm doing, show me all the options." -msgstr "Ik weet wat ik doe, laat me alle opties zien." - -#: includes/admin/views/acf-post-type/basic-settings.php:135 -#: includes/admin/views/acf-taxonomy/basic-settings.php:134 -msgid "Advanced Configuration" -msgstr "Geavanceerde configuratie" - -#: includes/admin/views/acf-post-type/basic-settings.php:123 -msgid "Hierarchical post types can have descendants (like pages)." -msgstr "" -"Hiërarchische bericht types kunnen afstammelingen hebben (zoals pagina's)." - -#: includes/admin/views/acf-post-type/basic-settings.php:122 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:980 -#: includes/admin/views/acf-taxonomy/basic-settings.php:121 -msgid "Hierarchical" -msgstr "Hiërarchisch" - -#: includes/admin/views/acf-post-type/basic-settings.php:107 -msgid "Visible on the frontend and in the admin dashboard." -msgstr "Zichtbaar op de voorkant en in het beheerder dashboard." - -#: includes/admin/views/acf-post-type/basic-settings.php:106 -#: includes/admin/views/acf-taxonomy/basic-settings.php:106 -msgid "Public" -msgstr "Publiek" - -#. translators: example post type -#: includes/admin/views/acf-post-type/basic-settings.php:59 -msgid "movie" -msgstr "film" - -#: includes/admin/views/acf-post-type/basic-settings.php:57 -msgid "Lower case letters, underscores and dashes only, Max 20 characters." -msgstr "" -"Alleen kleine letters, underscores en streepjes, maximaal 20 karakters." - -#. translators: example post type -#: includes/admin/views/acf-post-type/basic-settings.php:41 -msgid "Movie" -msgstr "Film" - -#: includes/admin/views/acf-post-type/basic-settings.php:39 -#: includes/admin/views/acf-taxonomy/basic-settings.php:40 -msgid "Singular Label" -msgstr "Enkelvoudig label" - -#. translators: example post type -#: includes/admin/views/acf-post-type/basic-settings.php:24 -msgid "Movies" -msgstr "Films" - -#: includes/admin/views/acf-post-type/basic-settings.php:22 -#: includes/admin/views/acf-taxonomy/basic-settings.php:23 -msgid "Plural Label" -msgstr "Meervoud label" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1270 -msgid "" -"Optional custom controller to use instead of `WP_REST_Posts_Controller`." -msgstr "" -"Optionele aangepaste controller om te gebruiken in plaats van " -"`WP_REST_Berichten_Controller`." - -#: includes/admin/views/acf-post-type/advanced-settings.php:1269 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1210 -msgid "Controller Class" -msgstr "Controller klasse" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1251 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1191 -msgid "The namespace part of the REST API URL." -msgstr "De namespace sectie van de REST API URL." - -#: includes/admin/views/acf-post-type/advanced-settings.php:1250 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1190 -msgid "Namespace Route" -msgstr "Namespace route" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1232 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1172 -msgid "The base URL for the post type REST API URLs." -msgstr "De basis URL voor de berichttype REST API URL's." - -#: includes/admin/views/acf-post-type/advanced-settings.php:1231 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1171 -msgid "Base URL" -msgstr "Basis-URL" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1217 -msgid "" -"Exposes this post type in the REST API. Required to use the block editor." -msgstr "" -"Geeft dit berichttype weer in de REST API. Vereist om de blok-editor te " -"gebruiken." - -#: includes/admin/views/acf-post-type/advanced-settings.php:1216 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1154 -msgid "Show In REST API" -msgstr "Weergeven in REST API" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1195 -msgid "Customize the query variable name." -msgstr "Pas de naam van de query variabele aan." - -#: includes/admin/views/acf-post-type/advanced-settings.php:1194 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1054 -msgid "Query Variable" -msgstr "Vraag variabele" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1172 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1032 -msgid "No Query Variable Support" -msgstr "Geen ondersteuning voor query variabele" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1171 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1031 -msgid "Custom Query Variable" -msgstr "Aangepaste query variabele" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1168 -msgid "" -"Items can be accessed using the non-pretty permalink, eg. {post_type}" -"={post_slug}." -msgstr "" -"Items zijn toegankelijk via de niet pretty permalink, bijv. {bericht_type}" -"={bericht_slug}." - -#: includes/admin/views/acf-post-type/advanced-settings.php:1167 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1027 -msgid "Query Variable Support" -msgstr "Ondersteuning voor query variabelen" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1142 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1003 -msgid "URLs for an item and items can be accessed with a query string." -msgstr "" -"URL's voor een item en items kunnen worden benaderd met een query string." - -#: includes/admin/views/acf-post-type/advanced-settings.php:1141 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1002 -msgid "Publicly Queryable" -msgstr "Openbaar opvraagbaar" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1120 -msgid "Custom slug for the Archive URL." -msgstr "Aangepaste slug voor het archief URL." - -#: includes/admin/views/acf-post-type/advanced-settings.php:1119 -msgid "Archive Slug" -msgstr "Archief slug" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1106 -msgid "" -"Has an item archive that can be customized with an archive template file in " -"your theme." -msgstr "" -"Heeft een item archief dat kan worden aangepast met een archief template " -"bestand in je thema." - -#: includes/admin/views/acf-post-type/advanced-settings.php:1105 -msgid "Archive" -msgstr "Archief" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1085 -msgid "Pagination support for the items URLs such as the archives." -msgstr "Paginatie ondersteuning voor de items URL's zoals de archieven." - -#: includes/admin/views/acf-post-type/advanced-settings.php:1084 -msgid "Pagination" -msgstr "Paginering" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1067 -msgid "RSS feed URL for the post type items." -msgstr "RSS feed URL voor de items van het berichttype." - -#: includes/admin/views/acf-post-type/advanced-settings.php:1066 -msgid "Feed URL" -msgstr "Feed URL" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1048 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:961 -msgid "" -"Alters the permalink structure to add the `WP_Rewrite::$front` prefix to " -"URLs." -msgstr "" -"Wijzigt de permalink structuur om het `WP_Rewrite::$front` voorvoegsel toe " -"te voegen aan URLs." - -#: includes/admin/views/acf-post-type/advanced-settings.php:1047 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:960 -msgid "Front URL Prefix" -msgstr "Front URL voorvoegsel" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1028 -msgid "Customize the slug used in the URL." -msgstr "Pas de slug in de URL aan." - -#: includes/admin/views/acf-post-type/advanced-settings.php:1027 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:940 -msgid "URL Slug" -msgstr "URL slug" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1011 -msgid "Permalinks for this post type are disabled." -msgstr "Permalinks voor dit berichttype zijn uitgeschakeld." - -#. translators: this string will be appended with the new permalink structure. -#: includes/admin/views/acf-post-type/advanced-settings.php:1010 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:923 -msgid "" -"Rewrite the URL using a custom slug defined in the input below. Your " -"permalink structure will be" -msgstr "" -"Herschrijf de URL met behulp van een aangepaste slug, gedefinieerd in de " -"onderstaande invoer. Je permalink structuur zal zijn" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1002 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:915 -msgid "No Permalink (prevent URL rewriting)" -msgstr "Geen permalink (voorkom URL herschrijving)" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1001 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:914 -msgid "Custom Permalink" -msgstr "Aangepaste permalink" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1000 -#: includes/admin/views/acf-post-type/advanced-settings.php:1170 -#: includes/admin/views/acf-post-type/basic-settings.php:56 -msgid "Post Type Key" -msgstr "Berichttype sleutel" - -#. translators: this string will be appended with the new permalink structure. -#: includes/admin/views/acf-post-type/advanced-settings.php:998 -#: includes/admin/views/acf-post-type/advanced-settings.php:1008 -msgid "" -"Rewrite the URL using the post type key as the slug. Your permalink " -"structure will be" -msgstr "" -"Herschrijf de URL met de berichttype sleutel als slug. Je permalink " -"structuur zal zijn" - -#: includes/admin/views/acf-post-type/advanced-settings.php:996 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:910 -msgid "Permalink Rewrite" -msgstr "Permalink herschrijven" - -#: includes/admin/views/acf-post-type/advanced-settings.php:982 -msgid "Delete items by a user when that user is deleted." -msgstr "" -"Verwijder items van een gebruiker wanneer die gebruiker wordt verwijderd." - -#: includes/admin/views/acf-post-type/advanced-settings.php:981 -msgid "Delete With User" -msgstr "Verwijder met gebruiker" - -#: includes/admin/views/acf-post-type/advanced-settings.php:967 -msgid "Allow the post type to be exported from 'Tools' > 'Export'." -msgstr "Laat het berichttype exporteren via 'Gereedschap' > 'Exporteren'." - -#: includes/admin/views/acf-post-type/advanced-settings.php:966 -msgid "Can Export" -msgstr "Kan geëxporteerd worden" - -#: includes/admin/views/acf-post-type/advanced-settings.php:935 -msgid "Optionally provide a plural to be used in capabilities." -msgstr "Geef desgewenst een meervoud dat in rechten moet worden gebruikt." - -#: includes/admin/views/acf-post-type/advanced-settings.php:934 -msgid "Plural Capability Name" -msgstr "Meervoudige rechten naam" - -#: includes/admin/views/acf-post-type/advanced-settings.php:916 -msgid "Choose another post type to base the capabilities for this post type." -msgstr "" -"Kies een ander berichttype om de rechten voor dit berichttype te baseren." - -#: includes/admin/views/acf-post-type/advanced-settings.php:915 -msgid "Singular Capability Name" -msgstr "Enkelvoudige rechten naam" - -#: includes/admin/views/acf-post-type/advanced-settings.php:901 -msgid "" -"By default the capabilities of the post type will inherit the 'Post' " -"capability names, eg. edit_post, delete_posts. Enable to use post type " -"specific capabilities, eg. edit_{singular}, delete_{plural}." -msgstr "" -"Standaard erven de rechten van het berichttype de namen van de 'Bericht' " -"rechten, bv. Edit_bericht, delete_berichten. Activeer om berichttype " -"specifieke rechten te gebruiken, bijv. Edit_{singular}, delete_{plural}." - -#: includes/admin/views/acf-post-type/advanced-settings.php:900 -msgid "Rename Capabilities" -msgstr "Rechten hernoemen" - -#: includes/admin/views/acf-post-type/advanced-settings.php:885 -msgid "Exclude From Search" -msgstr "Uitsluiten van zoeken" - -#: includes/admin/views/acf-post-type/advanced-settings.php:872 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:854 -msgid "" -"Allow items to be added to menus in the 'Appearance' > 'Menus' screen. Must " -"be turned on in 'Screen options'." -msgstr "" -"Sta toe dat items worden toegevoegd aan menu's in het scherm 'Weergave' > " -"'Menu's'. Moet ingeschakeld zijn in 'Scherminstellingen'." - -#: includes/admin/views/acf-post-type/advanced-settings.php:871 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:853 -msgid "Appearance Menus Support" -msgstr "Ondersteuning voor weergave menu's" - -#: includes/admin/views/acf-post-type/advanced-settings.php:853 -msgid "Appears as an item in the 'New' menu in the admin bar." -msgstr "Verschijnt als een item in het menu \"Nieuw\" in de beheerbalk." - -#: includes/admin/views/acf-post-type/advanced-settings.php:852 -msgid "Show In Admin Bar" -msgstr "Toon in beheerbalk" - -#: includes/admin/views/acf-post-type/advanced-settings.php:821 -msgid "" -"A PHP function name to be called when setting up the meta boxes for the edit " -"screen." -msgstr "" -"Een PHP functie naam die moet worden aangeroepen bij het instellen van de " -"meta boxen voor het bewerking scherm." - -#: includes/admin/views/acf-post-type/advanced-settings.php:820 -msgid "Custom Meta Box Callback" -msgstr "Aangepaste meta box callback" - -#: includes/admin/views/acf-post-type/advanced-settings.php:800 -msgid "Menu Icon" -msgstr "Menu pictogram" - -#: includes/admin/views/acf-post-type/advanced-settings.php:782 -msgid "The position in the sidebar menu in the admin dashboard." -msgstr "De positie in het zijbalk menu in het beheerder dashboard." - -#: includes/admin/views/acf-post-type/advanced-settings.php:781 -msgid "Menu Position" -msgstr "Menu positie" - -#: includes/admin/views/acf-post-type/advanced-settings.php:763 -msgid "" -"By default the post type will get a new top level item in the admin menu. If " -"an existing top level item is supplied here, the post type will be added as " -"a submenu item under it." -msgstr "" -"Standaard krijgt het berichttype een nieuw item op bovenkant niveau in het " -"beheerder menu. Als hier een bestaand item op bovenkant niveau wordt " -"aangeleverd, zal het berichttype worden toegevoegd als een sub menu item " -"eronder." - -#: includes/admin/views/acf-post-type/advanced-settings.php:762 -msgid "Admin Menu Parent" -msgstr "Beheerder hoofd menu" - -#. translators: %s = "dashicon class name", link to the WordPress dashicon -#. documentation. -#: includes/admin/views/acf-post-type/advanced-settings.php:750 -msgid "" -"The icon used for the post type menu item in the admin dashboard. Can be a " -"URL or %s to use for the icon." -msgstr "" -"Het pictogram dat wordt gebruikt voor het berichttype menu item in het " -"beheerder dashboard. Kan een URL of %s zijn om te gebruiken voor het " -"pictogram." - -#: includes/admin/views/acf-post-type/advanced-settings.php:745 -msgid "Dashicon class name" -msgstr "Dashicon klasse naam" - -#: includes/admin/views/acf-post-type/advanced-settings.php:734 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:734 -msgid "Admin editor navigation in the sidebar menu." -msgstr "Beheerder editor navigatie in het zijbalk menu." - -#: includes/admin/views/acf-post-type/advanced-settings.php:733 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:733 -msgid "Show In Admin Menu" -msgstr "Toon in beheerder menu" - -#: includes/admin/views/acf-post-type/advanced-settings.php:720 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:719 -msgid "Items can be edited and managed in the admin dashboard." -msgstr "Items kunnen worden bewerkt en beheerd in het beheerder dashboard." - -#: includes/admin/views/acf-post-type/advanced-settings.php:719 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:718 -msgid "Show In UI" -msgstr "Weergeven in UI" - -#: includes/admin/views/acf-post-type/advanced-settings.php:689 -msgid "A link to a post." -msgstr "Een link naar een bericht." - -#: includes/admin/views/acf-post-type/advanced-settings.php:688 -msgid "Description for a navigation link block variation." -msgstr "Beschrijving voor een navigatie link blok variatie." - -#: includes/admin/views/acf-post-type/advanced-settings.php:687 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:702 -msgid "Item Link Description" -msgstr "Item link beschrijving" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:683 -msgid "A link to a %s." -msgstr "Een link naar een %s." - -#: includes/admin/views/acf-post-type/advanced-settings.php:668 -msgid "Post Link" -msgstr "Bericht link" - -#: includes/admin/views/acf-post-type/advanced-settings.php:667 -msgid "Title for a navigation link block variation." -msgstr "Titel voor een navigatie link blok variatie." - -#: includes/admin/views/acf-post-type/advanced-settings.php:666 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:681 -msgid "Item Link" -msgstr "Item link" - -#. translators: %s Singular form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:663 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:678 -msgid "%s Link" -msgstr "%s link" - -#: includes/admin/views/acf-post-type/advanced-settings.php:648 -msgid "Post updated." -msgstr "Bericht geüpdatet." - -#: includes/admin/views/acf-post-type/advanced-settings.php:647 -msgid "In the editor notice after an item is updated." -msgstr "In het editor bericht nadat een item is geüpdatet." - -#: includes/admin/views/acf-post-type/advanced-settings.php:646 -msgid "Item Updated" -msgstr "Item geüpdatet" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:643 -msgid "%s updated." -msgstr "%s geüpdatet." - -#: includes/admin/views/acf-post-type/advanced-settings.php:628 -msgid "Post scheduled." -msgstr "Bericht ingepland." - -#: includes/admin/views/acf-post-type/advanced-settings.php:627 -msgid "In the editor notice after scheduling an item." -msgstr "In het editor bericht na het plannen van een item." - -#: includes/admin/views/acf-post-type/advanced-settings.php:626 -msgid "Item Scheduled" -msgstr "Item gepland" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:623 -msgid "%s scheduled." -msgstr "%s gepland." - -#: includes/admin/views/acf-post-type/advanced-settings.php:608 -msgid "Post reverted to draft." -msgstr "Bericht teruggezet naar concept." - -#: includes/admin/views/acf-post-type/advanced-settings.php:607 -msgid "In the editor notice after reverting an item to draft." -msgstr "In het editor bericht na het terugdraaien van een item naar concept." - -#: includes/admin/views/acf-post-type/advanced-settings.php:606 -msgid "Item Reverted To Draft" -msgstr "Item teruggezet naar concept" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:603 -msgid "%s reverted to draft." -msgstr "%s teruggezet naar het concept." - -#: includes/admin/views/acf-post-type/advanced-settings.php:588 -msgid "Post published privately." -msgstr "Bericht privé gepubliceerd." - -#: includes/admin/views/acf-post-type/advanced-settings.php:587 -msgid "In the editor notice after publishing a private item." -msgstr "In het editor bericht na het publiceren van een privé item." - -#: includes/admin/views/acf-post-type/advanced-settings.php:586 -msgid "Item Published Privately" -msgstr "Item privé gepubliceerd" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:583 -msgid "%s published privately." -msgstr "%s privé gepubliceerd." - -#: includes/admin/views/acf-post-type/advanced-settings.php:568 -msgid "Post published." -msgstr "Bericht gepubliceerd." - -#: includes/admin/views/acf-post-type/advanced-settings.php:567 -msgid "In the editor notice after publishing an item." -msgstr "In het editor bericht na het publiceren van een item." - -#: includes/admin/views/acf-post-type/advanced-settings.php:566 -msgid "Item Published" -msgstr "Item gepubliceerd" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:563 -msgid "%s published." -msgstr "%s gepubliceerd." - -#: includes/admin/views/acf-post-type/advanced-settings.php:548 -msgid "Posts list" -msgstr "Berichtenlijst" - -#: includes/admin/views/acf-post-type/advanced-settings.php:547 -msgid "Used by screen readers for the items list on the post type list screen." -msgstr "" -"Gebruikt door scherm lezers voor de item lijst op het scherm van de " -"berichttypen lijst." - -#: includes/admin/views/acf-post-type/advanced-settings.php:546 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:640 -msgid "Items List" -msgstr "Items lijst" - -#. translators: %s Plural form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:543 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:637 -msgid "%s list" -msgstr "%s lijst" - -#: includes/admin/views/acf-post-type/advanced-settings.php:528 -msgid "Posts list navigation" -msgstr "Berichten lijst navigatie" - -#: includes/admin/views/acf-post-type/advanced-settings.php:527 -msgid "" -"Used by screen readers for the filter list pagination on the post type list " -"screen." -msgstr "" -"Gebruikt door scherm lezers voor de paginering van de filter lijst op het " -"scherm van de lijst met berichttypes." - -#: includes/admin/views/acf-post-type/advanced-settings.php:526 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:620 -msgid "Items List Navigation" -msgstr "Items lijst navigatie" - -#. translators: %s Plural form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:523 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:617 -msgid "%s list navigation" -msgstr "%s lijst navigatie" - -#: includes/admin/views/acf-post-type/advanced-settings.php:507 -msgid "Filter posts by date" -msgstr "Filter berichten op datum" - -#: includes/admin/views/acf-post-type/advanced-settings.php:506 -msgid "" -"Used by screen readers for the filter by date heading on the post type list " -"screen." -msgstr "" -"Gebruikt door scherm lezers voor de filter op datum koptekst in de lijst met " -"berichttypes." - -#: includes/admin/views/acf-post-type/advanced-settings.php:505 -msgid "Filter Items By Date" -msgstr "Filter items op datum" - -#. translators: %s Plural form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:501 -msgid "Filter %s by date" -msgstr "Filter %s op datum" - -#: includes/admin/views/acf-post-type/advanced-settings.php:486 -msgid "Filter posts list" -msgstr "Filter berichtenlijst" - -#: includes/admin/views/acf-post-type/advanced-settings.php:485 -msgid "" -"Used by screen readers for the filter links heading on the post type list " -"screen." -msgstr "" -"Gebruikt door scherm lezers voor het koptekst filter links op het scherm van " -"de lijst met berichttypes." - -#: includes/admin/views/acf-post-type/advanced-settings.php:484 -msgid "Filter Items List" -msgstr "Filter itemlijst" - -#. translators: %s Plural form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:480 -msgid "Filter %s list" -msgstr "Filter %s lijst" - -#: includes/admin/views/acf-post-type/advanced-settings.php:464 -msgid "In the media modal showing all media uploaded to this item." -msgstr "" -"In het media modaal worden alle media getoond die naar dit item zijn " -"geüpload." - -#: includes/admin/views/acf-post-type/advanced-settings.php:463 -msgid "Uploaded To This Item" -msgstr "Geüpload naar dit item" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:459 -msgid "Uploaded to this %s" -msgstr "Geüpload naar deze %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:444 -msgid "Insert into post" -msgstr "Invoegen in bericht" - -#: includes/admin/views/acf-post-type/advanced-settings.php:443 -msgid "As the button label when adding media to content." -msgstr "Als knop label bij het toevoegen van media aan inhoud." - -#: includes/admin/views/acf-post-type/advanced-settings.php:442 -msgid "Insert Into Media Button" -msgstr "Invoegen in media knop" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:438 -msgid "Insert into %s" -msgstr "Invoegen in %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:423 -msgid "Use as featured image" -msgstr "Gebruik als uitgelichte afbeelding" - -#: includes/admin/views/acf-post-type/advanced-settings.php:422 -msgid "" -"As the button label for selecting to use an image as the featured image." -msgstr "" -"Als knop label voor het selecteren van een afbeelding als uitgelichte " -"afbeelding." - -#: includes/admin/views/acf-post-type/advanced-settings.php:421 -msgid "Use Featured Image" -msgstr "Gebruik uitgelichte afbeelding" - -#: includes/admin/views/acf-post-type/advanced-settings.php:408 -msgid "Remove featured image" -msgstr "Verwijder uitgelichte afbeelding" - -#: includes/admin/views/acf-post-type/advanced-settings.php:407 -msgid "As the button label when removing the featured image." -msgstr "Als het knop label bij het verwijderen van de uitgelichte afbeelding." - -#: includes/admin/views/acf-post-type/advanced-settings.php:406 -msgid "Remove Featured Image" -msgstr "Verwijder uitgelichte afbeelding" - -#: includes/admin/views/acf-post-type/advanced-settings.php:393 -msgid "Set featured image" -msgstr "Uitgelichte afbeelding instellen" - -#: includes/admin/views/acf-post-type/advanced-settings.php:392 -msgid "As the button label when setting the featured image." -msgstr "Als knop label bij het instellen van de uitgelichte afbeelding." - -#: includes/admin/views/acf-post-type/advanced-settings.php:391 -msgid "Set Featured Image" -msgstr "Uitgelichte afbeelding instellen" - -#: includes/admin/views/acf-post-type/advanced-settings.php:378 -msgid "Featured image" -msgstr "Uitgelichte afbeelding" - -#: includes/admin/views/acf-post-type/advanced-settings.php:377 -msgid "In the editor used for the title of the featured image meta box." -msgstr "" -"In de editor gebruikt voor de titel van de uitgelichte afbeelding meta box." - -#: includes/admin/views/acf-post-type/advanced-settings.php:376 -msgid "Featured Image Meta Box" -msgstr "Uitgelichte afbeelding meta box" - -#: includes/admin/views/acf-post-type/advanced-settings.php:363 -msgid "Post Attributes" -msgstr "Berichtattributen" - -#: includes/admin/views/acf-post-type/advanced-settings.php:362 -msgid "In the editor used for the title of the post attributes meta box." -msgstr "" -"In de editor gebruikt voor de titel van het bericht attributen meta box." - -#: includes/admin/views/acf-post-type/advanced-settings.php:361 -msgid "Attributes Meta Box" -msgstr "Attributen meta box" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:358 -msgid "%s Attributes" -msgstr "%s attributen" - -#: includes/admin/views/acf-post-type/advanced-settings.php:343 -msgid "Post Archives" -msgstr "Bericht archieven" - -#: includes/admin/views/acf-post-type/advanced-settings.php:342 -msgid "" -"Adds 'Post Type Archive' items with this label to the list of posts shown " -"when adding items to an existing menu in a CPT with archives enabled. Only " -"appears when editing menus in 'Live Preview' mode and a custom archive slug " -"has been provided." -msgstr "" -"Voegt 'Berichttype archief' items met dit label toe aan de lijst van " -"berichten die getoond worden bij het toevoegen van items aan een bestaand " -"menu in een CPT met archieven ingeschakeld. Verschijnt alleen bij het " -"bewerken van menu's in 'Live voorbeeld' modus en wanneer een aangepaste " -"archief slug is opgegeven." - -#: includes/admin/views/acf-post-type/advanced-settings.php:341 -msgid "Archives Nav Menu" -msgstr "Archief nav menu" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:338 -msgid "%s Archives" -msgstr "%s archief" - -#: includes/admin/views/acf-post-type/advanced-settings.php:323 -msgid "No posts found in Trash" -msgstr "Geen berichten gevonden in de prullenbak" - -#: includes/admin/views/acf-post-type/advanced-settings.php:322 -msgid "" -"At the top of the post type list screen when there are no posts in the trash." -msgstr "" -"Aan de bovenkant van het scherm van de lijst met berichttypes wanneer er " -"geen berichten in de prullenbak zitten." - -#: includes/admin/views/acf-post-type/advanced-settings.php:321 -msgid "No Items Found in Trash" -msgstr "Geen items gevonden in de prullenbak" - -#. translators: %s Plural form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:317 -msgid "No %s found in Trash" -msgstr "Geen %s gevonden in de prullenbak" - -#: includes/admin/views/acf-post-type/advanced-settings.php:302 -msgid "No posts found" -msgstr "Geen berichten gevonden" - -#: includes/admin/views/acf-post-type/advanced-settings.php:301 -msgid "" -"At the top of the post type list screen when there are no posts to display." -msgstr "" -"Aan de bovenkant van het scherm van de lijst met berichttypes wanneer er " -"geen berichten zijn om weer te geven." - -#: includes/admin/views/acf-post-type/advanced-settings.php:300 -msgid "No Items Found" -msgstr "Geen items gevonden" - -#. translators: %s Plural form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:296 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:480 -msgid "No %s found" -msgstr "Geen %s gevonden" - -#: includes/admin/views/acf-post-type/advanced-settings.php:281 -msgid "Search Posts" -msgstr "Berichten zoeken" - -#: includes/admin/views/acf-post-type/advanced-settings.php:280 -msgid "At the top of the items screen when searching for an item." -msgstr "Aan de bovenkant van het item scherm bij het zoeken naar een item." - -#: includes/admin/views/acf-post-type/advanced-settings.php:279 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:345 -msgid "Search Items" -msgstr "Items zoeken" - -#. translators: %s Singular form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:276 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:342 -msgid "Search %s" -msgstr "%s zoeken" - -#: includes/admin/views/acf-post-type/advanced-settings.php:261 -msgid "Parent Page:" -msgstr "Hoofdpagina:" - -#: includes/admin/views/acf-post-type/advanced-settings.php:260 -msgid "For hierarchical types in the post type list screen." -msgstr "Voor hiërarchische types in het scherm van de berichttypen lijst." - -#: includes/admin/views/acf-post-type/advanced-settings.php:259 -msgid "Parent Item Prefix" -msgstr "Hoofditem voorvoegsel" - -#. translators: %s Singular form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:256 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:318 -msgid "Parent %s:" -msgstr "Hoofd %s:" - -#: includes/admin/views/acf-post-type/advanced-settings.php:241 -msgid "New Post" -msgstr "Nieuw bericht" - -#: includes/admin/views/acf-post-type/advanced-settings.php:239 -msgid "New Item" -msgstr "Nieuw item" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:236 -msgid "New %s" -msgstr "Nieuw %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:206 -msgid "Add New Post" -msgstr "Nieuw bericht toevoegen" - -#: includes/admin/views/acf-post-type/advanced-settings.php:205 -msgid "At the top of the editor screen when adding a new item." -msgstr "" -"Aan de bovenkant van het editor scherm bij het toevoegen van een nieuw item." - -#: includes/admin/views/acf-post-type/advanced-settings.php:204 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:256 -msgid "Add New Item" -msgstr "Nieuw item toevoegen" - -#. translators: %s Singular form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:201 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:253 -msgid "Add New %s" -msgstr "Nieuwe %s toevoegen" - -#: includes/admin/views/acf-post-type/advanced-settings.php:186 -msgid "View Posts" -msgstr "Berichten bekijken" - -#: includes/admin/views/acf-post-type/advanced-settings.php:185 -msgid "" -"Appears in the admin bar in the 'All Posts' view, provided the post type " -"supports archives and the home page is not an archive of that post type." -msgstr "" -"Verschijnt in de toolbar in de weergave 'Alle berichten', als het " -"berichttype archieven ondersteunt en de voorpagina geen archief is van dat " -"berichttype." - -#: includes/admin/views/acf-post-type/advanced-settings.php:184 -msgid "View Items" -msgstr "Items bekijken" - -#: includes/admin/views/acf-post-type/advanced-settings.php:166 -msgid "View Post" -msgstr "Bericht bekijken" - -#: includes/admin/views/acf-post-type/advanced-settings.php:165 -msgid "In the admin bar to view item when editing it." -msgstr "In de toolbar om het item te bekijken wanneer je het bewerkt." - -#: includes/admin/views/acf-post-type/advanced-settings.php:164 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:216 -msgid "View Item" -msgstr "Item bekijken" - -#. translators: %s Singular form of post type name -#. translators: %s Plural form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:161 -#: includes/admin/views/acf-post-type/advanced-settings.php:181 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:213 -msgid "View %s" -msgstr "%s bekijken" - -#: includes/admin/views/acf-post-type/advanced-settings.php:146 -msgid "Edit Post" -msgstr "Bericht bewerken" - -#: includes/admin/views/acf-post-type/advanced-settings.php:145 -msgid "At the top of the editor screen when editing an item." -msgstr "Aan de bovenkant van het editor scherm bij het bewerken van een item." - -#: includes/admin/views/acf-post-type/advanced-settings.php:144 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:196 -msgid "Edit Item" -msgstr "Item bewerken" - -#. translators: %s Singular form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:141 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:193 -msgid "Edit %s" -msgstr "%s bewerken" - -#: includes/admin/views/acf-post-type/advanced-settings.php:126 -msgid "All Posts" -msgstr "Alle berichten" - -#: includes/admin/views/acf-post-type/advanced-settings.php:125 -#: includes/admin/views/acf-post-type/advanced-settings.php:220 -#: includes/admin/views/acf-post-type/advanced-settings.php:240 -msgid "In the post type submenu in the admin dashboard." -msgstr "In het sub menu van het berichttype in het beheerder dashboard." - -#: includes/admin/views/acf-post-type/advanced-settings.php:124 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:176 -msgid "All Items" -msgstr "Alle items" - -#. translators: %s Plural form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:121 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:173 -msgid "All %s" -msgstr "Alle %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:105 -msgid "Admin menu name for the post type." -msgstr "Beheerder menu naam voor het berichttype." - -#: includes/admin/views/acf-post-type/advanced-settings.php:104 -msgid "Menu Name" -msgstr "Menu naam" - -#: includes/admin/views/acf-post-type/advanced-settings.php:90 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:142 -msgid "Regenerate all labels using the Singular and Plural labels" -msgstr "" -"Alle labels opnieuw genereren met behulp van de labels voor enkelvoud en " -"meervoud" - -#: includes/admin/views/acf-post-type/advanced-settings.php:88 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:140 -msgid "Regenerate" -msgstr "Regenereren" - -#: includes/admin/views/acf-post-type/advanced-settings.php:79 -msgid "Active post types are enabled and registered with WordPress." -msgstr "Actieve berichttypes zijn ingeschakeld en geregistreerd bij WordPress." - -#: includes/admin/views/acf-post-type/advanced-settings.php:63 -msgid "A descriptive summary of the post type." -msgstr "Een beschrijvende samenvatting van het berichttype." - -#: includes/admin/views/acf-post-type/advanced-settings.php:48 -msgid "Add Custom" -msgstr "Aangepaste toevoegen" - -#: includes/admin/views/acf-post-type/advanced-settings.php:42 -msgid "Enable various features in the content editor." -msgstr "Verschillende functies in de inhoud editor inschakelen." - -#: includes/admin/views/acf-post-type/advanced-settings.php:31 -msgid "Post Formats" -msgstr "Berichtformaten" - -#: includes/admin/views/acf-post-type/advanced-settings.php:25 -msgid "Editor" -msgstr "Editor" - -#: includes/admin/views/acf-post-type/advanced-settings.php:24 -msgid "Trackbacks" -msgstr "Trackbacks" - -#: includes/admin/views/acf-post-type/basic-settings.php:87 -msgid "Select existing taxonomies to classify items of the post type." -msgstr "" -"Selecteer bestaande taxonomieën om items van het berichttype te " -"classificeren." - -#: includes/admin/views/acf-field-group/field.php:145 -msgid "Browse Fields" -msgstr "Bladeren door velden" - -#: includes/admin/tools/class-acf-admin-tool-import.php:292 -msgid "Nothing to import" -msgstr "Er is niets om te importeren" - -#: includes/admin/tools/class-acf-admin-tool-import.php:287 -msgid ". The Custom Post Type UI plugin can be deactivated." -msgstr ". De Custom Post Type UI plugin kan worden gedeactiveerd." - -#. translators: %d - number of items imported from CPTUI -#: includes/admin/tools/class-acf-admin-tool-import.php:278 -msgid "Imported %d item from Custom Post Type UI -" -msgid_plural "Imported %d items from Custom Post Type UI -" -msgstr[0] "%d item geïmporteerd uit Custom Post Type UI -" -msgstr[1] "%d items geïmporteerd uit Custom Post Type UI -" - -#: includes/admin/tools/class-acf-admin-tool-import.php:262 -msgid "Failed to import taxonomies." -msgstr "Kan taxonomieën niet importeren." - -#: includes/admin/tools/class-acf-admin-tool-import.php:244 -msgid "Failed to import post types." -msgstr "Kan berichttypen niet importeren." - -#: includes/admin/tools/class-acf-admin-tool-import.php:233 -msgid "Nothing from Custom Post Type UI plugin selected for import." -msgstr "Niets van extra berichttype UI plugin geselecteerd voor import." - -#: includes/admin/tools/class-acf-admin-tool-import.php:209 -msgid "Imported 1 item" -msgid_plural "Imported %s items" -msgstr[0] "1 item geïmporteerd" -msgstr[1] "%s items geïmporteerd" - -#: includes/admin/tools/class-acf-admin-tool-import.php:122 -msgid "" -"Importing a Post Type or Taxonomy with the same key as one that already " -"exists will overwrite the settings for the existing Post Type or Taxonomy " -"with those of the import." -msgstr "" -"Als je een berichttype of taxonomie importeert met dezelfde sleutel als een " -"reeds bestaand berichttype of taxonomie, worden de instellingen voor het " -"bestaande berichttype of de bestaande taxonomie overschreven met die van de " -"import." - -#: includes/admin/tools/class-acf-admin-tool-import.php:111 -#: includes/admin/tools/class-acf-admin-tool-import.php:127 -msgid "Import from Custom Post Type UI" -msgstr "Importeer vanuit Custom Post Type UI" - -#: includes/admin/tools/class-acf-admin-tool-export.php:412 -msgid "" -"The following code can be used to register a local version of the selected " -"items. Storing field groups, post types, or taxonomies locally can provide " -"many benefits such as faster load times, version control & dynamic fields/" -"settings. Simply copy and paste the following code to your theme's functions." -"php file or include it within an external file, then deactivate or delete " -"the items from the ACF admin." -msgstr "" -"De volgende code kan worden gebruikt om een lokale versie van de " -"geselecteerde items te registreren. Het lokaal opslaan van veldgroepen, " -"berichttypen of taxonomieën kan veel voordelen bieden, zoals snellere " -"laadtijden, versiebeheer en dynamische velden/instellingen. Kopieer en plak " -"de volgende code in het functions.php-bestand van je thema of neem het op in " -"een extern bestand, en deactiveer of verwijder vervolgens de items uit de " -"ACF beheer." - -#: includes/admin/tools/class-acf-admin-tool-export.php:411 -msgid "Export - Generate PHP" -msgstr "Exporteren - PHP genereren" - -#: includes/admin/tools/class-acf-admin-tool-export.php:384 -msgid "Export" -msgstr "Exporteren" - -#: includes/admin/tools/class-acf-admin-tool-export.php:276 -msgid "Select Taxonomies" -msgstr "Taxonomieën selecteren" - -#: includes/admin/tools/class-acf-admin-tool-export.php:254 -msgid "Select Post Types" -msgstr "Berichttypen selecteren" - -#: includes/admin/tools/class-acf-admin-tool-export.php:167 -msgid "Exported 1 item." -msgid_plural "Exported %s items." -msgstr[0] "1 item geëxporteerd." -msgstr[1] "%s items geëxporteerd." - -#: includes/admin/post-types/admin-taxonomy.php:129 -#: assets/build/js/acf-internal-post-type.js:182 -#: assets/build/js/acf-internal-post-type.js:256 -msgid "Category" -msgstr "Categorie" - -#: includes/admin/post-types/admin-taxonomy.php:127 -#: assets/build/js/acf-internal-post-type.js:179 -#: assets/build/js/acf-internal-post-type.js:253 -msgid "Tag" -msgstr "Tag" - -#. translators: %s taxonomy name -#: includes/admin/post-types/admin-taxonomy.php:82 -msgid "%s taxonomy created" -msgstr "%s taxonomie aangemaakt" - -#. translators: %s taxonomy name -#: includes/admin/post-types/admin-taxonomy.php:76 -msgid "%s taxonomy updated" -msgstr "%s taxonomie geüpdatet" - -#: includes/admin/post-types/admin-taxonomy.php:56 -msgid "Taxonomy draft updated." -msgstr "Taxonomie concept geüpdatet." - -#: includes/admin/post-types/admin-taxonomy.php:55 -msgid "Taxonomy scheduled for." -msgstr "Taxonomie ingepland voor." - -#: includes/admin/post-types/admin-taxonomy.php:54 -msgid "Taxonomy submitted." -msgstr "Taxonomie ingediend." - -#: includes/admin/post-types/admin-taxonomy.php:53 -msgid "Taxonomy saved." -msgstr "Taxonomie opgeslagen." - -#: includes/admin/post-types/admin-taxonomy.php:49 -msgid "Taxonomy deleted." -msgstr "Taxonomie verwijderd." - -#: includes/admin/post-types/admin-taxonomy.php:48 -msgid "Taxonomy updated." -msgstr "Taxonomie geüpdatet." - -#: includes/admin/post-types/admin-taxonomies.php:377 -#: includes/admin/post-types/admin-taxonomy.php:157 -msgid "" -"This taxonomy could not be registered because its key is in use by another " -"taxonomy registered by another plugin or theme." -msgstr "" -"Deze taxonomie kon niet worden geregistreerd omdat de sleutel ervan in " -"gebruik is door een andere taxonomie die door een andere plugin of thema is " -"geregistreerd." - -#. translators: %s number of taxonomies synchronized -#: includes/admin/post-types/admin-taxonomies.php:359 -msgid "Taxonomy synchronized." -msgid_plural "%s taxonomies synchronized." -msgstr[0] "Taxonomie gesynchroniseerd." -msgstr[1] "%s taxonomieën gesynchroniseerd." - -#. translators: %s number of taxonomies duplicated -#: includes/admin/post-types/admin-taxonomies.php:352 -msgid "Taxonomy duplicated." -msgid_plural "%s taxonomies duplicated." -msgstr[0] "Taxonomie gedupliceerd." -msgstr[1] "%s taxonomieën gedupliceerd." - -#. translators: %s number of taxonomies deactivated -#: includes/admin/post-types/admin-taxonomies.php:345 -msgid "Taxonomy deactivated." -msgid_plural "%s taxonomies deactivated." -msgstr[0] "Taxonomie gedeactiveerd." -msgstr[1] "%s taxonomieën gedeactiveerd." - -#. translators: %s number of taxonomies activated -#: includes/admin/post-types/admin-taxonomies.php:338 -msgid "Taxonomy activated." -msgid_plural "%s taxonomies activated." -msgstr[0] "Taxonomie geactiveerd." -msgstr[1] "%s taxonomieën geactiveerd." - -#: includes/admin/post-types/admin-taxonomies.php:139 -msgid "Terms" -msgstr "Termen" - -#. translators: %s number of post types synchronized -#: includes/admin/post-types/admin-post-types.php:352 -msgid "Post type synchronized." -msgid_plural "%s post types synchronized." -msgstr[0] "Berichttype gesynchroniseerd." -msgstr[1] "%s berichttypen gesynchroniseerd." - -#. translators: %s number of post types duplicated -#: includes/admin/post-types/admin-post-types.php:345 -msgid "Post type duplicated." -msgid_plural "%s post types duplicated." -msgstr[0] "Berichttype gedupliceerd." -msgstr[1] "%s berichttypen gedupliceerd." - -#. translators: %s number of post types deactivated -#: includes/admin/post-types/admin-post-types.php:338 -msgid "Post type deactivated." -msgid_plural "%s post types deactivated." -msgstr[0] "Berichttype gedeactiveerd." -msgstr[1] "%s berichttypen gedeactiveerd." - -#. translators: %s number of post types activated -#: includes/admin/post-types/admin-post-types.php:331 -msgid "Post type activated." -msgid_plural "%s post types activated." -msgstr[0] "Berichttype geactiveerd." -msgstr[1] "%s berichttypen geactiveerd." - -#: includes/admin/post-types/admin-post-types.php:112 -#: includes/admin/post-types/admin-taxonomies.php:137 -#: includes/admin/tools/class-acf-admin-tool-import.php:82 -#: includes/admin/views/acf-taxonomy/basic-settings.php:82 -#: includes/post-types/class-acf-post-type.php:91 -msgid "Post Types" -msgstr "Berichttypen" - -#: includes/admin/post-types/admin-post-type.php:162 -#: includes/admin/post-types/admin-taxonomy.php:164 -msgid "Advanced Settings" -msgstr "Geavanceerde instellingen" - -#: includes/admin/post-types/admin-post-type.php:161 -#: includes/admin/post-types/admin-taxonomy.php:163 -msgid "Basic Settings" -msgstr "Basisinstellingen" - -#: includes/admin/post-types/admin-post-type.php:155 -#: includes/admin/post-types/admin-post-types.php:370 -msgid "" -"This post type could not be registered because its key is in use by another " -"post type registered by another plugin or theme." -msgstr "" -"Dit berichttype kon niet worden geregistreerd omdat de sleutel ervan in " -"gebruik is door een ander berichttype dat door een andere plugin of een " -"ander thema is geregistreerd." - -#: includes/admin/post-types/admin-post-type.php:128 -#: assets/build/js/acf-internal-post-type.js:176 -#: assets/build/js/acf-internal-post-type.js:250 -msgid "Pages" -msgstr "Pagina's" - -#: includes/admin/admin-internal-post-type.php:355 -msgid "Link Existing Field Groups" -msgstr "Link bestaande veld groepen" - -#. translators: %s post type name -#: includes/admin/post-types/admin-post-type.php:80 -msgid "%s post type created" -msgstr "%s berichttype aangemaakt" - -#. translators: %s taxonomy name -#: includes/admin/post-types/admin-taxonomy.php:78 -msgid "Add fields to %s" -msgstr "Velden toevoegen aan %s" - -#. translators: %s post type name -#: includes/admin/post-types/admin-post-type.php:76 -msgid "%s post type updated" -msgstr "%s berichttype geüpdatet" - -#: includes/admin/post-types/admin-post-type.php:56 -msgid "Post type draft updated." -msgstr "Berichttype concept geüpdatet." - -#: includes/admin/post-types/admin-post-type.php:55 -msgid "Post type scheduled for." -msgstr "Berichttype ingepland voor." - -#: includes/admin/post-types/admin-post-type.php:54 -msgid "Post type submitted." -msgstr "Berichttype ingediend." - -#: includes/admin/post-types/admin-post-type.php:53 -msgid "Post type saved." -msgstr "Berichttype opgeslagen." - -#: includes/admin/post-types/admin-post-type.php:50 -msgid "Post type updated." -msgstr "Berichttype geüpdatet." - -#: includes/admin/post-types/admin-post-type.php:49 -msgid "Post type deleted." -msgstr "Berichttype verwijderd." - -#: includes/admin/post-types/admin-field-group.php:120 -#: assets/build/js/acf-field-group.js:1146 -#: assets/build/js/acf-field-group.js:1366 -msgid "Type to search..." -msgstr "Typ om te zoeken..." - -#: includes/admin/post-types/admin-field-group.php:105 -#: assets/build/js/acf-field-group.js:1172 -#: assets/build/js/acf-field-group.js:2319 -#: assets/build/js/acf-field-group.js:1414 -#: assets/build/js/acf-field-group.js:2727 -msgid "PRO Only" -msgstr "Alleen in PRO" - -#: includes/admin/post-types/admin-field-group.php:97 -#: assets/build/js/acf-internal-post-type.js:308 -#: assets/build/js/acf-internal-post-type.js:417 -msgid "Field groups linked successfully." -msgstr "Veldgroepen succesvol gelinkt." - -#. translators: %s - URL to ACF tools page. -#: includes/admin/admin.php:195 -msgid "" -"Import Post Types and Taxonomies registered with Custom Post Type UI and " -"manage them with ACF. Get Started." -msgstr "" -"Importeer berichttypen en taxonomieën die zijn geregistreerd met extra " -"berichttype UI en beheerder ze met ACF. Aan de slag." - -#: includes/admin/admin.php:48 includes/admin/admin.php:267 -msgid "ACF" -msgstr "ACF" - -#: includes/admin/admin-internal-post-type.php:322 -msgid "taxonomy" -msgstr "taxonomie" - -#: includes/admin/admin-internal-post-type.php:322 -msgid "post type" -msgstr "berichttype" - -#: includes/admin/admin-internal-post-type.php:346 -msgid "Done" -msgstr "Klaar" - -#: includes/admin/admin-internal-post-type.php:332 -msgid "Field Group(s)" -msgstr "Veld groep(en)" - -#: includes/admin/admin-internal-post-type.php:331 -msgid "Select one or many field groups..." -msgstr "Selecteer één of meerdere veldgroepen..." - -#: includes/admin/admin-internal-post-type.php:330 -msgid "Please select the field groups to link." -msgstr "Selecteer de veldgroepen om te linken." - -#: includes/admin/admin-internal-post-type.php:288 -msgid "Field group linked successfully." -msgid_plural "Field groups linked successfully." -msgstr[0] "Veldgroep succesvol gelinkt." -msgstr[1] "Veldgroepen succesvol gelinkt." - -#: includes/admin/admin-internal-post-type-list.php:261 -#: includes/admin/post-types/admin-post-types.php:371 -#: includes/admin/post-types/admin-taxonomies.php:378 -msgctxt "post status" -msgid "Registration Failed" -msgstr "Registratie mislukt" - -#: includes/admin/admin-internal-post-type-list.php:260 -msgid "" -"This item could not be registered because its key is in use by another item " -"registered by another plugin or theme." -msgstr "" -"Dit item kon niet worden geregistreerd omdat zijn sleutel in gebruik is door " -"een ander item geregistreerd door een andere plugin of thema." - -#: includes/acf-internal-post-type-functions.php:482 -#: includes/acf-internal-post-type-functions.php:511 -msgid "REST API" -msgstr "REST API" - -#: includes/acf-internal-post-type-functions.php:481 -#: includes/acf-internal-post-type-functions.php:510 -#: includes/acf-internal-post-type-functions.php:537 -msgid "Permissions" -msgstr "Rechten" - -#: includes/acf-internal-post-type-functions.php:480 -#: includes/acf-internal-post-type-functions.php:509 -msgid "URLs" -msgstr "URL's" - -#: includes/acf-internal-post-type-functions.php:479 -#: includes/acf-internal-post-type-functions.php:508 -#: includes/acf-internal-post-type-functions.php:535 -msgid "Visibility" -msgstr "Zichtbaarheid" - -#: includes/acf-internal-post-type-functions.php:478 -#: includes/acf-internal-post-type-functions.php:507 -#: includes/acf-internal-post-type-functions.php:536 -msgid "Labels" -msgstr "Labels" - -#: includes/admin/post-types/admin-field-group.php:269 -msgid "Field Settings Tabs" -msgstr "Tabs voor veldinstellingen" - -#. Author URI of the plugin -msgid "" -"https://wpengine.com/?utm_source=wordpress." -"org&utm_medium=referral&utm_campaign=plugin_directory&utm_content=advanced_custom_fields" -msgstr "" -"https://wpengine.com/?utm_source=wordpress." -"org&utm_medium=referral&utm_campaign=plugin_directory&utm_content=advanced_custom_fields" - -#: includes/api/api-template.php:867 -msgid "[ACF shortcode value disabled for preview]" -msgstr "[ACF shortcode waarde uitgeschakeld voor voorbeeld]" - -#: includes/admin/admin-internal-post-type.php:298 -#: includes/admin/post-types/admin-field-group.php:571 -msgid "Close Modal" -msgstr "Modal sluiten" - -#: includes/admin/post-types/admin-field-group.php:96 -#: assets/build/js/acf-field-group.js:1670 -#: assets/build/js/acf-field-group.js:1993 -msgid "Field moved to other group" -msgstr "Veld verplaatst naar andere groep" - -#: includes/admin/post-types/admin-field-group.php:95 -#: assets/build/js/acf.js:1437 assets/build/js/acf.js:1517 -msgid "Close modal" -msgstr "Modal sluiten" - -#: includes/fields/class-acf-field-tab.php:125 -msgid "Start a new group of tabs at this tab." -msgstr "Begin een nieuwe groep van tabs bij dit tab." - -#: includes/fields/class-acf-field-tab.php:124 -msgid "New Tab Group" -msgstr "Nieuwe tabgroep" - -#: includes/fields/class-acf-field-select.php:451 -#: includes/fields/class-acf-field-true_false.php:200 -msgid "Use a stylized checkbox using select2" -msgstr "Een gestileerde checkbox gebruiken met select2" - -#: includes/fields/class-acf-field-radio.php:260 -msgid "Save Other Choice" -msgstr "Andere keuze opslaan" - -#: includes/fields/class-acf-field-radio.php:249 -msgid "Allow Other Choice" -msgstr "Andere keuze toestaan" - -#: includes/fields/class-acf-field-checkbox.php:450 -msgid "Add Toggle All" -msgstr "Toevoegen toggle alle" - -#: includes/fields/class-acf-field-checkbox.php:409 -msgid "Save Custom Values" -msgstr "Aangepaste waarden opslaan" - -#: includes/fields/class-acf-field-checkbox.php:398 -msgid "Allow Custom Values" -msgstr "Aangepaste waarden toestaan" - -#: includes/fields/class-acf-field-checkbox.php:148 -msgid "Checkbox custom values cannot be empty. Uncheck any empty values." -msgstr "" -"Aangepaste waarden van het selectievakje mogen niet leeg zijn. Vink lege " -"waarden uit." - -#: includes/admin/views/global/navigation.php:248 -msgid "Updates" -msgstr "Updates" - -#: includes/admin/views/global/navigation.php:176 -msgid "Advanced Custom Fields logo" -msgstr "Advanced Custom Fields logo" - -#: includes/admin/views/global/form-top.php:89 -msgid "Save Changes" -msgstr "Wijzigingen opslaan" - -#: includes/admin/views/global/form-top.php:76 -msgid "Field Group Title" -msgstr "Veldgroep titel" - -#: includes/admin/views/acf-post-type/advanced-settings.php:704 -#: includes/admin/views/global/form-top.php:3 -msgid "Add title" -msgstr "Titel toevoegen" - -#. translators: %s url to getting started guide -#: includes/admin/views/acf-field-group/list-empty.php:20 -#: includes/admin/views/acf-post-type/list-empty.php:12 -#: includes/admin/views/acf-taxonomy/list-empty.php:12 -#: includes/admin/views/options-page-preview.php:13 -msgid "" -"New to ACF? Take a look at our getting " -"started guide." -msgstr "" -"Ben je nieuw bij ACF? Bekijk onze startersgids." - -#: includes/admin/views/acf-field-group/list-empty.php:15 -msgid "Add Field Group" -msgstr "Veldgroep toevoegen" - -#. translators: %s url to creating a field group page -#: includes/admin/views/acf-field-group/list-empty.php:10 -msgid "" -"ACF uses field groups to group custom " -"fields together, and then attach those fields to edit screens." -msgstr "" -"ACF gebruikt veldgroepen om aangepaste " -"velden te groeperen, en die velden vervolgens te koppelen aan " -"bewerkingsschermen." - -#: includes/admin/views/acf-field-group/list-empty.php:5 -msgid "Add Your First Field Group" -msgstr "Voeg je eerste veldgroep toe" - -#: includes/admin/admin-options-pages-preview.php:28 -#: includes/admin/views/acf-field-group/pro-features.php:54 -#: includes/admin/views/global/navigation.php:86 -#: includes/admin/views/global/navigation.php:250 -msgid "Options Pages" -msgstr "Opties pagina's" - -#: includes/admin/views/acf-field-group/pro-features.php:50 -msgid "ACF Blocks" -msgstr "ACF blokken" - -#: includes/admin/views/acf-field-group/pro-features.php:58 -msgid "Gallery Field" -msgstr "Galerij veld" - -#: includes/admin/views/acf-field-group/pro-features.php:38 -msgid "Flexible Content Field" -msgstr "Flexibel inhoudsveld" - -#: includes/admin/views/acf-field-group/pro-features.php:42 -msgid "Repeater Field" -msgstr "Herhaler veld" - -#: includes/admin/views/global/navigation.php:212 -msgid "Unlock Extra Features with ACF PRO" -msgstr "Ontgrendel extra functies met ACF PRO" - -#: includes/admin/views/acf-field-group/options.php:267 -msgid "Delete Field Group" -msgstr "Veldgroep verwijderen" - -#. translators: 1: Post creation date 2: Post creation time -#: includes/admin/views/acf-field-group/options.php:261 -msgid "Created on %1$s at %2$s" -msgstr "Gemaakt op %1$s om %2$s" - -#: includes/acf-field-group-functions.php:497 -msgid "Group Settings" -msgstr "Groepsinstellingen" - -#: includes/acf-field-group-functions.php:495 -msgid "Location Rules" -msgstr "Locatieregels" - -#. translators: %s url to field types list -#: includes/admin/views/acf-field-group/fields.php:72 -msgid "" -"Choose from over 30 field types. Learn " -"more." -msgstr "" -"Kies uit meer dan 30 veldtypes. Meer " -"informatie." - -#: includes/admin/views/acf-field-group/fields.php:65 -msgid "" -"Get started creating new custom fields for your posts, pages, custom post " -"types and other WordPress content." -msgstr "" -"Ga aan de slag met het maken van nieuwe aangepaste velden voor je berichten, " -"pagina's, aangepaste berichttypes en andere WordPress inhoud." - -#: includes/admin/views/acf-field-group/fields.php:64 -msgid "Add Your First Field" -msgstr "Voeg je eerste veld toe" - -#. translators: A symbol (or text, if not available in your locale) meaning -#. "Order Number", in terms of positional placement. -#: includes/admin/views/acf-field-group/fields.php:43 -msgid "#" -msgstr "#" - -#: includes/admin/views/acf-field-group/fields.php:33 -#: includes/admin/views/acf-field-group/fields.php:67 -#: includes/admin/views/acf-field-group/fields.php:103 -#: includes/admin/views/global/form-top.php:85 -msgid "Add Field" -msgstr "Veld toevoegen" - -#: includes/acf-field-group-functions.php:496 includes/fields.php:410 -msgid "Presentation" -msgstr "Presentatie" - -#: includes/fields.php:409 -msgid "Validation" -msgstr "Validatie" - -#: includes/acf-internal-post-type-functions.php:477 -#: includes/acf-internal-post-type-functions.php:506 includes/fields.php:408 -msgid "General" -msgstr "Algemeen" - -#: includes/admin/tools/class-acf-admin-tool-import.php:70 -msgid "Import JSON" -msgstr "JSON importeren" - -#: includes/admin/tools/class-acf-admin-tool-export.php:392 -msgid "Export As JSON" -msgstr "Als JSON exporteren" - -#. translators: %s number of field groups deactivated -#: includes/admin/post-types/admin-field-groups.php:367 -msgid "Field group deactivated." -msgid_plural "%s field groups deactivated." -msgstr[0] "Veldgroep gedeactiveerd." -msgstr[1] "%s veldgroepen gedeactiveerd." - -#. translators: %s number of field groups activated -#: includes/admin/post-types/admin-field-groups.php:360 -msgid "Field group activated." -msgid_plural "%s field groups activated." -msgstr[0] "Veldgroep geactiveerd." -msgstr[1] "%s veldgroepen geactiveerd." - -#: includes/admin/admin-internal-post-type-list.php:452 -#: includes/admin/admin-internal-post-type-list.php:478 -msgid "Deactivate" -msgstr "Deactiveren" - -#: includes/admin/admin-internal-post-type-list.php:452 -msgid "Deactivate this item" -msgstr "Deactiveer dit item" - -#: includes/admin/admin-internal-post-type-list.php:448 -#: includes/admin/admin-internal-post-type-list.php:477 -msgid "Activate" -msgstr "Activeren" - -#: includes/admin/admin-internal-post-type-list.php:448 -msgid "Activate this item" -msgstr "Activeer dit item" - -#: includes/admin/post-types/admin-field-group.php:92 -#: assets/build/js/acf-field-group.js:2812 -#: assets/build/js/acf-field-group.js:3313 -msgid "Move field group to trash?" -msgstr "Veldgroep naar prullenbak verplaatsen?" - -#: acf.php:497 includes/admin/admin-internal-post-type-list.php:248 -#: includes/admin/post-types/admin-field-group.php:297 -#: includes/admin/post-types/admin-post-type.php:295 -#: includes/admin/post-types/admin-taxonomy.php:297 -msgctxt "post status" -msgid "Inactive" -msgstr "Inactief" - -#. Author of the plugin -msgid "WP Engine" -msgstr "WP Engine" - -#: acf.php:555 -msgid "" -"Advanced Custom Fields and Advanced Custom Fields PRO should not be active " -"at the same time. We've automatically deactivated Advanced Custom Fields PRO." -msgstr "" -"Advanced Custom Fields en Advanced Custom Fields PRO kunnen niet " -"tegelijkertijd actief zijn. We hebben Advanced Custom Fields PRO automatisch " -"gedeactiveerd." - -#: acf.php:553 -msgid "" -"Advanced Custom Fields and Advanced Custom Fields PRO should not be active " -"at the same time. We've automatically deactivated Advanced Custom Fields." -msgstr "" -"Advanced Custom Fields en Advanced Custom Fields PRO kunnen niet " -"tegelijkertijd actief zijn. We hebben Advanced Custom Fields automatisch " -"gedeactiveerd." - -#: includes/acf-value-functions.php:374 -msgid "" -"%1$s - We've detected one or more calls to retrieve ACF " -"field values before ACF has been initialized. This is not supported and can " -"result in malformed or missing data. Learn how to fix this." -msgstr "" -"%1$s - We hebben een of meer aanroepen gedetecteerd om ACF " -"veldwaarden op te halen voordat ACF is geïnitialiseerd. Dit wordt niet " -"ondersteund en kan leiden tot verkeerd ingedeelde of ontbrekende gegevens. " -"Meer informatie over hoe je dit kunt " -"oplossen.." - -#: includes/fields/class-acf-field-user.php:551 -msgid "%1$s must have a user with the %2$s role." -msgid_plural "%1$s must have a user with one of the following roles: %2$s" -msgstr[0] "%1$s moet een gebruiker hebben met de rol %2$s." -msgstr[1] "%1$s moet een gebruiker hebben met een van de volgende rollen %2$s" - -#: includes/fields/class-acf-field-user.php:542 -msgid "%1$s must have a valid user ID." -msgstr "%1$s moet een geldig gebruikers ID hebben." - -#: includes/fields/class-acf-field-user.php:380 -msgid "Invalid request." -msgstr "Ongeldige aanvraag." - -#: includes/fields/class-acf-field-select.php:684 -msgid "%1$s is not one of %2$s" -msgstr "%1$s is niet een van %2$s" - -#: includes/fields/class-acf-field-post_object.php:700 -msgid "%1$s must have term %2$s." -msgid_plural "%1$s must have one of the following terms: %2$s" -msgstr[0] "%1$s moet term %2$s hebben." -msgstr[1] "%1$s moet een van de volgende termen hebben %2$s" - -#: includes/fields/class-acf-field-post_object.php:684 -msgid "%1$s must be of post type %2$s." -msgid_plural "%1$s must be of one of the following post types: %2$s" -msgstr[0] "%1$s moet van het berichttype %2$s zijn." -msgstr[1] "%1$s moet van een van de volgende berichttypes zijn %2$s" - -#: includes/fields/class-acf-field-post_object.php:675 -msgid "%1$s must have a valid post ID." -msgstr "%1$s moet een geldig bericht ID hebben." - -#: includes/fields/class-acf-field-file.php:475 -msgid "%s requires a valid attachment ID." -msgstr "%s vereist een geldig bijlage ID." - -#: includes/admin/views/acf-field-group/options.php:233 -msgid "Show in REST API" -msgstr "Toon in REST API" - -#: includes/fields/class-acf-field-color_picker.php:168 -msgid "Enable Transparency" -msgstr "Transparantie inschakelen" - -#: includes/fields/class-acf-field-color_picker.php:187 -msgid "RGBA Array" -msgstr "RGBA array" - -#: includes/fields/class-acf-field-color_picker.php:98 -msgid "RGBA String" -msgstr "RGBA string" - -#: includes/fields/class-acf-field-color_picker.php:97 -#: includes/fields/class-acf-field-color_picker.php:186 -msgid "Hex String" -msgstr "Hex string" - -#: includes/admin/views/browse-fields-modal.php:65 -msgid "Upgrade to PRO" -msgstr "Upgrade naar PRO" - -#: includes/admin/post-types/admin-field-group.php:297 -#: includes/admin/post-types/admin-post-type.php:295 -#: includes/admin/post-types/admin-taxonomy.php:297 -msgctxt "post status" -msgid "Active" -msgstr "Actief" - -#: includes/fields/class-acf-field-email.php:181 -msgid "'%s' is not a valid email address" -msgstr "'%s' is geen geldig e-mailadres" - -#: includes/fields/class-acf-field-color_picker.php:76 -msgid "Color value" -msgstr "Kleurwaarde" - -#: includes/fields/class-acf-field-color_picker.php:74 -msgid "Select default color" -msgstr "Selecteer standaardkleur" - -#: includes/fields/class-acf-field-color_picker.php:72 -msgid "Clear color" -msgstr "Kleur wissen" - -#: includes/acf-wp-functions.php:90 -msgid "Blocks" -msgstr "Blokken" - -#: includes/acf-wp-functions.php:86 -msgid "Options" -msgstr "Opties" - -#: includes/acf-wp-functions.php:82 -msgid "Users" -msgstr "Gebruikers" - -#: includes/acf-wp-functions.php:78 -msgid "Menu items" -msgstr "Menu-items" - -#: includes/acf-wp-functions.php:70 -msgid "Widgets" -msgstr "Widgets" - -#: includes/acf-wp-functions.php:62 -msgid "Attachments" -msgstr "Bijlagen" - -#: includes/acf-wp-functions.php:57 -#: includes/admin/post-types/admin-post-types.php:137 -#: includes/admin/post-types/admin-taxonomies.php:112 -#: includes/admin/tools/class-acf-admin-tool-import.php:93 -#: includes/admin/views/acf-post-type/basic-settings.php:86 -#: includes/post-types/class-acf-taxonomy.php:90 -#: includes/post-types/class-acf-taxonomy.php:91 -msgid "Taxonomies" -msgstr "Taxonomieën" - -#: includes/acf-wp-functions.php:44 -#: includes/admin/post-types/admin-post-type.php:126 -#: includes/admin/post-types/admin-post-types.php:139 -#: includes/admin/views/acf-post-type/advanced-settings.php:106 -#: assets/build/js/acf-internal-post-type.js:173 -#: assets/build/js/acf-internal-post-type.js:247 -msgid "Posts" -msgstr "Berichten" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:76 -msgid "Last updated: %s" -msgstr "Laatst geüpdatet: %s" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:70 -msgid "Sorry, this post is unavailable for diff comparison." -msgstr "Dit bericht is niet beschikbaar voor verschil vergelijking." - -#: includes/ajax/class-acf-ajax-local-json-diff.php:42 -msgid "Invalid field group parameter(s)." -msgstr "Ongeldige veldgroep parameter(s)." - -#: includes/admin/admin-internal-post-type-list.php:413 -msgid "Awaiting save" -msgstr "In afwachting van opslaan" - -#: includes/admin/admin-internal-post-type-list.php:410 -msgid "Saved" -msgstr "Opgeslagen" - -#: includes/admin/admin-internal-post-type-list.php:406 -#: includes/admin/tools/class-acf-admin-tool-import.php:49 -msgid "Import" -msgstr "Importeren" - -#: includes/admin/admin-internal-post-type-list.php:402 -msgid "Review changes" -msgstr "Beoordeel wijzigingen" - -#: includes/admin/admin-internal-post-type-list.php:378 -msgid "Located in: %s" -msgstr "Bevindt zich in: %s" - -#: includes/admin/admin-internal-post-type-list.php:375 -msgid "Located in plugin: %s" -msgstr "Bevindt zich in plugin: %s" - -#: includes/admin/admin-internal-post-type-list.php:372 -msgid "Located in theme: %s" -msgstr "Bevindt zich in thema: %s" - -#: includes/admin/post-types/admin-field-groups.php:261 -msgid "Various" -msgstr "Diverse" - -#: includes/admin/admin-internal-post-type-list.php:216 -#: includes/admin/admin-internal-post-type-list.php:485 -msgid "Sync changes" -msgstr "Synchroniseer wijzigingen" - -#: includes/admin/admin-internal-post-type-list.php:215 -msgid "Loading diff" -msgstr "Diff laden" - -#: includes/admin/admin-internal-post-type-list.php:214 -msgid "Review local JSON changes" -msgstr "Lokale JSON wijzigingen beoordelen" - -#: includes/admin/admin.php:170 -msgid "Visit website" -msgstr "Bezoek site" - -#: includes/admin/admin.php:169 -msgid "View details" -msgstr "Details bekijken" - -#: includes/admin/admin.php:168 -msgid "Version %s" -msgstr "Versie %s" - -#: includes/admin/admin.php:167 -msgid "Information" -msgstr "Informatie" - -#: includes/admin/admin.php:158 -msgid "" -"Help Desk. The support professionals on " -"our Help Desk will assist with your more in depth, technical challenges." -msgstr "" -"Helpdesk. De ondersteuning " -"professionals op onze helpdesk zullen je helpen met meer diepgaande, " -"technische uitdagingen." - -#: includes/admin/admin.php:154 -msgid "" -"Discussions. We have an active and " -"friendly community on our Community Forums who may be able to help you " -"figure out the 'how-tos' of the ACF world." -msgstr "" -"Discussies. We hebben een actieve en " -"vriendelijke community op onze community forums die je misschien kunnen " -"helpen met de 'how-tos' van de ACF wereld." - -#: includes/admin/admin.php:150 -msgid "" -"Documentation. Our extensive " -"documentation contains references and guides for most situations you may " -"encounter." -msgstr "" -"Documentatie. Onze uitgebreide " -"documentatie bevat referenties en handleidingen voor de meeste situaties die " -"je kunt tegenkomen." - -#: includes/admin/admin.php:147 -msgid "" -"We are fanatical about support, and want you to get the best out of your " -"website with ACF. If you run into any difficulties, there are several places " -"you can find help:" -msgstr "" -"Wij zijn fanatiek in ondersteuning en willen dat je met ACF het beste uit je " -"site haalt. Als je problemen ondervindt, zijn er verschillende plaatsen waar " -"je hulp kan vinden:" - -#: includes/admin/admin.php:144 includes/admin/admin.php:146 -msgid "Help & Support" -msgstr "Hulp & ondersteuning" - -#: includes/admin/admin.php:135 -msgid "" -"Please use the Help & Support tab to get in touch should you find yourself " -"requiring assistance." -msgstr "" -"Gebruik de tab Hulp & ondersteuning om contact op te nemen als je hulp nodig " -"hebt." - -#: includes/admin/admin.php:132 -msgid "" -"Before creating your first Field Group, we recommend first reading our Getting started guide to familiarize " -"yourself with the plugin's philosophy and best practises." -msgstr "" -"Voordat je je eerste veldgroep maakt, raden we je aan om eerst onze Aan de slag gids te lezen om je vertrouwd te " -"maken met de filosofie en best practices van de plugin." - -#: includes/admin/admin.php:130 -msgid "" -"The Advanced Custom Fields plugin provides a visual form builder to " -"customize WordPress edit screens with extra fields, and an intuitive API to " -"display custom field values in any theme template file." -msgstr "" -"De Advanced Custom Fields plugin biedt een visuele formulierbouwer om " -"WordPress bewerkingsschermen aan te passen met extra velden, en een " -"intuïtieve API om aangepaste veldwaarden weer te geven in elk thema template " -"bestand." - -#: includes/admin/admin.php:127 includes/admin/admin.php:129 -msgid "Overview" -msgstr "Overzicht" - -#: includes/locations.php:36 -msgid "Location type \"%s\" is already registered." -msgstr "Locatietype \"%s\" is al geregistreerd." - -#: includes/locations.php:25 -msgid "Class \"%s\" does not exist." -msgstr "Klasse \"%s\" bestaat niet." - -#: includes/ajax/class-acf-ajax.php:157 -msgid "Invalid nonce." -msgstr "Ongeldige nonce." - -#: includes/fields/class-acf-field-user.php:375 -msgid "Error loading field." -msgstr "Fout tijdens laden van veld." - -#: assets/build/js/acf-input.js:2750 assets/build/js/acf-input.js:2819 -#: assets/build/js/acf-input.js:2926 assets/build/js/acf-input.js:3000 -msgid "Location not found: %s" -msgstr "Locatie niet gevonden: %s" - -#: includes/forms/form-user.php:353 -msgid "Error: %s" -msgstr "Fout: %s" - -#: includes/locations/class-acf-location-widget.php:22 -msgid "Widget" -msgstr "Widget" - -#: includes/locations/class-acf-location-user-role.php:24 -msgid "User Role" -msgstr "Gebruikersrol" - -#: includes/locations/class-acf-location-comment.php:22 -msgid "Comment" -msgstr "Reactie" - -#: includes/locations/class-acf-location-post-format.php:22 -msgid "Post Format" -msgstr "Berichtformat" - -#: includes/locations/class-acf-location-nav-menu-item.php:22 -msgid "Menu Item" -msgstr "Menu-item" - -#: includes/locations/class-acf-location-post-status.php:22 -msgid "Post Status" -msgstr "Berichtstatus" - -#: includes/acf-wp-functions.php:74 -#: includes/locations/class-acf-location-nav-menu.php:89 -msgid "Menus" -msgstr "Menu's" - -#: includes/locations/class-acf-location-nav-menu.php:80 -msgid "Menu Locations" -msgstr "Menulocaties" - -#: includes/locations/class-acf-location-nav-menu.php:22 -msgid "Menu" -msgstr "Menu" - -#: includes/locations/class-acf-location-post-taxonomy.php:22 -msgid "Post Taxonomy" -msgstr "Bericht taxonomie" - -#: includes/locations/class-acf-location-page-type.php:114 -msgid "Child Page (has parent)" -msgstr "Subpagina (heeft hoofdpagina)" - -#: includes/locations/class-acf-location-page-type.php:113 -msgid "Parent Page (has children)" -msgstr "Hoofdpagina (heeft subpagina's)" - -#: includes/locations/class-acf-location-page-type.php:112 -msgid "Top Level Page (no parent)" -msgstr "Pagina op hoogste niveau (geen hoofdpagina)" - -#: includes/locations/class-acf-location-page-type.php:111 -msgid "Posts Page" -msgstr "Berichtenpagina" - -#: includes/locations/class-acf-location-page-type.php:110 -msgid "Front Page" -msgstr "Voorpagina" - -#: includes/locations/class-acf-location-page-type.php:22 -msgid "Page Type" -msgstr "Paginatype" - -#: includes/locations/class-acf-location-current-user.php:73 -msgid "Viewing back end" -msgstr "Back-end aan het bekijken" - -#: includes/locations/class-acf-location-current-user.php:72 -msgid "Viewing front end" -msgstr "Front-end aan het bekijken" - -#: includes/locations/class-acf-location-current-user.php:71 -msgid "Logged in" -msgstr "Ingelogd" - -#: includes/locations/class-acf-location-current-user.php:22 -msgid "Current User" -msgstr "Huidige gebruiker" - -#: includes/locations/class-acf-location-page-template.php:22 -msgid "Page Template" -msgstr "Paginatemplate" - -#: includes/locations/class-acf-location-user-form.php:74 -msgid "Register" -msgstr "Registreren" - -#: includes/locations/class-acf-location-user-form.php:73 -msgid "Add / Edit" -msgstr "Toevoegen / bewerken" - -#: includes/locations/class-acf-location-user-form.php:22 -msgid "User Form" -msgstr "Gebruikersformulier" - -#: includes/locations/class-acf-location-page-parent.php:22 -msgid "Page Parent" -msgstr "Hoofdpagina" - -#: includes/locations/class-acf-location-current-user-role.php:77 -msgid "Super Admin" -msgstr "Superbeheerder" - -#: includes/locations/class-acf-location-current-user-role.php:22 -msgid "Current User Role" -msgstr "Huidige gebruikersrol" - -#: includes/locations/class-acf-location-page-template.php:73 -#: includes/locations/class-acf-location-post-template.php:85 -msgid "Default Template" -msgstr "Standaard template" - -#: includes/locations/class-acf-location-post-template.php:22 -msgid "Post Template" -msgstr "Bericht template" - -#: includes/locations/class-acf-location-post-category.php:22 -msgid "Post Category" -msgstr "Berichtcategorie" - -#: includes/locations/class-acf-location-attachment.php:84 -msgid "All %s formats" -msgstr "Alle %s formats" - -#: includes/locations/class-acf-location-attachment.php:22 -msgid "Attachment" -msgstr "Bijlage" - -#: includes/validation.php:366 -msgid "%s value is required" -msgstr "%s waarde is verplicht" - -#: includes/admin/views/acf-field-group/conditional-logic.php:59 -msgid "Show this field if" -msgstr "Toon dit veld als" - -#: includes/admin/views/acf-field-group/conditional-logic.php:26 -#: includes/admin/views/acf-field-group/field.php:109 includes/fields.php:411 -msgid "Conditional Logic" -msgstr "Voorwaardelijke logica" - -#: includes/admin/views/acf-field-group/conditional-logic.php:156 -#: includes/admin/views/acf-field-group/location-rule.php:92 -msgid "and" -msgstr "en" - -#: includes/admin/post-types/admin-field-groups.php:123 -#: includes/admin/post-types/admin-post-types.php:143 -#: includes/admin/post-types/admin-taxonomies.php:143 -msgid "Local JSON" -msgstr "Lokale JSON" - -#: includes/admin/views/acf-field-group/pro-features.php:46 -msgid "Clone Field" -msgstr "Veld klonen" - -#: includes/admin/views/upgrade/notice.php:30 -msgid "" -"Please also check all premium add-ons (%s) are updated to the latest version." -msgstr "" -"Controleer ook of alle premium addons (%s) zijn geüpdatet naar de nieuwste " -"versie." - -#: includes/admin/views/upgrade/notice.php:28 -msgid "" -"This version contains improvements to your database and requires an upgrade." -msgstr "" -"Deze versie bevat verbeteringen voor je database en vereist een upgrade." - -#: includes/admin/views/upgrade/notice.php:28 -msgid "Thank you for updating to %1$s v%2$s!" -msgstr "Bedankt voor het updaten naar %1$s v%2$s!" - -#: includes/admin/views/upgrade/notice.php:27 -msgid "Database Upgrade Required" -msgstr "Database-upgrade vereist" - -#: includes/admin/post-types/admin-field-group.php:141 -#: includes/admin/views/upgrade/notice.php:18 -msgid "Options Page" -msgstr "Opties pagina" - -#: includes/admin/views/upgrade/notice.php:15 includes/fields.php:462 -msgid "Gallery" -msgstr "Galerij" - -#: includes/admin/views/upgrade/notice.php:12 includes/fields.php:452 -msgid "Flexible Content" -msgstr "Flexibele inhoud" - -#: includes/admin/views/upgrade/notice.php:9 includes/fields.php:472 -msgid "Repeater" -msgstr "Herhaler" - -#: includes/admin/views/tools/tools.php:24 -msgid "Back to all tools" -msgstr "Terug naar alle gereedschappen" - -#: includes/admin/views/acf-field-group/options.php:195 -msgid "" -"If multiple field groups appear on an edit screen, the first field group's " -"options will be used (the one with the lowest order number)" -msgstr "" -"Als er meerdere veldgroepen op een bewerkingsscherm verschijnen, dan worden " -"de opties van de eerste veldgroep gebruikt (degene met het laagste volgorde " -"nummer)" - -#: includes/admin/views/acf-field-group/options.php:195 -msgid "Select items to hide them from the edit screen." -msgstr "" -"Selecteer items om ze te verbergen in het bewerkingsscherm." - -#: includes/admin/views/acf-field-group/options.php:194 -msgid "Hide on screen" -msgstr "Verberg op scherm" - -#: includes/admin/views/acf-field-group/options.php:186 -msgid "Send Trackbacks" -msgstr "Trackbacks verzenden" - -#: includes/admin/post-types/admin-taxonomy.php:128 -#: includes/admin/views/acf-field-group/options.php:185 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:159 -#: assets/build/js/acf-internal-post-type.js:180 -#: assets/build/js/acf-internal-post-type.js:254 -msgid "Tags" -msgstr "Tags" - -#: includes/admin/post-types/admin-taxonomy.php:130 -#: includes/admin/views/acf-field-group/options.php:184 -#: assets/build/js/acf-internal-post-type.js:183 -#: assets/build/js/acf-internal-post-type.js:257 -msgid "Categories" -msgstr "Categorieën" - -#: includes/admin/views/acf-field-group/options.php:182 -#: includes/admin/views/acf-post-type/advanced-settings.php:28 -msgid "Page Attributes" -msgstr "Pagina attributen" - -#: includes/admin/views/acf-field-group/options.php:181 -msgid "Format" -msgstr "Format" - -#: includes/admin/views/acf-field-group/options.php:180 -#: includes/admin/views/acf-post-type/advanced-settings.php:22 -msgid "Author" -msgstr "Auteur" - -#: includes/admin/views/acf-field-group/options.php:179 -msgid "Slug" -msgstr "Slug" - -#: includes/admin/views/acf-field-group/options.php:178 -#: includes/admin/views/acf-post-type/advanced-settings.php:27 -msgid "Revisions" -msgstr "Revisies" - -#: includes/acf-wp-functions.php:66 -#: includes/admin/views/acf-field-group/options.php:177 -#: includes/admin/views/acf-post-type/advanced-settings.php:23 -msgid "Comments" -msgstr "Reacties" - -#: includes/admin/views/acf-field-group/options.php:176 -msgid "Discussion" -msgstr "Discussie" - -#: includes/admin/views/acf-field-group/options.php:174 -#: includes/admin/views/acf-post-type/advanced-settings.php:26 -msgid "Excerpt" -msgstr "Samenvatting" - -#: includes/admin/views/acf-field-group/options.php:173 -msgid "Content Editor" -msgstr "Inhoudseditor" - -#: includes/admin/views/acf-field-group/options.php:172 -msgid "Permalink" -msgstr "Permalink" - -#: includes/admin/views/acf-field-group/options.php:250 -msgid "Shown in field group list" -msgstr "Weergegeven in lijst met veldgroepen" - -#: includes/admin/views/acf-field-group/options.php:157 -msgid "Field groups with a lower order will appear first" -msgstr "Veldgroepen met een lagere volgorde verschijnen als eerste" - -#: includes/admin/views/acf-field-group/options.php:156 -msgid "Order No." -msgstr "Volgorde nr." - -#: includes/admin/views/acf-field-group/options.php:147 -msgid "Below fields" -msgstr "Onder velden" - -#: includes/admin/views/acf-field-group/options.php:146 -msgid "Below labels" -msgstr "Onder labels" - -#: includes/admin/views/acf-field-group/options.php:139 -msgid "Instruction Placement" -msgstr "Instructie plaatsing" - -#: includes/admin/views/acf-field-group/options.php:122 -msgid "Label Placement" -msgstr "Label plaatsing" - -#: includes/admin/views/acf-field-group/options.php:110 -msgid "Side" -msgstr "Zijkant" - -#: includes/admin/views/acf-field-group/options.php:109 -msgid "Normal (after content)" -msgstr "Normaal (na inhoud)" - -#: includes/admin/views/acf-field-group/options.php:108 -msgid "High (after title)" -msgstr "Hoog (na titel)" - -#: includes/admin/views/acf-field-group/options.php:101 -msgid "Position" -msgstr "Positie" - -#: includes/admin/views/acf-field-group/options.php:92 -msgid "Seamless (no metabox)" -msgstr "Naadloos (geen meta box)" - -#: includes/admin/views/acf-field-group/options.php:91 -msgid "Standard (WP metabox)" -msgstr "Standaard (met metabox)" - -#: includes/admin/views/acf-field-group/options.php:84 -msgid "Style" -msgstr "Stijl" - -#: includes/admin/views/acf-field-group/fields.php:55 -msgid "Type" -msgstr "Type" - -#: includes/admin/post-types/admin-field-groups.php:117 -#: includes/admin/post-types/admin-post-types.php:136 -#: includes/admin/post-types/admin-taxonomies.php:136 -#: includes/admin/views/acf-field-group/fields.php:54 -msgid "Key" -msgstr "Sleutel" - -#. translators: Hidden accessibility text for the positional order number of -#. the field. -#: includes/admin/views/acf-field-group/fields.php:48 -msgid "Order" -msgstr "Volgorde" - -#: includes/admin/views/acf-field-group/field.php:322 -msgid "Close Field" -msgstr "Veld sluiten" - -#: includes/admin/views/acf-field-group/field.php:253 -msgid "id" -msgstr "ID" - -#: includes/admin/views/acf-field-group/field.php:237 -msgid "class" -msgstr "klasse" - -#: includes/admin/views/acf-field-group/field.php:279 -msgid "width" -msgstr "breedte" - -#: includes/admin/views/acf-field-group/field.php:273 -msgid "Wrapper Attributes" -msgstr "Wrapper attributen" - -#: includes/admin/views/acf-field-group/field.php:196 -msgid "Required" -msgstr "Vereist" - -#: includes/admin/views/acf-field-group/field.php:221 -msgid "Instructions for authors. Shown when submitting data" -msgstr "Instructies voor auteurs. Wordt getoond bij het indienen van gegevens" - -#: includes/admin/views/acf-field-group/field.php:220 -msgid "Instructions" -msgstr "Instructies" - -#: includes/admin/views/acf-field-group/field.php:129 -msgid "Field Type" -msgstr "Veldtype" - -#: includes/admin/views/acf-field-group/field.php:170 -msgid "Single word, no spaces. Underscores and dashes allowed" -msgstr "Eén woord, geen spaties. Underscores en verbindingsstrepen toegestaan" - -#: includes/admin/views/acf-field-group/field.php:169 -msgid "Field Name" -msgstr "Veldnaam" - -#: includes/admin/views/acf-field-group/field.php:157 -msgid "This is the name which will appear on the EDIT page" -msgstr "Dit is de naam die op de BEWERK pagina zal verschijnen" - -#: includes/admin/views/acf-field-group/field.php:156 -#: includes/admin/views/browse-fields-modal.php:59 -msgid "Field Label" -msgstr "Veldlabel" - -#: includes/admin/views/acf-field-group/field.php:81 -msgid "Delete" -msgstr "Verwijderen" - -#: includes/admin/views/acf-field-group/field.php:81 -msgid "Delete field" -msgstr "Veld verwijderen" - -#: includes/admin/views/acf-field-group/field.php:79 -msgid "Move" -msgstr "Verplaatsen" - -#: includes/admin/views/acf-field-group/field.php:79 -msgid "Move field to another group" -msgstr "Veld naar een andere groep verplaatsen" - -#: includes/admin/views/acf-field-group/field.php:77 -msgid "Duplicate field" -msgstr "Veld dupliceren" - -#: includes/admin/views/acf-field-group/field.php:73 -#: includes/admin/views/acf-field-group/field.php:76 -msgid "Edit field" -msgstr "Veld bewerken" - -#: includes/admin/views/acf-field-group/field.php:69 -msgid "Drag to reorder" -msgstr "Sleep om te herschikken" - -#: includes/admin/post-types/admin-field-group.php:103 -#: includes/admin/views/acf-field-group/location-group.php:3 -#: assets/build/js/acf-field-group.js:2347 -#: assets/build/js/acf-field-group.js:2763 -msgid "Show this field group if" -msgstr "Deze veldgroep weergeven als" - -#: includes/admin/views/upgrade/upgrade.php:94 -#: includes/ajax/class-acf-ajax-upgrade.php:34 -msgid "No updates available." -msgstr "Er zijn geen updates beschikbaar." - -#: includes/admin/views/upgrade/upgrade.php:33 -msgid "Database upgrade complete. See what's new" -msgstr "Database upgrade voltooid. Bekijk wat er nieuw is" - -#: includes/admin/views/upgrade/upgrade.php:30 -msgid "Reading upgrade tasks..." -msgstr "Upgradetaken lezen..." - -#: includes/admin/views/upgrade/network.php:165 -#: includes/admin/views/upgrade/upgrade.php:65 -msgid "Upgrade failed." -msgstr "Upgrade mislukt." - -#: includes/admin/views/upgrade/network.php:162 -msgid "Upgrade complete." -msgstr "Upgrade voltooid." - -#: includes/admin/views/upgrade/network.php:148 -#: includes/admin/views/upgrade/upgrade.php:31 -msgid "Upgrading data to version %s" -msgstr "Gegevens upgraden naar versie %s" - -#: includes/admin/views/upgrade/network.php:121 -#: includes/admin/views/upgrade/notice.php:44 -msgid "" -"It is strongly recommended that you backup your database before proceeding. " -"Are you sure you wish to run the updater now?" -msgstr "" -"Het is sterk aan te raden om eerst een back-up van de database te maken " -"voordat je de update uitvoert. Weet je zeker dat je de update nu wilt " -"uitvoeren?" - -#: includes/admin/views/upgrade/network.php:117 -msgid "Please select at least one site to upgrade." -msgstr "Selecteer ten minste één site om te upgraden." - -#: includes/admin/views/upgrade/network.php:97 -msgid "" -"Database Upgrade complete. Return to network dashboard" -msgstr "" -"Database upgrade voltooid. Terug naar netwerk dashboard" - -#: includes/admin/views/upgrade/network.php:80 -msgid "Site is up to date" -msgstr "Site is up-to-date" - -#: includes/admin/views/upgrade/network.php:78 -msgid "Site requires database upgrade from %1$s to %2$s" -msgstr "Site vereist database-upgrade van %1$s naar %2$s" - -#: includes/admin/views/upgrade/network.php:36 -#: includes/admin/views/upgrade/network.php:47 -msgid "Site" -msgstr "Site" - -#: includes/admin/views/upgrade/network.php:26 -#: includes/admin/views/upgrade/network.php:27 -#: includes/admin/views/upgrade/network.php:96 -msgid "Upgrade Sites" -msgstr "Sites upgraden" - -#: includes/admin/views/upgrade/network.php:26 -msgid "" -"The following sites require a DB upgrade. Check the ones you want to update " -"and then click %s." -msgstr "" -"De volgende sites vereisen een upgrade van de database. Selecteer de sites " -"die je wilt updaten en klik vervolgens op %s." - -#: includes/admin/views/acf-field-group/conditional-logic.php:171 -#: includes/admin/views/acf-field-group/locations.php:38 -msgid "Add rule group" -msgstr "Regelgroep toevoegen" - -#: includes/admin/views/acf-field-group/locations.php:10 -msgid "" -"Create a set of rules to determine which edit screens will use these " -"advanced custom fields" -msgstr "" -"Maak een set met regels aan om te bepalen welke aangepaste schermen deze " -"extra velden zullen gebruiken" - -#: includes/admin/views/acf-field-group/locations.php:9 -msgid "Rules" -msgstr "Regels" - -#: includes/admin/tools/class-acf-admin-tool-export.php:510 -msgid "Copied" -msgstr "Gekopieerd" - -#: includes/admin/tools/class-acf-admin-tool-export.php:486 -msgid "Copy to clipboard" -msgstr "Naar klembord kopiëren" - -#: includes/admin/tools/class-acf-admin-tool-export.php:385 -msgid "" -"Select the items you would like to export and then select your export " -"method. Export As JSON to export to a .json file which you can then import " -"to another ACF installation. Generate PHP to export to PHP code which you " -"can place in your theme." -msgstr "" -"Selecteer de items die je wilt exporteren en selecteer dan je export " -"methode. Exporteer als JSON om te exporteren naar een .json-bestand dat je " -"vervolgens kunt importeren in een andere ACF installatie. Genereer PHP om te " -"exporteren naar PHP code die je in je thema kunt plaatsen." - -#: includes/admin/tools/class-acf-admin-tool-export.php:233 -msgid "Select Field Groups" -msgstr "Veldgroepen selecteren" - -#: includes/admin/tools/class-acf-admin-tool-export.php:96 -#: includes/admin/tools/class-acf-admin-tool-export.php:131 -msgid "No field groups selected" -msgstr "Geen veldgroepen geselecteerd" - -#: includes/admin/tools/class-acf-admin-tool-export.php:39 -#: includes/admin/tools/class-acf-admin-tool-export.php:393 -#: includes/admin/tools/class-acf-admin-tool-export.php:421 -msgid "Generate PHP" -msgstr "PHP genereren" - -#: includes/admin/tools/class-acf-admin-tool-export.php:35 -msgid "Export Field Groups" -msgstr "Veldgroepen exporteren" - -#: includes/admin/tools/class-acf-admin-tool-import.php:177 -msgid "Import file empty" -msgstr "Importbestand is leeg" - -#: includes/admin/tools/class-acf-admin-tool-import.php:168 -msgid "Incorrect file type" -msgstr "Onjuist bestandstype" - -#: includes/admin/tools/class-acf-admin-tool-import.php:163 -msgid "Error uploading file. Please try again" -msgstr "Fout bij uploaden van bestand. Probeer het opnieuw" - -#: includes/admin/tools/class-acf-admin-tool-import.php:50 -msgid "" -"Select the Advanced Custom Fields JSON file you would like to import. When " -"you click the import button below, ACF will import the items in that file." -msgstr "" -"Selecteer het Advanced Custom Fields JSON-bestand dat je wilt importeren. " -"Wanneer je op de onderstaande import knop klikt, importeert ACF de items in " -"dat bestand." - -#: includes/admin/tools/class-acf-admin-tool-import.php:27 -msgid "Import Field Groups" -msgstr "Veldgroepen importeren" - -#: includes/admin/admin-internal-post-type-list.php:401 -msgid "Sync" -msgstr "Sync" - -#: includes/admin/admin-internal-post-type-list.php:858 -msgid "Select %s" -msgstr "Selecteer %s" - -#: includes/admin/admin-internal-post-type-list.php:442 -#: includes/admin/admin-internal-post-type-list.php:474 -#: includes/admin/views/acf-field-group/field.php:77 -msgid "Duplicate" -msgstr "Dupliceren" - -#: includes/admin/admin-internal-post-type-list.php:442 -msgid "Duplicate this item" -msgstr "Dit item dupliceren" - -#: includes/admin/views/acf-post-type/advanced-settings.php:41 -msgid "Supports" -msgstr "Ondersteunt" - -#: includes/admin/admin.php:261 includes/admin/views/browse-fields-modal.php:92 -msgid "Documentation" -msgstr "Documentatie" - -#: includes/admin/post-types/admin-field-groups.php:116 -#: includes/admin/post-types/admin-post-types.php:135 -#: includes/admin/post-types/admin-taxonomies.php:135 -#: includes/admin/views/acf-field-group/options.php:249 -#: includes/admin/views/acf-post-type/advanced-settings.php:62 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:114 -#: includes/admin/views/upgrade/network.php:38 -#: includes/admin/views/upgrade/network.php:49 -msgid "Description" -msgstr "Beschrijving" - -#: includes/admin/admin-internal-post-type-list.php:398 -#: includes/admin/admin-internal-post-type-list.php:747 -msgid "Sync available" -msgstr "Synchronisatie beschikbaar" - -#. translators: %s number of field groups synchronized -#: includes/admin/post-types/admin-field-groups.php:381 -msgid "Field group synchronized." -msgid_plural "%s field groups synchronized." -msgstr[0] "Veldgroep gesynchroniseerd." -msgstr[1] "%s veld groepen gesynchroniseerd." - -#. translators: %s number of field groups duplicated -#: includes/admin/post-types/admin-field-groups.php:374 -msgid "Field group duplicated." -msgid_plural "%s field groups duplicated." -msgstr[0] "Veldgroep gedupliceerd." -msgstr[1] "%s veldgroepen gedupliceerd." - -#: includes/admin/admin-internal-post-type-list.php:137 -msgid "Active (%s)" -msgid_plural "Active (%s)" -msgstr[0] "Actief (%s)" -msgstr[1] "Actief (%s)" - -#: includes/admin/admin-upgrade.php:254 -msgid "Review sites & upgrade" -msgstr "Beoordeel sites & upgrade" - -#: includes/admin/admin-upgrade.php:59 includes/admin/admin-upgrade.php:93 -#: includes/admin/admin-upgrade.php:94 includes/admin/admin-upgrade.php:230 -#: includes/admin/views/upgrade/network.php:24 -#: includes/admin/views/upgrade/upgrade.php:26 -msgid "Upgrade Database" -msgstr "Database upgraden" - -#: includes/admin/views/acf-field-group/options.php:175 -#: includes/admin/views/acf-post-type/advanced-settings.php:30 -msgid "Custom Fields" -msgstr "Aangepaste velden" - -#: includes/admin/post-types/admin-field-group.php:616 -msgid "Move Field" -msgstr "Veld verplaatsen" - -#: includes/admin/post-types/admin-field-group.php:605 -#: includes/admin/post-types/admin-field-group.php:609 -msgid "Please select the destination for this field" -msgstr "Selecteer de bestemming voor dit veld" - -#. translators: Confirmation message once a field has been moved to a different -#. field group. -#: includes/admin/post-types/admin-field-group.php:567 -msgid "The %1$s field can now be found in the %2$s field group" -msgstr "Het %1$s veld is nu te vinden in de %2$s veldgroep" - -#: includes/admin/post-types/admin-field-group.php:564 -msgid "Move Complete." -msgstr "Verplaatsen voltooid." - -#: includes/admin/views/acf-field-group/field.php:39 -#: includes/admin/views/acf-field-group/options.php:217 -#: includes/admin/views/acf-post-type/advanced-settings.php:78 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:130 -msgid "Active" -msgstr "Actief" - -#: includes/admin/post-types/admin-field-group.php:266 -msgid "Field Keys" -msgstr "Veldsleutels" - -#: includes/admin/post-types/admin-field-group.php:164 -#: includes/admin/tools/class-acf-admin-tool-export.php:342 -msgid "Settings" -msgstr "Instellingen" - -#: includes/admin/post-types/admin-field-groups.php:118 -msgid "Location" -msgstr "Locatie" - -#: includes/admin/post-types/admin-field-group.php:104 -#: assets/build/js/acf-input.js:983 assets/build/js/acf-input.js:1075 -msgid "Null" -msgstr "Null" - -#: includes/admin/post-types/admin-field-group.php:101 -#: includes/class-acf-internal-post-type.php:730 -#: includes/post-types/class-acf-field-group.php:345 -#: assets/build/js/acf-field-group.js:1510 -#: assets/build/js/acf-field-group.js:1821 -msgid "copy" -msgstr "kopie" - -#: includes/admin/post-types/admin-field-group.php:100 -#: assets/build/js/acf-field-group.js:623 -#: assets/build/js/acf-field-group.js:778 -msgid "(this field)" -msgstr "(dit veld)" - -#: includes/admin/post-types/admin-field-group.php:98 -#: assets/build/js/acf-input.js:918 assets/build/js/acf-input.js:943 -#: assets/build/js/acf-input.js:1002 assets/build/js/acf-input.js:1030 -msgid "Checked" -msgstr "Aangevinkt" - -#: includes/admin/post-types/admin-field-group.php:94 -#: assets/build/js/acf-field-group.js:1615 -#: assets/build/js/acf-field-group.js:1933 -msgid "Move Custom Field" -msgstr "Aangepast veld verplaatsen" - -#: includes/admin/post-types/admin-field-group.php:93 -#: assets/build/js/acf-field-group.js:649 -#: assets/build/js/acf-field-group.js:804 -msgid "No toggle fields available" -msgstr "Geen toggle velden beschikbaar" - -#: includes/admin/post-types/admin-field-group.php:91 -msgid "Field group title is required" -msgstr "Veldgroep titel is vereist" - -#: includes/admin/post-types/admin-field-group.php:90 -#: assets/build/js/acf-field-group.js:1604 -#: assets/build/js/acf-field-group.js:1919 -msgid "This field cannot be moved until its changes have been saved" -msgstr "" -"Dit veld kan niet worden verplaatst totdat de wijzigingen zijn opgeslagen" - -#: includes/admin/post-types/admin-field-group.php:89 -#: assets/build/js/acf-field-group.js:1414 -#: assets/build/js/acf-field-group.js:1716 -msgid "The string \"field_\" may not be used at the start of a field name" -msgstr "De string \"field_\" mag niet voor de veldnaam staan" - -#: includes/admin/post-types/admin-field-group.php:71 -msgid "Field group draft updated." -msgstr "Veldgroep concept geüpdatet." - -#: includes/admin/post-types/admin-field-group.php:70 -msgid "Field group scheduled for." -msgstr "Veldgroep gepland voor." - -#: includes/admin/post-types/admin-field-group.php:69 -msgid "Field group submitted." -msgstr "Veldgroep ingediend." - -#: includes/admin/post-types/admin-field-group.php:68 -msgid "Field group saved." -msgstr "Veldgroep opgeslagen." - -#: includes/admin/post-types/admin-field-group.php:67 -msgid "Field group published." -msgstr "Veldgroep gepubliceerd." - -#: includes/admin/post-types/admin-field-group.php:64 -msgid "Field group deleted." -msgstr "Veldgroep verwijderd." - -#: includes/admin/post-types/admin-field-group.php:62 -#: includes/admin/post-types/admin-field-group.php:63 -#: includes/admin/post-types/admin-field-group.php:65 -msgid "Field group updated." -msgstr "Veldgroep geüpdatet." - -#: includes/admin/admin-tools.php:118 -#: includes/admin/views/global/navigation.php:246 -#: includes/admin/views/tools/tools.php:21 -msgid "Tools" -msgstr "Gereedschap" - -#: includes/locations/abstract-acf-location.php:106 -msgid "is not equal to" -msgstr "is niet gelijk aan" - -#: includes/locations/abstract-acf-location.php:105 -msgid "is equal to" -msgstr "is gelijk aan" - -#: includes/locations.php:102 -msgid "Forms" -msgstr "Formulieren" - -#: includes/admin/post-types/admin-post-type.php:127 includes/locations.php:100 -#: includes/locations/class-acf-location-page.php:22 -#: assets/build/js/acf-internal-post-type.js:175 -#: assets/build/js/acf-internal-post-type.js:249 -msgid "Page" -msgstr "Pagina" - -#: includes/admin/post-types/admin-post-type.php:125 includes/locations.php:99 -#: includes/locations/class-acf-location-post.php:22 -#: assets/build/js/acf-internal-post-type.js:172 -#: assets/build/js/acf-internal-post-type.js:246 -msgid "Post" -msgstr "Bericht" - -#: includes/fields.php:354 -msgid "Relational" -msgstr "Relationeel" - -#: includes/fields.php:353 -msgid "Choice" -msgstr "Keuze" - -#: includes/fields.php:351 -msgid "Basic" -msgstr "Basis" - -#: includes/fields.php:320 -msgid "Unknown" -msgstr "Onbekend" - -#: includes/fields.php:320 -msgid "Field type does not exist" -msgstr "Veldtype bestaat niet" - -#: includes/forms/form-front.php:236 -msgid "Spam Detected" -msgstr "Spam gevonden" - -#: includes/forms/form-front.php:107 -msgid "Post updated" -msgstr "Bericht geüpdatet" - -#: includes/forms/form-front.php:106 -msgid "Update" -msgstr "Updaten" - -#: includes/forms/form-front.php:57 -msgid "Validate Email" -msgstr "E-mailadres valideren" - -#: includes/fields.php:352 includes/forms/form-front.php:49 -msgid "Content" -msgstr "Inhoud" - -#: includes/admin/views/acf-post-type/advanced-settings.php:21 -#: includes/forms/form-front.php:40 -msgid "Title" -msgstr "Titel" - -#: includes/assets.php:372 includes/forms/form-comment.php:160 -#: assets/build/js/acf-input.js:7382 assets/build/js/acf-input.js:7968 -msgid "Edit field group" -msgstr "Veldgroep bewerken" - -#: includes/admin/post-types/admin-field-group.php:117 -#: assets/build/js/acf-input.js:1125 assets/build/js/acf-input.js:1230 -msgid "Selection is less than" -msgstr "Selectie is minder dan" - -#: includes/admin/post-types/admin-field-group.php:116 -#: assets/build/js/acf-input.js:1106 assets/build/js/acf-input.js:1202 -msgid "Selection is greater than" -msgstr "Selectie is groter dan" - -#: includes/admin/post-types/admin-field-group.php:115 -#: assets/build/js/acf-input.js:1075 assets/build/js/acf-input.js:1170 -msgid "Value is less than" -msgstr "Waarde is minder dan" - -#: includes/admin/post-types/admin-field-group.php:114 -#: assets/build/js/acf-input.js:1045 assets/build/js/acf-input.js:1139 -msgid "Value is greater than" -msgstr "Waarde is groter dan" - -#: includes/admin/post-types/admin-field-group.php:113 -#: assets/build/js/acf-input.js:888 assets/build/js/acf-input.js:960 -msgid "Value contains" -msgstr "Waarde bevat" - -#: includes/admin/post-types/admin-field-group.php:112 -#: assets/build/js/acf-input.js:862 assets/build/js/acf-input.js:926 -msgid "Value matches pattern" -msgstr "Waarde komt overeen met patroon" - -#: includes/admin/post-types/admin-field-group.php:111 -#: assets/build/js/acf-input.js:840 assets/build/js/acf-input.js:1023 -#: assets/build/js/acf-input.js:903 assets/build/js/acf-input.js:1116 -msgid "Value is not equal to" -msgstr "Waarde is niet gelijk aan" - -#: includes/admin/post-types/admin-field-group.php:110 -#: assets/build/js/acf-input.js:810 assets/build/js/acf-input.js:964 -#: assets/build/js/acf-input.js:864 assets/build/js/acf-input.js:1053 -msgid "Value is equal to" -msgstr "Waarde is gelijk aan" - -#: includes/admin/post-types/admin-field-group.php:109 -#: assets/build/js/acf-input.js:788 assets/build/js/acf-input.js:841 -msgid "Has no value" -msgstr "Heeft geen waarde" - -#: includes/admin/post-types/admin-field-group.php:108 -#: assets/build/js/acf-input.js:758 assets/build/js/acf-input.js:783 -msgid "Has any value" -msgstr "Heeft een waarde" - -#: includes/admin/admin-internal-post-type.php:345 -#: includes/admin/views/browse-fields-modal.php:62 includes/assets.php:353 -#: assets/build/js/acf.js:1564 assets/build/js/acf.js:1658 -msgid "Cancel" -msgstr "Annuleren" - -#: includes/assets.php:349 assets/build/js/acf.js:1738 -#: assets/build/js/acf.js:1855 -msgid "Are you sure?" -msgstr "Weet je het zeker?" - -#: includes/assets.php:369 assets/build/js/acf-input.js:9442 -#: assets/build/js/acf-input.js:10294 -msgid "%d fields require attention" -msgstr "%d velden vereisen aandacht" - -#: includes/assets.php:368 assets/build/js/acf-input.js:9440 -#: assets/build/js/acf-input.js:10290 -msgid "1 field requires attention" -msgstr "1 veld vereist aandacht" - -#: includes/assets.php:367 includes/validation.php:288 -#: includes/validation.php:298 assets/build/js/acf-input.js:9435 -#: assets/build/js/acf-input.js:10285 -msgid "Validation failed" -msgstr "Validatie mislukt" - -#: includes/assets.php:366 assets/build/js/acf-input.js:9603 -#: assets/build/js/acf-input.js:10473 -msgid "Validation successful" -msgstr "Validatie geslaagd" - -#: includes/media.php:54 assets/build/js/acf-input.js:7210 -#: assets/build/js/acf-input.js:7772 -msgid "Restricted" -msgstr "Beperkt" - -#: includes/media.php:53 assets/build/js/acf-input.js:7025 -#: assets/build/js/acf-input.js:7536 -msgid "Collapse Details" -msgstr "Details dichtklappen" - -#: includes/media.php:52 assets/build/js/acf-input.js:7025 -#: assets/build/js/acf-input.js:7533 -msgid "Expand Details" -msgstr "Details uitklappen" - -#: includes/admin/views/acf-post-type/advanced-settings.php:465 -#: includes/media.php:51 assets/build/js/acf-input.js:6892 -#: assets/build/js/acf-input.js:7381 -msgid "Uploaded to this post" -msgstr "Geüpload naar dit bericht" - -#: includes/media.php:50 assets/build/js/acf-input.js:6931 -#: assets/build/js/acf-input.js:7420 -msgctxt "verb" -msgid "Update" -msgstr "Updaten" - -#: includes/media.php:49 -msgctxt "verb" -msgid "Edit" -msgstr "Bewerken" - -#: includes/assets.php:363 assets/build/js/acf-input.js:9212 -#: assets/build/js/acf-input.js:10056 -msgid "The changes you made will be lost if you navigate away from this page" -msgstr "De aangebrachte wijzigingen gaan verloren als je deze pagina verlaat" - -#: includes/api/api-helpers.php:3395 -msgid "File type must be %s." -msgstr "Het bestandstype moet %s zijn." - -#: includes/admin/post-types/admin-field-group.php:102 -#: includes/admin/views/acf-field-group/conditional-logic.php:59 -#: includes/admin/views/acf-field-group/conditional-logic.php:169 -#: includes/admin/views/acf-field-group/location-group.php:3 -#: includes/admin/views/acf-field-group/locations.php:36 -#: includes/api/api-helpers.php:3391 assets/build/js/acf-field-group.js:771 -#: assets/build/js/acf-field-group.js:2385 -#: assets/build/js/acf-field-group.js:933 -#: assets/build/js/acf-field-group.js:2807 -msgid "or" -msgstr "of" - -#: includes/api/api-helpers.php:3364 -msgid "File size must not exceed %s." -msgstr "De bestandsgrootte mag niet groter zijn dan %s." - -#: includes/api/api-helpers.php:3359 -msgid "File size must be at least %s." -msgstr "De bestandsgrootte moet minimaal %s zijn." - -#: includes/api/api-helpers.php:3344 -msgid "Image height must not exceed %dpx." -msgstr "De hoogte van de afbeelding mag niet hoger zijn dan %dpx." - -#: includes/api/api-helpers.php:3339 -msgid "Image height must be at least %dpx." -msgstr "De hoogte van de afbeelding moet minimaal %dpx zijn." - -#: includes/api/api-helpers.php:3325 -msgid "Image width must not exceed %dpx." -msgstr "De breedte van de afbeelding mag niet groter zijn dan %dpx." - -#: includes/api/api-helpers.php:3320 -msgid "Image width must be at least %dpx." -msgstr "De breedte van de afbeelding moet ten minste %dpx zijn." - -#: includes/api/api-helpers.php:1561 includes/api/api-term.php:147 -msgid "(no title)" -msgstr "(geen titel)" - -#: includes/api/api-helpers.php:853 -msgid "Full Size" -msgstr "Volledige grootte" - -#: includes/api/api-helpers.php:812 -msgid "Large" -msgstr "Groot" - -#: includes/api/api-helpers.php:811 -msgid "Medium" -msgstr "Medium" - -#: includes/api/api-helpers.php:810 -msgid "Thumbnail" -msgstr "Thumbnail" - -#: includes/acf-field-functions.php:854 -#: includes/admin/post-types/admin-field-group.php:99 -#: assets/build/js/acf-field-group.js:1077 -#: assets/build/js/acf-field-group.js:1260 -msgid "(no label)" -msgstr "(geen label)" - -#: includes/fields/class-acf-field-textarea.php:145 -msgid "Sets the textarea height" -msgstr "Bepaalt de hoogte van het tekstgebied" - -#: includes/fields/class-acf-field-textarea.php:144 -msgid "Rows" -msgstr "Rijen" - -#: includes/fields/class-acf-field-textarea.php:25 -msgid "Text Area" -msgstr "Tekstgebied" - -#: includes/fields/class-acf-field-checkbox.php:451 -msgid "Prepend an extra checkbox to toggle all choices" -msgstr "Voeg ervoor een extra selectievakje toe om alle keuzes te togglen" - -#: includes/fields/class-acf-field-checkbox.php:413 -msgid "Save 'custom' values to the field's choices" -msgstr "Sla 'aangepaste' waarden op in de keuzes van het veld" - -#: includes/fields/class-acf-field-checkbox.php:402 -msgid "Allow 'custom' values to be added" -msgstr "Toestaan dat 'aangepaste' waarden worden toegevoegd" - -#: includes/fields/class-acf-field-checkbox.php:38 -msgid "Add new choice" -msgstr "Nieuwe keuze toevoegen" - -#: includes/fields/class-acf-field-checkbox.php:174 -msgid "Toggle All" -msgstr "Toggle alles" - -#: includes/fields/class-acf-field-page_link.php:506 -msgid "Allow Archives URLs" -msgstr "Archief URL's toestaan" - -#: includes/fields/class-acf-field-page_link.php:179 -msgid "Archives" -msgstr "Archieven" - -#: includes/fields/class-acf-field-page_link.php:25 -msgid "Page Link" -msgstr "Pagina link" - -#: includes/fields/class-acf-field-taxonomy.php:943 -#: includes/locations/class-acf-location-user-form.php:72 -msgid "Add" -msgstr "Toevoegen" - -#: includes/admin/views/acf-field-group/fields.php:53 -#: includes/fields/class-acf-field-taxonomy.php:908 -msgid "Name" -msgstr "Naam" - -#: includes/fields/class-acf-field-taxonomy.php:892 -msgid "%s added" -msgstr "%s toegevoegd" - -#: includes/fields/class-acf-field-taxonomy.php:856 -msgid "%s already exists" -msgstr "%s bestaat al" - -#: includes/fields/class-acf-field-taxonomy.php:844 -msgid "User unable to add new %s" -msgstr "Gebruiker kan geen nieuwe %s toevoegen" - -#: includes/fields/class-acf-field-taxonomy.php:742 -msgid "Term ID" -msgstr "Term-ID" - -#: includes/fields/class-acf-field-taxonomy.php:741 -msgid "Term Object" -msgstr "Term object" - -#: includes/fields/class-acf-field-taxonomy.php:726 -msgid "Load value from posts terms" -msgstr "Laad waarde van bericht-termen" - -#: includes/fields/class-acf-field-taxonomy.php:725 -msgid "Load Terms" -msgstr "Laad termen" - -#: includes/fields/class-acf-field-taxonomy.php:715 -msgid "Connect selected terms to the post" -msgstr "Geselecteerde termen aan het bericht koppelen" - -#: includes/fields/class-acf-field-taxonomy.php:714 -msgid "Save Terms" -msgstr "Termen opslaan" - -#: includes/fields/class-acf-field-taxonomy.php:704 -msgid "Allow new terms to be created whilst editing" -msgstr "Toestaan dat nieuwe termen worden gemaakt tijdens het bewerken" - -#: includes/fields/class-acf-field-taxonomy.php:703 -msgid "Create Terms" -msgstr "Termen maken" - -#: includes/fields/class-acf-field-taxonomy.php:762 -msgid "Radio Buttons" -msgstr "Keuzerondjes" - -#: includes/fields/class-acf-field-taxonomy.php:761 -msgid "Single Value" -msgstr "Eén waarde" - -#: includes/fields/class-acf-field-taxonomy.php:759 -msgid "Multi Select" -msgstr "Multi selecteren" - -#: includes/fields/class-acf-field-checkbox.php:25 -#: includes/fields/class-acf-field-taxonomy.php:758 -msgid "Checkbox" -msgstr "Selectievakje" - -#: includes/fields/class-acf-field-taxonomy.php:757 -msgid "Multiple Values" -msgstr "Meerdere waarden" - -#: includes/fields/class-acf-field-taxonomy.php:752 -msgid "Select the appearance of this field" -msgstr "Selecteer de weergave van dit veld" - -#: includes/fields/class-acf-field-taxonomy.php:751 -msgid "Appearance" -msgstr "Weergave" - -#: includes/fields/class-acf-field-taxonomy.php:693 -msgid "Select the taxonomy to be displayed" -msgstr "Selecteer de taxonomie die moet worden weergegeven" - -#: includes/fields/class-acf-field-taxonomy.php:654 -msgctxt "No Terms" -msgid "No %s" -msgstr "Geen %s" - -#: includes/fields/class-acf-field-number.php:266 -msgid "Value must be equal to or lower than %d" -msgstr "De waarde moet gelijk zijn aan of lager zijn dan %d" - -#: includes/fields/class-acf-field-number.php:259 -msgid "Value must be equal to or higher than %d" -msgstr "De waarde moet gelijk zijn aan of hoger zijn dan %d" - -#: includes/fields/class-acf-field-number.php:244 -msgid "Value must be a number" -msgstr "Waarde moet een getal zijn" - -#: includes/fields/class-acf-field-number.php:25 -msgid "Number" -msgstr "Nummer" - -#: includes/fields/class-acf-field-radio.php:264 -msgid "Save 'other' values to the field's choices" -msgstr "'Andere' waarden opslaan in de keuzes van het veld" - -#: includes/fields/class-acf-field-radio.php:253 -msgid "Add 'other' choice to allow for custom values" -msgstr "Voeg de keuze 'overig' toe om aangepaste waarden toe te staan" - -#: includes/admin/views/global/navigation.php:196 -msgid "Other" -msgstr "Ander" - -#: includes/fields/class-acf-field-radio.php:25 -msgid "Radio Button" -msgstr "Keuzerondje" - -#: includes/fields/class-acf-field-accordion.php:107 -msgid "" -"Define an endpoint for the previous accordion to stop. This accordion will " -"not be visible." -msgstr "" -"Definieer een eindpunt waar de vorige accordeon moet stoppen. Deze accordeon " -"is niet zichtbaar." - -#: includes/fields/class-acf-field-accordion.php:96 -msgid "Allow this accordion to open without closing others." -msgstr "Deze accordeon openen zonder anderen te sluiten." - -#: includes/fields/class-acf-field-accordion.php:95 -msgid "Multi-Expand" -msgstr "Multi uitvouwen" - -#: includes/fields/class-acf-field-accordion.php:85 -msgid "Display this accordion as open on page load." -msgstr "Geef deze accordeon weer als geopend bij het laden van de pagina." - -#: includes/fields/class-acf-field-accordion.php:84 -msgid "Open" -msgstr "Openen" - -#: includes/fields/class-acf-field-accordion.php:25 -msgid "Accordion" -msgstr "Accordeon" - -#: includes/fields/class-acf-field-file.php:267 -#: includes/fields/class-acf-field-file.php:279 -msgid "Restrict which files can be uploaded" -msgstr "Beperken welke bestanden kunnen worden geüpload" - -#: includes/fields/class-acf-field-file.php:220 -msgid "File ID" -msgstr "Bestands-ID" - -#: includes/fields/class-acf-field-file.php:219 -msgid "File URL" -msgstr "Bestands-URL" - -#: includes/fields/class-acf-field-file.php:218 -msgid "File Array" -msgstr "Bestandsarray" - -#: includes/fields/class-acf-field-file.php:186 -msgid "Add File" -msgstr "Bestand toevoegen" - -#: includes/admin/tools/class-acf-admin-tool-import.php:156 -#: includes/fields/class-acf-field-file.php:186 -msgid "No file selected" -msgstr "Geen bestand geselecteerd" - -#: includes/fields/class-acf-field-file.php:150 -msgid "File name" -msgstr "Bestandsnaam" - -#: includes/fields/class-acf-field-file.php:63 -#: assets/build/js/acf-input.js:2474 assets/build/js/acf-input.js:2625 -msgid "Update File" -msgstr "Bestand updaten" - -#: includes/fields/class-acf-field-file.php:62 -#: assets/build/js/acf-input.js:2473 assets/build/js/acf-input.js:2624 -msgid "Edit File" -msgstr "Bestand bewerken" - -#: includes/admin/tools/class-acf-admin-tool-import.php:58 -#: includes/fields/class-acf-field-file.php:61 -#: assets/build/js/acf-input.js:2447 assets/build/js/acf-input.js:2597 -msgid "Select File" -msgstr "Bestand selecteren" - -#: includes/fields/class-acf-field-file.php:25 -msgid "File" -msgstr "Bestand" - -#: includes/fields/class-acf-field-password.php:25 -msgid "Password" -msgstr "Wachtwoord" - -#: includes/fields/class-acf-field-select.php:392 -msgid "Specify the value returned" -msgstr "Geef de geretourneerde waarde op" - -#: includes/fields/class-acf-field-select.php:461 -msgid "Use AJAX to lazy load choices?" -msgstr "AJAX gebruiken om keuzes te lazy-loaden?" - -#: includes/fields/class-acf-field-checkbox.php:362 -#: includes/fields/class-acf-field-select.php:381 -msgid "Enter each default value on a new line" -msgstr "Zet elke standaardwaarde op een nieuwe regel" - -#: includes/fields/class-acf-field-select.php:252 includes/media.php:48 -#: assets/build/js/acf-input.js:6790 assets/build/js/acf-input.js:7266 -msgctxt "verb" -msgid "Select" -msgstr "Selecteren" - -#: includes/fields/class-acf-field-select.php:121 -msgctxt "Select2 JS load_fail" -msgid "Loading failed" -msgstr "Laden mislukt" - -#: includes/fields/class-acf-field-select.php:120 -msgctxt "Select2 JS searching" -msgid "Searching…" -msgstr "Zoeken…" - -#: includes/fields/class-acf-field-select.php:119 -msgctxt "Select2 JS load_more" -msgid "Loading more results…" -msgstr "Meer resultaten laden…" - -#: includes/fields/class-acf-field-select.php:118 -msgctxt "Select2 JS selection_too_long_n" -msgid "You can only select %d items" -msgstr "Je kunt slechts %d items selecteren" - -#: includes/fields/class-acf-field-select.php:117 -msgctxt "Select2 JS selection_too_long_1" -msgid "You can only select 1 item" -msgstr "Je kan slechts 1 item selecteren" - -#: includes/fields/class-acf-field-select.php:116 -msgctxt "Select2 JS input_too_long_n" -msgid "Please delete %d characters" -msgstr "Verwijder %d tekens" - -#: includes/fields/class-acf-field-select.php:115 -msgctxt "Select2 JS input_too_long_1" -msgid "Please delete 1 character" -msgstr "Verwijder 1 teken" - -#: includes/fields/class-acf-field-select.php:114 -msgctxt "Select2 JS input_too_short_n" -msgid "Please enter %d or more characters" -msgstr "Voer %d of meer tekens in" - -#: includes/fields/class-acf-field-select.php:113 -msgctxt "Select2 JS input_too_short_1" -msgid "Please enter 1 or more characters" -msgstr "Voer 1 of meer tekens in" - -#: includes/fields/class-acf-field-select.php:112 -msgctxt "Select2 JS matches_0" -msgid "No matches found" -msgstr "Geen overeenkomsten gevonden" - -#: includes/fields/class-acf-field-select.php:111 -msgctxt "Select2 JS matches_n" -msgid "%d results are available, use up and down arrow keys to navigate." -msgstr "" -"%d resultaten zijn beschikbaar, gebruik de pijltoetsen omhoog en omlaag om " -"te navigeren." - -#: includes/fields/class-acf-field-select.php:110 -msgctxt "Select2 JS matches_1" -msgid "One result is available, press enter to select it." -msgstr "Er is één resultaat beschikbaar, druk op enter om het te selecteren." - -#: includes/fields/class-acf-field-select.php:25 -#: includes/fields/class-acf-field-taxonomy.php:763 -msgctxt "noun" -msgid "Select" -msgstr "Selecteer" - -#: includes/fields/class-acf-field-user.php:73 -msgid "User ID" -msgstr "Gebruikers-ID" - -#: includes/fields/class-acf-field-user.php:72 -msgid "User Object" -msgstr "Gebruikersobject" - -#: includes/fields/class-acf-field-user.php:71 -msgid "User Array" -msgstr "Gebruiker array" - -#: includes/fields/class-acf-field-user.php:59 -msgid "All user roles" -msgstr "Alle gebruikersrollen" - -#: includes/fields/class-acf-field-user.php:51 -msgid "Filter by Role" -msgstr "Filter op rol" - -#: includes/fields/class-acf-field-user.php:15 includes/locations.php:101 -msgid "User" -msgstr "Gebruiker" - -#: includes/fields/class-acf-field-separator.php:25 -msgid "Separator" -msgstr "Scheidingsteken" - -#: includes/fields/class-acf-field-color_picker.php:75 -msgid "Select Color" -msgstr "Selecteer kleur" - -#: includes/admin/post-types/admin-post-type.php:129 -#: includes/admin/post-types/admin-taxonomy.php:131 -#: includes/fields/class-acf-field-color_picker.php:73 -#: assets/build/js/acf-internal-post-type.js:72 -#: assets/build/js/acf-internal-post-type.js:86 -msgid "Default" -msgstr "Standaard" - -#: includes/admin/views/acf-post-type/advanced-settings.php:89 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:141 -#: includes/fields/class-acf-field-color_picker.php:71 -msgid "Clear" -msgstr "Wissen" - -#: includes/fields/class-acf-field-color_picker.php:25 -msgid "Color Picker" -msgstr "Kleurkiezer" - -#: includes/fields/class-acf-field-date_time_picker.php:88 -msgctxt "Date Time Picker JS pmTextShort" -msgid "P" -msgstr " " - -#: includes/fields/class-acf-field-date_time_picker.php:87 -msgctxt "Date Time Picker JS pmText" -msgid "PM" -msgstr " " - -#: includes/fields/class-acf-field-date_time_picker.php:84 -msgctxt "Date Time Picker JS amTextShort" -msgid "A" -msgstr " " - -#: includes/fields/class-acf-field-date_time_picker.php:83 -msgctxt "Date Time Picker JS amText" -msgid "AM" -msgstr " " - -#: includes/fields/class-acf-field-date_time_picker.php:81 -msgctxt "Date Time Picker JS selectText" -msgid "Select" -msgstr "Selecteer" - -#: includes/fields/class-acf-field-date_time_picker.php:80 -msgctxt "Date Time Picker JS closeText" -msgid "Done" -msgstr "Klaar" - -#: includes/fields/class-acf-field-date_time_picker.php:79 -msgctxt "Date Time Picker JS currentText" -msgid "Now" -msgstr "Nu" - -#: includes/fields/class-acf-field-date_time_picker.php:78 -msgctxt "Date Time Picker JS timezoneText" -msgid "Time Zone" -msgstr "Tijdzone" - -#: includes/fields/class-acf-field-date_time_picker.php:77 -msgctxt "Date Time Picker JS microsecText" -msgid "Microsecond" -msgstr "Microseconde" - -#: includes/fields/class-acf-field-date_time_picker.php:76 -msgctxt "Date Time Picker JS millisecText" -msgid "Millisecond" -msgstr "Milliseconde" - -#: includes/fields/class-acf-field-date_time_picker.php:75 -msgctxt "Date Time Picker JS secondText" -msgid "Second" -msgstr "Seconde" - -#: includes/fields/class-acf-field-date_time_picker.php:74 -msgctxt "Date Time Picker JS minuteText" -msgid "Minute" -msgstr "Minuut" - -#: includes/fields/class-acf-field-date_time_picker.php:73 -msgctxt "Date Time Picker JS hourText" -msgid "Hour" -msgstr "Uur" - -#: includes/fields/class-acf-field-date_time_picker.php:72 -msgctxt "Date Time Picker JS timeText" -msgid "Time" -msgstr "Tijd" - -#: includes/fields/class-acf-field-date_time_picker.php:71 -msgctxt "Date Time Picker JS timeOnlyTitle" -msgid "Choose Time" -msgstr "Kies tijd" - -#: includes/fields/class-acf-field-date_time_picker.php:25 -msgid "Date Time Picker" -msgstr "Datum tijd kiezer" - -#: includes/fields/class-acf-field-accordion.php:106 -msgid "Endpoint" -msgstr "Eindpunt" - -#: includes/admin/views/acf-field-group/options.php:130 -#: includes/fields/class-acf-field-tab.php:115 -msgid "Left aligned" -msgstr "Links uitgelijnd" - -#: includes/admin/views/acf-field-group/options.php:129 -#: includes/fields/class-acf-field-tab.php:114 -msgid "Top aligned" -msgstr "Boven uitgelijnd" - -#: includes/fields/class-acf-field-tab.php:110 -msgid "Placement" -msgstr "Plaatsing" - -#: includes/fields/class-acf-field-tab.php:26 -msgid "Tab" -msgstr "Tab" - -#: includes/fields/class-acf-field-url.php:162 -msgid "Value must be a valid URL" -msgstr "Waarde moet een geldige URL zijn" - -#: includes/fields/class-acf-field-link.php:177 -msgid "Link URL" -msgstr "Link URL" - -#: includes/fields/class-acf-field-link.php:176 -msgid "Link Array" -msgstr "Link array" - -#: includes/fields/class-acf-field-link.php:145 -msgid "Opens in a new window/tab" -msgstr "Opent in een nieuw venster/tab" - -#: includes/fields/class-acf-field-link.php:140 -msgid "Select Link" -msgstr "Link selecteren" - -#: includes/fields/class-acf-field-link.php:25 -msgid "Link" -msgstr "Link" - -#: includes/fields/class-acf-field-email.php:25 -msgid "Email" -msgstr "E-mailadres" - -#: includes/fields/class-acf-field-number.php:188 -#: includes/fields/class-acf-field-range.php:217 -msgid "Step Size" -msgstr "Stapgrootte" - -#: includes/fields/class-acf-field-number.php:158 -#: includes/fields/class-acf-field-range.php:195 -msgid "Maximum Value" -msgstr "Maximale waarde" - -#: includes/fields/class-acf-field-number.php:148 -#: includes/fields/class-acf-field-range.php:184 -msgid "Minimum Value" -msgstr "Minimum waarde" - -#: includes/fields/class-acf-field-range.php:25 -msgid "Range" -msgstr "Bereik" - -#: includes/fields/class-acf-field-button-group.php:175 -#: includes/fields/class-acf-field-checkbox.php:379 -#: includes/fields/class-acf-field-radio.php:220 -#: includes/fields/class-acf-field-select.php:399 -msgid "Both (Array)" -msgstr "Beide (array)" - -#: includes/admin/views/acf-field-group/fields.php:52 -#: includes/fields/class-acf-field-button-group.php:174 -#: includes/fields/class-acf-field-checkbox.php:378 -#: includes/fields/class-acf-field-radio.php:219 -#: includes/fields/class-acf-field-select.php:398 -msgid "Label" -msgstr "Label" - -#: includes/fields/class-acf-field-button-group.php:173 -#: includes/fields/class-acf-field-checkbox.php:377 -#: includes/fields/class-acf-field-radio.php:218 -#: includes/fields/class-acf-field-select.php:397 -msgid "Value" -msgstr "Waarde" - -#: includes/fields/class-acf-field-button-group.php:222 -#: includes/fields/class-acf-field-checkbox.php:441 -#: includes/fields/class-acf-field-radio.php:292 -msgid "Vertical" -msgstr "Verticaal" - -#: includes/fields/class-acf-field-button-group.php:221 -#: includes/fields/class-acf-field-checkbox.php:442 -#: includes/fields/class-acf-field-radio.php:293 -msgid "Horizontal" -msgstr "Horizontaal" - -#: includes/fields/class-acf-field-button-group.php:148 -#: includes/fields/class-acf-field-checkbox.php:352 -#: includes/fields/class-acf-field-radio.php:193 -#: includes/fields/class-acf-field-select.php:370 -msgid "red : Red" -msgstr "rood : Rood" - -#: includes/fields/class-acf-field-button-group.php:148 -#: includes/fields/class-acf-field-checkbox.php:352 -#: includes/fields/class-acf-field-radio.php:193 -#: includes/fields/class-acf-field-select.php:370 -msgid "For more control, you may specify both a value and label like this:" -msgstr "" -"Voor meer controle kan je zowel een waarde als een label als volgt " -"specificeren:" - -#: includes/fields/class-acf-field-button-group.php:148 -#: includes/fields/class-acf-field-checkbox.php:352 -#: includes/fields/class-acf-field-radio.php:193 -#: includes/fields/class-acf-field-select.php:370 -msgid "Enter each choice on a new line." -msgstr "Voer elke keuze in op een nieuwe regel." - -#: includes/fields/class-acf-field-button-group.php:147 -#: includes/fields/class-acf-field-checkbox.php:351 -#: includes/fields/class-acf-field-radio.php:192 -#: includes/fields/class-acf-field-select.php:369 -msgid "Choices" -msgstr "Keuzes" - -#: includes/fields/class-acf-field-button-group.php:24 -msgid "Button Group" -msgstr "Knopgroep" - -#: includes/fields/class-acf-field-button-group.php:194 -#: includes/fields/class-acf-field-page_link.php:538 -#: includes/fields/class-acf-field-post_object.php:448 -#: includes/fields/class-acf-field-radio.php:238 -#: includes/fields/class-acf-field-select.php:429 -#: includes/fields/class-acf-field-taxonomy.php:772 -#: includes/fields/class-acf-field-user.php:103 -msgid "Allow Null" -msgstr "Null toestaan?" - -#: includes/fields/class-acf-field-page_link.php:263 -#: includes/fields/class-acf-field-post_object.php:257 -#: includes/fields/class-acf-field-taxonomy.php:930 -msgid "Parent" -msgstr "Hoofd" - -#: includes/fields/class-acf-field-wysiwyg.php:390 -msgid "TinyMCE will not be initialized until field is clicked" -msgstr "TinyMCE wordt niet geïnitialiseerd totdat er op het veld wordt geklikt" - -#: includes/fields/class-acf-field-wysiwyg.php:389 -msgid "Delay Initialization" -msgstr "Initialisatie uitstellen?" - -#: includes/fields/class-acf-field-wysiwyg.php:378 -msgid "Show Media Upload Buttons" -msgstr "Media-uploadknoppen weergeven?" - -#: includes/fields/class-acf-field-wysiwyg.php:362 -msgid "Toolbar" -msgstr "Toolbar" - -#: includes/fields/class-acf-field-wysiwyg.php:354 -msgid "Text Only" -msgstr "Alleen tekst" - -#: includes/fields/class-acf-field-wysiwyg.php:353 -msgid "Visual Only" -msgstr "Alleen visueel" - -#: includes/fields/class-acf-field-wysiwyg.php:352 -msgid "Visual & Text" -msgstr "Visueel & tekst" - -#: includes/fields/class-acf-field-wysiwyg.php:347 -msgid "Tabs" -msgstr "Tabs" - -#: includes/fields/class-acf-field-wysiwyg.php:285 -msgid "Click to initialize TinyMCE" -msgstr "Klik om TinyMCE te initialiseren" - -#: includes/fields/class-acf-field-wysiwyg.php:279 -msgctxt "Name for the Text editor tab (formerly HTML)" -msgid "Text" -msgstr "Tekst" - -#: includes/fields/class-acf-field-wysiwyg.php:278 -msgid "Visual" -msgstr "Visueel" - -#: includes/fields/class-acf-field-text.php:189 -#: includes/fields/class-acf-field-textarea.php:236 -msgid "Value must not exceed %d characters" -msgstr "De waarde mag niet langer zijn dan %d karakters" - -#: includes/fields/class-acf-field-text.php:124 -#: includes/fields/class-acf-field-textarea.php:124 -msgid "Leave blank for no limit" -msgstr "Laat leeg voor geen limiet" - -#: includes/fields/class-acf-field-text.php:123 -#: includes/fields/class-acf-field-textarea.php:123 -msgid "Character Limit" -msgstr "Karakterlimiet" - -#: includes/fields/class-acf-field-email.php:158 -#: includes/fields/class-acf-field-number.php:209 -#: includes/fields/class-acf-field-password.php:105 -#: includes/fields/class-acf-field-range.php:239 -#: includes/fields/class-acf-field-text.php:164 -msgid "Appears after the input" -msgstr "Verschijnt na de invoer" - -#: includes/fields/class-acf-field-email.php:157 -#: includes/fields/class-acf-field-number.php:208 -#: includes/fields/class-acf-field-password.php:104 -#: includes/fields/class-acf-field-range.php:238 -#: includes/fields/class-acf-field-text.php:163 -msgid "Append" -msgstr "Toevoegen" - -#: includes/fields/class-acf-field-email.php:148 -#: includes/fields/class-acf-field-number.php:199 -#: includes/fields/class-acf-field-password.php:95 -#: includes/fields/class-acf-field-range.php:229 -#: includes/fields/class-acf-field-text.php:154 -msgid "Appears before the input" -msgstr "Verschijnt vóór de invoer" - -#: includes/fields/class-acf-field-email.php:147 -#: includes/fields/class-acf-field-number.php:198 -#: includes/fields/class-acf-field-password.php:94 -#: includes/fields/class-acf-field-range.php:228 -#: includes/fields/class-acf-field-text.php:153 -msgid "Prepend" -msgstr "Voorvoegen" - -#: includes/fields/class-acf-field-email.php:138 -#: includes/fields/class-acf-field-number.php:179 -#: includes/fields/class-acf-field-password.php:85 -#: includes/fields/class-acf-field-text.php:144 -#: includes/fields/class-acf-field-textarea.php:156 -#: includes/fields/class-acf-field-url.php:122 -msgid "Appears within the input" -msgstr "Wordt weergegeven in de invoer" - -#: includes/fields/class-acf-field-email.php:137 -#: includes/fields/class-acf-field-number.php:178 -#: includes/fields/class-acf-field-password.php:84 -#: includes/fields/class-acf-field-text.php:143 -#: includes/fields/class-acf-field-textarea.php:155 -#: includes/fields/class-acf-field-url.php:121 -msgid "Placeholder Text" -msgstr "Plaatshouder tekst" - -#: includes/fields/class-acf-field-button-group.php:158 -#: includes/fields/class-acf-field-email.php:118 -#: includes/fields/class-acf-field-number.php:129 -#: includes/fields/class-acf-field-radio.php:203 -#: includes/fields/class-acf-field-range.php:165 -#: includes/fields/class-acf-field-text.php:104 -#: includes/fields/class-acf-field-textarea.php:104 -#: includes/fields/class-acf-field-url.php:102 -#: includes/fields/class-acf-field-wysiwyg.php:312 -msgid "Appears when creating a new post" -msgstr "Wordt weergegeven bij het maken van een nieuw bericht" - -#: includes/fields/class-acf-field-text.php:25 -msgid "Text" -msgstr "Tekst" - -#: includes/fields/class-acf-field-relationship.php:794 -msgid "%1$s requires at least %2$s selection" -msgid_plural "%1$s requires at least %2$s selections" -msgstr[0] "%1$s vereist minimaal %2$s selectie" -msgstr[1] "%1$s vereist minimaal %2$s selecties" - -#: includes/fields/class-acf-field-post_object.php:417 -#: includes/fields/class-acf-field-relationship.php:644 -msgid "Post ID" -msgstr "Bericht ID" - -#: includes/fields/class-acf-field-post_object.php:17 -#: includes/fields/class-acf-field-post_object.php:416 -#: includes/fields/class-acf-field-relationship.php:643 -msgid "Post Object" -msgstr "Bericht object" - -#: includes/fields/class-acf-field-relationship.php:676 -msgid "Maximum Posts" -msgstr "Maximum aantal berichten" - -#: includes/fields/class-acf-field-relationship.php:666 -msgid "Minimum Posts" -msgstr "Minimum aantal berichten" - -#: includes/admin/views/acf-field-group/options.php:183 -#: includes/admin/views/acf-post-type/advanced-settings.php:29 -#: includes/fields/class-acf-field-relationship.php:701 -msgid "Featured Image" -msgstr "Uitgelichte afbeelding" - -#: includes/fields/class-acf-field-relationship.php:697 -msgid "Selected elements will be displayed in each result" -msgstr "Geselecteerde elementen worden weergegeven in elk resultaat" - -#: includes/fields/class-acf-field-relationship.php:696 -msgid "Elements" -msgstr "Elementen" - -#: includes/fields/class-acf-field-relationship.php:630 -#: includes/fields/class-acf-field-taxonomy.php:20 -#: includes/fields/class-acf-field-taxonomy.php:692 -#: includes/locations/class-acf-location-taxonomy.php:22 -msgid "Taxonomy" -msgstr "Taxonomie" - -#: includes/fields/class-acf-field-relationship.php:629 -#: includes/locations/class-acf-location-post-type.php:22 -#: includes/post-types/class-acf-post-type.php:92 -msgid "Post Type" -msgstr "Berichttype" - -#: includes/fields/class-acf-field-relationship.php:623 -msgid "Filters" -msgstr "Filters" - -#: includes/fields/class-acf-field-page_link.php:499 -#: includes/fields/class-acf-field-post_object.php:404 -#: includes/fields/class-acf-field-relationship.php:616 -msgid "All taxonomies" -msgstr "Alle taxonomieën" - -#: includes/fields/class-acf-field-page_link.php:491 -#: includes/fields/class-acf-field-post_object.php:396 -#: includes/fields/class-acf-field-relationship.php:608 -msgid "Filter by Taxonomy" -msgstr "Filter op taxonomie" - -#: includes/fields/class-acf-field-page_link.php:469 -#: includes/fields/class-acf-field-post_object.php:374 -#: includes/fields/class-acf-field-relationship.php:586 -msgid "All post types" -msgstr "Alle berichttypen" - -#: includes/fields/class-acf-field-page_link.php:461 -#: includes/fields/class-acf-field-post_object.php:366 -#: includes/fields/class-acf-field-relationship.php:578 -msgid "Filter by Post Type" -msgstr "Filter op berichttype" - -#: includes/fields/class-acf-field-relationship.php:476 -msgid "Search..." -msgstr "Zoeken..." - -#: includes/fields/class-acf-field-relationship.php:406 -msgid "Select taxonomy" -msgstr "Taxonomie selecteren" - -#: includes/fields/class-acf-field-relationship.php:397 -msgid "Select post type" -msgstr "Selecteer berichttype" - -#: includes/fields/class-acf-field-relationship.php:61 -#: assets/build/js/acf-input.js:3930 assets/build/js/acf-input.js:4214 -msgid "No matches found" -msgstr "Geen overeenkomsten gevonden" - -#: includes/fields/class-acf-field-relationship.php:60 -#: assets/build/js/acf-input.js:3913 assets/build/js/acf-input.js:4193 -msgid "Loading" -msgstr "Laden" - -#: includes/fields/class-acf-field-relationship.php:59 -#: assets/build/js/acf-input.js:3818 assets/build/js/acf-input.js:4084 -msgid "Maximum values reached ( {max} values )" -msgstr "Maximale waarden bereikt ( {max} waarden )" - -#: includes/fields/class-acf-field-relationship.php:17 -msgid "Relationship" -msgstr "Verwantschap" - -#: includes/fields/class-acf-field-file.php:291 -#: includes/fields/class-acf-field-image.php:317 -msgid "Comma separated list. Leave blank for all types" -msgstr "Komma gescheiden lijst. Laat leeg voor alle typen" - -#: includes/fields/class-acf-field-file.php:290 -#: includes/fields/class-acf-field-image.php:316 -msgid "Allowed File Types" -msgstr "Toegestane bestandstypen" - -#: includes/fields/class-acf-field-file.php:278 -#: includes/fields/class-acf-field-image.php:280 -msgid "Maximum" -msgstr "Maximum" - -#: includes/fields/class-acf-field-file.php:154 -#: includes/fields/class-acf-field-file.php:270 -#: includes/fields/class-acf-field-file.php:282 -#: includes/fields/class-acf-field-image.php:271 -#: includes/fields/class-acf-field-image.php:307 -msgid "File size" -msgstr "Bestandsgrootte" - -#: includes/fields/class-acf-field-image.php:245 -#: includes/fields/class-acf-field-image.php:281 -msgid "Restrict which images can be uploaded" -msgstr "Beperken welke afbeeldingen kunnen worden geüpload" - -#: includes/fields/class-acf-field-file.php:266 -#: includes/fields/class-acf-field-image.php:244 -msgid "Minimum" -msgstr "Minimum" - -#: includes/fields/class-acf-field-file.php:235 -#: includes/fields/class-acf-field-image.php:210 -msgid "Uploaded to post" -msgstr "Geüpload naar bericht" - -#: includes/fields/class-acf-field-file.php:234 -#: includes/fields/class-acf-field-image.php:209 -#: includes/locations/class-acf-location-attachment.php:73 -#: includes/locations/class-acf-location-comment.php:61 -#: includes/locations/class-acf-location-nav-menu.php:74 -#: includes/locations/class-acf-location-taxonomy.php:63 -#: includes/locations/class-acf-location-user-form.php:71 -#: includes/locations/class-acf-location-user-role.php:78 -#: includes/locations/class-acf-location-widget.php:65 -msgid "All" -msgstr "Alle" - -#: includes/fields/class-acf-field-file.php:229 -#: includes/fields/class-acf-field-image.php:204 -msgid "Limit the media library choice" -msgstr "Beperk de keuze van de mediabibliotheek" - -#: includes/fields/class-acf-field-file.php:228 -#: includes/fields/class-acf-field-image.php:203 -msgid "Library" -msgstr "Bibliotheek" - -#: includes/fields/class-acf-field-image.php:336 -msgid "Preview Size" -msgstr "Voorbeeld grootte" - -#: includes/fields/class-acf-field-image.php:195 -msgid "Image ID" -msgstr "Afbeelding ID" - -#: includes/fields/class-acf-field-image.php:194 -msgid "Image URL" -msgstr "Afbeelding URL" - -#: includes/fields/class-acf-field-image.php:193 -msgid "Image Array" -msgstr "Afbeelding array" - -#: includes/fields/class-acf-field-button-group.php:168 -#: includes/fields/class-acf-field-checkbox.php:372 -#: includes/fields/class-acf-field-file.php:213 -#: includes/fields/class-acf-field-link.php:171 -#: includes/fields/class-acf-field-radio.php:213 -msgid "Specify the returned value on front end" -msgstr "De geretourneerde waarde op de front-end opgeven" - -#: includes/fields/class-acf-field-button-group.php:167 -#: includes/fields/class-acf-field-checkbox.php:371 -#: includes/fields/class-acf-field-file.php:212 -#: includes/fields/class-acf-field-link.php:170 -#: includes/fields/class-acf-field-radio.php:212 -#: includes/fields/class-acf-field-taxonomy.php:736 -msgid "Return Value" -msgstr "Retour waarde" - -#: includes/fields/class-acf-field-image.php:162 -msgid "Add Image" -msgstr "Afbeelding toevoegen" - -#: includes/fields/class-acf-field-image.php:162 -msgid "No image selected" -msgstr "Geen afbeelding geselecteerd" - -#: includes/assets.php:352 includes/fields/class-acf-field-file.php:162 -#: includes/fields/class-acf-field-image.php:142 -#: includes/fields/class-acf-field-link.php:145 assets/build/js/acf.js:1563 -#: assets/build/js/acf.js:1657 -msgid "Remove" -msgstr "Verwijderen" - -#: includes/admin/views/acf-field-group/field.php:76 -#: includes/fields/class-acf-field-file.php:160 -#: includes/fields/class-acf-field-image.php:140 -#: includes/fields/class-acf-field-link.php:145 -msgid "Edit" -msgstr "Bewerken" - -#: includes/fields/class-acf-field-image.php:70 includes/media.php:55 -#: assets/build/js/acf-input.js:6837 assets/build/js/acf-input.js:7320 -msgid "All images" -msgstr "Alle afbeeldingen" - -#: includes/fields/class-acf-field-image.php:69 -#: assets/build/js/acf-input.js:3181 assets/build/js/acf-input.js:3399 -msgid "Update Image" -msgstr "Afbeelding updaten" - -#: includes/fields/class-acf-field-image.php:68 -#: assets/build/js/acf-input.js:3180 assets/build/js/acf-input.js:3398 -msgid "Edit Image" -msgstr "Afbeelding bewerken" - -#: includes/fields/class-acf-field-image.php:67 -#: assets/build/js/acf-input.js:3156 assets/build/js/acf-input.js:3373 -msgid "Select Image" -msgstr "Selecteer afbeelding" - -#: includes/fields/class-acf-field-image.php:25 -msgid "Image" -msgstr "Afbeelding" - -#: includes/fields/class-acf-field-message.php:125 -msgid "Allow HTML markup to display as visible text instead of rendering" -msgstr "" -"Sta toe dat HTML markeringen worden weergegeven als zichtbare tekst in " -"plaats van als weergave" - -#: includes/fields/class-acf-field-message.php:124 -msgid "Escape HTML" -msgstr "HTML escapen" - -#: includes/fields/class-acf-field-message.php:116 -#: includes/fields/class-acf-field-textarea.php:172 -msgid "No Formatting" -msgstr "Geen opmaak" - -#: includes/fields/class-acf-field-message.php:115 -#: includes/fields/class-acf-field-textarea.php:171 -msgid "Automatically add <br>" -msgstr "Automatisch <br> toevoegen;" - -#: includes/fields/class-acf-field-message.php:114 -#: includes/fields/class-acf-field-textarea.php:170 -msgid "Automatically add paragraphs" -msgstr "Automatisch alinea's toevoegen" - -#: includes/fields/class-acf-field-message.php:110 -#: includes/fields/class-acf-field-textarea.php:166 -msgid "Controls how new lines are rendered" -msgstr "Bepaalt hoe nieuwe regels worden weergegeven" - -#: includes/fields/class-acf-field-message.php:109 -#: includes/fields/class-acf-field-textarea.php:165 -msgid "New Lines" -msgstr "Nieuwe regels" - -#: includes/fields/class-acf-field-date_picker.php:232 -#: includes/fields/class-acf-field-date_time_picker.php:220 -msgid "Week Starts On" -msgstr "Week begint op" - -#: includes/fields/class-acf-field-date_picker.php:201 -msgid "The format used when saving a value" -msgstr "Het format dat wordt gebruikt bij het opslaan van een waarde" - -#: includes/fields/class-acf-field-date_picker.php:200 -msgid "Save Format" -msgstr "Format opslaan" - -#: includes/fields/class-acf-field-date_picker.php:67 -msgctxt "Date Picker JS weekHeader" -msgid "Wk" -msgstr "Wk" - -#: includes/fields/class-acf-field-date_picker.php:66 -msgctxt "Date Picker JS prevText" -msgid "Prev" -msgstr "Vorige" - -#: includes/fields/class-acf-field-date_picker.php:65 -msgctxt "Date Picker JS nextText" -msgid "Next" -msgstr "Volgende" - -#: includes/fields/class-acf-field-date_picker.php:64 -msgctxt "Date Picker JS currentText" -msgid "Today" -msgstr "Vandaag" - -#: includes/fields/class-acf-field-date_picker.php:63 -msgctxt "Date Picker JS closeText" -msgid "Done" -msgstr "Klaar" - -#: includes/fields/class-acf-field-date_picker.php:25 -msgid "Date Picker" -msgstr "Datumkiezer" - -#: includes/fields/class-acf-field-image.php:248 -#: includes/fields/class-acf-field-image.php:284 -#: includes/fields/class-acf-field-oembed.php:268 -msgid "Width" -msgstr "Breedte" - -#: includes/fields/class-acf-field-oembed.php:265 -#: includes/fields/class-acf-field-oembed.php:277 -msgid "Embed Size" -msgstr "Insluit grootte" - -#: includes/fields/class-acf-field-oembed.php:222 -msgid "Enter URL" -msgstr "URL invoeren" - -#: includes/fields/class-acf-field-oembed.php:25 -msgid "oEmbed" -msgstr "oEmbed" - -#: includes/fields/class-acf-field-true_false.php:184 -msgid "Text shown when inactive" -msgstr "Tekst getoond indien inactief" - -#: includes/fields/class-acf-field-true_false.php:183 -msgid "Off Text" -msgstr "Uit-tekst" - -#: includes/fields/class-acf-field-true_false.php:168 -msgid "Text shown when active" -msgstr "Tekst getoond indien actief" - -#: includes/fields/class-acf-field-true_false.php:167 -msgid "On Text" -msgstr "Aan-tekst" - -#: includes/fields/class-acf-field-select.php:450 -#: includes/fields/class-acf-field-true_false.php:199 -msgid "Stylized UI" -msgstr "Gestileerde UI" - -#: includes/fields/class-acf-field-button-group.php:157 -#: includes/fields/class-acf-field-checkbox.php:361 -#: includes/fields/class-acf-field-color_picker.php:156 -#: includes/fields/class-acf-field-email.php:117 -#: includes/fields/class-acf-field-number.php:128 -#: includes/fields/class-acf-field-radio.php:202 -#: includes/fields/class-acf-field-range.php:164 -#: includes/fields/class-acf-field-select.php:380 -#: includes/fields/class-acf-field-text.php:103 -#: includes/fields/class-acf-field-textarea.php:103 -#: includes/fields/class-acf-field-true_false.php:147 -#: includes/fields/class-acf-field-url.php:101 -#: includes/fields/class-acf-field-wysiwyg.php:311 -msgid "Default Value" -msgstr "Standaardwaarde" - -#: includes/fields/class-acf-field-true_false.php:138 -msgid "Displays text alongside the checkbox" -msgstr "Toont tekst naast het selectievakje" - -#: includes/fields/class-acf-field-message.php:26 -#: includes/fields/class-acf-field-message.php:99 -#: includes/fields/class-acf-field-true_false.php:137 -msgid "Message" -msgstr "Bericht" - -#: includes/assets.php:351 includes/fields/class-acf-field-true_false.php:86 -#: includes/fields/class-acf-field-true_false.php:187 -#: assets/build/js/acf.js:1740 assets/build/js/acf.js:1857 -msgid "No" -msgstr "Nee" - -#: includes/assets.php:350 includes/fields/class-acf-field-true_false.php:83 -#: includes/fields/class-acf-field-true_false.php:171 -#: assets/build/js/acf.js:1739 assets/build/js/acf.js:1856 -msgid "Yes" -msgstr "Ja" - -#: includes/fields/class-acf-field-true_false.php:25 -msgid "True / False" -msgstr "Waar / Niet waar" - -#: includes/fields/class-acf-field-group.php:474 -msgid "Row" -msgstr "Rij" - -#: includes/fields/class-acf-field-group.php:473 -msgid "Table" -msgstr "Tabel" - -#: includes/admin/post-types/admin-field-group.php:140 -#: includes/fields/class-acf-field-group.php:472 -msgid "Block" -msgstr "Blok" - -#: includes/fields/class-acf-field-group.php:467 -msgid "Specify the style used to render the selected fields" -msgstr "" -"Geef de stijl op die wordt gebruikt om de geselecteerde velden weer te geven" - -#: includes/fields.php:356 includes/fields/class-acf-field-button-group.php:215 -#: includes/fields/class-acf-field-checkbox.php:435 -#: includes/fields/class-acf-field-group.php:466 -#: includes/fields/class-acf-field-radio.php:286 -msgid "Layout" -msgstr "Lay-out" - -#: includes/fields/class-acf-field-group.php:450 -msgid "Sub Fields" -msgstr "Subvelden" - -#: includes/fields/class-acf-field-group.php:25 -msgid "Group" -msgstr "Groep" - -#: includes/fields/class-acf-field-google-map.php:235 -msgid "Customize the map height" -msgstr "De kaarthoogte aanpassen" - -#: includes/fields/class-acf-field-google-map.php:234 -#: includes/fields/class-acf-field-image.php:259 -#: includes/fields/class-acf-field-image.php:295 -#: includes/fields/class-acf-field-oembed.php:280 -msgid "Height" -msgstr "Hoogte" - -#: includes/fields/class-acf-field-google-map.php:223 -msgid "Set the initial zoom level" -msgstr "Het initiële zoomniveau instellen" - -#: includes/fields/class-acf-field-google-map.php:222 -msgid "Zoom" -msgstr "Zoom" - -#: includes/fields/class-acf-field-google-map.php:196 -#: includes/fields/class-acf-field-google-map.php:209 -msgid "Center the initial map" -msgstr "De eerste kaart centreren" - -#: includes/fields/class-acf-field-google-map.php:195 -#: includes/fields/class-acf-field-google-map.php:208 -msgid "Center" -msgstr "Midden" - -#: includes/fields/class-acf-field-google-map.php:163 -msgid "Search for address..." -msgstr "Zoek naar adres..." - -#: includes/fields/class-acf-field-google-map.php:160 -msgid "Find current location" -msgstr "Huidige locatie opzoeken" - -#: includes/fields/class-acf-field-google-map.php:159 -msgid "Clear location" -msgstr "Locatie wissen" - -#: includes/fields/class-acf-field-google-map.php:158 -#: includes/fields/class-acf-field-relationship.php:628 -msgid "Search" -msgstr "Zoeken" - -#: includes/fields/class-acf-field-google-map.php:63 -#: assets/build/js/acf-input.js:2840 assets/build/js/acf-input.js:3026 -msgid "Sorry, this browser does not support geolocation" -msgstr "Deze browser ondersteunt geen geolocatie" - -#: includes/fields/class-acf-field-google-map.php:25 -msgid "Google Map" -msgstr "Google Map" - -#: includes/fields/class-acf-field-date_picker.php:212 -#: includes/fields/class-acf-field-date_time_picker.php:201 -#: includes/fields/class-acf-field-time_picker.php:132 -msgid "The format returned via template functions" -msgstr "Het format dat wordt geretourneerd via templatefuncties" - -#: includes/fields/class-acf-field-color_picker.php:180 -#: includes/fields/class-acf-field-date_picker.php:211 -#: includes/fields/class-acf-field-date_time_picker.php:200 -#: includes/fields/class-acf-field-image.php:187 -#: includes/fields/class-acf-field-post_object.php:411 -#: includes/fields/class-acf-field-relationship.php:638 -#: includes/fields/class-acf-field-select.php:391 -#: includes/fields/class-acf-field-time_picker.php:131 -#: includes/fields/class-acf-field-user.php:66 -msgid "Return Format" -msgstr "Retour format" - -#: includes/fields/class-acf-field-date_picker.php:190 -#: includes/fields/class-acf-field-date_picker.php:221 -#: includes/fields/class-acf-field-date_time_picker.php:192 -#: includes/fields/class-acf-field-date_time_picker.php:210 -#: includes/fields/class-acf-field-time_picker.php:123 -#: includes/fields/class-acf-field-time_picker.php:139 -msgid "Custom:" -msgstr "Aangepast:" - -#: includes/fields/class-acf-field-date_picker.php:182 -#: includes/fields/class-acf-field-date_time_picker.php:183 -#: includes/fields/class-acf-field-time_picker.php:116 -msgid "The format displayed when editing a post" -msgstr "Het format dat wordt weergegeven bij het bewerken van een bericht" - -#: includes/fields/class-acf-field-date_picker.php:181 -#: includes/fields/class-acf-field-date_time_picker.php:182 -#: includes/fields/class-acf-field-time_picker.php:115 -msgid "Display Format" -msgstr "Weergave format" - -#: includes/fields/class-acf-field-time_picker.php:25 -msgid "Time Picker" -msgstr "Tijdkiezer" - -#. translators: counts for inactive field groups -#: acf.php:503 -msgid "Inactive (%s)" -msgid_plural "Inactive (%s)" -msgstr[0] "Inactief (%s)" -msgstr[1] "Inactief (%s)" - -#: acf.php:462 -msgid "No Fields found in Trash" -msgstr "Geen velden gevonden in de prullenbak" - -#: acf.php:461 -msgid "No Fields found" -msgstr "Geen velden gevonden" - -#: acf.php:460 -msgid "Search Fields" -msgstr "Velden zoeken" - -#: acf.php:459 -msgid "View Field" -msgstr "Veld bekijken" - -#: acf.php:458 includes/admin/views/acf-field-group/fields.php:115 -msgid "New Field" -msgstr "Nieuw veld" - -#: acf.php:457 -msgid "Edit Field" -msgstr "Veld bewerken" - -#: acf.php:456 -msgid "Add New Field" -msgstr "Nieuw veld toevoegen" - -#: acf.php:454 -msgid "Field" -msgstr "Veld" - -#: acf.php:453 includes/admin/post-types/admin-field-group.php:163 -#: includes/admin/post-types/admin-field-groups.php:119 -#: includes/admin/views/acf-field-group/fields.php:32 -msgid "Fields" -msgstr "Velden" - -#: acf.php:428 -msgid "No Field Groups found in Trash" -msgstr "Geen veldgroepen gevonden in de prullenbak" - -#: acf.php:427 -msgid "No Field Groups found" -msgstr "Geen veldgroepen gevonden" - -#: acf.php:426 -msgid "Search Field Groups" -msgstr "Veldgroepen zoeken" - -#: acf.php:425 -msgid "View Field Group" -msgstr "Veldgroep bekijken" - -#: acf.php:424 -msgid "New Field Group" -msgstr "Nieuwe veldgroep" - -#: acf.php:423 -msgid "Edit Field Group" -msgstr "Veldgroep bewerken" - -#: acf.php:422 -msgid "Add New Field Group" -msgstr "Nieuwe veldgroep toevoegen" - -#: acf.php:421 acf.php:455 -#: includes/admin/views/acf-post-type/advanced-settings.php:219 -#: includes/admin/views/acf-post-type/advanced-settings.php:221 -#: includes/post-types/class-acf-post-type.php:93 -#: includes/post-types/class-acf-taxonomy.php:92 -msgid "Add New" -msgstr "Nieuwe toevoegen" - -#: acf.php:420 -msgid "Field Group" -msgstr "Veldgroep" - -#: acf.php:419 includes/admin/post-types/admin-field-groups.php:78 -#: includes/admin/post-types/admin-post-types.php:138 -#: includes/admin/post-types/admin-taxonomies.php:138 -msgid "Field Groups" -msgstr "Veldgroepen" - -#. Description of the plugin -msgid "Customize WordPress with powerful, professional and intuitive fields." -msgstr "Pas WordPress aan met krachtige, professionele en intuïtieve velden." - -#. Plugin URI of the plugin -msgid "https://www.advancedcustomfields.com" -msgstr "https://www.advancedcustomfields.com" - -#. Plugin Name of the plugin -#: acf.php:94 -msgid "Advanced Custom Fields" -msgstr "Advanced Custom Fields" - -#: pro/acf-pro.php:27 -msgid "Advanced Custom Fields PRO" -msgstr "Advanced Custom Fields PRO" - -#: pro/blocks.php:170 -msgid "Block type name is required." -msgstr "" - -#. translators: The name of the block type -#: pro/blocks.php:178 -msgid "Block type \"%s\" is already registered." -msgstr "" - -#: pro/blocks.php:726 -msgid "Switch to Edit" -msgstr "" - -#: pro/blocks.php:727 -msgid "Switch to Preview" -msgstr "" - -#: pro/blocks.php:728 -msgid "Change content alignment" -msgstr "" - -#. translators: %s: Block type title -#: pro/blocks.php:731 -msgid "%s settings" -msgstr "" - -#: pro/blocks.php:936 -msgid "This block contains no editable fields." -msgstr "" - -#. translators: %s: an admin URL to the field group edit screen -#: pro/blocks.php:942 -msgid "" -"Assign a field group to add fields to " -"this block." -msgstr "" - -#: pro/options-page.php:78 -msgid "Options Updated" -msgstr "Opties bijgewerkt" - -#: pro/updates.php:99 -msgid "" -"To enable updates, please enter your license key on the Updates page. If you don't have a licence key, please see details & pricing." -msgstr "" - -#: pro/updates.php:159 -msgid "" -"ACF Activation Error. Your defined license key has changed, but an " -"error occurred when deactivating your old licence" -msgstr "" - -#: pro/updates.php:154 -msgid "" -"ACF Activation Error. Your defined license key has changed, but an " -"error occurred when connecting to activation server" -msgstr "" - -#: pro/updates.php:192 -msgid "ACF Activation Error" -msgstr "" - -#: pro/updates.php:187 -msgid "" -"ACF Activation Error. An error occurred when connecting to activation " -"server" -msgstr "" - -#: pro/updates.php:279 -msgid "Check Again" -msgstr "Controleer op updates" - -#: pro/updates.php:593 -msgid "ACF Activation Error. Could not connect to activation server" -msgstr "" - -#: pro/admin/admin-options-page.php:195 -msgid "Publish" -msgstr "Publiceer" - -#: pro/admin/admin-options-page.php:199 -msgid "" -"No Custom Field Groups found for this options page. Create a " -"Custom Field Group" -msgstr "" -"Er zijn geen groepen gevonden voor deze optie pagina. Maak " -"een extra velden groep" - -#: pro/admin/admin-updates.php:52 -msgid "Error. Could not connect to update server" -msgstr "Fout. Kan niet verbinden met de update server" - -#: pro/admin/admin-updates.php:212 -msgid "" -"Error. Could not authenticate update package. Please check again or " -"deactivate and reactivate your ACF PRO license." -msgstr "" - -#: pro/admin/admin-updates.php:199 -msgid "" -"Error. Your license for this site has expired or been deactivated. " -"Please reactivate your ACF PRO license." -msgstr "" - -#: pro/fields/class-acf-field-clone.php:27, -#: pro/fields/class-acf-field-repeater.php:31 -msgid "" -"Allows you to select and display existing fields. It does not duplicate any " -"fields in the database, but loads and displays the selected fields at run-" -"time. The Clone field can either replace itself with the selected fields or " -"display the selected fields as a group of subfields." -msgstr "" - -#: pro/fields/class-acf-field-clone.php:819 -msgid "Select one or more fields you wish to clone" -msgstr "Selecteer een of meer velden om te klonen" - -#: pro/fields/class-acf-field-clone.php:838 -msgid "Display" -msgstr "Toon" - -#: pro/fields/class-acf-field-clone.php:839 -msgid "Specify the style used to render the clone field" -msgstr "Kies de gebruikte stijl bij het renderen van het gekloonde veld" - -#: pro/fields/class-acf-field-clone.php:844 -msgid "Group (displays selected fields in a group within this field)" -msgstr "Groep (toont geselecteerde velden in een groep binnen dit veld)" - -#: pro/fields/class-acf-field-clone.php:845 -msgid "Seamless (replaces this field with selected fields)" -msgstr "Naadloos (vervangt dit veld met de geselecteerde velden)" - -#: pro/fields/class-acf-field-clone.php:868 -msgid "Labels will be displayed as %s" -msgstr "Labels worden getoond als %s" - -#: pro/fields/class-acf-field-clone.php:873 -msgid "Prefix Field Labels" -msgstr "Prefix veld labels" - -#: pro/fields/class-acf-field-clone.php:883 -msgid "Values will be saved as %s" -msgstr "Waarden worden opgeslagen als %s" - -#: pro/fields/class-acf-field-clone.php:888 -msgid "Prefix Field Names" -msgstr "Prefix veld namen" - -#: pro/fields/class-acf-field-clone.php:1005 -msgid "Unknown field" -msgstr "Onbekend veld" - -#: pro/fields/class-acf-field-clone.php:1042 -msgid "Unknown field group" -msgstr "Onbekend groep" - -#: pro/fields/class-acf-field-clone.php:1046 -msgid "All fields from %s field group" -msgstr "Alle velden van %s veld groep" - -#: pro/fields/class-acf-field-flexible-content.php:27 -msgid "" -"Allows you to define, create and manage content with total control by " -"creating layouts that contain subfields that content editors can choose from." -msgstr "" - -#: pro/fields/class-acf-field-flexible-content.php:36, -#: pro/fields/class-acf-field-repeater.php:103, -#: pro/fields/class-acf-field-repeater.php:297 -msgid "Add Row" -msgstr "Nieuwe regel" - -#: pro/fields/class-acf-field-flexible-content.php:76, -#: pro/fields/class-acf-field-flexible-content.php:943, -#: pro/fields/class-acf-field-flexible-content.php:1022 -#, fuzzy -#| msgid "layout" -msgid "layout" -msgid_plural "layouts" -msgstr[0] "layout" -msgstr[1] "layout" - -#: pro/fields/class-acf-field-flexible-content.php:77 -msgid "layouts" -msgstr "layouts" - -#: pro/fields/class-acf-field-flexible-content.php:81, -#: pro/fields/class-acf-field-flexible-content.php:942, -#: pro/fields/class-acf-field-flexible-content.php:1021 -msgid "This field requires at least {min} {label} {identifier}" -msgstr "Dit veld vereist op zijn minst {min} {label} {identifier}" - -#: pro/fields/class-acf-field-flexible-content.php:82 -msgid "This field has a limit of {max} {label} {identifier}" -msgstr "" - -#: pro/fields/class-acf-field-flexible-content.php:85 -msgid "{available} {label} {identifier} available (max {max})" -msgstr "{available} {label} {identifier} beschikbaar (max {max})" - -#: pro/fields/class-acf-field-flexible-content.php:86 -msgid "{required} {label} {identifier} required (min {min})" -msgstr "{required} {label} {identifier} verplicht (min {min})" - -#: pro/fields/class-acf-field-flexible-content.php:89 -msgid "Flexible Content requires at least 1 layout" -msgstr "Flexibele content vereist minimaal 1 layout" - -#: pro/fields/class-acf-field-flexible-content.php:282 -msgid "Click the \"%s\" button below to start creating your layout" -msgstr "Klik op de \"%s\" button om een nieuwe lay-out te maken" - -#: pro/fields/class-acf-field-flexible-content.php:423 -msgid "Add layout" -msgstr "Layout toevoegen" - -#: pro/fields/class-acf-field-flexible-content.php:424 -msgid "Duplicate layout" -msgstr "" - -#: pro/fields/class-acf-field-flexible-content.php:425 -msgid "Remove layout" -msgstr "Verwijder layout" - -#: pro/fields/class-acf-field-flexible-content.php:426, -#: pro/fields/class-acf-repeater-table.php:382 -msgid "Click to toggle" -msgstr "Klik om in/uit te klappen" - -#: pro/fields/class-acf-field-flexible-content.php:562 -msgid "Delete Layout" -msgstr "Verwijder layout" - -#: pro/fields/class-acf-field-flexible-content.php:563 -msgid "Duplicate Layout" -msgstr "Dupliceer layout" - -#: pro/fields/class-acf-field-flexible-content.php:564 -msgid "Add New Layout" -msgstr "Nieuwe layout" - -#: pro/fields/class-acf-field-flexible-content.php:564 -#, fuzzy -#| msgid "Add layout" -msgid "Add Layout" -msgstr "Layout toevoegen" - -#: pro/fields/class-acf-field-flexible-content.php:647 -msgid "Min" -msgstr "Min" - -#: pro/fields/class-acf-field-flexible-content.php:662 -msgid "Max" -msgstr "Max" - -#: pro/fields/class-acf-field-flexible-content.php:705 -msgid "Minimum Layouts" -msgstr "Minimale layouts" - -#: pro/fields/class-acf-field-flexible-content.php:716 -msgid "Maximum Layouts" -msgstr "Maximale layouts" - -#: pro/fields/class-acf-field-flexible-content.php:727, -#: pro/fields/class-acf-field-repeater.php:293 -msgid "Button Label" -msgstr "Button label" - -#: pro/fields/class-acf-field-flexible-content.php:1710, -#: pro/fields/class-acf-field-repeater.php:918 -msgid "%s must be of type array or null." -msgstr "" - -#: pro/fields/class-acf-field-flexible-content.php:1721 -msgid "%1$s must contain at least %2$s %3$s layout." -msgid_plural "%1$s must contain at least %2$s %3$s layouts." -msgstr[0] "" -msgstr[1] "" - -#: pro/fields/class-acf-field-flexible-content.php:1737 -msgid "%1$s must contain at most %2$s %3$s layout." -msgid_plural "%1$s must contain at most %2$s %3$s layouts." -msgstr[0] "" -msgstr[1] "" - -#: pro/fields/class-acf-field-gallery.php:27 -msgid "" -"An interactive interface for managing a collection of attachments, such as " -"images." -msgstr "" - -#: pro/fields/class-acf-field-gallery.php:77 -msgid "Add Image to Gallery" -msgstr "Voeg afbeelding toe aan galerij" - -#: pro/fields/class-acf-field-gallery.php:78 -msgid "Maximum selection reached" -msgstr "Maximale selectie bereikt" - -#: pro/fields/class-acf-field-gallery.php:324 -msgid "Length" -msgstr "Lengte" - -#: pro/fields/class-acf-field-gallery.php:368 -msgid "Caption" -msgstr "Onderschrift" - -#: pro/fields/class-acf-field-gallery.php:380 -msgid "Alt Text" -msgstr "Alt tekst" - -#: pro/fields/class-acf-field-gallery.php:504 -msgid "Add to gallery" -msgstr "Afbeelding(en) toevoegen" - -#: pro/fields/class-acf-field-gallery.php:508 -msgid "Bulk actions" -msgstr "Acties" - -#: pro/fields/class-acf-field-gallery.php:509 -msgid "Sort by date uploaded" -msgstr "Sorteer op datum geüpload" - -#: pro/fields/class-acf-field-gallery.php:510 -msgid "Sort by date modified" -msgstr "Sorteer op datum aangepast" - -#: pro/fields/class-acf-field-gallery.php:511 -msgid "Sort by title" -msgstr "Sorteer op titel" - -#: pro/fields/class-acf-field-gallery.php:512 -msgid "Reverse current order" -msgstr "Keer volgorde om" - -#: pro/fields/class-acf-field-gallery.php:524 -msgid "Close" -msgstr "Sluiten" - -#: pro/fields/class-acf-field-gallery.php:615 -msgid "Minimum Selection" -msgstr "Minimale selectie" - -#: pro/fields/class-acf-field-gallery.php:625 -msgid "Maximum Selection" -msgstr "Maximale selectie" - -#: pro/fields/class-acf-field-gallery.php:707 -msgid "Allowed file types" -msgstr "Toegestane bestandstypen" - -#: pro/fields/class-acf-field-gallery.php:727 -msgid "Insert" -msgstr "Invoegen" - -#: pro/fields/class-acf-field-gallery.php:728 -msgid "Specify where new attachments are added" -msgstr "Geef aan waar nieuwe bijlagen worden toegevoegd" - -#: pro/fields/class-acf-field-gallery.php:732 -msgid "Append to the end" -msgstr "Toevoegen aan het einde" - -#: pro/fields/class-acf-field-gallery.php:733 -msgid "Prepend to the beginning" -msgstr "Toevoegen aan het begin" - -#: pro/fields/class-acf-field-repeater.php:66, -#: pro/fields/class-acf-field-repeater.php:463 -msgid "Minimum rows not reached ({min} rows)" -msgstr "Minimum aantal rijen bereikt ({min} rijen)" - -#: pro/fields/class-acf-field-repeater.php:67 -msgid "Maximum rows reached ({max} rows)" -msgstr "Maximum aantal rijen bereikt ({max} rijen)" - -#: pro/fields/class-acf-field-repeater.php:68 -msgid "Error loading page" -msgstr "" - -#: pro/fields/class-acf-field-repeater.php:69 -msgid "Order will be assigned upon save" -msgstr "" - -#: pro/fields/class-acf-field-repeater.php:196 -msgid "Useful for fields with a large number of rows." -msgstr "" - -#: pro/fields/class-acf-field-repeater.php:207 -msgid "Rows Per Page" -msgstr "" - -#: pro/fields/class-acf-field-repeater.php:208 -msgid "Set the number of rows to be displayed on a page." -msgstr "" - -#: pro/fields/class-acf-field-repeater.php:240 -msgid "Minimum Rows" -msgstr "Minimum aantal rijen" - -#: pro/fields/class-acf-field-repeater.php:251 -msgid "Maximum Rows" -msgstr "Maximum aantal rijen" - -#: pro/fields/class-acf-field-repeater.php:281 -msgid "Collapsed" -msgstr "Ingeklapt" - -#: pro/fields/class-acf-field-repeater.php:282 -msgid "Select a sub field to show when row is collapsed" -msgstr "Selecteer een sub-veld om te tonen wanneer rij dichtgeklapt is" - -#: pro/fields/class-acf-field-repeater.php:1060 -msgid "Invalid field key or name." -msgstr "" - -#: pro/fields/class-acf-field-repeater.php:1069 -msgid "There was an error retrieving the field." -msgstr "" - -#: pro/fields/class-acf-repeater-table.php:369 -#, fuzzy -#| msgid "Drag to reorder" -msgid "Click to reorder" -msgstr "Sleep om te sorteren" - -#: pro/fields/class-acf-repeater-table.php:402 -msgid "Add row" -msgstr "Nieuwe regel" - -#: pro/fields/class-acf-repeater-table.php:403 -msgid "Duplicate row" -msgstr "" - -#: pro/fields/class-acf-repeater-table.php:404 -msgid "Remove row" -msgstr "Verwijder regel" - -#: pro/fields/class-acf-repeater-table.php:448, -#: pro/fields/class-acf-repeater-table.php:465, -#: pro/fields/class-acf-repeater-table.php:466 -msgid "Current Page" -msgstr "" - -#: pro/fields/class-acf-repeater-table.php:456, -#: pro/fields/class-acf-repeater-table.php:457 -#, fuzzy -#| msgid "Front Page" -msgid "First Page" -msgstr "Hoofdpagina" - -#: pro/fields/class-acf-repeater-table.php:460, -#: pro/fields/class-acf-repeater-table.php:461 -#, fuzzy -#| msgid "Posts Page" -msgid "Previous Page" -msgstr "Berichten pagina" - -#. translators: 1: Current page, 2: Total pages. -#: pro/fields/class-acf-repeater-table.php:470 -msgctxt "paging" -msgid "%1$s of %2$s" -msgstr "" - -#: pro/fields/class-acf-repeater-table.php:477, -#: pro/fields/class-acf-repeater-table.php:478 -#, fuzzy -#| msgid "Front Page" -msgid "Next Page" -msgstr "Hoofdpagina" - -#: pro/fields/class-acf-repeater-table.php:481, -#: pro/fields/class-acf-repeater-table.php:482 -#, fuzzy -#| msgid "Posts Page" -msgid "Last Page" -msgstr "Berichten pagina" - -#: pro/locations/class-acf-location-block.php:71 -msgid "No block types exist" -msgstr "" - -#: pro/locations/class-acf-location-options-page.php:70 -msgid "No options pages exist" -msgstr "Er zijn nog geen optie pagina's" - -#: pro/admin/views/html-settings-updates.php:6 -msgid "Deactivate License" -msgstr "Licentiecode deactiveren" - -#: pro/admin/views/html-settings-updates.php:6 -msgid "Activate License" -msgstr "Activeer licentiecode" - -#: pro/admin/views/html-settings-updates.php:16 -msgid "License Information" -msgstr "Licentie informatie" - -#: pro/admin/views/html-settings-updates.php:34 -msgid "" -"To unlock updates, please enter your license key below. If you don't have a " -"licence key, please see details & pricing." -msgstr "" -"Om updates te ontvangen vul je hieronder je licentiecode in. Nog geen " -"licentiecode? Bekijk details & prijzen." - -#: pro/admin/views/html-settings-updates.php:37 -msgid "License Key" -msgstr "Licentiecode" - -#: pro/admin/views/html-settings-updates.php:22 -msgid "Your license key is defined in wp-config.php." -msgstr "" - -#: pro/admin/views/html-settings-updates.php:29 -msgid "Retry Activation" -msgstr "" - -#: pro/admin/views/html-settings-updates.php:61 -msgid "Update Information" -msgstr "Update informatie" - -#: pro/admin/views/html-settings-updates.php:68 -msgid "Current Version" -msgstr "Huidige versie" - -#: pro/admin/views/html-settings-updates.php:76 -msgid "Latest Version" -msgstr "Nieuwste versie" - -#: pro/admin/views/html-settings-updates.php:84 -msgid "Update Available" -msgstr "Update beschikbaar" - -#: pro/admin/views/html-settings-updates.php:98 -msgid "Upgrade Notice" -msgstr "Upgrade opmerking" - -#: pro/admin/views/html-settings-updates.php:126 -msgid "Check For Updates" -msgstr "" - -#: pro/admin/views/html-settings-updates.php:121 -#, fuzzy -#| msgid "Please enter your license key above to unlock updates" -msgid "Enter your license key to unlock updates" -msgstr "Vul uw licentiecode hierboven in om updates te ontvangen" - -#: pro/admin/views/html-settings-updates.php:119 -msgid "Update Plugin" -msgstr "Update plugin" - -#: pro/admin/views/html-settings-updates.php:117 -msgid "Please reactivate your license to unlock updates" -msgstr "" diff --git a/lang/acf-nl_NL_formal.mo b/lang/acf-nl_NL_formal.mo deleted file mode 100644 index 0afddf0..0000000 Binary files a/lang/acf-nl_NL_formal.mo and /dev/null differ diff --git a/lang/acf-nl_NL_formal.po b/lang/acf-nl_NL_formal.po deleted file mode 100644 index 85bfa0e..0000000 --- a/lang/acf-nl_NL_formal.po +++ /dev/null @@ -1,5880 +0,0 @@ -# Advanced Custom Fields Translations are a combination of translate.wordpress.org contributions, -# combined with user contributed strings for the PRO version. -# Translations from translate.wordpress.org take priority over translations in this file. -# translate.wordpress.org contributions are synced at the time of each release. -# -# If you would like to contribute translations, please visit -# https://translate.wordpress.org/projects/wp-plugins/advanced-custom-fields/stable/ -# -# For additional ACF PRO strings, please submit a pull request over on the ACF GitHub repo at -# http://github.com/advancedcustomfields/acf using the .pot (and any existing .po) files in /lang/pro/ -# -# This file is distributed under the same license as Advanced Custom Fields. -msgid "" -msgstr "" -"PO-Revision-Date: 2023-11-28T09:14:32+00:00\n" -"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n" -"Language: nl_NL_formal\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: gettext\n" -"Project-Id-Version: Advanced Custom Fields\n" - -#: includes/admin/views/global/navigation.php:221 -msgid "Renew ACF PRO License" -msgstr "Vernieuw ACF PRO licentie" - -#: includes/admin/views/acf-field-group/pro-features.php:17 -msgid "Renew License" -msgstr "Vernieuw licentie" - -#: includes/admin/views/acf-field-group/pro-features.php:14 -msgid "Manage License" -msgstr "Beheer licentie" - -#: includes/admin/views/acf-field-group/options.php:102 -msgid "'High' position not supported in the Block Editor" -msgstr "Hoge\" positie wordt niet ondersteund in de blok-editor." - -#: includes/admin/views/options-page-preview.php:30 -msgid "Upgrade to ACF PRO" -msgstr "Upgrade naar ACF PRO" - -#. translators: %s URL to ACF options pages documentation -#: includes/admin/views/options-page-preview.php:7 -msgid "" -"ACF options pages are custom admin " -"pages for managing global settings via fields. You can create multiple pages " -"and sub-pages." -msgstr "" -"ACF opties pagina's zijn aangepaste " -"beheerpagina's voor het beheren van globale instellingen via velden. Je kunt " -"meerdere pagina's en subpagina's maken." - -#: includes/admin/views/global/header.php:35 -msgid "Add Options Page" -msgstr "Opties pagina toevoegen" - -#: includes/admin/views/acf-post-type/advanced-settings.php:703 -msgid "In the editor used as the placeholder of the title." -msgstr "In de editor gebruikt als plaatshouder van de titel." - -#: includes/admin/views/acf-post-type/advanced-settings.php:702 -msgid "Title Placeholder" -msgstr "Titel plaatshouder" - -#: includes/admin/views/global/navigation.php:97 -msgid "4 Months Free" -msgstr "4 maanden gratis" - -#. translators: %s - A singular label for a post type or taxonomy. -#: includes/admin/views/global/form-top.php:56 -msgid " (Duplicated from %s)" -msgstr " (Overgenomen van %s)" - -#: includes/admin/tools/class-acf-admin-tool-export.php:298 -msgid "Select Options Pages" -msgstr "Opties pagina's selecteren" - -#: includes/admin/post-types/admin-taxonomy.php:107 -msgid "Duplicate taxonomy" -msgstr "Dubbele taxonomie" - -#: includes/admin/post-types/admin-post-type.php:106 -#: includes/admin/post-types/admin-taxonomy.php:106 -msgid "Create taxonomy" -msgstr "Creëer taxonomie" - -#: includes/admin/post-types/admin-post-type.php:105 -msgid "Duplicate post type" -msgstr "Duplicaat berichttype" - -#: includes/admin/post-types/admin-post-type.php:104 -#: includes/admin/post-types/admin-taxonomy.php:108 -msgid "Create post type" -msgstr "Berichttype maken" - -#: includes/admin/post-types/admin-post-type.php:103 -#: includes/admin/post-types/admin-taxonomy.php:105 -msgid "Link field groups" -msgstr "Veldgroepen linken" - -#: includes/admin/post-types/admin-post-type.php:102 -#: includes/admin/post-types/admin-taxonomy.php:104 -msgid "Add fields" -msgstr "Velden toevoegen" - -#: includes/admin/post-types/admin-field-group.php:121 -#: assets/build/js/acf-field-group.js:2753 -#: assets/build/js/acf-field-group.js:3236 -msgid "This Field" -msgstr "Dit veld" - -#: includes/admin/admin.php:267 -msgid "ACF PRO" -msgstr "ACF PRO" - -#: includes/admin/admin.php:265 -msgid "Feedback" -msgstr "Feedback" - -#: includes/admin/admin.php:263 -msgid "Support" -msgstr "Ondersteuning" - -#. translators: This text is prepended by a link to ACF's website, and appended -#. by a link to WP Engine's website. -#: includes/admin/admin.php:238 -msgid "is developed and maintained by" -msgstr "is ontwikkeld en wordt onderhouden door" - -#. translators: %s - either "post type" or "taxonomy" -#: includes/admin/admin-internal-post-type.php:321 -msgid "Add this %s to the location rules of the selected field groups." -msgstr "" -"Voeg deze %s toe aan de locatieregels van de geselecteerde veldgroepen." - -#. translators: %s the URL to ACF's bidirectional relationship documentation -#: includes/acf-bidirectional-functions.php:271 -msgid "" -"Enabling the bidirectional setting allows you to update a value in the " -"target fields for each value selected for this field, adding or removing the " -"Post ID, Taxonomy ID or User ID of the item being updated. For more " -"information, please read the documentation." -msgstr "" -"Als je de bidirectionele instelling inschakelt, kun je een waarde updaten in " -"de doelvelden voor elke waarde die voor dit veld is geselecteerd, door de " -"bericht ID, taxonomy ID of user ID van het item dat wordt geüpdatet toe te " -"voegen of te verwijderen. Lees voor meer informatie de documentatie." - -#: includes/acf-bidirectional-functions.php:247 -msgid "" -"Select field(s) to store the reference back to the item being updated. You " -"may select this field. Target fields must be compatible with where this " -"field is being displayed. For example, if this field is displayed on a " -"Taxonomy, your target field should be of type Taxonomy" -msgstr "" -"Selecteer veld(en) om de verwijzing terug naar het item dat wordt geüpdatet " -"op te slaan. Je kunt dit veld selecteren. Doelvelden moeten compatibel zijn " -"met waar dit veld wordt weergegeven. Als dit veld bijvoorbeeld wordt " -"weergegeven in een taxonomie, dan moet je doelveld van het type taxonomie " -"zijn" - -#: includes/acf-bidirectional-functions.php:246 -msgid "Target Field" -msgstr "Doelveld" - -#: includes/acf-bidirectional-functions.php:220 -msgid "Update a field on the selected values, referencing back to this ID" -msgstr "" -"Update een veld met de geselecteerde waarden en verwijs terug naar deze ID" - -#: includes/acf-bidirectional-functions.php:219 -msgid "Bidirectional" -msgstr "Bidirectioneel" - -#. translators: %s A field type name, such as "Relationship" -#: includes/acf-bidirectional-functions.php:192 -msgid "%s Field" -msgstr "%s veld" - -#: includes/fields/class-acf-field-page_link.php:517 -#: includes/fields/class-acf-field-post_object.php:426 -#: includes/fields/class-acf-field-select.php:407 -#: includes/fields/class-acf-field-user.php:82 -msgid "Select Multiple" -msgstr "Selecteer meerdere" - -#: includes/admin/views/global/navigation.php:233 -msgid "WP Engine logo" -msgstr "WP engine logo" - -#: includes/admin/views/acf-taxonomy/basic-settings.php:58 -msgid "Lower case letters, underscores and dashes only, Max 32 characters." -msgstr "" -"Alleen kleine letters, underscores en streepjes, maximaal 32 karakters." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1136 -msgid "The capability name for assigning terms of this taxonomy." -msgstr "De rechten naam voor het toewijzen van termen van deze taxonomie." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1135 -msgid "Assign Terms Capability" -msgstr "Termen rechten toewijzen" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1119 -msgid "The capability name for deleting terms of this taxonomy." -msgstr "De rechten naam voor het verwijderen van termen van deze taxonomie." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1118 -msgid "Delete Terms Capability" -msgstr "Termen rechten verwijderen" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1102 -msgid "The capability name for editing terms of this taxonomy." -msgstr "De rechten naam voor het bewerken van termen van deze taxonomie." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1101 -msgid "Edit Terms Capability" -msgstr "Termen rechten bewerken" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1085 -msgid "The capability name for managing terms of this taxonomy." -msgstr "De naam van de rechten voor het beheren van termen van deze taxonomie." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1084 -msgid "Manage Terms Capability" -msgstr "Beheer termen rechten" - -#: includes/admin/views/acf-post-type/advanced-settings.php:886 -msgid "" -"Sets whether posts should be excluded from search results and taxonomy " -"archive pages." -msgstr "" -"Stelt in of berichten moeten worden uitgesloten van zoekresultaten en " -"pagina's van taxonomie archieven." - -#: includes/admin/views/acf-field-group/pro-features.php:74 -msgid "More Tools from WP Engine" -msgstr "Meer gereedschappen van WP Engine" - -#. translators: %s - WP Engine logo -#: includes/admin/views/acf-field-group/pro-features.php:69 -msgid "Built for those that build with WordPress, by the team at %s" -msgstr "Gemaakt voor degenen die bouwen met WordPress, door het team van %s" - -#: includes/admin/views/acf-field-group/pro-features.php:6 -msgid "View Pricing & Upgrade" -msgstr "Bekijk prijzen & upgrade" - -#: includes/admin/views/acf-field-group/pro-features.php:3 -#: includes/admin/views/options-page-preview.php:29 -msgid "Learn More" -msgstr "Leer meer" - -#: includes/admin/views/acf-field-group/pro-features.php:28 -msgid "" -"Speed up your workflow and develop better websites with features like ACF " -"Blocks and Options Pages, and sophisticated field types like Repeater, " -"Flexible Content, Clone, and Gallery." -msgstr "" -"Versnel je workflow en ontwikkel betere sites met functies als ACF Blocks en " -"Options Pages, en geavanceerde veldtypen als Repeater, Flexible Content, " -"Clone en Gallery." - -#: includes/admin/views/acf-field-group/pro-features.php:2 -msgid "Unlock Advanced Features and Build Even More with ACF PRO" -msgstr "Ontgrendel geavanceerde functies en bouw nog meer met ACF PRO" - -#. translators: %s - singular label of post type/taxonomy, i.e. "Movie"/"Genre" -#: includes/admin/views/global/form-top.php:19 -msgid "%s fields" -msgstr "%s velden" - -#: includes/admin/post-types/admin-taxonomies.php:293 -msgid "No terms" -msgstr "Geen termen" - -#: includes/admin/post-types/admin-taxonomies.php:266 -msgid "No post types" -msgstr "Geen berichttypen" - -#: includes/admin/post-types/admin-post-types.php:289 -msgid "No posts" -msgstr "Geen berichten" - -#: includes/admin/post-types/admin-post-types.php:263 -msgid "No taxonomies" -msgstr "Geen taxonomieën" - -#: includes/admin/post-types/admin-post-types.php:208 -#: includes/admin/post-types/admin-taxonomies.php:208 -msgid "No field groups" -msgstr "Geen veld groepen" - -#: includes/admin/post-types/admin-field-groups.php:281 -msgid "No fields" -msgstr "Geen velden" - -#: includes/admin/post-types/admin-field-groups.php:154 -#: includes/admin/post-types/admin-post-types.php:172 -#: includes/admin/post-types/admin-taxonomies.php:172 -msgid "No description" -msgstr "Geen beschrijving" - -#: includes/fields/class-acf-field-page_link.php:484 -#: includes/fields/class-acf-field-post_object.php:389 -#: includes/fields/class-acf-field-relationship.php:601 -msgid "Any post status" -msgstr "Elke bericht status" - -#: includes/post-types/class-acf-taxonomy.php:284 -msgid "" -"This taxonomy key is already in use by another taxonomy registered outside " -"of ACF and cannot be used." -msgstr "" -"Deze taxonomie sleutel is al in gebruik door een andere taxonomie die buiten " -"ACF is geregistreerd en kan daarom niet worden gebruikt." - -#: includes/post-types/class-acf-taxonomy.php:279 -msgid "" -"This taxonomy key is already in use by another taxonomy in ACF and cannot be " -"used." -msgstr "" -"Deze taxonomie sleutel is al in gebruik door een andere taxonomie in ACF en " -"kan daarom niet worden gebruikt." - -#: includes/post-types/class-acf-taxonomy.php:252 -msgid "" -"The taxonomy key must only contain lower case alphanumeric characters, " -"underscores or dashes." -msgstr "" -"De taxonomie sleutel mag alleen kleine alfanumerieke tekens, underscores of " -"streepjes bevatten." - -#: includes/post-types/class-acf-taxonomy.php:247 -msgid "The taxonomy key must be under 32 characters." -msgstr "De taxonomie sleutel moet minder dan 32 karakters bevatten." - -#: includes/post-types/class-acf-taxonomy.php:99 -msgid "No Taxonomies found in Trash" -msgstr "Geen taxonomieën gevonden in prullenbak" - -#: includes/post-types/class-acf-taxonomy.php:98 -msgid "No Taxonomies found" -msgstr "Geen taxonomieën gevonden" - -#: includes/post-types/class-acf-taxonomy.php:97 -msgid "Search Taxonomies" -msgstr "Taxonomieën zoeken" - -#: includes/post-types/class-acf-taxonomy.php:96 -msgid "View Taxonomy" -msgstr "Taxonomie bekijken" - -#: includes/post-types/class-acf-taxonomy.php:95 -msgid "New Taxonomy" -msgstr "Nieuwe taxonomie" - -#: includes/post-types/class-acf-taxonomy.php:94 -msgid "Edit Taxonomy" -msgstr "Taxonomie bewerken" - -#: includes/post-types/class-acf-taxonomy.php:93 -msgid "Add New Taxonomy" -msgstr "Nieuwe taxonomie toevoegen" - -#: includes/post-types/class-acf-post-type.php:100 -msgid "No Post Types found in Trash" -msgstr "Geen berichttypen gevonden in prullenbak" - -#: includes/post-types/class-acf-post-type.php:99 -msgid "No Post Types found" -msgstr "Geen berichttypen gevonden" - -#: includes/post-types/class-acf-post-type.php:98 -msgid "Search Post Types" -msgstr "Berichttypen zoeken" - -#: includes/post-types/class-acf-post-type.php:97 -msgid "View Post Type" -msgstr "Berichttype bekijken" - -#: includes/post-types/class-acf-post-type.php:96 -msgid "New Post Type" -msgstr "Nieuw berichttype" - -#: includes/post-types/class-acf-post-type.php:95 -msgid "Edit Post Type" -msgstr "Berichttype bewerken" - -#: includes/post-types/class-acf-post-type.php:94 -msgid "Add New Post Type" -msgstr "Nieuw berichttype toevoegen" - -#: includes/post-types/class-acf-post-type.php:361 -msgid "" -"This post type key is already in use by another post type registered outside " -"of ACF and cannot be used." -msgstr "" -"Deze berichttype sleutel is al in gebruik door een ander berichttype dat " -"buiten ACF is geregistreerd en kan niet worden gebruikt." - -#: includes/post-types/class-acf-post-type.php:356 -msgid "" -"This post type key is already in use by another post type in ACF and cannot " -"be used." -msgstr "" -"Deze berichttype sleutel is al in gebruik door een ander berichttype in ACF " -"en kan niet worden gebruikt." - -#. translators: %s a link to WordPress.org's Reserved Terms page -#: includes/post-types/class-acf-post-type.php:335 -#: includes/post-types/class-acf-taxonomy.php:258 -msgid "" -"This field must not be a WordPress reserved " -"term." -msgstr "" -"Dit veld mag geen door WordPress gereserveerde term zijn." - -#: includes/post-types/class-acf-post-type.php:329 -msgid "" -"The post type key must only contain lower case alphanumeric characters, " -"underscores or dashes." -msgstr "" -"Het berichttype mag alleen kleine alfanumerieke tekens, underscores of " -"streepjes bevatten." - -#: includes/post-types/class-acf-post-type.php:324 -msgid "The post type key must be under 20 characters." -msgstr "De berichttype sleutel moet minder dan 20 karakters bevatten." - -#: includes/fields/class-acf-field-wysiwyg.php:27 -msgid "We do not recommend using this field in ACF Blocks." -msgstr "Wij raden het gebruik van dit veld in ACF blokken af." - -#: includes/fields/class-acf-field-wysiwyg.php:27 -msgid "" -"Displays the WordPress WYSIWYG editor as seen in Posts and Pages allowing " -"for a rich text-editing experience that also allows for multimedia content." -msgstr "" -"Toont de WordPress WYSIWYG editor zoals in berichten en pagina's voor een " -"rijke tekst bewerking ervaring die ook multi media inhoud mogelijk maakt." - -#: includes/fields/class-acf-field-wysiwyg.php:25 -msgid "WYSIWYG Editor" -msgstr "WYSIWYG editor" - -#: includes/fields/class-acf-field-user.php:17 -msgid "" -"Allows the selection of one or more users which can be used to create " -"relationships between data objects." -msgstr "" -"Maakt het mogelijk een of meer gebruikers te selecteren die kunnen worden " -"gebruikt om relaties te leggen tussen gegeven objecten." - -#: includes/fields/class-acf-field-url.php:26 -msgid "A text input specifically designed for storing web addresses." -msgstr "Een tekst invoer speciaal ontworpen voor het opslaan van web adressen." - -#: includes/fields/class-acf-field-url.php:25 -msgid "URL" -msgstr "URL" - -#: includes/fields/class-acf-field-true_false.php:27 -msgid "" -"A toggle that allows you to pick a value of 1 or 0 (on or off, true or " -"false, etc). Can be presented as a stylized switch or checkbox." -msgstr "" -"Een toggle waarmee je een waarde van 1 of 0 kunt kiezen (aan of uit, waar of " -"onwaar, enz.). Kan worden gepresenteerd als een gestileerde schakelaar of " -"selectievakje." - -#: includes/fields/class-acf-field-time_picker.php:27 -msgid "" -"An interactive UI for picking a time. The time format can be customized " -"using the field settings." -msgstr "" -"Een interactieve UI voor het kiezen van een tijd. De tijd format kan worden " -"aangepast via de veldinstellingen." - -#: includes/fields/class-acf-field-textarea.php:26 -msgid "A basic textarea input for storing paragraphs of text." -msgstr "Een basis tekstgebied voor het opslaan van alinea's tekst." - -#: includes/fields/class-acf-field-text.php:26 -msgid "A basic text input, useful for storing single string values." -msgstr "" -"Een basis tekstveld, handig voor het opslaan van een enkele string waarde." - -#: includes/fields/class-acf-field-taxonomy.php:22 -msgid "" -"Allows the selection of one or more taxonomy terms based on the criteria and " -"options specified in the fields settings." -msgstr "" -"Maakt de selectie mogelijk van een of meer taxonomie termen op basis van de " -"criteria en opties die zijn opgegeven in de veldinstellingen." - -#: includes/fields/class-acf-field-tab.php:28 -msgid "" -"Allows you to group fields into tabbed sections in the edit screen. Useful " -"for keeping fields organized and structured." -msgstr "" -"Hiermee kun je in het bewerking scherm velden groeperen in secties met tabs. " -"Nuttig om velden georganiseerd en gestructureerd te houden." - -#: includes/fields/class-acf-field-select.php:27 -msgid "A dropdown list with a selection of choices that you specify." -msgstr "Een dropdown lijst met een selectie van keuzes die je aangeeft." - -#: includes/fields/class-acf-field-relationship.php:19 -msgid "" -"A dual-column interface to select one or more posts, pages, or custom post " -"type items to create a relationship with the item that you're currently " -"editing. Includes options to search and filter." -msgstr "" -"Een interface met twee kolommen om een of meer berichten, pagina's of " -"aangepaste extra berichttype items te selecteren om een relatie te leggen " -"met het item dat je nu aan het bewerken bent. Inclusief opties om te zoeken " -"en te filteren." - -#: includes/fields/class-acf-field-range.php:26 -msgid "" -"An input for selecting a numerical value within a specified range using a " -"range slider element." -msgstr "" -"Een veld voor het selecteren van een numerieke waarde binnen een " -"gespecificeerd bereik met behulp van een bereik slider element." - -#: includes/fields/class-acf-field-radio.php:27 -msgid "" -"A group of radio button inputs that allows the user to make a single " -"selection from values that you specify." -msgstr "" -"Een groep keuzerondjes waarmee de gebruiker één keuze kan maken uit waarden " -"die je opgeeft." - -#: includes/fields/class-acf-field-post_object.php:19 -msgid "" -"An interactive and customizable UI for picking one or many posts, pages or " -"post type items with the option to search. " -msgstr "" -"Een interactieve en aanpasbare UI voor het kiezen van één of meerdere " -"berichten, pagina's of berichttype-items met de optie om te zoeken. " - -#: includes/fields/class-acf-field-password.php:26 -msgid "An input for providing a password using a masked field." -msgstr "" -"Een invoer voor het verstrekken van een wachtwoord via een afgeschermd veld." - -#: includes/fields/class-acf-field-page_link.php:476 -#: includes/fields/class-acf-field-post_object.php:381 -#: includes/fields/class-acf-field-relationship.php:593 -msgid "Filter by Post Status" -msgstr "Filter op berichtstatus" - -#: includes/fields/class-acf-field-page_link.php:27 -msgid "" -"An interactive dropdown to select one or more posts, pages, custom post type " -"items or archive URLs, with the option to search." -msgstr "" -"Een interactieve dropdown om een of meer berichten, pagina's, extra " -"berichttype items of archief URL's te selecteren, met de optie om te zoeken." - -#: includes/fields/class-acf-field-oembed.php:27 -msgid "" -"An interactive component for embedding videos, images, tweets, audio and " -"other content by making use of the native WordPress oEmbed functionality." -msgstr "" -"Een interactieve component voor het insluiten van video's, afbeeldingen, " -"tweets, audio en andere inhoud door gebruik te maken van de standaard " -"WordPress oEmbed functionaliteit." - -#: includes/fields/class-acf-field-number.php:26 -msgid "An input limited to numerical values." -msgstr "Een invoer die beperkt is tot numerieke waarden." - -#: includes/fields/class-acf-field-message.php:28 -msgid "" -"Used to display a message to editors alongside other fields. Useful for " -"providing additional context or instructions around your fields." -msgstr "" -"Gebruikt om een bericht te tonen aan editors naast andere velden. Nuttig om " -"extra context of instructies te geven rond je velden." - -#: includes/fields/class-acf-field-link.php:27 -msgid "" -"Allows you to specify a link and its properties such as title and target " -"using the WordPress native link picker." -msgstr "" -"Hiermee kun je een link en zijn eigenschappen zoals titel en doel " -"specificeren met behulp van de WordPress native link picker." - -#: includes/fields/class-acf-field-image.php:27 -msgid "Uses the native WordPress media picker to upload, or choose images." -msgstr "" -"Gebruikt de standaard WordPress mediakiezer om afbeeldingen te uploaden of " -"te kiezen." - -#: includes/fields/class-acf-field-group.php:27 -msgid "" -"Provides a way to structure fields into groups to better organize the data " -"and the edit screen." -msgstr "" -"Biedt een manier om velden te structureren in groepen om de gegevens en het " -"bewerking scherm beter te organiseren." - -#: includes/fields/class-acf-field-google-map.php:27 -msgid "" -"An interactive UI for selecting a location using Google Maps. Requires a " -"Google Maps API key and additional configuration to display correctly." -msgstr "" -"Een interactieve UI voor het selecteren van een locatie met Google Maps. " -"Vereist een Google Maps API-sleutel en aanvullende instellingen om correct " -"te worden weergegeven." - -#: includes/fields/class-acf-field-file.php:27 -msgid "Uses the native WordPress media picker to upload, or choose files." -msgstr "" -"Gebruikt de standaard WordPress mediakiezer om bestanden te uploaden of te " -"kiezen." - -#: includes/fields/class-acf-field-email.php:26 -msgid "A text input specifically designed for storing email addresses." -msgstr "" -"Een tekstinvoer speciaal ontworpen voor het opslaan van e-mailadressen." - -#: includes/fields/class-acf-field-date_time_picker.php:27 -msgid "" -"An interactive UI for picking a date and time. The date return format can be " -"customized using the field settings." -msgstr "" -"Een interactieve UI voor het kiezen van een datum en tijd. De datum retour " -"format en tijd kunnen worden aangepast via de veldinstellingen." - -#: includes/fields/class-acf-field-date_picker.php:27 -msgid "" -"An interactive UI for picking a date. The date return format can be " -"customized using the field settings." -msgstr "" -"Een interactieve UI voor het kiezen van een datum. Het format van de datum " -"kan worden aangepast via de veldinstellingen." - -#: includes/fields/class-acf-field-color_picker.php:27 -msgid "An interactive UI for selecting a color, or specifying a Hex value." -msgstr "" -"Een interactieve UI voor het selecteren van een kleur, of het opgeven van " -"een hex waarde." - -#: includes/fields/class-acf-field-checkbox.php:27 -msgid "" -"A group of checkbox inputs that allow the user to select one, or multiple " -"values that you specify." -msgstr "" -"Een groep selectievakjes waarmee de gebruiker één of meerdere waarden kan " -"selecteren die je opgeeft." - -#: includes/fields/class-acf-field-button-group.php:26 -msgid "" -"A group of buttons with values that you specify, users can choose one option " -"from the values provided." -msgstr "" -"Een groep knoppen met waarden die je opgeeft, gebruikers kunnen één optie " -"kiezen uit de opgegeven waarden." - -#: includes/fields/class-acf-field-accordion.php:27 -msgid "" -"Allows you to group and organize custom fields into collapsable panels that " -"are shown while editing content. Useful for keeping large datasets tidy." -msgstr "" -"Hiermee kun je aangepaste velden groeperen en organiseren in inklapbare " -"panelen die worden getoond tijdens het bewerken van inhoud. Handig om grote " -"datasets netjes te houden." - -#: includes/fields.php:475 -msgid "" -"This provides a solution for repeating content such as slides, team members, " -"and call-to-action tiles, by acting as a parent to a set of subfields which " -"can be repeated again and again." -msgstr "" -"Dit biedt een oplossing voor het herhalen van inhoud zoals slides, teamleden " -"en Call To Action tegels, door te fungeren als een hoofd voor een string sub " -"velden die steeds opnieuw kunnen worden herhaald." - -#: includes/fields.php:465 -msgid "" -"This provides an interactive interface for managing a collection of " -"attachments. Most settings are similar to the Image field type. Additional " -"settings allow you to specify where new attachments are added in the gallery " -"and the minimum/maximum number of attachments allowed." -msgstr "" -"Dit biedt een interactieve interface voor het beheerder van een verzameling " -"bijlagen. De meeste instellingen zijn vergelijkbaar met die van het veld " -"type afbeelding. Met extra instellingen kun je aangeven waar nieuwe bijlagen " -"in de galerij worden toegevoegd en het minimum/maximum aantal toegestane " -"bijlagen." - -#: includes/fields.php:455 -msgid "" -"This provides a simple, structured, layout-based editor. The Flexible " -"Content field allows you to define, create and manage content with total " -"control by using layouts and subfields to design the available blocks." -msgstr "" -"Dit biedt een eenvoudige, gestructureerde, op lay-out gebaseerde editor. Met " -"het veld flexibele inhoud kun je inhoud definiëren, creëren en beheren met " -"volledige controle door lay-outs en sub velden te gebruiken om de " -"beschikbare blokken vorm te geven." - -#: includes/fields.php:445 -msgid "" -"This allows you to select and display existing fields. It does not duplicate " -"any fields in the database, but loads and displays the selected fields at " -"run-time. The Clone field can either replace itself with the selected fields " -"or display the selected fields as a group of subfields." -msgstr "" -"Hiermee kun je bestaande velden selecteren en weergeven. Het dupliceert geen " -"velden in de database, maar laadt en toont de geselecteerde velden bij run " -"time. Het kloon veld kan zichzelf vervangen door de geselecteerde velden of " -"de geselecteerde velden weergeven als een groep sub velden." - -#: includes/fields.php:442 -msgctxt "noun" -msgid "Clone" -msgstr "Kloon" - -#: includes/admin/views/global/navigation.php:86 includes/fields.php:357 -msgid "PRO" -msgstr "PRO" - -#: includes/fields.php:355 includes/fields.php:412 -msgid "Advanced" -msgstr "Geavanceerd" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:85 -msgid "JSON (newer)" -msgstr "JSON (nieuwer)" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:81 -msgid "Original" -msgstr "Origineel" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:55 -msgid "Invalid post ID." -msgstr "Ongeldig bericht-ID." - -#: includes/ajax/class-acf-ajax-local-json-diff.php:47 -msgid "Invalid post type selected for review." -msgstr "Ongeldig berichttype geselecteerd voor beoordeling." - -#: includes/admin/views/global/navigation.php:186 -msgid "More" -msgstr "Meer" - -#: includes/admin/views/browse-fields-modal.php:86 -msgid "Tutorial" -msgstr "Tutorial" - -#: includes/admin/views/browse-fields-modal.php:75 -msgid "Available with ACF PRO" -msgstr "Beschikbaar in ACF PRO" - -#: includes/admin/views/browse-fields-modal.php:63 -msgid "Select Field" -msgstr "Selecteer veld" - -#. translators: %s: A link to the popular fields used in ACF -#: includes/admin/views/browse-fields-modal.php:50 -msgid "Try a different search term or browse %s" -msgstr "Probeer een andere zoekterm of blader door %s" - -#: includes/admin/views/browse-fields-modal.php:47 -msgid "Popular fields" -msgstr "Populaire velden" - -#. translators: %s: The invalid search term -#: includes/admin/views/browse-fields-modal.php:40 -msgid "No search results for '%s'" -msgstr "Geen zoekresultaten voor '%s'" - -#: includes/admin/views/browse-fields-modal.php:13 -msgid "Search fields..." -msgstr "Velden zoeken..." - -#: includes/admin/views/browse-fields-modal.php:11 -msgid "Select Field Type" -msgstr "Selecteer veldtype" - -#: includes/admin/views/browse-fields-modal.php:4 -msgid "Popular" -msgstr "Populair" - -#: includes/admin/views/acf-taxonomy/list-empty.php:7 -msgid "Add Taxonomy" -msgstr "Taxonomie toevoegen" - -#: includes/admin/views/acf-taxonomy/list-empty.php:6 -msgid "Create custom taxonomies to classify post type content" -msgstr "" -"Maak aangepaste taxonomieën aan om inhoud van berichttypen te classificeren" - -#: includes/admin/views/acf-taxonomy/list-empty.php:5 -msgid "Add Your First Taxonomy" -msgstr "Voeg je eerste taxonomie toe" - -#: includes/admin/views/acf-taxonomy/basic-settings.php:122 -msgid "Hierarchical taxonomies can have descendants (like categories)." -msgstr "" -"Hiërarchische taxonomieën kunnen afstammelingen hebben (zoals categorieën)." - -#: includes/admin/views/acf-taxonomy/basic-settings.php:107 -msgid "Makes a taxonomy visible on the frontend and in the admin dashboard." -msgstr "" -"Maakt een taxonomie zichtbaar op de voorkant en in de beheerder dashboard." - -#: includes/admin/views/acf-taxonomy/basic-settings.php:91 -msgid "One or many post types that can be classified with this taxonomy." -msgstr "" -"Eén of vele berichttypes die met deze taxonomie kunnen worden ingedeeld." - -#. translators: example taxonomy -#: includes/admin/views/acf-taxonomy/basic-settings.php:60 -msgid "genre" -msgstr "genre" - -#. translators: example taxonomy -#: includes/admin/views/acf-taxonomy/basic-settings.php:42 -msgid "Genre" -msgstr "Genre" - -#. translators: example taxonomy -#: includes/admin/views/acf-taxonomy/basic-settings.php:25 -msgid "Genres" -msgstr "Genres" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1211 -msgid "" -"Optional custom controller to use instead of `WP_REST_Terms_Controller `." -msgstr "" -"Optionele aangepaste controller om te gebruiken in plaats van " -"`WP_REST_Terms_Controller `." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1155 -msgid "Expose this post type in the REST API." -msgstr "Stel dit berichttype bloot in de REST API." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1055 -msgid "Customize the query variable name" -msgstr "De naam van de query variabele aanpassen" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1028 -msgid "" -"Terms can be accessed using the non-pretty permalink, e.g., {query_var}" -"={term_slug}." -msgstr "" -"Termen zijn toegankelijk via de niet pretty permalink, bijvoorbeeld " -"{query_var}={term_slug}." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:981 -msgid "Parent-child terms in URLs for hierarchical taxonomies." -msgstr "Hoofd sub termen in URL's voor hiërarchische taxonomieën." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:941 -msgid "Customize the slug used in the URL" -msgstr "Pas de slug in de URL aan" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:924 -msgid "Permalinks for this taxonomy are disabled." -msgstr "Permalinks voor deze taxonomie zijn uitgeschakeld." - -#. translators: this string will be appended with the new permalink structure. -#: includes/admin/views/acf-taxonomy/advanced-settings.php:921 -msgid "" -"Rewrite the URL using the taxonomy key as the slug. Your permalink structure " -"will be" -msgstr "" -"Herschrijf de URL met de taxonomie sleutel als slug. Je permalinkstructuur " -"zal zijn" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:913 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1030 -#: includes/admin/views/acf-taxonomy/basic-settings.php:57 -msgid "Taxonomy Key" -msgstr "Taxonomie sleutel" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:911 -msgid "Select the type of permalink to use for this taxonomy." -msgstr "Selecteer het type permalink dat je voor deze taxonomie wil gebruiken." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:896 -msgid "Display a column for the taxonomy on post type listing screens." -msgstr "" -"Toon een kolom voor de taxonomie op de schermen voor het tonen van " -"berichttypes." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:895 -msgid "Show Admin Column" -msgstr "Toon beheerder kolom" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:882 -msgid "Show the taxonomy in the quick/bulk edit panel." -msgstr "Toon de taxonomie in het snel/bulk bewerken paneel." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:881 -msgid "Quick Edit" -msgstr "Snel bewerken" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:868 -msgid "List the taxonomy in the Tag Cloud Widget controls." -msgstr "Vermeld de taxonomie in de tag cloud widget besturing elementen." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:867 -msgid "Tag Cloud" -msgstr "Tag cloud" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:824 -msgid "" -"A PHP function name to be called for sanitizing taxonomy data saved from a " -"meta box." -msgstr "" -"Een PHP functienaam die moet worden aangeroepen om taxonomie gegevens " -"opgeslagen in een meta box te zuiveren." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:823 -msgid "Meta Box Sanitization Callback" -msgstr "Meta box sanitatie callback" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:805 -msgid "" -"A PHP function name to be called to handle the content of a meta box on your " -"taxonomy." -msgstr "" -"Een PHP functienaam die moet worden aangeroepen om de inhoud van een meta " -"box op je taxonomie te verwerken." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:804 -msgid "Register Meta Box Callback" -msgstr "Meta box callback registreren" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:763 -msgid "No Meta Box" -msgstr "Geen meta box" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:762 -msgid "Custom Meta Box" -msgstr "Aangepaste meta box" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:758 -msgid "" -"Controls the meta box on the content editor screen. By default, the " -"Categories meta box is shown for hierarchical taxonomies, and the Tags meta " -"box is shown for non-hierarchical taxonomies." -msgstr "" -"Bepaalt het meta box op het inhoud editor scherm. Standaard wordt het " -"categorie meta box getoond voor hiërarchische taxonomieën, en het tags meta " -"box voor niet hiërarchische taxonomieën." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:757 -msgid "Meta Box" -msgstr "Meta box" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:746 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:767 -msgid "Categories Meta Box" -msgstr "Categorieën meta box" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:745 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:766 -msgid "Tags Meta Box" -msgstr "Tags meta box" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:704 -msgid "A link to a tag" -msgstr "Een link naar een tag" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:703 -msgid "Describes a navigation link block variation used in the block editor." -msgstr "" -"Beschrijft een navigatie link blok variatie gebruikt in de blok-editor." - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:698 -msgid "A link to a %s" -msgstr "Een link naar een %s" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:683 -msgid "Tag Link" -msgstr "Tag link" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:682 -msgid "" -"Assigns a title for navigation link block variation used in the block editor." -msgstr "" -"Wijst een titel toe aan de navigatie link blok variatie gebruikt in de blok-" -"editor." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:663 -msgid "← Go to tags" -msgstr "← Ga naar tags" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:662 -msgid "" -"Assigns the text used to link back to the main index after updating a term." -msgstr "" -"Wijst de tekst toe die wordt gebruikt om terug te linken naar de hoofd index " -"na het updaten van een term." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:661 -msgid "Back To Items" -msgstr "Terug naar items" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:657 -msgid "← Go to %s" -msgstr "← Ga naar %s" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:642 -msgid "Tags list" -msgstr "Tags lijst" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:641 -msgid "Assigns text to the table hidden heading." -msgstr "Wijst tekst toe aan de verborgen koptekst van de tabel." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:622 -msgid "Tags list navigation" -msgstr "Tags lijst navigatie" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:621 -msgid "Assigns text to the table pagination hidden heading." -msgstr "" -"Wijst tekst toe aan de verborgen koptekst van de paginering van de tabel." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:597 -msgid "Filter by category" -msgstr "Filter op categorie" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:596 -msgid "Assigns text to the filter button in the posts lists table." -msgstr "Wijst tekst toe aan de filterknop in de lijst met berichten." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:595 -msgid "Filter By Item" -msgstr "Filter op item" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:591 -msgid "Filter by %s" -msgstr "Filter op %s" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:575 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:576 -msgid "" -"The description is not prominent by default; however, some themes may show " -"it." -msgstr "" -"De beschrijving is standaard niet prominent aanwezig; sommige thema's kunnen " -"hem echter wel tonen." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:574 -msgid "Describes the Description field on the Edit Tags screen." -msgstr "Beschrijft het veld beschrijving in het scherm bewerken tags." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:573 -msgid "Description Field Description" -msgstr "Omschrijving veld beschrijving" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:554 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:555 -msgid "" -"Assign a parent term to create a hierarchy. The term Jazz, for example, " -"would be the parent of Bebop and Big Band" -msgstr "" -"Wijs een hoofdterm toe om een hiërarchie te creëren. De term jazz is " -"bijvoorbeeld het hoofd van Bebop en Big Band" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:553 -msgid "Describes the Parent field on the Edit Tags screen." -msgstr "Beschrijft het hoofd veld op het bewerken tags scherm." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:552 -msgid "Parent Field Description" -msgstr "Hoofdveld beschrijving" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:538 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:539 -msgid "" -"The \"slug\" is the URL-friendly version of the name. It is usually all " -"lower case and contains only letters, numbers, and hyphens." -msgstr "" -"De \"slug\" is de URL vriendelijke versie van de naam. Het zijn meestal " -"allemaal kleine letters en bevat alleen letters, cijfers en koppeltekens." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:537 -msgid "Describes the Slug field on the Edit Tags screen." -msgstr "Beschrijft het slug veld op het bewerken tags scherm." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:536 -msgid "Slug Field Description" -msgstr "Slug veld beschrijving" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:522 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:523 -msgid "The name is how it appears on your site" -msgstr "De naam is zoals hij op je site staat" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:521 -msgid "Describes the Name field on the Edit Tags screen." -msgstr "Beschrijft het naamveld op het bewerken tags scherm." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:520 -msgid "Name Field Description" -msgstr "Naamveld beschrijving" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:507 -msgid "No tags" -msgstr "Geen tags" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:506 -msgid "" -"Assigns the text displayed in the posts and media list tables when no tags " -"or categories are available." -msgstr "" -"Wijst de tekst toe die wordt weergegeven in de tabellen met berichten en " -"media lijsten als er geen tags of categorieën beschikbaar zijn." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:505 -msgid "No Terms" -msgstr "Geen termen" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:501 -msgid "No %s" -msgstr "Geen %s" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:486 -msgid "No tags found" -msgstr "Geen tags gevonden" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:485 -msgid "" -"Assigns the text displayed when clicking the 'choose from most used' text in " -"the taxonomy meta box when no tags are available, and assigns the text used " -"in the terms list table when there are no items for a taxonomy." -msgstr "" -"Wijst de tekst toe die wordt weergegeven wanneer je klikt op de 'kies uit " -"meest gebruikte' tekst in het taxonomie meta box wanneer er geen tags " -"beschikbaar zijn, en wijst de tekst toe die wordt gebruikt in de termen " -"lijst tabel wanneer er geen items zijn voor een taxonomie." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:484 -msgid "Not Found" -msgstr "Niet gevonden" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:463 -msgid "Assigns text to the Title field of the Most Used tab." -msgstr "Wijst tekst toe aan het titelveld van de tab meest gebruikt." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:462 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:464 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:465 -msgid "Most Used" -msgstr "Meest gebruikt" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:444 -msgid "Choose from the most used tags" -msgstr "Kies uit de meest gebruikte tags" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:443 -msgid "" -"Assigns the 'choose from most used' text used in the meta box when " -"JavaScript is disabled. Only used on non-hierarchical taxonomies." -msgstr "" -"Wijst de 'kies uit meest gebruikte' tekst toe die wordt gebruikt in het meta " -"box wanneer JavaScript is uitgeschakeld. Alleen gebruikt op niet " -"hiërarchische taxonomieën." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:442 -msgid "Choose From Most Used" -msgstr "Kies uit de meest gebruikte" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:438 -msgid "Choose from the most used %s" -msgstr "Kies uit de meest gebruikte %s" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:418 -msgid "Add or remove tags" -msgstr "Tags toevoegen of verwijderen" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:417 -msgid "" -"Assigns the add or remove items text used in the meta box when JavaScript is " -"disabled. Only used on non-hierarchical taxonomies" -msgstr "" -"Wijst de tekst voor het toevoegen of verwijderen van items toe die wordt " -"gebruikt in het meta box wanneer JavaScript is uitgeschakeld. Alleen " -"gebruikt op niet hiërarchische taxonomieën" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:416 -msgid "Add Or Remove Items" -msgstr "Items toevoegen of verwijderen" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:412 -msgid "Add or remove %s" -msgstr "%s toevoegen of verwijderen" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:392 -msgid "Separate tags with commas" -msgstr "Scheid tags met komma's" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:391 -msgid "" -"Assigns the separate item with commas text used in the taxonomy meta box. " -"Only used on non-hierarchical taxonomies." -msgstr "" -"Wijst de gescheiden item met komma's tekst toe die wordt gebruikt in het " -"taxonomie meta box. Alleen gebruikt op niet hiërarchische taxonomieën." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:390 -msgid "Separate Items With Commas" -msgstr "Scheid items met komma's" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:386 -msgid "Separate %s with commas" -msgstr "Scheid %s met komma's" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:366 -msgid "Popular Tags" -msgstr "Populaire tags" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:365 -msgid "Assigns popular items text. Only used for non-hierarchical taxonomies." -msgstr "" -"Wijst populaire items tekst toe. Alleen gebruikt voor niet hiërarchische " -"taxonomieën." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:364 -msgid "Popular Items" -msgstr "Populaire items" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:361 -msgid "Popular %s" -msgstr "Populaire %s" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:347 -msgid "Search Tags" -msgstr "Tags zoeken" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:346 -msgid "Assigns search items text." -msgstr "Wijst zoek items tekst toe." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:323 -msgid "Parent Category:" -msgstr "Hoofdcategorie:" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:322 -msgid "Assigns parent item text, but with a colon (:) added to the end." -msgstr "" -"Wijst hoofd item tekst toe, maar met een dubbele punt (:) toegevoegd aan het " -"einde." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:321 -msgid "Parent Item With Colon" -msgstr "Hoofditem met dubbele punt" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:298 -msgid "Parent Category" -msgstr "Hoofdcategorie" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:297 -msgid "Assigns parent item text. Only used on hierarchical taxonomies." -msgstr "" -"Wijst hoofd item tekst toe. Alleen gebruikt bij hiërarchische taxonomieën." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:296 -msgid "Parent Item" -msgstr "Hoofditem" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:293 -msgid "Parent %s" -msgstr "Hoofd %s" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:278 -msgid "New Tag Name" -msgstr "Nieuwe tagnaam" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:277 -msgid "Assigns the new item name text." -msgstr "Wijst de nieuwe item naam tekst toe." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:276 -msgid "New Item Name" -msgstr "Nieuw item naam" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:273 -msgid "New %s Name" -msgstr "Nieuwe %s naam" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:258 -msgid "Add New Tag" -msgstr "Nieuwe tag toevoegen" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:257 -msgid "Assigns the add new item text." -msgstr "Wijst de tekst van het nieuwe item toe." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:238 -msgid "Update Tag" -msgstr "Tag updaten" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:237 -msgid "Assigns the update item text." -msgstr "Wijst de tekst van het update item toe." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:236 -msgid "Update Item" -msgstr "Item updaten" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:233 -msgid "Update %s" -msgstr "%s updaten" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:218 -msgid "View Tag" -msgstr "Tag bekijken" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:217 -msgid "In the admin bar to view term during editing." -msgstr "In de toolbar om de term te bekijken tijdens het bewerken." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:198 -msgid "Edit Tag" -msgstr "Tag bewerken" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:197 -msgid "At the top of the editor screen when editing a term." -msgstr "Aan de bovenkant van het editor scherm bij het bewerken van een term." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:178 -msgid "All Tags" -msgstr "Alle tags" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:177 -msgid "Assigns the all items text." -msgstr "Wijst de tekst van alle items toe." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:158 -msgid "Assigns the menu name text." -msgstr "Wijst de tekst van de menu naam toe." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:157 -msgid "Menu Label" -msgstr "Menulabel" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:131 -msgid "Active taxonomies are enabled and registered with WordPress." -msgstr "Actieve taxonomieën zijn ingeschakeld en geregistreerd bij WordPress." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:115 -msgid "A descriptive summary of the taxonomy." -msgstr "Een beschrijvende samenvatting van de taxonomie." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:95 -msgid "A descriptive summary of the term." -msgstr "Een beschrijvende samenvatting van de term." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:94 -msgid "Term Description" -msgstr "Term beschrijving" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:76 -msgid "Single word, no spaces. Underscores and dashes allowed." -msgstr "Eén woord, geen spaties. Underscores en streepjes zijn toegestaan." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:75 -msgid "Term Slug" -msgstr "Term slug" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:56 -msgid "The name of the default term." -msgstr "De naam van de standaard term." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:55 -msgid "Term Name" -msgstr "Term naam" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:41 -msgid "" -"Create a term for the taxonomy that cannot be deleted. It will not be " -"selected for posts by default." -msgstr "" -"Maak een term aan voor de taxonomie die niet verwijderd kan worden. Deze zal " -"niet standaard worden geselecteerd voor berichten." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:40 -msgid "Default Term" -msgstr "Standaard term" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:28 -msgid "" -"Whether terms in this taxonomy should be sorted in the order they are " -"provided to `wp_set_object_terms()`." -msgstr "" -"Of termen in deze taxonomie moeten worden gesorteerd in de volgorde waarin " -"ze worden aangeleverd aan `wp_set_object_terms()`." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:27 -msgid "Sort Terms" -msgstr "Termen sorteren" - -#: includes/admin/views/acf-post-type/list-empty.php:7 -msgid "Add Post Type" -msgstr "Berichttype toevoegen" - -#: includes/admin/views/acf-post-type/list-empty.php:6 -msgid "" -"Expand the functionality of WordPress beyond standard posts and pages with " -"custom post types." -msgstr "" -"Breid de functionaliteit van WordPress verder uit met aangepaste " -"berichttypen." - -#: includes/admin/views/acf-post-type/list-empty.php:5 -msgid "Add Your First Post Type" -msgstr "Je eerste berichttype toevoegen" - -#: includes/admin/views/acf-post-type/basic-settings.php:136 -#: includes/admin/views/acf-taxonomy/basic-settings.php:135 -msgid "I know what I'm doing, show me all the options." -msgstr "Ik weet wat ik doe, laat me alle opties zien." - -#: includes/admin/views/acf-post-type/basic-settings.php:135 -#: includes/admin/views/acf-taxonomy/basic-settings.php:134 -msgid "Advanced Configuration" -msgstr "Geavanceerde configuratie" - -#: includes/admin/views/acf-post-type/basic-settings.php:123 -msgid "Hierarchical post types can have descendants (like pages)." -msgstr "" -"Hiërarchische bericht types kunnen afstammelingen hebben (zoals pagina's)." - -#: includes/admin/views/acf-post-type/basic-settings.php:122 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:980 -#: includes/admin/views/acf-taxonomy/basic-settings.php:121 -msgid "Hierarchical" -msgstr "Hiërarchisch" - -#: includes/admin/views/acf-post-type/basic-settings.php:107 -msgid "Visible on the frontend and in the admin dashboard." -msgstr "Zichtbaar op de voorkant en in het beheerder dashboard." - -#: includes/admin/views/acf-post-type/basic-settings.php:106 -#: includes/admin/views/acf-taxonomy/basic-settings.php:106 -msgid "Public" -msgstr "Publiek" - -#. translators: example post type -#: includes/admin/views/acf-post-type/basic-settings.php:59 -msgid "movie" -msgstr "film" - -#: includes/admin/views/acf-post-type/basic-settings.php:57 -msgid "Lower case letters, underscores and dashes only, Max 20 characters." -msgstr "" -"Alleen kleine letters, underscores en streepjes, maximaal 20 karakters." - -#. translators: example post type -#: includes/admin/views/acf-post-type/basic-settings.php:41 -msgid "Movie" -msgstr "Film" - -#: includes/admin/views/acf-post-type/basic-settings.php:39 -#: includes/admin/views/acf-taxonomy/basic-settings.php:40 -msgid "Singular Label" -msgstr "Enkelvoudig label" - -#. translators: example post type -#: includes/admin/views/acf-post-type/basic-settings.php:24 -msgid "Movies" -msgstr "Films" - -#: includes/admin/views/acf-post-type/basic-settings.php:22 -#: includes/admin/views/acf-taxonomy/basic-settings.php:23 -msgid "Plural Label" -msgstr "Meervoud label" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1270 -msgid "" -"Optional custom controller to use instead of `WP_REST_Posts_Controller`." -msgstr "" -"Optionele aangepaste controller om te gebruiken in plaats van " -"`WP_REST_Berichten_Controller`." - -#: includes/admin/views/acf-post-type/advanced-settings.php:1269 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1210 -msgid "Controller Class" -msgstr "Controller klasse" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1251 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1191 -msgid "The namespace part of the REST API URL." -msgstr "De namespace sectie van de REST API URL." - -#: includes/admin/views/acf-post-type/advanced-settings.php:1250 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1190 -msgid "Namespace Route" -msgstr "Namespace route" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1232 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1172 -msgid "The base URL for the post type REST API URLs." -msgstr "De basis URL voor de berichttype REST API URL's." - -#: includes/admin/views/acf-post-type/advanced-settings.php:1231 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1171 -msgid "Base URL" -msgstr "Basis-URL" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1217 -msgid "" -"Exposes this post type in the REST API. Required to use the block editor." -msgstr "" -"Geeft dit berichttype weer in de REST API. Vereist om de blok-editor te " -"gebruiken." - -#: includes/admin/views/acf-post-type/advanced-settings.php:1216 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1154 -msgid "Show In REST API" -msgstr "Weergeven in REST API" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1195 -msgid "Customize the query variable name." -msgstr "Pas de naam van de query variabele aan." - -#: includes/admin/views/acf-post-type/advanced-settings.php:1194 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1054 -msgid "Query Variable" -msgstr "Vraag variabele" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1172 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1032 -msgid "No Query Variable Support" -msgstr "Geen ondersteuning voor query variabele" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1171 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1031 -msgid "Custom Query Variable" -msgstr "Aangepaste query variabele" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1168 -msgid "" -"Items can be accessed using the non-pretty permalink, eg. {post_type}" -"={post_slug}." -msgstr "" -"Items zijn toegankelijk via de niet pretty permalink, bijv. {bericht_type}" -"={bericht_slug}." - -#: includes/admin/views/acf-post-type/advanced-settings.php:1167 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1027 -msgid "Query Variable Support" -msgstr "Ondersteuning voor query variabelen" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1142 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1003 -msgid "URLs for an item and items can be accessed with a query string." -msgstr "" -"URL's voor een item en items kunnen worden benaderd met een query string." - -#: includes/admin/views/acf-post-type/advanced-settings.php:1141 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1002 -msgid "Publicly Queryable" -msgstr "Openbaar opvraagbaar" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1120 -msgid "Custom slug for the Archive URL." -msgstr "Aangepaste slug voor het archief URL." - -#: includes/admin/views/acf-post-type/advanced-settings.php:1119 -msgid "Archive Slug" -msgstr "Archief slug" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1106 -msgid "" -"Has an item archive that can be customized with an archive template file in " -"your theme." -msgstr "" -"Heeft een item archief dat kan worden aangepast met een archief template " -"bestand in je thema." - -#: includes/admin/views/acf-post-type/advanced-settings.php:1105 -msgid "Archive" -msgstr "Archief" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1085 -msgid "Pagination support for the items URLs such as the archives." -msgstr "Paginatie ondersteuning voor de items URL's zoals de archieven." - -#: includes/admin/views/acf-post-type/advanced-settings.php:1084 -msgid "Pagination" -msgstr "Paginering" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1067 -msgid "RSS feed URL for the post type items." -msgstr "RSS feed URL voor de items van het berichttype." - -#: includes/admin/views/acf-post-type/advanced-settings.php:1066 -msgid "Feed URL" -msgstr "Feed URL" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1048 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:961 -msgid "" -"Alters the permalink structure to add the `WP_Rewrite::$front` prefix to " -"URLs." -msgstr "" -"Wijzigt de permalink structuur om het `WP_Rewrite::$front` voorvoegsel toe " -"te voegen aan URLs." - -#: includes/admin/views/acf-post-type/advanced-settings.php:1047 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:960 -msgid "Front URL Prefix" -msgstr "Front URL voorvoegsel" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1028 -msgid "Customize the slug used in the URL." -msgstr "Pas de slug in de URL aan." - -#: includes/admin/views/acf-post-type/advanced-settings.php:1027 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:940 -msgid "URL Slug" -msgstr "URL slug" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1011 -msgid "Permalinks for this post type are disabled." -msgstr "Permalinks voor dit berichttype zijn uitgeschakeld." - -#. translators: this string will be appended with the new permalink structure. -#: includes/admin/views/acf-post-type/advanced-settings.php:1010 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:923 -msgid "" -"Rewrite the URL using a custom slug defined in the input below. Your " -"permalink structure will be" -msgstr "" -"Herschrijf de URL met behulp van een aangepaste slug, gedefinieerd in de " -"onderstaande invoer. Je permalink structuur zal zijn" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1002 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:915 -msgid "No Permalink (prevent URL rewriting)" -msgstr "Geen permalink (voorkom URL herschrijving)" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1001 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:914 -msgid "Custom Permalink" -msgstr "Aangepaste permalink" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1000 -#: includes/admin/views/acf-post-type/advanced-settings.php:1170 -#: includes/admin/views/acf-post-type/basic-settings.php:56 -msgid "Post Type Key" -msgstr "Berichttype sleutel" - -#. translators: this string will be appended with the new permalink structure. -#: includes/admin/views/acf-post-type/advanced-settings.php:998 -#: includes/admin/views/acf-post-type/advanced-settings.php:1008 -msgid "" -"Rewrite the URL using the post type key as the slug. Your permalink " -"structure will be" -msgstr "" -"Herschrijf de URL met de berichttype sleutel als slug. Je permalink " -"structuur zal zijn" - -#: includes/admin/views/acf-post-type/advanced-settings.php:996 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:910 -msgid "Permalink Rewrite" -msgstr "Permalink herschrijven" - -#: includes/admin/views/acf-post-type/advanced-settings.php:982 -msgid "Delete items by a user when that user is deleted." -msgstr "" -"Verwijder items van een gebruiker wanneer die gebruiker wordt verwijderd." - -#: includes/admin/views/acf-post-type/advanced-settings.php:981 -msgid "Delete With User" -msgstr "Verwijder met gebruiker" - -#: includes/admin/views/acf-post-type/advanced-settings.php:967 -msgid "Allow the post type to be exported from 'Tools' > 'Export'." -msgstr "Laat het berichttype exporteren via 'Gereedschap' > 'Exporteren'." - -#: includes/admin/views/acf-post-type/advanced-settings.php:966 -msgid "Can Export" -msgstr "Kan geëxporteerd worden" - -#: includes/admin/views/acf-post-type/advanced-settings.php:935 -msgid "Optionally provide a plural to be used in capabilities." -msgstr "Geef desgewenst een meervoud dat in rechten moet worden gebruikt." - -#: includes/admin/views/acf-post-type/advanced-settings.php:934 -msgid "Plural Capability Name" -msgstr "Meervoudige rechten naam" - -#: includes/admin/views/acf-post-type/advanced-settings.php:916 -msgid "Choose another post type to base the capabilities for this post type." -msgstr "" -"Kies een ander berichttype om de rechten voor dit berichttype te baseren." - -#: includes/admin/views/acf-post-type/advanced-settings.php:915 -msgid "Singular Capability Name" -msgstr "Enkelvoudige rechten naam" - -#: includes/admin/views/acf-post-type/advanced-settings.php:901 -msgid "" -"By default the capabilities of the post type will inherit the 'Post' " -"capability names, eg. edit_post, delete_posts. Enable to use post type " -"specific capabilities, eg. edit_{singular}, delete_{plural}." -msgstr "" -"Standaard erven de rechten van het berichttype de namen van de 'Bericht' " -"rechten, bv. Edit_bericht, delete_berichten. Activeer om berichttype " -"specifieke rechten te gebruiken, bijv. Edit_{singular}, delete_{plural}." - -#: includes/admin/views/acf-post-type/advanced-settings.php:900 -msgid "Rename Capabilities" -msgstr "Rechten hernoemen" - -#: includes/admin/views/acf-post-type/advanced-settings.php:885 -msgid "Exclude From Search" -msgstr "Uitsluiten van zoeken" - -#: includes/admin/views/acf-post-type/advanced-settings.php:872 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:854 -msgid "" -"Allow items to be added to menus in the 'Appearance' > 'Menus' screen. Must " -"be turned on in 'Screen options'." -msgstr "" -"Sta toe dat items worden toegevoegd aan menu's in het scherm 'Weergave' > " -"'Menu's'. Moet ingeschakeld zijn in 'Scherminstellingen'." - -#: includes/admin/views/acf-post-type/advanced-settings.php:871 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:853 -msgid "Appearance Menus Support" -msgstr "Ondersteuning voor weergave menu's" - -#: includes/admin/views/acf-post-type/advanced-settings.php:853 -msgid "Appears as an item in the 'New' menu in the admin bar." -msgstr "Verschijnt als een item in het menu \"Nieuw\" in de beheerbalk." - -#: includes/admin/views/acf-post-type/advanced-settings.php:852 -msgid "Show In Admin Bar" -msgstr "Toon in beheerbalk" - -#: includes/admin/views/acf-post-type/advanced-settings.php:821 -msgid "" -"A PHP function name to be called when setting up the meta boxes for the edit " -"screen." -msgstr "" -"Een PHP functie naam die moet worden aangeroepen bij het instellen van de " -"meta boxen voor het bewerking scherm." - -#: includes/admin/views/acf-post-type/advanced-settings.php:820 -msgid "Custom Meta Box Callback" -msgstr "Aangepaste meta box callback" - -#: includes/admin/views/acf-post-type/advanced-settings.php:800 -msgid "Menu Icon" -msgstr "Menu pictogram" - -#: includes/admin/views/acf-post-type/advanced-settings.php:782 -msgid "The position in the sidebar menu in the admin dashboard." -msgstr "De positie in het zijbalk menu in het beheerder dashboard." - -#: includes/admin/views/acf-post-type/advanced-settings.php:781 -msgid "Menu Position" -msgstr "Menu positie" - -#: includes/admin/views/acf-post-type/advanced-settings.php:763 -msgid "" -"By default the post type will get a new top level item in the admin menu. If " -"an existing top level item is supplied here, the post type will be added as " -"a submenu item under it." -msgstr "" -"Standaard krijgt het berichttype een nieuw item op bovenkant niveau in het " -"beheerder menu. Als hier een bestaand item op bovenkant niveau wordt " -"aangeleverd, zal het berichttype worden toegevoegd als een sub menu item " -"eronder." - -#: includes/admin/views/acf-post-type/advanced-settings.php:762 -msgid "Admin Menu Parent" -msgstr "Beheerder hoofd menu" - -#. translators: %s = "dashicon class name", link to the WordPress dashicon -#. documentation. -#: includes/admin/views/acf-post-type/advanced-settings.php:750 -msgid "" -"The icon used for the post type menu item in the admin dashboard. Can be a " -"URL or %s to use for the icon." -msgstr "" -"Het pictogram dat wordt gebruikt voor het berichttype menu item in het " -"beheerder dashboard. Kan een URL of %s zijn om te gebruiken voor het " -"pictogram." - -#: includes/admin/views/acf-post-type/advanced-settings.php:745 -msgid "Dashicon class name" -msgstr "Dashicon klasse naam" - -#: includes/admin/views/acf-post-type/advanced-settings.php:734 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:734 -msgid "Admin editor navigation in the sidebar menu." -msgstr "Beheerder editor navigatie in het zijbalk menu." - -#: includes/admin/views/acf-post-type/advanced-settings.php:733 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:733 -msgid "Show In Admin Menu" -msgstr "Toon in beheerder menu" - -#: includes/admin/views/acf-post-type/advanced-settings.php:720 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:719 -msgid "Items can be edited and managed in the admin dashboard." -msgstr "Items kunnen worden bewerkt en beheerd in het beheerder dashboard." - -#: includes/admin/views/acf-post-type/advanced-settings.php:719 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:718 -msgid "Show In UI" -msgstr "Weergeven in UI" - -#: includes/admin/views/acf-post-type/advanced-settings.php:689 -msgid "A link to a post." -msgstr "Een link naar een bericht." - -#: includes/admin/views/acf-post-type/advanced-settings.php:688 -msgid "Description for a navigation link block variation." -msgstr "Beschrijving voor een navigatie link blok variatie." - -#: includes/admin/views/acf-post-type/advanced-settings.php:687 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:702 -msgid "Item Link Description" -msgstr "Item link beschrijving" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:683 -msgid "A link to a %s." -msgstr "Een link naar een %s." - -#: includes/admin/views/acf-post-type/advanced-settings.php:668 -msgid "Post Link" -msgstr "Bericht link" - -#: includes/admin/views/acf-post-type/advanced-settings.php:667 -msgid "Title for a navigation link block variation." -msgstr "Titel voor een navigatie link blok variatie." - -#: includes/admin/views/acf-post-type/advanced-settings.php:666 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:681 -msgid "Item Link" -msgstr "Item link" - -#. translators: %s Singular form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:663 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:678 -msgid "%s Link" -msgstr "%s link" - -#: includes/admin/views/acf-post-type/advanced-settings.php:648 -msgid "Post updated." -msgstr "Bericht geüpdatet." - -#: includes/admin/views/acf-post-type/advanced-settings.php:647 -msgid "In the editor notice after an item is updated." -msgstr "In het editor bericht nadat een item is geüpdatet." - -#: includes/admin/views/acf-post-type/advanced-settings.php:646 -msgid "Item Updated" -msgstr "Item geüpdatet" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:643 -msgid "%s updated." -msgstr "%s geüpdatet." - -#: includes/admin/views/acf-post-type/advanced-settings.php:628 -msgid "Post scheduled." -msgstr "Bericht ingepland." - -#: includes/admin/views/acf-post-type/advanced-settings.php:627 -msgid "In the editor notice after scheduling an item." -msgstr "In het editor bericht na het plannen van een item." - -#: includes/admin/views/acf-post-type/advanced-settings.php:626 -msgid "Item Scheduled" -msgstr "Item gepland" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:623 -msgid "%s scheduled." -msgstr "%s gepland." - -#: includes/admin/views/acf-post-type/advanced-settings.php:608 -msgid "Post reverted to draft." -msgstr "Bericht teruggezet naar concept." - -#: includes/admin/views/acf-post-type/advanced-settings.php:607 -msgid "In the editor notice after reverting an item to draft." -msgstr "In het editor bericht na het terugdraaien van een item naar concept." - -#: includes/admin/views/acf-post-type/advanced-settings.php:606 -msgid "Item Reverted To Draft" -msgstr "Item teruggezet naar concept" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:603 -msgid "%s reverted to draft." -msgstr "%s teruggezet naar het concept." - -#: includes/admin/views/acf-post-type/advanced-settings.php:588 -msgid "Post published privately." -msgstr "Bericht privé gepubliceerd." - -#: includes/admin/views/acf-post-type/advanced-settings.php:587 -msgid "In the editor notice after publishing a private item." -msgstr "In het editor bericht na het publiceren van een privé item." - -#: includes/admin/views/acf-post-type/advanced-settings.php:586 -msgid "Item Published Privately" -msgstr "Item privé gepubliceerd" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:583 -msgid "%s published privately." -msgstr "%s privé gepubliceerd." - -#: includes/admin/views/acf-post-type/advanced-settings.php:568 -msgid "Post published." -msgstr "Bericht gepubliceerd." - -#: includes/admin/views/acf-post-type/advanced-settings.php:567 -msgid "In the editor notice after publishing an item." -msgstr "In het editor bericht na het publiceren van een item." - -#: includes/admin/views/acf-post-type/advanced-settings.php:566 -msgid "Item Published" -msgstr "Item gepubliceerd" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:563 -msgid "%s published." -msgstr "%s gepubliceerd." - -#: includes/admin/views/acf-post-type/advanced-settings.php:548 -msgid "Posts list" -msgstr "Berichtenlijst" - -#: includes/admin/views/acf-post-type/advanced-settings.php:547 -msgid "Used by screen readers for the items list on the post type list screen." -msgstr "" -"Gebruikt door scherm lezers voor de item lijst op het scherm van de " -"berichttypen lijst." - -#: includes/admin/views/acf-post-type/advanced-settings.php:546 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:640 -msgid "Items List" -msgstr "Items lijst" - -#. translators: %s Plural form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:543 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:637 -msgid "%s list" -msgstr "%s lijst" - -#: includes/admin/views/acf-post-type/advanced-settings.php:528 -msgid "Posts list navigation" -msgstr "Berichten lijst navigatie" - -#: includes/admin/views/acf-post-type/advanced-settings.php:527 -msgid "" -"Used by screen readers for the filter list pagination on the post type list " -"screen." -msgstr "" -"Gebruikt door scherm lezers voor de paginering van de filter lijst op het " -"scherm van de lijst met berichttypes." - -#: includes/admin/views/acf-post-type/advanced-settings.php:526 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:620 -msgid "Items List Navigation" -msgstr "Items lijst navigatie" - -#. translators: %s Plural form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:523 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:617 -msgid "%s list navigation" -msgstr "%s lijst navigatie" - -#: includes/admin/views/acf-post-type/advanced-settings.php:507 -msgid "Filter posts by date" -msgstr "Filter berichten op datum" - -#: includes/admin/views/acf-post-type/advanced-settings.php:506 -msgid "" -"Used by screen readers for the filter by date heading on the post type list " -"screen." -msgstr "" -"Gebruikt door scherm lezers voor de filter op datum koptekst in de lijst met " -"berichttypes." - -#: includes/admin/views/acf-post-type/advanced-settings.php:505 -msgid "Filter Items By Date" -msgstr "Filter items op datum" - -#. translators: %s Plural form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:501 -msgid "Filter %s by date" -msgstr "Filter %s op datum" - -#: includes/admin/views/acf-post-type/advanced-settings.php:486 -msgid "Filter posts list" -msgstr "Filter berichtenlijst" - -#: includes/admin/views/acf-post-type/advanced-settings.php:485 -msgid "" -"Used by screen readers for the filter links heading on the post type list " -"screen." -msgstr "" -"Gebruikt door scherm lezers voor het koptekst filter links op het scherm van " -"de lijst met berichttypes." - -#: includes/admin/views/acf-post-type/advanced-settings.php:484 -msgid "Filter Items List" -msgstr "Filter itemlijst" - -#. translators: %s Plural form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:480 -msgid "Filter %s list" -msgstr "Filter %s lijst" - -#: includes/admin/views/acf-post-type/advanced-settings.php:464 -msgid "In the media modal showing all media uploaded to this item." -msgstr "" -"In het media modaal worden alle media getoond die naar dit item zijn " -"geüpload." - -#: includes/admin/views/acf-post-type/advanced-settings.php:463 -msgid "Uploaded To This Item" -msgstr "Geüpload naar dit item" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:459 -msgid "Uploaded to this %s" -msgstr "Geüpload naar deze %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:444 -msgid "Insert into post" -msgstr "Invoegen in bericht" - -#: includes/admin/views/acf-post-type/advanced-settings.php:443 -msgid "As the button label when adding media to content." -msgstr "Als knop label bij het toevoegen van media aan inhoud." - -#: includes/admin/views/acf-post-type/advanced-settings.php:442 -msgid "Insert Into Media Button" -msgstr "Invoegen in media knop" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:438 -msgid "Insert into %s" -msgstr "Invoegen in %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:423 -msgid "Use as featured image" -msgstr "Gebruik als uitgelichte afbeelding" - -#: includes/admin/views/acf-post-type/advanced-settings.php:422 -msgid "" -"As the button label for selecting to use an image as the featured image." -msgstr "" -"Als knop label voor het selecteren van een afbeelding als uitgelichte " -"afbeelding." - -#: includes/admin/views/acf-post-type/advanced-settings.php:421 -msgid "Use Featured Image" -msgstr "Gebruik uitgelichte afbeelding" - -#: includes/admin/views/acf-post-type/advanced-settings.php:408 -msgid "Remove featured image" -msgstr "Verwijder uitgelichte afbeelding" - -#: includes/admin/views/acf-post-type/advanced-settings.php:407 -msgid "As the button label when removing the featured image." -msgstr "Als het knop label bij het verwijderen van de uitgelichte afbeelding." - -#: includes/admin/views/acf-post-type/advanced-settings.php:406 -msgid "Remove Featured Image" -msgstr "Verwijder uitgelichte afbeelding" - -#: includes/admin/views/acf-post-type/advanced-settings.php:393 -msgid "Set featured image" -msgstr "Uitgelichte afbeelding instellen" - -#: includes/admin/views/acf-post-type/advanced-settings.php:392 -msgid "As the button label when setting the featured image." -msgstr "Als knop label bij het instellen van de uitgelichte afbeelding." - -#: includes/admin/views/acf-post-type/advanced-settings.php:391 -msgid "Set Featured Image" -msgstr "Uitgelichte afbeelding instellen" - -#: includes/admin/views/acf-post-type/advanced-settings.php:378 -msgid "Featured image" -msgstr "Uitgelichte afbeelding" - -#: includes/admin/views/acf-post-type/advanced-settings.php:377 -msgid "In the editor used for the title of the featured image meta box." -msgstr "" -"In de editor gebruikt voor de titel van de uitgelichte afbeelding meta box." - -#: includes/admin/views/acf-post-type/advanced-settings.php:376 -msgid "Featured Image Meta Box" -msgstr "Uitgelichte afbeelding meta box" - -#: includes/admin/views/acf-post-type/advanced-settings.php:363 -msgid "Post Attributes" -msgstr "Berichtattributen" - -#: includes/admin/views/acf-post-type/advanced-settings.php:362 -msgid "In the editor used for the title of the post attributes meta box." -msgstr "" -"In de editor gebruikt voor de titel van het bericht attributen meta box." - -#: includes/admin/views/acf-post-type/advanced-settings.php:361 -msgid "Attributes Meta Box" -msgstr "Attributen meta box" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:358 -msgid "%s Attributes" -msgstr "%s attributen" - -#: includes/admin/views/acf-post-type/advanced-settings.php:343 -msgid "Post Archives" -msgstr "Bericht archieven" - -#: includes/admin/views/acf-post-type/advanced-settings.php:342 -msgid "" -"Adds 'Post Type Archive' items with this label to the list of posts shown " -"when adding items to an existing menu in a CPT with archives enabled. Only " -"appears when editing menus in 'Live Preview' mode and a custom archive slug " -"has been provided." -msgstr "" -"Voegt 'Berichttype archief' items met dit label toe aan de lijst van " -"berichten die getoond worden bij het toevoegen van items aan een bestaand " -"menu in een CPT met archieven ingeschakeld. Verschijnt alleen bij het " -"bewerken van menu's in 'Live voorbeeld' modus en wanneer een aangepaste " -"archief slug is opgegeven." - -#: includes/admin/views/acf-post-type/advanced-settings.php:341 -msgid "Archives Nav Menu" -msgstr "Archief nav menu" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:338 -msgid "%s Archives" -msgstr "%s archief" - -#: includes/admin/views/acf-post-type/advanced-settings.php:323 -msgid "No posts found in Trash" -msgstr "Geen berichten gevonden in de prullenbak" - -#: includes/admin/views/acf-post-type/advanced-settings.php:322 -msgid "" -"At the top of the post type list screen when there are no posts in the trash." -msgstr "" -"Aan de bovenkant van het scherm van de lijst met berichttypes wanneer er " -"geen berichten in de prullenbak zitten." - -#: includes/admin/views/acf-post-type/advanced-settings.php:321 -msgid "No Items Found in Trash" -msgstr "Geen items gevonden in de prullenbak" - -#. translators: %s Plural form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:317 -msgid "No %s found in Trash" -msgstr "Geen %s gevonden in de prullenbak" - -#: includes/admin/views/acf-post-type/advanced-settings.php:302 -msgid "No posts found" -msgstr "Geen berichten gevonden" - -#: includes/admin/views/acf-post-type/advanced-settings.php:301 -msgid "" -"At the top of the post type list screen when there are no posts to display." -msgstr "" -"Aan de bovenkant van het scherm van de lijst met berichttypes wanneer er " -"geen berichten zijn om weer te geven." - -#: includes/admin/views/acf-post-type/advanced-settings.php:300 -msgid "No Items Found" -msgstr "Geen items gevonden" - -#. translators: %s Plural form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:296 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:480 -msgid "No %s found" -msgstr "Geen %s gevonden" - -#: includes/admin/views/acf-post-type/advanced-settings.php:281 -msgid "Search Posts" -msgstr "Berichten zoeken" - -#: includes/admin/views/acf-post-type/advanced-settings.php:280 -msgid "At the top of the items screen when searching for an item." -msgstr "Aan de bovenkant van het item scherm bij het zoeken naar een item." - -#: includes/admin/views/acf-post-type/advanced-settings.php:279 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:345 -msgid "Search Items" -msgstr "Items zoeken" - -#. translators: %s Singular form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:276 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:342 -msgid "Search %s" -msgstr "%s zoeken" - -#: includes/admin/views/acf-post-type/advanced-settings.php:261 -msgid "Parent Page:" -msgstr "Hoofdpagina:" - -#: includes/admin/views/acf-post-type/advanced-settings.php:260 -msgid "For hierarchical types in the post type list screen." -msgstr "Voor hiërarchische types in het scherm van de berichttypen lijst." - -#: includes/admin/views/acf-post-type/advanced-settings.php:259 -msgid "Parent Item Prefix" -msgstr "Hoofditem voorvoegsel" - -#. translators: %s Singular form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:256 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:318 -msgid "Parent %s:" -msgstr "Hoofd %s:" - -#: includes/admin/views/acf-post-type/advanced-settings.php:241 -msgid "New Post" -msgstr "Nieuw bericht" - -#: includes/admin/views/acf-post-type/advanced-settings.php:239 -msgid "New Item" -msgstr "Nieuw item" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:236 -msgid "New %s" -msgstr "Nieuw %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:206 -msgid "Add New Post" -msgstr "Nieuw bericht toevoegen" - -#: includes/admin/views/acf-post-type/advanced-settings.php:205 -msgid "At the top of the editor screen when adding a new item." -msgstr "" -"Aan de bovenkant van het editor scherm bij het toevoegen van een nieuw item." - -#: includes/admin/views/acf-post-type/advanced-settings.php:204 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:256 -msgid "Add New Item" -msgstr "Nieuw item toevoegen" - -#. translators: %s Singular form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:201 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:253 -msgid "Add New %s" -msgstr "Nieuwe %s toevoegen" - -#: includes/admin/views/acf-post-type/advanced-settings.php:186 -msgid "View Posts" -msgstr "Berichten bekijken" - -#: includes/admin/views/acf-post-type/advanced-settings.php:185 -msgid "" -"Appears in the admin bar in the 'All Posts' view, provided the post type " -"supports archives and the home page is not an archive of that post type." -msgstr "" -"Verschijnt in de toolbar in de weergave 'Alle berichten', als het " -"berichttype archieven ondersteunt en de voorpagina geen archief is van dat " -"berichttype." - -#: includes/admin/views/acf-post-type/advanced-settings.php:184 -msgid "View Items" -msgstr "Items bekijken" - -#: includes/admin/views/acf-post-type/advanced-settings.php:166 -msgid "View Post" -msgstr "Bericht bekijken" - -#: includes/admin/views/acf-post-type/advanced-settings.php:165 -msgid "In the admin bar to view item when editing it." -msgstr "In de toolbar om het item te bekijken wanneer je het bewerkt." - -#: includes/admin/views/acf-post-type/advanced-settings.php:164 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:216 -msgid "View Item" -msgstr "Item bekijken" - -#. translators: %s Singular form of post type name -#. translators: %s Plural form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:161 -#: includes/admin/views/acf-post-type/advanced-settings.php:181 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:213 -msgid "View %s" -msgstr "%s bekijken" - -#: includes/admin/views/acf-post-type/advanced-settings.php:146 -msgid "Edit Post" -msgstr "Bericht bewerken" - -#: includes/admin/views/acf-post-type/advanced-settings.php:145 -msgid "At the top of the editor screen when editing an item." -msgstr "Aan de bovenkant van het editor scherm bij het bewerken van een item." - -#: includes/admin/views/acf-post-type/advanced-settings.php:144 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:196 -msgid "Edit Item" -msgstr "Item bewerken" - -#. translators: %s Singular form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:141 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:193 -msgid "Edit %s" -msgstr "%s bewerken" - -#: includes/admin/views/acf-post-type/advanced-settings.php:126 -msgid "All Posts" -msgstr "Alle berichten" - -#: includes/admin/views/acf-post-type/advanced-settings.php:125 -#: includes/admin/views/acf-post-type/advanced-settings.php:220 -#: includes/admin/views/acf-post-type/advanced-settings.php:240 -msgid "In the post type submenu in the admin dashboard." -msgstr "In het sub menu van het berichttype in het beheerder dashboard." - -#: includes/admin/views/acf-post-type/advanced-settings.php:124 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:176 -msgid "All Items" -msgstr "Alle items" - -#. translators: %s Plural form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:121 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:173 -msgid "All %s" -msgstr "Alle %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:105 -msgid "Admin menu name for the post type." -msgstr "Beheerder menu naam voor het berichttype." - -#: includes/admin/views/acf-post-type/advanced-settings.php:104 -msgid "Menu Name" -msgstr "Menu naam" - -#: includes/admin/views/acf-post-type/advanced-settings.php:90 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:142 -msgid "Regenerate all labels using the Singular and Plural labels" -msgstr "" -"Alle labels opnieuw genereren met behulp van de labels voor enkelvoud en " -"meervoud" - -#: includes/admin/views/acf-post-type/advanced-settings.php:88 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:140 -msgid "Regenerate" -msgstr "Regenereren" - -#: includes/admin/views/acf-post-type/advanced-settings.php:79 -msgid "Active post types are enabled and registered with WordPress." -msgstr "Actieve berichttypes zijn ingeschakeld en geregistreerd bij WordPress." - -#: includes/admin/views/acf-post-type/advanced-settings.php:63 -msgid "A descriptive summary of the post type." -msgstr "Een beschrijvende samenvatting van het berichttype." - -#: includes/admin/views/acf-post-type/advanced-settings.php:48 -msgid "Add Custom" -msgstr "Aangepaste toevoegen" - -#: includes/admin/views/acf-post-type/advanced-settings.php:42 -msgid "Enable various features in the content editor." -msgstr "Verschillende functies in de inhoud editor inschakelen." - -#: includes/admin/views/acf-post-type/advanced-settings.php:31 -msgid "Post Formats" -msgstr "Berichtformaten" - -#: includes/admin/views/acf-post-type/advanced-settings.php:25 -msgid "Editor" -msgstr "Editor" - -#: includes/admin/views/acf-post-type/advanced-settings.php:24 -msgid "Trackbacks" -msgstr "Trackbacks" - -#: includes/admin/views/acf-post-type/basic-settings.php:87 -msgid "Select existing taxonomies to classify items of the post type." -msgstr "" -"Selecteer bestaande taxonomieën om items van het berichttype te " -"classificeren." - -#: includes/admin/views/acf-field-group/field.php:145 -msgid "Browse Fields" -msgstr "Bladeren door velden" - -#: includes/admin/tools/class-acf-admin-tool-import.php:292 -msgid "Nothing to import" -msgstr "Er is niets om te importeren" - -#: includes/admin/tools/class-acf-admin-tool-import.php:287 -msgid ". The Custom Post Type UI plugin can be deactivated." -msgstr ". De Custom Post Type UI plugin kan worden gedeactiveerd." - -#. translators: %d - number of items imported from CPTUI -#: includes/admin/tools/class-acf-admin-tool-import.php:278 -msgid "Imported %d item from Custom Post Type UI -" -msgid_plural "Imported %d items from Custom Post Type UI -" -msgstr[0] "%d item geïmporteerd uit Custom Post Type UI -" -msgstr[1] "%d items geïmporteerd uit Custom Post Type UI -" - -#: includes/admin/tools/class-acf-admin-tool-import.php:262 -msgid "Failed to import taxonomies." -msgstr "Kan taxonomieën niet importeren." - -#: includes/admin/tools/class-acf-admin-tool-import.php:244 -msgid "Failed to import post types." -msgstr "Kan berichttypen niet importeren." - -#: includes/admin/tools/class-acf-admin-tool-import.php:233 -msgid "Nothing from Custom Post Type UI plugin selected for import." -msgstr "Niets van extra berichttype UI plugin geselecteerd voor import." - -#: includes/admin/tools/class-acf-admin-tool-import.php:209 -msgid "Imported 1 item" -msgid_plural "Imported %s items" -msgstr[0] "1 item geïmporteerd" -msgstr[1] "%s items geïmporteerd" - -#: includes/admin/tools/class-acf-admin-tool-import.php:122 -msgid "" -"Importing a Post Type or Taxonomy with the same key as one that already " -"exists will overwrite the settings for the existing Post Type or Taxonomy " -"with those of the import." -msgstr "" -"Als je een berichttype of taxonomie importeert met dezelfde sleutel als een " -"reeds bestaand berichttype of taxonomie, worden de instellingen voor het " -"bestaande berichttype of de bestaande taxonomie overschreven met die van de " -"import." - -#: includes/admin/tools/class-acf-admin-tool-import.php:111 -#: includes/admin/tools/class-acf-admin-tool-import.php:127 -msgid "Import from Custom Post Type UI" -msgstr "Importeer vanuit Custom Post Type UI" - -#: includes/admin/tools/class-acf-admin-tool-export.php:412 -msgid "" -"The following code can be used to register a local version of the selected " -"items. Storing field groups, post types, or taxonomies locally can provide " -"many benefits such as faster load times, version control & dynamic fields/" -"settings. Simply copy and paste the following code to your theme's functions." -"php file or include it within an external file, then deactivate or delete " -"the items from the ACF admin." -msgstr "" -"De volgende code kan worden gebruikt om een lokale versie van de " -"geselecteerde items te registreren. Het lokaal opslaan van veldgroepen, " -"berichttypen of taxonomieën kan veel voordelen bieden, zoals snellere " -"laadtijden, versiebeheer en dynamische velden/instellingen. Kopieer en plak " -"de volgende code in het functions.php-bestand van je thema of neem het op in " -"een extern bestand, en deactiveer of verwijder vervolgens de items uit de " -"ACF beheer." - -#: includes/admin/tools/class-acf-admin-tool-export.php:411 -msgid "Export - Generate PHP" -msgstr "Exporteren - PHP genereren" - -#: includes/admin/tools/class-acf-admin-tool-export.php:384 -msgid "Export" -msgstr "Exporteren" - -#: includes/admin/tools/class-acf-admin-tool-export.php:276 -msgid "Select Taxonomies" -msgstr "Taxonomieën selecteren" - -#: includes/admin/tools/class-acf-admin-tool-export.php:254 -msgid "Select Post Types" -msgstr "Berichttypen selecteren" - -#: includes/admin/tools/class-acf-admin-tool-export.php:167 -msgid "Exported 1 item." -msgid_plural "Exported %s items." -msgstr[0] "1 item geëxporteerd." -msgstr[1] "%s items geëxporteerd." - -#: includes/admin/post-types/admin-taxonomy.php:129 -#: assets/build/js/acf-internal-post-type.js:182 -#: assets/build/js/acf-internal-post-type.js:256 -msgid "Category" -msgstr "Categorie" - -#: includes/admin/post-types/admin-taxonomy.php:127 -#: assets/build/js/acf-internal-post-type.js:179 -#: assets/build/js/acf-internal-post-type.js:253 -msgid "Tag" -msgstr "Tag" - -#. translators: %s taxonomy name -#: includes/admin/post-types/admin-taxonomy.php:82 -msgid "%s taxonomy created" -msgstr "%s taxonomie aangemaakt" - -#. translators: %s taxonomy name -#: includes/admin/post-types/admin-taxonomy.php:76 -msgid "%s taxonomy updated" -msgstr "%s taxonomie geüpdatet" - -#: includes/admin/post-types/admin-taxonomy.php:56 -msgid "Taxonomy draft updated." -msgstr "Taxonomie concept geüpdatet." - -#: includes/admin/post-types/admin-taxonomy.php:55 -msgid "Taxonomy scheduled for." -msgstr "Taxonomie ingepland voor." - -#: includes/admin/post-types/admin-taxonomy.php:54 -msgid "Taxonomy submitted." -msgstr "Taxonomie ingediend." - -#: includes/admin/post-types/admin-taxonomy.php:53 -msgid "Taxonomy saved." -msgstr "Taxonomie opgeslagen." - -#: includes/admin/post-types/admin-taxonomy.php:49 -msgid "Taxonomy deleted." -msgstr "Taxonomie verwijderd." - -#: includes/admin/post-types/admin-taxonomy.php:48 -msgid "Taxonomy updated." -msgstr "Taxonomie geüpdatet." - -#: includes/admin/post-types/admin-taxonomies.php:377 -#: includes/admin/post-types/admin-taxonomy.php:157 -msgid "" -"This taxonomy could not be registered because its key is in use by another " -"taxonomy registered by another plugin or theme." -msgstr "" -"Deze taxonomie kon niet worden geregistreerd omdat de sleutel ervan in " -"gebruik is door een andere taxonomie die door een andere plugin of thema is " -"geregistreerd." - -#. translators: %s number of taxonomies synchronized -#: includes/admin/post-types/admin-taxonomies.php:359 -msgid "Taxonomy synchronized." -msgid_plural "%s taxonomies synchronized." -msgstr[0] "Taxonomie gesynchroniseerd." -msgstr[1] "%s taxonomieën gesynchroniseerd." - -#. translators: %s number of taxonomies duplicated -#: includes/admin/post-types/admin-taxonomies.php:352 -msgid "Taxonomy duplicated." -msgid_plural "%s taxonomies duplicated." -msgstr[0] "Taxonomie gedupliceerd." -msgstr[1] "%s taxonomieën gedupliceerd." - -#. translators: %s number of taxonomies deactivated -#: includes/admin/post-types/admin-taxonomies.php:345 -msgid "Taxonomy deactivated." -msgid_plural "%s taxonomies deactivated." -msgstr[0] "Taxonomie gedeactiveerd." -msgstr[1] "%s taxonomieën gedeactiveerd." - -#. translators: %s number of taxonomies activated -#: includes/admin/post-types/admin-taxonomies.php:338 -msgid "Taxonomy activated." -msgid_plural "%s taxonomies activated." -msgstr[0] "Taxonomie geactiveerd." -msgstr[1] "%s taxonomieën geactiveerd." - -#: includes/admin/post-types/admin-taxonomies.php:139 -msgid "Terms" -msgstr "Termen" - -#. translators: %s number of post types synchronized -#: includes/admin/post-types/admin-post-types.php:352 -msgid "Post type synchronized." -msgid_plural "%s post types synchronized." -msgstr[0] "Berichttype gesynchroniseerd." -msgstr[1] "%s berichttypen gesynchroniseerd." - -#. translators: %s number of post types duplicated -#: includes/admin/post-types/admin-post-types.php:345 -msgid "Post type duplicated." -msgid_plural "%s post types duplicated." -msgstr[0] "Berichttype gedupliceerd." -msgstr[1] "%s berichttypen gedupliceerd." - -#. translators: %s number of post types deactivated -#: includes/admin/post-types/admin-post-types.php:338 -msgid "Post type deactivated." -msgid_plural "%s post types deactivated." -msgstr[0] "Berichttype gedeactiveerd." -msgstr[1] "%s berichttypen gedeactiveerd." - -#. translators: %s number of post types activated -#: includes/admin/post-types/admin-post-types.php:331 -msgid "Post type activated." -msgid_plural "%s post types activated." -msgstr[0] "Berichttype geactiveerd." -msgstr[1] "%s berichttypen geactiveerd." - -#: includes/admin/post-types/admin-post-types.php:112 -#: includes/admin/post-types/admin-taxonomies.php:137 -#: includes/admin/tools/class-acf-admin-tool-import.php:82 -#: includes/admin/views/acf-taxonomy/basic-settings.php:82 -#: includes/post-types/class-acf-post-type.php:91 -msgid "Post Types" -msgstr "Berichttypen" - -#: includes/admin/post-types/admin-post-type.php:162 -#: includes/admin/post-types/admin-taxonomy.php:164 -msgid "Advanced Settings" -msgstr "Geavanceerde instellingen" - -#: includes/admin/post-types/admin-post-type.php:161 -#: includes/admin/post-types/admin-taxonomy.php:163 -msgid "Basic Settings" -msgstr "Basisinstellingen" - -#: includes/admin/post-types/admin-post-type.php:155 -#: includes/admin/post-types/admin-post-types.php:370 -msgid "" -"This post type could not be registered because its key is in use by another " -"post type registered by another plugin or theme." -msgstr "" -"Dit berichttype kon niet worden geregistreerd omdat de sleutel ervan in " -"gebruik is door een ander berichttype dat door een andere plugin of een " -"ander thema is geregistreerd." - -#: includes/admin/post-types/admin-post-type.php:128 -#: assets/build/js/acf-internal-post-type.js:176 -#: assets/build/js/acf-internal-post-type.js:250 -msgid "Pages" -msgstr "Pagina's" - -#: includes/admin/admin-internal-post-type.php:355 -msgid "Link Existing Field Groups" -msgstr "Link bestaande veld groepen" - -#. translators: %s post type name -#: includes/admin/post-types/admin-post-type.php:80 -msgid "%s post type created" -msgstr "%s berichttype aangemaakt" - -#. translators: %s taxonomy name -#: includes/admin/post-types/admin-taxonomy.php:78 -msgid "Add fields to %s" -msgstr "Velden toevoegen aan %s" - -#. translators: %s post type name -#: includes/admin/post-types/admin-post-type.php:76 -msgid "%s post type updated" -msgstr "%s berichttype geüpdatet" - -#: includes/admin/post-types/admin-post-type.php:56 -msgid "Post type draft updated." -msgstr "Berichttype concept geüpdatet." - -#: includes/admin/post-types/admin-post-type.php:55 -msgid "Post type scheduled for." -msgstr "Berichttype ingepland voor." - -#: includes/admin/post-types/admin-post-type.php:54 -msgid "Post type submitted." -msgstr "Berichttype ingediend." - -#: includes/admin/post-types/admin-post-type.php:53 -msgid "Post type saved." -msgstr "Berichttype opgeslagen." - -#: includes/admin/post-types/admin-post-type.php:50 -msgid "Post type updated." -msgstr "Berichttype geüpdatet." - -#: includes/admin/post-types/admin-post-type.php:49 -msgid "Post type deleted." -msgstr "Berichttype verwijderd." - -#: includes/admin/post-types/admin-field-group.php:120 -#: assets/build/js/acf-field-group.js:1146 -#: assets/build/js/acf-field-group.js:1366 -msgid "Type to search..." -msgstr "Typ om te zoeken..." - -#: includes/admin/post-types/admin-field-group.php:105 -#: assets/build/js/acf-field-group.js:1172 -#: assets/build/js/acf-field-group.js:2319 -#: assets/build/js/acf-field-group.js:1414 -#: assets/build/js/acf-field-group.js:2727 -msgid "PRO Only" -msgstr "Alleen in PRO" - -#: includes/admin/post-types/admin-field-group.php:97 -#: assets/build/js/acf-internal-post-type.js:308 -#: assets/build/js/acf-internal-post-type.js:417 -msgid "Field groups linked successfully." -msgstr "Veldgroepen succesvol gelinkt." - -#. translators: %s - URL to ACF tools page. -#: includes/admin/admin.php:195 -msgid "" -"Import Post Types and Taxonomies registered with Custom Post Type UI and " -"manage them with ACF. Get Started." -msgstr "" -"Importeer berichttypen en taxonomieën die zijn geregistreerd met extra " -"berichttype UI en beheerder ze met ACF. Aan de slag." - -#: includes/admin/admin.php:48 includes/admin/admin.php:267 -msgid "ACF" -msgstr "ACF" - -#: includes/admin/admin-internal-post-type.php:322 -msgid "taxonomy" -msgstr "taxonomie" - -#: includes/admin/admin-internal-post-type.php:322 -msgid "post type" -msgstr "berichttype" - -#: includes/admin/admin-internal-post-type.php:346 -msgid "Done" -msgstr "Klaar" - -#: includes/admin/admin-internal-post-type.php:332 -msgid "Field Group(s)" -msgstr "Veld groep(en)" - -#: includes/admin/admin-internal-post-type.php:331 -msgid "Select one or many field groups..." -msgstr "Selecteer één of meerdere veldgroepen..." - -#: includes/admin/admin-internal-post-type.php:330 -msgid "Please select the field groups to link." -msgstr "Selecteer de veldgroepen om te linken." - -#: includes/admin/admin-internal-post-type.php:288 -msgid "Field group linked successfully." -msgid_plural "Field groups linked successfully." -msgstr[0] "Veldgroep succesvol gelinkt." -msgstr[1] "Veldgroepen succesvol gelinkt." - -#: includes/admin/admin-internal-post-type-list.php:261 -#: includes/admin/post-types/admin-post-types.php:371 -#: includes/admin/post-types/admin-taxonomies.php:378 -msgctxt "post status" -msgid "Registration Failed" -msgstr "Registratie mislukt" - -#: includes/admin/admin-internal-post-type-list.php:260 -msgid "" -"This item could not be registered because its key is in use by another item " -"registered by another plugin or theme." -msgstr "" -"Dit item kon niet worden geregistreerd omdat zijn sleutel in gebruik is door " -"een ander item geregistreerd door een andere plugin of thema." - -#: includes/acf-internal-post-type-functions.php:482 -#: includes/acf-internal-post-type-functions.php:511 -msgid "REST API" -msgstr "REST API" - -#: includes/acf-internal-post-type-functions.php:481 -#: includes/acf-internal-post-type-functions.php:510 -#: includes/acf-internal-post-type-functions.php:537 -msgid "Permissions" -msgstr "Rechten" - -#: includes/acf-internal-post-type-functions.php:480 -#: includes/acf-internal-post-type-functions.php:509 -msgid "URLs" -msgstr "URL's" - -#: includes/acf-internal-post-type-functions.php:479 -#: includes/acf-internal-post-type-functions.php:508 -#: includes/acf-internal-post-type-functions.php:535 -msgid "Visibility" -msgstr "Zichtbaarheid" - -#: includes/acf-internal-post-type-functions.php:478 -#: includes/acf-internal-post-type-functions.php:507 -#: includes/acf-internal-post-type-functions.php:536 -msgid "Labels" -msgstr "Labels" - -#: includes/admin/post-types/admin-field-group.php:269 -msgid "Field Settings Tabs" -msgstr "Tabs voor veldinstellingen" - -#. Author URI of the plugin -msgid "" -"https://wpengine.com/?utm_source=wordpress." -"org&utm_medium=referral&utm_campaign=plugin_directory&utm_content=advanced_custom_fields" -msgstr "" -"https://wpengine.com/?utm_source=wordpress." -"org&utm_medium=referral&utm_campaign=plugin_directory&utm_content=advanced_custom_fields" - -#: includes/api/api-template.php:867 -msgid "[ACF shortcode value disabled for preview]" -msgstr "[ACF shortcode waarde uitgeschakeld voor voorbeeld]" - -#: includes/admin/admin-internal-post-type.php:298 -#: includes/admin/post-types/admin-field-group.php:571 -msgid "Close Modal" -msgstr "Modal sluiten" - -#: includes/admin/post-types/admin-field-group.php:96 -#: assets/build/js/acf-field-group.js:1670 -#: assets/build/js/acf-field-group.js:1993 -msgid "Field moved to other group" -msgstr "Veld verplaatst naar andere groep" - -#: includes/admin/post-types/admin-field-group.php:95 -#: assets/build/js/acf.js:1437 assets/build/js/acf.js:1517 -msgid "Close modal" -msgstr "Modal sluiten" - -#: includes/fields/class-acf-field-tab.php:125 -msgid "Start a new group of tabs at this tab." -msgstr "Begin een nieuwe groep van tabs bij dit tab." - -#: includes/fields/class-acf-field-tab.php:124 -msgid "New Tab Group" -msgstr "Nieuwe tabgroep" - -#: includes/fields/class-acf-field-select.php:451 -#: includes/fields/class-acf-field-true_false.php:200 -msgid "Use a stylized checkbox using select2" -msgstr "Een gestileerde checkbox gebruiken met select2" - -#: includes/fields/class-acf-field-radio.php:260 -msgid "Save Other Choice" -msgstr "Andere keuze opslaan" - -#: includes/fields/class-acf-field-radio.php:249 -msgid "Allow Other Choice" -msgstr "Andere keuze toestaan" - -#: includes/fields/class-acf-field-checkbox.php:450 -msgid "Add Toggle All" -msgstr "Toevoegen toggle alle" - -#: includes/fields/class-acf-field-checkbox.php:409 -msgid "Save Custom Values" -msgstr "Aangepaste waarden opslaan" - -#: includes/fields/class-acf-field-checkbox.php:398 -msgid "Allow Custom Values" -msgstr "Aangepaste waarden toestaan" - -#: includes/fields/class-acf-field-checkbox.php:148 -msgid "Checkbox custom values cannot be empty. Uncheck any empty values." -msgstr "" -"Aangepaste waarden van het selectievakje mogen niet leeg zijn. Vink lege " -"waarden uit." - -#: includes/admin/views/global/navigation.php:248 -msgid "Updates" -msgstr "Updates" - -#: includes/admin/views/global/navigation.php:176 -msgid "Advanced Custom Fields logo" -msgstr "Advanced Custom Fields logo" - -#: includes/admin/views/global/form-top.php:89 -msgid "Save Changes" -msgstr "Wijzigingen opslaan" - -#: includes/admin/views/global/form-top.php:76 -msgid "Field Group Title" -msgstr "Veldgroep titel" - -#: includes/admin/views/acf-post-type/advanced-settings.php:704 -#: includes/admin/views/global/form-top.php:3 -msgid "Add title" -msgstr "Titel toevoegen" - -#. translators: %s url to getting started guide -#: includes/admin/views/acf-field-group/list-empty.php:20 -#: includes/admin/views/acf-post-type/list-empty.php:12 -#: includes/admin/views/acf-taxonomy/list-empty.php:12 -#: includes/admin/views/options-page-preview.php:13 -msgid "" -"New to ACF? Take a look at our getting " -"started guide." -msgstr "" -"Ben je nieuw bij ACF? Bekijk onze startersgids." - -#: includes/admin/views/acf-field-group/list-empty.php:15 -msgid "Add Field Group" -msgstr "Veldgroep toevoegen" - -#. translators: %s url to creating a field group page -#: includes/admin/views/acf-field-group/list-empty.php:10 -msgid "" -"ACF uses field groups to group custom " -"fields together, and then attach those fields to edit screens." -msgstr "" -"ACF gebruikt veldgroepen om aangepaste " -"velden te groeperen, en die velden vervolgens te koppelen aan " -"bewerkingsschermen." - -#: includes/admin/views/acf-field-group/list-empty.php:5 -msgid "Add Your First Field Group" -msgstr "Voeg je eerste veldgroep toe" - -#: includes/admin/admin-options-pages-preview.php:28 -#: includes/admin/views/acf-field-group/pro-features.php:54 -#: includes/admin/views/global/navigation.php:86 -#: includes/admin/views/global/navigation.php:250 -msgid "Options Pages" -msgstr "Opties pagina's" - -#: includes/admin/views/acf-field-group/pro-features.php:50 -msgid "ACF Blocks" -msgstr "ACF blokken" - -#: includes/admin/views/acf-field-group/pro-features.php:58 -msgid "Gallery Field" -msgstr "Galerij veld" - -#: includes/admin/views/acf-field-group/pro-features.php:38 -msgid "Flexible Content Field" -msgstr "Flexibel inhoudsveld" - -#: includes/admin/views/acf-field-group/pro-features.php:42 -msgid "Repeater Field" -msgstr "Herhaler veld" - -#: includes/admin/views/global/navigation.php:212 -msgid "Unlock Extra Features with ACF PRO" -msgstr "Ontgrendel extra functies met ACF PRO" - -#: includes/admin/views/acf-field-group/options.php:267 -msgid "Delete Field Group" -msgstr "Veldgroep verwijderen" - -#. translators: 1: Post creation date 2: Post creation time -#: includes/admin/views/acf-field-group/options.php:261 -msgid "Created on %1$s at %2$s" -msgstr "Gemaakt op %1$s om %2$s" - -#: includes/acf-field-group-functions.php:497 -msgid "Group Settings" -msgstr "Groepsinstellingen" - -#: includes/acf-field-group-functions.php:495 -msgid "Location Rules" -msgstr "Locatieregels" - -#. translators: %s url to field types list -#: includes/admin/views/acf-field-group/fields.php:72 -msgid "" -"Choose from over 30 field types. Learn " -"more." -msgstr "" -"Kies uit meer dan 30 veldtypes. Meer " -"informatie." - -#: includes/admin/views/acf-field-group/fields.php:65 -msgid "" -"Get started creating new custom fields for your posts, pages, custom post " -"types and other WordPress content." -msgstr "" -"Ga aan de slag met het maken van nieuwe aangepaste velden voor je berichten, " -"pagina's, aangepaste berichttypes en andere WordPress inhoud." - -#: includes/admin/views/acf-field-group/fields.php:64 -msgid "Add Your First Field" -msgstr "Voeg je eerste veld toe" - -#. translators: A symbol (or text, if not available in your locale) meaning -#. "Order Number", in terms of positional placement. -#: includes/admin/views/acf-field-group/fields.php:43 -msgid "#" -msgstr "#" - -#: includes/admin/views/acf-field-group/fields.php:33 -#: includes/admin/views/acf-field-group/fields.php:67 -#: includes/admin/views/acf-field-group/fields.php:103 -#: includes/admin/views/global/form-top.php:85 -msgid "Add Field" -msgstr "Veld toevoegen" - -#: includes/acf-field-group-functions.php:496 includes/fields.php:410 -msgid "Presentation" -msgstr "Presentatie" - -#: includes/fields.php:409 -msgid "Validation" -msgstr "Validatie" - -#: includes/acf-internal-post-type-functions.php:477 -#: includes/acf-internal-post-type-functions.php:506 includes/fields.php:408 -msgid "General" -msgstr "Algemeen" - -#: includes/admin/tools/class-acf-admin-tool-import.php:70 -msgid "Import JSON" -msgstr "JSON importeren" - -#: includes/admin/tools/class-acf-admin-tool-export.php:392 -msgid "Export As JSON" -msgstr "Als JSON exporteren" - -#. translators: %s number of field groups deactivated -#: includes/admin/post-types/admin-field-groups.php:367 -msgid "Field group deactivated." -msgid_plural "%s field groups deactivated." -msgstr[0] "Veldgroep gedeactiveerd." -msgstr[1] "%s veldgroepen gedeactiveerd." - -#. translators: %s number of field groups activated -#: includes/admin/post-types/admin-field-groups.php:360 -msgid "Field group activated." -msgid_plural "%s field groups activated." -msgstr[0] "Veldgroep geactiveerd." -msgstr[1] "%s veldgroepen geactiveerd." - -#: includes/admin/admin-internal-post-type-list.php:452 -#: includes/admin/admin-internal-post-type-list.php:478 -msgid "Deactivate" -msgstr "Deactiveren" - -#: includes/admin/admin-internal-post-type-list.php:452 -msgid "Deactivate this item" -msgstr "Deactiveer dit item" - -#: includes/admin/admin-internal-post-type-list.php:448 -#: includes/admin/admin-internal-post-type-list.php:477 -msgid "Activate" -msgstr "Activeren" - -#: includes/admin/admin-internal-post-type-list.php:448 -msgid "Activate this item" -msgstr "Activeer dit item" - -#: includes/admin/post-types/admin-field-group.php:92 -#: assets/build/js/acf-field-group.js:2812 -#: assets/build/js/acf-field-group.js:3313 -msgid "Move field group to trash?" -msgstr "Veldgroep naar prullenbak verplaatsen?" - -#: acf.php:497 includes/admin/admin-internal-post-type-list.php:248 -#: includes/admin/post-types/admin-field-group.php:297 -#: includes/admin/post-types/admin-post-type.php:295 -#: includes/admin/post-types/admin-taxonomy.php:297 -msgctxt "post status" -msgid "Inactive" -msgstr "Inactief" - -#. Author of the plugin -msgid "WP Engine" -msgstr "WP Engine" - -#: acf.php:555 -msgid "" -"Advanced Custom Fields and Advanced Custom Fields PRO should not be active " -"at the same time. We've automatically deactivated Advanced Custom Fields PRO." -msgstr "" -"Advanced Custom Fields en Advanced Custom Fields PRO kunnen niet " -"tegelijkertijd actief zijn. We hebben Advanced Custom Fields PRO automatisch " -"gedeactiveerd." - -#: acf.php:553 -msgid "" -"Advanced Custom Fields and Advanced Custom Fields PRO should not be active " -"at the same time. We've automatically deactivated Advanced Custom Fields." -msgstr "" -"Advanced Custom Fields en Advanced Custom Fields PRO kunnen niet " -"tegelijkertijd actief zijn. We hebben Advanced Custom Fields automatisch " -"gedeactiveerd." - -#: includes/acf-value-functions.php:374 -msgid "" -"%1$s - We've detected one or more calls to retrieve ACF " -"field values before ACF has been initialized. This is not supported and can " -"result in malformed or missing data. Learn how to fix this." -msgstr "" -"%1$s - We hebben een of meer aanroepen gedetecteerd om ACF " -"veldwaarden op te halen voordat ACF is geïnitialiseerd. Dit wordt niet " -"ondersteund en kan leiden tot verkeerd ingedeelde of ontbrekende gegevens. " -"Meer informatie over hoe je dit kunt " -"oplossen.." - -#: includes/fields/class-acf-field-user.php:551 -msgid "%1$s must have a user with the %2$s role." -msgid_plural "%1$s must have a user with one of the following roles: %2$s" -msgstr[0] "%1$s moet een gebruiker hebben met de rol %2$s." -msgstr[1] "%1$s moet een gebruiker hebben met een van de volgende rollen %2$s" - -#: includes/fields/class-acf-field-user.php:542 -msgid "%1$s must have a valid user ID." -msgstr "%1$s moet een geldig gebruikers ID hebben." - -#: includes/fields/class-acf-field-user.php:380 -msgid "Invalid request." -msgstr "Ongeldige aanvraag." - -#: includes/fields/class-acf-field-select.php:684 -msgid "%1$s is not one of %2$s" -msgstr "%1$s is niet een van %2$s" - -#: includes/fields/class-acf-field-post_object.php:700 -msgid "%1$s must have term %2$s." -msgid_plural "%1$s must have one of the following terms: %2$s" -msgstr[0] "%1$s moet term %2$s hebben." -msgstr[1] "%1$s moet een van de volgende termen hebben %2$s" - -#: includes/fields/class-acf-field-post_object.php:684 -msgid "%1$s must be of post type %2$s." -msgid_plural "%1$s must be of one of the following post types: %2$s" -msgstr[0] "%1$s moet van het berichttype %2$s zijn." -msgstr[1] "%1$s moet van een van de volgende berichttypes zijn %2$s" - -#: includes/fields/class-acf-field-post_object.php:675 -msgid "%1$s must have a valid post ID." -msgstr "%1$s moet een geldig bericht ID hebben." - -#: includes/fields/class-acf-field-file.php:475 -msgid "%s requires a valid attachment ID." -msgstr "%s vereist een geldig bijlage ID." - -#: includes/admin/views/acf-field-group/options.php:233 -msgid "Show in REST API" -msgstr "Toon in REST API" - -#: includes/fields/class-acf-field-color_picker.php:168 -msgid "Enable Transparency" -msgstr "Transparantie inschakelen" - -#: includes/fields/class-acf-field-color_picker.php:187 -msgid "RGBA Array" -msgstr "RGBA array" - -#: includes/fields/class-acf-field-color_picker.php:98 -msgid "RGBA String" -msgstr "RGBA string" - -#: includes/fields/class-acf-field-color_picker.php:97 -#: includes/fields/class-acf-field-color_picker.php:186 -msgid "Hex String" -msgstr "Hex string" - -#: includes/admin/views/browse-fields-modal.php:65 -msgid "Upgrade to PRO" -msgstr "Upgrade naar PRO" - -#: includes/admin/post-types/admin-field-group.php:297 -#: includes/admin/post-types/admin-post-type.php:295 -#: includes/admin/post-types/admin-taxonomy.php:297 -msgctxt "post status" -msgid "Active" -msgstr "Actief" - -#: includes/fields/class-acf-field-email.php:181 -msgid "'%s' is not a valid email address" -msgstr "'%s' is geen geldig e-mailadres" - -#: includes/fields/class-acf-field-color_picker.php:76 -msgid "Color value" -msgstr "Kleurwaarde" - -#: includes/fields/class-acf-field-color_picker.php:74 -msgid "Select default color" -msgstr "Selecteer standaardkleur" - -#: includes/fields/class-acf-field-color_picker.php:72 -msgid "Clear color" -msgstr "Kleur wissen" - -#: includes/acf-wp-functions.php:90 -msgid "Blocks" -msgstr "Blokken" - -#: includes/acf-wp-functions.php:86 -msgid "Options" -msgstr "Opties" - -#: includes/acf-wp-functions.php:82 -msgid "Users" -msgstr "Gebruikers" - -#: includes/acf-wp-functions.php:78 -msgid "Menu items" -msgstr "Menu-items" - -#: includes/acf-wp-functions.php:70 -msgid "Widgets" -msgstr "Widgets" - -#: includes/acf-wp-functions.php:62 -msgid "Attachments" -msgstr "Bijlagen" - -#: includes/acf-wp-functions.php:57 -#: includes/admin/post-types/admin-post-types.php:137 -#: includes/admin/post-types/admin-taxonomies.php:112 -#: includes/admin/tools/class-acf-admin-tool-import.php:93 -#: includes/admin/views/acf-post-type/basic-settings.php:86 -#: includes/post-types/class-acf-taxonomy.php:90 -#: includes/post-types/class-acf-taxonomy.php:91 -msgid "Taxonomies" -msgstr "Taxonomieën" - -#: includes/acf-wp-functions.php:44 -#: includes/admin/post-types/admin-post-type.php:126 -#: includes/admin/post-types/admin-post-types.php:139 -#: includes/admin/views/acf-post-type/advanced-settings.php:106 -#: assets/build/js/acf-internal-post-type.js:173 -#: assets/build/js/acf-internal-post-type.js:247 -msgid "Posts" -msgstr "Berichten" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:76 -msgid "Last updated: %s" -msgstr "Laatst geüpdatet: %s" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:70 -msgid "Sorry, this post is unavailable for diff comparison." -msgstr "Dit bericht is niet beschikbaar voor verschil vergelijking." - -#: includes/ajax/class-acf-ajax-local-json-diff.php:42 -msgid "Invalid field group parameter(s)." -msgstr "Ongeldige veldgroep parameter(s)." - -#: includes/admin/admin-internal-post-type-list.php:413 -msgid "Awaiting save" -msgstr "In afwachting van opslaan" - -#: includes/admin/admin-internal-post-type-list.php:410 -msgid "Saved" -msgstr "Opgeslagen" - -#: includes/admin/admin-internal-post-type-list.php:406 -#: includes/admin/tools/class-acf-admin-tool-import.php:49 -msgid "Import" -msgstr "Importeren" - -#: includes/admin/admin-internal-post-type-list.php:402 -msgid "Review changes" -msgstr "Beoordeel wijzigingen" - -#: includes/admin/admin-internal-post-type-list.php:378 -msgid "Located in: %s" -msgstr "Bevindt zich in: %s" - -#: includes/admin/admin-internal-post-type-list.php:375 -msgid "Located in plugin: %s" -msgstr "Bevindt zich in plugin: %s" - -#: includes/admin/admin-internal-post-type-list.php:372 -msgid "Located in theme: %s" -msgstr "Bevindt zich in thema: %s" - -#: includes/admin/post-types/admin-field-groups.php:261 -msgid "Various" -msgstr "Diverse" - -#: includes/admin/admin-internal-post-type-list.php:216 -#: includes/admin/admin-internal-post-type-list.php:485 -msgid "Sync changes" -msgstr "Synchroniseer wijzigingen" - -#: includes/admin/admin-internal-post-type-list.php:215 -msgid "Loading diff" -msgstr "Diff laden" - -#: includes/admin/admin-internal-post-type-list.php:214 -msgid "Review local JSON changes" -msgstr "Lokale JSON wijzigingen beoordelen" - -#: includes/admin/admin.php:170 -msgid "Visit website" -msgstr "Bezoek site" - -#: includes/admin/admin.php:169 -msgid "View details" -msgstr "Details bekijken" - -#: includes/admin/admin.php:168 -msgid "Version %s" -msgstr "Versie %s" - -#: includes/admin/admin.php:167 -msgid "Information" -msgstr "Informatie" - -#: includes/admin/admin.php:158 -msgid "" -"Help Desk. The support professionals on " -"our Help Desk will assist with your more in depth, technical challenges." -msgstr "" -"Helpdesk. De ondersteuning " -"professionals op onze helpdesk zullen je helpen met meer diepgaande, " -"technische uitdagingen." - -#: includes/admin/admin.php:154 -msgid "" -"Discussions. We have an active and " -"friendly community on our Community Forums who may be able to help you " -"figure out the 'how-tos' of the ACF world." -msgstr "" -"Discussies. We hebben een actieve en " -"vriendelijke community op onze community forums die je misschien kunnen " -"helpen met de 'how-tos' van de ACF wereld." - -#: includes/admin/admin.php:150 -msgid "" -"Documentation. Our extensive " -"documentation contains references and guides for most situations you may " -"encounter." -msgstr "" -"Documentatie. Onze uitgebreide " -"documentatie bevat referenties en handleidingen voor de meeste situaties die " -"je kunt tegenkomen." - -#: includes/admin/admin.php:147 -msgid "" -"We are fanatical about support, and want you to get the best out of your " -"website with ACF. If you run into any difficulties, there are several places " -"you can find help:" -msgstr "" -"Wij zijn fanatiek in ondersteuning en willen dat je met ACF het beste uit je " -"site haalt. Als je problemen ondervindt, zijn er verschillende plaatsen waar " -"je hulp kan vinden:" - -#: includes/admin/admin.php:144 includes/admin/admin.php:146 -msgid "Help & Support" -msgstr "Hulp & ondersteuning" - -#: includes/admin/admin.php:135 -msgid "" -"Please use the Help & Support tab to get in touch should you find yourself " -"requiring assistance." -msgstr "" -"Gebruik de tab Hulp & ondersteuning om contact op te nemen als je hulp nodig " -"hebt." - -#: includes/admin/admin.php:132 -msgid "" -"Before creating your first Field Group, we recommend first reading our Getting started guide to familiarize " -"yourself with the plugin's philosophy and best practises." -msgstr "" -"Voordat je je eerste veldgroep maakt, raden we je aan om eerst onze Aan de slag gids te lezen om je vertrouwd te " -"maken met de filosofie en best practices van de plugin." - -#: includes/admin/admin.php:130 -msgid "" -"The Advanced Custom Fields plugin provides a visual form builder to " -"customize WordPress edit screens with extra fields, and an intuitive API to " -"display custom field values in any theme template file." -msgstr "" -"De Advanced Custom Fields plugin biedt een visuele formulierbouwer om " -"WordPress bewerkingsschermen aan te passen met extra velden, en een " -"intuïtieve API om aangepaste veldwaarden weer te geven in elk thema template " -"bestand." - -#: includes/admin/admin.php:127 includes/admin/admin.php:129 -msgid "Overview" -msgstr "Overzicht" - -#: includes/locations.php:36 -msgid "Location type \"%s\" is already registered." -msgstr "Locatietype \"%s\" is al geregistreerd." - -#: includes/locations.php:25 -msgid "Class \"%s\" does not exist." -msgstr "Klasse \"%s\" bestaat niet." - -#: includes/ajax/class-acf-ajax.php:157 -msgid "Invalid nonce." -msgstr "Ongeldige nonce." - -#: includes/fields/class-acf-field-user.php:375 -msgid "Error loading field." -msgstr "Fout tijdens laden van veld." - -#: assets/build/js/acf-input.js:2750 assets/build/js/acf-input.js:2819 -#: assets/build/js/acf-input.js:2926 assets/build/js/acf-input.js:3000 -msgid "Location not found: %s" -msgstr "Locatie niet gevonden: %s" - -#: includes/forms/form-user.php:353 -msgid "Error: %s" -msgstr "Fout: %s" - -#: includes/locations/class-acf-location-widget.php:22 -msgid "Widget" -msgstr "Widget" - -#: includes/locations/class-acf-location-user-role.php:24 -msgid "User Role" -msgstr "Gebruikersrol" - -#: includes/locations/class-acf-location-comment.php:22 -msgid "Comment" -msgstr "Reactie" - -#: includes/locations/class-acf-location-post-format.php:22 -msgid "Post Format" -msgstr "Berichtformat" - -#: includes/locations/class-acf-location-nav-menu-item.php:22 -msgid "Menu Item" -msgstr "Menu-item" - -#: includes/locations/class-acf-location-post-status.php:22 -msgid "Post Status" -msgstr "Berichtstatus" - -#: includes/acf-wp-functions.php:74 -#: includes/locations/class-acf-location-nav-menu.php:89 -msgid "Menus" -msgstr "Menu's" - -#: includes/locations/class-acf-location-nav-menu.php:80 -msgid "Menu Locations" -msgstr "Menulocaties" - -#: includes/locations/class-acf-location-nav-menu.php:22 -msgid "Menu" -msgstr "Menu" - -#: includes/locations/class-acf-location-post-taxonomy.php:22 -msgid "Post Taxonomy" -msgstr "Bericht taxonomie" - -#: includes/locations/class-acf-location-page-type.php:114 -msgid "Child Page (has parent)" -msgstr "Subpagina (heeft hoofdpagina)" - -#: includes/locations/class-acf-location-page-type.php:113 -msgid "Parent Page (has children)" -msgstr "Hoofdpagina (heeft subpagina's)" - -#: includes/locations/class-acf-location-page-type.php:112 -msgid "Top Level Page (no parent)" -msgstr "Pagina op hoogste niveau (geen hoofdpagina)" - -#: includes/locations/class-acf-location-page-type.php:111 -msgid "Posts Page" -msgstr "Berichtenpagina" - -#: includes/locations/class-acf-location-page-type.php:110 -msgid "Front Page" -msgstr "Voorpagina" - -#: includes/locations/class-acf-location-page-type.php:22 -msgid "Page Type" -msgstr "Paginatype" - -#: includes/locations/class-acf-location-current-user.php:73 -msgid "Viewing back end" -msgstr "Back-end aan het bekijken" - -#: includes/locations/class-acf-location-current-user.php:72 -msgid "Viewing front end" -msgstr "Front-end aan het bekijken" - -#: includes/locations/class-acf-location-current-user.php:71 -msgid "Logged in" -msgstr "Ingelogd" - -#: includes/locations/class-acf-location-current-user.php:22 -msgid "Current User" -msgstr "Huidige gebruiker" - -#: includes/locations/class-acf-location-page-template.php:22 -msgid "Page Template" -msgstr "Paginatemplate" - -#: includes/locations/class-acf-location-user-form.php:74 -msgid "Register" -msgstr "Registreren" - -#: includes/locations/class-acf-location-user-form.php:73 -msgid "Add / Edit" -msgstr "Toevoegen / bewerken" - -#: includes/locations/class-acf-location-user-form.php:22 -msgid "User Form" -msgstr "Gebruikersformulier" - -#: includes/locations/class-acf-location-page-parent.php:22 -msgid "Page Parent" -msgstr "Hoofdpagina" - -#: includes/locations/class-acf-location-current-user-role.php:77 -msgid "Super Admin" -msgstr "Superbeheerder" - -#: includes/locations/class-acf-location-current-user-role.php:22 -msgid "Current User Role" -msgstr "Huidige gebruikersrol" - -#: includes/locations/class-acf-location-page-template.php:73 -#: includes/locations/class-acf-location-post-template.php:85 -msgid "Default Template" -msgstr "Standaard template" - -#: includes/locations/class-acf-location-post-template.php:22 -msgid "Post Template" -msgstr "Bericht template" - -#: includes/locations/class-acf-location-post-category.php:22 -msgid "Post Category" -msgstr "Berichtcategorie" - -#: includes/locations/class-acf-location-attachment.php:84 -msgid "All %s formats" -msgstr "Alle %s formats" - -#: includes/locations/class-acf-location-attachment.php:22 -msgid "Attachment" -msgstr "Bijlage" - -#: includes/validation.php:366 -msgid "%s value is required" -msgstr "%s waarde is verplicht" - -#: includes/admin/views/acf-field-group/conditional-logic.php:59 -msgid "Show this field if" -msgstr "Toon dit veld als" - -#: includes/admin/views/acf-field-group/conditional-logic.php:26 -#: includes/admin/views/acf-field-group/field.php:109 includes/fields.php:411 -msgid "Conditional Logic" -msgstr "Voorwaardelijke logica" - -#: includes/admin/views/acf-field-group/conditional-logic.php:156 -#: includes/admin/views/acf-field-group/location-rule.php:92 -msgid "and" -msgstr "en" - -#: includes/admin/post-types/admin-field-groups.php:123 -#: includes/admin/post-types/admin-post-types.php:143 -#: includes/admin/post-types/admin-taxonomies.php:143 -msgid "Local JSON" -msgstr "Lokale JSON" - -#: includes/admin/views/acf-field-group/pro-features.php:46 -msgid "Clone Field" -msgstr "Veld klonen" - -#: includes/admin/views/upgrade/notice.php:30 -msgid "" -"Please also check all premium add-ons (%s) are updated to the latest version." -msgstr "" -"Controleer ook of alle premium addons (%s) zijn geüpdatet naar de nieuwste " -"versie." - -#: includes/admin/views/upgrade/notice.php:28 -msgid "" -"This version contains improvements to your database and requires an upgrade." -msgstr "" -"Deze versie bevat verbeteringen voor je database en vereist een upgrade." - -#: includes/admin/views/upgrade/notice.php:28 -msgid "Thank you for updating to %1$s v%2$s!" -msgstr "Bedankt voor het updaten naar %1$s v%2$s!" - -#: includes/admin/views/upgrade/notice.php:27 -msgid "Database Upgrade Required" -msgstr "Database-upgrade vereist" - -#: includes/admin/post-types/admin-field-group.php:141 -#: includes/admin/views/upgrade/notice.php:18 -msgid "Options Page" -msgstr "Opties pagina" - -#: includes/admin/views/upgrade/notice.php:15 includes/fields.php:462 -msgid "Gallery" -msgstr "Galerij" - -#: includes/admin/views/upgrade/notice.php:12 includes/fields.php:452 -msgid "Flexible Content" -msgstr "Flexibele inhoud" - -#: includes/admin/views/upgrade/notice.php:9 includes/fields.php:472 -msgid "Repeater" -msgstr "Herhaler" - -#: includes/admin/views/tools/tools.php:24 -msgid "Back to all tools" -msgstr "Terug naar alle gereedschappen" - -#: includes/admin/views/acf-field-group/options.php:195 -msgid "" -"If multiple field groups appear on an edit screen, the first field group's " -"options will be used (the one with the lowest order number)" -msgstr "" -"Als er meerdere veldgroepen op een bewerkingsscherm verschijnen, dan worden " -"de opties van de eerste veldgroep gebruikt (degene met het laagste volgorde " -"nummer)" - -#: includes/admin/views/acf-field-group/options.php:195 -msgid "Select items to hide them from the edit screen." -msgstr "" -"Selecteer items om ze te verbergen in het bewerkingsscherm." - -#: includes/admin/views/acf-field-group/options.php:194 -msgid "Hide on screen" -msgstr "Verberg op scherm" - -#: includes/admin/views/acf-field-group/options.php:186 -msgid "Send Trackbacks" -msgstr "Trackbacks verzenden" - -#: includes/admin/post-types/admin-taxonomy.php:128 -#: includes/admin/views/acf-field-group/options.php:185 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:159 -#: assets/build/js/acf-internal-post-type.js:180 -#: assets/build/js/acf-internal-post-type.js:254 -msgid "Tags" -msgstr "Tags" - -#: includes/admin/post-types/admin-taxonomy.php:130 -#: includes/admin/views/acf-field-group/options.php:184 -#: assets/build/js/acf-internal-post-type.js:183 -#: assets/build/js/acf-internal-post-type.js:257 -msgid "Categories" -msgstr "Categorieën" - -#: includes/admin/views/acf-field-group/options.php:182 -#: includes/admin/views/acf-post-type/advanced-settings.php:28 -msgid "Page Attributes" -msgstr "Pagina attributen" - -#: includes/admin/views/acf-field-group/options.php:181 -msgid "Format" -msgstr "Format" - -#: includes/admin/views/acf-field-group/options.php:180 -#: includes/admin/views/acf-post-type/advanced-settings.php:22 -msgid "Author" -msgstr "Auteur" - -#: includes/admin/views/acf-field-group/options.php:179 -msgid "Slug" -msgstr "Slug" - -#: includes/admin/views/acf-field-group/options.php:178 -#: includes/admin/views/acf-post-type/advanced-settings.php:27 -msgid "Revisions" -msgstr "Revisies" - -#: includes/acf-wp-functions.php:66 -#: includes/admin/views/acf-field-group/options.php:177 -#: includes/admin/views/acf-post-type/advanced-settings.php:23 -msgid "Comments" -msgstr "Reacties" - -#: includes/admin/views/acf-field-group/options.php:176 -msgid "Discussion" -msgstr "Discussie" - -#: includes/admin/views/acf-field-group/options.php:174 -#: includes/admin/views/acf-post-type/advanced-settings.php:26 -msgid "Excerpt" -msgstr "Samenvatting" - -#: includes/admin/views/acf-field-group/options.php:173 -msgid "Content Editor" -msgstr "Inhoudseditor" - -#: includes/admin/views/acf-field-group/options.php:172 -msgid "Permalink" -msgstr "Permalink" - -#: includes/admin/views/acf-field-group/options.php:250 -msgid "Shown in field group list" -msgstr "Weergegeven in lijst met veldgroepen" - -#: includes/admin/views/acf-field-group/options.php:157 -msgid "Field groups with a lower order will appear first" -msgstr "Veldgroepen met een lagere volgorde verschijnen als eerste" - -#: includes/admin/views/acf-field-group/options.php:156 -msgid "Order No." -msgstr "Volgorde nr." - -#: includes/admin/views/acf-field-group/options.php:147 -msgid "Below fields" -msgstr "Onder velden" - -#: includes/admin/views/acf-field-group/options.php:146 -msgid "Below labels" -msgstr "Onder labels" - -#: includes/admin/views/acf-field-group/options.php:139 -msgid "Instruction Placement" -msgstr "Instructie plaatsing" - -#: includes/admin/views/acf-field-group/options.php:122 -msgid "Label Placement" -msgstr "Label plaatsing" - -#: includes/admin/views/acf-field-group/options.php:110 -msgid "Side" -msgstr "Zijkant" - -#: includes/admin/views/acf-field-group/options.php:109 -msgid "Normal (after content)" -msgstr "Normaal (na inhoud)" - -#: includes/admin/views/acf-field-group/options.php:108 -msgid "High (after title)" -msgstr "Hoog (na titel)" - -#: includes/admin/views/acf-field-group/options.php:101 -msgid "Position" -msgstr "Positie" - -#: includes/admin/views/acf-field-group/options.php:92 -msgid "Seamless (no metabox)" -msgstr "Naadloos (geen meta box)" - -#: includes/admin/views/acf-field-group/options.php:91 -msgid "Standard (WP metabox)" -msgstr "Standaard (met metabox)" - -#: includes/admin/views/acf-field-group/options.php:84 -msgid "Style" -msgstr "Stijl" - -#: includes/admin/views/acf-field-group/fields.php:55 -msgid "Type" -msgstr "Type" - -#: includes/admin/post-types/admin-field-groups.php:117 -#: includes/admin/post-types/admin-post-types.php:136 -#: includes/admin/post-types/admin-taxonomies.php:136 -#: includes/admin/views/acf-field-group/fields.php:54 -msgid "Key" -msgstr "Sleutel" - -#. translators: Hidden accessibility text for the positional order number of -#. the field. -#: includes/admin/views/acf-field-group/fields.php:48 -msgid "Order" -msgstr "Volgorde" - -#: includes/admin/views/acf-field-group/field.php:322 -msgid "Close Field" -msgstr "Veld sluiten" - -#: includes/admin/views/acf-field-group/field.php:253 -msgid "id" -msgstr "ID" - -#: includes/admin/views/acf-field-group/field.php:237 -msgid "class" -msgstr "klasse" - -#: includes/admin/views/acf-field-group/field.php:279 -msgid "width" -msgstr "breedte" - -#: includes/admin/views/acf-field-group/field.php:273 -msgid "Wrapper Attributes" -msgstr "Wrapper attributen" - -#: includes/admin/views/acf-field-group/field.php:196 -msgid "Required" -msgstr "Vereist" - -#: includes/admin/views/acf-field-group/field.php:221 -msgid "Instructions for authors. Shown when submitting data" -msgstr "Instructies voor auteurs. Wordt getoond bij het indienen van gegevens" - -#: includes/admin/views/acf-field-group/field.php:220 -msgid "Instructions" -msgstr "Instructies" - -#: includes/admin/views/acf-field-group/field.php:129 -msgid "Field Type" -msgstr "Veldtype" - -#: includes/admin/views/acf-field-group/field.php:170 -msgid "Single word, no spaces. Underscores and dashes allowed" -msgstr "Eén woord, geen spaties. Underscores en verbindingsstrepen toegestaan" - -#: includes/admin/views/acf-field-group/field.php:169 -msgid "Field Name" -msgstr "Veldnaam" - -#: includes/admin/views/acf-field-group/field.php:157 -msgid "This is the name which will appear on the EDIT page" -msgstr "Dit is de naam die op de BEWERK pagina zal verschijnen" - -#: includes/admin/views/acf-field-group/field.php:156 -#: includes/admin/views/browse-fields-modal.php:59 -msgid "Field Label" -msgstr "Veldlabel" - -#: includes/admin/views/acf-field-group/field.php:81 -msgid "Delete" -msgstr "Verwijderen" - -#: includes/admin/views/acf-field-group/field.php:81 -msgid "Delete field" -msgstr "Veld verwijderen" - -#: includes/admin/views/acf-field-group/field.php:79 -msgid "Move" -msgstr "Verplaatsen" - -#: includes/admin/views/acf-field-group/field.php:79 -msgid "Move field to another group" -msgstr "Veld naar een andere groep verplaatsen" - -#: includes/admin/views/acf-field-group/field.php:77 -msgid "Duplicate field" -msgstr "Veld dupliceren" - -#: includes/admin/views/acf-field-group/field.php:73 -#: includes/admin/views/acf-field-group/field.php:76 -msgid "Edit field" -msgstr "Veld bewerken" - -#: includes/admin/views/acf-field-group/field.php:69 -msgid "Drag to reorder" -msgstr "Sleep om te herschikken" - -#: includes/admin/post-types/admin-field-group.php:103 -#: includes/admin/views/acf-field-group/location-group.php:3 -#: assets/build/js/acf-field-group.js:2347 -#: assets/build/js/acf-field-group.js:2763 -msgid "Show this field group if" -msgstr "Deze veldgroep weergeven als" - -#: includes/admin/views/upgrade/upgrade.php:94 -#: includes/ajax/class-acf-ajax-upgrade.php:34 -msgid "No updates available." -msgstr "Er zijn geen updates beschikbaar." - -#: includes/admin/views/upgrade/upgrade.php:33 -msgid "Database upgrade complete. See what's new" -msgstr "Database upgrade voltooid. Bekijk wat er nieuw is" - -#: includes/admin/views/upgrade/upgrade.php:30 -msgid "Reading upgrade tasks..." -msgstr "Upgradetaken lezen..." - -#: includes/admin/views/upgrade/network.php:165 -#: includes/admin/views/upgrade/upgrade.php:65 -msgid "Upgrade failed." -msgstr "Upgrade mislukt." - -#: includes/admin/views/upgrade/network.php:162 -msgid "Upgrade complete." -msgstr "Upgrade voltooid." - -#: includes/admin/views/upgrade/network.php:148 -#: includes/admin/views/upgrade/upgrade.php:31 -msgid "Upgrading data to version %s" -msgstr "Gegevens upgraden naar versie %s" - -#: includes/admin/views/upgrade/network.php:121 -#: includes/admin/views/upgrade/notice.php:44 -msgid "" -"It is strongly recommended that you backup your database before proceeding. " -"Are you sure you wish to run the updater now?" -msgstr "" -"Het is sterk aan te raden om eerst een back-up van de database te maken " -"voordat je de update uitvoert. Weet je zeker dat je de update nu wilt " -"uitvoeren?" - -#: includes/admin/views/upgrade/network.php:117 -msgid "Please select at least one site to upgrade." -msgstr "Selecteer ten minste één site om te upgraden." - -#: includes/admin/views/upgrade/network.php:97 -msgid "" -"Database Upgrade complete. Return to network dashboard" -msgstr "" -"Database upgrade voltooid. Terug naar netwerk dashboard" - -#: includes/admin/views/upgrade/network.php:80 -msgid "Site is up to date" -msgstr "Site is up-to-date" - -#: includes/admin/views/upgrade/network.php:78 -msgid "Site requires database upgrade from %1$s to %2$s" -msgstr "Site vereist database-upgrade van %1$s naar %2$s" - -#: includes/admin/views/upgrade/network.php:36 -#: includes/admin/views/upgrade/network.php:47 -msgid "Site" -msgstr "Site" - -#: includes/admin/views/upgrade/network.php:26 -#: includes/admin/views/upgrade/network.php:27 -#: includes/admin/views/upgrade/network.php:96 -msgid "Upgrade Sites" -msgstr "Sites upgraden" - -#: includes/admin/views/upgrade/network.php:26 -msgid "" -"The following sites require a DB upgrade. Check the ones you want to update " -"and then click %s." -msgstr "" -"De volgende sites vereisen een upgrade van de database. Selecteer de sites " -"die je wilt updaten en klik vervolgens op %s." - -#: includes/admin/views/acf-field-group/conditional-logic.php:171 -#: includes/admin/views/acf-field-group/locations.php:38 -msgid "Add rule group" -msgstr "Regelgroep toevoegen" - -#: includes/admin/views/acf-field-group/locations.php:10 -msgid "" -"Create a set of rules to determine which edit screens will use these " -"advanced custom fields" -msgstr "" -"Maak een set met regels aan om te bepalen welke aangepaste schermen deze " -"extra velden zullen gebruiken" - -#: includes/admin/views/acf-field-group/locations.php:9 -msgid "Rules" -msgstr "Regels" - -#: includes/admin/tools/class-acf-admin-tool-export.php:510 -msgid "Copied" -msgstr "Gekopieerd" - -#: includes/admin/tools/class-acf-admin-tool-export.php:486 -msgid "Copy to clipboard" -msgstr "Naar klembord kopiëren" - -#: includes/admin/tools/class-acf-admin-tool-export.php:385 -msgid "" -"Select the items you would like to export and then select your export " -"method. Export As JSON to export to a .json file which you can then import " -"to another ACF installation. Generate PHP to export to PHP code which you " -"can place in your theme." -msgstr "" -"Selecteer de items die je wilt exporteren en selecteer dan je export " -"methode. Exporteer als JSON om te exporteren naar een .json-bestand dat je " -"vervolgens kunt importeren in een andere ACF installatie. Genereer PHP om te " -"exporteren naar PHP code die je in je thema kunt plaatsen." - -#: includes/admin/tools/class-acf-admin-tool-export.php:233 -msgid "Select Field Groups" -msgstr "Veldgroepen selecteren" - -#: includes/admin/tools/class-acf-admin-tool-export.php:96 -#: includes/admin/tools/class-acf-admin-tool-export.php:131 -msgid "No field groups selected" -msgstr "Geen veldgroepen geselecteerd" - -#: includes/admin/tools/class-acf-admin-tool-export.php:39 -#: includes/admin/tools/class-acf-admin-tool-export.php:393 -#: includes/admin/tools/class-acf-admin-tool-export.php:421 -msgid "Generate PHP" -msgstr "PHP genereren" - -#: includes/admin/tools/class-acf-admin-tool-export.php:35 -msgid "Export Field Groups" -msgstr "Veldgroepen exporteren" - -#: includes/admin/tools/class-acf-admin-tool-import.php:177 -msgid "Import file empty" -msgstr "Importbestand is leeg" - -#: includes/admin/tools/class-acf-admin-tool-import.php:168 -msgid "Incorrect file type" -msgstr "Onjuist bestandstype" - -#: includes/admin/tools/class-acf-admin-tool-import.php:163 -msgid "Error uploading file. Please try again" -msgstr "Fout bij uploaden van bestand. Probeer het opnieuw" - -#: includes/admin/tools/class-acf-admin-tool-import.php:50 -msgid "" -"Select the Advanced Custom Fields JSON file you would like to import. When " -"you click the import button below, ACF will import the items in that file." -msgstr "" -"Selecteer het Advanced Custom Fields JSON-bestand dat je wilt importeren. " -"Wanneer je op de onderstaande import knop klikt, importeert ACF de items in " -"dat bestand." - -#: includes/admin/tools/class-acf-admin-tool-import.php:27 -msgid "Import Field Groups" -msgstr "Veldgroepen importeren" - -#: includes/admin/admin-internal-post-type-list.php:401 -msgid "Sync" -msgstr "Sync" - -#: includes/admin/admin-internal-post-type-list.php:858 -msgid "Select %s" -msgstr "Selecteer %s" - -#: includes/admin/admin-internal-post-type-list.php:442 -#: includes/admin/admin-internal-post-type-list.php:474 -#: includes/admin/views/acf-field-group/field.php:77 -msgid "Duplicate" -msgstr "Dupliceren" - -#: includes/admin/admin-internal-post-type-list.php:442 -msgid "Duplicate this item" -msgstr "Dit item dupliceren" - -#: includes/admin/views/acf-post-type/advanced-settings.php:41 -msgid "Supports" -msgstr "Ondersteunt" - -#: includes/admin/admin.php:261 includes/admin/views/browse-fields-modal.php:92 -msgid "Documentation" -msgstr "Documentatie" - -#: includes/admin/post-types/admin-field-groups.php:116 -#: includes/admin/post-types/admin-post-types.php:135 -#: includes/admin/post-types/admin-taxonomies.php:135 -#: includes/admin/views/acf-field-group/options.php:249 -#: includes/admin/views/acf-post-type/advanced-settings.php:62 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:114 -#: includes/admin/views/upgrade/network.php:38 -#: includes/admin/views/upgrade/network.php:49 -msgid "Description" -msgstr "Beschrijving" - -#: includes/admin/admin-internal-post-type-list.php:398 -#: includes/admin/admin-internal-post-type-list.php:747 -msgid "Sync available" -msgstr "Synchronisatie beschikbaar" - -#. translators: %s number of field groups synchronized -#: includes/admin/post-types/admin-field-groups.php:381 -msgid "Field group synchronized." -msgid_plural "%s field groups synchronized." -msgstr[0] "Veldgroep gesynchroniseerd." -msgstr[1] "%s veld groepen gesynchroniseerd." - -#. translators: %s number of field groups duplicated -#: includes/admin/post-types/admin-field-groups.php:374 -msgid "Field group duplicated." -msgid_plural "%s field groups duplicated." -msgstr[0] "Veldgroep gedupliceerd." -msgstr[1] "%s veldgroepen gedupliceerd." - -#: includes/admin/admin-internal-post-type-list.php:137 -msgid "Active (%s)" -msgid_plural "Active (%s)" -msgstr[0] "Actief (%s)" -msgstr[1] "Actief (%s)" - -#: includes/admin/admin-upgrade.php:254 -msgid "Review sites & upgrade" -msgstr "Beoordeel sites & upgrade" - -#: includes/admin/admin-upgrade.php:59 includes/admin/admin-upgrade.php:93 -#: includes/admin/admin-upgrade.php:94 includes/admin/admin-upgrade.php:230 -#: includes/admin/views/upgrade/network.php:24 -#: includes/admin/views/upgrade/upgrade.php:26 -msgid "Upgrade Database" -msgstr "Database upgraden" - -#: includes/admin/views/acf-field-group/options.php:175 -#: includes/admin/views/acf-post-type/advanced-settings.php:30 -msgid "Custom Fields" -msgstr "Aangepaste velden" - -#: includes/admin/post-types/admin-field-group.php:616 -msgid "Move Field" -msgstr "Veld verplaatsen" - -#: includes/admin/post-types/admin-field-group.php:605 -#: includes/admin/post-types/admin-field-group.php:609 -msgid "Please select the destination for this field" -msgstr "Selecteer de bestemming voor dit veld" - -#. translators: Confirmation message once a field has been moved to a different -#. field group. -#: includes/admin/post-types/admin-field-group.php:567 -msgid "The %1$s field can now be found in the %2$s field group" -msgstr "Het %1$s veld is nu te vinden in de %2$s veldgroep" - -#: includes/admin/post-types/admin-field-group.php:564 -msgid "Move Complete." -msgstr "Verplaatsen voltooid." - -#: includes/admin/views/acf-field-group/field.php:39 -#: includes/admin/views/acf-field-group/options.php:217 -#: includes/admin/views/acf-post-type/advanced-settings.php:78 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:130 -msgid "Active" -msgstr "Actief" - -#: includes/admin/post-types/admin-field-group.php:266 -msgid "Field Keys" -msgstr "Veldsleutels" - -#: includes/admin/post-types/admin-field-group.php:164 -#: includes/admin/tools/class-acf-admin-tool-export.php:342 -msgid "Settings" -msgstr "Instellingen" - -#: includes/admin/post-types/admin-field-groups.php:118 -msgid "Location" -msgstr "Locatie" - -#: includes/admin/post-types/admin-field-group.php:104 -#: assets/build/js/acf-input.js:983 assets/build/js/acf-input.js:1075 -msgid "Null" -msgstr "Null" - -#: includes/admin/post-types/admin-field-group.php:101 -#: includes/class-acf-internal-post-type.php:730 -#: includes/post-types/class-acf-field-group.php:345 -#: assets/build/js/acf-field-group.js:1510 -#: assets/build/js/acf-field-group.js:1821 -msgid "copy" -msgstr "kopie" - -#: includes/admin/post-types/admin-field-group.php:100 -#: assets/build/js/acf-field-group.js:623 -#: assets/build/js/acf-field-group.js:778 -msgid "(this field)" -msgstr "(dit veld)" - -#: includes/admin/post-types/admin-field-group.php:98 -#: assets/build/js/acf-input.js:918 assets/build/js/acf-input.js:943 -#: assets/build/js/acf-input.js:1002 assets/build/js/acf-input.js:1030 -msgid "Checked" -msgstr "Aangevinkt" - -#: includes/admin/post-types/admin-field-group.php:94 -#: assets/build/js/acf-field-group.js:1615 -#: assets/build/js/acf-field-group.js:1933 -msgid "Move Custom Field" -msgstr "Aangepast veld verplaatsen" - -#: includes/admin/post-types/admin-field-group.php:93 -#: assets/build/js/acf-field-group.js:649 -#: assets/build/js/acf-field-group.js:804 -msgid "No toggle fields available" -msgstr "Geen toggle velden beschikbaar" - -#: includes/admin/post-types/admin-field-group.php:91 -msgid "Field group title is required" -msgstr "Veldgroep titel is vereist" - -#: includes/admin/post-types/admin-field-group.php:90 -#: assets/build/js/acf-field-group.js:1604 -#: assets/build/js/acf-field-group.js:1919 -msgid "This field cannot be moved until its changes have been saved" -msgstr "" -"Dit veld kan niet worden verplaatst totdat de wijzigingen zijn opgeslagen" - -#: includes/admin/post-types/admin-field-group.php:89 -#: assets/build/js/acf-field-group.js:1414 -#: assets/build/js/acf-field-group.js:1716 -msgid "The string \"field_\" may not be used at the start of a field name" -msgstr "De string \"field_\" mag niet voor de veldnaam staan" - -#: includes/admin/post-types/admin-field-group.php:71 -msgid "Field group draft updated." -msgstr "Veldgroep concept geüpdatet." - -#: includes/admin/post-types/admin-field-group.php:70 -msgid "Field group scheduled for." -msgstr "Veldgroep gepland voor." - -#: includes/admin/post-types/admin-field-group.php:69 -msgid "Field group submitted." -msgstr "Veldgroep ingediend." - -#: includes/admin/post-types/admin-field-group.php:68 -msgid "Field group saved." -msgstr "Veldgroep opgeslagen." - -#: includes/admin/post-types/admin-field-group.php:67 -msgid "Field group published." -msgstr "Veldgroep gepubliceerd." - -#: includes/admin/post-types/admin-field-group.php:64 -msgid "Field group deleted." -msgstr "Veldgroep verwijderd." - -#: includes/admin/post-types/admin-field-group.php:62 -#: includes/admin/post-types/admin-field-group.php:63 -#: includes/admin/post-types/admin-field-group.php:65 -msgid "Field group updated." -msgstr "Veldgroep geüpdatet." - -#: includes/admin/admin-tools.php:118 -#: includes/admin/views/global/navigation.php:246 -#: includes/admin/views/tools/tools.php:21 -msgid "Tools" -msgstr "Gereedschap" - -#: includes/locations/abstract-acf-location.php:106 -msgid "is not equal to" -msgstr "is niet gelijk aan" - -#: includes/locations/abstract-acf-location.php:105 -msgid "is equal to" -msgstr "is gelijk aan" - -#: includes/locations.php:102 -msgid "Forms" -msgstr "Formulieren" - -#: includes/admin/post-types/admin-post-type.php:127 includes/locations.php:100 -#: includes/locations/class-acf-location-page.php:22 -#: assets/build/js/acf-internal-post-type.js:175 -#: assets/build/js/acf-internal-post-type.js:249 -msgid "Page" -msgstr "Pagina" - -#: includes/admin/post-types/admin-post-type.php:125 includes/locations.php:99 -#: includes/locations/class-acf-location-post.php:22 -#: assets/build/js/acf-internal-post-type.js:172 -#: assets/build/js/acf-internal-post-type.js:246 -msgid "Post" -msgstr "Bericht" - -#: includes/fields.php:354 -msgid "Relational" -msgstr "Relationeel" - -#: includes/fields.php:353 -msgid "Choice" -msgstr "Keuze" - -#: includes/fields.php:351 -msgid "Basic" -msgstr "Basis" - -#: includes/fields.php:320 -msgid "Unknown" -msgstr "Onbekend" - -#: includes/fields.php:320 -msgid "Field type does not exist" -msgstr "Veldtype bestaat niet" - -#: includes/forms/form-front.php:236 -msgid "Spam Detected" -msgstr "Spam gevonden" - -#: includes/forms/form-front.php:107 -msgid "Post updated" -msgstr "Bericht geüpdatet" - -#: includes/forms/form-front.php:106 -msgid "Update" -msgstr "Updaten" - -#: includes/forms/form-front.php:57 -msgid "Validate Email" -msgstr "E-mailadres valideren" - -#: includes/fields.php:352 includes/forms/form-front.php:49 -msgid "Content" -msgstr "Inhoud" - -#: includes/admin/views/acf-post-type/advanced-settings.php:21 -#: includes/forms/form-front.php:40 -msgid "Title" -msgstr "Titel" - -#: includes/assets.php:372 includes/forms/form-comment.php:160 -#: assets/build/js/acf-input.js:7382 assets/build/js/acf-input.js:7968 -msgid "Edit field group" -msgstr "Veldgroep bewerken" - -#: includes/admin/post-types/admin-field-group.php:117 -#: assets/build/js/acf-input.js:1125 assets/build/js/acf-input.js:1230 -msgid "Selection is less than" -msgstr "Selectie is minder dan" - -#: includes/admin/post-types/admin-field-group.php:116 -#: assets/build/js/acf-input.js:1106 assets/build/js/acf-input.js:1202 -msgid "Selection is greater than" -msgstr "Selectie is groter dan" - -#: includes/admin/post-types/admin-field-group.php:115 -#: assets/build/js/acf-input.js:1075 assets/build/js/acf-input.js:1170 -msgid "Value is less than" -msgstr "Waarde is minder dan" - -#: includes/admin/post-types/admin-field-group.php:114 -#: assets/build/js/acf-input.js:1045 assets/build/js/acf-input.js:1139 -msgid "Value is greater than" -msgstr "Waarde is groter dan" - -#: includes/admin/post-types/admin-field-group.php:113 -#: assets/build/js/acf-input.js:888 assets/build/js/acf-input.js:960 -msgid "Value contains" -msgstr "Waarde bevat" - -#: includes/admin/post-types/admin-field-group.php:112 -#: assets/build/js/acf-input.js:862 assets/build/js/acf-input.js:926 -msgid "Value matches pattern" -msgstr "Waarde komt overeen met patroon" - -#: includes/admin/post-types/admin-field-group.php:111 -#: assets/build/js/acf-input.js:840 assets/build/js/acf-input.js:1023 -#: assets/build/js/acf-input.js:903 assets/build/js/acf-input.js:1116 -msgid "Value is not equal to" -msgstr "Waarde is niet gelijk aan" - -#: includes/admin/post-types/admin-field-group.php:110 -#: assets/build/js/acf-input.js:810 assets/build/js/acf-input.js:964 -#: assets/build/js/acf-input.js:864 assets/build/js/acf-input.js:1053 -msgid "Value is equal to" -msgstr "Waarde is gelijk aan" - -#: includes/admin/post-types/admin-field-group.php:109 -#: assets/build/js/acf-input.js:788 assets/build/js/acf-input.js:841 -msgid "Has no value" -msgstr "Heeft geen waarde" - -#: includes/admin/post-types/admin-field-group.php:108 -#: assets/build/js/acf-input.js:758 assets/build/js/acf-input.js:783 -msgid "Has any value" -msgstr "Heeft een waarde" - -#: includes/admin/admin-internal-post-type.php:345 -#: includes/admin/views/browse-fields-modal.php:62 includes/assets.php:353 -#: assets/build/js/acf.js:1564 assets/build/js/acf.js:1658 -msgid "Cancel" -msgstr "Annuleren" - -#: includes/assets.php:349 assets/build/js/acf.js:1738 -#: assets/build/js/acf.js:1855 -msgid "Are you sure?" -msgstr "Weet je het zeker?" - -#: includes/assets.php:369 assets/build/js/acf-input.js:9442 -#: assets/build/js/acf-input.js:10294 -msgid "%d fields require attention" -msgstr "%d velden vereisen aandacht" - -#: includes/assets.php:368 assets/build/js/acf-input.js:9440 -#: assets/build/js/acf-input.js:10290 -msgid "1 field requires attention" -msgstr "1 veld vereist aandacht" - -#: includes/assets.php:367 includes/validation.php:288 -#: includes/validation.php:298 assets/build/js/acf-input.js:9435 -#: assets/build/js/acf-input.js:10285 -msgid "Validation failed" -msgstr "Validatie mislukt" - -#: includes/assets.php:366 assets/build/js/acf-input.js:9603 -#: assets/build/js/acf-input.js:10473 -msgid "Validation successful" -msgstr "Validatie geslaagd" - -#: includes/media.php:54 assets/build/js/acf-input.js:7210 -#: assets/build/js/acf-input.js:7772 -msgid "Restricted" -msgstr "Beperkt" - -#: includes/media.php:53 assets/build/js/acf-input.js:7025 -#: assets/build/js/acf-input.js:7536 -msgid "Collapse Details" -msgstr "Details dichtklappen" - -#: includes/media.php:52 assets/build/js/acf-input.js:7025 -#: assets/build/js/acf-input.js:7533 -msgid "Expand Details" -msgstr "Details uitklappen" - -#: includes/admin/views/acf-post-type/advanced-settings.php:465 -#: includes/media.php:51 assets/build/js/acf-input.js:6892 -#: assets/build/js/acf-input.js:7381 -msgid "Uploaded to this post" -msgstr "Geüpload naar dit bericht" - -#: includes/media.php:50 assets/build/js/acf-input.js:6931 -#: assets/build/js/acf-input.js:7420 -msgctxt "verb" -msgid "Update" -msgstr "Updaten" - -#: includes/media.php:49 -msgctxt "verb" -msgid "Edit" -msgstr "Bewerken" - -#: includes/assets.php:363 assets/build/js/acf-input.js:9212 -#: assets/build/js/acf-input.js:10056 -msgid "The changes you made will be lost if you navigate away from this page" -msgstr "De aangebrachte wijzigingen gaan verloren als je deze pagina verlaat" - -#: includes/api/api-helpers.php:3395 -msgid "File type must be %s." -msgstr "Het bestandstype moet %s zijn." - -#: includes/admin/post-types/admin-field-group.php:102 -#: includes/admin/views/acf-field-group/conditional-logic.php:59 -#: includes/admin/views/acf-field-group/conditional-logic.php:169 -#: includes/admin/views/acf-field-group/location-group.php:3 -#: includes/admin/views/acf-field-group/locations.php:36 -#: includes/api/api-helpers.php:3391 assets/build/js/acf-field-group.js:771 -#: assets/build/js/acf-field-group.js:2385 -#: assets/build/js/acf-field-group.js:933 -#: assets/build/js/acf-field-group.js:2807 -msgid "or" -msgstr "of" - -#: includes/api/api-helpers.php:3364 -msgid "File size must not exceed %s." -msgstr "De bestandsgrootte mag niet groter zijn dan %s." - -#: includes/api/api-helpers.php:3359 -msgid "File size must be at least %s." -msgstr "De bestandsgrootte moet minimaal %s zijn." - -#: includes/api/api-helpers.php:3344 -msgid "Image height must not exceed %dpx." -msgstr "De hoogte van de afbeelding mag niet hoger zijn dan %dpx." - -#: includes/api/api-helpers.php:3339 -msgid "Image height must be at least %dpx." -msgstr "De hoogte van de afbeelding moet minimaal %dpx zijn." - -#: includes/api/api-helpers.php:3325 -msgid "Image width must not exceed %dpx." -msgstr "De breedte van de afbeelding mag niet groter zijn dan %dpx." - -#: includes/api/api-helpers.php:3320 -msgid "Image width must be at least %dpx." -msgstr "De breedte van de afbeelding moet ten minste %dpx zijn." - -#: includes/api/api-helpers.php:1561 includes/api/api-term.php:147 -msgid "(no title)" -msgstr "(geen titel)" - -#: includes/api/api-helpers.php:853 -msgid "Full Size" -msgstr "Volledige grootte" - -#: includes/api/api-helpers.php:812 -msgid "Large" -msgstr "Groot" - -#: includes/api/api-helpers.php:811 -msgid "Medium" -msgstr "Medium" - -#: includes/api/api-helpers.php:810 -msgid "Thumbnail" -msgstr "Thumbnail" - -#: includes/acf-field-functions.php:854 -#: includes/admin/post-types/admin-field-group.php:99 -#: assets/build/js/acf-field-group.js:1077 -#: assets/build/js/acf-field-group.js:1260 -msgid "(no label)" -msgstr "(geen label)" - -#: includes/fields/class-acf-field-textarea.php:145 -msgid "Sets the textarea height" -msgstr "Bepaalt de hoogte van het tekstgebied" - -#: includes/fields/class-acf-field-textarea.php:144 -msgid "Rows" -msgstr "Rijen" - -#: includes/fields/class-acf-field-textarea.php:25 -msgid "Text Area" -msgstr "Tekstgebied" - -#: includes/fields/class-acf-field-checkbox.php:451 -msgid "Prepend an extra checkbox to toggle all choices" -msgstr "Voeg ervoor een extra selectievakje toe om alle keuzes te togglen" - -#: includes/fields/class-acf-field-checkbox.php:413 -msgid "Save 'custom' values to the field's choices" -msgstr "Sla 'aangepaste' waarden op in de keuzes van het veld" - -#: includes/fields/class-acf-field-checkbox.php:402 -msgid "Allow 'custom' values to be added" -msgstr "Toestaan dat 'aangepaste' waarden worden toegevoegd" - -#: includes/fields/class-acf-field-checkbox.php:38 -msgid "Add new choice" -msgstr "Nieuwe keuze toevoegen" - -#: includes/fields/class-acf-field-checkbox.php:174 -msgid "Toggle All" -msgstr "Toggle alles" - -#: includes/fields/class-acf-field-page_link.php:506 -msgid "Allow Archives URLs" -msgstr "Archief URL's toestaan" - -#: includes/fields/class-acf-field-page_link.php:179 -msgid "Archives" -msgstr "Archieven" - -#: includes/fields/class-acf-field-page_link.php:25 -msgid "Page Link" -msgstr "Pagina link" - -#: includes/fields/class-acf-field-taxonomy.php:943 -#: includes/locations/class-acf-location-user-form.php:72 -msgid "Add" -msgstr "Toevoegen" - -#: includes/admin/views/acf-field-group/fields.php:53 -#: includes/fields/class-acf-field-taxonomy.php:908 -msgid "Name" -msgstr "Naam" - -#: includes/fields/class-acf-field-taxonomy.php:892 -msgid "%s added" -msgstr "%s toegevoegd" - -#: includes/fields/class-acf-field-taxonomy.php:856 -msgid "%s already exists" -msgstr "%s bestaat al" - -#: includes/fields/class-acf-field-taxonomy.php:844 -msgid "User unable to add new %s" -msgstr "Gebruiker kan geen nieuwe %s toevoegen" - -#: includes/fields/class-acf-field-taxonomy.php:742 -msgid "Term ID" -msgstr "Term-ID" - -#: includes/fields/class-acf-field-taxonomy.php:741 -msgid "Term Object" -msgstr "Term object" - -#: includes/fields/class-acf-field-taxonomy.php:726 -msgid "Load value from posts terms" -msgstr "Laad waarde van bericht-termen" - -#: includes/fields/class-acf-field-taxonomy.php:725 -msgid "Load Terms" -msgstr "Laad termen" - -#: includes/fields/class-acf-field-taxonomy.php:715 -msgid "Connect selected terms to the post" -msgstr "Geselecteerde termen aan het bericht koppelen" - -#: includes/fields/class-acf-field-taxonomy.php:714 -msgid "Save Terms" -msgstr "Termen opslaan" - -#: includes/fields/class-acf-field-taxonomy.php:704 -msgid "Allow new terms to be created whilst editing" -msgstr "Toestaan dat nieuwe termen worden gemaakt tijdens het bewerken" - -#: includes/fields/class-acf-field-taxonomy.php:703 -msgid "Create Terms" -msgstr "Termen maken" - -#: includes/fields/class-acf-field-taxonomy.php:762 -msgid "Radio Buttons" -msgstr "Keuzerondjes" - -#: includes/fields/class-acf-field-taxonomy.php:761 -msgid "Single Value" -msgstr "Eén waarde" - -#: includes/fields/class-acf-field-taxonomy.php:759 -msgid "Multi Select" -msgstr "Multi selecteren" - -#: includes/fields/class-acf-field-checkbox.php:25 -#: includes/fields/class-acf-field-taxonomy.php:758 -msgid "Checkbox" -msgstr "Selectievakje" - -#: includes/fields/class-acf-field-taxonomy.php:757 -msgid "Multiple Values" -msgstr "Meerdere waarden" - -#: includes/fields/class-acf-field-taxonomy.php:752 -msgid "Select the appearance of this field" -msgstr "Selecteer de weergave van dit veld" - -#: includes/fields/class-acf-field-taxonomy.php:751 -msgid "Appearance" -msgstr "Weergave" - -#: includes/fields/class-acf-field-taxonomy.php:693 -msgid "Select the taxonomy to be displayed" -msgstr "Selecteer de taxonomie die moet worden weergegeven" - -#: includes/fields/class-acf-field-taxonomy.php:654 -msgctxt "No Terms" -msgid "No %s" -msgstr "Geen %s" - -#: includes/fields/class-acf-field-number.php:266 -msgid "Value must be equal to or lower than %d" -msgstr "De waarde moet gelijk zijn aan of lager zijn dan %d" - -#: includes/fields/class-acf-field-number.php:259 -msgid "Value must be equal to or higher than %d" -msgstr "De waarde moet gelijk zijn aan of hoger zijn dan %d" - -#: includes/fields/class-acf-field-number.php:244 -msgid "Value must be a number" -msgstr "Waarde moet een getal zijn" - -#: includes/fields/class-acf-field-number.php:25 -msgid "Number" -msgstr "Nummer" - -#: includes/fields/class-acf-field-radio.php:264 -msgid "Save 'other' values to the field's choices" -msgstr "'Andere' waarden opslaan in de keuzes van het veld" - -#: includes/fields/class-acf-field-radio.php:253 -msgid "Add 'other' choice to allow for custom values" -msgstr "Voeg de keuze 'overig' toe om aangepaste waarden toe te staan" - -#: includes/admin/views/global/navigation.php:196 -msgid "Other" -msgstr "Ander" - -#: includes/fields/class-acf-field-radio.php:25 -msgid "Radio Button" -msgstr "Keuzerondje" - -#: includes/fields/class-acf-field-accordion.php:107 -msgid "" -"Define an endpoint for the previous accordion to stop. This accordion will " -"not be visible." -msgstr "" -"Definieer een eindpunt waar de vorige accordeon moet stoppen. Deze accordeon " -"is niet zichtbaar." - -#: includes/fields/class-acf-field-accordion.php:96 -msgid "Allow this accordion to open without closing others." -msgstr "Deze accordeon openen zonder anderen te sluiten." - -#: includes/fields/class-acf-field-accordion.php:95 -msgid "Multi-Expand" -msgstr "Multi uitvouwen" - -#: includes/fields/class-acf-field-accordion.php:85 -msgid "Display this accordion as open on page load." -msgstr "Geef deze accordeon weer als geopend bij het laden van de pagina." - -#: includes/fields/class-acf-field-accordion.php:84 -msgid "Open" -msgstr "Openen" - -#: includes/fields/class-acf-field-accordion.php:25 -msgid "Accordion" -msgstr "Accordeon" - -#: includes/fields/class-acf-field-file.php:267 -#: includes/fields/class-acf-field-file.php:279 -msgid "Restrict which files can be uploaded" -msgstr "Beperken welke bestanden kunnen worden geüpload" - -#: includes/fields/class-acf-field-file.php:220 -msgid "File ID" -msgstr "Bestands-ID" - -#: includes/fields/class-acf-field-file.php:219 -msgid "File URL" -msgstr "Bestands-URL" - -#: includes/fields/class-acf-field-file.php:218 -msgid "File Array" -msgstr "Bestandsarray" - -#: includes/fields/class-acf-field-file.php:186 -msgid "Add File" -msgstr "Bestand toevoegen" - -#: includes/admin/tools/class-acf-admin-tool-import.php:156 -#: includes/fields/class-acf-field-file.php:186 -msgid "No file selected" -msgstr "Geen bestand geselecteerd" - -#: includes/fields/class-acf-field-file.php:150 -msgid "File name" -msgstr "Bestandsnaam" - -#: includes/fields/class-acf-field-file.php:63 -#: assets/build/js/acf-input.js:2474 assets/build/js/acf-input.js:2625 -msgid "Update File" -msgstr "Bestand updaten" - -#: includes/fields/class-acf-field-file.php:62 -#: assets/build/js/acf-input.js:2473 assets/build/js/acf-input.js:2624 -msgid "Edit File" -msgstr "Bestand bewerken" - -#: includes/admin/tools/class-acf-admin-tool-import.php:58 -#: includes/fields/class-acf-field-file.php:61 -#: assets/build/js/acf-input.js:2447 assets/build/js/acf-input.js:2597 -msgid "Select File" -msgstr "Bestand selecteren" - -#: includes/fields/class-acf-field-file.php:25 -msgid "File" -msgstr "Bestand" - -#: includes/fields/class-acf-field-password.php:25 -msgid "Password" -msgstr "Wachtwoord" - -#: includes/fields/class-acf-field-select.php:392 -msgid "Specify the value returned" -msgstr "Geef de geretourneerde waarde op" - -#: includes/fields/class-acf-field-select.php:461 -msgid "Use AJAX to lazy load choices?" -msgstr "AJAX gebruiken om keuzes te lazy-loaden?" - -#: includes/fields/class-acf-field-checkbox.php:362 -#: includes/fields/class-acf-field-select.php:381 -msgid "Enter each default value on a new line" -msgstr "Zet elke standaardwaarde op een nieuwe regel" - -#: includes/fields/class-acf-field-select.php:252 includes/media.php:48 -#: assets/build/js/acf-input.js:6790 assets/build/js/acf-input.js:7266 -msgctxt "verb" -msgid "Select" -msgstr "Selecteren" - -#: includes/fields/class-acf-field-select.php:121 -msgctxt "Select2 JS load_fail" -msgid "Loading failed" -msgstr "Laden mislukt" - -#: includes/fields/class-acf-field-select.php:120 -msgctxt "Select2 JS searching" -msgid "Searching…" -msgstr "Zoeken…" - -#: includes/fields/class-acf-field-select.php:119 -msgctxt "Select2 JS load_more" -msgid "Loading more results…" -msgstr "Meer resultaten laden…" - -#: includes/fields/class-acf-field-select.php:118 -msgctxt "Select2 JS selection_too_long_n" -msgid "You can only select %d items" -msgstr "Je kunt slechts %d items selecteren" - -#: includes/fields/class-acf-field-select.php:117 -msgctxt "Select2 JS selection_too_long_1" -msgid "You can only select 1 item" -msgstr "Je kan slechts 1 item selecteren" - -#: includes/fields/class-acf-field-select.php:116 -msgctxt "Select2 JS input_too_long_n" -msgid "Please delete %d characters" -msgstr "Verwijder %d tekens" - -#: includes/fields/class-acf-field-select.php:115 -msgctxt "Select2 JS input_too_long_1" -msgid "Please delete 1 character" -msgstr "Verwijder 1 teken" - -#: includes/fields/class-acf-field-select.php:114 -msgctxt "Select2 JS input_too_short_n" -msgid "Please enter %d or more characters" -msgstr "Voer %d of meer tekens in" - -#: includes/fields/class-acf-field-select.php:113 -msgctxt "Select2 JS input_too_short_1" -msgid "Please enter 1 or more characters" -msgstr "Voer 1 of meer tekens in" - -#: includes/fields/class-acf-field-select.php:112 -msgctxt "Select2 JS matches_0" -msgid "No matches found" -msgstr "Geen overeenkomsten gevonden" - -#: includes/fields/class-acf-field-select.php:111 -msgctxt "Select2 JS matches_n" -msgid "%d results are available, use up and down arrow keys to navigate." -msgstr "" -"%d resultaten zijn beschikbaar, gebruik de pijltoetsen omhoog en omlaag om " -"te navigeren." - -#: includes/fields/class-acf-field-select.php:110 -msgctxt "Select2 JS matches_1" -msgid "One result is available, press enter to select it." -msgstr "Er is één resultaat beschikbaar, druk op enter om het te selecteren." - -#: includes/fields/class-acf-field-select.php:25 -#: includes/fields/class-acf-field-taxonomy.php:763 -msgctxt "noun" -msgid "Select" -msgstr "Selecteer" - -#: includes/fields/class-acf-field-user.php:73 -msgid "User ID" -msgstr "Gebruikers-ID" - -#: includes/fields/class-acf-field-user.php:72 -msgid "User Object" -msgstr "Gebruikersobject" - -#: includes/fields/class-acf-field-user.php:71 -msgid "User Array" -msgstr "Gebruiker array" - -#: includes/fields/class-acf-field-user.php:59 -msgid "All user roles" -msgstr "Alle gebruikersrollen" - -#: includes/fields/class-acf-field-user.php:51 -msgid "Filter by Role" -msgstr "Filter op rol" - -#: includes/fields/class-acf-field-user.php:15 includes/locations.php:101 -msgid "User" -msgstr "Gebruiker" - -#: includes/fields/class-acf-field-separator.php:25 -msgid "Separator" -msgstr "Scheidingsteken" - -#: includes/fields/class-acf-field-color_picker.php:75 -msgid "Select Color" -msgstr "Selecteer kleur" - -#: includes/admin/post-types/admin-post-type.php:129 -#: includes/admin/post-types/admin-taxonomy.php:131 -#: includes/fields/class-acf-field-color_picker.php:73 -#: assets/build/js/acf-internal-post-type.js:72 -#: assets/build/js/acf-internal-post-type.js:86 -msgid "Default" -msgstr "Standaard" - -#: includes/admin/views/acf-post-type/advanced-settings.php:89 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:141 -#: includes/fields/class-acf-field-color_picker.php:71 -msgid "Clear" -msgstr "Wissen" - -#: includes/fields/class-acf-field-color_picker.php:25 -msgid "Color Picker" -msgstr "Kleurkiezer" - -#: includes/fields/class-acf-field-date_time_picker.php:88 -msgctxt "Date Time Picker JS pmTextShort" -msgid "P" -msgstr " " - -#: includes/fields/class-acf-field-date_time_picker.php:87 -msgctxt "Date Time Picker JS pmText" -msgid "PM" -msgstr " " - -#: includes/fields/class-acf-field-date_time_picker.php:84 -msgctxt "Date Time Picker JS amTextShort" -msgid "A" -msgstr " " - -#: includes/fields/class-acf-field-date_time_picker.php:83 -msgctxt "Date Time Picker JS amText" -msgid "AM" -msgstr " " - -#: includes/fields/class-acf-field-date_time_picker.php:81 -msgctxt "Date Time Picker JS selectText" -msgid "Select" -msgstr "Selecteer" - -#: includes/fields/class-acf-field-date_time_picker.php:80 -msgctxt "Date Time Picker JS closeText" -msgid "Done" -msgstr "Klaar" - -#: includes/fields/class-acf-field-date_time_picker.php:79 -msgctxt "Date Time Picker JS currentText" -msgid "Now" -msgstr "Nu" - -#: includes/fields/class-acf-field-date_time_picker.php:78 -msgctxt "Date Time Picker JS timezoneText" -msgid "Time Zone" -msgstr "Tijdzone" - -#: includes/fields/class-acf-field-date_time_picker.php:77 -msgctxt "Date Time Picker JS microsecText" -msgid "Microsecond" -msgstr "Microseconde" - -#: includes/fields/class-acf-field-date_time_picker.php:76 -msgctxt "Date Time Picker JS millisecText" -msgid "Millisecond" -msgstr "Milliseconde" - -#: includes/fields/class-acf-field-date_time_picker.php:75 -msgctxt "Date Time Picker JS secondText" -msgid "Second" -msgstr "Seconde" - -#: includes/fields/class-acf-field-date_time_picker.php:74 -msgctxt "Date Time Picker JS minuteText" -msgid "Minute" -msgstr "Minuut" - -#: includes/fields/class-acf-field-date_time_picker.php:73 -msgctxt "Date Time Picker JS hourText" -msgid "Hour" -msgstr "Uur" - -#: includes/fields/class-acf-field-date_time_picker.php:72 -msgctxt "Date Time Picker JS timeText" -msgid "Time" -msgstr "Tijd" - -#: includes/fields/class-acf-field-date_time_picker.php:71 -msgctxt "Date Time Picker JS timeOnlyTitle" -msgid "Choose Time" -msgstr "Kies tijd" - -#: includes/fields/class-acf-field-date_time_picker.php:25 -msgid "Date Time Picker" -msgstr "Datum tijd kiezer" - -#: includes/fields/class-acf-field-accordion.php:106 -msgid "Endpoint" -msgstr "Eindpunt" - -#: includes/admin/views/acf-field-group/options.php:130 -#: includes/fields/class-acf-field-tab.php:115 -msgid "Left aligned" -msgstr "Links uitgelijnd" - -#: includes/admin/views/acf-field-group/options.php:129 -#: includes/fields/class-acf-field-tab.php:114 -msgid "Top aligned" -msgstr "Boven uitgelijnd" - -#: includes/fields/class-acf-field-tab.php:110 -msgid "Placement" -msgstr "Plaatsing" - -#: includes/fields/class-acf-field-tab.php:26 -msgid "Tab" -msgstr "Tab" - -#: includes/fields/class-acf-field-url.php:162 -msgid "Value must be a valid URL" -msgstr "Waarde moet een geldige URL zijn" - -#: includes/fields/class-acf-field-link.php:177 -msgid "Link URL" -msgstr "Link URL" - -#: includes/fields/class-acf-field-link.php:176 -msgid "Link Array" -msgstr "Link array" - -#: includes/fields/class-acf-field-link.php:145 -msgid "Opens in a new window/tab" -msgstr "Opent in een nieuw venster/tab" - -#: includes/fields/class-acf-field-link.php:140 -msgid "Select Link" -msgstr "Link selecteren" - -#: includes/fields/class-acf-field-link.php:25 -msgid "Link" -msgstr "Link" - -#: includes/fields/class-acf-field-email.php:25 -msgid "Email" -msgstr "E-mailadres" - -#: includes/fields/class-acf-field-number.php:188 -#: includes/fields/class-acf-field-range.php:217 -msgid "Step Size" -msgstr "Stapgrootte" - -#: includes/fields/class-acf-field-number.php:158 -#: includes/fields/class-acf-field-range.php:195 -msgid "Maximum Value" -msgstr "Maximale waarde" - -#: includes/fields/class-acf-field-number.php:148 -#: includes/fields/class-acf-field-range.php:184 -msgid "Minimum Value" -msgstr "Minimum waarde" - -#: includes/fields/class-acf-field-range.php:25 -msgid "Range" -msgstr "Bereik" - -#: includes/fields/class-acf-field-button-group.php:175 -#: includes/fields/class-acf-field-checkbox.php:379 -#: includes/fields/class-acf-field-radio.php:220 -#: includes/fields/class-acf-field-select.php:399 -msgid "Both (Array)" -msgstr "Beide (array)" - -#: includes/admin/views/acf-field-group/fields.php:52 -#: includes/fields/class-acf-field-button-group.php:174 -#: includes/fields/class-acf-field-checkbox.php:378 -#: includes/fields/class-acf-field-radio.php:219 -#: includes/fields/class-acf-field-select.php:398 -msgid "Label" -msgstr "Label" - -#: includes/fields/class-acf-field-button-group.php:173 -#: includes/fields/class-acf-field-checkbox.php:377 -#: includes/fields/class-acf-field-radio.php:218 -#: includes/fields/class-acf-field-select.php:397 -msgid "Value" -msgstr "Waarde" - -#: includes/fields/class-acf-field-button-group.php:222 -#: includes/fields/class-acf-field-checkbox.php:441 -#: includes/fields/class-acf-field-radio.php:292 -msgid "Vertical" -msgstr "Verticaal" - -#: includes/fields/class-acf-field-button-group.php:221 -#: includes/fields/class-acf-field-checkbox.php:442 -#: includes/fields/class-acf-field-radio.php:293 -msgid "Horizontal" -msgstr "Horizontaal" - -#: includes/fields/class-acf-field-button-group.php:148 -#: includes/fields/class-acf-field-checkbox.php:352 -#: includes/fields/class-acf-field-radio.php:193 -#: includes/fields/class-acf-field-select.php:370 -msgid "red : Red" -msgstr "rood : Rood" - -#: includes/fields/class-acf-field-button-group.php:148 -#: includes/fields/class-acf-field-checkbox.php:352 -#: includes/fields/class-acf-field-radio.php:193 -#: includes/fields/class-acf-field-select.php:370 -msgid "For more control, you may specify both a value and label like this:" -msgstr "" -"Voor meer controle kan je zowel een waarde als een label als volgt " -"specificeren:" - -#: includes/fields/class-acf-field-button-group.php:148 -#: includes/fields/class-acf-field-checkbox.php:352 -#: includes/fields/class-acf-field-radio.php:193 -#: includes/fields/class-acf-field-select.php:370 -msgid "Enter each choice on a new line." -msgstr "Voer elke keuze in op een nieuwe regel." - -#: includes/fields/class-acf-field-button-group.php:147 -#: includes/fields/class-acf-field-checkbox.php:351 -#: includes/fields/class-acf-field-radio.php:192 -#: includes/fields/class-acf-field-select.php:369 -msgid "Choices" -msgstr "Keuzes" - -#: includes/fields/class-acf-field-button-group.php:24 -msgid "Button Group" -msgstr "Knopgroep" - -#: includes/fields/class-acf-field-button-group.php:194 -#: includes/fields/class-acf-field-page_link.php:538 -#: includes/fields/class-acf-field-post_object.php:448 -#: includes/fields/class-acf-field-radio.php:238 -#: includes/fields/class-acf-field-select.php:429 -#: includes/fields/class-acf-field-taxonomy.php:772 -#: includes/fields/class-acf-field-user.php:103 -msgid "Allow Null" -msgstr "Null toestaan?" - -#: includes/fields/class-acf-field-page_link.php:263 -#: includes/fields/class-acf-field-post_object.php:257 -#: includes/fields/class-acf-field-taxonomy.php:930 -msgid "Parent" -msgstr "Hoofd" - -#: includes/fields/class-acf-field-wysiwyg.php:390 -msgid "TinyMCE will not be initialized until field is clicked" -msgstr "TinyMCE wordt niet geïnitialiseerd totdat er op het veld wordt geklikt" - -#: includes/fields/class-acf-field-wysiwyg.php:389 -msgid "Delay Initialization" -msgstr "Initialisatie uitstellen?" - -#: includes/fields/class-acf-field-wysiwyg.php:378 -msgid "Show Media Upload Buttons" -msgstr "Media-uploadknoppen weergeven?" - -#: includes/fields/class-acf-field-wysiwyg.php:362 -msgid "Toolbar" -msgstr "Toolbar" - -#: includes/fields/class-acf-field-wysiwyg.php:354 -msgid "Text Only" -msgstr "Alleen tekst" - -#: includes/fields/class-acf-field-wysiwyg.php:353 -msgid "Visual Only" -msgstr "Alleen visueel" - -#: includes/fields/class-acf-field-wysiwyg.php:352 -msgid "Visual & Text" -msgstr "Visueel & tekst" - -#: includes/fields/class-acf-field-wysiwyg.php:347 -msgid "Tabs" -msgstr "Tabs" - -#: includes/fields/class-acf-field-wysiwyg.php:285 -msgid "Click to initialize TinyMCE" -msgstr "Klik om TinyMCE te initialiseren" - -#: includes/fields/class-acf-field-wysiwyg.php:279 -msgctxt "Name for the Text editor tab (formerly HTML)" -msgid "Text" -msgstr "Tekst" - -#: includes/fields/class-acf-field-wysiwyg.php:278 -msgid "Visual" -msgstr "Visueel" - -#: includes/fields/class-acf-field-text.php:189 -#: includes/fields/class-acf-field-textarea.php:236 -msgid "Value must not exceed %d characters" -msgstr "De waarde mag niet langer zijn dan %d karakters" - -#: includes/fields/class-acf-field-text.php:124 -#: includes/fields/class-acf-field-textarea.php:124 -msgid "Leave blank for no limit" -msgstr "Laat leeg voor geen limiet" - -#: includes/fields/class-acf-field-text.php:123 -#: includes/fields/class-acf-field-textarea.php:123 -msgid "Character Limit" -msgstr "Karakterlimiet" - -#: includes/fields/class-acf-field-email.php:158 -#: includes/fields/class-acf-field-number.php:209 -#: includes/fields/class-acf-field-password.php:105 -#: includes/fields/class-acf-field-range.php:239 -#: includes/fields/class-acf-field-text.php:164 -msgid "Appears after the input" -msgstr "Verschijnt na de invoer" - -#: includes/fields/class-acf-field-email.php:157 -#: includes/fields/class-acf-field-number.php:208 -#: includes/fields/class-acf-field-password.php:104 -#: includes/fields/class-acf-field-range.php:238 -#: includes/fields/class-acf-field-text.php:163 -msgid "Append" -msgstr "Toevoegen" - -#: includes/fields/class-acf-field-email.php:148 -#: includes/fields/class-acf-field-number.php:199 -#: includes/fields/class-acf-field-password.php:95 -#: includes/fields/class-acf-field-range.php:229 -#: includes/fields/class-acf-field-text.php:154 -msgid "Appears before the input" -msgstr "Verschijnt vóór de invoer" - -#: includes/fields/class-acf-field-email.php:147 -#: includes/fields/class-acf-field-number.php:198 -#: includes/fields/class-acf-field-password.php:94 -#: includes/fields/class-acf-field-range.php:228 -#: includes/fields/class-acf-field-text.php:153 -msgid "Prepend" -msgstr "Voorvoegen" - -#: includes/fields/class-acf-field-email.php:138 -#: includes/fields/class-acf-field-number.php:179 -#: includes/fields/class-acf-field-password.php:85 -#: includes/fields/class-acf-field-text.php:144 -#: includes/fields/class-acf-field-textarea.php:156 -#: includes/fields/class-acf-field-url.php:122 -msgid "Appears within the input" -msgstr "Wordt weergegeven in de invoer" - -#: includes/fields/class-acf-field-email.php:137 -#: includes/fields/class-acf-field-number.php:178 -#: includes/fields/class-acf-field-password.php:84 -#: includes/fields/class-acf-field-text.php:143 -#: includes/fields/class-acf-field-textarea.php:155 -#: includes/fields/class-acf-field-url.php:121 -msgid "Placeholder Text" -msgstr "Plaatshouder tekst" - -#: includes/fields/class-acf-field-button-group.php:158 -#: includes/fields/class-acf-field-email.php:118 -#: includes/fields/class-acf-field-number.php:129 -#: includes/fields/class-acf-field-radio.php:203 -#: includes/fields/class-acf-field-range.php:165 -#: includes/fields/class-acf-field-text.php:104 -#: includes/fields/class-acf-field-textarea.php:104 -#: includes/fields/class-acf-field-url.php:102 -#: includes/fields/class-acf-field-wysiwyg.php:312 -msgid "Appears when creating a new post" -msgstr "Wordt weergegeven bij het maken van een nieuw bericht" - -#: includes/fields/class-acf-field-text.php:25 -msgid "Text" -msgstr "Tekst" - -#: includes/fields/class-acf-field-relationship.php:794 -msgid "%1$s requires at least %2$s selection" -msgid_plural "%1$s requires at least %2$s selections" -msgstr[0] "%1$s vereist minimaal %2$s selectie" -msgstr[1] "%1$s vereist minimaal %2$s selecties" - -#: includes/fields/class-acf-field-post_object.php:417 -#: includes/fields/class-acf-field-relationship.php:644 -msgid "Post ID" -msgstr "Bericht ID" - -#: includes/fields/class-acf-field-post_object.php:17 -#: includes/fields/class-acf-field-post_object.php:416 -#: includes/fields/class-acf-field-relationship.php:643 -msgid "Post Object" -msgstr "Bericht object" - -#: includes/fields/class-acf-field-relationship.php:676 -msgid "Maximum Posts" -msgstr "Maximum aantal berichten" - -#: includes/fields/class-acf-field-relationship.php:666 -msgid "Minimum Posts" -msgstr "Minimum aantal berichten" - -#: includes/admin/views/acf-field-group/options.php:183 -#: includes/admin/views/acf-post-type/advanced-settings.php:29 -#: includes/fields/class-acf-field-relationship.php:701 -msgid "Featured Image" -msgstr "Uitgelichte afbeelding" - -#: includes/fields/class-acf-field-relationship.php:697 -msgid "Selected elements will be displayed in each result" -msgstr "Geselecteerde elementen worden weergegeven in elk resultaat" - -#: includes/fields/class-acf-field-relationship.php:696 -msgid "Elements" -msgstr "Elementen" - -#: includes/fields/class-acf-field-relationship.php:630 -#: includes/fields/class-acf-field-taxonomy.php:20 -#: includes/fields/class-acf-field-taxonomy.php:692 -#: includes/locations/class-acf-location-taxonomy.php:22 -msgid "Taxonomy" -msgstr "Taxonomie" - -#: includes/fields/class-acf-field-relationship.php:629 -#: includes/locations/class-acf-location-post-type.php:22 -#: includes/post-types/class-acf-post-type.php:92 -msgid "Post Type" -msgstr "Berichttype" - -#: includes/fields/class-acf-field-relationship.php:623 -msgid "Filters" -msgstr "Filters" - -#: includes/fields/class-acf-field-page_link.php:499 -#: includes/fields/class-acf-field-post_object.php:404 -#: includes/fields/class-acf-field-relationship.php:616 -msgid "All taxonomies" -msgstr "Alle taxonomieën" - -#: includes/fields/class-acf-field-page_link.php:491 -#: includes/fields/class-acf-field-post_object.php:396 -#: includes/fields/class-acf-field-relationship.php:608 -msgid "Filter by Taxonomy" -msgstr "Filter op taxonomie" - -#: includes/fields/class-acf-field-page_link.php:469 -#: includes/fields/class-acf-field-post_object.php:374 -#: includes/fields/class-acf-field-relationship.php:586 -msgid "All post types" -msgstr "Alle berichttypen" - -#: includes/fields/class-acf-field-page_link.php:461 -#: includes/fields/class-acf-field-post_object.php:366 -#: includes/fields/class-acf-field-relationship.php:578 -msgid "Filter by Post Type" -msgstr "Filter op berichttype" - -#: includes/fields/class-acf-field-relationship.php:476 -msgid "Search..." -msgstr "Zoeken..." - -#: includes/fields/class-acf-field-relationship.php:406 -msgid "Select taxonomy" -msgstr "Taxonomie selecteren" - -#: includes/fields/class-acf-field-relationship.php:397 -msgid "Select post type" -msgstr "Selecteer berichttype" - -#: includes/fields/class-acf-field-relationship.php:61 -#: assets/build/js/acf-input.js:3930 assets/build/js/acf-input.js:4214 -msgid "No matches found" -msgstr "Geen overeenkomsten gevonden" - -#: includes/fields/class-acf-field-relationship.php:60 -#: assets/build/js/acf-input.js:3913 assets/build/js/acf-input.js:4193 -msgid "Loading" -msgstr "Laden" - -#: includes/fields/class-acf-field-relationship.php:59 -#: assets/build/js/acf-input.js:3818 assets/build/js/acf-input.js:4084 -msgid "Maximum values reached ( {max} values )" -msgstr "Maximale waarden bereikt ( {max} waarden )" - -#: includes/fields/class-acf-field-relationship.php:17 -msgid "Relationship" -msgstr "Verwantschap" - -#: includes/fields/class-acf-field-file.php:291 -#: includes/fields/class-acf-field-image.php:317 -msgid "Comma separated list. Leave blank for all types" -msgstr "Komma gescheiden lijst. Laat leeg voor alle typen" - -#: includes/fields/class-acf-field-file.php:290 -#: includes/fields/class-acf-field-image.php:316 -msgid "Allowed File Types" -msgstr "Toegestane bestandstypen" - -#: includes/fields/class-acf-field-file.php:278 -#: includes/fields/class-acf-field-image.php:280 -msgid "Maximum" -msgstr "Maximum" - -#: includes/fields/class-acf-field-file.php:154 -#: includes/fields/class-acf-field-file.php:270 -#: includes/fields/class-acf-field-file.php:282 -#: includes/fields/class-acf-field-image.php:271 -#: includes/fields/class-acf-field-image.php:307 -msgid "File size" -msgstr "Bestandsgrootte" - -#: includes/fields/class-acf-field-image.php:245 -#: includes/fields/class-acf-field-image.php:281 -msgid "Restrict which images can be uploaded" -msgstr "Beperken welke afbeeldingen kunnen worden geüpload" - -#: includes/fields/class-acf-field-file.php:266 -#: includes/fields/class-acf-field-image.php:244 -msgid "Minimum" -msgstr "Minimum" - -#: includes/fields/class-acf-field-file.php:235 -#: includes/fields/class-acf-field-image.php:210 -msgid "Uploaded to post" -msgstr "Geüpload naar bericht" - -#: includes/fields/class-acf-field-file.php:234 -#: includes/fields/class-acf-field-image.php:209 -#: includes/locations/class-acf-location-attachment.php:73 -#: includes/locations/class-acf-location-comment.php:61 -#: includes/locations/class-acf-location-nav-menu.php:74 -#: includes/locations/class-acf-location-taxonomy.php:63 -#: includes/locations/class-acf-location-user-form.php:71 -#: includes/locations/class-acf-location-user-role.php:78 -#: includes/locations/class-acf-location-widget.php:65 -msgid "All" -msgstr "Alle" - -#: includes/fields/class-acf-field-file.php:229 -#: includes/fields/class-acf-field-image.php:204 -msgid "Limit the media library choice" -msgstr "Beperk de keuze van de mediabibliotheek" - -#: includes/fields/class-acf-field-file.php:228 -#: includes/fields/class-acf-field-image.php:203 -msgid "Library" -msgstr "Bibliotheek" - -#: includes/fields/class-acf-field-image.php:336 -msgid "Preview Size" -msgstr "Voorbeeld grootte" - -#: includes/fields/class-acf-field-image.php:195 -msgid "Image ID" -msgstr "Afbeelding ID" - -#: includes/fields/class-acf-field-image.php:194 -msgid "Image URL" -msgstr "Afbeelding URL" - -#: includes/fields/class-acf-field-image.php:193 -msgid "Image Array" -msgstr "Afbeelding array" - -#: includes/fields/class-acf-field-button-group.php:168 -#: includes/fields/class-acf-field-checkbox.php:372 -#: includes/fields/class-acf-field-file.php:213 -#: includes/fields/class-acf-field-link.php:171 -#: includes/fields/class-acf-field-radio.php:213 -msgid "Specify the returned value on front end" -msgstr "De geretourneerde waarde op de front-end opgeven" - -#: includes/fields/class-acf-field-button-group.php:167 -#: includes/fields/class-acf-field-checkbox.php:371 -#: includes/fields/class-acf-field-file.php:212 -#: includes/fields/class-acf-field-link.php:170 -#: includes/fields/class-acf-field-radio.php:212 -#: includes/fields/class-acf-field-taxonomy.php:736 -msgid "Return Value" -msgstr "Retour waarde" - -#: includes/fields/class-acf-field-image.php:162 -msgid "Add Image" -msgstr "Afbeelding toevoegen" - -#: includes/fields/class-acf-field-image.php:162 -msgid "No image selected" -msgstr "Geen afbeelding geselecteerd" - -#: includes/assets.php:352 includes/fields/class-acf-field-file.php:162 -#: includes/fields/class-acf-field-image.php:142 -#: includes/fields/class-acf-field-link.php:145 assets/build/js/acf.js:1563 -#: assets/build/js/acf.js:1657 -msgid "Remove" -msgstr "Verwijderen" - -#: includes/admin/views/acf-field-group/field.php:76 -#: includes/fields/class-acf-field-file.php:160 -#: includes/fields/class-acf-field-image.php:140 -#: includes/fields/class-acf-field-link.php:145 -msgid "Edit" -msgstr "Bewerken" - -#: includes/fields/class-acf-field-image.php:70 includes/media.php:55 -#: assets/build/js/acf-input.js:6837 assets/build/js/acf-input.js:7320 -msgid "All images" -msgstr "Alle afbeeldingen" - -#: includes/fields/class-acf-field-image.php:69 -#: assets/build/js/acf-input.js:3181 assets/build/js/acf-input.js:3399 -msgid "Update Image" -msgstr "Afbeelding updaten" - -#: includes/fields/class-acf-field-image.php:68 -#: assets/build/js/acf-input.js:3180 assets/build/js/acf-input.js:3398 -msgid "Edit Image" -msgstr "Afbeelding bewerken" - -#: includes/fields/class-acf-field-image.php:67 -#: assets/build/js/acf-input.js:3156 assets/build/js/acf-input.js:3373 -msgid "Select Image" -msgstr "Selecteer afbeelding" - -#: includes/fields/class-acf-field-image.php:25 -msgid "Image" -msgstr "Afbeelding" - -#: includes/fields/class-acf-field-message.php:125 -msgid "Allow HTML markup to display as visible text instead of rendering" -msgstr "" -"Sta toe dat HTML markeringen worden weergegeven als zichtbare tekst in " -"plaats van als weergave" - -#: includes/fields/class-acf-field-message.php:124 -msgid "Escape HTML" -msgstr "HTML escapen" - -#: includes/fields/class-acf-field-message.php:116 -#: includes/fields/class-acf-field-textarea.php:172 -msgid "No Formatting" -msgstr "Geen opmaak" - -#: includes/fields/class-acf-field-message.php:115 -#: includes/fields/class-acf-field-textarea.php:171 -msgid "Automatically add <br>" -msgstr "Automatisch <br> toevoegen;" - -#: includes/fields/class-acf-field-message.php:114 -#: includes/fields/class-acf-field-textarea.php:170 -msgid "Automatically add paragraphs" -msgstr "Automatisch alinea's toevoegen" - -#: includes/fields/class-acf-field-message.php:110 -#: includes/fields/class-acf-field-textarea.php:166 -msgid "Controls how new lines are rendered" -msgstr "Bepaalt hoe nieuwe regels worden weergegeven" - -#: includes/fields/class-acf-field-message.php:109 -#: includes/fields/class-acf-field-textarea.php:165 -msgid "New Lines" -msgstr "Nieuwe regels" - -#: includes/fields/class-acf-field-date_picker.php:232 -#: includes/fields/class-acf-field-date_time_picker.php:220 -msgid "Week Starts On" -msgstr "Week begint op" - -#: includes/fields/class-acf-field-date_picker.php:201 -msgid "The format used when saving a value" -msgstr "Het format dat wordt gebruikt bij het opslaan van een waarde" - -#: includes/fields/class-acf-field-date_picker.php:200 -msgid "Save Format" -msgstr "Format opslaan" - -#: includes/fields/class-acf-field-date_picker.php:67 -msgctxt "Date Picker JS weekHeader" -msgid "Wk" -msgstr "Wk" - -#: includes/fields/class-acf-field-date_picker.php:66 -msgctxt "Date Picker JS prevText" -msgid "Prev" -msgstr "Vorige" - -#: includes/fields/class-acf-field-date_picker.php:65 -msgctxt "Date Picker JS nextText" -msgid "Next" -msgstr "Volgende" - -#: includes/fields/class-acf-field-date_picker.php:64 -msgctxt "Date Picker JS currentText" -msgid "Today" -msgstr "Vandaag" - -#: includes/fields/class-acf-field-date_picker.php:63 -msgctxt "Date Picker JS closeText" -msgid "Done" -msgstr "Klaar" - -#: includes/fields/class-acf-field-date_picker.php:25 -msgid "Date Picker" -msgstr "Datumkiezer" - -#: includes/fields/class-acf-field-image.php:248 -#: includes/fields/class-acf-field-image.php:284 -#: includes/fields/class-acf-field-oembed.php:268 -msgid "Width" -msgstr "Breedte" - -#: includes/fields/class-acf-field-oembed.php:265 -#: includes/fields/class-acf-field-oembed.php:277 -msgid "Embed Size" -msgstr "Insluit grootte" - -#: includes/fields/class-acf-field-oembed.php:222 -msgid "Enter URL" -msgstr "URL invoeren" - -#: includes/fields/class-acf-field-oembed.php:25 -msgid "oEmbed" -msgstr "oEmbed" - -#: includes/fields/class-acf-field-true_false.php:184 -msgid "Text shown when inactive" -msgstr "Tekst getoond indien inactief" - -#: includes/fields/class-acf-field-true_false.php:183 -msgid "Off Text" -msgstr "Uit-tekst" - -#: includes/fields/class-acf-field-true_false.php:168 -msgid "Text shown when active" -msgstr "Tekst getoond indien actief" - -#: includes/fields/class-acf-field-true_false.php:167 -msgid "On Text" -msgstr "Aan-tekst" - -#: includes/fields/class-acf-field-select.php:450 -#: includes/fields/class-acf-field-true_false.php:199 -msgid "Stylized UI" -msgstr "Gestileerde UI" - -#: includes/fields/class-acf-field-button-group.php:157 -#: includes/fields/class-acf-field-checkbox.php:361 -#: includes/fields/class-acf-field-color_picker.php:156 -#: includes/fields/class-acf-field-email.php:117 -#: includes/fields/class-acf-field-number.php:128 -#: includes/fields/class-acf-field-radio.php:202 -#: includes/fields/class-acf-field-range.php:164 -#: includes/fields/class-acf-field-select.php:380 -#: includes/fields/class-acf-field-text.php:103 -#: includes/fields/class-acf-field-textarea.php:103 -#: includes/fields/class-acf-field-true_false.php:147 -#: includes/fields/class-acf-field-url.php:101 -#: includes/fields/class-acf-field-wysiwyg.php:311 -msgid "Default Value" -msgstr "Standaardwaarde" - -#: includes/fields/class-acf-field-true_false.php:138 -msgid "Displays text alongside the checkbox" -msgstr "Toont tekst naast het selectievakje" - -#: includes/fields/class-acf-field-message.php:26 -#: includes/fields/class-acf-field-message.php:99 -#: includes/fields/class-acf-field-true_false.php:137 -msgid "Message" -msgstr "Bericht" - -#: includes/assets.php:351 includes/fields/class-acf-field-true_false.php:86 -#: includes/fields/class-acf-field-true_false.php:187 -#: assets/build/js/acf.js:1740 assets/build/js/acf.js:1857 -msgid "No" -msgstr "Nee" - -#: includes/assets.php:350 includes/fields/class-acf-field-true_false.php:83 -#: includes/fields/class-acf-field-true_false.php:171 -#: assets/build/js/acf.js:1739 assets/build/js/acf.js:1856 -msgid "Yes" -msgstr "Ja" - -#: includes/fields/class-acf-field-true_false.php:25 -msgid "True / False" -msgstr "Waar / Niet waar" - -#: includes/fields/class-acf-field-group.php:474 -msgid "Row" -msgstr "Rij" - -#: includes/fields/class-acf-field-group.php:473 -msgid "Table" -msgstr "Tabel" - -#: includes/admin/post-types/admin-field-group.php:140 -#: includes/fields/class-acf-field-group.php:472 -msgid "Block" -msgstr "Blok" - -#: includes/fields/class-acf-field-group.php:467 -msgid "Specify the style used to render the selected fields" -msgstr "" -"Geef de stijl op die wordt gebruikt om de geselecteerde velden weer te geven" - -#: includes/fields.php:356 includes/fields/class-acf-field-button-group.php:215 -#: includes/fields/class-acf-field-checkbox.php:435 -#: includes/fields/class-acf-field-group.php:466 -#: includes/fields/class-acf-field-radio.php:286 -msgid "Layout" -msgstr "Lay-out" - -#: includes/fields/class-acf-field-group.php:450 -msgid "Sub Fields" -msgstr "Subvelden" - -#: includes/fields/class-acf-field-group.php:25 -msgid "Group" -msgstr "Groep" - -#: includes/fields/class-acf-field-google-map.php:235 -msgid "Customize the map height" -msgstr "De kaarthoogte aanpassen" - -#: includes/fields/class-acf-field-google-map.php:234 -#: includes/fields/class-acf-field-image.php:259 -#: includes/fields/class-acf-field-image.php:295 -#: includes/fields/class-acf-field-oembed.php:280 -msgid "Height" -msgstr "Hoogte" - -#: includes/fields/class-acf-field-google-map.php:223 -msgid "Set the initial zoom level" -msgstr "Het initiële zoomniveau instellen" - -#: includes/fields/class-acf-field-google-map.php:222 -msgid "Zoom" -msgstr "Zoom" - -#: includes/fields/class-acf-field-google-map.php:196 -#: includes/fields/class-acf-field-google-map.php:209 -msgid "Center the initial map" -msgstr "De eerste kaart centreren" - -#: includes/fields/class-acf-field-google-map.php:195 -#: includes/fields/class-acf-field-google-map.php:208 -msgid "Center" -msgstr "Midden" - -#: includes/fields/class-acf-field-google-map.php:163 -msgid "Search for address..." -msgstr "Zoek naar adres..." - -#: includes/fields/class-acf-field-google-map.php:160 -msgid "Find current location" -msgstr "Huidige locatie opzoeken" - -#: includes/fields/class-acf-field-google-map.php:159 -msgid "Clear location" -msgstr "Locatie wissen" - -#: includes/fields/class-acf-field-google-map.php:158 -#: includes/fields/class-acf-field-relationship.php:628 -msgid "Search" -msgstr "Zoeken" - -#: includes/fields/class-acf-field-google-map.php:63 -#: assets/build/js/acf-input.js:2840 assets/build/js/acf-input.js:3026 -msgid "Sorry, this browser does not support geolocation" -msgstr "Deze browser ondersteunt geen geolocatie" - -#: includes/fields/class-acf-field-google-map.php:25 -msgid "Google Map" -msgstr "Google Map" - -#: includes/fields/class-acf-field-date_picker.php:212 -#: includes/fields/class-acf-field-date_time_picker.php:201 -#: includes/fields/class-acf-field-time_picker.php:132 -msgid "The format returned via template functions" -msgstr "Het format dat wordt geretourneerd via templatefuncties" - -#: includes/fields/class-acf-field-color_picker.php:180 -#: includes/fields/class-acf-field-date_picker.php:211 -#: includes/fields/class-acf-field-date_time_picker.php:200 -#: includes/fields/class-acf-field-image.php:187 -#: includes/fields/class-acf-field-post_object.php:411 -#: includes/fields/class-acf-field-relationship.php:638 -#: includes/fields/class-acf-field-select.php:391 -#: includes/fields/class-acf-field-time_picker.php:131 -#: includes/fields/class-acf-field-user.php:66 -msgid "Return Format" -msgstr "Retour format" - -#: includes/fields/class-acf-field-date_picker.php:190 -#: includes/fields/class-acf-field-date_picker.php:221 -#: includes/fields/class-acf-field-date_time_picker.php:192 -#: includes/fields/class-acf-field-date_time_picker.php:210 -#: includes/fields/class-acf-field-time_picker.php:123 -#: includes/fields/class-acf-field-time_picker.php:139 -msgid "Custom:" -msgstr "Aangepast:" - -#: includes/fields/class-acf-field-date_picker.php:182 -#: includes/fields/class-acf-field-date_time_picker.php:183 -#: includes/fields/class-acf-field-time_picker.php:116 -msgid "The format displayed when editing a post" -msgstr "Het format dat wordt weergegeven bij het bewerken van een bericht" - -#: includes/fields/class-acf-field-date_picker.php:181 -#: includes/fields/class-acf-field-date_time_picker.php:182 -#: includes/fields/class-acf-field-time_picker.php:115 -msgid "Display Format" -msgstr "Weergave format" - -#: includes/fields/class-acf-field-time_picker.php:25 -msgid "Time Picker" -msgstr "Tijdkiezer" - -#. translators: counts for inactive field groups -#: acf.php:503 -msgid "Inactive (%s)" -msgid_plural "Inactive (%s)" -msgstr[0] "Inactief (%s)" -msgstr[1] "Inactief (%s)" - -#: acf.php:462 -msgid "No Fields found in Trash" -msgstr "Geen velden gevonden in de prullenbak" - -#: acf.php:461 -msgid "No Fields found" -msgstr "Geen velden gevonden" - -#: acf.php:460 -msgid "Search Fields" -msgstr "Velden zoeken" - -#: acf.php:459 -msgid "View Field" -msgstr "Veld bekijken" - -#: acf.php:458 includes/admin/views/acf-field-group/fields.php:115 -msgid "New Field" -msgstr "Nieuw veld" - -#: acf.php:457 -msgid "Edit Field" -msgstr "Veld bewerken" - -#: acf.php:456 -msgid "Add New Field" -msgstr "Nieuw veld toevoegen" - -#: acf.php:454 -msgid "Field" -msgstr "Veld" - -#: acf.php:453 includes/admin/post-types/admin-field-group.php:163 -#: includes/admin/post-types/admin-field-groups.php:119 -#: includes/admin/views/acf-field-group/fields.php:32 -msgid "Fields" -msgstr "Velden" - -#: acf.php:428 -msgid "No Field Groups found in Trash" -msgstr "Geen veldgroepen gevonden in de prullenbak" - -#: acf.php:427 -msgid "No Field Groups found" -msgstr "Geen veldgroepen gevonden" - -#: acf.php:426 -msgid "Search Field Groups" -msgstr "Veldgroepen zoeken" - -#: acf.php:425 -msgid "View Field Group" -msgstr "Veldgroep bekijken" - -#: acf.php:424 -msgid "New Field Group" -msgstr "Nieuwe veldgroep" - -#: acf.php:423 -msgid "Edit Field Group" -msgstr "Veldgroep bewerken" - -#: acf.php:422 -msgid "Add New Field Group" -msgstr "Nieuwe veldgroep toevoegen" - -#: acf.php:421 acf.php:455 -#: includes/admin/views/acf-post-type/advanced-settings.php:219 -#: includes/admin/views/acf-post-type/advanced-settings.php:221 -#: includes/post-types/class-acf-post-type.php:93 -#: includes/post-types/class-acf-taxonomy.php:92 -msgid "Add New" -msgstr "Nieuwe toevoegen" - -#: acf.php:420 -msgid "Field Group" -msgstr "Veldgroep" - -#: acf.php:419 includes/admin/post-types/admin-field-groups.php:78 -#: includes/admin/post-types/admin-post-types.php:138 -#: includes/admin/post-types/admin-taxonomies.php:138 -msgid "Field Groups" -msgstr "Veldgroepen" - -#. Description of the plugin -msgid "Customize WordPress with powerful, professional and intuitive fields." -msgstr "Pas WordPress aan met krachtige, professionele en intuïtieve velden." - -#. Plugin URI of the plugin -msgid "https://www.advancedcustomfields.com" -msgstr "https://www.advancedcustomfields.com" - -#. Plugin Name of the plugin -#: acf.php:94 -msgid "Advanced Custom Fields" -msgstr "Advanced Custom Fields" diff --git a/lang/acf-pl_PL.mo b/lang/acf-pl_PL.mo deleted file mode 100644 index f40160f..0000000 Binary files a/lang/acf-pl_PL.mo and /dev/null differ diff --git a/lang/acf-pl_PL.po b/lang/acf-pl_PL.po deleted file mode 100644 index a16f75d..0000000 --- a/lang/acf-pl_PL.po +++ /dev/null @@ -1,6440 +0,0 @@ -# Advanced Custom Fields Translations are a combination of translate.wordpress.org contributions, -# combined with user contributed strings for the PRO version. -# Translations from translate.wordpress.org take priority over translations in this file. -# translate.wordpress.org contributions are synced at the time of each release. -# -# If you would like to contribute translations, please visit -# https://translate.wordpress.org/projects/wp-plugins/advanced-custom-fields/stable/ -# -# For additional ACF PRO strings, please submit a pull request over on the ACF GitHub repo at -# http://github.com/advancedcustomfields/acf using the .pot (and any existing .po) files in /lang/pro/ -# -# This file is distributed under the same license as Advanced Custom Fields. -msgid "" -msgstr "" -"PO-Revision-Date: 2023-11-28T09:14:32+00:00\n" -"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n" -"Language: pl_PL\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: gettext\n" -"Project-Id-Version: Advanced Custom Fields\n" - -#: includes/admin/views/global/navigation.php:221 -msgid "Renew ACF PRO License" -msgstr "Odnów licencję ACF PRO" - -#: includes/admin/views/acf-field-group/pro-features.php:17 -msgid "Renew License" -msgstr "Odnów licencję" - -#: includes/admin/views/acf-field-group/pro-features.php:14 -msgid "Manage License" -msgstr "Zarządzaj licencją" - -#: includes/admin/views/acf-field-group/options.php:102 -msgid "'High' position not supported in the Block Editor" -msgstr "Pozycja „Wysoka” nie jest obsługiwana w edytorze blokowym." - -#: includes/admin/views/options-page-preview.php:30 -msgid "Upgrade to ACF PRO" -msgstr "Kup ACF-a PRO" - -#. translators: %s URL to ACF options pages documentation -#: includes/admin/views/options-page-preview.php:7 -msgid "" -"ACF options pages are custom admin " -"pages for managing global settings via fields. You can create multiple pages " -"and sub-pages." -msgstr "" -"Strony opcji ACF-a to własne strony " -"administracyjne umożliwiające zarządzanie globalnymi ustawieniami za pomocą " -"pól. Można tworzyć wiele stron i podstron." - -#: includes/admin/views/global/header.php:35 -msgid "Add Options Page" -msgstr "Dodaj stronę opcji" - -#: includes/admin/views/acf-post-type/advanced-settings.php:703 -msgid "In the editor used as the placeholder of the title." -msgstr "W edytorze, używane jako tekst zastępczy tytułu." - -#: includes/admin/views/acf-post-type/advanced-settings.php:702 -msgid "Title Placeholder" -msgstr "Placeholder (tekst zastępczy) tytułu" - -#: includes/admin/views/global/navigation.php:97 -msgid "4 Months Free" -msgstr "4 miesiące za darmo" - -#. translators: %s - A singular label for a post type or taxonomy. -#: includes/admin/views/global/form-top.php:56 -msgid " (Duplicated from %s)" -msgstr " (zduplikowane z %s)" - -#: includes/admin/tools/class-acf-admin-tool-export.php:298 -msgid "Select Options Pages" -msgstr "Wybierz strony opcji" - -#: includes/admin/post-types/admin-taxonomy.php:107 -msgid "Duplicate taxonomy" -msgstr "Duplikuj taksonomię" - -#: includes/admin/post-types/admin-post-type.php:106 -#: includes/admin/post-types/admin-taxonomy.php:106 -msgid "Create taxonomy" -msgstr "Utwórz taksonomię" - -#: includes/admin/post-types/admin-post-type.php:105 -msgid "Duplicate post type" -msgstr "Duplikuj typ treści" - -#: includes/admin/post-types/admin-post-type.php:104 -#: includes/admin/post-types/admin-taxonomy.php:108 -msgid "Create post type" -msgstr "Utwórz typ treści" - -#: includes/admin/post-types/admin-post-type.php:103 -#: includes/admin/post-types/admin-taxonomy.php:105 -msgid "Link field groups" -msgstr "Powiąż grupy pól" - -#: includes/admin/post-types/admin-post-type.php:102 -#: includes/admin/post-types/admin-taxonomy.php:104 -msgid "Add fields" -msgstr "Dodaj pola" - -#: includes/admin/post-types/admin-field-group.php:121 -#: assets/build/js/acf-field-group.js:2753 -#: assets/build/js/acf-field-group.js:3236 -msgid "This Field" -msgstr "To pole" - -#: includes/admin/admin.php:267 -msgid "ACF PRO" -msgstr "ACF PRO" - -#: includes/admin/admin.php:265 -msgid "Feedback" -msgstr "Uwagi" - -#: includes/admin/admin.php:263 -msgid "Support" -msgstr "Pomoc techniczna" - -#. translators: This text is prepended by a link to ACF's website, and appended -#. by a link to WP Engine's website. -#: includes/admin/admin.php:238 -msgid "is developed and maintained by" -msgstr "jest rozwijany i utrzymywany przez" - -#. translators: %s - either "post type" or "taxonomy" -#: includes/admin/admin-internal-post-type.php:321 -msgid "Add this %s to the location rules of the selected field groups." -msgstr "Dodaj ten element (%s) do reguł lokalizacji wybranych grup pól." - -#. translators: %s the URL to ACF's bidirectional relationship documentation -#: includes/acf-bidirectional-functions.php:271 -msgid "" -"Enabling the bidirectional setting allows you to update a value in the " -"target fields for each value selected for this field, adding or removing the " -"Post ID, Taxonomy ID or User ID of the item being updated. For more " -"information, please read the documentation." -msgstr "" -"Włączenie opcji dwukierunkowości pozwala na aktualizowanie wartości pól " -"docelowych w każdym elemencie wybranym w tym polu, dodając lub usuwając " -"identyfikator aktualizowanego wpisu, terminu taksonomii lub użytkownika. Aby " -"uzyskać więcej informacji przeczytaj dokumentację." - -#: includes/acf-bidirectional-functions.php:247 -msgid "" -"Select field(s) to store the reference back to the item being updated. You " -"may select this field. Target fields must be compatible with where this " -"field is being displayed. For example, if this field is displayed on a " -"Taxonomy, your target field should be of type Taxonomy" -msgstr "" -"Wybierz pole(-a), gdzie zapisywać odwołanie do aktualizowanego elementu. " -"Możesz wybrać to pole. Pola docelowe muszą być zgodne z miejscem " -"wyświetlania tego pola. Przykładowo, jeśli to pole jest wyświetlane w " -"terminie taksonomii, pole docelowe musi mieć rodzaj Taksonomia." - -#: includes/acf-bidirectional-functions.php:246 -msgid "Target Field" -msgstr "Pole docelowe" - -#: includes/acf-bidirectional-functions.php:220 -msgid "Update a field on the selected values, referencing back to this ID" -msgstr "" -"Zaktualizuj pole w wybranych elementach, odwołując się do tego identyfikatora" - -#: includes/acf-bidirectional-functions.php:219 -msgid "Bidirectional" -msgstr "Dwukierunkowe" - -#. translators: %s A field type name, such as "Relationship" -#: includes/acf-bidirectional-functions.php:192 -msgid "%s Field" -msgstr "Pole „%s”" - -#: includes/fields/class-acf-field-page_link.php:517 -#: includes/fields/class-acf-field-post_object.php:426 -#: includes/fields/class-acf-field-select.php:407 -#: includes/fields/class-acf-field-user.php:82 -msgid "Select Multiple" -msgstr "Wielokrotny wybór" - -#: includes/admin/views/global/navigation.php:233 -msgid "WP Engine logo" -msgstr "Logo WP Engine" - -#: includes/admin/views/acf-taxonomy/basic-settings.php:58 -msgid "Lower case letters, underscores and dashes only, Max 32 characters." -msgstr "Tylko małe litery, myślniki i podkreślniki. Maksymalnie 32 znaki." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1136 -msgid "The capability name for assigning terms of this taxonomy." -msgstr "Nazwa uprawnienia do przypisywania terminów tej taksonomii." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1135 -msgid "Assign Terms Capability" -msgstr "Uprawnienie do przypisywania terminów" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1119 -msgid "The capability name for deleting terms of this taxonomy." -msgstr "Nazwa uprawnienia do usuwania terminów tej taksonomii." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1118 -msgid "Delete Terms Capability" -msgstr "Uprawnienie do usuwania terminów" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1102 -msgid "The capability name for editing terms of this taxonomy." -msgstr "Nazwa uprawnienia do edytowania terminów tej taksonomii." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1101 -msgid "Edit Terms Capability" -msgstr "Uprawnienie do edytowania terminów" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1085 -msgid "The capability name for managing terms of this taxonomy." -msgstr "Nazwa uprawnienia do zarządzania terminami tej taksonomii." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1084 -msgid "Manage Terms Capability" -msgstr "Uprawnienie do zarządzania terminami" - -#: includes/admin/views/acf-post-type/advanced-settings.php:886 -msgid "" -"Sets whether posts should be excluded from search results and taxonomy " -"archive pages." -msgstr "" -"Określa czy wpisy powinny być wykluczone z wyników wyszukiwania oraz stron " -"archiwów taksonomii." - -#: includes/admin/views/acf-field-group/pro-features.php:74 -msgid "More Tools from WP Engine" -msgstr "Więcej narzędzi od WP Engine" - -#. translators: %s - WP Engine logo -#: includes/admin/views/acf-field-group/pro-features.php:69 -msgid "Built for those that build with WordPress, by the team at %s" -msgstr "" -"Stworzone dla tych, których tworzą przy pomocy WordPressa, przez zespół %s" - -#: includes/admin/views/acf-field-group/pro-features.php:6 -msgid "View Pricing & Upgrade" -msgstr "Zobacz cennik i kup PRO" - -#: includes/admin/views/acf-field-group/pro-features.php:3 -#: includes/admin/views/options-page-preview.php:29 -msgid "Learn More" -msgstr "Dowiedz się więcej" - -#: includes/admin/views/acf-field-group/pro-features.php:28 -msgid "" -"Speed up your workflow and develop better websites with features like ACF " -"Blocks and Options Pages, and sophisticated field types like Repeater, " -"Flexible Content, Clone, and Gallery." -msgstr "" -"Przyśpiesz swoją pracę i twórz lepsze witryny przy pomocy funkcji takich jak " -"bloki ACF-a i strony opcji oraz wyrafinowanych rodzajów pól takich jak pole " -"powtarzalne, elastyczna treść, klon, czy galeria." - -#: includes/admin/views/acf-field-group/pro-features.php:2 -msgid "Unlock Advanced Features and Build Even More with ACF PRO" -msgstr "Odblokuj zaawansowane funkcje i zbuduj więcej przy pomocy ACF-a PRO" - -#. translators: %s - singular label of post type/taxonomy, i.e. "Movie"/"Genre" -#: includes/admin/views/global/form-top.php:19 -msgid "%s fields" -msgstr "Pola „%s”" - -#: includes/admin/post-types/admin-taxonomies.php:293 -msgid "No terms" -msgstr "Brak terminów" - -#: includes/admin/post-types/admin-taxonomies.php:266 -msgid "No post types" -msgstr "Brak typów treści" - -#: includes/admin/post-types/admin-post-types.php:289 -msgid "No posts" -msgstr "Brak wpisów" - -#: includes/admin/post-types/admin-post-types.php:263 -msgid "No taxonomies" -msgstr "Brak taksonomii" - -#: includes/admin/post-types/admin-post-types.php:208 -#: includes/admin/post-types/admin-taxonomies.php:208 -msgid "No field groups" -msgstr "Brak grup pól" - -#: includes/admin/post-types/admin-field-groups.php:281 -msgid "No fields" -msgstr "Brak pól" - -#: includes/admin/post-types/admin-field-groups.php:154 -#: includes/admin/post-types/admin-post-types.php:172 -#: includes/admin/post-types/admin-taxonomies.php:172 -msgid "No description" -msgstr "Brak opisu" - -#: includes/fields/class-acf-field-page_link.php:484 -#: includes/fields/class-acf-field-post_object.php:389 -#: includes/fields/class-acf-field-relationship.php:601 -msgid "Any post status" -msgstr "Dowolny status wpisu" - -#: includes/post-types/class-acf-taxonomy.php:284 -msgid "" -"This taxonomy key is already in use by another taxonomy registered outside " -"of ACF and cannot be used." -msgstr "" -"Ten klucz taksonomii jest już używany przez inną taksonomię zarejestrowaną " -"poza ACF-em i nie może zostać użyty." - -#: includes/post-types/class-acf-taxonomy.php:279 -msgid "" -"This taxonomy key is already in use by another taxonomy in ACF and cannot be " -"used." -msgstr "" -"Ten klucz taksonomii jest już używany przez inną taksonomię w ACF-ie i nie " -"może zostać użyty." - -#: includes/post-types/class-acf-taxonomy.php:252 -msgid "" -"The taxonomy key must only contain lower case alphanumeric characters, " -"underscores or dashes." -msgstr "" -"Klucz taksonomii może zawierać wyłącznie małe litery, cyfry, myślniki i " -"podkreślniki." - -#: includes/post-types/class-acf-taxonomy.php:247 -msgid "The taxonomy key must be under 32 characters." -msgstr "Klucz taksonomii musi mieć mniej niż 32 znaków." - -#: includes/post-types/class-acf-taxonomy.php:99 -msgid "No Taxonomies found in Trash" -msgstr "Nie znaleziono żadnych taksonomii w koszu" - -#: includes/post-types/class-acf-taxonomy.php:98 -msgid "No Taxonomies found" -msgstr "Nie znaleziono żadnych taksonomii" - -#: includes/post-types/class-acf-taxonomy.php:97 -msgid "Search Taxonomies" -msgstr "Szukaj taksonomii" - -#: includes/post-types/class-acf-taxonomy.php:96 -msgid "View Taxonomy" -msgstr "Zobacz taksonomię" - -#: includes/post-types/class-acf-taxonomy.php:95 -msgid "New Taxonomy" -msgstr "Nowa taksonomia" - -#: includes/post-types/class-acf-taxonomy.php:94 -msgid "Edit Taxonomy" -msgstr "Edytuj taksonomię" - -#: includes/post-types/class-acf-taxonomy.php:93 -msgid "Add New Taxonomy" -msgstr "Utwórz taksonomię" - -#: includes/post-types/class-acf-post-type.php:100 -msgid "No Post Types found in Trash" -msgstr "Nie znaleziono żadnych typów treści w koszu" - -#: includes/post-types/class-acf-post-type.php:99 -msgid "No Post Types found" -msgstr "Nie znaleziono żadnych typów treści" - -#: includes/post-types/class-acf-post-type.php:98 -msgid "Search Post Types" -msgstr "Szukaj typów treści" - -#: includes/post-types/class-acf-post-type.php:97 -msgid "View Post Type" -msgstr "Zobacz typ treści" - -#: includes/post-types/class-acf-post-type.php:96 -msgid "New Post Type" -msgstr "Nowy typ treści" - -#: includes/post-types/class-acf-post-type.php:95 -msgid "Edit Post Type" -msgstr "Edytuj typ treści" - -#: includes/post-types/class-acf-post-type.php:94 -msgid "Add New Post Type" -msgstr "Utwórz typ treści" - -#: includes/post-types/class-acf-post-type.php:361 -msgid "" -"This post type key is already in use by another post type registered outside " -"of ACF and cannot be used." -msgstr "" -"Ten klucz typu treści jest już używany przez inny typ treści zarejestrowany " -"poza ACF-em i nie może zostać użyty." - -#: includes/post-types/class-acf-post-type.php:356 -msgid "" -"This post type key is already in use by another post type in ACF and cannot " -"be used." -msgstr "" -"Ten klucz typu treści jest już używany przez inny typ treści w ACF-ie i nie " -"może zostać użyty." - -#. translators: %s a link to WordPress.org's Reserved Terms page -#: includes/post-types/class-acf-post-type.php:335 -#: includes/post-types/class-acf-taxonomy.php:258 -msgid "" -"This field must not be a WordPress reserved " -"term." -msgstr "" -"Pole nie może być terminem zastrzeżonym " -"przez WordPressa." - -#: includes/post-types/class-acf-post-type.php:329 -msgid "" -"The post type key must only contain lower case alphanumeric characters, " -"underscores or dashes." -msgstr "" -"Klucz typu treści może zawierać wyłącznie małe litery, cyfry, myślniki i " -"podkreślniki." - -#: includes/post-types/class-acf-post-type.php:324 -msgid "The post type key must be under 20 characters." -msgstr "Klucz typu treści musi mieć mniej niż 20 znaków." - -#: includes/fields/class-acf-field-wysiwyg.php:27 -msgid "We do not recommend using this field in ACF Blocks." -msgstr "Nie zalecamy używania tego pola w blokach ACF-a." - -#: includes/fields/class-acf-field-wysiwyg.php:27 -msgid "" -"Displays the WordPress WYSIWYG editor as seen in Posts and Pages allowing " -"for a rich text-editing experience that also allows for multimedia content." -msgstr "" -"Wyświetla edytor WYSIWYG WordPressa, taki jak we wpisach czy stronach, który " -"pozwala na formatowanie tekstu oraz użycie treści multimedialnych." - -#: includes/fields/class-acf-field-wysiwyg.php:25 -msgid "WYSIWYG Editor" -msgstr "Edytor WYSIWYG" - -#: includes/fields/class-acf-field-user.php:17 -msgid "" -"Allows the selection of one or more users which can be used to create " -"relationships between data objects." -msgstr "" -"Pozwala na wybór jednego lub kliku użytkowników do tworzenia relacji między " -"obiektami danych." - -#: includes/fields/class-acf-field-url.php:26 -msgid "A text input specifically designed for storing web addresses." -msgstr "Pole tekstowe przeznaczone do przechowywania adresów URL." - -#: includes/fields/class-acf-field-url.php:25 -msgid "URL" -msgstr "Adres URL" - -#: includes/fields/class-acf-field-true_false.php:27 -msgid "" -"A toggle that allows you to pick a value of 1 or 0 (on or off, true or " -"false, etc). Can be presented as a stylized switch or checkbox." -msgstr "" -"Przełącznik pozwalający na wybranie wartości 1 lub 0 (włączone lub " -"wyłączone, prawda lub fałsz, itp.). Może być wyświetlany jako ostylowany " -"przełącznik lub pole zaznaczenia." - -#: includes/fields/class-acf-field-time_picker.php:27 -msgid "" -"An interactive UI for picking a time. The time format can be customized " -"using the field settings." -msgstr "" -"Interaktywny interfejs użytkownika do wybierania godziny. Zwracany format " -"czasu można dostosować przy użyciu ustawień pola." - -#: includes/fields/class-acf-field-textarea.php:26 -msgid "A basic textarea input for storing paragraphs of text." -msgstr "Prosty obszar tekstowy do przechowywania akapitów tekstu." - -#: includes/fields/class-acf-field-text.php:26 -msgid "A basic text input, useful for storing single string values." -msgstr "" -"Proste pole tekstowe, przydatne do przechowywania wartości pojedynczych " -"ciągów." - -#: includes/fields/class-acf-field-taxonomy.php:22 -msgid "" -"Allows the selection of one or more taxonomy terms based on the criteria and " -"options specified in the fields settings." -msgstr "" -"Pozwala na wybór jednego lub kliku terminów taksonomii w oparciu o kryteria " -"i opcje określone w ustawieniach pola." - -#: includes/fields/class-acf-field-tab.php:28 -msgid "" -"Allows you to group fields into tabbed sections in the edit screen. Useful " -"for keeping fields organized and structured." -msgstr "" -"Pozwala na grupowanie pól w zakładkach na ekranie edycji. Przydatne do " -"utrzymywania porządku i struktury pól." - -#: includes/fields/class-acf-field-select.php:27 -msgid "A dropdown list with a selection of choices that you specify." -msgstr "Lista rozwijana z wyborem określonych opcji." - -#: includes/fields/class-acf-field-relationship.php:19 -msgid "" -"A dual-column interface to select one or more posts, pages, or custom post " -"type items to create a relationship with the item that you're currently " -"editing. Includes options to search and filter." -msgstr "" -"Interfejs dwukolumnowy do wybierania jednego lub kilku wpisów, stron lub " -"elementów własnych typów treści, aby stworzyć relację z obecnie edytowanym " -"elementem. Posiada wyszukiwarkę i filtrowanie." - -#: includes/fields/class-acf-field-range.php:26 -msgid "" -"An input for selecting a numerical value within a specified range using a " -"range slider element." -msgstr "" -"Pole do wybierania wartości liczbowej z określonego zakresu za pomocą suwaka." - -#: includes/fields/class-acf-field-radio.php:27 -msgid "" -"A group of radio button inputs that allows the user to make a single " -"selection from values that you specify." -msgstr "" -"Grupa pól wyboru pozwalająca użytkownikowi na wybór jednej spośród " -"określonych wartości." - -#: includes/fields/class-acf-field-post_object.php:19 -msgid "" -"An interactive and customizable UI for picking one or many posts, pages or " -"post type items with the option to search. " -msgstr "" -"Interaktywny i konfigurowalny interfejs użytkownika do wybierania jednego " -"lub kilku wpisów, stron, elementów typów treści. Posiada wyszukiwarkę. " - -#: includes/fields/class-acf-field-password.php:26 -msgid "An input for providing a password using a masked field." -msgstr "Maskowane pole do wpisywania hasła." - -#: includes/fields/class-acf-field-page_link.php:476 -#: includes/fields/class-acf-field-post_object.php:381 -#: includes/fields/class-acf-field-relationship.php:593 -msgid "Filter by Post Status" -msgstr "Filtruj wg statusu wpisu" - -#: includes/fields/class-acf-field-page_link.php:27 -msgid "" -"An interactive dropdown to select one or more posts, pages, custom post type " -"items or archive URLs, with the option to search." -msgstr "" -"Interaktywna lista rozwijana do wybierania jednego lub kilku wpisów, stron, " -"elementów własnych typów treści lub adresów URL archiwów. Posiada " -"wyszukiwarkę." - -#: includes/fields/class-acf-field-oembed.php:27 -msgid "" -"An interactive component for embedding videos, images, tweets, audio and " -"other content by making use of the native WordPress oEmbed functionality." -msgstr "" -"Interaktywny element do osadzania filmów, obrazków, tweetów, audio i innych " -"treści przy użyciu natywnej funkcji oEmbed WordPressa." - -#: includes/fields/class-acf-field-number.php:26 -msgid "An input limited to numerical values." -msgstr "Pole ograniczone do wartości liczbowych." - -#: includes/fields/class-acf-field-message.php:28 -msgid "" -"Used to display a message to editors alongside other fields. Useful for " -"providing additional context or instructions around your fields." -msgstr "" -"Używane do wyświetlania wiadomości dla redaktorów obok innych pól. Przydatne " -"do przekazywania dodatkowego kontekstu lub instrukcji dotyczących pól." - -#: includes/fields/class-acf-field-link.php:27 -msgid "" -"Allows you to specify a link and its properties such as title and target " -"using the WordPress native link picker." -msgstr "" -"Pozwala na określenie odnośnika i jego właściwości, takich jak tytuł czy " -"cel, przy użyciu natywnego wyboru odnośników WordPressa." - -#: includes/fields/class-acf-field-image.php:27 -msgid "Uses the native WordPress media picker to upload, or choose images." -msgstr "" -"Używa natywnego wyboru mediów WordPressa do przesyłania lub wyboru obrazków." - -#: includes/fields/class-acf-field-group.php:27 -msgid "" -"Provides a way to structure fields into groups to better organize the data " -"and the edit screen." -msgstr "" -"Zapewnia sposób na uporządkowanie pól w grupy w celu lepszej organizacji " -"danych i ekranu edycji." - -#: includes/fields/class-acf-field-google-map.php:27 -msgid "" -"An interactive UI for selecting a location using Google Maps. Requires a " -"Google Maps API key and additional configuration to display correctly." -msgstr "" -"Interaktywny interfejs użytkownika do wybierania lokalizacji przy użyciu Map " -"Google. Do poprawnego wyświetlania wymagany jest klucz API Google Maps oraz " -"dodatkowa konfiguracja." - -#: includes/fields/class-acf-field-file.php:27 -msgid "Uses the native WordPress media picker to upload, or choose files." -msgstr "" -"Używa natywnego wyboru mediów WordPressa do przesyłania lub wyboru plików." - -#: includes/fields/class-acf-field-email.php:26 -msgid "A text input specifically designed for storing email addresses." -msgstr "Pole tekstowe przeznaczone do przechowywania adresów e-mail." - -#: includes/fields/class-acf-field-date_time_picker.php:27 -msgid "" -"An interactive UI for picking a date and time. The date return format can be " -"customized using the field settings." -msgstr "" -"Interaktywny interfejs użytkownika do wybierania daty i godziny. Zwracany " -"format daty można dostosować przy użyciu ustawień pola." - -#: includes/fields/class-acf-field-date_picker.php:27 -msgid "" -"An interactive UI for picking a date. The date return format can be " -"customized using the field settings." -msgstr "" -"Interaktywny interfejs użytkownika do wybierania daty. Zwracany format daty " -"można dostosować przy użyciu ustawień pola." - -#: includes/fields/class-acf-field-color_picker.php:27 -msgid "An interactive UI for selecting a color, or specifying a Hex value." -msgstr "" -"Interaktywny interfejs użytkownika do wybierania koloru lub określenia " -"wartości Hex." - -#: includes/fields/class-acf-field-checkbox.php:27 -msgid "" -"A group of checkbox inputs that allow the user to select one, or multiple " -"values that you specify." -msgstr "" -"Grupa pól zaznaczenia, która pozwala użytkownikowi na wybranie jednej lub " -"kilku określonych wartości." - -#: includes/fields/class-acf-field-button-group.php:26 -msgid "" -"A group of buttons with values that you specify, users can choose one option " -"from the values provided." -msgstr "" -"Grupa przycisków z określonymi wartościami, z których użytkownik może wybrać " -"jedną opcję." - -#: includes/fields/class-acf-field-accordion.php:27 -msgid "" -"Allows you to group and organize custom fields into collapsable panels that " -"are shown while editing content. Useful for keeping large datasets tidy." -msgstr "" -"Pozwala na grupowanie i organizowanie własnych pól w zwijanych panelach " -"wyświetlanych podczas edytowania treści. Przydatne do utrzymywania porządku " -"przy dużej ilości danych." - -#: includes/fields.php:475 -msgid "" -"This provides a solution for repeating content such as slides, team members, " -"and call-to-action tiles, by acting as a parent to a set of subfields which " -"can be repeated again and again." -msgstr "" -"Zapewnie rozwiązanie dla powtarzalnych treści, takich jak slajdy, członkowie " -"zespołu, czy kafelki. Działa jak element nadrzędny dla zestawu podpól, który " -"może być powtarzany wiele razy." - -#: includes/fields.php:465 -msgid "" -"This provides an interactive interface for managing a collection of " -"attachments. Most settings are similar to the Image field type. Additional " -"settings allow you to specify where new attachments are added in the gallery " -"and the minimum/maximum number of attachments allowed." -msgstr "" -"Zapewnia interaktywny interfejs do zarządzania zbiorem załączników. " -"Większość opcji jest podobna do rodzaju pola Obrazek. Dodatkowe opcje " -"pozwalają na określenie miejsca w galerii w którym nowe załączniki są " -"dodawane oraz minimalną i maksymalną liczbę dozwolonych załączników." - -#: includes/fields.php:455 -msgid "" -"This provides a simple, structured, layout-based editor. The Flexible " -"Content field allows you to define, create and manage content with total " -"control by using layouts and subfields to design the available blocks." -msgstr "" -"Zapewnia prosty, uporządkowany edytor oparty na układach. Pole elastycznej " -"treści pozwala na pełną kontrolę nad definiowaniem, tworzeniem i " -"zarządzaniem treścią przy użyciu układów i podpól w celu zaprojektowania " -"dostępnych bloków." - -#: includes/fields.php:445 -msgid "" -"This allows you to select and display existing fields. It does not duplicate " -"any fields in the database, but loads and displays the selected fields at " -"run-time. The Clone field can either replace itself with the selected fields " -"or display the selected fields as a group of subfields." -msgstr "" -"Pozwala na wybór i wyświetlanie istniejących pól. Zamiast powielania pól w " -"bazie danych, wczytuje i wyświetla wybrane pola w trakcie wykonywania kodu " -"strony. Pole klona może być zastąpione przez wybrane pola lub wyświetlać " -"wybrane pola jak grupa podpól." - -#: includes/fields.php:442 -msgctxt "noun" -msgid "Clone" -msgstr "Klon" - -#: includes/admin/views/global/navigation.php:86 includes/fields.php:357 -msgid "PRO" -msgstr "PRO" - -#: includes/fields.php:355 includes/fields.php:412 -msgid "Advanced" -msgstr "Zaawansowane" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:85 -msgid "JSON (newer)" -msgstr "JSON (nowszy)" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:81 -msgid "Original" -msgstr "Oryginalny" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:55 -msgid "Invalid post ID." -msgstr "Nieprawidłowy identyfikator wpisu." - -#: includes/ajax/class-acf-ajax-local-json-diff.php:47 -msgid "Invalid post type selected for review." -msgstr "Wybrano nieprawidłowy typ treści do porównania." - -#: includes/admin/views/global/navigation.php:186 -msgid "More" -msgstr "Więcej" - -#: includes/admin/views/browse-fields-modal.php:86 -msgid "Tutorial" -msgstr "Poradnik" - -#: includes/admin/views/browse-fields-modal.php:75 -msgid "Available with ACF PRO" -msgstr "Dostępne w ACF-ie PRO" - -#: includes/admin/views/browse-fields-modal.php:63 -msgid "Select Field" -msgstr "Wybierz pole" - -#. translators: %s: A link to the popular fields used in ACF -#: includes/admin/views/browse-fields-modal.php:50 -msgid "Try a different search term or browse %s" -msgstr "Spróbuj innej frazy lub przejrzyj %s" - -#: includes/admin/views/browse-fields-modal.php:47 -msgid "Popular fields" -msgstr "Popularne pola" - -#. translators: %s: The invalid search term -#: includes/admin/views/browse-fields-modal.php:40 -msgid "No search results for '%s'" -msgstr "Brak wyników wyszukiwania dla „%s”" - -#: includes/admin/views/browse-fields-modal.php:13 -msgid "Search fields..." -msgstr "Szukaj pól…" - -#: includes/admin/views/browse-fields-modal.php:11 -msgid "Select Field Type" -msgstr "Wybierz rodzaj pola" - -#: includes/admin/views/browse-fields-modal.php:4 -msgid "Popular" -msgstr "Popularne" - -#: includes/admin/views/acf-taxonomy/list-empty.php:7 -msgid "Add Taxonomy" -msgstr "Dodaj taksonomię" - -#: includes/admin/views/acf-taxonomy/list-empty.php:6 -msgid "Create custom taxonomies to classify post type content" -msgstr "Twórz własne taksonomie, aby klasyfikować typy treści" - -#: includes/admin/views/acf-taxonomy/list-empty.php:5 -msgid "Add Your First Taxonomy" -msgstr "Dodaj swoją pierwszą taksonomię" - -#: includes/admin/views/acf-taxonomy/basic-settings.php:122 -msgid "Hierarchical taxonomies can have descendants (like categories)." -msgstr "" -"Hierarchiczne taksonomie mogą posiadać elementy potomne (jak kategorie)." - -#: includes/admin/views/acf-taxonomy/basic-settings.php:107 -msgid "Makes a taxonomy visible on the frontend and in the admin dashboard." -msgstr "" -"Powoduje, że taksonomia jest widoczna w witrynie oraz w kokpicie " -"administratora." - -#: includes/admin/views/acf-taxonomy/basic-settings.php:91 -msgid "One or many post types that can be classified with this taxonomy." -msgstr "" -"Jeden lub klika typów wpisów, które będą klasyfikowane za pomocą tej " -"taksonomii." - -#. translators: example taxonomy -#: includes/admin/views/acf-taxonomy/basic-settings.php:60 -msgid "genre" -msgstr "gatunek" - -#. translators: example taxonomy -#: includes/admin/views/acf-taxonomy/basic-settings.php:42 -msgid "Genre" -msgstr "Gatunek" - -#. translators: example taxonomy -#: includes/admin/views/acf-taxonomy/basic-settings.php:25 -msgid "Genres" -msgstr "Gatunki" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1211 -msgid "" -"Optional custom controller to use instead of `WP_REST_Terms_Controller `." -msgstr "" -"Opcjonalny własny kontroler do użycia zamiast `WP_REST_Terms_Controller`." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1155 -msgid "Expose this post type in the REST API." -msgstr "Pokaż ten typ treści w REST API." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1055 -msgid "Customize the query variable name" -msgstr "Dostosuj nazwę zmiennej zapytania" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1028 -msgid "" -"Terms can be accessed using the non-pretty permalink, e.g., {query_var}" -"={term_slug}." -msgstr "" -"Terminy są dostępne za pomocą nieprzyjaznych bezpośrednich odnośników, np. " -"{zmienna_zapytania}={uproszczona_nazwa_terminu}." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:981 -msgid "Parent-child terms in URLs for hierarchical taxonomies." -msgstr "" -"Terminy nadrzędne i potomne w adresach URL dla hierarchicznych taksonomii." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:941 -msgid "Customize the slug used in the URL" -msgstr "Dostosuj uproszczoną nazwę używaną w adresie URL" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:924 -msgid "Permalinks for this taxonomy are disabled." -msgstr "Bezpośrednie odnośniki tej taksonomii są wyłączone." - -#. translators: this string will be appended with the new permalink structure. -#: includes/admin/views/acf-taxonomy/advanced-settings.php:921 -msgid "" -"Rewrite the URL using the taxonomy key as the slug. Your permalink structure " -"will be" -msgstr "" -"Przepisuj adres URL używając klucza taksonomii jako uproszczonej nazwy. " -"Struktura bezpośrednich odnośników będzie następująca" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:913 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1030 -#: includes/admin/views/acf-taxonomy/basic-settings.php:57 -msgid "Taxonomy Key" -msgstr "Klucz taksonomii" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:911 -msgid "Select the type of permalink to use for this taxonomy." -msgstr "Wybierz rodzaj bezpośredniego odnośnika używanego dla tego taksonomii." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:896 -msgid "Display a column for the taxonomy on post type listing screens." -msgstr "Wyświetl kolumnę taksonomii na ekranach list typów treści." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:895 -msgid "Show Admin Column" -msgstr "Pokaż kolumnę administratora" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:882 -msgid "Show the taxonomy in the quick/bulk edit panel." -msgstr "Pokaż taksonomię w panelu szybkiej/masowej edycji." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:881 -msgid "Quick Edit" -msgstr "Szybka edycja" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:868 -msgid "List the taxonomy in the Tag Cloud Widget controls." -msgstr "Pokaż taksonomię w ustawieniach widżetu Chmury tagów." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:867 -msgid "Tag Cloud" -msgstr "Chmura tagów" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:824 -msgid "" -"A PHP function name to be called for sanitizing taxonomy data saved from a " -"meta box." -msgstr "" -"Nazwa funkcji PHP, która będzie wzywana do oczyszczania danych taksonomii z " -"metaboksa." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:823 -msgid "Meta Box Sanitization Callback" -msgstr "Funkcja zwrotna oczyszczania metaboksa" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:805 -msgid "" -"A PHP function name to be called to handle the content of a meta box on your " -"taxonomy." -msgstr "" -"Nazwa funkcji PHP, która będzie wzywana do obsłużenia treści metaboksa w " -"twojej taksonomii." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:804 -msgid "Register Meta Box Callback" -msgstr "Funkcja zwrotna rejestrowania metaboksa" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:763 -msgid "No Meta Box" -msgstr "Brak metaboksa" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:762 -msgid "Custom Meta Box" -msgstr "Własny metaboks" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:758 -msgid "" -"Controls the meta box on the content editor screen. By default, the " -"Categories meta box is shown for hierarchical taxonomies, and the Tags meta " -"box is shown for non-hierarchical taxonomies." -msgstr "" -"Kontroluje metaboks na ekranie edytora treści. Domyślnie metaboks Kategorii " -"jest wyświetlany dla hierarchicznych taksonomii, a metaboks Tagów dla " -"taksonomii niehierarchicznych." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:757 -msgid "Meta Box" -msgstr "Metaboks" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:746 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:767 -msgid "Categories Meta Box" -msgstr "Metaboks kategorii" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:745 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:766 -msgid "Tags Meta Box" -msgstr "Metaboks tagów" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:704 -msgid "A link to a tag" -msgstr "Dodaj odnośnik do tagu" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:703 -msgid "Describes a navigation link block variation used in the block editor." -msgstr "Opisuje wersję bloku odnośnika używanego w edytorze blokowym." - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:698 -msgid "A link to a %s" -msgstr "Odnośnik do „%s”" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:683 -msgid "Tag Link" -msgstr "Odnośnik tagu" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:682 -msgid "" -"Assigns a title for navigation link block variation used in the block editor." -msgstr "Przypisuje tytuł wersji bloku odnośnika używanego w edytorze blokowym." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:663 -msgid "← Go to tags" -msgstr "← Przejdź do tagów" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:662 -msgid "" -"Assigns the text used to link back to the main index after updating a term." -msgstr "" -"Przypisuje tekst używany w odnośniku powrotu do głównego indeksu po " -"zaktualizowaniu terminu." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:661 -msgid "Back To Items" -msgstr "Powrót do elementów" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:657 -msgid "← Go to %s" -msgstr "← Przejdź do „%s”" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:642 -msgid "Tags list" -msgstr "Lista tagów" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:641 -msgid "Assigns text to the table hidden heading." -msgstr "Przypisuje tekst do ukrytego nagłówka tabeli." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:622 -msgid "Tags list navigation" -msgstr "Nawigacja listy tagów" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:621 -msgid "Assigns text to the table pagination hidden heading." -msgstr "Przypisuje tekst do ukrytego nagłówka stronicowania tabeli." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:597 -msgid "Filter by category" -msgstr "Filtruj wg kategorii" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:596 -msgid "Assigns text to the filter button in the posts lists table." -msgstr "Przypisuje tekst do przycisku filtrowania w tabeli listy wpisów." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:595 -msgid "Filter By Item" -msgstr "Filtruj wg elementu" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:591 -msgid "Filter by %s" -msgstr "Filtruj wg „%s”" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:575 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:576 -msgid "" -"The description is not prominent by default; however, some themes may show " -"it." -msgstr "" -"Opis zwykle nie jest eksponowany, jednak niektóre motywy mogą go wyświetlać." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:574 -msgid "Describes the Description field on the Edit Tags screen." -msgstr "Opisuje pole opisu na ekranie edycji tagów." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:573 -msgid "Description Field Description" -msgstr "Opis pola opisu" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:554 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:555 -msgid "" -"Assign a parent term to create a hierarchy. The term Jazz, for example, " -"would be the parent of Bebop and Big Band" -msgstr "" -"Przypisz pojęcie nadrzędne, aby utworzyć hierarchię. Na przykład pojęcie " -"Jazz byłoby rodzicem dla Bebop i Big Band" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:553 -msgid "Describes the Parent field on the Edit Tags screen." -msgstr "Opisuje pole elementu nadrzędnego na ekranie edycji tagów." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:552 -msgid "Parent Field Description" -msgstr "Opis pola nadrzędnego" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:538 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:539 -msgid "" -"The \"slug\" is the URL-friendly version of the name. It is usually all " -"lower case and contains only letters, numbers, and hyphens." -msgstr "" -"„Uproszczona nazwa” jest przyjazną dla adresu URL wersją nazwy. Zwykle " -"składa się wyłącznie z małych liter, cyfr i myślników." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:537 -msgid "Describes the Slug field on the Edit Tags screen." -msgstr "Opisuje pole uproszczonej nazwy na ekranie edycji tagów." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:536 -msgid "Slug Field Description" -msgstr "Opis pola uproszczonej nazwy" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:522 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:523 -msgid "The name is how it appears on your site" -msgstr "Nazwa jak pojawia się w witrynie" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:521 -msgid "Describes the Name field on the Edit Tags screen." -msgstr "Opisuje pole nazwy na ekranie edycji tagów." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:520 -msgid "Name Field Description" -msgstr "Opis pola nazwy" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:507 -msgid "No tags" -msgstr "Brak tagów" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:506 -msgid "" -"Assigns the text displayed in the posts and media list tables when no tags " -"or categories are available." -msgstr "" -"Przypisuje tekst wyświetlany w tabelach list wpisów i mediów gdy nie ma " -"żadnych tagów, ani kategorii." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:505 -msgid "No Terms" -msgstr "Brak terminów" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:501 -msgid "No %s" -msgstr "Brak „%s”" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:486 -msgid "No tags found" -msgstr "Nie znaleziono żadnych tagów" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:485 -msgid "" -"Assigns the text displayed when clicking the 'choose from most used' text in " -"the taxonomy meta box when no tags are available, and assigns the text used " -"in the terms list table when there are no items for a taxonomy." -msgstr "" -"Przypisuje tekst wyświetlany po kliknięciu „Wybierz z najczęściej używanych” " -"w metaboksie taksonomii gdy nie ma żadnych tagów, ani kategorii oraz tekst " -"używany w tabeli listy terminów gdy nie ma elementów z tej taksonomii." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:484 -msgid "Not Found" -msgstr "Nie znaleziono" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:463 -msgid "Assigns text to the Title field of the Most Used tab." -msgstr "Przypisuje tekst do pola Tytuł zakładki najczęściej używanych." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:462 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:464 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:465 -msgid "Most Used" -msgstr "Najczęściej używane" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:444 -msgid "Choose from the most used tags" -msgstr "Wybierz z najczęściej używanych tagów" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:443 -msgid "" -"Assigns the 'choose from most used' text used in the meta box when " -"JavaScript is disabled. Only used on non-hierarchical taxonomies." -msgstr "" -"Przypisuje tekst „Wybierz z najczęściej używanych” w metaboksie, gdy " -"JavaScript jest wyłączony. Używane tylko w taksonomiach niehierarchicznych." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:442 -msgid "Choose From Most Used" -msgstr "Wybierz z najczęściej używanych" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:438 -msgid "Choose from the most used %s" -msgstr "Wybierz z najczęściej używanych „%s”" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:418 -msgid "Add or remove tags" -msgstr "Dodaj lub usuń tagi" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:417 -msgid "" -"Assigns the add or remove items text used in the meta box when JavaScript is " -"disabled. Only used on non-hierarchical taxonomies" -msgstr "" -"Przypisuje tekst dot. dodawania lub usuwania elementów w metaboksie, gdy " -"JavaScript jest wyłączony. Używane tylko w taksonomiach niehierarchicznych" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:416 -msgid "Add Or Remove Items" -msgstr "Dodaj lub usuń elementy" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:412 -msgid "Add or remove %s" -msgstr "Dodaj lub usuń %s" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:392 -msgid "Separate tags with commas" -msgstr "Oddziel tagi przecinkami" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:391 -msgid "" -"Assigns the separate item with commas text used in the taxonomy meta box. " -"Only used on non-hierarchical taxonomies." -msgstr "" -"Przypisuje tekst dot. oddzielania elementów przecinkami w metaboksie " -"taksonomii. Używane tylko w taksonomiach niehierarchicznych." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:390 -msgid "Separate Items With Commas" -msgstr "Oddziel elementy przecinkami" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:386 -msgid "Separate %s with commas" -msgstr "Oddziel %s przecinkami" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:366 -msgid "Popular Tags" -msgstr "Popularne tagi" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:365 -msgid "Assigns popular items text. Only used for non-hierarchical taxonomies." -msgstr "" -"Przypisuje tekst popularnych elementów. Używane tylko w taksonomiach " -"niehierarchicznych." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:364 -msgid "Popular Items" -msgstr "Popularne elementy" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:361 -msgid "Popular %s" -msgstr "Popularne %s" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:347 -msgid "Search Tags" -msgstr "Szukaj tagów" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:346 -msgid "Assigns search items text." -msgstr "Przypisuje tekst wyszukiwania elementów." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:323 -msgid "Parent Category:" -msgstr "Kategoria nadrzędna:" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:322 -msgid "Assigns parent item text, but with a colon (:) added to the end." -msgstr "" -"Przypisuje tekst elementu nadrzędnego, ale z dodanym na końcu dwukropkiem " -"(:)." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:321 -msgid "Parent Item With Colon" -msgstr "Element nadrzędny z dwukropkiem" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:298 -msgid "Parent Category" -msgstr "Kategoria nadrzędna" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:297 -msgid "Assigns parent item text. Only used on hierarchical taxonomies." -msgstr "" -"Przypisuje tekst elementu nadrzędnego. Używane tylko w taksonomiach " -"hierarchicznych." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:296 -msgid "Parent Item" -msgstr "Element nadrzędny" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:293 -msgid "Parent %s" -msgstr "Element nadrzędny „%s”" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:278 -msgid "New Tag Name" -msgstr "Nazwa nowego tagu" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:277 -msgid "Assigns the new item name text." -msgstr "Przypisuje tekst nazwy nowego elementu." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:276 -msgid "New Item Name" -msgstr "Nazwa nowego elementu" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:273 -msgid "New %s Name" -msgstr "Nazwa nowego „%s”" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:258 -msgid "Add New Tag" -msgstr "Utwórz tag" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:257 -msgid "Assigns the add new item text." -msgstr "Przypisuje tekst dodania nowego elementu." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:238 -msgid "Update Tag" -msgstr "Aktualizuj tag" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:237 -msgid "Assigns the update item text." -msgstr "Przypisuje tekst zaktualizowania elementu." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:236 -msgid "Update Item" -msgstr "Aktualizuj element" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:233 -msgid "Update %s" -msgstr "Aktualizuj „%s”" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:218 -msgid "View Tag" -msgstr "Zobacz tag" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:217 -msgid "In the admin bar to view term during editing." -msgstr "Na pasku administratora do zobaczenia terminu podczas edycji." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:198 -msgid "Edit Tag" -msgstr "Edytuj tag" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:197 -msgid "At the top of the editor screen when editing a term." -msgstr "Na górze ekranu edycji podczas edytowania terminu." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:178 -msgid "All Tags" -msgstr "Wszystkie tagi" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:177 -msgid "Assigns the all items text." -msgstr "Przypisuje tekst wszystkich elementów." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:158 -msgid "Assigns the menu name text." -msgstr "Przypisuje tekst nazwy menu." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:157 -msgid "Menu Label" -msgstr "Etykieta menu" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:131 -msgid "Active taxonomies are enabled and registered with WordPress." -msgstr "Włączone taksonomie są uruchamiane i rejestrowane razem z WordPressem." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:115 -msgid "A descriptive summary of the taxonomy." -msgstr "Podsumowanie opisujące taksonomię." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:95 -msgid "A descriptive summary of the term." -msgstr "Podsumowanie opisujące termin." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:94 -msgid "Term Description" -msgstr "Opis terminu" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:76 -msgid "Single word, no spaces. Underscores and dashes allowed." -msgstr "Pojedyncze słowo, bez spacji. Dozwolone są myślniki i podkreślniki." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:75 -msgid "Term Slug" -msgstr "Uproszczona nazwa terminu" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:56 -msgid "The name of the default term." -msgstr "Nazwa domyślnego terminu." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:55 -msgid "Term Name" -msgstr "Nazwa terminu" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:41 -msgid "" -"Create a term for the taxonomy that cannot be deleted. It will not be " -"selected for posts by default." -msgstr "" -"Utwórz termin taksonomii, którego nie będzie można usunąć. Nie będzie on " -"domyślnie wybrany dla wpisów." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:40 -msgid "Default Term" -msgstr "Domyślny termin" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:28 -msgid "" -"Whether terms in this taxonomy should be sorted in the order they are " -"provided to `wp_set_object_terms()`." -msgstr "" -"Czy terminy tej taksonomii powinny być posortowane w kolejności, w jakiej są " -"przekazywane do `wp_set_object_terms()`." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:27 -msgid "Sort Terms" -msgstr "Sortuj terminy" - -#: includes/admin/views/acf-post-type/list-empty.php:7 -msgid "Add Post Type" -msgstr "Dodaj typ treści" - -#: includes/admin/views/acf-post-type/list-empty.php:6 -msgid "" -"Expand the functionality of WordPress beyond standard posts and pages with " -"custom post types." -msgstr "" -"Rozszerz funkcjonalność WordPressa ponad standardowe wpisy i strony za " -"pomocą własnych typów treści." - -#: includes/admin/views/acf-post-type/list-empty.php:5 -msgid "Add Your First Post Type" -msgstr "Dodaj swój pierwszy typ treści" - -#: includes/admin/views/acf-post-type/basic-settings.php:136 -#: includes/admin/views/acf-taxonomy/basic-settings.php:135 -msgid "I know what I'm doing, show me all the options." -msgstr "Wiem co robię, pokaż mi wszystkie opcje." - -#: includes/admin/views/acf-post-type/basic-settings.php:135 -#: includes/admin/views/acf-taxonomy/basic-settings.php:134 -msgid "Advanced Configuration" -msgstr "Zaawansowana konfiguracja" - -#: includes/admin/views/acf-post-type/basic-settings.php:123 -msgid "Hierarchical post types can have descendants (like pages)." -msgstr "Hierarchiczne typy treści mogą posiadać elementy potomne (jak strony)." - -#: includes/admin/views/acf-post-type/basic-settings.php:122 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:980 -#: includes/admin/views/acf-taxonomy/basic-settings.php:121 -msgid "Hierarchical" -msgstr "Hierarchiczne" - -#: includes/admin/views/acf-post-type/basic-settings.php:107 -msgid "Visible on the frontend and in the admin dashboard." -msgstr "Widoczne w witrynie oraz w kokpicie administratora." - -#: includes/admin/views/acf-post-type/basic-settings.php:106 -#: includes/admin/views/acf-taxonomy/basic-settings.php:106 -msgid "Public" -msgstr "Publiczne" - -#. translators: example post type -#: includes/admin/views/acf-post-type/basic-settings.php:59 -msgid "movie" -msgstr "film" - -#: includes/admin/views/acf-post-type/basic-settings.php:57 -msgid "Lower case letters, underscores and dashes only, Max 20 characters." -msgstr "Tylko małe litery, myślniki i podkreślniki. Maksymalnie 20 znaków." - -#. translators: example post type -#: includes/admin/views/acf-post-type/basic-settings.php:41 -msgid "Movie" -msgstr "Film" - -#: includes/admin/views/acf-post-type/basic-settings.php:39 -#: includes/admin/views/acf-taxonomy/basic-settings.php:40 -msgid "Singular Label" -msgstr "Etykieta w liczbie pojedynczej" - -#. translators: example post type -#: includes/admin/views/acf-post-type/basic-settings.php:24 -msgid "Movies" -msgstr "Filmy" - -#: includes/admin/views/acf-post-type/basic-settings.php:22 -#: includes/admin/views/acf-taxonomy/basic-settings.php:23 -msgid "Plural Label" -msgstr "Etykieta w liczbie mnogiej" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1270 -msgid "" -"Optional custom controller to use instead of `WP_REST_Posts_Controller`." -msgstr "" -"Opcjonalny własny kontroler do użycia zamiast `WP_REST_Posts_Controller`." - -#: includes/admin/views/acf-post-type/advanced-settings.php:1269 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1210 -msgid "Controller Class" -msgstr "Klasa kontrolera" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1251 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1191 -msgid "The namespace part of the REST API URL." -msgstr "Część przestrzeni nazw adresu URL REST API." - -#: includes/admin/views/acf-post-type/advanced-settings.php:1250 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1190 -msgid "Namespace Route" -msgstr "Ścieżka przestrzeni nazw" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1232 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1172 -msgid "The base URL for the post type REST API URLs." -msgstr "Bazowy adres URL tego typu treści dla adresów URL REST API." - -#: includes/admin/views/acf-post-type/advanced-settings.php:1231 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1171 -msgid "Base URL" -msgstr "Bazowy adres URL" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1217 -msgid "" -"Exposes this post type in the REST API. Required to use the block editor." -msgstr "" -"Pokaż ten typ treści w REST API. Wymagane, aby używać edytora blokowego." - -#: includes/admin/views/acf-post-type/advanced-settings.php:1216 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1154 -msgid "Show In REST API" -msgstr "Pokaż w REST API" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1195 -msgid "Customize the query variable name." -msgstr "Dostosuj nazwę zmiennej zapytania." - -#: includes/admin/views/acf-post-type/advanced-settings.php:1194 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1054 -msgid "Query Variable" -msgstr "Zmienna zapytania" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1172 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1032 -msgid "No Query Variable Support" -msgstr "Brak obsługi zmiennej zapytania" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1171 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1031 -msgid "Custom Query Variable" -msgstr "Własna zmienna zapytania" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1168 -msgid "" -"Items can be accessed using the non-pretty permalink, eg. {post_type}" -"={post_slug}." -msgstr "" -"Elementy są dostępne za pomocą nieprzyjaznych bezpośrednich odnośników, np. " -"{typ_treści}={uproszczona_nazwa_wpisu}." - -#: includes/admin/views/acf-post-type/advanced-settings.php:1167 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1027 -msgid "Query Variable Support" -msgstr "Obsługa zmiennej zapytania" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1142 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1003 -msgid "URLs for an item and items can be accessed with a query string." -msgstr "" -"Adresy URL elementu i elementów są dostępne za pomocą ciągu znaków zapytania." - -#: includes/admin/views/acf-post-type/advanced-settings.php:1141 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1002 -msgid "Publicly Queryable" -msgstr "Publicznie dostępne" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1120 -msgid "Custom slug for the Archive URL." -msgstr "Własna uproszczona nazwa dla adresu URL archiwum." - -#: includes/admin/views/acf-post-type/advanced-settings.php:1119 -msgid "Archive Slug" -msgstr "Uproszczona nazwa archiwum" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1106 -msgid "" -"Has an item archive that can be customized with an archive template file in " -"your theme." -msgstr "" -"Posiada archiwum elementów, które można dostosować za pomocą szablonu " -"archiwum w motywie." - -#: includes/admin/views/acf-post-type/advanced-settings.php:1105 -msgid "Archive" -msgstr "Archiwum" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1085 -msgid "Pagination support for the items URLs such as the archives." -msgstr "Obsługa stronicowania adresów URL elementów takich jak archiwa." - -#: includes/admin/views/acf-post-type/advanced-settings.php:1084 -msgid "Pagination" -msgstr "Stronicowanie" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1067 -msgid "RSS feed URL for the post type items." -msgstr "Adres URL kanału RSS elementów tego typu treści." - -#: includes/admin/views/acf-post-type/advanced-settings.php:1066 -msgid "Feed URL" -msgstr "Adres URL kanału informacyjnego" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1048 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:961 -msgid "" -"Alters the permalink structure to add the `WP_Rewrite::$front` prefix to " -"URLs." -msgstr "" -"Modyfikuje strukturę bezpośrednich odnośników dodając prefiks `WP_Rewrite::" -"$front` do adresów URL." - -#: includes/admin/views/acf-post-type/advanced-settings.php:1047 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:960 -msgid "Front URL Prefix" -msgstr "Prefiks adresu URL" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1028 -msgid "Customize the slug used in the URL." -msgstr "Dostosuj uproszczoną nazwę używaną w adresie URL." - -#: includes/admin/views/acf-post-type/advanced-settings.php:1027 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:940 -msgid "URL Slug" -msgstr "Uproszczona nazwa w adresie URL" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1011 -msgid "Permalinks for this post type are disabled." -msgstr "Bezpośrednie odnośniki tego typu treści są wyłączone." - -#. translators: this string will be appended with the new permalink structure. -#: includes/admin/views/acf-post-type/advanced-settings.php:1010 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:923 -msgid "" -"Rewrite the URL using a custom slug defined in the input below. Your " -"permalink structure will be" -msgstr "" -"Przepisuj adres URL używając własnej uproszczonej nazwy określonej w polu " -"poniżej. Struktura bezpośrednich odnośników będzie następująca" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1002 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:915 -msgid "No Permalink (prevent URL rewriting)" -msgstr "Brak bezpośredniego odnośnika (wyłącz przepisywanie adresów URL)" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1001 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:914 -msgid "Custom Permalink" -msgstr "Własny bezpośredni odnośnik" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1000 -#: includes/admin/views/acf-post-type/advanced-settings.php:1170 -#: includes/admin/views/acf-post-type/basic-settings.php:56 -msgid "Post Type Key" -msgstr "Klucz typu treści" - -#. translators: this string will be appended with the new permalink structure. -#: includes/admin/views/acf-post-type/advanced-settings.php:998 -#: includes/admin/views/acf-post-type/advanced-settings.php:1008 -msgid "" -"Rewrite the URL using the post type key as the slug. Your permalink " -"structure will be" -msgstr "" -"Przepisuj adres URL używając klucza typu treści jako uproszczonej nazwy. " -"Struktura bezpośrednich odnośników będzie następująca" - -#: includes/admin/views/acf-post-type/advanced-settings.php:996 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:910 -msgid "Permalink Rewrite" -msgstr "Przepisywanie bezpośrednich odnośników" - -#: includes/admin/views/acf-post-type/advanced-settings.php:982 -msgid "Delete items by a user when that user is deleted." -msgstr "Usuwaj elementy należące do użytkownika podczas jego usuwania." - -#: includes/admin/views/acf-post-type/advanced-settings.php:981 -msgid "Delete With User" -msgstr "Usuń wraz z użytkownikiem" - -#: includes/admin/views/acf-post-type/advanced-settings.php:967 -msgid "Allow the post type to be exported from 'Tools' > 'Export'." -msgstr "" -"Zezwól na eksportowanie tego typu treści na ekranie „Narzędzia > Eksport”." - -#: includes/admin/views/acf-post-type/advanced-settings.php:966 -msgid "Can Export" -msgstr "Można eksportować" - -#: includes/admin/views/acf-post-type/advanced-settings.php:935 -msgid "Optionally provide a plural to be used in capabilities." -msgstr "Opcjonalnie podaj liczbę mnogą, aby użyć jej w uprawnieniach." - -#: includes/admin/views/acf-post-type/advanced-settings.php:934 -msgid "Plural Capability Name" -msgstr "Nazwa uprawnienia w liczbie mnogiej" - -#: includes/admin/views/acf-post-type/advanced-settings.php:916 -msgid "Choose another post type to base the capabilities for this post type." -msgstr "" -"Wybierz inny typ treści, aby bazować na jego uprawnieniach dla tego typu " -"treści." - -#: includes/admin/views/acf-post-type/advanced-settings.php:915 -msgid "Singular Capability Name" -msgstr "Nazwa uprawnienia w liczbie pojedynczej" - -#: includes/admin/views/acf-post-type/advanced-settings.php:901 -msgid "" -"By default the capabilities of the post type will inherit the 'Post' " -"capability names, eg. edit_post, delete_posts. Enable to use post type " -"specific capabilities, eg. edit_{singular}, delete_{plural}." -msgstr "" -"Domyślnie nazwy uprawnienia tego typu treści zostaną odziedziczone z " -"uprawnień typu „Wpis”, np. edit_post, delete_posts. Włącz, aby użyć w tym " -"typie treści własnych uprawnień, np. edit_{liczba pojedyncza}, " -"delete_{liczba mnoga}." - -#: includes/admin/views/acf-post-type/advanced-settings.php:900 -msgid "Rename Capabilities" -msgstr "Zmień nazwy uprawnień" - -#: includes/admin/views/acf-post-type/advanced-settings.php:885 -msgid "Exclude From Search" -msgstr "Wyklucz z wyszukiwania" - -#: includes/admin/views/acf-post-type/advanced-settings.php:872 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:854 -msgid "" -"Allow items to be added to menus in the 'Appearance' > 'Menus' screen. Must " -"be turned on in 'Screen options'." -msgstr "" -"Zezwól na dodawanie elementów do menu na ekranie „Wygląd > Menu”. Należy je " -"włączyć w „Opcjach ekranu”." - -#: includes/admin/views/acf-post-type/advanced-settings.php:871 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:853 -msgid "Appearance Menus Support" -msgstr "Obsługa menu wyglądu" - -#: includes/admin/views/acf-post-type/advanced-settings.php:853 -msgid "Appears as an item in the 'New' menu in the admin bar." -msgstr "Pojawia się jako element w menu „Utwórz” na pasku administratora." - -#: includes/admin/views/acf-post-type/advanced-settings.php:852 -msgid "Show In Admin Bar" -msgstr "Pokaż na pasku administratora" - -#: includes/admin/views/acf-post-type/advanced-settings.php:821 -msgid "" -"A PHP function name to be called when setting up the meta boxes for the edit " -"screen." -msgstr "" -"Nazwa funkcji PHP, która będzie wzywana podczas konfigurowania metaboksów na " -"ekranie edycji." - -#: includes/admin/views/acf-post-type/advanced-settings.php:820 -msgid "Custom Meta Box Callback" -msgstr "Własna funkcja zwrotna metaboksa" - -#: includes/admin/views/acf-post-type/advanced-settings.php:800 -msgid "Menu Icon" -msgstr "Ikonka menu" - -#: includes/admin/views/acf-post-type/advanced-settings.php:782 -msgid "The position in the sidebar menu in the admin dashboard." -msgstr "Pozycja w menu w panelu bocznym w kokpicie administratora." - -#: includes/admin/views/acf-post-type/advanced-settings.php:781 -msgid "Menu Position" -msgstr "Pozycja menu" - -#: includes/admin/views/acf-post-type/advanced-settings.php:763 -msgid "" -"By default the post type will get a new top level item in the admin menu. If " -"an existing top level item is supplied here, the post type will be added as " -"a submenu item under it." -msgstr "" -"Domyślnie typ treści otrzyma nowy element najwyższego poziomu w menu " -"administratora. Jeżeli zostanie tu podany istniejący element najwyższego " -"poziomu, typ treści zostanie dodany do niego jako element podmenu." - -#: includes/admin/views/acf-post-type/advanced-settings.php:762 -msgid "Admin Menu Parent" -msgstr "Element nadrzędny menu administratora" - -#. translators: %s = "dashicon class name", link to the WordPress dashicon -#. documentation. -#: includes/admin/views/acf-post-type/advanced-settings.php:750 -msgid "" -"The icon used for the post type menu item in the admin dashboard. Can be a " -"URL or %s to use for the icon." -msgstr "" -"Ikonka używana przez element menu tego typu treści w kokpicie " -"administratora. Może to być adres URL lub %s do użycia jako ikonka." - -#: includes/admin/views/acf-post-type/advanced-settings.php:745 -msgid "Dashicon class name" -msgstr "Nazwa klasy Dashicon" - -#: includes/admin/views/acf-post-type/advanced-settings.php:734 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:734 -msgid "Admin editor navigation in the sidebar menu." -msgstr "Nawigacja w menu w panelu bocznym kokpitu administratora." - -#: includes/admin/views/acf-post-type/advanced-settings.php:733 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:733 -msgid "Show In Admin Menu" -msgstr "Pokaż w menu administratora" - -#: includes/admin/views/acf-post-type/advanced-settings.php:720 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:719 -msgid "Items can be edited and managed in the admin dashboard." -msgstr "Elementy mogą być edytowanie i zarządzane w kokpicie administratora." - -#: includes/admin/views/acf-post-type/advanced-settings.php:719 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:718 -msgid "Show In UI" -msgstr "Pokaż w interfejsie użytkownika" - -#: includes/admin/views/acf-post-type/advanced-settings.php:689 -msgid "A link to a post." -msgstr "Odnośnik do wpisu." - -#: includes/admin/views/acf-post-type/advanced-settings.php:688 -msgid "Description for a navigation link block variation." -msgstr "Opis wersji bloku odnośnika." - -#: includes/admin/views/acf-post-type/advanced-settings.php:687 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:702 -msgid "Item Link Description" -msgstr "Opis odnośnika elementu" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:683 -msgid "A link to a %s." -msgstr "Odnośnik do „%s”." - -#: includes/admin/views/acf-post-type/advanced-settings.php:668 -msgid "Post Link" -msgstr "Odnośnik wpisu" - -#: includes/admin/views/acf-post-type/advanced-settings.php:667 -msgid "Title for a navigation link block variation." -msgstr "Tytuł wersji bloku odnośnika." - -#: includes/admin/views/acf-post-type/advanced-settings.php:666 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:681 -msgid "Item Link" -msgstr "Odnośnik elementu" - -#. translators: %s Singular form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:663 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:678 -msgid "%s Link" -msgstr "Odnośnik „%s”" - -#: includes/admin/views/acf-post-type/advanced-settings.php:648 -msgid "Post updated." -msgstr "Wpis został zaktualizowany." - -#: includes/admin/views/acf-post-type/advanced-settings.php:647 -msgid "In the editor notice after an item is updated." -msgstr "Powiadomienie w edytorze po zaktualizowaniu elementu." - -#: includes/admin/views/acf-post-type/advanced-settings.php:646 -msgid "Item Updated" -msgstr "Element został zaktualizowany" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:643 -msgid "%s updated." -msgstr "„%s” został zaktualizowany." - -#: includes/admin/views/acf-post-type/advanced-settings.php:628 -msgid "Post scheduled." -msgstr "Zaplanowano publikację wpisu." - -#: includes/admin/views/acf-post-type/advanced-settings.php:627 -msgid "In the editor notice after scheduling an item." -msgstr "Powiadomienie w edytorze po zaplanowaniu publikacji elementu." - -#: includes/admin/views/acf-post-type/advanced-settings.php:626 -msgid "Item Scheduled" -msgstr "Zaplanowano publikację elementu" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:623 -msgid "%s scheduled." -msgstr "Zaplanowano publikację „%s”." - -#: includes/admin/views/acf-post-type/advanced-settings.php:608 -msgid "Post reverted to draft." -msgstr "Wpis zamieniony w szkic." - -#: includes/admin/views/acf-post-type/advanced-settings.php:607 -msgid "In the editor notice after reverting an item to draft." -msgstr "Powiadomienie w edytorze po zamienieniu elementu w szkic." - -#: includes/admin/views/acf-post-type/advanced-settings.php:606 -msgid "Item Reverted To Draft" -msgstr "Element zamieniony w szkic" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:603 -msgid "%s reverted to draft." -msgstr "„%s” zamieniony w szkic." - -#: includes/admin/views/acf-post-type/advanced-settings.php:588 -msgid "Post published privately." -msgstr "Wpis został opublikowany jako prywatny." - -#: includes/admin/views/acf-post-type/advanced-settings.php:587 -msgid "In the editor notice after publishing a private item." -msgstr "Powiadomienie w edytorze po opublikowaniu elementu jako prywatny." - -#: includes/admin/views/acf-post-type/advanced-settings.php:586 -msgid "Item Published Privately" -msgstr "Element został opublikowany jako prywatny" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:583 -msgid "%s published privately." -msgstr "„%s” został opublikowany jako prywatny." - -#: includes/admin/views/acf-post-type/advanced-settings.php:568 -msgid "Post published." -msgstr "Wpis został opublikowany." - -#: includes/admin/views/acf-post-type/advanced-settings.php:567 -msgid "In the editor notice after publishing an item." -msgstr "Powiadomienie w edytorze po opublikowaniu elementu." - -#: includes/admin/views/acf-post-type/advanced-settings.php:566 -msgid "Item Published" -msgstr "Element został opublikowany" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:563 -msgid "%s published." -msgstr "„%s” został opublikowany." - -#: includes/admin/views/acf-post-type/advanced-settings.php:548 -msgid "Posts list" -msgstr "Lista wpisów" - -#: includes/admin/views/acf-post-type/advanced-settings.php:547 -msgid "Used by screen readers for the items list on the post type list screen." -msgstr "" -"Używane przez czytniki ekranu do listy elementów na ekranie listy wpisów " -"tego typu treści." - -#: includes/admin/views/acf-post-type/advanced-settings.php:546 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:640 -msgid "Items List" -msgstr "Lista elementów" - -#. translators: %s Plural form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:543 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:637 -msgid "%s list" -msgstr "Lista „%s”" - -#: includes/admin/views/acf-post-type/advanced-settings.php:528 -msgid "Posts list navigation" -msgstr "Nawigacja listy wpisów" - -#: includes/admin/views/acf-post-type/advanced-settings.php:527 -msgid "" -"Used by screen readers for the filter list pagination on the post type list " -"screen." -msgstr "" -"Używane przez czytniki ekranu do stronicowania na liście filtrów na ekranie " -"listy wpisów tego typu treści." - -#: includes/admin/views/acf-post-type/advanced-settings.php:526 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:620 -msgid "Items List Navigation" -msgstr "Nawigacja listy elementów" - -#. translators: %s Plural form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:523 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:617 -msgid "%s list navigation" -msgstr "Nawigacja listy „%s”" - -#: includes/admin/views/acf-post-type/advanced-settings.php:507 -msgid "Filter posts by date" -msgstr "Filtruj wpisy wg daty" - -#: includes/admin/views/acf-post-type/advanced-settings.php:506 -msgid "" -"Used by screen readers for the filter by date heading on the post type list " -"screen." -msgstr "" -"Używane przez czytniki ekranu do nagłówka filtrowania wg daty na ekranie " -"listy wpisów tego typu treści." - -#: includes/admin/views/acf-post-type/advanced-settings.php:505 -msgid "Filter Items By Date" -msgstr "Filtruj elementy wg daty" - -#. translators: %s Plural form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:501 -msgid "Filter %s by date" -msgstr "Filtruj %s wg daty" - -#: includes/admin/views/acf-post-type/advanced-settings.php:486 -msgid "Filter posts list" -msgstr "Filtrowanie listy wpisów" - -#: includes/admin/views/acf-post-type/advanced-settings.php:485 -msgid "" -"Used by screen readers for the filter links heading on the post type list " -"screen." -msgstr "" -"Używane przez czytniki ekranu do nagłówka odnośników filtrowania na ekranie " -"listy wpisów tego typu treści." - -#: includes/admin/views/acf-post-type/advanced-settings.php:484 -msgid "Filter Items List" -msgstr "Filtrowanie listy elementów" - -#. translators: %s Plural form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:480 -msgid "Filter %s list" -msgstr "Filtrowanie listy „%s”" - -#: includes/admin/views/acf-post-type/advanced-settings.php:464 -msgid "In the media modal showing all media uploaded to this item." -msgstr "W oknie mediów wyświetlającym wszystkie media wgrane do tego elementu." - -#: includes/admin/views/acf-post-type/advanced-settings.php:463 -msgid "Uploaded To This Item" -msgstr "Wgrane do elementu" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:459 -msgid "Uploaded to this %s" -msgstr "Wgrane do „%s”" - -#: includes/admin/views/acf-post-type/advanced-settings.php:444 -msgid "Insert into post" -msgstr "Wstaw do wpisu" - -#: includes/admin/views/acf-post-type/advanced-settings.php:443 -msgid "As the button label when adding media to content." -msgstr "Jako etykieta przycisku podczas dodawania mediów do treści." - -#: includes/admin/views/acf-post-type/advanced-settings.php:442 -msgid "Insert Into Media Button" -msgstr "Przycisk wstawiania mediów" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:438 -msgid "Insert into %s" -msgstr "Wstaw do „%s”" - -#: includes/admin/views/acf-post-type/advanced-settings.php:423 -msgid "Use as featured image" -msgstr "Użyj jako obrazek wyróżniający" - -#: includes/admin/views/acf-post-type/advanced-settings.php:422 -msgid "" -"As the button label for selecting to use an image as the featured image." -msgstr "" -"Jako etykieta przycisku podczas wybierania obrazka do użycia jako obrazka " -"wyróżniającego." - -#: includes/admin/views/acf-post-type/advanced-settings.php:421 -msgid "Use Featured Image" -msgstr "Użyj obrazka wyróżniającego" - -#: includes/admin/views/acf-post-type/advanced-settings.php:408 -msgid "Remove featured image" -msgstr "Usuń obrazek wyróżniający" - -#: includes/admin/views/acf-post-type/advanced-settings.php:407 -msgid "As the button label when removing the featured image." -msgstr "Jako etykieta przycisku podczas usuwania obrazka wyróżniającego." - -#: includes/admin/views/acf-post-type/advanced-settings.php:406 -msgid "Remove Featured Image" -msgstr "Usuń obrazek wyróżniający" - -#: includes/admin/views/acf-post-type/advanced-settings.php:393 -msgid "Set featured image" -msgstr "Ustaw obrazek wyróżniający" - -#: includes/admin/views/acf-post-type/advanced-settings.php:392 -msgid "As the button label when setting the featured image." -msgstr "Jako etykieta przycisku podczas ustawiania obrazka wyróżniającego." - -#: includes/admin/views/acf-post-type/advanced-settings.php:391 -msgid "Set Featured Image" -msgstr "Ustaw obrazek wyróżniający" - -#: includes/admin/views/acf-post-type/advanced-settings.php:378 -msgid "Featured image" -msgstr "Obrazek wyróżniający" - -#: includes/admin/views/acf-post-type/advanced-settings.php:377 -msgid "In the editor used for the title of the featured image meta box." -msgstr "W edytorze, używane jako tytuł metaboksa obrazka wyróżniającego." - -#: includes/admin/views/acf-post-type/advanced-settings.php:376 -msgid "Featured Image Meta Box" -msgstr "Metaboks obrazka wyróżniającego" - -#: includes/admin/views/acf-post-type/advanced-settings.php:363 -msgid "Post Attributes" -msgstr "Atrybuty wpisu" - -#: includes/admin/views/acf-post-type/advanced-settings.php:362 -msgid "In the editor used for the title of the post attributes meta box." -msgstr "W edytorze, używane jako tytuł metaboksa atrybutów wpisu." - -#: includes/admin/views/acf-post-type/advanced-settings.php:361 -msgid "Attributes Meta Box" -msgstr "Metaboks atrybutów" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:358 -msgid "%s Attributes" -msgstr "Atrybuty „%s”" - -#: includes/admin/views/acf-post-type/advanced-settings.php:343 -msgid "Post Archives" -msgstr "Archiwa wpisów" - -#: includes/admin/views/acf-post-type/advanced-settings.php:342 -msgid "" -"Adds 'Post Type Archive' items with this label to the list of posts shown " -"when adding items to an existing menu in a CPT with archives enabled. Only " -"appears when editing menus in 'Live Preview' mode and a custom archive slug " -"has been provided." -msgstr "" -"Dodaje element „Archiwa typu treści”, o tej etykiecie, do listy wpisów " -"własnych typów treści z włączonymi archiwami, wyświetlanych podczas " -"dodawania elementów do istniejącego menu. Pojawia się podczas edytowania " -"menu w trybie „Podgląd na żywo”, gdy podano własną uproszczoną nazwę " -"archiwów." - -#: includes/admin/views/acf-post-type/advanced-settings.php:341 -msgid "Archives Nav Menu" -msgstr "Menu nawigacyjne archiwów" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:338 -msgid "%s Archives" -msgstr "Archiwa „%s”" - -#: includes/admin/views/acf-post-type/advanced-settings.php:323 -msgid "No posts found in Trash" -msgstr "Nie znaleziono żadnych wpisów w koszu" - -#: includes/admin/views/acf-post-type/advanced-settings.php:322 -msgid "" -"At the top of the post type list screen when there are no posts in the trash." -msgstr "Na górze ekranu listy wpisów typu treści gdy brak wpisów w koszu." - -#: includes/admin/views/acf-post-type/advanced-settings.php:321 -msgid "No Items Found in Trash" -msgstr "Nie znaleziono żadnych elementów w koszu" - -#. translators: %s Plural form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:317 -msgid "No %s found in Trash" -msgstr "Nie znaleziono żadnych „%s” w koszu" - -#: includes/admin/views/acf-post-type/advanced-settings.php:302 -msgid "No posts found" -msgstr "Nie znaleziono żadnych wpisów" - -#: includes/admin/views/acf-post-type/advanced-settings.php:301 -msgid "" -"At the top of the post type list screen when there are no posts to display." -msgstr "" -"Na górze ekranu listy wpisów typu treści gdy brak wpisów do wyświetlenia." - -#: includes/admin/views/acf-post-type/advanced-settings.php:300 -msgid "No Items Found" -msgstr "Nie znaleziono żadnych elementów" - -#. translators: %s Plural form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:296 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:480 -msgid "No %s found" -msgstr "Nie znaleziono żadnych „%s”" - -#: includes/admin/views/acf-post-type/advanced-settings.php:281 -msgid "Search Posts" -msgstr "Szukaj wpisów" - -#: includes/admin/views/acf-post-type/advanced-settings.php:280 -msgid "At the top of the items screen when searching for an item." -msgstr "Na górze ekranu elementów podczas szukania elementu." - -#: includes/admin/views/acf-post-type/advanced-settings.php:279 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:345 -msgid "Search Items" -msgstr "Szukaj elementów" - -#. translators: %s Singular form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:276 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:342 -msgid "Search %s" -msgstr "Szukaj „%s”" - -#: includes/admin/views/acf-post-type/advanced-settings.php:261 -msgid "Parent Page:" -msgstr "Strona nadrzędna:" - -#: includes/admin/views/acf-post-type/advanced-settings.php:260 -msgid "For hierarchical types in the post type list screen." -msgstr "Dla hierarchicznych typów na ekranie listy wpisów tego typu treści." - -#: includes/admin/views/acf-post-type/advanced-settings.php:259 -msgid "Parent Item Prefix" -msgstr "Prefiks elementu nadrzędnego" - -#. translators: %s Singular form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:256 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:318 -msgid "Parent %s:" -msgstr "Nadrzędny „%s”:" - -#: includes/admin/views/acf-post-type/advanced-settings.php:241 -msgid "New Post" -msgstr "Nowy wpis" - -#: includes/admin/views/acf-post-type/advanced-settings.php:239 -msgid "New Item" -msgstr "Nowy element" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:236 -msgid "New %s" -msgstr "Nowy „%s”" - -#: includes/admin/views/acf-post-type/advanced-settings.php:206 -msgid "Add New Post" -msgstr "Utwórz wpis" - -#: includes/admin/views/acf-post-type/advanced-settings.php:205 -msgid "At the top of the editor screen when adding a new item." -msgstr "Na górze ekranu edycji podczas dodawania nowego elementu." - -#: includes/admin/views/acf-post-type/advanced-settings.php:204 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:256 -msgid "Add New Item" -msgstr "Utwórz element" - -#. translators: %s Singular form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:201 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:253 -msgid "Add New %s" -msgstr "Utwórz „%s”" - -#: includes/admin/views/acf-post-type/advanced-settings.php:186 -msgid "View Posts" -msgstr "Zobacz wpisy" - -#: includes/admin/views/acf-post-type/advanced-settings.php:185 -msgid "" -"Appears in the admin bar in the 'All Posts' view, provided the post type " -"supports archives and the home page is not an archive of that post type." -msgstr "" -"Pojawia się na pasku administratora w widoku „Wszystkie wpisy”, pod " -"warunkiem, że typ treści obsługuje archiwa, a strona główna nie jest " -"archiwum tego typu treści." - -#: includes/admin/views/acf-post-type/advanced-settings.php:184 -msgid "View Items" -msgstr "Zobacz elementy" - -#: includes/admin/views/acf-post-type/advanced-settings.php:166 -msgid "View Post" -msgstr "Zobacz wpis" - -#: includes/admin/views/acf-post-type/advanced-settings.php:165 -msgid "In the admin bar to view item when editing it." -msgstr "Na pasku administratora do zobaczenia elementu podczas jego edycji." - -#: includes/admin/views/acf-post-type/advanced-settings.php:164 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:216 -msgid "View Item" -msgstr "Zobacz element" - -#. translators: %s Singular form of post type name -#. translators: %s Plural form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:161 -#: includes/admin/views/acf-post-type/advanced-settings.php:181 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:213 -msgid "View %s" -msgstr "Zobacz „%s”" - -#: includes/admin/views/acf-post-type/advanced-settings.php:146 -msgid "Edit Post" -msgstr "Edytuj wpis" - -#: includes/admin/views/acf-post-type/advanced-settings.php:145 -msgid "At the top of the editor screen when editing an item." -msgstr "Na górze ekranu edycji podczas edytowania elementu." - -#: includes/admin/views/acf-post-type/advanced-settings.php:144 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:196 -msgid "Edit Item" -msgstr "Edytuj element" - -#. translators: %s Singular form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:141 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:193 -msgid "Edit %s" -msgstr "Edytuj „%s”" - -#: includes/admin/views/acf-post-type/advanced-settings.php:126 -msgid "All Posts" -msgstr "Wszystkie wpisy" - -#: includes/admin/views/acf-post-type/advanced-settings.php:125 -#: includes/admin/views/acf-post-type/advanced-settings.php:220 -#: includes/admin/views/acf-post-type/advanced-settings.php:240 -msgid "In the post type submenu in the admin dashboard." -msgstr "W podmenu typu treści w kokpicie administratora." - -#: includes/admin/views/acf-post-type/advanced-settings.php:124 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:176 -msgid "All Items" -msgstr "Wszystkie elementy" - -#. translators: %s Plural form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:121 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:173 -msgid "All %s" -msgstr "Wszystkie %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:105 -msgid "Admin menu name for the post type." -msgstr "Nazwa menu administracyjnego tego typu treści." - -#: includes/admin/views/acf-post-type/advanced-settings.php:104 -msgid "Menu Name" -msgstr "Nazwa menu" - -#: includes/admin/views/acf-post-type/advanced-settings.php:90 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:142 -msgid "Regenerate all labels using the Singular and Plural labels" -msgstr "" -"Odnów wszystkie etykiety używając etykiet w liczbie pojedynczej i mnogiej" - -#: includes/admin/views/acf-post-type/advanced-settings.php:88 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:140 -msgid "Regenerate" -msgstr "Odnów" - -#: includes/admin/views/acf-post-type/advanced-settings.php:79 -msgid "Active post types are enabled and registered with WordPress." -msgstr "" -"Włączone typy treści są uruchamiane i rejestrowane razem z WordPressem." - -#: includes/admin/views/acf-post-type/advanced-settings.php:63 -msgid "A descriptive summary of the post type." -msgstr "Podsumowanie opisujące typ treści." - -#: includes/admin/views/acf-post-type/advanced-settings.php:48 -msgid "Add Custom" -msgstr "Dodaj własną" - -#: includes/admin/views/acf-post-type/advanced-settings.php:42 -msgid "Enable various features in the content editor." -msgstr "Włącz różne funkcje w edytorze treści." - -#: includes/admin/views/acf-post-type/advanced-settings.php:31 -msgid "Post Formats" -msgstr "Formaty wpisów" - -#: includes/admin/views/acf-post-type/advanced-settings.php:25 -msgid "Editor" -msgstr "Edytor" - -#: includes/admin/views/acf-post-type/advanced-settings.php:24 -msgid "Trackbacks" -msgstr "Trackbacki" - -#: includes/admin/views/acf-post-type/basic-settings.php:87 -msgid "Select existing taxonomies to classify items of the post type." -msgstr "Wybierz istniejące taksonomie, aby klasyfikować ten typ treści." - -#: includes/admin/views/acf-field-group/field.php:145 -msgid "Browse Fields" -msgstr "Przeglądaj pola" - -#: includes/admin/tools/class-acf-admin-tool-import.php:292 -msgid "Nothing to import" -msgstr "Brak danych do importu" - -#: includes/admin/tools/class-acf-admin-tool-import.php:287 -msgid ". The Custom Post Type UI plugin can be deactivated." -msgstr ". Wtyczka „Custom Post Type UI” może zostać wyłączona." - -#. translators: %d - number of items imported from CPTUI -#: includes/admin/tools/class-acf-admin-tool-import.php:278 -msgid "Imported %d item from Custom Post Type UI -" -msgid_plural "Imported %d items from Custom Post Type UI -" -msgstr[0] "Zaimportowano %d element z „Custom Post Type UI” -" -msgstr[1] "Zaimportowano %d elementy z „Custom Post Type UI” -" -msgstr[2] "Zaimportowano %d elementów z „Custom Post Type UI” -" - -#: includes/admin/tools/class-acf-admin-tool-import.php:262 -msgid "Failed to import taxonomies." -msgstr "Nie udało się zaimportować taksonomii." - -#: includes/admin/tools/class-acf-admin-tool-import.php:244 -msgid "Failed to import post types." -msgstr "Nie udało się zaimportować typów treści." - -#: includes/admin/tools/class-acf-admin-tool-import.php:233 -msgid "Nothing from Custom Post Type UI plugin selected for import." -msgstr "Nie wybrano niczego do zaimportowania z wtyczki „Custom Post Type UI”." - -#: includes/admin/tools/class-acf-admin-tool-import.php:209 -msgid "Imported 1 item" -msgid_plural "Imported %s items" -msgstr[0] "Zaimportowano 1 element" -msgstr[1] "Zaimportowano %s elementy" -msgstr[2] "Zaimportowano %s elementów" - -#: includes/admin/tools/class-acf-admin-tool-import.php:122 -msgid "" -"Importing a Post Type or Taxonomy with the same key as one that already " -"exists will overwrite the settings for the existing Post Type or Taxonomy " -"with those of the import." -msgstr "" -"Zaimportowanie typu treści lub taksonomii, z tym samym kluczem co już " -"istniejący element, nadpisze ustawienia istniejącego typu treści lub " -"taksonomii używając zaimportowanych danych." - -#: includes/admin/tools/class-acf-admin-tool-import.php:111 -#: includes/admin/tools/class-acf-admin-tool-import.php:127 -msgid "Import from Custom Post Type UI" -msgstr "Importuj z „Custom Post Type UI”" - -#: includes/admin/tools/class-acf-admin-tool-export.php:412 -msgid "" -"The following code can be used to register a local version of the selected " -"items. Storing field groups, post types, or taxonomies locally can provide " -"many benefits such as faster load times, version control & dynamic fields/" -"settings. Simply copy and paste the following code to your theme's functions." -"php file or include it within an external file, then deactivate or delete " -"the items from the ACF admin." -msgstr "" -"Następujący kod może zostać użyty do zarejestrowania lokalnej wersji " -"wybranych elementów. Przechowywanie grup pól, typów treści czy taksonomii " -"lokalnie może pozytywnie wpłynąć na szybsze czasy wczytywania, kontrolę " -"wersji i dynamiczne pola oraz ustawienia. Skopiuj i wklej następujący kod do " -"pliku function.php w twoim motywie lub załącz go w oddzielnym pliku, a " -"następnie wyłącz lub usuń te elementy z ACF-a." - -#: includes/admin/tools/class-acf-admin-tool-export.php:411 -msgid "Export - Generate PHP" -msgstr "Eksport - wygeneruj PHP" - -#: includes/admin/tools/class-acf-admin-tool-export.php:384 -msgid "Export" -msgstr "Eksportuj" - -#: includes/admin/tools/class-acf-admin-tool-export.php:276 -msgid "Select Taxonomies" -msgstr "Wybierz taksonomie" - -#: includes/admin/tools/class-acf-admin-tool-export.php:254 -msgid "Select Post Types" -msgstr "Wybierz typy treści" - -#: includes/admin/tools/class-acf-admin-tool-export.php:167 -msgid "Exported 1 item." -msgid_plural "Exported %s items." -msgstr[0] "Wyeksportowano 1 element." -msgstr[1] "Wyeksportowano %s elementy." -msgstr[2] "Wyeksportowano %s elementów." - -#: includes/admin/post-types/admin-taxonomy.php:129 -#: assets/build/js/acf-internal-post-type.js:182 -#: assets/build/js/acf-internal-post-type.js:256 -msgid "Category" -msgstr "Kategoria" - -#: includes/admin/post-types/admin-taxonomy.php:127 -#: assets/build/js/acf-internal-post-type.js:179 -#: assets/build/js/acf-internal-post-type.js:253 -msgid "Tag" -msgstr "Tag" - -#. translators: %s taxonomy name -#: includes/admin/post-types/admin-taxonomy.php:82 -msgid "%s taxonomy created" -msgstr "Taksonomia %s została utworzona" - -#. translators: %s taxonomy name -#: includes/admin/post-types/admin-taxonomy.php:76 -msgid "%s taxonomy updated" -msgstr "Taksonomia %s została zaktualizowana" - -#: includes/admin/post-types/admin-taxonomy.php:56 -msgid "Taxonomy draft updated." -msgstr "Szkic taksonomii został zaktualizowany." - -#: includes/admin/post-types/admin-taxonomy.php:55 -msgid "Taxonomy scheduled for." -msgstr "Publikacja taksonomii została zaplanowana." - -#: includes/admin/post-types/admin-taxonomy.php:54 -msgid "Taxonomy submitted." -msgstr "Taksonomia została dodana." - -#: includes/admin/post-types/admin-taxonomy.php:53 -msgid "Taxonomy saved." -msgstr "Taksonomia została zapisana." - -#: includes/admin/post-types/admin-taxonomy.php:49 -msgid "Taxonomy deleted." -msgstr "Taksonomia została usunięta." - -#: includes/admin/post-types/admin-taxonomy.php:48 -msgid "Taxonomy updated." -msgstr "Taksonomia została zaktualizowana." - -#: includes/admin/post-types/admin-taxonomies.php:377 -#: includes/admin/post-types/admin-taxonomy.php:157 -msgid "" -"This taxonomy could not be registered because its key is in use by another " -"taxonomy registered by another plugin or theme." -msgstr "" -"Nie można było zarejestrować tej taksonomii, ponieważ jej klucz jest już " -"używany przez inną taksonomię zarejestrowaną przez inną wtyczkę lub motyw." - -#. translators: %s number of taxonomies synchronized -#: includes/admin/post-types/admin-taxonomies.php:359 -msgid "Taxonomy synchronized." -msgid_plural "%s taxonomies synchronized." -msgstr[0] "Taksonomia została zsynchronizowana." -msgstr[1] "%s taksonomie zostały zsynchronizowane." -msgstr[2] "%s taksonomii zostało zsynchronizowanych." - -#. translators: %s number of taxonomies duplicated -#: includes/admin/post-types/admin-taxonomies.php:352 -msgid "Taxonomy duplicated." -msgid_plural "%s taxonomies duplicated." -msgstr[0] "Taksonomia została zduplikowana." -msgstr[1] "%s taksonomie zostały zduplikowane." -msgstr[2] "%s taksonomii zostało zduplikowanych." - -#. translators: %s number of taxonomies deactivated -#: includes/admin/post-types/admin-taxonomies.php:345 -msgid "Taxonomy deactivated." -msgid_plural "%s taxonomies deactivated." -msgstr[0] "Taksonomia została wyłączona." -msgstr[1] "%s taksonomie zostały wyłączone." -msgstr[2] "%s taksonomii zostało wyłączonych." - -#. translators: %s number of taxonomies activated -#: includes/admin/post-types/admin-taxonomies.php:338 -msgid "Taxonomy activated." -msgid_plural "%s taxonomies activated." -msgstr[0] "Taksonomia została włączona." -msgstr[1] "%s taksonomie zostały włączone." -msgstr[2] "%s taksonomii zostało włączonych." - -#: includes/admin/post-types/admin-taxonomies.php:139 -msgid "Terms" -msgstr "Terminy" - -#. translators: %s number of post types synchronized -#: includes/admin/post-types/admin-post-types.php:352 -msgid "Post type synchronized." -msgid_plural "%s post types synchronized." -msgstr[0] "Typ treści został zsynchronizowany." -msgstr[1] "%s typy treści zostały zsynchronizowane." -msgstr[2] "%s typów treści zostało zsynchronizowanych." - -#. translators: %s number of post types duplicated -#: includes/admin/post-types/admin-post-types.php:345 -msgid "Post type duplicated." -msgid_plural "%s post types duplicated." -msgstr[0] "Typ treści został zduplikowany." -msgstr[1] "%s typy treści zostały zduplikowane." -msgstr[2] "%s typów treści zostało zduplikowanych." - -#. translators: %s number of post types deactivated -#: includes/admin/post-types/admin-post-types.php:338 -msgid "Post type deactivated." -msgid_plural "%s post types deactivated." -msgstr[0] "Typ treści został wyłączony." -msgstr[1] "%s typy treści zostały wyłączone." -msgstr[2] "%s typów treści zostało wyłączonych." - -#. translators: %s number of post types activated -#: includes/admin/post-types/admin-post-types.php:331 -msgid "Post type activated." -msgid_plural "%s post types activated." -msgstr[0] "Typ treści został włączony." -msgstr[1] "%s typy treści zostały włączone." -msgstr[2] "%s typów treści zostało włączonych." - -#: includes/admin/post-types/admin-post-types.php:112 -#: includes/admin/post-types/admin-taxonomies.php:137 -#: includes/admin/tools/class-acf-admin-tool-import.php:82 -#: includes/admin/views/acf-taxonomy/basic-settings.php:82 -#: includes/post-types/class-acf-post-type.php:91 -msgid "Post Types" -msgstr "Typy treści" - -#: includes/admin/post-types/admin-post-type.php:162 -#: includes/admin/post-types/admin-taxonomy.php:164 -msgid "Advanced Settings" -msgstr "Ustawienia zaawansowane" - -#: includes/admin/post-types/admin-post-type.php:161 -#: includes/admin/post-types/admin-taxonomy.php:163 -msgid "Basic Settings" -msgstr "Ustawienia podstawowe" - -#: includes/admin/post-types/admin-post-type.php:155 -#: includes/admin/post-types/admin-post-types.php:370 -msgid "" -"This post type could not be registered because its key is in use by another " -"post type registered by another plugin or theme." -msgstr "" -"Nie można było zarejestrować tego typu treści, ponieważ jego klucz jest już " -"używany przez inny typ treści zarejestrowany przez inną wtyczkę lub motyw." - -#: includes/admin/post-types/admin-post-type.php:128 -#: assets/build/js/acf-internal-post-type.js:176 -#: assets/build/js/acf-internal-post-type.js:250 -msgid "Pages" -msgstr "Strony" - -#: includes/admin/admin-internal-post-type.php:355 -msgid "Link Existing Field Groups" -msgstr "Powiąż istniejące grupy pól" - -#. translators: %s post type name -#: includes/admin/post-types/admin-post-type.php:80 -msgid "%s post type created" -msgstr "Typ treści %s został utworzony" - -#. translators: %s taxonomy name -#: includes/admin/post-types/admin-taxonomy.php:78 -msgid "Add fields to %s" -msgstr "Dodaj pola do „%s”" - -#. translators: %s post type name -#: includes/admin/post-types/admin-post-type.php:76 -msgid "%s post type updated" -msgstr "Typ treści %s został zaktualizowany" - -#: includes/admin/post-types/admin-post-type.php:56 -msgid "Post type draft updated." -msgstr "Szkic typu treści został zaktualizowany." - -#: includes/admin/post-types/admin-post-type.php:55 -msgid "Post type scheduled for." -msgstr "Publikacja typu treści została zaplanowana." - -#: includes/admin/post-types/admin-post-type.php:54 -msgid "Post type submitted." -msgstr "Typ teści został dodany." - -#: includes/admin/post-types/admin-post-type.php:53 -msgid "Post type saved." -msgstr "Typ treści został zapisany." - -#: includes/admin/post-types/admin-post-type.php:50 -msgid "Post type updated." -msgstr "Typ treści został zaktualizowany." - -#: includes/admin/post-types/admin-post-type.php:49 -msgid "Post type deleted." -msgstr "Typ treści został usunięty." - -#: includes/admin/post-types/admin-field-group.php:120 -#: assets/build/js/acf-field-group.js:1146 -#: assets/build/js/acf-field-group.js:1366 -msgid "Type to search..." -msgstr "Wpisz, aby wyszukać…" - -#: includes/admin/post-types/admin-field-group.php:105 -#: assets/build/js/acf-field-group.js:1172 -#: assets/build/js/acf-field-group.js:2319 -#: assets/build/js/acf-field-group.js:1414 -#: assets/build/js/acf-field-group.js:2727 -msgid "PRO Only" -msgstr "Tylko w PRO" - -#: includes/admin/post-types/admin-field-group.php:97 -#: assets/build/js/acf-internal-post-type.js:308 -#: assets/build/js/acf-internal-post-type.js:417 -msgid "Field groups linked successfully." -msgstr "Grupy pól zostały powiązane." - -#. translators: %s - URL to ACF tools page. -#: includes/admin/admin.php:195 -msgid "" -"Import Post Types and Taxonomies registered with Custom Post Type UI and " -"manage them with ACF. Get Started." -msgstr "" -"Importuj typy treści i taksonomie zarejestrowane za pomocą wtyczki „Custom " -"Post Type UI” i zarządzaj nimi w ACF-ie. Rozpocznij." - -#: includes/admin/admin.php:48 includes/admin/admin.php:267 -msgid "ACF" -msgstr "ACF" - -#: includes/admin/admin-internal-post-type.php:322 -msgid "taxonomy" -msgstr "taksonomia" - -#: includes/admin/admin-internal-post-type.php:322 -msgid "post type" -msgstr "typ treści" - -#: includes/admin/admin-internal-post-type.php:346 -msgid "Done" -msgstr "Gotowe" - -#: includes/admin/admin-internal-post-type.php:332 -msgid "Field Group(s)" -msgstr "Grupa(-y) pól" - -#: includes/admin/admin-internal-post-type.php:331 -msgid "Select one or many field groups..." -msgstr "Wybierz jedną lub klika grup pól…" - -#: includes/admin/admin-internal-post-type.php:330 -msgid "Please select the field groups to link." -msgstr "Proszę wybrać grupy pól do powiązania." - -#: includes/admin/admin-internal-post-type.php:288 -msgid "Field group linked successfully." -msgid_plural "Field groups linked successfully." -msgstr[0] "Grupa pól została powiązana." -msgstr[1] "Grupy pól zostały powiązane." -msgstr[2] "Grupy pól zostały powiązane." - -#: includes/admin/admin-internal-post-type-list.php:261 -#: includes/admin/post-types/admin-post-types.php:371 -#: includes/admin/post-types/admin-taxonomies.php:378 -msgctxt "post status" -msgid "Registration Failed" -msgstr "Rejestracja nieudana" - -#: includes/admin/admin-internal-post-type-list.php:260 -msgid "" -"This item could not be registered because its key is in use by another item " -"registered by another plugin or theme." -msgstr "" -"Nie można było zarejestrować tego elementu, ponieważ jego klucz jest już " -"używany przez inny element zarejestrowany przez inną wtyczkę lub motyw." - -#: includes/acf-internal-post-type-functions.php:482 -#: includes/acf-internal-post-type-functions.php:511 -msgid "REST API" -msgstr "REST API" - -#: includes/acf-internal-post-type-functions.php:481 -#: includes/acf-internal-post-type-functions.php:510 -#: includes/acf-internal-post-type-functions.php:537 -msgid "Permissions" -msgstr "Uprawnienia" - -#: includes/acf-internal-post-type-functions.php:480 -#: includes/acf-internal-post-type-functions.php:509 -msgid "URLs" -msgstr "Adresy URL" - -#: includes/acf-internal-post-type-functions.php:479 -#: includes/acf-internal-post-type-functions.php:508 -#: includes/acf-internal-post-type-functions.php:535 -msgid "Visibility" -msgstr "Widoczność" - -#: includes/acf-internal-post-type-functions.php:478 -#: includes/acf-internal-post-type-functions.php:507 -#: includes/acf-internal-post-type-functions.php:536 -msgid "Labels" -msgstr "Etykiety" - -#: includes/admin/post-types/admin-field-group.php:269 -msgid "Field Settings Tabs" -msgstr "Ustawienia pól w zakładkach" - -#. Author URI of the plugin -msgid "" -"https://wpengine.com/?utm_source=wordpress." -"org&utm_medium=referral&utm_campaign=plugin_directory&utm_content=advanced_custom_fields" -msgstr "" -"https://wpengine.com/?utm_source=wordpress." -"org&utm_medium=referral&utm_campaign=plugin_directory&utm_content=advanced_custom_fields" - -#: includes/api/api-template.php:867 -msgid "[ACF shortcode value disabled for preview]" -msgstr "[Wartość shortcode'u ACF-a wyłączona podczas podglądu]" - -#: includes/admin/admin-internal-post-type.php:298 -#: includes/admin/post-types/admin-field-group.php:571 -msgid "Close Modal" -msgstr "Zamknij okno" - -#: includes/admin/post-types/admin-field-group.php:96 -#: assets/build/js/acf-field-group.js:1670 -#: assets/build/js/acf-field-group.js:1993 -msgid "Field moved to other group" -msgstr "Pole zostało przeniesione do innej grupy" - -#: includes/admin/post-types/admin-field-group.php:95 -#: assets/build/js/acf.js:1437 assets/build/js/acf.js:1517 -msgid "Close modal" -msgstr "Zamknij okno" - -#: includes/fields/class-acf-field-tab.php:125 -msgid "Start a new group of tabs at this tab." -msgstr "Rozpocznij od tej zakładki nową grupę zakładek." - -#: includes/fields/class-acf-field-tab.php:124 -msgid "New Tab Group" -msgstr "Nowa grupa zakładek" - -#: includes/fields/class-acf-field-select.php:451 -#: includes/fields/class-acf-field-true_false.php:200 -msgid "Use a stylized checkbox using select2" -msgstr "Użyj ostylowanego pola select2" - -#: includes/fields/class-acf-field-radio.php:260 -msgid "Save Other Choice" -msgstr "Zapisz inny wybór" - -#: includes/fields/class-acf-field-radio.php:249 -msgid "Allow Other Choice" -msgstr "Zezwól na inny wybór" - -#: includes/fields/class-acf-field-checkbox.php:450 -msgid "Add Toggle All" -msgstr "Dodaj „Przełącz wszystko”" - -#: includes/fields/class-acf-field-checkbox.php:409 -msgid "Save Custom Values" -msgstr "Zapisz własne wartości" - -#: includes/fields/class-acf-field-checkbox.php:398 -msgid "Allow Custom Values" -msgstr "Zezwól na własne wartości" - -#: includes/fields/class-acf-field-checkbox.php:148 -msgid "Checkbox custom values cannot be empty. Uncheck any empty values." -msgstr "" -"Własne wartości pola zaznaczenia nie mogą być puste. Odznacz wszystkie puste " -"wartości." - -#: includes/admin/views/global/navigation.php:248 -msgid "Updates" -msgstr "Aktualizacje" - -#: includes/admin/views/global/navigation.php:176 -msgid "Advanced Custom Fields logo" -msgstr "Logo Advanced Custom Fields" - -#: includes/admin/views/global/form-top.php:89 -msgid "Save Changes" -msgstr "Zapisz zmiany" - -#: includes/admin/views/global/form-top.php:76 -msgid "Field Group Title" -msgstr "Tytuł grupy pól" - -#: includes/admin/views/acf-post-type/advanced-settings.php:704 -#: includes/admin/views/global/form-top.php:3 -msgid "Add title" -msgstr "Dodaj tytuł" - -#. translators: %s url to getting started guide -#: includes/admin/views/acf-field-group/list-empty.php:20 -#: includes/admin/views/acf-post-type/list-empty.php:12 -#: includes/admin/views/acf-taxonomy/list-empty.php:12 -#: includes/admin/views/options-page-preview.php:13 -msgid "" -"New to ACF? Take a look at our getting " -"started guide." -msgstr "" -"Nie znasz ACF-a? Zapoznaj się z naszym przewodnikiem jak zacząć." - -#: includes/admin/views/acf-field-group/list-empty.php:15 -msgid "Add Field Group" -msgstr "Dodaj grupę pól" - -#. translators: %s url to creating a field group page -#: includes/admin/views/acf-field-group/list-empty.php:10 -msgid "" -"ACF uses field groups to group custom " -"fields together, and then attach those fields to edit screens." -msgstr "" -"ACF używa grup pól do łączenia własnych " -"pól, a następnie dołączania tych pól do ekranów edycji." - -#: includes/admin/views/acf-field-group/list-empty.php:5 -msgid "Add Your First Field Group" -msgstr "Dodaj swoją pierwszą grupę pól" - -#: includes/admin/admin-options-pages-preview.php:28 -#: includes/admin/views/acf-field-group/pro-features.php:54 -#: includes/admin/views/global/navigation.php:86 -#: includes/admin/views/global/navigation.php:250 -msgid "Options Pages" -msgstr "Strony opcji" - -#: includes/admin/views/acf-field-group/pro-features.php:50 -msgid "ACF Blocks" -msgstr "Bloki ACF-a" - -#: includes/admin/views/acf-field-group/pro-features.php:58 -msgid "Gallery Field" -msgstr "Pole galerii" - -#: includes/admin/views/acf-field-group/pro-features.php:38 -msgid "Flexible Content Field" -msgstr "Pole elastycznej treści" - -#: includes/admin/views/acf-field-group/pro-features.php:42 -msgid "Repeater Field" -msgstr "Pole powtarzalne" - -#: includes/admin/views/global/navigation.php:212 -msgid "Unlock Extra Features with ACF PRO" -msgstr "Odblokuj dodatkowe funkcje przy pomocy ACF-a PRO" - -#: includes/admin/views/acf-field-group/options.php:267 -msgid "Delete Field Group" -msgstr "Usuń grupę pól" - -#. translators: 1: Post creation date 2: Post creation time -#: includes/admin/views/acf-field-group/options.php:261 -msgid "Created on %1$s at %2$s" -msgstr "Utworzono %1$s o %2$s" - -#: includes/acf-field-group-functions.php:497 -msgid "Group Settings" -msgstr "Ustawienia grupy" - -#: includes/acf-field-group-functions.php:495 -msgid "Location Rules" -msgstr "Reguły lokalizacji" - -#. translators: %s url to field types list -#: includes/admin/views/acf-field-group/fields.php:72 -msgid "" -"Choose from over 30 field types. Learn " -"more." -msgstr "" -"Wybierz spośród ponad 30 rodzajów pól. Dowiedz się więcej." - -#: includes/admin/views/acf-field-group/fields.php:65 -msgid "" -"Get started creating new custom fields for your posts, pages, custom post " -"types and other WordPress content." -msgstr "" -"Zacznij tworzyć nowe własne pola dla swoich wpisów, stron, własnych typów " -"treści i innych treści WordPressa." - -#: includes/admin/views/acf-field-group/fields.php:64 -msgid "Add Your First Field" -msgstr "Dodaj swoje pierwsze pole" - -#. translators: A symbol (or text, if not available in your locale) meaning -#. "Order Number", in terms of positional placement. -#: includes/admin/views/acf-field-group/fields.php:43 -msgid "#" -msgstr "#" - -#: includes/admin/views/acf-field-group/fields.php:33 -#: includes/admin/views/acf-field-group/fields.php:67 -#: includes/admin/views/acf-field-group/fields.php:103 -#: includes/admin/views/global/form-top.php:85 -msgid "Add Field" -msgstr "Dodaj pole" - -#: includes/acf-field-group-functions.php:496 includes/fields.php:410 -msgid "Presentation" -msgstr "Prezentacja" - -#: includes/fields.php:409 -msgid "Validation" -msgstr "Walidacja" - -#: includes/acf-internal-post-type-functions.php:477 -#: includes/acf-internal-post-type-functions.php:506 includes/fields.php:408 -msgid "General" -msgstr "Ogólne" - -#: includes/admin/tools/class-acf-admin-tool-import.php:70 -msgid "Import JSON" -msgstr "Importuj JSON" - -#: includes/admin/tools/class-acf-admin-tool-export.php:392 -msgid "Export As JSON" -msgstr "Eksportuj jako JSON" - -#. translators: %s number of field groups deactivated -#: includes/admin/post-types/admin-field-groups.php:367 -msgid "Field group deactivated." -msgid_plural "%s field groups deactivated." -msgstr[0] "Grupa pól została wyłączona." -msgstr[1] "%s grupy pól zostały wyłączone." -msgstr[2] "%s grup pól zostało wyłączonych." - -#. translators: %s number of field groups activated -#: includes/admin/post-types/admin-field-groups.php:360 -msgid "Field group activated." -msgid_plural "%s field groups activated." -msgstr[0] "Grupa pól została włączona." -msgstr[1] "%s grupy pól zostały włączone." -msgstr[2] "%s grup pól zostało włączonych." - -#: includes/admin/admin-internal-post-type-list.php:452 -#: includes/admin/admin-internal-post-type-list.php:478 -msgid "Deactivate" -msgstr "Wyłącz" - -#: includes/admin/admin-internal-post-type-list.php:452 -msgid "Deactivate this item" -msgstr "Wyłącz ten element" - -#: includes/admin/admin-internal-post-type-list.php:448 -#: includes/admin/admin-internal-post-type-list.php:477 -msgid "Activate" -msgstr "Włącz" - -#: includes/admin/admin-internal-post-type-list.php:448 -msgid "Activate this item" -msgstr "Włącz ten element" - -#: includes/admin/post-types/admin-field-group.php:92 -#: assets/build/js/acf-field-group.js:2812 -#: assets/build/js/acf-field-group.js:3313 -msgid "Move field group to trash?" -msgstr "Przenieść grupę pól do kosza?" - -#: acf.php:497 includes/admin/admin-internal-post-type-list.php:248 -#: includes/admin/post-types/admin-field-group.php:297 -#: includes/admin/post-types/admin-post-type.php:295 -#: includes/admin/post-types/admin-taxonomy.php:297 -msgctxt "post status" -msgid "Inactive" -msgstr "Wyłączone" - -#. Author of the plugin -msgid "WP Engine" -msgstr "WP Engine" - -#: acf.php:555 -msgid "" -"Advanced Custom Fields and Advanced Custom Fields PRO should not be active " -"at the same time. We've automatically deactivated Advanced Custom Fields PRO." -msgstr "" -"Wtyczki Advanced Custom Fields i Advanced Custom Fields PRO nie powinny być " -"włączone jednocześnie. Automatycznie wyłączyliśmy Advanced Custom Fields PRO." - -#: acf.php:553 -msgid "" -"Advanced Custom Fields and Advanced Custom Fields PRO should not be active " -"at the same time. We've automatically deactivated Advanced Custom Fields." -msgstr "" -"Wtyczki Advanced Custom Fields i Advanced Custom Fields PRO nie powinny być " -"włączone jednocześnie. Automatycznie wyłączyliśmy Advanced Custom Fields." - -#: includes/acf-value-functions.php:374 -msgid "" -"%1$s - We've detected one or more calls to retrieve ACF " -"field values before ACF has been initialized. This is not supported and can " -"result in malformed or missing data. Learn how to fix this." -msgstr "" -"%1$s - Wykryliśmy jedno lub kilka wywołań, które pobierają " -"wartości pól przez zainicjowaniem ACF-a. Nie są one obsłużone i może to " -"powodować nieprawidłowe lub brakujące dane. Dowiedz się, jak to naprawić." - -#: includes/fields/class-acf-field-user.php:551 -msgid "%1$s must have a user with the %2$s role." -msgid_plural "%1$s must have a user with one of the following roles: %2$s" -msgstr[0] "%1$s musi mieć użytkownika z rolą %2$s." -msgstr[1] "%1$s musi mieć użytkownika z jedną z następujących ról: %2$s" -msgstr[2] "%1$s musi mieć użytkownika z jedną z następujących ról: %2$s" - -#: includes/fields/class-acf-field-user.php:542 -msgid "%1$s must have a valid user ID." -msgstr "%1$s musi mieć prawidłowy identyfikator użytkownika." - -#: includes/fields/class-acf-field-user.php:380 -msgid "Invalid request." -msgstr "Nieprawidłowe żądanie." - -#: includes/fields/class-acf-field-select.php:684 -msgid "%1$s is not one of %2$s" -msgstr "%1$s nie zawiera się w %2$s" - -#: includes/fields/class-acf-field-post_object.php:700 -msgid "%1$s must have term %2$s." -msgid_plural "%1$s must have one of the following terms: %2$s" -msgstr[0] "%1$s musi należeć do taksonomii %2$s." -msgstr[1] "%1$s musi należeć do jednej z następujących taksonomii: %2$s" -msgstr[2] "%1$s musi należeć do jednej z następujących taksonomii: %2$s" - -#: includes/fields/class-acf-field-post_object.php:684 -msgid "%1$s must be of post type %2$s." -msgid_plural "%1$s must be of one of the following post types: %2$s" -msgstr[0] "%1$s musi należeć do typu treści %2$s." -msgstr[1] "%1$s musi należeć do jednego z następujących typów treści: %2$s" -msgstr[2] "%1$s musi należeć do jednego z następujących typów treści: %2$s" - -#: includes/fields/class-acf-field-post_object.php:675 -msgid "%1$s must have a valid post ID." -msgstr "%1$s musi mieć prawidłowy identyfikator wpisu." - -#: includes/fields/class-acf-field-file.php:475 -msgid "%s requires a valid attachment ID." -msgstr "%s wymaga prawidłowego identyfikatora załącznika." - -#: includes/admin/views/acf-field-group/options.php:233 -msgid "Show in REST API" -msgstr "Pokaż w REST API" - -#: includes/fields/class-acf-field-color_picker.php:168 -msgid "Enable Transparency" -msgstr "Włącz przezroczystość" - -#: includes/fields/class-acf-field-color_picker.php:187 -msgid "RGBA Array" -msgstr "Tablica RGBA" - -#: includes/fields/class-acf-field-color_picker.php:98 -msgid "RGBA String" -msgstr "Ciąg RGBA" - -#: includes/fields/class-acf-field-color_picker.php:97 -#: includes/fields/class-acf-field-color_picker.php:186 -msgid "Hex String" -msgstr "Ciąg Hex" - -#: includes/admin/views/browse-fields-modal.php:65 -msgid "Upgrade to PRO" -msgstr "Kup PRO" - -#: includes/admin/post-types/admin-field-group.php:297 -#: includes/admin/post-types/admin-post-type.php:295 -#: includes/admin/post-types/admin-taxonomy.php:297 -msgctxt "post status" -msgid "Active" -msgstr "Włączone" - -#: includes/fields/class-acf-field-email.php:181 -msgid "'%s' is not a valid email address" -msgstr "„%s” nie jest poprawnym adresem e-mail" - -#: includes/fields/class-acf-field-color_picker.php:76 -msgid "Color value" -msgstr "Kolor" - -#: includes/fields/class-acf-field-color_picker.php:74 -msgid "Select default color" -msgstr "Wybierz domyślny kolor" - -#: includes/fields/class-acf-field-color_picker.php:72 -msgid "Clear color" -msgstr "Wyczyść kolor" - -#: includes/acf-wp-functions.php:90 -msgid "Blocks" -msgstr "Bloki" - -#: includes/acf-wp-functions.php:86 -msgid "Options" -msgstr "Opcje" - -#: includes/acf-wp-functions.php:82 -msgid "Users" -msgstr "Użytkownicy" - -#: includes/acf-wp-functions.php:78 -msgid "Menu items" -msgstr "Elementy menu" - -#: includes/acf-wp-functions.php:70 -msgid "Widgets" -msgstr "Widżety" - -#: includes/acf-wp-functions.php:62 -msgid "Attachments" -msgstr "Załączniki" - -#: includes/acf-wp-functions.php:57 -#: includes/admin/post-types/admin-post-types.php:137 -#: includes/admin/post-types/admin-taxonomies.php:112 -#: includes/admin/tools/class-acf-admin-tool-import.php:93 -#: includes/admin/views/acf-post-type/basic-settings.php:86 -#: includes/post-types/class-acf-taxonomy.php:90 -#: includes/post-types/class-acf-taxonomy.php:91 -msgid "Taxonomies" -msgstr "Taksonomie" - -#: includes/acf-wp-functions.php:44 -#: includes/admin/post-types/admin-post-type.php:126 -#: includes/admin/post-types/admin-post-types.php:139 -#: includes/admin/views/acf-post-type/advanced-settings.php:106 -#: assets/build/js/acf-internal-post-type.js:173 -#: assets/build/js/acf-internal-post-type.js:247 -msgid "Posts" -msgstr "Wpisy" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:76 -msgid "Last updated: %s" -msgstr "Ostatnia aktualizacja: %s" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:70 -msgid "Sorry, this post is unavailable for diff comparison." -msgstr "Przepraszamy, ten wpis jest niedostępny dla porównania różnic." - -#: includes/ajax/class-acf-ajax-local-json-diff.php:42 -msgid "Invalid field group parameter(s)." -msgstr "Nieprawidłowy parametr(y) grupy pól." - -#: includes/admin/admin-internal-post-type-list.php:413 -msgid "Awaiting save" -msgstr "Oczekiwanie na zapis" - -#: includes/admin/admin-internal-post-type-list.php:410 -msgid "Saved" -msgstr "Zapisana" - -#: includes/admin/admin-internal-post-type-list.php:406 -#: includes/admin/tools/class-acf-admin-tool-import.php:49 -msgid "Import" -msgstr "Importuj" - -#: includes/admin/admin-internal-post-type-list.php:402 -msgid "Review changes" -msgstr "Przejrzyj zmiany" - -#: includes/admin/admin-internal-post-type-list.php:378 -msgid "Located in: %s" -msgstr "Znajduje się w: %s" - -#: includes/admin/admin-internal-post-type-list.php:375 -msgid "Located in plugin: %s" -msgstr "Znalezione we wtyczce: %s" - -#: includes/admin/admin-internal-post-type-list.php:372 -msgid "Located in theme: %s" -msgstr "Znalezione w motywie: %s" - -#: includes/admin/post-types/admin-field-groups.php:261 -msgid "Various" -msgstr "Różne" - -#: includes/admin/admin-internal-post-type-list.php:216 -#: includes/admin/admin-internal-post-type-list.php:485 -msgid "Sync changes" -msgstr "Synchronizuj zmiany" - -#: includes/admin/admin-internal-post-type-list.php:215 -msgid "Loading diff" -msgstr "Ładowanie różnic" - -#: includes/admin/admin-internal-post-type-list.php:214 -msgid "Review local JSON changes" -msgstr "Przegląd lokalnych zmian JSON" - -#: includes/admin/admin.php:170 -msgid "Visit website" -msgstr "Odwiedź stronę" - -#: includes/admin/admin.php:169 -msgid "View details" -msgstr "Zobacz szczegóły" - -#: includes/admin/admin.php:168 -msgid "Version %s" -msgstr "Wersja %s" - -#: includes/admin/admin.php:167 -msgid "Information" -msgstr "Informacje" - -#: includes/admin/admin.php:158 -msgid "" -"Help Desk. The support professionals on " -"our Help Desk will assist with your more in depth, technical challenges." -msgstr "" -"Pomoc. Nasi pracownicy pomocy " -"technicznej pomogą w bardziej dogłębnych wyzwaniach technicznych." - -#: includes/admin/admin.php:154 -msgid "" -"Discussions. We have an active and " -"friendly community on our Community Forums who may be able to help you " -"figure out the 'how-tos' of the ACF world." -msgstr "" -"Dyskusje. Mamy aktywną i przyjazną " -"społeczność na naszych forach społecznościowych, która pomoże Ci poznać " -"tajniki świata ACF-a." - -#: includes/admin/admin.php:150 -msgid "" -"Documentation. Our extensive " -"documentation contains references and guides for most situations you may " -"encounter." -msgstr "" -"Dokumentacja. Nasza obszerna " -"dokumentacja zawiera opisy i przewodniki dotyczące większości sytuacji, " -"które możesz napotkać." - -#: includes/admin/admin.php:147 -msgid "" -"We are fanatical about support, and want you to get the best out of your " -"website with ACF. If you run into any difficulties, there are several places " -"you can find help:" -msgstr "" -"Jesteśmy fanatyczni, jeśli chodzi o wsparcie i chcemy, abyś w pełni " -"wykorzystał swoją stronę internetową dzięki ACF-owi. Jeśli napotkasz " -"jakiekolwiek trudności, jest kilka miejsc, w których możesz znaleźć pomoc:" - -#: includes/admin/admin.php:144 includes/admin/admin.php:146 -msgid "Help & Support" -msgstr "Pomoc i wsparcie" - -#: includes/admin/admin.php:135 -msgid "" -"Please use the Help & Support tab to get in touch should you find yourself " -"requiring assistance." -msgstr "" -"Skorzystaj z zakładki Pomoc i wsparcie, aby skontaktować się, jeśli " -"potrzebujesz pomocy." - -#: includes/admin/admin.php:132 -msgid "" -"Before creating your first Field Group, we recommend first reading our Getting started guide to familiarize " -"yourself with the plugin's philosophy and best practises." -msgstr "" -"Przed utworzeniem pierwszej grupy pól zalecamy najpierw przeczytanie naszego " -"przewodnika Pierwsze kroki, aby " -"zapoznać się z filozofią wtyczki i sprawdzonymi metodami." - -#: includes/admin/admin.php:130 -msgid "" -"The Advanced Custom Fields plugin provides a visual form builder to " -"customize WordPress edit screens with extra fields, and an intuitive API to " -"display custom field values in any theme template file." -msgstr "" -"Wtyczka Advanced Custom Fields zapewnia wizualny kreator formularzy do " -"dostosowywania ekranów edycji WordPress z dodatkowymi polami oraz intuicyjny " -"interfejs API do wyświetlania niestandardowych wartości pól w dowolnym pliku " -"szablonu motywu." - -#: includes/admin/admin.php:127 includes/admin/admin.php:129 -msgid "Overview" -msgstr "Przegląd" - -#: includes/locations.php:36 -msgid "Location type \"%s\" is already registered." -msgstr "Typ lokalizacji „%s” jest już zarejestrowany." - -#: includes/locations.php:25 -msgid "Class \"%s\" does not exist." -msgstr "Klasa „%s” nie istnieje." - -#: includes/ajax/class-acf-ajax.php:157 -msgid "Invalid nonce." -msgstr "Nieprawidłowy identyfikator jednorazowy." - -#: includes/fields/class-acf-field-user.php:375 -msgid "Error loading field." -msgstr "Błąd ładowania pola." - -#: assets/build/js/acf-input.js:2750 assets/build/js/acf-input.js:2819 -#: assets/build/js/acf-input.js:2926 assets/build/js/acf-input.js:3000 -msgid "Location not found: %s" -msgstr "Nie znaleziono lokalizacji: %s" - -#: includes/forms/form-user.php:353 -msgid "Error: %s" -msgstr "Błąd: %s" - -#: includes/locations/class-acf-location-widget.php:22 -msgid "Widget" -msgstr "Widżet" - -#: includes/locations/class-acf-location-user-role.php:24 -msgid "User Role" -msgstr "Rola użytkownika" - -#: includes/locations/class-acf-location-comment.php:22 -msgid "Comment" -msgstr "Komentarz" - -#: includes/locations/class-acf-location-post-format.php:22 -msgid "Post Format" -msgstr "Format wpisu" - -#: includes/locations/class-acf-location-nav-menu-item.php:22 -msgid "Menu Item" -msgstr "Element menu" - -#: includes/locations/class-acf-location-post-status.php:22 -msgid "Post Status" -msgstr "Status wpisu" - -#: includes/acf-wp-functions.php:74 -#: includes/locations/class-acf-location-nav-menu.php:89 -msgid "Menus" -msgstr "Menu" - -#: includes/locations/class-acf-location-nav-menu.php:80 -msgid "Menu Locations" -msgstr "Położenia menu" - -#: includes/locations/class-acf-location-nav-menu.php:22 -msgid "Menu" -msgstr "Menu" - -#: includes/locations/class-acf-location-post-taxonomy.php:22 -msgid "Post Taxonomy" -msgstr "Taksonomia wpisu" - -#: includes/locations/class-acf-location-page-type.php:114 -msgid "Child Page (has parent)" -msgstr "Strona potomna (ma stronę nadrzędną)" - -#: includes/locations/class-acf-location-page-type.php:113 -msgid "Parent Page (has children)" -msgstr "Strona nadrzędna (ma strony potomne)" - -#: includes/locations/class-acf-location-page-type.php:112 -msgid "Top Level Page (no parent)" -msgstr "Strona najwyższego poziomu (bez strony nadrzędnej)" - -#: includes/locations/class-acf-location-page-type.php:111 -msgid "Posts Page" -msgstr "Strona z wpisami" - -#: includes/locations/class-acf-location-page-type.php:110 -msgid "Front Page" -msgstr "Strona główna" - -#: includes/locations/class-acf-location-page-type.php:22 -msgid "Page Type" -msgstr "Typ strony" - -#: includes/locations/class-acf-location-current-user.php:73 -msgid "Viewing back end" -msgstr "Wyświetla kokpit administratora" - -#: includes/locations/class-acf-location-current-user.php:72 -msgid "Viewing front end" -msgstr "Wyświetla witrynę" - -#: includes/locations/class-acf-location-current-user.php:71 -msgid "Logged in" -msgstr "Zalogowany" - -#: includes/locations/class-acf-location-current-user.php:22 -msgid "Current User" -msgstr "Bieżący użytkownik" - -#: includes/locations/class-acf-location-page-template.php:22 -msgid "Page Template" -msgstr "Szablon strony" - -#: includes/locations/class-acf-location-user-form.php:74 -msgid "Register" -msgstr "Zarejestruj się" - -#: includes/locations/class-acf-location-user-form.php:73 -msgid "Add / Edit" -msgstr "Dodaj / Edytuj" - -#: includes/locations/class-acf-location-user-form.php:22 -msgid "User Form" -msgstr "Formularz użytkownika" - -#: includes/locations/class-acf-location-page-parent.php:22 -msgid "Page Parent" -msgstr "Strona nadrzędna" - -#: includes/locations/class-acf-location-current-user-role.php:77 -msgid "Super Admin" -msgstr "Superadministrator" - -#: includes/locations/class-acf-location-current-user-role.php:22 -msgid "Current User Role" -msgstr "Rola bieżącego użytkownika" - -#: includes/locations/class-acf-location-page-template.php:73 -#: includes/locations/class-acf-location-post-template.php:85 -msgid "Default Template" -msgstr "Domyślny szablon" - -#: includes/locations/class-acf-location-post-template.php:22 -msgid "Post Template" -msgstr "Szablon wpisu" - -#: includes/locations/class-acf-location-post-category.php:22 -msgid "Post Category" -msgstr "Kategoria wpisu" - -#: includes/locations/class-acf-location-attachment.php:84 -msgid "All %s formats" -msgstr "Wszystkie formaty %s" - -#: includes/locations/class-acf-location-attachment.php:22 -msgid "Attachment" -msgstr "Załącznik" - -#: includes/validation.php:366 -msgid "%s value is required" -msgstr "%s wartość jest wymagana" - -#: includes/admin/views/acf-field-group/conditional-logic.php:59 -msgid "Show this field if" -msgstr "Pokaż to pole jeśli" - -#: includes/admin/views/acf-field-group/conditional-logic.php:26 -#: includes/admin/views/acf-field-group/field.php:109 includes/fields.php:411 -msgid "Conditional Logic" -msgstr "Wyświetlanie warunkowe" - -#: includes/admin/views/acf-field-group/conditional-logic.php:156 -#: includes/admin/views/acf-field-group/location-rule.php:92 -msgid "and" -msgstr "oraz" - -#: includes/admin/post-types/admin-field-groups.php:123 -#: includes/admin/post-types/admin-post-types.php:143 -#: includes/admin/post-types/admin-taxonomies.php:143 -msgid "Local JSON" -msgstr "Lokalny JSON" - -#: includes/admin/views/acf-field-group/pro-features.php:46 -msgid "Clone Field" -msgstr "Pole klona" - -#: includes/admin/views/upgrade/notice.php:30 -msgid "" -"Please also check all premium add-ons (%s) are updated to the latest version." -msgstr "" -"Proszę również sprawdzić, czy wszystkie dodatki premium (%s) są " -"zaktualizowane do najnowszej wersji." - -#: includes/admin/views/upgrade/notice.php:28 -msgid "" -"This version contains improvements to your database and requires an upgrade." -msgstr "Ta wersja zawiera ulepszenia bazy danych i wymaga uaktualnienia." - -#: includes/admin/views/upgrade/notice.php:28 -msgid "Thank you for updating to %1$s v%2$s!" -msgstr "Dziękujemy za aktualizację %1$s do wersji %2$s!" - -#: includes/admin/views/upgrade/notice.php:27 -msgid "Database Upgrade Required" -msgstr "Wymagana jest aktualizacja bazy danych" - -#: includes/admin/post-types/admin-field-group.php:141 -#: includes/admin/views/upgrade/notice.php:18 -msgid "Options Page" -msgstr "Strona opcji" - -#: includes/admin/views/upgrade/notice.php:15 includes/fields.php:462 -msgid "Gallery" -msgstr "Galeria" - -#: includes/admin/views/upgrade/notice.php:12 includes/fields.php:452 -msgid "Flexible Content" -msgstr "Elastyczna treść" - -#: includes/admin/views/upgrade/notice.php:9 includes/fields.php:472 -msgid "Repeater" -msgstr "Pole powtarzalne" - -#: includes/admin/views/tools/tools.php:24 -msgid "Back to all tools" -msgstr "Wróć do wszystkich narzędzi" - -#: includes/admin/views/acf-field-group/options.php:195 -msgid "" -"If multiple field groups appear on an edit screen, the first field group's " -"options will be used (the one with the lowest order number)" -msgstr "" -"Jeśli na stronie edycji znajduje się kilka grup pól, zostaną zastosowane " -"ustawienia pierwszej z nich. (pierwsza grupa pól to ta, która ma najniższy " -"numer w kolejności)" - -#: includes/admin/views/acf-field-group/options.php:195 -msgid "Select items to hide them from the edit screen." -msgstr "Wybierz elementy, które chcesz ukryć na stronie edycji." - -#: includes/admin/views/acf-field-group/options.php:194 -msgid "Hide on screen" -msgstr "Ukryj na ekranie" - -#: includes/admin/views/acf-field-group/options.php:186 -msgid "Send Trackbacks" -msgstr "Wyślij trackbacki" - -#: includes/admin/post-types/admin-taxonomy.php:128 -#: includes/admin/views/acf-field-group/options.php:185 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:159 -#: assets/build/js/acf-internal-post-type.js:180 -#: assets/build/js/acf-internal-post-type.js:254 -msgid "Tags" -msgstr "Tagi" - -#: includes/admin/post-types/admin-taxonomy.php:130 -#: includes/admin/views/acf-field-group/options.php:184 -#: assets/build/js/acf-internal-post-type.js:183 -#: assets/build/js/acf-internal-post-type.js:257 -msgid "Categories" -msgstr "Kategorie" - -#: includes/admin/views/acf-field-group/options.php:182 -#: includes/admin/views/acf-post-type/advanced-settings.php:28 -msgid "Page Attributes" -msgstr "Atrybuty strony" - -#: includes/admin/views/acf-field-group/options.php:181 -msgid "Format" -msgstr "Format" - -#: includes/admin/views/acf-field-group/options.php:180 -#: includes/admin/views/acf-post-type/advanced-settings.php:22 -msgid "Author" -msgstr "Autor" - -#: includes/admin/views/acf-field-group/options.php:179 -msgid "Slug" -msgstr "Uproszczona nazwa" - -#: includes/admin/views/acf-field-group/options.php:178 -#: includes/admin/views/acf-post-type/advanced-settings.php:27 -msgid "Revisions" -msgstr "Wersje" - -#: includes/acf-wp-functions.php:66 -#: includes/admin/views/acf-field-group/options.php:177 -#: includes/admin/views/acf-post-type/advanced-settings.php:23 -msgid "Comments" -msgstr "Komentarze" - -#: includes/admin/views/acf-field-group/options.php:176 -msgid "Discussion" -msgstr "Dyskusja" - -#: includes/admin/views/acf-field-group/options.php:174 -#: includes/admin/views/acf-post-type/advanced-settings.php:26 -msgid "Excerpt" -msgstr "Zajawka" - -#: includes/admin/views/acf-field-group/options.php:173 -msgid "Content Editor" -msgstr "Edytor treści" - -#: includes/admin/views/acf-field-group/options.php:172 -msgid "Permalink" -msgstr "Bezpośredni odnośnik" - -#: includes/admin/views/acf-field-group/options.php:250 -msgid "Shown in field group list" -msgstr "Wyświetlany na liście grup pól" - -#: includes/admin/views/acf-field-group/options.php:157 -msgid "Field groups with a lower order will appear first" -msgstr "Grupy pól z niższym numerem pojawią się pierwsze" - -#: includes/admin/views/acf-field-group/options.php:156 -msgid "Order No." -msgstr "Nr w kolejności." - -#: includes/admin/views/acf-field-group/options.php:147 -msgid "Below fields" -msgstr "Pod polami" - -#: includes/admin/views/acf-field-group/options.php:146 -msgid "Below labels" -msgstr "Pod etykietami" - -#: includes/admin/views/acf-field-group/options.php:139 -msgid "Instruction Placement" -msgstr "Położenie instrukcji" - -#: includes/admin/views/acf-field-group/options.php:122 -msgid "Label Placement" -msgstr "Położenie etykiety" - -#: includes/admin/views/acf-field-group/options.php:110 -msgid "Side" -msgstr "Boczna" - -#: includes/admin/views/acf-field-group/options.php:109 -msgid "Normal (after content)" -msgstr "Normalna (pod treścią)" - -#: includes/admin/views/acf-field-group/options.php:108 -msgid "High (after title)" -msgstr "Wysoka (pod tytułem)" - -#: includes/admin/views/acf-field-group/options.php:101 -msgid "Position" -msgstr "Pozycja" - -#: includes/admin/views/acf-field-group/options.php:92 -msgid "Seamless (no metabox)" -msgstr "Bezpodziałowy (brak metaboksa)" - -#: includes/admin/views/acf-field-group/options.php:91 -msgid "Standard (WP metabox)" -msgstr "Standardowy (metabox WP)" - -#: includes/admin/views/acf-field-group/options.php:84 -msgid "Style" -msgstr "Styl" - -#: includes/admin/views/acf-field-group/fields.php:55 -msgid "Type" -msgstr "Rodzaj" - -#: includes/admin/post-types/admin-field-groups.php:117 -#: includes/admin/post-types/admin-post-types.php:136 -#: includes/admin/post-types/admin-taxonomies.php:136 -#: includes/admin/views/acf-field-group/fields.php:54 -msgid "Key" -msgstr "Klucz" - -#. translators: Hidden accessibility text for the positional order number of -#. the field. -#: includes/admin/views/acf-field-group/fields.php:48 -msgid "Order" -msgstr "Kolejność" - -#: includes/admin/views/acf-field-group/field.php:322 -msgid "Close Field" -msgstr "Zamknij pole" - -#: includes/admin/views/acf-field-group/field.php:253 -msgid "id" -msgstr "id" - -#: includes/admin/views/acf-field-group/field.php:237 -msgid "class" -msgstr "class" - -#: includes/admin/views/acf-field-group/field.php:279 -msgid "width" -msgstr "szerokość" - -#: includes/admin/views/acf-field-group/field.php:273 -msgid "Wrapper Attributes" -msgstr "Atrybuty kontenera" - -#: includes/admin/views/acf-field-group/field.php:196 -msgid "Required" -msgstr "Wymagane" - -#: includes/admin/views/acf-field-group/field.php:221 -msgid "Instructions for authors. Shown when submitting data" -msgstr "Instrukcje dla autorów. Będą widoczne w trakcie wprowadzania danych" - -#: includes/admin/views/acf-field-group/field.php:220 -msgid "Instructions" -msgstr "Instrukcje" - -#: includes/admin/views/acf-field-group/field.php:129 -msgid "Field Type" -msgstr "Rodzaj pola" - -#: includes/admin/views/acf-field-group/field.php:170 -msgid "Single word, no spaces. Underscores and dashes allowed" -msgstr "Pojedyncze słowo, bez spacji. Dozwolone są myślniki i podkreślniki" - -#: includes/admin/views/acf-field-group/field.php:169 -msgid "Field Name" -msgstr "Nazwa pola" - -#: includes/admin/views/acf-field-group/field.php:157 -msgid "This is the name which will appear on the EDIT page" -msgstr "Ta nazwa będzie widoczna na stronie edycji" - -#: includes/admin/views/acf-field-group/field.php:156 -#: includes/admin/views/browse-fields-modal.php:59 -msgid "Field Label" -msgstr "Etykieta pola" - -#: includes/admin/views/acf-field-group/field.php:81 -msgid "Delete" -msgstr "Usuń" - -#: includes/admin/views/acf-field-group/field.php:81 -msgid "Delete field" -msgstr "Usuń pole" - -#: includes/admin/views/acf-field-group/field.php:79 -msgid "Move" -msgstr "Przenieś" - -#: includes/admin/views/acf-field-group/field.php:79 -msgid "Move field to another group" -msgstr "Przenieś pole do innej grupy" - -#: includes/admin/views/acf-field-group/field.php:77 -msgid "Duplicate field" -msgstr "Duplikuj to pole" - -#: includes/admin/views/acf-field-group/field.php:73 -#: includes/admin/views/acf-field-group/field.php:76 -msgid "Edit field" -msgstr "Edytuj pole" - -#: includes/admin/views/acf-field-group/field.php:69 -msgid "Drag to reorder" -msgstr "Przeciągnij aby zmienić kolejność" - -#: includes/admin/post-types/admin-field-group.php:103 -#: includes/admin/views/acf-field-group/location-group.php:3 -#: assets/build/js/acf-field-group.js:2347 -#: assets/build/js/acf-field-group.js:2763 -msgid "Show this field group if" -msgstr "Pokaż tę grupę pól jeśli" - -#: includes/admin/views/upgrade/upgrade.php:94 -#: includes/ajax/class-acf-ajax-upgrade.php:34 -msgid "No updates available." -msgstr "Brak dostępnych aktualizacji." - -#: includes/admin/views/upgrade/upgrade.php:33 -msgid "Database upgrade complete. See what's new" -msgstr "" -"Aktualizacja bazy danych zakończona. Zobacz co nowego" - -#: includes/admin/views/upgrade/upgrade.php:30 -msgid "Reading upgrade tasks..." -msgstr "Czytam zadania aktualizacji…" - -#: includes/admin/views/upgrade/network.php:165 -#: includes/admin/views/upgrade/upgrade.php:65 -msgid "Upgrade failed." -msgstr "Aktualizacja nie powiodła się." - -#: includes/admin/views/upgrade/network.php:162 -msgid "Upgrade complete." -msgstr "Aktualizacja zakończona." - -#: includes/admin/views/upgrade/network.php:148 -#: includes/admin/views/upgrade/upgrade.php:31 -msgid "Upgrading data to version %s" -msgstr "Aktualizowanie danych do wersji %s" - -#: includes/admin/views/upgrade/network.php:121 -#: includes/admin/views/upgrade/notice.php:44 -msgid "" -"It is strongly recommended that you backup your database before proceeding. " -"Are you sure you wish to run the updater now?" -msgstr "" -"Zdecydowanie zaleca się wykonanie kopii zapasowej bazy danych przed " -"kontynuowaniem. Czy na pewno chcesz teraz uruchomić aktualizacje?" - -#: includes/admin/views/upgrade/network.php:117 -msgid "Please select at least one site to upgrade." -msgstr "Proszę wybrać co najmniej jedną witrynę do uaktualnienia." - -#: includes/admin/views/upgrade/network.php:97 -msgid "" -"Database Upgrade complete. Return to network dashboard" -msgstr "" -"Aktualizacja bazy danych zakończona. Wróć do kokpitu sieci" - -#: includes/admin/views/upgrade/network.php:80 -msgid "Site is up to date" -msgstr "Oprogramowanie witryny jest aktualne" - -#: includes/admin/views/upgrade/network.php:78 -msgid "Site requires database upgrade from %1$s to %2$s" -msgstr "Witryna wymaga aktualizacji bazy danych z %1$s do %2$s" - -#: includes/admin/views/upgrade/network.php:36 -#: includes/admin/views/upgrade/network.php:47 -msgid "Site" -msgstr "Witryna" - -#: includes/admin/views/upgrade/network.php:26 -#: includes/admin/views/upgrade/network.php:27 -#: includes/admin/views/upgrade/network.php:96 -msgid "Upgrade Sites" -msgstr "Zaktualizuj witryny" - -#: includes/admin/views/upgrade/network.php:26 -msgid "" -"The following sites require a DB upgrade. Check the ones you want to update " -"and then click %s." -msgstr "" -"Następujące witryny wymagają aktualizacji bazy danych. Zaznacz te, które " -"chcesz zaktualizować i kliknij %s." - -#: includes/admin/views/acf-field-group/conditional-logic.php:171 -#: includes/admin/views/acf-field-group/locations.php:38 -msgid "Add rule group" -msgstr "Dodaj grupę warunków" - -#: includes/admin/views/acf-field-group/locations.php:10 -msgid "" -"Create a set of rules to determine which edit screens will use these " -"advanced custom fields" -msgstr "" -"Utwórz zestaw warunków, które określą w których miejscach będą wykorzystane " -"zdefiniowane tutaj własne pola" - -#: includes/admin/views/acf-field-group/locations.php:9 -msgid "Rules" -msgstr "Reguły" - -#: includes/admin/tools/class-acf-admin-tool-export.php:510 -msgid "Copied" -msgstr "Skopiowano" - -#: includes/admin/tools/class-acf-admin-tool-export.php:486 -msgid "Copy to clipboard" -msgstr "Skopiuj do schowka" - -#: includes/admin/tools/class-acf-admin-tool-export.php:385 -msgid "" -"Select the items you would like to export and then select your export " -"method. Export As JSON to export to a .json file which you can then import " -"to another ACF installation. Generate PHP to export to PHP code which you " -"can place in your theme." -msgstr "" -"Wybierz elementy, które chcesz wyeksportować, a następnie wybierz metodę " -"eksportu. Użyj „Eksportuj jako JSON” aby wyeksportować do pliku .json, który " -"można następnie zaimportować do innej instalacji ACF. Użyj „Utwórz PHP” do " -"wyeksportowania ustawień do kodu PHP, który można umieścić w motywie." - -#: includes/admin/tools/class-acf-admin-tool-export.php:233 -msgid "Select Field Groups" -msgstr "Wybierz grupy pól" - -#: includes/admin/tools/class-acf-admin-tool-export.php:96 -#: includes/admin/tools/class-acf-admin-tool-export.php:131 -msgid "No field groups selected" -msgstr "Nie zaznaczono żadnej grupy pól" - -#: includes/admin/tools/class-acf-admin-tool-export.php:39 -#: includes/admin/tools/class-acf-admin-tool-export.php:393 -#: includes/admin/tools/class-acf-admin-tool-export.php:421 -msgid "Generate PHP" -msgstr "Utwórz PHP" - -#: includes/admin/tools/class-acf-admin-tool-export.php:35 -msgid "Export Field Groups" -msgstr "Eksportuj grupy pól" - -#: includes/admin/tools/class-acf-admin-tool-import.php:177 -msgid "Import file empty" -msgstr "Importowany plik jest pusty" - -#: includes/admin/tools/class-acf-admin-tool-import.php:168 -msgid "Incorrect file type" -msgstr "Błędny typ pliku" - -#: includes/admin/tools/class-acf-admin-tool-import.php:163 -msgid "Error uploading file. Please try again" -msgstr "Błąd przesyłania pliku. Proszę spróbować ponownie" - -#: includes/admin/tools/class-acf-admin-tool-import.php:50 -msgid "" -"Select the Advanced Custom Fields JSON file you would like to import. When " -"you click the import button below, ACF will import the items in that file." -msgstr "" -"Wybierz plik JSON Advanced Custom Fields, który chcesz zaimportować. Po " -"kliknięciu przycisku importu poniżej, ACF zaimportuje elementy z tego pliku." - -#: includes/admin/tools/class-acf-admin-tool-import.php:27 -msgid "Import Field Groups" -msgstr "Importuj grupy pól" - -#: includes/admin/admin-internal-post-type-list.php:401 -msgid "Sync" -msgstr "Synchronizuj" - -#: includes/admin/admin-internal-post-type-list.php:858 -msgid "Select %s" -msgstr "Wybierz %s" - -#: includes/admin/admin-internal-post-type-list.php:442 -#: includes/admin/admin-internal-post-type-list.php:474 -#: includes/admin/views/acf-field-group/field.php:77 -msgid "Duplicate" -msgstr "Duplikuj" - -#: includes/admin/admin-internal-post-type-list.php:442 -msgid "Duplicate this item" -msgstr "Duplikuj ten element" - -#: includes/admin/views/acf-post-type/advanced-settings.php:41 -msgid "Supports" -msgstr "Obsługuje" - -#: includes/admin/admin.php:261 includes/admin/views/browse-fields-modal.php:92 -msgid "Documentation" -msgstr "Dokumentacja" - -#: includes/admin/post-types/admin-field-groups.php:116 -#: includes/admin/post-types/admin-post-types.php:135 -#: includes/admin/post-types/admin-taxonomies.php:135 -#: includes/admin/views/acf-field-group/options.php:249 -#: includes/admin/views/acf-post-type/advanced-settings.php:62 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:114 -#: includes/admin/views/upgrade/network.php:38 -#: includes/admin/views/upgrade/network.php:49 -msgid "Description" -msgstr "Opis" - -#: includes/admin/admin-internal-post-type-list.php:398 -#: includes/admin/admin-internal-post-type-list.php:747 -msgid "Sync available" -msgstr "Synchronizacja jest dostępna" - -#. translators: %s number of field groups synchronized -#: includes/admin/post-types/admin-field-groups.php:381 -msgid "Field group synchronized." -msgid_plural "%s field groups synchronized." -msgstr[0] "Grupa pól została zsynchronizowana." -msgstr[1] "%s grupy pól zostały zsynchronizowane." -msgstr[2] "%s grup pól zostało zsynchronizowanych." - -#. translators: %s number of field groups duplicated -#: includes/admin/post-types/admin-field-groups.php:374 -msgid "Field group duplicated." -msgid_plural "%s field groups duplicated." -msgstr[0] "Grupa pól została zduplikowana." -msgstr[1] "%s grupy pól zostały zduplikowane." -msgstr[2] "%s grup pól zostało zduplikowanych." - -#: includes/admin/admin-internal-post-type-list.php:137 -msgid "Active (%s)" -msgid_plural "Active (%s)" -msgstr[0] "Włączone (%s)" -msgstr[1] "Włączone (%s)" -msgstr[2] "Włączone (%s)" - -#: includes/admin/admin-upgrade.php:254 -msgid "Review sites & upgrade" -msgstr "Strona opinii i aktualizacji" - -#: includes/admin/admin-upgrade.php:59 includes/admin/admin-upgrade.php:93 -#: includes/admin/admin-upgrade.php:94 includes/admin/admin-upgrade.php:230 -#: includes/admin/views/upgrade/network.php:24 -#: includes/admin/views/upgrade/upgrade.php:26 -msgid "Upgrade Database" -msgstr "Aktualizuj bazę danych" - -#: includes/admin/views/acf-field-group/options.php:175 -#: includes/admin/views/acf-post-type/advanced-settings.php:30 -msgid "Custom Fields" -msgstr "Własne pola" - -#: includes/admin/post-types/admin-field-group.php:616 -msgid "Move Field" -msgstr "Przenieś pole" - -#: includes/admin/post-types/admin-field-group.php:605 -#: includes/admin/post-types/admin-field-group.php:609 -msgid "Please select the destination for this field" -msgstr "Proszę wybrać miejsce przeznaczenia dla tego pola" - -#. translators: Confirmation message once a field has been moved to a different -#. field group. -#: includes/admin/post-types/admin-field-group.php:567 -msgid "The %1$s field can now be found in the %2$s field group" -msgstr "Pole %1$s znajduje się teraz w grupie pól %2$s" - -#: includes/admin/post-types/admin-field-group.php:564 -msgid "Move Complete." -msgstr "Przenoszenie zakończone." - -#: includes/admin/views/acf-field-group/field.php:39 -#: includes/admin/views/acf-field-group/options.php:217 -#: includes/admin/views/acf-post-type/advanced-settings.php:78 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:130 -msgid "Active" -msgstr "Włączone" - -#: includes/admin/post-types/admin-field-group.php:266 -msgid "Field Keys" -msgstr "Klucze pola" - -#: includes/admin/post-types/admin-field-group.php:164 -#: includes/admin/tools/class-acf-admin-tool-export.php:342 -msgid "Settings" -msgstr "Ustawienia" - -#: includes/admin/post-types/admin-field-groups.php:118 -msgid "Location" -msgstr "Lokalizacja" - -#: includes/admin/post-types/admin-field-group.php:104 -#: assets/build/js/acf-input.js:983 assets/build/js/acf-input.js:1075 -msgid "Null" -msgstr "Pusty" - -#: includes/admin/post-types/admin-field-group.php:101 -#: includes/class-acf-internal-post-type.php:730 -#: includes/post-types/class-acf-field-group.php:345 -#: assets/build/js/acf-field-group.js:1510 -#: assets/build/js/acf-field-group.js:1821 -msgid "copy" -msgstr "kopia" - -#: includes/admin/post-types/admin-field-group.php:100 -#: assets/build/js/acf-field-group.js:623 -#: assets/build/js/acf-field-group.js:778 -msgid "(this field)" -msgstr "(to pole)" - -#: includes/admin/post-types/admin-field-group.php:98 -#: assets/build/js/acf-input.js:918 assets/build/js/acf-input.js:943 -#: assets/build/js/acf-input.js:1002 assets/build/js/acf-input.js:1030 -msgid "Checked" -msgstr "Zaznaczone" - -#: includes/admin/post-types/admin-field-group.php:94 -#: assets/build/js/acf-field-group.js:1615 -#: assets/build/js/acf-field-group.js:1933 -msgid "Move Custom Field" -msgstr "Przenieś pole" - -#: includes/admin/post-types/admin-field-group.php:93 -#: assets/build/js/acf-field-group.js:649 -#: assets/build/js/acf-field-group.js:804 -msgid "No toggle fields available" -msgstr "Brak dostępnych pól" - -#: includes/admin/post-types/admin-field-group.php:91 -msgid "Field group title is required" -msgstr "Tytuł grupy pól jest wymagany" - -#: includes/admin/post-types/admin-field-group.php:90 -#: assets/build/js/acf-field-group.js:1604 -#: assets/build/js/acf-field-group.js:1919 -msgid "This field cannot be moved until its changes have been saved" -msgstr "To pole nie może zostać przeniesione zanim zmiany nie zostaną zapisane" - -#: includes/admin/post-types/admin-field-group.php:89 -#: assets/build/js/acf-field-group.js:1414 -#: assets/build/js/acf-field-group.js:1716 -msgid "The string \"field_\" may not be used at the start of a field name" -msgstr "Ciąg znaków „field_” nie może zostać użyty na początku nazwy pola" - -#: includes/admin/post-types/admin-field-group.php:71 -msgid "Field group draft updated." -msgstr "Szkic grupy pól został zaktualizowany." - -#: includes/admin/post-types/admin-field-group.php:70 -msgid "Field group scheduled for." -msgstr "Publikacja grupy pól została zaplanowana." - -#: includes/admin/post-types/admin-field-group.php:69 -msgid "Field group submitted." -msgstr "Grupa pól została dodana." - -#: includes/admin/post-types/admin-field-group.php:68 -msgid "Field group saved." -msgstr "Grupa pól została zapisana." - -#: includes/admin/post-types/admin-field-group.php:67 -msgid "Field group published." -msgstr "Grupa pól została opublikowana." - -#: includes/admin/post-types/admin-field-group.php:64 -msgid "Field group deleted." -msgstr "Grupa pól została usunięta." - -#: includes/admin/post-types/admin-field-group.php:62 -#: includes/admin/post-types/admin-field-group.php:63 -#: includes/admin/post-types/admin-field-group.php:65 -msgid "Field group updated." -msgstr "Grupa pól została zaktualizowana." - -#: includes/admin/admin-tools.php:118 -#: includes/admin/views/global/navigation.php:246 -#: includes/admin/views/tools/tools.php:21 -msgid "Tools" -msgstr "Narzędzia" - -#: includes/locations/abstract-acf-location.php:106 -msgid "is not equal to" -msgstr "nie jest równe" - -#: includes/locations/abstract-acf-location.php:105 -msgid "is equal to" -msgstr "jest równe" - -#: includes/locations.php:102 -msgid "Forms" -msgstr "Formularze" - -#: includes/admin/post-types/admin-post-type.php:127 includes/locations.php:100 -#: includes/locations/class-acf-location-page.php:22 -#: assets/build/js/acf-internal-post-type.js:175 -#: assets/build/js/acf-internal-post-type.js:249 -msgid "Page" -msgstr "Strona" - -#: includes/admin/post-types/admin-post-type.php:125 includes/locations.php:99 -#: includes/locations/class-acf-location-post.php:22 -#: assets/build/js/acf-internal-post-type.js:172 -#: assets/build/js/acf-internal-post-type.js:246 -msgid "Post" -msgstr "Wpis" - -#: includes/fields.php:354 -msgid "Relational" -msgstr "Relacyjne" - -#: includes/fields.php:353 -msgid "Choice" -msgstr "Wybór" - -#: includes/fields.php:351 -msgid "Basic" -msgstr "Podstawowe" - -#: includes/fields.php:320 -msgid "Unknown" -msgstr "Nieznany" - -#: includes/fields.php:320 -msgid "Field type does not exist" -msgstr "Rodzaj pola nie istnieje" - -#: includes/forms/form-front.php:236 -msgid "Spam Detected" -msgstr "Wykryto spam" - -#: includes/forms/form-front.php:107 -msgid "Post updated" -msgstr "Wpis został zaktualizowany" - -#: includes/forms/form-front.php:106 -msgid "Update" -msgstr "Aktualizuj" - -#: includes/forms/form-front.php:57 -msgid "Validate Email" -msgstr "Potwierdź e-mail" - -#: includes/fields.php:352 includes/forms/form-front.php:49 -msgid "Content" -msgstr "Treść" - -#: includes/admin/views/acf-post-type/advanced-settings.php:21 -#: includes/forms/form-front.php:40 -msgid "Title" -msgstr "Tytuł" - -#: includes/assets.php:372 includes/forms/form-comment.php:160 -#: assets/build/js/acf-input.js:7382 assets/build/js/acf-input.js:7968 -msgid "Edit field group" -msgstr "Edytuj grupę pól" - -#: includes/admin/post-types/admin-field-group.php:117 -#: assets/build/js/acf-input.js:1125 assets/build/js/acf-input.js:1230 -msgid "Selection is less than" -msgstr "Wybór jest mniejszy niż" - -#: includes/admin/post-types/admin-field-group.php:116 -#: assets/build/js/acf-input.js:1106 assets/build/js/acf-input.js:1202 -msgid "Selection is greater than" -msgstr "Wybór jest większy niż" - -#: includes/admin/post-types/admin-field-group.php:115 -#: assets/build/js/acf-input.js:1075 assets/build/js/acf-input.js:1170 -msgid "Value is less than" -msgstr "Wartość jest mniejsza niż" - -#: includes/admin/post-types/admin-field-group.php:114 -#: assets/build/js/acf-input.js:1045 assets/build/js/acf-input.js:1139 -msgid "Value is greater than" -msgstr "Wartość jest większa niż" - -#: includes/admin/post-types/admin-field-group.php:113 -#: assets/build/js/acf-input.js:888 assets/build/js/acf-input.js:960 -msgid "Value contains" -msgstr "Wartość zawiera" - -#: includes/admin/post-types/admin-field-group.php:112 -#: assets/build/js/acf-input.js:862 assets/build/js/acf-input.js:926 -msgid "Value matches pattern" -msgstr "Wartość musi pasować do wzoru" - -#: includes/admin/post-types/admin-field-group.php:111 -#: assets/build/js/acf-input.js:840 assets/build/js/acf-input.js:1023 -#: assets/build/js/acf-input.js:903 assets/build/js/acf-input.js:1116 -msgid "Value is not equal to" -msgstr "Wartość nie jest równa" - -#: includes/admin/post-types/admin-field-group.php:110 -#: assets/build/js/acf-input.js:810 assets/build/js/acf-input.js:964 -#: assets/build/js/acf-input.js:864 assets/build/js/acf-input.js:1053 -msgid "Value is equal to" -msgstr "Wartość jest równa" - -#: includes/admin/post-types/admin-field-group.php:109 -#: assets/build/js/acf-input.js:788 assets/build/js/acf-input.js:841 -msgid "Has no value" -msgstr "Nie ma wartości" - -#: includes/admin/post-types/admin-field-group.php:108 -#: assets/build/js/acf-input.js:758 assets/build/js/acf-input.js:783 -msgid "Has any value" -msgstr "Ma dowolną wartość" - -#: includes/admin/admin-internal-post-type.php:345 -#: includes/admin/views/browse-fields-modal.php:62 includes/assets.php:353 -#: assets/build/js/acf.js:1564 assets/build/js/acf.js:1658 -msgid "Cancel" -msgstr "Anuluj" - -#: includes/assets.php:349 assets/build/js/acf.js:1738 -#: assets/build/js/acf.js:1855 -msgid "Are you sure?" -msgstr "Czy na pewno?" - -#: includes/assets.php:369 assets/build/js/acf-input.js:9442 -#: assets/build/js/acf-input.js:10294 -msgid "%d fields require attention" -msgstr "%d pola(-ól) wymaga uwagi" - -#: includes/assets.php:368 assets/build/js/acf-input.js:9440 -#: assets/build/js/acf-input.js:10290 -msgid "1 field requires attention" -msgstr "1 pole wymaga uwagi" - -#: includes/assets.php:367 includes/validation.php:288 -#: includes/validation.php:298 assets/build/js/acf-input.js:9435 -#: assets/build/js/acf-input.js:10285 -msgid "Validation failed" -msgstr "Walidacja nie powiodła się" - -#: includes/assets.php:366 assets/build/js/acf-input.js:9603 -#: assets/build/js/acf-input.js:10473 -msgid "Validation successful" -msgstr "Walidacja zakończona sukcesem" - -#: includes/media.php:54 assets/build/js/acf-input.js:7210 -#: assets/build/js/acf-input.js:7772 -msgid "Restricted" -msgstr "Ograniczone" - -#: includes/media.php:53 assets/build/js/acf-input.js:7025 -#: assets/build/js/acf-input.js:7536 -msgid "Collapse Details" -msgstr "Zwiń szczegóły" - -#: includes/media.php:52 assets/build/js/acf-input.js:7025 -#: assets/build/js/acf-input.js:7533 -msgid "Expand Details" -msgstr "Rozwiń szczegóły" - -#: includes/admin/views/acf-post-type/advanced-settings.php:465 -#: includes/media.php:51 assets/build/js/acf-input.js:6892 -#: assets/build/js/acf-input.js:7381 -msgid "Uploaded to this post" -msgstr "Wgrane do wpisu" - -#: includes/media.php:50 assets/build/js/acf-input.js:6931 -#: assets/build/js/acf-input.js:7420 -msgctxt "verb" -msgid "Update" -msgstr "Aktualizuj" - -#: includes/media.php:49 -msgctxt "verb" -msgid "Edit" -msgstr "Edytuj" - -#: includes/assets.php:363 assets/build/js/acf-input.js:9212 -#: assets/build/js/acf-input.js:10056 -msgid "The changes you made will be lost if you navigate away from this page" -msgstr "" -"Wprowadzone przez Ciebie zmiany przepadną jeśli przejdziesz do innej strony" - -#: includes/api/api-helpers.php:3395 -msgid "File type must be %s." -msgstr "Wymagany typ pliku to %s." - -#: includes/admin/post-types/admin-field-group.php:102 -#: includes/admin/views/acf-field-group/conditional-logic.php:59 -#: includes/admin/views/acf-field-group/conditional-logic.php:169 -#: includes/admin/views/acf-field-group/location-group.php:3 -#: includes/admin/views/acf-field-group/locations.php:36 -#: includes/api/api-helpers.php:3391 assets/build/js/acf-field-group.js:771 -#: assets/build/js/acf-field-group.js:2385 -#: assets/build/js/acf-field-group.js:933 -#: assets/build/js/acf-field-group.js:2807 -msgid "or" -msgstr "lub" - -#: includes/api/api-helpers.php:3364 -msgid "File size must not exceed %s." -msgstr "Rozmiar pliku nie może przekraczać %s." - -#: includes/api/api-helpers.php:3359 -msgid "File size must be at least %s." -msgstr "Rozmiar pliku musi wynosić co najmniej %s." - -#: includes/api/api-helpers.php:3344 -msgid "Image height must not exceed %dpx." -msgstr "Wysokość obrazka nie może przekraczać %dpx." - -#: includes/api/api-helpers.php:3339 -msgid "Image height must be at least %dpx." -msgstr "Obrazek musi mieć co najmniej %dpx wysokości." - -#: includes/api/api-helpers.php:3325 -msgid "Image width must not exceed %dpx." -msgstr "Szerokość obrazka nie może przekraczać %dpx." - -#: includes/api/api-helpers.php:3320 -msgid "Image width must be at least %dpx." -msgstr "Obrazek musi mieć co najmniej %dpx szerokości." - -#: includes/api/api-helpers.php:1561 includes/api/api-term.php:147 -msgid "(no title)" -msgstr "(brak tytułu)" - -#: includes/api/api-helpers.php:853 -msgid "Full Size" -msgstr "Pełny rozmiar" - -#: includes/api/api-helpers.php:812 -msgid "Large" -msgstr "Duży" - -#: includes/api/api-helpers.php:811 -msgid "Medium" -msgstr "Średni" - -#: includes/api/api-helpers.php:810 -msgid "Thumbnail" -msgstr "Miniatura" - -#: includes/acf-field-functions.php:854 -#: includes/admin/post-types/admin-field-group.php:99 -#: assets/build/js/acf-field-group.js:1077 -#: assets/build/js/acf-field-group.js:1260 -msgid "(no label)" -msgstr "(brak etykiety)" - -#: includes/fields/class-acf-field-textarea.php:145 -msgid "Sets the textarea height" -msgstr "Określa wysokość obszaru tekstowego" - -#: includes/fields/class-acf-field-textarea.php:144 -msgid "Rows" -msgstr "Wiersze" - -#: includes/fields/class-acf-field-textarea.php:25 -msgid "Text Area" -msgstr "Obszar tekstowy" - -#: includes/fields/class-acf-field-checkbox.php:451 -msgid "Prepend an extra checkbox to toggle all choices" -msgstr "Dołącz dodatkowe pole, aby grupowo włączać/wyłączać wszystkie wybory" - -#: includes/fields/class-acf-field-checkbox.php:413 -msgid "Save 'custom' values to the field's choices" -msgstr "Dopisz własne wartości do wyborów pola" - -#: includes/fields/class-acf-field-checkbox.php:402 -msgid "Allow 'custom' values to be added" -msgstr "Zezwól na dodawanie własnych wartości" - -#: includes/fields/class-acf-field-checkbox.php:38 -msgid "Add new choice" -msgstr "Dodaj nowy wybór" - -#: includes/fields/class-acf-field-checkbox.php:174 -msgid "Toggle All" -msgstr "Przełącz wszystko" - -#: includes/fields/class-acf-field-page_link.php:506 -msgid "Allow Archives URLs" -msgstr "Zezwól na adresy URL archiwów" - -#: includes/fields/class-acf-field-page_link.php:179 -msgid "Archives" -msgstr "Archiwa" - -#: includes/fields/class-acf-field-page_link.php:25 -msgid "Page Link" -msgstr "Odnośnik do strony" - -#: includes/fields/class-acf-field-taxonomy.php:943 -#: includes/locations/class-acf-location-user-form.php:72 -msgid "Add" -msgstr "Dodaj" - -#: includes/admin/views/acf-field-group/fields.php:53 -#: includes/fields/class-acf-field-taxonomy.php:908 -msgid "Name" -msgstr "Nazwa" - -#: includes/fields/class-acf-field-taxonomy.php:892 -msgid "%s added" -msgstr "Dodano %s" - -#: includes/fields/class-acf-field-taxonomy.php:856 -msgid "%s already exists" -msgstr "%s już istnieje" - -#: includes/fields/class-acf-field-taxonomy.php:844 -msgid "User unable to add new %s" -msgstr "Użytkownik nie może dodać nowych „%s”" - -#: includes/fields/class-acf-field-taxonomy.php:742 -msgid "Term ID" -msgstr "Identyfikator terminu" - -#: includes/fields/class-acf-field-taxonomy.php:741 -msgid "Term Object" -msgstr "Obiekt terminu" - -#: includes/fields/class-acf-field-taxonomy.php:726 -msgid "Load value from posts terms" -msgstr "Wczytaj wartości z terminów taksonomii z wpisu" - -#: includes/fields/class-acf-field-taxonomy.php:725 -msgid "Load Terms" -msgstr "Wczytaj terminy taksonomii" - -#: includes/fields/class-acf-field-taxonomy.php:715 -msgid "Connect selected terms to the post" -msgstr "Przypisz wybrane terminy taksonomii do wpisu" - -#: includes/fields/class-acf-field-taxonomy.php:714 -msgid "Save Terms" -msgstr "Zapisz terminy taksonomii" - -#: includes/fields/class-acf-field-taxonomy.php:704 -msgid "Allow new terms to be created whilst editing" -msgstr "Zezwól na tworzenie nowych terminów taksonomii podczas edycji" - -#: includes/fields/class-acf-field-taxonomy.php:703 -msgid "Create Terms" -msgstr "Tworzenie terminów taksonomii" - -#: includes/fields/class-acf-field-taxonomy.php:762 -msgid "Radio Buttons" -msgstr "Pola wyboru" - -#: includes/fields/class-acf-field-taxonomy.php:761 -msgid "Single Value" -msgstr "Pojedyncza wartość" - -#: includes/fields/class-acf-field-taxonomy.php:759 -msgid "Multi Select" -msgstr "Wybór wielokrotny" - -#: includes/fields/class-acf-field-checkbox.php:25 -#: includes/fields/class-acf-field-taxonomy.php:758 -msgid "Checkbox" -msgstr "Pole zaznaczenia" - -#: includes/fields/class-acf-field-taxonomy.php:757 -msgid "Multiple Values" -msgstr "Wiele wartości" - -#: includes/fields/class-acf-field-taxonomy.php:752 -msgid "Select the appearance of this field" -msgstr "Określ wygląd tego pola" - -#: includes/fields/class-acf-field-taxonomy.php:751 -msgid "Appearance" -msgstr "Wygląd" - -#: includes/fields/class-acf-field-taxonomy.php:693 -msgid "Select the taxonomy to be displayed" -msgstr "Wybierz taksonomię do wyświetlenia" - -#: includes/fields/class-acf-field-taxonomy.php:654 -msgctxt "No Terms" -msgid "No %s" -msgstr "Brak „%s”" - -#: includes/fields/class-acf-field-number.php:266 -msgid "Value must be equal to or lower than %d" -msgstr "Wartość musi być równa lub niższa od %d" - -#: includes/fields/class-acf-field-number.php:259 -msgid "Value must be equal to or higher than %d" -msgstr "Wartość musi być równa lub wyższa od %d" - -#: includes/fields/class-acf-field-number.php:244 -msgid "Value must be a number" -msgstr "Wartość musi być liczbą" - -#: includes/fields/class-acf-field-number.php:25 -msgid "Number" -msgstr "Liczba" - -#: includes/fields/class-acf-field-radio.php:264 -msgid "Save 'other' values to the field's choices" -msgstr "Dopisz wartości wyboru „inne” do wyborów pola" - -#: includes/fields/class-acf-field-radio.php:253 -msgid "Add 'other' choice to allow for custom values" -msgstr "Dodaj wybór „inne”, aby zezwolić na własne wartości" - -#: includes/admin/views/global/navigation.php:196 -msgid "Other" -msgstr "Inne" - -#: includes/fields/class-acf-field-radio.php:25 -msgid "Radio Button" -msgstr "Pole wyboru" - -#: includes/fields/class-acf-field-accordion.php:107 -msgid "" -"Define an endpoint for the previous accordion to stop. This accordion will " -"not be visible." -msgstr "" -"Zdefiniuj punkt końcowy dla zatrzymania poprzedniego panelu zwijanego. Ten " -"panel zwijany nie będzie widoczny." - -#: includes/fields/class-acf-field-accordion.php:96 -msgid "Allow this accordion to open without closing others." -msgstr "Zezwól, aby ten zwijany panel otwierał się bez zamykania innych." - -#: includes/fields/class-acf-field-accordion.php:95 -msgid "Multi-Expand" -msgstr "Multi-expand" - -#: includes/fields/class-acf-field-accordion.php:85 -msgid "Display this accordion as open on page load." -msgstr "Pokaż ten zwijany panel jako otwarty po załadowaniu strony." - -#: includes/fields/class-acf-field-accordion.php:84 -msgid "Open" -msgstr "Otwórz" - -#: includes/fields/class-acf-field-accordion.php:25 -msgid "Accordion" -msgstr "Zwijany panel" - -#: includes/fields/class-acf-field-file.php:267 -#: includes/fields/class-acf-field-file.php:279 -msgid "Restrict which files can be uploaded" -msgstr "Określ jakie pliki mogą być przesyłane" - -#: includes/fields/class-acf-field-file.php:220 -msgid "File ID" -msgstr "Identyfikator pliku" - -#: includes/fields/class-acf-field-file.php:219 -msgid "File URL" -msgstr "Adres URL pliku" - -#: includes/fields/class-acf-field-file.php:218 -msgid "File Array" -msgstr "Tablica pliku" - -#: includes/fields/class-acf-field-file.php:186 -msgid "Add File" -msgstr "Dodaj plik" - -#: includes/admin/tools/class-acf-admin-tool-import.php:156 -#: includes/fields/class-acf-field-file.php:186 -msgid "No file selected" -msgstr "Nie wybrano pliku" - -#: includes/fields/class-acf-field-file.php:150 -msgid "File name" -msgstr "Nazwa pliku" - -#: includes/fields/class-acf-field-file.php:63 -#: assets/build/js/acf-input.js:2474 assets/build/js/acf-input.js:2625 -msgid "Update File" -msgstr "Aktualizuj plik" - -#: includes/fields/class-acf-field-file.php:62 -#: assets/build/js/acf-input.js:2473 assets/build/js/acf-input.js:2624 -msgid "Edit File" -msgstr "Edytuj plik" - -#: includes/admin/tools/class-acf-admin-tool-import.php:58 -#: includes/fields/class-acf-field-file.php:61 -#: assets/build/js/acf-input.js:2447 assets/build/js/acf-input.js:2597 -msgid "Select File" -msgstr "Wybierz plik" - -#: includes/fields/class-acf-field-file.php:25 -msgid "File" -msgstr "Plik" - -#: includes/fields/class-acf-field-password.php:25 -msgid "Password" -msgstr "Hasło" - -#: includes/fields/class-acf-field-select.php:392 -msgid "Specify the value returned" -msgstr "Określ zwracaną wartość" - -#: includes/fields/class-acf-field-select.php:461 -msgid "Use AJAX to lazy load choices?" -msgstr "Używaj AJAX do wczytywania wyborów?" - -#: includes/fields/class-acf-field-checkbox.php:362 -#: includes/fields/class-acf-field-select.php:381 -msgid "Enter each default value on a new line" -msgstr "Wpisz każdą domyślną wartość w osobnej linii" - -#: includes/fields/class-acf-field-select.php:252 includes/media.php:48 -#: assets/build/js/acf-input.js:6790 assets/build/js/acf-input.js:7266 -msgctxt "verb" -msgid "Select" -msgstr "Wybierz" - -#: includes/fields/class-acf-field-select.php:121 -msgctxt "Select2 JS load_fail" -msgid "Loading failed" -msgstr "Wczytywanie zakończone niepowodzeniem" - -#: includes/fields/class-acf-field-select.php:120 -msgctxt "Select2 JS searching" -msgid "Searching…" -msgstr "Szukam…" - -#: includes/fields/class-acf-field-select.php:119 -msgctxt "Select2 JS load_more" -msgid "Loading more results…" -msgstr "Wczytuję więcej wyników…" - -#: includes/fields/class-acf-field-select.php:118 -msgctxt "Select2 JS selection_too_long_n" -msgid "You can only select %d items" -msgstr "Możesz wybrać tylko %d elementy(-tów)" - -#: includes/fields/class-acf-field-select.php:117 -msgctxt "Select2 JS selection_too_long_1" -msgid "You can only select 1 item" -msgstr "Możesz wybrać tylko 1 element" - -#: includes/fields/class-acf-field-select.php:116 -msgctxt "Select2 JS input_too_long_n" -msgid "Please delete %d characters" -msgstr "Proszę usunąć %d znaki(-ów)" - -#: includes/fields/class-acf-field-select.php:115 -msgctxt "Select2 JS input_too_long_1" -msgid "Please delete 1 character" -msgstr "Proszę usunąć 1 znak" - -#: includes/fields/class-acf-field-select.php:114 -msgctxt "Select2 JS input_too_short_n" -msgid "Please enter %d or more characters" -msgstr "Wpisz %d lub więcej znaków" - -#: includes/fields/class-acf-field-select.php:113 -msgctxt "Select2 JS input_too_short_1" -msgid "Please enter 1 or more characters" -msgstr "Wpisz 1 lub więcej znaków" - -#: includes/fields/class-acf-field-select.php:112 -msgctxt "Select2 JS matches_0" -msgid "No matches found" -msgstr "Brak pasujących wyników" - -#: includes/fields/class-acf-field-select.php:111 -msgctxt "Select2 JS matches_n" -msgid "%d results are available, use up and down arrow keys to navigate." -msgstr "Dostępnych wyników: %d. Użyj strzałek w górę i w dół, aby nawigować." - -#: includes/fields/class-acf-field-select.php:110 -msgctxt "Select2 JS matches_1" -msgid "One result is available, press enter to select it." -msgstr "Dostępny jest jeden wynik. Aby go wybrać, naciśnij Enter." - -#: includes/fields/class-acf-field-select.php:25 -#: includes/fields/class-acf-field-taxonomy.php:763 -msgctxt "noun" -msgid "Select" -msgstr "Lista wyboru" - -#: includes/fields/class-acf-field-user.php:73 -msgid "User ID" -msgstr "Identyfikator użytkownika" - -#: includes/fields/class-acf-field-user.php:72 -msgid "User Object" -msgstr "Obiekt użytkownika" - -#: includes/fields/class-acf-field-user.php:71 -msgid "User Array" -msgstr "Tablica użytkownika" - -#: includes/fields/class-acf-field-user.php:59 -msgid "All user roles" -msgstr "Wszystkie role użytkownika" - -#: includes/fields/class-acf-field-user.php:51 -msgid "Filter by Role" -msgstr "Filtruj wg roli" - -#: includes/fields/class-acf-field-user.php:15 includes/locations.php:101 -msgid "User" -msgstr "Użytkownik" - -#: includes/fields/class-acf-field-separator.php:25 -msgid "Separator" -msgstr "Separator" - -#: includes/fields/class-acf-field-color_picker.php:75 -msgid "Select Color" -msgstr "Wybierz kolor" - -#: includes/admin/post-types/admin-post-type.php:129 -#: includes/admin/post-types/admin-taxonomy.php:131 -#: includes/fields/class-acf-field-color_picker.php:73 -#: assets/build/js/acf-internal-post-type.js:72 -#: assets/build/js/acf-internal-post-type.js:86 -msgid "Default" -msgstr "Domyślne" - -#: includes/admin/views/acf-post-type/advanced-settings.php:89 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:141 -#: includes/fields/class-acf-field-color_picker.php:71 -msgid "Clear" -msgstr "Wyczyść" - -#: includes/fields/class-acf-field-color_picker.php:25 -msgid "Color Picker" -msgstr "Wybór koloru" - -#: includes/fields/class-acf-field-date_time_picker.php:88 -msgctxt "Date Time Picker JS pmTextShort" -msgid "P" -msgstr "P" - -#: includes/fields/class-acf-field-date_time_picker.php:87 -msgctxt "Date Time Picker JS pmText" -msgid "PM" -msgstr "PM" - -#: includes/fields/class-acf-field-date_time_picker.php:84 -msgctxt "Date Time Picker JS amTextShort" -msgid "A" -msgstr "A" - -#: includes/fields/class-acf-field-date_time_picker.php:83 -msgctxt "Date Time Picker JS amText" -msgid "AM" -msgstr "AM" - -#: includes/fields/class-acf-field-date_time_picker.php:81 -msgctxt "Date Time Picker JS selectText" -msgid "Select" -msgstr "Wybierz" - -#: includes/fields/class-acf-field-date_time_picker.php:80 -msgctxt "Date Time Picker JS closeText" -msgid "Done" -msgstr "Gotowe" - -#: includes/fields/class-acf-field-date_time_picker.php:79 -msgctxt "Date Time Picker JS currentText" -msgid "Now" -msgstr "Teraz" - -#: includes/fields/class-acf-field-date_time_picker.php:78 -msgctxt "Date Time Picker JS timezoneText" -msgid "Time Zone" -msgstr "Strefa czasowa" - -#: includes/fields/class-acf-field-date_time_picker.php:77 -msgctxt "Date Time Picker JS microsecText" -msgid "Microsecond" -msgstr "Mikrosekunda" - -#: includes/fields/class-acf-field-date_time_picker.php:76 -msgctxt "Date Time Picker JS millisecText" -msgid "Millisecond" -msgstr "Milisekunda" - -#: includes/fields/class-acf-field-date_time_picker.php:75 -msgctxt "Date Time Picker JS secondText" -msgid "Second" -msgstr "Sekunda" - -#: includes/fields/class-acf-field-date_time_picker.php:74 -msgctxt "Date Time Picker JS minuteText" -msgid "Minute" -msgstr "Minuta" - -#: includes/fields/class-acf-field-date_time_picker.php:73 -msgctxt "Date Time Picker JS hourText" -msgid "Hour" -msgstr "Godzina" - -#: includes/fields/class-acf-field-date_time_picker.php:72 -msgctxt "Date Time Picker JS timeText" -msgid "Time" -msgstr "Czas" - -#: includes/fields/class-acf-field-date_time_picker.php:71 -msgctxt "Date Time Picker JS timeOnlyTitle" -msgid "Choose Time" -msgstr "Określ czas" - -#: includes/fields/class-acf-field-date_time_picker.php:25 -msgid "Date Time Picker" -msgstr "Wybór daty i godziny" - -#: includes/fields/class-acf-field-accordion.php:106 -msgid "Endpoint" -msgstr "Punkt końcowy" - -#: includes/admin/views/acf-field-group/options.php:130 -#: includes/fields/class-acf-field-tab.php:115 -msgid "Left aligned" -msgstr "Wyrównanie do lewej" - -#: includes/admin/views/acf-field-group/options.php:129 -#: includes/fields/class-acf-field-tab.php:114 -msgid "Top aligned" -msgstr "Wyrównanie do góry" - -#: includes/fields/class-acf-field-tab.php:110 -msgid "Placement" -msgstr "Położenie" - -#: includes/fields/class-acf-field-tab.php:26 -msgid "Tab" -msgstr "Zakładka" - -#: includes/fields/class-acf-field-url.php:162 -msgid "Value must be a valid URL" -msgstr "Wartość musi być poprawnym adresem URL" - -#: includes/fields/class-acf-field-link.php:177 -msgid "Link URL" -msgstr "Adres URL odnośnika" - -#: includes/fields/class-acf-field-link.php:176 -msgid "Link Array" -msgstr "Tablica odnośnika" - -#: includes/fields/class-acf-field-link.php:145 -msgid "Opens in a new window/tab" -msgstr "Otwiera się w nowym oknie/karcie" - -#: includes/fields/class-acf-field-link.php:140 -msgid "Select Link" -msgstr "Wybierz odnośnik" - -#: includes/fields/class-acf-field-link.php:25 -msgid "Link" -msgstr "Odnośnik" - -#: includes/fields/class-acf-field-email.php:25 -msgid "Email" -msgstr "E-mail" - -#: includes/fields/class-acf-field-number.php:188 -#: includes/fields/class-acf-field-range.php:217 -msgid "Step Size" -msgstr "Wielkość kroku" - -#: includes/fields/class-acf-field-number.php:158 -#: includes/fields/class-acf-field-range.php:195 -msgid "Maximum Value" -msgstr "Wartość maksymalna" - -#: includes/fields/class-acf-field-number.php:148 -#: includes/fields/class-acf-field-range.php:184 -msgid "Minimum Value" -msgstr "Wartość minimalna" - -#: includes/fields/class-acf-field-range.php:25 -msgid "Range" -msgstr "Zakres" - -#: includes/fields/class-acf-field-button-group.php:175 -#: includes/fields/class-acf-field-checkbox.php:379 -#: includes/fields/class-acf-field-radio.php:220 -#: includes/fields/class-acf-field-select.php:399 -msgid "Both (Array)" -msgstr "Oba (tablica)" - -#: includes/admin/views/acf-field-group/fields.php:52 -#: includes/fields/class-acf-field-button-group.php:174 -#: includes/fields/class-acf-field-checkbox.php:378 -#: includes/fields/class-acf-field-radio.php:219 -#: includes/fields/class-acf-field-select.php:398 -msgid "Label" -msgstr "Etykieta" - -#: includes/fields/class-acf-field-button-group.php:173 -#: includes/fields/class-acf-field-checkbox.php:377 -#: includes/fields/class-acf-field-radio.php:218 -#: includes/fields/class-acf-field-select.php:397 -msgid "Value" -msgstr "Wartość" - -#: includes/fields/class-acf-field-button-group.php:222 -#: includes/fields/class-acf-field-checkbox.php:441 -#: includes/fields/class-acf-field-radio.php:292 -msgid "Vertical" -msgstr "Pionowy" - -#: includes/fields/class-acf-field-button-group.php:221 -#: includes/fields/class-acf-field-checkbox.php:442 -#: includes/fields/class-acf-field-radio.php:293 -msgid "Horizontal" -msgstr "Poziomy" - -#: includes/fields/class-acf-field-button-group.php:148 -#: includes/fields/class-acf-field-checkbox.php:352 -#: includes/fields/class-acf-field-radio.php:193 -#: includes/fields/class-acf-field-select.php:370 -msgid "red : Red" -msgstr "czerwony : Czerwony" - -#: includes/fields/class-acf-field-button-group.php:148 -#: includes/fields/class-acf-field-checkbox.php:352 -#: includes/fields/class-acf-field-radio.php:193 -#: includes/fields/class-acf-field-select.php:370 -msgid "For more control, you may specify both a value and label like this:" -msgstr "" -"Aby uzyskać większą kontrolę, można określić wartość i etykietę w niniejszy " -"sposób:" - -#: includes/fields/class-acf-field-button-group.php:148 -#: includes/fields/class-acf-field-checkbox.php:352 -#: includes/fields/class-acf-field-radio.php:193 -#: includes/fields/class-acf-field-select.php:370 -msgid "Enter each choice on a new line." -msgstr "Wpisz każdy z wyborów w osobnej linii." - -#: includes/fields/class-acf-field-button-group.php:147 -#: includes/fields/class-acf-field-checkbox.php:351 -#: includes/fields/class-acf-field-radio.php:192 -#: includes/fields/class-acf-field-select.php:369 -msgid "Choices" -msgstr "Wybory" - -#: includes/fields/class-acf-field-button-group.php:24 -msgid "Button Group" -msgstr "Grupa przycisków" - -#: includes/fields/class-acf-field-button-group.php:194 -#: includes/fields/class-acf-field-page_link.php:538 -#: includes/fields/class-acf-field-post_object.php:448 -#: includes/fields/class-acf-field-radio.php:238 -#: includes/fields/class-acf-field-select.php:429 -#: includes/fields/class-acf-field-taxonomy.php:772 -#: includes/fields/class-acf-field-user.php:103 -msgid "Allow Null" -msgstr "Zezwól na pusty" - -#: includes/fields/class-acf-field-page_link.php:263 -#: includes/fields/class-acf-field-post_object.php:257 -#: includes/fields/class-acf-field-taxonomy.php:930 -msgid "Parent" -msgstr "Element nadrzędny" - -#: includes/fields/class-acf-field-wysiwyg.php:390 -msgid "TinyMCE will not be initialized until field is clicked" -msgstr "" -"TinyMCE nie zostanie zainicjowany, dopóki to pole nie zostanie kliknięte" - -#: includes/fields/class-acf-field-wysiwyg.php:389 -msgid "Delay Initialization" -msgstr "Opóźnij inicjowanie" - -#: includes/fields/class-acf-field-wysiwyg.php:378 -msgid "Show Media Upload Buttons" -msgstr "Pokaż przycisk dodawania mediów" - -#: includes/fields/class-acf-field-wysiwyg.php:362 -msgid "Toolbar" -msgstr "Pasek narzędzi" - -#: includes/fields/class-acf-field-wysiwyg.php:354 -msgid "Text Only" -msgstr "Tylko tekstowa" - -#: includes/fields/class-acf-field-wysiwyg.php:353 -msgid "Visual Only" -msgstr "Tylko wizualna" - -#: includes/fields/class-acf-field-wysiwyg.php:352 -msgid "Visual & Text" -msgstr "Wizualna i tekstowa" - -#: includes/fields/class-acf-field-wysiwyg.php:347 -msgid "Tabs" -msgstr "Zakładki" - -#: includes/fields/class-acf-field-wysiwyg.php:285 -msgid "Click to initialize TinyMCE" -msgstr "Kliknij, aby zainicjować TinyMCE" - -#: includes/fields/class-acf-field-wysiwyg.php:279 -msgctxt "Name for the Text editor tab (formerly HTML)" -msgid "Text" -msgstr "Tekstowy" - -#: includes/fields/class-acf-field-wysiwyg.php:278 -msgid "Visual" -msgstr "Wizualny" - -#: includes/fields/class-acf-field-text.php:189 -#: includes/fields/class-acf-field-textarea.php:236 -msgid "Value must not exceed %d characters" -msgstr "Wartość nie może przekraczać %d znaków" - -#: includes/fields/class-acf-field-text.php:124 -#: includes/fields/class-acf-field-textarea.php:124 -msgid "Leave blank for no limit" -msgstr "Pozostaw puste w przypadku braku limitu" - -#: includes/fields/class-acf-field-text.php:123 -#: includes/fields/class-acf-field-textarea.php:123 -msgid "Character Limit" -msgstr "Limit znaków" - -#: includes/fields/class-acf-field-email.php:158 -#: includes/fields/class-acf-field-number.php:209 -#: includes/fields/class-acf-field-password.php:105 -#: includes/fields/class-acf-field-range.php:239 -#: includes/fields/class-acf-field-text.php:164 -msgid "Appears after the input" -msgstr "Pojawia się za polem" - -#: includes/fields/class-acf-field-email.php:157 -#: includes/fields/class-acf-field-number.php:208 -#: includes/fields/class-acf-field-password.php:104 -#: includes/fields/class-acf-field-range.php:238 -#: includes/fields/class-acf-field-text.php:163 -msgid "Append" -msgstr "Za polem (sufiks)" - -#: includes/fields/class-acf-field-email.php:148 -#: includes/fields/class-acf-field-number.php:199 -#: includes/fields/class-acf-field-password.php:95 -#: includes/fields/class-acf-field-range.php:229 -#: includes/fields/class-acf-field-text.php:154 -msgid "Appears before the input" -msgstr "Pojawia się przed polem" - -#: includes/fields/class-acf-field-email.php:147 -#: includes/fields/class-acf-field-number.php:198 -#: includes/fields/class-acf-field-password.php:94 -#: includes/fields/class-acf-field-range.php:228 -#: includes/fields/class-acf-field-text.php:153 -msgid "Prepend" -msgstr "Przed polem (prefiks)" - -#: includes/fields/class-acf-field-email.php:138 -#: includes/fields/class-acf-field-number.php:179 -#: includes/fields/class-acf-field-password.php:85 -#: includes/fields/class-acf-field-text.php:144 -#: includes/fields/class-acf-field-textarea.php:156 -#: includes/fields/class-acf-field-url.php:122 -msgid "Appears within the input" -msgstr "Pojawia się w polu" - -#: includes/fields/class-acf-field-email.php:137 -#: includes/fields/class-acf-field-number.php:178 -#: includes/fields/class-acf-field-password.php:84 -#: includes/fields/class-acf-field-text.php:143 -#: includes/fields/class-acf-field-textarea.php:155 -#: includes/fields/class-acf-field-url.php:121 -msgid "Placeholder Text" -msgstr "Placeholder (tekst zastępczy)" - -#: includes/fields/class-acf-field-button-group.php:158 -#: includes/fields/class-acf-field-email.php:118 -#: includes/fields/class-acf-field-number.php:129 -#: includes/fields/class-acf-field-radio.php:203 -#: includes/fields/class-acf-field-range.php:165 -#: includes/fields/class-acf-field-text.php:104 -#: includes/fields/class-acf-field-textarea.php:104 -#: includes/fields/class-acf-field-url.php:102 -#: includes/fields/class-acf-field-wysiwyg.php:312 -msgid "Appears when creating a new post" -msgstr "Wyświetlana podczas tworzenia nowego wpisu" - -#: includes/fields/class-acf-field-text.php:25 -msgid "Text" -msgstr "Tekst" - -#: includes/fields/class-acf-field-relationship.php:794 -msgid "%1$s requires at least %2$s selection" -msgid_plural "%1$s requires at least %2$s selections" -msgstr[0] "%1$s wymaga co najmniej %2$s wyboru" -msgstr[1] "%1$s wymaga co najmniej %2$s wyborów" -msgstr[2] "%1$s wymaga co najmniej %2$s wyborów" - -#: includes/fields/class-acf-field-post_object.php:417 -#: includes/fields/class-acf-field-relationship.php:644 -msgid "Post ID" -msgstr "Identyfikator wpisu" - -#: includes/fields/class-acf-field-post_object.php:17 -#: includes/fields/class-acf-field-post_object.php:416 -#: includes/fields/class-acf-field-relationship.php:643 -msgid "Post Object" -msgstr "Obiekt wpisu" - -#: includes/fields/class-acf-field-relationship.php:676 -msgid "Maximum Posts" -msgstr "Maksimum wpisów" - -#: includes/fields/class-acf-field-relationship.php:666 -msgid "Minimum Posts" -msgstr "Minimum wpisów" - -#: includes/admin/views/acf-field-group/options.php:183 -#: includes/admin/views/acf-post-type/advanced-settings.php:29 -#: includes/fields/class-acf-field-relationship.php:701 -msgid "Featured Image" -msgstr "Obrazek wyróżniający" - -#: includes/fields/class-acf-field-relationship.php:697 -msgid "Selected elements will be displayed in each result" -msgstr "Wybrane elementy będą wyświetlone przy każdym wyniku" - -#: includes/fields/class-acf-field-relationship.php:696 -msgid "Elements" -msgstr "Elementy" - -#: includes/fields/class-acf-field-relationship.php:630 -#: includes/fields/class-acf-field-taxonomy.php:20 -#: includes/fields/class-acf-field-taxonomy.php:692 -#: includes/locations/class-acf-location-taxonomy.php:22 -msgid "Taxonomy" -msgstr "Taksonomia" - -#: includes/fields/class-acf-field-relationship.php:629 -#: includes/locations/class-acf-location-post-type.php:22 -#: includes/post-types/class-acf-post-type.php:92 -msgid "Post Type" -msgstr "Typ treści" - -#: includes/fields/class-acf-field-relationship.php:623 -msgid "Filters" -msgstr "Filtry" - -#: includes/fields/class-acf-field-page_link.php:499 -#: includes/fields/class-acf-field-post_object.php:404 -#: includes/fields/class-acf-field-relationship.php:616 -msgid "All taxonomies" -msgstr "Wszystkie taksonomie" - -#: includes/fields/class-acf-field-page_link.php:491 -#: includes/fields/class-acf-field-post_object.php:396 -#: includes/fields/class-acf-field-relationship.php:608 -msgid "Filter by Taxonomy" -msgstr "Filtruj wg taksonomii" - -#: includes/fields/class-acf-field-page_link.php:469 -#: includes/fields/class-acf-field-post_object.php:374 -#: includes/fields/class-acf-field-relationship.php:586 -msgid "All post types" -msgstr "Wszystkie typy treści" - -#: includes/fields/class-acf-field-page_link.php:461 -#: includes/fields/class-acf-field-post_object.php:366 -#: includes/fields/class-acf-field-relationship.php:578 -msgid "Filter by Post Type" -msgstr "Filtruj wg typu treści" - -#: includes/fields/class-acf-field-relationship.php:476 -msgid "Search..." -msgstr "Wyszukiwanie…" - -#: includes/fields/class-acf-field-relationship.php:406 -msgid "Select taxonomy" -msgstr "Wybierz taksonomię" - -#: includes/fields/class-acf-field-relationship.php:397 -msgid "Select post type" -msgstr "Wybierz typ treści" - -#: includes/fields/class-acf-field-relationship.php:61 -#: assets/build/js/acf-input.js:3930 assets/build/js/acf-input.js:4214 -msgid "No matches found" -msgstr "Brak pasujących wyników" - -#: includes/fields/class-acf-field-relationship.php:60 -#: assets/build/js/acf-input.js:3913 assets/build/js/acf-input.js:4193 -msgid "Loading" -msgstr "Wczytywanie" - -#: includes/fields/class-acf-field-relationship.php:59 -#: assets/build/js/acf-input.js:3818 assets/build/js/acf-input.js:4084 -msgid "Maximum values reached ( {max} values )" -msgstr "Maksymalna liczba wartości została przekroczona ( {max} wartości )" - -#: includes/fields/class-acf-field-relationship.php:17 -msgid "Relationship" -msgstr "Relacja" - -#: includes/fields/class-acf-field-file.php:291 -#: includes/fields/class-acf-field-image.php:317 -msgid "Comma separated list. Leave blank for all types" -msgstr "Lista oddzielona przecinkami. Pozostaw puste dla wszystkich typów" - -#: includes/fields/class-acf-field-file.php:290 -#: includes/fields/class-acf-field-image.php:316 -msgid "Allowed File Types" -msgstr "Dozwolone typy plików" - -#: includes/fields/class-acf-field-file.php:278 -#: includes/fields/class-acf-field-image.php:280 -msgid "Maximum" -msgstr "Maksimum" - -#: includes/fields/class-acf-field-file.php:154 -#: includes/fields/class-acf-field-file.php:270 -#: includes/fields/class-acf-field-file.php:282 -#: includes/fields/class-acf-field-image.php:271 -#: includes/fields/class-acf-field-image.php:307 -msgid "File size" -msgstr "Wielkość pliku" - -#: includes/fields/class-acf-field-image.php:245 -#: includes/fields/class-acf-field-image.php:281 -msgid "Restrict which images can be uploaded" -msgstr "Określ jakie obrazy mogą być przesyłane" - -#: includes/fields/class-acf-field-file.php:266 -#: includes/fields/class-acf-field-image.php:244 -msgid "Minimum" -msgstr "Minimum" - -#: includes/fields/class-acf-field-file.php:235 -#: includes/fields/class-acf-field-image.php:210 -msgid "Uploaded to post" -msgstr "Wgrane do wpisu" - -#: includes/fields/class-acf-field-file.php:234 -#: includes/fields/class-acf-field-image.php:209 -#: includes/locations/class-acf-location-attachment.php:73 -#: includes/locations/class-acf-location-comment.php:61 -#: includes/locations/class-acf-location-nav-menu.php:74 -#: includes/locations/class-acf-location-taxonomy.php:63 -#: includes/locations/class-acf-location-user-form.php:71 -#: includes/locations/class-acf-location-user-role.php:78 -#: includes/locations/class-acf-location-widget.php:65 -msgid "All" -msgstr "Wszystkie" - -#: includes/fields/class-acf-field-file.php:229 -#: includes/fields/class-acf-field-image.php:204 -msgid "Limit the media library choice" -msgstr "Ogranicz wybór do biblioteki mediów" - -#: includes/fields/class-acf-field-file.php:228 -#: includes/fields/class-acf-field-image.php:203 -msgid "Library" -msgstr "Biblioteka" - -#: includes/fields/class-acf-field-image.php:336 -msgid "Preview Size" -msgstr "Rozmiar podglądu" - -#: includes/fields/class-acf-field-image.php:195 -msgid "Image ID" -msgstr "Identyfikator obrazka" - -#: includes/fields/class-acf-field-image.php:194 -msgid "Image URL" -msgstr "Adres URL obrazka" - -#: includes/fields/class-acf-field-image.php:193 -msgid "Image Array" -msgstr "Tablica obrazków" - -#: includes/fields/class-acf-field-button-group.php:168 -#: includes/fields/class-acf-field-checkbox.php:372 -#: includes/fields/class-acf-field-file.php:213 -#: includes/fields/class-acf-field-link.php:171 -#: includes/fields/class-acf-field-radio.php:213 -msgid "Specify the returned value on front end" -msgstr "Określ wartość zwracaną w witrynie" - -#: includes/fields/class-acf-field-button-group.php:167 -#: includes/fields/class-acf-field-checkbox.php:371 -#: includes/fields/class-acf-field-file.php:212 -#: includes/fields/class-acf-field-link.php:170 -#: includes/fields/class-acf-field-radio.php:212 -#: includes/fields/class-acf-field-taxonomy.php:736 -msgid "Return Value" -msgstr "Zwracana wartość" - -#: includes/fields/class-acf-field-image.php:162 -msgid "Add Image" -msgstr "Dodaj obrazek" - -#: includes/fields/class-acf-field-image.php:162 -msgid "No image selected" -msgstr "Nie wybrano obrazka" - -#: includes/assets.php:352 includes/fields/class-acf-field-file.php:162 -#: includes/fields/class-acf-field-image.php:142 -#: includes/fields/class-acf-field-link.php:145 assets/build/js/acf.js:1563 -#: assets/build/js/acf.js:1657 -msgid "Remove" -msgstr "Usuń" - -#: includes/admin/views/acf-field-group/field.php:76 -#: includes/fields/class-acf-field-file.php:160 -#: includes/fields/class-acf-field-image.php:140 -#: includes/fields/class-acf-field-link.php:145 -msgid "Edit" -msgstr "Edytuj" - -#: includes/fields/class-acf-field-image.php:70 includes/media.php:55 -#: assets/build/js/acf-input.js:6837 assets/build/js/acf-input.js:7320 -msgid "All images" -msgstr "Wszystkie obrazki" - -#: includes/fields/class-acf-field-image.php:69 -#: assets/build/js/acf-input.js:3181 assets/build/js/acf-input.js:3399 -msgid "Update Image" -msgstr "Aktualizuj obrazek" - -#: includes/fields/class-acf-field-image.php:68 -#: assets/build/js/acf-input.js:3180 assets/build/js/acf-input.js:3398 -msgid "Edit Image" -msgstr "Edytuj obrazek" - -#: includes/fields/class-acf-field-image.php:67 -#: assets/build/js/acf-input.js:3156 assets/build/js/acf-input.js:3373 -msgid "Select Image" -msgstr "Wybierz obrazek" - -#: includes/fields/class-acf-field-image.php:25 -msgid "Image" -msgstr "Obrazek" - -#: includes/fields/class-acf-field-message.php:125 -msgid "Allow HTML markup to display as visible text instead of rendering" -msgstr "" -"Zezwól aby znaczniki HTML były wyświetlane jako widoczny tekst, a nie " -"renderowane" - -#: includes/fields/class-acf-field-message.php:124 -msgid "Escape HTML" -msgstr "Dodawaj znaki ucieczki do HTML (escape HTML)" - -#: includes/fields/class-acf-field-message.php:116 -#: includes/fields/class-acf-field-textarea.php:172 -msgid "No Formatting" -msgstr "Brak formatowania" - -#: includes/fields/class-acf-field-message.php:115 -#: includes/fields/class-acf-field-textarea.php:171 -msgid "Automatically add <br>" -msgstr "Automatycznie dodaj <br>" - -#: includes/fields/class-acf-field-message.php:114 -#: includes/fields/class-acf-field-textarea.php:170 -msgid "Automatically add paragraphs" -msgstr "Automatycznie twórz akapity" - -#: includes/fields/class-acf-field-message.php:110 -#: includes/fields/class-acf-field-textarea.php:166 -msgid "Controls how new lines are rendered" -msgstr "Kontroluje jak są renderowane nowe linie" - -#: includes/fields/class-acf-field-message.php:109 -#: includes/fields/class-acf-field-textarea.php:165 -msgid "New Lines" -msgstr "Nowe linie" - -#: includes/fields/class-acf-field-date_picker.php:232 -#: includes/fields/class-acf-field-date_time_picker.php:220 -msgid "Week Starts On" -msgstr "Pierwszy dzień tygodnia" - -#: includes/fields/class-acf-field-date_picker.php:201 -msgid "The format used when saving a value" -msgstr "Format używany podczas zapisywania wartości" - -#: includes/fields/class-acf-field-date_picker.php:200 -msgid "Save Format" -msgstr "Zapisz format" - -#: includes/fields/class-acf-field-date_picker.php:67 -msgctxt "Date Picker JS weekHeader" -msgid "Wk" -msgstr "Tydz" - -#: includes/fields/class-acf-field-date_picker.php:66 -msgctxt "Date Picker JS prevText" -msgid "Prev" -msgstr "Wstecz" - -#: includes/fields/class-acf-field-date_picker.php:65 -msgctxt "Date Picker JS nextText" -msgid "Next" -msgstr "Dalej" - -#: includes/fields/class-acf-field-date_picker.php:64 -msgctxt "Date Picker JS currentText" -msgid "Today" -msgstr "Dzisiaj" - -#: includes/fields/class-acf-field-date_picker.php:63 -msgctxt "Date Picker JS closeText" -msgid "Done" -msgstr "Gotowe" - -#: includes/fields/class-acf-field-date_picker.php:25 -msgid "Date Picker" -msgstr "Wybór daty" - -#: includes/fields/class-acf-field-image.php:248 -#: includes/fields/class-acf-field-image.php:284 -#: includes/fields/class-acf-field-oembed.php:268 -msgid "Width" -msgstr "Szerokość" - -#: includes/fields/class-acf-field-oembed.php:265 -#: includes/fields/class-acf-field-oembed.php:277 -msgid "Embed Size" -msgstr "Rozmiar osadzenia" - -#: includes/fields/class-acf-field-oembed.php:222 -msgid "Enter URL" -msgstr "Wpisz adres URL" - -#: includes/fields/class-acf-field-oembed.php:25 -msgid "oEmbed" -msgstr "oEmbed" - -#: includes/fields/class-acf-field-true_false.php:184 -msgid "Text shown when inactive" -msgstr "Tekst wyświetlany, gdy jest wyłączone" - -#: includes/fields/class-acf-field-true_false.php:183 -msgid "Off Text" -msgstr "Tekst, gdy wyłączone" - -#: includes/fields/class-acf-field-true_false.php:168 -msgid "Text shown when active" -msgstr "Tekst wyświetlany, gdy jest włączone" - -#: includes/fields/class-acf-field-true_false.php:167 -msgid "On Text" -msgstr "Tekst, gdy włączone" - -#: includes/fields/class-acf-field-select.php:450 -#: includes/fields/class-acf-field-true_false.php:199 -msgid "Stylized UI" -msgstr "Ostylowany interfejs użytkownika" - -#: includes/fields/class-acf-field-button-group.php:157 -#: includes/fields/class-acf-field-checkbox.php:361 -#: includes/fields/class-acf-field-color_picker.php:156 -#: includes/fields/class-acf-field-email.php:117 -#: includes/fields/class-acf-field-number.php:128 -#: includes/fields/class-acf-field-radio.php:202 -#: includes/fields/class-acf-field-range.php:164 -#: includes/fields/class-acf-field-select.php:380 -#: includes/fields/class-acf-field-text.php:103 -#: includes/fields/class-acf-field-textarea.php:103 -#: includes/fields/class-acf-field-true_false.php:147 -#: includes/fields/class-acf-field-url.php:101 -#: includes/fields/class-acf-field-wysiwyg.php:311 -msgid "Default Value" -msgstr "Wartość domyślna" - -#: includes/fields/class-acf-field-true_false.php:138 -msgid "Displays text alongside the checkbox" -msgstr "Wyświetla tekst obok pola" - -#: includes/fields/class-acf-field-message.php:26 -#: includes/fields/class-acf-field-message.php:99 -#: includes/fields/class-acf-field-true_false.php:137 -msgid "Message" -msgstr "Wiadomość" - -#: includes/assets.php:351 includes/fields/class-acf-field-true_false.php:86 -#: includes/fields/class-acf-field-true_false.php:187 -#: assets/build/js/acf.js:1740 assets/build/js/acf.js:1857 -msgid "No" -msgstr "Nie" - -#: includes/assets.php:350 includes/fields/class-acf-field-true_false.php:83 -#: includes/fields/class-acf-field-true_false.php:171 -#: assets/build/js/acf.js:1739 assets/build/js/acf.js:1856 -msgid "Yes" -msgstr "Tak" - -#: includes/fields/class-acf-field-true_false.php:25 -msgid "True / False" -msgstr "Prawda / Fałsz" - -#: includes/fields/class-acf-field-group.php:474 -msgid "Row" -msgstr "Wiersz" - -#: includes/fields/class-acf-field-group.php:473 -msgid "Table" -msgstr "Tabela" - -#: includes/admin/post-types/admin-field-group.php:140 -#: includes/fields/class-acf-field-group.php:472 -msgid "Block" -msgstr "Blok" - -#: includes/fields/class-acf-field-group.php:467 -msgid "Specify the style used to render the selected fields" -msgstr "Określ style stosowane to renderowania wybranych pól" - -#: includes/fields.php:356 includes/fields/class-acf-field-button-group.php:215 -#: includes/fields/class-acf-field-checkbox.php:435 -#: includes/fields/class-acf-field-group.php:466 -#: includes/fields/class-acf-field-radio.php:286 -msgid "Layout" -msgstr "Układ" - -#: includes/fields/class-acf-field-group.php:450 -msgid "Sub Fields" -msgstr "Pola podrzędne" - -#: includes/fields/class-acf-field-group.php:25 -msgid "Group" -msgstr "Grupa" - -#: includes/fields/class-acf-field-google-map.php:235 -msgid "Customize the map height" -msgstr "Dostosuj wysokość mapy" - -#: includes/fields/class-acf-field-google-map.php:234 -#: includes/fields/class-acf-field-image.php:259 -#: includes/fields/class-acf-field-image.php:295 -#: includes/fields/class-acf-field-oembed.php:280 -msgid "Height" -msgstr "Wysokość" - -#: includes/fields/class-acf-field-google-map.php:223 -msgid "Set the initial zoom level" -msgstr "Ustaw początkowe powiększenie" - -#: includes/fields/class-acf-field-google-map.php:222 -msgid "Zoom" -msgstr "Powiększenie" - -#: includes/fields/class-acf-field-google-map.php:196 -#: includes/fields/class-acf-field-google-map.php:209 -msgid "Center the initial map" -msgstr "Wyśrodkuj początkową mapę" - -#: includes/fields/class-acf-field-google-map.php:195 -#: includes/fields/class-acf-field-google-map.php:208 -msgid "Center" -msgstr "Wyśrodkowanie" - -#: includes/fields/class-acf-field-google-map.php:163 -msgid "Search for address..." -msgstr "Szukaj adresu…" - -#: includes/fields/class-acf-field-google-map.php:160 -msgid "Find current location" -msgstr "Znajdź aktualną lokalizację" - -#: includes/fields/class-acf-field-google-map.php:159 -msgid "Clear location" -msgstr "Wyczyść lokalizację" - -#: includes/fields/class-acf-field-google-map.php:158 -#: includes/fields/class-acf-field-relationship.php:628 -msgid "Search" -msgstr "Szukaj" - -#: includes/fields/class-acf-field-google-map.php:63 -#: assets/build/js/acf-input.js:2840 assets/build/js/acf-input.js:3026 -msgid "Sorry, this browser does not support geolocation" -msgstr "Przepraszamy, ta przeglądarka nie obsługuje geolokalizacji" - -#: includes/fields/class-acf-field-google-map.php:25 -msgid "Google Map" -msgstr "Mapa Google" - -#: includes/fields/class-acf-field-date_picker.php:212 -#: includes/fields/class-acf-field-date_time_picker.php:201 -#: includes/fields/class-acf-field-time_picker.php:132 -msgid "The format returned via template functions" -msgstr "Wartość zwracana przez funkcje w szablonie" - -#: includes/fields/class-acf-field-color_picker.php:180 -#: includes/fields/class-acf-field-date_picker.php:211 -#: includes/fields/class-acf-field-date_time_picker.php:200 -#: includes/fields/class-acf-field-image.php:187 -#: includes/fields/class-acf-field-post_object.php:411 -#: includes/fields/class-acf-field-relationship.php:638 -#: includes/fields/class-acf-field-select.php:391 -#: includes/fields/class-acf-field-time_picker.php:131 -#: includes/fields/class-acf-field-user.php:66 -msgid "Return Format" -msgstr "Zwracany format" - -#: includes/fields/class-acf-field-date_picker.php:190 -#: includes/fields/class-acf-field-date_picker.php:221 -#: includes/fields/class-acf-field-date_time_picker.php:192 -#: includes/fields/class-acf-field-date_time_picker.php:210 -#: includes/fields/class-acf-field-time_picker.php:123 -#: includes/fields/class-acf-field-time_picker.php:139 -msgid "Custom:" -msgstr "Własny:" - -#: includes/fields/class-acf-field-date_picker.php:182 -#: includes/fields/class-acf-field-date_time_picker.php:183 -#: includes/fields/class-acf-field-time_picker.php:116 -msgid "The format displayed when editing a post" -msgstr "Format wyświetlany przy edycji wpisu" - -#: includes/fields/class-acf-field-date_picker.php:181 -#: includes/fields/class-acf-field-date_time_picker.php:182 -#: includes/fields/class-acf-field-time_picker.php:115 -msgid "Display Format" -msgstr "Format wyświetlania" - -#: includes/fields/class-acf-field-time_picker.php:25 -msgid "Time Picker" -msgstr "Wybór godziny" - -#. translators: counts for inactive field groups -#: acf.php:503 -msgid "Inactive (%s)" -msgid_plural "Inactive (%s)" -msgstr[0] "Wyłączone (%s)" -msgstr[1] "Wyłączone (%s)" -msgstr[2] "Wyłączone (%s)" - -#: acf.php:462 -msgid "No Fields found in Trash" -msgstr "Nie znaleziono żadnych pól w koszu" - -#: acf.php:461 -msgid "No Fields found" -msgstr "Nie znaleziono żadnych pól" - -#: acf.php:460 -msgid "Search Fields" -msgstr "Szukaj pól" - -#: acf.php:459 -msgid "View Field" -msgstr "Zobacz pole" - -#: acf.php:458 includes/admin/views/acf-field-group/fields.php:115 -msgid "New Field" -msgstr "Nowe pole" - -#: acf.php:457 -msgid "Edit Field" -msgstr "Edytuj pole" - -#: acf.php:456 -msgid "Add New Field" -msgstr "Dodaj nowe pole" - -#: acf.php:454 -msgid "Field" -msgstr "Pole" - -#: acf.php:453 includes/admin/post-types/admin-field-group.php:163 -#: includes/admin/post-types/admin-field-groups.php:119 -#: includes/admin/views/acf-field-group/fields.php:32 -msgid "Fields" -msgstr "Pola" - -#: acf.php:428 -msgid "No Field Groups found in Trash" -msgstr "Nie znaleziono żadnych grup pól w koszu" - -#: acf.php:427 -msgid "No Field Groups found" -msgstr "Nie znaleziono żadnych grup pól" - -#: acf.php:426 -msgid "Search Field Groups" -msgstr "Szukaj grup pól" - -#: acf.php:425 -msgid "View Field Group" -msgstr "Zobacz grupę pól" - -#: acf.php:424 -msgid "New Field Group" -msgstr "Nowa grupa pól" - -#: acf.php:423 -msgid "Edit Field Group" -msgstr "Edytuj grupę pól" - -#: acf.php:422 -msgid "Add New Field Group" -msgstr "Dodaj nową grupę pól" - -#: acf.php:421 acf.php:455 -#: includes/admin/views/acf-post-type/advanced-settings.php:219 -#: includes/admin/views/acf-post-type/advanced-settings.php:221 -#: includes/post-types/class-acf-post-type.php:93 -#: includes/post-types/class-acf-taxonomy.php:92 -msgid "Add New" -msgstr "Dodaj" - -#: acf.php:420 -msgid "Field Group" -msgstr "Grupa pól" - -#: acf.php:419 includes/admin/post-types/admin-field-groups.php:78 -#: includes/admin/post-types/admin-post-types.php:138 -#: includes/admin/post-types/admin-taxonomies.php:138 -msgid "Field Groups" -msgstr "Grupy pól" - -#. Description of the plugin -msgid "Customize WordPress with powerful, professional and intuitive fields." -msgstr "" -"Dostosuj WordPressa za pomocą wszechstronnych, profesjonalnych i " -"intuicyjnych pól." - -#. Plugin URI of the plugin -msgid "https://www.advancedcustomfields.com" -msgstr "https://www.advancedcustomfields.com" - -#. Plugin Name of the plugin -#: acf.php:94 -msgid "Advanced Custom Fields" -msgstr "Advanced Custom Fields" - -#: pro/acf-pro.php:27 -msgid "Advanced Custom Fields PRO" -msgstr "Advanced Custom Fields PRO" - -#: pro/blocks.php:170 -msgid "Block type name is required." -msgstr "Nazwa typu bloku jest wymagana." - -#. translators: The name of the block type -#: pro/blocks.php:178 -msgid "Block type \"%s\" is already registered." -msgstr "Typ bloku \"%s\" jest już zarejestrowany." - -#: pro/blocks.php:726 -msgid "Switch to Edit" -msgstr "Przejdź do Edytuj" - -#: pro/blocks.php:727 -msgid "Switch to Preview" -msgstr "Przejdź do Podglądu" - -#: pro/blocks.php:728 -msgid "Change content alignment" -msgstr "Zmień wyrównanie treści" - -#. translators: %s: Block type title -#: pro/blocks.php:731 -msgid "%s settings" -msgstr "Ustawienia %s" - -#: pro/blocks.php:936 -msgid "This block contains no editable fields." -msgstr "Ten blok nie zawiera żadnych edytowalnych pól." - -#. translators: %s: an admin URL to the field group edit screen -#: pro/blocks.php:942 -msgid "" -"Assign a field group to add fields to " -"this block." -msgstr "" -"Przypisz grupę pól, aby dodać pola do " -"tego bloku." - -#: pro/options-page.php:78 -msgid "Options Updated" -msgstr "Ustawienia zostały zaktualizowane" - -#: pro/updates.php:99 -msgid "" -"To enable updates, please enter your license key on the Updates page. If you don't have a licence key, please see details & pricing." -msgstr "" -"Aby włączyć aktualizacje, należy wprowadzić klucz licencyjny na stronie Aktualizacje. Jeśli nie posiadasz klucza licencyjnego, " -"zapoznaj się z informacjami szczegółowymi " -"i cenami." - -#: pro/updates.php:159 -msgid "" -"ACF Activation Error. Your defined license key has changed, but an " -"error occurred when deactivating your old licence" -msgstr "" -"Błąd aktywacji ACF. Zdefiniowany przez Państwa klucz licencyjny uległ " -"zmianie, ale podczas dezaktywacji starej licencji wystąpił błąd" - -#: pro/updates.php:154 -msgid "" -"ACF Activation Error. Your defined license key has changed, but an " -"error occurred when connecting to activation server" -msgstr "" -"Błąd aktywacji ACF. Twój zdefiniowany klucz licencyjny uległ zmianie, " -"ale wystąpił błąd podczas łączenia się z serwerem aktywacyjnym" - -#: pro/updates.php:192 -msgid "ACF Activation Error" -msgstr "ACF Błąd aktywacji" - -#: pro/updates.php:187 -msgid "" -"ACF Activation Error. An error occurred when connecting to activation " -"server" -msgstr "" -"Błąd aktywacji ACF. Wystąpił błąd podczas łączenia się z serwerem " -"aktywacyjnym" - -#: pro/updates.php:279 -msgid "Check Again" -msgstr "Sprawdź ponownie" - -#: pro/updates.php:593 -msgid "ACF Activation Error. Could not connect to activation server" -msgstr "" -"Błąd aktywacji ACF. Nie można połączyć się z serwerem aktywacyjnym" - -#: pro/admin/admin-options-page.php:195 -msgid "Publish" -msgstr "Opublikuj" - -#: pro/admin/admin-options-page.php:199 -msgid "" -"No Custom Field Groups found for this options page. Create a " -"Custom Field Group" -msgstr "" -"Żadna grupa pól nie została dodana do tej strony opcji. Utwórz grupę własnych pól" - -#: pro/admin/admin-updates.php:52 -msgid "Error. Could not connect to update server" -msgstr "Błąd. Nie można połączyć z serwerem aktualizacji" - -#: pro/admin/admin-updates.php:212 -msgid "" -"Error. Could not authenticate update package. Please check again or " -"deactivate and reactivate your ACF PRO license." -msgstr "" -"Error. Nie można uwierzytelnić pakietu aktualizacyjnego. Proszę " -"sprawdzić ponownie lub dezaktywować i ponownie uaktywnić licencję ACF PRO." - -#: pro/admin/admin-updates.php:199 -msgid "" -"Error. Your license for this site has expired or been deactivated. " -"Please reactivate your ACF PRO license." -msgstr "" -"Błąd. Twoja licencja dla tej strony wygasła lub została " -"dezaktywowana. Proszę ponownie aktywować licencję ACF PRO." - -#: pro/fields/class-acf-field-clone.php:27, -#: pro/fields/class-acf-field-repeater.php:31 -msgid "" -"Allows you to select and display existing fields. It does not duplicate any " -"fields in the database, but loads and displays the selected fields at run-" -"time. The Clone field can either replace itself with the selected fields or " -"display the selected fields as a group of subfields." -msgstr "" -"Umożliwia wybranie i wyświetlenie istniejących pól. Nie duplikuje żadnych " -"pól w bazie danych, ale ładuje i wyświetla wybrane pola w czasie " -"wykonywania. Pole Klonuj może zastąpić się wybranymi polami lub wyświetlić " -"wybrane pola jako grupę podpól." - -#: pro/fields/class-acf-field-clone.php:819 -msgid "Select one or more fields you wish to clone" -msgstr "Wybierz jedno lub więcej pól które chcesz sklonować" - -#: pro/fields/class-acf-field-clone.php:838 -msgid "Display" -msgstr "Wyświetl" - -#: pro/fields/class-acf-field-clone.php:839 -msgid "Specify the style used to render the clone field" -msgstr "Określ styl wykorzystywany do stosowania w klonowanych polach" - -#: pro/fields/class-acf-field-clone.php:844 -msgid "Group (displays selected fields in a group within this field)" -msgstr "Grupuj (wyświetla wybrane pola w grupie)" - -#: pro/fields/class-acf-field-clone.php:845 -msgid "Seamless (replaces this field with selected fields)" -msgstr "Ujednolicenie (zastępuje to pole wybranymi polami)" - -#: pro/fields/class-acf-field-clone.php:868 -msgid "Labels will be displayed as %s" -msgstr "Etykiety będą wyświetlane jako %s" - -#: pro/fields/class-acf-field-clone.php:873 -msgid "Prefix Field Labels" -msgstr "Prefiks Etykiet Pól" - -#: pro/fields/class-acf-field-clone.php:883 -msgid "Values will be saved as %s" -msgstr "Wartości będą zapisane jako %s" - -#: pro/fields/class-acf-field-clone.php:888 -msgid "Prefix Field Names" -msgstr "Prefiks Nazw Pól" - -#: pro/fields/class-acf-field-clone.php:1005 -msgid "Unknown field" -msgstr "Nieznane pole" - -#: pro/fields/class-acf-field-clone.php:1042 -msgid "Unknown field group" -msgstr "Nieznana grupa pól" - -#: pro/fields/class-acf-field-clone.php:1046 -msgid "All fields from %s field group" -msgstr "Wszystkie pola z grupy pola %s" - -#: pro/fields/class-acf-field-flexible-content.php:27 -msgid "" -"Allows you to define, create and manage content with total control by " -"creating layouts that contain subfields that content editors can choose from." -msgstr "" -"Umożliwia definiowanie, tworzenie i zarządzanie treścią z pełną kontrolą " -"poprzez tworzenie układów zawierających podpola, które edytorzy treści mogą " -"wybierać." - -#: pro/fields/class-acf-field-flexible-content.php:36, -#: pro/fields/class-acf-field-repeater.php:103, -#: pro/fields/class-acf-field-repeater.php:297 -msgid "Add Row" -msgstr "Dodaj wiersz" - -#: pro/fields/class-acf-field-flexible-content.php:76, -#: pro/fields/class-acf-field-flexible-content.php:943, -#: pro/fields/class-acf-field-flexible-content.php:1022 -msgid "layout" -msgid_plural "layouts" -msgstr[0] "układ" -msgstr[1] "układy" -msgstr[2] "układów" - -#: pro/fields/class-acf-field-flexible-content.php:77 -msgid "layouts" -msgstr "układy" - -#: pro/fields/class-acf-field-flexible-content.php:81, -#: pro/fields/class-acf-field-flexible-content.php:942, -#: pro/fields/class-acf-field-flexible-content.php:1021 -msgid "This field requires at least {min} {label} {identifier}" -msgstr "To pole wymaga przynajmniej {min} {label} {identifier}" - -#: pro/fields/class-acf-field-flexible-content.php:82 -msgid "This field has a limit of {max} {label} {identifier}" -msgstr "To pole ma ograniczenie {max} {label} {identifier}" - -#: pro/fields/class-acf-field-flexible-content.php:85 -msgid "{available} {label} {identifier} available (max {max})" -msgstr "{available} {label} {identifier} dostępne (max {max})" - -#: pro/fields/class-acf-field-flexible-content.php:86 -msgid "{required} {label} {identifier} required (min {min})" -msgstr "{required} {label} {identifier} wymagane (min {min})" - -#: pro/fields/class-acf-field-flexible-content.php:89 -msgid "Flexible Content requires at least 1 layout" -msgstr "Elastyczne pole wymaga przynajmniej 1 układu" - -#: pro/fields/class-acf-field-flexible-content.php:282 -msgid "Click the \"%s\" button below to start creating your layout" -msgstr "Kliknij przycisk \"%s\" poniżej, aby zacząć tworzyć nowy układ" - -#: pro/fields/class-acf-field-flexible-content.php:423 -msgid "Add layout" -msgstr "Dodaj układ" - -#: pro/fields/class-acf-field-flexible-content.php:424 -msgid "Duplicate layout" -msgstr "Powiel układ" - -#: pro/fields/class-acf-field-flexible-content.php:425 -msgid "Remove layout" -msgstr "Usuń układ" - -#: pro/fields/class-acf-field-flexible-content.php:426, -#: pro/fields/class-acf-repeater-table.php:382 -msgid "Click to toggle" -msgstr "Kliknij, aby przełączyć" - -#: pro/fields/class-acf-field-flexible-content.php:562 -msgid "Delete Layout" -msgstr "Usuń układ" - -#: pro/fields/class-acf-field-flexible-content.php:563 -msgid "Duplicate Layout" -msgstr "Duplikuj układ" - -#: pro/fields/class-acf-field-flexible-content.php:564 -msgid "Add New Layout" -msgstr "Dodaj nowy układ" - -#: pro/fields/class-acf-field-flexible-content.php:564 -msgid "Add Layout" -msgstr "Dodaj układ" - -#: pro/fields/class-acf-field-flexible-content.php:647 -msgid "Min" -msgstr "Min" - -#: pro/fields/class-acf-field-flexible-content.php:662 -msgid "Max" -msgstr "Max" - -#: pro/fields/class-acf-field-flexible-content.php:705 -msgid "Minimum Layouts" -msgstr "Minimalna liczba układów" - -#: pro/fields/class-acf-field-flexible-content.php:716 -msgid "Maximum Layouts" -msgstr "Maksymalna liczba układów" - -#: pro/fields/class-acf-field-flexible-content.php:727, -#: pro/fields/class-acf-field-repeater.php:293 -msgid "Button Label" -msgstr "Etykieta przycisku" - -#: pro/fields/class-acf-field-flexible-content.php:1710, -#: pro/fields/class-acf-field-repeater.php:918 -msgid "%s must be of type array or null." -msgstr "%s musi być typu tablicy lub null." - -#: pro/fields/class-acf-field-flexible-content.php:1721 -msgid "%1$s must contain at least %2$s %3$s layout." -msgid_plural "%1$s must contain at least %2$s %3$s layouts." -msgstr[0] "%1$s musi zawierać co najmniej %2$s %3$s układ." -msgstr[1] "%1$s musi zawierać co najmniej %2$s %3$s układy." -msgstr[2] "%1$s musi zawierać co najmniej %2$s %3$s układów." - -#: pro/fields/class-acf-field-flexible-content.php:1737 -msgid "%1$s must contain at most %2$s %3$s layout." -msgid_plural "%1$s must contain at most %2$s %3$s layouts." -msgstr[0] "%1$s musi zawierać co najwyżej %2$s %3$s układ." -msgstr[1] "%1$s musi zawierać co najwyżej %2$s %3$s układy." -msgstr[2] "%1$s musi zawierać co najwyżej %2$s %3$s układów." - -#: pro/fields/class-acf-field-gallery.php:27 -msgid "" -"An interactive interface for managing a collection of attachments, such as " -"images." -msgstr "" -"Interaktywny interfejs do zarządzania kolekcją załączników, takich jak " -"obrazy." - -#: pro/fields/class-acf-field-gallery.php:77 -msgid "Add Image to Gallery" -msgstr "Dodaj obraz do galerii" - -#: pro/fields/class-acf-field-gallery.php:78 -msgid "Maximum selection reached" -msgstr "Maksimum ilości wyborów osiągnięte" - -#: pro/fields/class-acf-field-gallery.php:324 -msgid "Length" -msgstr "Długość" - -#: pro/fields/class-acf-field-gallery.php:368 -msgid "Caption" -msgstr "Etykieta" - -#: pro/fields/class-acf-field-gallery.php:380 -msgid "Alt Text" -msgstr "Tekst alternatywny" - -#: pro/fields/class-acf-field-gallery.php:504 -msgid "Add to gallery" -msgstr "Dodaj do galerii" - -#: pro/fields/class-acf-field-gallery.php:508 -msgid "Bulk actions" -msgstr "Działania na wielu" - -#: pro/fields/class-acf-field-gallery.php:509 -msgid "Sort by date uploaded" -msgstr "Sortuj po dacie przesłania" - -#: pro/fields/class-acf-field-gallery.php:510 -msgid "Sort by date modified" -msgstr "Sortuj po dacie modyfikacji" - -#: pro/fields/class-acf-field-gallery.php:511 -msgid "Sort by title" -msgstr "Sortuj po tytule" - -#: pro/fields/class-acf-field-gallery.php:512 -msgid "Reverse current order" -msgstr "Odwróć aktualną kolejność" - -#: pro/fields/class-acf-field-gallery.php:524 -msgid "Close" -msgstr "Zamknij" - -#: pro/fields/class-acf-field-gallery.php:615 -msgid "Minimum Selection" -msgstr "Minimalna liczba wybranych elementów" - -#: pro/fields/class-acf-field-gallery.php:625 -msgid "Maximum Selection" -msgstr "Maksymalna liczba wybranych elementów" - -#: pro/fields/class-acf-field-gallery.php:707 -msgid "Allowed file types" -msgstr "Dozwolone typy plików" - -#: pro/fields/class-acf-field-gallery.php:727 -msgid "Insert" -msgstr "Wstaw" - -#: pro/fields/class-acf-field-gallery.php:728 -msgid "Specify where new attachments are added" -msgstr "Określ gdzie są dodawane nowe załączniki" - -#: pro/fields/class-acf-field-gallery.php:732 -msgid "Append to the end" -msgstr "Dodaj na końcu" - -#: pro/fields/class-acf-field-gallery.php:733 -msgid "Prepend to the beginning" -msgstr "Dodaj do początku" - -#: pro/fields/class-acf-field-repeater.php:66, -#: pro/fields/class-acf-field-repeater.php:463 -msgid "Minimum rows not reached ({min} rows)" -msgstr "Nie osiągnięto minimalnej liczby wierszy ({min} wierszy)" - -#: pro/fields/class-acf-field-repeater.php:67 -msgid "Maximum rows reached ({max} rows)" -msgstr "Osiągnięto maksimum liczby wierszy ( {max} wierszy )" - -#: pro/fields/class-acf-field-repeater.php:68 -msgid "Error loading page" -msgstr "Błąd ładowania strony" - -#: pro/fields/class-acf-field-repeater.php:69 -msgid "Order will be assigned upon save" -msgstr "Kolejność zostanie przydzielona po zapisaniu" - -#: pro/fields/class-acf-field-repeater.php:196 -msgid "Useful for fields with a large number of rows." -msgstr "Przydatne dla pól z dużą liczbą wierszy." - -#: pro/fields/class-acf-field-repeater.php:207 -msgid "Rows Per Page" -msgstr "Wiersze na stronę" - -#: pro/fields/class-acf-field-repeater.php:208 -msgid "Set the number of rows to be displayed on a page." -msgstr "Ustawienie liczby wierszy, które mają być wyświetlane na stronie." - -#: pro/fields/class-acf-field-repeater.php:240 -msgid "Minimum Rows" -msgstr "Minimalna liczba wierszy" - -#: pro/fields/class-acf-field-repeater.php:251 -msgid "Maximum Rows" -msgstr "Maksymalna liczba wierszy" - -#: pro/fields/class-acf-field-repeater.php:281 -msgid "Collapsed" -msgstr "Zwinięty" - -#: pro/fields/class-acf-field-repeater.php:282 -msgid "Select a sub field to show when row is collapsed" -msgstr "" -"Wybierz pole podrzędne, które mają być pokazane kiedy wiersz jest zwinięty" - -#: pro/fields/class-acf-field-repeater.php:1060 -msgid "Invalid field key or name." -msgstr "Nieprawidłowy klucz lub nazwa pola." - -#: pro/fields/class-acf-field-repeater.php:1069 -msgid "There was an error retrieving the field." -msgstr "Wystąpił błąd przy pobieraniu pola." - -#: pro/fields/class-acf-repeater-table.php:369 -msgid "Click to reorder" -msgstr "Kliknij, aby zmienić kolejność" - -#: pro/fields/class-acf-repeater-table.php:402 -msgid "Add row" -msgstr "Dodaj wiersz" - -#: pro/fields/class-acf-repeater-table.php:403 -msgid "Duplicate row" -msgstr "Powiel wiersz" - -#: pro/fields/class-acf-repeater-table.php:404 -msgid "Remove row" -msgstr "Usuń wiersz" - -#: pro/fields/class-acf-repeater-table.php:448, -#: pro/fields/class-acf-repeater-table.php:465, -#: pro/fields/class-acf-repeater-table.php:466 -msgid "Current Page" -msgstr "Bieżąca strona" - -#: pro/fields/class-acf-repeater-table.php:456, -#: pro/fields/class-acf-repeater-table.php:457 -msgid "First Page" -msgstr "Pierwsza strona" - -#: pro/fields/class-acf-repeater-table.php:460, -#: pro/fields/class-acf-repeater-table.php:461 -msgid "Previous Page" -msgstr "Poprzednia strona" - -#. translators: 1: Current page, 2: Total pages. -#: pro/fields/class-acf-repeater-table.php:470 -msgctxt "paging" -msgid "%1$s of %2$s" -msgstr "%1$s z %2$s" - -#: pro/fields/class-acf-repeater-table.php:477, -#: pro/fields/class-acf-repeater-table.php:478 -msgid "Next Page" -msgstr "Następna strona" - -#: pro/fields/class-acf-repeater-table.php:481, -#: pro/fields/class-acf-repeater-table.php:482 -msgid "Last Page" -msgstr "Ostatnia strona" - -#: pro/locations/class-acf-location-block.php:71 -msgid "No block types exist" -msgstr "Nie istnieją żadne typy bloków" - -#: pro/locations/class-acf-location-options-page.php:70 -msgid "No options pages exist" -msgstr "Strona opcji nie istnieje" - -#: pro/admin/views/html-settings-updates.php:6 -msgid "Deactivate License" -msgstr "Deaktywuj licencję" - -#: pro/admin/views/html-settings-updates.php:6 -msgid "Activate License" -msgstr "Aktywuj licencję" - -#: pro/admin/views/html-settings-updates.php:16 -msgid "License Information" -msgstr "Informacje o licencji" - -#: pro/admin/views/html-settings-updates.php:34 -msgid "" -"To unlock updates, please enter your license key below. If you don't have a " -"licence key, please see details & pricing." -msgstr "" -"Żeby odblokować aktualizacje proszę podać swój klucz licencyjny poniżej. " -"Jeśli nie posiadasz klucza prosimy zapoznać się ze szczegółami i cennikiem." - -#: pro/admin/views/html-settings-updates.php:37 -msgid "License Key" -msgstr "Klucz licencyjny" - -#: pro/admin/views/html-settings-updates.php:22 -msgid "Your license key is defined in wp-config.php." -msgstr "Twój klucz licencyjny jest zdefiniowany w pliku wp-config.php." - -#: pro/admin/views/html-settings-updates.php:29 -msgid "Retry Activation" -msgstr "Ponów próbę aktywacji" - -#: pro/admin/views/html-settings-updates.php:61 -msgid "Update Information" -msgstr "Informacje o aktualizacji" - -#: pro/admin/views/html-settings-updates.php:68 -msgid "Current Version" -msgstr "Zainstalowana wersja" - -#: pro/admin/views/html-settings-updates.php:76 -msgid "Latest Version" -msgstr "Najnowsza wersja" - -#: pro/admin/views/html-settings-updates.php:84 -msgid "Update Available" -msgstr "Dostępna aktualizacja" - -#: pro/admin/views/html-settings-updates.php:98 -msgid "Upgrade Notice" -msgstr "Informacje o aktualizacji" - -#: pro/admin/views/html-settings-updates.php:126 -msgid "Check For Updates" -msgstr "Sprawdź dostępność aktualizacji" - -#: pro/admin/views/html-settings-updates.php:121 -msgid "Enter your license key to unlock updates" -msgstr "Wprowadź klucz licencyjny, aby odblokować aktualizacje" - -#: pro/admin/views/html-settings-updates.php:119 -msgid "Update Plugin" -msgstr "Aktualizuj wtyczkę" - -#: pro/admin/views/html-settings-updates.php:117 -msgid "Please reactivate your license to unlock updates" -msgstr "" -"Proszę wpisać swój klucz licencyjny powyżej aby odblokować aktualizacje" diff --git a/lang/acf-pt_AO.mo b/lang/acf-pt_AO.mo deleted file mode 100644 index 1f38e28..0000000 Binary files a/lang/acf-pt_AO.mo and /dev/null differ diff --git a/lang/acf-pt_AO.po b/lang/acf-pt_AO.po deleted file mode 100644 index 25199e7..0000000 --- a/lang/acf-pt_AO.po +++ /dev/null @@ -1,5584 +0,0 @@ -# Advanced Custom Fields Translations are a combination of translate.wordpress.org contributions, -# combined with user contributed strings for the PRO version. -# Translations from translate.wordpress.org take priority over translations in this file. -# translate.wordpress.org contributions are synced at the time of each release. -# -# If you would like to contribute translations, please visit -# https://translate.wordpress.org/projects/wp-plugins/advanced-custom-fields/stable/ -# -# For additional ACF PRO strings, please submit a pull request over on the ACF GitHub repo at -# http://github.com/advancedcustomfields/acf using the .pot (and any existing .po) files in /lang/pro/ -# -# This file is distributed under the same license as Advanced Custom Fields. -msgid "" -msgstr "" -"PO-Revision-Date: 2023-11-28T09:14:32+00:00\n" -"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n" -"Language: pt_AO\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: gettext\n" -"Project-Id-Version: Advanced Custom Fields\n" - -#: includes/admin/views/global/navigation.php:221 -msgid "Renew ACF PRO License" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:17 -msgid "Renew License" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:14 -msgid "Manage License" -msgstr "" - -#: includes/admin/views/acf-field-group/options.php:102 -msgid "'High' position not supported in the Block Editor" -msgstr "" - -#: includes/admin/views/options-page-preview.php:30 -msgid "Upgrade to ACF PRO" -msgstr "" - -#. translators: %s URL to ACF options pages documentation -#: includes/admin/views/options-page-preview.php:7 -msgid "" -"ACF options pages are custom admin " -"pages for managing global settings via fields. You can create multiple pages " -"and sub-pages." -msgstr "" - -#: includes/admin/views/global/header.php:35 -msgid "Add Options Page" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:703 -msgid "In the editor used as the placeholder of the title." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:702 -msgid "Title Placeholder" -msgstr "" - -#: includes/admin/views/global/navigation.php:97 -msgid "4 Months Free" -msgstr "" - -#. translators: %s - A singular label for a post type or taxonomy. -#: includes/admin/views/global/form-top.php:56 -msgid " (Duplicated from %s)" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:298 -msgid "Select Options Pages" -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:107 -msgid "Duplicate taxonomy" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:106 -#: includes/admin/post-types/admin-taxonomy.php:106 -msgid "Create taxonomy" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:105 -msgid "Duplicate post type" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:104 -#: includes/admin/post-types/admin-taxonomy.php:108 -msgid "Create post type" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:103 -#: includes/admin/post-types/admin-taxonomy.php:105 -msgid "Link field groups" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:102 -#: includes/admin/post-types/admin-taxonomy.php:104 -msgid "Add fields" -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:121 -#: assets/build/js/acf-field-group.js:2753 -#: assets/build/js/acf-field-group.js:3236 -msgid "This Field" -msgstr "" - -#: includes/admin/admin.php:267 -msgid "ACF PRO" -msgstr "" - -#: includes/admin/admin.php:265 -msgid "Feedback" -msgstr "" - -#: includes/admin/admin.php:263 -msgid "Support" -msgstr "" - -#. translators: This text is prepended by a link to ACF's website, and appended -#. by a link to WP Engine's website. -#: includes/admin/admin.php:238 -msgid "is developed and maintained by" -msgstr "" - -#. translators: %s - either "post type" or "taxonomy" -#: includes/admin/admin-internal-post-type.php:321 -msgid "Add this %s to the location rules of the selected field groups." -msgstr "" - -#. translators: %s the URL to ACF's bidirectional relationship documentation -#: includes/acf-bidirectional-functions.php:271 -msgid "" -"Enabling the bidirectional setting allows you to update a value in the " -"target fields for each value selected for this field, adding or removing the " -"Post ID, Taxonomy ID or User ID of the item being updated. For more " -"information, please read the documentation." -msgstr "" - -#: includes/acf-bidirectional-functions.php:247 -msgid "" -"Select field(s) to store the reference back to the item being updated. You " -"may select this field. Target fields must be compatible with where this " -"field is being displayed. For example, if this field is displayed on a " -"Taxonomy, your target field should be of type Taxonomy" -msgstr "" - -#: includes/acf-bidirectional-functions.php:246 -msgid "Target Field" -msgstr "" - -#: includes/acf-bidirectional-functions.php:220 -msgid "Update a field on the selected values, referencing back to this ID" -msgstr "" - -#: includes/acf-bidirectional-functions.php:219 -msgid "Bidirectional" -msgstr "" - -#. translators: %s A field type name, such as "Relationship" -#: includes/acf-bidirectional-functions.php:192 -msgid "%s Field" -msgstr "" - -#: includes/fields/class-acf-field-page_link.php:517 -#: includes/fields/class-acf-field-post_object.php:426 -#: includes/fields/class-acf-field-select.php:407 -#: includes/fields/class-acf-field-user.php:82 -msgid "Select Multiple" -msgstr "" - -#: includes/admin/views/global/navigation.php:233 -msgid "WP Engine logo" -msgstr "" - -#: includes/admin/views/acf-taxonomy/basic-settings.php:58 -msgid "Lower case letters, underscores and dashes only, Max 32 characters." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1136 -msgid "The capability name for assigning terms of this taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1135 -msgid "Assign Terms Capability" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1119 -msgid "The capability name for deleting terms of this taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1118 -msgid "Delete Terms Capability" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1102 -msgid "The capability name for editing terms of this taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1101 -msgid "Edit Terms Capability" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1085 -msgid "The capability name for managing terms of this taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1084 -msgid "Manage Terms Capability" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:886 -msgid "" -"Sets whether posts should be excluded from search results and taxonomy " -"archive pages." -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:74 -msgid "More Tools from WP Engine" -msgstr "" - -#. translators: %s - WP Engine logo -#: includes/admin/views/acf-field-group/pro-features.php:69 -msgid "Built for those that build with WordPress, by the team at %s" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:6 -msgid "View Pricing & Upgrade" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:3 -#: includes/admin/views/options-page-preview.php:29 -msgid "Learn More" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:28 -msgid "" -"Speed up your workflow and develop better websites with features like ACF " -"Blocks and Options Pages, and sophisticated field types like Repeater, " -"Flexible Content, Clone, and Gallery." -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:2 -msgid "Unlock Advanced Features and Build Even More with ACF PRO" -msgstr "" - -#. translators: %s - singular label of post type/taxonomy, i.e. "Movie"/"Genre" -#: includes/admin/views/global/form-top.php:19 -msgid "%s fields" -msgstr "" - -#: includes/admin/post-types/admin-taxonomies.php:293 -msgid "No terms" -msgstr "" - -#: includes/admin/post-types/admin-taxonomies.php:266 -msgid "No post types" -msgstr "" - -#: includes/admin/post-types/admin-post-types.php:289 -msgid "No posts" -msgstr "" - -#: includes/admin/post-types/admin-post-types.php:263 -msgid "No taxonomies" -msgstr "" - -#: includes/admin/post-types/admin-post-types.php:208 -#: includes/admin/post-types/admin-taxonomies.php:208 -msgid "No field groups" -msgstr "" - -#: includes/admin/post-types/admin-field-groups.php:281 -msgid "No fields" -msgstr "" - -#: includes/admin/post-types/admin-field-groups.php:154 -#: includes/admin/post-types/admin-post-types.php:172 -#: includes/admin/post-types/admin-taxonomies.php:172 -msgid "No description" -msgstr "" - -#: includes/fields/class-acf-field-page_link.php:484 -#: includes/fields/class-acf-field-post_object.php:389 -#: includes/fields/class-acf-field-relationship.php:601 -msgid "Any post status" -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:284 -msgid "" -"This taxonomy key is already in use by another taxonomy registered outside " -"of ACF and cannot be used." -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:279 -msgid "" -"This taxonomy key is already in use by another taxonomy in ACF and cannot be " -"used." -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:252 -msgid "" -"The taxonomy key must only contain lower case alphanumeric characters, " -"underscores or dashes." -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:247 -msgid "The taxonomy key must be under 32 characters." -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:99 -msgid "No Taxonomies found in Trash" -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:98 -msgid "No Taxonomies found" -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:97 -msgid "Search Taxonomies" -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:96 -msgid "View Taxonomy" -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:95 -msgid "New Taxonomy" -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:94 -msgid "Edit Taxonomy" -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:93 -msgid "Add New Taxonomy" -msgstr "" - -#: includes/post-types/class-acf-post-type.php:100 -msgid "No Post Types found in Trash" -msgstr "" - -#: includes/post-types/class-acf-post-type.php:99 -msgid "No Post Types found" -msgstr "" - -#: includes/post-types/class-acf-post-type.php:98 -msgid "Search Post Types" -msgstr "" - -#: includes/post-types/class-acf-post-type.php:97 -msgid "View Post Type" -msgstr "" - -#: includes/post-types/class-acf-post-type.php:96 -msgid "New Post Type" -msgstr "" - -#: includes/post-types/class-acf-post-type.php:95 -msgid "Edit Post Type" -msgstr "" - -#: includes/post-types/class-acf-post-type.php:94 -msgid "Add New Post Type" -msgstr "" - -#: includes/post-types/class-acf-post-type.php:361 -msgid "" -"This post type key is already in use by another post type registered outside " -"of ACF and cannot be used." -msgstr "" - -#: includes/post-types/class-acf-post-type.php:356 -msgid "" -"This post type key is already in use by another post type in ACF and cannot " -"be used." -msgstr "" - -#. translators: %s a link to WordPress.org's Reserved Terms page -#: includes/post-types/class-acf-post-type.php:335 -#: includes/post-types/class-acf-taxonomy.php:258 -msgid "" -"This field must not be a WordPress reserved " -"term." -msgstr "" - -#: includes/post-types/class-acf-post-type.php:329 -msgid "" -"The post type key must only contain lower case alphanumeric characters, " -"underscores or dashes." -msgstr "" - -#: includes/post-types/class-acf-post-type.php:324 -msgid "The post type key must be under 20 characters." -msgstr "" - -#: includes/fields/class-acf-field-wysiwyg.php:27 -msgid "We do not recommend using this field in ACF Blocks." -msgstr "" - -#: includes/fields/class-acf-field-wysiwyg.php:27 -msgid "" -"Displays the WordPress WYSIWYG editor as seen in Posts and Pages allowing " -"for a rich text-editing experience that also allows for multimedia content." -msgstr "" - -#: includes/fields/class-acf-field-wysiwyg.php:25 -msgid "WYSIWYG Editor" -msgstr "" - -#: includes/fields/class-acf-field-user.php:17 -msgid "" -"Allows the selection of one or more users which can be used to create " -"relationships between data objects." -msgstr "" - -#: includes/fields/class-acf-field-url.php:26 -msgid "A text input specifically designed for storing web addresses." -msgstr "" - -#: includes/fields/class-acf-field-url.php:25 -msgid "URL" -msgstr "" - -#: includes/fields/class-acf-field-true_false.php:27 -msgid "" -"A toggle that allows you to pick a value of 1 or 0 (on or off, true or " -"false, etc). Can be presented as a stylized switch or checkbox." -msgstr "" - -#: includes/fields/class-acf-field-time_picker.php:27 -msgid "" -"An interactive UI for picking a time. The time format can be customized " -"using the field settings." -msgstr "" - -#: includes/fields/class-acf-field-textarea.php:26 -msgid "A basic textarea input for storing paragraphs of text." -msgstr "" - -#: includes/fields/class-acf-field-text.php:26 -msgid "A basic text input, useful for storing single string values." -msgstr "" - -#: includes/fields/class-acf-field-taxonomy.php:22 -msgid "" -"Allows the selection of one or more taxonomy terms based on the criteria and " -"options specified in the fields settings." -msgstr "" - -#: includes/fields/class-acf-field-tab.php:28 -msgid "" -"Allows you to group fields into tabbed sections in the edit screen. Useful " -"for keeping fields organized and structured." -msgstr "" - -#: includes/fields/class-acf-field-select.php:27 -msgid "A dropdown list with a selection of choices that you specify." -msgstr "" - -#: includes/fields/class-acf-field-relationship.php:19 -msgid "" -"A dual-column interface to select one or more posts, pages, or custom post " -"type items to create a relationship with the item that you're currently " -"editing. Includes options to search and filter." -msgstr "" - -#: includes/fields/class-acf-field-range.php:26 -msgid "" -"An input for selecting a numerical value within a specified range using a " -"range slider element." -msgstr "" - -#: includes/fields/class-acf-field-radio.php:27 -msgid "" -"A group of radio button inputs that allows the user to make a single " -"selection from values that you specify." -msgstr "" - -#: includes/fields/class-acf-field-post_object.php:19 -msgid "" -"An interactive and customizable UI for picking one or many posts, pages or " -"post type items with the option to search. " -msgstr "" - -#: includes/fields/class-acf-field-password.php:26 -msgid "An input for providing a password using a masked field." -msgstr "" - -#: includes/fields/class-acf-field-page_link.php:476 -#: includes/fields/class-acf-field-post_object.php:381 -#: includes/fields/class-acf-field-relationship.php:593 -msgid "Filter by Post Status" -msgstr "" - -#: includes/fields/class-acf-field-page_link.php:27 -msgid "" -"An interactive dropdown to select one or more posts, pages, custom post type " -"items or archive URLs, with the option to search." -msgstr "" - -#: includes/fields/class-acf-field-oembed.php:27 -msgid "" -"An interactive component for embedding videos, images, tweets, audio and " -"other content by making use of the native WordPress oEmbed functionality." -msgstr "" - -#: includes/fields/class-acf-field-number.php:26 -msgid "An input limited to numerical values." -msgstr "" - -#: includes/fields/class-acf-field-message.php:28 -msgid "" -"Used to display a message to editors alongside other fields. Useful for " -"providing additional context or instructions around your fields." -msgstr "" - -#: includes/fields/class-acf-field-link.php:27 -msgid "" -"Allows you to specify a link and its properties such as title and target " -"using the WordPress native link picker." -msgstr "" - -#: includes/fields/class-acf-field-image.php:27 -msgid "Uses the native WordPress media picker to upload, or choose images." -msgstr "" - -#: includes/fields/class-acf-field-group.php:27 -msgid "" -"Provides a way to structure fields into groups to better organize the data " -"and the edit screen." -msgstr "" - -#: includes/fields/class-acf-field-google-map.php:27 -msgid "" -"An interactive UI for selecting a location using Google Maps. Requires a " -"Google Maps API key and additional configuration to display correctly." -msgstr "" - -#: includes/fields/class-acf-field-file.php:27 -msgid "Uses the native WordPress media picker to upload, or choose files." -msgstr "" - -#: includes/fields/class-acf-field-email.php:26 -msgid "A text input specifically designed for storing email addresses." -msgstr "" - -#: includes/fields/class-acf-field-date_time_picker.php:27 -msgid "" -"An interactive UI for picking a date and time. The date return format can be " -"customized using the field settings." -msgstr "" - -#: includes/fields/class-acf-field-date_picker.php:27 -msgid "" -"An interactive UI for picking a date. The date return format can be " -"customized using the field settings." -msgstr "" - -#: includes/fields/class-acf-field-color_picker.php:27 -msgid "An interactive UI for selecting a color, or specifying a Hex value." -msgstr "" - -#: includes/fields/class-acf-field-checkbox.php:27 -msgid "" -"A group of checkbox inputs that allow the user to select one, or multiple " -"values that you specify." -msgstr "" - -#: includes/fields/class-acf-field-button-group.php:26 -msgid "" -"A group of buttons with values that you specify, users can choose one option " -"from the values provided." -msgstr "" - -#: includes/fields/class-acf-field-accordion.php:27 -msgid "" -"Allows you to group and organize custom fields into collapsable panels that " -"are shown while editing content. Useful for keeping large datasets tidy." -msgstr "" - -#: includes/fields.php:475 -msgid "" -"This provides a solution for repeating content such as slides, team members, " -"and call-to-action tiles, by acting as a parent to a set of subfields which " -"can be repeated again and again." -msgstr "" - -#: includes/fields.php:465 -msgid "" -"This provides an interactive interface for managing a collection of " -"attachments. Most settings are similar to the Image field type. Additional " -"settings allow you to specify where new attachments are added in the gallery " -"and the minimum/maximum number of attachments allowed." -msgstr "" - -#: includes/fields.php:455 -msgid "" -"This provides a simple, structured, layout-based editor. The Flexible " -"Content field allows you to define, create and manage content with total " -"control by using layouts and subfields to design the available blocks." -msgstr "" - -#: includes/fields.php:445 -msgid "" -"This allows you to select and display existing fields. It does not duplicate " -"any fields in the database, but loads and displays the selected fields at " -"run-time. The Clone field can either replace itself with the selected fields " -"or display the selected fields as a group of subfields." -msgstr "" - -#: includes/fields.php:442 -msgctxt "noun" -msgid "Clone" -msgstr "" - -#: includes/admin/views/global/navigation.php:86 includes/fields.php:357 -msgid "PRO" -msgstr "" - -#: includes/fields.php:355 includes/fields.php:412 -msgid "Advanced" -msgstr "" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:85 -msgid "JSON (newer)" -msgstr "" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:81 -msgid "Original" -msgstr "" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:55 -msgid "Invalid post ID." -msgstr "" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:47 -msgid "Invalid post type selected for review." -msgstr "" - -#: includes/admin/views/global/navigation.php:186 -msgid "More" -msgstr "" - -#: includes/admin/views/browse-fields-modal.php:86 -msgid "Tutorial" -msgstr "" - -#: includes/admin/views/browse-fields-modal.php:75 -msgid "Available with ACF PRO" -msgstr "" - -#: includes/admin/views/browse-fields-modal.php:63 -msgid "Select Field" -msgstr "" - -#. translators: %s: A link to the popular fields used in ACF -#: includes/admin/views/browse-fields-modal.php:50 -msgid "Try a different search term or browse %s" -msgstr "" - -#: includes/admin/views/browse-fields-modal.php:47 -msgid "Popular fields" -msgstr "" - -#. translators: %s: The invalid search term -#: includes/admin/views/browse-fields-modal.php:40 -msgid "No search results for '%s'" -msgstr "" - -#: includes/admin/views/browse-fields-modal.php:13 -msgid "Search fields..." -msgstr "" - -#: includes/admin/views/browse-fields-modal.php:11 -msgid "Select Field Type" -msgstr "" - -#: includes/admin/views/browse-fields-modal.php:4 -msgid "Popular" -msgstr "" - -#: includes/admin/views/acf-taxonomy/list-empty.php:7 -msgid "Add Taxonomy" -msgstr "" - -#: includes/admin/views/acf-taxonomy/list-empty.php:6 -msgid "Create custom taxonomies to classify post type content" -msgstr "" - -#: includes/admin/views/acf-taxonomy/list-empty.php:5 -msgid "Add Your First Taxonomy" -msgstr "" - -#: includes/admin/views/acf-taxonomy/basic-settings.php:122 -msgid "Hierarchical taxonomies can have descendants (like categories)." -msgstr "" - -#: includes/admin/views/acf-taxonomy/basic-settings.php:107 -msgid "Makes a taxonomy visible on the frontend and in the admin dashboard." -msgstr "" - -#: includes/admin/views/acf-taxonomy/basic-settings.php:91 -msgid "One or many post types that can be classified with this taxonomy." -msgstr "" - -#. translators: example taxonomy -#: includes/admin/views/acf-taxonomy/basic-settings.php:60 -msgid "genre" -msgstr "" - -#. translators: example taxonomy -#: includes/admin/views/acf-taxonomy/basic-settings.php:42 -msgid "Genre" -msgstr "" - -#. translators: example taxonomy -#: includes/admin/views/acf-taxonomy/basic-settings.php:25 -msgid "Genres" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1211 -msgid "" -"Optional custom controller to use instead of `WP_REST_Terms_Controller `." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1155 -msgid "Expose this post type in the REST API." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1055 -msgid "Customize the query variable name" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1028 -msgid "" -"Terms can be accessed using the non-pretty permalink, e.g., {query_var}" -"={term_slug}." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:981 -msgid "Parent-child terms in URLs for hierarchical taxonomies." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:941 -msgid "Customize the slug used in the URL" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:924 -msgid "Permalinks for this taxonomy are disabled." -msgstr "" - -#. translators: this string will be appended with the new permalink structure. -#: includes/admin/views/acf-taxonomy/advanced-settings.php:921 -msgid "" -"Rewrite the URL using the taxonomy key as the slug. Your permalink structure " -"will be" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:913 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1030 -#: includes/admin/views/acf-taxonomy/basic-settings.php:57 -msgid "Taxonomy Key" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:911 -msgid "Select the type of permalink to use for this taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:896 -msgid "Display a column for the taxonomy on post type listing screens." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:895 -msgid "Show Admin Column" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:882 -msgid "Show the taxonomy in the quick/bulk edit panel." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:881 -msgid "Quick Edit" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:868 -msgid "List the taxonomy in the Tag Cloud Widget controls." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:867 -msgid "Tag Cloud" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:824 -msgid "" -"A PHP function name to be called for sanitizing taxonomy data saved from a " -"meta box." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:823 -msgid "Meta Box Sanitization Callback" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:805 -msgid "" -"A PHP function name to be called to handle the content of a meta box on your " -"taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:804 -msgid "Register Meta Box Callback" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:763 -msgid "No Meta Box" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:762 -msgid "Custom Meta Box" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:758 -msgid "" -"Controls the meta box on the content editor screen. By default, the " -"Categories meta box is shown for hierarchical taxonomies, and the Tags meta " -"box is shown for non-hierarchical taxonomies." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:757 -msgid "Meta Box" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:746 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:767 -msgid "Categories Meta Box" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:745 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:766 -msgid "Tags Meta Box" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:704 -msgid "A link to a tag" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:703 -msgid "Describes a navigation link block variation used in the block editor." -msgstr "" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:698 -msgid "A link to a %s" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:683 -msgid "Tag Link" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:682 -msgid "" -"Assigns a title for navigation link block variation used in the block editor." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:663 -msgid "← Go to tags" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:662 -msgid "" -"Assigns the text used to link back to the main index after updating a term." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:661 -msgid "Back To Items" -msgstr "" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:657 -msgid "← Go to %s" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:642 -msgid "Tags list" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:641 -msgid "Assigns text to the table hidden heading." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:622 -msgid "Tags list navigation" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:621 -msgid "Assigns text to the table pagination hidden heading." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:597 -msgid "Filter by category" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:596 -msgid "Assigns text to the filter button in the posts lists table." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:595 -msgid "Filter By Item" -msgstr "" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:591 -msgid "Filter by %s" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:575 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:576 -msgid "" -"The description is not prominent by default; however, some themes may show " -"it." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:574 -msgid "Describes the Description field on the Edit Tags screen." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:573 -msgid "Description Field Description" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:554 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:555 -msgid "" -"Assign a parent term to create a hierarchy. The term Jazz, for example, " -"would be the parent of Bebop and Big Band" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:553 -msgid "Describes the Parent field on the Edit Tags screen." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:552 -msgid "Parent Field Description" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:538 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:539 -msgid "" -"The \"slug\" is the URL-friendly version of the name. It is usually all " -"lower case and contains only letters, numbers, and hyphens." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:537 -msgid "Describes the Slug field on the Edit Tags screen." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:536 -msgid "Slug Field Description" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:522 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:523 -msgid "The name is how it appears on your site" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:521 -msgid "Describes the Name field on the Edit Tags screen." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:520 -msgid "Name Field Description" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:507 -msgid "No tags" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:506 -msgid "" -"Assigns the text displayed in the posts and media list tables when no tags " -"or categories are available." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:505 -msgid "No Terms" -msgstr "" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:501 -msgid "No %s" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:486 -msgid "No tags found" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:485 -msgid "" -"Assigns the text displayed when clicking the 'choose from most used' text in " -"the taxonomy meta box when no tags are available, and assigns the text used " -"in the terms list table when there are no items for a taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:484 -msgid "Not Found" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:463 -msgid "Assigns text to the Title field of the Most Used tab." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:462 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:464 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:465 -msgid "Most Used" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:444 -msgid "Choose from the most used tags" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:443 -msgid "" -"Assigns the 'choose from most used' text used in the meta box when " -"JavaScript is disabled. Only used on non-hierarchical taxonomies." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:442 -msgid "Choose From Most Used" -msgstr "" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:438 -msgid "Choose from the most used %s" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:418 -msgid "Add or remove tags" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:417 -msgid "" -"Assigns the add or remove items text used in the meta box when JavaScript is " -"disabled. Only used on non-hierarchical taxonomies" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:416 -msgid "Add Or Remove Items" -msgstr "" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:412 -msgid "Add or remove %s" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:392 -msgid "Separate tags with commas" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:391 -msgid "" -"Assigns the separate item with commas text used in the taxonomy meta box. " -"Only used on non-hierarchical taxonomies." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:390 -msgid "Separate Items With Commas" -msgstr "" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:386 -msgid "Separate %s with commas" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:366 -msgid "Popular Tags" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:365 -msgid "Assigns popular items text. Only used for non-hierarchical taxonomies." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:364 -msgid "Popular Items" -msgstr "" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:361 -msgid "Popular %s" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:347 -msgid "Search Tags" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:346 -msgid "Assigns search items text." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:323 -msgid "Parent Category:" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:322 -msgid "Assigns parent item text, but with a colon (:) added to the end." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:321 -msgid "Parent Item With Colon" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:298 -msgid "Parent Category" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:297 -msgid "Assigns parent item text. Only used on hierarchical taxonomies." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:296 -msgid "Parent Item" -msgstr "" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:293 -msgid "Parent %s" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:278 -msgid "New Tag Name" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:277 -msgid "Assigns the new item name text." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:276 -msgid "New Item Name" -msgstr "" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:273 -msgid "New %s Name" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:258 -msgid "Add New Tag" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:257 -msgid "Assigns the add new item text." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:238 -msgid "Update Tag" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:237 -msgid "Assigns the update item text." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:236 -msgid "Update Item" -msgstr "" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:233 -msgid "Update %s" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:218 -msgid "View Tag" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:217 -msgid "In the admin bar to view term during editing." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:198 -msgid "Edit Tag" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:197 -msgid "At the top of the editor screen when editing a term." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:178 -msgid "All Tags" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:177 -msgid "Assigns the all items text." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:158 -msgid "Assigns the menu name text." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:157 -msgid "Menu Label" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:131 -msgid "Active taxonomies are enabled and registered with WordPress." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:115 -msgid "A descriptive summary of the taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:95 -msgid "A descriptive summary of the term." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:94 -msgid "Term Description" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:76 -msgid "Single word, no spaces. Underscores and dashes allowed." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:75 -msgid "Term Slug" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:56 -msgid "The name of the default term." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:55 -msgid "Term Name" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:41 -msgid "" -"Create a term for the taxonomy that cannot be deleted. It will not be " -"selected for posts by default." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:40 -msgid "Default Term" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:28 -msgid "" -"Whether terms in this taxonomy should be sorted in the order they are " -"provided to `wp_set_object_terms()`." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:27 -msgid "Sort Terms" -msgstr "" - -#: includes/admin/views/acf-post-type/list-empty.php:7 -msgid "Add Post Type" -msgstr "" - -#: includes/admin/views/acf-post-type/list-empty.php:6 -msgid "" -"Expand the functionality of WordPress beyond standard posts and pages with " -"custom post types." -msgstr "" - -#: includes/admin/views/acf-post-type/list-empty.php:5 -msgid "Add Your First Post Type" -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:136 -#: includes/admin/views/acf-taxonomy/basic-settings.php:135 -msgid "I know what I'm doing, show me all the options." -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:135 -#: includes/admin/views/acf-taxonomy/basic-settings.php:134 -msgid "Advanced Configuration" -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:123 -msgid "Hierarchical post types can have descendants (like pages)." -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:122 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:980 -#: includes/admin/views/acf-taxonomy/basic-settings.php:121 -msgid "Hierarchical" -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:107 -msgid "Visible on the frontend and in the admin dashboard." -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:106 -#: includes/admin/views/acf-taxonomy/basic-settings.php:106 -msgid "Public" -msgstr "" - -#. translators: example post type -#: includes/admin/views/acf-post-type/basic-settings.php:59 -msgid "movie" -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:57 -msgid "Lower case letters, underscores and dashes only, Max 20 characters." -msgstr "" - -#. translators: example post type -#: includes/admin/views/acf-post-type/basic-settings.php:41 -msgid "Movie" -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:39 -#: includes/admin/views/acf-taxonomy/basic-settings.php:40 -msgid "Singular Label" -msgstr "" - -#. translators: example post type -#: includes/admin/views/acf-post-type/basic-settings.php:24 -msgid "Movies" -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:22 -#: includes/admin/views/acf-taxonomy/basic-settings.php:23 -msgid "Plural Label" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1270 -msgid "" -"Optional custom controller to use instead of `WP_REST_Posts_Controller`." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1269 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1210 -msgid "Controller Class" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1251 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1191 -msgid "The namespace part of the REST API URL." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1250 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1190 -msgid "Namespace Route" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1232 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1172 -msgid "The base URL for the post type REST API URLs." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1231 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1171 -msgid "Base URL" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1217 -msgid "" -"Exposes this post type in the REST API. Required to use the block editor." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1216 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1154 -msgid "Show In REST API" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1195 -msgid "Customize the query variable name." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1194 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1054 -msgid "Query Variable" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1172 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1032 -msgid "No Query Variable Support" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1171 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1031 -msgid "Custom Query Variable" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1168 -msgid "" -"Items can be accessed using the non-pretty permalink, eg. {post_type}" -"={post_slug}." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1167 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1027 -msgid "Query Variable Support" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1142 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1003 -msgid "URLs for an item and items can be accessed with a query string." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1141 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1002 -msgid "Publicly Queryable" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1120 -msgid "Custom slug for the Archive URL." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1119 -msgid "Archive Slug" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1106 -msgid "" -"Has an item archive that can be customized with an archive template file in " -"your theme." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1105 -msgid "Archive" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1085 -msgid "Pagination support for the items URLs such as the archives." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1084 -msgid "Pagination" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1067 -msgid "RSS feed URL for the post type items." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1066 -msgid "Feed URL" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1048 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:961 -msgid "" -"Alters the permalink structure to add the `WP_Rewrite::$front` prefix to " -"URLs." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1047 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:960 -msgid "Front URL Prefix" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1028 -msgid "Customize the slug used in the URL." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1027 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:940 -msgid "URL Slug" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1011 -msgid "Permalinks for this post type are disabled." -msgstr "" - -#. translators: this string will be appended with the new permalink structure. -#: includes/admin/views/acf-post-type/advanced-settings.php:1010 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:923 -msgid "" -"Rewrite the URL using a custom slug defined in the input below. Your " -"permalink structure will be" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1002 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:915 -msgid "No Permalink (prevent URL rewriting)" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1001 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:914 -msgid "Custom Permalink" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1000 -#: includes/admin/views/acf-post-type/advanced-settings.php:1170 -#: includes/admin/views/acf-post-type/basic-settings.php:56 -msgid "Post Type Key" -msgstr "" - -#. translators: this string will be appended with the new permalink structure. -#: includes/admin/views/acf-post-type/advanced-settings.php:998 -#: includes/admin/views/acf-post-type/advanced-settings.php:1008 -msgid "" -"Rewrite the URL using the post type key as the slug. Your permalink " -"structure will be" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:996 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:910 -msgid "Permalink Rewrite" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:982 -msgid "Delete items by a user when that user is deleted." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:981 -msgid "Delete With User" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:967 -msgid "Allow the post type to be exported from 'Tools' > 'Export'." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:966 -msgid "Can Export" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:935 -msgid "Optionally provide a plural to be used in capabilities." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:934 -msgid "Plural Capability Name" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:916 -msgid "Choose another post type to base the capabilities for this post type." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:915 -msgid "Singular Capability Name" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:901 -msgid "" -"By default the capabilities of the post type will inherit the 'Post' " -"capability names, eg. edit_post, delete_posts. Enable to use post type " -"specific capabilities, eg. edit_{singular}, delete_{plural}." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:900 -msgid "Rename Capabilities" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:885 -msgid "Exclude From Search" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:872 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:854 -msgid "" -"Allow items to be added to menus in the 'Appearance' > 'Menus' screen. Must " -"be turned on in 'Screen options'." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:871 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:853 -msgid "Appearance Menus Support" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:853 -msgid "Appears as an item in the 'New' menu in the admin bar." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:852 -msgid "Show In Admin Bar" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:821 -msgid "" -"A PHP function name to be called when setting up the meta boxes for the edit " -"screen." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:820 -msgid "Custom Meta Box Callback" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:800 -msgid "Menu Icon" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:782 -msgid "The position in the sidebar menu in the admin dashboard." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:781 -msgid "Menu Position" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:763 -msgid "" -"By default the post type will get a new top level item in the admin menu. If " -"an existing top level item is supplied here, the post type will be added as " -"a submenu item under it." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:762 -msgid "Admin Menu Parent" -msgstr "" - -#. translators: %s = "dashicon class name", link to the WordPress dashicon -#. documentation. -#: includes/admin/views/acf-post-type/advanced-settings.php:750 -msgid "" -"The icon used for the post type menu item in the admin dashboard. Can be a " -"URL or %s to use for the icon." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:745 -msgid "Dashicon class name" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:734 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:734 -msgid "Admin editor navigation in the sidebar menu." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:733 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:733 -msgid "Show In Admin Menu" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:720 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:719 -msgid "Items can be edited and managed in the admin dashboard." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:719 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:718 -msgid "Show In UI" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:689 -msgid "A link to a post." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:688 -msgid "Description for a navigation link block variation." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:687 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:702 -msgid "Item Link Description" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:683 -msgid "A link to a %s." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:668 -msgid "Post Link" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:667 -msgid "Title for a navigation link block variation." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:666 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:681 -msgid "Item Link" -msgstr "" - -#. translators: %s Singular form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:663 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:678 -msgid "%s Link" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:648 -msgid "Post updated." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:647 -msgid "In the editor notice after an item is updated." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:646 -msgid "Item Updated" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:643 -msgid "%s updated." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:628 -msgid "Post scheduled." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:627 -msgid "In the editor notice after scheduling an item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:626 -msgid "Item Scheduled" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:623 -msgid "%s scheduled." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:608 -msgid "Post reverted to draft." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:607 -msgid "In the editor notice after reverting an item to draft." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:606 -msgid "Item Reverted To Draft" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:603 -msgid "%s reverted to draft." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:588 -msgid "Post published privately." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:587 -msgid "In the editor notice after publishing a private item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:586 -msgid "Item Published Privately" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:583 -msgid "%s published privately." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:568 -msgid "Post published." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:567 -msgid "In the editor notice after publishing an item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:566 -msgid "Item Published" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:563 -msgid "%s published." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:548 -msgid "Posts list" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:547 -msgid "Used by screen readers for the items list on the post type list screen." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:546 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:640 -msgid "Items List" -msgstr "" - -#. translators: %s Plural form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:543 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:637 -msgid "%s list" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:528 -msgid "Posts list navigation" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:527 -msgid "" -"Used by screen readers for the filter list pagination on the post type list " -"screen." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:526 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:620 -msgid "Items List Navigation" -msgstr "" - -#. translators: %s Plural form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:523 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:617 -msgid "%s list navigation" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:507 -msgid "Filter posts by date" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:506 -msgid "" -"Used by screen readers for the filter by date heading on the post type list " -"screen." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:505 -msgid "Filter Items By Date" -msgstr "" - -#. translators: %s Plural form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:501 -msgid "Filter %s by date" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:486 -msgid "Filter posts list" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:485 -msgid "" -"Used by screen readers for the filter links heading on the post type list " -"screen." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:484 -msgid "Filter Items List" -msgstr "" - -#. translators: %s Plural form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:480 -msgid "Filter %s list" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:464 -msgid "In the media modal showing all media uploaded to this item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:463 -msgid "Uploaded To This Item" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:459 -msgid "Uploaded to this %s" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:444 -msgid "Insert into post" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:443 -msgid "As the button label when adding media to content." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:442 -msgid "Insert Into Media Button" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:438 -msgid "Insert into %s" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:423 -msgid "Use as featured image" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:422 -msgid "" -"As the button label for selecting to use an image as the featured image." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:421 -msgid "Use Featured Image" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:408 -msgid "Remove featured image" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:407 -msgid "As the button label when removing the featured image." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:406 -msgid "Remove Featured Image" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:393 -msgid "Set featured image" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:392 -msgid "As the button label when setting the featured image." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:391 -msgid "Set Featured Image" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:378 -msgid "Featured image" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:377 -msgid "In the editor used for the title of the featured image meta box." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:376 -msgid "Featured Image Meta Box" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:363 -msgid "Post Attributes" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:362 -msgid "In the editor used for the title of the post attributes meta box." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:361 -msgid "Attributes Meta Box" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:358 -msgid "%s Attributes" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:343 -msgid "Post Archives" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:342 -msgid "" -"Adds 'Post Type Archive' items with this label to the list of posts shown " -"when adding items to an existing menu in a CPT with archives enabled. Only " -"appears when editing menus in 'Live Preview' mode and a custom archive slug " -"has been provided." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:341 -msgid "Archives Nav Menu" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:338 -msgid "%s Archives" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:323 -msgid "No posts found in Trash" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:322 -msgid "" -"At the top of the post type list screen when there are no posts in the trash." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:321 -msgid "No Items Found in Trash" -msgstr "" - -#. translators: %s Plural form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:317 -msgid "No %s found in Trash" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:302 -msgid "No posts found" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:301 -msgid "" -"At the top of the post type list screen when there are no posts to display." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:300 -msgid "No Items Found" -msgstr "" - -#. translators: %s Plural form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:296 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:480 -msgid "No %s found" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:281 -msgid "Search Posts" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:280 -msgid "At the top of the items screen when searching for an item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:279 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:345 -msgid "Search Items" -msgstr "" - -#. translators: %s Singular form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:276 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:342 -msgid "Search %s" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:261 -msgid "Parent Page:" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:260 -msgid "For hierarchical types in the post type list screen." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:259 -msgid "Parent Item Prefix" -msgstr "" - -#. translators: %s Singular form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:256 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:318 -msgid "Parent %s:" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:241 -msgid "New Post" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:239 -msgid "New Item" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:236 -msgid "New %s" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:206 -msgid "Add New Post" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:205 -msgid "At the top of the editor screen when adding a new item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:204 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:256 -msgid "Add New Item" -msgstr "" - -#. translators: %s Singular form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:201 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:253 -msgid "Add New %s" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:186 -msgid "View Posts" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:185 -msgid "" -"Appears in the admin bar in the 'All Posts' view, provided the post type " -"supports archives and the home page is not an archive of that post type." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:184 -msgid "View Items" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:166 -msgid "View Post" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:165 -msgid "In the admin bar to view item when editing it." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:164 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:216 -msgid "View Item" -msgstr "" - -#. translators: %s Singular form of post type name -#. translators: %s Plural form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:161 -#: includes/admin/views/acf-post-type/advanced-settings.php:181 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:213 -msgid "View %s" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:146 -msgid "Edit Post" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:145 -msgid "At the top of the editor screen when editing an item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:144 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:196 -msgid "Edit Item" -msgstr "" - -#. translators: %s Singular form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:141 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:193 -msgid "Edit %s" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:126 -msgid "All Posts" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:125 -#: includes/admin/views/acf-post-type/advanced-settings.php:220 -#: includes/admin/views/acf-post-type/advanced-settings.php:240 -msgid "In the post type submenu in the admin dashboard." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:124 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:176 -msgid "All Items" -msgstr "" - -#. translators: %s Plural form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:121 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:173 -msgid "All %s" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:105 -msgid "Admin menu name for the post type." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:104 -msgid "Menu Name" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:90 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:142 -msgid "Regenerate all labels using the Singular and Plural labels" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:88 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:140 -msgid "Regenerate" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:79 -msgid "Active post types are enabled and registered with WordPress." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:63 -msgid "A descriptive summary of the post type." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:48 -msgid "Add Custom" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:42 -msgid "Enable various features in the content editor." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:31 -msgid "Post Formats" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:25 -msgid "Editor" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:24 -msgid "Trackbacks" -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:87 -msgid "Select existing taxonomies to classify items of the post type." -msgstr "" - -#: includes/admin/views/acf-field-group/field.php:145 -msgid "Browse Fields" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:292 -msgid "Nothing to import" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:287 -msgid ". The Custom Post Type UI plugin can be deactivated." -msgstr "" - -#. translators: %d - number of items imported from CPTUI -#: includes/admin/tools/class-acf-admin-tool-import.php:278 -msgid "Imported %d item from Custom Post Type UI -" -msgid_plural "Imported %d items from Custom Post Type UI -" -msgstr[0] "" -msgstr[1] "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:262 -msgid "Failed to import taxonomies." -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:244 -msgid "Failed to import post types." -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:233 -msgid "Nothing from Custom Post Type UI plugin selected for import." -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:209 -msgid "Imported 1 item" -msgid_plural "Imported %s items" -msgstr[0] "" -msgstr[1] "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:122 -msgid "" -"Importing a Post Type or Taxonomy with the same key as one that already " -"exists will overwrite the settings for the existing Post Type or Taxonomy " -"with those of the import." -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:111 -#: includes/admin/tools/class-acf-admin-tool-import.php:127 -msgid "Import from Custom Post Type UI" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:412 -msgid "" -"The following code can be used to register a local version of the selected " -"items. Storing field groups, post types, or taxonomies locally can provide " -"many benefits such as faster load times, version control & dynamic fields/" -"settings. Simply copy and paste the following code to your theme's functions." -"php file or include it within an external file, then deactivate or delete " -"the items from the ACF admin." -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:411 -msgid "Export - Generate PHP" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:384 -msgid "Export" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:276 -msgid "Select Taxonomies" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:254 -msgid "Select Post Types" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:167 -msgid "Exported 1 item." -msgid_plural "Exported %s items." -msgstr[0] "" -msgstr[1] "" - -#: includes/admin/post-types/admin-taxonomy.php:129 -#: assets/build/js/acf-internal-post-type.js:182 -#: assets/build/js/acf-internal-post-type.js:256 -msgid "Category" -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:127 -#: assets/build/js/acf-internal-post-type.js:179 -#: assets/build/js/acf-internal-post-type.js:253 -msgid "Tag" -msgstr "" - -#. translators: %s taxonomy name -#: includes/admin/post-types/admin-taxonomy.php:82 -msgid "%s taxonomy created" -msgstr "" - -#. translators: %s taxonomy name -#: includes/admin/post-types/admin-taxonomy.php:76 -msgid "%s taxonomy updated" -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:56 -msgid "Taxonomy draft updated." -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:55 -msgid "Taxonomy scheduled for." -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:54 -msgid "Taxonomy submitted." -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:53 -msgid "Taxonomy saved." -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:49 -msgid "Taxonomy deleted." -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:48 -msgid "Taxonomy updated." -msgstr "" - -#: includes/admin/post-types/admin-taxonomies.php:377 -#: includes/admin/post-types/admin-taxonomy.php:157 -msgid "" -"This taxonomy could not be registered because its key is in use by another " -"taxonomy registered by another plugin or theme." -msgstr "" - -#. translators: %s number of taxonomies synchronized -#: includes/admin/post-types/admin-taxonomies.php:359 -msgid "Taxonomy synchronized." -msgid_plural "%s taxonomies synchronized." -msgstr[0] "" -msgstr[1] "" - -#. translators: %s number of taxonomies duplicated -#: includes/admin/post-types/admin-taxonomies.php:352 -msgid "Taxonomy duplicated." -msgid_plural "%s taxonomies duplicated." -msgstr[0] "" -msgstr[1] "" - -#. translators: %s number of taxonomies deactivated -#: includes/admin/post-types/admin-taxonomies.php:345 -msgid "Taxonomy deactivated." -msgid_plural "%s taxonomies deactivated." -msgstr[0] "" -msgstr[1] "" - -#. translators: %s number of taxonomies activated -#: includes/admin/post-types/admin-taxonomies.php:338 -msgid "Taxonomy activated." -msgid_plural "%s taxonomies activated." -msgstr[0] "" -msgstr[1] "" - -#: includes/admin/post-types/admin-taxonomies.php:139 -msgid "Terms" -msgstr "" - -#. translators: %s number of post types synchronized -#: includes/admin/post-types/admin-post-types.php:352 -msgid "Post type synchronized." -msgid_plural "%s post types synchronized." -msgstr[0] "" -msgstr[1] "" - -#. translators: %s number of post types duplicated -#: includes/admin/post-types/admin-post-types.php:345 -msgid "Post type duplicated." -msgid_plural "%s post types duplicated." -msgstr[0] "" -msgstr[1] "" - -#. translators: %s number of post types deactivated -#: includes/admin/post-types/admin-post-types.php:338 -msgid "Post type deactivated." -msgid_plural "%s post types deactivated." -msgstr[0] "" -msgstr[1] "" - -#. translators: %s number of post types activated -#: includes/admin/post-types/admin-post-types.php:331 -msgid "Post type activated." -msgid_plural "%s post types activated." -msgstr[0] "" -msgstr[1] "" - -#: includes/admin/post-types/admin-post-types.php:112 -#: includes/admin/post-types/admin-taxonomies.php:137 -#: includes/admin/tools/class-acf-admin-tool-import.php:82 -#: includes/admin/views/acf-taxonomy/basic-settings.php:82 -#: includes/post-types/class-acf-post-type.php:91 -msgid "Post Types" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:162 -#: includes/admin/post-types/admin-taxonomy.php:164 -msgid "Advanced Settings" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:161 -#: includes/admin/post-types/admin-taxonomy.php:163 -msgid "Basic Settings" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:155 -#: includes/admin/post-types/admin-post-types.php:370 -msgid "" -"This post type could not be registered because its key is in use by another " -"post type registered by another plugin or theme." -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:128 -#: assets/build/js/acf-internal-post-type.js:176 -#: assets/build/js/acf-internal-post-type.js:250 -msgid "Pages" -msgstr "" - -#: includes/admin/admin-internal-post-type.php:355 -msgid "Link Existing Field Groups" -msgstr "" - -#. translators: %s post type name -#: includes/admin/post-types/admin-post-type.php:80 -msgid "%s post type created" -msgstr "" - -#. translators: %s taxonomy name -#: includes/admin/post-types/admin-taxonomy.php:78 -msgid "Add fields to %s" -msgstr "" - -#. translators: %s post type name -#: includes/admin/post-types/admin-post-type.php:76 -msgid "%s post type updated" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:56 -msgid "Post type draft updated." -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:55 -msgid "Post type scheduled for." -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:54 -msgid "Post type submitted." -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:53 -msgid "Post type saved." -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:50 -msgid "Post type updated." -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:49 -msgid "Post type deleted." -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:120 -#: assets/build/js/acf-field-group.js:1146 -#: assets/build/js/acf-field-group.js:1366 -msgid "Type to search..." -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:105 -#: assets/build/js/acf-field-group.js:1172 -#: assets/build/js/acf-field-group.js:2319 -#: assets/build/js/acf-field-group.js:1414 -#: assets/build/js/acf-field-group.js:2727 -msgid "PRO Only" -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:97 -#: assets/build/js/acf-internal-post-type.js:308 -#: assets/build/js/acf-internal-post-type.js:417 -msgid "Field groups linked successfully." -msgstr "" - -#. translators: %s - URL to ACF tools page. -#: includes/admin/admin.php:195 -msgid "" -"Import Post Types and Taxonomies registered with Custom Post Type UI and " -"manage them with ACF. Get Started." -msgstr "" - -#: includes/admin/admin.php:48 includes/admin/admin.php:267 -msgid "ACF" -msgstr "" - -#: includes/admin/admin-internal-post-type.php:322 -msgid "taxonomy" -msgstr "" - -#: includes/admin/admin-internal-post-type.php:322 -msgid "post type" -msgstr "" - -#: includes/admin/admin-internal-post-type.php:346 -msgid "Done" -msgstr "" - -#: includes/admin/admin-internal-post-type.php:332 -msgid "Field Group(s)" -msgstr "" - -#: includes/admin/admin-internal-post-type.php:331 -msgid "Select one or many field groups..." -msgstr "" - -#: includes/admin/admin-internal-post-type.php:330 -msgid "Please select the field groups to link." -msgstr "" - -#: includes/admin/admin-internal-post-type.php:288 -msgid "Field group linked successfully." -msgid_plural "Field groups linked successfully." -msgstr[0] "" -msgstr[1] "" - -#: includes/admin/admin-internal-post-type-list.php:261 -#: includes/admin/post-types/admin-post-types.php:371 -#: includes/admin/post-types/admin-taxonomies.php:378 -msgctxt "post status" -msgid "Registration Failed" -msgstr "" - -#: includes/admin/admin-internal-post-type-list.php:260 -msgid "" -"This item could not be registered because its key is in use by another item " -"registered by another plugin or theme." -msgstr "" - -#: includes/acf-internal-post-type-functions.php:482 -#: includes/acf-internal-post-type-functions.php:511 -msgid "REST API" -msgstr "" - -#: includes/acf-internal-post-type-functions.php:481 -#: includes/acf-internal-post-type-functions.php:510 -#: includes/acf-internal-post-type-functions.php:537 -msgid "Permissions" -msgstr "" - -#: includes/acf-internal-post-type-functions.php:480 -#: includes/acf-internal-post-type-functions.php:509 -msgid "URLs" -msgstr "" - -#: includes/acf-internal-post-type-functions.php:479 -#: includes/acf-internal-post-type-functions.php:508 -#: includes/acf-internal-post-type-functions.php:535 -msgid "Visibility" -msgstr "" - -#: includes/acf-internal-post-type-functions.php:478 -#: includes/acf-internal-post-type-functions.php:507 -#: includes/acf-internal-post-type-functions.php:536 -msgid "Labels" -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:269 -msgid "Field Settings Tabs" -msgstr "" - -#. Author URI of the plugin -msgid "" -"https://wpengine.com/?utm_source=wordpress." -"org&utm_medium=referral&utm_campaign=plugin_directory&utm_content=advanced_custom_fields" -msgstr "" - -#: includes/api/api-template.php:867 -msgid "[ACF shortcode value disabled for preview]" -msgstr "" - -#: includes/admin/admin-internal-post-type.php:298 -#: includes/admin/post-types/admin-field-group.php:571 -msgid "Close Modal" -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:96 -#: assets/build/js/acf-field-group.js:1670 -#: assets/build/js/acf-field-group.js:1993 -msgid "Field moved to other group" -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:95 -#: assets/build/js/acf.js:1437 assets/build/js/acf.js:1517 -msgid "Close modal" -msgstr "" - -#: includes/fields/class-acf-field-tab.php:125 -msgid "Start a new group of tabs at this tab." -msgstr "" - -#: includes/fields/class-acf-field-tab.php:124 -msgid "New Tab Group" -msgstr "" - -#: includes/fields/class-acf-field-select.php:451 -#: includes/fields/class-acf-field-true_false.php:200 -msgid "Use a stylized checkbox using select2" -msgstr "" - -#: includes/fields/class-acf-field-radio.php:260 -msgid "Save Other Choice" -msgstr "" - -#: includes/fields/class-acf-field-radio.php:249 -msgid "Allow Other Choice" -msgstr "" - -#: includes/fields/class-acf-field-checkbox.php:450 -msgid "Add Toggle All" -msgstr "" - -#: includes/fields/class-acf-field-checkbox.php:409 -msgid "Save Custom Values" -msgstr "" - -#: includes/fields/class-acf-field-checkbox.php:398 -msgid "Allow Custom Values" -msgstr "" - -#: includes/fields/class-acf-field-checkbox.php:148 -msgid "Checkbox custom values cannot be empty. Uncheck any empty values." -msgstr "" - -#: includes/admin/views/global/navigation.php:248 -msgid "Updates" -msgstr "" - -#: includes/admin/views/global/navigation.php:176 -msgid "Advanced Custom Fields logo" -msgstr "" - -#: includes/admin/views/global/form-top.php:89 -msgid "Save Changes" -msgstr "" - -#: includes/admin/views/global/form-top.php:76 -msgid "Field Group Title" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:704 -#: includes/admin/views/global/form-top.php:3 -msgid "Add title" -msgstr "" - -#. translators: %s url to getting started guide -#: includes/admin/views/acf-field-group/list-empty.php:20 -#: includes/admin/views/acf-post-type/list-empty.php:12 -#: includes/admin/views/acf-taxonomy/list-empty.php:12 -#: includes/admin/views/options-page-preview.php:13 -msgid "" -"New to ACF? Take a look at our getting " -"started guide." -msgstr "" - -#: includes/admin/views/acf-field-group/list-empty.php:15 -msgid "Add Field Group" -msgstr "" - -#. translators: %s url to creating a field group page -#: includes/admin/views/acf-field-group/list-empty.php:10 -msgid "" -"ACF uses field groups to group custom " -"fields together, and then attach those fields to edit screens." -msgstr "" - -#: includes/admin/views/acf-field-group/list-empty.php:5 -msgid "Add Your First Field Group" -msgstr "" - -#: includes/admin/admin-options-pages-preview.php:28 -#: includes/admin/views/acf-field-group/pro-features.php:54 -#: includes/admin/views/global/navigation.php:86 -#: includes/admin/views/global/navigation.php:250 -msgid "Options Pages" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:50 -msgid "ACF Blocks" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:58 -msgid "Gallery Field" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:38 -msgid "Flexible Content Field" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:42 -msgid "Repeater Field" -msgstr "" - -#: includes/admin/views/global/navigation.php:212 -msgid "Unlock Extra Features with ACF PRO" -msgstr "" - -#: includes/admin/views/acf-field-group/options.php:267 -msgid "Delete Field Group" -msgstr "" - -#. translators: 1: Post creation date 2: Post creation time -#: includes/admin/views/acf-field-group/options.php:261 -msgid "Created on %1$s at %2$s" -msgstr "" - -#: includes/acf-field-group-functions.php:497 -msgid "Group Settings" -msgstr "" - -#: includes/acf-field-group-functions.php:495 -msgid "Location Rules" -msgstr "" - -#. translators: %s url to field types list -#: includes/admin/views/acf-field-group/fields.php:72 -msgid "" -"Choose from over 30 field types. Learn " -"more." -msgstr "" - -#: includes/admin/views/acf-field-group/fields.php:65 -msgid "" -"Get started creating new custom fields for your posts, pages, custom post " -"types and other WordPress content." -msgstr "" - -#: includes/admin/views/acf-field-group/fields.php:64 -msgid "Add Your First Field" -msgstr "" - -#. translators: A symbol (or text, if not available in your locale) meaning -#. "Order Number", in terms of positional placement. -#: includes/admin/views/acf-field-group/fields.php:43 -msgid "#" -msgstr "" - -#: includes/admin/views/acf-field-group/fields.php:33 -#: includes/admin/views/acf-field-group/fields.php:67 -#: includes/admin/views/acf-field-group/fields.php:103 -#: includes/admin/views/global/form-top.php:85 -msgid "Add Field" -msgstr "" - -#: includes/acf-field-group-functions.php:496 includes/fields.php:410 -msgid "Presentation" -msgstr "" - -#: includes/fields.php:409 -msgid "Validation" -msgstr "" - -#: includes/acf-internal-post-type-functions.php:477 -#: includes/acf-internal-post-type-functions.php:506 includes/fields.php:408 -msgid "General" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:70 -msgid "Import JSON" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:392 -msgid "Export As JSON" -msgstr "" - -#. translators: %s number of field groups deactivated -#: includes/admin/post-types/admin-field-groups.php:367 -msgid "Field group deactivated." -msgid_plural "%s field groups deactivated." -msgstr[0] "" -msgstr[1] "" - -#. translators: %s number of field groups activated -#: includes/admin/post-types/admin-field-groups.php:360 -msgid "Field group activated." -msgid_plural "%s field groups activated." -msgstr[0] "" -msgstr[1] "" - -#: includes/admin/admin-internal-post-type-list.php:452 -#: includes/admin/admin-internal-post-type-list.php:478 -msgid "Deactivate" -msgstr "" - -#: includes/admin/admin-internal-post-type-list.php:452 -msgid "Deactivate this item" -msgstr "" - -#: includes/admin/admin-internal-post-type-list.php:448 -#: includes/admin/admin-internal-post-type-list.php:477 -msgid "Activate" -msgstr "" - -#: includes/admin/admin-internal-post-type-list.php:448 -msgid "Activate this item" -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:92 -#: assets/build/js/acf-field-group.js:2812 -#: assets/build/js/acf-field-group.js:3313 -msgid "Move field group to trash?" -msgstr "" - -#: acf.php:497 includes/admin/admin-internal-post-type-list.php:248 -#: includes/admin/post-types/admin-field-group.php:297 -#: includes/admin/post-types/admin-post-type.php:295 -#: includes/admin/post-types/admin-taxonomy.php:297 -msgctxt "post status" -msgid "Inactive" -msgstr "" - -#. Author of the plugin -msgid "WP Engine" -msgstr "" - -#: acf.php:555 -msgid "" -"Advanced Custom Fields and Advanced Custom Fields PRO should not be active " -"at the same time. We've automatically deactivated Advanced Custom Fields PRO." -msgstr "" - -#: acf.php:553 -msgid "" -"Advanced Custom Fields and Advanced Custom Fields PRO should not be active " -"at the same time. We've automatically deactivated Advanced Custom Fields." -msgstr "" - -#: includes/acf-value-functions.php:374 -msgid "" -"%1$s - We've detected one or more calls to retrieve ACF " -"field values before ACF has been initialized. This is not supported and can " -"result in malformed or missing data. Learn how to fix this." -msgstr "" - -#: includes/fields/class-acf-field-user.php:551 -msgid "%1$s must have a user with the %2$s role." -msgid_plural "%1$s must have a user with one of the following roles: %2$s" -msgstr[0] "" -msgstr[1] "" - -#: includes/fields/class-acf-field-user.php:542 -msgid "%1$s must have a valid user ID." -msgstr "" - -#: includes/fields/class-acf-field-user.php:380 -msgid "Invalid request." -msgstr "" - -#: includes/fields/class-acf-field-select.php:684 -msgid "%1$s is not one of %2$s" -msgstr "" - -#: includes/fields/class-acf-field-post_object.php:700 -msgid "%1$s must have term %2$s." -msgid_plural "%1$s must have one of the following terms: %2$s" -msgstr[0] "" -msgstr[1] "" - -#: includes/fields/class-acf-field-post_object.php:684 -msgid "%1$s must be of post type %2$s." -msgid_plural "%1$s must be of one of the following post types: %2$s" -msgstr[0] "" -msgstr[1] "" - -#: includes/fields/class-acf-field-post_object.php:675 -msgid "%1$s must have a valid post ID." -msgstr "" - -#: includes/fields/class-acf-field-file.php:475 -msgid "%s requires a valid attachment ID." -msgstr "" - -#: includes/admin/views/acf-field-group/options.php:233 -msgid "Show in REST API" -msgstr "" - -#: includes/fields/class-acf-field-color_picker.php:168 -msgid "Enable Transparency" -msgstr "" - -#: includes/fields/class-acf-field-color_picker.php:187 -msgid "RGBA Array" -msgstr "" - -#: includes/fields/class-acf-field-color_picker.php:98 -msgid "RGBA String" -msgstr "" - -#: includes/fields/class-acf-field-color_picker.php:97 -#: includes/fields/class-acf-field-color_picker.php:186 -msgid "Hex String" -msgstr "" - -#: includes/admin/views/browse-fields-modal.php:65 -msgid "Upgrade to PRO" -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:297 -#: includes/admin/post-types/admin-post-type.php:295 -#: includes/admin/post-types/admin-taxonomy.php:297 -msgctxt "post status" -msgid "Active" -msgstr "" - -#: includes/fields/class-acf-field-email.php:181 -msgid "'%s' is not a valid email address" -msgstr "" - -#: includes/fields/class-acf-field-color_picker.php:76 -msgid "Color value" -msgstr "" - -#: includes/fields/class-acf-field-color_picker.php:74 -msgid "Select default color" -msgstr "" - -#: includes/fields/class-acf-field-color_picker.php:72 -msgid "Clear color" -msgstr "" - -#: includes/acf-wp-functions.php:90 -msgid "Blocks" -msgstr "" - -#: includes/acf-wp-functions.php:86 -msgid "Options" -msgstr "" - -#: includes/acf-wp-functions.php:82 -msgid "Users" -msgstr "" - -#: includes/acf-wp-functions.php:78 -msgid "Menu items" -msgstr "" - -#: includes/acf-wp-functions.php:70 -msgid "Widgets" -msgstr "" - -#: includes/acf-wp-functions.php:62 -msgid "Attachments" -msgstr "" - -#: includes/acf-wp-functions.php:57 -#: includes/admin/post-types/admin-post-types.php:137 -#: includes/admin/post-types/admin-taxonomies.php:112 -#: includes/admin/tools/class-acf-admin-tool-import.php:93 -#: includes/admin/views/acf-post-type/basic-settings.php:86 -#: includes/post-types/class-acf-taxonomy.php:90 -#: includes/post-types/class-acf-taxonomy.php:91 -msgid "Taxonomies" -msgstr "" - -#: includes/acf-wp-functions.php:44 -#: includes/admin/post-types/admin-post-type.php:126 -#: includes/admin/post-types/admin-post-types.php:139 -#: includes/admin/views/acf-post-type/advanced-settings.php:106 -#: assets/build/js/acf-internal-post-type.js:173 -#: assets/build/js/acf-internal-post-type.js:247 -msgid "Posts" -msgstr "" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:76 -msgid "Last updated: %s" -msgstr "" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:70 -msgid "Sorry, this post is unavailable for diff comparison." -msgstr "" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:42 -msgid "Invalid field group parameter(s)." -msgstr "" - -#: includes/admin/admin-internal-post-type-list.php:413 -msgid "Awaiting save" -msgstr "" - -#: includes/admin/admin-internal-post-type-list.php:410 -msgid "Saved" -msgstr "" - -#: includes/admin/admin-internal-post-type-list.php:406 -#: includes/admin/tools/class-acf-admin-tool-import.php:49 -msgid "Import" -msgstr "" - -#: includes/admin/admin-internal-post-type-list.php:402 -msgid "Review changes" -msgstr "" - -#: includes/admin/admin-internal-post-type-list.php:378 -msgid "Located in: %s" -msgstr "" - -#: includes/admin/admin-internal-post-type-list.php:375 -msgid "Located in plugin: %s" -msgstr "" - -#: includes/admin/admin-internal-post-type-list.php:372 -msgid "Located in theme: %s" -msgstr "" - -#: includes/admin/post-types/admin-field-groups.php:261 -msgid "Various" -msgstr "" - -#: includes/admin/admin-internal-post-type-list.php:216 -#: includes/admin/admin-internal-post-type-list.php:485 -msgid "Sync changes" -msgstr "" - -#: includes/admin/admin-internal-post-type-list.php:215 -msgid "Loading diff" -msgstr "" - -#: includes/admin/admin-internal-post-type-list.php:214 -msgid "Review local JSON changes" -msgstr "" - -#: includes/admin/admin.php:170 -msgid "Visit website" -msgstr "" - -#: includes/admin/admin.php:169 -msgid "View details" -msgstr "" - -#: includes/admin/admin.php:168 -msgid "Version %s" -msgstr "" - -#: includes/admin/admin.php:167 -msgid "Information" -msgstr "" - -#: includes/admin/admin.php:158 -msgid "" -"Help Desk. The support professionals on " -"our Help Desk will assist with your more in depth, technical challenges." -msgstr "" - -#: includes/admin/admin.php:154 -msgid "" -"Discussions. We have an active and " -"friendly community on our Community Forums who may be able to help you " -"figure out the 'how-tos' of the ACF world." -msgstr "" - -#: includes/admin/admin.php:150 -msgid "" -"Documentation. Our extensive " -"documentation contains references and guides for most situations you may " -"encounter." -msgstr "" - -#: includes/admin/admin.php:147 -msgid "" -"We are fanatical about support, and want you to get the best out of your " -"website with ACF. If you run into any difficulties, there are several places " -"you can find help:" -msgstr "" - -#: includes/admin/admin.php:144 includes/admin/admin.php:146 -msgid "Help & Support" -msgstr "" - -#: includes/admin/admin.php:135 -msgid "" -"Please use the Help & Support tab to get in touch should you find yourself " -"requiring assistance." -msgstr "" - -#: includes/admin/admin.php:132 -msgid "" -"Before creating your first Field Group, we recommend first reading our Getting started guide to familiarize " -"yourself with the plugin's philosophy and best practises." -msgstr "" - -#: includes/admin/admin.php:130 -msgid "" -"The Advanced Custom Fields plugin provides a visual form builder to " -"customize WordPress edit screens with extra fields, and an intuitive API to " -"display custom field values in any theme template file." -msgstr "" - -#: includes/admin/admin.php:127 includes/admin/admin.php:129 -msgid "Overview" -msgstr "" - -#: includes/locations.php:36 -msgid "Location type \"%s\" is already registered." -msgstr "" - -#: includes/locations.php:25 -msgid "Class \"%s\" does not exist." -msgstr "" - -#: includes/ajax/class-acf-ajax.php:157 -msgid "Invalid nonce." -msgstr "" - -#: includes/fields/class-acf-field-user.php:375 -msgid "Error loading field." -msgstr "" - -#: assets/build/js/acf-input.js:2750 assets/build/js/acf-input.js:2819 -#: assets/build/js/acf-input.js:2926 assets/build/js/acf-input.js:3000 -msgid "Location not found: %s" -msgstr "" - -#: includes/forms/form-user.php:353 -msgid "Error: %s" -msgstr "" - -#: includes/locations/class-acf-location-widget.php:22 -msgid "Widget" -msgstr "Widget" - -#: includes/locations/class-acf-location-user-role.php:24 -msgid "User Role" -msgstr "Papel de utilizador" - -#: includes/locations/class-acf-location-comment.php:22 -msgid "Comment" -msgstr "Comentário" - -#: includes/locations/class-acf-location-post-format.php:22 -msgid "Post Format" -msgstr "Formato de artigo" - -#: includes/locations/class-acf-location-nav-menu-item.php:22 -msgid "Menu Item" -msgstr "Item de menu" - -#: includes/locations/class-acf-location-post-status.php:22 -msgid "Post Status" -msgstr "Estado do conteúdo" - -#: includes/acf-wp-functions.php:74 -#: includes/locations/class-acf-location-nav-menu.php:89 -msgid "Menus" -msgstr "Menus" - -#: includes/locations/class-acf-location-nav-menu.php:80 -msgid "Menu Locations" -msgstr "Localizações do menu" - -#: includes/locations/class-acf-location-nav-menu.php:22 -msgid "Menu" -msgstr "Menu" - -#: includes/locations/class-acf-location-post-taxonomy.php:22 -msgid "Post Taxonomy" -msgstr "Taxonomia do artigo" - -#: includes/locations/class-acf-location-page-type.php:114 -msgid "Child Page (has parent)" -msgstr "Página dependente (tem superior)" - -#: includes/locations/class-acf-location-page-type.php:113 -msgid "Parent Page (has children)" -msgstr "Página superior (tem dependentes)" - -#: includes/locations/class-acf-location-page-type.php:112 -msgid "Top Level Page (no parent)" -msgstr "Página de topo (sem superior)" - -#: includes/locations/class-acf-location-page-type.php:111 -msgid "Posts Page" -msgstr "Página de artigos" - -#: includes/locations/class-acf-location-page-type.php:110 -msgid "Front Page" -msgstr "Página inicial" - -#: includes/locations/class-acf-location-page-type.php:22 -msgid "Page Type" -msgstr "Tipo de página" - -#: includes/locations/class-acf-location-current-user.php:73 -msgid "Viewing back end" -msgstr "A visualizar a administração do site" - -#: includes/locations/class-acf-location-current-user.php:72 -msgid "Viewing front end" -msgstr "A visualizar a frente do site" - -#: includes/locations/class-acf-location-current-user.php:71 -msgid "Logged in" -msgstr "Sessão iniciada" - -#: includes/locations/class-acf-location-current-user.php:22 -msgid "Current User" -msgstr "Utilizador actual" - -#: includes/locations/class-acf-location-page-template.php:22 -msgid "Page Template" -msgstr "Modelo de página" - -#: includes/locations/class-acf-location-user-form.php:74 -msgid "Register" -msgstr "Registar" - -#: includes/locations/class-acf-location-user-form.php:73 -msgid "Add / Edit" -msgstr "Adicionar / Editar" - -#: includes/locations/class-acf-location-user-form.php:22 -msgid "User Form" -msgstr "Formulário de utilizador" - -#: includes/locations/class-acf-location-page-parent.php:22 -msgid "Page Parent" -msgstr "Página superior" - -#: includes/locations/class-acf-location-current-user-role.php:77 -msgid "Super Admin" -msgstr "Super Administrador" - -#: includes/locations/class-acf-location-current-user-role.php:22 -msgid "Current User Role" -msgstr "Papel do utilizador actual" - -#: includes/locations/class-acf-location-page-template.php:73 -#: includes/locations/class-acf-location-post-template.php:85 -msgid "Default Template" -msgstr "Modelo por omissão" - -#: includes/locations/class-acf-location-post-template.php:22 -msgid "Post Template" -msgstr "Modelo de conteúdo" - -#: includes/locations/class-acf-location-post-category.php:22 -msgid "Post Category" -msgstr "Categoria de artigo" - -#: includes/locations/class-acf-location-attachment.php:84 -msgid "All %s formats" -msgstr "Todos os formatos de %s" - -#: includes/locations/class-acf-location-attachment.php:22 -msgid "Attachment" -msgstr "Anexo" - -#: includes/validation.php:366 -msgid "%s value is required" -msgstr "O valor %s é obrigatório" - -#: includes/admin/views/acf-field-group/conditional-logic.php:59 -msgid "Show this field if" -msgstr "Mostrar este campo se" - -#: includes/admin/views/acf-field-group/conditional-logic.php:26 -#: includes/admin/views/acf-field-group/field.php:109 includes/fields.php:411 -msgid "Conditional Logic" -msgstr "Lógica condicional" - -#: includes/admin/views/acf-field-group/conditional-logic.php:156 -#: includes/admin/views/acf-field-group/location-rule.php:92 -msgid "and" -msgstr "e" - -#: includes/admin/post-types/admin-field-groups.php:123 -#: includes/admin/post-types/admin-post-types.php:143 -#: includes/admin/post-types/admin-taxonomies.php:143 -msgid "Local JSON" -msgstr "JSON local" - -#: includes/admin/views/acf-field-group/pro-features.php:46 -msgid "Clone Field" -msgstr "Campo de clone" - -#: includes/admin/views/upgrade/notice.php:30 -msgid "" -"Please also check all premium add-ons (%s) are updated to the latest version." -msgstr "" -"Por favor, verifique se todos os add-ons premium (%s) estão actualizados " -"para a última versão." - -#: includes/admin/views/upgrade/notice.php:28 -msgid "" -"This version contains improvements to your database and requires an upgrade." -msgstr "" -"Esta versão inclui melhorias na base de dados e requer uma actualização." - -#: includes/admin/views/upgrade/notice.php:28 -msgid "Thank you for updating to %1$s v%2$s!" -msgstr "" - -#: includes/admin/views/upgrade/notice.php:27 -msgid "Database Upgrade Required" -msgstr "Actualização da base de dados necessária" - -#: includes/admin/post-types/admin-field-group.php:141 -#: includes/admin/views/upgrade/notice.php:18 -msgid "Options Page" -msgstr "Página de opções" - -#: includes/admin/views/upgrade/notice.php:15 includes/fields.php:462 -msgid "Gallery" -msgstr "Galeria" - -#: includes/admin/views/upgrade/notice.php:12 includes/fields.php:452 -msgid "Flexible Content" -msgstr "Conteúdo flexível" - -#: includes/admin/views/upgrade/notice.php:9 includes/fields.php:472 -msgid "Repeater" -msgstr "Repetidor" - -#: includes/admin/views/tools/tools.php:24 -msgid "Back to all tools" -msgstr "Voltar para todas as ferramentas" - -#: includes/admin/views/acf-field-group/options.php:195 -msgid "" -"If multiple field groups appear on an edit screen, the first field group's " -"options will be used (the one with the lowest order number)" -msgstr "" -"Se forem mostrados vários grupos de campos num ecrã de edição, serão " -"utilizadas as opções do primeiro grupo de campos. (o que tiver menor número " -"de ordem)" - -#: includes/admin/views/acf-field-group/options.php:195 -msgid "Select items to hide them from the edit screen." -msgstr "Seleccione os itens a esconder do ecrã de edição." - -#: includes/admin/views/acf-field-group/options.php:194 -msgid "Hide on screen" -msgstr "Esconder no ecrã" - -#: includes/admin/views/acf-field-group/options.php:186 -msgid "Send Trackbacks" -msgstr "Enviar trackbacks" - -#: includes/admin/post-types/admin-taxonomy.php:128 -#: includes/admin/views/acf-field-group/options.php:185 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:159 -#: assets/build/js/acf-internal-post-type.js:180 -#: assets/build/js/acf-internal-post-type.js:254 -msgid "Tags" -msgstr "Etiquetas" - -#: includes/admin/post-types/admin-taxonomy.php:130 -#: includes/admin/views/acf-field-group/options.php:184 -#: assets/build/js/acf-internal-post-type.js:183 -#: assets/build/js/acf-internal-post-type.js:257 -msgid "Categories" -msgstr "Categorias" - -#: includes/admin/views/acf-field-group/options.php:182 -#: includes/admin/views/acf-post-type/advanced-settings.php:28 -msgid "Page Attributes" -msgstr "Atributos da página" - -#: includes/admin/views/acf-field-group/options.php:181 -msgid "Format" -msgstr "Formato" - -#: includes/admin/views/acf-field-group/options.php:180 -#: includes/admin/views/acf-post-type/advanced-settings.php:22 -msgid "Author" -msgstr "Autor" - -#: includes/admin/views/acf-field-group/options.php:179 -msgid "Slug" -msgstr "Slug" - -#: includes/admin/views/acf-field-group/options.php:178 -#: includes/admin/views/acf-post-type/advanced-settings.php:27 -msgid "Revisions" -msgstr "Revisões" - -#: includes/acf-wp-functions.php:66 -#: includes/admin/views/acf-field-group/options.php:177 -#: includes/admin/views/acf-post-type/advanced-settings.php:23 -msgid "Comments" -msgstr "Comentários" - -#: includes/admin/views/acf-field-group/options.php:176 -msgid "Discussion" -msgstr "Discussão" - -#: includes/admin/views/acf-field-group/options.php:174 -#: includes/admin/views/acf-post-type/advanced-settings.php:26 -msgid "Excerpt" -msgstr "Excerto" - -#: includes/admin/views/acf-field-group/options.php:173 -msgid "Content Editor" -msgstr "Editor de conteúdo" - -#: includes/admin/views/acf-field-group/options.php:172 -msgid "Permalink" -msgstr "Ligação permanente" - -#: includes/admin/views/acf-field-group/options.php:250 -msgid "Shown in field group list" -msgstr "Mostrado na lista de grupos de campos" - -#: includes/admin/views/acf-field-group/options.php:157 -msgid "Field groups with a lower order will appear first" -msgstr "" -"Serão mostrados primeiro os grupos de campos com menor número de ordem." - -#: includes/admin/views/acf-field-group/options.php:156 -msgid "Order No." -msgstr "Nº. de ordem" - -#: includes/admin/views/acf-field-group/options.php:147 -msgid "Below fields" -msgstr "Abaixo dos campos" - -#: includes/admin/views/acf-field-group/options.php:146 -msgid "Below labels" -msgstr "Abaixo das legendas" - -#: includes/admin/views/acf-field-group/options.php:139 -msgid "Instruction Placement" -msgstr "" - -#: includes/admin/views/acf-field-group/options.php:122 -msgid "Label Placement" -msgstr "" - -#: includes/admin/views/acf-field-group/options.php:110 -msgid "Side" -msgstr "Lateral" - -#: includes/admin/views/acf-field-group/options.php:109 -msgid "Normal (after content)" -msgstr "Normal (depois do conteúdo)" - -#: includes/admin/views/acf-field-group/options.php:108 -msgid "High (after title)" -msgstr "Acima (depois do título)" - -#: includes/admin/views/acf-field-group/options.php:101 -msgid "Position" -msgstr "Posição" - -#: includes/admin/views/acf-field-group/options.php:92 -msgid "Seamless (no metabox)" -msgstr "Simples (sem metabox)" - -#: includes/admin/views/acf-field-group/options.php:91 -msgid "Standard (WP metabox)" -msgstr "Predefinido (metabox do WP)" - -#: includes/admin/views/acf-field-group/options.php:84 -msgid "Style" -msgstr "Estilo" - -#: includes/admin/views/acf-field-group/fields.php:55 -msgid "Type" -msgstr "Tipo" - -#: includes/admin/post-types/admin-field-groups.php:117 -#: includes/admin/post-types/admin-post-types.php:136 -#: includes/admin/post-types/admin-taxonomies.php:136 -#: includes/admin/views/acf-field-group/fields.php:54 -msgid "Key" -msgstr "Chave" - -#. translators: Hidden accessibility text for the positional order number of -#. the field. -#: includes/admin/views/acf-field-group/fields.php:48 -msgid "Order" -msgstr "Ordem" - -#: includes/admin/views/acf-field-group/field.php:322 -msgid "Close Field" -msgstr "Fechar campo" - -#: includes/admin/views/acf-field-group/field.php:253 -msgid "id" -msgstr "id" - -#: includes/admin/views/acf-field-group/field.php:237 -msgid "class" -msgstr "classe" - -#: includes/admin/views/acf-field-group/field.php:279 -msgid "width" -msgstr "largura" - -#: includes/admin/views/acf-field-group/field.php:273 -msgid "Wrapper Attributes" -msgstr "Atributos do wrapper" - -#: includes/admin/views/acf-field-group/field.php:196 -msgid "Required" -msgstr "" - -#: includes/admin/views/acf-field-group/field.php:221 -msgid "Instructions for authors. Shown when submitting data" -msgstr "" -"Instruções para os autores. São mostradas ao preencher e submeter dados." - -#: includes/admin/views/acf-field-group/field.php:220 -msgid "Instructions" -msgstr "Instruções" - -#: includes/admin/views/acf-field-group/field.php:129 -msgid "Field Type" -msgstr "Tipo de campo" - -#: includes/admin/views/acf-field-group/field.php:170 -msgid "Single word, no spaces. Underscores and dashes allowed" -msgstr "" -"Uma única palavra, sem espaços. São permitidos underscores (_) e traços (-)." - -#: includes/admin/views/acf-field-group/field.php:169 -msgid "Field Name" -msgstr "Nome do campo" - -#: includes/admin/views/acf-field-group/field.php:157 -msgid "This is the name which will appear on the EDIT page" -msgstr "Este é o nome que será mostrado na página EDITAR." - -#: includes/admin/views/acf-field-group/field.php:156 -#: includes/admin/views/browse-fields-modal.php:59 -msgid "Field Label" -msgstr "Legenda do campo" - -#: includes/admin/views/acf-field-group/field.php:81 -msgid "Delete" -msgstr "Eliminar" - -#: includes/admin/views/acf-field-group/field.php:81 -msgid "Delete field" -msgstr "Eliminar campo" - -#: includes/admin/views/acf-field-group/field.php:79 -msgid "Move" -msgstr "Mover" - -#: includes/admin/views/acf-field-group/field.php:79 -msgid "Move field to another group" -msgstr "Mover campo para outro grupo" - -#: includes/admin/views/acf-field-group/field.php:77 -msgid "Duplicate field" -msgstr "Duplicar campo" - -#: includes/admin/views/acf-field-group/field.php:73 -#: includes/admin/views/acf-field-group/field.php:76 -msgid "Edit field" -msgstr "Editar campo" - -#: includes/admin/views/acf-field-group/field.php:69 -msgid "Drag to reorder" -msgstr "Arraste para reordenar" - -#: includes/admin/post-types/admin-field-group.php:103 -#: includes/admin/views/acf-field-group/location-group.php:3 -#: assets/build/js/acf-field-group.js:2347 -#: assets/build/js/acf-field-group.js:2763 -msgid "Show this field group if" -msgstr "Mostrar este grupo de campos se" - -#: includes/admin/views/upgrade/upgrade.php:94 -#: includes/ajax/class-acf-ajax-upgrade.php:34 -msgid "No updates available." -msgstr "Nenhuma actualização disponível." - -#: includes/admin/views/upgrade/upgrade.php:33 -msgid "Database upgrade complete. See what's new" -msgstr "" -"Actualização da base de dados concluída. Ver o que há de " -"novo" - -#: includes/admin/views/upgrade/upgrade.php:30 -msgid "Reading upgrade tasks..." -msgstr "A ler tarefas de actualização..." - -#: includes/admin/views/upgrade/network.php:165 -#: includes/admin/views/upgrade/upgrade.php:65 -msgid "Upgrade failed." -msgstr "Falhou ao actualizar." - -#: includes/admin/views/upgrade/network.php:162 -msgid "Upgrade complete." -msgstr "Actualização concluída." - -#: includes/admin/views/upgrade/network.php:148 -#: includes/admin/views/upgrade/upgrade.php:31 -msgid "Upgrading data to version %s" -msgstr "A actualizar dados para a versão %s" - -#: includes/admin/views/upgrade/network.php:121 -#: includes/admin/views/upgrade/notice.php:44 -msgid "" -"It is strongly recommended that you backup your database before proceeding. " -"Are you sure you wish to run the updater now?" -msgstr "" -"É recomendável que faça uma cópia de segurança da sua base de dados antes de " -"continuar. Tem a certeza que quer actualizar agora?" - -#: includes/admin/views/upgrade/network.php:117 -msgid "Please select at least one site to upgrade." -msgstr "Por favor, seleccione pelo menos um site para actualizar." - -#: includes/admin/views/upgrade/network.php:97 -msgid "" -"Database Upgrade complete. Return to network dashboard" -msgstr "" -"Actualização da base de dados concluída. Voltar ao painel da " -"rede" - -#: includes/admin/views/upgrade/network.php:80 -msgid "Site is up to date" -msgstr "O site está actualizado" - -#: includes/admin/views/upgrade/network.php:78 -msgid "Site requires database upgrade from %1$s to %2$s" -msgstr "" - -#: includes/admin/views/upgrade/network.php:36 -#: includes/admin/views/upgrade/network.php:47 -msgid "Site" -msgstr "Site" - -#: includes/admin/views/upgrade/network.php:26 -#: includes/admin/views/upgrade/network.php:27 -#: includes/admin/views/upgrade/network.php:96 -msgid "Upgrade Sites" -msgstr "Actualizar sites" - -#: includes/admin/views/upgrade/network.php:26 -msgid "" -"The following sites require a DB upgrade. Check the ones you want to update " -"and then click %s." -msgstr "" -"Os sites seguintes necessitam de actualização da BD. Seleccione os que quer " -"actualizar e clique em %s." - -#: includes/admin/views/acf-field-group/conditional-logic.php:171 -#: includes/admin/views/acf-field-group/locations.php:38 -msgid "Add rule group" -msgstr "Adicionar grupo de regras" - -#: includes/admin/views/acf-field-group/locations.php:10 -msgid "" -"Create a set of rules to determine which edit screens will use these " -"advanced custom fields" -msgstr "" -"Crie um conjunto de regras para determinar em que ecrãs de edição serão " -"utilizados estes campos personalizados avançados" - -#: includes/admin/views/acf-field-group/locations.php:9 -msgid "Rules" -msgstr "Regras" - -#: includes/admin/tools/class-acf-admin-tool-export.php:510 -msgid "Copied" -msgstr "Copiado" - -#: includes/admin/tools/class-acf-admin-tool-export.php:486 -msgid "Copy to clipboard" -msgstr "Copiar para a área de transferência" - -#: includes/admin/tools/class-acf-admin-tool-export.php:385 -msgid "" -"Select the items you would like to export and then select your export " -"method. Export As JSON to export to a .json file which you can then import " -"to another ACF installation. Generate PHP to export to PHP code which you " -"can place in your theme." -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:233 -msgid "Select Field Groups" -msgstr "Seleccione os grupos de campos" - -#: includes/admin/tools/class-acf-admin-tool-export.php:96 -#: includes/admin/tools/class-acf-admin-tool-export.php:131 -msgid "No field groups selected" -msgstr "Nenhum grupo de campos seleccionado" - -#: includes/admin/tools/class-acf-admin-tool-export.php:39 -#: includes/admin/tools/class-acf-admin-tool-export.php:393 -#: includes/admin/tools/class-acf-admin-tool-export.php:421 -msgid "Generate PHP" -msgstr "Gerar PHP" - -#: includes/admin/tools/class-acf-admin-tool-export.php:35 -msgid "Export Field Groups" -msgstr "Exportar grupos de campos" - -#: includes/admin/tools/class-acf-admin-tool-import.php:177 -msgid "Import file empty" -msgstr "Ficheiro de importação vazio" - -#: includes/admin/tools/class-acf-admin-tool-import.php:168 -msgid "Incorrect file type" -msgstr "Tipo de ficheiro incorrecto" - -#: includes/admin/tools/class-acf-admin-tool-import.php:163 -msgid "Error uploading file. Please try again" -msgstr "Erro ao carregar ficheiro. Por favor tente de novo." - -#: includes/admin/tools/class-acf-admin-tool-import.php:50 -msgid "" -"Select the Advanced Custom Fields JSON file you would like to import. When " -"you click the import button below, ACF will import the items in that file." -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:27 -msgid "Import Field Groups" -msgstr "Importar grupos de campos" - -#: includes/admin/admin-internal-post-type-list.php:401 -msgid "Sync" -msgstr "Sincronizar" - -#: includes/admin/admin-internal-post-type-list.php:858 -msgid "Select %s" -msgstr "Seleccionar %s" - -#: includes/admin/admin-internal-post-type-list.php:442 -#: includes/admin/admin-internal-post-type-list.php:474 -#: includes/admin/views/acf-field-group/field.php:77 -msgid "Duplicate" -msgstr "Duplicar" - -#: includes/admin/admin-internal-post-type-list.php:442 -msgid "Duplicate this item" -msgstr "Duplicar este item" - -#: includes/admin/views/acf-post-type/advanced-settings.php:41 -msgid "Supports" -msgstr "" - -#: includes/admin/admin.php:261 includes/admin/views/browse-fields-modal.php:92 -msgid "Documentation" -msgstr "Documentação" - -#: includes/admin/post-types/admin-field-groups.php:116 -#: includes/admin/post-types/admin-post-types.php:135 -#: includes/admin/post-types/admin-taxonomies.php:135 -#: includes/admin/views/acf-field-group/options.php:249 -#: includes/admin/views/acf-post-type/advanced-settings.php:62 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:114 -#: includes/admin/views/upgrade/network.php:38 -#: includes/admin/views/upgrade/network.php:49 -msgid "Description" -msgstr "Descrição" - -#: includes/admin/admin-internal-post-type-list.php:398 -#: includes/admin/admin-internal-post-type-list.php:747 -msgid "Sync available" -msgstr "Sincronização disponível" - -#. translators: %s number of field groups synchronized -#: includes/admin/post-types/admin-field-groups.php:381 -msgid "Field group synchronized." -msgid_plural "%s field groups synchronized." -msgstr[0] "" -msgstr[1] "" - -#. translators: %s number of field groups duplicated -#: includes/admin/post-types/admin-field-groups.php:374 -msgid "Field group duplicated." -msgid_plural "%s field groups duplicated." -msgstr[0] "Grupo de campos duplicado." -msgstr[1] "%s grupos de campos duplicados." - -#: includes/admin/admin-internal-post-type-list.php:137 -msgid "Active (%s)" -msgid_plural "Active (%s)" -msgstr[0] "Activo (%s)" -msgstr[1] "Activos (%s)" - -#: includes/admin/admin-upgrade.php:254 -msgid "Review sites & upgrade" -msgstr "Rever sites e actualizar" - -#: includes/admin/admin-upgrade.php:59 includes/admin/admin-upgrade.php:93 -#: includes/admin/admin-upgrade.php:94 includes/admin/admin-upgrade.php:230 -#: includes/admin/views/upgrade/network.php:24 -#: includes/admin/views/upgrade/upgrade.php:26 -msgid "Upgrade Database" -msgstr "Actualizar base de dados" - -#: includes/admin/views/acf-field-group/options.php:175 -#: includes/admin/views/acf-post-type/advanced-settings.php:30 -msgid "Custom Fields" -msgstr "Campos personalizados" - -#: includes/admin/post-types/admin-field-group.php:616 -msgid "Move Field" -msgstr "Mover campo" - -#: includes/admin/post-types/admin-field-group.php:605 -#: includes/admin/post-types/admin-field-group.php:609 -msgid "Please select the destination for this field" -msgstr "Por favor seleccione o destinho para este campo" - -#. translators: Confirmation message once a field has been moved to a different -#. field group. -#: includes/admin/post-types/admin-field-group.php:567 -msgid "The %1$s field can now be found in the %2$s field group" -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:564 -msgid "Move Complete." -msgstr "Movido com sucesso." - -#: includes/admin/views/acf-field-group/field.php:39 -#: includes/admin/views/acf-field-group/options.php:217 -#: includes/admin/views/acf-post-type/advanced-settings.php:78 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:130 -msgid "Active" -msgstr "Activo" - -#: includes/admin/post-types/admin-field-group.php:266 -msgid "Field Keys" -msgstr "Chaves dos campos" - -#: includes/admin/post-types/admin-field-group.php:164 -#: includes/admin/tools/class-acf-admin-tool-export.php:342 -msgid "Settings" -msgstr "Definições" - -#: includes/admin/post-types/admin-field-groups.php:118 -msgid "Location" -msgstr "Localização" - -#: includes/admin/post-types/admin-field-group.php:104 -#: assets/build/js/acf-input.js:983 assets/build/js/acf-input.js:1075 -msgid "Null" -msgstr "Nulo" - -#: includes/admin/post-types/admin-field-group.php:101 -#: includes/class-acf-internal-post-type.php:730 -#: includes/post-types/class-acf-field-group.php:345 -#: assets/build/js/acf-field-group.js:1510 -#: assets/build/js/acf-field-group.js:1821 -msgid "copy" -msgstr "cópia" - -#: includes/admin/post-types/admin-field-group.php:100 -#: assets/build/js/acf-field-group.js:623 -#: assets/build/js/acf-field-group.js:778 -msgid "(this field)" -msgstr "(este campo)" - -#: includes/admin/post-types/admin-field-group.php:98 -#: assets/build/js/acf-input.js:918 assets/build/js/acf-input.js:943 -#: assets/build/js/acf-input.js:1002 assets/build/js/acf-input.js:1030 -msgid "Checked" -msgstr "Seleccionado" - -#: includes/admin/post-types/admin-field-group.php:94 -#: assets/build/js/acf-field-group.js:1615 -#: assets/build/js/acf-field-group.js:1933 -msgid "Move Custom Field" -msgstr "Mover campo personalizado" - -#: includes/admin/post-types/admin-field-group.php:93 -#: assets/build/js/acf-field-group.js:649 -#: assets/build/js/acf-field-group.js:804 -msgid "No toggle fields available" -msgstr "Nenhum campo de opções disponível" - -#: includes/admin/post-types/admin-field-group.php:91 -msgid "Field group title is required" -msgstr "O título do grupo de campos é obrigatório" - -#: includes/admin/post-types/admin-field-group.php:90 -#: assets/build/js/acf-field-group.js:1604 -#: assets/build/js/acf-field-group.js:1919 -msgid "This field cannot be moved until its changes have been saved" -msgstr "" -"Este campo não pode ser movido até que as suas alterações sejam guardadas." - -#: includes/admin/post-types/admin-field-group.php:89 -#: assets/build/js/acf-field-group.js:1414 -#: assets/build/js/acf-field-group.js:1716 -msgid "The string \"field_\" may not be used at the start of a field name" -msgstr "" -"O prefixo \"field_\" não pode ser utilizado no início do nome do campo." - -#: includes/admin/post-types/admin-field-group.php:71 -msgid "Field group draft updated." -msgstr "Rascunho de grupo de campos actualizado." - -#: includes/admin/post-types/admin-field-group.php:70 -msgid "Field group scheduled for." -msgstr "Grupo de campos agendado." - -#: includes/admin/post-types/admin-field-group.php:69 -msgid "Field group submitted." -msgstr "Grupo de campos enviado." - -#: includes/admin/post-types/admin-field-group.php:68 -msgid "Field group saved." -msgstr "Grupo de campos guardado." - -#: includes/admin/post-types/admin-field-group.php:67 -msgid "Field group published." -msgstr "Grupo de campos publicado." - -#: includes/admin/post-types/admin-field-group.php:64 -msgid "Field group deleted." -msgstr "Grupo de campos eliminado." - -#: includes/admin/post-types/admin-field-group.php:62 -#: includes/admin/post-types/admin-field-group.php:63 -#: includes/admin/post-types/admin-field-group.php:65 -msgid "Field group updated." -msgstr "Grupo de campos actualizado." - -#: includes/admin/admin-tools.php:118 -#: includes/admin/views/global/navigation.php:246 -#: includes/admin/views/tools/tools.php:21 -msgid "Tools" -msgstr "Ferramentas" - -#: includes/locations/abstract-acf-location.php:106 -msgid "is not equal to" -msgstr "não é igual a" - -#: includes/locations/abstract-acf-location.php:105 -msgid "is equal to" -msgstr "é igual a" - -#: includes/locations.php:102 -msgid "Forms" -msgstr "Formulários" - -#: includes/admin/post-types/admin-post-type.php:127 includes/locations.php:100 -#: includes/locations/class-acf-location-page.php:22 -#: assets/build/js/acf-internal-post-type.js:175 -#: assets/build/js/acf-internal-post-type.js:249 -msgid "Page" -msgstr "Página" - -#: includes/admin/post-types/admin-post-type.php:125 includes/locations.php:99 -#: includes/locations/class-acf-location-post.php:22 -#: assets/build/js/acf-internal-post-type.js:172 -#: assets/build/js/acf-internal-post-type.js:246 -msgid "Post" -msgstr "Artigo" - -#: includes/fields.php:354 -msgid "Relational" -msgstr "Relacional" - -#: includes/fields.php:353 -msgid "Choice" -msgstr "Opção" - -#: includes/fields.php:351 -msgid "Basic" -msgstr "Básico" - -#: includes/fields.php:320 -msgid "Unknown" -msgstr "Desconhecido" - -#: includes/fields.php:320 -msgid "Field type does not exist" -msgstr "Tipo de campo não existe" - -#: includes/forms/form-front.php:236 -msgid "Spam Detected" -msgstr "Spam detectado" - -#: includes/forms/form-front.php:107 -msgid "Post updated" -msgstr "Artigo actualizado" - -#: includes/forms/form-front.php:106 -msgid "Update" -msgstr "Actualizar" - -#: includes/forms/form-front.php:57 -msgid "Validate Email" -msgstr "Validar email" - -#: includes/fields.php:352 includes/forms/form-front.php:49 -msgid "Content" -msgstr "Conteúdo" - -#: includes/admin/views/acf-post-type/advanced-settings.php:21 -#: includes/forms/form-front.php:40 -msgid "Title" -msgstr "Título" - -#: includes/assets.php:372 includes/forms/form-comment.php:160 -#: assets/build/js/acf-input.js:7382 assets/build/js/acf-input.js:7968 -msgid "Edit field group" -msgstr "Editar grupo de campos" - -#: includes/admin/post-types/admin-field-group.php:117 -#: assets/build/js/acf-input.js:1125 assets/build/js/acf-input.js:1230 -msgid "Selection is less than" -msgstr "A selecção é menor do que" - -#: includes/admin/post-types/admin-field-group.php:116 -#: assets/build/js/acf-input.js:1106 assets/build/js/acf-input.js:1202 -msgid "Selection is greater than" -msgstr "A selecção é maior do que" - -#: includes/admin/post-types/admin-field-group.php:115 -#: assets/build/js/acf-input.js:1075 assets/build/js/acf-input.js:1170 -msgid "Value is less than" -msgstr "O valor é menor do que" - -#: includes/admin/post-types/admin-field-group.php:114 -#: assets/build/js/acf-input.js:1045 assets/build/js/acf-input.js:1139 -msgid "Value is greater than" -msgstr "O valor é maior do que" - -#: includes/admin/post-types/admin-field-group.php:113 -#: assets/build/js/acf-input.js:888 assets/build/js/acf-input.js:960 -msgid "Value contains" -msgstr "O valor contém" - -#: includes/admin/post-types/admin-field-group.php:112 -#: assets/build/js/acf-input.js:862 assets/build/js/acf-input.js:926 -msgid "Value matches pattern" -msgstr "O valor corresponde ao padrão" - -#: includes/admin/post-types/admin-field-group.php:111 -#: assets/build/js/acf-input.js:840 assets/build/js/acf-input.js:1023 -#: assets/build/js/acf-input.js:903 assets/build/js/acf-input.js:1116 -msgid "Value is not equal to" -msgstr "O valor é diferente de" - -#: includes/admin/post-types/admin-field-group.php:110 -#: assets/build/js/acf-input.js:810 assets/build/js/acf-input.js:964 -#: assets/build/js/acf-input.js:864 assets/build/js/acf-input.js:1053 -msgid "Value is equal to" -msgstr "O valor é igual a" - -#: includes/admin/post-types/admin-field-group.php:109 -#: assets/build/js/acf-input.js:788 assets/build/js/acf-input.js:841 -msgid "Has no value" -msgstr "Não tem valor" - -#: includes/admin/post-types/admin-field-group.php:108 -#: assets/build/js/acf-input.js:758 assets/build/js/acf-input.js:783 -msgid "Has any value" -msgstr "Tem um valor qualquer" - -#: includes/admin/admin-internal-post-type.php:345 -#: includes/admin/views/browse-fields-modal.php:62 includes/assets.php:353 -#: assets/build/js/acf.js:1564 assets/build/js/acf.js:1658 -msgid "Cancel" -msgstr "Cancelar" - -#: includes/assets.php:349 assets/build/js/acf.js:1738 -#: assets/build/js/acf.js:1855 -msgid "Are you sure?" -msgstr "Tem a certeza?" - -#: includes/assets.php:369 assets/build/js/acf-input.js:9442 -#: assets/build/js/acf-input.js:10294 -msgid "%d fields require attention" -msgstr "%d campos requerem a sua atenção" - -#: includes/assets.php:368 assets/build/js/acf-input.js:9440 -#: assets/build/js/acf-input.js:10290 -msgid "1 field requires attention" -msgstr "1 campo requer a sua atenção" - -#: includes/assets.php:367 includes/validation.php:288 -#: includes/validation.php:298 assets/build/js/acf-input.js:9435 -#: assets/build/js/acf-input.js:10285 -msgid "Validation failed" -msgstr "A validação falhou" - -#: includes/assets.php:366 assets/build/js/acf-input.js:9603 -#: assets/build/js/acf-input.js:10473 -msgid "Validation successful" -msgstr "Validação bem sucedida" - -#: includes/media.php:54 assets/build/js/acf-input.js:7210 -#: assets/build/js/acf-input.js:7772 -msgid "Restricted" -msgstr "Restrito" - -#: includes/media.php:53 assets/build/js/acf-input.js:7025 -#: assets/build/js/acf-input.js:7536 -msgid "Collapse Details" -msgstr "Minimizar detalhes" - -#: includes/media.php:52 assets/build/js/acf-input.js:7025 -#: assets/build/js/acf-input.js:7533 -msgid "Expand Details" -msgstr "Expandir detalhes" - -#: includes/admin/views/acf-post-type/advanced-settings.php:465 -#: includes/media.php:51 assets/build/js/acf-input.js:6892 -#: assets/build/js/acf-input.js:7381 -msgid "Uploaded to this post" -msgstr "Carregados neste artigo" - -#: includes/media.php:50 assets/build/js/acf-input.js:6931 -#: assets/build/js/acf-input.js:7420 -msgctxt "verb" -msgid "Update" -msgstr "Actualizar" - -#: includes/media.php:49 -msgctxt "verb" -msgid "Edit" -msgstr "Editar" - -#: includes/assets.php:363 assets/build/js/acf-input.js:9212 -#: assets/build/js/acf-input.js:10056 -msgid "The changes you made will be lost if you navigate away from this page" -msgstr "" -"As alterações que fez serão ignoradas se navegar para fora desta página." - -#: includes/api/api-helpers.php:3395 -msgid "File type must be %s." -msgstr "O tipo de ficheiro deve ser %s." - -#: includes/admin/post-types/admin-field-group.php:102 -#: includes/admin/views/acf-field-group/conditional-logic.php:59 -#: includes/admin/views/acf-field-group/conditional-logic.php:169 -#: includes/admin/views/acf-field-group/location-group.php:3 -#: includes/admin/views/acf-field-group/locations.php:36 -#: includes/api/api-helpers.php:3391 assets/build/js/acf-field-group.js:771 -#: assets/build/js/acf-field-group.js:2385 -#: assets/build/js/acf-field-group.js:933 -#: assets/build/js/acf-field-group.js:2807 -msgid "or" -msgstr "ou" - -#: includes/api/api-helpers.php:3364 -msgid "File size must not exceed %s." -msgstr "" - -#: includes/api/api-helpers.php:3359 -msgid "File size must be at least %s." -msgstr "O tamanho do ficheiro deve ser pelo menos de %s." - -#: includes/api/api-helpers.php:3344 -msgid "Image height must not exceed %dpx." -msgstr "A altura da imagem não deve exceder os %dpx." - -#: includes/api/api-helpers.php:3339 -msgid "Image height must be at least %dpx." -msgstr "A altura da imagem deve ser pelo menos de %dpx." - -#: includes/api/api-helpers.php:3325 -msgid "Image width must not exceed %dpx." -msgstr "A largura da imagem não deve exceder os %dpx." - -#: includes/api/api-helpers.php:3320 -msgid "Image width must be at least %dpx." -msgstr "A largura da imagem deve ser pelo menos de %dpx." - -#: includes/api/api-helpers.php:1561 includes/api/api-term.php:147 -msgid "(no title)" -msgstr "(sem título)" - -#: includes/api/api-helpers.php:853 -msgid "Full Size" -msgstr "Tamanho original" - -#: includes/api/api-helpers.php:812 -msgid "Large" -msgstr "Grande" - -#: includes/api/api-helpers.php:811 -msgid "Medium" -msgstr "Média" - -#: includes/api/api-helpers.php:810 -msgid "Thumbnail" -msgstr "Miniatura" - -#: includes/acf-field-functions.php:854 -#: includes/admin/post-types/admin-field-group.php:99 -#: assets/build/js/acf-field-group.js:1077 -#: assets/build/js/acf-field-group.js:1260 -msgid "(no label)" -msgstr "(sem legenda)" - -#: includes/fields/class-acf-field-textarea.php:145 -msgid "Sets the textarea height" -msgstr "Define a altura da área de texto" - -#: includes/fields/class-acf-field-textarea.php:144 -msgid "Rows" -msgstr "Linhas" - -#: includes/fields/class-acf-field-textarea.php:25 -msgid "Text Area" -msgstr "Área de texto" - -#: includes/fields/class-acf-field-checkbox.php:451 -msgid "Prepend an extra checkbox to toggle all choices" -msgstr "" -"Preceder com caixa de selecção adicional para seleccionar todas as opções" - -#: includes/fields/class-acf-field-checkbox.php:413 -msgid "Save 'custom' values to the field's choices" -msgstr "Guarda valores personalizados nas opções do campo" - -#: includes/fields/class-acf-field-checkbox.php:402 -msgid "Allow 'custom' values to be added" -msgstr "Permite adicionar valores personalizados" - -#: includes/fields/class-acf-field-checkbox.php:38 -msgid "Add new choice" -msgstr "Adicionar nova opção" - -#: includes/fields/class-acf-field-checkbox.php:174 -msgid "Toggle All" -msgstr "Seleccionar tudo" - -#: includes/fields/class-acf-field-page_link.php:506 -msgid "Allow Archives URLs" -msgstr "Permitir URL do arquivo" - -#: includes/fields/class-acf-field-page_link.php:179 -msgid "Archives" -msgstr "Arquivo" - -#: includes/fields/class-acf-field-page_link.php:25 -msgid "Page Link" -msgstr "Ligação de página" - -#: includes/fields/class-acf-field-taxonomy.php:943 -#: includes/locations/class-acf-location-user-form.php:72 -msgid "Add" -msgstr "Adicionar" - -#: includes/admin/views/acf-field-group/fields.php:53 -#: includes/fields/class-acf-field-taxonomy.php:908 -msgid "Name" -msgstr "Nome" - -#: includes/fields/class-acf-field-taxonomy.php:892 -msgid "%s added" -msgstr "%s adicionado(a)" - -#: includes/fields/class-acf-field-taxonomy.php:856 -msgid "%s already exists" -msgstr "%s já existe" - -#: includes/fields/class-acf-field-taxonomy.php:844 -msgid "User unable to add new %s" -msgstr "O utilizador não pôde adicionar novo(a) %s" - -#: includes/fields/class-acf-field-taxonomy.php:742 -msgid "Term ID" -msgstr "ID do termo" - -#: includes/fields/class-acf-field-taxonomy.php:741 -msgid "Term Object" -msgstr "Termo" - -#: includes/fields/class-acf-field-taxonomy.php:726 -msgid "Load value from posts terms" -msgstr "Carrega os termos a partir dos termos dos conteúdos." - -#: includes/fields/class-acf-field-taxonomy.php:725 -msgid "Load Terms" -msgstr "Carregar termos" - -#: includes/fields/class-acf-field-taxonomy.php:715 -msgid "Connect selected terms to the post" -msgstr "Liga os termos seleccionados ao conteúdo." - -#: includes/fields/class-acf-field-taxonomy.php:714 -msgid "Save Terms" -msgstr "Guardar termos" - -#: includes/fields/class-acf-field-taxonomy.php:704 -msgid "Allow new terms to be created whilst editing" -msgstr "Permite a criação de novos termos durante a edição." - -#: includes/fields/class-acf-field-taxonomy.php:703 -msgid "Create Terms" -msgstr "Criar termos" - -#: includes/fields/class-acf-field-taxonomy.php:762 -msgid "Radio Buttons" -msgstr "Botões de opções" - -#: includes/fields/class-acf-field-taxonomy.php:761 -msgid "Single Value" -msgstr "Valor único" - -#: includes/fields/class-acf-field-taxonomy.php:759 -msgid "Multi Select" -msgstr "Selecção múltipla" - -#: includes/fields/class-acf-field-checkbox.php:25 -#: includes/fields/class-acf-field-taxonomy.php:758 -msgid "Checkbox" -msgstr "Caixa de selecção" - -#: includes/fields/class-acf-field-taxonomy.php:757 -msgid "Multiple Values" -msgstr "Valores múltiplos" - -#: includes/fields/class-acf-field-taxonomy.php:752 -msgid "Select the appearance of this field" -msgstr "Seleccione a apresentação deste campo." - -#: includes/fields/class-acf-field-taxonomy.php:751 -msgid "Appearance" -msgstr "Apresentação" - -#: includes/fields/class-acf-field-taxonomy.php:693 -msgid "Select the taxonomy to be displayed" -msgstr "Seleccione a taxonomia que será mostrada." - -#: includes/fields/class-acf-field-taxonomy.php:654 -msgctxt "No Terms" -msgid "No %s" -msgstr "" - -#: includes/fields/class-acf-field-number.php:266 -msgid "Value must be equal to or lower than %d" -msgstr "O valor deve ser igual ou inferior a %d" - -#: includes/fields/class-acf-field-number.php:259 -msgid "Value must be equal to or higher than %d" -msgstr "O valor deve ser igual ou superior a %d" - -#: includes/fields/class-acf-field-number.php:244 -msgid "Value must be a number" -msgstr "O valor deve ser um número" - -#: includes/fields/class-acf-field-number.php:25 -msgid "Number" -msgstr "Número" - -#: includes/fields/class-acf-field-radio.php:264 -msgid "Save 'other' values to the field's choices" -msgstr "Guardar 'outros' valores nas opções do campo" - -#: includes/fields/class-acf-field-radio.php:253 -msgid "Add 'other' choice to allow for custom values" -msgstr "" -"Adicionar opção 'outros' para permitir a inserção de valores personalizados" - -#: includes/admin/views/global/navigation.php:196 -msgid "Other" -msgstr "Outro" - -#: includes/fields/class-acf-field-radio.php:25 -msgid "Radio Button" -msgstr "Botão de opção" - -#: includes/fields/class-acf-field-accordion.php:107 -msgid "" -"Define an endpoint for the previous accordion to stop. This accordion will " -"not be visible." -msgstr "" -"Define o fim do acordeão anterior. Este item de acordeão não será visível." - -#: includes/fields/class-acf-field-accordion.php:96 -msgid "Allow this accordion to open without closing others." -msgstr "Permite abrir este item de acordeão sem fechar os restantes." - -#: includes/fields/class-acf-field-accordion.php:95 -msgid "Multi-Expand" -msgstr "" - -#: includes/fields/class-acf-field-accordion.php:85 -msgid "Display this accordion as open on page load." -msgstr "Mostrar este item de acordeão aberto ao carregar a página." - -#: includes/fields/class-acf-field-accordion.php:84 -msgid "Open" -msgstr "Aberto" - -#: includes/fields/class-acf-field-accordion.php:25 -msgid "Accordion" -msgstr "Acordeão" - -#: includes/fields/class-acf-field-file.php:267 -#: includes/fields/class-acf-field-file.php:279 -msgid "Restrict which files can be uploaded" -msgstr "Restringe que ficheiros podem ser carregados." - -#: includes/fields/class-acf-field-file.php:220 -msgid "File ID" -msgstr "ID do ficheiro" - -#: includes/fields/class-acf-field-file.php:219 -msgid "File URL" -msgstr "URL do ficheiro" - -#: includes/fields/class-acf-field-file.php:218 -msgid "File Array" -msgstr "Array do ficheiro" - -#: includes/fields/class-acf-field-file.php:186 -msgid "Add File" -msgstr "Adicionar ficheiro" - -#: includes/admin/tools/class-acf-admin-tool-import.php:156 -#: includes/fields/class-acf-field-file.php:186 -msgid "No file selected" -msgstr "Nenhum ficheiro seleccionado" - -#: includes/fields/class-acf-field-file.php:150 -msgid "File name" -msgstr "Nome do ficheiro" - -#: includes/fields/class-acf-field-file.php:63 -#: assets/build/js/acf-input.js:2474 assets/build/js/acf-input.js:2625 -msgid "Update File" -msgstr "Actualizar ficheiro" - -#: includes/fields/class-acf-field-file.php:62 -#: assets/build/js/acf-input.js:2473 assets/build/js/acf-input.js:2624 -msgid "Edit File" -msgstr "Editar ficheiro" - -#: includes/admin/tools/class-acf-admin-tool-import.php:58 -#: includes/fields/class-acf-field-file.php:61 -#: assets/build/js/acf-input.js:2447 assets/build/js/acf-input.js:2597 -msgid "Select File" -msgstr "Seleccionar ficheiro" - -#: includes/fields/class-acf-field-file.php:25 -msgid "File" -msgstr "Ficheiro" - -#: includes/fields/class-acf-field-password.php:25 -msgid "Password" -msgstr "Senha" - -#: includes/fields/class-acf-field-select.php:392 -msgid "Specify the value returned" -msgstr "Especifica o valor devolvido." - -#: includes/fields/class-acf-field-select.php:461 -msgid "Use AJAX to lazy load choices?" -msgstr "Utilizar AJAX para carregar opções?" - -#: includes/fields/class-acf-field-checkbox.php:362 -#: includes/fields/class-acf-field-select.php:381 -msgid "Enter each default value on a new line" -msgstr "Insira cada valor por omissão numa linha separada" - -#: includes/fields/class-acf-field-select.php:252 includes/media.php:48 -#: assets/build/js/acf-input.js:6790 assets/build/js/acf-input.js:7266 -msgctxt "verb" -msgid "Select" -msgstr "Seleccionar" - -#: includes/fields/class-acf-field-select.php:121 -msgctxt "Select2 JS load_fail" -msgid "Loading failed" -msgstr "Falhou ao carregar" - -#: includes/fields/class-acf-field-select.php:120 -msgctxt "Select2 JS searching" -msgid "Searching…" -msgstr "A pesquisar…" - -#: includes/fields/class-acf-field-select.php:119 -msgctxt "Select2 JS load_more" -msgid "Loading more results…" -msgstr "A carregar mais resultados…" - -#: includes/fields/class-acf-field-select.php:118 -msgctxt "Select2 JS selection_too_long_n" -msgid "You can only select %d items" -msgstr "Só pode seleccionar %d itens" - -#: includes/fields/class-acf-field-select.php:117 -msgctxt "Select2 JS selection_too_long_1" -msgid "You can only select 1 item" -msgstr "Só pode seleccionar 1 item" - -#: includes/fields/class-acf-field-select.php:116 -msgctxt "Select2 JS input_too_long_n" -msgid "Please delete %d characters" -msgstr "Por favor elimine %d caracteres" - -#: includes/fields/class-acf-field-select.php:115 -msgctxt "Select2 JS input_too_long_1" -msgid "Please delete 1 character" -msgstr "Por favor elimine 1 caractere" - -#: includes/fields/class-acf-field-select.php:114 -msgctxt "Select2 JS input_too_short_n" -msgid "Please enter %d or more characters" -msgstr "Por favor insira %d ou mais caracteres" - -#: includes/fields/class-acf-field-select.php:113 -msgctxt "Select2 JS input_too_short_1" -msgid "Please enter 1 or more characters" -msgstr "Por favor insira 1 ou mais caracteres" - -#: includes/fields/class-acf-field-select.php:112 -msgctxt "Select2 JS matches_0" -msgid "No matches found" -msgstr "Nenhuma correspondência encontrada" - -#: includes/fields/class-acf-field-select.php:111 -msgctxt "Select2 JS matches_n" -msgid "%d results are available, use up and down arrow keys to navigate." -msgstr "" -"%d resultados encontrados, use as setas para cima ou baixo para navegar." - -#: includes/fields/class-acf-field-select.php:110 -msgctxt "Select2 JS matches_1" -msgid "One result is available, press enter to select it." -msgstr "Um resultado encontrado, prima Enter para seleccioná-lo." - -#: includes/fields/class-acf-field-select.php:25 -#: includes/fields/class-acf-field-taxonomy.php:763 -msgctxt "noun" -msgid "Select" -msgstr "Selecção" - -#: includes/fields/class-acf-field-user.php:73 -msgid "User ID" -msgstr "ID do utilizador" - -#: includes/fields/class-acf-field-user.php:72 -msgid "User Object" -msgstr "Objecto do utilizador" - -#: includes/fields/class-acf-field-user.php:71 -msgid "User Array" -msgstr "Array do utilizador" - -#: includes/fields/class-acf-field-user.php:59 -msgid "All user roles" -msgstr "Todos os papéis de utilizador" - -#: includes/fields/class-acf-field-user.php:51 -msgid "Filter by Role" -msgstr "" - -#: includes/fields/class-acf-field-user.php:15 includes/locations.php:101 -msgid "User" -msgstr "Utilizador" - -#: includes/fields/class-acf-field-separator.php:25 -msgid "Separator" -msgstr "Divisória" - -#: includes/fields/class-acf-field-color_picker.php:75 -msgid "Select Color" -msgstr "Seleccionar cor" - -#: includes/admin/post-types/admin-post-type.php:129 -#: includes/admin/post-types/admin-taxonomy.php:131 -#: includes/fields/class-acf-field-color_picker.php:73 -#: assets/build/js/acf-internal-post-type.js:72 -#: assets/build/js/acf-internal-post-type.js:86 -msgid "Default" -msgstr "Por omissão" - -#: includes/admin/views/acf-post-type/advanced-settings.php:89 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:141 -#: includes/fields/class-acf-field-color_picker.php:71 -msgid "Clear" -msgstr "Limpar" - -#: includes/fields/class-acf-field-color_picker.php:25 -msgid "Color Picker" -msgstr "Selecção de cor" - -#: includes/fields/class-acf-field-date_time_picker.php:88 -msgctxt "Date Time Picker JS pmTextShort" -msgid "P" -msgstr "P" - -#: includes/fields/class-acf-field-date_time_picker.php:87 -msgctxt "Date Time Picker JS pmText" -msgid "PM" -msgstr "PM" - -#: includes/fields/class-acf-field-date_time_picker.php:84 -msgctxt "Date Time Picker JS amTextShort" -msgid "A" -msgstr "A" - -#: includes/fields/class-acf-field-date_time_picker.php:83 -msgctxt "Date Time Picker JS amText" -msgid "AM" -msgstr "AM" - -#: includes/fields/class-acf-field-date_time_picker.php:81 -msgctxt "Date Time Picker JS selectText" -msgid "Select" -msgstr "Seleccionar" - -#: includes/fields/class-acf-field-date_time_picker.php:80 -msgctxt "Date Time Picker JS closeText" -msgid "Done" -msgstr "Concluído" - -#: includes/fields/class-acf-field-date_time_picker.php:79 -msgctxt "Date Time Picker JS currentText" -msgid "Now" -msgstr "Agora" - -#: includes/fields/class-acf-field-date_time_picker.php:78 -msgctxt "Date Time Picker JS timezoneText" -msgid "Time Zone" -msgstr "Fuso horário" - -#: includes/fields/class-acf-field-date_time_picker.php:77 -msgctxt "Date Time Picker JS microsecText" -msgid "Microsecond" -msgstr "Microsegundo" - -#: includes/fields/class-acf-field-date_time_picker.php:76 -msgctxt "Date Time Picker JS millisecText" -msgid "Millisecond" -msgstr "Milissegundo" - -#: includes/fields/class-acf-field-date_time_picker.php:75 -msgctxt "Date Time Picker JS secondText" -msgid "Second" -msgstr "Segundo" - -#: includes/fields/class-acf-field-date_time_picker.php:74 -msgctxt "Date Time Picker JS minuteText" -msgid "Minute" -msgstr "Minuto" - -#: includes/fields/class-acf-field-date_time_picker.php:73 -msgctxt "Date Time Picker JS hourText" -msgid "Hour" -msgstr "Hora" - -#: includes/fields/class-acf-field-date_time_picker.php:72 -msgctxt "Date Time Picker JS timeText" -msgid "Time" -msgstr "Hora" - -#: includes/fields/class-acf-field-date_time_picker.php:71 -msgctxt "Date Time Picker JS timeOnlyTitle" -msgid "Choose Time" -msgstr "Escolha a hora" - -#: includes/fields/class-acf-field-date_time_picker.php:25 -msgid "Date Time Picker" -msgstr "Selecção de data e hora" - -#: includes/fields/class-acf-field-accordion.php:106 -msgid "Endpoint" -msgstr "Fim" - -#: includes/admin/views/acf-field-group/options.php:130 -#: includes/fields/class-acf-field-tab.php:115 -msgid "Left aligned" -msgstr "Alinhado à esquerda" - -#: includes/admin/views/acf-field-group/options.php:129 -#: includes/fields/class-acf-field-tab.php:114 -msgid "Top aligned" -msgstr "Alinhado acima" - -#: includes/fields/class-acf-field-tab.php:110 -msgid "Placement" -msgstr "Posição" - -#: includes/fields/class-acf-field-tab.php:26 -msgid "Tab" -msgstr "Separador" - -#: includes/fields/class-acf-field-url.php:162 -msgid "Value must be a valid URL" -msgstr "O valor deve ser um URL válido" - -#: includes/fields/class-acf-field-link.php:177 -msgid "Link URL" -msgstr "URL da ligação" - -#: includes/fields/class-acf-field-link.php:176 -msgid "Link Array" -msgstr "Array da ligação" - -#: includes/fields/class-acf-field-link.php:145 -msgid "Opens in a new window/tab" -msgstr "Abre numa nova janela/separador" - -#: includes/fields/class-acf-field-link.php:140 -msgid "Select Link" -msgstr "Seleccionar ligação" - -#: includes/fields/class-acf-field-link.php:25 -msgid "Link" -msgstr "Ligação" - -#: includes/fields/class-acf-field-email.php:25 -msgid "Email" -msgstr "Email" - -#: includes/fields/class-acf-field-number.php:188 -#: includes/fields/class-acf-field-range.php:217 -msgid "Step Size" -msgstr "Valor dos passos" - -#: includes/fields/class-acf-field-number.php:158 -#: includes/fields/class-acf-field-range.php:195 -msgid "Maximum Value" -msgstr "Valor máximo" - -#: includes/fields/class-acf-field-number.php:148 -#: includes/fields/class-acf-field-range.php:184 -msgid "Minimum Value" -msgstr "Valor mínimo" - -#: includes/fields/class-acf-field-range.php:25 -msgid "Range" -msgstr "Intervalo" - -#: includes/fields/class-acf-field-button-group.php:175 -#: includes/fields/class-acf-field-checkbox.php:379 -#: includes/fields/class-acf-field-radio.php:220 -#: includes/fields/class-acf-field-select.php:399 -msgid "Both (Array)" -msgstr "Ambos (Array)" - -#: includes/admin/views/acf-field-group/fields.php:52 -#: includes/fields/class-acf-field-button-group.php:174 -#: includes/fields/class-acf-field-checkbox.php:378 -#: includes/fields/class-acf-field-radio.php:219 -#: includes/fields/class-acf-field-select.php:398 -msgid "Label" -msgstr "Legenda" - -#: includes/fields/class-acf-field-button-group.php:173 -#: includes/fields/class-acf-field-checkbox.php:377 -#: includes/fields/class-acf-field-radio.php:218 -#: includes/fields/class-acf-field-select.php:397 -msgid "Value" -msgstr "Valor" - -#: includes/fields/class-acf-field-button-group.php:222 -#: includes/fields/class-acf-field-checkbox.php:441 -#: includes/fields/class-acf-field-radio.php:292 -msgid "Vertical" -msgstr "Vertical" - -#: includes/fields/class-acf-field-button-group.php:221 -#: includes/fields/class-acf-field-checkbox.php:442 -#: includes/fields/class-acf-field-radio.php:293 -msgid "Horizontal" -msgstr "Horizontal" - -#: includes/fields/class-acf-field-button-group.php:148 -#: includes/fields/class-acf-field-checkbox.php:352 -#: includes/fields/class-acf-field-radio.php:193 -#: includes/fields/class-acf-field-select.php:370 -msgid "red : Red" -msgstr "vermelho : Vermelho" - -#: includes/fields/class-acf-field-button-group.php:148 -#: includes/fields/class-acf-field-checkbox.php:352 -#: includes/fields/class-acf-field-radio.php:193 -#: includes/fields/class-acf-field-select.php:370 -msgid "For more control, you may specify both a value and label like this:" -msgstr "" -"Para maior controlo, pode especificar tanto os valores como as legendas:" - -#: includes/fields/class-acf-field-button-group.php:148 -#: includes/fields/class-acf-field-checkbox.php:352 -#: includes/fields/class-acf-field-radio.php:193 -#: includes/fields/class-acf-field-select.php:370 -msgid "Enter each choice on a new line." -msgstr "Insira cada opção numa linha separada." - -#: includes/fields/class-acf-field-button-group.php:147 -#: includes/fields/class-acf-field-checkbox.php:351 -#: includes/fields/class-acf-field-radio.php:192 -#: includes/fields/class-acf-field-select.php:369 -msgid "Choices" -msgstr "Opções" - -#: includes/fields/class-acf-field-button-group.php:24 -msgid "Button Group" -msgstr "Grupo de botões" - -#: includes/fields/class-acf-field-button-group.php:194 -#: includes/fields/class-acf-field-page_link.php:538 -#: includes/fields/class-acf-field-post_object.php:448 -#: includes/fields/class-acf-field-radio.php:238 -#: includes/fields/class-acf-field-select.php:429 -#: includes/fields/class-acf-field-taxonomy.php:772 -#: includes/fields/class-acf-field-user.php:103 -msgid "Allow Null" -msgstr "" - -#: includes/fields/class-acf-field-page_link.php:263 -#: includes/fields/class-acf-field-post_object.php:257 -#: includes/fields/class-acf-field-taxonomy.php:930 -msgid "Parent" -msgstr "Superior" - -#: includes/fields/class-acf-field-wysiwyg.php:390 -msgid "TinyMCE will not be initialized until field is clicked" -msgstr "" - -#: includes/fields/class-acf-field-wysiwyg.php:389 -msgid "Delay Initialization" -msgstr "" - -#: includes/fields/class-acf-field-wysiwyg.php:378 -msgid "Show Media Upload Buttons" -msgstr "" - -#: includes/fields/class-acf-field-wysiwyg.php:362 -msgid "Toolbar" -msgstr "Barra de ferramentas" - -#: includes/fields/class-acf-field-wysiwyg.php:354 -msgid "Text Only" -msgstr "Apenas HTML" - -#: includes/fields/class-acf-field-wysiwyg.php:353 -msgid "Visual Only" -msgstr "Apenas visual" - -#: includes/fields/class-acf-field-wysiwyg.php:352 -msgid "Visual & Text" -msgstr "Visual e HTML" - -#: includes/fields/class-acf-field-wysiwyg.php:347 -msgid "Tabs" -msgstr "Separadores" - -#: includes/fields/class-acf-field-wysiwyg.php:285 -msgid "Click to initialize TinyMCE" -msgstr "Clique para inicializar o TinyMCE" - -#: includes/fields/class-acf-field-wysiwyg.php:279 -msgctxt "Name for the Text editor tab (formerly HTML)" -msgid "Text" -msgstr "HTML" - -#: includes/fields/class-acf-field-wysiwyg.php:278 -msgid "Visual" -msgstr "Visual" - -#: includes/fields/class-acf-field-text.php:189 -#: includes/fields/class-acf-field-textarea.php:236 -msgid "Value must not exceed %d characters" -msgstr "O valor não deve exceder %d caracteres" - -#: includes/fields/class-acf-field-text.php:124 -#: includes/fields/class-acf-field-textarea.php:124 -msgid "Leave blank for no limit" -msgstr "Deixe em branco para não limitar" - -#: includes/fields/class-acf-field-text.php:123 -#: includes/fields/class-acf-field-textarea.php:123 -msgid "Character Limit" -msgstr "Limite de caracteres" - -#: includes/fields/class-acf-field-email.php:158 -#: includes/fields/class-acf-field-number.php:209 -#: includes/fields/class-acf-field-password.php:105 -#: includes/fields/class-acf-field-range.php:239 -#: includes/fields/class-acf-field-text.php:164 -msgid "Appears after the input" -msgstr "Mostrado depois do campo" - -#: includes/fields/class-acf-field-email.php:157 -#: includes/fields/class-acf-field-number.php:208 -#: includes/fields/class-acf-field-password.php:104 -#: includes/fields/class-acf-field-range.php:238 -#: includes/fields/class-acf-field-text.php:163 -msgid "Append" -msgstr "Suceder" - -#: includes/fields/class-acf-field-email.php:148 -#: includes/fields/class-acf-field-number.php:199 -#: includes/fields/class-acf-field-password.php:95 -#: includes/fields/class-acf-field-range.php:229 -#: includes/fields/class-acf-field-text.php:154 -msgid "Appears before the input" -msgstr "Mostrado antes do campo" - -#: includes/fields/class-acf-field-email.php:147 -#: includes/fields/class-acf-field-number.php:198 -#: includes/fields/class-acf-field-password.php:94 -#: includes/fields/class-acf-field-range.php:228 -#: includes/fields/class-acf-field-text.php:153 -msgid "Prepend" -msgstr "Preceder" - -#: includes/fields/class-acf-field-email.php:138 -#: includes/fields/class-acf-field-number.php:179 -#: includes/fields/class-acf-field-password.php:85 -#: includes/fields/class-acf-field-text.php:144 -#: includes/fields/class-acf-field-textarea.php:156 -#: includes/fields/class-acf-field-url.php:122 -msgid "Appears within the input" -msgstr "Mostrado dentro do campo" - -#: includes/fields/class-acf-field-email.php:137 -#: includes/fields/class-acf-field-number.php:178 -#: includes/fields/class-acf-field-password.php:84 -#: includes/fields/class-acf-field-text.php:143 -#: includes/fields/class-acf-field-textarea.php:155 -#: includes/fields/class-acf-field-url.php:121 -msgid "Placeholder Text" -msgstr "Texto predefinido" - -#: includes/fields/class-acf-field-button-group.php:158 -#: includes/fields/class-acf-field-email.php:118 -#: includes/fields/class-acf-field-number.php:129 -#: includes/fields/class-acf-field-radio.php:203 -#: includes/fields/class-acf-field-range.php:165 -#: includes/fields/class-acf-field-text.php:104 -#: includes/fields/class-acf-field-textarea.php:104 -#: includes/fields/class-acf-field-url.php:102 -#: includes/fields/class-acf-field-wysiwyg.php:312 -msgid "Appears when creating a new post" -msgstr "Mostrado ao criar um novo conteúdo" - -#: includes/fields/class-acf-field-text.php:25 -msgid "Text" -msgstr "Texto" - -#: includes/fields/class-acf-field-relationship.php:794 -msgid "%1$s requires at least %2$s selection" -msgid_plural "%1$s requires at least %2$s selections" -msgstr[0] "" -msgstr[1] "" - -#: includes/fields/class-acf-field-post_object.php:417 -#: includes/fields/class-acf-field-relationship.php:644 -msgid "Post ID" -msgstr "ID do conteúdo" - -#: includes/fields/class-acf-field-post_object.php:17 -#: includes/fields/class-acf-field-post_object.php:416 -#: includes/fields/class-acf-field-relationship.php:643 -msgid "Post Object" -msgstr "Conteúdo" - -#: includes/fields/class-acf-field-relationship.php:676 -msgid "Maximum Posts" -msgstr "" - -#: includes/fields/class-acf-field-relationship.php:666 -msgid "Minimum Posts" -msgstr "" - -#: includes/admin/views/acf-field-group/options.php:183 -#: includes/admin/views/acf-post-type/advanced-settings.php:29 -#: includes/fields/class-acf-field-relationship.php:701 -msgid "Featured Image" -msgstr "Imagem de destaque" - -#: includes/fields/class-acf-field-relationship.php:697 -msgid "Selected elements will be displayed in each result" -msgstr "Os elementos seleccionados serão mostrados em cada resultado." - -#: includes/fields/class-acf-field-relationship.php:696 -msgid "Elements" -msgstr "Elementos" - -#: includes/fields/class-acf-field-relationship.php:630 -#: includes/fields/class-acf-field-taxonomy.php:20 -#: includes/fields/class-acf-field-taxonomy.php:692 -#: includes/locations/class-acf-location-taxonomy.php:22 -msgid "Taxonomy" -msgstr "Taxonomia" - -#: includes/fields/class-acf-field-relationship.php:629 -#: includes/locations/class-acf-location-post-type.php:22 -#: includes/post-types/class-acf-post-type.php:92 -msgid "Post Type" -msgstr "Tipo de conteúdo" - -#: includes/fields/class-acf-field-relationship.php:623 -msgid "Filters" -msgstr "Filtros" - -#: includes/fields/class-acf-field-page_link.php:499 -#: includes/fields/class-acf-field-post_object.php:404 -#: includes/fields/class-acf-field-relationship.php:616 -msgid "All taxonomies" -msgstr "Todas as taxonomias" - -#: includes/fields/class-acf-field-page_link.php:491 -#: includes/fields/class-acf-field-post_object.php:396 -#: includes/fields/class-acf-field-relationship.php:608 -msgid "Filter by Taxonomy" -msgstr "Filtrar por taxonomia" - -#: includes/fields/class-acf-field-page_link.php:469 -#: includes/fields/class-acf-field-post_object.php:374 -#: includes/fields/class-acf-field-relationship.php:586 -msgid "All post types" -msgstr "Todos os tipos de conteúdo" - -#: includes/fields/class-acf-field-page_link.php:461 -#: includes/fields/class-acf-field-post_object.php:366 -#: includes/fields/class-acf-field-relationship.php:578 -msgid "Filter by Post Type" -msgstr "Filtrar por tipo de conteúdo" - -#: includes/fields/class-acf-field-relationship.php:476 -msgid "Search..." -msgstr "Pesquisar..." - -#: includes/fields/class-acf-field-relationship.php:406 -msgid "Select taxonomy" -msgstr "Seleccione taxonomia" - -#: includes/fields/class-acf-field-relationship.php:397 -msgid "Select post type" -msgstr "Seleccione tipo de conteúdo" - -#: includes/fields/class-acf-field-relationship.php:61 -#: assets/build/js/acf-input.js:3930 assets/build/js/acf-input.js:4214 -msgid "No matches found" -msgstr "Nenhuma correspondência encontrada" - -#: includes/fields/class-acf-field-relationship.php:60 -#: assets/build/js/acf-input.js:3913 assets/build/js/acf-input.js:4193 -msgid "Loading" -msgstr "A carregar" - -#: includes/fields/class-acf-field-relationship.php:59 -#: assets/build/js/acf-input.js:3818 assets/build/js/acf-input.js:4084 -msgid "Maximum values reached ( {max} values )" -msgstr "Valor máximo alcançado ( valor {max} )" - -#: includes/fields/class-acf-field-relationship.php:17 -msgid "Relationship" -msgstr "Relação" - -#: includes/fields/class-acf-field-file.php:291 -#: includes/fields/class-acf-field-image.php:317 -msgid "Comma separated list. Leave blank for all types" -msgstr "" -"Lista separada por vírgulas. Deixe em branco para permitir todos os tipos." - -#: includes/fields/class-acf-field-file.php:290 -#: includes/fields/class-acf-field-image.php:316 -msgid "Allowed File Types" -msgstr "" - -#: includes/fields/class-acf-field-file.php:278 -#: includes/fields/class-acf-field-image.php:280 -msgid "Maximum" -msgstr "Máximo" - -#: includes/fields/class-acf-field-file.php:154 -#: includes/fields/class-acf-field-file.php:270 -#: includes/fields/class-acf-field-file.php:282 -#: includes/fields/class-acf-field-image.php:271 -#: includes/fields/class-acf-field-image.php:307 -msgid "File size" -msgstr "Tamanho do ficheiro" - -#: includes/fields/class-acf-field-image.php:245 -#: includes/fields/class-acf-field-image.php:281 -msgid "Restrict which images can be uploaded" -msgstr "Restringir que imagens que ser carregadas" - -#: includes/fields/class-acf-field-file.php:266 -#: includes/fields/class-acf-field-image.php:244 -msgid "Minimum" -msgstr "Mínimo" - -#: includes/fields/class-acf-field-file.php:235 -#: includes/fields/class-acf-field-image.php:210 -msgid "Uploaded to post" -msgstr "Carregados no artigo" - -#: includes/fields/class-acf-field-file.php:234 -#: includes/fields/class-acf-field-image.php:209 -#: includes/locations/class-acf-location-attachment.php:73 -#: includes/locations/class-acf-location-comment.php:61 -#: includes/locations/class-acf-location-nav-menu.php:74 -#: includes/locations/class-acf-location-taxonomy.php:63 -#: includes/locations/class-acf-location-user-form.php:71 -#: includes/locations/class-acf-location-user-role.php:78 -#: includes/locations/class-acf-location-widget.php:65 -msgid "All" -msgstr "Todos" - -#: includes/fields/class-acf-field-file.php:229 -#: includes/fields/class-acf-field-image.php:204 -msgid "Limit the media library choice" -msgstr "Limita a escolha da biblioteca de media." - -#: includes/fields/class-acf-field-file.php:228 -#: includes/fields/class-acf-field-image.php:203 -msgid "Library" -msgstr "Biblioteca" - -#: includes/fields/class-acf-field-image.php:336 -msgid "Preview Size" -msgstr "Tamanho da pré-visualização" - -#: includes/fields/class-acf-field-image.php:195 -msgid "Image ID" -msgstr "ID da imagem" - -#: includes/fields/class-acf-field-image.php:194 -msgid "Image URL" -msgstr "URL da imagem" - -#: includes/fields/class-acf-field-image.php:193 -msgid "Image Array" -msgstr "Array da imagem" - -#: includes/fields/class-acf-field-button-group.php:168 -#: includes/fields/class-acf-field-checkbox.php:372 -#: includes/fields/class-acf-field-file.php:213 -#: includes/fields/class-acf-field-link.php:171 -#: includes/fields/class-acf-field-radio.php:213 -msgid "Specify the returned value on front end" -msgstr "Especifica o valor devolvido na frente do site." - -#: includes/fields/class-acf-field-button-group.php:167 -#: includes/fields/class-acf-field-checkbox.php:371 -#: includes/fields/class-acf-field-file.php:212 -#: includes/fields/class-acf-field-link.php:170 -#: includes/fields/class-acf-field-radio.php:212 -#: includes/fields/class-acf-field-taxonomy.php:736 -msgid "Return Value" -msgstr "Valor devolvido" - -#: includes/fields/class-acf-field-image.php:162 -msgid "Add Image" -msgstr "Adicionar imagem" - -#: includes/fields/class-acf-field-image.php:162 -msgid "No image selected" -msgstr "Nenhuma imagem seleccionada" - -#: includes/assets.php:352 includes/fields/class-acf-field-file.php:162 -#: includes/fields/class-acf-field-image.php:142 -#: includes/fields/class-acf-field-link.php:145 assets/build/js/acf.js:1563 -#: assets/build/js/acf.js:1657 -msgid "Remove" -msgstr "Remover" - -#: includes/admin/views/acf-field-group/field.php:76 -#: includes/fields/class-acf-field-file.php:160 -#: includes/fields/class-acf-field-image.php:140 -#: includes/fields/class-acf-field-link.php:145 -msgid "Edit" -msgstr "Editar" - -#: includes/fields/class-acf-field-image.php:70 includes/media.php:55 -#: assets/build/js/acf-input.js:6837 assets/build/js/acf-input.js:7320 -msgid "All images" -msgstr "Todas as imagens" - -#: includes/fields/class-acf-field-image.php:69 -#: assets/build/js/acf-input.js:3181 assets/build/js/acf-input.js:3399 -msgid "Update Image" -msgstr "Actualizar imagem" - -#: includes/fields/class-acf-field-image.php:68 -#: assets/build/js/acf-input.js:3180 assets/build/js/acf-input.js:3398 -msgid "Edit Image" -msgstr "Editar imagem" - -#: includes/fields/class-acf-field-image.php:67 -#: assets/build/js/acf-input.js:3156 assets/build/js/acf-input.js:3373 -msgid "Select Image" -msgstr "Seleccionar imagem" - -#: includes/fields/class-acf-field-image.php:25 -msgid "Image" -msgstr "Imagem" - -#: includes/fields/class-acf-field-message.php:125 -msgid "Allow HTML markup to display as visible text instead of rendering" -msgstr "" -"Permite visualizar o código HTML como texto visível, em vez de o processar." - -#: includes/fields/class-acf-field-message.php:124 -msgid "Escape HTML" -msgstr "Mostrar HTML" - -#: includes/fields/class-acf-field-message.php:116 -#: includes/fields/class-acf-field-textarea.php:172 -msgid "No Formatting" -msgstr "Sem formatação" - -#: includes/fields/class-acf-field-message.php:115 -#: includes/fields/class-acf-field-textarea.php:171 -msgid "Automatically add <br>" -msgstr "Adicionar <br> automaticamente" - -#: includes/fields/class-acf-field-message.php:114 -#: includes/fields/class-acf-field-textarea.php:170 -msgid "Automatically add paragraphs" -msgstr "Adicionar parágrafos automaticamente" - -#: includes/fields/class-acf-field-message.php:110 -#: includes/fields/class-acf-field-textarea.php:166 -msgid "Controls how new lines are rendered" -msgstr "Controla como serão visualizadas novas linhas." - -#: includes/fields/class-acf-field-message.php:109 -#: includes/fields/class-acf-field-textarea.php:165 -msgid "New Lines" -msgstr "Novas linhas" - -#: includes/fields/class-acf-field-date_picker.php:232 -#: includes/fields/class-acf-field-date_time_picker.php:220 -msgid "Week Starts On" -msgstr "Semana começa em" - -#: includes/fields/class-acf-field-date_picker.php:201 -msgid "The format used when saving a value" -msgstr "O formato usado ao guardar um valor" - -#: includes/fields/class-acf-field-date_picker.php:200 -msgid "Save Format" -msgstr "Formato guardado" - -#: includes/fields/class-acf-field-date_picker.php:67 -msgctxt "Date Picker JS weekHeader" -msgid "Wk" -msgstr "Sem" - -#: includes/fields/class-acf-field-date_picker.php:66 -msgctxt "Date Picker JS prevText" -msgid "Prev" -msgstr "Anterior" - -#: includes/fields/class-acf-field-date_picker.php:65 -msgctxt "Date Picker JS nextText" -msgid "Next" -msgstr "Seguinte" - -#: includes/fields/class-acf-field-date_picker.php:64 -msgctxt "Date Picker JS currentText" -msgid "Today" -msgstr "Hoje" - -#: includes/fields/class-acf-field-date_picker.php:63 -msgctxt "Date Picker JS closeText" -msgid "Done" -msgstr "Concluído" - -#: includes/fields/class-acf-field-date_picker.php:25 -msgid "Date Picker" -msgstr "Selecção de data" - -#: includes/fields/class-acf-field-image.php:248 -#: includes/fields/class-acf-field-image.php:284 -#: includes/fields/class-acf-field-oembed.php:268 -msgid "Width" -msgstr "Largura" - -#: includes/fields/class-acf-field-oembed.php:265 -#: includes/fields/class-acf-field-oembed.php:277 -msgid "Embed Size" -msgstr "Tamanho da incorporação" - -#: includes/fields/class-acf-field-oembed.php:222 -msgid "Enter URL" -msgstr "Insira o URL" - -#: includes/fields/class-acf-field-oembed.php:25 -msgid "oEmbed" -msgstr "oEmbed" - -#: includes/fields/class-acf-field-true_false.php:184 -msgid "Text shown when inactive" -msgstr "Texto mostrado quando inactivo" - -#: includes/fields/class-acf-field-true_false.php:183 -msgid "Off Text" -msgstr "Texto desligado" - -#: includes/fields/class-acf-field-true_false.php:168 -msgid "Text shown when active" -msgstr "Texto mostrado quando activo" - -#: includes/fields/class-acf-field-true_false.php:167 -msgid "On Text" -msgstr "Texto ligado" - -#: includes/fields/class-acf-field-select.php:450 -#: includes/fields/class-acf-field-true_false.php:199 -msgid "Stylized UI" -msgstr "" - -#: includes/fields/class-acf-field-button-group.php:157 -#: includes/fields/class-acf-field-checkbox.php:361 -#: includes/fields/class-acf-field-color_picker.php:156 -#: includes/fields/class-acf-field-email.php:117 -#: includes/fields/class-acf-field-number.php:128 -#: includes/fields/class-acf-field-radio.php:202 -#: includes/fields/class-acf-field-range.php:164 -#: includes/fields/class-acf-field-select.php:380 -#: includes/fields/class-acf-field-text.php:103 -#: includes/fields/class-acf-field-textarea.php:103 -#: includes/fields/class-acf-field-true_false.php:147 -#: includes/fields/class-acf-field-url.php:101 -#: includes/fields/class-acf-field-wysiwyg.php:311 -msgid "Default Value" -msgstr "Valor por omissão" - -#: includes/fields/class-acf-field-true_false.php:138 -msgid "Displays text alongside the checkbox" -msgstr "Texto mostrado ao lado da caixa de selecção" - -#: includes/fields/class-acf-field-message.php:26 -#: includes/fields/class-acf-field-message.php:99 -#: includes/fields/class-acf-field-true_false.php:137 -msgid "Message" -msgstr "Mensagem" - -#: includes/assets.php:351 includes/fields/class-acf-field-true_false.php:86 -#: includes/fields/class-acf-field-true_false.php:187 -#: assets/build/js/acf.js:1740 assets/build/js/acf.js:1857 -msgid "No" -msgstr "Não" - -#: includes/assets.php:350 includes/fields/class-acf-field-true_false.php:83 -#: includes/fields/class-acf-field-true_false.php:171 -#: assets/build/js/acf.js:1739 assets/build/js/acf.js:1856 -msgid "Yes" -msgstr "Sim" - -#: includes/fields/class-acf-field-true_false.php:25 -msgid "True / False" -msgstr "Verdadeiro / Falso" - -#: includes/fields/class-acf-field-group.php:474 -msgid "Row" -msgstr "Linha" - -#: includes/fields/class-acf-field-group.php:473 -msgid "Table" -msgstr "Tabela" - -#: includes/admin/post-types/admin-field-group.php:140 -#: includes/fields/class-acf-field-group.php:472 -msgid "Block" -msgstr "Bloco" - -#: includes/fields/class-acf-field-group.php:467 -msgid "Specify the style used to render the selected fields" -msgstr "Especifica o estilo usado para mostrar os campos seleccionados." - -#: includes/fields.php:356 includes/fields/class-acf-field-button-group.php:215 -#: includes/fields/class-acf-field-checkbox.php:435 -#: includes/fields/class-acf-field-group.php:466 -#: includes/fields/class-acf-field-radio.php:286 -msgid "Layout" -msgstr "Layout" - -#: includes/fields/class-acf-field-group.php:450 -msgid "Sub Fields" -msgstr "Subcampos" - -#: includes/fields/class-acf-field-group.php:25 -msgid "Group" -msgstr "Grupo" - -#: includes/fields/class-acf-field-google-map.php:235 -msgid "Customize the map height" -msgstr "Personalizar a altura do mapa" - -#: includes/fields/class-acf-field-google-map.php:234 -#: includes/fields/class-acf-field-image.php:259 -#: includes/fields/class-acf-field-image.php:295 -#: includes/fields/class-acf-field-oembed.php:280 -msgid "Height" -msgstr "Altura" - -#: includes/fields/class-acf-field-google-map.php:223 -msgid "Set the initial zoom level" -msgstr "Definir o nível de zoom inicial" - -#: includes/fields/class-acf-field-google-map.php:222 -msgid "Zoom" -msgstr "Zoom" - -#: includes/fields/class-acf-field-google-map.php:196 -#: includes/fields/class-acf-field-google-map.php:209 -msgid "Center the initial map" -msgstr "Centrar o mapa inicial" - -#: includes/fields/class-acf-field-google-map.php:195 -#: includes/fields/class-acf-field-google-map.php:208 -msgid "Center" -msgstr "Centrar" - -#: includes/fields/class-acf-field-google-map.php:163 -msgid "Search for address..." -msgstr "Pesquisar endereço..." - -#: includes/fields/class-acf-field-google-map.php:160 -msgid "Find current location" -msgstr "Encontrar a localização actual" - -#: includes/fields/class-acf-field-google-map.php:159 -msgid "Clear location" -msgstr "Limpar localização" - -#: includes/fields/class-acf-field-google-map.php:158 -#: includes/fields/class-acf-field-relationship.php:628 -msgid "Search" -msgstr "Pesquisa" - -#: includes/fields/class-acf-field-google-map.php:63 -#: assets/build/js/acf-input.js:2840 assets/build/js/acf-input.js:3026 -msgid "Sorry, this browser does not support geolocation" -msgstr "Desculpe, este navegador não suporta geolocalização." - -#: includes/fields/class-acf-field-google-map.php:25 -msgid "Google Map" -msgstr "Mapa do Google" - -#: includes/fields/class-acf-field-date_picker.php:212 -#: includes/fields/class-acf-field-date_time_picker.php:201 -#: includes/fields/class-acf-field-time_picker.php:132 -msgid "The format returned via template functions" -msgstr "" - -#: includes/fields/class-acf-field-color_picker.php:180 -#: includes/fields/class-acf-field-date_picker.php:211 -#: includes/fields/class-acf-field-date_time_picker.php:200 -#: includes/fields/class-acf-field-image.php:187 -#: includes/fields/class-acf-field-post_object.php:411 -#: includes/fields/class-acf-field-relationship.php:638 -#: includes/fields/class-acf-field-select.php:391 -#: includes/fields/class-acf-field-time_picker.php:131 -#: includes/fields/class-acf-field-user.php:66 -msgid "Return Format" -msgstr "Formato devolvido" - -#: includes/fields/class-acf-field-date_picker.php:190 -#: includes/fields/class-acf-field-date_picker.php:221 -#: includes/fields/class-acf-field-date_time_picker.php:192 -#: includes/fields/class-acf-field-date_time_picker.php:210 -#: includes/fields/class-acf-field-time_picker.php:123 -#: includes/fields/class-acf-field-time_picker.php:139 -msgid "Custom:" -msgstr "Personalizado:" - -#: includes/fields/class-acf-field-date_picker.php:182 -#: includes/fields/class-acf-field-date_time_picker.php:183 -#: includes/fields/class-acf-field-time_picker.php:116 -msgid "The format displayed when editing a post" -msgstr "O formato de visualização ao editar um conteúdo" - -#: includes/fields/class-acf-field-date_picker.php:181 -#: includes/fields/class-acf-field-date_time_picker.php:182 -#: includes/fields/class-acf-field-time_picker.php:115 -msgid "Display Format" -msgstr "Formato de visualização" - -#: includes/fields/class-acf-field-time_picker.php:25 -msgid "Time Picker" -msgstr "Selecção de hora" - -#. translators: counts for inactive field groups -#: acf.php:503 -msgid "Inactive (%s)" -msgid_plural "Inactive (%s)" -msgstr[0] "" -msgstr[1] "" - -#: acf.php:462 -msgid "No Fields found in Trash" -msgstr "Nenhum campo encontrado no lixo" - -#: acf.php:461 -msgid "No Fields found" -msgstr "Nenhum campo encontrado" - -#: acf.php:460 -msgid "Search Fields" -msgstr "Pesquisar campos" - -#: acf.php:459 -msgid "View Field" -msgstr "Ver campo" - -#: acf.php:458 includes/admin/views/acf-field-group/fields.php:115 -msgid "New Field" -msgstr "Novo campo" - -#: acf.php:457 -msgid "Edit Field" -msgstr "Editar campo" - -#: acf.php:456 -msgid "Add New Field" -msgstr "Adicionar novo campo" - -#: acf.php:454 -msgid "Field" -msgstr "Campo" - -#: acf.php:453 includes/admin/post-types/admin-field-group.php:163 -#: includes/admin/post-types/admin-field-groups.php:119 -#: includes/admin/views/acf-field-group/fields.php:32 -msgid "Fields" -msgstr "Campos" - -#: acf.php:428 -msgid "No Field Groups found in Trash" -msgstr "Nenhum grupo de campos encontrado no lixo" - -#: acf.php:427 -msgid "No Field Groups found" -msgstr "Nenhum grupo de campos encontrado" - -#: acf.php:426 -msgid "Search Field Groups" -msgstr "Pesquisar grupos de campos" - -#: acf.php:425 -msgid "View Field Group" -msgstr "Ver grupo de campos" - -#: acf.php:424 -msgid "New Field Group" -msgstr "Novo grupo de campos" - -#: acf.php:423 -msgid "Edit Field Group" -msgstr "Editar grupo de campos" - -#: acf.php:422 -msgid "Add New Field Group" -msgstr "Adicionar novo grupo de campos" - -#: acf.php:421 acf.php:455 -#: includes/admin/views/acf-post-type/advanced-settings.php:219 -#: includes/admin/views/acf-post-type/advanced-settings.php:221 -#: includes/post-types/class-acf-post-type.php:93 -#: includes/post-types/class-acf-taxonomy.php:92 -msgid "Add New" -msgstr "Adicionar novo" - -#: acf.php:420 -msgid "Field Group" -msgstr "Grupo de campos" - -#: acf.php:419 includes/admin/post-types/admin-field-groups.php:78 -#: includes/admin/post-types/admin-post-types.php:138 -#: includes/admin/post-types/admin-taxonomies.php:138 -msgid "Field Groups" -msgstr "Grupos de campos" - -#. Description of the plugin -msgid "Customize WordPress with powerful, professional and intuitive fields." -msgstr "" -"Personalize o WordPress com campos intuitivos, poderosos e profissionais." - -#. Plugin URI of the plugin -msgid "https://www.advancedcustomfields.com" -msgstr "https://www.advancedcustomfields.com" - -#. Plugin Name of the plugin -#: acf.php:94 -msgid "Advanced Custom Fields" -msgstr "Advanced Custom Fields" diff --git a/lang/acf-pt_BR.mo b/lang/acf-pt_BR.mo deleted file mode 100644 index 76b8263..0000000 Binary files a/lang/acf-pt_BR.mo and /dev/null differ diff --git a/lang/acf-pt_BR.po b/lang/acf-pt_BR.po deleted file mode 100644 index f3a8fcb..0000000 --- a/lang/acf-pt_BR.po +++ /dev/null @@ -1,6410 +0,0 @@ -# Advanced Custom Fields Translations are a combination of translate.wordpress.org contributions, -# combined with user contributed strings for the PRO version. -# Translations from translate.wordpress.org take priority over translations in this file. -# translate.wordpress.org contributions are synced at the time of each release. -# -# If you would like to contribute translations, please visit -# https://translate.wordpress.org/projects/wp-plugins/advanced-custom-fields/stable/ -# -# For additional ACF PRO strings, please submit a pull request over on the ACF GitHub repo at -# http://github.com/advancedcustomfields/acf using the .pot (and any existing .po) files in /lang/pro/ -# -# This file is distributed under the same license as Advanced Custom Fields. -msgid "" -msgstr "" -"PO-Revision-Date: 2023-11-28T09:14:32+00:00\n" -"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n" -"Language: pt_BR\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: gettext\n" -"Project-Id-Version: Advanced Custom Fields\n" - -#: includes/admin/views/global/navigation.php:221 -msgid "Renew ACF PRO License" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:17 -msgid "Renew License" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:14 -msgid "Manage License" -msgstr "" - -#: includes/admin/views/acf-field-group/options.php:102 -msgid "'High' position not supported in the Block Editor" -msgstr "" - -#: includes/admin/views/options-page-preview.php:30 -msgid "Upgrade to ACF PRO" -msgstr "" - -#. translators: %s URL to ACF options pages documentation -#: includes/admin/views/options-page-preview.php:7 -msgid "" -"ACF options pages are custom admin " -"pages for managing global settings via fields. You can create multiple pages " -"and sub-pages." -msgstr "" - -#: includes/admin/views/global/header.php:35 -msgid "Add Options Page" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:703 -msgid "In the editor used as the placeholder of the title." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:702 -msgid "Title Placeholder" -msgstr "" - -#: includes/admin/views/global/navigation.php:97 -msgid "4 Months Free" -msgstr "" - -#. translators: %s - A singular label for a post type or taxonomy. -#: includes/admin/views/global/form-top.php:56 -msgid " (Duplicated from %s)" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:298 -msgid "Select Options Pages" -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:107 -msgid "Duplicate taxonomy" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:106 -#: includes/admin/post-types/admin-taxonomy.php:106 -msgid "Create taxonomy" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:105 -msgid "Duplicate post type" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:104 -#: includes/admin/post-types/admin-taxonomy.php:108 -msgid "Create post type" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:103 -#: includes/admin/post-types/admin-taxonomy.php:105 -msgid "Link field groups" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:102 -#: includes/admin/post-types/admin-taxonomy.php:104 -msgid "Add fields" -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:121 -#: assets/build/js/acf-field-group.js:2753 -#: assets/build/js/acf-field-group.js:3236 -msgid "This Field" -msgstr "" - -#: includes/admin/admin.php:267 -msgid "ACF PRO" -msgstr "" - -#: includes/admin/admin.php:265 -msgid "Feedback" -msgstr "" - -#: includes/admin/admin.php:263 -msgid "Support" -msgstr "" - -#. translators: This text is prepended by a link to ACF's website, and appended -#. by a link to WP Engine's website. -#: includes/admin/admin.php:238 -msgid "is developed and maintained by" -msgstr "" - -#. translators: %s - either "post type" or "taxonomy" -#: includes/admin/admin-internal-post-type.php:321 -msgid "Add this %s to the location rules of the selected field groups." -msgstr "" - -#. translators: %s the URL to ACF's bidirectional relationship documentation -#: includes/acf-bidirectional-functions.php:271 -msgid "" -"Enabling the bidirectional setting allows you to update a value in the " -"target fields for each value selected for this field, adding or removing the " -"Post ID, Taxonomy ID or User ID of the item being updated. For more " -"information, please read the documentation." -msgstr "" - -#: includes/acf-bidirectional-functions.php:247 -msgid "" -"Select field(s) to store the reference back to the item being updated. You " -"may select this field. Target fields must be compatible with where this " -"field is being displayed. For example, if this field is displayed on a " -"Taxonomy, your target field should be of type Taxonomy" -msgstr "" - -#: includes/acf-bidirectional-functions.php:246 -msgid "Target Field" -msgstr "" - -#: includes/acf-bidirectional-functions.php:220 -msgid "Update a field on the selected values, referencing back to this ID" -msgstr "" - -#: includes/acf-bidirectional-functions.php:219 -msgid "Bidirectional" -msgstr "" - -#. translators: %s A field type name, such as "Relationship" -#: includes/acf-bidirectional-functions.php:192 -msgid "%s Field" -msgstr "" - -#: includes/fields/class-acf-field-page_link.php:517 -#: includes/fields/class-acf-field-post_object.php:426 -#: includes/fields/class-acf-field-select.php:407 -#: includes/fields/class-acf-field-user.php:82 -msgid "Select Multiple" -msgstr "" - -#: includes/admin/views/global/navigation.php:233 -msgid "WP Engine logo" -msgstr "" - -#: includes/admin/views/acf-taxonomy/basic-settings.php:58 -msgid "Lower case letters, underscores and dashes only, Max 32 characters." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1136 -msgid "The capability name for assigning terms of this taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1135 -msgid "Assign Terms Capability" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1119 -msgid "The capability name for deleting terms of this taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1118 -msgid "Delete Terms Capability" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1102 -msgid "The capability name for editing terms of this taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1101 -msgid "Edit Terms Capability" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1085 -msgid "The capability name for managing terms of this taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1084 -msgid "Manage Terms Capability" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:886 -msgid "" -"Sets whether posts should be excluded from search results and taxonomy " -"archive pages." -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:74 -msgid "More Tools from WP Engine" -msgstr "" - -#. translators: %s - WP Engine logo -#: includes/admin/views/acf-field-group/pro-features.php:69 -msgid "Built for those that build with WordPress, by the team at %s" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:6 -msgid "View Pricing & Upgrade" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:3 -#: includes/admin/views/options-page-preview.php:29 -msgid "Learn More" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:28 -msgid "" -"Speed up your workflow and develop better websites with features like ACF " -"Blocks and Options Pages, and sophisticated field types like Repeater, " -"Flexible Content, Clone, and Gallery." -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:2 -msgid "Unlock Advanced Features and Build Even More with ACF PRO" -msgstr "" - -#. translators: %s - singular label of post type/taxonomy, i.e. "Movie"/"Genre" -#: includes/admin/views/global/form-top.php:19 -msgid "%s fields" -msgstr "Campos de %s" - -#: includes/admin/post-types/admin-taxonomies.php:293 -msgid "No terms" -msgstr "Não há termos" - -#: includes/admin/post-types/admin-taxonomies.php:266 -msgid "No post types" -msgstr "Não há tipos de post" - -#: includes/admin/post-types/admin-post-types.php:289 -msgid "No posts" -msgstr "Não há posts" - -#: includes/admin/post-types/admin-post-types.php:263 -msgid "No taxonomies" -msgstr "Não há taxonomias" - -#: includes/admin/post-types/admin-post-types.php:208 -#: includes/admin/post-types/admin-taxonomies.php:208 -msgid "No field groups" -msgstr "Não há grupos de campos" - -#: includes/admin/post-types/admin-field-groups.php:281 -msgid "No fields" -msgstr "Não há campos" - -#: includes/admin/post-types/admin-field-groups.php:154 -#: includes/admin/post-types/admin-post-types.php:172 -#: includes/admin/post-types/admin-taxonomies.php:172 -msgid "No description" -msgstr "Não há descrição" - -#: includes/fields/class-acf-field-page_link.php:484 -#: includes/fields/class-acf-field-post_object.php:389 -#: includes/fields/class-acf-field-relationship.php:601 -msgid "Any post status" -msgstr "Qualquer status de post" - -#: includes/post-types/class-acf-taxonomy.php:284 -msgid "" -"This taxonomy key is already in use by another taxonomy registered outside " -"of ACF and cannot be used." -msgstr "" -"Esta chave de taxonomia já está em uso por outra taxonomia registrada fora " -"do ACF e não pode ser usada." - -#: includes/post-types/class-acf-taxonomy.php:279 -msgid "" -"This taxonomy key is already in use by another taxonomy in ACF and cannot be " -"used." -msgstr "" -"Esta chave de taxonomia já está em uso por outra taxonomia no ACF e não pode " -"ser usada." - -#: includes/post-types/class-acf-taxonomy.php:252 -msgid "" -"The taxonomy key must only contain lower case alphanumeric characters, " -"underscores or dashes." -msgstr "" -"A chave de taxonomia deve conter apenas caracteres alfanuméricos minúsculos, " -"sublinhados ou hífens." - -#: includes/post-types/class-acf-taxonomy.php:247 -msgid "The taxonomy key must be under 32 characters." -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:99 -msgid "No Taxonomies found in Trash" -msgstr "Não foi possível encontrar taxonomias na lixeira" - -#: includes/post-types/class-acf-taxonomy.php:98 -msgid "No Taxonomies found" -msgstr "Não foi possível encontrar taxonomias" - -#: includes/post-types/class-acf-taxonomy.php:97 -msgid "Search Taxonomies" -msgstr "Pesquisar taxonomias" - -#: includes/post-types/class-acf-taxonomy.php:96 -msgid "View Taxonomy" -msgstr "Ver taxonomia" - -#: includes/post-types/class-acf-taxonomy.php:95 -msgid "New Taxonomy" -msgstr "Nova taxonomia" - -#: includes/post-types/class-acf-taxonomy.php:94 -msgid "Edit Taxonomy" -msgstr "Editar taxonomia" - -#: includes/post-types/class-acf-taxonomy.php:93 -msgid "Add New Taxonomy" -msgstr "Adicionar nova taxonomia" - -#: includes/post-types/class-acf-post-type.php:100 -msgid "No Post Types found in Trash" -msgstr "Não foi possível encontrar tipos de post na lixeira" - -#: includes/post-types/class-acf-post-type.php:99 -msgid "No Post Types found" -msgstr "Não foi possível encontrar tipos de post" - -#: includes/post-types/class-acf-post-type.php:98 -msgid "Search Post Types" -msgstr "Pesquisar tipos de post" - -#: includes/post-types/class-acf-post-type.php:97 -msgid "View Post Type" -msgstr "Ver tipo de post" - -#: includes/post-types/class-acf-post-type.php:96 -msgid "New Post Type" -msgstr "Novo tipo de post" - -#: includes/post-types/class-acf-post-type.php:95 -msgid "Edit Post Type" -msgstr "Editar tipo de post" - -#: includes/post-types/class-acf-post-type.php:94 -msgid "Add New Post Type" -msgstr "Adicionar novo tipo de post" - -#: includes/post-types/class-acf-post-type.php:361 -msgid "" -"This post type key is already in use by another post type registered outside " -"of ACF and cannot be used." -msgstr "" -"Esta chave de tipo de post já está em uso por outro tipo de post registrado " -"fora do ACF e não pode ser usada." - -#: includes/post-types/class-acf-post-type.php:356 -msgid "" -"This post type key is already in use by another post type in ACF and cannot " -"be used." -msgstr "" -"Esta chave de tipo de post já está em uso por outro tipo de post no ACF e " -"não pode ser usada." - -#. translators: %s a link to WordPress.org's Reserved Terms page -#: includes/post-types/class-acf-post-type.php:335 -#: includes/post-types/class-acf-taxonomy.php:258 -msgid "" -"This field must not be a WordPress reserved " -"term." -msgstr "" -"Este campo não deve ser um termo reservado do WordPress." - -#: includes/post-types/class-acf-post-type.php:329 -msgid "" -"The post type key must only contain lower case alphanumeric characters, " -"underscores or dashes." -msgstr "" -"A chave do tipo de post deve conter apenas caracteres alfanuméricos " -"minúsculos, sublinhados ou hífens." - -#: includes/post-types/class-acf-post-type.php:324 -msgid "The post type key must be under 20 characters." -msgstr "A chave do tipo de post deve ter menos de 20 caracteres." - -#: includes/fields/class-acf-field-wysiwyg.php:27 -msgid "We do not recommend using this field in ACF Blocks." -msgstr "Não recomendamos o uso deste campo em blocos do ACF." - -#: includes/fields/class-acf-field-wysiwyg.php:27 -msgid "" -"Displays the WordPress WYSIWYG editor as seen in Posts and Pages allowing " -"for a rich text-editing experience that also allows for multimedia content." -msgstr "" -"Exibe o editor WordPress WYSIWYG como visto em Posts e Páginas, permitindo " -"uma rica experiência de edição de texto que também permite conteúdo " -"multimídia." - -#: includes/fields/class-acf-field-wysiwyg.php:25 -msgid "WYSIWYG Editor" -msgstr "Editor WYSIWYG" - -#: includes/fields/class-acf-field-user.php:17 -msgid "" -"Allows the selection of one or more users which can be used to create " -"relationships between data objects." -msgstr "" -"Permite a seleção de um ou mais usuários que podem ser usados para criar " -"relacionamentos entre objetos de dados." - -#: includes/fields/class-acf-field-url.php:26 -msgid "A text input specifically designed for storing web addresses." -msgstr "" -"Uma entrada de texto projetada especificamente para armazenar endereços da " -"web." - -#: includes/fields/class-acf-field-url.php:25 -msgid "URL" -msgstr "URL" - -#: includes/fields/class-acf-field-true_false.php:27 -msgid "" -"A toggle that allows you to pick a value of 1 or 0 (on or off, true or " -"false, etc). Can be presented as a stylized switch or checkbox." -msgstr "" -"Um botão de alternar que permite escolher um valor de 1 ou 0 (ligado ou " -"desligado, verdadeiro ou falso, etc.). Pode ser apresentado como um botão " -"estilizado ou uma caixa de seleção." - -#: includes/fields/class-acf-field-time_picker.php:27 -msgid "" -"An interactive UI for picking a time. The time format can be customized " -"using the field settings." -msgstr "" -"Uma interface interativa para escolher um horário. O formato de horário pode " -"ser personalizado usando as configurações do campo." - -#: includes/fields/class-acf-field-textarea.php:26 -msgid "A basic textarea input for storing paragraphs of text." -msgstr "" -"Uma entrada de área de texto básica para armazenar parágrafos de texto." - -#: includes/fields/class-acf-field-text.php:26 -msgid "A basic text input, useful for storing single string values." -msgstr "" -"Uma entrada de texto básica, útil para armazenar valores de texto únicos." - -#: includes/fields/class-acf-field-taxonomy.php:22 -msgid "" -"Allows the selection of one or more taxonomy terms based on the criteria and " -"options specified in the fields settings." -msgstr "" -"Permite a seleção de um ou mais termos de taxonomia com base nos critérios e " -"opções especificados nas configurações dos campos." - -#: includes/fields/class-acf-field-tab.php:28 -msgid "" -"Allows you to group fields into tabbed sections in the edit screen. Useful " -"for keeping fields organized and structured." -msgstr "" -"Permite agrupar campos em seções com abas na tela de edição. Útil para " -"manter os campos organizados e estruturados." - -#: includes/fields/class-acf-field-select.php:27 -msgid "A dropdown list with a selection of choices that you specify." -msgstr "Uma lista suspensa com uma seleção de escolhas que você especifica." - -#: includes/fields/class-acf-field-relationship.php:19 -msgid "" -"A dual-column interface to select one or more posts, pages, or custom post " -"type items to create a relationship with the item that you're currently " -"editing. Includes options to search and filter." -msgstr "" -"Uma interface de coluna dupla para selecionar um ou mais posts, páginas ou " -"itens de tipo de post personalizados para criar um relacionamento com o item " -"que você está editando no momento. Inclui opções para pesquisar e filtrar." - -#: includes/fields/class-acf-field-range.php:26 -msgid "" -"An input for selecting a numerical value within a specified range using a " -"range slider element." -msgstr "" -"Uma entrada para selecionar um valor numérico dentro de um intervalo " -"especificado usando um elemento deslizante de intervalo." - -#: includes/fields/class-acf-field-radio.php:27 -msgid "" -"A group of radio button inputs that allows the user to make a single " -"selection from values that you specify." -msgstr "" -"Um grupo de entradas de botão de opção que permite ao usuário fazer uma " -"única seleção a partir dos valores especificados." - -#: includes/fields/class-acf-field-post_object.php:19 -msgid "" -"An interactive and customizable UI for picking one or many posts, pages or " -"post type items with the option to search. " -msgstr "" -"Uma interface interativa e personalizável para escolher um ou vários posts, " -"páginas ou itens de tipos de post com a opção de pesquisa. " - -#: includes/fields/class-acf-field-password.php:26 -msgid "An input for providing a password using a masked field." -msgstr "Uma entrada para fornecer uma senha usando um campo mascarado." - -#: includes/fields/class-acf-field-page_link.php:476 -#: includes/fields/class-acf-field-post_object.php:381 -#: includes/fields/class-acf-field-relationship.php:593 -msgid "Filter by Post Status" -msgstr "Filtrar por status do post" - -#: includes/fields/class-acf-field-page_link.php:27 -msgid "" -"An interactive dropdown to select one or more posts, pages, custom post type " -"items or archive URLs, with the option to search." -msgstr "" -"Um menu suspenso interativo para selecionar um ou mais posts, páginas, itens " -"de um tipo de post personalizado ou URLs de arquivo, com a opção de pesquisa." - -#: includes/fields/class-acf-field-oembed.php:27 -msgid "" -"An interactive component for embedding videos, images, tweets, audio and " -"other content by making use of the native WordPress oEmbed functionality." -msgstr "" -"Um componente interativo para incorporar vídeos, imagens, tweets, áudio e " -"outros conteúdos, fazendo uso da funcionalidade oEmbed nativa do WordPress." - -#: includes/fields/class-acf-field-number.php:26 -msgid "An input limited to numerical values." -msgstr "Uma entrada limitada a valores numéricos." - -#: includes/fields/class-acf-field-message.php:28 -msgid "" -"Used to display a message to editors alongside other fields. Useful for " -"providing additional context or instructions around your fields." -msgstr "" -"Usado para exibir uma mensagem aos editores ao lado de outros campos. Útil " -"para fornecer contexto adicional ou instruções sobre seus campos." - -#: includes/fields/class-acf-field-link.php:27 -msgid "" -"Allows you to specify a link and its properties such as title and target " -"using the WordPress native link picker." -msgstr "" -"Permite especificar um link e suas propriedades, como título e destino, " -"usando o seletor de links nativo do WordPress." - -#: includes/fields/class-acf-field-image.php:27 -msgid "Uses the native WordPress media picker to upload, or choose images." -msgstr "" -"Usa o seletor de mídia nativo do WordPress para enviar ou escolher imagens." - -#: includes/fields/class-acf-field-group.php:27 -msgid "" -"Provides a way to structure fields into groups to better organize the data " -"and the edit screen." -msgstr "" -"Fornece uma maneira de estruturar os campos em grupos para organizar melhor " -"os dados e a tela de edição." - -#: includes/fields/class-acf-field-google-map.php:27 -msgid "" -"An interactive UI for selecting a location using Google Maps. Requires a " -"Google Maps API key and additional configuration to display correctly." -msgstr "" -"Uma interface interativa para selecionar um local usando o Google Maps. " -"Requer uma chave de API do Google Maps e configuração adicional para exibir " -"corretamente." - -#: includes/fields/class-acf-field-file.php:27 -msgid "Uses the native WordPress media picker to upload, or choose files." -msgstr "" -"Usa o seletor de mídia nativo do WordPress para enviar ou escolher arquivos." - -#: includes/fields/class-acf-field-email.php:26 -msgid "A text input specifically designed for storing email addresses." -msgstr "" -"Uma entrada de texto projetada especificamente para armazenar endereços de e-" -"mail." - -#: includes/fields/class-acf-field-date_time_picker.php:27 -msgid "" -"An interactive UI for picking a date and time. The date return format can be " -"customized using the field settings." -msgstr "" -"Uma interface interativa para escolher uma data e um horário. O formato de " -"data devolvido pode ser personalizado usando as configurações do campo." - -#: includes/fields/class-acf-field-date_picker.php:27 -msgid "" -"An interactive UI for picking a date. The date return format can be " -"customized using the field settings." -msgstr "" -"Uma interface interativa para escolher uma data. O formato de data devolvido " -"pode ser personalizado usando as configurações do campo." - -#: includes/fields/class-acf-field-color_picker.php:27 -msgid "An interactive UI for selecting a color, or specifying a Hex value." -msgstr "" -"Uma interface interativa para selecionar uma cor ou especificar um valor hex." - -#: includes/fields/class-acf-field-checkbox.php:27 -msgid "" -"A group of checkbox inputs that allow the user to select one, or multiple " -"values that you specify." -msgstr "" -"Um grupo de entradas de caixa de seleção que permite ao usuário selecionar " -"um ou vários valores especificados." - -#: includes/fields/class-acf-field-button-group.php:26 -msgid "" -"A group of buttons with values that you specify, users can choose one option " -"from the values provided." -msgstr "" -"Um grupo de botões com valores que você especifica, os usuários podem " -"escolher uma opção entre os valores fornecidos." - -#: includes/fields/class-acf-field-accordion.php:27 -msgid "" -"Allows you to group and organize custom fields into collapsable panels that " -"are shown while editing content. Useful for keeping large datasets tidy." -msgstr "" -"Permite agrupar e organizar campos personalizados em painéis recolhíveis que " -"são exibidos durante a edição do conteúdo. Útil para manter grandes " -"conjuntos de dados organizados." - -#: includes/fields.php:475 -msgid "" -"This provides a solution for repeating content such as slides, team members, " -"and call-to-action tiles, by acting as a parent to a set of subfields which " -"can be repeated again and again." -msgstr "" -"Isso fornece uma solução para repetir conteúdo, como slides, membros da " -"equipe e blocos de chamada para ação, agindo como um ascendente para um " -"conjunto de subcampos que podem ser repetidos várias vezes." - -#: includes/fields.php:465 -msgid "" -"This provides an interactive interface for managing a collection of " -"attachments. Most settings are similar to the Image field type. Additional " -"settings allow you to specify where new attachments are added in the gallery " -"and the minimum/maximum number of attachments allowed." -msgstr "" -"Isso fornece uma interface interativa para gerenciar uma coleção de anexos. " -"A maioria das configurações é semelhante ao tipo de campo Imagem. " -"Configurações adicionais permitem que você especifique onde novos anexos são " -"adicionados na galeria e o número mínimo/máximo de anexos permitidos." - -#: includes/fields.php:455 -msgid "" -"This provides a simple, structured, layout-based editor. The Flexible " -"Content field allows you to define, create and manage content with total " -"control by using layouts and subfields to design the available blocks." -msgstr "" -"Isso fornece um editor simples, estruturado e baseado em layout. O campo " -"\"conteúdo flexível\" permite definir, criar e gerenciar o conteúdo com " -"total controle, utilizando layouts e subcampos para desenhar os blocos " -"disponíveis." - -#: includes/fields.php:445 -msgid "" -"This allows you to select and display existing fields. It does not duplicate " -"any fields in the database, but loads and displays the selected fields at " -"run-time. The Clone field can either replace itself with the selected fields " -"or display the selected fields as a group of subfields." -msgstr "" -"Isso permite que você selecione e exiba os campos existentes. Ele não " -"duplica nenhum campo no banco de dados, mas carrega e exibe os campos " -"selecionados em tempo de execução. O campo \"clone\" pode se substituir " -"pelos campos selecionados ou exibir os campos selecionados como um grupo de " -"subcampos." - -#: includes/fields.php:442 -msgctxt "noun" -msgid "Clone" -msgstr "Clone" - -#: includes/admin/views/global/navigation.php:86 includes/fields.php:357 -msgid "PRO" -msgstr "PRO" - -#: includes/fields.php:355 includes/fields.php:412 -msgid "Advanced" -msgstr "Avançado" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:85 -msgid "JSON (newer)" -msgstr "JSON (mais recente)" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:81 -msgid "Original" -msgstr "Original" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:55 -msgid "Invalid post ID." -msgstr "ID de post inválido." - -#: includes/ajax/class-acf-ajax-local-json-diff.php:47 -msgid "Invalid post type selected for review." -msgstr "Tipo de post inválido selecionado para revisão." - -#: includes/admin/views/global/navigation.php:186 -msgid "More" -msgstr "Mais" - -#: includes/admin/views/browse-fields-modal.php:86 -msgid "Tutorial" -msgstr "Tutorial" - -#: includes/admin/views/browse-fields-modal.php:75 -msgid "Available with ACF PRO" -msgstr "Disponível com ACF PRO" - -#: includes/admin/views/browse-fields-modal.php:63 -msgid "Select Field" -msgstr "Selecionar campo" - -#. translators: %s: A link to the popular fields used in ACF -#: includes/admin/views/browse-fields-modal.php:50 -msgid "Try a different search term or browse %s" -msgstr "Tente um termo de pesquisa diferente ou procure pelos %s" - -#: includes/admin/views/browse-fields-modal.php:47 -msgid "Popular fields" -msgstr "Campos populares" - -#. translators: %s: The invalid search term -#: includes/admin/views/browse-fields-modal.php:40 -msgid "No search results for '%s'" -msgstr "Nenhum resultado de pesquisa para '%s'" - -#: includes/admin/views/browse-fields-modal.php:13 -msgid "Search fields..." -msgstr "Pesquisar campos..." - -#: includes/admin/views/browse-fields-modal.php:11 -msgid "Select Field Type" -msgstr "Selecione o tipo de campo" - -#: includes/admin/views/browse-fields-modal.php:4 -msgid "Popular" -msgstr "Popular" - -#: includes/admin/views/acf-taxonomy/list-empty.php:7 -msgid "Add Taxonomy" -msgstr "Adicionar taxonomia" - -#: includes/admin/views/acf-taxonomy/list-empty.php:6 -msgid "Create custom taxonomies to classify post type content" -msgstr "" -"Crie taxonomias personalizadas para classificar o conteúdo do tipo de post" - -#: includes/admin/views/acf-taxonomy/list-empty.php:5 -msgid "Add Your First Taxonomy" -msgstr "Adicione sua primeira taxonomia" - -#: includes/admin/views/acf-taxonomy/basic-settings.php:122 -msgid "Hierarchical taxonomies can have descendants (like categories)." -msgstr "Taxonomias hierárquicas podem ter descendentes (como categorias)." - -#: includes/admin/views/acf-taxonomy/basic-settings.php:107 -msgid "Makes a taxonomy visible on the frontend and in the admin dashboard." -msgstr "Torna uma taxonomia visível na interface e no painel administrativo." - -#: includes/admin/views/acf-taxonomy/basic-settings.php:91 -msgid "One or many post types that can be classified with this taxonomy." -msgstr "" -"Um ou vários tipos de post que podem ser classificados com esta taxonomia." - -#. translators: example taxonomy -#: includes/admin/views/acf-taxonomy/basic-settings.php:60 -msgid "genre" -msgstr "gênero" - -#. translators: example taxonomy -#: includes/admin/views/acf-taxonomy/basic-settings.php:42 -msgid "Genre" -msgstr "Gênero" - -#. translators: example taxonomy -#: includes/admin/views/acf-taxonomy/basic-settings.php:25 -msgid "Genres" -msgstr "Gêneros" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1211 -msgid "" -"Optional custom controller to use instead of `WP_REST_Terms_Controller `." -msgstr "" -"Controlador personalizado opcional para usar em vez de " -"`WP_REST_Terms_Controller`." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1155 -msgid "Expose this post type in the REST API." -msgstr "Expor esse tipo de post na API REST." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1055 -msgid "Customize the query variable name" -msgstr "Personalize o nome da variável de consulta" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1028 -msgid "" -"Terms can be accessed using the non-pretty permalink, e.g., {query_var}" -"={term_slug}." -msgstr "" -"Os termos podem ser acessados usando o link permanente não bonito, por " -"exemplo, {query_var}={term_slug}." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:981 -msgid "Parent-child terms in URLs for hierarchical taxonomies." -msgstr "Termos ascendente-descendente em URLs para taxonomias hierárquicas." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:941 -msgid "Customize the slug used in the URL" -msgstr "Personalize o slug usado no URL" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:924 -msgid "Permalinks for this taxonomy are disabled." -msgstr "Os links permanentes para esta taxonomia estão desativados." - -#. translators: this string will be appended with the new permalink structure. -#: includes/admin/views/acf-taxonomy/advanced-settings.php:921 -msgid "" -"Rewrite the URL using the taxonomy key as the slug. Your permalink structure " -"will be" -msgstr "" -"Reescreva o URL usando a chave de taxonomia como slug. Sua estrutura de link " -"permanente será" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:913 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1030 -#: includes/admin/views/acf-taxonomy/basic-settings.php:57 -msgid "Taxonomy Key" -msgstr "Chave de taxonomia" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:911 -msgid "Select the type of permalink to use for this taxonomy." -msgstr "Selecione o tipo de link permanente a ser usado para esta taxonomia." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:896 -msgid "Display a column for the taxonomy on post type listing screens." -msgstr "" -"Exiba uma coluna para a taxonomia nas telas de listagem do tipo de post." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:895 -msgid "Show Admin Column" -msgstr "Mostrar coluna administrativa" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:882 -msgid "Show the taxonomy in the quick/bulk edit panel." -msgstr "Mostrar a taxonomia no painel de edição rápida/em massa." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:881 -msgid "Quick Edit" -msgstr "Edição rápida" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:868 -msgid "List the taxonomy in the Tag Cloud Widget controls." -msgstr "Listar a taxonomia nos controles do widget de nuvem de tags." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:867 -msgid "Tag Cloud" -msgstr "Nuvem de tags" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:824 -msgid "" -"A PHP function name to be called for sanitizing taxonomy data saved from a " -"meta box." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:823 -msgid "Meta Box Sanitization Callback" -msgstr "Callback de higienização da metabox" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:805 -msgid "" -"A PHP function name to be called to handle the content of a meta box on your " -"taxonomy." -msgstr "" -"Um nome de função PHP a ser chamado para manipular o conteúdo de uma metabox " -"em sua taxonomia." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:804 -msgid "Register Meta Box Callback" -msgstr "Cadastrar callback da metabox" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:763 -msgid "No Meta Box" -msgstr "Sem metabox" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:762 -msgid "Custom Meta Box" -msgstr "Metabox personalizada" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:758 -msgid "" -"Controls the meta box on the content editor screen. By default, the " -"Categories meta box is shown for hierarchical taxonomies, and the Tags meta " -"box is shown for non-hierarchical taxonomies." -msgstr "" -"Controla a metabox na tela do editor de conteúdo. Por padrão, a metabox " -"\"Categorias\" é mostrada para taxonomias hierárquicas e a metabox \"Tags\" " -"é mostrada para taxonomias não hierárquicas." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:757 -msgid "Meta Box" -msgstr "Metabox" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:746 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:767 -msgid "Categories Meta Box" -msgstr "Metabox de categorias" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:745 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:766 -msgid "Tags Meta Box" -msgstr "Metabox de tags" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:704 -msgid "A link to a tag" -msgstr "Um link para uma tag" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:703 -msgid "Describes a navigation link block variation used in the block editor." -msgstr "" -"Descreve uma variação de bloco de link de navegação usada no editor de " -"blocos." - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:698 -msgid "A link to a %s" -msgstr "Um link para um %s" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:683 -msgid "Tag Link" -msgstr "Link da tag" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:682 -msgid "" -"Assigns a title for navigation link block variation used in the block editor." -msgstr "" -"Atribui um título para a variação do bloco de link de navegação usado no " -"editor de blocos." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:663 -msgid "← Go to tags" -msgstr "← Ir para tags" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:662 -msgid "" -"Assigns the text used to link back to the main index after updating a term." -msgstr "" -"Atribui o texto usado para vincular de volta ao índice principal após " -"atualizar um termo." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:661 -msgid "Back To Items" -msgstr "Voltar aos itens" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:657 -msgid "← Go to %s" -msgstr "← Ir para %s" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:642 -msgid "Tags list" -msgstr "Lista de tags" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:641 -msgid "Assigns text to the table hidden heading." -msgstr "Atribui texto ao título oculto da tabela." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:622 -msgid "Tags list navigation" -msgstr "Navegação da lista de tags" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:621 -msgid "Assigns text to the table pagination hidden heading." -msgstr "Atribui texto ao título oculto da paginação da tabela." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:597 -msgid "Filter by category" -msgstr "Filtrar por categoria" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:596 -msgid "Assigns text to the filter button in the posts lists table." -msgstr "Atribui texto ao botão de filtro na tabela de listas de posts." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:595 -msgid "Filter By Item" -msgstr "Filtrar por item" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:591 -msgid "Filter by %s" -msgstr "Filtrar por %s" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:575 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:576 -msgid "" -"The description is not prominent by default; however, some themes may show " -"it." -msgstr "" -"A descrição não está em destaque por padrão, no entanto alguns temas podem " -"mostrá-la." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:574 -msgid "Describes the Description field on the Edit Tags screen." -msgstr "Descreve o campo \"descrição\" na tela \"editar tags\"." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:573 -msgid "Description Field Description" -msgstr "Descrição do campo de descrição" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:554 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:555 -msgid "" -"Assign a parent term to create a hierarchy. The term Jazz, for example, " -"would be the parent of Bebop and Big Band" -msgstr "" -"Atribua um termo ascendente para criar uma hierarquia. O termo Jazz, por " -"exemplo, pode ser ascendente de Bebop ou Big Band" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:553 -msgid "Describes the Parent field on the Edit Tags screen." -msgstr "Descreve o campo \"ascendente\" na tela \"editar tags\"." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:552 -msgid "Parent Field Description" -msgstr "Descrição do campo ascendente" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:538 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:539 -msgid "" -"The \"slug\" is the URL-friendly version of the name. It is usually all " -"lower case and contains only letters, numbers, and hyphens." -msgstr "" -"O \"slug\" é a versão do nome amigável para o URL. Geralmente é todo em " -"minúsculas e contém apenas letras, números e hífens." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:537 -msgid "Describes the Slug field on the Edit Tags screen." -msgstr "Descreve o campo \"slug\" na tela \"editar tags\"." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:536 -msgid "Slug Field Description" -msgstr "Descrição do campo de slug" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:522 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:523 -msgid "The name is how it appears on your site" -msgstr "O nome é como aparece no seu site" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:521 -msgid "Describes the Name field on the Edit Tags screen." -msgstr "Descreve o campo \"nome\" na tela \"editar tags\"." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:520 -msgid "Name Field Description" -msgstr "Descrição do campo de nome" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:507 -msgid "No tags" -msgstr "Não há tags" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:506 -msgid "" -"Assigns the text displayed in the posts and media list tables when no tags " -"or categories are available." -msgstr "" -"Atribui o texto exibido nas tabelas de posts e listas de mídia quando não há " -"tags ou categorias disponíveis." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:505 -msgid "No Terms" -msgstr "Não há termos" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:501 -msgid "No %s" -msgstr "Não há %s" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:486 -msgid "No tags found" -msgstr "Não foi possível encontrar tags" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:485 -msgid "" -"Assigns the text displayed when clicking the 'choose from most used' text in " -"the taxonomy meta box when no tags are available, and assigns the text used " -"in the terms list table when there are no items for a taxonomy." -msgstr "" -"Atribui o texto exibido ao clicar no texto \"escolher entre os mais usados\" " -"na metabox da taxonomia quando não há tags disponíveis e atribui o texto " -"usado na tabela da lista de termos quando não há itens para uma taxonomia." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:484 -msgid "Not Found" -msgstr "Não encontrado" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:463 -msgid "Assigns text to the Title field of the Most Used tab." -msgstr "Atribui texto ao campo \"título\" da aba \"mais usados\"." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:462 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:464 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:465 -msgid "Most Used" -msgstr "Mais usado" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:444 -msgid "Choose from the most used tags" -msgstr "Escolha entre as tags mais usadas" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:443 -msgid "" -"Assigns the 'choose from most used' text used in the meta box when " -"JavaScript is disabled. Only used on non-hierarchical taxonomies." -msgstr "" -"Atribui o texto \"escolha entre os mais usados\" utilizado na metabox quando " -"o JavaScript estiver desativado. Usado apenas em taxonomias não hierárquicas." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:442 -msgid "Choose From Most Used" -msgstr "Escolha entre os mais usados" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:438 -msgid "Choose from the most used %s" -msgstr "Escolha entre %s mais comuns" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:418 -msgid "Add or remove tags" -msgstr "Adicionar ou remover tags" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:417 -msgid "" -"Assigns the add or remove items text used in the meta box when JavaScript is " -"disabled. Only used on non-hierarchical taxonomies" -msgstr "" -"Atribui o texto \"adicionar ou remover itens\" utilizado na metabox quando o " -"JavaScript está desativado. Usado apenas em taxonomias não hierárquicas" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:416 -msgid "Add Or Remove Items" -msgstr "Adicionar ou remover itens" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:412 -msgid "Add or remove %s" -msgstr "Adicionar ou remover %s" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:392 -msgid "Separate tags with commas" -msgstr "Separe as tags com vírgulas" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:391 -msgid "" -"Assigns the separate item with commas text used in the taxonomy meta box. " -"Only used on non-hierarchical taxonomies." -msgstr "" -"Atribui o texto \"separe os itens com vírgulas\" utilizado na metabox da " -"taxonomia. Usado apenas em taxonomias não hierárquicas." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:390 -msgid "Separate Items With Commas" -msgstr "Separe os itens com vírgulas" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:386 -msgid "Separate %s with commas" -msgstr "Separe %s com vírgulas" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:366 -msgid "Popular Tags" -msgstr "Tags populares" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:365 -msgid "Assigns popular items text. Only used for non-hierarchical taxonomies." -msgstr "" -"Atribui texto de itens populares. Usado apenas para taxonomias não " -"hierárquicas." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:364 -msgid "Popular Items" -msgstr "Itens populares" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:361 -msgid "Popular %s" -msgstr "%s populares" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:347 -msgid "Search Tags" -msgstr "Pesquisar Tags" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:346 -msgid "Assigns search items text." -msgstr "Atribui texto aos itens de pesquisa." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:323 -msgid "Parent Category:" -msgstr "Categoria ascendente:" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:322 -msgid "Assigns parent item text, but with a colon (:) added to the end." -msgstr "" -"Atribui o texto do item ascendente, mas com dois pontos (:) adicionados ao " -"final." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:321 -msgid "Parent Item With Colon" -msgstr "Item ascendente com dois pontos" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:298 -msgid "Parent Category" -msgstr "Categoria ascendente" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:297 -msgid "Assigns parent item text. Only used on hierarchical taxonomies." -msgstr "" -"Atribui o texto do item ascendente. Usado apenas em taxonomias hierárquicas." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:296 -msgid "Parent Item" -msgstr "Item ascendente" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:293 -msgid "Parent %s" -msgstr "%s ascendente" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:278 -msgid "New Tag Name" -msgstr "Novo nome de tag" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:277 -msgid "Assigns the new item name text." -msgstr "Atribui o texto \"novo nome do item\"." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:276 -msgid "New Item Name" -msgstr "Novo nome do item" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:273 -msgid "New %s Name" -msgstr "Novo nome de %s" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:258 -msgid "Add New Tag" -msgstr "Adicionar nova tag" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:257 -msgid "Assigns the add new item text." -msgstr "Atribui o texto \"adicionar novo item\"." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:238 -msgid "Update Tag" -msgstr "Atualizar tag" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:237 -msgid "Assigns the update item text." -msgstr "Atribui o texto \"atualizar item\"." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:236 -msgid "Update Item" -msgstr "Atualizar item" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:233 -msgid "Update %s" -msgstr "Atualizar %s" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:218 -msgid "View Tag" -msgstr "Ver tag" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:217 -msgid "In the admin bar to view term during editing." -msgstr "Na barra de administração para visualizar o termo durante a edição." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:198 -msgid "Edit Tag" -msgstr "Editar tag" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:197 -msgid "At the top of the editor screen when editing a term." -msgstr "Na parte superior da tela do editor durante a edição de um termo." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:178 -msgid "All Tags" -msgstr "Todas as tags" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:177 -msgid "Assigns the all items text." -msgstr "Atribui o texto \"todos os itens\"." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:158 -msgid "Assigns the menu name text." -msgstr "Atribui o texto do nome do menu." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:157 -msgid "Menu Label" -msgstr "Rótulo do menu" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:131 -msgid "Active taxonomies are enabled and registered with WordPress." -msgstr "As taxonomias selecionadas estão ativas e cadastradas no WordPress." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:115 -msgid "A descriptive summary of the taxonomy." -msgstr "Um resumo descritivo da taxonomia." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:95 -msgid "A descriptive summary of the term." -msgstr "Um resumo descritivo do termo." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:94 -msgid "Term Description" -msgstr "Descrição do termo" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:76 -msgid "Single word, no spaces. Underscores and dashes allowed." -msgstr "" -"Uma única palavra, sem espaços. Sublinhados (_) e traços (-) permitidos." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:75 -msgid "Term Slug" -msgstr "Slug do termo" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:56 -msgid "The name of the default term." -msgstr "O nome do termo padrão." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:55 -msgid "Term Name" -msgstr "Nome do termo" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:41 -msgid "" -"Create a term for the taxonomy that cannot be deleted. It will not be " -"selected for posts by default." -msgstr "" -"Cria um termo para a taxonomia que não pode ser excluído. Ele não será " -"selecionado para posts por padrão." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:40 -msgid "Default Term" -msgstr "Termo padrão" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:28 -msgid "" -"Whether terms in this taxonomy should be sorted in the order they are " -"provided to `wp_set_object_terms()`." -msgstr "" -"Se os termos nesta taxonomia devem ser classificados na ordem em que são " -"fornecidos para \"wp_set_object_terms()\"." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:27 -msgid "Sort Terms" -msgstr "Ordenar termos" - -#: includes/admin/views/acf-post-type/list-empty.php:7 -msgid "Add Post Type" -msgstr "Adicionar tipo de post" - -#: includes/admin/views/acf-post-type/list-empty.php:6 -msgid "" -"Expand the functionality of WordPress beyond standard posts and pages with " -"custom post types." -msgstr "" -"Expanda a funcionalidade do WordPress além de posts e páginas padrão com " -"tipos de post personalizados." - -#: includes/admin/views/acf-post-type/list-empty.php:5 -msgid "Add Your First Post Type" -msgstr "Adicione seu primeiro tipo de post" - -#: includes/admin/views/acf-post-type/basic-settings.php:136 -#: includes/admin/views/acf-taxonomy/basic-settings.php:135 -msgid "I know what I'm doing, show me all the options." -msgstr "Eu sei o que estou fazendo, mostre todas as opções." - -#: includes/admin/views/acf-post-type/basic-settings.php:135 -#: includes/admin/views/acf-taxonomy/basic-settings.php:134 -msgid "Advanced Configuration" -msgstr "Configuração avançada" - -#: includes/admin/views/acf-post-type/basic-settings.php:123 -msgid "Hierarchical post types can have descendants (like pages)." -msgstr "Tipos de post hierárquicos podem ter descendentes (como páginas)." - -#: includes/admin/views/acf-post-type/basic-settings.php:122 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:980 -#: includes/admin/views/acf-taxonomy/basic-settings.php:121 -msgid "Hierarchical" -msgstr "Hierárquico" - -#: includes/admin/views/acf-post-type/basic-settings.php:107 -msgid "Visible on the frontend and in the admin dashboard." -msgstr "Visível na interface e no painel administrativo." - -#: includes/admin/views/acf-post-type/basic-settings.php:106 -#: includes/admin/views/acf-taxonomy/basic-settings.php:106 -msgid "Public" -msgstr "Público" - -#. translators: example post type -#: includes/admin/views/acf-post-type/basic-settings.php:59 -msgid "movie" -msgstr "filme" - -#: includes/admin/views/acf-post-type/basic-settings.php:57 -msgid "Lower case letters, underscores and dashes only, Max 20 characters." -msgstr "" -"Somente letras minúsculas, sublinhados (_) e traços (-), máximo de 20 " -"caracteres." - -#. translators: example post type -#: includes/admin/views/acf-post-type/basic-settings.php:41 -msgid "Movie" -msgstr "Filme" - -#: includes/admin/views/acf-post-type/basic-settings.php:39 -#: includes/admin/views/acf-taxonomy/basic-settings.php:40 -msgid "Singular Label" -msgstr "Rótulo no singular" - -#. translators: example post type -#: includes/admin/views/acf-post-type/basic-settings.php:24 -msgid "Movies" -msgstr "Filmes" - -#: includes/admin/views/acf-post-type/basic-settings.php:22 -#: includes/admin/views/acf-taxonomy/basic-settings.php:23 -msgid "Plural Label" -msgstr "Rótulo no plural" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1270 -msgid "" -"Optional custom controller to use instead of `WP_REST_Posts_Controller`." -msgstr "" -"Controlador personalizado opcional para usar em vez de " -"\"WP_REST_Posts_Controller\"." - -#: includes/admin/views/acf-post-type/advanced-settings.php:1269 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1210 -msgid "Controller Class" -msgstr "Classe do controlador" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1251 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1191 -msgid "The namespace part of the REST API URL." -msgstr "A parte do namespace da URL da API REST." - -#: includes/admin/views/acf-post-type/advanced-settings.php:1250 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1190 -msgid "Namespace Route" -msgstr "Rota do namespace" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1232 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1172 -msgid "The base URL for the post type REST API URLs." -msgstr "O URL base para os URLs da API REST do tipo de post." - -#: includes/admin/views/acf-post-type/advanced-settings.php:1231 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1171 -msgid "Base URL" -msgstr "URL base" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1217 -msgid "" -"Exposes this post type in the REST API. Required to use the block editor." -msgstr "" -"Expõe este tipo de post na API REST. Obrigatório para usar o editor de " -"blocos." - -#: includes/admin/views/acf-post-type/advanced-settings.php:1216 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1154 -msgid "Show In REST API" -msgstr "Mostrar na API REST" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1195 -msgid "Customize the query variable name." -msgstr "Personalize o nome da variável de consulta." - -#: includes/admin/views/acf-post-type/advanced-settings.php:1194 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1054 -msgid "Query Variable" -msgstr "Variável de consulta" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1172 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1032 -msgid "No Query Variable Support" -msgstr "Sem suporte a variáveis de consulta" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1171 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1031 -msgid "Custom Query Variable" -msgstr "Variável de consulta personalizada" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1168 -msgid "" -"Items can be accessed using the non-pretty permalink, eg. {post_type}" -"={post_slug}." -msgstr "" -"Os itens podem ser acessados usando o link permanente não bonito, por " -"exemplo, {post_type}={post_slug}." - -#: includes/admin/views/acf-post-type/advanced-settings.php:1167 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1027 -msgid "Query Variable Support" -msgstr "Suporte à variável de consulta" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1142 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1003 -msgid "URLs for an item and items can be accessed with a query string." -msgstr "" -"URLs para um item e itens podem ser acessados com uma string de consulta." - -#: includes/admin/views/acf-post-type/advanced-settings.php:1141 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1002 -msgid "Publicly Queryable" -msgstr "Consultável publicamente" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1120 -msgid "Custom slug for the Archive URL." -msgstr "Slug personalizado para o URL de arquivo." - -#: includes/admin/views/acf-post-type/advanced-settings.php:1119 -msgid "Archive Slug" -msgstr "Slug do arquivo" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1106 -msgid "" -"Has an item archive that can be customized with an archive template file in " -"your theme." -msgstr "" -"Possui um arquivo de itens que pode ser personalizado com um arquivo de " -"modelo de arquivo em seu tema." - -#: includes/admin/views/acf-post-type/advanced-settings.php:1105 -msgid "Archive" -msgstr "Arquivo" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1085 -msgid "Pagination support for the items URLs such as the archives." -msgstr "Suporte de paginação para os URLs de itens, como os arquivos." - -#: includes/admin/views/acf-post-type/advanced-settings.php:1084 -msgid "Pagination" -msgstr "Paginação" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1067 -msgid "RSS feed URL for the post type items." -msgstr "URL do feed RSS para os itens do tipo de post." - -#: includes/admin/views/acf-post-type/advanced-settings.php:1066 -msgid "Feed URL" -msgstr "URL do feed" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1048 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:961 -msgid "" -"Alters the permalink structure to add the `WP_Rewrite::$front` prefix to " -"URLs." -msgstr "" -"Altera a estrutura do link permanente para adicionar o prefixo \"WP_Rewrite::" -"$front\" aos URLs." - -#: includes/admin/views/acf-post-type/advanced-settings.php:1047 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:960 -msgid "Front URL Prefix" -msgstr "Prefixo Front do URL" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1028 -msgid "Customize the slug used in the URL." -msgstr "Personalize o slug usado no URL." - -#: includes/admin/views/acf-post-type/advanced-settings.php:1027 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:940 -msgid "URL Slug" -msgstr "Slug do URL" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1011 -msgid "Permalinks for this post type are disabled." -msgstr "Os links permanentes para este tipo de post estão desativados." - -#. translators: this string will be appended with the new permalink structure. -#: includes/admin/views/acf-post-type/advanced-settings.php:1010 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:923 -msgid "" -"Rewrite the URL using a custom slug defined in the input below. Your " -"permalink structure will be" -msgstr "" -"Reescreve o URL usando um slug personalizado definido no campo abaixo. Sua " -"estrutura de link permanente será" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1002 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:915 -msgid "No Permalink (prevent URL rewriting)" -msgstr "Sem link permanente (impedir a reescrita do URL)" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1001 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:914 -msgid "Custom Permalink" -msgstr "Link permanente personalizado" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1000 -#: includes/admin/views/acf-post-type/advanced-settings.php:1170 -#: includes/admin/views/acf-post-type/basic-settings.php:56 -msgid "Post Type Key" -msgstr "Chave do tipo de post" - -#. translators: this string will be appended with the new permalink structure. -#: includes/admin/views/acf-post-type/advanced-settings.php:998 -#: includes/admin/views/acf-post-type/advanced-settings.php:1008 -msgid "" -"Rewrite the URL using the post type key as the slug. Your permalink " -"structure will be" -msgstr "" -"Reescreve o URL usando a chave do tipo de post como slug. Sua estrutura de " -"link permanente será" - -#: includes/admin/views/acf-post-type/advanced-settings.php:996 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:910 -msgid "Permalink Rewrite" -msgstr "Reescrita do link permanente" - -#: includes/admin/views/acf-post-type/advanced-settings.php:982 -msgid "Delete items by a user when that user is deleted." -msgstr "Excluir itens criados pelo usuário quando o usuário for excluído." - -#: includes/admin/views/acf-post-type/advanced-settings.php:981 -msgid "Delete With User" -msgstr "Excluir com o usuário" - -#: includes/admin/views/acf-post-type/advanced-settings.php:967 -msgid "Allow the post type to be exported from 'Tools' > 'Export'." -msgstr "" -"Permitir que o tipo de post seja exportado em \"Ferramentas\" > \"Exportar\"." - -#: includes/admin/views/acf-post-type/advanced-settings.php:966 -msgid "Can Export" -msgstr "Pode exportar" - -#: includes/admin/views/acf-post-type/advanced-settings.php:935 -msgid "Optionally provide a plural to be used in capabilities." -msgstr "Opcionalmente, forneça um plural para ser usado nas capacidades." - -#: includes/admin/views/acf-post-type/advanced-settings.php:934 -msgid "Plural Capability Name" -msgstr "Nome plural da capacidade" - -#: includes/admin/views/acf-post-type/advanced-settings.php:916 -msgid "Choose another post type to base the capabilities for this post type." -msgstr "" -"Escolha outro tipo de post para basear as capacidades deste tipo de post." - -#: includes/admin/views/acf-post-type/advanced-settings.php:915 -msgid "Singular Capability Name" -msgstr "Nome singular da capacidade" - -#: includes/admin/views/acf-post-type/advanced-settings.php:901 -msgid "" -"By default the capabilities of the post type will inherit the 'Post' " -"capability names, eg. edit_post, delete_posts. Enable to use post type " -"specific capabilities, eg. edit_{singular}, delete_{plural}." -msgstr "" -"Por padrão, as capacidades do tipo de post herdarão os nomes das capacidades " -"de \"Post\". Ex.: edit_post, delete_posts. Ative para usar capacidades " -"específicas do tipo de post, ex.: edit_{singular}, delete_{plural}." - -#: includes/admin/views/acf-post-type/advanced-settings.php:900 -msgid "Rename Capabilities" -msgstr "Renomear capacidades" - -#: includes/admin/views/acf-post-type/advanced-settings.php:885 -msgid "Exclude From Search" -msgstr "Excluir da pesquisa" - -#: includes/admin/views/acf-post-type/advanced-settings.php:872 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:854 -msgid "" -"Allow items to be added to menus in the 'Appearance' > 'Menus' screen. Must " -"be turned on in 'Screen options'." -msgstr "" -"Permitir que itens sejam adicionados aos menus na tela 'Aparência' > " -"'Menus'. Deve ser ativado em 'Opções de tela'." - -#: includes/admin/views/acf-post-type/advanced-settings.php:871 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:853 -msgid "Appearance Menus Support" -msgstr "Suporte a menus em \"Aparência\"" - -#: includes/admin/views/acf-post-type/advanced-settings.php:853 -msgid "Appears as an item in the 'New' menu in the admin bar." -msgstr "Aparece como um item no menu \"novo\" na barra de administração." - -#: includes/admin/views/acf-post-type/advanced-settings.php:852 -msgid "Show In Admin Bar" -msgstr "Mostrar na barra de administração" - -#: includes/admin/views/acf-post-type/advanced-settings.php:821 -msgid "" -"A PHP function name to be called when setting up the meta boxes for the edit " -"screen." -msgstr "" -"Um nome de função PHP a ser chamado ao configurar as metaboxes para a tela " -"de edição." - -#: includes/admin/views/acf-post-type/advanced-settings.php:820 -msgid "Custom Meta Box Callback" -msgstr "Callback de metabox personalizado" - -#: includes/admin/views/acf-post-type/advanced-settings.php:800 -msgid "Menu Icon" -msgstr "Ícone do menu" - -#: includes/admin/views/acf-post-type/advanced-settings.php:782 -msgid "The position in the sidebar menu in the admin dashboard." -msgstr "A posição no menu da barra lateral no painel de administração." - -#: includes/admin/views/acf-post-type/advanced-settings.php:781 -msgid "Menu Position" -msgstr "Posição do menu" - -#: includes/admin/views/acf-post-type/advanced-settings.php:763 -msgid "" -"By default the post type will get a new top level item in the admin menu. If " -"an existing top level item is supplied here, the post type will be added as " -"a submenu item under it." -msgstr "" -"Por padrão, o tipo de post receberá um novo item de nível superior no menu " -"de administração. Se um item de nível superior existente for fornecido aqui, " -"o tipo de post será adicionado como um item de submenu abaixo dele." - -#: includes/admin/views/acf-post-type/advanced-settings.php:762 -msgid "Admin Menu Parent" -msgstr "Ascendente do menu de administração" - -#. translators: %s = "dashicon class name", link to the WordPress dashicon -#. documentation. -#: includes/admin/views/acf-post-type/advanced-settings.php:750 -msgid "" -"The icon used for the post type menu item in the admin dashboard. Can be a " -"URL or %s to use for the icon." -msgstr "" -"O ícone usado para o item de menu do tipo de post no painel de " -"administração. Pode ser um URL ou um %s a ser usado para o ícone." - -#: includes/admin/views/acf-post-type/advanced-settings.php:745 -msgid "Dashicon class name" -msgstr "Nome de classe Dashicon" - -#: includes/admin/views/acf-post-type/advanced-settings.php:734 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:734 -msgid "Admin editor navigation in the sidebar menu." -msgstr "Navegação do editor de administração no menu da barra lateral." - -#: includes/admin/views/acf-post-type/advanced-settings.php:733 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:733 -msgid "Show In Admin Menu" -msgstr "Mostrar no menu de administração" - -#: includes/admin/views/acf-post-type/advanced-settings.php:720 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:719 -msgid "Items can be edited and managed in the admin dashboard." -msgstr "Os itens podem ser editados e gerenciados no painel de administração." - -#: includes/admin/views/acf-post-type/advanced-settings.php:719 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:718 -msgid "Show In UI" -msgstr "Mostrar na interface" - -#: includes/admin/views/acf-post-type/advanced-settings.php:689 -msgid "A link to a post." -msgstr "Um link para um post." - -#: includes/admin/views/acf-post-type/advanced-settings.php:688 -msgid "Description for a navigation link block variation." -msgstr "Descrição para uma variação de bloco de link de navegação." - -#: includes/admin/views/acf-post-type/advanced-settings.php:687 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:702 -msgid "Item Link Description" -msgstr "Descrição do link do item" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:683 -msgid "A link to a %s." -msgstr "Um link para um %s." - -#: includes/admin/views/acf-post-type/advanced-settings.php:668 -msgid "Post Link" -msgstr "Link do post" - -#: includes/admin/views/acf-post-type/advanced-settings.php:667 -msgid "Title for a navigation link block variation." -msgstr "Título para uma variação de bloco de link de navegação." - -#: includes/admin/views/acf-post-type/advanced-settings.php:666 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:681 -msgid "Item Link" -msgstr "Link do item" - -#. translators: %s Singular form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:663 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:678 -msgid "%s Link" -msgstr "Link de %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:648 -msgid "Post updated." -msgstr "Post atualizado." - -#: includes/admin/views/acf-post-type/advanced-settings.php:647 -msgid "In the editor notice after an item is updated." -msgstr "No aviso do editor após a atualização de um item." - -#: includes/admin/views/acf-post-type/advanced-settings.php:646 -msgid "Item Updated" -msgstr "Item atualizado" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:643 -msgid "%s updated." -msgstr "%s atualizado." - -#: includes/admin/views/acf-post-type/advanced-settings.php:628 -msgid "Post scheduled." -msgstr "Post agendado." - -#: includes/admin/views/acf-post-type/advanced-settings.php:627 -msgid "In the editor notice after scheduling an item." -msgstr "No aviso do editor após o agendamento de um item." - -#: includes/admin/views/acf-post-type/advanced-settings.php:626 -msgid "Item Scheduled" -msgstr "Item agendado" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:623 -msgid "%s scheduled." -msgstr "%s agendado." - -#: includes/admin/views/acf-post-type/advanced-settings.php:608 -msgid "Post reverted to draft." -msgstr "Post revertido para rascunho." - -#: includes/admin/views/acf-post-type/advanced-settings.php:607 -msgid "In the editor notice after reverting an item to draft." -msgstr "No aviso do editor após reverter um item para rascunho." - -#: includes/admin/views/acf-post-type/advanced-settings.php:606 -msgid "Item Reverted To Draft" -msgstr "Item revertido para rascunho" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:603 -msgid "%s reverted to draft." -msgstr "%s revertido para rascunho." - -#: includes/admin/views/acf-post-type/advanced-settings.php:588 -msgid "Post published privately." -msgstr "Post publicado de forma privada." - -#: includes/admin/views/acf-post-type/advanced-settings.php:587 -msgid "In the editor notice after publishing a private item." -msgstr "No aviso do editor após a publicação de um item privado." - -#: includes/admin/views/acf-post-type/advanced-settings.php:586 -msgid "Item Published Privately" -msgstr "Item publicado de forma privada" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:583 -msgid "%s published privately." -msgstr "%s publicado de forma privada." - -#: includes/admin/views/acf-post-type/advanced-settings.php:568 -msgid "Post published." -msgstr "Post publicado." - -#: includes/admin/views/acf-post-type/advanced-settings.php:567 -msgid "In the editor notice after publishing an item." -msgstr "No aviso do editor após a publicação de um item." - -#: includes/admin/views/acf-post-type/advanced-settings.php:566 -msgid "Item Published" -msgstr "Item publicado" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:563 -msgid "%s published." -msgstr "%s publicado." - -#: includes/admin/views/acf-post-type/advanced-settings.php:548 -msgid "Posts list" -msgstr "Lista de posts" - -#: includes/admin/views/acf-post-type/advanced-settings.php:547 -msgid "Used by screen readers for the items list on the post type list screen." -msgstr "" -"Usado por leitores de tela para a lista de itens na tela de lista de tipos " -"de post." - -#: includes/admin/views/acf-post-type/advanced-settings.php:546 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:640 -msgid "Items List" -msgstr "Lista de itens" - -#. translators: %s Plural form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:543 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:637 -msgid "%s list" -msgstr "Lista de %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:528 -msgid "Posts list navigation" -msgstr "Navegação da lista de posts" - -#: includes/admin/views/acf-post-type/advanced-settings.php:527 -msgid "" -"Used by screen readers for the filter list pagination on the post type list " -"screen." -msgstr "" -"Usado por leitores de tela para a paginação da lista de filtros na tela da " -"lista de tipos de post." - -#: includes/admin/views/acf-post-type/advanced-settings.php:526 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:620 -msgid "Items List Navigation" -msgstr "Navegação da lista de itens" - -#. translators: %s Plural form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:523 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:617 -msgid "%s list navigation" -msgstr "Navegação na lista de %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:507 -msgid "Filter posts by date" -msgstr "Filtrar posts por data" - -#: includes/admin/views/acf-post-type/advanced-settings.php:506 -msgid "" -"Used by screen readers for the filter by date heading on the post type list " -"screen." -msgstr "" -"Usado por leitores de tela para filtrar por título de data na tela de lista " -"de tipos de post." - -#: includes/admin/views/acf-post-type/advanced-settings.php:505 -msgid "Filter Items By Date" -msgstr "Filtrar itens por data" - -#. translators: %s Plural form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:501 -msgid "Filter %s by date" -msgstr "Filtrar %s por data" - -#: includes/admin/views/acf-post-type/advanced-settings.php:486 -msgid "Filter posts list" -msgstr "Filtrar lista de posts" - -#: includes/admin/views/acf-post-type/advanced-settings.php:485 -msgid "" -"Used by screen readers for the filter links heading on the post type list " -"screen." -msgstr "" -"Usado por leitores de tela para o título de links de filtro na tela de lista " -"de tipos de post." - -#: includes/admin/views/acf-post-type/advanced-settings.php:484 -msgid "Filter Items List" -msgstr "Filtrar lista de itens" - -#. translators: %s Plural form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:480 -msgid "Filter %s list" -msgstr "Filtrar lista de %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:464 -msgid "In the media modal showing all media uploaded to this item." -msgstr "No modal de mídia mostrando todas as mídias enviadas para este item." - -#: includes/admin/views/acf-post-type/advanced-settings.php:463 -msgid "Uploaded To This Item" -msgstr "Enviado para este item" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:459 -msgid "Uploaded to this %s" -msgstr "Enviado para este %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:444 -msgid "Insert into post" -msgstr "Inserir no post" - -#: includes/admin/views/acf-post-type/advanced-settings.php:443 -msgid "As the button label when adding media to content." -msgstr "Como o rótulo do botão ao adicionar mídia ao conteúdo." - -#: includes/admin/views/acf-post-type/advanced-settings.php:442 -msgid "Insert Into Media Button" -msgstr "Inserir no botão de mídia" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:438 -msgid "Insert into %s" -msgstr "Inserir no %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:423 -msgid "Use as featured image" -msgstr "Usar como imagem destacada" - -#: includes/admin/views/acf-post-type/advanced-settings.php:422 -msgid "" -"As the button label for selecting to use an image as the featured image." -msgstr "" -"Como o rótulo do botão para selecionar o uso de uma imagem como a imagem " -"destacada." - -#: includes/admin/views/acf-post-type/advanced-settings.php:421 -msgid "Use Featured Image" -msgstr "Usar imagem destacada" - -#: includes/admin/views/acf-post-type/advanced-settings.php:408 -msgid "Remove featured image" -msgstr "Remover imagem destacada" - -#: includes/admin/views/acf-post-type/advanced-settings.php:407 -msgid "As the button label when removing the featured image." -msgstr "Como o rótulo do botão ao remover a imagem destacada." - -#: includes/admin/views/acf-post-type/advanced-settings.php:406 -msgid "Remove Featured Image" -msgstr "Remover imagem destacada" - -#: includes/admin/views/acf-post-type/advanced-settings.php:393 -msgid "Set featured image" -msgstr "Definir imagem destacada" - -#: includes/admin/views/acf-post-type/advanced-settings.php:392 -msgid "As the button label when setting the featured image." -msgstr "Como o rótulo do botão ao definir a imagem destacada." - -#: includes/admin/views/acf-post-type/advanced-settings.php:391 -msgid "Set Featured Image" -msgstr "Definir imagem destacada" - -#: includes/admin/views/acf-post-type/advanced-settings.php:378 -msgid "Featured image" -msgstr "Imagem destacada" - -#: includes/admin/views/acf-post-type/advanced-settings.php:377 -msgid "In the editor used for the title of the featured image meta box." -msgstr "No editor usado para o título da metabox da imagem destacada." - -#: includes/admin/views/acf-post-type/advanced-settings.php:376 -msgid "Featured Image Meta Box" -msgstr "Metabox de imagem destacada" - -#: includes/admin/views/acf-post-type/advanced-settings.php:363 -msgid "Post Attributes" -msgstr "Atributos do post" - -#: includes/admin/views/acf-post-type/advanced-settings.php:362 -msgid "In the editor used for the title of the post attributes meta box." -msgstr "No editor usado para o título da metabox de atributos do post." - -#: includes/admin/views/acf-post-type/advanced-settings.php:361 -msgid "Attributes Meta Box" -msgstr "Metabox de atributos" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:358 -msgid "%s Attributes" -msgstr "Atributos de %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:343 -msgid "Post Archives" -msgstr "Arquivos de posts" - -#: includes/admin/views/acf-post-type/advanced-settings.php:342 -msgid "" -"Adds 'Post Type Archive' items with this label to the list of posts shown " -"when adding items to an existing menu in a CPT with archives enabled. Only " -"appears when editing menus in 'Live Preview' mode and a custom archive slug " -"has been provided." -msgstr "" -"Adiciona os itens de \"arquivo do tipo de post\" com este rótulo à lista de " -"posts mostrados ao adicionar itens a um menu existente em um tipo de post " -"personalizado com arquivos ativados. Só aparece ao editar menus no modo " -"\"ver ao vivo\" e um slug de arquivo personalizado foi fornecido." - -#: includes/admin/views/acf-post-type/advanced-settings.php:341 -msgid "Archives Nav Menu" -msgstr "Menu de navegação de arquivos" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:338 -msgid "%s Archives" -msgstr "Arquivos de %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:323 -msgid "No posts found in Trash" -msgstr "Não foi possível encontrar posts na lixeira" - -#: includes/admin/views/acf-post-type/advanced-settings.php:322 -msgid "" -"At the top of the post type list screen when there are no posts in the trash." -msgstr "" -"Na parte superior da tela da lista de tipos de post, quando não há posts na " -"lixeira." - -#: includes/admin/views/acf-post-type/advanced-settings.php:321 -msgid "No Items Found in Trash" -msgstr "Não foi possível encontrar itens na lixeira" - -#. translators: %s Plural form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:317 -msgid "No %s found in Trash" -msgstr "Não foi possível encontrar %s na lixeira" - -#: includes/admin/views/acf-post-type/advanced-settings.php:302 -msgid "No posts found" -msgstr "Não foi possível encontrar posts" - -#: includes/admin/views/acf-post-type/advanced-settings.php:301 -msgid "" -"At the top of the post type list screen when there are no posts to display." -msgstr "" -"Na parte superior da tela da lista de tipos de post, quando não há posts " -"para exibir." - -#: includes/admin/views/acf-post-type/advanced-settings.php:300 -msgid "No Items Found" -msgstr "Não foi possível encontrar itens" - -#. translators: %s Plural form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:296 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:480 -msgid "No %s found" -msgstr "Não foi possível encontrar %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:281 -msgid "Search Posts" -msgstr "Pesquisar posts" - -#: includes/admin/views/acf-post-type/advanced-settings.php:280 -msgid "At the top of the items screen when searching for an item." -msgstr "Na parte superior da tela de itens ao pesquisar um item." - -#: includes/admin/views/acf-post-type/advanced-settings.php:279 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:345 -msgid "Search Items" -msgstr "Pesquisar itens" - -#. translators: %s Singular form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:276 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:342 -msgid "Search %s" -msgstr "Pesquisar %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:261 -msgid "Parent Page:" -msgstr "Página ascendente:" - -#: includes/admin/views/acf-post-type/advanced-settings.php:260 -msgid "For hierarchical types in the post type list screen." -msgstr "Para tipos hierárquicos na tela de lista de tipos de post." - -#: includes/admin/views/acf-post-type/advanced-settings.php:259 -msgid "Parent Item Prefix" -msgstr "Prefixo do item ascendente" - -#. translators: %s Singular form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:256 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:318 -msgid "Parent %s:" -msgstr "%s ascendente:" - -#: includes/admin/views/acf-post-type/advanced-settings.php:241 -msgid "New Post" -msgstr "Novo post" - -#: includes/admin/views/acf-post-type/advanced-settings.php:239 -msgid "New Item" -msgstr "Novo item" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:236 -msgid "New %s" -msgstr "Novo %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:206 -msgid "Add New Post" -msgstr "Adicionar novo post" - -#: includes/admin/views/acf-post-type/advanced-settings.php:205 -msgid "At the top of the editor screen when adding a new item." -msgstr "Na parte superior da tela do editor ao adicionar um novo item." - -#: includes/admin/views/acf-post-type/advanced-settings.php:204 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:256 -msgid "Add New Item" -msgstr "Adicionar novo item" - -#. translators: %s Singular form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:201 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:253 -msgid "Add New %s" -msgstr "Adicionar novo %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:186 -msgid "View Posts" -msgstr "Ver posts" - -#: includes/admin/views/acf-post-type/advanced-settings.php:185 -msgid "" -"Appears in the admin bar in the 'All Posts' view, provided the post type " -"supports archives and the home page is not an archive of that post type." -msgstr "" -"Aparece na barra de administração na visualização \"Todos as posts\", desde " -"que o tipo de post suporte arquivos e a página inicial não seja um arquivo " -"desse tipo de post." - -#: includes/admin/views/acf-post-type/advanced-settings.php:184 -msgid "View Items" -msgstr "Ver itens" - -#: includes/admin/views/acf-post-type/advanced-settings.php:166 -msgid "View Post" -msgstr "Ver post" - -#: includes/admin/views/acf-post-type/advanced-settings.php:165 -msgid "In the admin bar to view item when editing it." -msgstr "Na barra de administração para visualizar o item ao editá-lo." - -#: includes/admin/views/acf-post-type/advanced-settings.php:164 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:216 -msgid "View Item" -msgstr "Ver item" - -#. translators: %s Singular form of post type name -#. translators: %s Plural form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:161 -#: includes/admin/views/acf-post-type/advanced-settings.php:181 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:213 -msgid "View %s" -msgstr "Ver %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:146 -msgid "Edit Post" -msgstr "Editar post" - -#: includes/admin/views/acf-post-type/advanced-settings.php:145 -msgid "At the top of the editor screen when editing an item." -msgstr "Na parte superior da tela do editor ao editar um item." - -#: includes/admin/views/acf-post-type/advanced-settings.php:144 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:196 -msgid "Edit Item" -msgstr "Editar item" - -#. translators: %s Singular form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:141 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:193 -msgid "Edit %s" -msgstr "Editar %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:126 -msgid "All Posts" -msgstr "Todos os posts" - -#: includes/admin/views/acf-post-type/advanced-settings.php:125 -#: includes/admin/views/acf-post-type/advanced-settings.php:220 -#: includes/admin/views/acf-post-type/advanced-settings.php:240 -msgid "In the post type submenu in the admin dashboard." -msgstr "No submenu do tipo de post no painel administrativo." - -#: includes/admin/views/acf-post-type/advanced-settings.php:124 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:176 -msgid "All Items" -msgstr "Todos os itens" - -#. translators: %s Plural form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:121 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:173 -msgid "All %s" -msgstr "Todos os %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:105 -msgid "Admin menu name for the post type." -msgstr "Nome do menu do administração para o tipo de post." - -#: includes/admin/views/acf-post-type/advanced-settings.php:104 -msgid "Menu Name" -msgstr "Nome do menu" - -#: includes/admin/views/acf-post-type/advanced-settings.php:90 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:142 -msgid "Regenerate all labels using the Singular and Plural labels" -msgstr "Recriar todos os rótulos usando os rótulos singular e plural" - -#: includes/admin/views/acf-post-type/advanced-settings.php:88 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:140 -msgid "Regenerate" -msgstr "Recriar" - -#: includes/admin/views/acf-post-type/advanced-settings.php:79 -msgid "Active post types are enabled and registered with WordPress." -msgstr "Os tipos de post ativos estão ativados e cadastrados com o WordPress." - -#: includes/admin/views/acf-post-type/advanced-settings.php:63 -msgid "A descriptive summary of the post type." -msgstr "Um resumo descritivo do tipo de post." - -#: includes/admin/views/acf-post-type/advanced-settings.php:48 -msgid "Add Custom" -msgstr "Adicionar personalizado" - -#: includes/admin/views/acf-post-type/advanced-settings.php:42 -msgid "Enable various features in the content editor." -msgstr "Ative vários recursos no editor de conteúdo." - -#: includes/admin/views/acf-post-type/advanced-settings.php:31 -msgid "Post Formats" -msgstr "Formatos de post" - -#: includes/admin/views/acf-post-type/advanced-settings.php:25 -msgid "Editor" -msgstr "Editor" - -#: includes/admin/views/acf-post-type/advanced-settings.php:24 -msgid "Trackbacks" -msgstr "Trackbacks" - -#: includes/admin/views/acf-post-type/basic-settings.php:87 -msgid "Select existing taxonomies to classify items of the post type." -msgstr "" -"Selecione taxonomias existentes para classificar itens do tipo de post." - -#: includes/admin/views/acf-field-group/field.php:145 -msgid "Browse Fields" -msgstr "Procurar campos" - -#: includes/admin/tools/class-acf-admin-tool-import.php:292 -msgid "Nothing to import" -msgstr "Nada para importar" - -#: includes/admin/tools/class-acf-admin-tool-import.php:287 -msgid ". The Custom Post Type UI plugin can be deactivated." -msgstr ". O plugin Custom Post Type UI pode ser desativado." - -#. translators: %d - number of items imported from CPTUI -#: includes/admin/tools/class-acf-admin-tool-import.php:278 -msgid "Imported %d item from Custom Post Type UI -" -msgid_plural "Imported %d items from Custom Post Type UI -" -msgstr[0] "%d item foi importado do Custom Post Type UI -" -msgstr[1] "%d itens foram importados do Custom Post Type UI -" - -#: includes/admin/tools/class-acf-admin-tool-import.php:262 -msgid "Failed to import taxonomies." -msgstr "Falha ao importar as taxonomias." - -#: includes/admin/tools/class-acf-admin-tool-import.php:244 -msgid "Failed to import post types." -msgstr "Falha ao importar os tipos de post." - -#: includes/admin/tools/class-acf-admin-tool-import.php:233 -msgid "Nothing from Custom Post Type UI plugin selected for import." -msgstr "Nada do plugin Custom Post Type UI selecionado para importação." - -#: includes/admin/tools/class-acf-admin-tool-import.php:209 -msgid "Imported 1 item" -msgid_plural "Imported %s items" -msgstr[0] "Um item importado" -msgstr[1] "%s itens importados" - -#: includes/admin/tools/class-acf-admin-tool-import.php:122 -msgid "" -"Importing a Post Type or Taxonomy with the same key as one that already " -"exists will overwrite the settings for the existing Post Type or Taxonomy " -"with those of the import." -msgstr "" -"A importação de um tipo de post ou taxonomia com a mesma chave que já existe " -"substituirá as configurações do tipo de post ou taxonomia existente pelas da " -"importação." - -#: includes/admin/tools/class-acf-admin-tool-import.php:111 -#: includes/admin/tools/class-acf-admin-tool-import.php:127 -msgid "Import from Custom Post Type UI" -msgstr "Importar do Custom Post Type UI" - -#: includes/admin/tools/class-acf-admin-tool-export.php:412 -msgid "" -"The following code can be used to register a local version of the selected " -"items. Storing field groups, post types, or taxonomies locally can provide " -"many benefits such as faster load times, version control & dynamic fields/" -"settings. Simply copy and paste the following code to your theme's functions." -"php file or include it within an external file, then deactivate or delete " -"the items from the ACF admin." -msgstr "" -"É possível usar o código a seguir para cadastrar uma versão local dos itens " -"selecionados. Armazenar grupos de campos, tipos de post ou taxonomias " -"localmente pode fornecer muitos benefícios, como tempos de carregamento mais " -"rápidos, controle de versão e campos/configurações dinâmicos. Simplesmente " -"copie e cole o código a seguir no arquivo functions.php do seu tema ou " -"inclua-o em um arquivo externo e, em seguida, desative ou exclua os itens do " -"painel do ACF." - -#: includes/admin/tools/class-acf-admin-tool-export.php:411 -msgid "Export - Generate PHP" -msgstr "Exportar - Gerar PHP" - -#: includes/admin/tools/class-acf-admin-tool-export.php:384 -msgid "Export" -msgstr "Exportar" - -#: includes/admin/tools/class-acf-admin-tool-export.php:276 -msgid "Select Taxonomies" -msgstr "Selecionar taxonomias" - -#: includes/admin/tools/class-acf-admin-tool-export.php:254 -msgid "Select Post Types" -msgstr "Selecionar tipos de post" - -#: includes/admin/tools/class-acf-admin-tool-export.php:167 -msgid "Exported 1 item." -msgid_plural "Exported %s items." -msgstr[0] "Um item exportado." -msgstr[1] "%s itens exportados." - -#: includes/admin/post-types/admin-taxonomy.php:129 -#: assets/build/js/acf-internal-post-type.js:182 -#: assets/build/js/acf-internal-post-type.js:256 -msgid "Category" -msgstr "Categoria" - -#: includes/admin/post-types/admin-taxonomy.php:127 -#: assets/build/js/acf-internal-post-type.js:179 -#: assets/build/js/acf-internal-post-type.js:253 -msgid "Tag" -msgstr "Tag" - -#. translators: %s taxonomy name -#: includes/admin/post-types/admin-taxonomy.php:82 -msgid "%s taxonomy created" -msgstr "Taxonomia %s criada" - -#. translators: %s taxonomy name -#: includes/admin/post-types/admin-taxonomy.php:76 -msgid "%s taxonomy updated" -msgstr "Taxonomia %s atualizada" - -#: includes/admin/post-types/admin-taxonomy.php:56 -msgid "Taxonomy draft updated." -msgstr "O rascunho da taxonomia foi atualizado." - -#: includes/admin/post-types/admin-taxonomy.php:55 -msgid "Taxonomy scheduled for." -msgstr "Taxonomia agendada para." - -#: includes/admin/post-types/admin-taxonomy.php:54 -msgid "Taxonomy submitted." -msgstr "Taxonomia enviada." - -#: includes/admin/post-types/admin-taxonomy.php:53 -msgid "Taxonomy saved." -msgstr "Taxonomia salva." - -#: includes/admin/post-types/admin-taxonomy.php:49 -msgid "Taxonomy deleted." -msgstr "Taxonomia excluída." - -#: includes/admin/post-types/admin-taxonomy.php:48 -msgid "Taxonomy updated." -msgstr "Taxonomia atualizada." - -#: includes/admin/post-types/admin-taxonomies.php:377 -#: includes/admin/post-types/admin-taxonomy.php:157 -msgid "" -"This taxonomy could not be registered because its key is in use by another " -"taxonomy registered by another plugin or theme." -msgstr "" -"Não foi possível cadastrar esta taxonomia porque sua chave está em uso por " -"outra taxonomia cadastrada por outro plugin ou tema." - -#. translators: %s number of taxonomies synchronized -#: includes/admin/post-types/admin-taxonomies.php:359 -msgid "Taxonomy synchronized." -msgid_plural "%s taxonomies synchronized." -msgstr[0] "Taxonomia sincronizada." -msgstr[1] "%s taxonomias sincronizadas." - -#. translators: %s number of taxonomies duplicated -#: includes/admin/post-types/admin-taxonomies.php:352 -msgid "Taxonomy duplicated." -msgid_plural "%s taxonomies duplicated." -msgstr[0] "Taxonomia duplicada." -msgstr[1] "%s taxonomias duplicadas." - -#. translators: %s number of taxonomies deactivated -#: includes/admin/post-types/admin-taxonomies.php:345 -msgid "Taxonomy deactivated." -msgid_plural "%s taxonomies deactivated." -msgstr[0] "Taxonomia desativada." -msgstr[1] "%s taxonomias desativadas." - -#. translators: %s number of taxonomies activated -#: includes/admin/post-types/admin-taxonomies.php:338 -msgid "Taxonomy activated." -msgid_plural "%s taxonomies activated." -msgstr[0] "Taxonomia ativada." -msgstr[1] "%s taxonomias ativadas." - -#: includes/admin/post-types/admin-taxonomies.php:139 -msgid "Terms" -msgstr "Termos" - -#. translators: %s number of post types synchronized -#: includes/admin/post-types/admin-post-types.php:352 -msgid "Post type synchronized." -msgid_plural "%s post types synchronized." -msgstr[0] "Tipo de post sincronizado." -msgstr[1] "%s tipos de post sincronizados." - -#. translators: %s number of post types duplicated -#: includes/admin/post-types/admin-post-types.php:345 -msgid "Post type duplicated." -msgid_plural "%s post types duplicated." -msgstr[0] "Tipo de post duplicado." -msgstr[1] "%s tipos de post duplicados." - -#. translators: %s number of post types deactivated -#: includes/admin/post-types/admin-post-types.php:338 -msgid "Post type deactivated." -msgid_plural "%s post types deactivated." -msgstr[0] "Tipo de post desativado." -msgstr[1] "%s tipos de post desativados." - -#. translators: %s number of post types activated -#: includes/admin/post-types/admin-post-types.php:331 -msgid "Post type activated." -msgid_plural "%s post types activated." -msgstr[0] "Tipo de post ativado." -msgstr[1] "%s tipos de post ativados." - -#: includes/admin/post-types/admin-post-types.php:112 -#: includes/admin/post-types/admin-taxonomies.php:137 -#: includes/admin/tools/class-acf-admin-tool-import.php:82 -#: includes/admin/views/acf-taxonomy/basic-settings.php:82 -#: includes/post-types/class-acf-post-type.php:91 -msgid "Post Types" -msgstr "Tipos de post" - -#: includes/admin/post-types/admin-post-type.php:162 -#: includes/admin/post-types/admin-taxonomy.php:164 -msgid "Advanced Settings" -msgstr "Configurações avançadas" - -#: includes/admin/post-types/admin-post-type.php:161 -#: includes/admin/post-types/admin-taxonomy.php:163 -msgid "Basic Settings" -msgstr "Configurações básicas" - -#: includes/admin/post-types/admin-post-type.php:155 -#: includes/admin/post-types/admin-post-types.php:370 -msgid "" -"This post type could not be registered because its key is in use by another " -"post type registered by another plugin or theme." -msgstr "" -"Não foi possível cadastrar este tipo de post porque sua chave está em uso " -"por outro tipo de post cadastrado por outro plugin ou tema." - -#: includes/admin/post-types/admin-post-type.php:128 -#: assets/build/js/acf-internal-post-type.js:176 -#: assets/build/js/acf-internal-post-type.js:250 -msgid "Pages" -msgstr "Páginas" - -#: includes/admin/admin-internal-post-type.php:355 -msgid "Link Existing Field Groups" -msgstr "" - -#. translators: %s post type name -#: includes/admin/post-types/admin-post-type.php:80 -msgid "%s post type created" -msgstr "Tipo de post %s criado" - -#. translators: %s taxonomy name -#: includes/admin/post-types/admin-taxonomy.php:78 -msgid "Add fields to %s" -msgstr "Adicionar campos para %s" - -#. translators: %s post type name -#: includes/admin/post-types/admin-post-type.php:76 -msgid "%s post type updated" -msgstr "Tipo de post %s atualizado" - -#: includes/admin/post-types/admin-post-type.php:56 -msgid "Post type draft updated." -msgstr "Rascunho do tipo de post atualizado." - -#: includes/admin/post-types/admin-post-type.php:55 -msgid "Post type scheduled for." -msgstr "Tipo de post agendado para." - -#: includes/admin/post-types/admin-post-type.php:54 -msgid "Post type submitted." -msgstr "Tipo de post enviado." - -#: includes/admin/post-types/admin-post-type.php:53 -msgid "Post type saved." -msgstr "Tipo de post salvo." - -#: includes/admin/post-types/admin-post-type.php:50 -msgid "Post type updated." -msgstr "Tipo de post atualizado." - -#: includes/admin/post-types/admin-post-type.php:49 -msgid "Post type deleted." -msgstr "Tipo de post excluído." - -#: includes/admin/post-types/admin-field-group.php:120 -#: assets/build/js/acf-field-group.js:1146 -#: assets/build/js/acf-field-group.js:1366 -msgid "Type to search..." -msgstr "Digite para pesquisar..." - -#: includes/admin/post-types/admin-field-group.php:105 -#: assets/build/js/acf-field-group.js:1172 -#: assets/build/js/acf-field-group.js:2319 -#: assets/build/js/acf-field-group.js:1414 -#: assets/build/js/acf-field-group.js:2727 -msgid "PRO Only" -msgstr "Somente PRO" - -#: includes/admin/post-types/admin-field-group.php:97 -#: assets/build/js/acf-internal-post-type.js:308 -#: assets/build/js/acf-internal-post-type.js:417 -msgid "Field groups linked successfully." -msgstr "Grupos de campos vinculados com sucesso." - -#. translators: %s - URL to ACF tools page. -#: includes/admin/admin.php:195 -msgid "" -"Import Post Types and Taxonomies registered with Custom Post Type UI and " -"manage them with ACF. Get Started." -msgstr "" -"Importe tipos de post e taxonomias registradas com o Custom Post Type UI e " -"gerencie-os com o ACF. Começar." - -#: includes/admin/admin.php:48 includes/admin/admin.php:267 -msgid "ACF" -msgstr "ACF" - -#: includes/admin/admin-internal-post-type.php:322 -msgid "taxonomy" -msgstr "taxonomia" - -#: includes/admin/admin-internal-post-type.php:322 -msgid "post type" -msgstr "tipo de post" - -#: includes/admin/admin-internal-post-type.php:346 -msgid "Done" -msgstr "Concluído" - -#: includes/admin/admin-internal-post-type.php:332 -msgid "Field Group(s)" -msgstr "" - -#: includes/admin/admin-internal-post-type.php:331 -msgid "Select one or many field groups..." -msgstr "Selecione um ou vários grupos de campos..." - -#: includes/admin/admin-internal-post-type.php:330 -msgid "Please select the field groups to link." -msgstr "Selecione os grupos de campos a serem vinculados." - -#: includes/admin/admin-internal-post-type.php:288 -msgid "Field group linked successfully." -msgid_plural "Field groups linked successfully." -msgstr[0] "Grupo de campos vinculado com sucesso." -msgstr[1] "Grupos de campos vinculados com sucesso." - -#: includes/admin/admin-internal-post-type-list.php:261 -#: includes/admin/post-types/admin-post-types.php:371 -#: includes/admin/post-types/admin-taxonomies.php:378 -msgctxt "post status" -msgid "Registration Failed" -msgstr "Falha no cadastro" - -#: includes/admin/admin-internal-post-type-list.php:260 -msgid "" -"This item could not be registered because its key is in use by another item " -"registered by another plugin or theme." -msgstr "" -"Não foi possível cadastrar este item porque sua chave está em uso por outro " -"item cadastrado por outro plugin ou tema." - -#: includes/acf-internal-post-type-functions.php:482 -#: includes/acf-internal-post-type-functions.php:511 -msgid "REST API" -msgstr "API REST" - -#: includes/acf-internal-post-type-functions.php:481 -#: includes/acf-internal-post-type-functions.php:510 -#: includes/acf-internal-post-type-functions.php:537 -msgid "Permissions" -msgstr "Permissões" - -#: includes/acf-internal-post-type-functions.php:480 -#: includes/acf-internal-post-type-functions.php:509 -msgid "URLs" -msgstr "URLs" - -#: includes/acf-internal-post-type-functions.php:479 -#: includes/acf-internal-post-type-functions.php:508 -#: includes/acf-internal-post-type-functions.php:535 -msgid "Visibility" -msgstr "Visibilidade" - -#: includes/acf-internal-post-type-functions.php:478 -#: includes/acf-internal-post-type-functions.php:507 -#: includes/acf-internal-post-type-functions.php:536 -msgid "Labels" -msgstr "Rótulos" - -#: includes/admin/post-types/admin-field-group.php:269 -msgid "Field Settings Tabs" -msgstr "Abas de configurações de campo" - -#. Author URI of the plugin -msgid "" -"https://wpengine.com/?utm_source=wordpress." -"org&utm_medium=referral&utm_campaign=plugin_directory&utm_content=advanced_custom_fields" -msgstr "" -"https://wpengine.com/?utm_source=wordpress." -"org&utm_medium=referral&utm_campaign=plugin_directory&utm_content=advanced_custom_fields" - -#: includes/api/api-template.php:867 -msgid "[ACF shortcode value disabled for preview]" -msgstr "[Valor de shortcode ACF desativado para visualização]" - -#: includes/admin/admin-internal-post-type.php:298 -#: includes/admin/post-types/admin-field-group.php:571 -msgid "Close Modal" -msgstr "Fechar modal" - -#: includes/admin/post-types/admin-field-group.php:96 -#: assets/build/js/acf-field-group.js:1670 -#: assets/build/js/acf-field-group.js:1993 -msgid "Field moved to other group" -msgstr "Campo movido para outro grupo" - -#: includes/admin/post-types/admin-field-group.php:95 -#: assets/build/js/acf.js:1437 assets/build/js/acf.js:1517 -msgid "Close modal" -msgstr "Fechar modal" - -#: includes/fields/class-acf-field-tab.php:125 -msgid "Start a new group of tabs at this tab." -msgstr "Iniciar um novo grupo de abas nesta aba." - -#: includes/fields/class-acf-field-tab.php:124 -msgid "New Tab Group" -msgstr "Novo grupo de abas" - -#: includes/fields/class-acf-field-select.php:451 -#: includes/fields/class-acf-field-true_false.php:200 -msgid "Use a stylized checkbox using select2" -msgstr "Usar uma caixa de seleção estilizada usando select2" - -#: includes/fields/class-acf-field-radio.php:260 -msgid "Save Other Choice" -msgstr "Salvar outra escolha" - -#: includes/fields/class-acf-field-radio.php:249 -msgid "Allow Other Choice" -msgstr "Permitir outra escolha" - -#: includes/fields/class-acf-field-checkbox.php:450 -msgid "Add Toggle All" -msgstr "Adicionar \"selecionar tudo\"" - -#: includes/fields/class-acf-field-checkbox.php:409 -msgid "Save Custom Values" -msgstr "Salvar valores personalizados" - -#: includes/fields/class-acf-field-checkbox.php:398 -msgid "Allow Custom Values" -msgstr "Permitir valores personalizados" - -#: includes/fields/class-acf-field-checkbox.php:148 -msgid "Checkbox custom values cannot be empty. Uncheck any empty values." -msgstr "" -"Os valores personalizados da caixa de seleção não podem ficar vazios. " -"Desmarque todos os valores vazios." - -#: includes/admin/views/global/navigation.php:248 -msgid "Updates" -msgstr "Atualizações" - -#: includes/admin/views/global/navigation.php:176 -msgid "Advanced Custom Fields logo" -msgstr "Logo do Advanced Custom Fields" - -#: includes/admin/views/global/form-top.php:89 -msgid "Save Changes" -msgstr "Salvar alterações" - -#: includes/admin/views/global/form-top.php:76 -msgid "Field Group Title" -msgstr "Título do grupo de campos" - -#: includes/admin/views/acf-post-type/advanced-settings.php:704 -#: includes/admin/views/global/form-top.php:3 -msgid "Add title" -msgstr "Adicionar título" - -#. translators: %s url to getting started guide -#: includes/admin/views/acf-field-group/list-empty.php:20 -#: includes/admin/views/acf-post-type/list-empty.php:12 -#: includes/admin/views/acf-taxonomy/list-empty.php:12 -#: includes/admin/views/options-page-preview.php:13 -msgid "" -"New to ACF? Take a look at our getting " -"started guide." -msgstr "" -"Novo no ACF? Dê uma olhada em nosso guia de " -"introdução." - -#: includes/admin/views/acf-field-group/list-empty.php:15 -msgid "Add Field Group" -msgstr "Adicionar grupo de campos" - -#. translators: %s url to creating a field group page -#: includes/admin/views/acf-field-group/list-empty.php:10 -msgid "" -"ACF uses field groups to group custom " -"fields together, and then attach those fields to edit screens." -msgstr "" -"O ACF usa grupos de campos para agrupar " -"campos personalizados e, em seguida, anexar esses campos às telas de edição." - -#: includes/admin/views/acf-field-group/list-empty.php:5 -msgid "Add Your First Field Group" -msgstr "Adicionar seu primeiro grupo de campos" - -#: includes/admin/admin-options-pages-preview.php:28 -#: includes/admin/views/acf-field-group/pro-features.php:54 -#: includes/admin/views/global/navigation.php:86 -#: includes/admin/views/global/navigation.php:250 -msgid "Options Pages" -msgstr "Páginas de opções" - -#: includes/admin/views/acf-field-group/pro-features.php:50 -msgid "ACF Blocks" -msgstr "Blocos do ACF" - -#: includes/admin/views/acf-field-group/pro-features.php:58 -msgid "Gallery Field" -msgstr "Campo de galeria" - -#: includes/admin/views/acf-field-group/pro-features.php:38 -msgid "Flexible Content Field" -msgstr "Campo de conteúdo flexível" - -#: includes/admin/views/acf-field-group/pro-features.php:42 -msgid "Repeater Field" -msgstr "Campo repetidor" - -#: includes/admin/views/global/navigation.php:212 -msgid "Unlock Extra Features with ACF PRO" -msgstr "Desbloqueie recursos extras com o ACF PRO" - -#: includes/admin/views/acf-field-group/options.php:267 -msgid "Delete Field Group" -msgstr "Excluir grupo de campos" - -#. translators: 1: Post creation date 2: Post creation time -#: includes/admin/views/acf-field-group/options.php:261 -msgid "Created on %1$s at %2$s" -msgstr "Criado em %1$s às %2$s" - -#: includes/acf-field-group-functions.php:497 -msgid "Group Settings" -msgstr "Configurações do grupo" - -#: includes/acf-field-group-functions.php:495 -msgid "Location Rules" -msgstr "Regras de localização" - -#. translators: %s url to field types list -#: includes/admin/views/acf-field-group/fields.php:72 -msgid "" -"Choose from over 30 field types. Learn " -"more." -msgstr "" -"Escolha entre mais de 30 tipos de campo. Saber mais." - -#: includes/admin/views/acf-field-group/fields.php:65 -msgid "" -"Get started creating new custom fields for your posts, pages, custom post " -"types and other WordPress content." -msgstr "" -"Comece a criar novos campos personalizados para seus posts, páginas, tipos " -"de post personalizados e outros conteúdos do WordPress." - -#: includes/admin/views/acf-field-group/fields.php:64 -msgid "Add Your First Field" -msgstr "Adicionar seu primeiro campo" - -#. translators: A symbol (or text, if not available in your locale) meaning -#. "Order Number", in terms of positional placement. -#: includes/admin/views/acf-field-group/fields.php:43 -msgid "#" -msgstr "#" - -#: includes/admin/views/acf-field-group/fields.php:33 -#: includes/admin/views/acf-field-group/fields.php:67 -#: includes/admin/views/acf-field-group/fields.php:103 -#: includes/admin/views/global/form-top.php:85 -msgid "Add Field" -msgstr "Adicionar campo" - -#: includes/acf-field-group-functions.php:496 includes/fields.php:410 -msgid "Presentation" -msgstr "Apresentação" - -#: includes/fields.php:409 -msgid "Validation" -msgstr "Validação" - -#: includes/acf-internal-post-type-functions.php:477 -#: includes/acf-internal-post-type-functions.php:506 includes/fields.php:408 -msgid "General" -msgstr "Geral" - -#: includes/admin/tools/class-acf-admin-tool-import.php:70 -msgid "Import JSON" -msgstr "Importar JSON" - -#: includes/admin/tools/class-acf-admin-tool-export.php:392 -msgid "Export As JSON" -msgstr "Exportar como JSON" - -#. translators: %s number of field groups deactivated -#: includes/admin/post-types/admin-field-groups.php:367 -msgid "Field group deactivated." -msgid_plural "%s field groups deactivated." -msgstr[0] "Grupo de campos desativado." -msgstr[1] "%s grupos de campos desativados." - -#. translators: %s number of field groups activated -#: includes/admin/post-types/admin-field-groups.php:360 -msgid "Field group activated." -msgid_plural "%s field groups activated." -msgstr[0] "Grupo de campos ativado." -msgstr[1] "%s grupos de campos ativados." - -#: includes/admin/admin-internal-post-type-list.php:452 -#: includes/admin/admin-internal-post-type-list.php:478 -msgid "Deactivate" -msgstr "Desativar" - -#: includes/admin/admin-internal-post-type-list.php:452 -msgid "Deactivate this item" -msgstr "Desativar este item" - -#: includes/admin/admin-internal-post-type-list.php:448 -#: includes/admin/admin-internal-post-type-list.php:477 -msgid "Activate" -msgstr "Ativar" - -#: includes/admin/admin-internal-post-type-list.php:448 -msgid "Activate this item" -msgstr "Ativar este item" - -#: includes/admin/post-types/admin-field-group.php:92 -#: assets/build/js/acf-field-group.js:2812 -#: assets/build/js/acf-field-group.js:3313 -msgid "Move field group to trash?" -msgstr "Mover grupo de campos para a lixeira?" - -#: acf.php:497 includes/admin/admin-internal-post-type-list.php:248 -#: includes/admin/post-types/admin-field-group.php:297 -#: includes/admin/post-types/admin-post-type.php:295 -#: includes/admin/post-types/admin-taxonomy.php:297 -msgctxt "post status" -msgid "Inactive" -msgstr "Inativo" - -#. Author of the plugin -msgid "WP Engine" -msgstr "WP Engine" - -#: acf.php:555 -msgid "" -"Advanced Custom Fields and Advanced Custom Fields PRO should not be active " -"at the same time. We've automatically deactivated Advanced Custom Fields PRO." -msgstr "" -"O Advanced Custom Fields e o Advanced Custom Fields PRO não devem estar " -"ativos ao mesmo tempo. Desativamos automaticamente o Advanced Custom Fields " -"PRO." - -#: acf.php:553 -msgid "" -"Advanced Custom Fields and Advanced Custom Fields PRO should not be active " -"at the same time. We've automatically deactivated Advanced Custom Fields." -msgstr "" -"O Advanced Custom Fields e o Advanced Custom Fields PRO não devem estar " -"ativos ao mesmo tempo. Desativamos automaticamente o Advanced Custom Fields." - -#: includes/acf-value-functions.php:374 -msgid "" -"%1$s - We've detected one or more calls to retrieve ACF " -"field values before ACF has been initialized. This is not supported and can " -"result in malformed or missing data. Learn how to fix this." -msgstr "" -"%1$s - Detectamos uma ou mais chamadas para recuperar os " -"valores de campos do ACF antes de o ACF ser inicializado. Isso não é " -"suportado e pode resultar em dados malformados ou ausentes. Saiba como corrigir isso." - -#: includes/fields/class-acf-field-user.php:551 -msgid "%1$s must have a user with the %2$s role." -msgid_plural "%1$s must have a user with one of the following roles: %2$s" -msgstr[0] "%1$s deve ter um usuário com a função de %2$s ." -msgstr[1] "%1$s deve ter um usuário com uma das seguintes funções: %2$s" - -#: includes/fields/class-acf-field-user.php:542 -msgid "%1$s must have a valid user ID." -msgstr "%1$s deve ter um ID de usuário válido." - -#: includes/fields/class-acf-field-user.php:380 -msgid "Invalid request." -msgstr "Solicitação inválida." - -#: includes/fields/class-acf-field-select.php:684 -msgid "%1$s is not one of %2$s" -msgstr "%1$s não é um de %2$s" - -#: includes/fields/class-acf-field-post_object.php:700 -msgid "%1$s must have term %2$s." -msgid_plural "%1$s must have one of the following terms: %2$s" -msgstr[0] "%1$s deve ter o termo %2$s" -msgstr[1] "%1$s deve ter um dos seguintes termos: %2$s" - -#: includes/fields/class-acf-field-post_object.php:684 -msgid "%1$s must be of post type %2$s." -msgid_plural "%1$s must be of one of the following post types: %2$s" -msgstr[0] "%1$s deve ser do tipo de post %2$s." -msgstr[1] "%1$s deve ser de um dos seguintes tipos de post: %2$s" - -#: includes/fields/class-acf-field-post_object.php:675 -msgid "%1$s must have a valid post ID." -msgstr "%1$s deve ter um ID de post válido." - -#: includes/fields/class-acf-field-file.php:475 -msgid "%s requires a valid attachment ID." -msgstr "%s requer um ID de anexo válido." - -#: includes/admin/views/acf-field-group/options.php:233 -msgid "Show in REST API" -msgstr "Mostrar na API REST" - -#: includes/fields/class-acf-field-color_picker.php:168 -msgid "Enable Transparency" -msgstr "Ativar transparência" - -#: includes/fields/class-acf-field-color_picker.php:187 -msgid "RGBA Array" -msgstr "Array RGBA" - -#: includes/fields/class-acf-field-color_picker.php:98 -msgid "RGBA String" -msgstr "Sequência RGBA" - -#: includes/fields/class-acf-field-color_picker.php:97 -#: includes/fields/class-acf-field-color_picker.php:186 -msgid "Hex String" -msgstr "Sequência hex" - -#: includes/admin/views/browse-fields-modal.php:65 -msgid "Upgrade to PRO" -msgstr "Atualizar para PRO" - -#: includes/admin/post-types/admin-field-group.php:297 -#: includes/admin/post-types/admin-post-type.php:295 -#: includes/admin/post-types/admin-taxonomy.php:297 -msgctxt "post status" -msgid "Active" -msgstr "Ativo" - -#: includes/fields/class-acf-field-email.php:181 -msgid "'%s' is not a valid email address" -msgstr "\"%s\" não é um endereço de e-mail válido" - -#: includes/fields/class-acf-field-color_picker.php:76 -msgid "Color value" -msgstr "Valor da cor" - -#: includes/fields/class-acf-field-color_picker.php:74 -msgid "Select default color" -msgstr "Selecionar cor padrão" - -#: includes/fields/class-acf-field-color_picker.php:72 -msgid "Clear color" -msgstr "Limpar cor" - -#: includes/acf-wp-functions.php:90 -msgid "Blocks" -msgstr "Blocos" - -#: includes/acf-wp-functions.php:86 -msgid "Options" -msgstr "Opções" - -#: includes/acf-wp-functions.php:82 -msgid "Users" -msgstr "Usuários" - -#: includes/acf-wp-functions.php:78 -msgid "Menu items" -msgstr "Itens de menu" - -#: includes/acf-wp-functions.php:70 -msgid "Widgets" -msgstr "Widgets" - -#: includes/acf-wp-functions.php:62 -msgid "Attachments" -msgstr "Anexos" - -#: includes/acf-wp-functions.php:57 -#: includes/admin/post-types/admin-post-types.php:137 -#: includes/admin/post-types/admin-taxonomies.php:112 -#: includes/admin/tools/class-acf-admin-tool-import.php:93 -#: includes/admin/views/acf-post-type/basic-settings.php:86 -#: includes/post-types/class-acf-taxonomy.php:90 -#: includes/post-types/class-acf-taxonomy.php:91 -msgid "Taxonomies" -msgstr "Taxonomias" - -#: includes/acf-wp-functions.php:44 -#: includes/admin/post-types/admin-post-type.php:126 -#: includes/admin/post-types/admin-post-types.php:139 -#: includes/admin/views/acf-post-type/advanced-settings.php:106 -#: assets/build/js/acf-internal-post-type.js:173 -#: assets/build/js/acf-internal-post-type.js:247 -msgid "Posts" -msgstr "Posts" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:76 -msgid "Last updated: %s" -msgstr "Última atualização: %s" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:70 -msgid "Sorry, this post is unavailable for diff comparison." -msgstr "Este post não está disponível para comparação de diferenças." - -#: includes/ajax/class-acf-ajax-local-json-diff.php:42 -msgid "Invalid field group parameter(s)." -msgstr "Parâmetros de grupo de campos inválidos." - -#: includes/admin/admin-internal-post-type-list.php:413 -msgid "Awaiting save" -msgstr "Aguardando salvar" - -#: includes/admin/admin-internal-post-type-list.php:410 -msgid "Saved" -msgstr "Salvo" - -#: includes/admin/admin-internal-post-type-list.php:406 -#: includes/admin/tools/class-acf-admin-tool-import.php:49 -msgid "Import" -msgstr "Importar" - -#: includes/admin/admin-internal-post-type-list.php:402 -msgid "Review changes" -msgstr "Revisar alterações" - -#: includes/admin/admin-internal-post-type-list.php:378 -msgid "Located in: %s" -msgstr "Localizado em: %s" - -#: includes/admin/admin-internal-post-type-list.php:375 -msgid "Located in plugin: %s" -msgstr "Localizado no plugin: %s" - -#: includes/admin/admin-internal-post-type-list.php:372 -msgid "Located in theme: %s" -msgstr "Localizado no tema: %s" - -#: includes/admin/post-types/admin-field-groups.php:261 -msgid "Various" -msgstr "Vários" - -#: includes/admin/admin-internal-post-type-list.php:216 -#: includes/admin/admin-internal-post-type-list.php:485 -msgid "Sync changes" -msgstr "Sincronizar alterações" - -#: includes/admin/admin-internal-post-type-list.php:215 -msgid "Loading diff" -msgstr "Carregando diferenças" - -#: includes/admin/admin-internal-post-type-list.php:214 -msgid "Review local JSON changes" -msgstr "Revisão das alterações do JSON local" - -#: includes/admin/admin.php:170 -msgid "Visit website" -msgstr "Visitar site" - -#: includes/admin/admin.php:169 -msgid "View details" -msgstr "Ver detalhes" - -#: includes/admin/admin.php:168 -msgid "Version %s" -msgstr "Versão %s" - -#: includes/admin/admin.php:167 -msgid "Information" -msgstr "Informações" - -#: includes/admin/admin.php:158 -msgid "" -"Help Desk. The support professionals on " -"our Help Desk will assist with your more in depth, technical challenges." -msgstr "" -"Suporte técnico. Os profissionais de " -"nosso Suporte técnico poderão auxiliá-lo em questões técnicas mais complexas." - -#: includes/admin/admin.php:154 -msgid "" -"Discussions. We have an active and " -"friendly community on our Community Forums who may be able to help you " -"figure out the 'how-tos' of the ACF world." -msgstr "" -"Discussões. Temos uma comunidade ativa " -"e amigável em nossos Fóruns da Comunidade que podem ajudá-lo a descobrir os " -"'como fazer' do mundo ACF." - -#: includes/admin/admin.php:150 -msgid "" -"Documentation. Our extensive " -"documentation contains references and guides for most situations you may " -"encounter." -msgstr "" -"Documentação. Nossa vasta documentação " -"contém referências e guias para a maioria dos problemas e situações que você " -"poderá encontrar." - -#: includes/admin/admin.php:147 -msgid "" -"We are fanatical about support, and want you to get the best out of your " -"website with ACF. If you run into any difficulties, there are several places " -"you can find help:" -msgstr "" -"Somos fanáticos por suporte e queremos que você aproveite ao máximo seu site " -"com o ACF. Se você tiver alguma dificuldade, há vários lugares onde pode " -"encontrar ajuda:" - -#: includes/admin/admin.php:144 includes/admin/admin.php:146 -msgid "Help & Support" -msgstr "Ajuda e suporte" - -#: includes/admin/admin.php:135 -msgid "" -"Please use the Help & Support tab to get in touch should you find yourself " -"requiring assistance." -msgstr "" -"Use a aba \"ajuda e suporte\" para entrar em contato caso precise de " -"assistência." - -#: includes/admin/admin.php:132 -msgid "" -"Before creating your first Field Group, we recommend first reading our Getting started guide to familiarize " -"yourself with the plugin's philosophy and best practises." -msgstr "" -"Antes de crear seu primeiro grupo de campos recomendamos que leia nosso Guia para iniciantes a fim de familiarizar-" -"se com a filosofia e as boas práticas deste plugin." - -#: includes/admin/admin.php:130 -msgid "" -"The Advanced Custom Fields plugin provides a visual form builder to " -"customize WordPress edit screens with extra fields, and an intuitive API to " -"display custom field values in any theme template file." -msgstr "" -"O plugin Advanced Custom Fields fornece um construtor de formulários visuais " -"para personalizar as telas de edição do WordPress com campos extras e uma " -"API intuitiva para exibir valores de campos personalizados em qualquer " -"arquivo de modelo de tema." - -#: includes/admin/admin.php:127 includes/admin/admin.php:129 -msgid "Overview" -msgstr "Visão geral" - -#: includes/locations.php:36 -msgid "Location type \"%s\" is already registered." -msgstr "O tipo de localização \"%s\" já está registado." - -#: includes/locations.php:25 -msgid "Class \"%s\" does not exist." -msgstr "A classe \"%s\" não existe." - -#: includes/ajax/class-acf-ajax.php:157 -msgid "Invalid nonce." -msgstr "Nonce inválido." - -#: includes/fields/class-acf-field-user.php:375 -msgid "Error loading field." -msgstr "Erro ao carregar o campo." - -#: assets/build/js/acf-input.js:2750 assets/build/js/acf-input.js:2819 -#: assets/build/js/acf-input.js:2926 assets/build/js/acf-input.js:3000 -msgid "Location not found: %s" -msgstr "Localização não encontrada: %s" - -#: includes/forms/form-user.php:353 -msgid "Error: %s" -msgstr "Erro: %s" - -#: includes/locations/class-acf-location-widget.php:22 -msgid "Widget" -msgstr "Widget" - -#: includes/locations/class-acf-location-user-role.php:24 -msgid "User Role" -msgstr "Função do usuário " - -#: includes/locations/class-acf-location-comment.php:22 -msgid "Comment" -msgstr "Comentário" - -#: includes/locations/class-acf-location-post-format.php:22 -msgid "Post Format" -msgstr "Formato do post" - -#: includes/locations/class-acf-location-nav-menu-item.php:22 -msgid "Menu Item" -msgstr "Item do menu" - -#: includes/locations/class-acf-location-post-status.php:22 -msgid "Post Status" -msgstr "Status do post" - -#: includes/acf-wp-functions.php:74 -#: includes/locations/class-acf-location-nav-menu.php:89 -msgid "Menus" -msgstr "Menus" - -#: includes/locations/class-acf-location-nav-menu.php:80 -msgid "Menu Locations" -msgstr "Localizações do menu" - -#: includes/locations/class-acf-location-nav-menu.php:22 -msgid "Menu" -msgstr "Menu" - -#: includes/locations/class-acf-location-post-taxonomy.php:22 -msgid "Post Taxonomy" -msgstr "Taxonomia de post" - -#: includes/locations/class-acf-location-page-type.php:114 -msgid "Child Page (has parent)" -msgstr "Página descendente (tem ascendente)" - -#: includes/locations/class-acf-location-page-type.php:113 -msgid "Parent Page (has children)" -msgstr "Página ascendente (tem descendentes)" - -#: includes/locations/class-acf-location-page-type.php:112 -msgid "Top Level Page (no parent)" -msgstr "Página de nível mais alto (sem ascendente)" - -#: includes/locations/class-acf-location-page-type.php:111 -msgid "Posts Page" -msgstr "Página de posts" - -#: includes/locations/class-acf-location-page-type.php:110 -msgid "Front Page" -msgstr "Página principal" - -#: includes/locations/class-acf-location-page-type.php:22 -msgid "Page Type" -msgstr "Tipo de página" - -#: includes/locations/class-acf-location-current-user.php:73 -msgid "Viewing back end" -msgstr "Visualizando o painel administrativo" - -#: includes/locations/class-acf-location-current-user.php:72 -msgid "Viewing front end" -msgstr "Visualizando a interface" - -#: includes/locations/class-acf-location-current-user.php:71 -msgid "Logged in" -msgstr "Conectado" - -#: includes/locations/class-acf-location-current-user.php:22 -msgid "Current User" -msgstr "Usuário atual" - -#: includes/locations/class-acf-location-page-template.php:22 -msgid "Page Template" -msgstr "Modelo de página" - -#: includes/locations/class-acf-location-user-form.php:74 -msgid "Register" -msgstr "Cadastre-se" - -#: includes/locations/class-acf-location-user-form.php:73 -msgid "Add / Edit" -msgstr "Adicionar / Editar" - -#: includes/locations/class-acf-location-user-form.php:22 -msgid "User Form" -msgstr "Formulário de usuário" - -#: includes/locations/class-acf-location-page-parent.php:22 -msgid "Page Parent" -msgstr "Ascendente da página" - -#: includes/locations/class-acf-location-current-user-role.php:77 -msgid "Super Admin" -msgstr "Super Admin" - -#: includes/locations/class-acf-location-current-user-role.php:22 -msgid "Current User Role" -msgstr "Função do usuário atual" - -#: includes/locations/class-acf-location-page-template.php:73 -#: includes/locations/class-acf-location-post-template.php:85 -msgid "Default Template" -msgstr "Modelo padrão" - -#: includes/locations/class-acf-location-post-template.php:22 -msgid "Post Template" -msgstr "Modelo de Post" - -#: includes/locations/class-acf-location-post-category.php:22 -msgid "Post Category" -msgstr "Categoria do post" - -#: includes/locations/class-acf-location-attachment.php:84 -msgid "All %s formats" -msgstr "Todos os formatos de %s" - -#: includes/locations/class-acf-location-attachment.php:22 -msgid "Attachment" -msgstr "Anexo" - -#: includes/validation.php:366 -msgid "%s value is required" -msgstr "O valor %s é obrigatório" - -#: includes/admin/views/acf-field-group/conditional-logic.php:59 -msgid "Show this field if" -msgstr "Mostrar este campo se" - -#: includes/admin/views/acf-field-group/conditional-logic.php:26 -#: includes/admin/views/acf-field-group/field.php:109 includes/fields.php:411 -msgid "Conditional Logic" -msgstr "Lógica condicional" - -#: includes/admin/views/acf-field-group/conditional-logic.php:156 -#: includes/admin/views/acf-field-group/location-rule.php:92 -msgid "and" -msgstr "e" - -#: includes/admin/post-types/admin-field-groups.php:123 -#: includes/admin/post-types/admin-post-types.php:143 -#: includes/admin/post-types/admin-taxonomies.php:143 -msgid "Local JSON" -msgstr "JSON local" - -#: includes/admin/views/acf-field-group/pro-features.php:46 -msgid "Clone Field" -msgstr "Clonar campo" - -#: includes/admin/views/upgrade/notice.php:30 -msgid "" -"Please also check all premium add-ons (%s) are updated to the latest version." -msgstr "" -"Verifique, também, se todos os complementos premium (%s) estão atualizados " -"para a versão mais recente." - -#: includes/admin/views/upgrade/notice.php:28 -msgid "" -"This version contains improvements to your database and requires an upgrade." -msgstr "" -"Esta versão inclui melhorias no seu banco de dados e requer uma atualização." - -#: includes/admin/views/upgrade/notice.php:28 -msgid "Thank you for updating to %1$s v%2$s!" -msgstr "Obrigado por atualizar para o %1$s v%2$s!" - -#: includes/admin/views/upgrade/notice.php:27 -msgid "Database Upgrade Required" -msgstr "Atualização do banco de dados obrigatória" - -#: includes/admin/post-types/admin-field-group.php:141 -#: includes/admin/views/upgrade/notice.php:18 -msgid "Options Page" -msgstr "Página de opções" - -#: includes/admin/views/upgrade/notice.php:15 includes/fields.php:462 -msgid "Gallery" -msgstr "Galeria" - -#: includes/admin/views/upgrade/notice.php:12 includes/fields.php:452 -msgid "Flexible Content" -msgstr "Conteúdo flexível" - -#: includes/admin/views/upgrade/notice.php:9 includes/fields.php:472 -msgid "Repeater" -msgstr "Repetidor" - -#: includes/admin/views/tools/tools.php:24 -msgid "Back to all tools" -msgstr "Voltar para todas as ferramentas" - -#: includes/admin/views/acf-field-group/options.php:195 -msgid "" -"If multiple field groups appear on an edit screen, the first field group's " -"options will be used (the one with the lowest order number)" -msgstr "" -"Se vários grupos de campos aparecem em uma tela de edição, as opções do " -"primeiro grupo de campos é a que será utilizada (aquele com o menor número " -"de ordem)" - -#: includes/admin/views/acf-field-group/options.php:195 -msgid "Select items to hide them from the edit screen." -msgstr "" -"Selecione os itens que deverão ser ocultados da tela de edição" - -#: includes/admin/views/acf-field-group/options.php:194 -msgid "Hide on screen" -msgstr "Ocultar na tela" - -#: includes/admin/views/acf-field-group/options.php:186 -msgid "Send Trackbacks" -msgstr "Enviar trackbacks" - -#: includes/admin/post-types/admin-taxonomy.php:128 -#: includes/admin/views/acf-field-group/options.php:185 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:159 -#: assets/build/js/acf-internal-post-type.js:180 -#: assets/build/js/acf-internal-post-type.js:254 -msgid "Tags" -msgstr "Tags" - -#: includes/admin/post-types/admin-taxonomy.php:130 -#: includes/admin/views/acf-field-group/options.php:184 -#: assets/build/js/acf-internal-post-type.js:183 -#: assets/build/js/acf-internal-post-type.js:257 -msgid "Categories" -msgstr "Categorias" - -#: includes/admin/views/acf-field-group/options.php:182 -#: includes/admin/views/acf-post-type/advanced-settings.php:28 -msgid "Page Attributes" -msgstr "Atributos da página" - -#: includes/admin/views/acf-field-group/options.php:181 -msgid "Format" -msgstr "Formato" - -#: includes/admin/views/acf-field-group/options.php:180 -#: includes/admin/views/acf-post-type/advanced-settings.php:22 -msgid "Author" -msgstr "Autor" - -#: includes/admin/views/acf-field-group/options.php:179 -msgid "Slug" -msgstr "Slug" - -#: includes/admin/views/acf-field-group/options.php:178 -#: includes/admin/views/acf-post-type/advanced-settings.php:27 -msgid "Revisions" -msgstr "Revisões" - -#: includes/acf-wp-functions.php:66 -#: includes/admin/views/acf-field-group/options.php:177 -#: includes/admin/views/acf-post-type/advanced-settings.php:23 -msgid "Comments" -msgstr "Comentários" - -#: includes/admin/views/acf-field-group/options.php:176 -msgid "Discussion" -msgstr "Discussão" - -#: includes/admin/views/acf-field-group/options.php:174 -#: includes/admin/views/acf-post-type/advanced-settings.php:26 -msgid "Excerpt" -msgstr "Resumo" - -#: includes/admin/views/acf-field-group/options.php:173 -msgid "Content Editor" -msgstr "Editor de conteúdo" - -#: includes/admin/views/acf-field-group/options.php:172 -msgid "Permalink" -msgstr "Link permanente" - -#: includes/admin/views/acf-field-group/options.php:250 -msgid "Shown in field group list" -msgstr "Exibido na lista de grupos de campos" - -#: includes/admin/views/acf-field-group/options.php:157 -msgid "Field groups with a lower order will appear first" -msgstr "Grupos de campos com uma menor numeração aparecerão primeiro" - -#: includes/admin/views/acf-field-group/options.php:156 -msgid "Order No." -msgstr "Nº. de ordem" - -#: includes/admin/views/acf-field-group/options.php:147 -msgid "Below fields" -msgstr "Abaixo dos campos" - -#: includes/admin/views/acf-field-group/options.php:146 -msgid "Below labels" -msgstr "Abaixo dos rótulos" - -#: includes/admin/views/acf-field-group/options.php:139 -msgid "Instruction Placement" -msgstr "" - -#: includes/admin/views/acf-field-group/options.php:122 -msgid "Label Placement" -msgstr "" - -#: includes/admin/views/acf-field-group/options.php:110 -msgid "Side" -msgstr "Lateral" - -#: includes/admin/views/acf-field-group/options.php:109 -msgid "Normal (after content)" -msgstr "Normal (depois do conteúdo)" - -#: includes/admin/views/acf-field-group/options.php:108 -msgid "High (after title)" -msgstr "Superior (depois do título)" - -#: includes/admin/views/acf-field-group/options.php:101 -msgid "Position" -msgstr "Posição" - -#: includes/admin/views/acf-field-group/options.php:92 -msgid "Seamless (no metabox)" -msgstr "Integrado (sem metabox)" - -#: includes/admin/views/acf-field-group/options.php:91 -msgid "Standard (WP metabox)" -msgstr "Padrão (metabox do WP)" - -#: includes/admin/views/acf-field-group/options.php:84 -msgid "Style" -msgstr "Estilo" - -#: includes/admin/views/acf-field-group/fields.php:55 -msgid "Type" -msgstr "Tipo" - -#: includes/admin/post-types/admin-field-groups.php:117 -#: includes/admin/post-types/admin-post-types.php:136 -#: includes/admin/post-types/admin-taxonomies.php:136 -#: includes/admin/views/acf-field-group/fields.php:54 -msgid "Key" -msgstr "Chave" - -#. translators: Hidden accessibility text for the positional order number of -#. the field. -#: includes/admin/views/acf-field-group/fields.php:48 -msgid "Order" -msgstr "Ordem" - -#: includes/admin/views/acf-field-group/field.php:322 -msgid "Close Field" -msgstr "Fechar campo" - -#: includes/admin/views/acf-field-group/field.php:253 -msgid "id" -msgstr "id" - -#: includes/admin/views/acf-field-group/field.php:237 -msgid "class" -msgstr "classe" - -#: includes/admin/views/acf-field-group/field.php:279 -msgid "width" -msgstr "largura" - -#: includes/admin/views/acf-field-group/field.php:273 -msgid "Wrapper Attributes" -msgstr "Atributos do invólucro" - -#: includes/admin/views/acf-field-group/field.php:196 -msgid "Required" -msgstr "Obrigatório" - -#: includes/admin/views/acf-field-group/field.php:221 -msgid "Instructions for authors. Shown when submitting data" -msgstr "Instruções para autores. Exibido ao enviar dados" - -#: includes/admin/views/acf-field-group/field.php:220 -msgid "Instructions" -msgstr "Instruções" - -#: includes/admin/views/acf-field-group/field.php:129 -msgid "Field Type" -msgstr "Tipo de campo" - -#: includes/admin/views/acf-field-group/field.php:170 -msgid "Single word, no spaces. Underscores and dashes allowed" -msgstr "" -"Uma única palavra, sem espaços. São permitidos sublinhados (_) e traços (-)." - -#: includes/admin/views/acf-field-group/field.php:169 -msgid "Field Name" -msgstr "Nome do campo" - -#: includes/admin/views/acf-field-group/field.php:157 -msgid "This is the name which will appear on the EDIT page" -msgstr "Este é o nome que aparecerá na página de EDIÇÃO" - -#: includes/admin/views/acf-field-group/field.php:156 -#: includes/admin/views/browse-fields-modal.php:59 -msgid "Field Label" -msgstr "Rótulo do campo" - -#: includes/admin/views/acf-field-group/field.php:81 -msgid "Delete" -msgstr "Excluir" - -#: includes/admin/views/acf-field-group/field.php:81 -msgid "Delete field" -msgstr "Excluir campo" - -#: includes/admin/views/acf-field-group/field.php:79 -msgid "Move" -msgstr "Mover" - -#: includes/admin/views/acf-field-group/field.php:79 -msgid "Move field to another group" -msgstr "Mover campo para outro grupo" - -#: includes/admin/views/acf-field-group/field.php:77 -msgid "Duplicate field" -msgstr "Duplicar campo" - -#: includes/admin/views/acf-field-group/field.php:73 -#: includes/admin/views/acf-field-group/field.php:76 -msgid "Edit field" -msgstr "Editar campo" - -#: includes/admin/views/acf-field-group/field.php:69 -msgid "Drag to reorder" -msgstr "Arraste para reorganizar" - -#: includes/admin/post-types/admin-field-group.php:103 -#: includes/admin/views/acf-field-group/location-group.php:3 -#: assets/build/js/acf-field-group.js:2347 -#: assets/build/js/acf-field-group.js:2763 -msgid "Show this field group if" -msgstr "Mostrar este grupo de campos se" - -#: includes/admin/views/upgrade/upgrade.php:94 -#: includes/ajax/class-acf-ajax-upgrade.php:34 -msgid "No updates available." -msgstr "Nenhuma atualização disponível." - -#: includes/admin/views/upgrade/upgrade.php:33 -msgid "Database upgrade complete. See what's new" -msgstr "" -"Atualização do banco de dados concluída. Ver o que há de " -"novo" - -#: includes/admin/views/upgrade/upgrade.php:30 -msgid "Reading upgrade tasks..." -msgstr "Lendo tarefas de atualização…" - -#: includes/admin/views/upgrade/network.php:165 -#: includes/admin/views/upgrade/upgrade.php:65 -msgid "Upgrade failed." -msgstr "Falha na atualização." - -#: includes/admin/views/upgrade/network.php:162 -msgid "Upgrade complete." -msgstr "Atualização concluída." - -#: includes/admin/views/upgrade/network.php:148 -#: includes/admin/views/upgrade/upgrade.php:31 -msgid "Upgrading data to version %s" -msgstr "Atualizando os dados para a versão %s" - -#: includes/admin/views/upgrade/network.php:121 -#: includes/admin/views/upgrade/notice.php:44 -msgid "" -"It is strongly recommended that you backup your database before proceeding. " -"Are you sure you wish to run the updater now?" -msgstr "" -"É extremamente recomendado que você faça backup de seu banco de dados antes " -"de continuar. Você tem certeza que deseja fazer a atualização agora?" - -#: includes/admin/views/upgrade/network.php:117 -msgid "Please select at least one site to upgrade." -msgstr "Selecione pelo menos um site para atualizar." - -#: includes/admin/views/upgrade/network.php:97 -msgid "" -"Database Upgrade complete. Return to network dashboard" -msgstr "" -"Atualização do banco de dados concluída. Retornar para o " -"painel da rede" - -#: includes/admin/views/upgrade/network.php:80 -msgid "Site is up to date" -msgstr "O site está atualizado" - -#: includes/admin/views/upgrade/network.php:78 -msgid "Site requires database upgrade from %1$s to %2$s" -msgstr "O site requer a atualização do banco de dados de %1$s para %2$s" - -#: includes/admin/views/upgrade/network.php:36 -#: includes/admin/views/upgrade/network.php:47 -msgid "Site" -msgstr "Site" - -#: includes/admin/views/upgrade/network.php:26 -#: includes/admin/views/upgrade/network.php:27 -#: includes/admin/views/upgrade/network.php:96 -msgid "Upgrade Sites" -msgstr "Atualizar sites" - -#: includes/admin/views/upgrade/network.php:26 -msgid "" -"The following sites require a DB upgrade. Check the ones you want to update " -"and then click %s." -msgstr "" -"Os sites a seguir necessitam de uma atualização do banco de dados. Marque " -"aqueles que você deseja atualizar e clique em %s." - -#: includes/admin/views/acf-field-group/conditional-logic.php:171 -#: includes/admin/views/acf-field-group/locations.php:38 -msgid "Add rule group" -msgstr "Adicionar grupo de regras" - -#: includes/admin/views/acf-field-group/locations.php:10 -msgid "" -"Create a set of rules to determine which edit screens will use these " -"advanced custom fields" -msgstr "" -"Crie um conjunto de regras para determinar quais telas de edição usarão " -"esses campos personalizados avançados" - -#: includes/admin/views/acf-field-group/locations.php:9 -msgid "Rules" -msgstr "Regras" - -#: includes/admin/tools/class-acf-admin-tool-export.php:510 -msgid "Copied" -msgstr "Copiado" - -#: includes/admin/tools/class-acf-admin-tool-export.php:486 -msgid "Copy to clipboard" -msgstr "Copiar para a área de transferência" - -#: includes/admin/tools/class-acf-admin-tool-export.php:385 -msgid "" -"Select the items you would like to export and then select your export " -"method. Export As JSON to export to a .json file which you can then import " -"to another ACF installation. Generate PHP to export to PHP code which you " -"can place in your theme." -msgstr "" -"Selecione os itens que deseja exportar e, em seguida, selecione o método de " -"exportação. Exporte como JSON para exportar para um arquivo .json que você " -"pode importar para outra instalação do ACF. Gere PHP para exportar para " -"código PHP que você pode colocar em seu tema." - -#: includes/admin/tools/class-acf-admin-tool-export.php:233 -msgid "Select Field Groups" -msgstr "Selecionar grupos de campos" - -#: includes/admin/tools/class-acf-admin-tool-export.php:96 -#: includes/admin/tools/class-acf-admin-tool-export.php:131 -msgid "No field groups selected" -msgstr "Nenhum grupo de campos selecionado" - -#: includes/admin/tools/class-acf-admin-tool-export.php:39 -#: includes/admin/tools/class-acf-admin-tool-export.php:393 -#: includes/admin/tools/class-acf-admin-tool-export.php:421 -msgid "Generate PHP" -msgstr "Gerar PHP" - -#: includes/admin/tools/class-acf-admin-tool-export.php:35 -msgid "Export Field Groups" -msgstr "Exportar grupos de campos" - -#: includes/admin/tools/class-acf-admin-tool-import.php:177 -msgid "Import file empty" -msgstr "Arquivo de importação vazio" - -#: includes/admin/tools/class-acf-admin-tool-import.php:168 -msgid "Incorrect file type" -msgstr "Tipo de arquivo incorreto" - -#: includes/admin/tools/class-acf-admin-tool-import.php:163 -msgid "Error uploading file. Please try again" -msgstr "Erro ao enviar arquivo. Tente novamente" - -#: includes/admin/tools/class-acf-admin-tool-import.php:50 -msgid "" -"Select the Advanced Custom Fields JSON file you would like to import. When " -"you click the import button below, ACF will import the items in that file." -msgstr "" -"Selecione o arquivo JSON do Advanced Custom Fields que você gostaria de " -"importar. Ao clicar no botão de importação abaixo, o ACF importará os itens " -"desse arquivo." - -#: includes/admin/tools/class-acf-admin-tool-import.php:27 -msgid "Import Field Groups" -msgstr "Importar grupos de campos" - -#: includes/admin/admin-internal-post-type-list.php:401 -msgid "Sync" -msgstr "Sincronizar" - -#: includes/admin/admin-internal-post-type-list.php:858 -msgid "Select %s" -msgstr "Selecionar %s" - -#: includes/admin/admin-internal-post-type-list.php:442 -#: includes/admin/admin-internal-post-type-list.php:474 -#: includes/admin/views/acf-field-group/field.php:77 -msgid "Duplicate" -msgstr "Duplicar" - -#: includes/admin/admin-internal-post-type-list.php:442 -msgid "Duplicate this item" -msgstr "Duplicar este item" - -#: includes/admin/views/acf-post-type/advanced-settings.php:41 -msgid "Supports" -msgstr "Suporta" - -#: includes/admin/admin.php:261 includes/admin/views/browse-fields-modal.php:92 -msgid "Documentation" -msgstr "Dcoumentação" - -#: includes/admin/post-types/admin-field-groups.php:116 -#: includes/admin/post-types/admin-post-types.php:135 -#: includes/admin/post-types/admin-taxonomies.php:135 -#: includes/admin/views/acf-field-group/options.php:249 -#: includes/admin/views/acf-post-type/advanced-settings.php:62 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:114 -#: includes/admin/views/upgrade/network.php:38 -#: includes/admin/views/upgrade/network.php:49 -msgid "Description" -msgstr "Descrição" - -#: includes/admin/admin-internal-post-type-list.php:398 -#: includes/admin/admin-internal-post-type-list.php:747 -msgid "Sync available" -msgstr "Sincronização disponível" - -#. translators: %s number of field groups synchronized -#: includes/admin/post-types/admin-field-groups.php:381 -msgid "Field group synchronized." -msgid_plural "%s field groups synchronized." -msgstr[0] "Grupo de campos sincronizado." -msgstr[1] "%s grupos de campos sincronizados." - -#. translators: %s number of field groups duplicated -#: includes/admin/post-types/admin-field-groups.php:374 -msgid "Field group duplicated." -msgid_plural "%s field groups duplicated." -msgstr[0] "Grupo de campos duplicado." -msgstr[1] "%s grupos de campos duplicados." - -#: includes/admin/admin-internal-post-type-list.php:137 -msgid "Active (%s)" -msgid_plural "Active (%s)" -msgstr[0] "Ativo (%s)" -msgstr[1] "Ativos (%s)" - -#: includes/admin/admin-upgrade.php:254 -msgid "Review sites & upgrade" -msgstr "Revisar sites e atualizar" - -#: includes/admin/admin-upgrade.php:59 includes/admin/admin-upgrade.php:93 -#: includes/admin/admin-upgrade.php:94 includes/admin/admin-upgrade.php:230 -#: includes/admin/views/upgrade/network.php:24 -#: includes/admin/views/upgrade/upgrade.php:26 -msgid "Upgrade Database" -msgstr "Atualizar o banco de dados" - -#: includes/admin/views/acf-field-group/options.php:175 -#: includes/admin/views/acf-post-type/advanced-settings.php:30 -msgid "Custom Fields" -msgstr "Campos personalizados" - -#: includes/admin/post-types/admin-field-group.php:616 -msgid "Move Field" -msgstr "Mover campo" - -#: includes/admin/post-types/admin-field-group.php:605 -#: includes/admin/post-types/admin-field-group.php:609 -msgid "Please select the destination for this field" -msgstr "Selecione o destino para este campo" - -#. translators: Confirmation message once a field has been moved to a different -#. field group. -#: includes/admin/post-types/admin-field-group.php:567 -msgid "The %1$s field can now be found in the %2$s field group" -msgstr "O campo %1$s pode agora ser encontrado no grupo de campos %2$s" - -#: includes/admin/post-types/admin-field-group.php:564 -msgid "Move Complete." -msgstr "Movimentação concluída." - -#: includes/admin/views/acf-field-group/field.php:39 -#: includes/admin/views/acf-field-group/options.php:217 -#: includes/admin/views/acf-post-type/advanced-settings.php:78 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:130 -msgid "Active" -msgstr "Ativo" - -#: includes/admin/post-types/admin-field-group.php:266 -msgid "Field Keys" -msgstr "Chaves de campos" - -#: includes/admin/post-types/admin-field-group.php:164 -#: includes/admin/tools/class-acf-admin-tool-export.php:342 -msgid "Settings" -msgstr "Configurações " - -#: includes/admin/post-types/admin-field-groups.php:118 -msgid "Location" -msgstr "Localização" - -#: includes/admin/post-types/admin-field-group.php:104 -#: assets/build/js/acf-input.js:983 assets/build/js/acf-input.js:1075 -msgid "Null" -msgstr "Em branco" - -#: includes/admin/post-types/admin-field-group.php:101 -#: includes/class-acf-internal-post-type.php:730 -#: includes/post-types/class-acf-field-group.php:345 -#: assets/build/js/acf-field-group.js:1510 -#: assets/build/js/acf-field-group.js:1821 -msgid "copy" -msgstr "copiar" - -#: includes/admin/post-types/admin-field-group.php:100 -#: assets/build/js/acf-field-group.js:623 -#: assets/build/js/acf-field-group.js:778 -msgid "(this field)" -msgstr "(este campo)" - -#: includes/admin/post-types/admin-field-group.php:98 -#: assets/build/js/acf-input.js:918 assets/build/js/acf-input.js:943 -#: assets/build/js/acf-input.js:1002 assets/build/js/acf-input.js:1030 -msgid "Checked" -msgstr "Marcado" - -#: includes/admin/post-types/admin-field-group.php:94 -#: assets/build/js/acf-field-group.js:1615 -#: assets/build/js/acf-field-group.js:1933 -msgid "Move Custom Field" -msgstr "Mover campo personalizado" - -#: includes/admin/post-types/admin-field-group.php:93 -#: assets/build/js/acf-field-group.js:649 -#: assets/build/js/acf-field-group.js:804 -msgid "No toggle fields available" -msgstr "Nenhum campo de alternância disponível" - -#: includes/admin/post-types/admin-field-group.php:91 -msgid "Field group title is required" -msgstr "O título do grupo de campos é obrigatório" - -#: includes/admin/post-types/admin-field-group.php:90 -#: assets/build/js/acf-field-group.js:1604 -#: assets/build/js/acf-field-group.js:1919 -msgid "This field cannot be moved until its changes have been saved" -msgstr "Este campo não pode ser movido até que suas alterações sejam salvas" - -#: includes/admin/post-types/admin-field-group.php:89 -#: assets/build/js/acf-field-group.js:1414 -#: assets/build/js/acf-field-group.js:1716 -msgid "The string \"field_\" may not be used at the start of a field name" -msgstr "O termo “field_” não pode ser utilizado no início do nome de um campo" - -#: includes/admin/post-types/admin-field-group.php:71 -msgid "Field group draft updated." -msgstr "Rascunho de grupo de campos atualizado." - -#: includes/admin/post-types/admin-field-group.php:70 -msgid "Field group scheduled for." -msgstr "Grupo de campos agendando." - -#: includes/admin/post-types/admin-field-group.php:69 -msgid "Field group submitted." -msgstr "Grupo de campos enviado." - -#: includes/admin/post-types/admin-field-group.php:68 -msgid "Field group saved." -msgstr "Grupo de campos salvo." - -#: includes/admin/post-types/admin-field-group.php:67 -msgid "Field group published." -msgstr "Grupo de campos publicado." - -#: includes/admin/post-types/admin-field-group.php:64 -msgid "Field group deleted." -msgstr "Grupo de campos excluído." - -#: includes/admin/post-types/admin-field-group.php:62 -#: includes/admin/post-types/admin-field-group.php:63 -#: includes/admin/post-types/admin-field-group.php:65 -msgid "Field group updated." -msgstr "Grupo de campos atualizado." - -#: includes/admin/admin-tools.php:118 -#: includes/admin/views/global/navigation.php:246 -#: includes/admin/views/tools/tools.php:21 -msgid "Tools" -msgstr "Ferramentas" - -#: includes/locations/abstract-acf-location.php:106 -msgid "is not equal to" -msgstr "não é igual a" - -#: includes/locations/abstract-acf-location.php:105 -msgid "is equal to" -msgstr "é igual a" - -#: includes/locations.php:102 -msgid "Forms" -msgstr "Formulários" - -#: includes/admin/post-types/admin-post-type.php:127 includes/locations.php:100 -#: includes/locations/class-acf-location-page.php:22 -#: assets/build/js/acf-internal-post-type.js:175 -#: assets/build/js/acf-internal-post-type.js:249 -msgid "Page" -msgstr "Página" - -#: includes/admin/post-types/admin-post-type.php:125 includes/locations.php:99 -#: includes/locations/class-acf-location-post.php:22 -#: assets/build/js/acf-internal-post-type.js:172 -#: assets/build/js/acf-internal-post-type.js:246 -msgid "Post" -msgstr "Post" - -#: includes/fields.php:354 -msgid "Relational" -msgstr "Relacional" - -#: includes/fields.php:353 -msgid "Choice" -msgstr "Escolha" - -#: includes/fields.php:351 -msgid "Basic" -msgstr "Básico" - -#: includes/fields.php:320 -msgid "Unknown" -msgstr "Desconhecido" - -#: includes/fields.php:320 -msgid "Field type does not exist" -msgstr "Tipo de campo não existe" - -#: includes/forms/form-front.php:236 -msgid "Spam Detected" -msgstr "Spam detectado" - -#: includes/forms/form-front.php:107 -msgid "Post updated" -msgstr "Post atualizado" - -#: includes/forms/form-front.php:106 -msgid "Update" -msgstr "Atualizar" - -#: includes/forms/form-front.php:57 -msgid "Validate Email" -msgstr "Validar e-mail" - -#: includes/fields.php:352 includes/forms/form-front.php:49 -msgid "Content" -msgstr "Conteúdo" - -#: includes/admin/views/acf-post-type/advanced-settings.php:21 -#: includes/forms/form-front.php:40 -msgid "Title" -msgstr "Título" - -#: includes/assets.php:372 includes/forms/form-comment.php:160 -#: assets/build/js/acf-input.js:7382 assets/build/js/acf-input.js:7968 -msgid "Edit field group" -msgstr "Editar grupo de campos" - -#: includes/admin/post-types/admin-field-group.php:117 -#: assets/build/js/acf-input.js:1125 assets/build/js/acf-input.js:1230 -msgid "Selection is less than" -msgstr "A seleção é menor que" - -#: includes/admin/post-types/admin-field-group.php:116 -#: assets/build/js/acf-input.js:1106 assets/build/js/acf-input.js:1202 -msgid "Selection is greater than" -msgstr "A seleção é maior que" - -#: includes/admin/post-types/admin-field-group.php:115 -#: assets/build/js/acf-input.js:1075 assets/build/js/acf-input.js:1170 -msgid "Value is less than" -msgstr "O valor é menor que" - -#: includes/admin/post-types/admin-field-group.php:114 -#: assets/build/js/acf-input.js:1045 assets/build/js/acf-input.js:1139 -msgid "Value is greater than" -msgstr "O valor é maior que" - -#: includes/admin/post-types/admin-field-group.php:113 -#: assets/build/js/acf-input.js:888 assets/build/js/acf-input.js:960 -msgid "Value contains" -msgstr "O valor contém" - -#: includes/admin/post-types/admin-field-group.php:112 -#: assets/build/js/acf-input.js:862 assets/build/js/acf-input.js:926 -msgid "Value matches pattern" -msgstr "O valor corresponde ao padrão" - -#: includes/admin/post-types/admin-field-group.php:111 -#: assets/build/js/acf-input.js:840 assets/build/js/acf-input.js:1023 -#: assets/build/js/acf-input.js:903 assets/build/js/acf-input.js:1116 -msgid "Value is not equal to" -msgstr "O valor é diferente de" - -#: includes/admin/post-types/admin-field-group.php:110 -#: assets/build/js/acf-input.js:810 assets/build/js/acf-input.js:964 -#: assets/build/js/acf-input.js:864 assets/build/js/acf-input.js:1053 -msgid "Value is equal to" -msgstr "O valor é igual a" - -#: includes/admin/post-types/admin-field-group.php:109 -#: assets/build/js/acf-input.js:788 assets/build/js/acf-input.js:841 -msgid "Has no value" -msgstr "Não tem valor" - -#: includes/admin/post-types/admin-field-group.php:108 -#: assets/build/js/acf-input.js:758 assets/build/js/acf-input.js:783 -msgid "Has any value" -msgstr "Tem qualquer valor" - -#: includes/admin/admin-internal-post-type.php:345 -#: includes/admin/views/browse-fields-modal.php:62 includes/assets.php:353 -#: assets/build/js/acf.js:1564 assets/build/js/acf.js:1658 -msgid "Cancel" -msgstr "Cancelar" - -#: includes/assets.php:349 assets/build/js/acf.js:1738 -#: assets/build/js/acf.js:1855 -msgid "Are you sure?" -msgstr "Você tem certeza?" - -#: includes/assets.php:369 assets/build/js/acf-input.js:9442 -#: assets/build/js/acf-input.js:10294 -msgid "%d fields require attention" -msgstr "%d campos requerem atenção" - -#: includes/assets.php:368 assets/build/js/acf-input.js:9440 -#: assets/build/js/acf-input.js:10290 -msgid "1 field requires attention" -msgstr "1 campo requer atenção" - -#: includes/assets.php:367 includes/validation.php:288 -#: includes/validation.php:298 assets/build/js/acf-input.js:9435 -#: assets/build/js/acf-input.js:10285 -msgid "Validation failed" -msgstr "Falha na validação" - -#: includes/assets.php:366 assets/build/js/acf-input.js:9603 -#: assets/build/js/acf-input.js:10473 -msgid "Validation successful" -msgstr "Validação bem-sucedida" - -#: includes/media.php:54 assets/build/js/acf-input.js:7210 -#: assets/build/js/acf-input.js:7772 -msgid "Restricted" -msgstr "Restrito" - -#: includes/media.php:53 assets/build/js/acf-input.js:7025 -#: assets/build/js/acf-input.js:7536 -msgid "Collapse Details" -msgstr "Recolher detalhes" - -#: includes/media.php:52 assets/build/js/acf-input.js:7025 -#: assets/build/js/acf-input.js:7533 -msgid "Expand Details" -msgstr "Expandir detalhes" - -#: includes/admin/views/acf-post-type/advanced-settings.php:465 -#: includes/media.php:51 assets/build/js/acf-input.js:6892 -#: assets/build/js/acf-input.js:7381 -msgid "Uploaded to this post" -msgstr "Enviado para este post" - -#: includes/media.php:50 assets/build/js/acf-input.js:6931 -#: assets/build/js/acf-input.js:7420 -msgctxt "verb" -msgid "Update" -msgstr "Atualizar" - -#: includes/media.php:49 -msgctxt "verb" -msgid "Edit" -msgstr "Editar" - -#: includes/assets.php:363 assets/build/js/acf-input.js:9212 -#: assets/build/js/acf-input.js:10056 -msgid "The changes you made will be lost if you navigate away from this page" -msgstr "As alterações feitas serão perdidas se você sair desta página" - -#: includes/api/api-helpers.php:3395 -msgid "File type must be %s." -msgstr "O tipo de arquivo deve ser %s." - -#: includes/admin/post-types/admin-field-group.php:102 -#: includes/admin/views/acf-field-group/conditional-logic.php:59 -#: includes/admin/views/acf-field-group/conditional-logic.php:169 -#: includes/admin/views/acf-field-group/location-group.php:3 -#: includes/admin/views/acf-field-group/locations.php:36 -#: includes/api/api-helpers.php:3391 assets/build/js/acf-field-group.js:771 -#: assets/build/js/acf-field-group.js:2385 -#: assets/build/js/acf-field-group.js:933 -#: assets/build/js/acf-field-group.js:2807 -msgid "or" -msgstr "ou" - -#: includes/api/api-helpers.php:3364 -msgid "File size must not exceed %s." -msgstr "O tamanho do arquivo não deve exceder %s." - -#: includes/api/api-helpers.php:3359 -msgid "File size must be at least %s." -msgstr "O tamanho do arquivo deve ter pelo menos %s." - -#: includes/api/api-helpers.php:3344 -msgid "Image height must not exceed %dpx." -msgstr "A altura da imagem não pode ser maior que %dpx." - -#: includes/api/api-helpers.php:3339 -msgid "Image height must be at least %dpx." -msgstr "A altura da imagem deve ter pelo menos %dpx." - -#: includes/api/api-helpers.php:3325 -msgid "Image width must not exceed %dpx." -msgstr "A largura da imagem não pode ser maior que %dpx." - -#: includes/api/api-helpers.php:3320 -msgid "Image width must be at least %dpx." -msgstr "A largura da imagem deve ter pelo menos %dpx." - -#: includes/api/api-helpers.php:1561 includes/api/api-term.php:147 -msgid "(no title)" -msgstr "(sem título)" - -#: includes/api/api-helpers.php:853 -msgid "Full Size" -msgstr "Tamanho original" - -#: includes/api/api-helpers.php:812 -msgid "Large" -msgstr "Grande" - -#: includes/api/api-helpers.php:811 -msgid "Medium" -msgstr "Médio" - -#: includes/api/api-helpers.php:810 -msgid "Thumbnail" -msgstr "Miniatura" - -#: includes/acf-field-functions.php:854 -#: includes/admin/post-types/admin-field-group.php:99 -#: assets/build/js/acf-field-group.js:1077 -#: assets/build/js/acf-field-group.js:1260 -msgid "(no label)" -msgstr "(sem rótulo)" - -#: includes/fields/class-acf-field-textarea.php:145 -msgid "Sets the textarea height" -msgstr "Define a altura da área de texto" - -#: includes/fields/class-acf-field-textarea.php:144 -msgid "Rows" -msgstr "Linhas" - -#: includes/fields/class-acf-field-textarea.php:25 -msgid "Text Area" -msgstr "Área de texto" - -#: includes/fields/class-acf-field-checkbox.php:451 -msgid "Prepend an extra checkbox to toggle all choices" -msgstr "Anexar uma caixa de seleção adicional para alternar todas as escolhas" - -#: includes/fields/class-acf-field-checkbox.php:413 -msgid "Save 'custom' values to the field's choices" -msgstr "Salvar valores \"personalizados\" nas escolhas do campo" - -#: includes/fields/class-acf-field-checkbox.php:402 -msgid "Allow 'custom' values to be added" -msgstr "Permite adicionar valores personalizados" - -#: includes/fields/class-acf-field-checkbox.php:38 -msgid "Add new choice" -msgstr "Adicionar nova escolha" - -#: includes/fields/class-acf-field-checkbox.php:174 -msgid "Toggle All" -msgstr "Selecionar tudo" - -#: includes/fields/class-acf-field-page_link.php:506 -msgid "Allow Archives URLs" -msgstr "Permitir URLs de arquivos" - -#: includes/fields/class-acf-field-page_link.php:179 -msgid "Archives" -msgstr "Arquivos" - -#: includes/fields/class-acf-field-page_link.php:25 -msgid "Page Link" -msgstr "Link da página" - -#: includes/fields/class-acf-field-taxonomy.php:943 -#: includes/locations/class-acf-location-user-form.php:72 -msgid "Add" -msgstr "Adicionar" - -#: includes/admin/views/acf-field-group/fields.php:53 -#: includes/fields/class-acf-field-taxonomy.php:908 -msgid "Name" -msgstr "Nome" - -#: includes/fields/class-acf-field-taxonomy.php:892 -msgid "%s added" -msgstr "%s adicionado(a)" - -#: includes/fields/class-acf-field-taxonomy.php:856 -msgid "%s already exists" -msgstr "%s já existe" - -#: includes/fields/class-acf-field-taxonomy.php:844 -msgid "User unable to add new %s" -msgstr "O usuário não pode adicionar um novo %s" - -#: includes/fields/class-acf-field-taxonomy.php:742 -msgid "Term ID" -msgstr "ID do termo" - -#: includes/fields/class-acf-field-taxonomy.php:741 -msgid "Term Object" -msgstr "Objeto de termo" - -#: includes/fields/class-acf-field-taxonomy.php:726 -msgid "Load value from posts terms" -msgstr "Carrega valores a partir de termos de posts" - -#: includes/fields/class-acf-field-taxonomy.php:725 -msgid "Load Terms" -msgstr "Carregar termos" - -#: includes/fields/class-acf-field-taxonomy.php:715 -msgid "Connect selected terms to the post" -msgstr "Conecta os termos selecionados ao post" - -#: includes/fields/class-acf-field-taxonomy.php:714 -msgid "Save Terms" -msgstr "Salvar termos" - -#: includes/fields/class-acf-field-taxonomy.php:704 -msgid "Allow new terms to be created whilst editing" -msgstr "Permitir que novos termos sejam criados durante a edição" - -#: includes/fields/class-acf-field-taxonomy.php:703 -msgid "Create Terms" -msgstr "Criar termos" - -#: includes/fields/class-acf-field-taxonomy.php:762 -msgid "Radio Buttons" -msgstr "Botões de opção" - -#: includes/fields/class-acf-field-taxonomy.php:761 -msgid "Single Value" -msgstr "Um único valor" - -#: includes/fields/class-acf-field-taxonomy.php:759 -msgid "Multi Select" -msgstr "Seleção múltipla" - -#: includes/fields/class-acf-field-checkbox.php:25 -#: includes/fields/class-acf-field-taxonomy.php:758 -msgid "Checkbox" -msgstr "Caixa de seleção" - -#: includes/fields/class-acf-field-taxonomy.php:757 -msgid "Multiple Values" -msgstr "Múltiplos valores" - -#: includes/fields/class-acf-field-taxonomy.php:752 -msgid "Select the appearance of this field" -msgstr "Selecione a aparência deste campo" - -#: includes/fields/class-acf-field-taxonomy.php:751 -msgid "Appearance" -msgstr "Aparência" - -#: includes/fields/class-acf-field-taxonomy.php:693 -msgid "Select the taxonomy to be displayed" -msgstr "Selecione a taxonomia que será exibida" - -#: includes/fields/class-acf-field-taxonomy.php:654 -msgctxt "No Terms" -msgid "No %s" -msgstr "Sem %s" - -#: includes/fields/class-acf-field-number.php:266 -msgid "Value must be equal to or lower than %d" -msgstr "O valor deve ser igual ou menor que %d" - -#: includes/fields/class-acf-field-number.php:259 -msgid "Value must be equal to or higher than %d" -msgstr "O valor deve ser igual ou maior que %d" - -#: includes/fields/class-acf-field-number.php:244 -msgid "Value must be a number" -msgstr "O valor deve ser um número" - -#: includes/fields/class-acf-field-number.php:25 -msgid "Number" -msgstr "Número" - -#: includes/fields/class-acf-field-radio.php:264 -msgid "Save 'other' values to the field's choices" -msgstr "Salvar valores de \"outros\" nas escolhas do campo" - -#: includes/fields/class-acf-field-radio.php:253 -msgid "Add 'other' choice to allow for custom values" -msgstr "Adicionar escolha de \"outros\" para permitir valores personalizados" - -#: includes/admin/views/global/navigation.php:196 -msgid "Other" -msgstr "" - -#: includes/fields/class-acf-field-radio.php:25 -msgid "Radio Button" -msgstr "Botão de opção" - -#: includes/fields/class-acf-field-accordion.php:107 -msgid "" -"Define an endpoint for the previous accordion to stop. This accordion will " -"not be visible." -msgstr "" -"Defina um endpoint para a sanfona anterior parar. Esta sanfona não será " -"visível." - -#: includes/fields/class-acf-field-accordion.php:96 -msgid "Allow this accordion to open without closing others." -msgstr "Permitir abrir este item sem fechar os demais." - -#: includes/fields/class-acf-field-accordion.php:95 -msgid "Multi-Expand" -msgstr "" - -#: includes/fields/class-acf-field-accordion.php:85 -msgid "Display this accordion as open on page load." -msgstr "Exibir esta sanfona como aberta ao carregar a página." - -#: includes/fields/class-acf-field-accordion.php:84 -msgid "Open" -msgstr "Aberta" - -#: includes/fields/class-acf-field-accordion.php:25 -msgid "Accordion" -msgstr "Sanfona" - -#: includes/fields/class-acf-field-file.php:267 -#: includes/fields/class-acf-field-file.php:279 -msgid "Restrict which files can be uploaded" -msgstr "Limita quais arquivos podem ser enviados" - -#: includes/fields/class-acf-field-file.php:220 -msgid "File ID" -msgstr "ID do arquivo" - -#: includes/fields/class-acf-field-file.php:219 -msgid "File URL" -msgstr "URL do Arquivo" - -#: includes/fields/class-acf-field-file.php:218 -msgid "File Array" -msgstr "Array do arquivo" - -#: includes/fields/class-acf-field-file.php:186 -msgid "Add File" -msgstr "Adicionar arquivo" - -#: includes/admin/tools/class-acf-admin-tool-import.php:156 -#: includes/fields/class-acf-field-file.php:186 -msgid "No file selected" -msgstr "Nenhum arquivo selecionado" - -#: includes/fields/class-acf-field-file.php:150 -msgid "File name" -msgstr "Nome do arquivo" - -#: includes/fields/class-acf-field-file.php:63 -#: assets/build/js/acf-input.js:2474 assets/build/js/acf-input.js:2625 -msgid "Update File" -msgstr "Atualizar arquivo" - -#: includes/fields/class-acf-field-file.php:62 -#: assets/build/js/acf-input.js:2473 assets/build/js/acf-input.js:2624 -msgid "Edit File" -msgstr "Editar arquivo" - -#: includes/admin/tools/class-acf-admin-tool-import.php:58 -#: includes/fields/class-acf-field-file.php:61 -#: assets/build/js/acf-input.js:2447 assets/build/js/acf-input.js:2597 -msgid "Select File" -msgstr "Selecionar arquivo" - -#: includes/fields/class-acf-field-file.php:25 -msgid "File" -msgstr "Arquivo" - -#: includes/fields/class-acf-field-password.php:25 -msgid "Password" -msgstr "Senha" - -#: includes/fields/class-acf-field-select.php:392 -msgid "Specify the value returned" -msgstr "Especifica o valor devolvido." - -#: includes/fields/class-acf-field-select.php:461 -msgid "Use AJAX to lazy load choices?" -msgstr "Usar AJAX para carregar escolhas de forma atrasada?" - -#: includes/fields/class-acf-field-checkbox.php:362 -#: includes/fields/class-acf-field-select.php:381 -msgid "Enter each default value on a new line" -msgstr "Digite cada valor padrão em uma nova linha" - -#: includes/fields/class-acf-field-select.php:252 includes/media.php:48 -#: assets/build/js/acf-input.js:6790 assets/build/js/acf-input.js:7266 -msgctxt "verb" -msgid "Select" -msgstr "Selecionar" - -#: includes/fields/class-acf-field-select.php:121 -msgctxt "Select2 JS load_fail" -msgid "Loading failed" -msgstr "Falha ao carregar" - -#: includes/fields/class-acf-field-select.php:120 -msgctxt "Select2 JS searching" -msgid "Searching…" -msgstr "Pesquisando…" - -#: includes/fields/class-acf-field-select.php:119 -msgctxt "Select2 JS load_more" -msgid "Loading more results…" -msgstr "Carregando mais resultados…" - -#: includes/fields/class-acf-field-select.php:118 -msgctxt "Select2 JS selection_too_long_n" -msgid "You can only select %d items" -msgstr "Você só pode selecionar %d itens" - -#: includes/fields/class-acf-field-select.php:117 -msgctxt "Select2 JS selection_too_long_1" -msgid "You can only select 1 item" -msgstr "Você só pode selecionar 1 item" - -#: includes/fields/class-acf-field-select.php:116 -msgctxt "Select2 JS input_too_long_n" -msgid "Please delete %d characters" -msgstr "Exclua %d caracteres" - -#: includes/fields/class-acf-field-select.php:115 -msgctxt "Select2 JS input_too_long_1" -msgid "Please delete 1 character" -msgstr "Exclua 1 caractere" - -#: includes/fields/class-acf-field-select.php:114 -msgctxt "Select2 JS input_too_short_n" -msgid "Please enter %d or more characters" -msgstr "Digite %d ou mais caracteres" - -#: includes/fields/class-acf-field-select.php:113 -msgctxt "Select2 JS input_too_short_1" -msgid "Please enter 1 or more characters" -msgstr "Digite 1 ou mais caracteres" - -#: includes/fields/class-acf-field-select.php:112 -msgctxt "Select2 JS matches_0" -msgid "No matches found" -msgstr "Não foi possível encontrar correspondências" - -#: includes/fields/class-acf-field-select.php:111 -msgctxt "Select2 JS matches_n" -msgid "%d results are available, use up and down arrow keys to navigate." -msgstr "" -"%d resultados disponíveis, use as setas para cima ou baixo para navegar." - -#: includes/fields/class-acf-field-select.php:110 -msgctxt "Select2 JS matches_1" -msgid "One result is available, press enter to select it." -msgstr "Um resultado disponível, aperte Enter para selecioná-lo." - -#: includes/fields/class-acf-field-select.php:25 -#: includes/fields/class-acf-field-taxonomy.php:763 -msgctxt "noun" -msgid "Select" -msgstr "Seleção" - -#: includes/fields/class-acf-field-user.php:73 -msgid "User ID" -msgstr "ID do usuário" - -#: includes/fields/class-acf-field-user.php:72 -msgid "User Object" -msgstr "Objeto de usuário" - -#: includes/fields/class-acf-field-user.php:71 -msgid "User Array" -msgstr "Array do usuário" - -#: includes/fields/class-acf-field-user.php:59 -msgid "All user roles" -msgstr "Todas as funções de usuário" - -#: includes/fields/class-acf-field-user.php:51 -msgid "Filter by Role" -msgstr "" - -#: includes/fields/class-acf-field-user.php:15 includes/locations.php:101 -msgid "User" -msgstr "Usuário" - -#: includes/fields/class-acf-field-separator.php:25 -msgid "Separator" -msgstr "Separador" - -#: includes/fields/class-acf-field-color_picker.php:75 -msgid "Select Color" -msgstr "Selecionar cor" - -#: includes/admin/post-types/admin-post-type.php:129 -#: includes/admin/post-types/admin-taxonomy.php:131 -#: includes/fields/class-acf-field-color_picker.php:73 -#: assets/build/js/acf-internal-post-type.js:72 -#: assets/build/js/acf-internal-post-type.js:86 -msgid "Default" -msgstr "Padrão" - -#: includes/admin/views/acf-post-type/advanced-settings.php:89 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:141 -#: includes/fields/class-acf-field-color_picker.php:71 -msgid "Clear" -msgstr "Limpar" - -#: includes/fields/class-acf-field-color_picker.php:25 -msgid "Color Picker" -msgstr "Seletor de cor" - -#: includes/fields/class-acf-field-date_time_picker.php:88 -msgctxt "Date Time Picker JS pmTextShort" -msgid "P" -msgstr "P" - -#: includes/fields/class-acf-field-date_time_picker.php:87 -msgctxt "Date Time Picker JS pmText" -msgid "PM" -msgstr "PM" - -#: includes/fields/class-acf-field-date_time_picker.php:84 -msgctxt "Date Time Picker JS amTextShort" -msgid "A" -msgstr "A" - -#: includes/fields/class-acf-field-date_time_picker.php:83 -msgctxt "Date Time Picker JS amText" -msgid "AM" -msgstr "AM" - -#: includes/fields/class-acf-field-date_time_picker.php:81 -msgctxt "Date Time Picker JS selectText" -msgid "Select" -msgstr "Selecionar" - -#: includes/fields/class-acf-field-date_time_picker.php:80 -msgctxt "Date Time Picker JS closeText" -msgid "Done" -msgstr "Concluído" - -#: includes/fields/class-acf-field-date_time_picker.php:79 -msgctxt "Date Time Picker JS currentText" -msgid "Now" -msgstr "Agora" - -#: includes/fields/class-acf-field-date_time_picker.php:78 -msgctxt "Date Time Picker JS timezoneText" -msgid "Time Zone" -msgstr "Fuso horário" - -#: includes/fields/class-acf-field-date_time_picker.php:77 -msgctxt "Date Time Picker JS microsecText" -msgid "Microsecond" -msgstr "Microssegundo" - -#: includes/fields/class-acf-field-date_time_picker.php:76 -msgctxt "Date Time Picker JS millisecText" -msgid "Millisecond" -msgstr "Milissegundo" - -#: includes/fields/class-acf-field-date_time_picker.php:75 -msgctxt "Date Time Picker JS secondText" -msgid "Second" -msgstr "Segundo" - -#: includes/fields/class-acf-field-date_time_picker.php:74 -msgctxt "Date Time Picker JS minuteText" -msgid "Minute" -msgstr "Minuto" - -#: includes/fields/class-acf-field-date_time_picker.php:73 -msgctxt "Date Time Picker JS hourText" -msgid "Hour" -msgstr "Hora" - -#: includes/fields/class-acf-field-date_time_picker.php:72 -msgctxt "Date Time Picker JS timeText" -msgid "Time" -msgstr "Horário" - -#: includes/fields/class-acf-field-date_time_picker.php:71 -msgctxt "Date Time Picker JS timeOnlyTitle" -msgid "Choose Time" -msgstr "Selecione o horário" - -#: includes/fields/class-acf-field-date_time_picker.php:25 -msgid "Date Time Picker" -msgstr "Seletor de data e horário" - -#: includes/fields/class-acf-field-accordion.php:106 -msgid "Endpoint" -msgstr "Endpoint" - -#: includes/admin/views/acf-field-group/options.php:130 -#: includes/fields/class-acf-field-tab.php:115 -msgid "Left aligned" -msgstr "Alinhado à esquerda" - -#: includes/admin/views/acf-field-group/options.php:129 -#: includes/fields/class-acf-field-tab.php:114 -msgid "Top aligned" -msgstr "Alinhado ao topo" - -#: includes/fields/class-acf-field-tab.php:110 -msgid "Placement" -msgstr "Posição" - -#: includes/fields/class-acf-field-tab.php:26 -msgid "Tab" -msgstr "Aba" - -#: includes/fields/class-acf-field-url.php:162 -msgid "Value must be a valid URL" -msgstr "O valor deve ser um URL válido" - -#: includes/fields/class-acf-field-link.php:177 -msgid "Link URL" -msgstr "URL do link" - -#: includes/fields/class-acf-field-link.php:176 -msgid "Link Array" -msgstr "Array do link" - -#: includes/fields/class-acf-field-link.php:145 -msgid "Opens in a new window/tab" -msgstr "Abre em uma nova janela/aba" - -#: includes/fields/class-acf-field-link.php:140 -msgid "Select Link" -msgstr "Selecionar link" - -#: includes/fields/class-acf-field-link.php:25 -msgid "Link" -msgstr "Link" - -#: includes/fields/class-acf-field-email.php:25 -msgid "Email" -msgstr "E-mail" - -#: includes/fields/class-acf-field-number.php:188 -#: includes/fields/class-acf-field-range.php:217 -msgid "Step Size" -msgstr "Tamanho da escala" - -#: includes/fields/class-acf-field-number.php:158 -#: includes/fields/class-acf-field-range.php:195 -msgid "Maximum Value" -msgstr "Valor máximo" - -#: includes/fields/class-acf-field-number.php:148 -#: includes/fields/class-acf-field-range.php:184 -msgid "Minimum Value" -msgstr "Valor mínimo" - -#: includes/fields/class-acf-field-range.php:25 -msgid "Range" -msgstr "Intervalo" - -#: includes/fields/class-acf-field-button-group.php:175 -#: includes/fields/class-acf-field-checkbox.php:379 -#: includes/fields/class-acf-field-radio.php:220 -#: includes/fields/class-acf-field-select.php:399 -msgid "Both (Array)" -msgstr "Ambos (Array)" - -#: includes/admin/views/acf-field-group/fields.php:52 -#: includes/fields/class-acf-field-button-group.php:174 -#: includes/fields/class-acf-field-checkbox.php:378 -#: includes/fields/class-acf-field-radio.php:219 -#: includes/fields/class-acf-field-select.php:398 -msgid "Label" -msgstr "Rótulo" - -#: includes/fields/class-acf-field-button-group.php:173 -#: includes/fields/class-acf-field-checkbox.php:377 -#: includes/fields/class-acf-field-radio.php:218 -#: includes/fields/class-acf-field-select.php:397 -msgid "Value" -msgstr "Valor" - -#: includes/fields/class-acf-field-button-group.php:222 -#: includes/fields/class-acf-field-checkbox.php:441 -#: includes/fields/class-acf-field-radio.php:292 -msgid "Vertical" -msgstr "Vertical" - -#: includes/fields/class-acf-field-button-group.php:221 -#: includes/fields/class-acf-field-checkbox.php:442 -#: includes/fields/class-acf-field-radio.php:293 -msgid "Horizontal" -msgstr "Horizontal" - -#: includes/fields/class-acf-field-button-group.php:148 -#: includes/fields/class-acf-field-checkbox.php:352 -#: includes/fields/class-acf-field-radio.php:193 -#: includes/fields/class-acf-field-select.php:370 -msgid "red : Red" -msgstr "vermelho : Vermelho" - -#: includes/fields/class-acf-field-button-group.php:148 -#: includes/fields/class-acf-field-checkbox.php:352 -#: includes/fields/class-acf-field-radio.php:193 -#: includes/fields/class-acf-field-select.php:370 -msgid "For more control, you may specify both a value and label like this:" -msgstr "" -"Para mais controle, você pode especificar tanto os valores quanto os " -"rótulos, como nos exemplos:" - -#: includes/fields/class-acf-field-button-group.php:148 -#: includes/fields/class-acf-field-checkbox.php:352 -#: includes/fields/class-acf-field-radio.php:193 -#: includes/fields/class-acf-field-select.php:370 -msgid "Enter each choice on a new line." -msgstr "Digite cada escolha em uma nova linha." - -#: includes/fields/class-acf-field-button-group.php:147 -#: includes/fields/class-acf-field-checkbox.php:351 -#: includes/fields/class-acf-field-radio.php:192 -#: includes/fields/class-acf-field-select.php:369 -msgid "Choices" -msgstr "Escolhas" - -#: includes/fields/class-acf-field-button-group.php:24 -msgid "Button Group" -msgstr "Grupo de botões" - -#: includes/fields/class-acf-field-button-group.php:194 -#: includes/fields/class-acf-field-page_link.php:538 -#: includes/fields/class-acf-field-post_object.php:448 -#: includes/fields/class-acf-field-radio.php:238 -#: includes/fields/class-acf-field-select.php:429 -#: includes/fields/class-acf-field-taxonomy.php:772 -#: includes/fields/class-acf-field-user.php:103 -msgid "Allow Null" -msgstr "" - -#: includes/fields/class-acf-field-page_link.php:263 -#: includes/fields/class-acf-field-post_object.php:257 -#: includes/fields/class-acf-field-taxonomy.php:930 -msgid "Parent" -msgstr "Ascendente" - -#: includes/fields/class-acf-field-wysiwyg.php:390 -msgid "TinyMCE will not be initialized until field is clicked" -msgstr "O TinyMCE não será carregado até que o campo seja clicado" - -#: includes/fields/class-acf-field-wysiwyg.php:389 -msgid "Delay Initialization" -msgstr "" - -#: includes/fields/class-acf-field-wysiwyg.php:378 -msgid "Show Media Upload Buttons" -msgstr "" - -#: includes/fields/class-acf-field-wysiwyg.php:362 -msgid "Toolbar" -msgstr "Barra de ferramentas" - -#: includes/fields/class-acf-field-wysiwyg.php:354 -msgid "Text Only" -msgstr "Apenas texto" - -#: includes/fields/class-acf-field-wysiwyg.php:353 -msgid "Visual Only" -msgstr "Apenas visual" - -#: includes/fields/class-acf-field-wysiwyg.php:352 -msgid "Visual & Text" -msgstr "Visual e texto" - -#: includes/fields/class-acf-field-wysiwyg.php:347 -msgid "Tabs" -msgstr "Abas" - -#: includes/fields/class-acf-field-wysiwyg.php:285 -msgid "Click to initialize TinyMCE" -msgstr "Clique para carregar o TinyMCE" - -#: includes/fields/class-acf-field-wysiwyg.php:279 -msgctxt "Name for the Text editor tab (formerly HTML)" -msgid "Text" -msgstr "Texto" - -#: includes/fields/class-acf-field-wysiwyg.php:278 -msgid "Visual" -msgstr "Visual" - -#: includes/fields/class-acf-field-text.php:189 -#: includes/fields/class-acf-field-textarea.php:236 -msgid "Value must not exceed %d characters" -msgstr "O valor não deve exceder %d caracteres" - -#: includes/fields/class-acf-field-text.php:124 -#: includes/fields/class-acf-field-textarea.php:124 -msgid "Leave blank for no limit" -msgstr "Deixe em branco para não ter limite" - -#: includes/fields/class-acf-field-text.php:123 -#: includes/fields/class-acf-field-textarea.php:123 -msgid "Character Limit" -msgstr "Limite de caracteres" - -#: includes/fields/class-acf-field-email.php:158 -#: includes/fields/class-acf-field-number.php:209 -#: includes/fields/class-acf-field-password.php:105 -#: includes/fields/class-acf-field-range.php:239 -#: includes/fields/class-acf-field-text.php:164 -msgid "Appears after the input" -msgstr "Exibido depois do campo" - -#: includes/fields/class-acf-field-email.php:157 -#: includes/fields/class-acf-field-number.php:208 -#: includes/fields/class-acf-field-password.php:104 -#: includes/fields/class-acf-field-range.php:238 -#: includes/fields/class-acf-field-text.php:163 -msgid "Append" -msgstr "Sufixo" - -#: includes/fields/class-acf-field-email.php:148 -#: includes/fields/class-acf-field-number.php:199 -#: includes/fields/class-acf-field-password.php:95 -#: includes/fields/class-acf-field-range.php:229 -#: includes/fields/class-acf-field-text.php:154 -msgid "Appears before the input" -msgstr "Exibido antes do campo" - -#: includes/fields/class-acf-field-email.php:147 -#: includes/fields/class-acf-field-number.php:198 -#: includes/fields/class-acf-field-password.php:94 -#: includes/fields/class-acf-field-range.php:228 -#: includes/fields/class-acf-field-text.php:153 -msgid "Prepend" -msgstr "Prefixo" - -#: includes/fields/class-acf-field-email.php:138 -#: includes/fields/class-acf-field-number.php:179 -#: includes/fields/class-acf-field-password.php:85 -#: includes/fields/class-acf-field-text.php:144 -#: includes/fields/class-acf-field-textarea.php:156 -#: includes/fields/class-acf-field-url.php:122 -msgid "Appears within the input" -msgstr "Exibido dentro do campo" - -#: includes/fields/class-acf-field-email.php:137 -#: includes/fields/class-acf-field-number.php:178 -#: includes/fields/class-acf-field-password.php:84 -#: includes/fields/class-acf-field-text.php:143 -#: includes/fields/class-acf-field-textarea.php:155 -#: includes/fields/class-acf-field-url.php:121 -msgid "Placeholder Text" -msgstr "Texto de marcação" - -#: includes/fields/class-acf-field-button-group.php:158 -#: includes/fields/class-acf-field-email.php:118 -#: includes/fields/class-acf-field-number.php:129 -#: includes/fields/class-acf-field-radio.php:203 -#: includes/fields/class-acf-field-range.php:165 -#: includes/fields/class-acf-field-text.php:104 -#: includes/fields/class-acf-field-textarea.php:104 -#: includes/fields/class-acf-field-url.php:102 -#: includes/fields/class-acf-field-wysiwyg.php:312 -msgid "Appears when creating a new post" -msgstr "Aparece ao criar um novo post" - -#: includes/fields/class-acf-field-text.php:25 -msgid "Text" -msgstr "Texto" - -#: includes/fields/class-acf-field-relationship.php:794 -msgid "%1$s requires at least %2$s selection" -msgid_plural "%1$s requires at least %2$s selections" -msgstr[0] "%1$s requer ao menos %2$s seleção" -msgstr[1] "%1$s requer ao menos %2$s seleções" - -#: includes/fields/class-acf-field-post_object.php:417 -#: includes/fields/class-acf-field-relationship.php:644 -msgid "Post ID" -msgstr "ID do post" - -#: includes/fields/class-acf-field-post_object.php:17 -#: includes/fields/class-acf-field-post_object.php:416 -#: includes/fields/class-acf-field-relationship.php:643 -msgid "Post Object" -msgstr "Objeto de post" - -#: includes/fields/class-acf-field-relationship.php:676 -msgid "Maximum Posts" -msgstr "" - -#: includes/fields/class-acf-field-relationship.php:666 -msgid "Minimum Posts" -msgstr "" - -#: includes/admin/views/acf-field-group/options.php:183 -#: includes/admin/views/acf-post-type/advanced-settings.php:29 -#: includes/fields/class-acf-field-relationship.php:701 -msgid "Featured Image" -msgstr "Imagem destacada" - -#: includes/fields/class-acf-field-relationship.php:697 -msgid "Selected elements will be displayed in each result" -msgstr "Os elementos selecionados serão exibidos em cada resultado" - -#: includes/fields/class-acf-field-relationship.php:696 -msgid "Elements" -msgstr "Elementos" - -#: includes/fields/class-acf-field-relationship.php:630 -#: includes/fields/class-acf-field-taxonomy.php:20 -#: includes/fields/class-acf-field-taxonomy.php:692 -#: includes/locations/class-acf-location-taxonomy.php:22 -msgid "Taxonomy" -msgstr "Taxonomia" - -#: includes/fields/class-acf-field-relationship.php:629 -#: includes/locations/class-acf-location-post-type.php:22 -#: includes/post-types/class-acf-post-type.php:92 -msgid "Post Type" -msgstr "Tipo de post" - -#: includes/fields/class-acf-field-relationship.php:623 -msgid "Filters" -msgstr "Filtros" - -#: includes/fields/class-acf-field-page_link.php:499 -#: includes/fields/class-acf-field-post_object.php:404 -#: includes/fields/class-acf-field-relationship.php:616 -msgid "All taxonomies" -msgstr "Todas as taxonomias" - -#: includes/fields/class-acf-field-page_link.php:491 -#: includes/fields/class-acf-field-post_object.php:396 -#: includes/fields/class-acf-field-relationship.php:608 -msgid "Filter by Taxonomy" -msgstr "Filtrar por taxonomia" - -#: includes/fields/class-acf-field-page_link.php:469 -#: includes/fields/class-acf-field-post_object.php:374 -#: includes/fields/class-acf-field-relationship.php:586 -msgid "All post types" -msgstr "Todos os tipos de post" - -#: includes/fields/class-acf-field-page_link.php:461 -#: includes/fields/class-acf-field-post_object.php:366 -#: includes/fields/class-acf-field-relationship.php:578 -msgid "Filter by Post Type" -msgstr "Filtrar por tipo de post" - -#: includes/fields/class-acf-field-relationship.php:476 -msgid "Search..." -msgstr "Pesquisar..." - -#: includes/fields/class-acf-field-relationship.php:406 -msgid "Select taxonomy" -msgstr "Selecionar taxonomia" - -#: includes/fields/class-acf-field-relationship.php:397 -msgid "Select post type" -msgstr "Selecionar tipo de post" - -#: includes/fields/class-acf-field-relationship.php:61 -#: assets/build/js/acf-input.js:3930 assets/build/js/acf-input.js:4214 -msgid "No matches found" -msgstr "Não foi possível encontrar correspondências" - -#: includes/fields/class-acf-field-relationship.php:60 -#: assets/build/js/acf-input.js:3913 assets/build/js/acf-input.js:4193 -msgid "Loading" -msgstr "Carregando" - -#: includes/fields/class-acf-field-relationship.php:59 -#: assets/build/js/acf-input.js:3818 assets/build/js/acf-input.js:4084 -msgid "Maximum values reached ( {max} values )" -msgstr "Máximo de valores alcançado ({max} valores)" - -#: includes/fields/class-acf-field-relationship.php:17 -msgid "Relationship" -msgstr "Relacionamento" - -#: includes/fields/class-acf-field-file.php:291 -#: includes/fields/class-acf-field-image.php:317 -msgid "Comma separated list. Leave blank for all types" -msgstr "" -"Lista separada por vírgulas. Deixe em branco para permitir todos os tipos" - -#: includes/fields/class-acf-field-file.php:290 -#: includes/fields/class-acf-field-image.php:316 -msgid "Allowed File Types" -msgstr "" - -#: includes/fields/class-acf-field-file.php:278 -#: includes/fields/class-acf-field-image.php:280 -msgid "Maximum" -msgstr "Máximo" - -#: includes/fields/class-acf-field-file.php:154 -#: includes/fields/class-acf-field-file.php:270 -#: includes/fields/class-acf-field-file.php:282 -#: includes/fields/class-acf-field-image.php:271 -#: includes/fields/class-acf-field-image.php:307 -msgid "File size" -msgstr "Tamanho do arquivo" - -#: includes/fields/class-acf-field-image.php:245 -#: includes/fields/class-acf-field-image.php:281 -msgid "Restrict which images can be uploaded" -msgstr "Limita as imagens que podem ser enviadas" - -#: includes/fields/class-acf-field-file.php:266 -#: includes/fields/class-acf-field-image.php:244 -msgid "Minimum" -msgstr "Mínimo" - -#: includes/fields/class-acf-field-file.php:235 -#: includes/fields/class-acf-field-image.php:210 -msgid "Uploaded to post" -msgstr "Anexado ao post" - -#: includes/fields/class-acf-field-file.php:234 -#: includes/fields/class-acf-field-image.php:209 -#: includes/locations/class-acf-location-attachment.php:73 -#: includes/locations/class-acf-location-comment.php:61 -#: includes/locations/class-acf-location-nav-menu.php:74 -#: includes/locations/class-acf-location-taxonomy.php:63 -#: includes/locations/class-acf-location-user-form.php:71 -#: includes/locations/class-acf-location-user-role.php:78 -#: includes/locations/class-acf-location-widget.php:65 -msgid "All" -msgstr "Tudo" - -#: includes/fields/class-acf-field-file.php:229 -#: includes/fields/class-acf-field-image.php:204 -msgid "Limit the media library choice" -msgstr "Limitar a escolha da biblioteca de mídia" - -#: includes/fields/class-acf-field-file.php:228 -#: includes/fields/class-acf-field-image.php:203 -msgid "Library" -msgstr "Biblioteca" - -#: includes/fields/class-acf-field-image.php:336 -msgid "Preview Size" -msgstr "Tamanho da pré-visualização" - -#: includes/fields/class-acf-field-image.php:195 -msgid "Image ID" -msgstr "ID da imagem" - -#: includes/fields/class-acf-field-image.php:194 -msgid "Image URL" -msgstr "URL da imagem" - -#: includes/fields/class-acf-field-image.php:193 -msgid "Image Array" -msgstr "Array da imagem" - -#: includes/fields/class-acf-field-button-group.php:168 -#: includes/fields/class-acf-field-checkbox.php:372 -#: includes/fields/class-acf-field-file.php:213 -#: includes/fields/class-acf-field-link.php:171 -#: includes/fields/class-acf-field-radio.php:213 -msgid "Specify the returned value on front end" -msgstr "Especifica o valor devolvido na interface" - -#: includes/fields/class-acf-field-button-group.php:167 -#: includes/fields/class-acf-field-checkbox.php:371 -#: includes/fields/class-acf-field-file.php:212 -#: includes/fields/class-acf-field-link.php:170 -#: includes/fields/class-acf-field-radio.php:212 -#: includes/fields/class-acf-field-taxonomy.php:736 -msgid "Return Value" -msgstr "Valor devolvido" - -#: includes/fields/class-acf-field-image.php:162 -msgid "Add Image" -msgstr "Adicionar imagem" - -#: includes/fields/class-acf-field-image.php:162 -msgid "No image selected" -msgstr "Nenhuma imagem selecionada" - -#: includes/assets.php:352 includes/fields/class-acf-field-file.php:162 -#: includes/fields/class-acf-field-image.php:142 -#: includes/fields/class-acf-field-link.php:145 assets/build/js/acf.js:1563 -#: assets/build/js/acf.js:1657 -msgid "Remove" -msgstr "Remover" - -#: includes/admin/views/acf-field-group/field.php:76 -#: includes/fields/class-acf-field-file.php:160 -#: includes/fields/class-acf-field-image.php:140 -#: includes/fields/class-acf-field-link.php:145 -msgid "Edit" -msgstr "Editar" - -#: includes/fields/class-acf-field-image.php:70 includes/media.php:55 -#: assets/build/js/acf-input.js:6837 assets/build/js/acf-input.js:7320 -msgid "All images" -msgstr "Todas as imagens" - -#: includes/fields/class-acf-field-image.php:69 -#: assets/build/js/acf-input.js:3181 assets/build/js/acf-input.js:3399 -msgid "Update Image" -msgstr "Atualizar imagem" - -#: includes/fields/class-acf-field-image.php:68 -#: assets/build/js/acf-input.js:3180 assets/build/js/acf-input.js:3398 -msgid "Edit Image" -msgstr "Editar imagem" - -#: includes/fields/class-acf-field-image.php:67 -#: assets/build/js/acf-input.js:3156 assets/build/js/acf-input.js:3373 -msgid "Select Image" -msgstr "Selecionar imagem" - -#: includes/fields/class-acf-field-image.php:25 -msgid "Image" -msgstr "Imagem" - -#: includes/fields/class-acf-field-message.php:125 -msgid "Allow HTML markup to display as visible text instead of rendering" -msgstr "" -"Permitir que a marcação HTML seja exibida como texto ao invés de ser " -"renderizada" - -#: includes/fields/class-acf-field-message.php:124 -msgid "Escape HTML" -msgstr "Ignorar HTML" - -#: includes/fields/class-acf-field-message.php:116 -#: includes/fields/class-acf-field-textarea.php:172 -msgid "No Formatting" -msgstr "Sem formatação" - -#: includes/fields/class-acf-field-message.php:115 -#: includes/fields/class-acf-field-textarea.php:171 -msgid "Automatically add <br>" -msgstr "Adicionar <br> automaticamente" - -#: includes/fields/class-acf-field-message.php:114 -#: includes/fields/class-acf-field-textarea.php:170 -msgid "Automatically add paragraphs" -msgstr "Adicionar parágrafos automaticamente" - -#: includes/fields/class-acf-field-message.php:110 -#: includes/fields/class-acf-field-textarea.php:166 -msgid "Controls how new lines are rendered" -msgstr "Controla como as novas linhas são renderizadas" - -#: includes/fields/class-acf-field-message.php:109 -#: includes/fields/class-acf-field-textarea.php:165 -msgid "New Lines" -msgstr "Novas linhas" - -#: includes/fields/class-acf-field-date_picker.php:232 -#: includes/fields/class-acf-field-date_time_picker.php:220 -msgid "Week Starts On" -msgstr "Início da semana" - -#: includes/fields/class-acf-field-date_picker.php:201 -msgid "The format used when saving a value" -msgstr "O formato usado ao salvar um valor" - -#: includes/fields/class-acf-field-date_picker.php:200 -msgid "Save Format" -msgstr "Salvar formato" - -#: includes/fields/class-acf-field-date_picker.php:67 -msgctxt "Date Picker JS weekHeader" -msgid "Wk" -msgstr "Sem" - -#: includes/fields/class-acf-field-date_picker.php:66 -msgctxt "Date Picker JS prevText" -msgid "Prev" -msgstr "Anterior" - -#: includes/fields/class-acf-field-date_picker.php:65 -msgctxt "Date Picker JS nextText" -msgid "Next" -msgstr "Seguinte" - -#: includes/fields/class-acf-field-date_picker.php:64 -msgctxt "Date Picker JS currentText" -msgid "Today" -msgstr "Hoje" - -#: includes/fields/class-acf-field-date_picker.php:63 -msgctxt "Date Picker JS closeText" -msgid "Done" -msgstr "Concluído" - -#: includes/fields/class-acf-field-date_picker.php:25 -msgid "Date Picker" -msgstr "Seletor de data" - -#: includes/fields/class-acf-field-image.php:248 -#: includes/fields/class-acf-field-image.php:284 -#: includes/fields/class-acf-field-oembed.php:268 -msgid "Width" -msgstr "Largura" - -#: includes/fields/class-acf-field-oembed.php:265 -#: includes/fields/class-acf-field-oembed.php:277 -msgid "Embed Size" -msgstr "Tamanho do código incorporado" - -#: includes/fields/class-acf-field-oembed.php:222 -msgid "Enter URL" -msgstr "Digite o URL" - -#: includes/fields/class-acf-field-oembed.php:25 -msgid "oEmbed" -msgstr "oEmbed" - -#: includes/fields/class-acf-field-true_false.php:184 -msgid "Text shown when inactive" -msgstr "Texto exibido quando inativo" - -#: includes/fields/class-acf-field-true_false.php:183 -msgid "Off Text" -msgstr "Texto \"Inativo\"" - -#: includes/fields/class-acf-field-true_false.php:168 -msgid "Text shown when active" -msgstr "Texto exibido quando ativo" - -#: includes/fields/class-acf-field-true_false.php:167 -msgid "On Text" -msgstr "Texto \"Ativo\"" - -#: includes/fields/class-acf-field-select.php:450 -#: includes/fields/class-acf-field-true_false.php:199 -msgid "Stylized UI" -msgstr "Interface estilizada" - -#: includes/fields/class-acf-field-button-group.php:157 -#: includes/fields/class-acf-field-checkbox.php:361 -#: includes/fields/class-acf-field-color_picker.php:156 -#: includes/fields/class-acf-field-email.php:117 -#: includes/fields/class-acf-field-number.php:128 -#: includes/fields/class-acf-field-radio.php:202 -#: includes/fields/class-acf-field-range.php:164 -#: includes/fields/class-acf-field-select.php:380 -#: includes/fields/class-acf-field-text.php:103 -#: includes/fields/class-acf-field-textarea.php:103 -#: includes/fields/class-acf-field-true_false.php:147 -#: includes/fields/class-acf-field-url.php:101 -#: includes/fields/class-acf-field-wysiwyg.php:311 -msgid "Default Value" -msgstr "Valor padrão" - -#: includes/fields/class-acf-field-true_false.php:138 -msgid "Displays text alongside the checkbox" -msgstr "Exibe texto ao lado da caixa de seleção" - -#: includes/fields/class-acf-field-message.php:26 -#: includes/fields/class-acf-field-message.php:99 -#: includes/fields/class-acf-field-true_false.php:137 -msgid "Message" -msgstr "Mensagem" - -#: includes/assets.php:351 includes/fields/class-acf-field-true_false.php:86 -#: includes/fields/class-acf-field-true_false.php:187 -#: assets/build/js/acf.js:1740 assets/build/js/acf.js:1857 -msgid "No" -msgstr "Não" - -#: includes/assets.php:350 includes/fields/class-acf-field-true_false.php:83 -#: includes/fields/class-acf-field-true_false.php:171 -#: assets/build/js/acf.js:1739 assets/build/js/acf.js:1856 -msgid "Yes" -msgstr "Sim" - -#: includes/fields/class-acf-field-true_false.php:25 -msgid "True / False" -msgstr "Verdadeiro / Falso" - -#: includes/fields/class-acf-field-group.php:474 -msgid "Row" -msgstr "Linha" - -#: includes/fields/class-acf-field-group.php:473 -msgid "Table" -msgstr "Tabela" - -#: includes/admin/post-types/admin-field-group.php:140 -#: includes/fields/class-acf-field-group.php:472 -msgid "Block" -msgstr "Bloco" - -#: includes/fields/class-acf-field-group.php:467 -msgid "Specify the style used to render the selected fields" -msgstr "Especifique o estilo utilizado para exibir os campos selecionados" - -#: includes/fields.php:356 includes/fields/class-acf-field-button-group.php:215 -#: includes/fields/class-acf-field-checkbox.php:435 -#: includes/fields/class-acf-field-group.php:466 -#: includes/fields/class-acf-field-radio.php:286 -msgid "Layout" -msgstr "Layout" - -#: includes/fields/class-acf-field-group.php:450 -msgid "Sub Fields" -msgstr "Subcampos" - -#: includes/fields/class-acf-field-group.php:25 -msgid "Group" -msgstr "Grupo" - -#: includes/fields/class-acf-field-google-map.php:235 -msgid "Customize the map height" -msgstr "Personalizar a altura do mapa" - -#: includes/fields/class-acf-field-google-map.php:234 -#: includes/fields/class-acf-field-image.php:259 -#: includes/fields/class-acf-field-image.php:295 -#: includes/fields/class-acf-field-oembed.php:280 -msgid "Height" -msgstr "Altura" - -#: includes/fields/class-acf-field-google-map.php:223 -msgid "Set the initial zoom level" -msgstr "Definir o nível de zoom inicial" - -#: includes/fields/class-acf-field-google-map.php:222 -msgid "Zoom" -msgstr "Zoom" - -#: includes/fields/class-acf-field-google-map.php:196 -#: includes/fields/class-acf-field-google-map.php:209 -msgid "Center the initial map" -msgstr "Centralizar o mapa inicial" - -#: includes/fields/class-acf-field-google-map.php:195 -#: includes/fields/class-acf-field-google-map.php:208 -msgid "Center" -msgstr "Centralizar" - -#: includes/fields/class-acf-field-google-map.php:163 -msgid "Search for address..." -msgstr "Pesquisar endereço..." - -#: includes/fields/class-acf-field-google-map.php:160 -msgid "Find current location" -msgstr "Encontrar a localização atual" - -#: includes/fields/class-acf-field-google-map.php:159 -msgid "Clear location" -msgstr "Limpar localização" - -#: includes/fields/class-acf-field-google-map.php:158 -#: includes/fields/class-acf-field-relationship.php:628 -msgid "Search" -msgstr "Pesquisa" - -#: includes/fields/class-acf-field-google-map.php:63 -#: assets/build/js/acf-input.js:2840 assets/build/js/acf-input.js:3026 -msgid "Sorry, this browser does not support geolocation" -msgstr "O seu navegador não suporta o recurso de geolocalização" - -#: includes/fields/class-acf-field-google-map.php:25 -msgid "Google Map" -msgstr "Mapa do Google" - -#: includes/fields/class-acf-field-date_picker.php:212 -#: includes/fields/class-acf-field-date_time_picker.php:201 -#: includes/fields/class-acf-field-time_picker.php:132 -msgid "The format returned via template functions" -msgstr "O formato devolvido por meio de funções de modelo" - -#: includes/fields/class-acf-field-color_picker.php:180 -#: includes/fields/class-acf-field-date_picker.php:211 -#: includes/fields/class-acf-field-date_time_picker.php:200 -#: includes/fields/class-acf-field-image.php:187 -#: includes/fields/class-acf-field-post_object.php:411 -#: includes/fields/class-acf-field-relationship.php:638 -#: includes/fields/class-acf-field-select.php:391 -#: includes/fields/class-acf-field-time_picker.php:131 -#: includes/fields/class-acf-field-user.php:66 -msgid "Return Format" -msgstr "Formato devolvido" - -#: includes/fields/class-acf-field-date_picker.php:190 -#: includes/fields/class-acf-field-date_picker.php:221 -#: includes/fields/class-acf-field-date_time_picker.php:192 -#: includes/fields/class-acf-field-date_time_picker.php:210 -#: includes/fields/class-acf-field-time_picker.php:123 -#: includes/fields/class-acf-field-time_picker.php:139 -msgid "Custom:" -msgstr "Personalizado:" - -#: includes/fields/class-acf-field-date_picker.php:182 -#: includes/fields/class-acf-field-date_time_picker.php:183 -#: includes/fields/class-acf-field-time_picker.php:116 -msgid "The format displayed when editing a post" -msgstr "O formato exibido ao editar um post" - -#: includes/fields/class-acf-field-date_picker.php:181 -#: includes/fields/class-acf-field-date_time_picker.php:182 -#: includes/fields/class-acf-field-time_picker.php:115 -msgid "Display Format" -msgstr "Formato de exibição" - -#: includes/fields/class-acf-field-time_picker.php:25 -msgid "Time Picker" -msgstr "Seletor de horário" - -#. translators: counts for inactive field groups -#: acf.php:503 -msgid "Inactive (%s)" -msgid_plural "Inactive (%s)" -msgstr[0] "Desativado (%s)" -msgstr[1] "Desativados (%s)" - -#: acf.php:462 -msgid "No Fields found in Trash" -msgstr "Não foi possível encontrar campos na lixeira" - -#: acf.php:461 -msgid "No Fields found" -msgstr "Não foi possível encontrar campos" - -#: acf.php:460 -msgid "Search Fields" -msgstr "Pesquisar campos" - -#: acf.php:459 -msgid "View Field" -msgstr "Ver campo" - -#: acf.php:458 includes/admin/views/acf-field-group/fields.php:115 -msgid "New Field" -msgstr "Novo campo" - -#: acf.php:457 -msgid "Edit Field" -msgstr "Editar campo" - -#: acf.php:456 -msgid "Add New Field" -msgstr "Adicionar novo campo" - -#: acf.php:454 -msgid "Field" -msgstr "Campo" - -#: acf.php:453 includes/admin/post-types/admin-field-group.php:163 -#: includes/admin/post-types/admin-field-groups.php:119 -#: includes/admin/views/acf-field-group/fields.php:32 -msgid "Fields" -msgstr "Campos" - -#: acf.php:428 -msgid "No Field Groups found in Trash" -msgstr "Não foi possível encontrar grupos de campos na lixeira" - -#: acf.php:427 -msgid "No Field Groups found" -msgstr "Não foi possível encontrar grupos de campos" - -#: acf.php:426 -msgid "Search Field Groups" -msgstr "Pesquisar grupos de campos" - -#: acf.php:425 -msgid "View Field Group" -msgstr "Ver grupo de campos" - -#: acf.php:424 -msgid "New Field Group" -msgstr "Novo grupo de campos" - -#: acf.php:423 -msgid "Edit Field Group" -msgstr "Editar grupo de campos" - -#: acf.php:422 -msgid "Add New Field Group" -msgstr "Adicionar novo grupo de campos" - -#: acf.php:421 acf.php:455 -#: includes/admin/views/acf-post-type/advanced-settings.php:219 -#: includes/admin/views/acf-post-type/advanced-settings.php:221 -#: includes/post-types/class-acf-post-type.php:93 -#: includes/post-types/class-acf-taxonomy.php:92 -msgid "Add New" -msgstr "Adicionar novo" - -#: acf.php:420 -msgid "Field Group" -msgstr "Grupo de campos" - -#: acf.php:419 includes/admin/post-types/admin-field-groups.php:78 -#: includes/admin/post-types/admin-post-types.php:138 -#: includes/admin/post-types/admin-taxonomies.php:138 -msgid "Field Groups" -msgstr "Grupos de campos" - -#. Description of the plugin -msgid "Customize WordPress with powerful, professional and intuitive fields." -msgstr "" -"Personalize o WordPress com campos poderosos, profissionais e intuitivos." - -#. Plugin URI of the plugin -msgid "https://www.advancedcustomfields.com" -msgstr "https://www.advancedcustomfields.com" - -#. Plugin Name of the plugin -#: acf.php:94 -msgid "Advanced Custom Fields" -msgstr "Advanced Custom Fields" - -#: pro/acf-pro.php:27 -msgid "Advanced Custom Fields PRO" -msgstr "Advanced Custom Fields PRO" - -#: pro/blocks.php:170 -msgid "Block type name is required." -msgstr "O nome do bloco é obrigatório." - -#. translators: The name of the block type -#: pro/blocks.php:178 -msgid "Block type \"%s\" is already registered." -msgstr "Tipo de bloco \"%s\" já está registrado." - -#: pro/blocks.php:726 -msgid "Switch to Edit" -msgstr "Alternar para edição" - -#: pro/blocks.php:727 -msgid "Switch to Preview" -msgstr "Alternar para visualização" - -#: pro/blocks.php:728 -msgid "Change content alignment" -msgstr "Mudar alinhamento do conteúdo" - -#. translators: %s: Block type title -#: pro/blocks.php:731 -msgid "%s settings" -msgstr "Configurações de %s" - -#: pro/blocks.php:936 -msgid "This block contains no editable fields." -msgstr "Este bloco não contém campos editáveis." - -#. translators: %s: an admin URL to the field group edit screen -#: pro/blocks.php:942 -msgid "" -"Assign a field group to add fields to " -"this block." -msgstr "" -"Atribua um grupo de campos para " -"adicionar campos a este bloco." - -#: pro/options-page.php:78 -msgid "Options Updated" -msgstr "Opções atualizadas" - -#: pro/updates.php:99 -msgid "" -"To enable updates, please enter your license key on the Updates page. If you don't have a licence key, please see details & pricing." -msgstr "" -"Para ativar as atualizações, digite sua chave de licença na página atualizações. Se você não tiver uma chave de licença, consulte " -"detalhes e preços." - -#: pro/updates.php:159 -msgid "" -"ACF Activation Error. Your defined license key has changed, but an " -"error occurred when deactivating your old licence" -msgstr "" -"Erro de ativação do ACF. Sua chave de licença definida mudou, mas " -"ocorreu um erro ao desativar sua licença antiga" - -#: pro/updates.php:154 -msgid "" -"ACF Activation Error. Your defined license key has changed, but an " -"error occurred when connecting to activation server" -msgstr "" -"Erro de ativação do ACF. Sua chave de licença definida foi alterada, " -"mas ocorreu um erro ao conectar-se ao servidor de ativação" - -#: pro/updates.php:192 -msgid "ACF Activation Error" -msgstr "Erro de ativação do ACF" - -#: pro/updates.php:187 -msgid "" -"ACF Activation Error. An error occurred when connecting to activation " -"server" -msgstr "" -"Erro de ativação do ACF. Ocorreu um erro ao conectar ao servidor de " -"ativação" - -#: pro/updates.php:279 -msgid "Check Again" -msgstr "Conferir novamente" - -#: pro/updates.php:593 -msgid "ACF Activation Error. Could not connect to activation server" -msgstr "" -"Erro de ativação do ACF. Não foi possível conectar ao servidor de " -"ativação" - -#: pro/admin/admin-options-page.php:195 -msgid "Publish" -msgstr "Publicar" - -#: pro/admin/admin-options-page.php:199 -msgid "" -"No Custom Field Groups found for this options page. Create a " -"Custom Field Group" -msgstr "" -"Nenhum grupo de campos personalizados encontrado para esta página de opções. " -"Crie um grupo de campos personalizados" - -#: pro/admin/admin-updates.php:52 -msgid "Error. Could not connect to update server" -msgstr "Erro. Não foi possível se conectar ao servidor de atualização" - -#: pro/admin/admin-updates.php:212 -msgid "" -"Error. Could not authenticate update package. Please check again or " -"deactivate and reactivate your ACF PRO license." -msgstr "" -"Erro. Não foi possível autenticar o pacote de atualização. Verifique " -"novamente ou desative e reative sua licença ACF PRO." - -#: pro/admin/admin-updates.php:199 -msgid "" -"Error. Your license for this site has expired or been deactivated. " -"Please reactivate your ACF PRO license." -msgstr "" -"Erro. Sua licença para este site expirou ou foi desativada. Reative " -"sua licença ACF PRO." - -#: pro/fields/class-acf-field-clone.php:27, -#: pro/fields/class-acf-field-repeater.php:31 -msgid "" -"Allows you to select and display existing fields. It does not duplicate any " -"fields in the database, but loads and displays the selected fields at run-" -"time. The Clone field can either replace itself with the selected fields or " -"display the selected fields as a group of subfields." -msgstr "" -"Permite selecionar e exibir os campos existentes. Ele não duplica nenhum " -"campo no banco de dados, mas carrega e exibe os campos selecionados em tempo " -"de execução. O campo Clonar pode se substituir pelos campos selecionados ou " -"exibir os campos selecionados como um grupo de subcampos." - -#: pro/fields/class-acf-field-clone.php:819 -msgid "Select one or more fields you wish to clone" -msgstr "Selecione um ou mais campos que deseja clonar" - -#: pro/fields/class-acf-field-clone.php:838 -msgid "Display" -msgstr "Exibir" - -#: pro/fields/class-acf-field-clone.php:839 -msgid "Specify the style used to render the clone field" -msgstr "Especifique o estilo utilizado para exibir os campos de clone" - -#: pro/fields/class-acf-field-clone.php:844 -msgid "Group (displays selected fields in a group within this field)" -msgstr "Grupo (exibe os campos selecionados em um grupo dentro deste campo)" - -#: pro/fields/class-acf-field-clone.php:845 -msgid "Seamless (replaces this field with selected fields)" -msgstr "Integrado (substitui este campo pelos campos selecionados)" - -#: pro/fields/class-acf-field-clone.php:868 -msgid "Labels will be displayed as %s" -msgstr "Os rótulos serão exibidos como %s" - -#: pro/fields/class-acf-field-clone.php:873 -msgid "Prefix Field Labels" -msgstr "Prefixo nos rótulos do campo" - -#: pro/fields/class-acf-field-clone.php:883 -msgid "Values will be saved as %s" -msgstr "Valores serão salvos como %s" - -#: pro/fields/class-acf-field-clone.php:888 -msgid "Prefix Field Names" -msgstr "Prefixo nos nomes do campo" - -#: pro/fields/class-acf-field-clone.php:1005 -msgid "Unknown field" -msgstr "Campo desconhecido" - -#: pro/fields/class-acf-field-clone.php:1042 -msgid "Unknown field group" -msgstr "Grupo de campos desconhecido" - -#: pro/fields/class-acf-field-clone.php:1046 -msgid "All fields from %s field group" -msgstr "Todos os campos do grupo de campos %s" - -#: pro/fields/class-acf-field-flexible-content.php:27 -msgid "" -"Allows you to define, create and manage content with total control by " -"creating layouts that contain subfields that content editors can choose from." -msgstr "" -"Permite definir, criar e gerenciar conteúdo com controle total, criando " -"layouts que contêm subcampos que os editores de conteúdo podem escolher." - -#: pro/fields/class-acf-field-flexible-content.php:36, -#: pro/fields/class-acf-field-repeater.php:103, -#: pro/fields/class-acf-field-repeater.php:297 -msgid "Add Row" -msgstr "Adicionar linha" - -#: pro/fields/class-acf-field-flexible-content.php:76, -#: pro/fields/class-acf-field-flexible-content.php:943, -#: pro/fields/class-acf-field-flexible-content.php:1022 -msgid "layout" -msgid_plural "layouts" -msgstr[0] "layout" -msgstr[1] "layouts" - -#: pro/fields/class-acf-field-flexible-content.php:77 -msgid "layouts" -msgstr "layouts" - -#: pro/fields/class-acf-field-flexible-content.php:81, -#: pro/fields/class-acf-field-flexible-content.php:942, -#: pro/fields/class-acf-field-flexible-content.php:1021 -msgid "This field requires at least {min} {label} {identifier}" -msgstr "Este campo requer pelo menos {min} {label} {identifier}" - -#: pro/fields/class-acf-field-flexible-content.php:82 -msgid "This field has a limit of {max} {label} {identifier}" -msgstr "Este campo tem um limite de {max} {label} {identifier}" - -#: pro/fields/class-acf-field-flexible-content.php:85 -msgid "{available} {label} {identifier} available (max {max})" -msgstr "{available} {label} {identifier} disponível (máx. {max})" - -#: pro/fields/class-acf-field-flexible-content.php:86 -msgid "{required} {label} {identifier} required (min {min})" -msgstr "{required} {label} {identifier} necessário (mín. {min})" - -#: pro/fields/class-acf-field-flexible-content.php:89 -msgid "Flexible Content requires at least 1 layout" -msgstr "Conteúdo flexível requer pelo menos 1 layout" - -#: pro/fields/class-acf-field-flexible-content.php:282 -msgid "Click the \"%s\" button below to start creating your layout" -msgstr "Clique no botão \"%s\" abaixo para começar a criar seu layout" - -#: pro/fields/class-acf-field-flexible-content.php:423 -msgid "Add layout" -msgstr "Adicionar layout" - -#: pro/fields/class-acf-field-flexible-content.php:424 -msgid "Duplicate layout" -msgstr "Duplicar layout" - -#: pro/fields/class-acf-field-flexible-content.php:425 -msgid "Remove layout" -msgstr "Remover layout" - -#: pro/fields/class-acf-field-flexible-content.php:426, -#: pro/fields/class-acf-repeater-table.php:382 -msgid "Click to toggle" -msgstr "Clique para alternar" - -#: pro/fields/class-acf-field-flexible-content.php:562 -msgid "Delete Layout" -msgstr "Excluir layout" - -#: pro/fields/class-acf-field-flexible-content.php:563 -msgid "Duplicate Layout" -msgstr "Duplicar layout" - -#: pro/fields/class-acf-field-flexible-content.php:564 -msgid "Add New Layout" -msgstr "Adicionar novo layout" - -#: pro/fields/class-acf-field-flexible-content.php:564 -msgid "Add Layout" -msgstr "Adicionar layout" - -#: pro/fields/class-acf-field-flexible-content.php:647 -msgid "Min" -msgstr "Mín" - -#: pro/fields/class-acf-field-flexible-content.php:662 -msgid "Max" -msgstr "Máx" - -#: pro/fields/class-acf-field-flexible-content.php:705 -msgid "Minimum Layouts" -msgstr "Mínimo de layouts" - -#: pro/fields/class-acf-field-flexible-content.php:716 -msgid "Maximum Layouts" -msgstr "Máximo de layouts" - -#: pro/fields/class-acf-field-flexible-content.php:727, -#: pro/fields/class-acf-field-repeater.php:293 -msgid "Button Label" -msgstr "Rótulo do botão" - -#: pro/fields/class-acf-field-flexible-content.php:1710, -#: pro/fields/class-acf-field-repeater.php:918 -msgid "%s must be of type array or null." -msgstr "%s deve ser um array de tipos ou nulo." - -#: pro/fields/class-acf-field-flexible-content.php:1721 -msgid "%1$s must contain at least %2$s %3$s layout." -msgid_plural "%1$s must contain at least %2$s %3$s layouts." -msgstr[0] "%1$s precisa conter no mínimo %2$s layout." -msgstr[1] "%1$s precisa conter no mínimo %2$s layouts." - -#: pro/fields/class-acf-field-flexible-content.php:1737 -msgid "%1$s must contain at most %2$s %3$s layout." -msgid_plural "%1$s must contain at most %2$s %3$s layouts." -msgstr[0] "%1$s deve conter no máximo %2$s layout de %3$s." -msgstr[1] "%1$s deve conter no máximo %2$s layouts de %3$s." - -#: pro/fields/class-acf-field-gallery.php:27 -msgid "" -"An interactive interface for managing a collection of attachments, such as " -"images." -msgstr "" -"Uma interface interativa para gerenciar uma coleção de anexos, como imagens." - -#: pro/fields/class-acf-field-gallery.php:77 -msgid "Add Image to Gallery" -msgstr "Adicionar imagem na galeria" - -#: pro/fields/class-acf-field-gallery.php:78 -msgid "Maximum selection reached" -msgstr "Seleção máxima alcançada" - -#: pro/fields/class-acf-field-gallery.php:324 -msgid "Length" -msgstr "Duração" - -#: pro/fields/class-acf-field-gallery.php:368 -msgid "Caption" -msgstr "Legenda" - -#: pro/fields/class-acf-field-gallery.php:380 -msgid "Alt Text" -msgstr "Texto alternativo" - -#: pro/fields/class-acf-field-gallery.php:504 -msgid "Add to gallery" -msgstr "Adicionar à galeria" - -#: pro/fields/class-acf-field-gallery.php:508 -msgid "Bulk actions" -msgstr "Ações em massa" - -#: pro/fields/class-acf-field-gallery.php:509 -msgid "Sort by date uploaded" -msgstr "Ordenar por data de envio" - -#: pro/fields/class-acf-field-gallery.php:510 -msgid "Sort by date modified" -msgstr "Ordenar por data de modificação" - -#: pro/fields/class-acf-field-gallery.php:511 -msgid "Sort by title" -msgstr "Ordenar por título" - -#: pro/fields/class-acf-field-gallery.php:512 -msgid "Reverse current order" -msgstr "Ordem atual inversa" - -#: pro/fields/class-acf-field-gallery.php:524 -msgid "Close" -msgstr "Fechar" - -#: pro/fields/class-acf-field-gallery.php:615 -msgid "Minimum Selection" -msgstr "Seleção mínima" - -#: pro/fields/class-acf-field-gallery.php:625 -msgid "Maximum Selection" -msgstr "Seleção máxima" - -#: pro/fields/class-acf-field-gallery.php:707 -msgid "Allowed file types" -msgstr "Tipos de arquivos permitidos" - -#: pro/fields/class-acf-field-gallery.php:727 -msgid "Insert" -msgstr "Inserir" - -#: pro/fields/class-acf-field-gallery.php:728 -msgid "Specify where new attachments are added" -msgstr "Especifique onde novos anexos são adicionados" - -#: pro/fields/class-acf-field-gallery.php:732 -msgid "Append to the end" -msgstr "Anexar ao final" - -#: pro/fields/class-acf-field-gallery.php:733 -msgid "Prepend to the beginning" -msgstr "Anexar ao início" - -#: pro/fields/class-acf-field-repeater.php:66, -#: pro/fields/class-acf-field-repeater.php:463 -#, fuzzy -#| msgid "Minimum rows reached ({min} rows)" -msgid "Minimum rows not reached ({min} rows)" -msgstr "Mínimo de linhas alcançado ({min} linhas)" - -#: pro/fields/class-acf-field-repeater.php:67 -msgid "Maximum rows reached ({max} rows)" -msgstr "Máximo de linhas alcançado ({max} linhas)" - -#: pro/fields/class-acf-field-repeater.php:68 -msgid "Error loading page" -msgstr "Erro ao carregar página" - -#: pro/fields/class-acf-field-repeater.php:69 -msgid "Order will be assigned upon save" -msgstr "A ordenação será atribuída ao salvar" - -#: pro/fields/class-acf-field-repeater.php:196 -msgid "Useful for fields with a large number of rows." -msgstr "Útil para campos com um grande número de linhas." - -#: pro/fields/class-acf-field-repeater.php:207 -msgid "Rows Per Page" -msgstr "Linhas por página" - -#: pro/fields/class-acf-field-repeater.php:208 -msgid "Set the number of rows to be displayed on a page." -msgstr "Define o número de linhas a serem exibidas em uma página." - -#: pro/fields/class-acf-field-repeater.php:240 -msgid "Minimum Rows" -msgstr "Mínimo de linhas" - -#: pro/fields/class-acf-field-repeater.php:251 -msgid "Maximum Rows" -msgstr "Máximo de linhas" - -#: pro/fields/class-acf-field-repeater.php:281 -msgid "Collapsed" -msgstr "Recolhido" - -#: pro/fields/class-acf-field-repeater.php:282 -msgid "Select a sub field to show when row is collapsed" -msgstr "Selecione um subcampo para mostrar quando a linha for recolhida" - -#: pro/fields/class-acf-field-repeater.php:1060 -msgid "Invalid field key or name." -msgstr "Chave ou nome de campo inválidos." - -#: pro/fields/class-acf-field-repeater.php:1069 -msgid "There was an error retrieving the field." -msgstr "Ocorreu um erro ao recuperar o campo." - -#: pro/fields/class-acf-repeater-table.php:369 -msgid "Click to reorder" -msgstr "Clique para reordenar" - -#: pro/fields/class-acf-repeater-table.php:402 -msgid "Add row" -msgstr "Adicionar linha" - -#: pro/fields/class-acf-repeater-table.php:403 -msgid "Duplicate row" -msgstr "Duplicar linha" - -#: pro/fields/class-acf-repeater-table.php:404 -msgid "Remove row" -msgstr "Remover linha" - -#: pro/fields/class-acf-repeater-table.php:448, -#: pro/fields/class-acf-repeater-table.php:465, -#: pro/fields/class-acf-repeater-table.php:466 -msgid "Current Page" -msgstr "Página atual" - -#: pro/fields/class-acf-repeater-table.php:456, -#: pro/fields/class-acf-repeater-table.php:457 -msgid "First Page" -msgstr "Primeira página" - -#: pro/fields/class-acf-repeater-table.php:460, -#: pro/fields/class-acf-repeater-table.php:461 -msgid "Previous Page" -msgstr "Página anterior" - -#. translators: 1: Current page, 2: Total pages. -#: pro/fields/class-acf-repeater-table.php:470 -msgctxt "paging" -msgid "%1$s of %2$s" -msgstr "%1$s de %2$s" - -#: pro/fields/class-acf-repeater-table.php:477, -#: pro/fields/class-acf-repeater-table.php:478 -msgid "Next Page" -msgstr "Próxima página" - -#: pro/fields/class-acf-repeater-table.php:481, -#: pro/fields/class-acf-repeater-table.php:482 -msgid "Last Page" -msgstr "Última página" - -#: pro/locations/class-acf-location-block.php:71 -msgid "No block types exist" -msgstr "Nenhum tipo de bloco existente" - -#: pro/locations/class-acf-location-options-page.php:70 -msgid "No options pages exist" -msgstr "Não existe nenhuma página de opções" - -#: pro/admin/views/html-settings-updates.php:6 -msgid "Deactivate License" -msgstr "Desativar licença" - -#: pro/admin/views/html-settings-updates.php:6 -msgid "Activate License" -msgstr "Ativar licença" - -#: pro/admin/views/html-settings-updates.php:16 -msgid "License Information" -msgstr "Informação da licença" - -#: pro/admin/views/html-settings-updates.php:34 -msgid "" -"To unlock updates, please enter your license key below. If you don't have a " -"licence key, please see details & pricing." -msgstr "" -"Para desbloquear atualizações, digite sua chave de licença abaixo. Se você " -"não tiver uma chave de licença, consulte detalhes e preços." - -#: pro/admin/views/html-settings-updates.php:37 -msgid "License Key" -msgstr "Chave de licença" - -#: pro/admin/views/html-settings-updates.php:22 -msgid "Your license key is defined in wp-config.php." -msgstr "Sua chave de licença é definida em wp-config.php." - -#: pro/admin/views/html-settings-updates.php:29 -msgid "Retry Activation" -msgstr "Tentar ativação novamente" - -#: pro/admin/views/html-settings-updates.php:61 -msgid "Update Information" -msgstr "Informação da atualização" - -#: pro/admin/views/html-settings-updates.php:68 -msgid "Current Version" -msgstr "Versão atual" - -#: pro/admin/views/html-settings-updates.php:76 -msgid "Latest Version" -msgstr "Versão mais recente" - -#: pro/admin/views/html-settings-updates.php:84 -msgid "Update Available" -msgstr "Atualização disponível" - -#: pro/admin/views/html-settings-updates.php:98 -msgid "Upgrade Notice" -msgstr "Aviso de atualização" - -#: pro/admin/views/html-settings-updates.php:126 -msgid "Check For Updates" -msgstr "Verificar atualizações" - -#: pro/admin/views/html-settings-updates.php:121 -msgid "Enter your license key to unlock updates" -msgstr "Digite sua chave de licença para desbloquear atualizações" - -#: pro/admin/views/html-settings-updates.php:119 -msgid "Update Plugin" -msgstr "Atualizar plugin" - -#: pro/admin/views/html-settings-updates.php:117 -msgid "Please reactivate your license to unlock updates" -msgstr "Reative sua licença para desbloquear as atualizações" diff --git a/lang/acf-pt_PT.mo b/lang/acf-pt_PT.mo deleted file mode 100644 index 9b39e0b..0000000 Binary files a/lang/acf-pt_PT.mo and /dev/null differ diff --git a/lang/acf-pt_PT.po b/lang/acf-pt_PT.po deleted file mode 100644 index 2a631be..0000000 --- a/lang/acf-pt_PT.po +++ /dev/null @@ -1,6217 +0,0 @@ -# Advanced Custom Fields Translations are a combination of translate.wordpress.org contributions, -# combined with user contributed strings for the PRO version. -# Translations from translate.wordpress.org take priority over translations in this file. -# translate.wordpress.org contributions are synced at the time of each release. -# -# If you would like to contribute translations, please visit -# https://translate.wordpress.org/projects/wp-plugins/advanced-custom-fields/stable/ -# -# For additional ACF PRO strings, please submit a pull request over on the ACF GitHub repo at -# http://github.com/advancedcustomfields/acf using the .pot (and any existing .po) files in /lang/pro/ -# -# This file is distributed under the same license as Advanced Custom Fields. -msgid "" -msgstr "" -"PO-Revision-Date: 2023-11-28T09:14:32+00:00\n" -"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n" -"Language: pt_PT\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: gettext\n" -"Project-Id-Version: Advanced Custom Fields\n" - -#: includes/admin/views/global/navigation.php:221 -msgid "Renew ACF PRO License" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:17 -msgid "Renew License" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:14 -msgid "Manage License" -msgstr "" - -#: includes/admin/views/acf-field-group/options.php:102 -msgid "'High' position not supported in the Block Editor" -msgstr "" - -#: includes/admin/views/options-page-preview.php:30 -msgid "Upgrade to ACF PRO" -msgstr "" - -#. translators: %s URL to ACF options pages documentation -#: includes/admin/views/options-page-preview.php:7 -msgid "" -"ACF options pages are custom admin " -"pages for managing global settings via fields. You can create multiple pages " -"and sub-pages." -msgstr "" - -#: includes/admin/views/global/header.php:35 -msgid "Add Options Page" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:703 -msgid "In the editor used as the placeholder of the title." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:702 -msgid "Title Placeholder" -msgstr "" - -#: includes/admin/views/global/navigation.php:97 -msgid "4 Months Free" -msgstr "" - -#. translators: %s - A singular label for a post type or taxonomy. -#: includes/admin/views/global/form-top.php:56 -msgid " (Duplicated from %s)" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:298 -msgid "Select Options Pages" -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:107 -msgid "Duplicate taxonomy" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:106 -#: includes/admin/post-types/admin-taxonomy.php:106 -msgid "Create taxonomy" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:105 -msgid "Duplicate post type" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:104 -#: includes/admin/post-types/admin-taxonomy.php:108 -msgid "Create post type" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:103 -#: includes/admin/post-types/admin-taxonomy.php:105 -msgid "Link field groups" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:102 -#: includes/admin/post-types/admin-taxonomy.php:104 -msgid "Add fields" -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:121 -#: assets/build/js/acf-field-group.js:2753 -#: assets/build/js/acf-field-group.js:3236 -msgid "This Field" -msgstr "" - -#: includes/admin/admin.php:267 -msgid "ACF PRO" -msgstr "" - -#: includes/admin/admin.php:265 -msgid "Feedback" -msgstr "" - -#: includes/admin/admin.php:263 -msgid "Support" -msgstr "" - -#. translators: This text is prepended by a link to ACF's website, and appended -#. by a link to WP Engine's website. -#: includes/admin/admin.php:238 -msgid "is developed and maintained by" -msgstr "" - -#. translators: %s - either "post type" or "taxonomy" -#: includes/admin/admin-internal-post-type.php:321 -msgid "Add this %s to the location rules of the selected field groups." -msgstr "" - -#. translators: %s the URL to ACF's bidirectional relationship documentation -#: includes/acf-bidirectional-functions.php:271 -msgid "" -"Enabling the bidirectional setting allows you to update a value in the " -"target fields for each value selected for this field, adding or removing the " -"Post ID, Taxonomy ID or User ID of the item being updated. For more " -"information, please read the documentation." -msgstr "" - -#: includes/acf-bidirectional-functions.php:247 -msgid "" -"Select field(s) to store the reference back to the item being updated. You " -"may select this field. Target fields must be compatible with where this " -"field is being displayed. For example, if this field is displayed on a " -"Taxonomy, your target field should be of type Taxonomy" -msgstr "" - -#: includes/acf-bidirectional-functions.php:246 -msgid "Target Field" -msgstr "" - -#: includes/acf-bidirectional-functions.php:220 -msgid "Update a field on the selected values, referencing back to this ID" -msgstr "" - -#: includes/acf-bidirectional-functions.php:219 -msgid "Bidirectional" -msgstr "" - -#. translators: %s A field type name, such as "Relationship" -#: includes/acf-bidirectional-functions.php:192 -msgid "%s Field" -msgstr "" - -#: includes/fields/class-acf-field-page_link.php:517 -#: includes/fields/class-acf-field-post_object.php:426 -#: includes/fields/class-acf-field-select.php:407 -#: includes/fields/class-acf-field-user.php:82 -msgid "Select Multiple" -msgstr "Seleccionar múltiplos" - -#: includes/admin/views/global/navigation.php:233 -msgid "WP Engine logo" -msgstr "Logótipo da WP Engine" - -#: includes/admin/views/acf-taxonomy/basic-settings.php:58 -msgid "Lower case letters, underscores and dashes only, Max 32 characters." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1136 -msgid "The capability name for assigning terms of this taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1135 -msgid "Assign Terms Capability" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1119 -msgid "The capability name for deleting terms of this taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1118 -msgid "Delete Terms Capability" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1102 -msgid "The capability name for editing terms of this taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1101 -msgid "Edit Terms Capability" -msgstr "Editar capacidade dos termos" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1085 -msgid "The capability name for managing terms of this taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1084 -msgid "Manage Terms Capability" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:886 -msgid "" -"Sets whether posts should be excluded from search results and taxonomy " -"archive pages." -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:74 -msgid "More Tools from WP Engine" -msgstr "Mais ferramentas da WP Engine" - -#. translators: %s - WP Engine logo -#: includes/admin/views/acf-field-group/pro-features.php:69 -msgid "Built for those that build with WordPress, by the team at %s" -msgstr "Criado para quem constrói com o WordPress, pela equipa da %s" - -#: includes/admin/views/acf-field-group/pro-features.php:6 -msgid "View Pricing & Upgrade" -msgstr "Ver preços e actualização" - -#: includes/admin/views/acf-field-group/pro-features.php:3 -#: includes/admin/views/options-page-preview.php:29 -msgid "Learn More" -msgstr "Saiba mais" - -#: includes/admin/views/acf-field-group/pro-features.php:28 -msgid "" -"Speed up your workflow and develop better websites with features like ACF " -"Blocks and Options Pages, and sophisticated field types like Repeater, " -"Flexible Content, Clone, and Gallery." -msgstr "" -"Acelere o seu fluxo de trabalho e desenvolva melhores sites com " -"funcionalidades como blocos ACF, páginas de opções, e tipos de campos " -"sofisticados como Repetidor, Conteúdo Flexível, Clone e Galeria." - -#: includes/admin/views/acf-field-group/pro-features.php:2 -msgid "Unlock Advanced Features and Build Even More with ACF PRO" -msgstr "Desbloqueie funcionalidades avançadas e crie ainda mais com o ACF PRO" - -#. translators: %s - singular label of post type/taxonomy, i.e. "Movie"/"Genre" -#: includes/admin/views/global/form-top.php:19 -msgid "%s fields" -msgstr "Campos de %s" - -#: includes/admin/post-types/admin-taxonomies.php:293 -msgid "No terms" -msgstr "Nenhum termo" - -#: includes/admin/post-types/admin-taxonomies.php:266 -msgid "No post types" -msgstr "Nenhum tipo de conteúdo" - -#: includes/admin/post-types/admin-post-types.php:289 -msgid "No posts" -msgstr "Nenhum conteúdo" - -#: includes/admin/post-types/admin-post-types.php:263 -msgid "No taxonomies" -msgstr "Nenhuma taxonomia" - -#: includes/admin/post-types/admin-post-types.php:208 -#: includes/admin/post-types/admin-taxonomies.php:208 -msgid "No field groups" -msgstr "Nenhum grupo de campos" - -#: includes/admin/post-types/admin-field-groups.php:281 -msgid "No fields" -msgstr "Nenhum campo" - -#: includes/admin/post-types/admin-field-groups.php:154 -#: includes/admin/post-types/admin-post-types.php:172 -#: includes/admin/post-types/admin-taxonomies.php:172 -msgid "No description" -msgstr "Nenhuma descrição" - -#: includes/fields/class-acf-field-page_link.php:484 -#: includes/fields/class-acf-field-post_object.php:389 -#: includes/fields/class-acf-field-relationship.php:601 -msgid "Any post status" -msgstr "Qualquer estado de publicação" - -#: includes/post-types/class-acf-taxonomy.php:284 -msgid "" -"This taxonomy key is already in use by another taxonomy registered outside " -"of ACF and cannot be used." -msgstr "" -"Esta chave de taxonomia já está a ser utilizada por outra taxonomia " -"registada fora do ACF e não pode ser utilizada." - -#: includes/post-types/class-acf-taxonomy.php:279 -msgid "" -"This taxonomy key is already in use by another taxonomy in ACF and cannot be " -"used." -msgstr "" -"Esta chave de taxonomia já está a ser utilizada por outra taxonomia no ACF e " -"não pode ser utilizada." - -#: includes/post-types/class-acf-taxonomy.php:252 -msgid "" -"The taxonomy key must only contain lower case alphanumeric characters, " -"underscores or dashes." -msgstr "" -"A chave da taxonomia só pode conter caracteres alfanuméricos minúsculos, " -"underscores e hífenes." - -#: includes/post-types/class-acf-taxonomy.php:247 -msgid "The taxonomy key must be under 32 characters." -msgstr "A chave da taxonomia tem de ter menos de 32 caracteres." - -#: includes/post-types/class-acf-taxonomy.php:99 -msgid "No Taxonomies found in Trash" -msgstr "Nenhuma taxonomia encontrada no lixo" - -#: includes/post-types/class-acf-taxonomy.php:98 -msgid "No Taxonomies found" -msgstr "Nenhuma taxonomia encontrada" - -#: includes/post-types/class-acf-taxonomy.php:97 -msgid "Search Taxonomies" -msgstr "Pesquisar taxonomias" - -#: includes/post-types/class-acf-taxonomy.php:96 -msgid "View Taxonomy" -msgstr "Ver taxonomias" - -#: includes/post-types/class-acf-taxonomy.php:95 -msgid "New Taxonomy" -msgstr "Nova taxonomia" - -#: includes/post-types/class-acf-taxonomy.php:94 -msgid "Edit Taxonomy" -msgstr "Editar taxonomia" - -#: includes/post-types/class-acf-taxonomy.php:93 -msgid "Add New Taxonomy" -msgstr "Adicionar nova taxonomia" - -#: includes/post-types/class-acf-post-type.php:100 -msgid "No Post Types found in Trash" -msgstr "Nenhum tipo de conteúdo encontrado no lixo" - -#: includes/post-types/class-acf-post-type.php:99 -msgid "No Post Types found" -msgstr "Nenhum tipo de conteúdo encontrado" - -#: includes/post-types/class-acf-post-type.php:98 -msgid "Search Post Types" -msgstr "Pesquisar tipos de conteúdo" - -#: includes/post-types/class-acf-post-type.php:97 -msgid "View Post Type" -msgstr "Ver tipo de conteúdo" - -#: includes/post-types/class-acf-post-type.php:96 -msgid "New Post Type" -msgstr "Novo tipo de conteúdo" - -#: includes/post-types/class-acf-post-type.php:95 -msgid "Edit Post Type" -msgstr "Editar tipo de conteúdo" - -#: includes/post-types/class-acf-post-type.php:94 -msgid "Add New Post Type" -msgstr "Adicionar novo tipo de conteúdo" - -#: includes/post-types/class-acf-post-type.php:361 -msgid "" -"This post type key is already in use by another post type registered outside " -"of ACF and cannot be used." -msgstr "" -"Esta chave de tipo de conteúdo já está a ser utilizada por outro tipo de " -"conteúdo registado fora do ACF e não pode ser utilizada." - -#: includes/post-types/class-acf-post-type.php:356 -msgid "" -"This post type key is already in use by another post type in ACF and cannot " -"be used." -msgstr "" -"Esta chave de tipo de conteúdo já está a ser utilizada por outro tipo de " -"conteúdo no ACF e não pode ser utilizada." - -#. translators: %s a link to WordPress.org's Reserved Terms page -#: includes/post-types/class-acf-post-type.php:335 -#: includes/post-types/class-acf-taxonomy.php:258 -msgid "" -"This field must not be a WordPress reserved " -"term." -msgstr "" - -#: includes/post-types/class-acf-post-type.php:329 -msgid "" -"The post type key must only contain lower case alphanumeric characters, " -"underscores or dashes." -msgstr "" - -#: includes/post-types/class-acf-post-type.php:324 -msgid "The post type key must be under 20 characters." -msgstr "" - -#: pro/fields/class-acf-field-flexible-content.php:27 -msgid "We do not recommend using this field in ACF Blocks." -msgstr "Não recomendamos utilizar este campo em blocos ACF." - -#: includes/fields/class-acf-field-wysiwyg.php:27 -msgid "" -"Displays the WordPress WYSIWYG editor as seen in Posts and Pages allowing " -"for a rich text-editing experience that also allows for multimedia content." -msgstr "" - -#: includes/fields/class-acf-field-wysiwyg.php:25 -msgid "WYSIWYG Editor" -msgstr "Editor WYSIWYG" - -#: includes/fields/class-acf-field-user.php:17 -msgid "" -"Allows the selection of one or more users which can be used to create " -"relationships between data objects." -msgstr "" - -#: includes/fields/class-acf-field-url.php:26 -msgid "A text input specifically designed for storing web addresses." -msgstr "" - -#: includes/fields/class-acf-field-url.php:25 -msgid "URL" -msgstr "URL" - -#: includes/fields/class-acf-field-true_false.php:27 -msgid "" -"A toggle that allows you to pick a value of 1 or 0 (on or off, true or " -"false, etc). Can be presented as a stylized switch or checkbox." -msgstr "" - -#: includes/fields/class-acf-field-time_picker.php:27 -msgid "" -"An interactive UI for picking a time. The time format can be customized " -"using the field settings." -msgstr "" - -#: includes/fields/class-acf-field-textarea.php:26 -msgid "A basic textarea input for storing paragraphs of text." -msgstr "" - -#: includes/fields/class-acf-field-text.php:26 -msgid "A basic text input, useful for storing single string values." -msgstr "" - -#: includes/fields/class-acf-field-taxonomy.php:22 -msgid "" -"Allows the selection of one or more taxonomy terms based on the criteria and " -"options specified in the fields settings." -msgstr "" - -#: includes/fields/class-acf-field-tab.php:28 -msgid "" -"Allows you to group fields into tabbed sections in the edit screen. Useful " -"for keeping fields organized and structured." -msgstr "" - -#: includes/fields/class-acf-field-select.php:27 -msgid "A dropdown list with a selection of choices that you specify." -msgstr "" - -#: includes/fields/class-acf-field-relationship.php:19 -msgid "" -"A dual-column interface to select one or more posts, pages, or custom post " -"type items to create a relationship with the item that you're currently " -"editing. Includes options to search and filter." -msgstr "" - -#: includes/fields/class-acf-field-range.php:26 -msgid "" -"An input for selecting a numerical value within a specified range using a " -"range slider element." -msgstr "" - -#: includes/fields/class-acf-field-radio.php:27 -msgid "" -"A group of radio button inputs that allows the user to make a single " -"selection from values that you specify." -msgstr "" - -#: includes/fields/class-acf-field-post_object.php:19 -msgid "" -"An interactive and customizable UI for picking one or many posts, pages or " -"post type items with the option to search. " -msgstr "" - -#: includes/fields/class-acf-field-password.php:26 -msgid "An input for providing a password using a masked field." -msgstr "" - -#: includes/fields/class-acf-field-page_link.php:476 -#: includes/fields/class-acf-field-post_object.php:381 -#: includes/fields/class-acf-field-relationship.php:593 -msgid "Filter by Post Status" -msgstr "Filtrar por estado de publicação" - -#: includes/fields/class-acf-field-page_link.php:27 -msgid "" -"An interactive dropdown to select one or more posts, pages, custom post type " -"items or archive URLs, with the option to search." -msgstr "" - -#: includes/fields/class-acf-field-oembed.php:27 -msgid "" -"An interactive component for embedding videos, images, tweets, audio and " -"other content by making use of the native WordPress oEmbed functionality." -msgstr "" - -#: includes/fields/class-acf-field-number.php:26 -msgid "An input limited to numerical values." -msgstr "" - -#: includes/fields/class-acf-field-message.php:28 -msgid "" -"Used to display a message to editors alongside other fields. Useful for " -"providing additional context or instructions around your fields." -msgstr "" - -#: includes/fields/class-acf-field-link.php:27 -msgid "" -"Allows you to specify a link and its properties such as title and target " -"using the WordPress native link picker." -msgstr "" - -#: includes/fields/class-acf-field-image.php:27 -msgid "Uses the native WordPress media picker to upload, or choose images." -msgstr "" - -#: includes/fields/class-acf-field-group.php:27 -msgid "" -"Provides a way to structure fields into groups to better organize the data " -"and the edit screen." -msgstr "" - -#: includes/fields/class-acf-field-google-map.php:27 -msgid "" -"An interactive UI for selecting a location using Google Maps. Requires a " -"Google Maps API key and additional configuration to display correctly." -msgstr "" - -#: includes/fields/class-acf-field-file.php:27 -msgid "Uses the native WordPress media picker to upload, or choose files." -msgstr "" - -#: includes/fields/class-acf-field-email.php:26 -msgid "A text input specifically designed for storing email addresses." -msgstr "" - -#: includes/fields/class-acf-field-date_time_picker.php:27 -msgid "" -"An interactive UI for picking a date and time. The date return format can be " -"customized using the field settings." -msgstr "" - -#: includes/fields/class-acf-field-date_picker.php:27 -msgid "" -"An interactive UI for picking a date. The date return format can be " -"customized using the field settings." -msgstr "" - -#: includes/fields/class-acf-field-color_picker.php:27 -msgid "An interactive UI for selecting a color, or specifying a Hex value." -msgstr "" - -#: includes/fields/class-acf-field-checkbox.php:27 -msgid "" -"A group of checkbox inputs that allow the user to select one, or multiple " -"values that you specify." -msgstr "" - -#: includes/fields/class-acf-field-button-group.php:26 -msgid "" -"A group of buttons with values that you specify, users can choose one option " -"from the values provided." -msgstr "" - -#: includes/fields/class-acf-field-accordion.php:27 -msgid "" -"Allows you to group and organize custom fields into collapsable panels that " -"are shown while editing content. Useful for keeping large datasets tidy." -msgstr "" - -#: includes/fields.php:475 -msgid "" -"This provides a solution for repeating content such as slides, team members, " -"and call-to-action tiles, by acting as a parent to a set of subfields which " -"can be repeated again and again." -msgstr "" - -#: includes/fields.php:465 -msgid "" -"This provides an interactive interface for managing a collection of " -"attachments. Most settings are similar to the Image field type. Additional " -"settings allow you to specify where new attachments are added in the gallery " -"and the minimum/maximum number of attachments allowed." -msgstr "" - -#: includes/fields.php:455 -msgid "" -"This provides a simple, structured, layout-based editor. The Flexible " -"Content field allows you to define, create and manage content with total " -"control by using layouts and subfields to design the available blocks." -msgstr "" - -#: includes/fields.php:445 -msgid "" -"This allows you to select and display existing fields. It does not duplicate " -"any fields in the database, but loads and displays the selected fields at " -"run-time. The Clone field can either replace itself with the selected fields " -"or display the selected fields as a group of subfields." -msgstr "" - -#: includes/fields.php:442 -msgctxt "noun" -msgid "Clone" -msgstr "Clone" - -#: includes/admin/views/global/navigation.php:86 includes/fields.php:357 -msgid "PRO" -msgstr "PRO" - -#: includes/fields.php:355 includes/fields.php:412 -msgid "Advanced" -msgstr "Avançado" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:85 -msgid "JSON (newer)" -msgstr "JSON (mais recente)" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:81 -msgid "Original" -msgstr "Original" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:55 -msgid "Invalid post ID." -msgstr "O ID do conteúdo é inválido." - -#: includes/ajax/class-acf-ajax-local-json-diff.php:47 -msgid "Invalid post type selected for review." -msgstr "" - -#: includes/admin/views/global/navigation.php:186 -msgid "More" -msgstr "Mais" - -#: includes/admin/views/browse-fields-modal.php:86 -msgid "Tutorial" -msgstr "Tutorial" - -#: includes/admin/views/browse-fields-modal.php:75 -msgid "Available with ACF PRO" -msgstr "" - -#: includes/admin/views/browse-fields-modal.php:63 -msgid "Select Field" -msgstr "Seleccione o campo" - -#. translators: %s: A link to the popular fields used in ACF -#: includes/admin/views/browse-fields-modal.php:50 -msgid "Try a different search term or browse %s" -msgstr "" - -#: includes/admin/views/browse-fields-modal.php:47 -msgid "Popular fields" -msgstr "" - -#. translators: %s: The invalid search term -#: includes/admin/views/browse-fields-modal.php:40 -msgid "No search results for '%s'" -msgstr "" - -#: includes/admin/views/browse-fields-modal.php:13 -msgid "Search fields..." -msgstr "Pesquisar campos..." - -#: includes/admin/views/browse-fields-modal.php:11 -msgid "Select Field Type" -msgstr "Seleccione o tipo de campo" - -#: includes/admin/views/browse-fields-modal.php:4 -msgid "Popular" -msgstr "Populares" - -#: includes/admin/views/acf-taxonomy/list-empty.php:7 -msgid "Add Taxonomy" -msgstr "Adicionar taxonomia" - -#: includes/admin/views/acf-taxonomy/list-empty.php:6 -msgid "Create custom taxonomies to classify post type content" -msgstr "" - -#: includes/admin/views/acf-taxonomy/list-empty.php:5 -msgid "Add Your First Taxonomy" -msgstr "" - -#: includes/admin/views/acf-taxonomy/basic-settings.php:122 -msgid "Hierarchical taxonomies can have descendants (like categories)." -msgstr "" - -#: includes/admin/views/acf-taxonomy/basic-settings.php:107 -msgid "Makes a taxonomy visible on the frontend and in the admin dashboard." -msgstr "" - -#: includes/admin/views/acf-taxonomy/basic-settings.php:91 -msgid "One or many post types that can be classified with this taxonomy." -msgstr "" - -#. translators: example taxonomy -#: includes/admin/views/acf-taxonomy/basic-settings.php:60 -msgid "genre" -msgstr "" - -#. translators: example taxonomy -#: includes/admin/views/acf-taxonomy/basic-settings.php:42 -msgid "Genre" -msgstr "Género" - -#. translators: example taxonomy -#: includes/admin/views/acf-taxonomy/basic-settings.php:25 -msgid "Genres" -msgstr "Géneros" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1211 -msgid "" -"Optional custom controller to use instead of `WP_REST_Terms_Controller `." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1155 -msgid "Expose this post type in the REST API." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1055 -msgid "Customize the query variable name" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1028 -msgid "" -"Terms can be accessed using the non-pretty permalink, e.g., {query_var}" -"={term_slug}." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:981 -msgid "Parent-child terms in URLs for hierarchical taxonomies." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:941 -msgid "Customize the slug used in the URL" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:924 -msgid "Permalinks for this taxonomy are disabled." -msgstr "" - -#. translators: this string will be appended with the new permalink structure. -#: includes/admin/views/acf-taxonomy/advanced-settings.php:921 -msgid "" -"Rewrite the URL using the taxonomy key as the slug. Your permalink structure " -"will be" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:913 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1030 -#: includes/admin/views/acf-taxonomy/basic-settings.php:57 -msgid "Taxonomy Key" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:911 -msgid "Select the type of permalink to use for this taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:896 -msgid "Display a column for the taxonomy on post type listing screens." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:895 -msgid "Show Admin Column" -msgstr "Mostrar coluna de administração" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:882 -msgid "Show the taxonomy in the quick/bulk edit panel." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:881 -msgid "Quick Edit" -msgstr "Edição rápida" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:868 -msgid "List the taxonomy in the Tag Cloud Widget controls." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:867 -msgid "Tag Cloud" -msgstr "Nuvem de etiquetas" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:824 -msgid "" -"A PHP function name to be called for sanitizing taxonomy data saved from a " -"meta box." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:823 -msgid "Meta Box Sanitization Callback" -msgstr "Callback de sanitização da metabox" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:805 -msgid "" -"A PHP function name to be called to handle the content of a meta box on your " -"taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:804 -msgid "Register Meta Box Callback" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:763 -msgid "No Meta Box" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:762 -msgid "Custom Meta Box" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:758 -msgid "" -"Controls the meta box on the content editor screen. By default, the " -"Categories meta box is shown for hierarchical taxonomies, and the Tags meta " -"box is shown for non-hierarchical taxonomies." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:757 -msgid "Meta Box" -msgstr "Metabox" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:746 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:767 -msgid "Categories Meta Box" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:745 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:766 -msgid "Tags Meta Box" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:704 -msgid "A link to a tag" -msgstr "Uma ligação para uma etiqueta" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:703 -msgid "Describes a navigation link block variation used in the block editor." -msgstr "" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:698 -msgid "A link to a %s" -msgstr "Uma ligação para um %s" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:683 -msgid "Tag Link" -msgstr "Ligação da etiqueta" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:682 -msgid "" -"Assigns a title for navigation link block variation used in the block editor." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:663 -msgid "← Go to tags" -msgstr "← Ir para etiquetas" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:662 -msgid "" -"Assigns the text used to link back to the main index after updating a term." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:661 -msgid "Back To Items" -msgstr "Voltar para os itens" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:657 -msgid "← Go to %s" -msgstr "← Ir para %s" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:642 -msgid "Tags list" -msgstr "Lista de etiquetas" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:641 -msgid "Assigns text to the table hidden heading." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:622 -msgid "Tags list navigation" -msgstr "Navegação da lista de etiquetas" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:621 -msgid "Assigns text to the table pagination hidden heading." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:597 -msgid "Filter by category" -msgstr "Filtrar por categoria" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:596 -msgid "Assigns text to the filter button in the posts lists table." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:595 -msgid "Filter By Item" -msgstr "Filtrar por item" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:591 -msgid "Filter by %s" -msgstr "Filtrar por %s" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:575 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:576 -msgid "" -"The description is not prominent by default; however, some themes may show " -"it." -msgstr "" -"Por omissão, a descrição não está proeminente, no entanto alguns temas " -"poderão apresentá-la." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:574 -msgid "Describes the Description field on the Edit Tags screen." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:573 -msgid "Description Field Description" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:554 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:555 -msgid "" -"Assign a parent term to create a hierarchy. The term Jazz, for example, " -"would be the parent of Bebop and Big Band" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:553 -msgid "Describes the Parent field on the Edit Tags screen." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:552 -msgid "Parent Field Description" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:538 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:539 -msgid "" -"The \"slug\" is the URL-friendly version of the name. It is usually all " -"lower case and contains only letters, numbers, and hyphens." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:537 -msgid "Describes the Slug field on the Edit Tags screen." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:536 -msgid "Slug Field Description" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:522 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:523 -msgid "The name is how it appears on your site" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:521 -msgid "Describes the Name field on the Edit Tags screen." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:520 -msgid "Name Field Description" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:507 -msgid "No tags" -msgstr "Nenhuma etiqueta" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:506 -msgid "" -"Assigns the text displayed in the posts and media list tables when no tags " -"or categories are available." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:505 -msgid "No Terms" -msgstr "Nenhum termo" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:501 -msgid "No %s" -msgstr "Nenhum %s" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:486 -msgid "No tags found" -msgstr "Nenhuma etiqueta encontrada" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:485 -msgid "" -"Assigns the text displayed when clicking the 'choose from most used' text in " -"the taxonomy meta box when no tags are available, and assigns the text used " -"in the terms list table when there are no items for a taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:484 -msgid "Not Found" -msgstr "Nada encontrado" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:463 -msgid "Assigns text to the Title field of the Most Used tab." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:462 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:464 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:465 -msgid "Most Used" -msgstr "Mais usadas" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:444 -msgid "Choose from the most used tags" -msgstr "Escolha entre as etiquetas mais usadas" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:443 -msgid "" -"Assigns the 'choose from most used' text used in the meta box when " -"JavaScript is disabled. Only used on non-hierarchical taxonomies." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:442 -msgid "Choose From Most Used" -msgstr "Escolher entre os mais utilizados" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:438 -msgid "Choose from the most used %s" -msgstr "Escolher entre %s mais utilizados(as)" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:418 -msgid "Add or remove tags" -msgstr "Adicionar ou remover etiquetas" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:417 -msgid "" -"Assigns the add or remove items text used in the meta box when JavaScript is " -"disabled. Only used on non-hierarchical taxonomies" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:416 -msgid "Add Or Remove Items" -msgstr "" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:412 -msgid "Add or remove %s" -msgstr "Adicionar ou remover %s" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:392 -msgid "Separate tags with commas" -msgstr "Separe as etiquetas por vírgulas" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:391 -msgid "" -"Assigns the separate item with commas text used in the taxonomy meta box. " -"Only used on non-hierarchical taxonomies." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:390 -msgid "Separate Items With Commas" -msgstr "Separe os itens por vírgulas" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:386 -msgid "Separate %s with commas" -msgstr "Separar %s por vírgulas" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:366 -msgid "Popular Tags" -msgstr "Etiquetas populares" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:365 -msgid "Assigns popular items text. Only used for non-hierarchical taxonomies." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:364 -msgid "Popular Items" -msgstr "Itens populares" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:361 -msgid "Popular %s" -msgstr "%s mais populares" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:347 -msgid "Search Tags" -msgstr "Pesquisar etiquetas" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:346 -msgid "Assigns search items text." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:323 -msgid "Parent Category:" -msgstr "Categoria superior:" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:322 -msgid "Assigns parent item text, but with a colon (:) added to the end." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:321 -msgid "Parent Item With Colon" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:298 -msgid "Parent Category" -msgstr "Categoria superior" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:297 -msgid "Assigns parent item text. Only used on hierarchical taxonomies." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:296 -msgid "Parent Item" -msgstr "Item superior" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:293 -msgid "Parent %s" -msgstr "%s superior" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:278 -msgid "New Tag Name" -msgstr "Nome da nova etiqueta" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:277 -msgid "Assigns the new item name text." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:276 -msgid "New Item Name" -msgstr "Nome do novo item" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:273 -msgid "New %s Name" -msgstr "Nome do novo %s" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:258 -msgid "Add New Tag" -msgstr "Adicionar nova etiqueta" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:257 -msgid "Assigns the add new item text." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:238 -msgid "Update Tag" -msgstr "Actualizar etiqueta" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:237 -msgid "Assigns the update item text." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:236 -msgid "Update Item" -msgstr "Actualizar item" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:233 -msgid "Update %s" -msgstr "Actualizar %s" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:218 -msgid "View Tag" -msgstr "Ver etiqueta" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:217 -msgid "In the admin bar to view term during editing." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:198 -msgid "Edit Tag" -msgstr "Editar etiqueta" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:197 -msgid "At the top of the editor screen when editing a term." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:178 -msgid "All Tags" -msgstr "Todas as etiquetas" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:177 -msgid "Assigns the all items text." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:158 -msgid "Assigns the menu name text." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:157 -msgid "Menu Label" -msgstr "Legenda do menu" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:131 -msgid "Active taxonomies are enabled and registered with WordPress." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:115 -msgid "A descriptive summary of the taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:95 -msgid "A descriptive summary of the term." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:94 -msgid "Term Description" -msgstr "Descrição do termo" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:76 -msgid "Single word, no spaces. Underscores and dashes allowed." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:75 -msgid "Term Slug" -msgstr "Slug do termo" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:56 -msgid "The name of the default term." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:55 -msgid "Term Name" -msgstr "Nome do termo" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:41 -msgid "" -"Create a term for the taxonomy that cannot be deleted. It will not be " -"selected for posts by default." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:40 -msgid "Default Term" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:28 -msgid "" -"Whether terms in this taxonomy should be sorted in the order they are " -"provided to `wp_set_object_terms()`." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:27 -msgid "Sort Terms" -msgstr "" - -#: includes/admin/views/acf-post-type/list-empty.php:7 -msgid "Add Post Type" -msgstr "Adicionar tipo de conteúdo" - -#: includes/admin/views/acf-post-type/list-empty.php:6 -msgid "" -"Expand the functionality of WordPress beyond standard posts and pages with " -"custom post types." -msgstr "" - -#: includes/admin/views/acf-post-type/list-empty.php:5 -msgid "Add Your First Post Type" -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:136 -#: includes/admin/views/acf-taxonomy/basic-settings.php:135 -msgid "I know what I'm doing, show me all the options." -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:135 -#: includes/admin/views/acf-taxonomy/basic-settings.php:134 -msgid "Advanced Configuration" -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:123 -msgid "Hierarchical post types can have descendants (like pages)." -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:122 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:980 -#: includes/admin/views/acf-taxonomy/basic-settings.php:121 -msgid "Hierarchical" -msgstr "Hierárquico" - -#: includes/admin/views/acf-post-type/basic-settings.php:107 -msgid "Visible on the frontend and in the admin dashboard." -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:106 -#: includes/admin/views/acf-taxonomy/basic-settings.php:106 -msgid "Public" -msgstr "Público" - -#. translators: example post type -#: includes/admin/views/acf-post-type/basic-settings.php:59 -msgid "movie" -msgstr "filme" - -#: includes/admin/views/acf-post-type/basic-settings.php:57 -msgid "Lower case letters, underscores and dashes only, Max 20 characters." -msgstr "" - -#. translators: example post type -#: includes/admin/views/acf-post-type/basic-settings.php:41 -msgid "Movie" -msgstr "Filme" - -#: includes/admin/views/acf-post-type/basic-settings.php:39 -#: includes/admin/views/acf-taxonomy/basic-settings.php:40 -msgid "Singular Label" -msgstr "Legenda no singular" - -#. translators: example post type -#: includes/admin/views/acf-post-type/basic-settings.php:24 -msgid "Movies" -msgstr "Filmes" - -#: includes/admin/views/acf-post-type/basic-settings.php:22 -#: includes/admin/views/acf-taxonomy/basic-settings.php:23 -msgid "Plural Label" -msgstr "Legenda no plural" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1270 -msgid "" -"Optional custom controller to use instead of `WP_REST_Posts_Controller`." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1269 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1210 -msgid "Controller Class" -msgstr "Classe do controlador" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1251 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1191 -msgid "The namespace part of the REST API URL." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1250 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1190 -msgid "Namespace Route" -msgstr "Rota do namespace" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1232 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1172 -msgid "The base URL for the post type REST API URLs." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1231 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1171 -msgid "Base URL" -msgstr "URL de base" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1217 -msgid "" -"Exposes this post type in the REST API. Required to use the block editor." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1216 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1154 -msgid "Show In REST API" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1195 -msgid "Customize the query variable name." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1194 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1054 -msgid "Query Variable" -msgstr "Variável de consulta" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1172 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1032 -msgid "No Query Variable Support" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1171 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1031 -msgid "Custom Query Variable" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1168 -msgid "" -"Items can be accessed using the non-pretty permalink, eg. {post_type}" -"={post_slug}." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1167 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1027 -msgid "Query Variable Support" -msgstr "Suporte para variáveis de consulta" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1142 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1003 -msgid "URLs for an item and items can be accessed with a query string." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1141 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1002 -msgid "Publicly Queryable" -msgstr "Pesquisável publicamente" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1120 -msgid "Custom slug for the Archive URL." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1119 -msgid "Archive Slug" -msgstr "Slug do arquivo" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1106 -msgid "" -"Has an item archive that can be customized with an archive template file in " -"your theme." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1105 -msgid "Archive" -msgstr "Arquivo" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1085 -msgid "Pagination support for the items URLs such as the archives." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1084 -msgid "Pagination" -msgstr "Paginação" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1067 -msgid "RSS feed URL for the post type items." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1066 -msgid "Feed URL" -msgstr "URL do feed" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1048 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:961 -msgid "" -"Alters the permalink structure to add the `WP_Rewrite::$front` prefix to " -"URLs." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1047 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:960 -msgid "Front URL Prefix" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1028 -msgid "Customize the slug used in the URL." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1027 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:940 -msgid "URL Slug" -msgstr "Slug do URL" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1011 -msgid "Permalinks for this post type are disabled." -msgstr "" - -#. translators: this string will be appended with the new permalink structure. -#: includes/admin/views/acf-post-type/advanced-settings.php:1010 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:923 -msgid "" -"Rewrite the URL using a custom slug defined in the input below. Your " -"permalink structure will be" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1002 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:915 -msgid "No Permalink (prevent URL rewriting)" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1001 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:914 -msgid "Custom Permalink" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1000 -#: includes/admin/views/acf-post-type/advanced-settings.php:1170 -#: includes/admin/views/acf-post-type/basic-settings.php:56 -msgid "Post Type Key" -msgstr "" - -#. translators: this string will be appended with the new permalink structure. -#: includes/admin/views/acf-post-type/advanced-settings.php:998 -#: includes/admin/views/acf-post-type/advanced-settings.php:1008 -msgid "" -"Rewrite the URL using the post type key as the slug. Your permalink " -"structure will be" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:996 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:910 -msgid "Permalink Rewrite" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:982 -msgid "Delete items by a user when that user is deleted." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:981 -msgid "Delete With User" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:967 -msgid "Allow the post type to be exported from 'Tools' > 'Export'." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:966 -msgid "Can Export" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:935 -msgid "Optionally provide a plural to be used in capabilities." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:934 -msgid "Plural Capability Name" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:916 -msgid "Choose another post type to base the capabilities for this post type." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:915 -msgid "Singular Capability Name" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:901 -msgid "" -"By default the capabilities of the post type will inherit the 'Post' " -"capability names, eg. edit_post, delete_posts. Enable to use post type " -"specific capabilities, eg. edit_{singular}, delete_{plural}." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:900 -msgid "Rename Capabilities" -msgstr "Renomear capacidades" - -#: includes/admin/views/acf-post-type/advanced-settings.php:885 -msgid "Exclude From Search" -msgstr "Excluir da pesquisa" - -#: includes/admin/views/acf-post-type/advanced-settings.php:872 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:854 -msgid "" -"Allow items to be added to menus in the 'Appearance' > 'Menus' screen. Must " -"be turned on in 'Screen options'." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:871 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:853 -msgid "Appearance Menus Support" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:853 -msgid "Appears as an item in the 'New' menu in the admin bar." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:852 -msgid "Show In Admin Bar" -msgstr "Mostrar na barra da administração" - -#: includes/admin/views/acf-post-type/advanced-settings.php:821 -msgid "" -"A PHP function name to be called when setting up the meta boxes for the edit " -"screen." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:820 -msgid "Custom Meta Box Callback" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:800 -msgid "Menu Icon" -msgstr "Ícone do menu" - -#: includes/admin/views/acf-post-type/advanced-settings.php:782 -msgid "The position in the sidebar menu in the admin dashboard." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:781 -msgid "Menu Position" -msgstr "Posição no menu" - -#: includes/admin/views/acf-post-type/advanced-settings.php:763 -msgid "" -"By default the post type will get a new top level item in the admin menu. If " -"an existing top level item is supplied here, the post type will be added as " -"a submenu item under it." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:762 -msgid "Admin Menu Parent" -msgstr "" - -#. translators: %s = "dashicon class name", link to the WordPress dashicon -#. documentation. -#: includes/admin/views/acf-post-type/advanced-settings.php:750 -msgid "" -"The icon used for the post type menu item in the admin dashboard. Can be a " -"URL or %s to use for the icon." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:745 -msgid "Dashicon class name" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:734 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:734 -msgid "Admin editor navigation in the sidebar menu." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:733 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:733 -msgid "Show In Admin Menu" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:720 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:719 -msgid "Items can be edited and managed in the admin dashboard." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:719 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:718 -msgid "Show In UI" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:689 -msgid "A link to a post." -msgstr "Uma ligação para um conteúdo." - -#: includes/admin/views/acf-post-type/advanced-settings.php:688 -msgid "Description for a navigation link block variation." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:687 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:702 -msgid "Item Link Description" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:683 -msgid "A link to a %s." -msgstr "Uma ligação para um %s." - -#: includes/admin/views/acf-post-type/advanced-settings.php:668 -msgid "Post Link" -msgstr "Ligação do conteúdo" - -#: includes/admin/views/acf-post-type/advanced-settings.php:667 -msgid "Title for a navigation link block variation." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:666 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:681 -msgid "Item Link" -msgstr "" - -#. translators: %s Singular form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:663 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:678 -msgid "%s Link" -msgstr "Ligação de %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:648 -msgid "Post updated." -msgstr "Conteúdo actualizado." - -#: includes/admin/views/acf-post-type/advanced-settings.php:647 -msgid "In the editor notice after an item is updated." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:646 -msgid "Item Updated" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:643 -msgid "%s updated." -msgstr "%s actualizado." - -#: includes/admin/views/acf-post-type/advanced-settings.php:628 -msgid "Post scheduled." -msgstr "Conteúdo agendado." - -#: includes/admin/views/acf-post-type/advanced-settings.php:627 -msgid "In the editor notice after scheduling an item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:626 -msgid "Item Scheduled" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:623 -msgid "%s scheduled." -msgstr "%s agendado." - -#: includes/admin/views/acf-post-type/advanced-settings.php:608 -msgid "Post reverted to draft." -msgstr "Conteúdo revertido para rascunho." - -#: includes/admin/views/acf-post-type/advanced-settings.php:607 -msgid "In the editor notice after reverting an item to draft." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:606 -msgid "Item Reverted To Draft" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:603 -msgid "%s reverted to draft." -msgstr "%s revertido para rascunho." - -#: includes/admin/views/acf-post-type/advanced-settings.php:588 -msgid "Post published privately." -msgstr "Conteúdo publicado em privado." - -#: includes/admin/views/acf-post-type/advanced-settings.php:587 -msgid "In the editor notice after publishing a private item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:586 -msgid "Item Published Privately" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:583 -msgid "%s published privately." -msgstr "%s publicado em privado." - -#: includes/admin/views/acf-post-type/advanced-settings.php:568 -msgid "Post published." -msgstr "Conteúdo publicado." - -#: includes/admin/views/acf-post-type/advanced-settings.php:567 -msgid "In the editor notice after publishing an item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:566 -msgid "Item Published" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:563 -msgid "%s published." -msgstr "%s publicado." - -#: includes/admin/views/acf-post-type/advanced-settings.php:548 -msgid "Posts list" -msgstr "Lista de conteúdos" - -#: includes/admin/views/acf-post-type/advanced-settings.php:547 -msgid "Used by screen readers for the items list on the post type list screen." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:546 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:640 -msgid "Items List" -msgstr "Lista de itens" - -#. translators: %s Plural form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:543 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:637 -msgid "%s list" -msgstr "Lista de %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:528 -msgid "Posts list navigation" -msgstr "Navegação da lista de conteúdos" - -#: includes/admin/views/acf-post-type/advanced-settings.php:527 -msgid "" -"Used by screen readers for the filter list pagination on the post type list " -"screen." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:526 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:620 -msgid "Items List Navigation" -msgstr "Navegação da lista de itens" - -#. translators: %s Plural form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:523 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:617 -msgid "%s list navigation" -msgstr "Navegação da lista de %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:507 -msgid "Filter posts by date" -msgstr "Filtrar conteúdos por data" - -#: includes/admin/views/acf-post-type/advanced-settings.php:506 -msgid "" -"Used by screen readers for the filter by date heading on the post type list " -"screen." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:505 -msgid "Filter Items By Date" -msgstr "Filtrar itens por data" - -#. translators: %s Plural form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:501 -msgid "Filter %s by date" -msgstr "Filtrar %s por data" - -#: includes/admin/views/acf-post-type/advanced-settings.php:486 -msgid "Filter posts list" -msgstr "Filtrar lista de conteúdos" - -#: includes/admin/views/acf-post-type/advanced-settings.php:485 -msgid "" -"Used by screen readers for the filter links heading on the post type list " -"screen." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:484 -msgid "Filter Items List" -msgstr "Filtrar lista de itens" - -#. translators: %s Plural form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:480 -msgid "Filter %s list" -msgstr "Filtrar lista de %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:464 -msgid "In the media modal showing all media uploaded to this item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:463 -msgid "Uploaded To This Item" -msgstr "Carregados para este item" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:459 -msgid "Uploaded to this %s" -msgstr "Carregados para este %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:444 -msgid "Insert into post" -msgstr "Inserir no conteúdo" - -#: includes/admin/views/acf-post-type/advanced-settings.php:443 -msgid "As the button label when adding media to content." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:442 -msgid "Insert Into Media Button" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:438 -msgid "Insert into %s" -msgstr "Inserir em %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:423 -msgid "Use as featured image" -msgstr "Usar como imagem de destaque" - -#: includes/admin/views/acf-post-type/advanced-settings.php:422 -msgid "" -"As the button label for selecting to use an image as the featured image." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:421 -msgid "Use Featured Image" -msgstr "Usar imagem de destaque" - -#: includes/admin/views/acf-post-type/advanced-settings.php:408 -msgid "Remove featured image" -msgstr "Remover imagem de destaque" - -#: includes/admin/views/acf-post-type/advanced-settings.php:407 -msgid "As the button label when removing the featured image." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:406 -msgid "Remove Featured Image" -msgstr "Remover imagem de destaque" - -#: includes/admin/views/acf-post-type/advanced-settings.php:393 -msgid "Set featured image" -msgstr "Definir imagem de destaque" - -#: includes/admin/views/acf-post-type/advanced-settings.php:392 -msgid "As the button label when setting the featured image." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:391 -msgid "Set Featured Image" -msgstr "Definir imagem de destaque" - -#: includes/admin/views/acf-post-type/advanced-settings.php:378 -msgid "Featured image" -msgstr "Imagem de destaque" - -#: includes/admin/views/acf-post-type/advanced-settings.php:377 -msgid "In the editor used for the title of the featured image meta box." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:376 -msgid "Featured Image Meta Box" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:363 -msgid "Post Attributes" -msgstr "Atributos do conteúdo" - -#: includes/admin/views/acf-post-type/advanced-settings.php:362 -msgid "In the editor used for the title of the post attributes meta box." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:361 -msgid "Attributes Meta Box" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:358 -msgid "%s Attributes" -msgstr "Atributos de %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:343 -msgid "Post Archives" -msgstr "Arquivo de conteúdos" - -#: includes/admin/views/acf-post-type/advanced-settings.php:342 -msgid "" -"Adds 'Post Type Archive' items with this label to the list of posts shown " -"when adding items to an existing menu in a CPT with archives enabled. Only " -"appears when editing menus in 'Live Preview' mode and a custom archive slug " -"has been provided." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:341 -msgid "Archives Nav Menu" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:338 -msgid "%s Archives" -msgstr "Arquivo de %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:323 -msgid "No posts found in Trash" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:322 -msgid "" -"At the top of the post type list screen when there are no posts in the trash." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:321 -msgid "No Items Found in Trash" -msgstr "Nenhum item encontrado no lixo" - -#. translators: %s Plural form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:317 -msgid "No %s found in Trash" -msgstr "Nenhum %s encontrado no lixo" - -#: includes/admin/views/acf-post-type/advanced-settings.php:302 -msgid "No posts found" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:301 -msgid "" -"At the top of the post type list screen when there are no posts to display." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:300 -msgid "No Items Found" -msgstr "Nenhum item encontrado" - -#. translators: %s Plural form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:296 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:480 -msgid "No %s found" -msgstr "Nenhum %s encontrado" - -#: includes/admin/views/acf-post-type/advanced-settings.php:281 -msgid "Search Posts" -msgstr "Pesquisar conteúdos" - -#: includes/admin/views/acf-post-type/advanced-settings.php:280 -msgid "At the top of the items screen when searching for an item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:279 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:345 -msgid "Search Items" -msgstr "Pesquisar itens" - -#. translators: %s Singular form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:276 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:342 -msgid "Search %s" -msgstr "Pesquisa por %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:261 -msgid "Parent Page:" -msgstr "Página superior:" - -#: includes/admin/views/acf-post-type/advanced-settings.php:260 -msgid "For hierarchical types in the post type list screen." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:259 -msgid "Parent Item Prefix" -msgstr "" - -#. translators: %s Singular form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:256 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:318 -msgid "Parent %s:" -msgstr "%s superior:" - -#: includes/admin/views/acf-post-type/advanced-settings.php:241 -msgid "New Post" -msgstr "Novo conteúdo" - -#: includes/admin/views/acf-post-type/advanced-settings.php:239 -msgid "New Item" -msgstr "Novo item" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:236 -msgid "New %s" -msgstr "Novo %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:206 -msgid "Add New Post" -msgstr "Adicionar novo conteúdo" - -#: includes/admin/views/acf-post-type/advanced-settings.php:205 -msgid "At the top of the editor screen when adding a new item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:204 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:256 -msgid "Add New Item" -msgstr "Adicionar novo item" - -#. translators: %s Singular form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:201 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:253 -msgid "Add New %s" -msgstr "Adicionar novo %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:186 -msgid "View Posts" -msgstr "Ver conteúdos" - -#: includes/admin/views/acf-post-type/advanced-settings.php:185 -msgid "" -"Appears in the admin bar in the 'All Posts' view, provided the post type " -"supports archives and the home page is not an archive of that post type." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:184 -msgid "View Items" -msgstr "Ver itens" - -#: includes/admin/views/acf-post-type/advanced-settings.php:166 -msgid "View Post" -msgstr "Ver conteúdo" - -#: includes/admin/views/acf-post-type/advanced-settings.php:165 -msgid "In the admin bar to view item when editing it." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:164 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:216 -msgid "View Item" -msgstr "Ver item" - -#. translators: %s Singular form of post type name -#. translators: %s Plural form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:161 -#: includes/admin/views/acf-post-type/advanced-settings.php:181 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:213 -msgid "View %s" -msgstr "Ver %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:146 -msgid "Edit Post" -msgstr "Editar conteúdo" - -#: includes/admin/views/acf-post-type/advanced-settings.php:145 -msgid "At the top of the editor screen when editing an item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:144 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:196 -msgid "Edit Item" -msgstr "Editar item" - -#. translators: %s Singular form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:141 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:193 -msgid "Edit %s" -msgstr "Editar %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:126 -msgid "All Posts" -msgstr "Todos os conteúdos" - -#: includes/admin/views/acf-post-type/advanced-settings.php:125 -#: includes/admin/views/acf-post-type/advanced-settings.php:220 -#: includes/admin/views/acf-post-type/advanced-settings.php:240 -msgid "In the post type submenu in the admin dashboard." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:124 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:176 -msgid "All Items" -msgstr "Todos os itens" - -#. translators: %s Plural form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:121 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:173 -msgid "All %s" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:105 -msgid "Admin menu name for the post type." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:104 -msgid "Menu Name" -msgstr "Nome do menu" - -#: includes/admin/views/acf-post-type/advanced-settings.php:90 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:142 -msgid "Regenerate all labels using the Singular and Plural labels" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:88 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:140 -msgid "Regenerate" -msgstr "Regenerar" - -#: includes/admin/views/acf-post-type/advanced-settings.php:79 -msgid "Active post types are enabled and registered with WordPress." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:63 -msgid "A descriptive summary of the post type." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:48 -msgid "Add Custom" -msgstr "Adicionar personalização" - -#: includes/admin/views/acf-post-type/advanced-settings.php:42 -msgid "Enable various features in the content editor." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:31 -msgid "Post Formats" -msgstr "Formatos de artigo" - -#: includes/admin/views/acf-post-type/advanced-settings.php:25 -msgid "Editor" -msgstr "Editor" - -#: includes/admin/views/acf-post-type/advanced-settings.php:24 -msgid "Trackbacks" -msgstr "Trackbacks" - -#: includes/admin/views/acf-post-type/basic-settings.php:87 -msgid "Select existing taxonomies to classify items of the post type." -msgstr "" - -#: includes/admin/views/acf-field-group/field.php:145 -msgid "Browse Fields" -msgstr "Pesquisar campos" - -#: includes/admin/tools/class-acf-admin-tool-import.php:292 -msgid "Nothing to import" -msgstr "Nada para importar" - -#: includes/admin/tools/class-acf-admin-tool-import.php:287 -msgid ". The Custom Post Type UI plugin can be deactivated." -msgstr "" - -#. translators: %d - number of items imported from CPTUI -#: includes/admin/tools/class-acf-admin-tool-import.php:278 -msgid "Imported %d item from Custom Post Type UI -" -msgid_plural "Imported %d items from Custom Post Type UI -" -msgstr[0] "" -msgstr[1] "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:262 -msgid "Failed to import taxonomies." -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:244 -msgid "Failed to import post types." -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:233 -msgid "Nothing from Custom Post Type UI plugin selected for import." -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:209 -msgid "Imported 1 item" -msgid_plural "Imported %s items" -msgstr[0] "" -msgstr[1] "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:122 -msgid "" -"Importing a Post Type or Taxonomy with the same key as one that already " -"exists will overwrite the settings for the existing Post Type or Taxonomy " -"with those of the import." -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:111 -#: includes/admin/tools/class-acf-admin-tool-import.php:127 -msgid "Import from Custom Post Type UI" -msgstr "Importar do Custom Post Type UI" - -#: includes/admin/tools/class-acf-admin-tool-export.php:412 -msgid "" -"The following code can be used to register a local version of the selected " -"items. Storing field groups, post types, or taxonomies locally can provide " -"many benefits such as faster load times, version control & dynamic fields/" -"settings. Simply copy and paste the following code to your theme's functions." -"php file or include it within an external file, then deactivate or delete " -"the items from the ACF admin." -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:411 -msgid "Export - Generate PHP" -msgstr "Exportar - Gerar PHP" - -#: includes/admin/tools/class-acf-admin-tool-export.php:384 -msgid "Export" -msgstr "Exportar" - -#: includes/admin/tools/class-acf-admin-tool-export.php:276 -msgid "Select Taxonomies" -msgstr "Seleccionar taxonomias" - -#: includes/admin/tools/class-acf-admin-tool-export.php:254 -msgid "Select Post Types" -msgstr "Seleccionar tipos de conteúdo" - -#: includes/admin/tools/class-acf-admin-tool-export.php:167 -msgid "Exported 1 item." -msgid_plural "Exported %s items." -msgstr[0] "" -msgstr[1] "" - -#: includes/admin/post-types/admin-taxonomy.php:129 -#: assets/build/js/acf-internal-post-type.js:182 -#: assets/build/js/acf-internal-post-type.js:256 -msgid "Category" -msgstr "Categoria" - -#: includes/admin/post-types/admin-taxonomy.php:127 -#: assets/build/js/acf-internal-post-type.js:179 -#: assets/build/js/acf-internal-post-type.js:253 -msgid "Tag" -msgstr "Etiqueta" - -#. translators: %s taxonomy name -#: includes/admin/post-types/admin-taxonomy.php:82 -msgid "%s taxonomy created" -msgstr "Taxonomia %s criada" - -#. translators: %s taxonomy name -#: includes/admin/post-types/admin-taxonomy.php:76 -msgid "%s taxonomy updated" -msgstr "Taxonomia %s actualizada" - -#: includes/admin/post-types/admin-taxonomy.php:56 -msgid "Taxonomy draft updated." -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:55 -msgid "Taxonomy scheduled for." -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:54 -msgid "Taxonomy submitted." -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:53 -msgid "Taxonomy saved." -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:49 -msgid "Taxonomy deleted." -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:48 -msgid "Taxonomy updated." -msgstr "" - -#: includes/admin/post-types/admin-taxonomies.php:377 -#: includes/admin/post-types/admin-taxonomy.php:157 -msgid "" -"This taxonomy could not be registered because its key is in use by another " -"taxonomy registered by another plugin or theme." -msgstr "" -"Não foi possível registar esta taxonomia porque a sua chave está a ser " -"utilizada por outra taxonomia registada por outro plugin ou tema." - -#. translators: %s number of taxonomies synchronized -#: includes/admin/post-types/admin-taxonomies.php:359 -msgid "Taxonomy synchronized." -msgid_plural "%s taxonomies synchronized." -msgstr[0] "" -msgstr[1] "" - -#. translators: %s number of taxonomies duplicated -#: includes/admin/post-types/admin-taxonomies.php:352 -msgid "Taxonomy duplicated." -msgid_plural "%s taxonomies duplicated." -msgstr[0] "" -msgstr[1] "" - -#. translators: %s number of taxonomies deactivated -#: includes/admin/post-types/admin-taxonomies.php:345 -msgid "Taxonomy deactivated." -msgid_plural "%s taxonomies deactivated." -msgstr[0] "" -msgstr[1] "" - -#. translators: %s number of taxonomies activated -#: includes/admin/post-types/admin-taxonomies.php:338 -msgid "Taxonomy activated." -msgid_plural "%s taxonomies activated." -msgstr[0] "" -msgstr[1] "" - -#: includes/admin/post-types/admin-taxonomies.php:139 -msgid "Terms" -msgstr "Termos" - -#. translators: %s number of post types synchronized -#: includes/admin/post-types/admin-post-types.php:352 -msgid "Post type synchronized." -msgid_plural "%s post types synchronized." -msgstr[0] "" -msgstr[1] "" - -#. translators: %s number of post types duplicated -#: includes/admin/post-types/admin-post-types.php:345 -msgid "Post type duplicated." -msgid_plural "%s post types duplicated." -msgstr[0] "" -msgstr[1] "" - -#. translators: %s number of post types deactivated -#: includes/admin/post-types/admin-post-types.php:338 -msgid "Post type deactivated." -msgid_plural "%s post types deactivated." -msgstr[0] "" -msgstr[1] "" - -#. translators: %s number of post types activated -#: includes/admin/post-types/admin-post-types.php:331 -msgid "Post type activated." -msgid_plural "%s post types activated." -msgstr[0] "" -msgstr[1] "" - -#: includes/admin/post-types/admin-post-types.php:112 -#: includes/admin/post-types/admin-taxonomies.php:137 -#: includes/admin/tools/class-acf-admin-tool-import.php:82 -#: includes/admin/views/acf-taxonomy/basic-settings.php:82 -#: includes/post-types/class-acf-post-type.php:91 -msgid "Post Types" -msgstr "Tipos de conteúdo" - -#: includes/admin/post-types/admin-post-type.php:162 -#: includes/admin/post-types/admin-taxonomy.php:164 -msgid "Advanced Settings" -msgstr "Definições avançadas" - -#: includes/admin/post-types/admin-post-type.php:161 -#: includes/admin/post-types/admin-taxonomy.php:163 -msgid "Basic Settings" -msgstr "Definições básicas" - -#: includes/admin/post-types/admin-post-type.php:155 -#: includes/admin/post-types/admin-post-types.php:370 -msgid "" -"This post type could not be registered because its key is in use by another " -"post type registered by another plugin or theme." -msgstr "" -"Não foi possível registar este tipo de conteúdo porque a sua chave já foi " -"utilizada para registar outro tipo de conteúdo noutro plugin ou tema." - -#: includes/admin/post-types/admin-post-type.php:128 -#: assets/build/js/acf-internal-post-type.js:176 -#: assets/build/js/acf-internal-post-type.js:250 -msgid "Pages" -msgstr "Páginas" - -#: includes/admin/admin-internal-post-type.php:355 -msgid "Link Existing Field Groups" -msgstr "" - -#. translators: %s post type name -#: includes/admin/post-types/admin-post-type.php:80 -msgid "%s post type created" -msgstr "Tipo de conteúdo %s criado" - -#. translators: %s taxonomy name -#: includes/admin/post-types/admin-taxonomy.php:78 -msgid "Add fields to %s" -msgstr "Adicionar campos a %s" - -#. translators: %s post type name -#: includes/admin/post-types/admin-post-type.php:76 -msgid "%s post type updated" -msgstr "Tipo de conteúdo %s actualizado" - -#: includes/admin/post-types/admin-post-type.php:56 -msgid "Post type draft updated." -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:55 -msgid "Post type scheduled for." -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:54 -msgid "Post type submitted." -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:53 -msgid "Post type saved." -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:50 -msgid "Post type updated." -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:49 -msgid "Post type deleted." -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:120 -#: assets/build/js/acf-field-group.js:1146 -#: assets/build/js/acf-field-group.js:1366 -msgid "Type to search..." -msgstr "Digite para pesquisar..." - -#: includes/admin/post-types/admin-field-group.php:105 -#: assets/build/js/acf-field-group.js:1172 -#: assets/build/js/acf-field-group.js:2319 -#: assets/build/js/acf-field-group.js:1414 -#: assets/build/js/acf-field-group.js:2727 -msgid "PRO Only" -msgstr "Apenas PRO" - -#: includes/admin/post-types/admin-field-group.php:97 -#: assets/build/js/acf-internal-post-type.js:308 -#: assets/build/js/acf-internal-post-type.js:417 -msgid "Field groups linked successfully." -msgstr "Grupos de campos ligado com sucesso." - -#. translators: %s - URL to ACF tools page. -#: includes/admin/admin.php:195 -msgid "" -"Import Post Types and Taxonomies registered with Custom Post Type UI and " -"manage them with ACF. Get Started." -msgstr "" - -#: includes/admin/admin.php:48 includes/admin/admin.php:267 -msgid "ACF" -msgstr "ACF" - -#: includes/admin/admin-internal-post-type.php:322 -msgid "taxonomy" -msgstr "" - -#: includes/admin/admin-internal-post-type.php:322 -msgid "post type" -msgstr "tipo de conteúdo" - -#: includes/admin/admin-internal-post-type.php:346 -msgid "Done" -msgstr "Concluído" - -#: includes/admin/admin-internal-post-type.php:332 -msgid "Field Group(s)" -msgstr "" - -#: includes/admin/admin-internal-post-type.php:331 -msgid "Select one or many field groups..." -msgstr "Seleccione um ou vários grupos de campos..." - -#: includes/admin/admin-internal-post-type.php:330 -msgid "Please select the field groups to link." -msgstr "" - -#: includes/admin/admin-internal-post-type.php:288 -msgid "Field group linked successfully." -msgid_plural "Field groups linked successfully." -msgstr[0] "Grupo de campos ligado com sucesso." -msgstr[1] "Grupos de campos ligados com sucesso." - -#: includes/admin/admin-internal-post-type-list.php:261 -#: includes/admin/post-types/admin-post-types.php:371 -#: includes/admin/post-types/admin-taxonomies.php:378 -msgctxt "post status" -msgid "Registration Failed" -msgstr "Falhou ao registar" - -#: includes/admin/admin-internal-post-type-list.php:260 -msgid "" -"This item could not be registered because its key is in use by another item " -"registered by another plugin or theme." -msgstr "" -"Não foi possível registar este item porque a sua chave está a ser utilizada " -"por outro item registado por outro plugin ou tema." - -#: includes/acf-internal-post-type-functions.php:482 -#: includes/acf-internal-post-type-functions.php:511 -msgid "REST API" -msgstr "REST API" - -#: includes/acf-internal-post-type-functions.php:481 -#: includes/acf-internal-post-type-functions.php:510 -#: includes/acf-internal-post-type-functions.php:537 -msgid "Permissions" -msgstr "Permissões" - -#: includes/acf-internal-post-type-functions.php:480 -#: includes/acf-internal-post-type-functions.php:509 -msgid "URLs" -msgstr "URLs" - -#: includes/acf-internal-post-type-functions.php:479 -#: includes/acf-internal-post-type-functions.php:508 -#: includes/acf-internal-post-type-functions.php:535 -msgid "Visibility" -msgstr "Visibilidade" - -#: includes/acf-internal-post-type-functions.php:478 -#: includes/acf-internal-post-type-functions.php:507 -#: includes/acf-internal-post-type-functions.php:536 -msgid "Labels" -msgstr "Legendas" - -#: includes/admin/post-types/admin-field-group.php:269 -msgid "Field Settings Tabs" -msgstr "Separadores das definições do campo" - -#. Author URI of the plugin -msgid "" -"https://wpengine.com/?utm_source=wordpress." -"org&utm_medium=referral&utm_campaign=plugin_directory&utm_content=advanced_custom_fields" -msgstr "" -"https://wpengine.com/?utm_source=wordpress." -"org&utm_medium=referral&utm_campaign=plugin_directory&utm_content=advanced_custom_fields" - -#: includes/api/api-template.php:867 -msgid "[ACF shortcode value disabled for preview]" -msgstr "" - -#: includes/admin/admin-internal-post-type.php:298 -#: includes/admin/post-types/admin-field-group.php:571 -msgid "Close Modal" -msgstr "Fechar janela" - -#: includes/admin/post-types/admin-field-group.php:96 -#: assets/build/js/acf-field-group.js:1670 -#: assets/build/js/acf-field-group.js:1993 -msgid "Field moved to other group" -msgstr "Campo movido para outro grupo" - -#: includes/admin/post-types/admin-field-group.php:95 -#: assets/build/js/acf.js:1437 assets/build/js/acf.js:1517 -msgid "Close modal" -msgstr "Fechar janela" - -#: includes/fields/class-acf-field-tab.php:125 -msgid "Start a new group of tabs at this tab." -msgstr "" - -#: includes/fields/class-acf-field-tab.php:124 -msgid "New Tab Group" -msgstr "" - -#: includes/fields/class-acf-field-select.php:451 -#: includes/fields/class-acf-field-true_false.php:200 -msgid "Use a stylized checkbox using select2" -msgstr "Utilize uma caixa de selecção estilizada com o select2" - -#: includes/fields/class-acf-field-radio.php:260 -msgid "Save Other Choice" -msgstr "Guardar outra opção" - -#: includes/fields/class-acf-field-radio.php:249 -msgid "Allow Other Choice" -msgstr "Permitir outra opção" - -#: includes/fields/class-acf-field-checkbox.php:450 -msgid "Add Toggle All" -msgstr "" - -#: includes/fields/class-acf-field-checkbox.php:409 -msgid "Save Custom Values" -msgstr "Guardar valores personalizados" - -#: includes/fields/class-acf-field-checkbox.php:398 -msgid "Allow Custom Values" -msgstr "Permitir valores personalizados" - -#: includes/fields/class-acf-field-checkbox.php:148 -msgid "Checkbox custom values cannot be empty. Uncheck any empty values." -msgstr "" - -#: includes/admin/views/global/navigation.php:248 -msgid "Updates" -msgstr "Actualizações" - -#: includes/admin/views/global/navigation.php:176 -msgid "Advanced Custom Fields logo" -msgstr "Logótipo do Advanced Custom Fields" - -#: includes/admin/views/global/form-top.php:89 -msgid "Save Changes" -msgstr "Guardar alterações" - -#: includes/admin/views/global/form-top.php:76 -msgid "Field Group Title" -msgstr "Título do grupo de campos" - -#: includes/admin/views/acf-post-type/advanced-settings.php:704 -#: includes/admin/views/global/form-top.php:3 -msgid "Add title" -msgstr "Adicionar título" - -#. translators: %s url to getting started guide -#: includes/admin/views/acf-field-group/list-empty.php:20 -#: includes/admin/views/acf-post-type/list-empty.php:12 -#: includes/admin/views/acf-taxonomy/list-empty.php:12 -#: includes/admin/views/options-page-preview.php:13 -msgid "" -"New to ACF? Take a look at our getting " -"started guide." -msgstr "" -"Não conhece o ACF? Consulte o nosso guia " -"para iniciantes." - -#: includes/admin/views/acf-field-group/list-empty.php:15 -msgid "Add Field Group" -msgstr "Adicionar grupo de campos" - -#. translators: %s url to creating a field group page -#: includes/admin/views/acf-field-group/list-empty.php:10 -msgid "" -"ACF uses field groups to group custom " -"fields together, and then attach those fields to edit screens." -msgstr "" -"O ACF utiliza grupos de campos para " -"agrupar campos personalizados, para depois poder anexar esses campos a ecrãs " -"de edição." - -#: includes/admin/views/acf-field-group/list-empty.php:5 -msgid "Add Your First Field Group" -msgstr "Adicione o seu primeiro grupo de campos" - -#: includes/admin/admin-options-pages-preview.php:28 -#: includes/admin/views/acf-field-group/pro-features.php:54 -#: includes/admin/views/global/navigation.php:86 -#: includes/admin/views/global/navigation.php:250 -msgid "Options Pages" -msgstr "Páginas de opções" - -#: includes/admin/views/acf-field-group/pro-features.php:50 -msgid "ACF Blocks" -msgstr "Blocos do ACF" - -#: includes/admin/views/acf-field-group/pro-features.php:58 -msgid "Gallery Field" -msgstr "Campo de galeria" - -#: includes/admin/views/acf-field-group/pro-features.php:38 -msgid "Flexible Content Field" -msgstr "Campo de conteúdo flexível" - -#: includes/admin/views/acf-field-group/pro-features.php:42 -msgid "Repeater Field" -msgstr "Campo repetidor" - -#: includes/admin/views/global/navigation.php:212 -msgid "Unlock Extra Features with ACF PRO" -msgstr "Desbloqueie funcionalidades adicionais com o ACF PRO" - -#: includes/admin/views/acf-field-group/options.php:267 -msgid "Delete Field Group" -msgstr "Eliminar grupo de campos" - -#. translators: 1: Post creation date 2: Post creation time -#: includes/admin/views/acf-field-group/options.php:261 -msgid "Created on %1$s at %2$s" -msgstr "Criado em %1$s às %2$s" - -#: includes/acf-field-group-functions.php:497 -msgid "Group Settings" -msgstr "Definições do grupo" - -#: includes/acf-field-group-functions.php:495 -msgid "Location Rules" -msgstr "Regras de localização" - -#. translators: %s url to field types list -#: includes/admin/views/acf-field-group/fields.php:72 -msgid "" -"Choose from over 30 field types. Learn " -"more." -msgstr "" -"Escolha entre mais de 30 tipos de campo. Saiba mais." - -#: includes/admin/views/acf-field-group/fields.php:65 -msgid "" -"Get started creating new custom fields for your posts, pages, custom post " -"types and other WordPress content." -msgstr "" -"Comece por criar novos campos personalizados para os seus artigos, páginas, " -"tipos de conteúdo personalizados e outros conteúdos do WordPress." - -#: includes/admin/views/acf-field-group/fields.php:64 -msgid "Add Your First Field" -msgstr "Adicione o seu primeiro campo" - -#. translators: A symbol (or text, if not available in your locale) meaning -#. "Order Number", in terms of positional placement. -#: includes/admin/views/acf-field-group/fields.php:43 -msgid "#" -msgstr "#" - -#: includes/admin/views/acf-field-group/fields.php:33 -#: includes/admin/views/acf-field-group/fields.php:67 -#: includes/admin/views/acf-field-group/fields.php:103 -#: includes/admin/views/global/form-top.php:85 -msgid "Add Field" -msgstr "Adicionar campo" - -#: includes/acf-field-group-functions.php:496 includes/fields.php:410 -msgid "Presentation" -msgstr "Apresentação" - -#: includes/fields.php:409 -msgid "Validation" -msgstr "Validação" - -#: includes/acf-internal-post-type-functions.php:477 -#: includes/acf-internal-post-type-functions.php:506 includes/fields.php:408 -msgid "General" -msgstr "Geral" - -#: includes/admin/tools/class-acf-admin-tool-import.php:70 -msgid "Import JSON" -msgstr "Importar JSON" - -#: includes/admin/tools/class-acf-admin-tool-export.php:392 -msgid "Export As JSON" -msgstr "Exportar como JSON" - -#. translators: %s number of field groups deactivated -#: includes/admin/post-types/admin-field-groups.php:367 -msgid "Field group deactivated." -msgid_plural "%s field groups deactivated." -msgstr[0] "Grupo de campos desactivado." -msgstr[1] "%s grupos de campos desactivados." - -#. translators: %s number of field groups activated -#: includes/admin/post-types/admin-field-groups.php:360 -msgid "Field group activated." -msgid_plural "%s field groups activated." -msgstr[0] "Grupo de campos activado." -msgstr[1] "%s grupos de campos activados." - -#: includes/admin/admin-internal-post-type-list.php:452 -#: includes/admin/admin-internal-post-type-list.php:478 -msgid "Deactivate" -msgstr "Desactivar" - -#: includes/admin/admin-internal-post-type-list.php:452 -msgid "Deactivate this item" -msgstr "Desactivar este item" - -#: includes/admin/admin-internal-post-type-list.php:448 -#: includes/admin/admin-internal-post-type-list.php:477 -msgid "Activate" -msgstr "Activar" - -#: includes/admin/admin-internal-post-type-list.php:448 -msgid "Activate this item" -msgstr "Activar este item" - -#: includes/admin/post-types/admin-field-group.php:92 -#: assets/build/js/acf-field-group.js:2812 -#: assets/build/js/acf-field-group.js:3313 -msgid "Move field group to trash?" -msgstr "Mover o grupo de campos para o lixo?" - -#: acf.php:497 includes/admin/admin-internal-post-type-list.php:248 -#: includes/admin/post-types/admin-field-group.php:297 -#: includes/admin/post-types/admin-post-type.php:295 -#: includes/admin/post-types/admin-taxonomy.php:297 -msgctxt "post status" -msgid "Inactive" -msgstr "Inactivo" - -#. Author of the plugin -msgid "WP Engine" -msgstr "WP Engine" - -#: acf.php:555 -msgid "" -"Advanced Custom Fields and Advanced Custom Fields PRO should not be active " -"at the same time. We've automatically deactivated Advanced Custom Fields PRO." -msgstr "" -"O Advanced Custom Fields e o Advanced Custom Fields PRO não podem estar " -"activos ao mesmo tempo. O Advanced Custom Fields PRO foi desactivado " -"automaticamente." - -#: acf.php:553 -msgid "" -"Advanced Custom Fields and Advanced Custom Fields PRO should not be active " -"at the same time. We've automatically deactivated Advanced Custom Fields." -msgstr "" -"O Advanced Custom Fields e o Advanced Custom Fields PRO não podem estar " -"activos ao mesmo tempo. O Advanced Custom Fields foi desactivado " -"automaticamente." - -#: includes/acf-value-functions.php:374 -msgid "" -"%1$s - We've detected one or more calls to retrieve ACF " -"field values before ACF has been initialized. This is not supported and can " -"result in malformed or missing data. Learn how to fix this." -msgstr "" - -#: includes/fields/class-acf-field-user.php:551 -msgid "%1$s must have a user with the %2$s role." -msgid_plural "%1$s must have a user with one of the following roles: %2$s" -msgstr[0] "%1$s tem de ter um utilizador com o papel %2$s." -msgstr[1] "%1$s tem de ter um utilizador com um dos seguintes papéis: %2$s" - -#: includes/fields/class-acf-field-user.php:542 -msgid "%1$s must have a valid user ID." -msgstr "%1$s tem de ter um ID de utilizador válido." - -#: includes/fields/class-acf-field-user.php:380 -msgid "Invalid request." -msgstr "Pedido inválido." - -#: includes/fields/class-acf-field-select.php:684 -msgid "%1$s is not one of %2$s" -msgstr "%1$s não é um de %2$s" - -#: includes/fields/class-acf-field-post_object.php:700 -msgid "%1$s must have term %2$s." -msgid_plural "%1$s must have one of the following terms: %2$s" -msgstr[0] "%1$s tem de ter o termo %2$s." -msgstr[1] "%1$s tem de ter um dos seguintes termos: %2$s" - -#: includes/fields/class-acf-field-post_object.php:684 -msgid "%1$s must be of post type %2$s." -msgid_plural "%1$s must be of one of the following post types: %2$s" -msgstr[0] "%1$s tem de ser do tipo de conteúdo %2$s." -msgstr[1] "%1$s tem de ser de um dos seguintes tipos de conteúdo: %2$s" - -#: includes/fields/class-acf-field-post_object.php:675 -msgid "%1$s must have a valid post ID." -msgstr "%1$s tem de ter um ID de conteúdo válido." - -#: includes/fields/class-acf-field-file.php:475 -msgid "%s requires a valid attachment ID." -msgstr "%s requer um ID de anexo válido." - -#: includes/admin/views/acf-field-group/options.php:233 -msgid "Show in REST API" -msgstr "Mostrar na REST API" - -#: includes/fields/class-acf-field-color_picker.php:168 -msgid "Enable Transparency" -msgstr "Activar transparência" - -#: includes/fields/class-acf-field-color_picker.php:187 -msgid "RGBA Array" -msgstr "Array de RGBA" - -#: includes/fields/class-acf-field-color_picker.php:98 -msgid "RGBA String" -msgstr "String de RGBA" - -#: includes/fields/class-acf-field-color_picker.php:97 -#: includes/fields/class-acf-field-color_picker.php:186 -msgid "Hex String" -msgstr "String hexadecimal" - -#: includes/admin/views/browse-fields-modal.php:65 -msgid "Upgrade to PRO" -msgstr "Actualizar para PRO" - -#: includes/admin/post-types/admin-field-group.php:297 -#: includes/admin/post-types/admin-post-type.php:295 -#: includes/admin/post-types/admin-taxonomy.php:297 -msgctxt "post status" -msgid "Active" -msgstr "Activo" - -#: includes/fields/class-acf-field-email.php:181 -msgid "'%s' is not a valid email address" -msgstr "'%s' não é um endereço de email válido" - -#: includes/fields/class-acf-field-color_picker.php:76 -msgid "Color value" -msgstr "Valor da cor" - -#: includes/fields/class-acf-field-color_picker.php:74 -msgid "Select default color" -msgstr "Seleccionar cor por omissão" - -#: includes/fields/class-acf-field-color_picker.php:72 -msgid "Clear color" -msgstr "Limpar cor" - -#: includes/acf-wp-functions.php:90 -msgid "Blocks" -msgstr "Blocos" - -#: includes/acf-wp-functions.php:86 -msgid "Options" -msgstr "Opções" - -#: includes/acf-wp-functions.php:82 -msgid "Users" -msgstr "Utilizadores" - -#: includes/acf-wp-functions.php:78 -msgid "Menu items" -msgstr "Itens de menu" - -#: includes/acf-wp-functions.php:70 -msgid "Widgets" -msgstr "Widgets" - -#: includes/acf-wp-functions.php:62 -msgid "Attachments" -msgstr "Anexos" - -#: includes/acf-wp-functions.php:57 -#: includes/admin/post-types/admin-post-types.php:137 -#: includes/admin/post-types/admin-taxonomies.php:112 -#: includes/admin/tools/class-acf-admin-tool-import.php:93 -#: includes/admin/views/acf-post-type/basic-settings.php:86 -#: includes/post-types/class-acf-taxonomy.php:90 -#: includes/post-types/class-acf-taxonomy.php:91 -msgid "Taxonomies" -msgstr "Taxonomias" - -#: includes/acf-wp-functions.php:44 -#: includes/admin/post-types/admin-post-type.php:126 -#: includes/admin/post-types/admin-post-types.php:139 -#: includes/admin/views/acf-post-type/advanced-settings.php:106 -#: assets/build/js/acf-internal-post-type.js:173 -#: assets/build/js/acf-internal-post-type.js:247 -msgid "Posts" -msgstr "Conteúdos" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:76 -msgid "Last updated: %s" -msgstr "Última actualização: %s" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:70 -msgid "Sorry, this post is unavailable for diff comparison." -msgstr "" -"Desculpe, este conteúdo não está disponível para comparação das diferenças." - -#: includes/ajax/class-acf-ajax-local-json-diff.php:42 -msgid "Invalid field group parameter(s)." -msgstr "Os parâmetros do grupo de campos são inválidos." - -#: includes/admin/admin-internal-post-type-list.php:413 -msgid "Awaiting save" -msgstr "Por guardar" - -#: includes/admin/admin-internal-post-type-list.php:410 -msgid "Saved" -msgstr "Guardado" - -#: includes/admin/admin-internal-post-type-list.php:406 -#: includes/admin/tools/class-acf-admin-tool-import.php:49 -msgid "Import" -msgstr "Importar" - -#: includes/admin/admin-internal-post-type-list.php:402 -msgid "Review changes" -msgstr "Rever alterações" - -#: includes/admin/admin-internal-post-type-list.php:378 -msgid "Located in: %s" -msgstr "Localizado em: %s" - -#: includes/admin/admin-internal-post-type-list.php:375 -msgid "Located in plugin: %s" -msgstr "Localizado no plugin: %s" - -#: includes/admin/admin-internal-post-type-list.php:372 -msgid "Located in theme: %s" -msgstr "Localizado no tema: %s" - -#: includes/admin/post-types/admin-field-groups.php:261 -msgid "Various" -msgstr "Vários" - -#: includes/admin/admin-internal-post-type-list.php:216 -#: includes/admin/admin-internal-post-type-list.php:485 -msgid "Sync changes" -msgstr "Sincronizar alterações" - -#: includes/admin/admin-internal-post-type-list.php:215 -msgid "Loading diff" -msgstr "A carregar diferenças" - -#: includes/admin/admin-internal-post-type-list.php:214 -msgid "Review local JSON changes" -msgstr "Revisão das alterações do JSON local" - -#: includes/admin/admin.php:170 -msgid "Visit website" -msgstr "Visitar site" - -#: includes/admin/admin.php:169 -msgid "View details" -msgstr "Ver detalhes" - -#: includes/admin/admin.php:168 -msgid "Version %s" -msgstr "Versão %s" - -#: includes/admin/admin.php:167 -msgid "Information" -msgstr "Informações" - -#: includes/admin/admin.php:158 -msgid "" -"Help Desk. The support professionals on " -"our Help Desk will assist with your more in depth, technical challenges." -msgstr "" -"Suporte. Os profissionais de suporte no " -"nosso Help Desk ajudar-lhe-ão com os desafios técnicos mais complexos." - -#: includes/admin/admin.php:154 -msgid "" -"Discussions. We have an active and " -"friendly community on our Community Forums who may be able to help you " -"figure out the 'how-tos' of the ACF world." -msgstr "" -"Discussão. Temos uma comunidade activa " -"e amigável no nosso Fórum da Comunidade, que poderá ajudar a encontrar " -"soluções no mundo ACF." - -#: includes/admin/admin.php:150 -msgid "" -"Documentation. Our extensive " -"documentation contains references and guides for most situations you may " -"encounter." -msgstr "" -"Documentação. A nossa vasta " -"documentação inclui referências e guias para a maioria das situações que " -"poderá encontrar." - -#: includes/admin/admin.php:147 -msgid "" -"We are fanatical about support, and want you to get the best out of your " -"website with ACF. If you run into any difficulties, there are several places " -"you can find help:" -msgstr "" -"Somos fanáticos por suporte, queremos que tire o melhor partido do seu site " -"com o ACF. Se tiver alguma dificuldade, tem várias opções para obter ajuda:" - -#: includes/admin/admin.php:144 includes/admin/admin.php:146 -msgid "Help & Support" -msgstr "Ajuda e suporte" - -#: includes/admin/admin.php:135 -msgid "" -"Please use the Help & Support tab to get in touch should you find yourself " -"requiring assistance." -msgstr "" -"Caso precise de alguma assistência, entre em contacto através do separador " -"Ajuda e suporte." - -#: includes/admin/admin.php:132 -msgid "" -"Before creating your first Field Group, we recommend first reading our Getting started guide to familiarize " -"yourself with the plugin's philosophy and best practises." -msgstr "" -"Antes de criar o seu primeiro Grupo de Campos, recomendamos uma primeira " -"leitura do nosso guia Getting started " -"para se familiarizar com a filosofia e com as melhores práticas do plugin." - -#: includes/admin/admin.php:130 -msgid "" -"The Advanced Custom Fields plugin provides a visual form builder to " -"customize WordPress edit screens with extra fields, and an intuitive API to " -"display custom field values in any theme template file." -msgstr "" -"O plugin Advanced Custom Fields fornece-lhe um construtor visual de " -"formulários para personalizar os ecrãs de edição do WordPress com campos " -"adicionais, e uma interface intuitiva para mostrar os valores dos campos " -"personalizados em qualquer ficheiro de modelo de tema." - -#: includes/admin/admin.php:127 includes/admin/admin.php:129 -msgid "Overview" -msgstr "Visão geral" - -#: includes/locations.php:36 -msgid "Location type \"%s\" is already registered." -msgstr "O tipo de localização \"%s\" já está registado." - -#: includes/locations.php:25 -msgid "Class \"%s\" does not exist." -msgstr "A classe \"%s\" não existe." - -#: includes/ajax/class-acf-ajax.php:157 -msgid "Invalid nonce." -msgstr "Nonce inválido." - -#: includes/fields/class-acf-field-user.php:375 -msgid "Error loading field." -msgstr "Erro ao carregar o campo." - -#: assets/build/js/acf-input.js:2750 assets/build/js/acf-input.js:2819 -#: assets/build/js/acf-input.js:2926 assets/build/js/acf-input.js:3000 -msgid "Location not found: %s" -msgstr "Localização não encontrada: %s" - -#: includes/forms/form-user.php:353 -msgid "Error: %s" -msgstr "Erro: %s" - -#: includes/locations/class-acf-location-widget.php:22 -msgid "Widget" -msgstr "Widget" - -#: includes/locations/class-acf-location-user-role.php:24 -msgid "User Role" -msgstr "Papel de utilizador" - -#: includes/locations/class-acf-location-comment.php:22 -msgid "Comment" -msgstr "Comentário" - -#: includes/locations/class-acf-location-post-format.php:22 -msgid "Post Format" -msgstr "Formato de artigo" - -#: includes/locations/class-acf-location-nav-menu-item.php:22 -msgid "Menu Item" -msgstr "Item de menu" - -#: includes/locations/class-acf-location-post-status.php:22 -msgid "Post Status" -msgstr "Estado do conteúdo" - -#: includes/acf-wp-functions.php:74 -#: includes/locations/class-acf-location-nav-menu.php:89 -msgid "Menus" -msgstr "Menus" - -#: includes/locations/class-acf-location-nav-menu.php:80 -msgid "Menu Locations" -msgstr "Localizações do menu" - -#: includes/locations/class-acf-location-nav-menu.php:22 -msgid "Menu" -msgstr "Menu" - -#: includes/locations/class-acf-location-post-taxonomy.php:22 -msgid "Post Taxonomy" -msgstr "Taxonomia do artigo" - -#: includes/locations/class-acf-location-page-type.php:114 -msgid "Child Page (has parent)" -msgstr "Página dependente (tem superior)" - -#: includes/locations/class-acf-location-page-type.php:113 -msgid "Parent Page (has children)" -msgstr "Página superior (tem dependentes)" - -#: includes/locations/class-acf-location-page-type.php:112 -msgid "Top Level Page (no parent)" -msgstr "Página de topo (sem superior)" - -#: includes/locations/class-acf-location-page-type.php:111 -msgid "Posts Page" -msgstr "Página de artigos" - -#: includes/locations/class-acf-location-page-type.php:110 -msgid "Front Page" -msgstr "Página inicial" - -#: includes/locations/class-acf-location-page-type.php:22 -msgid "Page Type" -msgstr "Tipo de página" - -#: includes/locations/class-acf-location-current-user.php:73 -msgid "Viewing back end" -msgstr "A visualizar a administração do site" - -#: includes/locations/class-acf-location-current-user.php:72 -msgid "Viewing front end" -msgstr "A visualizar a frente do site" - -#: includes/locations/class-acf-location-current-user.php:71 -msgid "Logged in" -msgstr "Sessão iniciada" - -#: includes/locations/class-acf-location-current-user.php:22 -msgid "Current User" -msgstr "Utilizador actual" - -#: includes/locations/class-acf-location-page-template.php:22 -msgid "Page Template" -msgstr "Modelo de página" - -#: includes/locations/class-acf-location-user-form.php:74 -msgid "Register" -msgstr "Registar" - -#: includes/locations/class-acf-location-user-form.php:73 -msgid "Add / Edit" -msgstr "Adicionar / Editar" - -#: includes/locations/class-acf-location-user-form.php:22 -msgid "User Form" -msgstr "Formulário de utilizador" - -#: includes/locations/class-acf-location-page-parent.php:22 -msgid "Page Parent" -msgstr "Página superior" - -#: includes/locations/class-acf-location-current-user-role.php:77 -msgid "Super Admin" -msgstr "Super Administrador" - -#: includes/locations/class-acf-location-current-user-role.php:22 -msgid "Current User Role" -msgstr "Papel do utilizador actual" - -#: includes/locations/class-acf-location-page-template.php:73 -#: includes/locations/class-acf-location-post-template.php:85 -msgid "Default Template" -msgstr "Modelo por omissão" - -#: includes/locations/class-acf-location-post-template.php:22 -msgid "Post Template" -msgstr "Modelo de conteúdo" - -#: includes/locations/class-acf-location-post-category.php:22 -msgid "Post Category" -msgstr "Categoria de artigo" - -#: includes/locations/class-acf-location-attachment.php:84 -msgid "All %s formats" -msgstr "Todos os formatos de %s" - -#: includes/locations/class-acf-location-attachment.php:22 -msgid "Attachment" -msgstr "Anexo" - -#: includes/validation.php:366 -msgid "%s value is required" -msgstr "O valor %s é obrigatório" - -#: includes/admin/views/acf-field-group/conditional-logic.php:59 -msgid "Show this field if" -msgstr "Mostrar este campo se" - -#: includes/admin/views/acf-field-group/conditional-logic.php:26 -#: includes/admin/views/acf-field-group/field.php:109 includes/fields.php:411 -msgid "Conditional Logic" -msgstr "Lógica condicional" - -#: includes/admin/views/acf-field-group/conditional-logic.php:156 -#: includes/admin/views/acf-field-group/location-rule.php:92 -msgid "and" -msgstr "e" - -#: includes/admin/post-types/admin-field-groups.php:123 -#: includes/admin/post-types/admin-post-types.php:143 -#: includes/admin/post-types/admin-taxonomies.php:143 -msgid "Local JSON" -msgstr "JSON local" - -#: includes/admin/views/acf-field-group/pro-features.php:46 -msgid "Clone Field" -msgstr "Campo de clone" - -#: includes/admin/views/upgrade/notice.php:30 -msgid "" -"Please also check all premium add-ons (%s) are updated to the latest version." -msgstr "" -"Por favor, verifique se todos os add-ons premium (%s) estão actualizados " -"para a última versão." - -#: includes/admin/views/upgrade/notice.php:28 -msgid "" -"This version contains improvements to your database and requires an upgrade." -msgstr "" -"Esta versão inclui melhorias na base de dados e requer uma actualização." - -#: includes/admin/views/upgrade/notice.php:28 -msgid "Thank you for updating to %1$s v%2$s!" -msgstr "Obrigado por actualizar para o %1$s v%2$s!" - -#: includes/admin/views/upgrade/notice.php:27 -msgid "Database Upgrade Required" -msgstr "Actualização da base de dados necessária" - -#: includes/admin/post-types/admin-field-group.php:141 -#: includes/admin/views/upgrade/notice.php:18 -msgid "Options Page" -msgstr "Página de opções" - -#: includes/admin/views/upgrade/notice.php:15 includes/fields.php:462 -msgid "Gallery" -msgstr "Galeria" - -#: includes/admin/views/upgrade/notice.php:12 includes/fields.php:452 -msgid "Flexible Content" -msgstr "Conteúdo flexível" - -#: includes/admin/views/upgrade/notice.php:9 includes/fields.php:472 -msgid "Repeater" -msgstr "Repetidor" - -#: includes/admin/views/tools/tools.php:24 -msgid "Back to all tools" -msgstr "Voltar para todas as ferramentas" - -#: includes/admin/views/acf-field-group/options.php:195 -msgid "" -"If multiple field groups appear on an edit screen, the first field group's " -"options will be used (the one with the lowest order number)" -msgstr "" -"Se forem mostrados vários grupos de campos num ecrã de edição, serão " -"utilizadas as opções do primeiro grupo de campos. (o que tiver menor número " -"de ordem)" - -#: includes/admin/views/acf-field-group/options.php:195 -msgid "Select items to hide them from the edit screen." -msgstr "Seleccione os itens a esconder do ecrã de edição." - -#: includes/admin/views/acf-field-group/options.php:194 -msgid "Hide on screen" -msgstr "Esconder no ecrã" - -#: includes/admin/views/acf-field-group/options.php:186 -msgid "Send Trackbacks" -msgstr "Enviar trackbacks" - -#: includes/admin/post-types/admin-taxonomy.php:128 -#: includes/admin/views/acf-field-group/options.php:185 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:159 -#: assets/build/js/acf-internal-post-type.js:180 -#: assets/build/js/acf-internal-post-type.js:254 -msgid "Tags" -msgstr "Etiquetas" - -#: includes/admin/post-types/admin-taxonomy.php:130 -#: includes/admin/views/acf-field-group/options.php:184 -#: assets/build/js/acf-internal-post-type.js:183 -#: assets/build/js/acf-internal-post-type.js:257 -msgid "Categories" -msgstr "Categorias" - -#: includes/admin/views/acf-field-group/options.php:182 -#: includes/admin/views/acf-post-type/advanced-settings.php:28 -msgid "Page Attributes" -msgstr "Atributos da página" - -#: includes/admin/views/acf-field-group/options.php:181 -msgid "Format" -msgstr "Formato" - -#: includes/admin/views/acf-field-group/options.php:180 -#: includes/admin/views/acf-post-type/advanced-settings.php:22 -msgid "Author" -msgstr "Autor" - -#: includes/admin/views/acf-field-group/options.php:179 -msgid "Slug" -msgstr "Slug" - -#: includes/admin/views/acf-field-group/options.php:178 -#: includes/admin/views/acf-post-type/advanced-settings.php:27 -msgid "Revisions" -msgstr "Revisões" - -#: includes/acf-wp-functions.php:66 -#: includes/admin/views/acf-field-group/options.php:177 -#: includes/admin/views/acf-post-type/advanced-settings.php:23 -msgid "Comments" -msgstr "Comentários" - -#: includes/admin/views/acf-field-group/options.php:176 -msgid "Discussion" -msgstr "Discussão" - -#: includes/admin/views/acf-field-group/options.php:174 -#: includes/admin/views/acf-post-type/advanced-settings.php:26 -msgid "Excerpt" -msgstr "Excerto" - -#: includes/admin/views/acf-field-group/options.php:173 -msgid "Content Editor" -msgstr "Editor de conteúdo" - -#: includes/admin/views/acf-field-group/options.php:172 -msgid "Permalink" -msgstr "Ligação permanente" - -#: includes/admin/views/acf-field-group/options.php:250 -msgid "Shown in field group list" -msgstr "Mostrado na lista de grupos de campos" - -#: includes/admin/views/acf-field-group/options.php:157 -msgid "Field groups with a lower order will appear first" -msgstr "" -"Serão mostrados primeiro os grupos de campos com menor número de ordem." - -#: includes/admin/views/acf-field-group/options.php:156 -msgid "Order No." -msgstr "Nº. de ordem" - -#: includes/admin/views/acf-field-group/options.php:147 -msgid "Below fields" -msgstr "Abaixo dos campos" - -#: includes/admin/views/acf-field-group/options.php:146 -msgid "Below labels" -msgstr "Abaixo das legendas" - -#: includes/admin/views/acf-field-group/options.php:139 -msgid "Instruction Placement" -msgstr "Posição das instruções" - -#: includes/admin/views/acf-field-group/options.php:122 -msgid "Label Placement" -msgstr "Posição da legenda" - -#: includes/admin/views/acf-field-group/options.php:110 -msgid "Side" -msgstr "Lateral" - -#: includes/admin/views/acf-field-group/options.php:109 -msgid "Normal (after content)" -msgstr "Normal (depois do conteúdo)" - -#: includes/admin/views/acf-field-group/options.php:108 -msgid "High (after title)" -msgstr "Acima (depois do título)" - -#: includes/admin/views/acf-field-group/options.php:101 -msgid "Position" -msgstr "Posição" - -#: includes/admin/views/acf-field-group/options.php:92 -msgid "Seamless (no metabox)" -msgstr "Simples (sem metabox)" - -#: includes/admin/views/acf-field-group/options.php:91 -msgid "Standard (WP metabox)" -msgstr "Predefinido (metabox do WP)" - -#: includes/admin/views/acf-field-group/options.php:84 -msgid "Style" -msgstr "Estilo" - -#: includes/admin/views/acf-field-group/fields.php:55 -msgid "Type" -msgstr "Tipo" - -#: includes/admin/post-types/admin-field-groups.php:117 -#: includes/admin/post-types/admin-post-types.php:136 -#: includes/admin/post-types/admin-taxonomies.php:136 -#: includes/admin/views/acf-field-group/fields.php:54 -msgid "Key" -msgstr "Chave" - -#. translators: Hidden accessibility text for the positional order number of -#. the field. -#: includes/admin/views/acf-field-group/fields.php:48 -msgid "Order" -msgstr "Ordem" - -#: includes/admin/views/acf-field-group/field.php:322 -msgid "Close Field" -msgstr "Fechar campo" - -#: includes/admin/views/acf-field-group/field.php:253 -msgid "id" -msgstr "id" - -#: includes/admin/views/acf-field-group/field.php:237 -msgid "class" -msgstr "classe" - -#: includes/admin/views/acf-field-group/field.php:279 -msgid "width" -msgstr "largura" - -#: includes/admin/views/acf-field-group/field.php:273 -msgid "Wrapper Attributes" -msgstr "Atributos do wrapper" - -#: includes/admin/views/acf-field-group/field.php:196 -msgid "Required" -msgstr "Obrigatório" - -#: includes/admin/views/acf-field-group/field.php:221 -msgid "Instructions for authors. Shown when submitting data" -msgstr "" -"Instruções para os autores. São mostradas ao preencher e submeter dados." - -#: includes/admin/views/acf-field-group/field.php:220 -msgid "Instructions" -msgstr "Instruções" - -#: includes/admin/views/acf-field-group/field.php:129 -msgid "Field Type" -msgstr "Tipo de campo" - -#: includes/admin/views/acf-field-group/field.php:170 -msgid "Single word, no spaces. Underscores and dashes allowed" -msgstr "Uma única palavra, sem espaços. São permitidos underscores e hífenes." - -#: includes/admin/views/acf-field-group/field.php:169 -msgid "Field Name" -msgstr "Nome do campo" - -#: includes/admin/views/acf-field-group/field.php:157 -msgid "This is the name which will appear on the EDIT page" -msgstr "Este é o nome que será mostrado na página EDITAR" - -#: includes/admin/views/acf-field-group/field.php:156 -#: includes/admin/views/browse-fields-modal.php:59 -msgid "Field Label" -msgstr "Legenda do campo" - -#: includes/admin/views/acf-field-group/field.php:81 -msgid "Delete" -msgstr "Eliminar" - -#: includes/admin/views/acf-field-group/field.php:81 -msgid "Delete field" -msgstr "Eliminar campo" - -#: includes/admin/views/acf-field-group/field.php:79 -msgid "Move" -msgstr "Mover" - -#: includes/admin/views/acf-field-group/field.php:79 -msgid "Move field to another group" -msgstr "Mover campo para outro grupo" - -#: includes/admin/views/acf-field-group/field.php:77 -msgid "Duplicate field" -msgstr "Duplicar campo" - -#: includes/admin/views/acf-field-group/field.php:73 -#: includes/admin/views/acf-field-group/field.php:76 -msgid "Edit field" -msgstr "Editar campo" - -#: includes/admin/views/acf-field-group/field.php:69 -msgid "Drag to reorder" -msgstr "Arraste para reordenar" - -#: includes/admin/post-types/admin-field-group.php:103 -#: includes/admin/views/acf-field-group/location-group.php:3 -#: assets/build/js/acf-field-group.js:2347 -#: assets/build/js/acf-field-group.js:2763 -msgid "Show this field group if" -msgstr "Mostrar este grupo de campos se" - -#: includes/admin/views/upgrade/upgrade.php:94 -#: includes/ajax/class-acf-ajax-upgrade.php:34 -msgid "No updates available." -msgstr "Nenhuma actualização disponível." - -#: includes/admin/views/upgrade/upgrade.php:33 -msgid "Database upgrade complete. See what's new" -msgstr "" -"Actualização da base de dados concluída. Ver o que há de " -"novo" - -#: includes/admin/views/upgrade/upgrade.php:30 -msgid "Reading upgrade tasks..." -msgstr "A ler tarefas de actualização..." - -#: includes/admin/views/upgrade/network.php:165 -#: includes/admin/views/upgrade/upgrade.php:65 -msgid "Upgrade failed." -msgstr "Falhou ao actualizar." - -#: includes/admin/views/upgrade/network.php:162 -msgid "Upgrade complete." -msgstr "Actualização concluída." - -#: includes/admin/views/upgrade/network.php:148 -#: includes/admin/views/upgrade/upgrade.php:31 -msgid "Upgrading data to version %s" -msgstr "A actualizar dados para a versão %s" - -#: includes/admin/views/upgrade/network.php:121 -#: includes/admin/views/upgrade/notice.php:44 -msgid "" -"It is strongly recommended that you backup your database before proceeding. " -"Are you sure you wish to run the updater now?" -msgstr "" -"É recomendável que faça uma cópia de segurança da sua base de dados antes de " -"continuar. Tem a certeza que quer actualizar agora?" - -#: includes/admin/views/upgrade/network.php:117 -msgid "Please select at least one site to upgrade." -msgstr "Por favor, seleccione pelo menos um site para actualizar." - -#: includes/admin/views/upgrade/network.php:97 -msgid "" -"Database Upgrade complete. Return to network dashboard" -msgstr "" -"Actualização da base de dados concluída. Voltar ao painel da " -"rede" - -#: includes/admin/views/upgrade/network.php:80 -msgid "Site is up to date" -msgstr "O site está actualizado" - -#: includes/admin/views/upgrade/network.php:78 -msgid "Site requires database upgrade from %1$s to %2$s" -msgstr "O site necessita de actualizar a base de dados de %1$s para %2$s" - -#: includes/admin/views/upgrade/network.php:36 -#: includes/admin/views/upgrade/network.php:47 -msgid "Site" -msgstr "Site" - -#: includes/admin/views/upgrade/network.php:26 -#: includes/admin/views/upgrade/network.php:27 -#: includes/admin/views/upgrade/network.php:96 -msgid "Upgrade Sites" -msgstr "Actualizar sites" - -#: includes/admin/views/upgrade/network.php:26 -msgid "" -"The following sites require a DB upgrade. Check the ones you want to update " -"and then click %s." -msgstr "" -"Os sites seguintes necessitam de actualização da BD. Seleccione os que quer " -"actualizar e clique em %s." - -#: includes/admin/views/acf-field-group/conditional-logic.php:171 -#: includes/admin/views/acf-field-group/locations.php:38 -msgid "Add rule group" -msgstr "Adicionar grupo de regras" - -#: includes/admin/views/acf-field-group/locations.php:10 -msgid "" -"Create a set of rules to determine which edit screens will use these " -"advanced custom fields" -msgstr "" -"Crie um conjunto de regras para determinar em que ecrãs de edição serão " -"utilizados estes campos personalizados avançados" - -#: includes/admin/views/acf-field-group/locations.php:9 -msgid "Rules" -msgstr "Regras" - -#: includes/admin/tools/class-acf-admin-tool-export.php:510 -msgid "Copied" -msgstr "Copiado" - -#: includes/admin/tools/class-acf-admin-tool-export.php:486 -msgid "Copy to clipboard" -msgstr "Copiar para a área de transferência" - -#: includes/admin/tools/class-acf-admin-tool-export.php:385 -msgid "" -"Select the items you would like to export and then select your export " -"method. Export As JSON to export to a .json file which you can then import " -"to another ACF installation. Generate PHP to export to PHP code which you " -"can place in your theme." -msgstr "" -"Seleccione os itens que deseja exportar e seleccione o método de exportação. " -"Utilize o Exportar como JSON para exportar um ficheiro .json que poderá " -"depois importar para outra instalação do ACF. Utilize o botão Gerar PHP para " -"exportar o código PHP que poderá incorporar no seu tema." - -#: includes/admin/tools/class-acf-admin-tool-export.php:233 -msgid "Select Field Groups" -msgstr "Seleccione os grupos de campos" - -#: includes/admin/tools/class-acf-admin-tool-export.php:96 -#: includes/admin/tools/class-acf-admin-tool-export.php:131 -msgid "No field groups selected" -msgstr "Nenhum grupo de campos seleccionado" - -#: includes/admin/tools/class-acf-admin-tool-export.php:39 -#: includes/admin/tools/class-acf-admin-tool-export.php:393 -#: includes/admin/tools/class-acf-admin-tool-export.php:421 -msgid "Generate PHP" -msgstr "Gerar PHP" - -#: includes/admin/tools/class-acf-admin-tool-export.php:35 -msgid "Export Field Groups" -msgstr "Exportar grupos de campos" - -#: includes/admin/tools/class-acf-admin-tool-import.php:177 -msgid "Import file empty" -msgstr "Ficheiro de importação vazio" - -#: includes/admin/tools/class-acf-admin-tool-import.php:168 -msgid "Incorrect file type" -msgstr "Tipo de ficheiro incorrecto" - -#: includes/admin/tools/class-acf-admin-tool-import.php:163 -msgid "Error uploading file. Please try again" -msgstr "Erro ao carregar ficheiro. Por favor tente de novo." - -#: includes/admin/tools/class-acf-admin-tool-import.php:50 -msgid "" -"Select the Advanced Custom Fields JSON file you would like to import. When " -"you click the import button below, ACF will import the items in that file." -msgstr "" -"Seleccione o ficheiro JSON do Advanced Custom Fields que deseja importar. Ao " -"clicar no botão Importar abaixo, o ACF irá importar os itens desse ficheiro." - -#: includes/admin/tools/class-acf-admin-tool-import.php:27 -msgid "Import Field Groups" -msgstr "Importar grupos de campos" - -#: includes/admin/admin-internal-post-type-list.php:401 -msgid "Sync" -msgstr "Sincronizar" - -#: includes/admin/admin-internal-post-type-list.php:858 -msgid "Select %s" -msgstr "Seleccionar %s" - -#: includes/admin/admin-internal-post-type-list.php:442 -#: includes/admin/admin-internal-post-type-list.php:474 -#: includes/admin/views/acf-field-group/field.php:77 -msgid "Duplicate" -msgstr "Duplicar" - -#: includes/admin/admin-internal-post-type-list.php:442 -msgid "Duplicate this item" -msgstr "Duplicar este item" - -#: includes/admin/views/acf-post-type/advanced-settings.php:41 -msgid "Supports" -msgstr "Suporte" - -#: includes/admin/admin.php:261 includes/admin/views/browse-fields-modal.php:92 -msgid "Documentation" -msgstr "Documentação" - -#: includes/admin/post-types/admin-field-groups.php:116 -#: includes/admin/post-types/admin-post-types.php:135 -#: includes/admin/post-types/admin-taxonomies.php:135 -#: includes/admin/views/acf-field-group/options.php:249 -#: includes/admin/views/acf-post-type/advanced-settings.php:62 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:114 -#: includes/admin/views/upgrade/network.php:38 -#: includes/admin/views/upgrade/network.php:49 -msgid "Description" -msgstr "Descrição" - -#: includes/admin/admin-internal-post-type-list.php:398 -#: includes/admin/admin-internal-post-type-list.php:747 -msgid "Sync available" -msgstr "Sincronização disponível" - -#. translators: %s number of field groups synchronized -#: includes/admin/post-types/admin-field-groups.php:381 -msgid "Field group synchronized." -msgid_plural "%s field groups synchronized." -msgstr[0] "Grupo de campos sincronizado." -msgstr[1] "%s grupos de campos sincronizados." - -#. translators: %s number of field groups duplicated -#: includes/admin/post-types/admin-field-groups.php:374 -msgid "Field group duplicated." -msgid_plural "%s field groups duplicated." -msgstr[0] "Grupo de campos duplicado." -msgstr[1] "%s grupos de campos duplicados." - -#: includes/admin/admin-internal-post-type-list.php:137 -msgid "Active (%s)" -msgid_plural "Active (%s)" -msgstr[0] "Activo (%s)" -msgstr[1] "Activos (%s)" - -#: includes/admin/admin-upgrade.php:254 -msgid "Review sites & upgrade" -msgstr "Rever sites e actualizar" - -#: includes/admin/admin-upgrade.php:59 includes/admin/admin-upgrade.php:93 -#: includes/admin/admin-upgrade.php:94 includes/admin/admin-upgrade.php:230 -#: includes/admin/views/upgrade/network.php:24 -#: includes/admin/views/upgrade/upgrade.php:26 -msgid "Upgrade Database" -msgstr "Actualizar base de dados" - -#: includes/admin/views/acf-field-group/options.php:175 -#: includes/admin/views/acf-post-type/advanced-settings.php:30 -msgid "Custom Fields" -msgstr "Campos personalizados" - -#: includes/admin/post-types/admin-field-group.php:616 -msgid "Move Field" -msgstr "Mover campo" - -#: includes/admin/post-types/admin-field-group.php:605 -#: includes/admin/post-types/admin-field-group.php:609 -msgid "Please select the destination for this field" -msgstr "Por favor seleccione o destinho para este campo" - -#. translators: Confirmation message once a field has been moved to a different -#. field group. -#: includes/admin/post-types/admin-field-group.php:567 -msgid "The %1$s field can now be found in the %2$s field group" -msgstr "O campo %1$s pode agora ser encontrado no grupo de campos %2$s" - -#: includes/admin/post-types/admin-field-group.php:564 -msgid "Move Complete." -msgstr "Movido com sucesso." - -#: includes/admin/views/acf-field-group/field.php:39 -#: includes/admin/views/acf-field-group/options.php:217 -#: includes/admin/views/acf-post-type/advanced-settings.php:78 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:130 -msgid "Active" -msgstr "Activo" - -#: includes/admin/post-types/admin-field-group.php:266 -msgid "Field Keys" -msgstr "Chaves dos campos" - -#: includes/admin/post-types/admin-field-group.php:164 -#: includes/admin/tools/class-acf-admin-tool-export.php:342 -msgid "Settings" -msgstr "Definições" - -#: includes/admin/post-types/admin-field-groups.php:118 -msgid "Location" -msgstr "Localização" - -#: includes/admin/post-types/admin-field-group.php:104 -#: assets/build/js/acf-input.js:983 assets/build/js/acf-input.js:1075 -msgid "Null" -msgstr "Nulo" - -#: includes/admin/post-types/admin-field-group.php:101 -#: includes/class-acf-internal-post-type.php:730 -#: includes/post-types/class-acf-field-group.php:345 -#: assets/build/js/acf-field-group.js:1510 -#: assets/build/js/acf-field-group.js:1821 -msgid "copy" -msgstr "cópia" - -#: includes/admin/post-types/admin-field-group.php:100 -#: assets/build/js/acf-field-group.js:623 -#: assets/build/js/acf-field-group.js:778 -msgid "(this field)" -msgstr "(este campo)" - -#: includes/admin/post-types/admin-field-group.php:98 -#: assets/build/js/acf-input.js:918 assets/build/js/acf-input.js:943 -#: assets/build/js/acf-input.js:1002 assets/build/js/acf-input.js:1030 -msgid "Checked" -msgstr "Seleccionado" - -#: includes/admin/post-types/admin-field-group.php:94 -#: assets/build/js/acf-field-group.js:1615 -#: assets/build/js/acf-field-group.js:1933 -msgid "Move Custom Field" -msgstr "Mover campo personalizado" - -#: includes/admin/post-types/admin-field-group.php:93 -#: assets/build/js/acf-field-group.js:649 -#: assets/build/js/acf-field-group.js:804 -msgid "No toggle fields available" -msgstr "Nenhum campo de opções disponível" - -#: includes/admin/post-types/admin-field-group.php:91 -msgid "Field group title is required" -msgstr "O título do grupo de campos é obrigatório" - -#: includes/admin/post-types/admin-field-group.php:90 -#: assets/build/js/acf-field-group.js:1604 -#: assets/build/js/acf-field-group.js:1919 -msgid "This field cannot be moved until its changes have been saved" -msgstr "" -"Este campo não pode ser movido até que as suas alterações sejam guardadas" - -#: includes/admin/post-types/admin-field-group.php:89 -#: assets/build/js/acf-field-group.js:1414 -#: assets/build/js/acf-field-group.js:1716 -msgid "The string \"field_\" may not be used at the start of a field name" -msgstr "O prefixo \"field_\" não pode ser utilizado no início do nome do campo" - -#: includes/admin/post-types/admin-field-group.php:71 -msgid "Field group draft updated." -msgstr "Rascunho de grupo de campos actualizado." - -#: includes/admin/post-types/admin-field-group.php:70 -msgid "Field group scheduled for." -msgstr "Grupo de campos agendado." - -#: includes/admin/post-types/admin-field-group.php:69 -msgid "Field group submitted." -msgstr "Grupo de campos enviado." - -#: includes/admin/post-types/admin-field-group.php:68 -msgid "Field group saved." -msgstr "Grupo de campos guardado." - -#: includes/admin/post-types/admin-field-group.php:67 -msgid "Field group published." -msgstr "Grupo de campos publicado." - -#: includes/admin/post-types/admin-field-group.php:64 -msgid "Field group deleted." -msgstr "Grupo de campos eliminado." - -#: includes/admin/post-types/admin-field-group.php:62 -#: includes/admin/post-types/admin-field-group.php:63 -#: includes/admin/post-types/admin-field-group.php:65 -msgid "Field group updated." -msgstr "Grupo de campos actualizado." - -#: includes/admin/admin-tools.php:118 -#: includes/admin/views/global/navigation.php:246 -#: includes/admin/views/tools/tools.php:21 -msgid "Tools" -msgstr "Ferramentas" - -#: includes/locations/abstract-acf-location.php:106 -msgid "is not equal to" -msgstr "não é igual a" - -#: includes/locations/abstract-acf-location.php:105 -msgid "is equal to" -msgstr "é igual a" - -#: includes/locations.php:102 -msgid "Forms" -msgstr "Formulários" - -#: includes/admin/post-types/admin-post-type.php:127 includes/locations.php:100 -#: includes/locations/class-acf-location-page.php:22 -#: assets/build/js/acf-internal-post-type.js:175 -#: assets/build/js/acf-internal-post-type.js:249 -msgid "Page" -msgstr "Página" - -#: includes/admin/post-types/admin-post-type.php:125 includes/locations.php:99 -#: includes/locations/class-acf-location-post.php:22 -#: assets/build/js/acf-internal-post-type.js:172 -#: assets/build/js/acf-internal-post-type.js:246 -msgid "Post" -msgstr "Artigo" - -#: includes/fields.php:354 -msgid "Relational" -msgstr "Relacional" - -#: includes/fields.php:353 -msgid "Choice" -msgstr "Opção" - -#: includes/fields.php:351 -msgid "Basic" -msgstr "Básico" - -#: includes/fields.php:320 -msgid "Unknown" -msgstr "Desconhecido" - -#: includes/fields.php:320 -msgid "Field type does not exist" -msgstr "Tipo de campo não existe" - -#: includes/forms/form-front.php:236 -msgid "Spam Detected" -msgstr "Spam detectado" - -#: includes/forms/form-front.php:107 -msgid "Post updated" -msgstr "Conteúdo actualizado" - -#: includes/forms/form-front.php:106 -msgid "Update" -msgstr "Actualizar" - -#: includes/forms/form-front.php:57 -msgid "Validate Email" -msgstr "Validar email" - -#: includes/fields.php:352 includes/forms/form-front.php:49 -msgid "Content" -msgstr "Conteúdo" - -#: includes/admin/views/acf-post-type/advanced-settings.php:21 -#: includes/forms/form-front.php:40 -msgid "Title" -msgstr "Título" - -#: includes/assets.php:372 includes/forms/form-comment.php:160 -#: assets/build/js/acf-input.js:7382 assets/build/js/acf-input.js:7968 -msgid "Edit field group" -msgstr "Editar grupo de campos" - -#: includes/admin/post-types/admin-field-group.php:117 -#: assets/build/js/acf-input.js:1125 assets/build/js/acf-input.js:1230 -msgid "Selection is less than" -msgstr "A selecção é menor do que" - -#: includes/admin/post-types/admin-field-group.php:116 -#: assets/build/js/acf-input.js:1106 assets/build/js/acf-input.js:1202 -msgid "Selection is greater than" -msgstr "A selecção é maior do que" - -#: includes/admin/post-types/admin-field-group.php:115 -#: assets/build/js/acf-input.js:1075 assets/build/js/acf-input.js:1170 -msgid "Value is less than" -msgstr "O valor é menor do que" - -#: includes/admin/post-types/admin-field-group.php:114 -#: assets/build/js/acf-input.js:1045 assets/build/js/acf-input.js:1139 -msgid "Value is greater than" -msgstr "O valor é maior do que" - -#: includes/admin/post-types/admin-field-group.php:113 -#: assets/build/js/acf-input.js:888 assets/build/js/acf-input.js:960 -msgid "Value contains" -msgstr "O valor contém" - -#: includes/admin/post-types/admin-field-group.php:112 -#: assets/build/js/acf-input.js:862 assets/build/js/acf-input.js:926 -msgid "Value matches pattern" -msgstr "O valor corresponde ao padrão" - -#: includes/admin/post-types/admin-field-group.php:111 -#: assets/build/js/acf-input.js:840 assets/build/js/acf-input.js:1023 -#: assets/build/js/acf-input.js:903 assets/build/js/acf-input.js:1116 -msgid "Value is not equal to" -msgstr "O valor é diferente de" - -#: includes/admin/post-types/admin-field-group.php:110 -#: assets/build/js/acf-input.js:810 assets/build/js/acf-input.js:964 -#: assets/build/js/acf-input.js:864 assets/build/js/acf-input.js:1053 -msgid "Value is equal to" -msgstr "O valor é igual a" - -#: includes/admin/post-types/admin-field-group.php:109 -#: assets/build/js/acf-input.js:788 assets/build/js/acf-input.js:841 -msgid "Has no value" -msgstr "Não tem valor" - -#: includes/admin/post-types/admin-field-group.php:108 -#: assets/build/js/acf-input.js:758 assets/build/js/acf-input.js:783 -msgid "Has any value" -msgstr "Tem um valor qualquer" - -#: includes/admin/admin-internal-post-type.php:345 -#: includes/admin/views/browse-fields-modal.php:62 includes/assets.php:353 -#: assets/build/js/acf.js:1564 assets/build/js/acf.js:1658 -msgid "Cancel" -msgstr "Cancelar" - -#: includes/assets.php:349 assets/build/js/acf.js:1738 -#: assets/build/js/acf.js:1855 -msgid "Are you sure?" -msgstr "Tem a certeza?" - -#: includes/assets.php:369 assets/build/js/acf-input.js:9442 -#: assets/build/js/acf-input.js:10294 -msgid "%d fields require attention" -msgstr "%d campos requerem a sua atenção" - -#: includes/assets.php:368 assets/build/js/acf-input.js:9440 -#: assets/build/js/acf-input.js:10290 -msgid "1 field requires attention" -msgstr "1 campo requer a sua atenção" - -#: includes/assets.php:367 includes/validation.php:288 -#: includes/validation.php:298 assets/build/js/acf-input.js:9435 -#: assets/build/js/acf-input.js:10285 -msgid "Validation failed" -msgstr "A validação falhou" - -#: includes/assets.php:366 assets/build/js/acf-input.js:9603 -#: assets/build/js/acf-input.js:10473 -msgid "Validation successful" -msgstr "Validação bem sucedida" - -#: includes/media.php:54 assets/build/js/acf-input.js:7210 -#: assets/build/js/acf-input.js:7772 -msgid "Restricted" -msgstr "Restrito" - -#: includes/media.php:53 assets/build/js/acf-input.js:7025 -#: assets/build/js/acf-input.js:7536 -msgid "Collapse Details" -msgstr "Minimizar detalhes" - -#: includes/media.php:52 assets/build/js/acf-input.js:7025 -#: assets/build/js/acf-input.js:7533 -msgid "Expand Details" -msgstr "Expandir detalhes" - -#: includes/admin/views/acf-post-type/advanced-settings.php:465 -#: includes/media.php:51 assets/build/js/acf-input.js:6892 -#: assets/build/js/acf-input.js:7381 -msgid "Uploaded to this post" -msgstr "Carregados neste artigo" - -#: includes/media.php:50 assets/build/js/acf-input.js:6931 -#: assets/build/js/acf-input.js:7420 -msgctxt "verb" -msgid "Update" -msgstr "Actualizar" - -#: includes/media.php:49 -msgctxt "verb" -msgid "Edit" -msgstr "Editar" - -#: includes/assets.php:363 assets/build/js/acf-input.js:9212 -#: assets/build/js/acf-input.js:10056 -msgid "The changes you made will be lost if you navigate away from this page" -msgstr "" -"As alterações que fez serão ignoradas se navegar para fora desta página" - -#: includes/api/api-helpers.php:3395 -msgid "File type must be %s." -msgstr "O tipo de ficheiro deve ser %s." - -#: includes/admin/post-types/admin-field-group.php:102 -#: includes/admin/views/acf-field-group/conditional-logic.php:59 -#: includes/admin/views/acf-field-group/conditional-logic.php:169 -#: includes/admin/views/acf-field-group/location-group.php:3 -#: includes/admin/views/acf-field-group/locations.php:36 -#: includes/api/api-helpers.php:3391 assets/build/js/acf-field-group.js:771 -#: assets/build/js/acf-field-group.js:2385 -#: assets/build/js/acf-field-group.js:933 -#: assets/build/js/acf-field-group.js:2807 -msgid "or" -msgstr "ou" - -#: includes/api/api-helpers.php:3364 -msgid "File size must not exceed %s." -msgstr "O tamanho do ficheiro não deve exceder %s." - -#: includes/api/api-helpers.php:3359 -msgid "File size must be at least %s." -msgstr "O tamanho do ficheiro deve ser pelo menos de %s." - -#: includes/api/api-helpers.php:3344 -msgid "Image height must not exceed %dpx." -msgstr "A altura da imagem não deve exceder os %dpx." - -#: includes/api/api-helpers.php:3339 -msgid "Image height must be at least %dpx." -msgstr "A altura da imagem deve ser pelo menos de %dpx." - -#: includes/api/api-helpers.php:3325 -msgid "Image width must not exceed %dpx." -msgstr "A largura da imagem não deve exceder os %dpx." - -#: includes/api/api-helpers.php:3320 -msgid "Image width must be at least %dpx." -msgstr "A largura da imagem deve ser pelo menos de %dpx." - -#: includes/api/api-helpers.php:1561 includes/api/api-term.php:147 -msgid "(no title)" -msgstr "(sem título)" - -#: includes/api/api-helpers.php:853 -msgid "Full Size" -msgstr "Tamanho original" - -#: includes/api/api-helpers.php:812 -msgid "Large" -msgstr "Grande" - -#: includes/api/api-helpers.php:811 -msgid "Medium" -msgstr "Média" - -#: includes/api/api-helpers.php:810 -msgid "Thumbnail" -msgstr "Miniatura" - -#: includes/acf-field-functions.php:854 -#: includes/admin/post-types/admin-field-group.php:99 -#: assets/build/js/acf-field-group.js:1077 -#: assets/build/js/acf-field-group.js:1260 -msgid "(no label)" -msgstr "(sem legenda)" - -#: includes/fields/class-acf-field-textarea.php:145 -msgid "Sets the textarea height" -msgstr "Define a altura da área de texto" - -#: includes/fields/class-acf-field-textarea.php:144 -msgid "Rows" -msgstr "Linhas" - -#: includes/fields/class-acf-field-textarea.php:25 -msgid "Text Area" -msgstr "Área de texto" - -#: includes/fields/class-acf-field-checkbox.php:451 -msgid "Prepend an extra checkbox to toggle all choices" -msgstr "" -"Preceder com caixa de selecção adicional para seleccionar todas as opções" - -#: includes/fields/class-acf-field-checkbox.php:413 -msgid "Save 'custom' values to the field's choices" -msgstr "Guarda valores personalizados nas opções do campo" - -#: includes/fields/class-acf-field-checkbox.php:402 -msgid "Allow 'custom' values to be added" -msgstr "Permite adicionar valores personalizados" - -#: includes/fields/class-acf-field-checkbox.php:38 -msgid "Add new choice" -msgstr "Adicionar nova opção" - -#: includes/fields/class-acf-field-checkbox.php:174 -msgid "Toggle All" -msgstr "Seleccionar tudo" - -#: includes/fields/class-acf-field-page_link.php:506 -msgid "Allow Archives URLs" -msgstr "Permitir URL do arquivo" - -#: includes/fields/class-acf-field-page_link.php:179 -msgid "Archives" -msgstr "Arquivo" - -#: includes/fields/class-acf-field-page_link.php:25 -msgid "Page Link" -msgstr "Ligação de página" - -#: includes/fields/class-acf-field-taxonomy.php:943 -#: includes/locations/class-acf-location-user-form.php:72 -msgid "Add" -msgstr "Adicionar" - -#: includes/admin/views/acf-field-group/fields.php:53 -#: includes/fields/class-acf-field-taxonomy.php:908 -msgid "Name" -msgstr "Nome" - -#: includes/fields/class-acf-field-taxonomy.php:892 -msgid "%s added" -msgstr "%s adicionado(a)" - -#: includes/fields/class-acf-field-taxonomy.php:856 -msgid "%s already exists" -msgstr "%s já existe" - -#: includes/fields/class-acf-field-taxonomy.php:844 -msgid "User unable to add new %s" -msgstr "O utilizador não pôde adicionar novo(a) %s" - -#: includes/fields/class-acf-field-taxonomy.php:742 -msgid "Term ID" -msgstr "ID do termo" - -#: includes/fields/class-acf-field-taxonomy.php:741 -msgid "Term Object" -msgstr "Termo" - -#: includes/fields/class-acf-field-taxonomy.php:726 -msgid "Load value from posts terms" -msgstr "Carregar os valores a partir dos termos dos conteúdos" - -#: includes/fields/class-acf-field-taxonomy.php:725 -msgid "Load Terms" -msgstr "Carregar termos" - -#: includes/fields/class-acf-field-taxonomy.php:715 -msgid "Connect selected terms to the post" -msgstr "Liga os termos seleccionados ao conteúdo." - -#: includes/fields/class-acf-field-taxonomy.php:714 -msgid "Save Terms" -msgstr "Guardar termos" - -#: includes/fields/class-acf-field-taxonomy.php:704 -msgid "Allow new terms to be created whilst editing" -msgstr "Permite a criação de novos termos durante a edição" - -#: includes/fields/class-acf-field-taxonomy.php:703 -msgid "Create Terms" -msgstr "Criar termos" - -#: includes/fields/class-acf-field-taxonomy.php:762 -msgid "Radio Buttons" -msgstr "Botões de opções" - -#: includes/fields/class-acf-field-taxonomy.php:761 -msgid "Single Value" -msgstr "Valor único" - -#: includes/fields/class-acf-field-taxonomy.php:759 -msgid "Multi Select" -msgstr "Selecção múltipla" - -#: includes/fields/class-acf-field-checkbox.php:25 -#: includes/fields/class-acf-field-taxonomy.php:758 -msgid "Checkbox" -msgstr "Caixa de selecção" - -#: includes/fields/class-acf-field-taxonomy.php:757 -msgid "Multiple Values" -msgstr "Valores múltiplos" - -#: includes/fields/class-acf-field-taxonomy.php:752 -msgid "Select the appearance of this field" -msgstr "Seleccione a apresentação deste campo" - -#: includes/fields/class-acf-field-taxonomy.php:751 -msgid "Appearance" -msgstr "Apresentação" - -#: includes/fields/class-acf-field-taxonomy.php:693 -msgid "Select the taxonomy to be displayed" -msgstr "Seleccione a taxonomia que será mostrada" - -#: includes/fields/class-acf-field-taxonomy.php:654 -msgctxt "No Terms" -msgid "No %s" -msgstr "Nenhum %s" - -#: includes/fields/class-acf-field-number.php:266 -msgid "Value must be equal to or lower than %d" -msgstr "O valor deve ser igual ou inferior a %d" - -#: includes/fields/class-acf-field-number.php:259 -msgid "Value must be equal to or higher than %d" -msgstr "O valor deve ser igual ou superior a %d" - -#: includes/fields/class-acf-field-number.php:244 -msgid "Value must be a number" -msgstr "O valor deve ser um número" - -#: includes/fields/class-acf-field-number.php:25 -msgid "Number" -msgstr "Número" - -#: includes/fields/class-acf-field-radio.php:264 -msgid "Save 'other' values to the field's choices" -msgstr "Guardar 'outros' valores nas opções do campo" - -#: includes/fields/class-acf-field-radio.php:253 -msgid "Add 'other' choice to allow for custom values" -msgstr "" -"Adicionar opção 'outros' para permitir a inserção de valores personalizados" - -#: includes/admin/views/global/navigation.php:196 -msgid "Other" -msgstr "Outro" - -#: includes/fields/class-acf-field-radio.php:25 -msgid "Radio Button" -msgstr "Botão de opção" - -#: includes/fields/class-acf-field-accordion.php:107 -msgid "" -"Define an endpoint for the previous accordion to stop. This accordion will " -"not be visible." -msgstr "" -"Define o fim do acordeão anterior. Este item de acordeão não será visível." - -#: includes/fields/class-acf-field-accordion.php:96 -msgid "Allow this accordion to open without closing others." -msgstr "Permite abrir este item de acordeão sem fechar os restantes." - -#: includes/fields/class-acf-field-accordion.php:95 -msgid "Multi-Expand" -msgstr "Expandir múltiplos" - -#: includes/fields/class-acf-field-accordion.php:85 -msgid "Display this accordion as open on page load." -msgstr "Mostrar este item de acordeão aberto ao carregar a página." - -#: includes/fields/class-acf-field-accordion.php:84 -msgid "Open" -msgstr "Aberto" - -#: includes/fields/class-acf-field-accordion.php:25 -msgid "Accordion" -msgstr "Acordeão" - -#: includes/fields/class-acf-field-file.php:267 -#: includes/fields/class-acf-field-file.php:279 -msgid "Restrict which files can be uploaded" -msgstr "Restringe que ficheiros podem ser carregados" - -#: includes/fields/class-acf-field-file.php:220 -msgid "File ID" -msgstr "ID do ficheiro" - -#: includes/fields/class-acf-field-file.php:219 -msgid "File URL" -msgstr "URL do ficheiro" - -#: includes/fields/class-acf-field-file.php:218 -msgid "File Array" -msgstr "Array do ficheiro" - -#: includes/fields/class-acf-field-file.php:186 -msgid "Add File" -msgstr "Adicionar ficheiro" - -#: includes/admin/tools/class-acf-admin-tool-import.php:156 -#: includes/fields/class-acf-field-file.php:186 -msgid "No file selected" -msgstr "Nenhum ficheiro seleccionado" - -#: includes/fields/class-acf-field-file.php:150 -msgid "File name" -msgstr "Nome do ficheiro" - -#: includes/fields/class-acf-field-file.php:63 -#: assets/build/js/acf-input.js:2474 assets/build/js/acf-input.js:2625 -msgid "Update File" -msgstr "Actualizar ficheiro" - -#: includes/fields/class-acf-field-file.php:62 -#: assets/build/js/acf-input.js:2473 assets/build/js/acf-input.js:2624 -msgid "Edit File" -msgstr "Editar ficheiro" - -#: includes/admin/tools/class-acf-admin-tool-import.php:58 -#: includes/fields/class-acf-field-file.php:61 -#: assets/build/js/acf-input.js:2447 assets/build/js/acf-input.js:2597 -msgid "Select File" -msgstr "Seleccionar ficheiro" - -#: includes/fields/class-acf-field-file.php:25 -msgid "File" -msgstr "Ficheiro" - -#: includes/fields/class-acf-field-password.php:25 -msgid "Password" -msgstr "Senha" - -#: includes/fields/class-acf-field-select.php:392 -msgid "Specify the value returned" -msgstr "Especifique o valor devolvido" - -#: includes/fields/class-acf-field-select.php:461 -msgid "Use AJAX to lazy load choices?" -msgstr "Utilizar AJAX para carregar opções?" - -#: includes/fields/class-acf-field-checkbox.php:362 -#: includes/fields/class-acf-field-select.php:381 -msgid "Enter each default value on a new line" -msgstr "Insira cada valor por omissão numa linha separada" - -#: includes/fields/class-acf-field-select.php:252 includes/media.php:48 -#: assets/build/js/acf-input.js:6790 assets/build/js/acf-input.js:7266 -msgctxt "verb" -msgid "Select" -msgstr "Seleccionar" - -#: includes/fields/class-acf-field-select.php:121 -msgctxt "Select2 JS load_fail" -msgid "Loading failed" -msgstr "Falhou ao carregar" - -#: includes/fields/class-acf-field-select.php:120 -msgctxt "Select2 JS searching" -msgid "Searching…" -msgstr "A pesquisar…" - -#: includes/fields/class-acf-field-select.php:119 -msgctxt "Select2 JS load_more" -msgid "Loading more results…" -msgstr "A carregar mais resultados…" - -#: includes/fields/class-acf-field-select.php:118 -msgctxt "Select2 JS selection_too_long_n" -msgid "You can only select %d items" -msgstr "Só pode seleccionar %d itens" - -#: includes/fields/class-acf-field-select.php:117 -msgctxt "Select2 JS selection_too_long_1" -msgid "You can only select 1 item" -msgstr "Só pode seleccionar 1 item" - -#: includes/fields/class-acf-field-select.php:116 -msgctxt "Select2 JS input_too_long_n" -msgid "Please delete %d characters" -msgstr "Por favor elimine %d caracteres" - -#: includes/fields/class-acf-field-select.php:115 -msgctxt "Select2 JS input_too_long_1" -msgid "Please delete 1 character" -msgstr "Por favor elimine 1 caractere" - -#: includes/fields/class-acf-field-select.php:114 -msgctxt "Select2 JS input_too_short_n" -msgid "Please enter %d or more characters" -msgstr "Por favor insira %d ou mais caracteres" - -#: includes/fields/class-acf-field-select.php:113 -msgctxt "Select2 JS input_too_short_1" -msgid "Please enter 1 or more characters" -msgstr "Por favor insira 1 ou mais caracteres" - -#: includes/fields/class-acf-field-select.php:112 -msgctxt "Select2 JS matches_0" -msgid "No matches found" -msgstr "Nenhuma correspondência encontrada" - -#: includes/fields/class-acf-field-select.php:111 -msgctxt "Select2 JS matches_n" -msgid "%d results are available, use up and down arrow keys to navigate." -msgstr "" -"%d resultados encontrados, use as setas para cima ou baixo para navegar." - -#: includes/fields/class-acf-field-select.php:110 -msgctxt "Select2 JS matches_1" -msgid "One result is available, press enter to select it." -msgstr "Um resultado encontrado, prima Enter para seleccioná-lo." - -#: includes/fields/class-acf-field-select.php:25 -#: includes/fields/class-acf-field-taxonomy.php:763 -msgctxt "noun" -msgid "Select" -msgstr "Selecção" - -#: includes/fields/class-acf-field-user.php:73 -msgid "User ID" -msgstr "ID do utilizador" - -#: includes/fields/class-acf-field-user.php:72 -msgid "User Object" -msgstr "Objecto do utilizador" - -#: includes/fields/class-acf-field-user.php:71 -msgid "User Array" -msgstr "Array do utilizador" - -#: includes/fields/class-acf-field-user.php:59 -msgid "All user roles" -msgstr "Todos os papéis de utilizador" - -#: includes/fields/class-acf-field-user.php:51 -msgid "Filter by Role" -msgstr "Filtrar por papel" - -#: includes/fields/class-acf-field-user.php:15 includes/locations.php:101 -msgid "User" -msgstr "Utilizador" - -#: includes/fields/class-acf-field-separator.php:25 -msgid "Separator" -msgstr "Divisória" - -#: includes/fields/class-acf-field-color_picker.php:75 -msgid "Select Color" -msgstr "Seleccionar cor" - -#: includes/admin/post-types/admin-post-type.php:129 -#: includes/admin/post-types/admin-taxonomy.php:131 -#: includes/fields/class-acf-field-color_picker.php:73 -#: assets/build/js/acf-internal-post-type.js:72 -#: assets/build/js/acf-internal-post-type.js:86 -msgid "Default" -msgstr "Por omissão" - -#: includes/admin/views/acf-post-type/advanced-settings.php:89 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:141 -#: includes/fields/class-acf-field-color_picker.php:71 -msgid "Clear" -msgstr "Limpar" - -#: includes/fields/class-acf-field-color_picker.php:25 -msgid "Color Picker" -msgstr "Selecção de cor" - -#: includes/fields/class-acf-field-date_time_picker.php:88 -msgctxt "Date Time Picker JS pmTextShort" -msgid "P" -msgstr "P" - -#: includes/fields/class-acf-field-date_time_picker.php:87 -msgctxt "Date Time Picker JS pmText" -msgid "PM" -msgstr "PM" - -#: includes/fields/class-acf-field-date_time_picker.php:84 -msgctxt "Date Time Picker JS amTextShort" -msgid "A" -msgstr "A" - -#: includes/fields/class-acf-field-date_time_picker.php:83 -msgctxt "Date Time Picker JS amText" -msgid "AM" -msgstr "AM" - -#: includes/fields/class-acf-field-date_time_picker.php:81 -msgctxt "Date Time Picker JS selectText" -msgid "Select" -msgstr "Seleccionar" - -#: includes/fields/class-acf-field-date_time_picker.php:80 -msgctxt "Date Time Picker JS closeText" -msgid "Done" -msgstr "Concluído" - -#: includes/fields/class-acf-field-date_time_picker.php:79 -msgctxt "Date Time Picker JS currentText" -msgid "Now" -msgstr "Agora" - -#: includes/fields/class-acf-field-date_time_picker.php:78 -msgctxt "Date Time Picker JS timezoneText" -msgid "Time Zone" -msgstr "Fuso horário" - -#: includes/fields/class-acf-field-date_time_picker.php:77 -msgctxt "Date Time Picker JS microsecText" -msgid "Microsecond" -msgstr "Microsegundo" - -#: includes/fields/class-acf-field-date_time_picker.php:76 -msgctxt "Date Time Picker JS millisecText" -msgid "Millisecond" -msgstr "Milissegundo" - -#: includes/fields/class-acf-field-date_time_picker.php:75 -msgctxt "Date Time Picker JS secondText" -msgid "Second" -msgstr "Segundo" - -#: includes/fields/class-acf-field-date_time_picker.php:74 -msgctxt "Date Time Picker JS minuteText" -msgid "Minute" -msgstr "Minuto" - -#: includes/fields/class-acf-field-date_time_picker.php:73 -msgctxt "Date Time Picker JS hourText" -msgid "Hour" -msgstr "Hora" - -#: includes/fields/class-acf-field-date_time_picker.php:72 -msgctxt "Date Time Picker JS timeText" -msgid "Time" -msgstr "Hora" - -#: includes/fields/class-acf-field-date_time_picker.php:71 -msgctxt "Date Time Picker JS timeOnlyTitle" -msgid "Choose Time" -msgstr "Escolha a hora" - -#: includes/fields/class-acf-field-date_time_picker.php:25 -msgid "Date Time Picker" -msgstr "Selecção de data e hora" - -#: includes/fields/class-acf-field-accordion.php:106 -msgid "Endpoint" -msgstr "Fim" - -#: includes/admin/views/acf-field-group/options.php:130 -#: includes/fields/class-acf-field-tab.php:115 -msgid "Left aligned" -msgstr "Alinhado à esquerda" - -#: includes/admin/views/acf-field-group/options.php:129 -#: includes/fields/class-acf-field-tab.php:114 -msgid "Top aligned" -msgstr "Alinhado acima" - -#: includes/fields/class-acf-field-tab.php:110 -msgid "Placement" -msgstr "Posição" - -#: includes/fields/class-acf-field-tab.php:26 -msgid "Tab" -msgstr "Separador" - -#: includes/fields/class-acf-field-url.php:162 -msgid "Value must be a valid URL" -msgstr "O valor deve ser um URL válido" - -#: includes/fields/class-acf-field-link.php:177 -msgid "Link URL" -msgstr "URL da ligação" - -#: includes/fields/class-acf-field-link.php:176 -msgid "Link Array" -msgstr "Array da ligação" - -#: includes/fields/class-acf-field-link.php:145 -msgid "Opens in a new window/tab" -msgstr "Abre numa nova janela/separador" - -#: includes/fields/class-acf-field-link.php:140 -msgid "Select Link" -msgstr "Seleccionar ligação" - -#: includes/fields/class-acf-field-link.php:25 -msgid "Link" -msgstr "Ligação" - -#: includes/fields/class-acf-field-email.php:25 -msgid "Email" -msgstr "Email" - -#: includes/fields/class-acf-field-number.php:188 -#: includes/fields/class-acf-field-range.php:217 -msgid "Step Size" -msgstr "Valor dos passos" - -#: includes/fields/class-acf-field-number.php:158 -#: includes/fields/class-acf-field-range.php:195 -msgid "Maximum Value" -msgstr "Valor máximo" - -#: includes/fields/class-acf-field-number.php:148 -#: includes/fields/class-acf-field-range.php:184 -msgid "Minimum Value" -msgstr "Valor mínimo" - -#: includes/fields/class-acf-field-range.php:25 -msgid "Range" -msgstr "Intervalo" - -#: includes/fields/class-acf-field-button-group.php:175 -#: includes/fields/class-acf-field-checkbox.php:379 -#: includes/fields/class-acf-field-radio.php:220 -#: includes/fields/class-acf-field-select.php:399 -msgid "Both (Array)" -msgstr "Ambos (Array)" - -#: includes/admin/views/acf-field-group/fields.php:52 -#: includes/fields/class-acf-field-button-group.php:174 -#: includes/fields/class-acf-field-checkbox.php:378 -#: includes/fields/class-acf-field-radio.php:219 -#: includes/fields/class-acf-field-select.php:398 -msgid "Label" -msgstr "Legenda" - -#: includes/fields/class-acf-field-button-group.php:173 -#: includes/fields/class-acf-field-checkbox.php:377 -#: includes/fields/class-acf-field-radio.php:218 -#: includes/fields/class-acf-field-select.php:397 -msgid "Value" -msgstr "Valor" - -#: includes/fields/class-acf-field-button-group.php:222 -#: includes/fields/class-acf-field-checkbox.php:441 -#: includes/fields/class-acf-field-radio.php:292 -msgid "Vertical" -msgstr "Vertical" - -#: includes/fields/class-acf-field-button-group.php:221 -#: includes/fields/class-acf-field-checkbox.php:442 -#: includes/fields/class-acf-field-radio.php:293 -msgid "Horizontal" -msgstr "Horizontal" - -#: includes/fields/class-acf-field-button-group.php:148 -#: includes/fields/class-acf-field-checkbox.php:352 -#: includes/fields/class-acf-field-radio.php:193 -#: includes/fields/class-acf-field-select.php:370 -msgid "red : Red" -msgstr "vermelho : Vermelho" - -#: includes/fields/class-acf-field-button-group.php:148 -#: includes/fields/class-acf-field-checkbox.php:352 -#: includes/fields/class-acf-field-radio.php:193 -#: includes/fields/class-acf-field-select.php:370 -msgid "For more control, you may specify both a value and label like this:" -msgstr "" -"Para maior controlo, pode especificar tanto os valores como as legendas:" - -#: includes/fields/class-acf-field-button-group.php:148 -#: includes/fields/class-acf-field-checkbox.php:352 -#: includes/fields/class-acf-field-radio.php:193 -#: includes/fields/class-acf-field-select.php:370 -msgid "Enter each choice on a new line." -msgstr "Insira cada opção numa linha separada." - -#: includes/fields/class-acf-field-button-group.php:147 -#: includes/fields/class-acf-field-checkbox.php:351 -#: includes/fields/class-acf-field-radio.php:192 -#: includes/fields/class-acf-field-select.php:369 -msgid "Choices" -msgstr "Opções" - -#: includes/fields/class-acf-field-button-group.php:24 -msgid "Button Group" -msgstr "Grupo de botões" - -#: includes/fields/class-acf-field-button-group.php:194 -#: includes/fields/class-acf-field-page_link.php:538 -#: includes/fields/class-acf-field-post_object.php:448 -#: includes/fields/class-acf-field-radio.php:238 -#: includes/fields/class-acf-field-select.php:429 -#: includes/fields/class-acf-field-taxonomy.php:772 -#: includes/fields/class-acf-field-user.php:103 -msgid "Allow Null" -msgstr "Permitir nulo" - -#: includes/fields/class-acf-field-page_link.php:263 -#: includes/fields/class-acf-field-post_object.php:257 -#: includes/fields/class-acf-field-taxonomy.php:930 -msgid "Parent" -msgstr "Superior" - -#: includes/fields/class-acf-field-wysiwyg.php:390 -msgid "TinyMCE will not be initialized until field is clicked" -msgstr "O TinyMCE não será inicializado até que clique no campo" - -#: includes/fields/class-acf-field-wysiwyg.php:389 -msgid "Delay Initialization" -msgstr "Atrasar a inicialização" - -#: includes/fields/class-acf-field-wysiwyg.php:378 -msgid "Show Media Upload Buttons" -msgstr "Mostrar botões de carregar multimédia" - -#: includes/fields/class-acf-field-wysiwyg.php:362 -msgid "Toolbar" -msgstr "Barra de ferramentas" - -#: includes/fields/class-acf-field-wysiwyg.php:354 -msgid "Text Only" -msgstr "Apenas HTML" - -#: includes/fields/class-acf-field-wysiwyg.php:353 -msgid "Visual Only" -msgstr "Apenas visual" - -#: includes/fields/class-acf-field-wysiwyg.php:352 -msgid "Visual & Text" -msgstr "Visual e HTML" - -#: includes/fields/class-acf-field-wysiwyg.php:347 -msgid "Tabs" -msgstr "Separadores" - -#: includes/fields/class-acf-field-wysiwyg.php:285 -msgid "Click to initialize TinyMCE" -msgstr "Clique para inicializar o TinyMCE" - -#: includes/fields/class-acf-field-wysiwyg.php:279 -msgctxt "Name for the Text editor tab (formerly HTML)" -msgid "Text" -msgstr "HTML" - -#: includes/fields/class-acf-field-wysiwyg.php:278 -msgid "Visual" -msgstr "Visual" - -#: includes/fields/class-acf-field-text.php:189 -#: includes/fields/class-acf-field-textarea.php:236 -msgid "Value must not exceed %d characters" -msgstr "O valor não deve exceder %d caracteres" - -#: includes/fields/class-acf-field-text.php:124 -#: includes/fields/class-acf-field-textarea.php:124 -msgid "Leave blank for no limit" -msgstr "Deixe em branco para não limitar" - -#: includes/fields/class-acf-field-text.php:123 -#: includes/fields/class-acf-field-textarea.php:123 -msgid "Character Limit" -msgstr "Limite de caracteres" - -#: includes/fields/class-acf-field-email.php:158 -#: includes/fields/class-acf-field-number.php:209 -#: includes/fields/class-acf-field-password.php:105 -#: includes/fields/class-acf-field-range.php:239 -#: includes/fields/class-acf-field-text.php:164 -msgid "Appears after the input" -msgstr "Mostrado depois do campo" - -#: includes/fields/class-acf-field-email.php:157 -#: includes/fields/class-acf-field-number.php:208 -#: includes/fields/class-acf-field-password.php:104 -#: includes/fields/class-acf-field-range.php:238 -#: includes/fields/class-acf-field-text.php:163 -msgid "Append" -msgstr "Suceder" - -#: includes/fields/class-acf-field-email.php:148 -#: includes/fields/class-acf-field-number.php:199 -#: includes/fields/class-acf-field-password.php:95 -#: includes/fields/class-acf-field-range.php:229 -#: includes/fields/class-acf-field-text.php:154 -msgid "Appears before the input" -msgstr "Mostrado antes do campo" - -#: includes/fields/class-acf-field-email.php:147 -#: includes/fields/class-acf-field-number.php:198 -#: includes/fields/class-acf-field-password.php:94 -#: includes/fields/class-acf-field-range.php:228 -#: includes/fields/class-acf-field-text.php:153 -msgid "Prepend" -msgstr "Preceder" - -#: includes/fields/class-acf-field-email.php:138 -#: includes/fields/class-acf-field-number.php:179 -#: includes/fields/class-acf-field-password.php:85 -#: includes/fields/class-acf-field-text.php:144 -#: includes/fields/class-acf-field-textarea.php:156 -#: includes/fields/class-acf-field-url.php:122 -msgid "Appears within the input" -msgstr "Mostrado dentro do campo" - -#: includes/fields/class-acf-field-email.php:137 -#: includes/fields/class-acf-field-number.php:178 -#: includes/fields/class-acf-field-password.php:84 -#: includes/fields/class-acf-field-text.php:143 -#: includes/fields/class-acf-field-textarea.php:155 -#: includes/fields/class-acf-field-url.php:121 -msgid "Placeholder Text" -msgstr "Texto predefinido" - -#: includes/fields/class-acf-field-button-group.php:158 -#: includes/fields/class-acf-field-email.php:118 -#: includes/fields/class-acf-field-number.php:129 -#: includes/fields/class-acf-field-radio.php:203 -#: includes/fields/class-acf-field-range.php:165 -#: includes/fields/class-acf-field-text.php:104 -#: includes/fields/class-acf-field-textarea.php:104 -#: includes/fields/class-acf-field-url.php:102 -#: includes/fields/class-acf-field-wysiwyg.php:312 -msgid "Appears when creating a new post" -msgstr "Mostrado ao criar um novo conteúdo" - -#: includes/fields/class-acf-field-text.php:25 -msgid "Text" -msgstr "Texto" - -#: includes/fields/class-acf-field-relationship.php:794 -msgid "%1$s requires at least %2$s selection" -msgid_plural "%1$s requires at least %2$s selections" -msgstr[0] "%1$s requer pelo menos %2$s selecção" -msgstr[1] "%1$s requer pelo menos %2$s selecções" - -#: includes/fields/class-acf-field-post_object.php:417 -#: includes/fields/class-acf-field-relationship.php:644 -msgid "Post ID" -msgstr "ID do conteúdo" - -#: includes/fields/class-acf-field-post_object.php:17 -#: includes/fields/class-acf-field-post_object.php:416 -#: includes/fields/class-acf-field-relationship.php:643 -msgid "Post Object" -msgstr "Conteúdo" - -#: includes/fields/class-acf-field-relationship.php:676 -msgid "Maximum Posts" -msgstr "Máximo de conteúdos" - -#: includes/fields/class-acf-field-relationship.php:666 -msgid "Minimum Posts" -msgstr "Mínimo de conteúdos" - -#: includes/admin/views/acf-field-group/options.php:183 -#: includes/admin/views/acf-post-type/advanced-settings.php:29 -#: includes/fields/class-acf-field-relationship.php:701 -msgid "Featured Image" -msgstr "Imagem de destaque" - -#: includes/fields/class-acf-field-relationship.php:697 -msgid "Selected elements will be displayed in each result" -msgstr "Os elementos seleccionados serão mostrados em cada resultado" - -#: includes/fields/class-acf-field-relationship.php:696 -msgid "Elements" -msgstr "Elementos" - -#: includes/fields/class-acf-field-relationship.php:630 -#: includes/fields/class-acf-field-taxonomy.php:20 -#: includes/fields/class-acf-field-taxonomy.php:692 -#: includes/locations/class-acf-location-taxonomy.php:22 -msgid "Taxonomy" -msgstr "Taxonomia" - -#: includes/fields/class-acf-field-relationship.php:629 -#: includes/locations/class-acf-location-post-type.php:22 -#: includes/post-types/class-acf-post-type.php:92 -msgid "Post Type" -msgstr "Tipo de conteúdo" - -#: includes/fields/class-acf-field-relationship.php:623 -msgid "Filters" -msgstr "Filtros" - -#: includes/fields/class-acf-field-page_link.php:499 -#: includes/fields/class-acf-field-post_object.php:404 -#: includes/fields/class-acf-field-relationship.php:616 -msgid "All taxonomies" -msgstr "Todas as taxonomias" - -#: includes/fields/class-acf-field-page_link.php:491 -#: includes/fields/class-acf-field-post_object.php:396 -#: includes/fields/class-acf-field-relationship.php:608 -msgid "Filter by Taxonomy" -msgstr "Filtrar por taxonomia" - -#: includes/fields/class-acf-field-page_link.php:469 -#: includes/fields/class-acf-field-post_object.php:374 -#: includes/fields/class-acf-field-relationship.php:586 -msgid "All post types" -msgstr "Todos os tipos de conteúdo" - -#: includes/fields/class-acf-field-page_link.php:461 -#: includes/fields/class-acf-field-post_object.php:366 -#: includes/fields/class-acf-field-relationship.php:578 -msgid "Filter by Post Type" -msgstr "Filtrar por tipo de conteúdo" - -#: includes/fields/class-acf-field-relationship.php:476 -msgid "Search..." -msgstr "Pesquisar..." - -#: includes/fields/class-acf-field-relationship.php:406 -msgid "Select taxonomy" -msgstr "Seleccionar taxonomia" - -#: includes/fields/class-acf-field-relationship.php:397 -msgid "Select post type" -msgstr "Seleccionar tipo de conteúdo" - -#: includes/fields/class-acf-field-relationship.php:61 -#: assets/build/js/acf-input.js:3930 assets/build/js/acf-input.js:4214 -msgid "No matches found" -msgstr "Nenhuma correspondência encontrada" - -#: includes/fields/class-acf-field-relationship.php:60 -#: assets/build/js/acf-input.js:3913 assets/build/js/acf-input.js:4193 -msgid "Loading" -msgstr "A carregar" - -#: includes/fields/class-acf-field-relationship.php:59 -#: assets/build/js/acf-input.js:3818 assets/build/js/acf-input.js:4084 -msgid "Maximum values reached ( {max} values )" -msgstr "Valor máximo alcançado ( valor {max} )" - -#: includes/fields/class-acf-field-relationship.php:17 -msgid "Relationship" -msgstr "Relação" - -#: includes/fields/class-acf-field-file.php:291 -#: includes/fields/class-acf-field-image.php:317 -msgid "Comma separated list. Leave blank for all types" -msgstr "" -"Lista separada por vírgulas. Deixe em branco para permitir todos os tipos." - -#: includes/fields/class-acf-field-file.php:290 -#: includes/fields/class-acf-field-image.php:316 -msgid "Allowed File Types" -msgstr "Tipos de ficheiros permitidos" - -#: includes/fields/class-acf-field-file.php:278 -#: includes/fields/class-acf-field-image.php:280 -msgid "Maximum" -msgstr "Máximo" - -#: includes/fields/class-acf-field-file.php:154 -#: includes/fields/class-acf-field-file.php:270 -#: includes/fields/class-acf-field-file.php:282 -#: includes/fields/class-acf-field-image.php:271 -#: includes/fields/class-acf-field-image.php:307 -msgid "File size" -msgstr "Tamanho do ficheiro" - -#: includes/fields/class-acf-field-image.php:245 -#: includes/fields/class-acf-field-image.php:281 -msgid "Restrict which images can be uploaded" -msgstr "Restringe que imagens podem ser carregadas" - -#: includes/fields/class-acf-field-file.php:266 -#: includes/fields/class-acf-field-image.php:244 -msgid "Minimum" -msgstr "Mínimo" - -#: includes/fields/class-acf-field-file.php:235 -#: includes/fields/class-acf-field-image.php:210 -msgid "Uploaded to post" -msgstr "Carregados no conteúdo" - -#: includes/fields/class-acf-field-file.php:234 -#: includes/fields/class-acf-field-image.php:209 -#: includes/locations/class-acf-location-attachment.php:73 -#: includes/locations/class-acf-location-comment.php:61 -#: includes/locations/class-acf-location-nav-menu.php:74 -#: includes/locations/class-acf-location-taxonomy.php:63 -#: includes/locations/class-acf-location-user-form.php:71 -#: includes/locations/class-acf-location-user-role.php:78 -#: includes/locations/class-acf-location-widget.php:65 -msgid "All" -msgstr "Todos" - -#: includes/fields/class-acf-field-file.php:229 -#: includes/fields/class-acf-field-image.php:204 -msgid "Limit the media library choice" -msgstr "Limita a escolha da biblioteca multimédia" - -#: includes/fields/class-acf-field-file.php:228 -#: includes/fields/class-acf-field-image.php:203 -msgid "Library" -msgstr "Biblioteca" - -#: includes/fields/class-acf-field-image.php:336 -msgid "Preview Size" -msgstr "Tamanho da pré-visualização" - -#: includes/fields/class-acf-field-image.php:195 -msgid "Image ID" -msgstr "ID da imagem" - -#: includes/fields/class-acf-field-image.php:194 -msgid "Image URL" -msgstr "URL da imagem" - -#: includes/fields/class-acf-field-image.php:193 -msgid "Image Array" -msgstr "Array da imagem" - -#: includes/fields/class-acf-field-button-group.php:168 -#: includes/fields/class-acf-field-checkbox.php:372 -#: includes/fields/class-acf-field-file.php:213 -#: includes/fields/class-acf-field-link.php:171 -#: includes/fields/class-acf-field-radio.php:213 -msgid "Specify the returned value on front end" -msgstr "Especifica o valor devolvido na frente do site." - -#: includes/fields/class-acf-field-button-group.php:167 -#: includes/fields/class-acf-field-checkbox.php:371 -#: includes/fields/class-acf-field-file.php:212 -#: includes/fields/class-acf-field-link.php:170 -#: includes/fields/class-acf-field-radio.php:212 -#: includes/fields/class-acf-field-taxonomy.php:736 -msgid "Return Value" -msgstr "Valor devolvido" - -#: includes/fields/class-acf-field-image.php:162 -msgid "Add Image" -msgstr "Adicionar imagem" - -#: includes/fields/class-acf-field-image.php:162 -msgid "No image selected" -msgstr "Nenhuma imagem seleccionada" - -#: includes/assets.php:352 includes/fields/class-acf-field-file.php:162 -#: includes/fields/class-acf-field-image.php:142 -#: includes/fields/class-acf-field-link.php:145 assets/build/js/acf.js:1563 -#: assets/build/js/acf.js:1657 -msgid "Remove" -msgstr "Remover" - -#: includes/admin/views/acf-field-group/field.php:76 -#: includes/fields/class-acf-field-file.php:160 -#: includes/fields/class-acf-field-image.php:140 -#: includes/fields/class-acf-field-link.php:145 -msgid "Edit" -msgstr "Editar" - -#: includes/fields/class-acf-field-image.php:70 includes/media.php:55 -#: assets/build/js/acf-input.js:6837 assets/build/js/acf-input.js:7320 -msgid "All images" -msgstr "Todas as imagens" - -#: includes/fields/class-acf-field-image.php:69 -#: assets/build/js/acf-input.js:3181 assets/build/js/acf-input.js:3399 -msgid "Update Image" -msgstr "Actualizar imagem" - -#: includes/fields/class-acf-field-image.php:68 -#: assets/build/js/acf-input.js:3180 assets/build/js/acf-input.js:3398 -msgid "Edit Image" -msgstr "Editar imagem" - -#: includes/fields/class-acf-field-image.php:67 -#: assets/build/js/acf-input.js:3156 assets/build/js/acf-input.js:3373 -msgid "Select Image" -msgstr "Seleccionar imagem" - -#: includes/fields/class-acf-field-image.php:25 -msgid "Image" -msgstr "Imagem" - -#: includes/fields/class-acf-field-message.php:125 -msgid "Allow HTML markup to display as visible text instead of rendering" -msgstr "" -"Permite visualizar o código HTML como texto visível, em vez de o processar" - -#: includes/fields/class-acf-field-message.php:124 -msgid "Escape HTML" -msgstr "Mostrar HTML" - -#: includes/fields/class-acf-field-message.php:116 -#: includes/fields/class-acf-field-textarea.php:172 -msgid "No Formatting" -msgstr "Sem formatação" - -#: includes/fields/class-acf-field-message.php:115 -#: includes/fields/class-acf-field-textarea.php:171 -msgid "Automatically add <br>" -msgstr "Adicionar <br> automaticamente" - -#: includes/fields/class-acf-field-message.php:114 -#: includes/fields/class-acf-field-textarea.php:170 -msgid "Automatically add paragraphs" -msgstr "Adicionar parágrafos automaticamente" - -#: includes/fields/class-acf-field-message.php:110 -#: includes/fields/class-acf-field-textarea.php:166 -msgid "Controls how new lines are rendered" -msgstr "Controla como serão visualizadas novas linhas" - -#: includes/fields/class-acf-field-message.php:109 -#: includes/fields/class-acf-field-textarea.php:165 -msgid "New Lines" -msgstr "Novas linhas" - -#: includes/fields/class-acf-field-date_picker.php:232 -#: includes/fields/class-acf-field-date_time_picker.php:220 -msgid "Week Starts On" -msgstr "Semana começa em" - -#: includes/fields/class-acf-field-date_picker.php:201 -msgid "The format used when saving a value" -msgstr "O formato usado ao guardar um valor" - -#: includes/fields/class-acf-field-date_picker.php:200 -msgid "Save Format" -msgstr "Formato guardado" - -#: includes/fields/class-acf-field-date_picker.php:67 -msgctxt "Date Picker JS weekHeader" -msgid "Wk" -msgstr "Sem" - -#: includes/fields/class-acf-field-date_picker.php:66 -msgctxt "Date Picker JS prevText" -msgid "Prev" -msgstr "Anterior" - -#: includes/fields/class-acf-field-date_picker.php:65 -msgctxt "Date Picker JS nextText" -msgid "Next" -msgstr "Seguinte" - -#: includes/fields/class-acf-field-date_picker.php:64 -msgctxt "Date Picker JS currentText" -msgid "Today" -msgstr "Hoje" - -#: includes/fields/class-acf-field-date_picker.php:63 -msgctxt "Date Picker JS closeText" -msgid "Done" -msgstr "Concluído" - -#: includes/fields/class-acf-field-date_picker.php:25 -msgid "Date Picker" -msgstr "Selecção de data" - -#: includes/fields/class-acf-field-image.php:248 -#: includes/fields/class-acf-field-image.php:284 -#: includes/fields/class-acf-field-oembed.php:268 -msgid "Width" -msgstr "Largura" - -#: includes/fields/class-acf-field-oembed.php:265 -#: includes/fields/class-acf-field-oembed.php:277 -msgid "Embed Size" -msgstr "Tamanho da incorporação" - -#: includes/fields/class-acf-field-oembed.php:222 -msgid "Enter URL" -msgstr "Insira o URL" - -#: includes/fields/class-acf-field-oembed.php:25 -msgid "oEmbed" -msgstr "oEmbed" - -#: includes/fields/class-acf-field-true_false.php:184 -msgid "Text shown when inactive" -msgstr "Texto mostrado quando inactivo" - -#: includes/fields/class-acf-field-true_false.php:183 -msgid "Off Text" -msgstr "Texto desligado" - -#: includes/fields/class-acf-field-true_false.php:168 -msgid "Text shown when active" -msgstr "Texto mostrado quando activo" - -#: includes/fields/class-acf-field-true_false.php:167 -msgid "On Text" -msgstr "Texto ligado" - -#: includes/fields/class-acf-field-select.php:450 -#: includes/fields/class-acf-field-true_false.php:199 -msgid "Stylized UI" -msgstr "Interface estilizada" - -#: includes/fields/class-acf-field-button-group.php:157 -#: includes/fields/class-acf-field-checkbox.php:361 -#: includes/fields/class-acf-field-color_picker.php:156 -#: includes/fields/class-acf-field-email.php:117 -#: includes/fields/class-acf-field-number.php:128 -#: includes/fields/class-acf-field-radio.php:202 -#: includes/fields/class-acf-field-range.php:164 -#: includes/fields/class-acf-field-select.php:380 -#: includes/fields/class-acf-field-text.php:103 -#: includes/fields/class-acf-field-textarea.php:103 -#: includes/fields/class-acf-field-true_false.php:147 -#: includes/fields/class-acf-field-url.php:101 -#: includes/fields/class-acf-field-wysiwyg.php:311 -msgid "Default Value" -msgstr "Valor por omissão" - -#: includes/fields/class-acf-field-true_false.php:138 -msgid "Displays text alongside the checkbox" -msgstr "Texto mostrado ao lado da caixa de selecção" - -#: includes/fields/class-acf-field-message.php:26 -#: includes/fields/class-acf-field-message.php:99 -#: includes/fields/class-acf-field-true_false.php:137 -msgid "Message" -msgstr "Mensagem" - -#: includes/assets.php:351 includes/fields/class-acf-field-true_false.php:86 -#: includes/fields/class-acf-field-true_false.php:187 -#: assets/build/js/acf.js:1740 assets/build/js/acf.js:1857 -msgid "No" -msgstr "Não" - -#: includes/assets.php:350 includes/fields/class-acf-field-true_false.php:83 -#: includes/fields/class-acf-field-true_false.php:171 -#: assets/build/js/acf.js:1739 assets/build/js/acf.js:1856 -msgid "Yes" -msgstr "Sim" - -#: includes/fields/class-acf-field-true_false.php:25 -msgid "True / False" -msgstr "Verdadeiro / Falso" - -#: includes/fields/class-acf-field-group.php:474 -msgid "Row" -msgstr "Linha" - -#: includes/fields/class-acf-field-group.php:473 -msgid "Table" -msgstr "Tabela" - -#: includes/admin/post-types/admin-field-group.php:140 -#: includes/fields/class-acf-field-group.php:472 -msgid "Block" -msgstr "Bloco" - -#: includes/fields/class-acf-field-group.php:467 -msgid "Specify the style used to render the selected fields" -msgstr "Especifique o estilo usado para mostrar os campos seleccionados" - -#: includes/fields.php:356 includes/fields/class-acf-field-button-group.php:215 -#: includes/fields/class-acf-field-checkbox.php:435 -#: includes/fields/class-acf-field-group.php:466 -#: includes/fields/class-acf-field-radio.php:286 -msgid "Layout" -msgstr "Layout" - -#: includes/fields/class-acf-field-group.php:450 -msgid "Sub Fields" -msgstr "Subcampos" - -#: includes/fields/class-acf-field-group.php:25 -msgid "Group" -msgstr "Grupo" - -#: includes/fields/class-acf-field-google-map.php:235 -msgid "Customize the map height" -msgstr "Personalizar a altura do mapa" - -#: includes/fields/class-acf-field-google-map.php:234 -#: includes/fields/class-acf-field-image.php:259 -#: includes/fields/class-acf-field-image.php:295 -#: includes/fields/class-acf-field-oembed.php:280 -msgid "Height" -msgstr "Altura" - -#: includes/fields/class-acf-field-google-map.php:223 -msgid "Set the initial zoom level" -msgstr "Definir o nível de zoom inicial" - -#: includes/fields/class-acf-field-google-map.php:222 -msgid "Zoom" -msgstr "Zoom" - -#: includes/fields/class-acf-field-google-map.php:196 -#: includes/fields/class-acf-field-google-map.php:209 -msgid "Center the initial map" -msgstr "Centrar o mapa inicial" - -#: includes/fields/class-acf-field-google-map.php:195 -#: includes/fields/class-acf-field-google-map.php:208 -msgid "Center" -msgstr "Centrar" - -#: includes/fields/class-acf-field-google-map.php:163 -msgid "Search for address..." -msgstr "Pesquisar endereço..." - -#: includes/fields/class-acf-field-google-map.php:160 -msgid "Find current location" -msgstr "Encontrar a localização actual" - -#: includes/fields/class-acf-field-google-map.php:159 -msgid "Clear location" -msgstr "Limpar localização" - -#: includes/fields/class-acf-field-google-map.php:158 -#: includes/fields/class-acf-field-relationship.php:628 -msgid "Search" -msgstr "Pesquisa" - -#: includes/fields/class-acf-field-google-map.php:63 -#: assets/build/js/acf-input.js:2840 assets/build/js/acf-input.js:3026 -msgid "Sorry, this browser does not support geolocation" -msgstr "Desculpe, este navegador não suporta geolocalização" - -#: includes/fields/class-acf-field-google-map.php:25 -msgid "Google Map" -msgstr "Mapa do Google" - -#: includes/fields/class-acf-field-date_picker.php:212 -#: includes/fields/class-acf-field-date_time_picker.php:201 -#: includes/fields/class-acf-field-time_picker.php:132 -msgid "The format returned via template functions" -msgstr "O formato devolvido através das template functions" - -#: includes/fields/class-acf-field-color_picker.php:180 -#: includes/fields/class-acf-field-date_picker.php:211 -#: includes/fields/class-acf-field-date_time_picker.php:200 -#: includes/fields/class-acf-field-image.php:187 -#: includes/fields/class-acf-field-post_object.php:411 -#: includes/fields/class-acf-field-relationship.php:638 -#: includes/fields/class-acf-field-select.php:391 -#: includes/fields/class-acf-field-time_picker.php:131 -#: includes/fields/class-acf-field-user.php:66 -msgid "Return Format" -msgstr "Formato devolvido" - -#: includes/fields/class-acf-field-date_picker.php:190 -#: includes/fields/class-acf-field-date_picker.php:221 -#: includes/fields/class-acf-field-date_time_picker.php:192 -#: includes/fields/class-acf-field-date_time_picker.php:210 -#: includes/fields/class-acf-field-time_picker.php:123 -#: includes/fields/class-acf-field-time_picker.php:139 -msgid "Custom:" -msgstr "Personalizado:" - -#: includes/fields/class-acf-field-date_picker.php:182 -#: includes/fields/class-acf-field-date_time_picker.php:183 -#: includes/fields/class-acf-field-time_picker.php:116 -msgid "The format displayed when editing a post" -msgstr "O formato de visualização ao editar um conteúdo" - -#: includes/fields/class-acf-field-date_picker.php:181 -#: includes/fields/class-acf-field-date_time_picker.php:182 -#: includes/fields/class-acf-field-time_picker.php:115 -msgid "Display Format" -msgstr "Formato de visualização" - -#: includes/fields/class-acf-field-time_picker.php:25 -msgid "Time Picker" -msgstr "Selecção de hora" - -#. translators: counts for inactive field groups -#: acf.php:503 -msgid "Inactive (%s)" -msgid_plural "Inactive (%s)" -msgstr[0] "Inactivo (%s)" -msgstr[1] "Inactivos (%s)" - -#: acf.php:462 -msgid "No Fields found in Trash" -msgstr "Nenhum campo encontrado no lixo" - -#: acf.php:461 -msgid "No Fields found" -msgstr "Nenhum campo encontrado" - -#: acf.php:460 -msgid "Search Fields" -msgstr "Pesquisar campos" - -#: acf.php:459 -msgid "View Field" -msgstr "Ver campo" - -#: acf.php:458 includes/admin/views/acf-field-group/fields.php:115 -msgid "New Field" -msgstr "Novo campo" - -#: acf.php:457 -msgid "Edit Field" -msgstr "Editar campo" - -#: acf.php:456 -msgid "Add New Field" -msgstr "Adicionar novo campo" - -#: acf.php:454 -msgid "Field" -msgstr "Campo" - -#: acf.php:453 includes/admin/post-types/admin-field-group.php:163 -#: includes/admin/post-types/admin-field-groups.php:119 -#: includes/admin/views/acf-field-group/fields.php:32 -msgid "Fields" -msgstr "Campos" - -#: acf.php:428 -msgid "No Field Groups found in Trash" -msgstr "Nenhum grupo de campos encontrado no lixo" - -#: acf.php:427 -msgid "No Field Groups found" -msgstr "Nenhum grupo de campos encontrado" - -#: acf.php:426 -msgid "Search Field Groups" -msgstr "Pesquisar grupos de campos" - -#: acf.php:425 -msgid "View Field Group" -msgstr "Ver grupo de campos" - -#: acf.php:424 -msgid "New Field Group" -msgstr "Novo grupo de campos" - -#: acf.php:423 -msgid "Edit Field Group" -msgstr "Editar grupo de campos" - -#: acf.php:422 -msgid "Add New Field Group" -msgstr "Adicionar novo grupo de campos" - -#: acf.php:421 acf.php:455 -#: includes/admin/views/acf-post-type/advanced-settings.php:219 -#: includes/admin/views/acf-post-type/advanced-settings.php:221 -#: includes/post-types/class-acf-post-type.php:93 -#: includes/post-types/class-acf-taxonomy.php:92 -msgid "Add New" -msgstr "Adicionar novo" - -#: acf.php:420 -msgid "Field Group" -msgstr "Grupo de campos" - -#: acf.php:419 includes/admin/post-types/admin-field-groups.php:78 -#: includes/admin/post-types/admin-post-types.php:138 -#: includes/admin/post-types/admin-taxonomies.php:138 -msgid "Field Groups" -msgstr "Grupos de campos" - -#. Description of the plugin -msgid "Customize WordPress with powerful, professional and intuitive fields." -msgstr "" -"Personalize o WordPress com campos intuitivos, poderosos e profissionais." - -#. Plugin URI of the plugin -msgid "https://www.advancedcustomfields.com" -msgstr "https://www.advancedcustomfields.com" - -#. Plugin Name of the plugin -#: acf.php:94 -msgid "Advanced Custom Fields" -msgstr "Advanced Custom Fields" - -#: pro/acf-pro.php:27 -msgid "Advanced Custom Fields PRO" -msgstr "Advanced Custom Fields PRO" - -#: pro/blocks.php:170 -msgid "Block type name is required." -msgstr "O nome do tipo de bloco é obrigatório." - -#. translators: The name of the block type -#: pro/blocks.php:178 -msgid "Block type \"%s\" is already registered." -msgstr "O tipo de bloco \"%s\" já está registado." - -#: pro/blocks.php:726 -msgid "Switch to Edit" -msgstr "Mudar para o editor" - -#: pro/blocks.php:727 -msgid "Switch to Preview" -msgstr "Mudar para pré-visualização" - -#: pro/blocks.php:728 -msgid "Change content alignment" -msgstr "Alterar o alinhamento do conteúdo" - -#. translators: %s: Block type title -#: pro/blocks.php:731 -msgid "%s settings" -msgstr "Definições de %s" - -#: pro/blocks.php:943 -msgid "This block contains no editable fields." -msgstr "Este bloco não contém campos editáveis." - -#. translators: %s: an admin URL to the field group edit screen -#: pro/blocks.php:949 -msgid "" -"Assign a field group to add fields to " -"this block." -msgstr "" -"Atribua um grupo de campos para " -"adicionar campos a este bloco." - -#: pro/options-page.php:78 -msgid "Options Updated" -msgstr "Opções actualizadas" - -#: pro/updates.php:99 -msgid "" -"To enable updates, please enter your license key on the Updates page. If you don't have a licence key, please see details & pricing." -msgstr "" -"Para activar as actualizações, por favor insira a sua chave de licença na " -"página das actualizações. Se não tiver uma chave de " -"licença, por favor consulte os detalhes e " -"preços." - -#: pro/updates.php:159 -msgid "" -"ACF Activation Error. Your defined license key has changed, but an " -"error occurred when deactivating your old licence" -msgstr "" -"Erro de activação do ACF. A chave de licença definida foi alterada, " -"mas ocorreu um erro ao desactivar a licença antiga" - -#: pro/updates.php:154 -msgid "" -"ACF Activation Error. Your defined license key has changed, but an " -"error occurred when connecting to activation server" -msgstr "" -"Erro de activação do ACF. A chave de licença definida foi alterada, " -"mas ocorreu um erro ao ligar ao servidor de activação" - -#: pro/updates.php:192 -msgid "ACF Activation Error" -msgstr "Erro de activação do ACF" - -#: pro/updates.php:187 -msgid "" -"ACF Activation Error. An error occurred when connecting to activation " -"server" -msgstr "" -"Erro de activação do ACF. Ocorreu um erro ao ligar ao servidor de " -"activação" - -#: pro/updates.php:279 -msgid "Check Again" -msgstr "Verificar de novo" - -#: pro/updates.php:593 -msgid "ACF Activation Error. Could not connect to activation server" -msgstr "" -"Erro de activação do ACF. Não foi possível ligar ao servidor de " -"activação" - -#: pro/admin/admin-options-page.php:205 -msgid "Publish" -msgstr "Publicado" - -#: pro/admin/admin-options-page.php:209 -msgid "" -"No Custom Field Groups found for this options page. Create a " -"Custom Field Group" -msgstr "" -"Nenhum grupo de campos personalizado encontrado na página de opções. Criar um grupo de campos personalizado" - -#: pro/admin/admin-updates.php:52 -msgid "Error. Could not connect to update server" -msgstr "Erro. Não foi possível ligar ao servidor de actualização" - -#: pro/admin/admin-updates.php:212 -msgid "" -"Error. Could not authenticate update package. Please check again or " -"deactivate and reactivate your ACF PRO license." -msgstr "" -"Erro. Não foi possível autenticar o pacote de actualização. Por favor " -"verifique de novo, ou desactive e reactive a sua licença do ACF PRO." - -#: pro/admin/admin-updates.php:199 -msgid "" -"Error. Your license for this site has expired or been deactivated. " -"Please reactivate your ACF PRO license." -msgstr "" -"Erro. A sua licença para este site expirou ou foi desactivada. Por " -"favor active de novo a sua licença ACF PRO." - -#: pro/fields/class-acf-field-clone.php:27, -#: pro/fields/class-acf-field-repeater.php:31 -msgid "" -"Allows you to select and display existing fields. It does not duplicate any " -"fields in the database, but loads and displays the selected fields at run-" -"time. The Clone field can either replace itself with the selected fields or " -"display the selected fields as a group of subfields." -msgstr "" -"Permite-lhe seleccionar e mostrar campos existentes. Não duplica nenhum " -"campo na base de dados, mas carrega e mosta os campos seleccionados durante " -"a execução. O campo Clone pode substituir-se a si próprio com os campos " -"seleccionados, ou mostrar os campos seleccionados como um grupo de subcampos." - -#: pro/fields/class-acf-field-clone.php:820 -msgid "Select one or more fields you wish to clone" -msgstr "Seleccione um ou mais campos que deseje clonar" - -#: pro/fields/class-acf-field-clone.php:839 -msgid "Display" -msgstr "Visualização" - -#: pro/fields/class-acf-field-clone.php:840 -msgid "Specify the style used to render the clone field" -msgstr "Especifique o estilo usado para mostrar o campo de clone" - -#: pro/fields/class-acf-field-clone.php:845 -msgid "Group (displays selected fields in a group within this field)" -msgstr "Grupo (mostra os campos seleccionados num grupo dentro deste campo)" - -#: pro/fields/class-acf-field-clone.php:846 -msgid "Seamless (replaces this field with selected fields)" -msgstr "Simples (substitui este campo pelos campos seleccionados)" - -#: pro/fields/class-acf-field-clone.php:869 -msgid "Labels will be displayed as %s" -msgstr "As legendas serão mostradas com %s" - -#: pro/fields/class-acf-field-clone.php:874 -msgid "Prefix Field Labels" -msgstr "Prefixo nas legendas dos campos" - -#: pro/fields/class-acf-field-clone.php:884 -msgid "Values will be saved as %s" -msgstr "Os valores serão guardados como %s" - -#: pro/fields/class-acf-field-clone.php:889 -msgid "Prefix Field Names" -msgstr "Prefixos nos nomes dos campos" - -#: pro/fields/class-acf-field-clone.php:1006 -msgid "Unknown field" -msgstr "Campo desconhecido" - -#: pro/fields/class-acf-field-clone.php:1043 -msgid "Unknown field group" -msgstr "Grupo de campos desconhecido" - -#: pro/fields/class-acf-field-clone.php:1047 -msgid "All fields from %s field group" -msgstr "Todos os campos do grupo de campos %s" - -#: pro/fields/class-acf-field-flexible-content.php:27 -msgid "" -"Allows you to define, create and manage content with total control by " -"creating layouts that contain subfields that content editors can choose from." -msgstr "" -"Permite-lhe definir, criar e gerir conteúdos com total controlo através da " -"criação de layouts que contêm subcampos que pode ser escolhidos pelos " -"editores de conteúdos." - -#: pro/fields/class-acf-field-flexible-content.php:36, -#: pro/fields/class-acf-field-repeater.php:103, -#: pro/fields/class-acf-field-repeater.php:297 -msgid "Add Row" -msgstr "Adicionar linha" - -#: pro/fields/class-acf-field-flexible-content.php:76, -#: pro/fields/class-acf-field-flexible-content.php:943, -#: pro/fields/class-acf-field-flexible-content.php:1022 -msgid "layout" -msgid_plural "layouts" -msgstr[0] "layout" -msgstr[1] "layouts" - -#: pro/fields/class-acf-field-flexible-content.php:77 -msgid "layouts" -msgstr "layouts" - -#: pro/fields/class-acf-field-flexible-content.php:81, -#: pro/fields/class-acf-field-flexible-content.php:942, -#: pro/fields/class-acf-field-flexible-content.php:1021 -msgid "This field requires at least {min} {label} {identifier}" -msgstr "Este campo requer pelo menos {min} {identifier} {label}" - -#: pro/fields/class-acf-field-flexible-content.php:82 -msgid "This field has a limit of {max} {label} {identifier}" -msgstr "Este campo está limitado a {max} {identifier} {label}" - -#: pro/fields/class-acf-field-flexible-content.php:85 -msgid "{available} {label} {identifier} available (max {max})" -msgstr "{available} {identifier} {label} disponível (máx {max})" - -#: pro/fields/class-acf-field-flexible-content.php:86 -msgid "{required} {label} {identifier} required (min {min})" -msgstr "{required} {identifier} {label} em falta (mín {min})" - -#: pro/fields/class-acf-field-flexible-content.php:89 -msgid "Flexible Content requires at least 1 layout" -msgstr "O conteúdo flexível requer pelo menos 1 layout" - -#: pro/fields/class-acf-field-flexible-content.php:282 -msgid "Click the \"%s\" button below to start creating your layout" -msgstr "Clique no botão \"%s\" abaixo para começar a criar o seu layout" - -#: pro/fields/class-acf-field-flexible-content.php:423 -msgid "Add layout" -msgstr "Adicionar layout" - -#: pro/fields/class-acf-field-flexible-content.php:424 -msgid "Duplicate layout" -msgstr "Duplicar layout" - -#: pro/fields/class-acf-field-flexible-content.php:425 -msgid "Remove layout" -msgstr "Remover layout" - -#: pro/fields/class-acf-field-flexible-content.php:426, -#: pro/fields/class-acf-repeater-table.php:382 -msgid "Click to toggle" -msgstr "Clique para alternar" - -#: pro/fields/class-acf-field-flexible-content.php:562 -msgid "Delete Layout" -msgstr "Eliminar layout" - -#: pro/fields/class-acf-field-flexible-content.php:563 -msgid "Duplicate Layout" -msgstr "Duplicar layout" - -#: pro/fields/class-acf-field-flexible-content.php:564 -msgid "Add New Layout" -msgstr "Adicionar novo layout" - -#: pro/fields/class-acf-field-flexible-content.php:564 -msgid "Add Layout" -msgstr "Adicionar layout" - -#: pro/fields/class-acf-field-flexible-content.php:647 -msgid "Min" -msgstr "Mín" - -#: pro/fields/class-acf-field-flexible-content.php:662 -msgid "Max" -msgstr "Máx" - -#: pro/fields/class-acf-field-flexible-content.php:705 -msgid "Minimum Layouts" -msgstr "Mínimo de layouts" - -#: pro/fields/class-acf-field-flexible-content.php:716 -msgid "Maximum Layouts" -msgstr "Máximo de layouts" - -#: pro/fields/class-acf-field-flexible-content.php:727, -#: pro/fields/class-acf-field-repeater.php:293 -msgid "Button Label" -msgstr "Legenda do botão" - -#: pro/fields/class-acf-field-flexible-content.php:1710, -#: pro/fields/class-acf-field-repeater.php:918 -msgid "%s must be of type array or null." -msgstr "%s tem de ser do tipo array ou nulo." - -#: pro/fields/class-acf-field-flexible-content.php:1721 -msgid "%1$s must contain at least %2$s %3$s layout." -msgid_plural "%1$s must contain at least %2$s %3$s layouts." -msgstr[0] "%1$s tem de conter pelo menos %2$s layout %3$s." -msgstr[1] "%1$s tem de conter pelo menos %2$s layouts %3$s." - -#: pro/fields/class-acf-field-flexible-content.php:1737 -msgid "%1$s must contain at most %2$s %3$s layout." -msgid_plural "%1$s must contain at most %2$s %3$s layouts." -msgstr[0] "%1$s tem de conter no máximo %2$s layout %3$s." -msgstr[1] "%1$s tem de conter no máximo %2$s layouts %3$s." - -#: pro/fields/class-acf-field-gallery.php:27 -msgid "" -"An interactive interface for managing a collection of attachments, such as " -"images." -msgstr "" -"Uma interface interactiva para gerir uma colecção de anexos, como imagens." - -#: pro/fields/class-acf-field-gallery.php:78 -msgid "Add Image to Gallery" -msgstr "Adicionar imagem à galeria" - -#: pro/fields/class-acf-field-gallery.php:79 -msgid "Maximum selection reached" -msgstr "Máximo de selecção alcançado" - -#: pro/fields/class-acf-field-gallery.php:325 -msgid "Length" -msgstr "Comprimento" - -#: pro/fields/class-acf-field-gallery.php:369 -msgid "Caption" -msgstr "Legenda" - -#: pro/fields/class-acf-field-gallery.php:381 -msgid "Alt Text" -msgstr "Texto alternativo" - -#: pro/fields/class-acf-field-gallery.php:505 -msgid "Add to gallery" -msgstr "Adicionar à galeria" - -#: pro/fields/class-acf-field-gallery.php:509 -msgid "Bulk actions" -msgstr "Acções por lotes" - -#: pro/fields/class-acf-field-gallery.php:510 -msgid "Sort by date uploaded" -msgstr "Ordenar por data de carregamento" - -#: pro/fields/class-acf-field-gallery.php:511 -msgid "Sort by date modified" -msgstr "Ordenar por data de modificação" - -#: pro/fields/class-acf-field-gallery.php:512 -msgid "Sort by title" -msgstr "Ordenar por título" - -#: pro/fields/class-acf-field-gallery.php:513 -msgid "Reverse current order" -msgstr "Inverter ordem actual" - -#: pro/fields/class-acf-field-gallery.php:525 -msgid "Close" -msgstr "Fechar" - -#: pro/fields/class-acf-field-gallery.php:616 -msgid "Minimum Selection" -msgstr "Selecção mínima" - -#: pro/fields/class-acf-field-gallery.php:626 -msgid "Maximum Selection" -msgstr "Selecção máxima" - -#: pro/fields/class-acf-field-gallery.php:728 -msgid "Insert" -msgstr "Inserir" - -#: pro/fields/class-acf-field-gallery.php:729 -msgid "Specify where new attachments are added" -msgstr "Especifique onde serão adicionados os novos anexos" - -#: pro/fields/class-acf-field-gallery.php:733 -msgid "Append to the end" -msgstr "No fim" - -#: pro/fields/class-acf-field-gallery.php:734 -msgid "Prepend to the beginning" -msgstr "No início" - -#: pro/fields/class-acf-field-repeater.php:66, -#: pro/fields/class-acf-field-repeater.php:463 -msgid "Minimum rows not reached ({min} rows)" -msgstr "Mínimo de linhas não alcançado ({min} linhas)" - -#: pro/fields/class-acf-field-repeater.php:67 -msgid "Maximum rows reached ({max} rows)" -msgstr "Máximo de linhas alcançado ({max} linhas)" - -#: pro/fields/class-acf-field-repeater.php:68 -msgid "Error loading page" -msgstr "Erro ao carregar a página" - -#: pro/fields/class-acf-field-repeater.php:69 -msgid "Order will be assigned upon save" -msgstr "A ordem será atribuída ao guardar" - -#: pro/fields/class-acf-field-repeater.php:196 -msgid "Useful for fields with a large number of rows." -msgstr "Útil para campos com uma grande quantidade de linhas." - -#: pro/fields/class-acf-field-repeater.php:207 -msgid "Rows Per Page" -msgstr "Linhas por página" - -#: pro/fields/class-acf-field-repeater.php:208 -msgid "Set the number of rows to be displayed on a page." -msgstr "Define o número de linhas a mostrar numa página." - -#: pro/fields/class-acf-field-repeater.php:240 -msgid "Minimum Rows" -msgstr "Mínimo de linhas" - -#: pro/fields/class-acf-field-repeater.php:251 -msgid "Maximum Rows" -msgstr "Máximo de linhas" - -#: pro/fields/class-acf-field-repeater.php:281 -msgid "Collapsed" -msgstr "Minimizado" - -#: pro/fields/class-acf-field-repeater.php:282 -msgid "Select a sub field to show when row is collapsed" -msgstr "Seleccione o subcampo a mostrar ao minimizar a linha" - -#: pro/fields/class-acf-field-repeater.php:1060 -msgid "Invalid field key or name." -msgstr "Chave ou nome de campo inválido." - -#: pro/fields/class-acf-field-repeater.php:1069 -msgid "There was an error retrieving the field." -msgstr "Ocorreu um erro ao obter o campo." - -#: pro/fields/class-acf-repeater-table.php:369 -msgid "Click to reorder" -msgstr "Arraste para reordenar" - -#: pro/fields/class-acf-repeater-table.php:402 -msgid "Add row" -msgstr "Adicionar linha" - -#: pro/fields/class-acf-repeater-table.php:403 -msgid "Duplicate row" -msgstr "Duplicar linha" - -#: pro/fields/class-acf-repeater-table.php:404 -msgid "Remove row" -msgstr "Remover linha" - -#: pro/fields/class-acf-repeater-table.php:448, -#: pro/fields/class-acf-repeater-table.php:465, -#: pro/fields/class-acf-repeater-table.php:466 -msgid "Current Page" -msgstr "Página actual" - -#: pro/fields/class-acf-repeater-table.php:456, -#: pro/fields/class-acf-repeater-table.php:457 -msgid "First Page" -msgstr "Primeira página" - -#: pro/fields/class-acf-repeater-table.php:460, -#: pro/fields/class-acf-repeater-table.php:461 -msgid "Previous Page" -msgstr "Página anterior" - -#. translators: 1: Current page, 2: Total pages. -#: pro/fields/class-acf-repeater-table.php:470 -msgctxt "paging" -msgid "%1$s of %2$s" -msgstr "%1$s de %2$s" - -#: pro/fields/class-acf-repeater-table.php:477, -#: pro/fields/class-acf-repeater-table.php:478 -msgid "Next Page" -msgstr "Página seguinte" - -#: pro/fields/class-acf-repeater-table.php:481, -#: pro/fields/class-acf-repeater-table.php:482 -msgid "Last Page" -msgstr "Última página" - -#: pro/locations/class-acf-location-block.php:71 -msgid "No block types exist" -msgstr "Não existem tipos de blocos" - -#: pro/locations/class-acf-location-options-page.php:70 -msgid "No options pages exist" -msgstr "Não existem páginas de opções" - -#: pro/admin/views/html-settings-updates.php:6 -msgid "Deactivate License" -msgstr "Desactivar licença" - -#: pro/admin/views/html-settings-updates.php:6 -msgid "Activate License" -msgstr "Activar licença" - -#: pro/admin/views/html-settings-updates.php:16 -msgid "License Information" -msgstr "Informações da licença" - -#: pro/admin/views/html-settings-updates.php:34 -msgid "" -"To unlock updates, please enter your license key below. If you don't have a " -"licence key, please see details & pricing." -msgstr "" -"Para desbloquear as actualizações, por favor insira a sua chave de licença. " -"Se não tiver uma chave de licença, por favor consulte os detalhes e preços." - -#: pro/admin/views/html-settings-updates.php:37 -msgid "License Key" -msgstr "Chave de licença" - -#: pro/admin/views/html-settings-updates.php:22 -msgid "Your license key is defined in wp-config.php." -msgstr "A sua chave de licença está definida no wp-config.php." - -#: pro/admin/views/html-settings-updates.php:29 -msgid "Retry Activation" -msgstr "Tentar activar de novo" - -#: pro/admin/views/html-settings-updates.php:61 -msgid "Update Information" -msgstr "Informações de actualização" - -#: pro/admin/views/html-settings-updates.php:68 -msgid "Current Version" -msgstr "Versão actual" - -#: pro/admin/views/html-settings-updates.php:76 -msgid "Latest Version" -msgstr "Última versão" - -#: pro/admin/views/html-settings-updates.php:84 -msgid "Update Available" -msgstr "Actualização disponível" - -#: pro/admin/views/html-settings-updates.php:98 -msgid "Upgrade Notice" -msgstr "Informações sobre a actualização" - -#: pro/admin/views/html-settings-updates.php:126 -msgid "Check For Updates" -msgstr "Verificar actualizações" - -#: pro/admin/views/html-settings-updates.php:121 -msgid "Enter your license key to unlock updates" -msgstr "Digite a sua chave de licença para desbloquear as actualizações" - -#: pro/admin/views/html-settings-updates.php:119 -msgid "Update Plugin" -msgstr "Actualizar plugin" - -#: pro/admin/views/html-settings-updates.php:117 -msgid "Please reactivate your license to unlock updates" -msgstr "Por favor reactive a sua licença para desbloquear as actualizações" diff --git a/lang/acf-ro_RO.mo b/lang/acf-ro_RO.mo deleted file mode 100644 index bdb5478..0000000 Binary files a/lang/acf-ro_RO.mo and /dev/null differ diff --git a/lang/acf-ro_RO.po b/lang/acf-ro_RO.po deleted file mode 100644 index 37e133e..0000000 --- a/lang/acf-ro_RO.po +++ /dev/null @@ -1,6192 +0,0 @@ -# Advanced Custom Fields Translations are a combination of translate.wordpress.org contributions, -# combined with user contributed strings for the PRO version. -# Translations from translate.wordpress.org take priority over translations in this file. -# translate.wordpress.org contributions are synced at the time of each release. -# -# If you would like to contribute translations, please visit -# https://translate.wordpress.org/projects/wp-plugins/advanced-custom-fields/stable/ -# -# For additional ACF PRO strings, please submit a pull request over on the ACF GitHub repo at -# http://github.com/advancedcustomfields/acf using the .pot (and any existing .po) files in /lang/pro/ -# -# This file is distributed under the same license as Advanced Custom Fields. -msgid "" -msgstr "" -"PO-Revision-Date: 2023-11-28T09:14:32+00:00\n" -"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n" -"Language: ro_RO\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: gettext\n" -"Project-Id-Version: Advanced Custom Fields\n" - -#: includes/admin/views/global/navigation.php:221 -msgid "Renew ACF PRO License" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:17 -msgid "Renew License" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:14 -msgid "Manage License" -msgstr "" - -#: includes/admin/views/acf-field-group/options.php:102 -msgid "'High' position not supported in the Block Editor" -msgstr "" - -#: includes/admin/views/options-page-preview.php:30 -msgid "Upgrade to ACF PRO" -msgstr "" - -#. translators: %s URL to ACF options pages documentation -#: includes/admin/views/options-page-preview.php:7 -msgid "" -"ACF options pages are custom admin " -"pages for managing global settings via fields. You can create multiple pages " -"and sub-pages." -msgstr "" - -#: includes/admin/views/global/header.php:35 -msgid "Add Options Page" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:703 -msgid "In the editor used as the placeholder of the title." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:702 -msgid "Title Placeholder" -msgstr "" - -#: includes/admin/views/global/navigation.php:97 -msgid "4 Months Free" -msgstr "" - -#. translators: %s - A singular label for a post type or taxonomy. -#: includes/admin/views/global/form-top.php:56 -msgid " (Duplicated from %s)" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:298 -msgid "Select Options Pages" -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:107 -msgid "Duplicate taxonomy" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:106 -#: includes/admin/post-types/admin-taxonomy.php:106 -msgid "Create taxonomy" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:105 -msgid "Duplicate post type" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:104 -#: includes/admin/post-types/admin-taxonomy.php:108 -msgid "Create post type" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:103 -#: includes/admin/post-types/admin-taxonomy.php:105 -msgid "Link field groups" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:102 -#: includes/admin/post-types/admin-taxonomy.php:104 -msgid "Add fields" -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:121 -#: assets/build/js/acf-field-group.js:2753 -#: assets/build/js/acf-field-group.js:3236 -msgid "This Field" -msgstr "" - -#: includes/admin/admin.php:267 -msgid "ACF PRO" -msgstr "" - -#: includes/admin/admin.php:265 -msgid "Feedback" -msgstr "" - -#: includes/admin/admin.php:263 -msgid "Support" -msgstr "" - -#. translators: This text is prepended by a link to ACF's website, and appended -#. by a link to WP Engine's website. -#: includes/admin/admin.php:238 -msgid "is developed and maintained by" -msgstr "" - -#. translators: %s - either "post type" or "taxonomy" -#: includes/admin/admin-internal-post-type.php:321 -msgid "Add this %s to the location rules of the selected field groups." -msgstr "" - -#. translators: %s the URL to ACF's bidirectional relationship documentation -#: includes/acf-bidirectional-functions.php:271 -msgid "" -"Enabling the bidirectional setting allows you to update a value in the " -"target fields for each value selected for this field, adding or removing the " -"Post ID, Taxonomy ID or User ID of the item being updated. For more " -"information, please read the documentation." -msgstr "" - -#: includes/acf-bidirectional-functions.php:247 -msgid "" -"Select field(s) to store the reference back to the item being updated. You " -"may select this field. Target fields must be compatible with where this " -"field is being displayed. For example, if this field is displayed on a " -"Taxonomy, your target field should be of type Taxonomy" -msgstr "" - -#: includes/acf-bidirectional-functions.php:246 -msgid "Target Field" -msgstr "" - -#: includes/acf-bidirectional-functions.php:220 -msgid "Update a field on the selected values, referencing back to this ID" -msgstr "" - -#: includes/acf-bidirectional-functions.php:219 -msgid "Bidirectional" -msgstr "" - -#. translators: %s A field type name, such as "Relationship" -#: includes/acf-bidirectional-functions.php:192 -msgid "%s Field" -msgstr "" - -#: includes/fields/class-acf-field-page_link.php:517 -#: includes/fields/class-acf-field-post_object.php:426 -#: includes/fields/class-acf-field-select.php:407 -#: includes/fields/class-acf-field-user.php:82 -msgid "Select Multiple" -msgstr "" - -#: includes/admin/views/global/navigation.php:233 -msgid "WP Engine logo" -msgstr "Logo WP Engine" - -#: includes/admin/views/acf-taxonomy/basic-settings.php:58 -msgid "Lower case letters, underscores and dashes only, Max 32 characters." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1136 -msgid "The capability name for assigning terms of this taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1135 -msgid "Assign Terms Capability" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1119 -msgid "The capability name for deleting terms of this taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1118 -msgid "Delete Terms Capability" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1102 -msgid "The capability name for editing terms of this taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1101 -msgid "Edit Terms Capability" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1085 -msgid "The capability name for managing terms of this taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1084 -msgid "Manage Terms Capability" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:886 -msgid "" -"Sets whether posts should be excluded from search results and taxonomy " -"archive pages." -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:74 -msgid "More Tools from WP Engine" -msgstr "" - -#. translators: %s - WP Engine logo -#: includes/admin/views/acf-field-group/pro-features.php:69 -msgid "Built for those that build with WordPress, by the team at %s" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:6 -msgid "View Pricing & Upgrade" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:3 -#: includes/admin/views/options-page-preview.php:29 -msgid "Learn More" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:28 -msgid "" -"Speed up your workflow and develop better websites with features like ACF " -"Blocks and Options Pages, and sophisticated field types like Repeater, " -"Flexible Content, Clone, and Gallery." -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:2 -msgid "Unlock Advanced Features and Build Even More with ACF PRO" -msgstr "" - -#. translators: %s - singular label of post type/taxonomy, i.e. "Movie"/"Genre" -#: includes/admin/views/global/form-top.php:19 -msgid "%s fields" -msgstr "" - -#: includes/admin/post-types/admin-taxonomies.php:293 -msgid "No terms" -msgstr "" - -#: includes/admin/post-types/admin-taxonomies.php:266 -msgid "No post types" -msgstr "" - -#: includes/admin/post-types/admin-post-types.php:289 -msgid "No posts" -msgstr "" - -#: includes/admin/post-types/admin-post-types.php:263 -msgid "No taxonomies" -msgstr "" - -#: includes/admin/post-types/admin-post-types.php:208 -#: includes/admin/post-types/admin-taxonomies.php:208 -msgid "No field groups" -msgstr "" - -#: includes/admin/post-types/admin-field-groups.php:281 -msgid "No fields" -msgstr "" - -#: includes/admin/post-types/admin-field-groups.php:154 -#: includes/admin/post-types/admin-post-types.php:172 -#: includes/admin/post-types/admin-taxonomies.php:172 -msgid "No description" -msgstr "" - -#: includes/fields/class-acf-field-page_link.php:484 -#: includes/fields/class-acf-field-post_object.php:389 -#: includes/fields/class-acf-field-relationship.php:601 -msgid "Any post status" -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:284 -msgid "" -"This taxonomy key is already in use by another taxonomy registered outside " -"of ACF and cannot be used." -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:279 -msgid "" -"This taxonomy key is already in use by another taxonomy in ACF and cannot be " -"used." -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:252 -msgid "" -"The taxonomy key must only contain lower case alphanumeric characters, " -"underscores or dashes." -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:247 -msgid "The taxonomy key must be under 32 characters." -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:99 -msgid "No Taxonomies found in Trash" -msgstr "Nu am găsit nicio taxonomie la gunoi" - -#: includes/post-types/class-acf-taxonomy.php:98 -msgid "No Taxonomies found" -msgstr "Nu am găsit nicio taxonomie" - -#: includes/post-types/class-acf-taxonomy.php:97 -msgid "Search Taxonomies" -msgstr "Caută taxonomii" - -#: includes/post-types/class-acf-taxonomy.php:96 -msgid "View Taxonomy" -msgstr "Vezi taxonomia" - -#: includes/post-types/class-acf-taxonomy.php:95 -msgid "New Taxonomy" -msgstr "Taxonomie nouă" - -#: includes/post-types/class-acf-taxonomy.php:94 -msgid "Edit Taxonomy" -msgstr "Editează taxonomia" - -#: includes/post-types/class-acf-taxonomy.php:93 -msgid "Add New Taxonomy" -msgstr "Adaugă o taxonomie nouă" - -#: includes/post-types/class-acf-post-type.php:100 -msgid "No Post Types found in Trash" -msgstr "Nu am găsit niciun tip de articol la gunoi" - -#: includes/post-types/class-acf-post-type.php:99 -msgid "No Post Types found" -msgstr "Nu am găsit niciun tip de articol" - -#: includes/post-types/class-acf-post-type.php:98 -msgid "Search Post Types" -msgstr "Caută tipuri de articol" - -#: includes/post-types/class-acf-post-type.php:97 -msgid "View Post Type" -msgstr "Vezi tipul de articol" - -#: includes/post-types/class-acf-post-type.php:96 -msgid "New Post Type" -msgstr "Tip de articol nou" - -#: includes/post-types/class-acf-post-type.php:95 -msgid "Edit Post Type" -msgstr "Editează tipul de articol" - -#: includes/post-types/class-acf-post-type.php:94 -msgid "Add New Post Type" -msgstr "Adaugă un tip de articol nou" - -#: includes/post-types/class-acf-post-type.php:361 -msgid "" -"This post type key is already in use by another post type registered outside " -"of ACF and cannot be used." -msgstr "" - -#: includes/post-types/class-acf-post-type.php:356 -msgid "" -"This post type key is already in use by another post type in ACF and cannot " -"be used." -msgstr "" - -#. translators: %s a link to WordPress.org's Reserved Terms page -#: includes/post-types/class-acf-post-type.php:335 -#: includes/post-types/class-acf-taxonomy.php:258 -msgid "" -"This field must not be a WordPress reserved " -"term." -msgstr "" - -#: includes/post-types/class-acf-post-type.php:329 -msgid "" -"The post type key must only contain lower case alphanumeric characters, " -"underscores or dashes." -msgstr "" - -#: includes/post-types/class-acf-post-type.php:324 -msgid "The post type key must be under 20 characters." -msgstr "Cheia tipului de articol trebuie să aibă mai puțin de 20 de caractere." - -#: includes/fields/class-acf-field-wysiwyg.php:27 -msgid "We do not recommend using this field in ACF Blocks." -msgstr "" - -#: includes/fields/class-acf-field-wysiwyg.php:27 -msgid "" -"Displays the WordPress WYSIWYG editor as seen in Posts and Pages allowing " -"for a rich text-editing experience that also allows for multimedia content." -msgstr "" - -#: includes/fields/class-acf-field-wysiwyg.php:25 -msgid "WYSIWYG Editor" -msgstr "Editor WYSIWYG" - -#: includes/fields/class-acf-field-user.php:17 -msgid "" -"Allows the selection of one or more users which can be used to create " -"relationships between data objects." -msgstr "" - -#: includes/fields/class-acf-field-url.php:26 -msgid "A text input specifically designed for storing web addresses." -msgstr "" - -#: includes/fields/class-acf-field-url.php:25 -msgid "URL" -msgstr "URL" - -#: includes/fields/class-acf-field-true_false.php:27 -msgid "" -"A toggle that allows you to pick a value of 1 or 0 (on or off, true or " -"false, etc). Can be presented as a stylized switch or checkbox." -msgstr "" - -#: includes/fields/class-acf-field-time_picker.php:27 -msgid "" -"An interactive UI for picking a time. The time format can be customized " -"using the field settings." -msgstr "" - -#: includes/fields/class-acf-field-textarea.php:26 -msgid "A basic textarea input for storing paragraphs of text." -msgstr "" - -#: includes/fields/class-acf-field-text.php:26 -msgid "A basic text input, useful for storing single string values." -msgstr "" - -#: includes/fields/class-acf-field-taxonomy.php:22 -msgid "" -"Allows the selection of one or more taxonomy terms based on the criteria and " -"options specified in the fields settings." -msgstr "" - -#: includes/fields/class-acf-field-tab.php:28 -msgid "" -"Allows you to group fields into tabbed sections in the edit screen. Useful " -"for keeping fields organized and structured." -msgstr "" - -#: includes/fields/class-acf-field-select.php:27 -msgid "A dropdown list with a selection of choices that you specify." -msgstr "" - -#: includes/fields/class-acf-field-relationship.php:19 -msgid "" -"A dual-column interface to select one or more posts, pages, or custom post " -"type items to create a relationship with the item that you're currently " -"editing. Includes options to search and filter." -msgstr "" - -#: includes/fields/class-acf-field-range.php:26 -msgid "" -"An input for selecting a numerical value within a specified range using a " -"range slider element." -msgstr "" - -#: includes/fields/class-acf-field-radio.php:27 -msgid "" -"A group of radio button inputs that allows the user to make a single " -"selection from values that you specify." -msgstr "" - -#: includes/fields/class-acf-field-post_object.php:19 -msgid "" -"An interactive and customizable UI for picking one or many posts, pages or " -"post type items with the option to search. " -msgstr "" - -#: includes/fields/class-acf-field-password.php:26 -msgid "An input for providing a password using a masked field." -msgstr "" - -#: includes/fields/class-acf-field-page_link.php:476 -#: includes/fields/class-acf-field-post_object.php:381 -#: includes/fields/class-acf-field-relationship.php:593 -msgid "Filter by Post Status" -msgstr "Filtrează după stare articol" - -#: includes/fields/class-acf-field-page_link.php:27 -msgid "" -"An interactive dropdown to select one or more posts, pages, custom post type " -"items or archive URLs, with the option to search." -msgstr "" - -#: includes/fields/class-acf-field-oembed.php:27 -msgid "" -"An interactive component for embedding videos, images, tweets, audio and " -"other content by making use of the native WordPress oEmbed functionality." -msgstr "" - -#: includes/fields/class-acf-field-number.php:26 -msgid "An input limited to numerical values." -msgstr "" - -#: includes/fields/class-acf-field-message.php:28 -msgid "" -"Used to display a message to editors alongside other fields. Useful for " -"providing additional context or instructions around your fields." -msgstr "" - -#: includes/fields/class-acf-field-link.php:27 -msgid "" -"Allows you to specify a link and its properties such as title and target " -"using the WordPress native link picker." -msgstr "" - -#: includes/fields/class-acf-field-image.php:27 -msgid "Uses the native WordPress media picker to upload, or choose images." -msgstr "" - -#: includes/fields/class-acf-field-group.php:27 -msgid "" -"Provides a way to structure fields into groups to better organize the data " -"and the edit screen." -msgstr "" - -#: includes/fields/class-acf-field-google-map.php:27 -msgid "" -"An interactive UI for selecting a location using Google Maps. Requires a " -"Google Maps API key and additional configuration to display correctly." -msgstr "" - -#: includes/fields/class-acf-field-file.php:27 -msgid "Uses the native WordPress media picker to upload, or choose files." -msgstr "" - -#: includes/fields/class-acf-field-email.php:26 -msgid "A text input specifically designed for storing email addresses." -msgstr "" - -#: includes/fields/class-acf-field-date_time_picker.php:27 -msgid "" -"An interactive UI for picking a date and time. The date return format can be " -"customized using the field settings." -msgstr "" - -#: includes/fields/class-acf-field-date_picker.php:27 -msgid "" -"An interactive UI for picking a date. The date return format can be " -"customized using the field settings." -msgstr "" - -#: includes/fields/class-acf-field-color_picker.php:27 -msgid "An interactive UI for selecting a color, or specifying a Hex value." -msgstr "" - -#: includes/fields/class-acf-field-checkbox.php:27 -msgid "" -"A group of checkbox inputs that allow the user to select one, or multiple " -"values that you specify." -msgstr "" - -#: includes/fields/class-acf-field-button-group.php:26 -msgid "" -"A group of buttons with values that you specify, users can choose one option " -"from the values provided." -msgstr "" - -#: includes/fields/class-acf-field-accordion.php:27 -msgid "" -"Allows you to group and organize custom fields into collapsable panels that " -"are shown while editing content. Useful for keeping large datasets tidy." -msgstr "" - -#: includes/fields.php:475 -msgid "" -"This provides a solution for repeating content such as slides, team members, " -"and call-to-action tiles, by acting as a parent to a set of subfields which " -"can be repeated again and again." -msgstr "" - -#: includes/fields.php:465 -msgid "" -"This provides an interactive interface for managing a collection of " -"attachments. Most settings are similar to the Image field type. Additional " -"settings allow you to specify where new attachments are added in the gallery " -"and the minimum/maximum number of attachments allowed." -msgstr "" - -#: includes/fields.php:455 -msgid "" -"This provides a simple, structured, layout-based editor. The Flexible " -"Content field allows you to define, create and manage content with total " -"control by using layouts and subfields to design the available blocks." -msgstr "" - -#: includes/fields.php:445 -msgid "" -"This allows you to select and display existing fields. It does not duplicate " -"any fields in the database, but loads and displays the selected fields at " -"run-time. The Clone field can either replace itself with the selected fields " -"or display the selected fields as a group of subfields." -msgstr "" - -#: includes/fields.php:442 -msgctxt "noun" -msgid "Clone" -msgstr "Clonare" - -#: includes/admin/views/global/navigation.php:86 includes/fields.php:357 -msgid "PRO" -msgstr "PRO" - -#: includes/fields.php:355 includes/fields.php:412 -msgid "Advanced" -msgstr "Avansate" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:85 -msgid "JSON (newer)" -msgstr "" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:81 -msgid "Original" -msgstr "" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:55 -msgid "Invalid post ID." -msgstr "ID-ul articolului nu este valid." - -#: includes/ajax/class-acf-ajax-local-json-diff.php:47 -msgid "Invalid post type selected for review." -msgstr "" - -#: includes/admin/views/global/navigation.php:186 -msgid "More" -msgstr "" - -#: includes/admin/views/browse-fields-modal.php:86 -msgid "Tutorial" -msgstr "Tutorial" - -#: includes/admin/views/browse-fields-modal.php:75 -msgid "Available with ACF PRO" -msgstr "" - -#: includes/admin/views/browse-fields-modal.php:63 -msgid "Select Field" -msgstr "Selectează câmpul" - -#. translators: %s: A link to the popular fields used in ACF -#: includes/admin/views/browse-fields-modal.php:50 -msgid "Try a different search term or browse %s" -msgstr "Încearcă un alt termen de căutare sau răsfoiește %s" - -#: includes/admin/views/browse-fields-modal.php:47 -msgid "Popular fields" -msgstr "Câmpuri populare" - -#. translators: %s: The invalid search term -#: includes/admin/views/browse-fields-modal.php:40 -msgid "No search results for '%s'" -msgstr "Niciun rezultat de căutare pentru „%s”" - -#: includes/admin/views/browse-fields-modal.php:13 -msgid "Search fields..." -msgstr "Caută câmpuri..." - -#: includes/admin/views/browse-fields-modal.php:11 -msgid "Select Field Type" -msgstr "Selectează tipul de câmp" - -#: includes/admin/views/browse-fields-modal.php:4 -msgid "Popular" -msgstr "Populare" - -#: includes/admin/views/acf-taxonomy/list-empty.php:7 -msgid "Add Taxonomy" -msgstr "Adaugă o taxonomie" - -#: includes/admin/views/acf-taxonomy/list-empty.php:6 -msgid "Create custom taxonomies to classify post type content" -msgstr "" - -#: includes/admin/views/acf-taxonomy/list-empty.php:5 -msgid "Add Your First Taxonomy" -msgstr "Adaugă prima ta taxonomie" - -#: includes/admin/views/acf-taxonomy/basic-settings.php:122 -msgid "Hierarchical taxonomies can have descendants (like categories)." -msgstr "" - -#: includes/admin/views/acf-taxonomy/basic-settings.php:107 -msgid "Makes a taxonomy visible on the frontend and in the admin dashboard." -msgstr "" - -#: includes/admin/views/acf-taxonomy/basic-settings.php:91 -msgid "One or many post types that can be classified with this taxonomy." -msgstr "" - -#. translators: example taxonomy -#: includes/admin/views/acf-taxonomy/basic-settings.php:60 -msgid "genre" -msgstr "" - -#. translators: example taxonomy -#: includes/admin/views/acf-taxonomy/basic-settings.php:42 -msgid "Genre" -msgstr "" - -#. translators: example taxonomy -#: includes/admin/views/acf-taxonomy/basic-settings.php:25 -msgid "Genres" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1211 -msgid "" -"Optional custom controller to use instead of `WP_REST_Terms_Controller `." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1155 -msgid "Expose this post type in the REST API." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1055 -msgid "Customize the query variable name" -msgstr "Personalizează numele variabilei de interogare" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1028 -msgid "" -"Terms can be accessed using the non-pretty permalink, e.g., {query_var}" -"={term_slug}." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:981 -msgid "Parent-child terms in URLs for hierarchical taxonomies." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:941 -msgid "Customize the slug used in the URL" -msgstr "Personalizează descriptorul folosit în URL" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:924 -msgid "Permalinks for this taxonomy are disabled." -msgstr "Legăturile permanente pentru această taxonomie sunt dezactivate." - -#. translators: this string will be appended with the new permalink structure. -#: includes/admin/views/acf-taxonomy/advanced-settings.php:921 -msgid "" -"Rewrite the URL using the taxonomy key as the slug. Your permalink structure " -"will be" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:913 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1030 -#: includes/admin/views/acf-taxonomy/basic-settings.php:57 -msgid "Taxonomy Key" -msgstr "Cheie taxonomie" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:911 -msgid "Select the type of permalink to use for this taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:896 -msgid "Display a column for the taxonomy on post type listing screens." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:895 -msgid "Show Admin Column" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:882 -msgid "Show the taxonomy in the quick/bulk edit panel." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:881 -msgid "Quick Edit" -msgstr "Editare rapidă" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:868 -msgid "List the taxonomy in the Tag Cloud Widget controls." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:867 -msgid "Tag Cloud" -msgstr "Nor de etichete" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:824 -msgid "" -"A PHP function name to be called for sanitizing taxonomy data saved from a " -"meta box." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:823 -msgid "Meta Box Sanitization Callback" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:805 -msgid "" -"A PHP function name to be called to handle the content of a meta box on your " -"taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:804 -msgid "Register Meta Box Callback" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:763 -msgid "No Meta Box" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:762 -msgid "Custom Meta Box" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:758 -msgid "" -"Controls the meta box on the content editor screen. By default, the " -"Categories meta box is shown for hierarchical taxonomies, and the Tags meta " -"box is shown for non-hierarchical taxonomies." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:757 -msgid "Meta Box" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:746 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:767 -msgid "Categories Meta Box" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:745 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:766 -msgid "Tags Meta Box" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:704 -msgid "A link to a tag" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:703 -msgid "Describes a navigation link block variation used in the block editor." -msgstr "" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:698 -msgid "A link to a %s" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:683 -msgid "Tag Link" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:682 -msgid "" -"Assigns a title for navigation link block variation used in the block editor." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:663 -msgid "← Go to tags" -msgstr "← Mergi la etichete" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:662 -msgid "" -"Assigns the text used to link back to the main index after updating a term." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:661 -msgid "Back To Items" -msgstr "" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:657 -msgid "← Go to %s" -msgstr "← Mergi la %s" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:642 -msgid "Tags list" -msgstr "Listă cu etichete" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:641 -msgid "Assigns text to the table hidden heading." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:622 -msgid "Tags list navigation" -msgstr "Navigare în lista cu etichete" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:621 -msgid "Assigns text to the table pagination hidden heading." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:597 -msgid "Filter by category" -msgstr "Filtrează după categorie" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:596 -msgid "Assigns text to the filter button in the posts lists table." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:595 -msgid "Filter By Item" -msgstr "Filtrează după element" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:591 -msgid "Filter by %s" -msgstr "Filtrează după %s" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:575 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:576 -msgid "" -"The description is not prominent by default; however, some themes may show " -"it." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:574 -msgid "Describes the Description field on the Edit Tags screen." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:573 -msgid "Description Field Description" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:554 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:555 -msgid "" -"Assign a parent term to create a hierarchy. The term Jazz, for example, " -"would be the parent of Bebop and Big Band" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:553 -msgid "Describes the Parent field on the Edit Tags screen." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:552 -msgid "Parent Field Description" -msgstr "Descriere câmp părinte" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:538 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:539 -msgid "" -"The \"slug\" is the URL-friendly version of the name. It is usually all " -"lower case and contains only letters, numbers, and hyphens." -msgstr "" -"„Descriptorul” este versiunea prietenoasă a URL-ului pentru nume. De obicei, " -"are numai minuscule și este compus din litere, cifre și cratime." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:537 -msgid "Describes the Slug field on the Edit Tags screen." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:536 -msgid "Slug Field Description" -msgstr "Descriere câmp descriptor" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:522 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:523 -msgid "The name is how it appears on your site" -msgstr "Numele este așa cum apare pe site-ul tău" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:521 -msgid "Describes the Name field on the Edit Tags screen." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:520 -msgid "Name Field Description" -msgstr "Descriere câmp nume" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:507 -msgid "No tags" -msgstr "Nicio etichetă" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:506 -msgid "" -"Assigns the text displayed in the posts and media list tables when no tags " -"or categories are available." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:505 -msgid "No Terms" -msgstr "Niciun termen" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:501 -msgid "No %s" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:486 -msgid "No tags found" -msgstr "Nu am găsit nicio etichetă" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:485 -msgid "" -"Assigns the text displayed when clicking the 'choose from most used' text in " -"the taxonomy meta box when no tags are available, and assigns the text used " -"in the terms list table when there are no items for a taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:484 -msgid "Not Found" -msgstr "Nu am găsit" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:463 -msgid "Assigns text to the Title field of the Most Used tab." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:462 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:464 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:465 -msgid "Most Used" -msgstr "Cel mai mult folosite" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:444 -msgid "Choose from the most used tags" -msgstr "Alege dintre etichetele cel mai mult folosite" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:443 -msgid "" -"Assigns the 'choose from most used' text used in the meta box when " -"JavaScript is disabled. Only used on non-hierarchical taxonomies." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:442 -msgid "Choose From Most Used" -msgstr "Alege dintre cele mai mult folosite" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:438 -msgid "Choose from the most used %s" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:418 -msgid "Add or remove tags" -msgstr "Adaugă sau înlătură etichete" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:417 -msgid "" -"Assigns the add or remove items text used in the meta box when JavaScript is " -"disabled. Only used on non-hierarchical taxonomies" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:416 -msgid "Add Or Remove Items" -msgstr "Adaugă sau înlătură elemente" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:412 -msgid "Add or remove %s" -msgstr "Adaugă sau înlătură %s" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:392 -msgid "Separate tags with commas" -msgstr "Separă etichetele cu virgule" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:391 -msgid "" -"Assigns the separate item with commas text used in the taxonomy meta box. " -"Only used on non-hierarchical taxonomies." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:390 -msgid "Separate Items With Commas" -msgstr "Separă elementele cu virgule" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:386 -msgid "Separate %s with commas" -msgstr "Separă %s cu virgule" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:366 -msgid "Popular Tags" -msgstr "Etichete populare" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:365 -msgid "Assigns popular items text. Only used for non-hierarchical taxonomies." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:364 -msgid "Popular Items" -msgstr "Elemente populare" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:361 -msgid "Popular %s" -msgstr "%s populare" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:347 -msgid "Search Tags" -msgstr "Caută etichete" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:346 -msgid "Assigns search items text." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:323 -msgid "Parent Category:" -msgstr "Categorie părinte:" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:322 -msgid "Assigns parent item text, but with a colon (:) added to the end." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:321 -msgid "Parent Item With Colon" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:298 -msgid "Parent Category" -msgstr "Categorie părinte" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:297 -msgid "Assigns parent item text. Only used on hierarchical taxonomies." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:296 -msgid "Parent Item" -msgstr "Element părinte" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:293 -msgid "Parent %s" -msgstr "%s părinte" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:278 -msgid "New Tag Name" -msgstr "Nume etichetă nouă" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:277 -msgid "Assigns the new item name text." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:276 -msgid "New Item Name" -msgstr "Nume element nou" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:273 -msgid "New %s Name" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:258 -msgid "Add New Tag" -msgstr "Adaugă o etichetă nouă" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:257 -msgid "Assigns the add new item text." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:238 -msgid "Update Tag" -msgstr "Actualizează eticheta" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:237 -msgid "Assigns the update item text." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:236 -msgid "Update Item" -msgstr "Actualizează elementul" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:233 -msgid "Update %s" -msgstr "Actualizează %s" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:218 -msgid "View Tag" -msgstr "Vezi eticheta" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:217 -msgid "In the admin bar to view term during editing." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:198 -msgid "Edit Tag" -msgstr "Editează eticheta" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:197 -msgid "At the top of the editor screen when editing a term." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:178 -msgid "All Tags" -msgstr "Toate etichetele" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:177 -msgid "Assigns the all items text." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:158 -msgid "Assigns the menu name text." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:157 -msgid "Menu Label" -msgstr "Etichetă meniu" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:131 -msgid "Active taxonomies are enabled and registered with WordPress." -msgstr "Taxonomiile active sunt activate și înregistrate cu WordPress." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:115 -msgid "A descriptive summary of the taxonomy." -msgstr "Un rezumat descriptiv al taxonomiei." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:95 -msgid "A descriptive summary of the term." -msgstr "Un rezumat descriptiv al termenului." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:94 -msgid "Term Description" -msgstr "Descriere termen" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:76 -msgid "Single word, no spaces. Underscores and dashes allowed." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:75 -msgid "Term Slug" -msgstr "Descriptor termen" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:56 -msgid "The name of the default term." -msgstr "Numele termenului implicit." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:55 -msgid "Term Name" -msgstr "Nume termen" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:41 -msgid "" -"Create a term for the taxonomy that cannot be deleted. It will not be " -"selected for posts by default." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:40 -msgid "Default Term" -msgstr "Termen implicit" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:28 -msgid "" -"Whether terms in this taxonomy should be sorted in the order they are " -"provided to `wp_set_object_terms()`." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:27 -msgid "Sort Terms" -msgstr "Sortează termenii" - -#: includes/admin/views/acf-post-type/list-empty.php:7 -msgid "Add Post Type" -msgstr "Adaugă un tip de articol" - -#: includes/admin/views/acf-post-type/list-empty.php:6 -msgid "" -"Expand the functionality of WordPress beyond standard posts and pages with " -"custom post types." -msgstr "" - -#: includes/admin/views/acf-post-type/list-empty.php:5 -msgid "Add Your First Post Type" -msgstr "Adaugă primul tău tip de articol" - -#: includes/admin/views/acf-post-type/basic-settings.php:136 -#: includes/admin/views/acf-taxonomy/basic-settings.php:135 -msgid "I know what I'm doing, show me all the options." -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:135 -#: includes/admin/views/acf-taxonomy/basic-settings.php:134 -msgid "Advanced Configuration" -msgstr "Configurare avansată" - -#: includes/admin/views/acf-post-type/basic-settings.php:123 -msgid "Hierarchical post types can have descendants (like pages)." -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:122 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:980 -#: includes/admin/views/acf-taxonomy/basic-settings.php:121 -msgid "Hierarchical" -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:107 -msgid "Visible on the frontend and in the admin dashboard." -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:106 -#: includes/admin/views/acf-taxonomy/basic-settings.php:106 -msgid "Public" -msgstr "" - -#. translators: example post type -#: includes/admin/views/acf-post-type/basic-settings.php:59 -msgid "movie" -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:57 -msgid "Lower case letters, underscores and dashes only, Max 20 characters." -msgstr "" - -#. translators: example post type -#: includes/admin/views/acf-post-type/basic-settings.php:41 -msgid "Movie" -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:39 -#: includes/admin/views/acf-taxonomy/basic-settings.php:40 -msgid "Singular Label" -msgstr "" - -#. translators: example post type -#: includes/admin/views/acf-post-type/basic-settings.php:24 -msgid "Movies" -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:22 -#: includes/admin/views/acf-taxonomy/basic-settings.php:23 -msgid "Plural Label" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1270 -msgid "" -"Optional custom controller to use instead of `WP_REST_Posts_Controller`." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1269 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1210 -msgid "Controller Class" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1251 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1191 -msgid "The namespace part of the REST API URL." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1250 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1190 -msgid "Namespace Route" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1232 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1172 -msgid "The base URL for the post type REST API URLs." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1231 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1171 -msgid "Base URL" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1217 -msgid "" -"Exposes this post type in the REST API. Required to use the block editor." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1216 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1154 -msgid "Show In REST API" -msgstr "Arată în REST API" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1195 -msgid "Customize the query variable name." -msgstr "Personalizează numele variabilei de interogare." - -#: includes/admin/views/acf-post-type/advanced-settings.php:1194 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1054 -msgid "Query Variable" -msgstr "Variabilă pentru interogare" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1172 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1032 -msgid "No Query Variable Support" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1171 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1031 -msgid "Custom Query Variable" -msgstr "Variabilă personalizată pentru interogare" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1168 -msgid "" -"Items can be accessed using the non-pretty permalink, eg. {post_type}" -"={post_slug}." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1167 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1027 -msgid "Query Variable Support" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1142 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1003 -msgid "URLs for an item and items can be accessed with a query string." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1141 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1002 -msgid "Publicly Queryable" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1120 -msgid "Custom slug for the Archive URL." -msgstr "Descriptor personalizat pentru URL-ul arhivei." - -#: includes/admin/views/acf-post-type/advanced-settings.php:1119 -msgid "Archive Slug" -msgstr "Descriptor arhivă" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1106 -msgid "" -"Has an item archive that can be customized with an archive template file in " -"your theme." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1105 -msgid "Archive" -msgstr "Arhivă" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1085 -msgid "Pagination support for the items URLs such as the archives." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1084 -msgid "Pagination" -msgstr "Paginație" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1067 -msgid "RSS feed URL for the post type items." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1066 -msgid "Feed URL" -msgstr "URL flux" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1048 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:961 -msgid "" -"Alters the permalink structure to add the `WP_Rewrite::$front` prefix to " -"URLs." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1047 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:960 -msgid "Front URL Prefix" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1028 -msgid "Customize the slug used in the URL." -msgstr "Personalizează descriptorul folosit în URL." - -#: includes/admin/views/acf-post-type/advanced-settings.php:1027 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:940 -msgid "URL Slug" -msgstr "Descriptor URL" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1011 -msgid "Permalinks for this post type are disabled." -msgstr "Legăturile permanente pentru acest tip de articol sunt dezactivate." - -#. translators: this string will be appended with the new permalink structure. -#: includes/admin/views/acf-post-type/advanced-settings.php:1010 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:923 -msgid "" -"Rewrite the URL using a custom slug defined in the input below. Your " -"permalink structure will be" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1002 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:915 -msgid "No Permalink (prevent URL rewriting)" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1001 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:914 -msgid "Custom Permalink" -msgstr "Legături permanente personalizate" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1000 -#: includes/admin/views/acf-post-type/advanced-settings.php:1170 -#: includes/admin/views/acf-post-type/basic-settings.php:56 -msgid "Post Type Key" -msgstr "" - -#. translators: this string will be appended with the new permalink structure. -#: includes/admin/views/acf-post-type/advanced-settings.php:998 -#: includes/admin/views/acf-post-type/advanced-settings.php:1008 -msgid "" -"Rewrite the URL using the post type key as the slug. Your permalink " -"structure will be" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:996 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:910 -msgid "Permalink Rewrite" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:982 -msgid "Delete items by a user when that user is deleted." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:981 -msgid "Delete With User" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:967 -msgid "Allow the post type to be exported from 'Tools' > 'Export'." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:966 -msgid "Can Export" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:935 -msgid "Optionally provide a plural to be used in capabilities." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:934 -msgid "Plural Capability Name" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:916 -msgid "Choose another post type to base the capabilities for this post type." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:915 -msgid "Singular Capability Name" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:901 -msgid "" -"By default the capabilities of the post type will inherit the 'Post' " -"capability names, eg. edit_post, delete_posts. Enable to use post type " -"specific capabilities, eg. edit_{singular}, delete_{plural}." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:900 -msgid "Rename Capabilities" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:885 -msgid "Exclude From Search" -msgstr "Exclude din căutare" - -#: includes/admin/views/acf-post-type/advanced-settings.php:872 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:854 -msgid "" -"Allow items to be added to menus in the 'Appearance' > 'Menus' screen. Must " -"be turned on in 'Screen options'." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:871 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:853 -msgid "Appearance Menus Support" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:853 -msgid "Appears as an item in the 'New' menu in the admin bar." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:852 -msgid "Show In Admin Bar" -msgstr "Arată în bara de administrare" - -#: includes/admin/views/acf-post-type/advanced-settings.php:821 -msgid "" -"A PHP function name to be called when setting up the meta boxes for the edit " -"screen." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:820 -msgid "Custom Meta Box Callback" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:800 -msgid "Menu Icon" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:782 -msgid "The position in the sidebar menu in the admin dashboard." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:781 -msgid "Menu Position" -msgstr "Poziție meniu" - -#: includes/admin/views/acf-post-type/advanced-settings.php:763 -msgid "" -"By default the post type will get a new top level item in the admin menu. If " -"an existing top level item is supplied here, the post type will be added as " -"a submenu item under it." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:762 -msgid "Admin Menu Parent" -msgstr "" - -#. translators: %s = "dashicon class name", link to the WordPress dashicon -#. documentation. -#: includes/admin/views/acf-post-type/advanced-settings.php:750 -msgid "" -"The icon used for the post type menu item in the admin dashboard. Can be a " -"URL or %s to use for the icon." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:745 -msgid "Dashicon class name" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:734 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:734 -msgid "Admin editor navigation in the sidebar menu." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:733 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:733 -msgid "Show In Admin Menu" -msgstr "Arată în meniul de administrare" - -#: includes/admin/views/acf-post-type/advanced-settings.php:720 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:719 -msgid "Items can be edited and managed in the admin dashboard." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:719 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:718 -msgid "Show In UI" -msgstr "Arată în UI" - -#: includes/admin/views/acf-post-type/advanced-settings.php:689 -msgid "A link to a post." -msgstr "O legătură la un articol." - -#: includes/admin/views/acf-post-type/advanced-settings.php:688 -msgid "Description for a navigation link block variation." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:687 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:702 -msgid "Item Link Description" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:683 -msgid "A link to a %s." -msgstr "O legătură la un %s." - -#: includes/admin/views/acf-post-type/advanced-settings.php:668 -msgid "Post Link" -msgstr "Legătură la articol" - -#: includes/admin/views/acf-post-type/advanced-settings.php:667 -msgid "Title for a navigation link block variation." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:666 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:681 -msgid "Item Link" -msgstr "Legătură la element" - -#. translators: %s Singular form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:663 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:678 -msgid "%s Link" -msgstr "Legătură la %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:648 -msgid "Post updated." -msgstr "Am actualizat articolul." - -#: includes/admin/views/acf-post-type/advanced-settings.php:647 -msgid "In the editor notice after an item is updated." -msgstr "În notificarea din editor după ce un element este actualizat." - -#: includes/admin/views/acf-post-type/advanced-settings.php:646 -msgid "Item Updated" -msgstr "Am actualizat elementul" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:643 -msgid "%s updated." -msgstr "Am actualizat %s." - -#: includes/admin/views/acf-post-type/advanced-settings.php:628 -msgid "Post scheduled." -msgstr "Am programat articolul." - -#: includes/admin/views/acf-post-type/advanced-settings.php:627 -msgid "In the editor notice after scheduling an item." -msgstr "În notificarea din editor după programarea unui element." - -#: includes/admin/views/acf-post-type/advanced-settings.php:626 -msgid "Item Scheduled" -msgstr "Am programat elementul" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:623 -msgid "%s scheduled." -msgstr "Am programat %s." - -#: includes/admin/views/acf-post-type/advanced-settings.php:608 -msgid "Post reverted to draft." -msgstr "Articolul a revenit la ciornă." - -#: includes/admin/views/acf-post-type/advanced-settings.php:607 -msgid "In the editor notice after reverting an item to draft." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:606 -msgid "Item Reverted To Draft" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:603 -msgid "%s reverted to draft." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:588 -msgid "Post published privately." -msgstr "Am publicat articolul ca privat." - -#: includes/admin/views/acf-post-type/advanced-settings.php:587 -msgid "In the editor notice after publishing a private item." -msgstr "În notificarea din editor după publicarea unui element privat." - -#: includes/admin/views/acf-post-type/advanced-settings.php:586 -msgid "Item Published Privately" -msgstr "Am publicat elementul ca privat" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:583 -msgid "%s published privately." -msgstr "Am publicat %s ca privat." - -#: includes/admin/views/acf-post-type/advanced-settings.php:568 -msgid "Post published." -msgstr "Am publicat articolul." - -#: includes/admin/views/acf-post-type/advanced-settings.php:567 -msgid "In the editor notice after publishing an item." -msgstr "În notificarea din editor după publicarea unui element." - -#: includes/admin/views/acf-post-type/advanced-settings.php:566 -msgid "Item Published" -msgstr "Am publicat elementul" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:563 -msgid "%s published." -msgstr "Am publicat %s." - -#: includes/admin/views/acf-post-type/advanced-settings.php:548 -msgid "Posts list" -msgstr "Listă cu articole" - -#: includes/admin/views/acf-post-type/advanced-settings.php:547 -msgid "Used by screen readers for the items list on the post type list screen." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:546 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:640 -msgid "Items List" -msgstr "Listă cu elemente" - -#. translators: %s Plural form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:543 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:637 -msgid "%s list" -msgstr "Listă cu %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:528 -msgid "Posts list navigation" -msgstr "Navigare în lista cu articole" - -#: includes/admin/views/acf-post-type/advanced-settings.php:527 -msgid "" -"Used by screen readers for the filter list pagination on the post type list " -"screen." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:526 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:620 -msgid "Items List Navigation" -msgstr "Navigare în lista cu elemente" - -#. translators: %s Plural form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:523 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:617 -msgid "%s list navigation" -msgstr "Navigare în lista cu %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:507 -msgid "Filter posts by date" -msgstr "Filtrează articolele după dată" - -#: includes/admin/views/acf-post-type/advanced-settings.php:506 -msgid "" -"Used by screen readers for the filter by date heading on the post type list " -"screen." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:505 -msgid "Filter Items By Date" -msgstr "Filtrează elementele după dată" - -#. translators: %s Plural form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:501 -msgid "Filter %s by date" -msgstr "Filtrează %s după dată" - -#: includes/admin/views/acf-post-type/advanced-settings.php:486 -msgid "Filter posts list" -msgstr "Filtrează lista cu articole" - -#: includes/admin/views/acf-post-type/advanced-settings.php:485 -msgid "" -"Used by screen readers for the filter links heading on the post type list " -"screen." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:484 -msgid "Filter Items List" -msgstr "Filtrează lista cu elemente" - -#. translators: %s Plural form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:480 -msgid "Filter %s list" -msgstr "Filtrează lista cu %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:464 -msgid "In the media modal showing all media uploaded to this item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:463 -msgid "Uploaded To This Item" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:459 -msgid "Uploaded to this %s" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:444 -msgid "Insert into post" -msgstr "Inserează în articol" - -#: includes/admin/views/acf-post-type/advanced-settings.php:443 -msgid "As the button label when adding media to content." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:442 -msgid "Insert Into Media Button" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:438 -msgid "Insert into %s" -msgstr "Inserează în %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:423 -msgid "Use as featured image" -msgstr "Folosește ca imagine reprezentativă" - -#: includes/admin/views/acf-post-type/advanced-settings.php:422 -msgid "" -"As the button label for selecting to use an image as the featured image." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:421 -msgid "Use Featured Image" -msgstr "Folosește imaginea reprezentativă" - -#: includes/admin/views/acf-post-type/advanced-settings.php:408 -msgid "Remove featured image" -msgstr "Înlătură imaginea reprezentativă" - -#: includes/admin/views/acf-post-type/advanced-settings.php:407 -msgid "As the button label when removing the featured image." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:406 -msgid "Remove Featured Image" -msgstr "Înlătură imaginea reprezentativă" - -#: includes/admin/views/acf-post-type/advanced-settings.php:393 -msgid "Set featured image" -msgstr "Stabilește imaginea reprezentativă" - -#: includes/admin/views/acf-post-type/advanced-settings.php:392 -msgid "As the button label when setting the featured image." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:391 -msgid "Set Featured Image" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:378 -msgid "Featured image" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:377 -msgid "In the editor used for the title of the featured image meta box." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:376 -msgid "Featured Image Meta Box" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:363 -msgid "Post Attributes" -msgstr "Atribute articol" - -#: includes/admin/views/acf-post-type/advanced-settings.php:362 -msgid "In the editor used for the title of the post attributes meta box." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:361 -msgid "Attributes Meta Box" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:358 -msgid "%s Attributes" -msgstr "Atribute %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:343 -msgid "Post Archives" -msgstr "Arhive articole" - -#: includes/admin/views/acf-post-type/advanced-settings.php:342 -msgid "" -"Adds 'Post Type Archive' items with this label to the list of posts shown " -"when adding items to an existing menu in a CPT with archives enabled. Only " -"appears when editing menus in 'Live Preview' mode and a custom archive slug " -"has been provided." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:341 -msgid "Archives Nav Menu" -msgstr "Meniu de navigare în arhive" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:338 -msgid "%s Archives" -msgstr "Arhive %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:323 -msgid "No posts found in Trash" -msgstr "Nu am găsit niciun articol la gunoi" - -#: includes/admin/views/acf-post-type/advanced-settings.php:322 -msgid "" -"At the top of the post type list screen when there are no posts in the trash." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:321 -msgid "No Items Found in Trash" -msgstr "Nu am găsit niciun element la gunoi" - -#. translators: %s Plural form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:317 -msgid "No %s found in Trash" -msgstr "Nu am găsit niciun %s la gunoi" - -#: includes/admin/views/acf-post-type/advanced-settings.php:302 -msgid "No posts found" -msgstr "Nu am găsit niciun articol" - -#: includes/admin/views/acf-post-type/advanced-settings.php:301 -msgid "" -"At the top of the post type list screen when there are no posts to display." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:300 -msgid "No Items Found" -msgstr "Nu am găsit niciun element" - -#. translators: %s Plural form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:296 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:480 -msgid "No %s found" -msgstr "Nu am găsit niciun %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:281 -msgid "Search Posts" -msgstr "Caută articole" - -#: includes/admin/views/acf-post-type/advanced-settings.php:280 -msgid "At the top of the items screen when searching for an item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:279 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:345 -msgid "Search Items" -msgstr "Caută elemente" - -#. translators: %s Singular form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:276 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:342 -msgid "Search %s" -msgstr "Caută %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:261 -msgid "Parent Page:" -msgstr "Pagină părinte:" - -#: includes/admin/views/acf-post-type/advanced-settings.php:260 -msgid "For hierarchical types in the post type list screen." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:259 -msgid "Parent Item Prefix" -msgstr "" - -#. translators: %s Singular form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:256 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:318 -msgid "Parent %s:" -msgstr "%s părinte:" - -#: includes/admin/views/acf-post-type/advanced-settings.php:241 -msgid "New Post" -msgstr "Articol nou" - -#: includes/admin/views/acf-post-type/advanced-settings.php:239 -msgid "New Item" -msgstr "Element nou" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:236 -msgid "New %s" -msgstr "%s nou" - -#: includes/admin/views/acf-post-type/advanced-settings.php:206 -msgid "Add New Post" -msgstr "Adaugă articol nou" - -#: includes/admin/views/acf-post-type/advanced-settings.php:205 -msgid "At the top of the editor screen when adding a new item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:204 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:256 -msgid "Add New Item" -msgstr "Adaugă element nou" - -#. translators: %s Singular form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:201 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:253 -msgid "Add New %s" -msgstr "Adaugă %s nou" - -#: includes/admin/views/acf-post-type/advanced-settings.php:186 -msgid "View Posts" -msgstr "Vezi articolele" - -#: includes/admin/views/acf-post-type/advanced-settings.php:185 -msgid "" -"Appears in the admin bar in the 'All Posts' view, provided the post type " -"supports archives and the home page is not an archive of that post type." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:184 -msgid "View Items" -msgstr "Vezi elementele" - -#: includes/admin/views/acf-post-type/advanced-settings.php:166 -msgid "View Post" -msgstr "Vezi articolul" - -#: includes/admin/views/acf-post-type/advanced-settings.php:165 -msgid "In the admin bar to view item when editing it." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:164 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:216 -msgid "View Item" -msgstr "Vezi elementul" - -#. translators: %s Singular form of post type name -#. translators: %s Plural form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:161 -#: includes/admin/views/acf-post-type/advanced-settings.php:181 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:213 -msgid "View %s" -msgstr "Vezi %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:146 -msgid "Edit Post" -msgstr "Editează articolul" - -#: includes/admin/views/acf-post-type/advanced-settings.php:145 -msgid "At the top of the editor screen when editing an item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:144 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:196 -msgid "Edit Item" -msgstr "Editează elementul" - -#. translators: %s Singular form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:141 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:193 -msgid "Edit %s" -msgstr "Editează %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:126 -msgid "All Posts" -msgstr "Toate articolele" - -#: includes/admin/views/acf-post-type/advanced-settings.php:125 -#: includes/admin/views/acf-post-type/advanced-settings.php:220 -#: includes/admin/views/acf-post-type/advanced-settings.php:240 -msgid "In the post type submenu in the admin dashboard." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:124 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:176 -msgid "All Items" -msgstr "Toate elementele" - -#. translators: %s Plural form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:121 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:173 -msgid "All %s" -msgstr "Toate %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:105 -msgid "Admin menu name for the post type." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:104 -msgid "Menu Name" -msgstr "Nume meniu" - -#: includes/admin/views/acf-post-type/advanced-settings.php:90 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:142 -msgid "Regenerate all labels using the Singular and Plural labels" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:88 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:140 -msgid "Regenerate" -msgstr "Regenerează" - -#: includes/admin/views/acf-post-type/advanced-settings.php:79 -msgid "Active post types are enabled and registered with WordPress." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:63 -msgid "A descriptive summary of the post type." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:48 -msgid "Add Custom" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:42 -msgid "Enable various features in the content editor." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:31 -msgid "Post Formats" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:25 -msgid "Editor" -msgstr "Editor" - -#: includes/admin/views/acf-post-type/advanced-settings.php:24 -msgid "Trackbacks" -msgstr "Trackback-uri" - -#: includes/admin/views/acf-post-type/basic-settings.php:87 -msgid "Select existing taxonomies to classify items of the post type." -msgstr "" - -#: includes/admin/views/acf-field-group/field.php:145 -msgid "Browse Fields" -msgstr "Răsfoiește câmpurile" - -#: includes/admin/tools/class-acf-admin-tool-import.php:292 -msgid "Nothing to import" -msgstr "Nimic pentru import" - -#: includes/admin/tools/class-acf-admin-tool-import.php:287 -msgid ". The Custom Post Type UI plugin can be deactivated." -msgstr "" - -#. translators: %d - number of items imported from CPTUI -#: includes/admin/tools/class-acf-admin-tool-import.php:278 -msgid "Imported %d item from Custom Post Type UI -" -msgid_plural "Imported %d items from Custom Post Type UI -" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:262 -msgid "Failed to import taxonomies." -msgstr "Importul taxonomiilor a eșuat." - -#: includes/admin/tools/class-acf-admin-tool-import.php:244 -msgid "Failed to import post types." -msgstr "Importul tipurilor de articol a eșuat." - -#: includes/admin/tools/class-acf-admin-tool-import.php:233 -msgid "Nothing from Custom Post Type UI plugin selected for import." -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:209 -msgid "Imported 1 item" -msgid_plural "Imported %s items" -msgstr[0] "Am importat un element" -msgstr[1] "Am importat %s elemente" -msgstr[2] "Am importat %s de elemente" - -#: includes/admin/tools/class-acf-admin-tool-import.php:122 -msgid "" -"Importing a Post Type or Taxonomy with the same key as one that already " -"exists will overwrite the settings for the existing Post Type or Taxonomy " -"with those of the import." -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:111 -#: includes/admin/tools/class-acf-admin-tool-import.php:127 -msgid "Import from Custom Post Type UI" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:412 -msgid "" -"The following code can be used to register a local version of the selected " -"items. Storing field groups, post types, or taxonomies locally can provide " -"many benefits such as faster load times, version control & dynamic fields/" -"settings. Simply copy and paste the following code to your theme's functions." -"php file or include it within an external file, then deactivate or delete " -"the items from the ACF admin." -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:411 -msgid "Export - Generate PHP" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:384 -msgid "Export" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:276 -msgid "Select Taxonomies" -msgstr "Selectează taxonomiile" - -#: includes/admin/tools/class-acf-admin-tool-export.php:254 -msgid "Select Post Types" -msgstr "Selectează tipurile de articol" - -#: includes/admin/tools/class-acf-admin-tool-export.php:167 -msgid "Exported 1 item." -msgid_plural "Exported %s items." -msgstr[0] "Am exportat un element." -msgstr[1] "Am exportat %s elemente." -msgstr[2] "Am exportat %s de elemente." - -#: includes/admin/post-types/admin-taxonomy.php:129 -#: assets/build/js/acf-internal-post-type.js:182 -#: assets/build/js/acf-internal-post-type.js:256 -msgid "Category" -msgstr "Categorie" - -#: includes/admin/post-types/admin-taxonomy.php:127 -#: assets/build/js/acf-internal-post-type.js:179 -#: assets/build/js/acf-internal-post-type.js:253 -msgid "Tag" -msgstr "Etichetă" - -#. translators: %s taxonomy name -#: includes/admin/post-types/admin-taxonomy.php:82 -msgid "%s taxonomy created" -msgstr "Am creat taxonomia %s" - -#. translators: %s taxonomy name -#: includes/admin/post-types/admin-taxonomy.php:76 -msgid "%s taxonomy updated" -msgstr "Am actualizat taxonomia %s" - -#: includes/admin/post-types/admin-taxonomy.php:56 -msgid "Taxonomy draft updated." -msgstr "Am actualizat ciorna taxonomiei." - -#: includes/admin/post-types/admin-taxonomy.php:55 -msgid "Taxonomy scheduled for." -msgstr "Am programat taxonomia." - -#: includes/admin/post-types/admin-taxonomy.php:54 -msgid "Taxonomy submitted." -msgstr "Am trimis taxonomia." - -#: includes/admin/post-types/admin-taxonomy.php:53 -msgid "Taxonomy saved." -msgstr "Am salvat taxonomia." - -#: includes/admin/post-types/admin-taxonomy.php:49 -msgid "Taxonomy deleted." -msgstr "Am șters taxonomia." - -#: includes/admin/post-types/admin-taxonomy.php:48 -msgid "Taxonomy updated." -msgstr "Am actualizat taxonomia." - -#: includes/admin/post-types/admin-taxonomies.php:377 -#: includes/admin/post-types/admin-taxonomy.php:157 -msgid "" -"This taxonomy could not be registered because its key is in use by another " -"taxonomy registered by another plugin or theme." -msgstr "" - -#. translators: %s number of taxonomies synchronized -#: includes/admin/post-types/admin-taxonomies.php:359 -msgid "Taxonomy synchronized." -msgid_plural "%s taxonomies synchronized." -msgstr[0] "Am sincronizat taxonomia." -msgstr[1] "Am sincronizat %s taxonomii." -msgstr[2] "Am sincronizat %s de taxonomii." - -#. translators: %s number of taxonomies duplicated -#: includes/admin/post-types/admin-taxonomies.php:352 -msgid "Taxonomy duplicated." -msgid_plural "%s taxonomies duplicated." -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. translators: %s number of taxonomies deactivated -#: includes/admin/post-types/admin-taxonomies.php:345 -msgid "Taxonomy deactivated." -msgid_plural "%s taxonomies deactivated." -msgstr[0] "Am dezactivat taxonomia." -msgstr[1] "Am dezactivat %s taxonomii." -msgstr[2] "Am dezactivat %s de taxonomii." - -#. translators: %s number of taxonomies activated -#: includes/admin/post-types/admin-taxonomies.php:338 -msgid "Taxonomy activated." -msgid_plural "%s taxonomies activated." -msgstr[0] "Am activat taxonomia." -msgstr[1] "Am activat %s taxonomii." -msgstr[2] "Am activat %s de taxonomii." - -#: includes/admin/post-types/admin-taxonomies.php:139 -msgid "Terms" -msgstr "Termeni" - -#. translators: %s number of post types synchronized -#: includes/admin/post-types/admin-post-types.php:352 -msgid "Post type synchronized." -msgid_plural "%s post types synchronized." -msgstr[0] "Am sincronizat tipul de articol." -msgstr[1] "Am sincronizat %s tipuri de articol." -msgstr[2] "Am sincronizat %s de tipuri de articol." - -#. translators: %s number of post types duplicated -#: includes/admin/post-types/admin-post-types.php:345 -msgid "Post type duplicated." -msgid_plural "%s post types duplicated." -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. translators: %s number of post types deactivated -#: includes/admin/post-types/admin-post-types.php:338 -msgid "Post type deactivated." -msgid_plural "%s post types deactivated." -msgstr[0] "Am dezactivat tipul de articol." -msgstr[1] "Am dezactivat %s tipuri de articol." -msgstr[2] "Am dezactivat %s de tipuri de articol." - -#. translators: %s number of post types activated -#: includes/admin/post-types/admin-post-types.php:331 -msgid "Post type activated." -msgid_plural "%s post types activated." -msgstr[0] "Am activat tipul de articol." -msgstr[1] "Am activat %s tipuri de articol." -msgstr[2] "Am activat %s de tipuri de articol." - -#: includes/admin/post-types/admin-post-types.php:112 -#: includes/admin/post-types/admin-taxonomies.php:137 -#: includes/admin/tools/class-acf-admin-tool-import.php:82 -#: includes/admin/views/acf-taxonomy/basic-settings.php:82 -#: includes/post-types/class-acf-post-type.php:91 -msgid "Post Types" -msgstr "Tipuri de articol" - -#: includes/admin/post-types/admin-post-type.php:162 -#: includes/admin/post-types/admin-taxonomy.php:164 -msgid "Advanced Settings" -msgstr "Setări avansate" - -#: includes/admin/post-types/admin-post-type.php:161 -#: includes/admin/post-types/admin-taxonomy.php:163 -msgid "Basic Settings" -msgstr "Setări de bază" - -#: includes/admin/post-types/admin-post-type.php:155 -#: includes/admin/post-types/admin-post-types.php:370 -msgid "" -"This post type could not be registered because its key is in use by another " -"post type registered by another plugin or theme." -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:128 -#: assets/build/js/acf-internal-post-type.js:176 -#: assets/build/js/acf-internal-post-type.js:250 -msgid "Pages" -msgstr "Pagini" - -#: includes/admin/admin-internal-post-type.php:355 -msgid "Link Existing Field Groups" -msgstr "Leagă grupurile de câmpuri existente" - -#. translators: %s post type name -#: includes/admin/post-types/admin-post-type.php:80 -msgid "%s post type created" -msgstr "Am creat tipul de articol %s" - -#. translators: %s taxonomy name -#: includes/admin/post-types/admin-taxonomy.php:78 -msgid "Add fields to %s" -msgstr "Adaugă câmpuri la %s" - -#. translators: %s post type name -#: includes/admin/post-types/admin-post-type.php:76 -msgid "%s post type updated" -msgstr "Am actualizat tipul de articol %s" - -#: includes/admin/post-types/admin-post-type.php:56 -msgid "Post type draft updated." -msgstr "Am actualizat ciorna tipului de articol." - -#: includes/admin/post-types/admin-post-type.php:55 -msgid "Post type scheduled for." -msgstr "Am programat tipul de articol." - -#: includes/admin/post-types/admin-post-type.php:54 -msgid "Post type submitted." -msgstr "Am trimis tipul de articol." - -#: includes/admin/post-types/admin-post-type.php:53 -msgid "Post type saved." -msgstr "Am salvat tipul de articol." - -#: includes/admin/post-types/admin-post-type.php:50 -msgid "Post type updated." -msgstr "Am actualizat tipul de articol." - -#: includes/admin/post-types/admin-post-type.php:49 -msgid "Post type deleted." -msgstr "Am șters tipul de articol." - -#: includes/admin/post-types/admin-field-group.php:120 -#: assets/build/js/acf-field-group.js:1146 -#: assets/build/js/acf-field-group.js:1366 -msgid "Type to search..." -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:105 -#: assets/build/js/acf-field-group.js:1172 -#: assets/build/js/acf-field-group.js:2319 -#: assets/build/js/acf-field-group.js:1414 -#: assets/build/js/acf-field-group.js:2727 -msgid "PRO Only" -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:97 -#: assets/build/js/acf-internal-post-type.js:308 -#: assets/build/js/acf-internal-post-type.js:417 -msgid "Field groups linked successfully." -msgstr "Am legat cu succes grupurile de câmpuri." - -#. translators: %s - URL to ACF tools page. -#: includes/admin/admin.php:195 -msgid "" -"Import Post Types and Taxonomies registered with Custom Post Type UI and " -"manage them with ACF. Get Started." -msgstr "" - -#: includes/admin/admin.php:48 includes/admin/admin.php:267 -msgid "ACF" -msgstr "ACF" - -#: includes/admin/admin-internal-post-type.php:322 -msgid "taxonomy" -msgstr "taxonomie" - -#: includes/admin/admin-internal-post-type.php:322 -msgid "post type" -msgstr "tip de articol" - -#: includes/admin/admin-internal-post-type.php:346 -msgid "Done" -msgstr "" - -#: includes/admin/admin-internal-post-type.php:332 -msgid "Field Group(s)" -msgstr "" - -#: includes/admin/admin-internal-post-type.php:331 -msgid "Select one or many field groups..." -msgstr "" - -#: includes/admin/admin-internal-post-type.php:330 -msgid "Please select the field groups to link." -msgstr "" - -#: includes/admin/admin-internal-post-type.php:288 -msgid "Field group linked successfully." -msgid_plural "Field groups linked successfully." -msgstr[0] "Am legat cu succes grupul de câmpuri." -msgstr[1] "Am legat cu succes grupurile de câmpuri." -msgstr[2] "Am legat cu succes grupurile de câmpuri." - -#: includes/admin/admin-internal-post-type-list.php:261 -#: includes/admin/post-types/admin-post-types.php:371 -#: includes/admin/post-types/admin-taxonomies.php:378 -msgctxt "post status" -msgid "Registration Failed" -msgstr "Înregistrarea a eșuat" - -#: includes/admin/admin-internal-post-type-list.php:260 -msgid "" -"This item could not be registered because its key is in use by another item " -"registered by another plugin or theme." -msgstr "" - -#: includes/acf-internal-post-type-functions.php:482 -#: includes/acf-internal-post-type-functions.php:511 -msgid "REST API" -msgstr "REST API" - -#: includes/acf-internal-post-type-functions.php:481 -#: includes/acf-internal-post-type-functions.php:510 -#: includes/acf-internal-post-type-functions.php:537 -msgid "Permissions" -msgstr "Permisiuni" - -#: includes/acf-internal-post-type-functions.php:480 -#: includes/acf-internal-post-type-functions.php:509 -msgid "URLs" -msgstr "URL-uri" - -#: includes/acf-internal-post-type-functions.php:479 -#: includes/acf-internal-post-type-functions.php:508 -#: includes/acf-internal-post-type-functions.php:535 -msgid "Visibility" -msgstr "Vizibilitate" - -#: includes/acf-internal-post-type-functions.php:478 -#: includes/acf-internal-post-type-functions.php:507 -#: includes/acf-internal-post-type-functions.php:536 -msgid "Labels" -msgstr "Etichete" - -#: includes/admin/post-types/admin-field-group.php:269 -msgid "Field Settings Tabs" -msgstr "" - -#. Author URI of the plugin -msgid "" -"https://wpengine.com/?utm_source=wordpress." -"org&utm_medium=referral&utm_campaign=plugin_directory&utm_content=advanced_custom_fields" -msgstr "" -"https://wpengine.com/?utm_source=wordpress." -"org&utm_medium=referral&utm_campaign=plugin_directory&utm_content=advanced_custom_fields" - -#: includes/api/api-template.php:867 -msgid "[ACF shortcode value disabled for preview]" -msgstr "" - -#: includes/admin/admin-internal-post-type.php:298 -#: includes/admin/post-types/admin-field-group.php:571 -msgid "Close Modal" -msgstr "Închide fereastra modală" - -#: includes/admin/post-types/admin-field-group.php:96 -#: assets/build/js/acf-field-group.js:1670 -#: assets/build/js/acf-field-group.js:1993 -msgid "Field moved to other group" -msgstr "Am mutat câmpul la un alt grup" - -#: includes/admin/post-types/admin-field-group.php:95 -#: assets/build/js/acf.js:1437 assets/build/js/acf.js:1517 -msgid "Close modal" -msgstr "Închide fereastra modală" - -#: includes/fields/class-acf-field-tab.php:125 -msgid "Start a new group of tabs at this tab." -msgstr "" - -#: includes/fields/class-acf-field-tab.php:124 -msgid "New Tab Group" -msgstr "Grup de file nou" - -#: includes/fields/class-acf-field-select.php:451 -#: includes/fields/class-acf-field-true_false.php:200 -msgid "Use a stylized checkbox using select2" -msgstr "" - -#: includes/fields/class-acf-field-radio.php:260 -msgid "Save Other Choice" -msgstr "" - -#: includes/fields/class-acf-field-radio.php:249 -msgid "Allow Other Choice" -msgstr "" - -#: includes/fields/class-acf-field-checkbox.php:450 -msgid "Add Toggle All" -msgstr "" - -#: includes/fields/class-acf-field-checkbox.php:409 -msgid "Save Custom Values" -msgstr "Salvează valorile personalizate" - -#: includes/fields/class-acf-field-checkbox.php:398 -msgid "Allow Custom Values" -msgstr "Permite valori personalizate" - -#: includes/fields/class-acf-field-checkbox.php:148 -msgid "Checkbox custom values cannot be empty. Uncheck any empty values." -msgstr "" - -#: includes/admin/views/global/navigation.php:248 -msgid "Updates" -msgstr "Actualizări" - -#: includes/admin/views/global/navigation.php:176 -msgid "Advanced Custom Fields logo" -msgstr "" - -#: includes/admin/views/global/form-top.php:89 -msgid "Save Changes" -msgstr "Salvează modificările" - -#: includes/admin/views/global/form-top.php:76 -msgid "Field Group Title" -msgstr "Titlu grup de câmpuri" - -#: includes/admin/views/acf-post-type/advanced-settings.php:704 -#: includes/admin/views/global/form-top.php:3 -msgid "Add title" -msgstr "Adaugă titlu" - -#. translators: %s url to getting started guide -#: includes/admin/views/acf-field-group/list-empty.php:20 -#: includes/admin/views/acf-post-type/list-empty.php:12 -#: includes/admin/views/acf-taxonomy/list-empty.php:12 -#: includes/admin/views/options-page-preview.php:13 -msgid "" -"New to ACF? Take a look at our getting " -"started guide." -msgstr "" - -#: includes/admin/views/acf-field-group/list-empty.php:15 -msgid "Add Field Group" -msgstr "Adaugă un grup de câmpuri" - -#. translators: %s url to creating a field group page -#: includes/admin/views/acf-field-group/list-empty.php:10 -msgid "" -"ACF uses field groups to group custom " -"fields together, and then attach those fields to edit screens." -msgstr "" - -#: includes/admin/views/acf-field-group/list-empty.php:5 -msgid "Add Your First Field Group" -msgstr "Adaugă primul tău grup de câmpuri" - -#: includes/admin/admin-options-pages-preview.php:28 -#: includes/admin/views/acf-field-group/pro-features.php:54 -#: includes/admin/views/global/navigation.php:86 -#: includes/admin/views/global/navigation.php:250 -msgid "Options Pages" -msgstr "Pagini opțiuni" - -#: includes/admin/views/acf-field-group/pro-features.php:50 -msgid "ACF Blocks" -msgstr "Blocuri ACF" - -#: includes/admin/views/acf-field-group/pro-features.php:58 -msgid "Gallery Field" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:38 -msgid "Flexible Content Field" -msgstr "Câmp cu conținut flexibil" - -#: includes/admin/views/acf-field-group/pro-features.php:42 -msgid "Repeater Field" -msgstr "" - -#: includes/admin/views/global/navigation.php:212 -msgid "Unlock Extra Features with ACF PRO" -msgstr "" - -#: includes/admin/views/acf-field-group/options.php:267 -msgid "Delete Field Group" -msgstr "Șterge grupul de câmpuri" - -#. translators: 1: Post creation date 2: Post creation time -#: includes/admin/views/acf-field-group/options.php:261 -msgid "Created on %1$s at %2$s" -msgstr "Creat pe %1$s la %2$s" - -#: includes/acf-field-group-functions.php:497 -msgid "Group Settings" -msgstr "" - -#: includes/acf-field-group-functions.php:495 -msgid "Location Rules" -msgstr "" - -#. translators: %s url to field types list -#: includes/admin/views/acf-field-group/fields.php:72 -msgid "" -"Choose from over 30 field types. Learn " -"more." -msgstr "" - -#: includes/admin/views/acf-field-group/fields.php:65 -msgid "" -"Get started creating new custom fields for your posts, pages, custom post " -"types and other WordPress content." -msgstr "" - -#: includes/admin/views/acf-field-group/fields.php:64 -msgid "Add Your First Field" -msgstr "Adaugă primul tău câmp" - -#. translators: A symbol (or text, if not available in your locale) meaning -#. "Order Number", in terms of positional placement. -#: includes/admin/views/acf-field-group/fields.php:43 -msgid "#" -msgstr "" - -#: includes/admin/views/acf-field-group/fields.php:33 -#: includes/admin/views/acf-field-group/fields.php:67 -#: includes/admin/views/acf-field-group/fields.php:103 -#: includes/admin/views/global/form-top.php:85 -msgid "Add Field" -msgstr "Adaugă câmp" - -#: includes/acf-field-group-functions.php:496 includes/fields.php:410 -msgid "Presentation" -msgstr "Prezentare" - -#: includes/fields.php:409 -msgid "Validation" -msgstr "Validare" - -#: includes/acf-internal-post-type-functions.php:477 -#: includes/acf-internal-post-type-functions.php:506 includes/fields.php:408 -msgid "General" -msgstr "Generale" - -#: includes/admin/tools/class-acf-admin-tool-import.php:70 -msgid "Import JSON" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:392 -msgid "Export As JSON" -msgstr "" - -#. translators: %s number of field groups deactivated -#: includes/admin/post-types/admin-field-groups.php:367 -msgid "Field group deactivated." -msgid_plural "%s field groups deactivated." -msgstr[0] "Am dezactivat grupul de câmpuri." -msgstr[1] "Am dezactivat %s grupuri de câmpuri." -msgstr[2] "Am dezactivat %s de grupuri de câmpuri." - -#. translators: %s number of field groups activated -#: includes/admin/post-types/admin-field-groups.php:360 -msgid "Field group activated." -msgid_plural "%s field groups activated." -msgstr[0] "Am activat grupul de câmpuri." -msgstr[1] "Am activat %s grupuri de câmpuri." -msgstr[2] "Am activat %s de grupuri de câmpuri." - -#: includes/admin/admin-internal-post-type-list.php:452 -#: includes/admin/admin-internal-post-type-list.php:478 -msgid "Deactivate" -msgstr "Dezactivează" - -#: includes/admin/admin-internal-post-type-list.php:452 -msgid "Deactivate this item" -msgstr "Dezactivează acest element" - -#: includes/admin/admin-internal-post-type-list.php:448 -#: includes/admin/admin-internal-post-type-list.php:477 -msgid "Activate" -msgstr "Activează" - -#: includes/admin/admin-internal-post-type-list.php:448 -msgid "Activate this item" -msgstr "Activează acest element" - -#: includes/admin/post-types/admin-field-group.php:92 -#: assets/build/js/acf-field-group.js:2812 -#: assets/build/js/acf-field-group.js:3313 -msgid "Move field group to trash?" -msgstr "Muți grupul de câmpuri la gunoi?" - -#: acf.php:497 includes/admin/admin-internal-post-type-list.php:248 -#: includes/admin/post-types/admin-field-group.php:297 -#: includes/admin/post-types/admin-post-type.php:295 -#: includes/admin/post-types/admin-taxonomy.php:297 -msgctxt "post status" -msgid "Inactive" -msgstr "" - -#. Author of the plugin -msgid "WP Engine" -msgstr "" - -#: acf.php:555 -msgid "" -"Advanced Custom Fields and Advanced Custom Fields PRO should not be active " -"at the same time. We've automatically deactivated Advanced Custom Fields PRO." -msgstr "" - -#: acf.php:553 -msgid "" -"Advanced Custom Fields and Advanced Custom Fields PRO should not be active " -"at the same time. We've automatically deactivated Advanced Custom Fields." -msgstr "" - -#: includes/acf-value-functions.php:374 -msgid "" -"%1$s - We've detected one or more calls to retrieve ACF " -"field values before ACF has been initialized. This is not supported and can " -"result in malformed or missing data. Learn how to fix this." -msgstr "" - -#: includes/fields/class-acf-field-user.php:551 -msgid "%1$s must have a user with the %2$s role." -msgid_plural "%1$s must have a user with one of the following roles: %2$s" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: includes/fields/class-acf-field-user.php:542 -msgid "%1$s must have a valid user ID." -msgstr "" - -#: includes/fields/class-acf-field-user.php:380 -msgid "Invalid request." -msgstr "Cererea nu este validă." - -#: includes/fields/class-acf-field-select.php:684 -msgid "%1$s is not one of %2$s" -msgstr "" - -#: includes/fields/class-acf-field-post_object.php:700 -msgid "%1$s must have term %2$s." -msgid_plural "%1$s must have one of the following terms: %2$s" -msgstr[0] "%1$s trebuie să aibă termenul %2$s." -msgstr[1] "%1$s trebuie să aibă unul dintre următorii termeni: %2$s." -msgstr[2] "%1$s trebuie să aibă unul dintre următorii termeni: %2$s." - -#: includes/fields/class-acf-field-post_object.php:684 -msgid "%1$s must be of post type %2$s." -msgid_plural "%1$s must be of one of the following post types: %2$s" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: includes/fields/class-acf-field-post_object.php:675 -msgid "%1$s must have a valid post ID." -msgstr "%1$s trebuie să aibă un ID valid pentru articol." - -#: includes/fields/class-acf-field-file.php:475 -msgid "%s requires a valid attachment ID." -msgstr "%s are nevoie de un ID valid pentru atașament." - -#: includes/admin/views/acf-field-group/options.php:233 -msgid "Show in REST API" -msgstr "Arată în REST API" - -#: includes/fields/class-acf-field-color_picker.php:168 -msgid "Enable Transparency" -msgstr "Activează transparența" - -#: includes/fields/class-acf-field-color_picker.php:187 -msgid "RGBA Array" -msgstr "" - -#: includes/fields/class-acf-field-color_picker.php:98 -msgid "RGBA String" -msgstr "" - -#: includes/fields/class-acf-field-color_picker.php:97 -#: includes/fields/class-acf-field-color_picker.php:186 -msgid "Hex String" -msgstr "" - -#: includes/admin/views/browse-fields-modal.php:65 -msgid "Upgrade to PRO" -msgstr "Actualizează la PRO" - -#: includes/admin/post-types/admin-field-group.php:297 -#: includes/admin/post-types/admin-post-type.php:295 -#: includes/admin/post-types/admin-taxonomy.php:297 -msgctxt "post status" -msgid "Active" -msgstr "Activ" - -#: includes/fields/class-acf-field-email.php:181 -msgid "'%s' is not a valid email address" -msgstr "„%s” nu este o adresă de email validă" - -#: includes/fields/class-acf-field-color_picker.php:76 -msgid "Color value" -msgstr "Valoare culoare" - -#: includes/fields/class-acf-field-color_picker.php:74 -msgid "Select default color" -msgstr "Selectează culoarea implicită" - -#: includes/fields/class-acf-field-color_picker.php:72 -msgid "Clear color" -msgstr "Șterge culoarea" - -#: includes/acf-wp-functions.php:90 -msgid "Blocks" -msgstr "Blocuri" - -#: includes/acf-wp-functions.php:86 -msgid "Options" -msgstr "Opțiuni" - -#: includes/acf-wp-functions.php:82 -msgid "Users" -msgstr "Utilizatori" - -#: includes/acf-wp-functions.php:78 -msgid "Menu items" -msgstr "Elemente de meniu" - -#: includes/acf-wp-functions.php:70 -msgid "Widgets" -msgstr "Piese" - -#: includes/acf-wp-functions.php:62 -msgid "Attachments" -msgstr "Atașamente" - -#: includes/acf-wp-functions.php:57 -#: includes/admin/post-types/admin-post-types.php:137 -#: includes/admin/post-types/admin-taxonomies.php:112 -#: includes/admin/tools/class-acf-admin-tool-import.php:93 -#: includes/admin/views/acf-post-type/basic-settings.php:86 -#: includes/post-types/class-acf-taxonomy.php:90 -#: includes/post-types/class-acf-taxonomy.php:91 -msgid "Taxonomies" -msgstr "Taxonomii" - -#: includes/acf-wp-functions.php:44 -#: includes/admin/post-types/admin-post-type.php:126 -#: includes/admin/post-types/admin-post-types.php:139 -#: includes/admin/views/acf-post-type/advanced-settings.php:106 -#: assets/build/js/acf-internal-post-type.js:173 -#: assets/build/js/acf-internal-post-type.js:247 -msgid "Posts" -msgstr "Articole" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:76 -msgid "Last updated: %s" -msgstr "Ultima actualizare: %s" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:70 -msgid "Sorry, this post is unavailable for diff comparison." -msgstr "" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:42 -msgid "Invalid field group parameter(s)." -msgstr "" - -#: includes/admin/admin-internal-post-type-list.php:413 -msgid "Awaiting save" -msgstr "" - -#: includes/admin/admin-internal-post-type-list.php:410 -msgid "Saved" -msgstr "" - -#: includes/admin/admin-internal-post-type-list.php:406 -#: includes/admin/tools/class-acf-admin-tool-import.php:49 -msgid "Import" -msgstr "Importă" - -#: includes/admin/admin-internal-post-type-list.php:402 -msgid "Review changes" -msgstr "" - -#: includes/admin/admin-internal-post-type-list.php:378 -msgid "Located in: %s" -msgstr "" - -#: includes/admin/admin-internal-post-type-list.php:375 -msgid "Located in plugin: %s" -msgstr "" - -#: includes/admin/admin-internal-post-type-list.php:372 -msgid "Located in theme: %s" -msgstr "" - -#: includes/admin/post-types/admin-field-groups.php:261 -msgid "Various" -msgstr "" - -#: includes/admin/admin-internal-post-type-list.php:216 -#: includes/admin/admin-internal-post-type-list.php:485 -msgid "Sync changes" -msgstr "" - -#: includes/admin/admin-internal-post-type-list.php:215 -msgid "Loading diff" -msgstr "" - -#: includes/admin/admin-internal-post-type-list.php:214 -msgid "Review local JSON changes" -msgstr "" - -#: includes/admin/admin.php:170 -msgid "Visit website" -msgstr "Vizitează site-ul web" - -#: includes/admin/admin.php:169 -msgid "View details" -msgstr "Vezi detaliile" - -#: includes/admin/admin.php:168 -msgid "Version %s" -msgstr "Versiunea %s" - -#: includes/admin/admin.php:167 -msgid "Information" -msgstr "Informații" - -#: includes/admin/admin.php:158 -msgid "" -"Help Desk. The support professionals on " -"our Help Desk will assist with your more in depth, technical challenges." -msgstr "" - -#: includes/admin/admin.php:154 -msgid "" -"Discussions. We have an active and " -"friendly community on our Community Forums who may be able to help you " -"figure out the 'how-tos' of the ACF world." -msgstr "" - -#: includes/admin/admin.php:150 -msgid "" -"Documentation. Our extensive " -"documentation contains references and guides for most situations you may " -"encounter." -msgstr "" - -#: includes/admin/admin.php:147 -msgid "" -"We are fanatical about support, and want you to get the best out of your " -"website with ACF. If you run into any difficulties, there are several places " -"you can find help:" -msgstr "" - -#: includes/admin/admin.php:144 includes/admin/admin.php:146 -msgid "Help & Support" -msgstr "Ajutor și suport" - -#: includes/admin/admin.php:135 -msgid "" -"Please use the Help & Support tab to get in touch should you find yourself " -"requiring assistance." -msgstr "" - -#: includes/admin/admin.php:132 -msgid "" -"Before creating your first Field Group, we recommend first reading our Getting started guide to familiarize " -"yourself with the plugin's philosophy and best practises." -msgstr "" - -#: includes/admin/admin.php:130 -msgid "" -"The Advanced Custom Fields plugin provides a visual form builder to " -"customize WordPress edit screens with extra fields, and an intuitive API to " -"display custom field values in any theme template file." -msgstr "" - -#: includes/admin/admin.php:127 includes/admin/admin.php:129 -msgid "Overview" -msgstr "Prezentare generală" - -#: includes/locations.php:36 -msgid "Location type \"%s\" is already registered." -msgstr "Tipul de locație „%s” este deja înregistrat." - -#: includes/locations.php:25 -msgid "Class \"%s\" does not exist." -msgstr "Clasa „%s” nu există." - -#: includes/ajax/class-acf-ajax.php:157 -msgid "Invalid nonce." -msgstr "Nunicul nu este valid." - -#: includes/fields/class-acf-field-user.php:375 -msgid "Error loading field." -msgstr "Eroare la încărcarea câmpului." - -#: assets/build/js/acf-input.js:2750 assets/build/js/acf-input.js:2819 -#: assets/build/js/acf-input.js:2926 assets/build/js/acf-input.js:3000 -msgid "Location not found: %s" -msgstr "Nu am găsit locația: %s" - -#: includes/forms/form-user.php:353 -msgid "Error: %s" -msgstr "Eroare: %s" - -#: includes/locations/class-acf-location-widget.php:22 -msgid "Widget" -msgstr "Piesă" - -#: includes/locations/class-acf-location-user-role.php:24 -msgid "User Role" -msgstr "Rol utilizator" - -#: includes/locations/class-acf-location-comment.php:22 -msgid "Comment" -msgstr "Comentariu" - -#: includes/locations/class-acf-location-post-format.php:22 -msgid "Post Format" -msgstr "Format de articol" - -#: includes/locations/class-acf-location-nav-menu-item.php:22 -msgid "Menu Item" -msgstr "Element de meniu" - -#: includes/locations/class-acf-location-post-status.php:22 -msgid "Post Status" -msgstr "Stare articol" - -#: includes/acf-wp-functions.php:74 -#: includes/locations/class-acf-location-nav-menu.php:89 -msgid "Menus" -msgstr "Meniuri" - -#: includes/locations/class-acf-location-nav-menu.php:80 -msgid "Menu Locations" -msgstr "Locații pentru meniuri" - -#: includes/locations/class-acf-location-nav-menu.php:22 -msgid "Menu" -msgstr "Meniu" - -#: includes/locations/class-acf-location-post-taxonomy.php:22 -msgid "Post Taxonomy" -msgstr "Taxonomie articol" - -#: includes/locations/class-acf-location-page-type.php:114 -msgid "Child Page (has parent)" -msgstr "Pagină copil (are părinte)" - -#: includes/locations/class-acf-location-page-type.php:113 -msgid "Parent Page (has children)" -msgstr "Pagină părinte (are copii)" - -#: includes/locations/class-acf-location-page-type.php:112 -msgid "Top Level Page (no parent)" -msgstr "Pagină de primul nivel (fără părinte)" - -#: includes/locations/class-acf-location-page-type.php:111 -msgid "Posts Page" -msgstr "Pagină articole" - -#: includes/locations/class-acf-location-page-type.php:110 -msgid "Front Page" -msgstr "Pagina din față" - -#: includes/locations/class-acf-location-page-type.php:22 -msgid "Page Type" -msgstr "Tip de pagină" - -#: includes/locations/class-acf-location-current-user.php:73 -msgid "Viewing back end" -msgstr "Vizualizare în partea administrativă" - -#: includes/locations/class-acf-location-current-user.php:72 -msgid "Viewing front end" -msgstr "Vizualizare în partea din față" - -#: includes/locations/class-acf-location-current-user.php:71 -msgid "Logged in" -msgstr "Autentificat" - -#: includes/locations/class-acf-location-current-user.php:22 -msgid "Current User" -msgstr "Utilizator curent" - -#: includes/locations/class-acf-location-page-template.php:22 -msgid "Page Template" -msgstr "Șablon de pagini" - -#: includes/locations/class-acf-location-user-form.php:74 -msgid "Register" -msgstr "Înregistrează" - -#: includes/locations/class-acf-location-user-form.php:73 -msgid "Add / Edit" -msgstr "Adaugă/editează" - -#: includes/locations/class-acf-location-user-form.php:22 -msgid "User Form" -msgstr "" - -#: includes/locations/class-acf-location-page-parent.php:22 -msgid "Page Parent" -msgstr "Părinte pagină" - -#: includes/locations/class-acf-location-current-user-role.php:77 -msgid "Super Admin" -msgstr "Super-administrator" - -#: includes/locations/class-acf-location-current-user-role.php:22 -msgid "Current User Role" -msgstr "Rol utilizator curent" - -#: includes/locations/class-acf-location-page-template.php:73 -#: includes/locations/class-acf-location-post-template.php:85 -msgid "Default Template" -msgstr "Șablon implicit" - -#: includes/locations/class-acf-location-post-template.php:22 -msgid "Post Template" -msgstr "Șablon de articole" - -#: includes/locations/class-acf-location-post-category.php:22 -msgid "Post Category" -msgstr "Categorie de articole" - -#: includes/locations/class-acf-location-attachment.php:84 -msgid "All %s formats" -msgstr "Toate formatele %s" - -#: includes/locations/class-acf-location-attachment.php:22 -msgid "Attachment" -msgstr "Atașament" - -#: includes/validation.php:366 -msgid "%s value is required" -msgstr "Valoarea %s este obligatorie" - -#: includes/admin/views/acf-field-group/conditional-logic.php:59 -msgid "Show this field if" -msgstr "Arată acest câmp dacă" - -#: includes/admin/views/acf-field-group/conditional-logic.php:26 -#: includes/admin/views/acf-field-group/field.php:109 includes/fields.php:411 -msgid "Conditional Logic" -msgstr "Condiționalitate logică" - -#: includes/admin/views/acf-field-group/conditional-logic.php:156 -#: includes/admin/views/acf-field-group/location-rule.php:92 -msgid "and" -msgstr "și" - -#: includes/admin/post-types/admin-field-groups.php:123 -#: includes/admin/post-types/admin-post-types.php:143 -#: includes/admin/post-types/admin-taxonomies.php:143 -msgid "Local JSON" -msgstr "JSON local" - -#: includes/admin/views/acf-field-group/pro-features.php:46 -msgid "Clone Field" -msgstr "Clonează câmpul" - -#: includes/admin/views/upgrade/notice.php:30 -msgid "" -"Please also check all premium add-ons (%s) are updated to the latest version." -msgstr "" - -#: includes/admin/views/upgrade/notice.php:28 -msgid "" -"This version contains improvements to your database and requires an upgrade." -msgstr "" - -#: includes/admin/views/upgrade/notice.php:28 -msgid "Thank you for updating to %1$s v%2$s!" -msgstr "" - -#: includes/admin/views/upgrade/notice.php:27 -msgid "Database Upgrade Required" -msgstr "Este necesară actualizarea bazei de date" - -#: includes/admin/post-types/admin-field-group.php:141 -#: includes/admin/views/upgrade/notice.php:18 -msgid "Options Page" -msgstr "Pagină opțiuni" - -#: includes/admin/views/upgrade/notice.php:15 includes/fields.php:462 -msgid "Gallery" -msgstr "Galerie" - -#: includes/admin/views/upgrade/notice.php:12 includes/fields.php:452 -msgid "Flexible Content" -msgstr "Conținut flexibil" - -#: pro/fields/class-acf-field-repeater.php:29 -msgid "Repeater" -msgstr "Repeater" - -#: includes/admin/views/tools/tools.php:24 -msgid "Back to all tools" -msgstr "Înapoi la toate uneltele" - -#: includes/admin/views/acf-field-group/options.php:195 -msgid "" -"If multiple field groups appear on an edit screen, the first field group's " -"options will be used (the one with the lowest order number)" -msgstr "" -"Dacă pe un ecran de editare apar mai multe grupuri de câmpuri, vor fi " -"folosite opțiunile pentru primul grup de câmpuri (cel care are numărul de " -"ordine cel mai mic)" - -#: includes/admin/views/acf-field-group/options.php:195 -msgid "Select items to hide them from the edit screen." -msgstr "" -"Selectează elementele pe care le ascunzi în ecranul de editare." - -#: includes/admin/views/acf-field-group/options.php:194 -msgid "Hide on screen" -msgstr "Ascunde pe ecran" - -#: includes/admin/views/acf-field-group/options.php:186 -msgid "Send Trackbacks" -msgstr "Trimite trackback-uri" - -#: includes/admin/post-types/admin-taxonomy.php:128 -#: includes/admin/views/acf-field-group/options.php:185 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:159 -#: assets/build/js/acf-internal-post-type.js:180 -#: assets/build/js/acf-internal-post-type.js:254 -msgid "Tags" -msgstr "Etichete" - -#: includes/admin/post-types/admin-taxonomy.php:130 -#: includes/admin/views/acf-field-group/options.php:184 -#: assets/build/js/acf-internal-post-type.js:183 -#: assets/build/js/acf-internal-post-type.js:257 -msgid "Categories" -msgstr "Categorii" - -#: includes/admin/views/acf-field-group/options.php:182 -#: includes/admin/views/acf-post-type/advanced-settings.php:28 -msgid "Page Attributes" -msgstr "Atribute pagină" - -#: includes/admin/views/acf-field-group/options.php:181 -msgid "Format" -msgstr "Format" - -#: includes/admin/views/acf-field-group/options.php:180 -#: includes/admin/views/acf-post-type/advanced-settings.php:22 -msgid "Author" -msgstr "Autor" - -#: includes/admin/views/acf-field-group/options.php:179 -msgid "Slug" -msgstr "Descriptor" - -#: includes/admin/views/acf-field-group/options.php:178 -#: includes/admin/views/acf-post-type/advanced-settings.php:27 -msgid "Revisions" -msgstr "Revizii" - -#: includes/acf-wp-functions.php:66 -#: includes/admin/views/acf-field-group/options.php:177 -#: includes/admin/views/acf-post-type/advanced-settings.php:23 -msgid "Comments" -msgstr "Comentarii" - -#: includes/admin/views/acf-field-group/options.php:176 -msgid "Discussion" -msgstr "Discuții" - -#: includes/admin/views/acf-field-group/options.php:174 -#: includes/admin/views/acf-post-type/advanced-settings.php:26 -msgid "Excerpt" -msgstr "Rezumat" - -#: includes/admin/views/acf-field-group/options.php:173 -msgid "Content Editor" -msgstr "Editor de conținut" - -#: includes/admin/views/acf-field-group/options.php:172 -msgid "Permalink" -msgstr "Legătură permanentă" - -#: includes/admin/views/acf-field-group/options.php:250 -msgid "Shown in field group list" -msgstr "" - -#: includes/admin/views/acf-field-group/options.php:157 -msgid "Field groups with a lower order will appear first" -msgstr "" - -#: includes/admin/views/acf-field-group/options.php:156 -msgid "Order No." -msgstr "" - -#: includes/admin/views/acf-field-group/options.php:147 -msgid "Below fields" -msgstr "Sub câmpuri" - -#: includes/admin/views/acf-field-group/options.php:146 -msgid "Below labels" -msgstr "Sub etichete" - -#: includes/admin/views/acf-field-group/options.php:139 -msgid "Instruction Placement" -msgstr "Plasare instrucțiuni" - -#: includes/admin/views/acf-field-group/options.php:122 -msgid "Label Placement" -msgstr "Plasare etichetă" - -#: includes/admin/views/acf-field-group/options.php:110 -msgid "Side" -msgstr "Lateral" - -#: includes/admin/views/acf-field-group/options.php:109 -msgid "Normal (after content)" -msgstr "Normal (după conținut)" - -#: includes/admin/views/acf-field-group/options.php:108 -msgid "High (after title)" -msgstr "" - -#: includes/admin/views/acf-field-group/options.php:101 -msgid "Position" -msgstr "Poziție" - -#: includes/admin/views/acf-field-group/options.php:92 -msgid "Seamless (no metabox)" -msgstr "Omogen (fără casetă meta)" - -#: includes/admin/views/acf-field-group/options.php:91 -msgid "Standard (WP metabox)" -msgstr "Standard (casetă meta WP)" - -#: includes/admin/views/acf-field-group/options.php:84 -msgid "Style" -msgstr "Stil" - -#: includes/admin/views/acf-field-group/fields.php:55 -msgid "Type" -msgstr "Tip" - -#: includes/admin/post-types/admin-field-groups.php:117 -#: includes/admin/post-types/admin-post-types.php:136 -#: includes/admin/post-types/admin-taxonomies.php:136 -#: includes/admin/views/acf-field-group/fields.php:54 -msgid "Key" -msgstr "Cheie" - -#. translators: Hidden accessibility text for the positional order number of -#. the field. -#: includes/admin/views/acf-field-group/fields.php:48 -msgid "Order" -msgstr "Ordine" - -#: includes/admin/views/acf-field-group/field.php:322 -msgid "Close Field" -msgstr "Închide câmpul" - -#: includes/admin/views/acf-field-group/field.php:253 -msgid "id" -msgstr "ID" - -#: includes/admin/views/acf-field-group/field.php:237 -msgid "class" -msgstr "clasă" - -#: includes/admin/views/acf-field-group/field.php:279 -msgid "width" -msgstr "lățime" - -#: includes/admin/views/acf-field-group/field.php:273 -msgid "Wrapper Attributes" -msgstr "Atribute învelitoare" - -#: includes/admin/views/acf-field-group/field.php:196 -msgid "Required" -msgstr "Obligatoriu" - -#: includes/admin/views/acf-field-group/field.php:221 -msgid "Instructions for authors. Shown when submitting data" -msgstr "Instrucțiuni pentru autori. Sunt arătate când se trimit date" - -#: includes/admin/views/acf-field-group/field.php:220 -msgid "Instructions" -msgstr "Instrucțiuni" - -#: includes/admin/views/acf-field-group/field.php:129 -msgid "Field Type" -msgstr "Tip de câmp" - -#: includes/admin/views/acf-field-group/field.php:170 -msgid "Single word, no spaces. Underscores and dashes allowed" -msgstr "Un singur cuvânt, fără spații. Sunt permise liniuțe-jos și cratime" - -#: includes/admin/views/acf-field-group/field.php:169 -msgid "Field Name" -msgstr "Nume câmp" - -#: includes/admin/views/acf-field-group/field.php:157 -msgid "This is the name which will appear on the EDIT page" -msgstr "Acesta este numele care va apărea în pagina EDITEAZĂ" - -#: includes/admin/views/acf-field-group/field.php:156 -#: includes/admin/views/browse-fields-modal.php:59 -msgid "Field Label" -msgstr "Etichetă câmp" - -#: includes/admin/views/acf-field-group/field.php:81 -msgid "Delete" -msgstr "Șterge" - -#: includes/admin/views/acf-field-group/field.php:81 -msgid "Delete field" -msgstr "Șterge câmpul" - -#: includes/admin/views/acf-field-group/field.php:79 -msgid "Move" -msgstr "Mută" - -#: includes/admin/views/acf-field-group/field.php:79 -msgid "Move field to another group" -msgstr "Mută câmpul în alt grup" - -#: includes/admin/views/acf-field-group/field.php:77 -msgid "Duplicate field" -msgstr "" - -#: includes/admin/views/acf-field-group/field.php:73 -#: includes/admin/views/acf-field-group/field.php:76 -msgid "Edit field" -msgstr "Editează câmpul" - -#: includes/admin/views/acf-field-group/field.php:69 -msgid "Drag to reorder" -msgstr "Trage pentru a reordona" - -#: includes/admin/post-types/admin-field-group.php:103 -#: includes/admin/views/acf-field-group/location-group.php:3 -#: assets/build/js/acf-field-group.js:2347 -#: assets/build/js/acf-field-group.js:2763 -msgid "Show this field group if" -msgstr "Arată acest grup de câmpuri dacă" - -#: includes/admin/views/upgrade/upgrade.php:94 -#: includes/ajax/class-acf-ajax-upgrade.php:34 -msgid "No updates available." -msgstr "Nu este disponibilă nicio actualizare." - -#: includes/admin/views/upgrade/upgrade.php:33 -msgid "Database upgrade complete. See what's new" -msgstr "" - -#: includes/admin/views/upgrade/upgrade.php:30 -msgid "Reading upgrade tasks..." -msgstr "" - -#: includes/admin/views/upgrade/network.php:165 -#: includes/admin/views/upgrade/upgrade.php:65 -msgid "Upgrade failed." -msgstr "Actualizarea a eșuat." - -#: includes/admin/views/upgrade/network.php:162 -msgid "Upgrade complete." -msgstr "Actualizarea este finalizată." - -#: includes/admin/views/upgrade/network.php:148 -#: includes/admin/views/upgrade/upgrade.php:31 -msgid "Upgrading data to version %s" -msgstr "" - -#: includes/admin/views/upgrade/network.php:121 -#: includes/admin/views/upgrade/notice.php:44 -msgid "" -"It is strongly recommended that you backup your database before proceeding. " -"Are you sure you wish to run the updater now?" -msgstr "" - -#: includes/admin/views/upgrade/network.php:117 -msgid "Please select at least one site to upgrade." -msgstr "Te rog selectează cel puțin un site pentru actualizare." - -#: includes/admin/views/upgrade/network.php:97 -msgid "" -"Database Upgrade complete. Return to network dashboard" -msgstr "" - -#: includes/admin/views/upgrade/network.php:80 -msgid "Site is up to date" -msgstr "Site-ul este actualizat" - -#: includes/admin/views/upgrade/network.php:78 -msgid "Site requires database upgrade from %1$s to %2$s" -msgstr "Trebuie actualizată baza de date a site-ului de %1$s la %2$s" - -#: includes/admin/views/upgrade/network.php:36 -#: includes/admin/views/upgrade/network.php:47 -msgid "Site" -msgstr "Site" - -#: includes/admin/views/upgrade/network.php:26 -#: includes/admin/views/upgrade/network.php:27 -#: includes/admin/views/upgrade/network.php:96 -msgid "Upgrade Sites" -msgstr "Actualizează site-urile" - -#: includes/admin/views/upgrade/network.php:26 -msgid "" -"The following sites require a DB upgrade. Check the ones you want to update " -"and then click %s." -msgstr "" - -#: includes/admin/views/acf-field-group/conditional-logic.php:171 -#: includes/admin/views/acf-field-group/locations.php:38 -msgid "Add rule group" -msgstr "Adaugă un grup de reguli" - -#: includes/admin/views/acf-field-group/locations.php:10 -msgid "" -"Create a set of rules to determine which edit screens will use these " -"advanced custom fields" -msgstr "" -"Creează un set de reguli pentru a stabili ecranele de editare care vor " -"folosi aceste câmpuri personalizate avansate" - -#: includes/admin/views/acf-field-group/locations.php:9 -msgid "Rules" -msgstr "Reguli" - -#: includes/admin/tools/class-acf-admin-tool-export.php:510 -msgid "Copied" -msgstr "Copiat" - -#: includes/admin/tools/class-acf-admin-tool-export.php:486 -msgid "Copy to clipboard" -msgstr "Copiază în clipboard" - -#: includes/admin/tools/class-acf-admin-tool-export.php:385 -msgid "" -"Select the items you would like to export and then select your export " -"method. Export As JSON to export to a .json file which you can then import " -"to another ACF installation. Generate PHP to export to PHP code which you " -"can place in your theme." -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:233 -msgid "Select Field Groups" -msgstr "Selectează grupurile de câmpuri" - -#: includes/admin/tools/class-acf-admin-tool-export.php:96 -#: includes/admin/tools/class-acf-admin-tool-export.php:131 -msgid "No field groups selected" -msgstr "Nu ai selectat niciun grup de câmpuri" - -#: includes/admin/tools/class-acf-admin-tool-export.php:39 -#: includes/admin/tools/class-acf-admin-tool-export.php:393 -#: includes/admin/tools/class-acf-admin-tool-export.php:421 -msgid "Generate PHP" -msgstr "Generează PHP" - -#: includes/admin/tools/class-acf-admin-tool-export.php:35 -msgid "Export Field Groups" -msgstr "Exportă grupurile de câmpuri" - -#: includes/admin/tools/class-acf-admin-tool-import.php:177 -msgid "Import file empty" -msgstr "Fișierul importat este gol" - -#: includes/admin/tools/class-acf-admin-tool-import.php:168 -msgid "Incorrect file type" -msgstr "Tip de fișier incorect" - -#: includes/admin/tools/class-acf-admin-tool-import.php:163 -msgid "Error uploading file. Please try again" -msgstr "Eroare la încărcarea fișierului. Te rog încearcă din nou" - -#: includes/admin/tools/class-acf-admin-tool-import.php:50 -msgid "" -"Select the Advanced Custom Fields JSON file you would like to import. When " -"you click the import button below, ACF will import the items in that file." -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:27 -msgid "Import Field Groups" -msgstr "Importă grupuri de câmpuri" - -#: includes/admin/admin-internal-post-type-list.php:401 -msgid "Sync" -msgstr "Sincronizează" - -#: includes/admin/admin-internal-post-type-list.php:858 -msgid "Select %s" -msgstr "Selectează %s" - -#: includes/admin/admin-internal-post-type-list.php:442 -#: includes/admin/admin-internal-post-type-list.php:474 -#: includes/admin/views/acf-field-group/field.php:77 -msgid "Duplicate" -msgstr "Fă duplicat" - -#: includes/admin/admin-internal-post-type-list.php:442 -msgid "Duplicate this item" -msgstr "Fă un duplicat al acestui element" - -#: includes/admin/views/acf-post-type/advanced-settings.php:41 -msgid "Supports" -msgstr "" - -#: includes/admin/admin.php:261 includes/admin/views/browse-fields-modal.php:92 -msgid "Documentation" -msgstr "Documentație" - -#: includes/admin/post-types/admin-field-groups.php:116 -#: includes/admin/post-types/admin-post-types.php:135 -#: includes/admin/post-types/admin-taxonomies.php:135 -#: includes/admin/views/acf-field-group/options.php:249 -#: includes/admin/views/acf-post-type/advanced-settings.php:62 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:114 -#: includes/admin/views/upgrade/network.php:38 -#: includes/admin/views/upgrade/network.php:49 -msgid "Description" -msgstr "Descriere" - -#: includes/admin/admin-internal-post-type-list.php:398 -#: includes/admin/admin-internal-post-type-list.php:747 -msgid "Sync available" -msgstr "Sincronizarea este disponibilă" - -#. translators: %s number of field groups synchronized -#: includes/admin/post-types/admin-field-groups.php:381 -msgid "Field group synchronized." -msgid_plural "%s field groups synchronized." -msgstr[0] "Am sincronizat grupul de câmpuri." -msgstr[1] "Am sincronizat %s grupuri de câmpuri." -msgstr[2] "Am sincronizat %s de grupuri de câmpuri." - -#. translators: %s number of field groups duplicated -#: includes/admin/post-types/admin-field-groups.php:374 -msgid "Field group duplicated." -msgid_plural "%s field groups duplicated." -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: includes/admin/admin-internal-post-type-list.php:137 -msgid "Active (%s)" -msgid_plural "Active (%s)" -msgstr[0] "Activ (%s)" -msgstr[1] "Active (%s)" -msgstr[2] "Active (%s)" - -#: includes/admin/admin-upgrade.php:254 -msgid "Review sites & upgrade" -msgstr "" - -#: includes/admin/admin-upgrade.php:59 includes/admin/admin-upgrade.php:93 -#: includes/admin/admin-upgrade.php:94 includes/admin/admin-upgrade.php:230 -#: includes/admin/views/upgrade/network.php:24 -#: includes/admin/views/upgrade/upgrade.php:26 -msgid "Upgrade Database" -msgstr "Actualizează baza de date" - -#: includes/admin/views/acf-field-group/options.php:175 -#: includes/admin/views/acf-post-type/advanced-settings.php:30 -msgid "Custom Fields" -msgstr "Câmpuri personalizate" - -#: includes/admin/post-types/admin-field-group.php:616 -msgid "Move Field" -msgstr "Mută câmpul" - -#: includes/admin/post-types/admin-field-group.php:605 -#: includes/admin/post-types/admin-field-group.php:609 -msgid "Please select the destination for this field" -msgstr "Te rog selectează destinația pentru acest câmp" - -#. translators: Confirmation message once a field has been moved to a different -#. field group. -#: includes/admin/post-types/admin-field-group.php:567 -msgid "The %1$s field can now be found in the %2$s field group" -msgstr "Câmpul %1$s poate fi găsit acum în grupul de câmpuri %2$s" - -#: includes/admin/post-types/admin-field-group.php:564 -msgid "Move Complete." -msgstr "" - -#: includes/admin/views/acf-field-group/field.php:39 -#: includes/admin/views/acf-field-group/options.php:217 -#: includes/admin/views/acf-post-type/advanced-settings.php:78 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:130 -msgid "Active" -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:266 -msgid "Field Keys" -msgstr "Chei câmp" - -#: includes/admin/post-types/admin-field-group.php:164 -#: includes/admin/tools/class-acf-admin-tool-export.php:342 -msgid "Settings" -msgstr "Setări" - -#: includes/admin/post-types/admin-field-groups.php:118 -msgid "Location" -msgstr "Locație" - -#: includes/admin/post-types/admin-field-group.php:104 -#: assets/build/js/acf-input.js:983 assets/build/js/acf-input.js:1075 -msgid "Null" -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:101 -#: includes/class-acf-internal-post-type.php:730 -#: includes/post-types/class-acf-field-group.php:345 -#: assets/build/js/acf-field-group.js:1510 -#: assets/build/js/acf-field-group.js:1821 -msgid "copy" -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:100 -#: assets/build/js/acf-field-group.js:623 -#: assets/build/js/acf-field-group.js:778 -msgid "(this field)" -msgstr "(acest câmp)" - -#: includes/admin/post-types/admin-field-group.php:98 -#: assets/build/js/acf-input.js:918 assets/build/js/acf-input.js:943 -#: assets/build/js/acf-input.js:1002 assets/build/js/acf-input.js:1030 -msgid "Checked" -msgstr "Bifat" - -#: includes/admin/post-types/admin-field-group.php:94 -#: assets/build/js/acf-field-group.js:1615 -#: assets/build/js/acf-field-group.js:1933 -msgid "Move Custom Field" -msgstr "Mută câmpul personalizat" - -#: includes/admin/post-types/admin-field-group.php:93 -#: assets/build/js/acf-field-group.js:649 -#: assets/build/js/acf-field-group.js:804 -msgid "No toggle fields available" -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:91 -msgid "Field group title is required" -msgstr "Titlul grupului de câmpuri este obligatoriu" - -#: includes/admin/post-types/admin-field-group.php:90 -#: assets/build/js/acf-field-group.js:1604 -#: assets/build/js/acf-field-group.js:1919 -msgid "This field cannot be moved until its changes have been saved" -msgstr "Acest câmp nu poate fi mutat până când nu îi salvezi modificările" - -#: includes/admin/post-types/admin-field-group.php:89 -#: assets/build/js/acf-field-group.js:1414 -#: assets/build/js/acf-field-group.js:1716 -msgid "The string \"field_\" may not be used at the start of a field name" -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:71 -msgid "Field group draft updated." -msgstr "Am actualizat ciorna grupului de câmpuri." - -#: includes/admin/post-types/admin-field-group.php:70 -msgid "Field group scheduled for." -msgstr "Am programat grupul de câmpuri." - -#: includes/admin/post-types/admin-field-group.php:69 -msgid "Field group submitted." -msgstr "Am trimis grupul de câmpuri." - -#: includes/admin/post-types/admin-field-group.php:68 -msgid "Field group saved." -msgstr "Am salvat grupul de câmpuri." - -#: includes/admin/post-types/admin-field-group.php:67 -msgid "Field group published." -msgstr "Am publicat grupul de câmpuri." - -#: includes/admin/post-types/admin-field-group.php:64 -msgid "Field group deleted." -msgstr "Am șters grupul de câmpuri." - -#: includes/admin/post-types/admin-field-group.php:62 -#: includes/admin/post-types/admin-field-group.php:63 -#: includes/admin/post-types/admin-field-group.php:65 -msgid "Field group updated." -msgstr "Am actualizat grupul de câmpuri." - -#: includes/admin/admin-tools.php:118 -#: includes/admin/views/global/navigation.php:246 -#: includes/admin/views/tools/tools.php:21 -msgid "Tools" -msgstr "Unelte" - -#: includes/locations/abstract-acf-location.php:106 -msgid "is not equal to" -msgstr "nu este egal cu" - -#: includes/locations/abstract-acf-location.php:105 -msgid "is equal to" -msgstr "este egal cu" - -#: includes/locations.php:102 -msgid "Forms" -msgstr "Formulare" - -#: includes/admin/post-types/admin-post-type.php:127 includes/locations.php:100 -#: includes/locations/class-acf-location-page.php:22 -#: assets/build/js/acf-internal-post-type.js:175 -#: assets/build/js/acf-internal-post-type.js:249 -msgid "Page" -msgstr "Pagină" - -#: includes/admin/post-types/admin-post-type.php:125 includes/locations.php:99 -#: includes/locations/class-acf-location-post.php:22 -#: assets/build/js/acf-internal-post-type.js:172 -#: assets/build/js/acf-internal-post-type.js:246 -msgid "Post" -msgstr "Articol" - -#: includes/fields.php:354 -msgid "Relational" -msgstr "" - -#: includes/fields.php:353 -msgid "Choice" -msgstr "" - -#: includes/fields.php:351 -msgid "Basic" -msgstr "De bază" - -#: includes/fields.php:320 -msgid "Unknown" -msgstr "" - -#: includes/fields.php:320 -msgid "Field type does not exist" -msgstr "Tipul de câmp nu există" - -#: includes/forms/form-front.php:236 -msgid "Spam Detected" -msgstr "Am detectat spam" - -#: includes/forms/form-front.php:107 -msgid "Post updated" -msgstr "Am actualizat articolul" - -#: includes/forms/form-front.php:106 -msgid "Update" -msgstr "Actualizează" - -#: includes/forms/form-front.php:57 -msgid "Validate Email" -msgstr "Validează emailul" - -#: includes/fields.php:352 includes/forms/form-front.php:49 -msgid "Content" -msgstr "Conținut" - -#: includes/admin/views/acf-post-type/advanced-settings.php:21 -#: includes/forms/form-front.php:40 -msgid "Title" -msgstr "Titlu" - -#: includes/assets.php:372 includes/forms/form-comment.php:160 -#: assets/build/js/acf-input.js:7382 assets/build/js/acf-input.js:7968 -msgid "Edit field group" -msgstr "Editează grupul de câmpuri" - -#: includes/admin/post-types/admin-field-group.php:117 -#: assets/build/js/acf-input.js:1125 assets/build/js/acf-input.js:1230 -msgid "Selection is less than" -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:116 -#: assets/build/js/acf-input.js:1106 assets/build/js/acf-input.js:1202 -msgid "Selection is greater than" -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:115 -#: assets/build/js/acf-input.js:1075 assets/build/js/acf-input.js:1170 -msgid "Value is less than" -msgstr "Valoarea este mai mică decât" - -#: includes/admin/post-types/admin-field-group.php:114 -#: assets/build/js/acf-input.js:1045 assets/build/js/acf-input.js:1139 -msgid "Value is greater than" -msgstr "Valoarea este mai mare decât" - -#: includes/admin/post-types/admin-field-group.php:113 -#: assets/build/js/acf-input.js:888 assets/build/js/acf-input.js:960 -msgid "Value contains" -msgstr "Valoarea conține" - -#: includes/admin/post-types/admin-field-group.php:112 -#: assets/build/js/acf-input.js:862 assets/build/js/acf-input.js:926 -msgid "Value matches pattern" -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:111 -#: assets/build/js/acf-input.js:840 assets/build/js/acf-input.js:1023 -#: assets/build/js/acf-input.js:903 assets/build/js/acf-input.js:1116 -msgid "Value is not equal to" -msgstr "Valoarea nu este egală cu" - -#: includes/admin/post-types/admin-field-group.php:110 -#: assets/build/js/acf-input.js:810 assets/build/js/acf-input.js:964 -#: assets/build/js/acf-input.js:864 assets/build/js/acf-input.js:1053 -msgid "Value is equal to" -msgstr "Valoarea este egală cu" - -#: includes/admin/post-types/admin-field-group.php:109 -#: assets/build/js/acf-input.js:788 assets/build/js/acf-input.js:841 -msgid "Has no value" -msgstr "Nu are o valoare" - -#: includes/admin/post-types/admin-field-group.php:108 -#: assets/build/js/acf-input.js:758 assets/build/js/acf-input.js:783 -msgid "Has any value" -msgstr "Are orice valoare" - -#: includes/admin/admin-internal-post-type.php:345 -#: includes/admin/views/browse-fields-modal.php:62 includes/assets.php:353 -#: assets/build/js/acf.js:1564 assets/build/js/acf.js:1658 -msgid "Cancel" -msgstr "Anulează" - -#: includes/assets.php:349 assets/build/js/acf.js:1738 -#: assets/build/js/acf.js:1855 -msgid "Are you sure?" -msgstr "Sigur?" - -#: includes/assets.php:369 assets/build/js/acf-input.js:9442 -#: assets/build/js/acf-input.js:10294 -msgid "%d fields require attention" -msgstr "%d câmpuri necesită atenție" - -#: includes/assets.php:368 assets/build/js/acf-input.js:9440 -#: assets/build/js/acf-input.js:10290 -msgid "1 field requires attention" -msgstr "Un câmp necesită atenție" - -#: includes/assets.php:367 includes/validation.php:288 -#: includes/validation.php:298 assets/build/js/acf-input.js:9435 -#: assets/build/js/acf-input.js:10285 -msgid "Validation failed" -msgstr "Validarea a eșuat" - -#: includes/assets.php:366 assets/build/js/acf-input.js:9603 -#: assets/build/js/acf-input.js:10473 -msgid "Validation successful" -msgstr "Validare făcută cu succes" - -#: includes/media.php:54 assets/build/js/acf-input.js:7210 -#: assets/build/js/acf-input.js:7772 -msgid "Restricted" -msgstr "" - -#: includes/media.php:53 assets/build/js/acf-input.js:7025 -#: assets/build/js/acf-input.js:7536 -msgid "Collapse Details" -msgstr "Restrânge detaliile" - -#: includes/media.php:52 assets/build/js/acf-input.js:7025 -#: assets/build/js/acf-input.js:7533 -msgid "Expand Details" -msgstr "Extinde detaliile" - -#: includes/admin/views/acf-post-type/advanced-settings.php:465 -#: includes/media.php:51 assets/build/js/acf-input.js:6892 -#: assets/build/js/acf-input.js:7381 -msgid "Uploaded to this post" -msgstr "" - -#: includes/media.php:50 assets/build/js/acf-input.js:6931 -#: assets/build/js/acf-input.js:7420 -msgctxt "verb" -msgid "Update" -msgstr "Actualizează" - -#: includes/media.php:49 -msgctxt "verb" -msgid "Edit" -msgstr "Editează" - -#: includes/assets.php:363 assets/build/js/acf-input.js:9212 -#: assets/build/js/acf-input.js:10056 -msgid "The changes you made will be lost if you navigate away from this page" -msgstr "" -"Modificările pe care le-ai făcut se vor pierde dacă părăsești această pagină" - -#: includes/api/api-helpers.php:3395 -msgid "File type must be %s." -msgstr "Tipul de fișier trebuie să fie %s." - -#: includes/admin/post-types/admin-field-group.php:102 -#: includes/admin/views/acf-field-group/conditional-logic.php:59 -#: includes/admin/views/acf-field-group/conditional-logic.php:169 -#: includes/admin/views/acf-field-group/location-group.php:3 -#: includes/admin/views/acf-field-group/locations.php:36 -#: includes/api/api-helpers.php:3391 assets/build/js/acf-field-group.js:771 -#: assets/build/js/acf-field-group.js:2385 -#: assets/build/js/acf-field-group.js:933 -#: assets/build/js/acf-field-group.js:2807 -msgid "or" -msgstr "sau" - -#: includes/api/api-helpers.php:3364 -msgid "File size must not exceed %s." -msgstr "Dimensiunea fișierului nu trebuie să depășească %s." - -#: includes/api/api-helpers.php:3359 -msgid "File size must be at least %s." -msgstr "Dimensiunea fișierului trebuie să aibă cel puțin %s." - -#: includes/api/api-helpers.php:3344 -msgid "Image height must not exceed %dpx." -msgstr "Înălțimea imaginii nu trebuie să depășească %d px." - -#: includes/api/api-helpers.php:3339 -msgid "Image height must be at least %dpx." -msgstr "Înălțimea imaginii trebuie să fie de cel puțin %d px." - -#: includes/api/api-helpers.php:3325 -msgid "Image width must not exceed %dpx." -msgstr "Lățimea imaginii nu trebuie să depășească %d px." - -#: includes/api/api-helpers.php:3320 -msgid "Image width must be at least %dpx." -msgstr "Lățimea imaginii trebuie să aibă cel puțin %d px." - -#: includes/api/api-helpers.php:1561 includes/api/api-term.php:147 -msgid "(no title)" -msgstr "(fără titlu)" - -#: includes/api/api-helpers.php:853 -msgid "Full Size" -msgstr "Dimensiune completă" - -#: includes/api/api-helpers.php:812 -msgid "Large" -msgstr "Mare" - -#: includes/api/api-helpers.php:811 -msgid "Medium" -msgstr "Medie" - -#: includes/api/api-helpers.php:810 -msgid "Thumbnail" -msgstr "Miniatură" - -#: includes/acf-field-functions.php:854 -#: includes/admin/post-types/admin-field-group.php:99 -#: assets/build/js/acf-field-group.js:1077 -#: assets/build/js/acf-field-group.js:1260 -msgid "(no label)" -msgstr "(fără etichetă)" - -#: includes/fields/class-acf-field-textarea.php:145 -msgid "Sets the textarea height" -msgstr "Setează înălțimea zonei text" - -#: includes/fields/class-acf-field-textarea.php:144 -msgid "Rows" -msgstr "Rânduri" - -#: includes/fields/class-acf-field-textarea.php:25 -msgid "Text Area" -msgstr "Zonă text" - -#: includes/fields/class-acf-field-checkbox.php:451 -msgid "Prepend an extra checkbox to toggle all choices" -msgstr "" - -#: includes/fields/class-acf-field-checkbox.php:413 -msgid "Save 'custom' values to the field's choices" -msgstr "" - -#: includes/fields/class-acf-field-checkbox.php:402 -msgid "Allow 'custom' values to be added" -msgstr "" - -#: includes/fields/class-acf-field-checkbox.php:38 -msgid "Add new choice" -msgstr "" - -#: includes/fields/class-acf-field-checkbox.php:174 -msgid "Toggle All" -msgstr "" - -#: includes/fields/class-acf-field-page_link.php:506 -msgid "Allow Archives URLs" -msgstr "" - -#: includes/fields/class-acf-field-page_link.php:179 -msgid "Archives" -msgstr "Arhive" - -#: includes/fields/class-acf-field-page_link.php:25 -msgid "Page Link" -msgstr "Legătură la pagină" - -#: includes/fields/class-acf-field-taxonomy.php:943 -#: includes/locations/class-acf-location-user-form.php:72 -msgid "Add" -msgstr "Adaugă" - -#: includes/admin/views/acf-field-group/fields.php:53 -#: includes/fields/class-acf-field-taxonomy.php:908 -msgid "Name" -msgstr "Nume" - -#: includes/fields/class-acf-field-taxonomy.php:892 -msgid "%s added" -msgstr "Am adăugat %s" - -#: includes/fields/class-acf-field-taxonomy.php:856 -msgid "%s already exists" -msgstr "" - -#: includes/fields/class-acf-field-taxonomy.php:844 -msgid "User unable to add new %s" -msgstr "" - -#: includes/fields/class-acf-field-taxonomy.php:742 -msgid "Term ID" -msgstr "ID termen" - -#: includes/fields/class-acf-field-taxonomy.php:741 -msgid "Term Object" -msgstr "Obiect termen" - -#: includes/fields/class-acf-field-taxonomy.php:726 -msgid "Load value from posts terms" -msgstr "" - -#: includes/fields/class-acf-field-taxonomy.php:725 -msgid "Load Terms" -msgstr "Încarcă termeni" - -#: includes/fields/class-acf-field-taxonomy.php:715 -msgid "Connect selected terms to the post" -msgstr "Conectează termenii selectați la articol" - -#: includes/fields/class-acf-field-taxonomy.php:714 -msgid "Save Terms" -msgstr "Salvează termenii" - -#: includes/fields/class-acf-field-taxonomy.php:704 -msgid "Allow new terms to be created whilst editing" -msgstr "" - -#: includes/fields/class-acf-field-taxonomy.php:703 -msgid "Create Terms" -msgstr "Creează termeni" - -#: includes/fields/class-acf-field-taxonomy.php:762 -msgid "Radio Buttons" -msgstr "Butoane radio" - -#: includes/fields/class-acf-field-taxonomy.php:761 -msgid "Single Value" -msgstr "" - -#: includes/fields/class-acf-field-taxonomy.php:759 -msgid "Multi Select" -msgstr "" - -#: includes/fields/class-acf-field-checkbox.php:25 -#: includes/fields/class-acf-field-taxonomy.php:758 -msgid "Checkbox" -msgstr "" - -#: includes/fields/class-acf-field-taxonomy.php:757 -msgid "Multiple Values" -msgstr "Mai multe valori" - -#: includes/fields/class-acf-field-taxonomy.php:752 -msgid "Select the appearance of this field" -msgstr "Selectează aspectul acestui câmp" - -#: includes/fields/class-acf-field-taxonomy.php:751 -msgid "Appearance" -msgstr "Aspect" - -#: includes/fields/class-acf-field-taxonomy.php:693 -msgid "Select the taxonomy to be displayed" -msgstr "Selectează taxonomia care să fie afișată" - -#: includes/fields/class-acf-field-taxonomy.php:654 -msgctxt "No Terms" -msgid "No %s" -msgstr "" - -#: includes/fields/class-acf-field-number.php:266 -msgid "Value must be equal to or lower than %d" -msgstr "Valoarea trebuie să fie egală sau mai mică decât %d" - -#: includes/fields/class-acf-field-number.php:259 -msgid "Value must be equal to or higher than %d" -msgstr "Valoarea trebuie să fie egală sau mai mare decât %d" - -#: includes/fields/class-acf-field-number.php:244 -msgid "Value must be a number" -msgstr "Valoarea trebuie să fie un număr" - -#: includes/fields/class-acf-field-number.php:25 -msgid "Number" -msgstr "Număr" - -#: includes/fields/class-acf-field-radio.php:264 -msgid "Save 'other' values to the field's choices" -msgstr "" - -#: includes/fields/class-acf-field-radio.php:253 -msgid "Add 'other' choice to allow for custom values" -msgstr "" - -#: includes/admin/views/global/navigation.php:196 -msgid "Other" -msgstr "" - -#: includes/fields/class-acf-field-radio.php:25 -msgid "Radio Button" -msgstr "Buton radio" - -#: includes/fields/class-acf-field-accordion.php:107 -msgid "" -"Define an endpoint for the previous accordion to stop. This accordion will " -"not be visible." -msgstr "" - -#: includes/fields/class-acf-field-accordion.php:96 -msgid "Allow this accordion to open without closing others." -msgstr "" - -#: includes/fields/class-acf-field-accordion.php:95 -msgid "Multi-Expand" -msgstr "" - -#: includes/fields/class-acf-field-accordion.php:85 -msgid "Display this accordion as open on page load." -msgstr "" - -#: includes/fields/class-acf-field-accordion.php:84 -msgid "Open" -msgstr "" - -#: includes/fields/class-acf-field-accordion.php:25 -msgid "Accordion" -msgstr "" - -#: includes/fields/class-acf-field-file.php:267 -#: includes/fields/class-acf-field-file.php:279 -msgid "Restrict which files can be uploaded" -msgstr "Restricționează fișierele care pot fi încărcate" - -#: includes/fields/class-acf-field-file.php:220 -msgid "File ID" -msgstr "ID fișier" - -#: includes/fields/class-acf-field-file.php:219 -msgid "File URL" -msgstr "URL fișier" - -#: includes/fields/class-acf-field-file.php:218 -msgid "File Array" -msgstr "Tablou de fișiere" - -#: includes/fields/class-acf-field-file.php:186 -msgid "Add File" -msgstr "Adaugă fișier" - -#: includes/admin/tools/class-acf-admin-tool-import.php:156 -#: includes/fields/class-acf-field-file.php:186 -msgid "No file selected" -msgstr "Nu ai selectat niciun fișier" - -#: includes/fields/class-acf-field-file.php:150 -msgid "File name" -msgstr "Nume fișier" - -#: includes/fields/class-acf-field-file.php:63 -#: assets/build/js/acf-input.js:2474 assets/build/js/acf-input.js:2625 -msgid "Update File" -msgstr "Actualizează fișierul" - -#: includes/fields/class-acf-field-file.php:62 -#: assets/build/js/acf-input.js:2473 assets/build/js/acf-input.js:2624 -msgid "Edit File" -msgstr "Editează fișierul" - -#: includes/admin/tools/class-acf-admin-tool-import.php:58 -#: includes/fields/class-acf-field-file.php:61 -#: assets/build/js/acf-input.js:2447 assets/build/js/acf-input.js:2597 -msgid "Select File" -msgstr "Selectează fișierul" - -#: includes/fields/class-acf-field-file.php:25 -msgid "File" -msgstr "Fișier" - -#: includes/fields/class-acf-field-password.php:25 -msgid "Password" -msgstr "Parolă" - -#: includes/fields/class-acf-field-select.php:392 -msgid "Specify the value returned" -msgstr "Specifică valoarea returnată" - -#: includes/fields/class-acf-field-select.php:461 -msgid "Use AJAX to lazy load choices?" -msgstr "" - -#: includes/fields/class-acf-field-checkbox.php:362 -#: includes/fields/class-acf-field-select.php:381 -msgid "Enter each default value on a new line" -msgstr "Introdu fiecare valoare implicită pe un rând nou" - -#: includes/fields/class-acf-field-select.php:252 includes/media.php:48 -#: assets/build/js/acf-input.js:6790 assets/build/js/acf-input.js:7266 -msgctxt "verb" -msgid "Select" -msgstr "Selectează" - -#: includes/fields/class-acf-field-select.php:121 -msgctxt "Select2 JS load_fail" -msgid "Loading failed" -msgstr "Încărcarea a eșuat" - -#: includes/fields/class-acf-field-select.php:120 -msgctxt "Select2 JS searching" -msgid "Searching…" -msgstr "Caut..." - -#: includes/fields/class-acf-field-select.php:119 -msgctxt "Select2 JS load_more" -msgid "Loading more results…" -msgstr "Încarc mai multe rezultate..." - -#: includes/fields/class-acf-field-select.php:118 -msgctxt "Select2 JS selection_too_long_n" -msgid "You can only select %d items" -msgstr "Poți să selectezi numai %d elemente" - -#: includes/fields/class-acf-field-select.php:117 -msgctxt "Select2 JS selection_too_long_1" -msgid "You can only select 1 item" -msgstr "Poți să selectezi numai un singur element" - -#: includes/fields/class-acf-field-select.php:116 -msgctxt "Select2 JS input_too_long_n" -msgid "Please delete %d characters" -msgstr "Te rog să ștergi %d caractere" - -#: includes/fields/class-acf-field-select.php:115 -msgctxt "Select2 JS input_too_long_1" -msgid "Please delete 1 character" -msgstr "Te rog să ștergi un caracter" - -#: includes/fields/class-acf-field-select.php:114 -msgctxt "Select2 JS input_too_short_n" -msgid "Please enter %d or more characters" -msgstr "Te rog să introduci %d sau mai multe caractere" - -#: includes/fields/class-acf-field-select.php:113 -msgctxt "Select2 JS input_too_short_1" -msgid "Please enter 1 or more characters" -msgstr "Te rog să introduci cel puțin un caracter" - -#: includes/fields/class-acf-field-select.php:112 -msgctxt "Select2 JS matches_0" -msgid "No matches found" -msgstr "" - -#: includes/fields/class-acf-field-select.php:111 -msgctxt "Select2 JS matches_n" -msgid "%d results are available, use up and down arrow keys to navigate." -msgstr "" -"Sunt disponibile %d rezultate, folosește tastele săgeată sus și săgeată jos " -"pentru a naviga." - -#: includes/fields/class-acf-field-select.php:110 -msgctxt "Select2 JS matches_1" -msgid "One result is available, press enter to select it." -msgstr "Este disponibil un rezultat, apasă pe Enter pentru a-l selecta." - -#: includes/fields/class-acf-field-select.php:25 -#: includes/fields/class-acf-field-taxonomy.php:763 -msgctxt "noun" -msgid "Select" -msgstr "Selectează" - -#: includes/fields/class-acf-field-user.php:73 -msgid "User ID" -msgstr "ID utilizator" - -#: includes/fields/class-acf-field-user.php:72 -msgid "User Object" -msgstr "Obiect utilizator" - -#: includes/fields/class-acf-field-user.php:71 -msgid "User Array" -msgstr "Tablou de utilizatori" - -#: includes/fields/class-acf-field-user.php:59 -msgid "All user roles" -msgstr "Toate rolurile de utilizator" - -#: includes/fields/class-acf-field-user.php:51 -msgid "Filter by Role" -msgstr "Filtrează după rol" - -#: includes/fields/class-acf-field-user.php:15 includes/locations.php:101 -msgid "User" -msgstr "Utilizator" - -#: includes/fields/class-acf-field-separator.php:25 -msgid "Separator" -msgstr "Separator" - -#: includes/fields/class-acf-field-color_picker.php:75 -msgid "Select Color" -msgstr "Selectează culoarea" - -#: includes/admin/post-types/admin-post-type.php:129 -#: includes/admin/post-types/admin-taxonomy.php:131 -#: includes/fields/class-acf-field-color_picker.php:73 -#: assets/build/js/acf-internal-post-type.js:72 -#: assets/build/js/acf-internal-post-type.js:86 -msgid "Default" -msgstr "Implicită" - -#: includes/admin/views/acf-post-type/advanced-settings.php:89 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:141 -#: includes/fields/class-acf-field-color_picker.php:71 -msgid "Clear" -msgstr "Șterge" - -#: includes/fields/class-acf-field-color_picker.php:25 -msgid "Color Picker" -msgstr "Selector de culoare" - -#: includes/fields/class-acf-field-date_time_picker.php:88 -msgctxt "Date Time Picker JS pmTextShort" -msgid "P" -msgstr "" - -#: includes/fields/class-acf-field-date_time_picker.php:87 -msgctxt "Date Time Picker JS pmText" -msgid "PM" -msgstr "" - -#: includes/fields/class-acf-field-date_time_picker.php:84 -msgctxt "Date Time Picker JS amTextShort" -msgid "A" -msgstr "" - -#: includes/fields/class-acf-field-date_time_picker.php:83 -msgctxt "Date Time Picker JS amText" -msgid "AM" -msgstr "" - -#: includes/fields/class-acf-field-date_time_picker.php:81 -msgctxt "Date Time Picker JS selectText" -msgid "Select" -msgstr "Selectează" - -#: includes/fields/class-acf-field-date_time_picker.php:80 -msgctxt "Date Time Picker JS closeText" -msgid "Done" -msgstr "Gata" - -#: includes/fields/class-acf-field-date_time_picker.php:79 -msgctxt "Date Time Picker JS currentText" -msgid "Now" -msgstr "Acum" - -#: includes/fields/class-acf-field-date_time_picker.php:78 -msgctxt "Date Time Picker JS timezoneText" -msgid "Time Zone" -msgstr "Fus orar" - -#: includes/fields/class-acf-field-date_time_picker.php:77 -msgctxt "Date Time Picker JS microsecText" -msgid "Microsecond" -msgstr "" - -#: includes/fields/class-acf-field-date_time_picker.php:76 -msgctxt "Date Time Picker JS millisecText" -msgid "Millisecond" -msgstr "" - -#: includes/fields/class-acf-field-date_time_picker.php:75 -msgctxt "Date Time Picker JS secondText" -msgid "Second" -msgstr "" - -#: includes/fields/class-acf-field-date_time_picker.php:74 -msgctxt "Date Time Picker JS minuteText" -msgid "Minute" -msgstr "" - -#: includes/fields/class-acf-field-date_time_picker.php:73 -msgctxt "Date Time Picker JS hourText" -msgid "Hour" -msgstr "" - -#: includes/fields/class-acf-field-date_time_picker.php:72 -msgctxt "Date Time Picker JS timeText" -msgid "Time" -msgstr "" - -#: includes/fields/class-acf-field-date_time_picker.php:71 -msgctxt "Date Time Picker JS timeOnlyTitle" -msgid "Choose Time" -msgstr "" - -#: includes/fields/class-acf-field-date_time_picker.php:25 -msgid "Date Time Picker" -msgstr "" - -#: includes/fields/class-acf-field-accordion.php:106 -msgid "Endpoint" -msgstr "Punct-final" - -#: includes/admin/views/acf-field-group/options.php:130 -#: includes/fields/class-acf-field-tab.php:115 -msgid "Left aligned" -msgstr "" - -#: includes/admin/views/acf-field-group/options.php:129 -#: includes/fields/class-acf-field-tab.php:114 -msgid "Top aligned" -msgstr "" - -#: includes/fields/class-acf-field-tab.php:110 -msgid "Placement" -msgstr "Plasare" - -#: includes/fields/class-acf-field-tab.php:26 -msgid "Tab" -msgstr "Filă" - -#: includes/fields/class-acf-field-url.php:162 -msgid "Value must be a valid URL" -msgstr "Valoarea trebuie să fie un URL valid" - -#: includes/fields/class-acf-field-link.php:177 -msgid "Link URL" -msgstr "" - -#: includes/fields/class-acf-field-link.php:176 -msgid "Link Array" -msgstr "Tablou de legături" - -#: includes/fields/class-acf-field-link.php:145 -msgid "Opens in a new window/tab" -msgstr "Se deschide într-o fereastră/filă nouă" - -#: includes/fields/class-acf-field-link.php:140 -msgid "Select Link" -msgstr "Selectează legătura" - -#: includes/fields/class-acf-field-link.php:25 -msgid "Link" -msgstr "Legătură" - -#: includes/fields/class-acf-field-email.php:25 -msgid "Email" -msgstr "Email" - -#: includes/fields/class-acf-field-number.php:188 -#: includes/fields/class-acf-field-range.php:217 -msgid "Step Size" -msgstr "Mărime pas" - -#: includes/fields/class-acf-field-number.php:158 -#: includes/fields/class-acf-field-range.php:195 -msgid "Maximum Value" -msgstr "Valoare maximă" - -#: includes/fields/class-acf-field-number.php:148 -#: includes/fields/class-acf-field-range.php:184 -msgid "Minimum Value" -msgstr "Valoare minimă" - -#: includes/fields/class-acf-field-range.php:25 -msgid "Range" -msgstr "" - -#: includes/fields/class-acf-field-button-group.php:175 -#: includes/fields/class-acf-field-checkbox.php:379 -#: includes/fields/class-acf-field-radio.php:220 -#: includes/fields/class-acf-field-select.php:399 -msgid "Both (Array)" -msgstr "" - -#: includes/admin/views/acf-field-group/fields.php:52 -#: includes/fields/class-acf-field-button-group.php:174 -#: includes/fields/class-acf-field-checkbox.php:378 -#: includes/fields/class-acf-field-radio.php:219 -#: includes/fields/class-acf-field-select.php:398 -msgid "Label" -msgstr "Etichetă" - -#: includes/fields/class-acf-field-button-group.php:173 -#: includes/fields/class-acf-field-checkbox.php:377 -#: includes/fields/class-acf-field-radio.php:218 -#: includes/fields/class-acf-field-select.php:397 -msgid "Value" -msgstr "Valoare" - -#: includes/fields/class-acf-field-button-group.php:222 -#: includes/fields/class-acf-field-checkbox.php:441 -#: includes/fields/class-acf-field-radio.php:292 -msgid "Vertical" -msgstr "" - -#: includes/fields/class-acf-field-button-group.php:221 -#: includes/fields/class-acf-field-checkbox.php:442 -#: includes/fields/class-acf-field-radio.php:293 -msgid "Horizontal" -msgstr "" - -#: includes/fields/class-acf-field-button-group.php:148 -#: includes/fields/class-acf-field-checkbox.php:352 -#: includes/fields/class-acf-field-radio.php:193 -#: includes/fields/class-acf-field-select.php:370 -msgid "red : Red" -msgstr "" - -#: includes/fields/class-acf-field-button-group.php:148 -#: includes/fields/class-acf-field-checkbox.php:352 -#: includes/fields/class-acf-field-radio.php:193 -#: includes/fields/class-acf-field-select.php:370 -msgid "For more control, you may specify both a value and label like this:" -msgstr "" -"Pentru un control mai bun, poți specifica atât o valoare cât și o etichetă, " -"de exemplu:" - -#: includes/fields/class-acf-field-button-group.php:148 -#: includes/fields/class-acf-field-checkbox.php:352 -#: includes/fields/class-acf-field-radio.php:193 -#: includes/fields/class-acf-field-select.php:370 -msgid "Enter each choice on a new line." -msgstr "Introdu fiecare alegere pe un rând nou." - -#: includes/fields/class-acf-field-button-group.php:147 -#: includes/fields/class-acf-field-checkbox.php:351 -#: includes/fields/class-acf-field-radio.php:192 -#: includes/fields/class-acf-field-select.php:369 -msgid "Choices" -msgstr "" - -#: includes/fields/class-acf-field-button-group.php:24 -msgid "Button Group" -msgstr "" - -#: includes/fields/class-acf-field-button-group.php:194 -#: includes/fields/class-acf-field-page_link.php:538 -#: includes/fields/class-acf-field-post_object.php:448 -#: includes/fields/class-acf-field-radio.php:238 -#: includes/fields/class-acf-field-select.php:429 -#: includes/fields/class-acf-field-taxonomy.php:772 -#: includes/fields/class-acf-field-user.php:103 -msgid "Allow Null" -msgstr "Permite o valoare nulă" - -#: includes/fields/class-acf-field-page_link.php:263 -#: includes/fields/class-acf-field-post_object.php:257 -#: includes/fields/class-acf-field-taxonomy.php:930 -msgid "Parent" -msgstr "Părinte" - -#: includes/fields/class-acf-field-wysiwyg.php:390 -msgid "TinyMCE will not be initialized until field is clicked" -msgstr "TinyMCE nu va fi inițializat până când câmpul nu este bifat" - -#: includes/fields/class-acf-field-wysiwyg.php:389 -msgid "Delay Initialization" -msgstr "Întârzie inițializarea" - -#: includes/fields/class-acf-field-wysiwyg.php:378 -msgid "Show Media Upload Buttons" -msgstr "Arată butoanele de încărcare Media" - -#: includes/fields/class-acf-field-wysiwyg.php:362 -msgid "Toolbar" -msgstr "Bară de unelte" - -#: includes/fields/class-acf-field-wysiwyg.php:354 -msgid "Text Only" -msgstr "Numai text" - -#: includes/fields/class-acf-field-wysiwyg.php:353 -msgid "Visual Only" -msgstr "Numai vizual" - -#: includes/fields/class-acf-field-wysiwyg.php:352 -msgid "Visual & Text" -msgstr "Vizual și text" - -#: includes/fields/class-acf-field-wysiwyg.php:347 -msgid "Tabs" -msgstr "File" - -#: includes/fields/class-acf-field-wysiwyg.php:285 -msgid "Click to initialize TinyMCE" -msgstr "Dă clic pentru a inițializa TinyMCE" - -#: includes/fields/class-acf-field-wysiwyg.php:279 -msgctxt "Name for the Text editor tab (formerly HTML)" -msgid "Text" -msgstr "Text" - -#: includes/fields/class-acf-field-wysiwyg.php:278 -msgid "Visual" -msgstr "Vizual" - -#: includes/fields/class-acf-field-text.php:189 -#: includes/fields/class-acf-field-textarea.php:236 -msgid "Value must not exceed %d characters" -msgstr "Valoarea nu trebuie să depășească %d caractere" - -#: includes/fields/class-acf-field-text.php:124 -#: includes/fields/class-acf-field-textarea.php:124 -msgid "Leave blank for no limit" -msgstr "Lasă gol pentru fără limită" - -#: includes/fields/class-acf-field-text.php:123 -#: includes/fields/class-acf-field-textarea.php:123 -msgid "Character Limit" -msgstr "Număr limită de caractere" - -#: includes/fields/class-acf-field-email.php:158 -#: includes/fields/class-acf-field-number.php:209 -#: includes/fields/class-acf-field-password.php:105 -#: includes/fields/class-acf-field-range.php:239 -#: includes/fields/class-acf-field-text.php:164 -msgid "Appears after the input" -msgstr "Apare după intrare" - -#: includes/fields/class-acf-field-email.php:157 -#: includes/fields/class-acf-field-number.php:208 -#: includes/fields/class-acf-field-password.php:104 -#: includes/fields/class-acf-field-range.php:238 -#: includes/fields/class-acf-field-text.php:163 -msgid "Append" -msgstr "Adaugă după" - -#: includes/fields/class-acf-field-email.php:148 -#: includes/fields/class-acf-field-number.php:199 -#: includes/fields/class-acf-field-password.php:95 -#: includes/fields/class-acf-field-range.php:229 -#: includes/fields/class-acf-field-text.php:154 -msgid "Appears before the input" -msgstr "Apare înainte de intrare" - -#: includes/fields/class-acf-field-email.php:147 -#: includes/fields/class-acf-field-number.php:198 -#: includes/fields/class-acf-field-password.php:94 -#: includes/fields/class-acf-field-range.php:228 -#: includes/fields/class-acf-field-text.php:153 -msgid "Prepend" -msgstr "Adaugă înainte" - -#: includes/fields/class-acf-field-email.php:138 -#: includes/fields/class-acf-field-number.php:179 -#: includes/fields/class-acf-field-password.php:85 -#: includes/fields/class-acf-field-text.php:144 -#: includes/fields/class-acf-field-textarea.php:156 -#: includes/fields/class-acf-field-url.php:122 -msgid "Appears within the input" -msgstr "Apare în intrare" - -#: includes/fields/class-acf-field-email.php:137 -#: includes/fields/class-acf-field-number.php:178 -#: includes/fields/class-acf-field-password.php:84 -#: includes/fields/class-acf-field-text.php:143 -#: includes/fields/class-acf-field-textarea.php:155 -#: includes/fields/class-acf-field-url.php:121 -msgid "Placeholder Text" -msgstr "Text substituent" - -#: includes/fields/class-acf-field-button-group.php:158 -#: includes/fields/class-acf-field-email.php:118 -#: includes/fields/class-acf-field-number.php:129 -#: includes/fields/class-acf-field-radio.php:203 -#: includes/fields/class-acf-field-range.php:165 -#: includes/fields/class-acf-field-text.php:104 -#: includes/fields/class-acf-field-textarea.php:104 -#: includes/fields/class-acf-field-url.php:102 -#: includes/fields/class-acf-field-wysiwyg.php:312 -msgid "Appears when creating a new post" -msgstr "Apare la crearea unui articol nou" - -#: includes/fields/class-acf-field-text.php:25 -msgid "Text" -msgstr "Text" - -#: includes/fields/class-acf-field-relationship.php:794 -msgid "%1$s requires at least %2$s selection" -msgid_plural "%1$s requires at least %2$s selections" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: includes/fields/class-acf-field-post_object.php:417 -#: includes/fields/class-acf-field-relationship.php:644 -msgid "Post ID" -msgstr "ID articol" - -#: includes/fields/class-acf-field-post_object.php:17 -#: includes/fields/class-acf-field-post_object.php:416 -#: includes/fields/class-acf-field-relationship.php:643 -msgid "Post Object" -msgstr "Obiect articol" - -#: includes/fields/class-acf-field-relationship.php:676 -msgid "Maximum Posts" -msgstr "Număr maxim de articole" - -#: includes/fields/class-acf-field-relationship.php:666 -msgid "Minimum Posts" -msgstr "Număr minim de articole" - -#: includes/admin/views/acf-field-group/options.php:183 -#: includes/admin/views/acf-post-type/advanced-settings.php:29 -#: includes/fields/class-acf-field-relationship.php:701 -msgid "Featured Image" -msgstr "Imagine reprezentativă" - -#: includes/fields/class-acf-field-relationship.php:697 -msgid "Selected elements will be displayed in each result" -msgstr "Elementele selectate vor fi afișate în fiecare rezultat" - -#: includes/fields/class-acf-field-relationship.php:696 -msgid "Elements" -msgstr "Elemente" - -#: includes/fields/class-acf-field-relationship.php:630 -#: includes/fields/class-acf-field-taxonomy.php:20 -#: includes/fields/class-acf-field-taxonomy.php:692 -#: includes/locations/class-acf-location-taxonomy.php:22 -msgid "Taxonomy" -msgstr "Taxonomie" - -#: includes/fields/class-acf-field-relationship.php:629 -#: includes/locations/class-acf-location-post-type.php:22 -#: includes/post-types/class-acf-post-type.php:92 -msgid "Post Type" -msgstr "Tip de articol" - -#: includes/fields/class-acf-field-relationship.php:623 -msgid "Filters" -msgstr "Filtre" - -#: includes/fields/class-acf-field-page_link.php:499 -#: includes/fields/class-acf-field-post_object.php:404 -#: includes/fields/class-acf-field-relationship.php:616 -msgid "All taxonomies" -msgstr "Toate taxonomiile" - -#: includes/fields/class-acf-field-page_link.php:491 -#: includes/fields/class-acf-field-post_object.php:396 -#: includes/fields/class-acf-field-relationship.php:608 -msgid "Filter by Taxonomy" -msgstr "Filtrează după taxonomie" - -#: includes/fields/class-acf-field-page_link.php:469 -#: includes/fields/class-acf-field-post_object.php:374 -#: includes/fields/class-acf-field-relationship.php:586 -msgid "All post types" -msgstr "Toate tipurile de articol" - -#: includes/fields/class-acf-field-page_link.php:461 -#: includes/fields/class-acf-field-post_object.php:366 -#: includes/fields/class-acf-field-relationship.php:578 -msgid "Filter by Post Type" -msgstr "Filtrează după tipul de articol" - -#: includes/fields/class-acf-field-relationship.php:476 -msgid "Search..." -msgstr "Caută..." - -#: includes/fields/class-acf-field-relationship.php:406 -msgid "Select taxonomy" -msgstr "Selectează taxonomia" - -#: includes/fields/class-acf-field-relationship.php:397 -msgid "Select post type" -msgstr "Selectează tipul de articol" - -#: includes/fields/class-acf-field-relationship.php:61 -#: assets/build/js/acf-input.js:3930 assets/build/js/acf-input.js:4214 -msgid "No matches found" -msgstr "Nu am găsit nicio potrivire" - -#: includes/fields/class-acf-field-relationship.php:60 -#: assets/build/js/acf-input.js:3913 assets/build/js/acf-input.js:4193 -msgid "Loading" -msgstr "Încarc" - -#: includes/fields/class-acf-field-relationship.php:59 -#: assets/build/js/acf-input.js:3818 assets/build/js/acf-input.js:4084 -msgid "Maximum values reached ( {max} values )" -msgstr "" - -#: includes/fields/class-acf-field-relationship.php:17 -msgid "Relationship" -msgstr "Relație" - -#: pro/fields/class-acf-field-gallery.php:708 -msgid "Comma separated list. Leave blank for all types" -msgstr "Listă separată prin virgulă. Lăsați liber pentru toate tipurile" - -#: includes/fields/class-acf-field-file.php:290 -#: includes/fields/class-acf-field-image.php:316 -msgid "Allowed File Types" -msgstr "Tipuri de fișier permise" - -#: includes/fields/class-acf-field-file.php:278 -#: includes/fields/class-acf-field-image.php:280 -msgid "Maximum" -msgstr "Maxim" - -#: includes/fields/class-acf-field-file.php:154 -#: includes/fields/class-acf-field-file.php:270 -#: includes/fields/class-acf-field-file.php:282 -#: includes/fields/class-acf-field-image.php:271 -#: includes/fields/class-acf-field-image.php:307 -msgid "File size" -msgstr "Dimensiune fișier" - -#: includes/fields/class-acf-field-image.php:245 -#: includes/fields/class-acf-field-image.php:281 -msgid "Restrict which images can be uploaded" -msgstr "Restricționează imaginile care pot fi încărcate" - -#: includes/fields/class-acf-field-file.php:266 -#: includes/fields/class-acf-field-image.php:244 -msgid "Minimum" -msgstr "Minim" - -#: pro/fields/class-acf-field-gallery.php:579 -msgid "Uploaded to post" -msgstr "Încărcate pentru acest articol" - -#: includes/fields/class-acf-field-file.php:234 -#: includes/fields/class-acf-field-image.php:209 -#: includes/locations/class-acf-location-attachment.php:73 -#: includes/locations/class-acf-location-comment.php:61 -#: includes/locations/class-acf-location-nav-menu.php:74 -#: includes/locations/class-acf-location-taxonomy.php:63 -#: includes/locations/class-acf-location-user-form.php:71 -#: includes/locations/class-acf-location-user-role.php:78 -#: includes/locations/class-acf-location-widget.php:65 -msgid "All" -msgstr "Tot" - -#: pro/fields/class-acf-field-gallery.php:573 -msgid "Limit the media library choice" -msgstr "Limitați alegerea librăriei media" - -#: includes/fields/class-acf-field-file.php:228 -#: includes/fields/class-acf-field-image.php:203 -msgid "Library" -msgstr "Bibliotecă" - -#: includes/fields/class-acf-field-image.php:336 -msgid "Preview Size" -msgstr "Dimensiune previzualizare" - -#: includes/fields/class-acf-field-image.php:195 -msgid "Image ID" -msgstr "ID imagine" - -#: includes/fields/class-acf-field-image.php:194 -msgid "Image URL" -msgstr "URL imagine" - -#: includes/fields/class-acf-field-image.php:193 -msgid "Image Array" -msgstr "Tablou de imagini" - -#: includes/fields/class-acf-field-button-group.php:168 -#: includes/fields/class-acf-field-checkbox.php:372 -#: includes/fields/class-acf-field-file.php:213 -#: includes/fields/class-acf-field-link.php:171 -#: includes/fields/class-acf-field-radio.php:213 -msgid "Specify the returned value on front end" -msgstr "" - -#: includes/fields/class-acf-field-button-group.php:167 -#: includes/fields/class-acf-field-checkbox.php:371 -#: includes/fields/class-acf-field-file.php:212 -#: includes/fields/class-acf-field-link.php:170 -#: includes/fields/class-acf-field-radio.php:212 -#: includes/fields/class-acf-field-taxonomy.php:736 -msgid "Return Value" -msgstr "Valoare returnată" - -#: includes/fields/class-acf-field-image.php:162 -msgid "Add Image" -msgstr "Adaugă o imagine" - -#: includes/fields/class-acf-field-image.php:162 -msgid "No image selected" -msgstr "Nu ai selectat nicio imagine" - -#: includes/assets.php:352 includes/fields/class-acf-field-file.php:162 -#: includes/fields/class-acf-field-image.php:142 -#: includes/fields/class-acf-field-link.php:145 assets/build/js/acf.js:1563 -#: assets/build/js/acf.js:1657 -msgid "Remove" -msgstr "Înlătură" - -#: includes/admin/views/acf-field-group/field.php:76 -#: includes/fields/class-acf-field-file.php:160 -#: includes/fields/class-acf-field-image.php:140 -#: includes/fields/class-acf-field-link.php:145 -msgid "Edit" -msgstr "Editează" - -#: includes/fields/class-acf-field-image.php:70 includes/media.php:55 -#: assets/build/js/acf-input.js:6837 assets/build/js/acf-input.js:7320 -msgid "All images" -msgstr "Toate imaginile" - -#: includes/fields/class-acf-field-image.php:69 -#: assets/build/js/acf-input.js:3181 assets/build/js/acf-input.js:3399 -msgid "Update Image" -msgstr "Actualizează imaginea" - -#: includes/fields/class-acf-field-image.php:68 -#: assets/build/js/acf-input.js:3180 assets/build/js/acf-input.js:3398 -msgid "Edit Image" -msgstr "Editează imaginea" - -#: includes/fields/class-acf-field-image.php:67 -#: assets/build/js/acf-input.js:3156 assets/build/js/acf-input.js:3373 -msgid "Select Image" -msgstr "Selectează o imagine" - -#: includes/fields/class-acf-field-image.php:25 -msgid "Image" -msgstr "Imagine" - -#: includes/fields/class-acf-field-message.php:125 -msgid "Allow HTML markup to display as visible text instead of rendering" -msgstr "" - -#: includes/fields/class-acf-field-message.php:124 -msgid "Escape HTML" -msgstr "" - -#: includes/fields/class-acf-field-message.php:116 -#: includes/fields/class-acf-field-textarea.php:172 -msgid "No Formatting" -msgstr "Fără formatare" - -#: includes/fields/class-acf-field-message.php:115 -#: includes/fields/class-acf-field-textarea.php:171 -msgid "Automatically add <br>" -msgstr "Adaugă automat <br>" - -#: includes/fields/class-acf-field-message.php:114 -#: includes/fields/class-acf-field-textarea.php:170 -msgid "Automatically add paragraphs" -msgstr "Adaugă automat paragrafe" - -#: includes/fields/class-acf-field-message.php:110 -#: includes/fields/class-acf-field-textarea.php:166 -msgid "Controls how new lines are rendered" -msgstr "Controlează cum sunt randate liniile noi" - -#: includes/fields/class-acf-field-message.php:109 -#: includes/fields/class-acf-field-textarea.php:165 -msgid "New Lines" -msgstr "Linii noi" - -#: includes/fields/class-acf-field-date_picker.php:232 -#: includes/fields/class-acf-field-date_time_picker.php:220 -msgid "Week Starts On" -msgstr "Săptămâna începe" - -#: includes/fields/class-acf-field-date_picker.php:201 -msgid "The format used when saving a value" -msgstr "Formatul folosit la salvarea unei valori" - -#: includes/fields/class-acf-field-date_picker.php:200 -msgid "Save Format" -msgstr "Salvează formatul" - -#: includes/fields/class-acf-field-date_picker.php:67 -msgctxt "Date Picker JS weekHeader" -msgid "Wk" -msgstr "" - -#: includes/fields/class-acf-field-date_picker.php:66 -msgctxt "Date Picker JS prevText" -msgid "Prev" -msgstr "" - -#: includes/fields/class-acf-field-date_picker.php:65 -msgctxt "Date Picker JS nextText" -msgid "Next" -msgstr "Următor" - -#: includes/fields/class-acf-field-date_picker.php:64 -msgctxt "Date Picker JS currentText" -msgid "Today" -msgstr "Azi" - -#: includes/fields/class-acf-field-date_picker.php:63 -msgctxt "Date Picker JS closeText" -msgid "Done" -msgstr "Gata" - -#: includes/fields/class-acf-field-date_picker.php:25 -msgid "Date Picker" -msgstr "Selector de dată" - -#: includes/fields/class-acf-field-image.php:248 -#: includes/fields/class-acf-field-image.php:284 -#: includes/fields/class-acf-field-oembed.php:268 -msgid "Width" -msgstr "Lățime" - -#: includes/fields/class-acf-field-oembed.php:265 -#: includes/fields/class-acf-field-oembed.php:277 -msgid "Embed Size" -msgstr "Dimensiune înglobare" - -#: includes/fields/class-acf-field-oembed.php:222 -msgid "Enter URL" -msgstr "Introdu URL-ul" - -#: includes/fields/class-acf-field-oembed.php:25 -msgid "oEmbed" -msgstr "oEmbed" - -#: includes/fields/class-acf-field-true_false.php:184 -msgid "Text shown when inactive" -msgstr "Text arătat când este inactiv" - -#: includes/fields/class-acf-field-true_false.php:183 -msgid "Off Text" -msgstr "" - -#: includes/fields/class-acf-field-true_false.php:168 -msgid "Text shown when active" -msgstr "Text arătat când este activ" - -#: includes/fields/class-acf-field-true_false.php:167 -msgid "On Text" -msgstr "" - -#: includes/fields/class-acf-field-select.php:450 -#: includes/fields/class-acf-field-true_false.php:199 -msgid "Stylized UI" -msgstr "" - -#: includes/fields/class-acf-field-button-group.php:157 -#: includes/fields/class-acf-field-checkbox.php:361 -#: includes/fields/class-acf-field-color_picker.php:156 -#: includes/fields/class-acf-field-email.php:117 -#: includes/fields/class-acf-field-number.php:128 -#: includes/fields/class-acf-field-radio.php:202 -#: includes/fields/class-acf-field-range.php:164 -#: includes/fields/class-acf-field-select.php:380 -#: includes/fields/class-acf-field-text.php:103 -#: includes/fields/class-acf-field-textarea.php:103 -#: includes/fields/class-acf-field-true_false.php:147 -#: includes/fields/class-acf-field-url.php:101 -#: includes/fields/class-acf-field-wysiwyg.php:311 -msgid "Default Value" -msgstr "Valoare implicită" - -#: includes/fields/class-acf-field-true_false.php:138 -msgid "Displays text alongside the checkbox" -msgstr "" - -#: includes/fields/class-acf-field-message.php:26 -#: includes/fields/class-acf-field-message.php:99 -#: includes/fields/class-acf-field-true_false.php:137 -msgid "Message" -msgstr "Mesaj" - -#: includes/assets.php:351 includes/fields/class-acf-field-true_false.php:86 -#: includes/fields/class-acf-field-true_false.php:187 -#: assets/build/js/acf.js:1740 assets/build/js/acf.js:1857 -msgid "No" -msgstr "Nu" - -#: includes/assets.php:350 includes/fields/class-acf-field-true_false.php:83 -#: includes/fields/class-acf-field-true_false.php:171 -#: assets/build/js/acf.js:1739 assets/build/js/acf.js:1856 -msgid "Yes" -msgstr "Da" - -#: includes/fields/class-acf-field-true_false.php:25 -msgid "True / False" -msgstr "" - -#: includes/fields/class-acf-field-group.php:474 -msgid "Row" -msgstr "Rând" - -#: includes/fields/class-acf-field-group.php:473 -msgid "Table" -msgstr "Tabel" - -#: includes/admin/post-types/admin-field-group.php:140 -#: includes/fields/class-acf-field-group.php:472 -msgid "Block" -msgstr "Bloc" - -#: includes/fields/class-acf-field-group.php:467 -msgid "Specify the style used to render the selected fields" -msgstr "" - -#: includes/fields.php:356 includes/fields/class-acf-field-button-group.php:215 -#: includes/fields/class-acf-field-checkbox.php:435 -#: includes/fields/class-acf-field-group.php:466 -#: includes/fields/class-acf-field-radio.php:286 -msgid "Layout" -msgstr "Aranjament" - -#: includes/fields/class-acf-field-group.php:450 -msgid "Sub Fields" -msgstr "Sub-câmpuri" - -#: includes/fields/class-acf-field-group.php:25 -msgid "Group" -msgstr "" - -#: includes/fields/class-acf-field-google-map.php:235 -msgid "Customize the map height" -msgstr "Personalizează înălțimea hărții" - -#: includes/fields/class-acf-field-google-map.php:234 -#: includes/fields/class-acf-field-image.php:259 -#: includes/fields/class-acf-field-image.php:295 -#: includes/fields/class-acf-field-oembed.php:280 -msgid "Height" -msgstr "Înălțime" - -#: includes/fields/class-acf-field-google-map.php:223 -msgid "Set the initial zoom level" -msgstr "" - -#: includes/fields/class-acf-field-google-map.php:222 -msgid "Zoom" -msgstr "" - -#: includes/fields/class-acf-field-google-map.php:196 -#: includes/fields/class-acf-field-google-map.php:209 -msgid "Center the initial map" -msgstr "Centrează harta inițială" - -#: includes/fields/class-acf-field-google-map.php:195 -#: includes/fields/class-acf-field-google-map.php:208 -msgid "Center" -msgstr "" - -#: includes/fields/class-acf-field-google-map.php:163 -msgid "Search for address..." -msgstr "Caută adresa..." - -#: includes/fields/class-acf-field-google-map.php:160 -msgid "Find current location" -msgstr "Găsește locația curentă" - -#: includes/fields/class-acf-field-google-map.php:159 -msgid "Clear location" -msgstr "" - -#: includes/fields/class-acf-field-google-map.php:158 -#: includes/fields/class-acf-field-relationship.php:628 -msgid "Search" -msgstr "Caută" - -#: includes/fields/class-acf-field-google-map.php:63 -#: assets/build/js/acf-input.js:2840 assets/build/js/acf-input.js:3026 -msgid "Sorry, this browser does not support geolocation" -msgstr "Regret, acest navigator nu acceptă localizarea geografică" - -#: includes/fields/class-acf-field-google-map.php:25 -msgid "Google Map" -msgstr "" - -#: includes/fields/class-acf-field-date_picker.php:212 -#: includes/fields/class-acf-field-date_time_picker.php:201 -#: includes/fields/class-acf-field-time_picker.php:132 -msgid "The format returned via template functions" -msgstr "" - -#: includes/fields/class-acf-field-color_picker.php:180 -#: includes/fields/class-acf-field-date_picker.php:211 -#: includes/fields/class-acf-field-date_time_picker.php:200 -#: includes/fields/class-acf-field-image.php:187 -#: includes/fields/class-acf-field-post_object.php:411 -#: includes/fields/class-acf-field-relationship.php:638 -#: includes/fields/class-acf-field-select.php:391 -#: includes/fields/class-acf-field-time_picker.php:131 -#: includes/fields/class-acf-field-user.php:66 -msgid "Return Format" -msgstr "Format returnat" - -#: includes/fields/class-acf-field-date_picker.php:190 -#: includes/fields/class-acf-field-date_picker.php:221 -#: includes/fields/class-acf-field-date_time_picker.php:192 -#: includes/fields/class-acf-field-date_time_picker.php:210 -#: includes/fields/class-acf-field-time_picker.php:123 -#: includes/fields/class-acf-field-time_picker.php:139 -msgid "Custom:" -msgstr "Personalizat:" - -#: includes/fields/class-acf-field-date_picker.php:182 -#: includes/fields/class-acf-field-date_time_picker.php:183 -#: includes/fields/class-acf-field-time_picker.php:116 -msgid "The format displayed when editing a post" -msgstr "Formatul afișat la editarea unui articol" - -#: includes/fields/class-acf-field-date_picker.php:181 -#: includes/fields/class-acf-field-date_time_picker.php:182 -#: includes/fields/class-acf-field-time_picker.php:115 -msgid "Display Format" -msgstr "Format de afișare" - -#: includes/fields/class-acf-field-time_picker.php:25 -msgid "Time Picker" -msgstr "Selector de oră" - -#. translators: counts for inactive field groups -#: acf.php:503 -msgid "Inactive (%s)" -msgid_plural "Inactive (%s)" -msgstr[0] "Inactive (%s)" -msgstr[1] "Inactive (%s)" -msgstr[2] "Inactive (%s)" - -#: acf.php:462 -msgid "No Fields found in Trash" -msgstr "Nu am găsit niciun câmp la gunoi" - -#: acf.php:461 -msgid "No Fields found" -msgstr "Nu am găsit niciun câmp" - -#: acf.php:460 -msgid "Search Fields" -msgstr "Caută câmpuri" - -#: acf.php:459 -msgid "View Field" -msgstr "Vezi câmpul" - -#: acf.php:458 includes/admin/views/acf-field-group/fields.php:115 -msgid "New Field" -msgstr "Câmp nou" - -#: acf.php:457 -msgid "Edit Field" -msgstr "Editează câmpul" - -#: acf.php:456 -msgid "Add New Field" -msgstr "Adaugă un nou câmp" - -#: acf.php:454 -msgid "Field" -msgstr "Câmp" - -#: acf.php:453 includes/admin/post-types/admin-field-group.php:163 -#: includes/admin/post-types/admin-field-groups.php:119 -#: includes/admin/views/acf-field-group/fields.php:32 -msgid "Fields" -msgstr "Câmpuri" - -#: acf.php:428 -msgid "No Field Groups found in Trash" -msgstr "Nu am găsit niciun grup de câmpuri la gunoi" - -#: acf.php:427 -msgid "No Field Groups found" -msgstr "Nu am găsit niciun grup de câmpuri" - -#: acf.php:426 -msgid "Search Field Groups" -msgstr "Caută grupuri de câmpuri" - -#: acf.php:425 -msgid "View Field Group" -msgstr "Vezi grupul de câmpuri" - -#: acf.php:424 -msgid "New Field Group" -msgstr "Grup de câmpuri nou" - -#: acf.php:423 -msgid "Edit Field Group" -msgstr "Editează grupul de câmpuri" - -#: acf.php:422 -msgid "Add New Field Group" -msgstr "Adaugă grup de câmpuri nou" - -#: acf.php:421 acf.php:455 -#: includes/admin/views/acf-post-type/advanced-settings.php:219 -#: includes/admin/views/acf-post-type/advanced-settings.php:221 -#: includes/post-types/class-acf-post-type.php:93 -#: includes/post-types/class-acf-taxonomy.php:92 -msgid "Add New" -msgstr "" - -#: acf.php:420 -msgid "Field Group" -msgstr "Grup de câmpuri" - -#: acf.php:419 includes/admin/post-types/admin-field-groups.php:78 -#: includes/admin/post-types/admin-post-types.php:138 -#: includes/admin/post-types/admin-taxonomies.php:138 -msgid "Field Groups" -msgstr "Grupuri de câmpuri" - -#. Description of the plugin -msgid "Customize WordPress with powerful, professional and intuitive fields." -msgstr "" -"Personalizează WordPress cu câmpuri puternice, profesionale și intuitive." - -#. Plugin URI of the plugin -msgid "https://www.advancedcustomfields.com" -msgstr "https://www.advancedcustomfields.com" - -#. Plugin Name of the plugin -#: acf.php:94 -msgid "Advanced Custom Fields" -msgstr "" - -#: pro/acf-pro.php:27 -msgid "Advanced Custom Fields PRO" -msgstr "Câmpuri Avansate Personalizate PRO" - -#: pro/blocks.php:170 -#, fuzzy -#| msgid "%s value is required" -msgid "Block type name is required." -msgstr "%s valoarea este obligatorie" - -#. translators: The name of the block type -#: pro/blocks.php:178 -msgid "Block type \"%s\" is already registered." -msgstr "" - -#: pro/blocks.php:726 -msgid "Switch to Edit" -msgstr "" - -#: pro/blocks.php:727 -msgid "Switch to Preview" -msgstr "" - -#: pro/blocks.php:728 -msgid "Change content alignment" -msgstr "" - -#. translators: %s: Block type title -#: pro/blocks.php:731 -#, fuzzy -#| msgid "Settings" -msgid "%s settings" -msgstr "Setări" - -#: pro/blocks.php:936 -msgid "This block contains no editable fields." -msgstr "" - -#. translators: %s: an admin URL to the field group edit screen -#: pro/blocks.php:942 -msgid "" -"Assign a field group to add fields to " -"this block." -msgstr "" - -#: pro/options-page.php:78 -msgid "Options Updated" -msgstr "Opțiunile au fost actualizate" - -#: pro/updates.php:99 -#, fuzzy -#| msgid "" -#| "To enable updates, please enter your license key on the Updates page. If you don't have a licence key, please see details & pricing." -msgid "" -"To enable updates, please enter your license key on the Updates page. If you don't have a licence key, please see details & pricing." -msgstr "" -"Pentru a activa actualizările, este nevoie să introduci licența în pagina de actualizări. Dacă nu ai o licență, verifică aici detaliile și prețul." - -#: pro/updates.php:159 -msgid "" -"ACF Activation Error. Your defined license key has changed, but an " -"error occurred when deactivating your old licence" -msgstr "" - -#: pro/updates.php:154 -msgid "" -"ACF Activation Error. Your defined license key has changed, but an " -"error occurred when connecting to activation server" -msgstr "" - -#: pro/updates.php:192 -msgid "ACF Activation Error" -msgstr "" - -#: pro/updates.php:187 -#, fuzzy -#| msgid "Error. Could not connect to update server" -msgid "" -"ACF Activation Error. An error occurred when connecting to activation " -"server" -msgstr "Eroare. Conexiunea cu servărul a fost pierdută" - -#: pro/updates.php:279 -msgid "Check Again" -msgstr "Verifică din nou" - -#: pro/updates.php:593 -#, fuzzy -#| msgid "Error. Could not connect to update server" -msgid "ACF Activation Error. Could not connect to activation server" -msgstr "Eroare. Conexiunea cu servărul a fost pierdută" - -#: pro/admin/admin-options-page.php:195 -msgid "Publish" -msgstr "Publică" - -#: pro/admin/admin-options-page.php:199 -msgid "" -"No Custom Field Groups found for this options page. Create a " -"Custom Field Group" -msgstr "" -"Nu a fost găsit nici un grup de câmpuri personalizate. Creează un Grup de Câmpuri Personalizat" - -#: pro/admin/admin-updates.php:52 -msgid "Error. Could not connect to update server" -msgstr "Eroare. Conexiunea cu servărul a fost pierdută" - -#: pro/admin/admin-updates.php:212 -msgid "" -"Error. Could not authenticate update package. Please check again or " -"deactivate and reactivate your ACF PRO license." -msgstr "" - -#: pro/admin/admin-updates.php:199 -msgid "" -"Error. Your license for this site has expired or been deactivated. " -"Please reactivate your ACF PRO license." -msgstr "" - -#: pro/fields/class-acf-field-clone.php:27, -#: pro/fields/class-acf-field-repeater.php:31 -msgid "" -"Allows you to select and display existing fields. It does not duplicate any " -"fields in the database, but loads and displays the selected fields at run-" -"time. The Clone field can either replace itself with the selected fields or " -"display the selected fields as a group of subfields." -msgstr "" - -#: pro/fields/class-acf-field-clone.php:819 -msgid "Select one or more fields you wish to clone" -msgstr "" - -#: pro/fields/class-acf-field-clone.php:838 -msgid "Display" -msgstr "Arată" - -#: pro/fields/class-acf-field-clone.php:839 -msgid "Specify the style used to render the clone field" -msgstr "" - -#: pro/fields/class-acf-field-clone.php:844 -msgid "Group (displays selected fields in a group within this field)" -msgstr "" - -#: pro/fields/class-acf-field-clone.php:845 -msgid "Seamless (replaces this field with selected fields)" -msgstr "" - -#: pro/fields/class-acf-field-clone.php:868 -msgid "Labels will be displayed as %s" -msgstr "" - -#: pro/fields/class-acf-field-clone.php:873 -msgid "Prefix Field Labels" -msgstr "" - -#: pro/fields/class-acf-field-clone.php:883 -msgid "Values will be saved as %s" -msgstr "" - -#: pro/fields/class-acf-field-clone.php:888 -msgid "Prefix Field Names" -msgstr "" - -#: pro/fields/class-acf-field-clone.php:1005 -msgid "Unknown field" -msgstr "Câmp necunoscut" - -#: pro/fields/class-acf-field-clone.php:1042 -msgid "Unknown field group" -msgstr "Grup de câmpuri necunoscut" - -#: pro/fields/class-acf-field-clone.php:1046 -msgid "All fields from %s field group" -msgstr "" - -#: pro/fields/class-acf-field-flexible-content.php:27 -msgid "" -"Allows you to define, create and manage content with total control by " -"creating layouts that contain subfields that content editors can choose from." -msgstr "" - -#: pro/fields/class-acf-field-flexible-content.php:36, -#: pro/fields/class-acf-field-repeater.php:103, -#: pro/fields/class-acf-field-repeater.php:297 -msgid "Add Row" -msgstr "Adaugă o linie nouă" - -#: pro/fields/class-acf-field-flexible-content.php:76, -#: pro/fields/class-acf-field-flexible-content.php:943, -#: pro/fields/class-acf-field-flexible-content.php:1022 -#, fuzzy -#| msgid "layout" -msgid "layout" -msgid_plural "layouts" -msgstr[0] "schemă" -msgstr[1] "schemă" -msgstr[2] "schemă" - -#: pro/fields/class-acf-field-flexible-content.php:77 -msgid "layouts" -msgstr "scheme" - -#: pro/fields/class-acf-field-flexible-content.php:81, -#: pro/fields/class-acf-field-flexible-content.php:942, -#: pro/fields/class-acf-field-flexible-content.php:1021 -msgid "This field requires at least {min} {label} {identifier}" -msgstr "Acest câmp necesită cel puțin {min} {label} {identifier}" - -#: pro/fields/class-acf-field-flexible-content.php:82 -#, fuzzy -#| msgid "This field has a limit of {max} {identifier}" -msgid "This field has a limit of {max} {label} {identifier}" -msgstr "Acest câmp are o limită de {max} {identifier}" - -#: pro/fields/class-acf-field-flexible-content.php:85 -msgid "{available} {label} {identifier} available (max {max})" -msgstr "{available} {label} {identifier} disponibile (max {max})" - -#: pro/fields/class-acf-field-flexible-content.php:86 -msgid "{required} {label} {identifier} required (min {min})" -msgstr "{required} {label} {identifier} obligatoriu (min {min})" - -#: pro/fields/class-acf-field-flexible-content.php:89 -msgid "Flexible Content requires at least 1 layout" -msgstr "Conținutul Flexibil necesită cel puțin 1 schemă" - -#: pro/fields/class-acf-field-flexible-content.php:282 -msgid "Click the \"%s\" button below to start creating your layout" -msgstr "Apasă butonul \"%s\" de mai jos pentru a începe să îți creezi schema" - -#: pro/fields/class-acf-field-flexible-content.php:423 -msgid "Add layout" -msgstr "Adaugă Schema" - -#: pro/fields/class-acf-field-flexible-content.php:424 -#, fuzzy -#| msgid "Duplicate Layout" -msgid "Duplicate layout" -msgstr "Copiază Schema" - -#: pro/fields/class-acf-field-flexible-content.php:425 -msgid "Remove layout" -msgstr "Înlătură Schema" - -#: pro/fields/class-acf-field-flexible-content.php:426, -#: pro/fields/class-acf-repeater-table.php:382 -msgid "Click to toggle" -msgstr "" - -#: pro/fields/class-acf-field-flexible-content.php:562 -msgid "Delete Layout" -msgstr "Șterge Schema" - -#: pro/fields/class-acf-field-flexible-content.php:563 -msgid "Duplicate Layout" -msgstr "Copiază Schema" - -#: pro/fields/class-acf-field-flexible-content.php:564 -msgid "Add New Layout" -msgstr "Adaugă o Nouă Schemă" - -#: pro/fields/class-acf-field-flexible-content.php:564 -#, fuzzy -#| msgid "Add layout" -msgid "Add Layout" -msgstr "Adaugă Schema" - -#: pro/fields/class-acf-field-flexible-content.php:647 -msgid "Min" -msgstr "Min" - -#: pro/fields/class-acf-field-flexible-content.php:662 -msgid "Max" -msgstr "Max" - -#: pro/fields/class-acf-field-flexible-content.php:705 -msgid "Minimum Layouts" -msgstr "Scheme Minime" - -#: pro/fields/class-acf-field-flexible-content.php:716 -msgid "Maximum Layouts" -msgstr "Scheme Maxime" - -#: pro/fields/class-acf-field-flexible-content.php:727, -#: pro/fields/class-acf-field-repeater.php:293 -msgid "Button Label" -msgstr "Buton Etichetă" - -#: pro/fields/class-acf-field-flexible-content.php:1710, -#: pro/fields/class-acf-field-repeater.php:918 -msgid "%s must be of type array or null." -msgstr "" - -#: pro/fields/class-acf-field-flexible-content.php:1721 -msgid "%1$s must contain at least %2$s %3$s layout." -msgid_plural "%1$s must contain at least %2$s %3$s layouts." -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: pro/fields/class-acf-field-flexible-content.php:1737 -msgid "%1$s must contain at most %2$s %3$s layout." -msgid_plural "%1$s must contain at most %2$s %3$s layouts." -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: pro/fields/class-acf-field-gallery.php:27 -msgid "" -"An interactive interface for managing a collection of attachments, such as " -"images." -msgstr "" - -#: pro/fields/class-acf-field-gallery.php:77 -msgid "Add Image to Gallery" -msgstr "Adaugă imagini în Galerie" - -#: pro/fields/class-acf-field-gallery.php:78 -msgid "Maximum selection reached" -msgstr "Selecția maximă atinsă" - -#: pro/fields/class-acf-field-gallery.php:324 -msgid "Length" -msgstr "Lungime" - -#: pro/fields/class-acf-field-gallery.php:368 -msgid "Caption" -msgstr "" - -#: pro/fields/class-acf-field-gallery.php:380 -msgid "Alt Text" -msgstr "Text alternativ" - -#: pro/fields/class-acf-field-gallery.php:504 -msgid "Add to gallery" -msgstr "Adaugă în galerie" - -#: pro/fields/class-acf-field-gallery.php:508 -msgid "Bulk actions" -msgstr "Acțiuni în masă" - -#: pro/fields/class-acf-field-gallery.php:509 -msgid "Sort by date uploaded" -msgstr "Sortează după data încărcării" - -#: pro/fields/class-acf-field-gallery.php:510 -msgid "Sort by date modified" -msgstr "Sortează după data modficării" - -#: pro/fields/class-acf-field-gallery.php:511 -msgid "Sort by title" -msgstr "Sortează după titlu" - -#: pro/fields/class-acf-field-gallery.php:512 -msgid "Reverse current order" -msgstr "Inversează ordinea curentă" - -#: pro/fields/class-acf-field-gallery.php:524 -msgid "Close" -msgstr "Închide" - -#: pro/fields/class-acf-field-gallery.php:615 -msgid "Minimum Selection" -msgstr "Selecție minimă" - -#: pro/fields/class-acf-field-gallery.php:625 -msgid "Maximum Selection" -msgstr "Selecție maximă" - -#: pro/fields/class-acf-field-gallery.php:707 -msgid "Allowed file types" -msgstr "Tipuri de fișiere permise" - -#: pro/fields/class-acf-field-gallery.php:727 -msgid "Insert" -msgstr "" - -#: pro/fields/class-acf-field-gallery.php:728 -msgid "Specify where new attachments are added" -msgstr "" - -#: pro/fields/class-acf-field-gallery.php:732 -msgid "Append to the end" -msgstr "Adaugă la sfârșit" - -#: pro/fields/class-acf-field-gallery.php:733 -msgid "Prepend to the beginning" -msgstr "Adaugă la început" - -#: pro/fields/class-acf-field-repeater.php:66, -#: pro/fields/class-acf-field-repeater.php:463 -#, fuzzy -#| msgid "Minimum rows reached ({min} rows)" -msgid "Minimum rows not reached ({min} rows)" -msgstr "Numărul minim de linii a fost atins ({min} rows)" - -#: pro/fields/class-acf-field-repeater.php:67 -msgid "Maximum rows reached ({max} rows)" -msgstr "Numărul maxim de linii a fost atins ({max} rows)" - -#: pro/fields/class-acf-field-repeater.php:68 -msgid "Error loading page" -msgstr "" - -#: pro/fields/class-acf-field-repeater.php:69 -msgid "Order will be assigned upon save" -msgstr "" - -#: pro/fields/class-acf-field-repeater.php:196 -msgid "Useful for fields with a large number of rows." -msgstr "" - -#: pro/fields/class-acf-field-repeater.php:207 -#, fuzzy -#| msgid "Posts Page" -msgid "Rows Per Page" -msgstr "Pagina Articolelor" - -#: pro/fields/class-acf-field-repeater.php:208 -msgid "Set the number of rows to be displayed on a page." -msgstr "" - -#: pro/fields/class-acf-field-repeater.php:240 -msgid "Minimum Rows" -msgstr "Numărul minim de Linii" - -#: pro/fields/class-acf-field-repeater.php:251 -msgid "Maximum Rows" -msgstr "Numărul maxim de Linii" - -#: pro/fields/class-acf-field-repeater.php:281 -msgid "Collapsed" -msgstr "" - -#: pro/fields/class-acf-field-repeater.php:282 -msgid "Select a sub field to show when row is collapsed" -msgstr "" - -#: pro/fields/class-acf-field-repeater.php:1060 -msgid "Invalid field key or name." -msgstr "" - -#: pro/fields/class-acf-field-repeater.php:1069 -msgid "There was an error retrieving the field." -msgstr "" - -#: pro/fields/class-acf-repeater-table.php:369 -#, fuzzy -#| msgid "Drag to reorder" -msgid "Click to reorder" -msgstr "Trage pentru a reordona" - -#: pro/fields/class-acf-repeater-table.php:402 -msgid "Add row" -msgstr "Adaugă linie" - -#: pro/fields/class-acf-repeater-table.php:403 -#, fuzzy -#| msgid "Duplicate" -msgid "Duplicate row" -msgstr "Copiază" - -#: pro/fields/class-acf-repeater-table.php:404 -msgid "Remove row" -msgstr "Înlătură linie" - -#: pro/fields/class-acf-repeater-table.php:448, -#: pro/fields/class-acf-repeater-table.php:465, -#: pro/fields/class-acf-repeater-table.php:466 -#, fuzzy -#| msgid "Current User" -msgid "Current Page" -msgstr "Utilizatorul Curent" - -#: pro/fields/class-acf-repeater-table.php:456, -#: pro/fields/class-acf-repeater-table.php:457 -#, fuzzy -#| msgid "Front Page" -msgid "First Page" -msgstr "Pagina principală" - -#: pro/fields/class-acf-repeater-table.php:460, -#: pro/fields/class-acf-repeater-table.php:461 -#, fuzzy -#| msgid "Posts Page" -msgid "Previous Page" -msgstr "Pagina Articolelor" - -#. translators: 1: Current page, 2: Total pages. -#: pro/fields/class-acf-repeater-table.php:470 -msgctxt "paging" -msgid "%1$s of %2$s" -msgstr "" - -#: pro/fields/class-acf-repeater-table.php:477, -#: pro/fields/class-acf-repeater-table.php:478 -#, fuzzy -#| msgid "Front Page" -msgid "Next Page" -msgstr "Pagina principală" - -#: pro/fields/class-acf-repeater-table.php:481, -#: pro/fields/class-acf-repeater-table.php:482 -#, fuzzy -#| msgid "Posts Page" -msgid "Last Page" -msgstr "Pagina Articolelor" - -#: pro/locations/class-acf-location-block.php:71 -#, fuzzy -#| msgid "No options pages exist" -msgid "No block types exist" -msgstr "Nu există nicio pagină de opțiuni" - -#: pro/locations/class-acf-location-options-page.php:70 -msgid "No options pages exist" -msgstr "Nu există nicio pagină de opțiuni" - -#: pro/admin/views/html-settings-updates.php:6 -msgid "Deactivate License" -msgstr "Dezactivează Licența" - -#: pro/admin/views/html-settings-updates.php:6 -msgid "Activate License" -msgstr "Activează Licența" - -#: pro/admin/views/html-settings-updates.php:16 -msgid "License Information" -msgstr "" - -#: pro/admin/views/html-settings-updates.php:34 -msgid "" -"To unlock updates, please enter your license key below. If you don't have a " -"licence key, please see details & pricing." -msgstr "" - -#: pro/admin/views/html-settings-updates.php:37 -msgid "License Key" -msgstr "Cod de activare" - -#: pro/admin/views/html-settings-updates.php:22 -msgid "Your license key is defined in wp-config.php." -msgstr "" - -#: pro/admin/views/html-settings-updates.php:29 -#, fuzzy -#| msgid "Better Validation" -msgid "Retry Activation" -msgstr "O validare mai bună" - -#: pro/admin/views/html-settings-updates.php:61 -msgid "Update Information" -msgstr "Actualizează infromațiile" - -#: pro/admin/views/html-settings-updates.php:68 -msgid "Current Version" -msgstr "Versiunea curentă" - -#: pro/admin/views/html-settings-updates.php:76 -msgid "Latest Version" -msgstr "Ultima versiune" - -#: pro/admin/views/html-settings-updates.php:84 -msgid "Update Available" -msgstr "Sunt disponibile actualizări" - -#: pro/admin/views/html-settings-updates.php:98 -msgid "Upgrade Notice" -msgstr "Anunț Actualizări" - -#: pro/admin/views/html-settings-updates.php:126 -msgid "Check For Updates" -msgstr "" - -#: pro/admin/views/html-settings-updates.php:121 -#, fuzzy -#| msgid "Please enter your license key above to unlock updates" -msgid "Enter your license key to unlock updates" -msgstr "" -"Te rog sa introduci codul de activare în câmpul de mai sus pentru a permite " -"actualizări" - -#: pro/admin/views/html-settings-updates.php:119 -msgid "Update Plugin" -msgstr "Actualizează Modulul" - -#: pro/admin/views/html-settings-updates.php:117 -#, fuzzy -#| msgid "Please enter your license key above to unlock updates" -msgid "Please reactivate your license to unlock updates" -msgstr "" -"Te rog sa introduci codul de activare în câmpul de mai sus pentru a permite " -"actualizări" diff --git a/lang/acf-ru_RU.mo b/lang/acf-ru_RU.mo deleted file mode 100644 index e701985..0000000 Binary files a/lang/acf-ru_RU.mo and /dev/null differ diff --git a/lang/acf-ru_RU.po b/lang/acf-ru_RU.po deleted file mode 100644 index 1dd40d0..0000000 --- a/lang/acf-ru_RU.po +++ /dev/null @@ -1,6318 +0,0 @@ -# Advanced Custom Fields Translations are a combination of translate.wordpress.org contributions, -# combined with user contributed strings for the PRO version. -# Translations from translate.wordpress.org take priority over translations in this file. -# translate.wordpress.org contributions are synced at the time of each release. -# -# If you would like to contribute translations, please visit -# https://translate.wordpress.org/projects/wp-plugins/advanced-custom-fields/stable/ -# -# For additional ACF PRO strings, please submit a pull request over on the ACF GitHub repo at -# http://github.com/advancedcustomfields/acf using the .pot (and any existing .po) files in /lang/pro/ -# -# This file is distributed under the same license as Advanced Custom Fields. -msgid "" -msgstr "" -"PO-Revision-Date: 2023-11-28T09:14:32+00:00\n" -"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n" -"Language: ru_RU\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: gettext\n" -"Project-Id-Version: Advanced Custom Fields\n" - -#: includes/admin/views/global/navigation.php:221 -msgid "Renew ACF PRO License" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:17 -msgid "Renew License" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:14 -msgid "Manage License" -msgstr "" - -#: includes/admin/views/acf-field-group/options.php:102 -msgid "'High' position not supported in the Block Editor" -msgstr "" - -#: includes/admin/views/options-page-preview.php:30 -msgid "Upgrade to ACF PRO" -msgstr "" - -#. translators: %s URL to ACF options pages documentation -#: includes/admin/views/options-page-preview.php:7 -msgid "" -"ACF options pages are custom admin " -"pages for managing global settings via fields. You can create multiple pages " -"and sub-pages." -msgstr "" - -#: includes/admin/views/global/header.php:35 -msgid "Add Options Page" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:703 -msgid "In the editor used as the placeholder of the title." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:702 -msgid "Title Placeholder" -msgstr "" - -#: includes/admin/views/global/navigation.php:97 -msgid "4 Months Free" -msgstr "4 месяца бесплатно" - -#. translators: %s - A singular label for a post type or taxonomy. -#: includes/admin/views/global/form-top.php:56 -msgid " (Duplicated from %s)" -msgstr " (Скопировано из %s)" - -#: includes/admin/tools/class-acf-admin-tool-export.php:298 -msgid "Select Options Pages" -msgstr "Выберите страницы настроек" - -#: includes/admin/post-types/admin-taxonomy.php:107 -msgid "Duplicate taxonomy" -msgstr "Скопировать таксономию" - -#: includes/admin/post-types/admin-post-type.php:106 -#: includes/admin/post-types/admin-taxonomy.php:106 -msgid "Create taxonomy" -msgstr "Создать таксономию" - -#: includes/admin/post-types/admin-post-type.php:105 -msgid "Duplicate post type" -msgstr "Скопировать тип записи" - -#: includes/admin/post-types/admin-post-type.php:104 -#: includes/admin/post-types/admin-taxonomy.php:108 -msgid "Create post type" -msgstr "Создать тип записи" - -#: includes/admin/post-types/admin-post-type.php:103 -#: includes/admin/post-types/admin-taxonomy.php:105 -msgid "Link field groups" -msgstr "Привязать группы полей" - -#: includes/admin/post-types/admin-post-type.php:102 -#: includes/admin/post-types/admin-taxonomy.php:104 -msgid "Add fields" -msgstr "Добавить поля" - -#: includes/admin/post-types/admin-field-group.php:121 -#: assets/build/js/acf-field-group.js:2753 -#: assets/build/js/acf-field-group.js:3236 -msgid "This Field" -msgstr "Это поле" - -#: includes/admin/admin.php:267 -msgid "ACF PRO" -msgstr "ACF (PRO)" - -#: includes/admin/admin.php:265 -msgid "Feedback" -msgstr "Обратная связь" - -#: includes/admin/admin.php:263 -msgid "Support" -msgstr "Поддержка" - -#. translators: This text is prepended by a link to ACF's website, and appended -#. by a link to WP Engine's website. -#: includes/admin/admin.php:238 -msgid "is developed and maintained by" -msgstr "разработан и поддерживается" - -#. translators: %s - either "post type" or "taxonomy" -#: includes/admin/admin-internal-post-type.php:321 -msgid "Add this %s to the location rules of the selected field groups." -msgstr "Добавьте %s в правила местонахождения выбранных групп полей." - -#. translators: %s the URL to ACF's bidirectional relationship documentation -#: includes/acf-bidirectional-functions.php:271 -msgid "" -"Enabling the bidirectional setting allows you to update a value in the " -"target fields for each value selected for this field, adding or removing the " -"Post ID, Taxonomy ID or User ID of the item being updated. For more " -"information, please read the documentation." -msgstr "" - -#: includes/acf-bidirectional-functions.php:247 -msgid "" -"Select field(s) to store the reference back to the item being updated. You " -"may select this field. Target fields must be compatible with where this " -"field is being displayed. For example, if this field is displayed on a " -"Taxonomy, your target field should be of type Taxonomy" -msgstr "" - -#: includes/acf-bidirectional-functions.php:246 -msgid "Target Field" -msgstr "Целевое поле" - -#: includes/acf-bidirectional-functions.php:220 -msgid "Update a field on the selected values, referencing back to this ID" -msgstr "" - -#: includes/acf-bidirectional-functions.php:219 -msgid "Bidirectional" -msgstr "Двунаправленный" - -#. translators: %s A field type name, such as "Relationship" -#: includes/acf-bidirectional-functions.php:192 -msgid "%s Field" -msgstr "%s поле" - -#: includes/fields/class-acf-field-page_link.php:517 -#: includes/fields/class-acf-field-post_object.php:426 -#: includes/fields/class-acf-field-select.php:407 -#: includes/fields/class-acf-field-user.php:82 -msgid "Select Multiple" -msgstr "Выбор нескольких пунктов" - -#: includes/admin/views/global/navigation.php:233 -msgid "WP Engine logo" -msgstr "Логотип WP Engine" - -#: includes/admin/views/acf-taxonomy/basic-settings.php:58 -msgid "Lower case letters, underscores and dashes only, Max 32 characters." -msgstr "" -"Только буквы нижнего регистра, подчеркивания и дефисы. Максимум 32 символа." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1136 -msgid "The capability name for assigning terms of this taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1135 -msgid "Assign Terms Capability" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1119 -msgid "The capability name for deleting terms of this taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1118 -msgid "Delete Terms Capability" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1102 -msgid "The capability name for editing terms of this taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1101 -msgid "Edit Terms Capability" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1085 -msgid "The capability name for managing terms of this taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1084 -msgid "Manage Terms Capability" -msgstr "Возможность управления термами" - -#: includes/admin/views/acf-post-type/advanced-settings.php:886 -msgid "" -"Sets whether posts should be excluded from search results and taxonomy " -"archive pages." -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:74 -msgid "More Tools from WP Engine" -msgstr "Больше инструментов от WP Engine" - -#. translators: %s - WP Engine logo -#: includes/admin/views/acf-field-group/pro-features.php:69 -msgid "Built for those that build with WordPress, by the team at %s" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:6 -msgid "View Pricing & Upgrade" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:3 -#: includes/admin/views/options-page-preview.php:29 -msgid "Learn More" -msgstr "Читать больше" - -#: includes/admin/views/acf-field-group/pro-features.php:28 -msgid "" -"Speed up your workflow and develop better websites with features like ACF " -"Blocks and Options Pages, and sophisticated field types like Repeater, " -"Flexible Content, Clone, and Gallery." -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:2 -msgid "Unlock Advanced Features and Build Even More with ACF PRO" -msgstr "Разблокируйте Дополнительные функции и сделайте больше с ACF Pro" - -#. translators: %s - singular label of post type/taxonomy, i.e. "Movie"/"Genre" -#: includes/admin/views/global/form-top.php:19 -msgid "%s fields" -msgstr "%s поля" - -#: includes/admin/post-types/admin-taxonomies.php:293 -msgid "No terms" -msgstr "Нет терминов" - -#: includes/admin/post-types/admin-taxonomies.php:266 -msgid "No post types" -msgstr "Нет типов записей" - -#: includes/admin/post-types/admin-post-types.php:289 -msgid "No posts" -msgstr "Нет записей" - -#: includes/admin/post-types/admin-post-types.php:263 -msgid "No taxonomies" -msgstr "Нет таксономий" - -#: includes/admin/post-types/admin-post-types.php:208 -#: includes/admin/post-types/admin-taxonomies.php:208 -msgid "No field groups" -msgstr "Нет групп полей" - -#: includes/admin/post-types/admin-field-groups.php:281 -msgid "No fields" -msgstr "Нет полей" - -#: includes/admin/post-types/admin-field-groups.php:154 -#: includes/admin/post-types/admin-post-types.php:172 -#: includes/admin/post-types/admin-taxonomies.php:172 -msgid "No description" -msgstr "Нет описания" - -#: includes/fields/class-acf-field-page_link.php:484 -#: includes/fields/class-acf-field-post_object.php:389 -#: includes/fields/class-acf-field-relationship.php:601 -msgid "Any post status" -msgstr "Любой статус записи" - -#: includes/post-types/class-acf-taxonomy.php:284 -msgid "" -"This taxonomy key is already in use by another taxonomy registered outside " -"of ACF and cannot be used." -msgstr "" -"Указанный ключ таксономии уже используется другой таксономией, " -"зарегистрированной вне ACF, и не может быть использован." - -#: includes/post-types/class-acf-taxonomy.php:279 -msgid "" -"This taxonomy key is already in use by another taxonomy in ACF and cannot be " -"used." -msgstr "" -"Указанный ключ таксономии уже используется другой таксономией в ACF и не " -"может быть использован." - -#: includes/post-types/class-acf-taxonomy.php:252 -msgid "" -"The taxonomy key must only contain lower case alphanumeric characters, " -"underscores or dashes." -msgstr "" -"Ключ таксономии должен содержать только буквенно-цифровые символы в нижнем " -"регистре, знак подчеркивания или тире." - -#: includes/post-types/class-acf-taxonomy.php:247 -msgid "The taxonomy key must be under 32 characters." -msgstr "Ключ таксономии должен содержать не более 32 символов." - -#: includes/post-types/class-acf-taxonomy.php:99 -msgid "No Taxonomies found in Trash" -msgstr "В корзине не найдено ни одной таксономии" - -#: includes/post-types/class-acf-taxonomy.php:98 -msgid "No Taxonomies found" -msgstr "Таксономии не найдены" - -#: includes/post-types/class-acf-taxonomy.php:97 -msgid "Search Taxonomies" -msgstr "Найти таксономии" - -#: includes/post-types/class-acf-taxonomy.php:96 -msgid "View Taxonomy" -msgstr "Смотреть таксономию" - -#: includes/post-types/class-acf-taxonomy.php:95 -msgid "New Taxonomy" -msgstr "Новая таксономия" - -#: includes/post-types/class-acf-taxonomy.php:94 -msgid "Edit Taxonomy" -msgstr "Править таксономию" - -#: includes/post-types/class-acf-taxonomy.php:93 -msgid "Add New Taxonomy" -msgstr "Добавить новую таксономию" - -#: includes/post-types/class-acf-post-type.php:100 -msgid "No Post Types found in Trash" -msgstr "В корзине не найдено ни одного типа записей" - -#: includes/post-types/class-acf-post-type.php:99 -msgid "No Post Types found" -msgstr "Типы записей не найдены" - -#: includes/post-types/class-acf-post-type.php:98 -msgid "Search Post Types" -msgstr "Найти типы записей" - -#: includes/post-types/class-acf-post-type.php:97 -msgid "View Post Type" -msgstr "Смотреть тип записи" - -#: includes/post-types/class-acf-post-type.php:96 -msgid "New Post Type" -msgstr "Новый тип записи" - -#: includes/post-types/class-acf-post-type.php:95 -msgid "Edit Post Type" -msgstr "Изменить тип записи" - -#: includes/post-types/class-acf-post-type.php:94 -msgid "Add New Post Type" -msgstr "Добавить новый тип записи" - -#: includes/post-types/class-acf-post-type.php:361 -msgid "" -"This post type key is already in use by another post type registered outside " -"of ACF and cannot be used." -msgstr "" -"Указанный ключ типа записи уже используется другим типом записи, " -"зарегистрированным вне ACF, и не может быть использован." - -#: includes/post-types/class-acf-post-type.php:356 -msgid "" -"This post type key is already in use by another post type in ACF and cannot " -"be used." -msgstr "" -"Указанный ключ типа записи уже используется другим типом записи в ACF и не " -"может быть использован." - -#. translators: %s a link to WordPress.org's Reserved Terms page -#: includes/post-types/class-acf-post-type.php:335 -#: includes/post-types/class-acf-taxonomy.php:258 -msgid "" -"This field must not be a WordPress reserved " -"term." -msgstr "" -"Это поле является зарезервированным " -"термином WordPress." - -#: includes/post-types/class-acf-post-type.php:329 -msgid "" -"The post type key must only contain lower case alphanumeric characters, " -"underscores or dashes." -msgstr "" -"Ключ типа записи должен содержать только буквенно-цифровые символы в нижнем " -"регистре, знак подчеркивания или тире." - -#: includes/post-types/class-acf-post-type.php:324 -msgid "The post type key must be under 20 characters." -msgstr "Ключ типа записи должен содержать не более 20 символов." - -#: includes/fields/class-acf-field-wysiwyg.php:27 -msgid "We do not recommend using this field in ACF Blocks." -msgstr "Мы не рекомендуем использовать это поле в блоках ACF." - -#: includes/fields/class-acf-field-wysiwyg.php:27 -msgid "" -"Displays the WordPress WYSIWYG editor as seen in Posts and Pages allowing " -"for a rich text-editing experience that also allows for multimedia content." -msgstr "" -"Показывает WordPress WYSIWYG редактор такой же, как в Записях или Страницах " -"и позволяет редактировать текст, а также мультимедийное содержимое." - -#: includes/fields/class-acf-field-wysiwyg.php:25 -msgid "WYSIWYG Editor" -msgstr "WYSIWYG редактор" - -#: includes/fields/class-acf-field-user.php:17 -msgid "" -"Allows the selection of one or more users which can be used to create " -"relationships between data objects." -msgstr "" -"Позволяет выбрать одного или нескольких пользователей, которые могут быть " -"использованы для создания взаимосвязей между объектами данных." - -#: includes/fields/class-acf-field-url.php:26 -msgid "A text input specifically designed for storing web addresses." -msgstr "Текстовый поле, специально разработанное для хранения веб-адресов." - -#: includes/fields/class-acf-field-url.php:25 -msgid "URL" -msgstr "URL" - -#: includes/fields/class-acf-field-true_false.php:27 -msgid "" -"A toggle that allows you to pick a value of 1 or 0 (on or off, true or " -"false, etc). Can be presented as a stylized switch or checkbox." -msgstr "" -"Переключатель, позволяющий выбрать значение 1 или 0 (включено или выключено, " -"истинно или ложно и т.д.). Может быть представлен в виде стилизованного " -"переключателя или флажка." - -#: includes/fields/class-acf-field-time_picker.php:27 -msgid "" -"An interactive UI for picking a time. The time format can be customized " -"using the field settings." -msgstr "" -"Интерактивный пользовательский интерфейс для выбора времени. Формат времени " -"можно настроить с помощью параметров поля." - -#: includes/fields/class-acf-field-textarea.php:26 -msgid "A basic textarea input for storing paragraphs of text." -msgstr "Простая текстовая область для хранения абзацев текста." - -#: includes/fields/class-acf-field-text.php:26 -msgid "A basic text input, useful for storing single string values." -msgstr "" -"Простое текстовое поле, предназначенное для хранения однострочных значений." - -#: includes/fields/class-acf-field-taxonomy.php:22 -msgid "" -"Allows the selection of one or more taxonomy terms based on the criteria and " -"options specified in the fields settings." -msgstr "" -"Позволяет выбрать один или несколько терминов таксономии на основе критериев " -"и параметров, указанных в настройках полей." - -#: includes/fields/class-acf-field-tab.php:28 -msgid "" -"Allows you to group fields into tabbed sections in the edit screen. Useful " -"for keeping fields organized and structured." -msgstr "" - -#: includes/fields/class-acf-field-select.php:27 -msgid "A dropdown list with a selection of choices that you specify." -msgstr "Выпадающий список с заданными вариантами выбора." - -#: includes/fields/class-acf-field-relationship.php:19 -msgid "" -"A dual-column interface to select one or more posts, pages, or custom post " -"type items to create a relationship with the item that you're currently " -"editing. Includes options to search and filter." -msgstr "" - -#: includes/fields/class-acf-field-range.php:26 -msgid "" -"An input for selecting a numerical value within a specified range using a " -"range slider element." -msgstr "" - -#: includes/fields/class-acf-field-radio.php:27 -msgid "" -"A group of radio button inputs that allows the user to make a single " -"selection from values that you specify." -msgstr "" - -#: includes/fields/class-acf-field-post_object.php:19 -msgid "" -"An interactive and customizable UI for picking one or many posts, pages or " -"post type items with the option to search. " -msgstr "" - -#: includes/fields/class-acf-field-password.php:26 -msgid "An input for providing a password using a masked field." -msgstr "" - -#: includes/fields/class-acf-field-page_link.php:476 -#: includes/fields/class-acf-field-post_object.php:381 -#: includes/fields/class-acf-field-relationship.php:593 -msgid "Filter by Post Status" -msgstr "Фильтр по статусу записи" - -#: includes/fields/class-acf-field-page_link.php:27 -msgid "" -"An interactive dropdown to select one or more posts, pages, custom post type " -"items or archive URLs, with the option to search." -msgstr "" - -#: includes/fields/class-acf-field-oembed.php:27 -msgid "" -"An interactive component for embedding videos, images, tweets, audio and " -"other content by making use of the native WordPress oEmbed functionality." -msgstr "" - -#: includes/fields/class-acf-field-number.php:26 -msgid "An input limited to numerical values." -msgstr "Ввод ограничен числовыми значениями." - -#: includes/fields/class-acf-field-message.php:28 -msgid "" -"Used to display a message to editors alongside other fields. Useful for " -"providing additional context or instructions around your fields." -msgstr "" - -#: includes/fields/class-acf-field-link.php:27 -msgid "" -"Allows you to specify a link and its properties such as title and target " -"using the WordPress native link picker." -msgstr "" - -#: includes/fields/class-acf-field-image.php:27 -msgid "Uses the native WordPress media picker to upload, or choose images." -msgstr "" - -#: includes/fields/class-acf-field-group.php:27 -msgid "" -"Provides a way to structure fields into groups to better organize the data " -"and the edit screen." -msgstr "" - -#: includes/fields/class-acf-field-google-map.php:27 -msgid "" -"An interactive UI for selecting a location using Google Maps. Requires a " -"Google Maps API key and additional configuration to display correctly." -msgstr "" - -#: includes/fields/class-acf-field-file.php:27 -msgid "Uses the native WordPress media picker to upload, or choose files." -msgstr "" - -#: includes/fields/class-acf-field-email.php:26 -msgid "A text input specifically designed for storing email addresses." -msgstr "" -"Текстовый ввод, специально предназначенный для хранения адресов электронной " -"почты." - -#: includes/fields/class-acf-field-date_time_picker.php:27 -msgid "" -"An interactive UI for picking a date and time. The date return format can be " -"customized using the field settings." -msgstr "" - -#: includes/fields/class-acf-field-date_picker.php:27 -msgid "" -"An interactive UI for picking a date. The date return format can be " -"customized using the field settings." -msgstr "" - -#: includes/fields/class-acf-field-color_picker.php:27 -msgid "An interactive UI for selecting a color, or specifying a Hex value." -msgstr "" - -#: includes/fields/class-acf-field-checkbox.php:27 -msgid "" -"A group of checkbox inputs that allow the user to select one, or multiple " -"values that you specify." -msgstr "" - -#: includes/fields/class-acf-field-button-group.php:26 -msgid "" -"A group of buttons with values that you specify, users can choose one option " -"from the values provided." -msgstr "" - -#: includes/fields/class-acf-field-accordion.php:27 -msgid "" -"Allows you to group and organize custom fields into collapsable panels that " -"are shown while editing content. Useful for keeping large datasets tidy." -msgstr "" - -#: includes/fields.php:475 -msgid "" -"This provides a solution for repeating content such as slides, team members, " -"and call-to-action tiles, by acting as a parent to a set of subfields which " -"can be repeated again and again." -msgstr "" - -#: includes/fields.php:465 -msgid "" -"This provides an interactive interface for managing a collection of " -"attachments. Most settings are similar to the Image field type. Additional " -"settings allow you to specify where new attachments are added in the gallery " -"and the minimum/maximum number of attachments allowed." -msgstr "" - -#: includes/fields.php:455 -msgid "" -"This provides a simple, structured, layout-based editor. The Flexible " -"Content field allows you to define, create and manage content with total " -"control by using layouts and subfields to design the available blocks." -msgstr "" - -#: includes/fields.php:445 -msgid "" -"This allows you to select and display existing fields. It does not duplicate " -"any fields in the database, but loads and displays the selected fields at " -"run-time. The Clone field can either replace itself with the selected fields " -"or display the selected fields as a group of subfields." -msgstr "" - -#: includes/fields.php:442 -msgctxt "noun" -msgid "Clone" -msgstr "Клонировать" - -#: includes/admin/views/global/navigation.php:86 includes/fields.php:357 -msgid "PRO" -msgstr "PRO" - -#: includes/fields.php:355 includes/fields.php:412 -msgid "Advanced" -msgstr "Дополнительно" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:85 -msgid "JSON (newer)" -msgstr "JSON (более новая версия)" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:81 -msgid "Original" -msgstr "Оригинальный" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:55 -msgid "Invalid post ID." -msgstr "Неверный ID записи." - -#: includes/ajax/class-acf-ajax-local-json-diff.php:47 -msgid "Invalid post type selected for review." -msgstr "" - -#: includes/admin/views/global/navigation.php:186 -msgid "More" -msgstr "Читать далее" - -#: includes/admin/views/browse-fields-modal.php:86 -msgid "Tutorial" -msgstr "Руководство" - -#: includes/admin/views/browse-fields-modal.php:75 -msgid "Available with ACF PRO" -msgstr "Доступно с ACF PRO" - -#: includes/admin/views/browse-fields-modal.php:63 -msgid "Select Field" -msgstr "Выбрать поля" - -#. translators: %s: A link to the popular fields used in ACF -#: includes/admin/views/browse-fields-modal.php:50 -msgid "Try a different search term or browse %s" -msgstr "Попробуйте другой поисковый запрос или просмотрите %s" - -#: includes/admin/views/browse-fields-modal.php:47 -msgid "Popular fields" -msgstr "Популярные поля" - -#. translators: %s: The invalid search term -#: includes/admin/views/browse-fields-modal.php:40 -msgid "No search results for '%s'" -msgstr "Нет результатов поиска для '%s'" - -#: includes/admin/views/browse-fields-modal.php:13 -msgid "Search fields..." -msgstr "Поля поиска..." - -#: includes/admin/views/browse-fields-modal.php:11 -msgid "Select Field Type" -msgstr "Выбрать тип поля" - -#: includes/admin/views/browse-fields-modal.php:4 -msgid "Popular" -msgstr "Популярные" - -#: includes/admin/views/acf-taxonomy/list-empty.php:7 -msgid "Add Taxonomy" -msgstr "Добавить таксономию" - -#: includes/admin/views/acf-taxonomy/list-empty.php:6 -msgid "Create custom taxonomies to classify post type content" -msgstr "" -"Создание пользовательских таксономий для классификации содержимого типов " -"записей" - -#: includes/admin/views/acf-taxonomy/list-empty.php:5 -msgid "Add Your First Taxonomy" -msgstr "Добавьте свою первую таксономию" - -#: includes/admin/views/acf-taxonomy/basic-settings.php:122 -msgid "Hierarchical taxonomies can have descendants (like categories)." -msgstr "Иерархические таксономии могут иметь потомков (например, категории)." - -#: includes/admin/views/acf-taxonomy/basic-settings.php:107 -msgid "Makes a taxonomy visible on the frontend and in the admin dashboard." -msgstr "Сделать видимой таксономию на фронтенде и в админпанели." - -#: includes/admin/views/acf-taxonomy/basic-settings.php:91 -msgid "One or many post types that can be classified with this taxonomy." -msgstr "" -"Один или несколько типов записей, которые можно классифицировать с помощью " -"данной таксономии." - -#. translators: example taxonomy -#: includes/admin/views/acf-taxonomy/basic-settings.php:60 -msgid "genre" -msgstr "жанр" - -#. translators: example taxonomy -#: includes/admin/views/acf-taxonomy/basic-settings.php:42 -msgid "Genre" -msgstr "Жанр" - -#. translators: example taxonomy -#: includes/admin/views/acf-taxonomy/basic-settings.php:25 -msgid "Genres" -msgstr "Жанры" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1211 -msgid "" -"Optional custom controller to use instead of `WP_REST_Terms_Controller `." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1155 -msgid "Expose this post type in the REST API." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1055 -msgid "Customize the query variable name" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1028 -msgid "" -"Terms can be accessed using the non-pretty permalink, e.g., {query_var}" -"={term_slug}." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:981 -msgid "Parent-child terms in URLs for hierarchical taxonomies." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:941 -msgid "Customize the slug used in the URL" -msgstr "Настроить слаг, используемое в URL" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:924 -msgid "Permalinks for this taxonomy are disabled." -msgstr "Постоянные ссылки для этой таксономии отключены." - -#. translators: this string will be appended with the new permalink structure. -#: includes/admin/views/acf-taxonomy/advanced-settings.php:921 -msgid "" -"Rewrite the URL using the taxonomy key as the slug. Your permalink structure " -"will be" -msgstr "" -"Перепишите URL, используя ключ таксономии в качестве слага. Ваша структура " -"постоянных ссылок будет выглядеть следующим образом" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:913 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1030 -#: includes/admin/views/acf-taxonomy/basic-settings.php:57 -msgid "Taxonomy Key" -msgstr "Ключ таксономии" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:911 -msgid "Select the type of permalink to use for this taxonomy." -msgstr "Выберите тип постоянной ссылки для этой таксономии." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:896 -msgid "Display a column for the taxonomy on post type listing screens." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:895 -msgid "Show Admin Column" -msgstr "Отображать столбец админа" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:882 -msgid "Show the taxonomy in the quick/bulk edit panel." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:881 -msgid "Quick Edit" -msgstr "Быстрое редактирование" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:868 -msgid "List the taxonomy in the Tag Cloud Widget controls." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:867 -msgid "Tag Cloud" -msgstr "Облако меток" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:824 -msgid "" -"A PHP function name to be called for sanitizing taxonomy data saved from a " -"meta box." -msgstr "" -"Название PHP-функции, вызываемой для санации данных таксономии, сохраненных " -"из мета-бокса." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:823 -msgid "Meta Box Sanitization Callback" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:805 -msgid "" -"A PHP function name to be called to handle the content of a meta box on your " -"taxonomy." -msgstr "" -"Имя PHP-функции, которая будет вызываться для обработки содержимого мета-" -"бокса в вашей таксономии." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:804 -msgid "Register Meta Box Callback" -msgstr "Регистрация обратного вызова метабокса" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:763 -msgid "No Meta Box" -msgstr "Отсутствует метабокс" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:762 -msgid "Custom Meta Box" -msgstr "Произвольный метабокс" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:758 -msgid "" -"Controls the meta box on the content editor screen. By default, the " -"Categories meta box is shown for hierarchical taxonomies, and the Tags meta " -"box is shown for non-hierarchical taxonomies." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:757 -msgid "Meta Box" -msgstr "Блок метаданных" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:746 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:767 -msgid "Categories Meta Box" -msgstr "Категории метабокса" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:745 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:766 -msgid "Tags Meta Box" -msgstr "Теги метабокса" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:704 -msgid "A link to a tag" -msgstr "Ссылка на метку" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:703 -msgid "Describes a navigation link block variation used in the block editor." -msgstr "" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:698 -msgid "A link to a %s" -msgstr "Ссылка на %s" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:683 -msgid "Tag Link" -msgstr "Ссылка метки" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:682 -msgid "" -"Assigns a title for navigation link block variation used in the block editor." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:663 -msgid "← Go to tags" -msgstr "← Перейти к меткам" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:662 -msgid "" -"Assigns the text used to link back to the main index after updating a term." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:661 -msgid "Back To Items" -msgstr "Вернуться к элементам" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:657 -msgid "← Go to %s" -msgstr "← Перейти к %s" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:642 -msgid "Tags list" -msgstr "Список меток" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:641 -msgid "Assigns text to the table hidden heading." -msgstr "Присваивает текст скрытому заголовку таблицы." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:622 -msgid "Tags list navigation" -msgstr "Навигация по списку меток" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:621 -msgid "Assigns text to the table pagination hidden heading." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:597 -msgid "Filter by category" -msgstr "Фильтр по рубрике" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:596 -msgid "Assigns text to the filter button in the posts lists table." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:595 -msgid "Filter By Item" -msgstr "Фильтр по элементу" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:591 -msgid "Filter by %s" -msgstr "Фильтр по %s" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:575 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:576 -msgid "" -"The description is not prominent by default; however, some themes may show " -"it." -msgstr "" -"Описание по умолчанию не отображается, однако некоторые темы могут его " -"показывать." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:574 -msgid "Describes the Description field on the Edit Tags screen." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:573 -msgid "Description Field Description" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:554 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:555 -msgid "" -"Assign a parent term to create a hierarchy. The term Jazz, for example, " -"would be the parent of Bebop and Big Band" -msgstr "" -"Назначьте родительский термин для создания иерархии. Термин \"Джаз\", " -"например, будет родителем для \"Бибопа\" и \"Биг-бэнда\"." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:553 -msgid "Describes the Parent field on the Edit Tags screen." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:552 -msgid "Parent Field Description" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:538 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:539 -msgid "" -"The \"slug\" is the URL-friendly version of the name. It is usually all " -"lower case and contains only letters, numbers, and hyphens." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:537 -msgid "Describes the Slug field on the Edit Tags screen." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:536 -msgid "Slug Field Description" -msgstr "Описание поля слага" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:522 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:523 -msgid "The name is how it appears on your site" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:521 -msgid "Describes the Name field on the Edit Tags screen." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:520 -msgid "Name Field Description" -msgstr "Описание имени слага" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:507 -msgid "No tags" -msgstr "Меток нет" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:506 -msgid "" -"Assigns the text displayed in the posts and media list tables when no tags " -"or categories are available." -msgstr "" -"Назначает текст, отображаемый в таблицах постов и списка медиафайлов при " -"отсутствии тегов и категорий." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:505 -msgid "No Terms" -msgstr "Нет терминов" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:501 -msgid "No %s" -msgstr "Нет %s" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:486 -msgid "No tags found" -msgstr "Метки не найдены" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:485 -msgid "" -"Assigns the text displayed when clicking the 'choose from most used' text in " -"the taxonomy meta box when no tags are available, and assigns the text used " -"in the terms list table when there are no items for a taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:484 -msgid "Not Found" -msgstr "Не найдено" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:463 -msgid "Assigns text to the Title field of the Most Used tab." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:462 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:464 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:465 -msgid "Most Used" -msgstr "Часто используемое" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:444 -msgid "Choose from the most used tags" -msgstr "Выбрать из часто используемых меток" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:443 -msgid "" -"Assigns the 'choose from most used' text used in the meta box when " -"JavaScript is disabled. Only used on non-hierarchical taxonomies." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:442 -msgid "Choose From Most Used" -msgstr "Выберите из наиболее часто используемых" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:438 -msgid "Choose from the most used %s" -msgstr "Выберите из наиболее часто используемых %s" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:418 -msgid "Add or remove tags" -msgstr "Добавить или удалить метки" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:417 -msgid "" -"Assigns the add or remove items text used in the meta box when JavaScript is " -"disabled. Only used on non-hierarchical taxonomies" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:416 -msgid "Add Or Remove Items" -msgstr "Добавить или удалить элементы" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:412 -msgid "Add or remove %s" -msgstr "Добавить или удалить %s" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:392 -msgid "Separate tags with commas" -msgstr "Метки разделяются запятыми" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:391 -msgid "" -"Assigns the separate item with commas text used in the taxonomy meta box. " -"Only used on non-hierarchical taxonomies." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:390 -msgid "Separate Items With Commas" -msgstr "" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:386 -msgid "Separate %s with commas" -msgstr "Разделять %s запятыми" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:366 -msgid "Popular Tags" -msgstr "Популярные метки" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:365 -msgid "Assigns popular items text. Only used for non-hierarchical taxonomies." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:364 -msgid "Popular Items" -msgstr "Популярные элементы" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:361 -msgid "Popular %s" -msgstr "Популярные %s" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:347 -msgid "Search Tags" -msgstr "Поиск меток" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:346 -msgid "Assigns search items text." -msgstr "Назначает текст элементов поиска." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:323 -msgid "Parent Category:" -msgstr "Родительская рубрика:" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:322 -msgid "Assigns parent item text, but with a colon (:) added to the end." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:321 -msgid "Parent Item With Colon" -msgstr "Родительский элемент через двоеточие" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:298 -msgid "Parent Category" -msgstr "Родительская рубрика" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:297 -msgid "Assigns parent item text. Only used on hierarchical taxonomies." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:296 -msgid "Parent Item" -msgstr "Родительский элемент" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:293 -msgid "Parent %s" -msgstr "Родитель %s" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:278 -msgid "New Tag Name" -msgstr "Название новой метки" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:277 -msgid "Assigns the new item name text." -msgstr "Присваивает новый текст названия элемента." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:276 -msgid "New Item Name" -msgstr "Название нового элемента" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:273 -msgid "New %s Name" -msgstr "Новое %s название" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:258 -msgid "Add New Tag" -msgstr "Добавить новую метку" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:257 -msgid "Assigns the add new item text." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:238 -msgid "Update Tag" -msgstr "Обновить метку" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:237 -msgid "Assigns the update item text." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:236 -msgid "Update Item" -msgstr "Обновить элемент" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:233 -msgid "Update %s" -msgstr "Обновить %s" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:218 -msgid "View Tag" -msgstr "Просмотреть метку" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:217 -msgid "In the admin bar to view term during editing." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:198 -msgid "Edit Tag" -msgstr "Изменить метку" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:197 -msgid "At the top of the editor screen when editing a term." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:178 -msgid "All Tags" -msgstr "Все метки" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:177 -msgid "Assigns the all items text." -msgstr "Назначает всем элементам текст." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:158 -msgid "Assigns the menu name text." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:157 -msgid "Menu Label" -msgstr "Этикетка меню" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:131 -msgid "Active taxonomies are enabled and registered with WordPress." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:115 -msgid "A descriptive summary of the taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:95 -msgid "A descriptive summary of the term." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:94 -msgid "Term Description" -msgstr "Описание термина" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:76 -msgid "Single word, no spaces. Underscores and dashes allowed." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:75 -msgid "Term Slug" -msgstr "Ярлык термина" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:56 -msgid "The name of the default term." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:55 -msgid "Term Name" -msgstr "Название термина" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:41 -msgid "" -"Create a term for the taxonomy that cannot be deleted. It will not be " -"selected for posts by default." -msgstr "" -"Создайте термин для таксономии, который не может быть удален. По умолчанию " -"он не будет выбран для записей." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:40 -msgid "Default Term" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:28 -msgid "" -"Whether terms in this taxonomy should be sorted in the order they are " -"provided to `wp_set_object_terms()`." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:27 -msgid "Sort Terms" -msgstr "" - -#: includes/admin/views/acf-post-type/list-empty.php:7 -msgid "Add Post Type" -msgstr "Добавить тип записи" - -#: includes/admin/views/acf-post-type/list-empty.php:6 -msgid "" -"Expand the functionality of WordPress beyond standard posts and pages with " -"custom post types." -msgstr "" - -#: includes/admin/views/acf-post-type/list-empty.php:5 -msgid "Add Your First Post Type" -msgstr "Добавьте свой первый тип записи" - -#: includes/admin/views/acf-post-type/basic-settings.php:136 -#: includes/admin/views/acf-taxonomy/basic-settings.php:135 -msgid "I know what I'm doing, show me all the options." -msgstr "Я знаю, что делаю, покажи мне все варианты." - -#: includes/admin/views/acf-post-type/basic-settings.php:135 -#: includes/admin/views/acf-taxonomy/basic-settings.php:134 -msgid "Advanced Configuration" -msgstr "Расширенная конфигурация" - -#: includes/admin/views/acf-post-type/basic-settings.php:123 -msgid "Hierarchical post types can have descendants (like pages)." -msgstr "Иерархические типы записей могут иметь потомков (например, страницы)." - -#: includes/admin/views/acf-post-type/basic-settings.php:122 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:980 -#: includes/admin/views/acf-taxonomy/basic-settings.php:121 -msgid "Hierarchical" -msgstr "Иерархическая" - -#: includes/admin/views/acf-post-type/basic-settings.php:107 -msgid "Visible on the frontend and in the admin dashboard." -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:106 -#: includes/admin/views/acf-taxonomy/basic-settings.php:106 -msgid "Public" -msgstr "Открыто" - -#. translators: example post type -#: includes/admin/views/acf-post-type/basic-settings.php:59 -msgid "movie" -msgstr "фильм" - -#: includes/admin/views/acf-post-type/basic-settings.php:57 -msgid "Lower case letters, underscores and dashes only, Max 20 characters." -msgstr "" - -#. translators: example post type -#: includes/admin/views/acf-post-type/basic-settings.php:41 -msgid "Movie" -msgstr "Фильм" - -#: includes/admin/views/acf-post-type/basic-settings.php:39 -#: includes/admin/views/acf-taxonomy/basic-settings.php:40 -msgid "Singular Label" -msgstr "Одиночная этикетка" - -#. translators: example post type -#: includes/admin/views/acf-post-type/basic-settings.php:24 -msgid "Movies" -msgstr "Фильмы" - -#: includes/admin/views/acf-post-type/basic-settings.php:22 -#: includes/admin/views/acf-taxonomy/basic-settings.php:23 -msgid "Plural Label" -msgstr "Подпись множественного числа" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1270 -msgid "" -"Optional custom controller to use instead of `WP_REST_Posts_Controller`." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1269 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1210 -msgid "Controller Class" -msgstr "Класс контроллера" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1251 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1191 -msgid "The namespace part of the REST API URL." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1250 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1190 -msgid "Namespace Route" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1232 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1172 -msgid "The base URL for the post type REST API URLs." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1231 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1171 -msgid "Base URL" -msgstr "Базовый URL" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1217 -msgid "" -"Exposes this post type in the REST API. Required to use the block editor." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1216 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1154 -msgid "Show In REST API" -msgstr "Показывать в REST API" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1195 -msgid "Customize the query variable name." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1194 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1054 -msgid "Query Variable" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1172 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1032 -msgid "No Query Variable Support" -msgstr "Нет поддержки переменных запросов" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1171 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1031 -msgid "Custom Query Variable" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1168 -msgid "" -"Items can be accessed using the non-pretty permalink, eg. {post_type}" -"={post_slug}." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1167 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1027 -msgid "Query Variable Support" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1142 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1003 -msgid "URLs for an item and items can be accessed with a query string." -msgstr "" -"Доступ к URL-адресам элемента и элементов можно получить с помощью строки " -"запроса." - -#: includes/admin/views/acf-post-type/advanced-settings.php:1141 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1002 -msgid "Publicly Queryable" -msgstr "Публично запрашиваемый" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1120 -msgid "Custom slug for the Archive URL." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1119 -msgid "Archive Slug" -msgstr "Ярлык архива" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1106 -msgid "" -"Has an item archive that can be customized with an archive template file in " -"your theme." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1105 -msgid "Archive" -msgstr "Архив" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1085 -msgid "Pagination support for the items URLs such as the archives." -msgstr "Поддержка пагинации для URL элементов, таких как архивы." - -#: includes/admin/views/acf-post-type/advanced-settings.php:1084 -msgid "Pagination" -msgstr "Разделение на страницы" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1067 -msgid "RSS feed URL for the post type items." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1066 -msgid "Feed URL" -msgstr "URL фида" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1048 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:961 -msgid "" -"Alters the permalink structure to add the `WP_Rewrite::$front` prefix to " -"URLs." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1047 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:960 -msgid "Front URL Prefix" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1028 -msgid "Customize the slug used in the URL." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1027 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:940 -msgid "URL Slug" -msgstr "Ярлык URL" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1011 -msgid "Permalinks for this post type are disabled." -msgstr "" - -#. translators: this string will be appended with the new permalink structure. -#: includes/admin/views/acf-post-type/advanced-settings.php:1010 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:923 -msgid "" -"Rewrite the URL using a custom slug defined in the input below. Your " -"permalink structure will be" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1002 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:915 -msgid "No Permalink (prevent URL rewriting)" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1001 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:914 -msgid "Custom Permalink" -msgstr "Произвольная постоянная ссылка" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1000 -#: includes/admin/views/acf-post-type/advanced-settings.php:1170 -#: includes/admin/views/acf-post-type/basic-settings.php:56 -msgid "Post Type Key" -msgstr "" - -#. translators: this string will be appended with the new permalink structure. -#: includes/admin/views/acf-post-type/advanced-settings.php:998 -#: includes/admin/views/acf-post-type/advanced-settings.php:1008 -msgid "" -"Rewrite the URL using the post type key as the slug. Your permalink " -"structure will be" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:996 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:910 -msgid "Permalink Rewrite" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:982 -msgid "Delete items by a user when that user is deleted." -msgstr "" -"Удаление элементов, созданных пользователем, при удалении этого пользователя." - -#: includes/admin/views/acf-post-type/advanced-settings.php:981 -msgid "Delete With User" -msgstr "Удалить вместе с пользователем" - -#: includes/admin/views/acf-post-type/advanced-settings.php:967 -msgid "Allow the post type to be exported from 'Tools' > 'Export'." -msgstr "Разрешить экспорт типа сообщения из «Инструменты»> «Экспорт»." - -#: includes/admin/views/acf-post-type/advanced-settings.php:966 -msgid "Can Export" -msgstr "Можно экспортировать" - -#: includes/admin/views/acf-post-type/advanced-settings.php:935 -msgid "Optionally provide a plural to be used in capabilities." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:934 -msgid "Plural Capability Name" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:916 -msgid "Choose another post type to base the capabilities for this post type." -msgstr "" -"Выберите другой тип записи, чтобы использовать возможности этого типа записи." - -#: includes/admin/views/acf-post-type/advanced-settings.php:915 -msgid "Singular Capability Name" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:901 -msgid "" -"By default the capabilities of the post type will inherit the 'Post' " -"capability names, eg. edit_post, delete_posts. Enable to use post type " -"specific capabilities, eg. edit_{singular}, delete_{plural}." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:900 -msgid "Rename Capabilities" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:885 -msgid "Exclude From Search" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:872 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:854 -msgid "" -"Allow items to be added to menus in the 'Appearance' > 'Menus' screen. Must " -"be turned on in 'Screen options'." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:871 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:853 -msgid "Appearance Menus Support" -msgstr "Поддержка меню внешнего вида" - -#: includes/admin/views/acf-post-type/advanced-settings.php:853 -msgid "Appears as an item in the 'New' menu in the admin bar." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:852 -msgid "Show In Admin Bar" -msgstr "Показать на панели админа" - -#: includes/admin/views/acf-post-type/advanced-settings.php:821 -msgid "" -"A PHP function name to be called when setting up the meta boxes for the edit " -"screen." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:820 -msgid "Custom Meta Box Callback" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:800 -msgid "Menu Icon" -msgstr "Значок меню" - -#: includes/admin/views/acf-post-type/advanced-settings.php:782 -msgid "The position in the sidebar menu in the admin dashboard." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:781 -msgid "Menu Position" -msgstr "Позиция меню" - -#: includes/admin/views/acf-post-type/advanced-settings.php:763 -msgid "" -"By default the post type will get a new top level item in the admin menu. If " -"an existing top level item is supplied here, the post type will be added as " -"a submenu item under it." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:762 -msgid "Admin Menu Parent" -msgstr "Родительское меню администратора" - -#. translators: %s = "dashicon class name", link to the WordPress dashicon -#. documentation. -#: includes/admin/views/acf-post-type/advanced-settings.php:750 -msgid "" -"The icon used for the post type menu item in the admin dashboard. Can be a " -"URL or %s to use for the icon." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:745 -msgid "Dashicon class name" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:734 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:734 -msgid "Admin editor navigation in the sidebar menu." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:733 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:733 -msgid "Show In Admin Menu" -msgstr "Показывать в меню админа" - -#: includes/admin/views/acf-post-type/advanced-settings.php:720 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:719 -msgid "Items can be edited and managed in the admin dashboard." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:719 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:718 -msgid "Show In UI" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:689 -msgid "A link to a post." -msgstr "Ссылка на запись." - -#: includes/admin/views/acf-post-type/advanced-settings.php:688 -msgid "Description for a navigation link block variation." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:687 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:702 -msgid "Item Link Description" -msgstr "Описание ссылки на элемент" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:683 -msgid "A link to a %s." -msgstr "Ссылка на %s." - -#: includes/admin/views/acf-post-type/advanced-settings.php:668 -msgid "Post Link" -msgstr "Ссылка записи" - -#: includes/admin/views/acf-post-type/advanced-settings.php:667 -msgid "Title for a navigation link block variation." -msgstr "Заголовок для вариации блока навигационных ссылок." - -#: includes/admin/views/acf-post-type/advanced-settings.php:666 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:681 -msgid "Item Link" -msgstr "Ссылка элемента" - -#. translators: %s Singular form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:663 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:678 -msgid "%s Link" -msgstr "Cсылка на %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:648 -msgid "Post updated." -msgstr "Запись обновлена." - -#: includes/admin/views/acf-post-type/advanced-settings.php:647 -msgid "In the editor notice after an item is updated." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:646 -msgid "Item Updated" -msgstr "Элемент обновлен" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:643 -msgid "%s updated." -msgstr "%s обновлён." - -#: includes/admin/views/acf-post-type/advanced-settings.php:628 -msgid "Post scheduled." -msgstr "Запись запланирована к публикации." - -#: includes/admin/views/acf-post-type/advanced-settings.php:627 -msgid "In the editor notice after scheduling an item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:626 -msgid "Item Scheduled" -msgstr "Элемент запланирован" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:623 -msgid "%s scheduled." -msgstr "%s запланировано." - -#: includes/admin/views/acf-post-type/advanced-settings.php:608 -msgid "Post reverted to draft." -msgstr "Запись возвращена в черновики." - -#: includes/admin/views/acf-post-type/advanced-settings.php:607 -msgid "In the editor notice after reverting an item to draft." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:606 -msgid "Item Reverted To Draft" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:603 -msgid "%s reverted to draft." -msgstr "%s преобразован в черновик." - -#: includes/admin/views/acf-post-type/advanced-settings.php:588 -msgid "Post published privately." -msgstr "Запись опубликована как личная." - -#: includes/admin/views/acf-post-type/advanced-settings.php:587 -msgid "In the editor notice after publishing a private item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:586 -msgid "Item Published Privately" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:583 -msgid "%s published privately." -msgstr "%s опубликована приватно." - -#: includes/admin/views/acf-post-type/advanced-settings.php:568 -msgid "Post published." -msgstr "Запись опубликована." - -#: includes/admin/views/acf-post-type/advanced-settings.php:567 -msgid "In the editor notice after publishing an item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:566 -msgid "Item Published" -msgstr "Элемент опубликован" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:563 -msgid "%s published." -msgstr "%s опубликовано." - -#: includes/admin/views/acf-post-type/advanced-settings.php:548 -msgid "Posts list" -msgstr "Список записей" - -#: includes/admin/views/acf-post-type/advanced-settings.php:547 -msgid "Used by screen readers for the items list on the post type list screen." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:546 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:640 -msgid "Items List" -msgstr "Список элементов" - -#. translators: %s Plural form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:543 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:637 -msgid "%s list" -msgstr "%s список" - -#: includes/admin/views/acf-post-type/advanced-settings.php:528 -msgid "Posts list navigation" -msgstr "Навигация по списку записей" - -#: includes/admin/views/acf-post-type/advanced-settings.php:527 -msgid "" -"Used by screen readers for the filter list pagination on the post type list " -"screen." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:526 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:620 -msgid "Items List Navigation" -msgstr "" - -#. translators: %s Plural form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:523 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:617 -msgid "%s list navigation" -msgstr "%s навигация по списку" - -#: includes/admin/views/acf-post-type/advanced-settings.php:507 -msgid "Filter posts by date" -msgstr "Фильтровать записи по дате" - -#: includes/admin/views/acf-post-type/advanced-settings.php:506 -msgid "" -"Used by screen readers for the filter by date heading on the post type list " -"screen." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:505 -msgid "Filter Items By Date" -msgstr "Фильтровать элементы по дате" - -#. translators: %s Plural form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:501 -msgid "Filter %s by date" -msgstr "Фильтр %s по дате" - -#: includes/admin/views/acf-post-type/advanced-settings.php:486 -msgid "Filter posts list" -msgstr "Фильтровать список записей" - -#: includes/admin/views/acf-post-type/advanced-settings.php:485 -msgid "" -"Used by screen readers for the filter links heading on the post type list " -"screen." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:484 -msgid "Filter Items List" -msgstr "" - -#. translators: %s Plural form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:480 -msgid "Filter %s list" -msgstr "Фильтровать список %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:464 -msgid "In the media modal showing all media uploaded to this item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:463 -msgid "Uploaded To This Item" -msgstr "Загружено в этот элемент" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:459 -msgid "Uploaded to this %s" -msgstr "Загружено в это %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:444 -msgid "Insert into post" -msgstr "Вставить в запись" - -#: includes/admin/views/acf-post-type/advanced-settings.php:443 -msgid "As the button label when adding media to content." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:442 -msgid "Insert Into Media Button" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:438 -msgid "Insert into %s" -msgstr "Вставить в %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:423 -msgid "Use as featured image" -msgstr "Использовать как изображение записи" - -#: includes/admin/views/acf-post-type/advanced-settings.php:422 -msgid "" -"As the button label for selecting to use an image as the featured image." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:421 -msgid "Use Featured Image" -msgstr "Использовать изображение записи" - -#: includes/admin/views/acf-post-type/advanced-settings.php:408 -msgid "Remove featured image" -msgstr "Удалить изображение записи" - -#: includes/admin/views/acf-post-type/advanced-settings.php:407 -msgid "As the button label when removing the featured image." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:406 -msgid "Remove Featured Image" -msgstr "Удалить изображение записи" - -#: includes/admin/views/acf-post-type/advanced-settings.php:393 -msgid "Set featured image" -msgstr "Задать изображение" - -#: includes/admin/views/acf-post-type/advanced-settings.php:392 -msgid "As the button label when setting the featured image." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:391 -msgid "Set Featured Image" -msgstr "Задать изображение записи" - -#: includes/admin/views/acf-post-type/advanced-settings.php:378 -msgid "Featured image" -msgstr "Изображение записи" - -#: includes/admin/views/acf-post-type/advanced-settings.php:377 -msgid "In the editor used for the title of the featured image meta box." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:376 -msgid "Featured Image Meta Box" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:363 -msgid "Post Attributes" -msgstr "Свойства записи" - -#: includes/admin/views/acf-post-type/advanced-settings.php:362 -msgid "In the editor used for the title of the post attributes meta box." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:361 -msgid "Attributes Meta Box" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:358 -msgid "%s Attributes" -msgstr "Атрибуты %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:343 -msgid "Post Archives" -msgstr "Архивы записей" - -#: includes/admin/views/acf-post-type/advanced-settings.php:342 -msgid "" -"Adds 'Post Type Archive' items with this label to the list of posts shown " -"when adding items to an existing menu in a CPT with archives enabled. Only " -"appears when editing menus in 'Live Preview' mode and a custom archive slug " -"has been provided." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:341 -msgid "Archives Nav Menu" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:338 -msgid "%s Archives" -msgstr "Архивы %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:323 -msgid "No posts found in Trash" -msgstr "Записей в корзине не найдено" - -#: includes/admin/views/acf-post-type/advanced-settings.php:322 -msgid "" -"At the top of the post type list screen when there are no posts in the trash." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:321 -msgid "No Items Found in Trash" -msgstr "Элементы не найдены в корзине" - -#. translators: %s Plural form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:317 -msgid "No %s found in Trash" -msgstr "В корзине не найдено %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:302 -msgid "No posts found" -msgstr "Записей не найдено" - -#: includes/admin/views/acf-post-type/advanced-settings.php:301 -msgid "" -"At the top of the post type list screen when there are no posts to display." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:300 -msgid "No Items Found" -msgstr "Элементов не найдено" - -#. translators: %s Plural form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:296 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:480 -msgid "No %s found" -msgstr "Не найдено %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:281 -msgid "Search Posts" -msgstr "Поиск записей" - -#: includes/admin/views/acf-post-type/advanced-settings.php:280 -msgid "At the top of the items screen when searching for an item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:279 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:345 -msgid "Search Items" -msgstr "Поиск элементов" - -#. translators: %s Singular form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:276 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:342 -msgid "Search %s" -msgstr "Поиск %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:261 -msgid "Parent Page:" -msgstr "Родительская страница:" - -#: includes/admin/views/acf-post-type/advanced-settings.php:260 -msgid "For hierarchical types in the post type list screen." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:259 -msgid "Parent Item Prefix" -msgstr "" - -#. translators: %s Singular form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:256 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:318 -msgid "Parent %s:" -msgstr "Родитель %s:" - -#: includes/admin/views/acf-post-type/advanced-settings.php:241 -msgid "New Post" -msgstr "Новая запись" - -#: includes/admin/views/acf-post-type/advanced-settings.php:239 -msgid "New Item" -msgstr "Новый элемент" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:236 -msgid "New %s" -msgstr "Новый %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:206 -msgid "Add New Post" -msgstr "Добавить запись" - -#: includes/admin/views/acf-post-type/advanced-settings.php:205 -msgid "At the top of the editor screen when adding a new item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:204 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:256 -msgid "Add New Item" -msgstr "Добавить новый элемент" - -#. translators: %s Singular form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:201 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:253 -msgid "Add New %s" -msgstr "Добавить новое %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:186 -msgid "View Posts" -msgstr "Просмотр записей" - -#: includes/admin/views/acf-post-type/advanced-settings.php:185 -msgid "" -"Appears in the admin bar in the 'All Posts' view, provided the post type " -"supports archives and the home page is not an archive of that post type." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:184 -msgid "View Items" -msgstr "Просмотр элементов" - -#: includes/admin/views/acf-post-type/advanced-settings.php:166 -msgid "View Post" -msgstr "Просмотреть запись" - -#: includes/admin/views/acf-post-type/advanced-settings.php:165 -msgid "In the admin bar to view item when editing it." -msgstr "В панели администратора для просмотра элемента при его редактировании." - -#: includes/admin/views/acf-post-type/advanced-settings.php:164 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:216 -msgid "View Item" -msgstr "Просмотреть элемент" - -#. translators: %s Singular form of post type name -#. translators: %s Plural form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:161 -#: includes/admin/views/acf-post-type/advanced-settings.php:181 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:213 -msgid "View %s" -msgstr "Посмотреть %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:146 -msgid "Edit Post" -msgstr "Редактировать запись" - -#: includes/admin/views/acf-post-type/advanced-settings.php:145 -msgid "At the top of the editor screen when editing an item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:144 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:196 -msgid "Edit Item" -msgstr "Изменить элемент" - -#. translators: %s Singular form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:141 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:193 -msgid "Edit %s" -msgstr "Изменить %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:126 -msgid "All Posts" -msgstr "Все записи" - -#: includes/admin/views/acf-post-type/advanced-settings.php:125 -#: includes/admin/views/acf-post-type/advanced-settings.php:220 -#: includes/admin/views/acf-post-type/advanced-settings.php:240 -msgid "In the post type submenu in the admin dashboard." -msgstr "В подменю типа записи на административной консоли." - -#: includes/admin/views/acf-post-type/advanced-settings.php:124 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:176 -msgid "All Items" -msgstr "Все элементы" - -#. translators: %s Plural form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:121 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:173 -msgid "All %s" -msgstr "Все %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:105 -msgid "Admin menu name for the post type." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:104 -msgid "Menu Name" -msgstr "Название меню" - -#: includes/admin/views/acf-post-type/advanced-settings.php:90 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:142 -msgid "Regenerate all labels using the Singular and Plural labels" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:88 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:140 -msgid "Regenerate" -msgstr "Регенерировать" - -#: includes/admin/views/acf-post-type/advanced-settings.php:79 -msgid "Active post types are enabled and registered with WordPress." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:63 -msgid "A descriptive summary of the post type." -msgstr "Описательная сводка типа поста." - -#: includes/admin/views/acf-post-type/advanced-settings.php:48 -msgid "Add Custom" -msgstr "Добавить пользовательский" - -#: includes/admin/views/acf-post-type/advanced-settings.php:42 -msgid "Enable various features in the content editor." -msgstr "Активируйте различные функции в редакторе содержимого." - -#: includes/admin/views/acf-post-type/advanced-settings.php:31 -msgid "Post Formats" -msgstr "Форматы записей" - -#: includes/admin/views/acf-post-type/advanced-settings.php:25 -msgid "Editor" -msgstr "Редактор" - -#: includes/admin/views/acf-post-type/advanced-settings.php:24 -msgid "Trackbacks" -msgstr "Обратные ссылки" - -#: includes/admin/views/acf-post-type/basic-settings.php:87 -msgid "Select existing taxonomies to classify items of the post type." -msgstr "" -"Выберите существующие таксономии, чтобы классифицировать элементы типа " -"записи." - -#: includes/admin/views/acf-field-group/field.php:145 -msgid "Browse Fields" -msgstr "Обзор полей" - -#: includes/admin/tools/class-acf-admin-tool-import.php:292 -msgid "Nothing to import" -msgstr "Импортировать нечего" - -#: includes/admin/tools/class-acf-admin-tool-import.php:287 -msgid ". The Custom Post Type UI plugin can be deactivated." -msgstr ". Плагин Custom Post Type UI можно деактивировать." - -#. translators: %d - number of items imported from CPTUI -#: includes/admin/tools/class-acf-admin-tool-import.php:278 -msgid "Imported %d item from Custom Post Type UI -" -msgid_plural "Imported %d items from Custom Post Type UI -" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:262 -msgid "Failed to import taxonomies." -msgstr "Не удалось импортировать таксономии." - -#: includes/admin/tools/class-acf-admin-tool-import.php:244 -msgid "Failed to import post types." -msgstr "Не удалось импортировать типы записи." - -#: includes/admin/tools/class-acf-admin-tool-import.php:233 -msgid "Nothing from Custom Post Type UI plugin selected for import." -msgstr "Ничего из плагина Custom Post Type UI не выбрано для импорта." - -#: includes/admin/tools/class-acf-admin-tool-import.php:209 -msgid "Imported 1 item" -msgid_plural "Imported %s items" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:122 -msgid "" -"Importing a Post Type or Taxonomy with the same key as one that already " -"exists will overwrite the settings for the existing Post Type or Taxonomy " -"with those of the import." -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:111 -#: includes/admin/tools/class-acf-admin-tool-import.php:127 -msgid "Import from Custom Post Type UI" -msgstr "Импорт из Custom Post Type UI" - -#: includes/admin/tools/class-acf-admin-tool-export.php:412 -msgid "" -"The following code can be used to register a local version of the selected " -"items. Storing field groups, post types, or taxonomies locally can provide " -"many benefits such as faster load times, version control & dynamic fields/" -"settings. Simply copy and paste the following code to your theme's functions." -"php file or include it within an external file, then deactivate or delete " -"the items from the ACF admin." -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:411 -msgid "Export - Generate PHP" -msgstr "Экспорт - Генерация PHP" - -#: includes/admin/tools/class-acf-admin-tool-export.php:384 -msgid "Export" -msgstr "Экспорт" - -#: includes/admin/tools/class-acf-admin-tool-export.php:276 -msgid "Select Taxonomies" -msgstr "Выбрать таксономии" - -#: includes/admin/tools/class-acf-admin-tool-export.php:254 -msgid "Select Post Types" -msgstr "Выбрать типы записи" - -#: includes/admin/tools/class-acf-admin-tool-export.php:167 -msgid "Exported 1 item." -msgid_plural "Exported %s items." -msgstr[0] "Экспортирован 1 элемент." -msgstr[1] "Экспортировано %s элемента." -msgstr[2] "Экспортировано %s элементов." - -#: includes/admin/post-types/admin-taxonomy.php:129 -#: assets/build/js/acf-internal-post-type.js:182 -#: assets/build/js/acf-internal-post-type.js:256 -msgid "Category" -msgstr "Рубрика" - -#: includes/admin/post-types/admin-taxonomy.php:127 -#: assets/build/js/acf-internal-post-type.js:179 -#: assets/build/js/acf-internal-post-type.js:253 -msgid "Tag" -msgstr "Метка" - -#. translators: %s taxonomy name -#: includes/admin/post-types/admin-taxonomy.php:82 -msgid "%s taxonomy created" -msgstr "Таксономия %s создана" - -#. translators: %s taxonomy name -#: includes/admin/post-types/admin-taxonomy.php:76 -msgid "%s taxonomy updated" -msgstr "Таксономия %s обновлена" - -#: includes/admin/post-types/admin-taxonomy.php:56 -msgid "Taxonomy draft updated." -msgstr "Черновик таксономии обновлен." - -#: includes/admin/post-types/admin-taxonomy.php:55 -msgid "Taxonomy scheduled for." -msgstr "Таксономия запланирована на." - -#: includes/admin/post-types/admin-taxonomy.php:54 -msgid "Taxonomy submitted." -msgstr "Таксономия отправлена." - -#: includes/admin/post-types/admin-taxonomy.php:53 -msgid "Taxonomy saved." -msgstr "Таксономия сохранена." - -#: includes/admin/post-types/admin-taxonomy.php:49 -msgid "Taxonomy deleted." -msgstr "Таксономия удалена." - -#: includes/admin/post-types/admin-taxonomy.php:48 -msgid "Taxonomy updated." -msgstr "Таксономия обновлена." - -#: includes/admin/post-types/admin-taxonomies.php:377 -#: includes/admin/post-types/admin-taxonomy.php:157 -msgid "" -"This taxonomy could not be registered because its key is in use by another " -"taxonomy registered by another plugin or theme." -msgstr "" -"Эта таксономия не может быть зарегистрирована, так как ее ключ используется " -"другой таксономией, зарегистрированной другим плагином или темой." - -#. translators: %s number of taxonomies synchronized -#: includes/admin/post-types/admin-taxonomies.php:359 -msgid "Taxonomy synchronized." -msgid_plural "%s taxonomies synchronized." -msgstr[0] "Таксономия синхронизирована" -msgstr[1] "%s таксономии синхронизированы" -msgstr[2] "%s таксономий синхронизировано" - -#. translators: %s number of taxonomies duplicated -#: includes/admin/post-types/admin-taxonomies.php:352 -msgid "Taxonomy duplicated." -msgid_plural "%s taxonomies duplicated." -msgstr[0] "Таксономия дублирована" -msgstr[1] "%s таксономии дублированы" -msgstr[2] "%s таксономий дублировано" - -#. translators: %s number of taxonomies deactivated -#: includes/admin/post-types/admin-taxonomies.php:345 -msgid "Taxonomy deactivated." -msgid_plural "%s taxonomies deactivated." -msgstr[0] "Таксономия деактивирована" -msgstr[1] "%s таксономии деактивированы" -msgstr[2] "%s таксономий деактивировано" - -#. translators: %s number of taxonomies activated -#: includes/admin/post-types/admin-taxonomies.php:338 -msgid "Taxonomy activated." -msgid_plural "%s taxonomies activated." -msgstr[0] "Таксономия активирована" -msgstr[1] "%s таксономии активированы" -msgstr[2] "%s таксономий активировано" - -#: includes/admin/post-types/admin-taxonomies.php:139 -msgid "Terms" -msgstr "Термины" - -#. translators: %s number of post types synchronized -#: includes/admin/post-types/admin-post-types.php:352 -msgid "Post type synchronized." -msgid_plural "%s post types synchronized." -msgstr[0] "Тип записей синхронизирован" -msgstr[1] "%s типа записей синхронизированы" -msgstr[2] "%s типов записей синхронизировано" - -#. translators: %s number of post types duplicated -#: includes/admin/post-types/admin-post-types.php:345 -msgid "Post type duplicated." -msgid_plural "%s post types duplicated." -msgstr[0] "Тип записей дублирован" -msgstr[1] "%s типа записей дублированы" -msgstr[2] "%s типов записей дублировано" - -#. translators: %s number of post types deactivated -#: includes/admin/post-types/admin-post-types.php:338 -msgid "Post type deactivated." -msgid_plural "%s post types deactivated." -msgstr[0] "Тип записей деактивирован" -msgstr[1] "%s типа записей деактивированы" -msgstr[2] "%s типов записей деактивировано" - -#. translators: %s number of post types activated -#: includes/admin/post-types/admin-post-types.php:331 -msgid "Post type activated." -msgid_plural "%s post types activated." -msgstr[0] "Тип записей активирован" -msgstr[1] "%s тип записей активированы" -msgstr[2] "%s типов записей активировано" - -#: includes/admin/post-types/admin-post-types.php:112 -#: includes/admin/post-types/admin-taxonomies.php:137 -#: includes/admin/tools/class-acf-admin-tool-import.php:82 -#: includes/admin/views/acf-taxonomy/basic-settings.php:82 -#: includes/post-types/class-acf-post-type.php:91 -msgid "Post Types" -msgstr "Типы записей" - -#: includes/admin/post-types/admin-post-type.php:162 -#: includes/admin/post-types/admin-taxonomy.php:164 -msgid "Advanced Settings" -msgstr "Расширенные настройки" - -#: includes/admin/post-types/admin-post-type.php:161 -#: includes/admin/post-types/admin-taxonomy.php:163 -msgid "Basic Settings" -msgstr "Базовые настройки" - -#: includes/admin/post-types/admin-post-type.php:155 -#: includes/admin/post-types/admin-post-types.php:370 -msgid "" -"This post type could not be registered because its key is in use by another " -"post type registered by another plugin or theme." -msgstr "" -"Тип записей не может быть зарегистрирован, так как его ключ уже " -"зарегистрирован другим плагином или темой." - -#: includes/admin/post-types/admin-post-type.php:128 -#: assets/build/js/acf-internal-post-type.js:176 -#: assets/build/js/acf-internal-post-type.js:250 -msgid "Pages" -msgstr "Страницы" - -#: includes/admin/admin-internal-post-type.php:355 -msgid "Link Existing Field Groups" -msgstr "" - -#. translators: %s post type name -#: includes/admin/post-types/admin-post-type.php:80 -msgid "%s post type created" -msgstr "Тип записи %s создан" - -#. translators: %s taxonomy name -#: includes/admin/post-types/admin-taxonomy.php:78 -msgid "Add fields to %s" -msgstr "Добавить поля в %s" - -#. translators: %s post type name -#: includes/admin/post-types/admin-post-type.php:76 -msgid "%s post type updated" -msgstr "Тип записи %s обновлен" - -#: includes/admin/post-types/admin-post-type.php:56 -msgid "Post type draft updated." -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:55 -msgid "Post type scheduled for." -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:54 -msgid "Post type submitted." -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:53 -msgid "Post type saved." -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:50 -msgid "Post type updated." -msgstr "Тип записей обновлен." - -#: includes/admin/post-types/admin-post-type.php:49 -msgid "Post type deleted." -msgstr "Тип записей удален." - -#: includes/admin/post-types/admin-field-group.php:120 -#: assets/build/js/acf-field-group.js:1146 -#: assets/build/js/acf-field-group.js:1366 -msgid "Type to search..." -msgstr "Введите текст для поиска..." - -#: includes/admin/post-types/admin-field-group.php:105 -#: assets/build/js/acf-field-group.js:1172 -#: assets/build/js/acf-field-group.js:2319 -#: assets/build/js/acf-field-group.js:1414 -#: assets/build/js/acf-field-group.js:2727 -msgid "PRO Only" -msgstr "Только для Про" - -#: includes/admin/post-types/admin-field-group.php:97 -#: assets/build/js/acf-internal-post-type.js:308 -#: assets/build/js/acf-internal-post-type.js:417 -msgid "Field groups linked successfully." -msgstr "Группы полей связаны успешно." - -#. translators: %s - URL to ACF tools page. -#: includes/admin/admin.php:195 -msgid "" -"Import Post Types and Taxonomies registered with Custom Post Type UI and " -"manage them with ACF. Get Started." -msgstr "" -"Импортировать типы записей и таксономии, зарегистрированные через Custom " -"Post Type UI, и управлять ими с помощью ACF. Начать." - -#: includes/admin/admin.php:48 includes/admin/admin.php:267 -msgid "ACF" -msgstr "ACF" - -#: includes/admin/admin-internal-post-type.php:322 -msgid "taxonomy" -msgstr "таксономия" - -#: includes/admin/admin-internal-post-type.php:322 -msgid "post type" -msgstr "тип записи" - -#: includes/admin/admin-internal-post-type.php:346 -msgid "Done" -msgstr "Готово" - -#: includes/admin/admin-internal-post-type.php:332 -msgid "Field Group(s)" -msgstr "Группа(ы) полей" - -#: includes/admin/admin-internal-post-type.php:331 -msgid "Select one or many field groups..." -msgstr "Выберите одну или несколько групп полей..." - -#: includes/admin/admin-internal-post-type.php:330 -msgid "Please select the field groups to link." -msgstr "Пожалуйста, выберете группы полей, чтобы связать." - -#: includes/admin/admin-internal-post-type.php:288 -msgid "Field group linked successfully." -msgid_plural "Field groups linked successfully." -msgstr[0] "Группа полей связана успешно." -msgstr[1] "Группы полей связаны успешно." -msgstr[2] "Группы полей связаны успешно." - -#: includes/admin/admin-internal-post-type-list.php:261 -#: includes/admin/post-types/admin-post-types.php:371 -#: includes/admin/post-types/admin-taxonomies.php:378 -msgctxt "post status" -msgid "Registration Failed" -msgstr "Регистрация не удалась" - -#: includes/admin/admin-internal-post-type-list.php:260 -msgid "" -"This item could not be registered because its key is in use by another item " -"registered by another plugin or theme." -msgstr "" -"Этот элемент не может быть зарегистрирован, так как его ключ используется " -"другим элементом, зарегистрированным другим плагином или темой." - -#: includes/acf-internal-post-type-functions.php:482 -#: includes/acf-internal-post-type-functions.php:511 -msgid "REST API" -msgstr "Rest API" - -#: includes/acf-internal-post-type-functions.php:481 -#: includes/acf-internal-post-type-functions.php:510 -#: includes/acf-internal-post-type-functions.php:537 -msgid "Permissions" -msgstr "Разрешения" - -#: includes/acf-internal-post-type-functions.php:480 -#: includes/acf-internal-post-type-functions.php:509 -msgid "URLs" -msgstr "URL-адреса" - -#: includes/acf-internal-post-type-functions.php:479 -#: includes/acf-internal-post-type-functions.php:508 -#: includes/acf-internal-post-type-functions.php:535 -msgid "Visibility" -msgstr "Видимость" - -#: includes/acf-internal-post-type-functions.php:478 -#: includes/acf-internal-post-type-functions.php:507 -#: includes/acf-internal-post-type-functions.php:536 -msgid "Labels" -msgstr "Этикетки" - -#: includes/admin/post-types/admin-field-group.php:269 -msgid "Field Settings Tabs" -msgstr "Вкладки настроек полей" - -#. Author URI of the plugin -msgid "" -"https://wpengine.com/?utm_source=wordpress." -"org&utm_medium=referral&utm_campaign=plugin_directory&utm_content=advanced_custom_fields" -msgstr "" -"https://wpengine.com/?utm_source=wordpress." -"org&utm_medium=referral&utm_campaign=plugin_directory&utm_content=advanced_custom_fields" - -#: includes/api/api-template.php:867 -msgid "[ACF shortcode value disabled for preview]" -msgstr "[Значение шорткода ACF отключено для предварительного просмотра]" - -#: includes/admin/admin-internal-post-type.php:298 -#: includes/admin/post-types/admin-field-group.php:571 -msgid "Close Modal" -msgstr "Закрыть модальное окно" - -#: includes/admin/post-types/admin-field-group.php:96 -#: assets/build/js/acf-field-group.js:1670 -#: assets/build/js/acf-field-group.js:1993 -msgid "Field moved to other group" -msgstr "Поле перемещено в другую группу" - -#: includes/admin/post-types/admin-field-group.php:95 -#: assets/build/js/acf.js:1437 assets/build/js/acf.js:1517 -msgid "Close modal" -msgstr "Закрыть модальное окно" - -#: includes/fields/class-acf-field-tab.php:125 -msgid "Start a new group of tabs at this tab." -msgstr "Начать новую группу вкладок с этой вкладки." - -#: includes/fields/class-acf-field-tab.php:124 -msgid "New Tab Group" -msgstr "Новая группа вкладок" - -#: includes/fields/class-acf-field-select.php:451 -#: includes/fields/class-acf-field-true_false.php:200 -msgid "Use a stylized checkbox using select2" -msgstr "Используйте стилизованный флажок, используя select2" - -#: includes/fields/class-acf-field-radio.php:260 -msgid "Save Other Choice" -msgstr "Сохранить другой выбор" - -#: includes/fields/class-acf-field-radio.php:249 -msgid "Allow Other Choice" -msgstr "Разрешить другой выбор" - -#: includes/fields/class-acf-field-checkbox.php:450 -msgid "Add Toggle All" -msgstr "Добавить Переключить все" - -#: includes/fields/class-acf-field-checkbox.php:409 -msgid "Save Custom Values" -msgstr "Сохранить пользовательские значения" - -#: includes/fields/class-acf-field-checkbox.php:398 -msgid "Allow Custom Values" -msgstr "Разрешить пользовательские значения" - -#: includes/fields/class-acf-field-checkbox.php:148 -msgid "Checkbox custom values cannot be empty. Uncheck any empty values." -msgstr "" -"Пользовательские значения флажка не могут быть пустыми. Снимите флажки с " -"пустых значений." - -#: includes/admin/views/global/navigation.php:248 -msgid "Updates" -msgstr "Обновления" - -#: includes/admin/views/global/navigation.php:176 -msgid "Advanced Custom Fields logo" -msgstr "Логотип дополнительных настраиваемых полей" - -#: includes/admin/views/global/form-top.php:89 -msgid "Save Changes" -msgstr "Сохранить изменения" - -#: includes/admin/views/global/form-top.php:76 -msgid "Field Group Title" -msgstr "Название группы полей" - -#: includes/admin/views/acf-post-type/advanced-settings.php:704 -#: includes/admin/views/global/form-top.php:3 -msgid "Add title" -msgstr "Добавить заголовок" - -#. translators: %s url to getting started guide -#: includes/admin/views/acf-field-group/list-empty.php:20 -#: includes/admin/views/acf-post-type/list-empty.php:12 -#: includes/admin/views/acf-taxonomy/list-empty.php:12 -#: includes/admin/views/options-page-preview.php:13 -msgid "" -"New to ACF? Take a look at our getting " -"started guide." -msgstr "" -"Вы впервые в ACF? Ознакомьтесь с нашим руководством по началу работы." - -#: includes/admin/views/acf-field-group/list-empty.php:15 -msgid "Add Field Group" -msgstr "Добавить группу полей" - -#. translators: %s url to creating a field group page -#: includes/admin/views/acf-field-group/list-empty.php:10 -msgid "" -"ACF uses field groups to group custom " -"fields together, and then attach those fields to edit screens." -msgstr "" -"ACF использует группы полей для " -"группировки произвольных полей вместе, а затем присоединяет эти поля к " -"экранным формам редактирования." - -#: includes/admin/views/acf-field-group/list-empty.php:5 -msgid "Add Your First Field Group" -msgstr "Добавьте первую группу полей" - -#: includes/admin/admin-options-pages-preview.php:28 -#: includes/admin/views/acf-field-group/pro-features.php:54 -#: includes/admin/views/global/navigation.php:86 -#: includes/admin/views/global/navigation.php:250 -msgid "Options Pages" -msgstr "Страницы настроек" - -#: includes/admin/views/acf-field-group/pro-features.php:50 -msgid "ACF Blocks" -msgstr "Блоки ACF" - -#: includes/admin/views/acf-field-group/pro-features.php:58 -msgid "Gallery Field" -msgstr "Поле галереи" - -#: includes/admin/views/acf-field-group/pro-features.php:38 -msgid "Flexible Content Field" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:42 -msgid "Repeater Field" -msgstr "" - -#: includes/admin/views/global/navigation.php:212 -msgid "Unlock Extra Features with ACF PRO" -msgstr "Разблокируйте дополнительные возможности с помощью ACF PRO" - -#: includes/admin/views/acf-field-group/options.php:267 -msgid "Delete Field Group" -msgstr "Удалить группу полей" - -#. translators: 1: Post creation date 2: Post creation time -#: includes/admin/views/acf-field-group/options.php:261 -msgid "Created on %1$s at %2$s" -msgstr "Создано на %1$s в %2$s" - -#: includes/acf-field-group-functions.php:497 -msgid "Group Settings" -msgstr "Настройки группы" - -#: includes/acf-field-group-functions.php:495 -msgid "Location Rules" -msgstr "Правила местонахождения" - -#. translators: %s url to field types list -#: includes/admin/views/acf-field-group/fields.php:72 -msgid "" -"Choose from over 30 field types. Learn " -"more." -msgstr "" -"Выбирайте из более чем 30 типов полей. Подробнее." - -#: includes/admin/views/acf-field-group/fields.php:65 -msgid "" -"Get started creating new custom fields for your posts, pages, custom post " -"types and other WordPress content." -msgstr "" -"Начните создавать новые пользовательские поля для ваших записей, страниц, " -"пользовательских типов записей и другого содержимого WordPress." - -#: includes/admin/views/acf-field-group/fields.php:64 -msgid "Add Your First Field" -msgstr "Добавить первое поле" - -#. translators: A symbol (or text, if not available in your locale) meaning -#. "Order Number", in terms of positional placement. -#: includes/admin/views/acf-field-group/fields.php:43 -msgid "#" -msgstr "#" - -#: includes/admin/views/acf-field-group/fields.php:33 -#: includes/admin/views/acf-field-group/fields.php:67 -#: includes/admin/views/acf-field-group/fields.php:103 -#: includes/admin/views/global/form-top.php:85 -msgid "Add Field" -msgstr "Добавить поле" - -#: includes/acf-field-group-functions.php:496 includes/fields.php:410 -msgid "Presentation" -msgstr "Презентация" - -#: includes/fields.php:409 -msgid "Validation" -msgstr "Валидация" - -#: includes/acf-internal-post-type-functions.php:477 -#: includes/acf-internal-post-type-functions.php:506 includes/fields.php:408 -msgid "General" -msgstr "Общие" - -#: includes/admin/tools/class-acf-admin-tool-import.php:70 -msgid "Import JSON" -msgstr "Импорт JSON" - -#: includes/admin/tools/class-acf-admin-tool-export.php:392 -msgid "Export As JSON" -msgstr "Экспорт в формате JSON" - -#. translators: %s number of field groups deactivated -#: includes/admin/post-types/admin-field-groups.php:367 -msgid "Field group deactivated." -msgid_plural "%s field groups deactivated." -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. translators: %s number of field groups activated -#: includes/admin/post-types/admin-field-groups.php:360 -msgid "Field group activated." -msgid_plural "%s field groups activated." -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: includes/admin/admin-internal-post-type-list.php:452 -#: includes/admin/admin-internal-post-type-list.php:478 -msgid "Deactivate" -msgstr "Деактивировать" - -#: includes/admin/admin-internal-post-type-list.php:452 -msgid "Deactivate this item" -msgstr "Деактивировать этот элемент" - -#: includes/admin/admin-internal-post-type-list.php:448 -#: includes/admin/admin-internal-post-type-list.php:477 -msgid "Activate" -msgstr "Активировать" - -#: includes/admin/admin-internal-post-type-list.php:448 -msgid "Activate this item" -msgstr "Активировать этот элемент" - -#: includes/admin/post-types/admin-field-group.php:92 -#: assets/build/js/acf-field-group.js:2812 -#: assets/build/js/acf-field-group.js:3313 -msgid "Move field group to trash?" -msgstr "Переместить группу полей в корзину?" - -#: acf.php:497 includes/admin/admin-internal-post-type-list.php:248 -#: includes/admin/post-types/admin-field-group.php:297 -#: includes/admin/post-types/admin-post-type.php:295 -#: includes/admin/post-types/admin-taxonomy.php:297 -msgctxt "post status" -msgid "Inactive" -msgstr "Неактивна" - -#. Author of the plugin -msgid "WP Engine" -msgstr "WP Engine" - -#: acf.php:555 -msgid "" -"Advanced Custom Fields and Advanced Custom Fields PRO should not be active " -"at the same time. We've automatically deactivated Advanced Custom Fields PRO." -msgstr "" -"Продвинутые пользовательские поля и Продвинутые пользовательские поля PRO не " -"должны быть активны одновременно. Мы автоматически деактивировали " -"Продвинутые пользовательские поля PRO." - -#: acf.php:553 -msgid "" -"Advanced Custom Fields and Advanced Custom Fields PRO should not be active " -"at the same time. We've automatically deactivated Advanced Custom Fields." -msgstr "" -"Продвинутые пользовательские поля и Продвинутые пользовательские поля PRO не " -"должны быть активны одновременно. Мы автоматически деактивировали " -"Продвинутые пользовательские поля." - -#: includes/acf-value-functions.php:374 -msgid "" -"%1$s - We've detected one or more calls to retrieve ACF " -"field values before ACF has been initialized. This is not supported and can " -"result in malformed or missing data. Learn how to fix this." -msgstr "" -"%1$s - Мы обнаружили один или несколько вызовов для " -"получения значений ACF полей до момента инициализации ACF. Это неправильно и " -"может привести к искажению или отсутствию данных. Узнайте, как это исправить." - -#: includes/fields/class-acf-field-user.php:551 -msgid "%1$s must have a user with the %2$s role." -msgid_plural "%1$s must have a user with one of the following roles: %2$s" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: includes/fields/class-acf-field-user.php:542 -msgid "%1$s must have a valid user ID." -msgstr "%1$s должен иметь действительный ID пользователя." - -#: includes/fields/class-acf-field-user.php:380 -msgid "Invalid request." -msgstr "Неверный запрос." - -#: includes/fields/class-acf-field-select.php:684 -msgid "%1$s is not one of %2$s" -msgstr "%1$s не является одним из %2$s" - -#: includes/fields/class-acf-field-post_object.php:700 -msgid "%1$s must have term %2$s." -msgid_plural "%1$s must have one of the following terms: %2$s" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: includes/fields/class-acf-field-post_object.php:684 -msgid "%1$s must be of post type %2$s." -msgid_plural "%1$s must be of one of the following post types: %2$s" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: includes/fields/class-acf-field-post_object.php:675 -msgid "%1$s must have a valid post ID." -msgstr "%1$s должен иметь действительный ID записи." - -#: includes/fields/class-acf-field-file.php:475 -msgid "%s requires a valid attachment ID." -msgstr "%s требуется действительный ID вложения." - -#: includes/admin/views/acf-field-group/options.php:233 -msgid "Show in REST API" -msgstr "Показывать в REST API" - -#: includes/fields/class-acf-field-color_picker.php:168 -msgid "Enable Transparency" -msgstr "Прозрачность" - -#: includes/fields/class-acf-field-color_picker.php:187 -msgid "RGBA Array" -msgstr "Массив RGBA" - -#: includes/fields/class-acf-field-color_picker.php:98 -msgid "RGBA String" -msgstr "Строка RGBA" - -#: includes/fields/class-acf-field-color_picker.php:97 -#: includes/fields/class-acf-field-color_picker.php:186 -msgid "Hex String" -msgstr "Cтрока hex" - -#: includes/admin/views/browse-fields-modal.php:65 -msgid "Upgrade to PRO" -msgstr "Обновить до PRO" - -#: includes/admin/post-types/admin-field-group.php:297 -#: includes/admin/post-types/admin-post-type.php:295 -#: includes/admin/post-types/admin-taxonomy.php:297 -msgctxt "post status" -msgid "Active" -msgstr "Активен" - -#: includes/fields/class-acf-field-email.php:181 -msgid "'%s' is not a valid email address" -msgstr "«%s» не является корректным адресом электропочты" - -#: includes/fields/class-acf-field-color_picker.php:76 -msgid "Color value" -msgstr "Значение цвета" - -#: includes/fields/class-acf-field-color_picker.php:74 -msgid "Select default color" -msgstr "Выбрать стандартный цвет" - -#: includes/fields/class-acf-field-color_picker.php:72 -msgid "Clear color" -msgstr "Очистить цвет" - -#: includes/acf-wp-functions.php:90 -msgid "Blocks" -msgstr "Блоки" - -#: includes/acf-wp-functions.php:86 -msgid "Options" -msgstr "Настройки" - -#: includes/acf-wp-functions.php:82 -msgid "Users" -msgstr "Пользователи" - -#: includes/acf-wp-functions.php:78 -msgid "Menu items" -msgstr "Пункты меню" - -#: includes/acf-wp-functions.php:70 -msgid "Widgets" -msgstr "Виджеты" - -#: includes/acf-wp-functions.php:62 -msgid "Attachments" -msgstr "Вложения" - -#: includes/acf-wp-functions.php:57 -#: includes/admin/post-types/admin-post-types.php:137 -#: includes/admin/post-types/admin-taxonomies.php:112 -#: includes/admin/tools/class-acf-admin-tool-import.php:93 -#: includes/admin/views/acf-post-type/basic-settings.php:86 -#: includes/post-types/class-acf-taxonomy.php:90 -#: includes/post-types/class-acf-taxonomy.php:91 -msgid "Taxonomies" -msgstr "Таксономии" - -#: includes/acf-wp-functions.php:44 -#: includes/admin/post-types/admin-post-type.php:126 -#: includes/admin/post-types/admin-post-types.php:139 -#: includes/admin/views/acf-post-type/advanced-settings.php:106 -#: assets/build/js/acf-internal-post-type.js:173 -#: assets/build/js/acf-internal-post-type.js:247 -msgid "Posts" -msgstr "Записи" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:76 -msgid "Last updated: %s" -msgstr "Последнее изменение: %s" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:70 -msgid "Sorry, this post is unavailable for diff comparison." -msgstr "Данная группа полей не доступна для сравнения отличий." - -#: includes/ajax/class-acf-ajax-local-json-diff.php:42 -msgid "Invalid field group parameter(s)." -msgstr "Неверный параметр(ы) группы полей." - -#: includes/admin/admin-internal-post-type-list.php:413 -msgid "Awaiting save" -msgstr "Ожидает сохранения" - -#: includes/admin/admin-internal-post-type-list.php:410 -msgid "Saved" -msgstr "Сохранено" - -#: includes/admin/admin-internal-post-type-list.php:406 -#: includes/admin/tools/class-acf-admin-tool-import.php:49 -msgid "Import" -msgstr "Импорт" - -#: includes/admin/admin-internal-post-type-list.php:402 -msgid "Review changes" -msgstr "Просмотр изменений" - -#: includes/admin/admin-internal-post-type-list.php:378 -msgid "Located in: %s" -msgstr "Находится в: %s" - -#: includes/admin/admin-internal-post-type-list.php:375 -msgid "Located in plugin: %s" -msgstr "Находится в плагине: %s" - -#: includes/admin/admin-internal-post-type-list.php:372 -msgid "Located in theme: %s" -msgstr "Находится в теме: %s" - -#: includes/admin/post-types/admin-field-groups.php:261 -msgid "Various" -msgstr "Различные" - -#: includes/admin/admin-internal-post-type-list.php:216 -#: includes/admin/admin-internal-post-type-list.php:485 -msgid "Sync changes" -msgstr "Синхронизировать изменения" - -#: includes/admin/admin-internal-post-type-list.php:215 -msgid "Loading diff" -msgstr "Загрузка diff" - -#: includes/admin/admin-internal-post-type-list.php:214 -msgid "Review local JSON changes" -msgstr "Обзор локальных изменений JSON" - -#: includes/admin/admin.php:170 -msgid "Visit website" -msgstr "Перейти на сайт" - -#: includes/admin/admin.php:169 -msgid "View details" -msgstr "Подробности" - -#: includes/admin/admin.php:168 -msgid "Version %s" -msgstr "Версия %s" - -#: includes/admin/admin.php:167 -msgid "Information" -msgstr "Информация" - -#: includes/admin/admin.php:158 -msgid "" -"Help Desk. The support professionals on " -"our Help Desk will assist with your more in depth, technical challenges." -msgstr "" -"Служба поддержки. Специалисты нашей " -"службы поддержки помогут решить ваши технические проблемы." - -#: includes/admin/admin.php:154 -msgid "" -"Discussions. We have an active and " -"friendly community on our Community Forums who may be able to help you " -"figure out the 'how-tos' of the ACF world." -msgstr "" -"Обсуждения. У нас есть активное и " -"дружелюбное сообщество на наших форумах сообщества, которое может помочь вам " -"разобраться в практических приемах мира ACF." - -#: includes/admin/admin.php:150 -msgid "" -"Documentation. Our extensive " -"documentation contains references and guides for most situations you may " -"encounter." -msgstr "" -"Документация. Наша подробная " -"документация содержит ссылки и руководства для большинства ситуаций, с " -"которыми вы можете столкнуться." - -#: includes/admin/admin.php:147 -msgid "" -"We are fanatical about support, and want you to get the best out of your " -"website with ACF. If you run into any difficulties, there are several places " -"you can find help:" -msgstr "" -"Мы фанатично относимся к поддержке и хотим, чтобы вы извлекали максимум из " -"своего веб-сайта с помощью ACF. Если вы столкнетесь с какими-либо " -"трудностями, есть несколько мест, где вы можете найти помощь:" - -#: includes/admin/admin.php:144 includes/admin/admin.php:146 -msgid "Help & Support" -msgstr "Помощь и поддержка" - -#: includes/admin/admin.php:135 -msgid "" -"Please use the Help & Support tab to get in touch should you find yourself " -"requiring assistance." -msgstr "" -"Воспользуйтесь вкладкой «Справка и поддержка», чтобы связаться с нами, если " -"вам потребуется помощь." - -#: includes/admin/admin.php:132 -msgid "" -"Before creating your first Field Group, we recommend first reading our Getting started guide to familiarize " -"yourself with the plugin's philosophy and best practises." -msgstr "" -"Перед созданием вашей первой группы полей мы рекомендуем сначала прочитать " -"наше руководство по началу работы, " -"чтобы ознакомиться с философией и передовыми практиками плагина." - -#: includes/admin/admin.php:130 -msgid "" -"The Advanced Custom Fields plugin provides a visual form builder to " -"customize WordPress edit screens with extra fields, and an intuitive API to " -"display custom field values in any theme template file." -msgstr "" -"Плагин Advanced Custom Fields предоставляет визуальный конструктор форм для " -"настройки экранов редактирования WordPress с дополнительными полями и " -"интуитивно понятный API для отображения значений произвольных полей в любом " -"файле шаблона темы." - -#: includes/admin/admin.php:127 includes/admin/admin.php:129 -msgid "Overview" -msgstr "Обзор" - -#: includes/locations.php:36 -msgid "Location type \"%s\" is already registered." -msgstr "Тип местоположения \"%s\" уже зарегистрирован." - -#: includes/locations.php:25 -msgid "Class \"%s\" does not exist." -msgstr "Класса \"%s\" не существует." - -#: includes/ajax/class-acf-ajax.php:157 -msgid "Invalid nonce." -msgstr "Неверный одноразовый номер." - -#: includes/fields/class-acf-field-user.php:375 -msgid "Error loading field." -msgstr "Ошибка загрузки поля." - -#: assets/build/js/acf-input.js:2750 assets/build/js/acf-input.js:2819 -#: assets/build/js/acf-input.js:2926 assets/build/js/acf-input.js:3000 -msgid "Location not found: %s" -msgstr "Не найдено местоположение: %s" - -#: includes/forms/form-user.php:353 -msgid "Error: %s" -msgstr "Ошибка: %s" - -#: includes/locations/class-acf-location-widget.php:22 -msgid "Widget" -msgstr "Виджет" - -#: includes/locations/class-acf-location-user-role.php:24 -msgid "User Role" -msgstr "Роль пользователя" - -#: includes/locations/class-acf-location-comment.php:22 -msgid "Comment" -msgstr "Комментарий" - -#: includes/locations/class-acf-location-post-format.php:22 -msgid "Post Format" -msgstr "Формат записи" - -#: includes/locations/class-acf-location-nav-menu-item.php:22 -msgid "Menu Item" -msgstr "Элемент меню" - -#: includes/locations/class-acf-location-post-status.php:22 -msgid "Post Status" -msgstr "Статус записи" - -#: includes/acf-wp-functions.php:74 -#: includes/locations/class-acf-location-nav-menu.php:89 -msgid "Menus" -msgstr "Меню" - -#: includes/locations/class-acf-location-nav-menu.php:80 -msgid "Menu Locations" -msgstr "Области для меню" - -#: includes/locations/class-acf-location-nav-menu.php:22 -msgid "Menu" -msgstr "Меню" - -#: includes/locations/class-acf-location-post-taxonomy.php:22 -msgid "Post Taxonomy" -msgstr "Таксономия записи" - -#: includes/locations/class-acf-location-page-type.php:114 -msgid "Child Page (has parent)" -msgstr "Дочерняя страница (имеет родителя)" - -#: includes/locations/class-acf-location-page-type.php:113 -msgid "Parent Page (has children)" -msgstr "Родительская страница (имеет дочерние)" - -#: includes/locations/class-acf-location-page-type.php:112 -msgid "Top Level Page (no parent)" -msgstr "Страница верхнего уровня (без родителей)" - -#: includes/locations/class-acf-location-page-type.php:111 -msgid "Posts Page" -msgstr "Страница записей" - -#: includes/locations/class-acf-location-page-type.php:110 -msgid "Front Page" -msgstr "Главная страница" - -#: includes/locations/class-acf-location-page-type.php:22 -msgid "Page Type" -msgstr "Тип страницы" - -#: includes/locations/class-acf-location-current-user.php:73 -msgid "Viewing back end" -msgstr "Просмотр админки" - -#: includes/locations/class-acf-location-current-user.php:72 -msgid "Viewing front end" -msgstr "Просмотр фронтэнда" - -#: includes/locations/class-acf-location-current-user.php:71 -msgid "Logged in" -msgstr "Авторизован" - -#: includes/locations/class-acf-location-current-user.php:22 -msgid "Current User" -msgstr "Текущий пользователь" - -#: includes/locations/class-acf-location-page-template.php:22 -msgid "Page Template" -msgstr "Шаблон страницы" - -#: includes/locations/class-acf-location-user-form.php:74 -msgid "Register" -msgstr "Регистрация" - -#: includes/locations/class-acf-location-user-form.php:73 -msgid "Add / Edit" -msgstr "Добавить / изменить" - -#: includes/locations/class-acf-location-user-form.php:22 -msgid "User Form" -msgstr "Форма пользователя" - -#: includes/locations/class-acf-location-page-parent.php:22 -msgid "Page Parent" -msgstr "Родительская страница" - -#: includes/locations/class-acf-location-current-user-role.php:77 -msgid "Super Admin" -msgstr "Супер администратор" - -#: includes/locations/class-acf-location-current-user-role.php:22 -msgid "Current User Role" -msgstr "Текущая роль пользователя" - -#: includes/locations/class-acf-location-page-template.php:73 -#: includes/locations/class-acf-location-post-template.php:85 -msgid "Default Template" -msgstr "Шаблон по умолчанию" - -#: includes/locations/class-acf-location-post-template.php:22 -msgid "Post Template" -msgstr "Шаблон записи" - -#: includes/locations/class-acf-location-post-category.php:22 -msgid "Post Category" -msgstr "Рубрика записи" - -#: includes/locations/class-acf-location-attachment.php:84 -msgid "All %s formats" -msgstr "Все %s форматы" - -#: includes/locations/class-acf-location-attachment.php:22 -msgid "Attachment" -msgstr "Вложение" - -#: includes/validation.php:366 -msgid "%s value is required" -msgstr "%s значение требуется" - -#: includes/admin/views/acf-field-group/conditional-logic.php:59 -msgid "Show this field if" -msgstr "Показывать это поле, если" - -#: includes/admin/views/acf-field-group/conditional-logic.php:26 -#: includes/admin/views/acf-field-group/field.php:109 includes/fields.php:411 -msgid "Conditional Logic" -msgstr "Условная логика" - -#: includes/admin/views/acf-field-group/conditional-logic.php:156 -#: includes/admin/views/acf-field-group/location-rule.php:92 -msgid "and" -msgstr "и" - -#: includes/admin/post-types/admin-field-groups.php:123 -#: includes/admin/post-types/admin-post-types.php:143 -#: includes/admin/post-types/admin-taxonomies.php:143 -msgid "Local JSON" -msgstr "Локальный JSON" - -#: includes/admin/views/acf-field-group/pro-features.php:46 -msgid "Clone Field" -msgstr "Клонировать поле" - -#: includes/admin/views/upgrade/notice.php:30 -msgid "" -"Please also check all premium add-ons (%s) are updated to the latest version." -msgstr "" -"Также убедитесь, что все надстройки премиум-класса (%s) обновлены до " -"последней версии." - -#: includes/admin/views/upgrade/notice.php:28 -msgid "" -"This version contains improvements to your database and requires an upgrade." -msgstr "Эта версия содержит улучшения вашей базы данных и требует обновления." - -#: includes/admin/views/upgrade/notice.php:28 -msgid "Thank you for updating to %1$s v%2$s!" -msgstr "Спасибо за обновление до %1$s v%2$s!" - -#: includes/admin/views/upgrade/notice.php:27 -msgid "Database Upgrade Required" -msgstr "Требуется обновление БД" - -#: includes/admin/post-types/admin-field-group.php:141 -#: includes/admin/views/upgrade/notice.php:18 -msgid "Options Page" -msgstr "Страница настроек" - -#: includes/admin/views/upgrade/notice.php:15 includes/fields.php:462 -msgid "Gallery" -msgstr "Галерея" - -#: includes/admin/views/upgrade/notice.php:12 includes/fields.php:452 -msgid "Flexible Content" -msgstr "Гибкое содержимое" - -#: includes/admin/views/upgrade/notice.php:9 includes/fields.php:472 -msgid "Repeater" -msgstr "Повторитель" - -#: includes/admin/views/tools/tools.php:24 -msgid "Back to all tools" -msgstr "Вернуться ко всем инструментам" - -#: includes/admin/views/acf-field-group/options.php:195 -msgid "" -"If multiple field groups appear on an edit screen, the first field group's " -"options will be used (the one with the lowest order number)" -msgstr "" -"Если на странице редактирования присутствует несколько групп полей, то будут " -"использованы настройки первой из них (с наиболее низким значением порядка " -"очередности)" - -#: includes/admin/views/acf-field-group/options.php:195 -msgid "Select items to hide them from the edit screen." -msgstr "" -"Выберите блоки, которые необходимо скрыть на странице " -"редактирования." - -#: includes/admin/views/acf-field-group/options.php:194 -msgid "Hide on screen" -msgstr "Скрыть на экране" - -#: includes/admin/views/acf-field-group/options.php:186 -msgid "Send Trackbacks" -msgstr "Отправить обратные ссылки" - -#: includes/admin/post-types/admin-taxonomy.php:128 -#: includes/admin/views/acf-field-group/options.php:185 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:159 -#: assets/build/js/acf-internal-post-type.js:180 -#: assets/build/js/acf-internal-post-type.js:254 -msgid "Tags" -msgstr "Метки" - -#: includes/admin/post-types/admin-taxonomy.php:130 -#: includes/admin/views/acf-field-group/options.php:184 -#: assets/build/js/acf-internal-post-type.js:183 -#: assets/build/js/acf-internal-post-type.js:257 -msgid "Categories" -msgstr "Рубрики" - -#: includes/admin/views/acf-field-group/options.php:182 -#: includes/admin/views/acf-post-type/advanced-settings.php:28 -msgid "Page Attributes" -msgstr "Атрибуты страницы" - -#: includes/admin/views/acf-field-group/options.php:181 -msgid "Format" -msgstr "Формат" - -#: includes/admin/views/acf-field-group/options.php:180 -#: includes/admin/views/acf-post-type/advanced-settings.php:22 -msgid "Author" -msgstr "Автор" - -#: includes/admin/views/acf-field-group/options.php:179 -msgid "Slug" -msgstr "Ярлык" - -#: includes/admin/views/acf-field-group/options.php:178 -#: includes/admin/views/acf-post-type/advanced-settings.php:27 -msgid "Revisions" -msgstr "Редакции" - -#: includes/acf-wp-functions.php:66 -#: includes/admin/views/acf-field-group/options.php:177 -#: includes/admin/views/acf-post-type/advanced-settings.php:23 -msgid "Comments" -msgstr "Комментарии" - -#: includes/admin/views/acf-field-group/options.php:176 -msgid "Discussion" -msgstr "Обсуждение" - -#: includes/admin/views/acf-field-group/options.php:174 -#: includes/admin/views/acf-post-type/advanced-settings.php:26 -msgid "Excerpt" -msgstr "Отрывок" - -#: includes/admin/views/acf-field-group/options.php:173 -msgid "Content Editor" -msgstr "Текстовый редактор" - -#: includes/admin/views/acf-field-group/options.php:172 -msgid "Permalink" -msgstr "Постоянная ссылка" - -#: includes/admin/views/acf-field-group/options.php:250 -msgid "Shown in field group list" -msgstr "Отображается в списке групп полей" - -#: includes/admin/views/acf-field-group/options.php:157 -msgid "Field groups with a lower order will appear first" -msgstr "Группа полей с самым низким порядковым номером появится первой" - -#: includes/admin/views/acf-field-group/options.php:156 -msgid "Order No." -msgstr "Порядковый номер" - -#: includes/admin/views/acf-field-group/options.php:147 -msgid "Below fields" -msgstr "Под полями" - -#: includes/admin/views/acf-field-group/options.php:146 -msgid "Below labels" -msgstr "Под метками" - -#: includes/admin/views/acf-field-group/options.php:139 -msgid "Instruction Placement" -msgstr "Размещение инструкции" - -#: includes/admin/views/acf-field-group/options.php:122 -msgid "Label Placement" -msgstr "Размещение этикетки" - -#: includes/admin/views/acf-field-group/options.php:110 -msgid "Side" -msgstr "На боковой панели" - -#: includes/admin/views/acf-field-group/options.php:109 -msgid "Normal (after content)" -msgstr "Обычный (после содержимого)" - -#: includes/admin/views/acf-field-group/options.php:108 -msgid "High (after title)" -msgstr "Высокий (после названия)" - -#: includes/admin/views/acf-field-group/options.php:101 -msgid "Position" -msgstr "Позиция" - -#: includes/admin/views/acf-field-group/options.php:92 -msgid "Seamless (no metabox)" -msgstr "Бесшовный (без метабокса)" - -#: includes/admin/views/acf-field-group/options.php:91 -msgid "Standard (WP metabox)" -msgstr "Стандарт (метабокс WP)" - -#: includes/admin/views/acf-field-group/options.php:84 -msgid "Style" -msgstr "Стиль" - -#: includes/admin/views/acf-field-group/fields.php:55 -msgid "Type" -msgstr "Тип" - -#: includes/admin/post-types/admin-field-groups.php:117 -#: includes/admin/post-types/admin-post-types.php:136 -#: includes/admin/post-types/admin-taxonomies.php:136 -#: includes/admin/views/acf-field-group/fields.php:54 -msgid "Key" -msgstr "Ключ" - -#. translators: Hidden accessibility text for the positional order number of -#. the field. -#: includes/admin/views/acf-field-group/fields.php:48 -msgid "Order" -msgstr "Порядок" - -#: includes/admin/views/acf-field-group/field.php:322 -msgid "Close Field" -msgstr "Закрыть поле" - -#: includes/admin/views/acf-field-group/field.php:253 -msgid "id" -msgstr "id" - -#: includes/admin/views/acf-field-group/field.php:237 -msgid "class" -msgstr "класс" - -#: includes/admin/views/acf-field-group/field.php:279 -msgid "width" -msgstr "ширина" - -#: includes/admin/views/acf-field-group/field.php:273 -msgid "Wrapper Attributes" -msgstr "Атрибуты обёртки" - -#: includes/admin/views/acf-field-group/field.php:196 -msgid "Required" -msgstr "Обязательное" - -#: includes/admin/views/acf-field-group/field.php:221 -msgid "Instructions for authors. Shown when submitting data" -msgstr "Инструкция для авторов. Отображается при отправке данных" - -#: includes/admin/views/acf-field-group/field.php:220 -msgid "Instructions" -msgstr "Инструкции" - -#: includes/admin/views/acf-field-group/field.php:129 -msgid "Field Type" -msgstr "Тип поля" - -#: includes/admin/views/acf-field-group/field.php:170 -msgid "Single word, no spaces. Underscores and dashes allowed" -msgstr "Одиночное слово, без пробелов. Подчеркивания и тире разрешены" - -#: includes/admin/views/acf-field-group/field.php:169 -msgid "Field Name" -msgstr "Название поля" - -#: includes/admin/views/acf-field-group/field.php:157 -msgid "This is the name which will appear on the EDIT page" -msgstr "Имя поля на странице редактирования" - -#: includes/admin/views/acf-field-group/field.php:156 -#: includes/admin/views/browse-fields-modal.php:59 -msgid "Field Label" -msgstr "Этикетка поля" - -#: includes/admin/views/acf-field-group/field.php:81 -msgid "Delete" -msgstr "Удалить" - -#: includes/admin/views/acf-field-group/field.php:81 -msgid "Delete field" -msgstr "Удалить поле" - -#: includes/admin/views/acf-field-group/field.php:79 -msgid "Move" -msgstr "Переместить" - -#: includes/admin/views/acf-field-group/field.php:79 -msgid "Move field to another group" -msgstr "Переместить поле в другую группу" - -#: includes/admin/views/acf-field-group/field.php:77 -msgid "Duplicate field" -msgstr "Дублировать поле" - -#: includes/admin/views/acf-field-group/field.php:73 -#: includes/admin/views/acf-field-group/field.php:76 -msgid "Edit field" -msgstr "Изменить поле" - -#: includes/admin/views/acf-field-group/field.php:69 -msgid "Drag to reorder" -msgstr "Перетащите, чтобы изменить порядок" - -#: includes/admin/post-types/admin-field-group.php:103 -#: includes/admin/views/acf-field-group/location-group.php:3 -#: assets/build/js/acf-field-group.js:2347 -#: assets/build/js/acf-field-group.js:2763 -msgid "Show this field group if" -msgstr "Показать эту группу полей, если" - -#: includes/admin/views/upgrade/upgrade.php:94 -#: includes/ajax/class-acf-ajax-upgrade.php:34 -msgid "No updates available." -msgstr "Обновлений нет." - -#: includes/admin/views/upgrade/upgrade.php:33 -msgid "Database upgrade complete. See what's new" -msgstr "Обновление БД завершено. Посмотрите, что нового" - -#: includes/admin/views/upgrade/upgrade.php:30 -msgid "Reading upgrade tasks..." -msgstr "Чтения задач обновления..." - -#: includes/admin/views/upgrade/network.php:165 -#: includes/admin/views/upgrade/upgrade.php:65 -msgid "Upgrade failed." -msgstr "Ошибка обновления." - -#: includes/admin/views/upgrade/network.php:162 -msgid "Upgrade complete." -msgstr "Обновление завершено." - -#: includes/admin/views/upgrade/network.php:148 -#: includes/admin/views/upgrade/upgrade.php:31 -msgid "Upgrading data to version %s" -msgstr "Обновление данных до версии %s" - -#: includes/admin/views/upgrade/network.php:121 -#: includes/admin/views/upgrade/notice.php:44 -msgid "" -"It is strongly recommended that you backup your database before proceeding. " -"Are you sure you wish to run the updater now?" -msgstr "" -"Мы настоятельно рекомендуем сделать резервную копию базы данных перед " -"началом работы. Вы уверены, что хотите запустить обновление сейчас?" - -#: includes/admin/views/upgrade/network.php:117 -msgid "Please select at least one site to upgrade." -msgstr "Выберите хотя бы один сайт для обновления." - -#: includes/admin/views/upgrade/network.php:97 -msgid "" -"Database Upgrade complete. Return to network dashboard" -msgstr "Обновление БД закончено. Вернуться в консоль" - -#: includes/admin/views/upgrade/network.php:80 -msgid "Site is up to date" -msgstr "Сайт обновлен" - -#: includes/admin/views/upgrade/network.php:78 -msgid "Site requires database upgrade from %1$s to %2$s" -msgstr "Сайт требует обновления БД с %1$s до %2$s" - -#: includes/admin/views/upgrade/network.php:36 -#: includes/admin/views/upgrade/network.php:47 -msgid "Site" -msgstr "Сайт" - -#: includes/admin/views/upgrade/network.php:26 -#: includes/admin/views/upgrade/network.php:27 -#: includes/admin/views/upgrade/network.php:96 -msgid "Upgrade Sites" -msgstr "Обновление сайтов" - -#: includes/admin/views/upgrade/network.php:26 -msgid "" -"The following sites require a DB upgrade. Check the ones you want to update " -"and then click %s." -msgstr "" -"Следующие сайты требуют обновления БД. Отметьте те, которые вы хотите " -"обновить, а затем нажмите %s." - -#: includes/admin/views/acf-field-group/conditional-logic.php:171 -#: includes/admin/views/acf-field-group/locations.php:38 -msgid "Add rule group" -msgstr "Добавить группу правил" - -#: includes/admin/views/acf-field-group/locations.php:10 -msgid "" -"Create a set of rules to determine which edit screens will use these " -"advanced custom fields" -msgstr "" -"Создайте набор правил для указания страниц, где следует отображать группу " -"полей" - -#: includes/admin/views/acf-field-group/locations.php:9 -msgid "Rules" -msgstr "Правила" - -#: includes/admin/tools/class-acf-admin-tool-export.php:510 -msgid "Copied" -msgstr "Скопировано" - -#: includes/admin/tools/class-acf-admin-tool-export.php:486 -msgid "Copy to clipboard" -msgstr "Скопировать в буфер обмена" - -#: includes/admin/tools/class-acf-admin-tool-export.php:385 -msgid "" -"Select the items you would like to export and then select your export " -"method. Export As JSON to export to a .json file which you can then import " -"to another ACF installation. Generate PHP to export to PHP code which you " -"can place in your theme." -msgstr "" -"Выберите элементы, которые вы хотите экспортировать, а затем выберите метод " -"экспорта. Экспортировать как JSON для экспорта в файл .json, который затем " -"можно импортировать в другую установку ACF. Сгенерировать PHP для экспорта в " -"PHP-код, который можно разместить в вашей теме." - -#: includes/admin/tools/class-acf-admin-tool-export.php:233 -msgid "Select Field Groups" -msgstr "Выберите группы полей" - -#: includes/admin/tools/class-acf-admin-tool-export.php:96 -#: includes/admin/tools/class-acf-admin-tool-export.php:131 -msgid "No field groups selected" -msgstr "Не выбраны группы полей" - -#: includes/admin/tools/class-acf-admin-tool-export.php:39 -#: includes/admin/tools/class-acf-admin-tool-export.php:393 -#: includes/admin/tools/class-acf-admin-tool-export.php:421 -msgid "Generate PHP" -msgstr "Генерировать PHP" - -#: includes/admin/tools/class-acf-admin-tool-export.php:35 -msgid "Export Field Groups" -msgstr "Экспорт групп полей" - -#: includes/admin/tools/class-acf-admin-tool-import.php:177 -msgid "Import file empty" -msgstr "Файл импорта пуст" - -#: includes/admin/tools/class-acf-admin-tool-import.php:168 -msgid "Incorrect file type" -msgstr "Неправильный тип файла" - -#: includes/admin/tools/class-acf-admin-tool-import.php:163 -msgid "Error uploading file. Please try again" -msgstr "Ошибка при загрузке файла. Попробуйте еще раз" - -#: includes/admin/tools/class-acf-admin-tool-import.php:50 -msgid "" -"Select the Advanced Custom Fields JSON file you would like to import. When " -"you click the import button below, ACF will import the items in that file." -msgstr "" -"Выберите файл ACF JSON, который вы хотите импортировать. Когда вы нажмете " -"кнопку импорта ниже, ACF импортирует элементы из этого файла." - -#: includes/admin/tools/class-acf-admin-tool-import.php:27 -msgid "Import Field Groups" -msgstr "Импорт групп полей" - -#: includes/admin/admin-internal-post-type-list.php:401 -msgid "Sync" -msgstr "Синхронизация" - -#: includes/admin/admin-internal-post-type-list.php:858 -msgid "Select %s" -msgstr "Выбрать %s" - -#: includes/admin/admin-internal-post-type-list.php:442 -#: includes/admin/admin-internal-post-type-list.php:474 -#: includes/admin/views/acf-field-group/field.php:77 -msgid "Duplicate" -msgstr "Дублировать" - -#: includes/admin/admin-internal-post-type-list.php:442 -msgid "Duplicate this item" -msgstr "Дублировать элемент" - -#: includes/admin/views/acf-post-type/advanced-settings.php:41 -msgid "Supports" -msgstr "Поддержка" - -#: includes/admin/admin.php:261 includes/admin/views/browse-fields-modal.php:92 -msgid "Documentation" -msgstr "Документация" - -#: includes/admin/post-types/admin-field-groups.php:116 -#: includes/admin/post-types/admin-post-types.php:135 -#: includes/admin/post-types/admin-taxonomies.php:135 -#: includes/admin/views/acf-field-group/options.php:249 -#: includes/admin/views/acf-post-type/advanced-settings.php:62 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:114 -#: includes/admin/views/upgrade/network.php:38 -#: includes/admin/views/upgrade/network.php:49 -msgid "Description" -msgstr "Описание" - -#: includes/admin/admin-internal-post-type-list.php:398 -#: includes/admin/admin-internal-post-type-list.php:747 -msgid "Sync available" -msgstr "Доступна синхронизация" - -#. translators: %s number of field groups synchronized -#: includes/admin/post-types/admin-field-groups.php:381 -msgid "Field group synchronized." -msgid_plural "%s field groups synchronized." -msgstr[0] "Группа полей синхронизирована." -msgstr[1] "%s группы полей синхронизированы." -msgstr[2] "%s групп полей синхронизированы." - -#. translators: %s number of field groups duplicated -#: includes/admin/post-types/admin-field-groups.php:374 -msgid "Field group duplicated." -msgid_plural "%s field groups duplicated." -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: includes/admin/admin-internal-post-type-list.php:137 -msgid "Active (%s)" -msgid_plural "Active (%s)" -msgstr[0] "Активна (%s)" -msgstr[1] "Активно (%s)" -msgstr[2] "Активны (%s)" - -#: includes/admin/admin-upgrade.php:254 -msgid "Review sites & upgrade" -msgstr "Проверьте и обновите сайт" - -#: includes/admin/admin-upgrade.php:59 includes/admin/admin-upgrade.php:93 -#: includes/admin/admin-upgrade.php:94 includes/admin/admin-upgrade.php:230 -#: includes/admin/views/upgrade/network.php:24 -#: includes/admin/views/upgrade/upgrade.php:26 -msgid "Upgrade Database" -msgstr "Обновить базу данных" - -#: includes/admin/views/acf-field-group/options.php:175 -#: includes/admin/views/acf-post-type/advanced-settings.php:30 -msgid "Custom Fields" -msgstr "Произвольные поля" - -#: includes/admin/post-types/admin-field-group.php:616 -msgid "Move Field" -msgstr "Переместить поле" - -#: includes/admin/post-types/admin-field-group.php:605 -#: includes/admin/post-types/admin-field-group.php:609 -msgid "Please select the destination for this field" -msgstr "Выберите местоположение для этого поля" - -#. translators: Confirmation message once a field has been moved to a different -#. field group. -#: includes/admin/post-types/admin-field-group.php:567 -msgid "The %1$s field can now be found in the %2$s field group" -msgstr "Поле %1$s теперь можно найти в группе полей %2$s" - -#: includes/admin/post-types/admin-field-group.php:564 -msgid "Move Complete." -msgstr "Движение завершено." - -#: includes/admin/views/acf-field-group/field.php:39 -#: includes/admin/views/acf-field-group/options.php:217 -#: includes/admin/views/acf-post-type/advanced-settings.php:78 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:130 -msgid "Active" -msgstr "Активен" - -#: includes/admin/post-types/admin-field-group.php:266 -msgid "Field Keys" -msgstr "Ключи полей" - -#: includes/admin/post-types/admin-field-group.php:164 -#: includes/admin/tools/class-acf-admin-tool-export.php:342 -msgid "Settings" -msgstr "Настройки" - -#: includes/admin/post-types/admin-field-groups.php:118 -msgid "Location" -msgstr "Местонахождение" - -#: includes/admin/post-types/admin-field-group.php:104 -#: assets/build/js/acf-input.js:983 assets/build/js/acf-input.js:1075 -msgid "Null" -msgstr "Null" - -#: includes/admin/post-types/admin-field-group.php:101 -#: includes/class-acf-internal-post-type.php:730 -#: includes/post-types/class-acf-field-group.php:345 -#: assets/build/js/acf-field-group.js:1510 -#: assets/build/js/acf-field-group.js:1821 -msgid "copy" -msgstr "копировать" - -#: includes/admin/post-types/admin-field-group.php:100 -#: assets/build/js/acf-field-group.js:623 -#: assets/build/js/acf-field-group.js:778 -msgid "(this field)" -msgstr "(текущее поле)" - -#: includes/admin/post-types/admin-field-group.php:98 -#: assets/build/js/acf-input.js:918 assets/build/js/acf-input.js:943 -#: assets/build/js/acf-input.js:1002 assets/build/js/acf-input.js:1030 -msgid "Checked" -msgstr "Выбрано" - -#: includes/admin/post-types/admin-field-group.php:94 -#: assets/build/js/acf-field-group.js:1615 -#: assets/build/js/acf-field-group.js:1933 -msgid "Move Custom Field" -msgstr "Переместить пользовательское поле" - -#: includes/admin/post-types/admin-field-group.php:93 -#: assets/build/js/acf-field-group.js:649 -#: assets/build/js/acf-field-group.js:804 -msgid "No toggle fields available" -msgstr "Нет доступных переключаемых полей" - -#: includes/admin/post-types/admin-field-group.php:91 -msgid "Field group title is required" -msgstr "Название группы полей обязательно" - -#: includes/admin/post-types/admin-field-group.php:90 -#: assets/build/js/acf-field-group.js:1604 -#: assets/build/js/acf-field-group.js:1919 -msgid "This field cannot be moved until its changes have been saved" -msgstr "Это поле не может быть перемещено до сохранения изменений" - -#: includes/admin/post-types/admin-field-group.php:89 -#: assets/build/js/acf-field-group.js:1414 -#: assets/build/js/acf-field-group.js:1716 -msgid "The string \"field_\" may not be used at the start of a field name" -msgstr "Строка \"field_\" не может использоваться в начале имени поля" - -#: includes/admin/post-types/admin-field-group.php:71 -msgid "Field group draft updated." -msgstr "Черновик группы полей обновлен." - -#: includes/admin/post-types/admin-field-group.php:70 -msgid "Field group scheduled for." -msgstr "Группа полей запланирована на." - -#: includes/admin/post-types/admin-field-group.php:69 -msgid "Field group submitted." -msgstr "Группа полей отправлена." - -#: includes/admin/post-types/admin-field-group.php:68 -msgid "Field group saved." -msgstr "Группа полей сохранена." - -#: includes/admin/post-types/admin-field-group.php:67 -msgid "Field group published." -msgstr "Группа полей опубликована." - -#: includes/admin/post-types/admin-field-group.php:64 -msgid "Field group deleted." -msgstr "Группа полей удалена." - -#: includes/admin/post-types/admin-field-group.php:62 -#: includes/admin/post-types/admin-field-group.php:63 -#: includes/admin/post-types/admin-field-group.php:65 -msgid "Field group updated." -msgstr "Группа полей обновлена." - -#: includes/admin/admin-tools.php:118 -#: includes/admin/views/global/navigation.php:246 -#: includes/admin/views/tools/tools.php:21 -msgid "Tools" -msgstr "Инструменты" - -#: includes/locations/abstract-acf-location.php:106 -msgid "is not equal to" -msgstr "не равно" - -#: includes/locations/abstract-acf-location.php:105 -msgid "is equal to" -msgstr "равно" - -#: includes/locations.php:102 -msgid "Forms" -msgstr "Формы" - -#: includes/admin/post-types/admin-post-type.php:127 includes/locations.php:100 -#: includes/locations/class-acf-location-page.php:22 -#: assets/build/js/acf-internal-post-type.js:175 -#: assets/build/js/acf-internal-post-type.js:249 -msgid "Page" -msgstr "Страница" - -#: includes/admin/post-types/admin-post-type.php:125 includes/locations.php:99 -#: includes/locations/class-acf-location-post.php:22 -#: assets/build/js/acf-internal-post-type.js:172 -#: assets/build/js/acf-internal-post-type.js:246 -msgid "Post" -msgstr "Запись" - -#: includes/fields.php:354 -msgid "Relational" -msgstr "Отношение" - -#: includes/fields.php:353 -msgid "Choice" -msgstr "Выбор" - -#: includes/fields.php:351 -msgid "Basic" -msgstr "Базовый" - -#: includes/fields.php:320 -msgid "Unknown" -msgstr "Неизвестный" - -#: includes/fields.php:320 -msgid "Field type does not exist" -msgstr "Тип поля не существует" - -#: includes/forms/form-front.php:236 -msgid "Spam Detected" -msgstr "Обнаружение спама" - -#: includes/forms/form-front.php:107 -msgid "Post updated" -msgstr "Запись обновлена" - -#: includes/forms/form-front.php:106 -msgid "Update" -msgstr "Обновить" - -#: includes/forms/form-front.php:57 -msgid "Validate Email" -msgstr "Проверка Email" - -#: includes/fields.php:352 includes/forms/form-front.php:49 -msgid "Content" -msgstr "Содержимое" - -#: includes/admin/views/acf-post-type/advanced-settings.php:21 -#: includes/forms/form-front.php:40 -msgid "Title" -msgstr "Заголовок" - -#: includes/assets.php:372 includes/forms/form-comment.php:160 -#: assets/build/js/acf-input.js:7382 assets/build/js/acf-input.js:7968 -msgid "Edit field group" -msgstr "Изменить группу полей" - -#: includes/admin/post-types/admin-field-group.php:117 -#: assets/build/js/acf-input.js:1125 assets/build/js/acf-input.js:1230 -msgid "Selection is less than" -msgstr "Отбор меньше, чем" - -#: includes/admin/post-types/admin-field-group.php:116 -#: assets/build/js/acf-input.js:1106 assets/build/js/acf-input.js:1202 -msgid "Selection is greater than" -msgstr "Отбор больше, чем" - -#: includes/admin/post-types/admin-field-group.php:115 -#: assets/build/js/acf-input.js:1075 assets/build/js/acf-input.js:1170 -msgid "Value is less than" -msgstr "Значение меньше чем" - -#: includes/admin/post-types/admin-field-group.php:114 -#: assets/build/js/acf-input.js:1045 assets/build/js/acf-input.js:1139 -msgid "Value is greater than" -msgstr "Значение больше чем" - -#: includes/admin/post-types/admin-field-group.php:113 -#: assets/build/js/acf-input.js:888 assets/build/js/acf-input.js:960 -msgid "Value contains" -msgstr "Значение содержит" - -#: includes/admin/post-types/admin-field-group.php:112 -#: assets/build/js/acf-input.js:862 assets/build/js/acf-input.js:926 -msgid "Value matches pattern" -msgstr "Значение соответствует паттерну" - -#: includes/admin/post-types/admin-field-group.php:111 -#: assets/build/js/acf-input.js:840 assets/build/js/acf-input.js:1023 -#: assets/build/js/acf-input.js:903 assets/build/js/acf-input.js:1116 -msgid "Value is not equal to" -msgstr "Значение не равно" - -#: includes/admin/post-types/admin-field-group.php:110 -#: assets/build/js/acf-input.js:810 assets/build/js/acf-input.js:964 -#: assets/build/js/acf-input.js:864 assets/build/js/acf-input.js:1053 -msgid "Value is equal to" -msgstr "Значение равно" - -#: includes/admin/post-types/admin-field-group.php:109 -#: assets/build/js/acf-input.js:788 assets/build/js/acf-input.js:841 -msgid "Has no value" -msgstr "Не имеет значения" - -#: includes/admin/post-types/admin-field-group.php:108 -#: assets/build/js/acf-input.js:758 assets/build/js/acf-input.js:783 -msgid "Has any value" -msgstr "Имеет любое значение" - -#: includes/admin/admin-internal-post-type.php:345 -#: includes/admin/views/browse-fields-modal.php:62 includes/assets.php:353 -#: assets/build/js/acf.js:1564 assets/build/js/acf.js:1658 -msgid "Cancel" -msgstr "Отмена" - -#: includes/assets.php:349 assets/build/js/acf.js:1738 -#: assets/build/js/acf.js:1855 -msgid "Are you sure?" -msgstr "Вы уверены?" - -#: includes/assets.php:369 assets/build/js/acf-input.js:9442 -#: assets/build/js/acf-input.js:10294 -msgid "%d fields require attention" -msgstr "%d полей требуют вашего внимания" - -#: includes/assets.php:368 assets/build/js/acf-input.js:9440 -#: assets/build/js/acf-input.js:10290 -msgid "1 field requires attention" -msgstr "1 поле требует внимания" - -#: includes/assets.php:367 includes/validation.php:288 -#: includes/validation.php:298 assets/build/js/acf-input.js:9435 -#: assets/build/js/acf-input.js:10285 -msgid "Validation failed" -msgstr "Валидация не удалась" - -#: includes/assets.php:366 assets/build/js/acf-input.js:9603 -#: assets/build/js/acf-input.js:10473 -msgid "Validation successful" -msgstr "Валидация пройдена успешно" - -#: includes/media.php:54 assets/build/js/acf-input.js:7210 -#: assets/build/js/acf-input.js:7772 -msgid "Restricted" -msgstr "Ограничено" - -#: includes/media.php:53 assets/build/js/acf-input.js:7025 -#: assets/build/js/acf-input.js:7536 -msgid "Collapse Details" -msgstr "Свернуть подробные сведения" - -#: includes/media.php:52 assets/build/js/acf-input.js:7025 -#: assets/build/js/acf-input.js:7533 -msgid "Expand Details" -msgstr "Развернуть подробные сведения" - -#: includes/admin/views/acf-post-type/advanced-settings.php:465 -#: includes/media.php:51 assets/build/js/acf-input.js:6892 -#: assets/build/js/acf-input.js:7381 -msgid "Uploaded to this post" -msgstr "Загруженные для этой записи" - -#: includes/media.php:50 assets/build/js/acf-input.js:6931 -#: assets/build/js/acf-input.js:7420 -msgctxt "verb" -msgid "Update" -msgstr "Обновить" - -#: includes/media.php:49 -msgctxt "verb" -msgid "Edit" -msgstr "Изменить" - -#: includes/assets.php:363 assets/build/js/acf-input.js:9212 -#: assets/build/js/acf-input.js:10056 -msgid "The changes you made will be lost if you navigate away from this page" -msgstr "Внесенные вами изменения будут утеряны, если вы покинете эту страницу" - -#: includes/api/api-helpers.php:3395 -msgid "File type must be %s." -msgstr "Тип файла должен быть %s." - -#: includes/admin/post-types/admin-field-group.php:102 -#: includes/admin/views/acf-field-group/conditional-logic.php:59 -#: includes/admin/views/acf-field-group/conditional-logic.php:169 -#: includes/admin/views/acf-field-group/location-group.php:3 -#: includes/admin/views/acf-field-group/locations.php:36 -#: includes/api/api-helpers.php:3391 assets/build/js/acf-field-group.js:771 -#: assets/build/js/acf-field-group.js:2385 -#: assets/build/js/acf-field-group.js:933 -#: assets/build/js/acf-field-group.js:2807 -msgid "or" -msgstr "или" - -#: includes/api/api-helpers.php:3364 -msgid "File size must not exceed %s." -msgstr "Размер файла не должен превышать %s." - -#: includes/api/api-helpers.php:3359 -msgid "File size must be at least %s." -msgstr "Размер файла должен быть не менее чем %s." - -#: includes/api/api-helpers.php:3344 -msgid "Image height must not exceed %dpx." -msgstr "Высота изображения не должна превышать %d px." - -#: includes/api/api-helpers.php:3339 -msgid "Image height must be at least %dpx." -msgstr "Высота изображения должна быть не менее %d px." - -#: includes/api/api-helpers.php:3325 -msgid "Image width must not exceed %dpx." -msgstr "Ширина изображения не должна превышать %d px." - -#: includes/api/api-helpers.php:3320 -msgid "Image width must be at least %dpx." -msgstr "Ширина изображения должна быть не менее %d px." - -#: includes/api/api-helpers.php:1561 includes/api/api-term.php:147 -msgid "(no title)" -msgstr "(без названия)" - -#: includes/api/api-helpers.php:853 -msgid "Full Size" -msgstr "Полный" - -#: includes/api/api-helpers.php:812 -msgid "Large" -msgstr "Большой" - -#: includes/api/api-helpers.php:811 -msgid "Medium" -msgstr "Средний" - -#: includes/api/api-helpers.php:810 -msgid "Thumbnail" -msgstr "Миниатюра" - -#: includes/acf-field-functions.php:854 -#: includes/admin/post-types/admin-field-group.php:99 -#: assets/build/js/acf-field-group.js:1077 -#: assets/build/js/acf-field-group.js:1260 -msgid "(no label)" -msgstr "(без этикетки)" - -#: includes/fields/class-acf-field-textarea.php:145 -msgid "Sets the textarea height" -msgstr "Задает высоту текстовой области" - -#: includes/fields/class-acf-field-textarea.php:144 -msgid "Rows" -msgstr "Строки" - -#: includes/fields/class-acf-field-textarea.php:25 -msgid "Text Area" -msgstr "Область текста" - -#: includes/fields/class-acf-field-checkbox.php:451 -msgid "Prepend an extra checkbox to toggle all choices" -msgstr "Добавьте дополнительный флажок, чтобы переключить все варианты" - -#: includes/fields/class-acf-field-checkbox.php:413 -msgid "Save 'custom' values to the field's choices" -msgstr "Сохранить \"пользовательские\" значения для выбора поля" - -#: includes/fields/class-acf-field-checkbox.php:402 -msgid "Allow 'custom' values to be added" -msgstr "Разрешить добавление «пользовательских» значений" - -#: includes/fields/class-acf-field-checkbox.php:38 -msgid "Add new choice" -msgstr "Добавить новый выбор" - -#: includes/fields/class-acf-field-checkbox.php:174 -msgid "Toggle All" -msgstr "Переключить все" - -#: includes/fields/class-acf-field-page_link.php:506 -msgid "Allow Archives URLs" -msgstr "Разрешить URL-адреса архивов" - -#: includes/fields/class-acf-field-page_link.php:179 -msgid "Archives" -msgstr "Архивы" - -#: includes/fields/class-acf-field-page_link.php:25 -msgid "Page Link" -msgstr "Ссылка на страницу" - -#: includes/fields/class-acf-field-taxonomy.php:943 -#: includes/locations/class-acf-location-user-form.php:72 -msgid "Add" -msgstr "Добавить" - -#: includes/admin/views/acf-field-group/fields.php:53 -#: includes/fields/class-acf-field-taxonomy.php:908 -msgid "Name" -msgstr "Имя" - -#: includes/fields/class-acf-field-taxonomy.php:892 -msgid "%s added" -msgstr "%s добавлен" - -#: includes/fields/class-acf-field-taxonomy.php:856 -msgid "%s already exists" -msgstr "%s уже существует" - -#: includes/fields/class-acf-field-taxonomy.php:844 -msgid "User unable to add new %s" -msgstr "У пользователя нет возможности добавить новый %s" - -#: includes/fields/class-acf-field-taxonomy.php:742 -msgid "Term ID" -msgstr "ID термина" - -#: includes/fields/class-acf-field-taxonomy.php:741 -msgid "Term Object" -msgstr "Объект термина" - -#: includes/fields/class-acf-field-taxonomy.php:726 -msgid "Load value from posts terms" -msgstr "Загрузить значения из терминов записей" - -#: includes/fields/class-acf-field-taxonomy.php:725 -msgid "Load Terms" -msgstr "Загрузить термины" - -#: includes/fields/class-acf-field-taxonomy.php:715 -msgid "Connect selected terms to the post" -msgstr "Связать выбранные термины с записью" - -#: includes/fields/class-acf-field-taxonomy.php:714 -msgid "Save Terms" -msgstr "Сохранение терминов" - -#: includes/fields/class-acf-field-taxonomy.php:704 -msgid "Allow new terms to be created whilst editing" -msgstr "Разрешить создание новых терминов во время редактирования" - -#: includes/fields/class-acf-field-taxonomy.php:703 -msgid "Create Terms" -msgstr "Создание терминов" - -#: includes/fields/class-acf-field-taxonomy.php:762 -msgid "Radio Buttons" -msgstr "Кнопки-переключатели" - -#: includes/fields/class-acf-field-taxonomy.php:761 -msgid "Single Value" -msgstr "Одиночная значение" - -#: includes/fields/class-acf-field-taxonomy.php:759 -msgid "Multi Select" -msgstr "Множественный выбор" - -#: includes/fields/class-acf-field-checkbox.php:25 -#: includes/fields/class-acf-field-taxonomy.php:758 -msgid "Checkbox" -msgstr "Флажок" - -#: includes/fields/class-acf-field-taxonomy.php:757 -msgid "Multiple Values" -msgstr "Несколько значений" - -#: includes/fields/class-acf-field-taxonomy.php:752 -msgid "Select the appearance of this field" -msgstr "Выберите способ отображения поля" - -#: includes/fields/class-acf-field-taxonomy.php:751 -msgid "Appearance" -msgstr "Внешний вид" - -#: includes/fields/class-acf-field-taxonomy.php:693 -msgid "Select the taxonomy to be displayed" -msgstr "Выберите таксономию для отображения" - -#: includes/fields/class-acf-field-taxonomy.php:654 -msgctxt "No Terms" -msgid "No %s" -msgstr "Нет %s" - -#: includes/fields/class-acf-field-number.php:266 -msgid "Value must be equal to or lower than %d" -msgstr "Значение должно быть равным или меньшим чем %d" - -#: includes/fields/class-acf-field-number.php:259 -msgid "Value must be equal to or higher than %d" -msgstr "Значение должно быть равным или больше чем %d" - -#: includes/fields/class-acf-field-number.php:244 -msgid "Value must be a number" -msgstr "Значение должно быть числом" - -#: includes/fields/class-acf-field-number.php:25 -msgid "Number" -msgstr "Число" - -#: includes/fields/class-acf-field-radio.php:264 -msgid "Save 'other' values to the field's choices" -msgstr "Сохранить значения \"другое\" в выборы поля" - -#: includes/fields/class-acf-field-radio.php:253 -msgid "Add 'other' choice to allow for custom values" -msgstr "Выберите значение \"Другое\", чтобы разрешить настраиваемые значения" - -#: includes/admin/views/global/navigation.php:196 -msgid "Other" -msgstr "Другое" - -#: includes/fields/class-acf-field-radio.php:25 -msgid "Radio Button" -msgstr "Кнопка-переключатель" - -#: includes/fields/class-acf-field-accordion.php:107 -msgid "" -"Define an endpoint for the previous accordion to stop. This accordion will " -"not be visible." -msgstr "" -"Определяет конечную точку предыдущего аккордеона. Данный аккордеон будет " -"невидим." - -#: includes/fields/class-acf-field-accordion.php:96 -msgid "Allow this accordion to open without closing others." -msgstr "Позвольте этому аккордеону открываться, не закрывая другие." - -#: includes/fields/class-acf-field-accordion.php:95 -msgid "Multi-Expand" -msgstr "Многократное расширение" - -#: includes/fields/class-acf-field-accordion.php:85 -msgid "Display this accordion as open on page load." -msgstr "Отображать этот аккордеон как открытый при загрузке страницы." - -#: includes/fields/class-acf-field-accordion.php:84 -msgid "Open" -msgstr "Открыть" - -#: includes/fields/class-acf-field-accordion.php:25 -msgid "Accordion" -msgstr "Аккордеон" - -#: includes/fields/class-acf-field-file.php:267 -#: includes/fields/class-acf-field-file.php:279 -msgid "Restrict which files can be uploaded" -msgstr "Ограничить файлы, которые могут быть загружены" - -#: includes/fields/class-acf-field-file.php:220 -msgid "File ID" -msgstr "ID файла" - -#: includes/fields/class-acf-field-file.php:219 -msgid "File URL" -msgstr "URL файла" - -#: includes/fields/class-acf-field-file.php:218 -msgid "File Array" -msgstr "Массив файлов" - -#: includes/fields/class-acf-field-file.php:186 -msgid "Add File" -msgstr "Добавить файл" - -#: includes/admin/tools/class-acf-admin-tool-import.php:156 -#: includes/fields/class-acf-field-file.php:186 -msgid "No file selected" -msgstr "Файл не выбран" - -#: includes/fields/class-acf-field-file.php:150 -msgid "File name" -msgstr "Имя файла" - -#: includes/fields/class-acf-field-file.php:63 -#: assets/build/js/acf-input.js:2474 assets/build/js/acf-input.js:2625 -msgid "Update File" -msgstr "Обновить файл" - -#: includes/fields/class-acf-field-file.php:62 -#: assets/build/js/acf-input.js:2473 assets/build/js/acf-input.js:2624 -msgid "Edit File" -msgstr "Изменить файл" - -#: includes/admin/tools/class-acf-admin-tool-import.php:58 -#: includes/fields/class-acf-field-file.php:61 -#: assets/build/js/acf-input.js:2447 assets/build/js/acf-input.js:2597 -msgid "Select File" -msgstr "Выбрать файл" - -#: includes/fields/class-acf-field-file.php:25 -msgid "File" -msgstr "Файл" - -#: includes/fields/class-acf-field-password.php:25 -msgid "Password" -msgstr "Пароль" - -#: includes/fields/class-acf-field-select.php:392 -msgid "Specify the value returned" -msgstr "Укажите возвращаемое значение" - -#: includes/fields/class-acf-field-select.php:461 -msgid "Use AJAX to lazy load choices?" -msgstr "Использовать AJAX для отложенной загрузки вариантов?" - -#: includes/fields/class-acf-field-checkbox.php:362 -#: includes/fields/class-acf-field-select.php:381 -msgid "Enter each default value on a new line" -msgstr "Введите каждое значение по умолчанию с новой строки" - -#: includes/fields/class-acf-field-select.php:252 includes/media.php:48 -#: assets/build/js/acf-input.js:6790 assets/build/js/acf-input.js:7266 -msgctxt "verb" -msgid "Select" -msgstr "Выбрать" - -#: includes/fields/class-acf-field-select.php:121 -msgctxt "Select2 JS load_fail" -msgid "Loading failed" -msgstr "Загрузка не удалась" - -#: includes/fields/class-acf-field-select.php:120 -msgctxt "Select2 JS searching" -msgid "Searching…" -msgstr "Поиск…" - -#: includes/fields/class-acf-field-select.php:119 -msgctxt "Select2 JS load_more" -msgid "Loading more results…" -msgstr "Загрузить больше результатов…" - -#: includes/fields/class-acf-field-select.php:118 -msgctxt "Select2 JS selection_too_long_n" -msgid "You can only select %d items" -msgstr "Вы можете выбрать только %d элементов" - -#: includes/fields/class-acf-field-select.php:117 -msgctxt "Select2 JS selection_too_long_1" -msgid "You can only select 1 item" -msgstr "Можно выбрать только 1 элемент" - -#: includes/fields/class-acf-field-select.php:116 -msgctxt "Select2 JS input_too_long_n" -msgid "Please delete %d characters" -msgstr "Удалите %d символов" - -#: includes/fields/class-acf-field-select.php:115 -msgctxt "Select2 JS input_too_long_1" -msgid "Please delete 1 character" -msgstr "Удалите 1 символ" - -#: includes/fields/class-acf-field-select.php:114 -msgctxt "Select2 JS input_too_short_n" -msgid "Please enter %d or more characters" -msgstr "Введите %d или больше символов" - -#: includes/fields/class-acf-field-select.php:113 -msgctxt "Select2 JS input_too_short_1" -msgid "Please enter 1 or more characters" -msgstr "Введите 1 или более символов" - -#: includes/fields/class-acf-field-select.php:112 -msgctxt "Select2 JS matches_0" -msgid "No matches found" -msgstr "Соответствий не найдено" - -#: includes/fields/class-acf-field-select.php:111 -msgctxt "Select2 JS matches_n" -msgid "%d results are available, use up and down arrow keys to navigate." -msgstr "%d значений доступно, используйте клавиши вверх и вниз для навигации." - -#: includes/fields/class-acf-field-select.php:110 -msgctxt "Select2 JS matches_1" -msgid "One result is available, press enter to select it." -msgstr "Доступен один результат, нажмите Enter, чтобы выбрать его." - -#: includes/fields/class-acf-field-select.php:25 -#: includes/fields/class-acf-field-taxonomy.php:763 -msgctxt "noun" -msgid "Select" -msgstr "Выбрать" - -#: includes/fields/class-acf-field-user.php:73 -msgid "User ID" -msgstr "ID пользователя" - -#: includes/fields/class-acf-field-user.php:72 -msgid "User Object" -msgstr "Объект пользователя" - -#: includes/fields/class-acf-field-user.php:71 -msgid "User Array" -msgstr "Массив пользователя" - -#: includes/fields/class-acf-field-user.php:59 -msgid "All user roles" -msgstr "Все роли пользователей" - -#: includes/fields/class-acf-field-user.php:51 -msgid "Filter by Role" -msgstr "Фильтровать по роли" - -#: includes/fields/class-acf-field-user.php:15 includes/locations.php:101 -msgid "User" -msgstr "Пользователь" - -#: includes/fields/class-acf-field-separator.php:25 -msgid "Separator" -msgstr "Разделитель" - -#: includes/fields/class-acf-field-color_picker.php:75 -msgid "Select Color" -msgstr "Выбрать цвет" - -#: includes/admin/post-types/admin-post-type.php:129 -#: includes/admin/post-types/admin-taxonomy.php:131 -#: includes/fields/class-acf-field-color_picker.php:73 -#: assets/build/js/acf-internal-post-type.js:72 -#: assets/build/js/acf-internal-post-type.js:86 -msgid "Default" -msgstr "По умолчанию" - -#: includes/admin/views/acf-post-type/advanced-settings.php:89 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:141 -#: includes/fields/class-acf-field-color_picker.php:71 -msgid "Clear" -msgstr "Сброс" - -#: includes/fields/class-acf-field-color_picker.php:25 -msgid "Color Picker" -msgstr "Цветовая палитра" - -#: includes/fields/class-acf-field-date_time_picker.php:88 -msgctxt "Date Time Picker JS pmTextShort" -msgid "P" -msgstr "" - -#: includes/fields/class-acf-field-date_time_picker.php:87 -msgctxt "Date Time Picker JS pmText" -msgid "PM" -msgstr "ПП" - -#: includes/fields/class-acf-field-date_time_picker.php:84 -msgctxt "Date Time Picker JS amTextShort" -msgid "A" -msgstr "" - -#: includes/fields/class-acf-field-date_time_picker.php:83 -msgctxt "Date Time Picker JS amText" -msgid "AM" -msgstr "ДП" - -#: includes/fields/class-acf-field-date_time_picker.php:81 -msgctxt "Date Time Picker JS selectText" -msgid "Select" -msgstr "Выбрать" - -#: includes/fields/class-acf-field-date_time_picker.php:80 -msgctxt "Date Time Picker JS closeText" -msgid "Done" -msgstr "Готово" - -#: includes/fields/class-acf-field-date_time_picker.php:79 -msgctxt "Date Time Picker JS currentText" -msgid "Now" -msgstr "Сейчас" - -#: includes/fields/class-acf-field-date_time_picker.php:78 -msgctxt "Date Time Picker JS timezoneText" -msgid "Time Zone" -msgstr "Часовой пояс" - -#: includes/fields/class-acf-field-date_time_picker.php:77 -msgctxt "Date Time Picker JS microsecText" -msgid "Microsecond" -msgstr "Микросекунда" - -#: includes/fields/class-acf-field-date_time_picker.php:76 -msgctxt "Date Time Picker JS millisecText" -msgid "Millisecond" -msgstr "Миллисекунда" - -#: includes/fields/class-acf-field-date_time_picker.php:75 -msgctxt "Date Time Picker JS secondText" -msgid "Second" -msgstr "Секунда" - -#: includes/fields/class-acf-field-date_time_picker.php:74 -msgctxt "Date Time Picker JS minuteText" -msgid "Minute" -msgstr "Минута" - -#: includes/fields/class-acf-field-date_time_picker.php:73 -msgctxt "Date Time Picker JS hourText" -msgid "Hour" -msgstr "Час" - -#: includes/fields/class-acf-field-date_time_picker.php:72 -msgctxt "Date Time Picker JS timeText" -msgid "Time" -msgstr "Время" - -#: includes/fields/class-acf-field-date_time_picker.php:71 -msgctxt "Date Time Picker JS timeOnlyTitle" -msgid "Choose Time" -msgstr "Выберите время" - -#: includes/fields/class-acf-field-date_time_picker.php:25 -msgid "Date Time Picker" -msgstr "Выбор даты и времени" - -#: includes/fields/class-acf-field-accordion.php:106 -msgid "Endpoint" -msgstr "Конечная точка" - -#: includes/admin/views/acf-field-group/options.php:130 -#: includes/fields/class-acf-field-tab.php:115 -msgid "Left aligned" -msgstr "Выровнено по левому краю" - -#: includes/admin/views/acf-field-group/options.php:129 -#: includes/fields/class-acf-field-tab.php:114 -msgid "Top aligned" -msgstr "Выровнено по верхнему краю" - -#: includes/fields/class-acf-field-tab.php:110 -msgid "Placement" -msgstr "Расположение" - -#: includes/fields/class-acf-field-tab.php:26 -msgid "Tab" -msgstr "Вкладка" - -#: includes/fields/class-acf-field-url.php:162 -msgid "Value must be a valid URL" -msgstr "Значение должно быть допустимым URL" - -#: includes/fields/class-acf-field-link.php:177 -msgid "Link URL" -msgstr "URL ссылки" - -#: includes/fields/class-acf-field-link.php:176 -msgid "Link Array" -msgstr "Массив ссылок" - -#: includes/fields/class-acf-field-link.php:145 -msgid "Opens in a new window/tab" -msgstr "Откроется на новой вкладке" - -#: includes/fields/class-acf-field-link.php:140 -msgid "Select Link" -msgstr "Выбрать ссылку" - -#: includes/fields/class-acf-field-link.php:25 -msgid "Link" -msgstr "Ссылка" - -#: includes/fields/class-acf-field-email.php:25 -msgid "Email" -msgstr "Email" - -#: includes/fields/class-acf-field-number.php:188 -#: includes/fields/class-acf-field-range.php:217 -msgid "Step Size" -msgstr "Шаг изменения" - -#: includes/fields/class-acf-field-number.php:158 -#: includes/fields/class-acf-field-range.php:195 -msgid "Maximum Value" -msgstr "Макс. значение" - -#: includes/fields/class-acf-field-number.php:148 -#: includes/fields/class-acf-field-range.php:184 -msgid "Minimum Value" -msgstr "Минимальное значение" - -#: includes/fields/class-acf-field-range.php:25 -msgid "Range" -msgstr "Диапазон" - -#: includes/fields/class-acf-field-button-group.php:175 -#: includes/fields/class-acf-field-checkbox.php:379 -#: includes/fields/class-acf-field-radio.php:220 -#: includes/fields/class-acf-field-select.php:399 -msgid "Both (Array)" -msgstr "Оба (массив)" - -#: includes/admin/views/acf-field-group/fields.php:52 -#: includes/fields/class-acf-field-button-group.php:174 -#: includes/fields/class-acf-field-checkbox.php:378 -#: includes/fields/class-acf-field-radio.php:219 -#: includes/fields/class-acf-field-select.php:398 -msgid "Label" -msgstr "Этикетка" - -#: includes/fields/class-acf-field-button-group.php:173 -#: includes/fields/class-acf-field-checkbox.php:377 -#: includes/fields/class-acf-field-radio.php:218 -#: includes/fields/class-acf-field-select.php:397 -msgid "Value" -msgstr "Значение" - -#: includes/fields/class-acf-field-button-group.php:222 -#: includes/fields/class-acf-field-checkbox.php:441 -#: includes/fields/class-acf-field-radio.php:292 -msgid "Vertical" -msgstr "Вертикально" - -#: includes/fields/class-acf-field-button-group.php:221 -#: includes/fields/class-acf-field-checkbox.php:442 -#: includes/fields/class-acf-field-radio.php:293 -msgid "Horizontal" -msgstr "Горизонтально" - -#: includes/fields/class-acf-field-button-group.php:148 -#: includes/fields/class-acf-field-checkbox.php:352 -#: includes/fields/class-acf-field-radio.php:193 -#: includes/fields/class-acf-field-select.php:370 -msgid "red : Red" -msgstr "red : Красный" - -#: includes/fields/class-acf-field-button-group.php:148 -#: includes/fields/class-acf-field-checkbox.php:352 -#: includes/fields/class-acf-field-radio.php:193 -#: includes/fields/class-acf-field-select.php:370 -msgid "For more control, you may specify both a value and label like this:" -msgstr "" -"Для большего контроля вы можете указать и значение, и этикетку следующим " -"образом:" - -#: includes/fields/class-acf-field-button-group.php:148 -#: includes/fields/class-acf-field-checkbox.php:352 -#: includes/fields/class-acf-field-radio.php:193 -#: includes/fields/class-acf-field-select.php:370 -msgid "Enter each choice on a new line." -msgstr "Введите каждый вариант с новой строки." - -#: includes/fields/class-acf-field-button-group.php:147 -#: includes/fields/class-acf-field-checkbox.php:351 -#: includes/fields/class-acf-field-radio.php:192 -#: includes/fields/class-acf-field-select.php:369 -msgid "Choices" -msgstr "Варианты" - -#: includes/fields/class-acf-field-button-group.php:24 -msgid "Button Group" -msgstr "Группа кнопок" - -#: includes/fields/class-acf-field-button-group.php:194 -#: includes/fields/class-acf-field-page_link.php:538 -#: includes/fields/class-acf-field-post_object.php:448 -#: includes/fields/class-acf-field-radio.php:238 -#: includes/fields/class-acf-field-select.php:429 -#: includes/fields/class-acf-field-taxonomy.php:772 -#: includes/fields/class-acf-field-user.php:103 -msgid "Allow Null" -msgstr "Разрешить Null" - -#: includes/fields/class-acf-field-page_link.php:263 -#: includes/fields/class-acf-field-post_object.php:257 -#: includes/fields/class-acf-field-taxonomy.php:930 -msgid "Parent" -msgstr "Родитель" - -#: includes/fields/class-acf-field-wysiwyg.php:390 -msgid "TinyMCE will not be initialized until field is clicked" -msgstr "TinyMCE не будет инициализирован, пока не будет нажато поле" - -#: includes/fields/class-acf-field-wysiwyg.php:389 -msgid "Delay Initialization" -msgstr "Задержка инициализации" - -#: includes/fields/class-acf-field-wysiwyg.php:378 -msgid "Show Media Upload Buttons" -msgstr "Показать кнопки загрузки медиа файлов" - -#: includes/fields/class-acf-field-wysiwyg.php:362 -msgid "Toolbar" -msgstr "Верхняя панель" - -#: includes/fields/class-acf-field-wysiwyg.php:354 -msgid "Text Only" -msgstr "Только текст" - -#: includes/fields/class-acf-field-wysiwyg.php:353 -msgid "Visual Only" -msgstr "Только визуально" - -#: includes/fields/class-acf-field-wysiwyg.php:352 -msgid "Visual & Text" -msgstr "Визуально и текст" - -#: includes/fields/class-acf-field-wysiwyg.php:347 -msgid "Tabs" -msgstr "Вкладки" - -#: includes/fields/class-acf-field-wysiwyg.php:285 -msgid "Click to initialize TinyMCE" -msgstr "Нажмите для инициализации TinyMCE" - -#: includes/fields/class-acf-field-wysiwyg.php:279 -msgctxt "Name for the Text editor tab (formerly HTML)" -msgid "Text" -msgstr "Текст" - -#: includes/fields/class-acf-field-wysiwyg.php:278 -msgid "Visual" -msgstr "Визуально" - -#: includes/fields/class-acf-field-text.php:189 -#: includes/fields/class-acf-field-textarea.php:236 -msgid "Value must not exceed %d characters" -msgstr "Значение не должно превышать %d символов" - -#: includes/fields/class-acf-field-text.php:124 -#: includes/fields/class-acf-field-textarea.php:124 -msgid "Leave blank for no limit" -msgstr "Оставьте пустым, чтобы не ограничивать" - -#: includes/fields/class-acf-field-text.php:123 -#: includes/fields/class-acf-field-textarea.php:123 -msgid "Character Limit" -msgstr "Ограничение кол-ва символов" - -#: includes/fields/class-acf-field-email.php:158 -#: includes/fields/class-acf-field-number.php:209 -#: includes/fields/class-acf-field-password.php:105 -#: includes/fields/class-acf-field-range.php:239 -#: includes/fields/class-acf-field-text.php:164 -msgid "Appears after the input" -msgstr "Появляется после ввода" - -#: includes/fields/class-acf-field-email.php:157 -#: includes/fields/class-acf-field-number.php:208 -#: includes/fields/class-acf-field-password.php:104 -#: includes/fields/class-acf-field-range.php:238 -#: includes/fields/class-acf-field-text.php:163 -msgid "Append" -msgstr "Добавить" - -#: includes/fields/class-acf-field-email.php:148 -#: includes/fields/class-acf-field-number.php:199 -#: includes/fields/class-acf-field-password.php:95 -#: includes/fields/class-acf-field-range.php:229 -#: includes/fields/class-acf-field-text.php:154 -msgid "Appears before the input" -msgstr "Появляется перед вводом" - -#: includes/fields/class-acf-field-email.php:147 -#: includes/fields/class-acf-field-number.php:198 -#: includes/fields/class-acf-field-password.php:94 -#: includes/fields/class-acf-field-range.php:228 -#: includes/fields/class-acf-field-text.php:153 -msgid "Prepend" -msgstr "Добавить в начало" - -#: includes/fields/class-acf-field-email.php:138 -#: includes/fields/class-acf-field-number.php:179 -#: includes/fields/class-acf-field-password.php:85 -#: includes/fields/class-acf-field-text.php:144 -#: includes/fields/class-acf-field-textarea.php:156 -#: includes/fields/class-acf-field-url.php:122 -msgid "Appears within the input" -msgstr "Появляется перед полем ввода" - -#: includes/fields/class-acf-field-email.php:137 -#: includes/fields/class-acf-field-number.php:178 -#: includes/fields/class-acf-field-password.php:84 -#: includes/fields/class-acf-field-text.php:143 -#: includes/fields/class-acf-field-textarea.php:155 -#: includes/fields/class-acf-field-url.php:121 -msgid "Placeholder Text" -msgstr "Текст-заполнитель" - -#: includes/fields/class-acf-field-button-group.php:158 -#: includes/fields/class-acf-field-email.php:118 -#: includes/fields/class-acf-field-number.php:129 -#: includes/fields/class-acf-field-radio.php:203 -#: includes/fields/class-acf-field-range.php:165 -#: includes/fields/class-acf-field-text.php:104 -#: includes/fields/class-acf-field-textarea.php:104 -#: includes/fields/class-acf-field-url.php:102 -#: includes/fields/class-acf-field-wysiwyg.php:312 -msgid "Appears when creating a new post" -msgstr "Появляется при создании новой записи" - -#: includes/fields/class-acf-field-text.php:25 -msgid "Text" -msgstr "Текст" - -#: includes/fields/class-acf-field-relationship.php:794 -msgid "%1$s requires at least %2$s selection" -msgid_plural "%1$s requires at least %2$s selections" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: includes/fields/class-acf-field-post_object.php:417 -#: includes/fields/class-acf-field-relationship.php:644 -msgid "Post ID" -msgstr "ID записи" - -#: includes/fields/class-acf-field-post_object.php:17 -#: includes/fields/class-acf-field-post_object.php:416 -#: includes/fields/class-acf-field-relationship.php:643 -msgid "Post Object" -msgstr "Объект записи" - -#: includes/fields/class-acf-field-relationship.php:676 -msgid "Maximum Posts" -msgstr "Макс. кол-во записей" - -#: includes/fields/class-acf-field-relationship.php:666 -msgid "Minimum Posts" -msgstr "Мин. кол-во записей" - -#: includes/admin/views/acf-field-group/options.php:183 -#: includes/admin/views/acf-post-type/advanced-settings.php:29 -#: includes/fields/class-acf-field-relationship.php:701 -msgid "Featured Image" -msgstr "Изображение записи" - -#: includes/fields/class-acf-field-relationship.php:697 -msgid "Selected elements will be displayed in each result" -msgstr "Выбранные элементы будут отображены в каждом результате" - -#: includes/fields/class-acf-field-relationship.php:696 -msgid "Elements" -msgstr "Элементы" - -#: includes/fields/class-acf-field-relationship.php:630 -#: includes/fields/class-acf-field-taxonomy.php:20 -#: includes/fields/class-acf-field-taxonomy.php:692 -#: includes/locations/class-acf-location-taxonomy.php:22 -msgid "Taxonomy" -msgstr "Таксономия" - -#: includes/fields/class-acf-field-relationship.php:629 -#: includes/locations/class-acf-location-post-type.php:22 -#: includes/post-types/class-acf-post-type.php:92 -msgid "Post Type" -msgstr "Тип записи" - -#: includes/fields/class-acf-field-relationship.php:623 -msgid "Filters" -msgstr "Фильтры" - -#: includes/fields/class-acf-field-page_link.php:499 -#: includes/fields/class-acf-field-post_object.php:404 -#: includes/fields/class-acf-field-relationship.php:616 -msgid "All taxonomies" -msgstr "Все таксономии" - -#: includes/fields/class-acf-field-page_link.php:491 -#: includes/fields/class-acf-field-post_object.php:396 -#: includes/fields/class-acf-field-relationship.php:608 -msgid "Filter by Taxonomy" -msgstr "Фильтрация по таксономии" - -#: includes/fields/class-acf-field-page_link.php:469 -#: includes/fields/class-acf-field-post_object.php:374 -#: includes/fields/class-acf-field-relationship.php:586 -msgid "All post types" -msgstr "Все типы записи" - -#: includes/fields/class-acf-field-page_link.php:461 -#: includes/fields/class-acf-field-post_object.php:366 -#: includes/fields/class-acf-field-relationship.php:578 -msgid "Filter by Post Type" -msgstr "Фильтрация по типу записей" - -#: includes/fields/class-acf-field-relationship.php:476 -msgid "Search..." -msgstr "Поиск..." - -#: includes/fields/class-acf-field-relationship.php:406 -msgid "Select taxonomy" -msgstr "Выбрать таксономию" - -#: includes/fields/class-acf-field-relationship.php:397 -msgid "Select post type" -msgstr "Выбрать тип записи" - -#: includes/fields/class-acf-field-relationship.php:61 -#: assets/build/js/acf-input.js:3930 assets/build/js/acf-input.js:4214 -msgid "No matches found" -msgstr "Соответствий не найдено" - -#: includes/fields/class-acf-field-relationship.php:60 -#: assets/build/js/acf-input.js:3913 assets/build/js/acf-input.js:4193 -msgid "Loading" -msgstr "Загрузка" - -#: includes/fields/class-acf-field-relationship.php:59 -#: assets/build/js/acf-input.js:3818 assets/build/js/acf-input.js:4084 -msgid "Maximum values reached ( {max} values )" -msgstr "Достигнуты макс. значения ( {max} values )" - -#: includes/fields/class-acf-field-relationship.php:17 -msgid "Relationship" -msgstr "Родственные связи" - -#: includes/fields/class-acf-field-file.php:291 -#: includes/fields/class-acf-field-image.php:317 -msgid "Comma separated list. Leave blank for all types" -msgstr "" -"Для разделения типов файлов используйте запятые. Оставьте поле пустым для " -"разрешения загрузки всех файлов" - -#: includes/fields/class-acf-field-file.php:290 -#: includes/fields/class-acf-field-image.php:316 -msgid "Allowed File Types" -msgstr "Разрешенные типы файлов" - -#: includes/fields/class-acf-field-file.php:278 -#: includes/fields/class-acf-field-image.php:280 -msgid "Maximum" -msgstr "Максимум" - -#: includes/fields/class-acf-field-file.php:154 -#: includes/fields/class-acf-field-file.php:270 -#: includes/fields/class-acf-field-file.php:282 -#: includes/fields/class-acf-field-image.php:271 -#: includes/fields/class-acf-field-image.php:307 -msgid "File size" -msgstr "Размер файла" - -#: includes/fields/class-acf-field-image.php:245 -#: includes/fields/class-acf-field-image.php:281 -msgid "Restrict which images can be uploaded" -msgstr "Ограничить изображения, которые могут быть загружены" - -#: includes/fields/class-acf-field-file.php:266 -#: includes/fields/class-acf-field-image.php:244 -msgid "Minimum" -msgstr "Минимум" - -#: includes/fields/class-acf-field-file.php:235 -#: includes/fields/class-acf-field-image.php:210 -msgid "Uploaded to post" -msgstr "Загружено в запись" - -#: includes/fields/class-acf-field-file.php:234 -#: includes/fields/class-acf-field-image.php:209 -#: includes/locations/class-acf-location-attachment.php:73 -#: includes/locations/class-acf-location-comment.php:61 -#: includes/locations/class-acf-location-nav-menu.php:74 -#: includes/locations/class-acf-location-taxonomy.php:63 -#: includes/locations/class-acf-location-user-form.php:71 -#: includes/locations/class-acf-location-user-role.php:78 -#: includes/locations/class-acf-location-widget.php:65 -msgid "All" -msgstr "Все" - -#: includes/fields/class-acf-field-file.php:229 -#: includes/fields/class-acf-field-image.php:204 -msgid "Limit the media library choice" -msgstr "Ограничить выбор из библиотеки файлов" - -#: includes/fields/class-acf-field-file.php:228 -#: includes/fields/class-acf-field-image.php:203 -msgid "Library" -msgstr "Библиотека" - -#: includes/fields/class-acf-field-image.php:336 -msgid "Preview Size" -msgstr "Размер предпросмотра" - -#: includes/fields/class-acf-field-image.php:195 -msgid "Image ID" -msgstr "ID изображения" - -#: includes/fields/class-acf-field-image.php:194 -msgid "Image URL" -msgstr "URL изображения" - -#: includes/fields/class-acf-field-image.php:193 -msgid "Image Array" -msgstr "Массив изображения" - -#: includes/fields/class-acf-field-button-group.php:168 -#: includes/fields/class-acf-field-checkbox.php:372 -#: includes/fields/class-acf-field-file.php:213 -#: includes/fields/class-acf-field-link.php:171 -#: includes/fields/class-acf-field-radio.php:213 -msgid "Specify the returned value on front end" -msgstr "Укажите возвращаемое значение на фронтедне" - -#: includes/fields/class-acf-field-button-group.php:167 -#: includes/fields/class-acf-field-checkbox.php:371 -#: includes/fields/class-acf-field-file.php:212 -#: includes/fields/class-acf-field-link.php:170 -#: includes/fields/class-acf-field-radio.php:212 -#: includes/fields/class-acf-field-taxonomy.php:736 -msgid "Return Value" -msgstr "Возвращаемое значение" - -#: includes/fields/class-acf-field-image.php:162 -msgid "Add Image" -msgstr "Добавить изображение" - -#: includes/fields/class-acf-field-image.php:162 -msgid "No image selected" -msgstr "Изображение не выбрано" - -#: includes/assets.php:352 includes/fields/class-acf-field-file.php:162 -#: includes/fields/class-acf-field-image.php:142 -#: includes/fields/class-acf-field-link.php:145 assets/build/js/acf.js:1563 -#: assets/build/js/acf.js:1657 -msgid "Remove" -msgstr "Удалить" - -#: includes/admin/views/acf-field-group/field.php:76 -#: includes/fields/class-acf-field-file.php:160 -#: includes/fields/class-acf-field-image.php:140 -#: includes/fields/class-acf-field-link.php:145 -msgid "Edit" -msgstr "Изменить" - -#: includes/fields/class-acf-field-image.php:70 includes/media.php:55 -#: assets/build/js/acf-input.js:6837 assets/build/js/acf-input.js:7320 -msgid "All images" -msgstr "Все изображения" - -#: includes/fields/class-acf-field-image.php:69 -#: assets/build/js/acf-input.js:3181 assets/build/js/acf-input.js:3399 -msgid "Update Image" -msgstr "Обновить изображение" - -#: includes/fields/class-acf-field-image.php:68 -#: assets/build/js/acf-input.js:3180 assets/build/js/acf-input.js:3398 -msgid "Edit Image" -msgstr "Редактировать" - -#: includes/fields/class-acf-field-image.php:67 -#: assets/build/js/acf-input.js:3156 assets/build/js/acf-input.js:3373 -msgid "Select Image" -msgstr "Выбрать изображение" - -#: includes/fields/class-acf-field-image.php:25 -msgid "Image" -msgstr "Изображение" - -#: includes/fields/class-acf-field-message.php:125 -msgid "Allow HTML markup to display as visible text instead of rendering" -msgstr "" -"Разрешить HTML-разметке отображаться в виде видимого текста вместо отрисовки" - -#: includes/fields/class-acf-field-message.php:124 -msgid "Escape HTML" -msgstr "Escape HTML" - -#: includes/fields/class-acf-field-message.php:116 -#: includes/fields/class-acf-field-textarea.php:172 -msgid "No Formatting" -msgstr "Без форматирования" - -#: includes/fields/class-acf-field-message.php:115 -#: includes/fields/class-acf-field-textarea.php:171 -msgid "Automatically add <br>" -msgstr "Автоматически добавлять <br>" - -#: includes/fields/class-acf-field-message.php:114 -#: includes/fields/class-acf-field-textarea.php:170 -msgid "Automatically add paragraphs" -msgstr "Автоматически добавлять абзацы" - -#: includes/fields/class-acf-field-message.php:110 -#: includes/fields/class-acf-field-textarea.php:166 -msgid "Controls how new lines are rendered" -msgstr "Управляет отрисовкой новых линий" - -#: includes/fields/class-acf-field-message.php:109 -#: includes/fields/class-acf-field-textarea.php:165 -msgid "New Lines" -msgstr "Новые строки" - -#: includes/fields/class-acf-field-date_picker.php:232 -#: includes/fields/class-acf-field-date_time_picker.php:220 -msgid "Week Starts On" -msgstr "Неделя начинается с" - -#: includes/fields/class-acf-field-date_picker.php:201 -msgid "The format used when saving a value" -msgstr "Формат, используемый при сохранении значения" - -#: includes/fields/class-acf-field-date_picker.php:200 -msgid "Save Format" -msgstr "Сохранить формат" - -#: includes/fields/class-acf-field-date_picker.php:67 -msgctxt "Date Picker JS weekHeader" -msgid "Wk" -msgstr "Нед." - -#: includes/fields/class-acf-field-date_picker.php:66 -msgctxt "Date Picker JS prevText" -msgid "Prev" -msgstr "Назад" - -#: includes/fields/class-acf-field-date_picker.php:65 -msgctxt "Date Picker JS nextText" -msgid "Next" -msgstr "Далее" - -#: includes/fields/class-acf-field-date_picker.php:64 -msgctxt "Date Picker JS currentText" -msgid "Today" -msgstr "Сегодня" - -#: includes/fields/class-acf-field-date_picker.php:63 -msgctxt "Date Picker JS closeText" -msgid "Done" -msgstr "Готово" - -#: includes/fields/class-acf-field-date_picker.php:25 -msgid "Date Picker" -msgstr "Выбор даты" - -#: includes/fields/class-acf-field-image.php:248 -#: includes/fields/class-acf-field-image.php:284 -#: includes/fields/class-acf-field-oembed.php:268 -msgid "Width" -msgstr "Ширина" - -#: includes/fields/class-acf-field-oembed.php:265 -#: includes/fields/class-acf-field-oembed.php:277 -msgid "Embed Size" -msgstr "Размер встраивания" - -#: includes/fields/class-acf-field-oembed.php:222 -msgid "Enter URL" -msgstr "Введите URL" - -#: includes/fields/class-acf-field-oembed.php:25 -msgid "oEmbed" -msgstr "oEmbed" - -#: includes/fields/class-acf-field-true_false.php:184 -msgid "Text shown when inactive" -msgstr "Текст отображается, когда он неактивен" - -#: includes/fields/class-acf-field-true_false.php:183 -msgid "Off Text" -msgstr "Отключить текст" - -#: includes/fields/class-acf-field-true_false.php:168 -msgid "Text shown when active" -msgstr "Текст, отображаемый при активности" - -#: includes/fields/class-acf-field-true_false.php:167 -msgid "On Text" -msgstr "На тексте" - -#: includes/fields/class-acf-field-select.php:450 -#: includes/fields/class-acf-field-true_false.php:199 -msgid "Stylized UI" -msgstr "Стилизованный интерфейс" - -#: includes/fields/class-acf-field-button-group.php:157 -#: includes/fields/class-acf-field-checkbox.php:361 -#: includes/fields/class-acf-field-color_picker.php:156 -#: includes/fields/class-acf-field-email.php:117 -#: includes/fields/class-acf-field-number.php:128 -#: includes/fields/class-acf-field-radio.php:202 -#: includes/fields/class-acf-field-range.php:164 -#: includes/fields/class-acf-field-select.php:380 -#: includes/fields/class-acf-field-text.php:103 -#: includes/fields/class-acf-field-textarea.php:103 -#: includes/fields/class-acf-field-true_false.php:147 -#: includes/fields/class-acf-field-url.php:101 -#: includes/fields/class-acf-field-wysiwyg.php:311 -msgid "Default Value" -msgstr "Значение по умолчанию" - -#: includes/fields/class-acf-field-true_false.php:138 -msgid "Displays text alongside the checkbox" -msgstr "Отображать текст рядом с флажком" - -#: includes/fields/class-acf-field-message.php:26 -#: includes/fields/class-acf-field-message.php:99 -#: includes/fields/class-acf-field-true_false.php:137 -msgid "Message" -msgstr "Сообщение" - -#: includes/assets.php:351 includes/fields/class-acf-field-true_false.php:86 -#: includes/fields/class-acf-field-true_false.php:187 -#: assets/build/js/acf.js:1740 assets/build/js/acf.js:1857 -msgid "No" -msgstr "Нет" - -#: includes/assets.php:350 includes/fields/class-acf-field-true_false.php:83 -#: includes/fields/class-acf-field-true_false.php:171 -#: assets/build/js/acf.js:1739 assets/build/js/acf.js:1856 -msgid "Yes" -msgstr "Да" - -#: includes/fields/class-acf-field-true_false.php:25 -msgid "True / False" -msgstr "True / False" - -#: includes/fields/class-acf-field-group.php:474 -msgid "Row" -msgstr "Строка" - -#: includes/fields/class-acf-field-group.php:473 -msgid "Table" -msgstr "Таблица" - -#: includes/admin/post-types/admin-field-group.php:140 -#: includes/fields/class-acf-field-group.php:472 -msgid "Block" -msgstr "Блок" - -#: includes/fields/class-acf-field-group.php:467 -msgid "Specify the style used to render the selected fields" -msgstr "Укажите стиль, используемый для отрисовки выбранных полей" - -#: includes/fields.php:356 includes/fields/class-acf-field-button-group.php:215 -#: includes/fields/class-acf-field-checkbox.php:435 -#: includes/fields/class-acf-field-group.php:466 -#: includes/fields/class-acf-field-radio.php:286 -msgid "Layout" -msgstr "Макет" - -#: includes/fields/class-acf-field-group.php:450 -msgid "Sub Fields" -msgstr "Вложенные поля" - -#: includes/fields/class-acf-field-group.php:25 -msgid "Group" -msgstr "Группа" - -#: includes/fields/class-acf-field-google-map.php:235 -msgid "Customize the map height" -msgstr "Настройка высоты карты" - -#: includes/fields/class-acf-field-google-map.php:234 -#: includes/fields/class-acf-field-image.php:259 -#: includes/fields/class-acf-field-image.php:295 -#: includes/fields/class-acf-field-oembed.php:280 -msgid "Height" -msgstr "Высота" - -#: includes/fields/class-acf-field-google-map.php:223 -msgid "Set the initial zoom level" -msgstr "Укажите начальный масштаб" - -#: includes/fields/class-acf-field-google-map.php:222 -msgid "Zoom" -msgstr "Увеличить" - -#: includes/fields/class-acf-field-google-map.php:196 -#: includes/fields/class-acf-field-google-map.php:209 -msgid "Center the initial map" -msgstr "Центрировать начальную карту" - -#: includes/fields/class-acf-field-google-map.php:195 -#: includes/fields/class-acf-field-google-map.php:208 -msgid "Center" -msgstr "По центру" - -#: includes/fields/class-acf-field-google-map.php:163 -msgid "Search for address..." -msgstr "Поиск по адресу..." - -#: includes/fields/class-acf-field-google-map.php:160 -msgid "Find current location" -msgstr "Определить текущее местоположение" - -#: includes/fields/class-acf-field-google-map.php:159 -msgid "Clear location" -msgstr "Очистить местоположение" - -#: includes/fields/class-acf-field-google-map.php:158 -#: includes/fields/class-acf-field-relationship.php:628 -msgid "Search" -msgstr "Поиск" - -#: includes/fields/class-acf-field-google-map.php:63 -#: assets/build/js/acf-input.js:2840 assets/build/js/acf-input.js:3026 -msgid "Sorry, this browser does not support geolocation" -msgstr "Ваш браузер не поддерживает определение местоположения" - -#: includes/fields/class-acf-field-google-map.php:25 -msgid "Google Map" -msgstr "Google Карта" - -#: includes/fields/class-acf-field-date_picker.php:212 -#: includes/fields/class-acf-field-date_time_picker.php:201 -#: includes/fields/class-acf-field-time_picker.php:132 -msgid "The format returned via template functions" -msgstr "Формат, возвращаемый через функции шаблона" - -#: includes/fields/class-acf-field-color_picker.php:180 -#: includes/fields/class-acf-field-date_picker.php:211 -#: includes/fields/class-acf-field-date_time_picker.php:200 -#: includes/fields/class-acf-field-image.php:187 -#: includes/fields/class-acf-field-post_object.php:411 -#: includes/fields/class-acf-field-relationship.php:638 -#: includes/fields/class-acf-field-select.php:391 -#: includes/fields/class-acf-field-time_picker.php:131 -#: includes/fields/class-acf-field-user.php:66 -msgid "Return Format" -msgstr "Формат возврата" - -#: includes/fields/class-acf-field-date_picker.php:190 -#: includes/fields/class-acf-field-date_picker.php:221 -#: includes/fields/class-acf-field-date_time_picker.php:192 -#: includes/fields/class-acf-field-date_time_picker.php:210 -#: includes/fields/class-acf-field-time_picker.php:123 -#: includes/fields/class-acf-field-time_picker.php:139 -msgid "Custom:" -msgstr "Пользовательский:" - -#: includes/fields/class-acf-field-date_picker.php:182 -#: includes/fields/class-acf-field-date_time_picker.php:183 -#: includes/fields/class-acf-field-time_picker.php:116 -msgid "The format displayed when editing a post" -msgstr "Формат, отображаемый при редактировании записи" - -#: includes/fields/class-acf-field-date_picker.php:181 -#: includes/fields/class-acf-field-date_time_picker.php:182 -#: includes/fields/class-acf-field-time_picker.php:115 -msgid "Display Format" -msgstr "Отображаемый формат" - -#: includes/fields/class-acf-field-time_picker.php:25 -msgid "Time Picker" -msgstr "Подборщик времени" - -#. translators: counts for inactive field groups -#: acf.php:503 -msgid "Inactive (%s)" -msgid_plural "Inactive (%s)" -msgstr[0] "Неактивен (%s)" -msgstr[1] "Неактивны (%s)" -msgstr[2] "Неактивно (%s)" - -#: acf.php:462 -msgid "No Fields found in Trash" -msgstr "Поля не найдены в корзине" - -#: acf.php:461 -msgid "No Fields found" -msgstr "Поля не найдены" - -#: acf.php:460 -msgid "Search Fields" -msgstr "Поиск полей" - -#: acf.php:459 -msgid "View Field" -msgstr "Просмотреть поле" - -#: acf.php:458 includes/admin/views/acf-field-group/fields.php:115 -msgid "New Field" -msgstr "Новое поле" - -#: acf.php:457 -msgid "Edit Field" -msgstr "Изменить поле" - -#: acf.php:456 -msgid "Add New Field" -msgstr "Добавить новое поле" - -#: acf.php:454 -msgid "Field" -msgstr "Поле" - -#: acf.php:453 includes/admin/post-types/admin-field-group.php:163 -#: includes/admin/post-types/admin-field-groups.php:119 -#: includes/admin/views/acf-field-group/fields.php:32 -msgid "Fields" -msgstr "Поля" - -#: acf.php:428 -msgid "No Field Groups found in Trash" -msgstr "Группы полей не найдены в корзине" - -#: acf.php:427 -msgid "No Field Groups found" -msgstr "Группы полей не найдены" - -#: acf.php:426 -msgid "Search Field Groups" -msgstr "Найти группу полей" - -#: acf.php:425 -msgid "View Field Group" -msgstr "Просмотреть группу полей" - -#: acf.php:424 -msgid "New Field Group" -msgstr "Новая группа полей" - -#: acf.php:423 -msgid "Edit Field Group" -msgstr "Редактирование группы полей" - -#: acf.php:422 -msgid "Add New Field Group" -msgstr "Добавить новую группу полей" - -#: acf.php:421 acf.php:455 -#: includes/admin/views/acf-post-type/advanced-settings.php:219 -#: includes/admin/views/acf-post-type/advanced-settings.php:221 -#: includes/post-types/class-acf-post-type.php:93 -#: includes/post-types/class-acf-taxonomy.php:92 -msgid "Add New" -msgstr "Добавить новое" - -#: acf.php:420 -msgid "Field Group" -msgstr "Группа полей" - -#: acf.php:419 includes/admin/post-types/admin-field-groups.php:78 -#: includes/admin/post-types/admin-post-types.php:138 -#: includes/admin/post-types/admin-taxonomies.php:138 -msgid "Field Groups" -msgstr "Группы полей" - -#. Description of the plugin -msgid "Customize WordPress with powerful, professional and intuitive fields." -msgstr "" -"Настройте WordPress с помощью мощных, профессиональных и интуитивно понятных " -"полей." - -#. Plugin URI of the plugin -msgid "https://www.advancedcustomfields.com" -msgstr "https://www.advancedcustomfields.com" - -#. Plugin Name of the plugin -#: acf.php:94 -msgid "Advanced Custom Fields" -msgstr "Advanced Custom Fields" - -#: pro/acf-pro.php:27 -msgid "Advanced Custom Fields PRO" -msgstr "Advanced Custom Fields PRO" - -#: pro/blocks.php:170 -#, fuzzy -#| msgid "%s value is required" -msgid "Block type name is required." -msgstr "%s значение требуется" - -#. translators: The name of the block type -#: pro/blocks.php:178 -msgid "Block type \"%s\" is already registered." -msgstr "" - -#: pro/blocks.php:726 -msgid "Switch to Edit" -msgstr "" - -#: pro/blocks.php:727 -msgid "Switch to Preview" -msgstr "" - -#: pro/blocks.php:728 -msgid "Change content alignment" -msgstr "" - -#. translators: %s: Block type title -#: pro/blocks.php:731 -#, fuzzy -#| msgid "Settings" -msgid "%s settings" -msgstr "Настройки" - -#: pro/blocks.php:936 -msgid "This block contains no editable fields." -msgstr "" - -#. translators: %s: an admin URL to the field group edit screen -#: pro/blocks.php:942 -msgid "" -"Assign a field group to add fields to " -"this block." -msgstr "" - -#: pro/options-page.php:78 -msgid "Options Updated" -msgstr "Настройки были обновлены" - -#: pro/updates.php:99 -#, fuzzy -#| msgid "" -#| "To enable updates, please enter your license key on the Updates page. If you don't have a licence key, please see details & pricing." -msgid "" -"To enable updates, please enter your license key on the Updates page. If you don't have a licence key, please see details & pricing." -msgstr "" -"Для разблокировки обновлений введите ваш лицензионный ключ на странице Обновление. Если у вас его нет, то ознакомьтесь с деталями." - -#: pro/updates.php:159 -msgid "" -"ACF Activation Error. Your defined license key has changed, but an " -"error occurred when deactivating your old licence" -msgstr "" - -#: pro/updates.php:154 -msgid "" -"ACF Activation Error. Your defined license key has changed, but an " -"error occurred when connecting to activation server" -msgstr "" - -#: pro/updates.php:192 -msgid "ACF Activation Error" -msgstr "" - -#: pro/updates.php:187 -#, fuzzy -#| msgid "Error. Could not connect to update server" -msgid "" -"ACF Activation Error. An error occurred when connecting to activation " -"server" -msgstr "Ошибка. Не удалось подключиться к серверу обновлений" - -#: pro/updates.php:279 -msgid "Check Again" -msgstr "Проверить еще раз" - -#: pro/updates.php:593 -#, fuzzy -#| msgid "Error. Could not connect to update server" -msgid "ACF Activation Error. Could not connect to activation server" -msgstr "Ошибка. Не удалось подключиться к серверу обновлений" - -#: pro/admin/admin-options-page.php:195 -msgid "Publish" -msgstr "Опубликовано" - -#: pro/admin/admin-options-page.php:199 -msgid "" -"No Custom Field Groups found for this options page. Create a " -"Custom Field Group" -msgstr "" -"С этой страницей настроек не связаны группы полей. Создать " -"группу полей" - -#: pro/admin/admin-updates.php:52 -msgid "Error. Could not connect to update server" -msgstr "Ошибка. Не удалось подключиться к серверу обновлений" - -#: pro/admin/admin-updates.php:212 -msgid "" -"Error. Could not authenticate update package. Please check again or " -"deactivate and reactivate your ACF PRO license." -msgstr "" - -#: pro/admin/admin-updates.php:199 -#, fuzzy -#| msgid "" -#| "Error validating license URL (website does not match). Please re-activate " -#| "your license" -msgid "" -"Error. Your license for this site has expired or been deactivated. " -"Please reactivate your ACF PRO license." -msgstr "" -"Во время проверки лицензии, которая связана с адресом сайта, возникла " -"ошибка. Пожалуйста, выполните активацию снова" - -#: pro/fields/class-acf-field-clone.php:27, -#: pro/fields/class-acf-field-repeater.php:31 -msgid "" -"Allows you to select and display existing fields. It does not duplicate any " -"fields in the database, but loads and displays the selected fields at run-" -"time. The Clone field can either replace itself with the selected fields or " -"display the selected fields as a group of subfields." -msgstr "" - -#: pro/fields/class-acf-field-clone.php:819 -msgid "Select one or more fields you wish to clone" -msgstr "Выберите одно или несколько полей, которые вы хотите клонировать" - -#: pro/fields/class-acf-field-clone.php:838 -msgid "Display" -msgstr "Способ отображения" - -#: pro/fields/class-acf-field-clone.php:839 -msgid "Specify the style used to render the clone field" -msgstr "Выберите стиль отображения клонированных полей" - -#: pro/fields/class-acf-field-clone.php:844 -msgid "Group (displays selected fields in a group within this field)" -msgstr "" -"Группа (сгруппировать выбранные поля в одно и выводить вместо текущего)" - -#: pro/fields/class-acf-field-clone.php:845 -msgid "Seamless (replaces this field with selected fields)" -msgstr "Отдельно (выбранные поля выводятся отдельно вместо текущего)" - -#: pro/fields/class-acf-field-clone.php:868 -msgid "Labels will be displayed as %s" -msgstr "Ярлыки будут отображаться как %s" - -#: pro/fields/class-acf-field-clone.php:873 -msgid "Prefix Field Labels" -msgstr "Префикс для ярлыков полей" - -#: pro/fields/class-acf-field-clone.php:883 -msgid "Values will be saved as %s" -msgstr "Значения будут сохранены как %s" - -#: pro/fields/class-acf-field-clone.php:888 -msgid "Prefix Field Names" -msgstr "Префикс для названий полей" - -#: pro/fields/class-acf-field-clone.php:1005 -msgid "Unknown field" -msgstr "Неизвестное поле" - -#: pro/fields/class-acf-field-clone.php:1042 -msgid "Unknown field group" -msgstr "Неизвестная группа полей" - -#: pro/fields/class-acf-field-clone.php:1046 -msgid "All fields from %s field group" -msgstr "Все поля группы %s" - -#: pro/fields/class-acf-field-flexible-content.php:27 -msgid "" -"Allows you to define, create and manage content with total control by " -"creating layouts that contain subfields that content editors can choose from." -msgstr "" - -#: pro/fields/class-acf-field-flexible-content.php:36, -#: pro/fields/class-acf-field-repeater.php:103, -#: pro/fields/class-acf-field-repeater.php:297 -msgid "Add Row" -msgstr "Добавить" - -#: pro/fields/class-acf-field-flexible-content.php:76, -#: pro/fields/class-acf-field-flexible-content.php:943, -#: pro/fields/class-acf-field-flexible-content.php:1022 -msgid "layout" -msgid_plural "layouts" -msgstr[0] "макет" -msgstr[1] "макета" -msgstr[2] "макетов" - -#: pro/fields/class-acf-field-flexible-content.php:77 -msgid "layouts" -msgstr "макеты" - -#: pro/fields/class-acf-field-flexible-content.php:81, -#: pro/fields/class-acf-field-flexible-content.php:942, -#: pro/fields/class-acf-field-flexible-content.php:1021 -msgid "This field requires at least {min} {label} {identifier}" -msgstr "Это поле требует как минимум {min} {label} {identifier}" - -#: pro/fields/class-acf-field-flexible-content.php:82 -msgid "This field has a limit of {max} {label} {identifier}" -msgstr "Это поле ограничено {max} {label} {identifier}" - -#: pro/fields/class-acf-field-flexible-content.php:85 -msgid "{available} {label} {identifier} available (max {max})" -msgstr "{available} {label} {identifier} доступно (максимум {max})" - -#: pro/fields/class-acf-field-flexible-content.php:86 -msgid "{required} {label} {identifier} required (min {min})" -msgstr "{required} {label} {identifier} требуется (минимум {min})" - -#: pro/fields/class-acf-field-flexible-content.php:89 -msgid "Flexible Content requires at least 1 layout" -msgstr "Для гибкого содержания требуется как минимум один макет" - -#: pro/fields/class-acf-field-flexible-content.php:282 -msgid "Click the \"%s\" button below to start creating your layout" -msgstr "Нажмите на кнопку \"%s\" ниже для начала создания собственного макета" - -#: pro/fields/class-acf-field-flexible-content.php:423 -msgid "Add layout" -msgstr "Добавить макет" - -#: pro/fields/class-acf-field-flexible-content.php:424 -#, fuzzy -#| msgid "Duplicate Layout" -msgid "Duplicate layout" -msgstr "Дублировать макет" - -#: pro/fields/class-acf-field-flexible-content.php:425 -msgid "Remove layout" -msgstr "Удалить макет" - -#: pro/fields/class-acf-field-flexible-content.php:426, -#: pro/fields/class-acf-repeater-table.php:382 -msgid "Click to toggle" -msgstr "Нажмите для переключения" - -#: pro/fields/class-acf-field-flexible-content.php:562 -msgid "Delete Layout" -msgstr "Удалить макет" - -#: pro/fields/class-acf-field-flexible-content.php:563 -msgid "Duplicate Layout" -msgstr "Дублировать макет" - -#: pro/fields/class-acf-field-flexible-content.php:564 -msgid "Add New Layout" -msgstr "Добавить новый макет" - -#: pro/fields/class-acf-field-flexible-content.php:564 -#, fuzzy -#| msgid "Add layout" -msgid "Add Layout" -msgstr "Добавить макет" - -#: pro/fields/class-acf-field-flexible-content.php:647 -msgid "Min" -msgstr "Минимум" - -#: pro/fields/class-acf-field-flexible-content.php:662 -msgid "Max" -msgstr "Максимум" - -#: pro/fields/class-acf-field-flexible-content.php:705 -msgid "Minimum Layouts" -msgstr "Мин. количество блоков" - -#: pro/fields/class-acf-field-flexible-content.php:716 -msgid "Maximum Layouts" -msgstr "Макс. количество блоков" - -#: pro/fields/class-acf-field-flexible-content.php:727, -#: pro/fields/class-acf-field-repeater.php:293 -msgid "Button Label" -msgstr "Текст кнопки добавления" - -#: pro/fields/class-acf-field-flexible-content.php:1710, -#: pro/fields/class-acf-field-repeater.php:918 -msgid "%s must be of type array or null." -msgstr "" - -#: pro/fields/class-acf-field-flexible-content.php:1721 -msgid "%1$s must contain at least %2$s %3$s layout." -msgid_plural "%1$s must contain at least %2$s %3$s layouts." -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: pro/fields/class-acf-field-flexible-content.php:1737 -msgid "%1$s must contain at most %2$s %3$s layout." -msgid_plural "%1$s must contain at most %2$s %3$s layouts." -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: pro/fields/class-acf-field-gallery.php:27 -msgid "" -"An interactive interface for managing a collection of attachments, such as " -"images." -msgstr "" - -#: pro/fields/class-acf-field-gallery.php:77 -msgid "Add Image to Gallery" -msgstr "Добавление изображений в галерею" - -#: pro/fields/class-acf-field-gallery.php:78 -msgid "Maximum selection reached" -msgstr "Выбрано максимальное количество изображений" - -#: pro/fields/class-acf-field-gallery.php:324 -msgid "Length" -msgstr "Длина" - -#: pro/fields/class-acf-field-gallery.php:368 -msgid "Caption" -msgstr "Подпись" - -#: pro/fields/class-acf-field-gallery.php:380 -msgid "Alt Text" -msgstr "Текст в ALT" - -#: pro/fields/class-acf-field-gallery.php:504 -msgid "Add to gallery" -msgstr "Добавить изображения" - -#: pro/fields/class-acf-field-gallery.php:508 -msgid "Bulk actions" -msgstr "Сортировка" - -#: pro/fields/class-acf-field-gallery.php:509 -msgid "Sort by date uploaded" -msgstr "По дате загрузки" - -#: pro/fields/class-acf-field-gallery.php:510 -msgid "Sort by date modified" -msgstr "По дате изменения" - -#: pro/fields/class-acf-field-gallery.php:511 -msgid "Sort by title" -msgstr "По названию" - -#: pro/fields/class-acf-field-gallery.php:512 -msgid "Reverse current order" -msgstr "Инвертировать" - -#: pro/fields/class-acf-field-gallery.php:524 -msgid "Close" -msgstr "Закрыть" - -#: pro/fields/class-acf-field-gallery.php:615 -msgid "Minimum Selection" -msgstr "Мин. количество изображений" - -#: pro/fields/class-acf-field-gallery.php:625 -msgid "Maximum Selection" -msgstr "Макс. количество изображений" - -#: pro/fields/class-acf-field-gallery.php:707 -msgid "Allowed file types" -msgstr "Допустимые типы файлов" - -#: pro/fields/class-acf-field-gallery.php:727 -msgid "Insert" -msgstr "Добавить" - -#: pro/fields/class-acf-field-gallery.php:728 -msgid "Specify where new attachments are added" -msgstr "Укажите куда добавлять новые вложения" - -#: pro/fields/class-acf-field-gallery.php:732 -msgid "Append to the end" -msgstr "Добавлять в конец" - -#: pro/fields/class-acf-field-gallery.php:733 -msgid "Prepend to the beginning" -msgstr "Добавлять в начало" - -#: pro/fields/class-acf-field-repeater.php:66, -#: pro/fields/class-acf-field-repeater.php:463 -#, fuzzy -#| msgid "Minimum rows reached ({min} rows)" -msgid "Minimum rows not reached ({min} rows)" -msgstr "Достигнуто минимальное количество ({min} элементов)" - -#: pro/fields/class-acf-field-repeater.php:67 -msgid "Maximum rows reached ({max} rows)" -msgstr "Достигнуто максимальное количество ({max} элементов)" - -#: pro/fields/class-acf-field-repeater.php:68 -#, fuzzy -#| msgid "Error loading update" -msgid "Error loading page" -msgstr "Возникла ошибка при загрузке обновления" - -#: pro/fields/class-acf-field-repeater.php:69 -msgid "Order will be assigned upon save" -msgstr "" - -#: pro/fields/class-acf-field-repeater.php:196 -msgid "Useful for fields with a large number of rows." -msgstr "" - -#: pro/fields/class-acf-field-repeater.php:207 -#, fuzzy -#| msgid "Posts Page" -msgid "Rows Per Page" -msgstr "Страница записей" - -#: pro/fields/class-acf-field-repeater.php:208 -#, fuzzy -#| msgid "Select the taxonomy to be displayed" -msgid "Set the number of rows to be displayed on a page." -msgstr "Выберите таксономию для отображения" - -#: pro/fields/class-acf-field-repeater.php:240 -msgid "Minimum Rows" -msgstr "Мин. количество элементов" - -#: pro/fields/class-acf-field-repeater.php:251 -msgid "Maximum Rows" -msgstr "Макс. количество элементов" - -#: pro/fields/class-acf-field-repeater.php:281 -msgid "Collapsed" -msgstr "Сокращенный заголовок" - -#: pro/fields/class-acf-field-repeater.php:282 -msgid "Select a sub field to show when row is collapsed" -msgstr "" -"Выберите поле, которое будет отображаться в качестве заголовка при " -"сворачивании блока" - -#: pro/fields/class-acf-field-repeater.php:1060 -msgid "Invalid field key or name." -msgstr "" - -#: pro/fields/class-acf-field-repeater.php:1069 -msgid "There was an error retrieving the field." -msgstr "" - -#: pro/fields/class-acf-repeater-table.php:369 -#, fuzzy -#| msgid "Drag to reorder" -msgid "Click to reorder" -msgstr "Потяните для изменения порядка" - -#: pro/fields/class-acf-repeater-table.php:402 -msgid "Add row" -msgstr "Добавить" - -#: pro/fields/class-acf-repeater-table.php:403 -#, fuzzy -#| msgid "Duplicate" -msgid "Duplicate row" -msgstr "Дублировать" - -#: pro/fields/class-acf-repeater-table.php:404 -msgid "Remove row" -msgstr "Удалить" - -#: pro/fields/class-acf-repeater-table.php:448, -#: pro/fields/class-acf-repeater-table.php:465, -#: pro/fields/class-acf-repeater-table.php:466 -#, fuzzy -#| msgid "Current User" -msgid "Current Page" -msgstr "Текущий пользователь" - -#: pro/fields/class-acf-repeater-table.php:456, -#: pro/fields/class-acf-repeater-table.php:457 -#, fuzzy -#| msgid "Front Page" -msgid "First Page" -msgstr "Главная страница" - -#: pro/fields/class-acf-repeater-table.php:460, -#: pro/fields/class-acf-repeater-table.php:461 -#, fuzzy -#| msgid "Posts Page" -msgid "Previous Page" -msgstr "Страница записей" - -#. translators: 1: Current page, 2: Total pages. -#: pro/fields/class-acf-repeater-table.php:470 -msgctxt "paging" -msgid "%1$s of %2$s" -msgstr "" - -#: pro/fields/class-acf-repeater-table.php:477, -#: pro/fields/class-acf-repeater-table.php:478 -#, fuzzy -#| msgid "Front Page" -msgid "Next Page" -msgstr "Главная страница" - -#: pro/fields/class-acf-repeater-table.php:481, -#: pro/fields/class-acf-repeater-table.php:482 -#, fuzzy -#| msgid "Posts Page" -msgid "Last Page" -msgstr "Страница записей" - -#: pro/locations/class-acf-location-block.php:71 -#, fuzzy -#| msgid "No options pages exist" -msgid "No block types exist" -msgstr "Страницы с настройками отсуствуют" - -#: pro/locations/class-acf-location-options-page.php:70 -msgid "No options pages exist" -msgstr "Страницы с настройками отсуствуют" - -#: pro/admin/views/html-settings-updates.php:6 -msgid "Deactivate License" -msgstr "Деактивировать лицензию" - -#: pro/admin/views/html-settings-updates.php:6 -msgid "Activate License" -msgstr "Активировать лицензию" - -#: pro/admin/views/html-settings-updates.php:16 -msgid "License Information" -msgstr "Информация о лицензии" - -#: pro/admin/views/html-settings-updates.php:34 -msgid "" -"To unlock updates, please enter your license key below. If you don't have a " -"licence key, please see details & pricing." -msgstr "" -"Для разблокирования обновлений введите лицензионный ключ ниже. Если у вас " -"его нет, то ознакомьтесь с деталями." - -#: pro/admin/views/html-settings-updates.php:37 -msgid "License Key" -msgstr "Номер лицензии" - -#: pro/admin/views/html-settings-updates.php:22 -msgid "Your license key is defined in wp-config.php." -msgstr "" - -#: pro/admin/views/html-settings-updates.php:29 -#, fuzzy -#| msgid "Activation Code" -msgid "Retry Activation" -msgstr "Код активации" - -#: pro/admin/views/html-settings-updates.php:61 -msgid "Update Information" -msgstr "Обновления" - -#: pro/admin/views/html-settings-updates.php:68 -msgid "Current Version" -msgstr "Текущая версия" - -#: pro/admin/views/html-settings-updates.php:76 -msgid "Latest Version" -msgstr "Последняя версия" - -#: pro/admin/views/html-settings-updates.php:84 -msgid "Update Available" -msgstr "Обновления доступны" - -#: pro/admin/views/html-settings-updates.php:98 -msgid "Upgrade Notice" -msgstr "Замечания по обновлению" - -#: pro/admin/views/html-settings-updates.php:126 -msgid "Check For Updates" -msgstr "" - -#: pro/admin/views/html-settings-updates.php:121 -#, fuzzy -#| msgid "Please enter your license key above to unlock updates" -msgid "Enter your license key to unlock updates" -msgstr "Пожалуйста введите ваш номер лицензии для разблокировки обновлений" - -#: pro/admin/views/html-settings-updates.php:119 -msgid "Update Plugin" -msgstr "Обновить плагин" - -#: pro/admin/views/html-settings-updates.php:117 -#, fuzzy -#| msgid "Please enter your license key above to unlock updates" -msgid "Please reactivate your license to unlock updates" -msgstr "Пожалуйста введите ваш номер лицензии для разблокировки обновлений" diff --git a/lang/acf-sk_SK.mo b/lang/acf-sk_SK.mo deleted file mode 100644 index 9924fd4..0000000 Binary files a/lang/acf-sk_SK.mo and /dev/null differ diff --git a/lang/acf-sk_SK.po b/lang/acf-sk_SK.po deleted file mode 100644 index 0d24902..0000000 --- a/lang/acf-sk_SK.po +++ /dev/null @@ -1,861 +0,0 @@ -# Advanced Custom Fields Translations are a combination of translate.wordpress.org contributions, -# combined with user contributed strings for the PRO version. -# Translations from translate.wordpress.org take priority over translations in this file. -# translate.wordpress.org contributions are synced at the time of each release. -# -# If you would like to contribute translations, please visit -# https://translate.wordpress.org/projects/wp-plugins/advanced-custom-fields/stable/ -# -# For additional ACF PRO strings, please submit a pull request over on the ACF GitHub repo at -# http://github.com/advancedcustomfields/acf using the .pot (and any existing .po) files in /lang/pro/ -# -# This file is distributed under the same license as Advanced Custom Fields. -msgid "" -msgstr "" -"PO-Revision-Date: 2023-11-28T09:14:32+00:00\n" -"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n" -"Language: sk_SK\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: gettext\n" -"Project-Id-Version: Advanced Custom Fields\n" - -#: pro/acf-pro.php:27 -msgid "Advanced Custom Fields PRO" -msgstr "ACF PRO" - -#: pro/blocks.php:170 -#, fuzzy -#| msgid "%s value is required" -msgid "Block type name is required." -msgstr "vyžaduje sa hodnota %s" - -#. translators: The name of the block type -#: pro/blocks.php:178 -msgid "Block type \"%s\" is already registered." -msgstr "" - -#: pro/blocks.php:726 -msgid "Switch to Edit" -msgstr "" - -#: pro/blocks.php:727 -msgid "Switch to Preview" -msgstr "" - -#: pro/blocks.php:728 -msgid "Change content alignment" -msgstr "" - -#. translators: %s: Block type title -#: pro/blocks.php:731 -#, fuzzy -#| msgid "New Settings" -msgid "%s settings" -msgstr "Nové nastavenia" - -#: pro/blocks.php:936 -msgid "This block contains no editable fields." -msgstr "" - -#. translators: %s: an admin URL to the field group edit screen -#: pro/blocks.php:942 -msgid "" -"Assign a field group to add fields to " -"this block." -msgstr "" - -#: pro/options-page.php:47 -msgid "Options" -msgstr "Nastavenia " - -#: pro/options-page.php:77, pro/fields/class-acf-field-gallery.php:527 -msgid "Update" -msgstr "Aktualizovať " - -#: pro/options-page.php:78 -msgid "Options Updated" -msgstr "Nastavenia aktualizované" - -#: pro/updates.php:99 -#, fuzzy -#| msgid "" -#| "To enable updates, please enter your license key on the Updates page. If you don't have a licence key, please see details & pricing" -msgid "" -"To enable updates, please enter your license key on the Updates page. If you don't have a licence key, please see details & pricing." -msgstr "" -"Aby ste zapli aktualizácie, musíte zadať licencčný kľúč na stránke aktualizácií. Ak nemáte licenčný kľúč, porizte si podrobnosti a ceny." - -#: pro/updates.php:159 -msgid "" -"ACF Activation Error. Your defined license key has changed, but an " -"error occurred when deactivating your old licence" -msgstr "" - -#: pro/updates.php:154 -msgid "" -"ACF Activation Error. Your defined license key has changed, but an " -"error occurred when connecting to activation server" -msgstr "" - -#: pro/updates.php:192 -msgid "ACF Activation Error" -msgstr "" - -#: pro/updates.php:187 -#, fuzzy -#| msgid "Error. Could not connect to update server" -msgid "" -"ACF Activation Error. An error occurred when connecting to activation " -"server" -msgstr "Chyba. Nie je možné sa spojiť so serverom" - -#: pro/updates.php:279 -msgid "Check Again" -msgstr "Skontrolovať znova" - -#: pro/updates.php:593 -#, fuzzy -#| msgid "Error. Could not connect to update server" -msgid "ACF Activation Error. Could not connect to activation server" -msgstr "Chyba. Nie je možné sa spojiť so serverom" - -#: pro/admin/admin-options-page.php:195 -msgid "Publish" -msgstr "Publikovať " - -#: pro/admin/admin-options-page.php:199 -msgid "" -"No Custom Field Groups found for this options page. Create a " -"Custom Field Group" -msgstr "" -"Pre túto stránku neboli nájdené žiadne vlastné skupiny polí. Vytvoriť novú vlastnú skupinu polí" - -#: pro/admin/admin-options-page.php:309 -msgid "Edit field group" -msgstr "Upraviť skupinu polí " - -#: pro/admin/admin-updates.php:52 -msgid "Error. Could not connect to update server" -msgstr "Chyba. Nie je možné sa spojiť so serverom" - -#: pro/admin/admin-updates.php:122, -#: pro/admin/views/html-settings-updates.php:12 -msgid "Updates" -msgstr "Aktualizácie" - -#: pro/admin/admin-updates.php:212 -msgid "" -"Error. Could not authenticate update package. Please check again or " -"deactivate and reactivate your ACF PRO license." -msgstr "" - -#: pro/admin/admin-updates.php:199 -msgid "" -"Error. Your license for this site has expired or been deactivated. " -"Please reactivate your ACF PRO license." -msgstr "" - -#: pro/fields/class-acf-field-clone.php:25 -msgctxt "noun" -msgid "Clone" -msgstr "" - -#: pro/fields/class-acf-field-clone.php:27, -#: pro/fields/class-acf-field-repeater.php:31 -msgid "" -"Allows you to select and display existing fields. It does not duplicate any " -"fields in the database, but loads and displays the selected fields at run-" -"time. The Clone field can either replace itself with the selected fields or " -"display the selected fields as a group of subfields." -msgstr "" - -#: pro/fields/class-acf-field-clone.php:818, -#: pro/fields/class-acf-field-flexible-content.php:78 -msgid "Fields" -msgstr "Polia " - -#: pro/fields/class-acf-field-clone.php:819 -msgid "Select one or more fields you wish to clone" -msgstr "" - -#: pro/fields/class-acf-field-clone.php:838 -msgid "Display" -msgstr "Zobrazenie" - -#: pro/fields/class-acf-field-clone.php:839 -msgid "Specify the style used to render the clone field" -msgstr "" - -#: pro/fields/class-acf-field-clone.php:844 -msgid "Group (displays selected fields in a group within this field)" -msgstr "" - -#: pro/fields/class-acf-field-clone.php:845 -msgid "Seamless (replaces this field with selected fields)" -msgstr "" - -#: pro/fields/class-acf-field-clone.php:854, -#: pro/fields/class-acf-field-flexible-content.php:558, -#: pro/fields/class-acf-field-flexible-content.php:616, -#: pro/fields/class-acf-field-repeater.php:177 -msgid "Layout" -msgstr "Rozmiestnenie" - -#: pro/fields/class-acf-field-clone.php:855 -msgid "Specify the style used to render the selected fields" -msgstr "" - -#: pro/fields/class-acf-field-clone.php:860, -#: pro/fields/class-acf-field-flexible-content.php:629, -#: pro/fields/class-acf-field-repeater.php:185, -#: pro/locations/class-acf-location-block.php:22 -msgid "Block" -msgstr "Blok" - -#: pro/fields/class-acf-field-clone.php:861, -#: pro/fields/class-acf-field-flexible-content.php:628, -#: pro/fields/class-acf-field-repeater.php:184 -msgid "Table" -msgstr "Tabuľka" - -#: pro/fields/class-acf-field-clone.php:862, -#: pro/fields/class-acf-field-flexible-content.php:630, -#: pro/fields/class-acf-field-repeater.php:186 -msgid "Row" -msgstr "Riadok" - -#: pro/fields/class-acf-field-clone.php:868 -#, fuzzy -#| msgid "Selected elements will be displayed in each result" -msgid "Labels will be displayed as %s" -msgstr "Vybraté prvky budú zobrazené v každom výsledku " - -#: pro/fields/class-acf-field-clone.php:873 -#, fuzzy -#| msgid "Field Label" -msgid "Prefix Field Labels" -msgstr "Označenie poľa " - -#: pro/fields/class-acf-field-clone.php:883 -msgid "Values will be saved as %s" -msgstr "" - -#: pro/fields/class-acf-field-clone.php:888 -#, fuzzy -#| msgid "Field Name" -msgid "Prefix Field Names" -msgstr "Meno poľa " - -#: pro/fields/class-acf-field-clone.php:1005 -#, fuzzy -#| msgid "Below fields" -msgid "Unknown field" -msgstr "Pod poliami" - -#: pro/fields/class-acf-field-clone.php:1009 -msgid "(no title)" -msgstr "(bez názvu)" - -#: pro/fields/class-acf-field-clone.php:1042 -#, fuzzy -#| msgid "Synchronise field group" -msgid "Unknown field group" -msgstr "Zobraziť túto skupinu poľa, ak" - -#: pro/fields/class-acf-field-clone.php:1046 -msgid "All fields from %s field group" -msgstr "" - -#: pro/fields/class-acf-field-flexible-content.php:25 -msgid "Flexible Content" -msgstr "Flexibilný obsah " - -#: pro/fields/class-acf-field-flexible-content.php:27 -msgid "" -"Allows you to define, create and manage content with total control by " -"creating layouts that contain subfields that content editors can choose from." -msgstr "" - -#: pro/fields/class-acf-field-flexible-content.php:27 -msgid "We do not recommend using this field in ACF Blocks." -msgstr "" - -#: pro/fields/class-acf-field-flexible-content.php:36, -#: pro/fields/class-acf-field-repeater.php:103, -#: pro/fields/class-acf-field-repeater.php:297 -msgid "Add Row" -msgstr "Pridať riadok" - -#: pro/fields/class-acf-field-flexible-content.php:76, -#: pro/fields/class-acf-field-flexible-content.php:943, -#: pro/fields/class-acf-field-flexible-content.php:1022 -#, fuzzy -#| msgid "layout" -msgid "layout" -msgid_plural "layouts" -msgstr[0] "rozloženie" -msgstr[1] "rozloženie" -msgstr[2] "rozloženie" - -#: pro/fields/class-acf-field-flexible-content.php:77 -msgid "layouts" -msgstr "rozloženia" - -#: pro/fields/class-acf-field-flexible-content.php:81, -#: pro/fields/class-acf-field-flexible-content.php:942, -#: pro/fields/class-acf-field-flexible-content.php:1021 -msgid "This field requires at least {min} {label} {identifier}" -msgstr "Toto pole vyžaduje najmenej {min} {label} {identifier}" - -#: pro/fields/class-acf-field-flexible-content.php:82 -#, fuzzy -#| msgid "This field has a limit of {max} {identifier}" -msgid "This field has a limit of {max} {label} {identifier}" -msgstr "Toto pole vyžaduje najviac {max} {identifier}" - -#: pro/fields/class-acf-field-flexible-content.php:85 -msgid "{available} {label} {identifier} available (max {max})" -msgstr "{available} {label} {identifier} dostupné (max {max})" - -#: pro/fields/class-acf-field-flexible-content.php:86 -msgid "{required} {label} {identifier} required (min {min})" -msgstr "{required} {label} {identifier} vyžadované (min {min})" - -#: pro/fields/class-acf-field-flexible-content.php:89 -msgid "Flexible Content requires at least 1 layout" -msgstr "Flexibilný obsah vyžaduje aspoň jedno rozloženie" - -#: pro/fields/class-acf-field-flexible-content.php:282 -msgid "Click the \"%s\" button below to start creating your layout" -msgstr "Pre vytvorenie rozloženia kliknite na tlačidlo \"%s\"" - -#: pro/fields/class-acf-field-flexible-content.php:420, -#: pro/fields/class-acf-repeater-table.php:366 -msgid "Drag to reorder" -msgstr "Zmeňte poradie pomocou funkcie ťahaj a pusť" - -#: pro/fields/class-acf-field-flexible-content.php:423 -msgid "Add layout" -msgstr "Pridať rozloženie" - -#: pro/fields/class-acf-field-flexible-content.php:424 -#, fuzzy -#| msgid "Duplicate Layout" -msgid "Duplicate layout" -msgstr "Duplikovať rozloženie" - -#: pro/fields/class-acf-field-flexible-content.php:425 -msgid "Remove layout" -msgstr "Odstrániť rozloženie" - -#: pro/fields/class-acf-field-flexible-content.php:426, -#: pro/fields/class-acf-repeater-table.php:382 -msgid "Click to toggle" -msgstr "" - -#: pro/fields/class-acf-field-flexible-content.php:562 -msgid "Delete Layout" -msgstr "Vymazať rozloženie" - -#: pro/fields/class-acf-field-flexible-content.php:563 -msgid "Duplicate Layout" -msgstr "Duplikovať rozloženie" - -#: pro/fields/class-acf-field-flexible-content.php:564 -msgid "Add New Layout" -msgstr "Pridať nové rozloženie" - -#: pro/fields/class-acf-field-flexible-content.php:564 -#, fuzzy -#| msgid "Add layout" -msgid "Add Layout" -msgstr "Pridať rozloženie" - -#: pro/fields/class-acf-field-flexible-content.php:593 -msgid "Label" -msgstr "Označenie " - -#: pro/fields/class-acf-field-flexible-content.php:609 -msgid "Name" -msgstr "Meno" - -#: pro/fields/class-acf-field-flexible-content.php:647 -msgid "Min" -msgstr "Min" - -#: pro/fields/class-acf-field-flexible-content.php:662 -msgid "Max" -msgstr "Max" - -#: pro/fields/class-acf-field-flexible-content.php:705 -msgid "Minimum Layouts" -msgstr "Minimálne rozloženie" - -#: pro/fields/class-acf-field-flexible-content.php:716 -msgid "Maximum Layouts" -msgstr "Maximálne rozloženie" - -#: pro/fields/class-acf-field-flexible-content.php:727, -#: pro/fields/class-acf-field-repeater.php:293 -msgid "Button Label" -msgstr "Označenie tlačidla" - -#: pro/fields/class-acf-field-flexible-content.php:1710, -#: pro/fields/class-acf-field-repeater.php:918 -msgid "%s must be of type array or null." -msgstr "" - -#: pro/fields/class-acf-field-flexible-content.php:1721 -msgid "%1$s must contain at least %2$s %3$s layout." -msgid_plural "%1$s must contain at least %2$s %3$s layouts." -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: pro/fields/class-acf-field-flexible-content.php:1737 -msgid "%1$s must contain at most %2$s %3$s layout." -msgid_plural "%1$s must contain at most %2$s %3$s layouts." -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: pro/fields/class-acf-field-gallery.php:25 -msgid "Gallery" -msgstr "Galéria" - -#: pro/fields/class-acf-field-gallery.php:27 -msgid "" -"An interactive interface for managing a collection of attachments, such as " -"images." -msgstr "" - -#: pro/fields/class-acf-field-gallery.php:77 -msgid "Add Image to Gallery" -msgstr "Pridať obrázok do galérie" - -#: pro/fields/class-acf-field-gallery.php:78 -msgid "Maximum selection reached" -msgstr "Maximálne dosiahnuté hodnoty" - -#: pro/fields/class-acf-field-gallery.php:324 -msgid "Length" -msgstr "Dĺžka" - -#: pro/fields/class-acf-field-gallery.php:339 -msgid "Edit" -msgstr "Upraviť" - -#: pro/fields/class-acf-field-gallery.php:340, -#: pro/fields/class-acf-field-gallery.php:495 -msgid "Remove" -msgstr "Odstrániť" - -#: pro/fields/class-acf-field-gallery.php:356 -msgid "Title" -msgstr "Názov" - -#: pro/fields/class-acf-field-gallery.php:368 -#, fuzzy -#| msgid "Options" -msgid "Caption" -msgstr "Nastavenia " - -#: pro/fields/class-acf-field-gallery.php:380 -#, fuzzy -#| msgid "Text" -msgid "Alt Text" -msgstr "Text " - -#: pro/fields/class-acf-field-gallery.php:392 -msgid "Description" -msgstr "" - -#: pro/fields/class-acf-field-gallery.php:504 -msgid "Add to gallery" -msgstr "Pridať do galérie" - -#: pro/fields/class-acf-field-gallery.php:508 -msgid "Bulk actions" -msgstr "Hromadné akcie" - -#: pro/fields/class-acf-field-gallery.php:509 -msgid "Sort by date uploaded" -msgstr "Triediť podľa dátumu nahrania" - -#: pro/fields/class-acf-field-gallery.php:510 -msgid "Sort by date modified" -msgstr "Triediť podľa poslednej úpravy" - -#: pro/fields/class-acf-field-gallery.php:511 -msgid "Sort by title" -msgstr "Triediť podľa názvu" - -#: pro/fields/class-acf-field-gallery.php:512 -msgid "Reverse current order" -msgstr "Zvrátiť aktuálnu objednávku" - -#: pro/fields/class-acf-field-gallery.php:524 -msgid "Close" -msgstr "Zatvoriť " - -#: pro/fields/class-acf-field-gallery.php:556 -msgid "Return Format" -msgstr "Formát odpovede" - -#: pro/fields/class-acf-field-gallery.php:562 -msgid "Image Array" -msgstr "Obrázok " - -#: pro/fields/class-acf-field-gallery.php:563 -msgid "Image URL" -msgstr "URL adresa obrázka " - -#: pro/fields/class-acf-field-gallery.php:564 -msgid "Image ID" -msgstr "ID obrázka " - -#: pro/fields/class-acf-field-gallery.php:572 -msgid "Library" -msgstr "Knižnica " - -#: pro/fields/class-acf-field-gallery.php:573 -msgid "Limit the media library choice" -msgstr "Obmedziť výber knižnice médií " - -#: pro/fields/class-acf-field-gallery.php:578, -#: pro/locations/class-acf-location-block.php:66 -msgid "All" -msgstr "Všetky " - -#: pro/fields/class-acf-field-gallery.php:579 -msgid "Uploaded to post" -msgstr "Nahrané do príspevku " - -#: pro/fields/class-acf-field-gallery.php:615 -msgid "Minimum Selection" -msgstr "Minimálny výber" - -#: pro/fields/class-acf-field-gallery.php:625 -msgid "Maximum Selection" -msgstr "Maximálny výber" - -#: pro/fields/class-acf-field-gallery.php:635 -msgid "Minimum" -msgstr "Minimálny počet" - -#: pro/fields/class-acf-field-gallery.php:636, -#: pro/fields/class-acf-field-gallery.php:672 -msgid "Restrict which images can be uploaded" -msgstr "Určite, ktoré typy obrázkov môžu byť nahraté" - -#: pro/fields/class-acf-field-gallery.php:639, -#: pro/fields/class-acf-field-gallery.php:675 -msgid "Width" -msgstr "Šírka" - -#: pro/fields/class-acf-field-gallery.php:650, -#: pro/fields/class-acf-field-gallery.php:686 -msgid "Height" -msgstr "Výška " - -#: pro/fields/class-acf-field-gallery.php:662, -#: pro/fields/class-acf-field-gallery.php:698 -msgid "File size" -msgstr "Veľkosť súboru " - -#: pro/fields/class-acf-field-gallery.php:671 -msgid "Maximum" -msgstr "Maximálny počet" - -#: pro/fields/class-acf-field-gallery.php:707 -msgid "Allowed file types" -msgstr "Povolené typy súborov" - -#: pro/fields/class-acf-field-gallery.php:708 -msgid "Comma separated list. Leave blank for all types" -msgstr "Zoznam, oddelený čiarkou. Nechajte prázdne pre všetky typy" - -#: pro/fields/class-acf-field-gallery.php:727 -msgid "Insert" -msgstr "" - -#: pro/fields/class-acf-field-gallery.php:728 -msgid "Specify where new attachments are added" -msgstr "" - -#: pro/fields/class-acf-field-gallery.php:732 -#, fuzzy -#| msgid "Appears after the input" -msgid "Append to the end" -msgstr "Zobrazí sa po vstupe" - -#: pro/fields/class-acf-field-gallery.php:733 -msgid "Prepend to the beginning" -msgstr "" - -#: pro/fields/class-acf-field-gallery.php:741 -msgid "Preview Size" -msgstr "Veľkosť náhľadu " - -#: pro/fields/class-acf-field-gallery.php:844 -#, fuzzy -#| msgid "%s requires at least %s selection" -#| msgid_plural "%s requires at least %s selections" -msgid "%1$s requires at least %2$s selection" -msgid_plural "%1$s requires at least %2$s selections" -msgstr[0] "%s vyžaduje výber najmenej %s" -msgstr[1] "%s vyžadujú výber najmenej %s" -msgstr[2] "%s vyžaduje výbej najmenej %s" - -#: pro/fields/class-acf-field-repeater.php:29 -msgid "Repeater" -msgstr "Opakovač" - -#: pro/fields/class-acf-field-repeater.php:66, -#: pro/fields/class-acf-field-repeater.php:463 -#, fuzzy -#| msgid "Minimum rows reached ({min} rows)" -msgid "Minimum rows not reached ({min} rows)" -msgstr "Dosiahnutý počet minimálneho počtu riadkov ({min} rows)" - -#: pro/fields/class-acf-field-repeater.php:67 -msgid "Maximum rows reached ({max} rows)" -msgstr "Maximálny počet riadkov ({max} rows)" - -#: pro/fields/class-acf-field-repeater.php:68 -msgid "Error loading page" -msgstr "" - -#: pro/fields/class-acf-field-repeater.php:69 -msgid "Order will be assigned upon save" -msgstr "" - -#: pro/fields/class-acf-field-repeater.php:162 -msgid "Sub Fields" -msgstr "Podpolia" - -#: pro/fields/class-acf-field-repeater.php:195 -#, fuzzy -#| msgid "Position" -msgid "Pagination" -msgstr "Pozícia " - -#: pro/fields/class-acf-field-repeater.php:196 -msgid "Useful for fields with a large number of rows." -msgstr "" - -#: pro/fields/class-acf-field-repeater.php:207 -#, fuzzy -#| msgid "Posts Page" -msgid "Rows Per Page" -msgstr "Stránka príspevkov " - -#: pro/fields/class-acf-field-repeater.php:208 -msgid "Set the number of rows to be displayed on a page." -msgstr "" - -#: pro/fields/class-acf-field-repeater.php:240 -msgid "Minimum Rows" -msgstr "Minimálny počet riadkov" - -#: pro/fields/class-acf-field-repeater.php:251 -msgid "Maximum Rows" -msgstr "Maximálny počet riadkov" - -#: pro/fields/class-acf-field-repeater.php:281 -#, fuzzy -#| msgid "Collapse Details" -msgid "Collapsed" -msgstr "Zmenšiť detaily " - -#: pro/fields/class-acf-field-repeater.php:282 -msgid "Select a sub field to show when row is collapsed" -msgstr "" - -#: pro/fields/class-acf-field-repeater.php:1045 -msgid "Invalid nonce." -msgstr "" - -#: pro/fields/class-acf-field-repeater.php:1060 -msgid "Invalid field key or name." -msgstr "" - -#: pro/fields/class-acf-field-repeater.php:1069 -msgid "There was an error retrieving the field." -msgstr "" - -#: pro/fields/class-acf-repeater-table.php:369 -#, fuzzy -#| msgid "Drag to reorder" -msgid "Click to reorder" -msgstr "Zmeňte poradie pomocou funkcie ťahaj a pusť" - -#: pro/fields/class-acf-repeater-table.php:402 -msgid "Add row" -msgstr "Pridať riadok" - -#: pro/fields/class-acf-repeater-table.php:403 -#, fuzzy -#| msgid "Duplicate" -msgid "Duplicate row" -msgstr "Duplikovať " - -#: pro/fields/class-acf-repeater-table.php:404 -msgid "Remove row" -msgstr "Odstrániť riadok" - -#: pro/fields/class-acf-repeater-table.php:448, -#: pro/fields/class-acf-repeater-table.php:465, -#: pro/fields/class-acf-repeater-table.php:466 -#, fuzzy -#| msgid "Current User" -msgid "Current Page" -msgstr "Aktuálny používateľ" - -#: pro/fields/class-acf-repeater-table.php:456, -#: pro/fields/class-acf-repeater-table.php:457 -#, fuzzy -#| msgid "Front Page" -msgid "First Page" -msgstr "Úvodná stránka " - -#: pro/fields/class-acf-repeater-table.php:460, -#: pro/fields/class-acf-repeater-table.php:461 -#, fuzzy -#| msgid "Posts Page" -msgid "Previous Page" -msgstr "Stránka príspevkov " - -#. translators: 1: Current page, 2: Total pages. -#: pro/fields/class-acf-repeater-table.php:470 -msgctxt "paging" -msgid "%1$s of %2$s" -msgstr "" - -#: pro/fields/class-acf-repeater-table.php:477, -#: pro/fields/class-acf-repeater-table.php:478 -#, fuzzy -#| msgid "Front Page" -msgid "Next Page" -msgstr "Úvodná stránka " - -#: pro/fields/class-acf-repeater-table.php:481, -#: pro/fields/class-acf-repeater-table.php:482 -#, fuzzy -#| msgid "Posts Page" -msgid "Last Page" -msgstr "Stránka príspevkov " - -#: pro/locations/class-acf-location-block.php:71 -#, fuzzy -#| msgid "No options pages exist" -msgid "No block types exist" -msgstr "Neexistujú nastavenia stránok" - -#: pro/locations/class-acf-location-options-page.php:22 -msgid "Options Page" -msgstr "Stránka nastavení " - -#: pro/locations/class-acf-location-options-page.php:70 -msgid "No options pages exist" -msgstr "Neexistujú nastavenia stránok" - -#: pro/admin/views/html-settings-updates.php:6 -msgid "Deactivate License" -msgstr "Deaktivovať licenciu" - -#: pro/admin/views/html-settings-updates.php:6 -msgid "Activate License" -msgstr "Aktivovať licenciu" - -#: pro/admin/views/html-settings-updates.php:16 -#, fuzzy -#| msgid "Update Information" -msgid "License Information" -msgstr "Aktualizovať infromácie" - -#: pro/admin/views/html-settings-updates.php:34 -#, fuzzy -#| msgid "" -#| "To enable updates, please enter your license key on the Updates page. If you don't have a licence key, please see details & pricing" -msgid "" -"To unlock updates, please enter your license key below. If you don't have a " -"licence key, please see details & pricing." -msgstr "" -"Aby ste zapli aktualizácie, musíte zadať licencčný kľúč na stránke aktualizácií. Ak nemáte licenčný kľúč, porizte si podrobnosti a ceny." - -#: pro/admin/views/html-settings-updates.php:37 -msgid "License Key" -msgstr "Licenčný kľúč" - -#: pro/admin/views/html-settings-updates.php:22 -msgid "Your license key is defined in wp-config.php." -msgstr "" - -#: pro/admin/views/html-settings-updates.php:29 -#, fuzzy -#| msgid "Better Validation" -msgid "Retry Activation" -msgstr "Lepšie overovanie" - -#: pro/admin/views/html-settings-updates.php:61 -msgid "Update Information" -msgstr "Aktualizovať infromácie" - -#: pro/admin/views/html-settings-updates.php:68 -msgid "Current Version" -msgstr "Aktuálna verzia" - -#: pro/admin/views/html-settings-updates.php:76 -msgid "Latest Version" -msgstr "Posledná verzia" - -#: pro/admin/views/html-settings-updates.php:84 -msgid "Update Available" -msgstr "Dostupná aktualizácia" - -#: pro/admin/views/html-settings-updates.php:91 -msgid "No" -msgstr "Nie" - -#: pro/admin/views/html-settings-updates.php:89 -msgid "Yes" -msgstr "Áno " - -#: pro/admin/views/html-settings-updates.php:98 -msgid "Upgrade Notice" -msgstr "Oznam o aktualizácii" - -#: pro/admin/views/html-settings-updates.php:126 -msgid "Check For Updates" -msgstr "" - -#: pro/admin/views/html-settings-updates.php:121 -#, fuzzy -#| msgid "Please enter your license key above to unlock updates" -msgid "Enter your license key to unlock updates" -msgstr "Pre odblokovanie aktualizácii, prosím zadajte váš licenčný kľúč" - -#: pro/admin/views/html-settings-updates.php:119 -msgid "Update Plugin" -msgstr "Aktualizovať modul" - -#: pro/admin/views/html-settings-updates.php:117 -#, fuzzy -#| msgid "Please enter your license key above to unlock updates" -msgid "Please reactivate your license to unlock updates" -msgstr "Pre odblokovanie aktualizácii, prosím zadajte váš licenčný kľúč" diff --git a/lang/acf-sv_SE.mo b/lang/acf-sv_SE.mo deleted file mode 100644 index 0c9d574..0000000 Binary files a/lang/acf-sv_SE.mo and /dev/null differ diff --git a/lang/acf-sv_SE.po b/lang/acf-sv_SE.po deleted file mode 100644 index 5d14de8..0000000 --- a/lang/acf-sv_SE.po +++ /dev/null @@ -1,6250 +0,0 @@ -# Advanced Custom Fields Translations are a combination of translate.wordpress.org contributions, -# combined with user contributed strings for the PRO version. -# Translations from translate.wordpress.org take priority over translations in this file. -# translate.wordpress.org contributions are synced at the time of each release. -# -# If you would like to contribute translations, please visit -# https://translate.wordpress.org/projects/wp-plugins/advanced-custom-fields/stable/ -# -# For additional ACF PRO strings, please submit a pull request over on the ACF GitHub repo at -# http://github.com/advancedcustomfields/acf using the .pot (and any existing .po) files in /lang/pro/ -# -# This file is distributed under the same license as Advanced Custom Fields. -msgid "" -msgstr "" -"PO-Revision-Date: 2023-11-28T09:14:32+00:00\n" -"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n" -"Language: sv_SE\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: gettext\n" -"Project-Id-Version: Advanced Custom Fields\n" - -#: includes/admin/views/global/navigation.php:221 -msgid "Renew ACF PRO License" -msgstr "Förnya ACF PRO-licens" - -#: includes/admin/views/acf-field-group/pro-features.php:17 -msgid "Renew License" -msgstr "Förnya licens" - -#: includes/admin/views/acf-field-group/pro-features.php:14 -msgid "Manage License" -msgstr "Hantera licens" - -#: includes/admin/views/acf-field-group/options.php:102 -msgid "'High' position not supported in the Block Editor" -msgstr "" - -#: includes/admin/views/options-page-preview.php:30 -msgid "Upgrade to ACF PRO" -msgstr "Uppgradera till ACF PRO" - -#. translators: %s URL to ACF options pages documentation -#: includes/admin/views/options-page-preview.php:7 -msgid "" -"ACF options pages are custom admin " -"pages for managing global settings via fields. You can create multiple pages " -"and sub-pages." -msgstr "" - -#: includes/admin/views/global/header.php:35 -msgid "Add Options Page" -msgstr "Lägg till alternativsida" - -#: includes/admin/views/acf-post-type/advanced-settings.php:703 -msgid "In the editor used as the placeholder of the title." -msgstr "Används som platshållare för rubriken i redigeraren." - -#: includes/admin/views/acf-post-type/advanced-settings.php:702 -msgid "Title Placeholder" -msgstr "Platshållare för rubrik" - -#: includes/admin/views/global/navigation.php:97 -msgid "4 Months Free" -msgstr "4 månader gratis" - -#. translators: %s - A singular label for a post type or taxonomy. -#: includes/admin/views/global/form-top.php:56 -msgid " (Duplicated from %s)" -msgstr " (Duplicerad från %s)" - -#: includes/admin/tools/class-acf-admin-tool-export.php:298 -msgid "Select Options Pages" -msgstr "Välj alternativsidor" - -#: includes/admin/post-types/admin-taxonomy.php:107 -msgid "Duplicate taxonomy" -msgstr "Duplicera taxonomi" - -#: includes/admin/post-types/admin-post-type.php:106 -#: includes/admin/post-types/admin-taxonomy.php:106 -msgid "Create taxonomy" -msgstr "Skapa taxonomi" - -#: includes/admin/post-types/admin-post-type.php:105 -msgid "Duplicate post type" -msgstr "Duplicera inläggstyp" - -#: includes/admin/post-types/admin-post-type.php:104 -#: includes/admin/post-types/admin-taxonomy.php:108 -msgid "Create post type" -msgstr "Skapa inläggstyp" - -#: includes/admin/post-types/admin-post-type.php:103 -#: includes/admin/post-types/admin-taxonomy.php:105 -msgid "Link field groups" -msgstr "Länka fältgrupper" - -#: includes/admin/post-types/admin-post-type.php:102 -#: includes/admin/post-types/admin-taxonomy.php:104 -msgid "Add fields" -msgstr "Lägg till fält" - -#: includes/admin/post-types/admin-field-group.php:121 -#: assets/build/js/acf-field-group.js:2753 -#: assets/build/js/acf-field-group.js:3236 -msgid "This Field" -msgstr "Detta fält" - -#: includes/admin/admin.php:267 -msgid "ACF PRO" -msgstr "ACF PRO" - -#: includes/admin/admin.php:265 -msgid "Feedback" -msgstr "Feedback" - -#: includes/admin/admin.php:263 -msgid "Support" -msgstr "Support" - -#. translators: This text is prepended by a link to ACF's website, and appended -#. by a link to WP Engine's website. -#: includes/admin/admin.php:238 -msgid "is developed and maintained by" -msgstr "utvecklas och underhålls av" - -#. translators: %s - either "post type" or "taxonomy" -#: includes/admin/admin-internal-post-type.php:321 -msgid "Add this %s to the location rules of the selected field groups." -msgstr "Lägg till denna %s i platsreglerna för de valda fältgrupperna." - -#. translators: %s the URL to ACF's bidirectional relationship documentation -#: includes/acf-bidirectional-functions.php:271 -msgid "" -"Enabling the bidirectional setting allows you to update a value in the " -"target fields for each value selected for this field, adding or removing the " -"Post ID, Taxonomy ID or User ID of the item being updated. For more " -"information, please read the documentation." -msgstr "" - -#: includes/acf-bidirectional-functions.php:247 -msgid "" -"Select field(s) to store the reference back to the item being updated. You " -"may select this field. Target fields must be compatible with where this " -"field is being displayed. For example, if this field is displayed on a " -"Taxonomy, your target field should be of type Taxonomy" -msgstr "" - -#: includes/acf-bidirectional-functions.php:246 -msgid "Target Field" -msgstr "Målfält" - -#: includes/acf-bidirectional-functions.php:220 -msgid "Update a field on the selected values, referencing back to this ID" -msgstr "" -"Uppdatera ett fält med de valda värdena och hänvisa tillbaka till detta ID" - -#: includes/acf-bidirectional-functions.php:219 -msgid "Bidirectional" -msgstr "Dubbelriktad" - -#. translators: %s A field type name, such as "Relationship" -#: includes/acf-bidirectional-functions.php:192 -msgid "%s Field" -msgstr "%s-fält" - -#: includes/fields/class-acf-field-page_link.php:517 -#: includes/fields/class-acf-field-post_object.php:426 -#: includes/fields/class-acf-field-select.php:407 -#: includes/fields/class-acf-field-user.php:82 -msgid "Select Multiple" -msgstr "Välj flera" - -#: includes/admin/views/global/navigation.php:233 -msgid "WP Engine logo" -msgstr "WP Engine-logga" - -#: includes/admin/views/acf-taxonomy/basic-settings.php:58 -msgid "Lower case letters, underscores and dashes only, Max 32 characters." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1136 -msgid "The capability name for assigning terms of this taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1135 -msgid "Assign Terms Capability" -msgstr "Behörighet att tilldela termer" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1119 -msgid "The capability name for deleting terms of this taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1118 -msgid "Delete Terms Capability" -msgstr "Behörighet att ta bort termer" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1102 -msgid "The capability name for editing terms of this taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1101 -msgid "Edit Terms Capability" -msgstr "Behörighet att redigera termer" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1085 -msgid "The capability name for managing terms of this taxonomy." -msgstr "Namn på behörigheten för hantering av termer i denna taxonomi." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1084 -msgid "Manage Terms Capability" -msgstr "Behörighet att hantera termer" - -#: includes/admin/views/acf-post-type/advanced-settings.php:886 -msgid "" -"Sets whether posts should be excluded from search results and taxonomy " -"archive pages." -msgstr "" -"Anger om inlägg ska exkluderas från sökresultat och arkivsidor för " -"taxonomier." - -#: includes/admin/views/acf-field-group/pro-features.php:74 -msgid "More Tools from WP Engine" -msgstr "Fler verktyg från WP Engine" - -#. translators: %s - WP Engine logo -#: includes/admin/views/acf-field-group/pro-features.php:69 -msgid "Built for those that build with WordPress, by the team at %s" -msgstr "Byggt för dem som bygger med WordPress, av teamet på %s" - -#: includes/admin/views/acf-field-group/pro-features.php:6 -msgid "View Pricing & Upgrade" -msgstr "Visa priser och uppgradering" - -#: includes/admin/views/acf-field-group/pro-features.php:3 -#: includes/admin/views/options-page-preview.php:29 -msgid "Learn More" -msgstr "Lär dig mer" - -#: includes/admin/views/acf-field-group/pro-features.php:28 -msgid "" -"Speed up your workflow and develop better websites with features like ACF " -"Blocks and Options Pages, and sophisticated field types like Repeater, " -"Flexible Content, Clone, and Gallery." -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:2 -msgid "Unlock Advanced Features and Build Even More with ACF PRO" -msgstr "Lås upp avancerade funktioner och bygg ännu mer med ACF PRO" - -#. translators: %s - singular label of post type/taxonomy, i.e. "Movie"/"Genre" -#: includes/admin/views/global/form-top.php:19 -msgid "%s fields" -msgstr "%s-fält" - -#: includes/admin/post-types/admin-taxonomies.php:293 -msgid "No terms" -msgstr "Inga termer" - -#: includes/admin/post-types/admin-taxonomies.php:266 -msgid "No post types" -msgstr "Inga inläggstyper" - -#: includes/admin/post-types/admin-post-types.php:289 -msgid "No posts" -msgstr "Inga inlägg" - -#: includes/admin/post-types/admin-post-types.php:263 -msgid "No taxonomies" -msgstr "Inga taxonomier" - -#: includes/admin/post-types/admin-post-types.php:208 -#: includes/admin/post-types/admin-taxonomies.php:208 -msgid "No field groups" -msgstr "Inga fältgrupper" - -#: includes/admin/post-types/admin-field-groups.php:281 -msgid "No fields" -msgstr "Inga fält" - -#: includes/admin/post-types/admin-field-groups.php:154 -#: includes/admin/post-types/admin-post-types.php:172 -#: includes/admin/post-types/admin-taxonomies.php:172 -msgid "No description" -msgstr "Ingen beskrivning" - -#: includes/fields/class-acf-field-page_link.php:484 -#: includes/fields/class-acf-field-post_object.php:389 -#: includes/fields/class-acf-field-relationship.php:601 -msgid "Any post status" -msgstr "Vilken inläggsstatus som helst" - -#: includes/post-types/class-acf-taxonomy.php:284 -msgid "" -"This taxonomy key is already in use by another taxonomy registered outside " -"of ACF and cannot be used." -msgstr "" -"Denna taxonominyckel används redan av en annan taxonomi som är registrerad " -"utanför ACF och kan inte användas." - -#: includes/post-types/class-acf-taxonomy.php:279 -msgid "" -"This taxonomy key is already in use by another taxonomy in ACF and cannot be " -"used." -msgstr "" -"Denna taxonominyckel används redan av en annan taxonomi i ACF och kan inte " -"användas." - -#: includes/post-types/class-acf-taxonomy.php:252 -msgid "" -"The taxonomy key must only contain lower case alphanumeric characters, " -"underscores or dashes." -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:247 -msgid "The taxonomy key must be under 32 characters." -msgstr "Taxonominyckeln måste vara under 32 tecken." - -#: includes/post-types/class-acf-taxonomy.php:99 -msgid "No Taxonomies found in Trash" -msgstr "Inga taxonomier hittades i papperskorgen" - -#: includes/post-types/class-acf-taxonomy.php:98 -msgid "No Taxonomies found" -msgstr "Inga taxonomier hittades" - -#: includes/post-types/class-acf-taxonomy.php:97 -msgid "Search Taxonomies" -msgstr "Sök taxonomier" - -#: includes/post-types/class-acf-taxonomy.php:96 -msgid "View Taxonomy" -msgstr "Visa taxonomi" - -#: includes/post-types/class-acf-taxonomy.php:95 -msgid "New Taxonomy" -msgstr "Ny taxonomi" - -#: includes/post-types/class-acf-taxonomy.php:94 -msgid "Edit Taxonomy" -msgstr "Redigera taxonomi" - -#: includes/post-types/class-acf-taxonomy.php:93 -msgid "Add New Taxonomy" -msgstr "Lägg till ny taxonomi" - -#: includes/post-types/class-acf-post-type.php:100 -msgid "No Post Types found in Trash" -msgstr "Inga inläggstyper hittades i papperskorgen" - -#: includes/post-types/class-acf-post-type.php:99 -msgid "No Post Types found" -msgstr "Inga inläggstyper hittades" - -#: includes/post-types/class-acf-post-type.php:98 -msgid "Search Post Types" -msgstr "Sök inläggstyper" - -#: includes/post-types/class-acf-post-type.php:97 -msgid "View Post Type" -msgstr "Visa inläggstyp" - -#: includes/post-types/class-acf-post-type.php:96 -msgid "New Post Type" -msgstr "Ny inläggstyp" - -#: includes/post-types/class-acf-post-type.php:95 -msgid "Edit Post Type" -msgstr "Redigera inläggstyp" - -#: includes/post-types/class-acf-post-type.php:94 -msgid "Add New Post Type" -msgstr "Lägg till ny inläggstyp" - -#: includes/post-types/class-acf-post-type.php:361 -msgid "" -"This post type key is already in use by another post type registered outside " -"of ACF and cannot be used." -msgstr "" - -#: includes/post-types/class-acf-post-type.php:356 -msgid "" -"This post type key is already in use by another post type in ACF and cannot " -"be used." -msgstr "" - -#. translators: %s a link to WordPress.org's Reserved Terms page -#: includes/post-types/class-acf-post-type.php:335 -#: includes/post-types/class-acf-taxonomy.php:258 -msgid "" -"This field must not be a WordPress reserved " -"term." -msgstr "" - -#: includes/post-types/class-acf-post-type.php:329 -msgid "" -"The post type key must only contain lower case alphanumeric characters, " -"underscores or dashes." -msgstr "" - -#: includes/post-types/class-acf-post-type.php:324 -msgid "The post type key must be under 20 characters." -msgstr "Nyckeln för inläggstypen måste vara kortare än 20 tecken." - -#: includes/fields/class-acf-field-wysiwyg.php:27 -msgid "We do not recommend using this field in ACF Blocks." -msgstr "Vi avråder från att använda detta fält i ACF-block." - -#: includes/fields/class-acf-field-wysiwyg.php:27 -msgid "" -"Displays the WordPress WYSIWYG editor as seen in Posts and Pages allowing " -"for a rich text-editing experience that also allows for multimedia content." -msgstr "" - -#: includes/fields/class-acf-field-wysiwyg.php:25 -msgid "WYSIWYG Editor" -msgstr "WYSIWYG-redigerare" - -#: includes/fields/class-acf-field-user.php:17 -msgid "" -"Allows the selection of one or more users which can be used to create " -"relationships between data objects." -msgstr "" -"Tillåter val av en eller flera användare som kan användas för att skapa " -"relationer mellan dataobjekt." - -#: includes/fields/class-acf-field-url.php:26 -msgid "A text input specifically designed for storing web addresses." -msgstr "En textinmatning speciellt designad för att lagra webbadresser." - -#: includes/fields/class-acf-field-url.php:25 -msgid "URL" -msgstr "URL" - -#: includes/fields/class-acf-field-true_false.php:27 -msgid "" -"A toggle that allows you to pick a value of 1 or 0 (on or off, true or " -"false, etc). Can be presented as a stylized switch or checkbox." -msgstr "" - -#: includes/fields/class-acf-field-time_picker.php:27 -msgid "" -"An interactive UI for picking a time. The time format can be customized " -"using the field settings." -msgstr "" - -#: includes/fields/class-acf-field-textarea.php:26 -msgid "A basic textarea input for storing paragraphs of text." -msgstr "" - -#: includes/fields/class-acf-field-text.php:26 -msgid "A basic text input, useful for storing single string values." -msgstr "" -"En grundläggande textinmatning, användbar för att lagra enskilda " -"strängvärden." - -#: includes/fields/class-acf-field-taxonomy.php:22 -msgid "" -"Allows the selection of one or more taxonomy terms based on the criteria and " -"options specified in the fields settings." -msgstr "" - -#: includes/fields/class-acf-field-tab.php:28 -msgid "" -"Allows you to group fields into tabbed sections in the edit screen. Useful " -"for keeping fields organized and structured." -msgstr "" - -#: includes/fields/class-acf-field-select.php:27 -msgid "A dropdown list with a selection of choices that you specify." -msgstr "" - -#: includes/fields/class-acf-field-relationship.php:19 -msgid "" -"A dual-column interface to select one or more posts, pages, or custom post " -"type items to create a relationship with the item that you're currently " -"editing. Includes options to search and filter." -msgstr "" - -#: includes/fields/class-acf-field-range.php:26 -msgid "" -"An input for selecting a numerical value within a specified range using a " -"range slider element." -msgstr "" - -#: includes/fields/class-acf-field-radio.php:27 -msgid "" -"A group of radio button inputs that allows the user to make a single " -"selection from values that you specify." -msgstr "" - -#: includes/fields/class-acf-field-post_object.php:19 -msgid "" -"An interactive and customizable UI for picking one or many posts, pages or " -"post type items with the option to search. " -msgstr "" - -#: includes/fields/class-acf-field-password.php:26 -msgid "An input for providing a password using a masked field." -msgstr "" -"Ett inmatningsfält för att ange ett lösenord med hjälp av ett maskerat fält." - -#: includes/fields/class-acf-field-page_link.php:476 -#: includes/fields/class-acf-field-post_object.php:381 -#: includes/fields/class-acf-field-relationship.php:593 -msgid "Filter by Post Status" -msgstr "Filtrera efter inläggsstatus" - -#: includes/fields/class-acf-field-page_link.php:27 -msgid "" -"An interactive dropdown to select one or more posts, pages, custom post type " -"items or archive URLs, with the option to search." -msgstr "" - -#: includes/fields/class-acf-field-oembed.php:27 -msgid "" -"An interactive component for embedding videos, images, tweets, audio and " -"other content by making use of the native WordPress oEmbed functionality." -msgstr "" - -#: includes/fields/class-acf-field-number.php:26 -msgid "An input limited to numerical values." -msgstr "Ett inmatningsfält begränsat till numeriska värden." - -#: includes/fields/class-acf-field-message.php:28 -msgid "" -"Used to display a message to editors alongside other fields. Useful for " -"providing additional context or instructions around your fields." -msgstr "" - -#: includes/fields/class-acf-field-link.php:27 -msgid "" -"Allows you to specify a link and its properties such as title and target " -"using the WordPress native link picker." -msgstr "" - -#: includes/fields/class-acf-field-image.php:27 -msgid "Uses the native WordPress media picker to upload, or choose images." -msgstr "" -"Använder den inbyggda mediaväljaren i WordPress för att ladda upp eller " -"välja bilder." - -#: includes/fields/class-acf-field-group.php:27 -msgid "" -"Provides a way to structure fields into groups to better organize the data " -"and the edit screen." -msgstr "" - -#: includes/fields/class-acf-field-google-map.php:27 -msgid "" -"An interactive UI for selecting a location using Google Maps. Requires a " -"Google Maps API key and additional configuration to display correctly." -msgstr "" - -#: includes/fields/class-acf-field-file.php:27 -msgid "Uses the native WordPress media picker to upload, or choose files." -msgstr "" -"Använder den inbyggda mediaväljaren i WordPress för att ladda upp eller " -"välja filer." - -#: includes/fields/class-acf-field-email.php:26 -msgid "A text input specifically designed for storing email addresses." -msgstr "En textinmatning speciellt designad för att lagra e-postadresser." - -#: includes/fields/class-acf-field-date_time_picker.php:27 -msgid "" -"An interactive UI for picking a date and time. The date return format can be " -"customized using the field settings." -msgstr "" - -#: includes/fields/class-acf-field-date_picker.php:27 -msgid "" -"An interactive UI for picking a date. The date return format can be " -"customized using the field settings." -msgstr "" - -#: includes/fields/class-acf-field-color_picker.php:27 -msgid "An interactive UI for selecting a color, or specifying a Hex value." -msgstr "" - -#: includes/fields/class-acf-field-checkbox.php:27 -msgid "" -"A group of checkbox inputs that allow the user to select one, or multiple " -"values that you specify." -msgstr "" - -#: includes/fields/class-acf-field-button-group.php:26 -msgid "" -"A group of buttons with values that you specify, users can choose one option " -"from the values provided." -msgstr "" - -#: includes/fields/class-acf-field-accordion.php:27 -msgid "" -"Allows you to group and organize custom fields into collapsable panels that " -"are shown while editing content. Useful for keeping large datasets tidy." -msgstr "" - -#: includes/fields.php:475 -msgid "" -"This provides a solution for repeating content such as slides, team members, " -"and call-to-action tiles, by acting as a parent to a set of subfields which " -"can be repeated again and again." -msgstr "" - -#: includes/fields.php:465 -msgid "" -"This provides an interactive interface for managing a collection of " -"attachments. Most settings are similar to the Image field type. Additional " -"settings allow you to specify where new attachments are added in the gallery " -"and the minimum/maximum number of attachments allowed." -msgstr "" -"Detta tillhandahåller en interaktiv gränssnitt för att hantera en samling av " -"bilagor. De flesta inställningarna är liknande bildfälttypen. Ytterligare " -"inställningar låter dig specificera var nya bilagor ska läggas till i " -"galleriet och det minsta/maximala antalet bilagor som tillåts." - -#: includes/fields.php:455 -msgid "" -"This provides a simple, structured, layout-based editor. The Flexible " -"Content field allows you to define, create and manage content with total " -"control by using layouts and subfields to design the available blocks." -msgstr "" - -#: includes/fields.php:445 -msgid "" -"This allows you to select and display existing fields. It does not duplicate " -"any fields in the database, but loads and displays the selected fields at " -"run-time. The Clone field can either replace itself with the selected fields " -"or display the selected fields as a group of subfields." -msgstr "" -"Detta gör det möjligt för dig att välja och visa befintliga fält. Det " -"duplicerar inte några fält i databasen, utan laddar och visar de valda " -"fälten vid körtid. Klonfältet kan antingen ersätta sig själv med de valda " -"fälten eller visa de valda fälten som en grupp av underfält." - -#: includes/fields.php:442 -msgctxt "noun" -msgid "Clone" -msgstr "Klona" - -#: includes/admin/views/global/navigation.php:86 includes/fields.php:357 -msgid "PRO" -msgstr "PRO" - -#: includes/fields.php:355 includes/fields.php:412 -msgid "Advanced" -msgstr "Avancerad" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:85 -msgid "JSON (newer)" -msgstr "JSON (nyare)" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:81 -msgid "Original" -msgstr "Original" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:55 -msgid "Invalid post ID." -msgstr "Ogiltigt inläggs-ID." - -#: includes/ajax/class-acf-ajax-local-json-diff.php:47 -msgid "Invalid post type selected for review." -msgstr "Ogiltig inläggstyp har valts för granskning." - -#: includes/admin/views/global/navigation.php:186 -msgid "More" -msgstr "Mer" - -#: includes/admin/views/browse-fields-modal.php:86 -msgid "Tutorial" -msgstr "Handledning" - -#: includes/admin/views/browse-fields-modal.php:75 -msgid "Available with ACF PRO" -msgstr "Tillgänglig med ACF PRO" - -#: includes/admin/views/browse-fields-modal.php:63 -msgid "Select Field" -msgstr "Välj fält" - -#. translators: %s: A link to the popular fields used in ACF -#: includes/admin/views/browse-fields-modal.php:50 -msgid "Try a different search term or browse %s" -msgstr "Prova med en annan sökterm eller bläddra bland %s" - -#: includes/admin/views/browse-fields-modal.php:47 -msgid "Popular fields" -msgstr "Populära fält" - -#. translators: %s: The invalid search term -#: includes/admin/views/browse-fields-modal.php:40 -msgid "No search results for '%s'" -msgstr "Inga sökresultat för ”%s”" - -#: includes/admin/views/browse-fields-modal.php:13 -msgid "Search fields..." -msgstr "Sök fält …" - -#: includes/admin/views/browse-fields-modal.php:11 -msgid "Select Field Type" -msgstr "Välj fälttyp" - -#: includes/admin/views/browse-fields-modal.php:4 -msgid "Popular" -msgstr "Populär" - -#: includes/admin/views/acf-taxonomy/list-empty.php:7 -msgid "Add Taxonomy" -msgstr "Lägg till taxonomi" - -#: includes/admin/views/acf-taxonomy/list-empty.php:6 -msgid "Create custom taxonomies to classify post type content" -msgstr "Skapa anpassade taxonomier för att klassificera typ av inläggsinnehåll" - -#: includes/admin/views/acf-taxonomy/list-empty.php:5 -msgid "Add Your First Taxonomy" -msgstr "Lägg till din första taxonomi" - -#: includes/admin/views/acf-taxonomy/basic-settings.php:122 -msgid "Hierarchical taxonomies can have descendants (like categories)." -msgstr "" - -#: includes/admin/views/acf-taxonomy/basic-settings.php:107 -msgid "Makes a taxonomy visible on the frontend and in the admin dashboard." -msgstr "" - -#: includes/admin/views/acf-taxonomy/basic-settings.php:91 -msgid "One or many post types that can be classified with this taxonomy." -msgstr "En eller flera inläggstyper som kan klassificeras med denna taxonomi." - -#. translators: example taxonomy -#: includes/admin/views/acf-taxonomy/basic-settings.php:60 -msgid "genre" -msgstr "genre" - -#. translators: example taxonomy -#: includes/admin/views/acf-taxonomy/basic-settings.php:42 -msgid "Genre" -msgstr "Genre" - -#. translators: example taxonomy -#: includes/admin/views/acf-taxonomy/basic-settings.php:25 -msgid "Genres" -msgstr "Genrer" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1211 -msgid "" -"Optional custom controller to use instead of `WP_REST_Terms_Controller `." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1155 -msgid "Expose this post type in the REST API." -msgstr "Exponera denna inläggstyp i REST API." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1055 -msgid "Customize the query variable name" -msgstr "Anpassa namnet på ”query”-variabeln" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1028 -msgid "" -"Terms can be accessed using the non-pretty permalink, e.g., {query_var}" -"={term_slug}." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:981 -msgid "Parent-child terms in URLs for hierarchical taxonomies." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:941 -msgid "Customize the slug used in the URL" -msgstr "Anpassa ”slug” som används i URL:en" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:924 -msgid "Permalinks for this taxonomy are disabled." -msgstr "Permalänkar för denna taxonomi är inaktiverade." - -#. translators: this string will be appended with the new permalink structure. -#: includes/admin/views/acf-taxonomy/advanced-settings.php:921 -msgid "" -"Rewrite the URL using the taxonomy key as the slug. Your permalink structure " -"will be" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:913 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1030 -#: includes/admin/views/acf-taxonomy/basic-settings.php:57 -msgid "Taxonomy Key" -msgstr "Taxonominyckel" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:911 -msgid "Select the type of permalink to use for this taxonomy." -msgstr "Välj typen av permalänk som ska användas för denna taxonomi." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:896 -msgid "Display a column for the taxonomy on post type listing screens." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:895 -msgid "Show Admin Column" -msgstr "Visa adminkolumn" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:882 -msgid "Show the taxonomy in the quick/bulk edit panel." -msgstr "Visa taxonomin i panelen för snabb-/massredigering." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:881 -msgid "Quick Edit" -msgstr "Snabbredigera" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:868 -msgid "List the taxonomy in the Tag Cloud Widget controls." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:867 -msgid "Tag Cloud" -msgstr "Etikettmoln" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:824 -msgid "" -"A PHP function name to be called for sanitizing taxonomy data saved from a " -"meta box." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:823 -msgid "Meta Box Sanitization Callback" -msgstr "Säkerhetsfiltrerande återanrop för metaruta" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:805 -msgid "" -"A PHP function name to be called to handle the content of a meta box on your " -"taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:804 -msgid "Register Meta Box Callback" -msgstr "Registrera återanrop för metaruta" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:763 -msgid "No Meta Box" -msgstr "Ingen metaruta" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:762 -msgid "Custom Meta Box" -msgstr "Anpassad metaruta" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:758 -msgid "" -"Controls the meta box on the content editor screen. By default, the " -"Categories meta box is shown for hierarchical taxonomies, and the Tags meta " -"box is shown for non-hierarchical taxonomies." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:757 -msgid "Meta Box" -msgstr "Metaruta" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:746 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:767 -msgid "Categories Meta Box" -msgstr "Metaruta för kategorier" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:745 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:766 -msgid "Tags Meta Box" -msgstr "Metaruta för etiketter" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:704 -msgid "A link to a tag" -msgstr "En länk till en etikett" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:703 -msgid "Describes a navigation link block variation used in the block editor." -msgstr "" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:698 -msgid "A link to a %s" -msgstr "En länk till en/ett %s" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:683 -msgid "Tag Link" -msgstr "Etikettlänk" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:682 -msgid "" -"Assigns a title for navigation link block variation used in the block editor." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:663 -msgid "← Go to tags" -msgstr "← Gå till etiketter" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:662 -msgid "" -"Assigns the text used to link back to the main index after updating a term." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:661 -msgid "Back To Items" -msgstr "Tillbaka till objekt" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:657 -msgid "← Go to %s" -msgstr "← Gå till %s" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:642 -msgid "Tags list" -msgstr "Eitkettlista" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:641 -msgid "Assigns text to the table hidden heading." -msgstr "Tilldelar texten för tabellens dolda rubrik." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:622 -msgid "Tags list navigation" -msgstr "Navigation för etikettlista" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:621 -msgid "Assigns text to the table pagination hidden heading." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:597 -msgid "Filter by category" -msgstr "Filtrera efter kategori" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:596 -msgid "Assigns text to the filter button in the posts lists table." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:595 -msgid "Filter By Item" -msgstr "Filtret efter objekt" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:591 -msgid "Filter by %s" -msgstr "Filtrera efter %s" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:575 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:576 -msgid "" -"The description is not prominent by default; however, some themes may show " -"it." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:574 -msgid "Describes the Description field on the Edit Tags screen." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:573 -msgid "Description Field Description" -msgstr "Beskrivning för fältbeskrivning" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:554 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:555 -msgid "" -"Assign a parent term to create a hierarchy. The term Jazz, for example, " -"would be the parent of Bebop and Big Band" -msgstr "" -"Ange en överordnad term för att skapa en hierarki. Till exempel skulle " -"termen Jazz kunna vara överordnad till Bebop och Storband" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:553 -msgid "Describes the Parent field on the Edit Tags screen." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:552 -msgid "Parent Field Description" -msgstr "Överordnad fältbeskrivning" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:538 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:539 -msgid "" -"The \"slug\" is the URL-friendly version of the name. It is usually all " -"lower case and contains only letters, numbers, and hyphens." -msgstr "" -"”Slug” är den URL-vänliga versionen av namnet. Det är vanligtvis bara små " -"bokstäver och innehåller bara bokstäver, siffror och bindestreck." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:537 -msgid "Describes the Slug field on the Edit Tags screen." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:536 -msgid "Slug Field Description" -msgstr "Beskrivning av slugfält" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:522 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:523 -msgid "The name is how it appears on your site" -msgstr "Namnet är hur det ser ut på din webbplats" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:521 -msgid "Describes the Name field on the Edit Tags screen." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:520 -msgid "Name Field Description" -msgstr "Beskrivning av namnfält" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:507 -msgid "No tags" -msgstr "Inga etiketter" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:506 -msgid "" -"Assigns the text displayed in the posts and media list tables when no tags " -"or categories are available." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:505 -msgid "No Terms" -msgstr "Inga termer" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:501 -msgid "No %s" -msgstr "Inga %s" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:486 -msgid "No tags found" -msgstr "Inga etiketter hittades" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:485 -msgid "" -"Assigns the text displayed when clicking the 'choose from most used' text in " -"the taxonomy meta box when no tags are available, and assigns the text used " -"in the terms list table when there are no items for a taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:484 -msgid "Not Found" -msgstr "Hittades inte" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:463 -msgid "Assigns text to the Title field of the Most Used tab." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:462 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:464 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:465 -msgid "Most Used" -msgstr "Mest använda" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:444 -msgid "Choose from the most used tags" -msgstr "Välj från de mest använda etiketterna" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:443 -msgid "" -"Assigns the 'choose from most used' text used in the meta box when " -"JavaScript is disabled. Only used on non-hierarchical taxonomies." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:442 -msgid "Choose From Most Used" -msgstr "Välj från mest använda" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:438 -msgid "Choose from the most used %s" -msgstr "Välj från de mest använda %s" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:418 -msgid "Add or remove tags" -msgstr "Lägg till eller ta bort etiketter" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:417 -msgid "" -"Assigns the add or remove items text used in the meta box when JavaScript is " -"disabled. Only used on non-hierarchical taxonomies" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:416 -msgid "Add Or Remove Items" -msgstr "Lägg till eller ta bort objekt" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:412 -msgid "Add or remove %s" -msgstr "Lägg till eller ta bort %s" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:392 -msgid "Separate tags with commas" -msgstr "Separera etiketter med kommatecken" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:391 -msgid "" -"Assigns the separate item with commas text used in the taxonomy meta box. " -"Only used on non-hierarchical taxonomies." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:390 -msgid "Separate Items With Commas" -msgstr "Separera objekt med kommatecken" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:386 -msgid "Separate %s with commas" -msgstr "Separera %s med kommatecken" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:366 -msgid "Popular Tags" -msgstr "Populära etiketter" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:365 -msgid "Assigns popular items text. Only used for non-hierarchical taxonomies." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:364 -msgid "Popular Items" -msgstr "Populära objekt" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:361 -msgid "Popular %s" -msgstr "Populär %s" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:347 -msgid "Search Tags" -msgstr "Sök etiketter" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:346 -msgid "Assigns search items text." -msgstr "Tilldelar texten för att söka objekt." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:323 -msgid "Parent Category:" -msgstr "Överordnad kategori:" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:322 -msgid "Assigns parent item text, but with a colon (:) added to the end." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:321 -msgid "Parent Item With Colon" -msgstr "Överordnat objekt med kolon" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:298 -msgid "Parent Category" -msgstr "Överordnad kategori" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:297 -msgid "Assigns parent item text. Only used on hierarchical taxonomies." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:296 -msgid "Parent Item" -msgstr "Överordnat objekt" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:293 -msgid "Parent %s" -msgstr "Överordnad %s" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:278 -msgid "New Tag Name" -msgstr "Nytt etikettnamn" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:277 -msgid "Assigns the new item name text." -msgstr "Tilldelar texten för nytt namn på objekt." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:276 -msgid "New Item Name" -msgstr "Nytt objektnamn" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:273 -msgid "New %s Name" -msgstr "Namn på ny %s" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:258 -msgid "Add New Tag" -msgstr "Lägg till ny etikett" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:257 -msgid "Assigns the add new item text." -msgstr "Tilldelar texten för att lägga till nytt objekt." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:238 -msgid "Update Tag" -msgstr "Uppdatera etikett" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:237 -msgid "Assigns the update item text." -msgstr "Tilldelar texten för uppdatera objekt." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:236 -msgid "Update Item" -msgstr "Uppdatera objekt" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:233 -msgid "Update %s" -msgstr "Uppdatera %s" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:218 -msgid "View Tag" -msgstr "Visa etikett" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:217 -msgid "In the admin bar to view term during editing." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:198 -msgid "Edit Tag" -msgstr "Redigera etikett" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:197 -msgid "At the top of the editor screen when editing a term." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:178 -msgid "All Tags" -msgstr "Alla etiketter" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:177 -msgid "Assigns the all items text." -msgstr "Tilldelar texten för alla objekt." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:158 -msgid "Assigns the menu name text." -msgstr "Tilldelar texten för menynamn." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:157 -msgid "Menu Label" -msgstr "Menyetikett" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:131 -msgid "Active taxonomies are enabled and registered with WordPress." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:115 -msgid "A descriptive summary of the taxonomy." -msgstr "En beskrivande sammanfattning av taxonomin." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:95 -msgid "A descriptive summary of the term." -msgstr "En beskrivande sammanfattning av termen." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:94 -msgid "Term Description" -msgstr "Termbeskrivning" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:76 -msgid "Single word, no spaces. Underscores and dashes allowed." -msgstr "Enstaka ord, inga mellanslag. Understreck och bindestreck tillåtna." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:75 -msgid "Term Slug" -msgstr "Termens slug" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:56 -msgid "The name of the default term." -msgstr "Standardtermens namn." - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:55 -msgid "Term Name" -msgstr "Termnamn" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:41 -msgid "" -"Create a term for the taxonomy that cannot be deleted. It will not be " -"selected for posts by default." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:40 -msgid "Default Term" -msgstr "Standardterm" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:28 -msgid "" -"Whether terms in this taxonomy should be sorted in the order they are " -"provided to `wp_set_object_terms()`." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:27 -msgid "Sort Terms" -msgstr "Sortera termer" - -#: includes/admin/views/acf-post-type/list-empty.php:7 -msgid "Add Post Type" -msgstr "Lägg till inläggstyp" - -#: includes/admin/views/acf-post-type/list-empty.php:6 -msgid "" -"Expand the functionality of WordPress beyond standard posts and pages with " -"custom post types." -msgstr "" - -#: includes/admin/views/acf-post-type/list-empty.php:5 -msgid "Add Your First Post Type" -msgstr "Lägg till din första inläggstyp" - -#: includes/admin/views/acf-post-type/basic-settings.php:136 -#: includes/admin/views/acf-taxonomy/basic-settings.php:135 -msgid "I know what I'm doing, show me all the options." -msgstr "Jag vet vad jag gör, visa mig alla alternativ." - -#: includes/admin/views/acf-post-type/basic-settings.php:135 -#: includes/admin/views/acf-taxonomy/basic-settings.php:134 -msgid "Advanced Configuration" -msgstr "Avancerad konfiguration" - -#: includes/admin/views/acf-post-type/basic-settings.php:123 -msgid "Hierarchical post types can have descendants (like pages)." -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:122 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:980 -#: includes/admin/views/acf-taxonomy/basic-settings.php:121 -msgid "Hierarchical" -msgstr "Hierarkisk" - -#: includes/admin/views/acf-post-type/basic-settings.php:107 -msgid "Visible on the frontend and in the admin dashboard." -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:106 -#: includes/admin/views/acf-taxonomy/basic-settings.php:106 -msgid "Public" -msgstr "Offentlig" - -#. translators: example post type -#: includes/admin/views/acf-post-type/basic-settings.php:59 -msgid "movie" -msgstr "film" - -#: includes/admin/views/acf-post-type/basic-settings.php:57 -msgid "Lower case letters, underscores and dashes only, Max 20 characters." -msgstr "" - -#. translators: example post type -#: includes/admin/views/acf-post-type/basic-settings.php:41 -msgid "Movie" -msgstr "Film" - -#: includes/admin/views/acf-post-type/basic-settings.php:39 -#: includes/admin/views/acf-taxonomy/basic-settings.php:40 -msgid "Singular Label" -msgstr "Etikett i singular" - -#. translators: example post type -#: includes/admin/views/acf-post-type/basic-settings.php:24 -msgid "Movies" -msgstr "Filmer" - -#: includes/admin/views/acf-post-type/basic-settings.php:22 -#: includes/admin/views/acf-taxonomy/basic-settings.php:23 -msgid "Plural Label" -msgstr "Etikett i plural" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1270 -msgid "" -"Optional custom controller to use instead of `WP_REST_Posts_Controller`." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1269 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1210 -msgid "Controller Class" -msgstr "”Controller”-klass" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1251 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1191 -msgid "The namespace part of the REST API URL." -msgstr "Namnrymdsdelen av REST API-URL:en." - -#: includes/admin/views/acf-post-type/advanced-settings.php:1250 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1190 -msgid "Namespace Route" -msgstr "Route för namnrymd" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1232 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1172 -msgid "The base URL for the post type REST API URLs." -msgstr "Bas-URL för inläggstypens REST API-URL:er." - -#: includes/admin/views/acf-post-type/advanced-settings.php:1231 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1171 -msgid "Base URL" -msgstr "Bas-URL" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1217 -msgid "" -"Exposes this post type in the REST API. Required to use the block editor." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1216 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1154 -msgid "Show In REST API" -msgstr "Visa i REST API" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1195 -msgid "Customize the query variable name." -msgstr "Anpassa namnet på ”query”-variabeln." - -#: includes/admin/views/acf-post-type/advanced-settings.php:1194 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1054 -msgid "Query Variable" -msgstr "”Query”-variabel" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1172 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1032 -msgid "No Query Variable Support" -msgstr "Inget stöd för ”query”-variabel" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1171 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1031 -msgid "Custom Query Variable" -msgstr "Anpassad ”query”-variabel" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1168 -msgid "" -"Items can be accessed using the non-pretty permalink, eg. {post_type}" -"={post_slug}." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1167 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1027 -msgid "Query Variable Support" -msgstr "Stöd för ”query”-variabel" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1142 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1003 -msgid "URLs for an item and items can be accessed with a query string." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1141 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1002 -msgid "Publicly Queryable" -msgstr "Offentligt sökbar" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1120 -msgid "Custom slug for the Archive URL." -msgstr "Anpassad slug för arkiv-URL:en." - -#: includes/admin/views/acf-post-type/advanced-settings.php:1119 -msgid "Archive Slug" -msgstr "Arkiv-slug" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1106 -msgid "" -"Has an item archive that can be customized with an archive template file in " -"your theme." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1105 -msgid "Archive" -msgstr "Arkiv" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1085 -msgid "Pagination support for the items URLs such as the archives." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1084 -msgid "Pagination" -msgstr "Sidonumrering" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1067 -msgid "RSS feed URL for the post type items." -msgstr "URL för RSS-flöde, för objekten i inläggstypen." - -#: includes/admin/views/acf-post-type/advanced-settings.php:1066 -msgid "Feed URL" -msgstr "Flödes-URL" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1048 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:961 -msgid "" -"Alters the permalink structure to add the `WP_Rewrite::$front` prefix to " -"URLs." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1047 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:960 -msgid "Front URL Prefix" -msgstr "Prefix för inledande URL" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1028 -msgid "Customize the slug used in the URL." -msgstr "Anpassa slugen som används i webbadressen." - -#: includes/admin/views/acf-post-type/advanced-settings.php:1027 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:940 -msgid "URL Slug" -msgstr "URL-slug" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1011 -msgid "Permalinks for this post type are disabled." -msgstr "Permalänkar för denna inläggstyp är inaktiverade." - -#. translators: this string will be appended with the new permalink structure. -#: includes/admin/views/acf-post-type/advanced-settings.php:1010 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:923 -msgid "" -"Rewrite the URL using a custom slug defined in the input below. Your " -"permalink structure will be" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1002 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:915 -msgid "No Permalink (prevent URL rewriting)" -msgstr "Ingen permalänk (förhindra URL-omskrivning)" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1001 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:914 -msgid "Custom Permalink" -msgstr "Anpassad permalänk" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1000 -#: includes/admin/views/acf-post-type/advanced-settings.php:1170 -#: includes/admin/views/acf-post-type/basic-settings.php:56 -msgid "Post Type Key" -msgstr "Nyckel för inläggstyp" - -#. translators: this string will be appended with the new permalink structure. -#: includes/admin/views/acf-post-type/advanced-settings.php:998 -#: includes/admin/views/acf-post-type/advanced-settings.php:1008 -msgid "" -"Rewrite the URL using the post type key as the slug. Your permalink " -"structure will be" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:996 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:910 -msgid "Permalink Rewrite" -msgstr "Omskrivning av permalänk" - -#: includes/admin/views/acf-post-type/advanced-settings.php:982 -msgid "Delete items by a user when that user is deleted." -msgstr "Ta bort objekt av en användare när den användaren tas bort." - -#: includes/admin/views/acf-post-type/advanced-settings.php:981 -msgid "Delete With User" -msgstr "Ta bort med användare" - -#: includes/admin/views/acf-post-type/advanced-settings.php:967 -msgid "Allow the post type to be exported from 'Tools' > 'Export'." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:966 -msgid "Can Export" -msgstr "Kan exportera" - -#: includes/admin/views/acf-post-type/advanced-settings.php:935 -msgid "Optionally provide a plural to be used in capabilities." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:934 -msgid "Plural Capability Name" -msgstr "Namn i plural på behörighet" - -#: includes/admin/views/acf-post-type/advanced-settings.php:916 -msgid "Choose another post type to base the capabilities for this post type." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:915 -msgid "Singular Capability Name" -msgstr "Namn i singular på behörighet" - -#: includes/admin/views/acf-post-type/advanced-settings.php:901 -msgid "" -"By default the capabilities of the post type will inherit the 'Post' " -"capability names, eg. edit_post, delete_posts. Enable to use post type " -"specific capabilities, eg. edit_{singular}, delete_{plural}." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:900 -msgid "Rename Capabilities" -msgstr "Byt namn på behörigheter" - -#: includes/admin/views/acf-post-type/advanced-settings.php:885 -msgid "Exclude From Search" -msgstr "Exkludera från sök" - -#: includes/admin/views/acf-post-type/advanced-settings.php:872 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:854 -msgid "" -"Allow items to be added to menus in the 'Appearance' > 'Menus' screen. Must " -"be turned on in 'Screen options'." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:871 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:853 -msgid "Appearance Menus Support" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:853 -msgid "Appears as an item in the 'New' menu in the admin bar." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:852 -msgid "Show In Admin Bar" -msgstr "Visa i adminmeny" - -#: includes/admin/views/acf-post-type/advanced-settings.php:821 -msgid "" -"A PHP function name to be called when setting up the meta boxes for the edit " -"screen." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:820 -msgid "Custom Meta Box Callback" -msgstr "Återanrop för anpassad metaruta" - -#: includes/admin/views/acf-post-type/advanced-settings.php:800 -msgid "Menu Icon" -msgstr "Menyikon" - -#: includes/admin/views/acf-post-type/advanced-settings.php:782 -msgid "The position in the sidebar menu in the admin dashboard." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:781 -msgid "Menu Position" -msgstr "Menyposition" - -#: includes/admin/views/acf-post-type/advanced-settings.php:763 -msgid "" -"By default the post type will get a new top level item in the admin menu. If " -"an existing top level item is supplied here, the post type will be added as " -"a submenu item under it." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:762 -msgid "Admin Menu Parent" -msgstr "Överordnad adminmeny" - -#. translators: %s = "dashicon class name", link to the WordPress dashicon -#. documentation. -#: includes/admin/views/acf-post-type/advanced-settings.php:750 -msgid "" -"The icon used for the post type menu item in the admin dashboard. Can be a " -"URL or %s to use for the icon." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:745 -msgid "Dashicon class name" -msgstr "Klassnamn för dashicon" - -#: includes/admin/views/acf-post-type/advanced-settings.php:734 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:734 -msgid "Admin editor navigation in the sidebar menu." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:733 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:733 -msgid "Show In Admin Menu" -msgstr "Visa i adminmeny" - -#: includes/admin/views/acf-post-type/advanced-settings.php:720 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:719 -msgid "Items can be edited and managed in the admin dashboard." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:719 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:718 -msgid "Show In UI" -msgstr "Visa i användargränssnitt" - -#: includes/admin/views/acf-post-type/advanced-settings.php:689 -msgid "A link to a post." -msgstr "En länk till ett inlägg." - -#: includes/admin/views/acf-post-type/advanced-settings.php:688 -msgid "Description for a navigation link block variation." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:687 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:702 -msgid "Item Link Description" -msgstr "Objekts länkbeskrivning" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:683 -msgid "A link to a %s." -msgstr "En länk till en/ett %s." - -#: includes/admin/views/acf-post-type/advanced-settings.php:668 -msgid "Post Link" -msgstr "Inläggslänk" - -#: includes/admin/views/acf-post-type/advanced-settings.php:667 -msgid "Title for a navigation link block variation." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:666 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:681 -msgid "Item Link" -msgstr "Objektlänk" - -#. translators: %s Singular form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:663 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:678 -msgid "%s Link" -msgstr "%s-länk" - -#: includes/admin/views/acf-post-type/advanced-settings.php:648 -msgid "Post updated." -msgstr "Inlägg uppdaterat." - -#: includes/admin/views/acf-post-type/advanced-settings.php:647 -msgid "In the editor notice after an item is updated." -msgstr "Avisering i redigeraren efter att ett objekt har uppdaterats." - -#: includes/admin/views/acf-post-type/advanced-settings.php:646 -msgid "Item Updated" -msgstr "Objekt uppdaterat" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:643 -msgid "%s updated." -msgstr "%s har uppdaterats." - -#: includes/admin/views/acf-post-type/advanced-settings.php:628 -msgid "Post scheduled." -msgstr "Inlägget har schemalagts." - -#: includes/admin/views/acf-post-type/advanced-settings.php:627 -msgid "In the editor notice after scheduling an item." -msgstr "Avisering i redigeraren efter schemaläggning av ett objekt." - -#: includes/admin/views/acf-post-type/advanced-settings.php:626 -msgid "Item Scheduled" -msgstr "Objekt tidsinställt" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:623 -msgid "%s scheduled." -msgstr "%s schemalagd." - -#: includes/admin/views/acf-post-type/advanced-settings.php:608 -msgid "Post reverted to draft." -msgstr "Inlägget har återställts till utkastet." - -#: includes/admin/views/acf-post-type/advanced-settings.php:607 -msgid "In the editor notice after reverting an item to draft." -msgstr "" -"Avisering i redigeraren efter att ha återställt ett objekt till utkast." - -#: includes/admin/views/acf-post-type/advanced-settings.php:606 -msgid "Item Reverted To Draft" -msgstr "Objekt återställt till utkast" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:603 -msgid "%s reverted to draft." -msgstr "%s återställt till utkast." - -#: includes/admin/views/acf-post-type/advanced-settings.php:588 -msgid "Post published privately." -msgstr "Inlägg publicerat privat." - -#: includes/admin/views/acf-post-type/advanced-settings.php:587 -msgid "In the editor notice after publishing a private item." -msgstr "Avisering i redigeraren efter publicering av ett privat objekt." - -#: includes/admin/views/acf-post-type/advanced-settings.php:586 -msgid "Item Published Privately" -msgstr "Objekt publicerat privat" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:583 -msgid "%s published privately." -msgstr "%s har publicerats privat." - -#: includes/admin/views/acf-post-type/advanced-settings.php:568 -msgid "Post published." -msgstr "Inlägg publicerat." - -#: includes/admin/views/acf-post-type/advanced-settings.php:567 -msgid "In the editor notice after publishing an item." -msgstr "Avisering i redigeraren efter publicering av ett objekt." - -#: includes/admin/views/acf-post-type/advanced-settings.php:566 -msgid "Item Published" -msgstr "Objekt publicerat" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:563 -msgid "%s published." -msgstr "%s publicerad." - -#: includes/admin/views/acf-post-type/advanced-settings.php:548 -msgid "Posts list" -msgstr "Inläggslista" - -#: includes/admin/views/acf-post-type/advanced-settings.php:547 -msgid "Used by screen readers for the items list on the post type list screen." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:546 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:640 -msgid "Items List" -msgstr "Objektlista" - -#. translators: %s Plural form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:543 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:637 -msgid "%s list" -msgstr "%s-lista" - -#: includes/admin/views/acf-post-type/advanced-settings.php:528 -msgid "Posts list navigation" -msgstr "Navigation för inläggslista" - -#: includes/admin/views/acf-post-type/advanced-settings.php:527 -msgid "" -"Used by screen readers for the filter list pagination on the post type list " -"screen." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:526 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:620 -msgid "Items List Navigation" -msgstr "Navigation för objektlista" - -#. translators: %s Plural form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:523 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:617 -msgid "%s list navigation" -msgstr "Navigation för %s-lista" - -#: includes/admin/views/acf-post-type/advanced-settings.php:507 -msgid "Filter posts by date" -msgstr "Filtrera inlägg efter datum" - -#: includes/admin/views/acf-post-type/advanced-settings.php:506 -msgid "" -"Used by screen readers for the filter by date heading on the post type list " -"screen." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:505 -msgid "Filter Items By Date" -msgstr "Filtrera objekt efter datum" - -#. translators: %s Plural form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:501 -msgid "Filter %s by date" -msgstr "Filtrera %s efter datum" - -#: includes/admin/views/acf-post-type/advanced-settings.php:486 -msgid "Filter posts list" -msgstr "Filtrera inläggslista" - -#: includes/admin/views/acf-post-type/advanced-settings.php:485 -msgid "" -"Used by screen readers for the filter links heading on the post type list " -"screen." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:484 -msgid "Filter Items List" -msgstr "Filtrera lista med objekt" - -#. translators: %s Plural form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:480 -msgid "Filter %s list" -msgstr "Filtrera %s-listan" - -#: includes/admin/views/acf-post-type/advanced-settings.php:464 -msgid "In the media modal showing all media uploaded to this item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:463 -msgid "Uploaded To This Item" -msgstr "Uppladdat till detta objekt" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:459 -msgid "Uploaded to this %s" -msgstr "Uppladdad till denna %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:444 -msgid "Insert into post" -msgstr "Infoga i inlägg" - -#: includes/admin/views/acf-post-type/advanced-settings.php:443 -msgid "As the button label when adding media to content." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:442 -msgid "Insert Into Media Button" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:438 -msgid "Insert into %s" -msgstr "Infoga i %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:423 -msgid "Use as featured image" -msgstr "Använd som utvald bild" - -#: includes/admin/views/acf-post-type/advanced-settings.php:422 -msgid "" -"As the button label for selecting to use an image as the featured image." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:421 -msgid "Use Featured Image" -msgstr "Använd utvald bild" - -#: includes/admin/views/acf-post-type/advanced-settings.php:408 -msgid "Remove featured image" -msgstr "Ta bort utvald bild" - -#: includes/admin/views/acf-post-type/advanced-settings.php:407 -msgid "As the button label when removing the featured image." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:406 -msgid "Remove Featured Image" -msgstr "Ta bort utvald bild" - -#: includes/admin/views/acf-post-type/advanced-settings.php:393 -msgid "Set featured image" -msgstr "Ange utvald bild" - -#: includes/admin/views/acf-post-type/advanced-settings.php:392 -msgid "As the button label when setting the featured image." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:391 -msgid "Set Featured Image" -msgstr "Ange utvald bild" - -#: includes/admin/views/acf-post-type/advanced-settings.php:378 -msgid "Featured image" -msgstr "Utvald bild" - -#: includes/admin/views/acf-post-type/advanced-settings.php:377 -msgid "In the editor used for the title of the featured image meta box." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:376 -msgid "Featured Image Meta Box" -msgstr "Metaruta för utvald bild" - -#: includes/admin/views/acf-post-type/advanced-settings.php:363 -msgid "Post Attributes" -msgstr "Inläggsattribut" - -#: includes/admin/views/acf-post-type/advanced-settings.php:362 -msgid "In the editor used for the title of the post attributes meta box." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:361 -msgid "Attributes Meta Box" -msgstr "Metaruta för attribut" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:358 -msgid "%s Attributes" -msgstr "Attribut för %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:343 -msgid "Post Archives" -msgstr "Inläggsarkiv" - -#: includes/admin/views/acf-post-type/advanced-settings.php:342 -msgid "" -"Adds 'Post Type Archive' items with this label to the list of posts shown " -"when adding items to an existing menu in a CPT with archives enabled. Only " -"appears when editing menus in 'Live Preview' mode and a custom archive slug " -"has been provided." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:341 -msgid "Archives Nav Menu" -msgstr "Navigationsmeny för arkiv" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:338 -msgid "%s Archives" -msgstr "Arkiv för %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:323 -msgid "No posts found in Trash" -msgstr "Inga inlägg hittades i papperskorgen" - -#: includes/admin/views/acf-post-type/advanced-settings.php:322 -msgid "" -"At the top of the post type list screen when there are no posts in the trash." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:321 -msgid "No Items Found in Trash" -msgstr "Inga objekt hittades i papperskorgen" - -#. translators: %s Plural form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:317 -msgid "No %s found in Trash" -msgstr "Inga %s hittades i papperskorgen" - -#: includes/admin/views/acf-post-type/advanced-settings.php:302 -msgid "No posts found" -msgstr "Inga inlägg hittades" - -#: includes/admin/views/acf-post-type/advanced-settings.php:301 -msgid "" -"At the top of the post type list screen when there are no posts to display." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:300 -msgid "No Items Found" -msgstr "Inga objekt hittades" - -#. translators: %s Plural form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:296 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:480 -msgid "No %s found" -msgstr "Inga %s hittades" - -#: includes/admin/views/acf-post-type/advanced-settings.php:281 -msgid "Search Posts" -msgstr "Sök inlägg" - -#: includes/admin/views/acf-post-type/advanced-settings.php:280 -msgid "At the top of the items screen when searching for an item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:279 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:345 -msgid "Search Items" -msgstr "Sök objekt" - -#. translators: %s Singular form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:276 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:342 -msgid "Search %s" -msgstr "Sök efter %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:261 -msgid "Parent Page:" -msgstr "Överordnad sida:" - -#: includes/admin/views/acf-post-type/advanced-settings.php:260 -msgid "For hierarchical types in the post type list screen." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:259 -msgid "Parent Item Prefix" -msgstr "Prefix för överordnat objekt" - -#. translators: %s Singular form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:256 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:318 -msgid "Parent %s:" -msgstr "Överordnad %s:" - -#: includes/admin/views/acf-post-type/advanced-settings.php:241 -msgid "New Post" -msgstr "Nytt inlägg" - -#: includes/admin/views/acf-post-type/advanced-settings.php:239 -msgid "New Item" -msgstr "Nytt objekt" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:236 -msgid "New %s" -msgstr "Ny %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:206 -msgid "Add New Post" -msgstr "Lägg till nytt inlägg" - -#: includes/admin/views/acf-post-type/advanced-settings.php:205 -msgid "At the top of the editor screen when adding a new item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:204 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:256 -msgid "Add New Item" -msgstr "Lägg till nytt objekt" - -#. translators: %s Singular form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:201 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:253 -msgid "Add New %s" -msgstr "Lägg till ny/nytt %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:186 -msgid "View Posts" -msgstr "Visa inlägg" - -#: includes/admin/views/acf-post-type/advanced-settings.php:185 -msgid "" -"Appears in the admin bar in the 'All Posts' view, provided the post type " -"supports archives and the home page is not an archive of that post type." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:184 -msgid "View Items" -msgstr "Visa objekt" - -#: includes/admin/views/acf-post-type/advanced-settings.php:166 -msgid "View Post" -msgstr "Visa inlägg" - -#: includes/admin/views/acf-post-type/advanced-settings.php:165 -msgid "In the admin bar to view item when editing it." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:164 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:216 -msgid "View Item" -msgstr "Visa objekt" - -#. translators: %s Singular form of post type name -#. translators: %s Plural form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:161 -#: includes/admin/views/acf-post-type/advanced-settings.php:181 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:213 -msgid "View %s" -msgstr "Visa %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:146 -msgid "Edit Post" -msgstr "Redigera inlägg" - -#: includes/admin/views/acf-post-type/advanced-settings.php:145 -msgid "At the top of the editor screen when editing an item." -msgstr "Överst i redigeringsvyn när du redigerar ett objekt." - -#: includes/admin/views/acf-post-type/advanced-settings.php:144 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:196 -msgid "Edit Item" -msgstr "Redigera objekt" - -#. translators: %s Singular form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:141 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:193 -msgid "Edit %s" -msgstr "Redigera %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:126 -msgid "All Posts" -msgstr "Alla inlägg" - -#: includes/admin/views/acf-post-type/advanced-settings.php:125 -#: includes/admin/views/acf-post-type/advanced-settings.php:220 -#: includes/admin/views/acf-post-type/advanced-settings.php:240 -msgid "In the post type submenu in the admin dashboard." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:124 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:176 -msgid "All Items" -msgstr "Alla objekt" - -#. translators: %s Plural form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:121 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:173 -msgid "All %s" -msgstr "Alla %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:105 -msgid "Admin menu name for the post type." -msgstr "Adminmenynamn för inläggstypen." - -#: includes/admin/views/acf-post-type/advanced-settings.php:104 -msgid "Menu Name" -msgstr "Menynamn" - -#: includes/admin/views/acf-post-type/advanced-settings.php:90 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:142 -msgid "Regenerate all labels using the Singular and Plural labels" -msgstr "Återskapa alla etiketter med etiketterna för singular och plural" - -#: includes/admin/views/acf-post-type/advanced-settings.php:88 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:140 -msgid "Regenerate" -msgstr "Återskapa" - -#: includes/admin/views/acf-post-type/advanced-settings.php:79 -msgid "Active post types are enabled and registered with WordPress." -msgstr "Aktiva inläggstyper är aktiverade och registrerade med WordPress." - -#: includes/admin/views/acf-post-type/advanced-settings.php:63 -msgid "A descriptive summary of the post type." -msgstr "En beskrivande sammanfattning av inläggstypen." - -#: includes/admin/views/acf-post-type/advanced-settings.php:48 -msgid "Add Custom" -msgstr "Lägg till anpassad" - -#: includes/admin/views/acf-post-type/advanced-settings.php:42 -msgid "Enable various features in the content editor." -msgstr "Aktivera olika funktioner i innehållsredigeraren." - -#: includes/admin/views/acf-post-type/advanced-settings.php:31 -msgid "Post Formats" -msgstr "Inläggsformat" - -#: includes/admin/views/acf-post-type/advanced-settings.php:25 -msgid "Editor" -msgstr "Redigerare" - -#: includes/admin/views/acf-post-type/advanced-settings.php:24 -msgid "Trackbacks" -msgstr "Trackbacks" - -#: includes/admin/views/acf-post-type/basic-settings.php:87 -msgid "Select existing taxonomies to classify items of the post type." -msgstr "" - -#: includes/admin/views/acf-field-group/field.php:145 -msgid "Browse Fields" -msgstr "Bläddra bland fält" - -#: includes/admin/tools/class-acf-admin-tool-import.php:292 -msgid "Nothing to import" -msgstr "Ingenting att importera" - -#: includes/admin/tools/class-acf-admin-tool-import.php:287 -msgid ". The Custom Post Type UI plugin can be deactivated." -msgstr ". Tillägget ”Custom Post Type UI” kan inaktiveras." - -#. translators: %d - number of items imported from CPTUI -#: includes/admin/tools/class-acf-admin-tool-import.php:278 -msgid "Imported %d item from Custom Post Type UI -" -msgid_plural "Imported %d items from Custom Post Type UI -" -msgstr[0] "Importerade %d objekt från ”Custom Post Type UI” –" -msgstr[1] "Importerade %d objekt från ”Custom Post Type UI” –" - -#: includes/admin/tools/class-acf-admin-tool-import.php:262 -msgid "Failed to import taxonomies." -msgstr "Misslyckades att importera taxonomier." - -#: includes/admin/tools/class-acf-admin-tool-import.php:244 -msgid "Failed to import post types." -msgstr "Misslyckades att importera inläggstyper." - -#: includes/admin/tools/class-acf-admin-tool-import.php:233 -msgid "Nothing from Custom Post Type UI plugin selected for import." -msgstr "Inget från ”Custom Post Type UI” har valts för import." - -#: includes/admin/tools/class-acf-admin-tool-import.php:209 -msgid "Imported 1 item" -msgid_plural "Imported %s items" -msgstr[0] "Importerade 1 objekt" -msgstr[1] "Importerade %s objekt" - -#: includes/admin/tools/class-acf-admin-tool-import.php:122 -msgid "" -"Importing a Post Type or Taxonomy with the same key as one that already " -"exists will overwrite the settings for the existing Post Type or Taxonomy " -"with those of the import." -msgstr "" -"Om en inläggstyp eller taxonomi importeras med samma nyckel som en som redan " -"finns skrivs inställningarna för den befintliga inläggstypen eller taxonomin " -"över med inställningarna för importen." - -#: includes/admin/tools/class-acf-admin-tool-import.php:111 -#: includes/admin/tools/class-acf-admin-tool-import.php:127 -msgid "Import from Custom Post Type UI" -msgstr "Importera från Custom Post Type UI" - -#: includes/admin/tools/class-acf-admin-tool-export.php:412 -msgid "" -"The following code can be used to register a local version of the selected " -"items. Storing field groups, post types, or taxonomies locally can provide " -"many benefits such as faster load times, version control & dynamic fields/" -"settings. Simply copy and paste the following code to your theme's functions." -"php file or include it within an external file, then deactivate or delete " -"the items from the ACF admin." -msgstr "" -"Följande kod kan användas för att registrera en lokal version av de valda " -"objekten. Att lagra fältgrupper, inläggstyper eller taxonomier lokalt kan ge " -"många fördelar, till exempel snabbare inläsningstider, versionskontroll och " -"dynamiska fält/inställningar. Kopiera och klistra in följande kod i ditt " -"temas ”functions.php”-fil eller inkludera den i en extern fil, inaktivera " -"eller ta sen bort objekten från ACF-administrationen." - -#: includes/admin/tools/class-acf-admin-tool-export.php:411 -msgid "Export - Generate PHP" -msgstr "Exportera - Generera PHP" - -#: includes/admin/tools/class-acf-admin-tool-export.php:384 -msgid "Export" -msgstr "Exportera" - -#: includes/admin/tools/class-acf-admin-tool-export.php:276 -msgid "Select Taxonomies" -msgstr "Välj taxonomier" - -#: includes/admin/tools/class-acf-admin-tool-export.php:254 -msgid "Select Post Types" -msgstr "Välj inläggstyper" - -#: includes/admin/tools/class-acf-admin-tool-export.php:167 -msgid "Exported 1 item." -msgid_plural "Exported %s items." -msgstr[0] "Exporterade 1 objekt." -msgstr[1] "Exporterade %s objekt." - -#: includes/admin/post-types/admin-taxonomy.php:129 -#: assets/build/js/acf-internal-post-type.js:182 -#: assets/build/js/acf-internal-post-type.js:256 -msgid "Category" -msgstr "Kategori" - -#: includes/admin/post-types/admin-taxonomy.php:127 -#: assets/build/js/acf-internal-post-type.js:179 -#: assets/build/js/acf-internal-post-type.js:253 -msgid "Tag" -msgstr "Etikett" - -#. translators: %s taxonomy name -#: includes/admin/post-types/admin-taxonomy.php:82 -msgid "%s taxonomy created" -msgstr "Taxonomin %s skapades" - -#. translators: %s taxonomy name -#: includes/admin/post-types/admin-taxonomy.php:76 -msgid "%s taxonomy updated" -msgstr "Taxonomin %s uppdaterad" - -#: includes/admin/post-types/admin-taxonomy.php:56 -msgid "Taxonomy draft updated." -msgstr "Taxonomiutkast uppdaterat." - -#: includes/admin/post-types/admin-taxonomy.php:55 -msgid "Taxonomy scheduled for." -msgstr "Taxonomi schemalagd till." - -#: includes/admin/post-types/admin-taxonomy.php:54 -msgid "Taxonomy submitted." -msgstr "Taxonomi inskickad." - -#: includes/admin/post-types/admin-taxonomy.php:53 -msgid "Taxonomy saved." -msgstr "Taxonomi sparad." - -#: includes/admin/post-types/admin-taxonomy.php:49 -msgid "Taxonomy deleted." -msgstr "Taxonomi borttagen." - -#: includes/admin/post-types/admin-taxonomy.php:48 -msgid "Taxonomy updated." -msgstr "Taxonomi uppdaterad." - -#: includes/admin/post-types/admin-taxonomies.php:377 -#: includes/admin/post-types/admin-taxonomy.php:157 -msgid "" -"This taxonomy could not be registered because its key is in use by another " -"taxonomy registered by another plugin or theme." -msgstr "" -"Denna taxonomi kunde inte registreras eftersom dess nyckel används av en " -"annan taxonomi som registrerats av ett annat tillägg eller tema." - -#. translators: %s number of taxonomies synchronized -#: includes/admin/post-types/admin-taxonomies.php:359 -msgid "Taxonomy synchronized." -msgid_plural "%s taxonomies synchronized." -msgstr[0] "Taxonomi synkroniserad." -msgstr[1] "%s taxonomier synkroniserade." - -#. translators: %s number of taxonomies duplicated -#: includes/admin/post-types/admin-taxonomies.php:352 -msgid "Taxonomy duplicated." -msgid_plural "%s taxonomies duplicated." -msgstr[0] "Taxonomi duplicerad." -msgstr[1] "%s taxonomier duplicerade." - -#. translators: %s number of taxonomies deactivated -#: includes/admin/post-types/admin-taxonomies.php:345 -msgid "Taxonomy deactivated." -msgid_plural "%s taxonomies deactivated." -msgstr[0] "Taxonomi inaktiverad." -msgstr[1] "%s taxonomier inaktiverade." - -#. translators: %s number of taxonomies activated -#: includes/admin/post-types/admin-taxonomies.php:338 -msgid "Taxonomy activated." -msgid_plural "%s taxonomies activated." -msgstr[0] "Taxonomi aktiverad." -msgstr[1] "%s taxonomier aktiverade." - -#: includes/admin/post-types/admin-taxonomies.php:139 -msgid "Terms" -msgstr "Termer" - -#. translators: %s number of post types synchronized -#: includes/admin/post-types/admin-post-types.php:352 -msgid "Post type synchronized." -msgid_plural "%s post types synchronized." -msgstr[0] "Inläggstyp synkroniserad." -msgstr[1] "%s inläggstyper synkroniserade." - -#. translators: %s number of post types duplicated -#: includes/admin/post-types/admin-post-types.php:345 -msgid "Post type duplicated." -msgid_plural "%s post types duplicated." -msgstr[0] "Inläggstyp duplicerad." -msgstr[1] "%s inläggstyper duplicerade." - -#. translators: %s number of post types deactivated -#: includes/admin/post-types/admin-post-types.php:338 -msgid "Post type deactivated." -msgid_plural "%s post types deactivated." -msgstr[0] "Inläggstyp inaktiverad." -msgstr[1] "%s inläggstyper inaktiverade." - -#. translators: %s number of post types activated -#: includes/admin/post-types/admin-post-types.php:331 -msgid "Post type activated." -msgid_plural "%s post types activated." -msgstr[0] "Inläggstyp aktiverad." -msgstr[1] "%s inläggstyper aktiverade." - -#: includes/admin/post-types/admin-post-types.php:112 -#: includes/admin/post-types/admin-taxonomies.php:137 -#: includes/admin/tools/class-acf-admin-tool-import.php:82 -#: includes/admin/views/acf-taxonomy/basic-settings.php:82 -#: includes/post-types/class-acf-post-type.php:91 -msgid "Post Types" -msgstr "Inläggstyper" - -#: includes/admin/post-types/admin-post-type.php:162 -#: includes/admin/post-types/admin-taxonomy.php:164 -msgid "Advanced Settings" -msgstr "Avancerade inställningar" - -#: includes/admin/post-types/admin-post-type.php:161 -#: includes/admin/post-types/admin-taxonomy.php:163 -msgid "Basic Settings" -msgstr "Grundläggande inställningar" - -#: includes/admin/post-types/admin-post-type.php:155 -#: includes/admin/post-types/admin-post-types.php:370 -msgid "" -"This post type could not be registered because its key is in use by another " -"post type registered by another plugin or theme." -msgstr "" -"Denna inläggstyp kunde inte registreras eftersom dess nyckel används av en " -"annan inläggstyp som registrerats av ett annat tillägg eller tema." - -#: includes/admin/post-types/admin-post-type.php:128 -#: assets/build/js/acf-internal-post-type.js:176 -#: assets/build/js/acf-internal-post-type.js:250 -msgid "Pages" -msgstr "Sidor" - -#: includes/admin/admin-internal-post-type.php:355 -msgid "Link Existing Field Groups" -msgstr "Länka befintliga fältgrupper" - -#. translators: %s post type name -#: includes/admin/post-types/admin-post-type.php:80 -msgid "%s post type created" -msgstr "Inläggstypen %s skapad" - -#. translators: %s taxonomy name -#: includes/admin/post-types/admin-taxonomy.php:78 -msgid "Add fields to %s" -msgstr "Lägg till fält till %s" - -#. translators: %s post type name -#: includes/admin/post-types/admin-post-type.php:76 -msgid "%s post type updated" -msgstr "Inläggstypen %s uppdaterad" - -#: includes/admin/post-types/admin-post-type.php:56 -msgid "Post type draft updated." -msgstr "Utkast för inläggstyp uppdaterat." - -#: includes/admin/post-types/admin-post-type.php:55 -msgid "Post type scheduled for." -msgstr "Inläggstyp schemalagd till." - -#: includes/admin/post-types/admin-post-type.php:54 -msgid "Post type submitted." -msgstr "Inläggstyp inskickad." - -#: includes/admin/post-types/admin-post-type.php:53 -msgid "Post type saved." -msgstr "Inläggstyp sparad." - -#: includes/admin/post-types/admin-post-type.php:50 -msgid "Post type updated." -msgstr "Inläggstyp uppdaterad." - -#: includes/admin/post-types/admin-post-type.php:49 -msgid "Post type deleted." -msgstr "Inläggstyp borttagen." - -#: includes/admin/post-types/admin-field-group.php:120 -#: assets/build/js/acf-field-group.js:1146 -#: assets/build/js/acf-field-group.js:1366 -msgid "Type to search..." -msgstr "Skriv för att söka …" - -#: includes/admin/post-types/admin-field-group.php:105 -#: assets/build/js/acf-field-group.js:1172 -#: assets/build/js/acf-field-group.js:2319 -#: assets/build/js/acf-field-group.js:1414 -#: assets/build/js/acf-field-group.js:2727 -msgid "PRO Only" -msgstr "Endast PRO" - -#: includes/admin/post-types/admin-field-group.php:97 -#: assets/build/js/acf-internal-post-type.js:308 -#: assets/build/js/acf-internal-post-type.js:417 -msgid "Field groups linked successfully." -msgstr "Fältgrupper har länkats." - -#. translators: %s - URL to ACF tools page. -#: includes/admin/admin.php:195 -msgid "" -"Import Post Types and Taxonomies registered with Custom Post Type UI and " -"manage them with ACF. Get Started." -msgstr "" -"Importera inläggstyper och taxonomier som registrerats med ”Custom Post Type " -"UI” och hantera dem med ACF. Kom igång." - -#: includes/admin/admin.php:48 includes/admin/admin.php:267 -msgid "ACF" -msgstr "ACF" - -#: includes/admin/admin-internal-post-type.php:322 -msgid "taxonomy" -msgstr "taxonomi" - -#: includes/admin/admin-internal-post-type.php:322 -msgid "post type" -msgstr "inläggstyp" - -#: includes/admin/admin-internal-post-type.php:346 -msgid "Done" -msgstr "Klar" - -#: includes/admin/admin-internal-post-type.php:332 -msgid "Field Group(s)" -msgstr "Fältgrupp/fältgrupper" - -#: includes/admin/admin-internal-post-type.php:331 -msgid "Select one or many field groups..." -msgstr "Markera en eller flera fältgrupper …" - -#: includes/admin/admin-internal-post-type.php:330 -msgid "Please select the field groups to link." -msgstr "Välj de fältgrupper som ska länkas." - -#: includes/admin/admin-internal-post-type.php:288 -msgid "Field group linked successfully." -msgid_plural "Field groups linked successfully." -msgstr[0] "Fältgrupp har länkats." -msgstr[1] "Fältgrupper har länkats." - -#: includes/admin/admin-internal-post-type-list.php:261 -#: includes/admin/post-types/admin-post-types.php:371 -#: includes/admin/post-types/admin-taxonomies.php:378 -msgctxt "post status" -msgid "Registration Failed" -msgstr "Registrering misslyckades" - -#: includes/admin/admin-internal-post-type-list.php:260 -msgid "" -"This item could not be registered because its key is in use by another item " -"registered by another plugin or theme." -msgstr "" -"Detta objekt kunde inte registreras eftersom dess nyckel används av ett " -"annat objekt som registrerats av ett annat tillägg eller tema." - -#: includes/acf-internal-post-type-functions.php:482 -#: includes/acf-internal-post-type-functions.php:511 -msgid "REST API" -msgstr "REST API" - -#: includes/acf-internal-post-type-functions.php:481 -#: includes/acf-internal-post-type-functions.php:510 -#: includes/acf-internal-post-type-functions.php:537 -msgid "Permissions" -msgstr "Behörigheter" - -#: includes/acf-internal-post-type-functions.php:480 -#: includes/acf-internal-post-type-functions.php:509 -msgid "URLs" -msgstr "URL:er" - -#: includes/acf-internal-post-type-functions.php:479 -#: includes/acf-internal-post-type-functions.php:508 -#: includes/acf-internal-post-type-functions.php:535 -msgid "Visibility" -msgstr "Synlighet" - -#: includes/acf-internal-post-type-functions.php:478 -#: includes/acf-internal-post-type-functions.php:507 -#: includes/acf-internal-post-type-functions.php:536 -msgid "Labels" -msgstr "Etiketter" - -#: includes/admin/post-types/admin-field-group.php:269 -msgid "Field Settings Tabs" -msgstr "Fältinställningar för flikar" - -#. Author URI of the plugin -msgid "" -"https://wpengine.com/?utm_source=wordpress." -"org&utm_medium=referral&utm_campaign=plugin_directory&utm_content=advanced_custom_fields" -msgstr "" -"https://wpengine.com/?utm_source=wordpress." -"org&utm_medium=referral&utm_campaign=plugin_directory&utm_content=advanced_custom_fields" - -#: includes/api/api-template.php:867 -msgid "[ACF shortcode value disabled for preview]" -msgstr "[ACF-kortkod inaktiverad för förhandsvisning]" - -#: includes/admin/admin-internal-post-type.php:298 -#: includes/admin/post-types/admin-field-group.php:571 -msgid "Close Modal" -msgstr "Stäng modal" - -#: includes/admin/post-types/admin-field-group.php:96 -#: assets/build/js/acf-field-group.js:1670 -#: assets/build/js/acf-field-group.js:1993 -msgid "Field moved to other group" -msgstr "Fält flyttat till annan grupp" - -#: includes/admin/post-types/admin-field-group.php:95 -#: assets/build/js/acf.js:1437 assets/build/js/acf.js:1517 -msgid "Close modal" -msgstr "Stäng modal" - -#: includes/fields/class-acf-field-tab.php:125 -msgid "Start a new group of tabs at this tab." -msgstr "Starta en ny grupp av flikar på denna flik." - -#: includes/fields/class-acf-field-tab.php:124 -msgid "New Tab Group" -msgstr "Ny flikgrupp" - -#: includes/fields/class-acf-field-select.php:451 -#: includes/fields/class-acf-field-true_false.php:200 -msgid "Use a stylized checkbox using select2" -msgstr "Använd en stiliserad kryssruta med hjälp av select2" - -#: includes/fields/class-acf-field-radio.php:260 -msgid "Save Other Choice" -msgstr "Spara annat val" - -#: includes/fields/class-acf-field-radio.php:249 -msgid "Allow Other Choice" -msgstr "Tillåt annat val" - -#: includes/fields/class-acf-field-checkbox.php:450 -msgid "Add Toggle All" -msgstr "Lägg till ”Slå på/av alla”" - -#: includes/fields/class-acf-field-checkbox.php:409 -msgid "Save Custom Values" -msgstr "Spara anpassade värden" - -#: includes/fields/class-acf-field-checkbox.php:398 -msgid "Allow Custom Values" -msgstr "Tillåt anpassade värden" - -#: includes/fields/class-acf-field-checkbox.php:148 -msgid "Checkbox custom values cannot be empty. Uncheck any empty values." -msgstr "" -"Anpassade värden för kryssrutor kan inte vara tomma. Avmarkera alla tomma " -"värden." - -#: includes/admin/views/global/navigation.php:248 -msgid "Updates" -msgstr "Uppdateringar" - -#: includes/admin/views/global/navigation.php:176 -msgid "Advanced Custom Fields logo" -msgstr "Logga för Advanced Custom Fields" - -#: includes/admin/views/global/form-top.php:89 -msgid "Save Changes" -msgstr "Spara ändringarna" - -#: includes/admin/views/global/form-top.php:76 -msgid "Field Group Title" -msgstr "Rubrik för fältgrupp" - -#: includes/admin/views/acf-post-type/advanced-settings.php:704 -#: includes/admin/views/global/form-top.php:3 -msgid "Add title" -msgstr "Lägg till rubrik" - -#. translators: %s url to getting started guide -#: includes/admin/views/acf-field-group/list-empty.php:20 -#: includes/admin/views/acf-post-type/list-empty.php:12 -#: includes/admin/views/acf-taxonomy/list-empty.php:12 -#: includes/admin/views/options-page-preview.php:13 -msgid "" -"New to ACF? Take a look at our getting " -"started guide." -msgstr "" -"Har du just börjat med ACF? Kolla gärna in vår välkomstguide." - -#: includes/admin/views/acf-field-group/list-empty.php:15 -msgid "Add Field Group" -msgstr "Lägg till fältgrupp" - -#. translators: %s url to creating a field group page -#: includes/admin/views/acf-field-group/list-empty.php:10 -msgid "" -"ACF uses field groups to group custom " -"fields together, and then attach those fields to edit screens." -msgstr "" -"ACF samlar anpassade fält i fältgrupper " -"och kopplar sedan dessa fält till redigeringsvyer." - -#: includes/admin/views/acf-field-group/list-empty.php:5 -msgid "Add Your First Field Group" -msgstr "Lägg till din första fältgrupp" - -#: includes/admin/admin-options-pages-preview.php:28 -#: includes/admin/views/acf-field-group/pro-features.php:54 -#: includes/admin/views/global/navigation.php:86 -#: includes/admin/views/global/navigation.php:250 -msgid "Options Pages" -msgstr "Alternativsidor" - -#: includes/admin/views/acf-field-group/pro-features.php:50 -msgid "ACF Blocks" -msgstr "ACF-block" - -#: includes/admin/views/acf-field-group/pro-features.php:58 -msgid "Gallery Field" -msgstr "Gallerifält" - -#: includes/admin/views/acf-field-group/pro-features.php:38 -msgid "Flexible Content Field" -msgstr "Flexibelt innehållsfält" - -#: includes/admin/views/acf-field-group/pro-features.php:42 -msgid "Repeater Field" -msgstr "Upprepningsfält" - -#: includes/admin/views/global/navigation.php:212 -msgid "Unlock Extra Features with ACF PRO" -msgstr "Lås upp extra funktioner med ACF PRO" - -#: includes/admin/views/acf-field-group/options.php:267 -msgid "Delete Field Group" -msgstr "Ta bort fältgrupp" - -#. translators: 1: Post creation date 2: Post creation time -#: includes/admin/views/acf-field-group/options.php:261 -msgid "Created on %1$s at %2$s" -msgstr "Skapad den %1$s kl. %2$s" - -#: includes/acf-field-group-functions.php:497 -msgid "Group Settings" -msgstr "Gruppinställningar" - -#: includes/acf-field-group-functions.php:495 -msgid "Location Rules" -msgstr "Platsregler" - -#. translators: %s url to field types list -#: includes/admin/views/acf-field-group/fields.php:72 -msgid "" -"Choose from over 30 field types. Learn " -"more." -msgstr "" -"Välj från över 30 fälttyper. Lär dig mer." - -#: includes/admin/views/acf-field-group/fields.php:65 -msgid "" -"Get started creating new custom fields for your posts, pages, custom post " -"types and other WordPress content." -msgstr "" -"Kom igång med att skapa nya anpassade fält för dina inlägg, sidor, anpassade " -"inläggstyper och annat WordPress-innehåll." - -#: includes/admin/views/acf-field-group/fields.php:64 -msgid "Add Your First Field" -msgstr "Lägg till ditt första fält" - -#. translators: A symbol (or text, if not available in your locale) meaning -#. "Order Number", in terms of positional placement. -#: includes/admin/views/acf-field-group/fields.php:43 -msgid "#" -msgstr "#" - -#: includes/admin/views/acf-field-group/fields.php:33 -#: includes/admin/views/acf-field-group/fields.php:67 -#: includes/admin/views/acf-field-group/fields.php:103 -#: includes/admin/views/global/form-top.php:85 -msgid "Add Field" -msgstr "Lägg till fält" - -#: includes/acf-field-group-functions.php:496 includes/fields.php:410 -msgid "Presentation" -msgstr "Presentation" - -#: includes/fields.php:409 -msgid "Validation" -msgstr "Validering" - -#: includes/acf-internal-post-type-functions.php:477 -#: includes/acf-internal-post-type-functions.php:506 includes/fields.php:408 -msgid "General" -msgstr "Allmänt" - -#: includes/admin/tools/class-acf-admin-tool-import.php:70 -msgid "Import JSON" -msgstr "Importera JSON" - -#: includes/admin/tools/class-acf-admin-tool-export.php:392 -msgid "Export As JSON" -msgstr "Exportera som JSON" - -#. translators: %s number of field groups deactivated -#: includes/admin/post-types/admin-field-groups.php:367 -msgid "Field group deactivated." -msgid_plural "%s field groups deactivated." -msgstr[0] "Fältgrupp inaktiverad." -msgstr[1] "%s fältgrupper inaktiverade." - -#. translators: %s number of field groups activated -#: includes/admin/post-types/admin-field-groups.php:360 -msgid "Field group activated." -msgid_plural "%s field groups activated." -msgstr[0] "Fältgrupp aktiverad." -msgstr[1] "%s fältgrupper aktiverade." - -#: includes/admin/admin-internal-post-type-list.php:452 -#: includes/admin/admin-internal-post-type-list.php:478 -msgid "Deactivate" -msgstr "Inaktivera" - -#: includes/admin/admin-internal-post-type-list.php:452 -msgid "Deactivate this item" -msgstr "Inaktivera detta objekt" - -#: includes/admin/admin-internal-post-type-list.php:448 -#: includes/admin/admin-internal-post-type-list.php:477 -msgid "Activate" -msgstr "Aktivera" - -#: includes/admin/admin-internal-post-type-list.php:448 -msgid "Activate this item" -msgstr "Aktivera detta objekt" - -#: includes/admin/post-types/admin-field-group.php:92 -#: assets/build/js/acf-field-group.js:2812 -#: assets/build/js/acf-field-group.js:3313 -msgid "Move field group to trash?" -msgstr "Flytta fältgrupp till papperskorg?" - -#: acf.php:497 includes/admin/admin-internal-post-type-list.php:248 -#: includes/admin/post-types/admin-field-group.php:297 -#: includes/admin/post-types/admin-post-type.php:295 -#: includes/admin/post-types/admin-taxonomy.php:297 -msgctxt "post status" -msgid "Inactive" -msgstr "Inaktiv" - -#. Author of the plugin -msgid "WP Engine" -msgstr "WP Engine" - -#: acf.php:555 -msgid "" -"Advanced Custom Fields and Advanced Custom Fields PRO should not be active " -"at the same time. We've automatically deactivated Advanced Custom Fields PRO." -msgstr "" -"Advanced Custom Fields och Advanced Custom Fields PRO ska inte vara aktiva " -"samtidigt. Vi har inaktiverat Advanced Custom Fields PRO automatiskt." - -#: acf.php:553 -msgid "" -"Advanced Custom Fields and Advanced Custom Fields PRO should not be active " -"at the same time. We've automatically deactivated Advanced Custom Fields." -msgstr "" -"Advanced Custom Fields och Advanced Custom Fields PRO ska inte vara aktiva " -"samtidigt. Vi har inaktiverat Advanced Custom Fields automatiskt." - -#: includes/acf-value-functions.php:374 -msgid "" -"%1$s - We've detected one or more calls to retrieve ACF " -"field values before ACF has been initialized. This is not supported and can " -"result in malformed or missing data. Learn how to fix this." -msgstr "" -"%1$s – Vi har upptäckt ett eller flera anrop för att hämta " -"ACF-fältvärden innan ACF har initierats. Detta stöds inte och kan resultera " -"i felaktiga eller saknade data. Lär dig " -"hur man åtgärdar detta." - -#: includes/fields/class-acf-field-user.php:551 -msgid "%1$s must have a user with the %2$s role." -msgid_plural "%1$s must have a user with one of the following roles: %2$s" -msgstr[0] "%1$s måste ha en användare med rollen %2$s." -msgstr[1] "%1$s måste ha en användare med en av följande roller: %2$s" - -#: includes/fields/class-acf-field-user.php:542 -msgid "%1$s must have a valid user ID." -msgstr "%1$s måste ha ett giltigt användar-ID." - -#: includes/fields/class-acf-field-user.php:380 -msgid "Invalid request." -msgstr "Ogiltig begäran." - -#: includes/fields/class-acf-field-select.php:684 -msgid "%1$s is not one of %2$s" -msgstr "%1$s är inte en av %2$s" - -#: includes/fields/class-acf-field-post_object.php:700 -msgid "%1$s must have term %2$s." -msgid_plural "%1$s must have one of the following terms: %2$s" -msgstr[0] "%1$s måste ha termen %2$s." -msgstr[1] "%1$s måste ha en av följande termer: %2$s" - -#: includes/fields/class-acf-field-post_object.php:684 -msgid "%1$s must be of post type %2$s." -msgid_plural "%1$s must be of one of the following post types: %2$s" -msgstr[0] "%1$s måste vara av inläggstypen %2$s." -msgstr[1] "%1$s måste vara en av följande inläggstyper: %2$s" - -#: includes/fields/class-acf-field-post_object.php:675 -msgid "%1$s must have a valid post ID." -msgstr "%1$s måste ha ett giltigt inläggs-ID." - -#: includes/fields/class-acf-field-file.php:475 -msgid "%s requires a valid attachment ID." -msgstr "%s kräver ett giltig bilage-ID." - -#: includes/admin/views/acf-field-group/options.php:233 -msgid "Show in REST API" -msgstr "Visa i REST API" - -#: includes/fields/class-acf-field-color_picker.php:168 -msgid "Enable Transparency" -msgstr "Aktivera genomskinlighet" - -#: includes/fields/class-acf-field-color_picker.php:187 -msgid "RGBA Array" -msgstr "RGBA-array" - -#: includes/fields/class-acf-field-color_picker.php:98 -msgid "RGBA String" -msgstr "RGBA-sträng" - -#: includes/fields/class-acf-field-color_picker.php:97 -#: includes/fields/class-acf-field-color_picker.php:186 -msgid "Hex String" -msgstr "HEX-sträng" - -#: includes/admin/views/browse-fields-modal.php:65 -msgid "Upgrade to PRO" -msgstr "Uppgradera till PRO" - -#: includes/admin/post-types/admin-field-group.php:297 -#: includes/admin/post-types/admin-post-type.php:295 -#: includes/admin/post-types/admin-taxonomy.php:297 -msgctxt "post status" -msgid "Active" -msgstr "Aktivt" - -#: includes/fields/class-acf-field-email.php:181 -msgid "'%s' is not a valid email address" -msgstr "”%s” är inte en giltig e-postadress" - -#: includes/fields/class-acf-field-color_picker.php:76 -msgid "Color value" -msgstr "Färgvärde" - -#: includes/fields/class-acf-field-color_picker.php:74 -msgid "Select default color" -msgstr "Välj standardfärg" - -#: includes/fields/class-acf-field-color_picker.php:72 -msgid "Clear color" -msgstr "Rensa färg" - -#: includes/acf-wp-functions.php:90 -msgid "Blocks" -msgstr "Block" - -#: includes/acf-wp-functions.php:86 -msgid "Options" -msgstr "Alternativ" - -#: includes/acf-wp-functions.php:82 -msgid "Users" -msgstr "Användare" - -#: includes/acf-wp-functions.php:78 -msgid "Menu items" -msgstr "Menyval" - -#: includes/acf-wp-functions.php:70 -msgid "Widgets" -msgstr "Widgetar" - -#: includes/acf-wp-functions.php:62 -msgid "Attachments" -msgstr "Bilagor" - -#: includes/acf-wp-functions.php:57 -#: includes/admin/post-types/admin-post-types.php:137 -#: includes/admin/post-types/admin-taxonomies.php:112 -#: includes/admin/tools/class-acf-admin-tool-import.php:93 -#: includes/admin/views/acf-post-type/basic-settings.php:86 -#: includes/post-types/class-acf-taxonomy.php:90 -#: includes/post-types/class-acf-taxonomy.php:91 -msgid "Taxonomies" -msgstr "Taxonomier" - -#: includes/acf-wp-functions.php:44 -#: includes/admin/post-types/admin-post-type.php:126 -#: includes/admin/post-types/admin-post-types.php:139 -#: includes/admin/views/acf-post-type/advanced-settings.php:106 -#: assets/build/js/acf-internal-post-type.js:173 -#: assets/build/js/acf-internal-post-type.js:247 -msgid "Posts" -msgstr "Inlägg" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:76 -msgid "Last updated: %s" -msgstr "Senast uppdaterad: %s" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:70 -msgid "Sorry, this post is unavailable for diff comparison." -msgstr "Detta inlägg är inte tillgängligt för diff-jämförelse." - -#: includes/ajax/class-acf-ajax-local-json-diff.php:42 -msgid "Invalid field group parameter(s)." -msgstr "Ogiltiga parametrar för fältgrupp." - -#: includes/admin/admin-internal-post-type-list.php:413 -msgid "Awaiting save" -msgstr "Väntar på att sparas" - -#: includes/admin/admin-internal-post-type-list.php:410 -msgid "Saved" -msgstr "Sparad" - -#: includes/admin/admin-internal-post-type-list.php:406 -#: includes/admin/tools/class-acf-admin-tool-import.php:49 -msgid "Import" -msgstr "Importera" - -#: includes/admin/admin-internal-post-type-list.php:402 -msgid "Review changes" -msgstr "Granska ändringar" - -#: includes/admin/admin-internal-post-type-list.php:378 -msgid "Located in: %s" -msgstr "Finns i: %s" - -#: includes/admin/admin-internal-post-type-list.php:375 -msgid "Located in plugin: %s" -msgstr "Finns i tillägg: %s" - -#: includes/admin/admin-internal-post-type-list.php:372 -msgid "Located in theme: %s" -msgstr "Finns i tema: %s" - -#: includes/admin/post-types/admin-field-groups.php:261 -msgid "Various" -msgstr "Diverse" - -#: includes/admin/admin-internal-post-type-list.php:216 -#: includes/admin/admin-internal-post-type-list.php:485 -msgid "Sync changes" -msgstr "Synkronisera ändringar" - -#: includes/admin/admin-internal-post-type-list.php:215 -msgid "Loading diff" -msgstr "Hämtar diff" - -#: includes/admin/admin-internal-post-type-list.php:214 -msgid "Review local JSON changes" -msgstr "Granska lokala JSON-ändringar" - -#: includes/admin/admin.php:170 -msgid "Visit website" -msgstr "Besök webbplats" - -#: includes/admin/admin.php:169 -msgid "View details" -msgstr "Visa detaljer" - -#: includes/admin/admin.php:168 -msgid "Version %s" -msgstr "Version %s" - -#: includes/admin/admin.php:167 -msgid "Information" -msgstr "Information" - -#: includes/admin/admin.php:158 -msgid "" -"Help Desk. The support professionals on " -"our Help Desk will assist with your more in depth, technical challenges." -msgstr "" -"Support. Vår professionella " -"supportpersonal kan hjälpa dig med mer komplicerade och tekniska utmaningar." - -#: includes/admin/admin.php:154 -msgid "" -"Discussions. We have an active and " -"friendly community on our Community Forums who may be able to help you " -"figure out the 'how-tos' of the ACF world." -msgstr "" -"Diskussioner. Vi har en aktiv och " -"vänlig community på våra community-forum som kanske kan hjälpa dig att räkna " -"ut ”hur man gör” i ACF-världen." - -#: includes/admin/admin.php:150 -msgid "" -"Documentation. Our extensive " -"documentation contains references and guides for most situations you may " -"encounter." -msgstr "" -"Dokumentation. Vår omfattande " -"dokumentation innehåller referenser och guider för de flesta situationer du " -"kan stöta på." - -#: includes/admin/admin.php:147 -msgid "" -"We are fanatical about support, and want you to get the best out of your " -"website with ACF. If you run into any difficulties, there are several places " -"you can find help:" -msgstr "" -"Vi är fanatiska när det gäller support och vill att du ska få ut det bästa " -"av din webbplats med ACF. Om du stöter på några svårigheter finns det flera " -"ställen där du kan få hjälp:" - -#: includes/admin/admin.php:144 includes/admin/admin.php:146 -msgid "Help & Support" -msgstr "Hjälp och support" - -#: includes/admin/admin.php:135 -msgid "" -"Please use the Help & Support tab to get in touch should you find yourself " -"requiring assistance." -msgstr "" -"Använd fliken ”Hjälp och support” för att kontakta oss om du skulle behöva " -"hjälp." - -#: includes/admin/admin.php:132 -msgid "" -"Before creating your first Field Group, we recommend first reading our Getting started guide to familiarize " -"yourself with the plugin's philosophy and best practises." -msgstr "" -"Innan du skapar din första fältgrupp rekommenderar vi att du först läser vår " -"Komma igång-guide för att bekanta dig " -"med tilläggets filosofi och bästa praxis." - -#: includes/admin/admin.php:130 -msgid "" -"The Advanced Custom Fields plugin provides a visual form builder to " -"customize WordPress edit screens with extra fields, and an intuitive API to " -"display custom field values in any theme template file." -msgstr "" -"Tillägget ”Advanced Custom Fields” tillhandahåller en visuell " -"formulärbyggare för att anpassa WordPress redigeringsvyer med extra fält och " -"ett intuitivt API för att visa anpassade fältvärden i alla temamallsfiler." - -#: includes/admin/admin.php:127 includes/admin/admin.php:129 -msgid "Overview" -msgstr "Översikt" - -#: includes/locations.php:36 -msgid "Location type \"%s\" is already registered." -msgstr "Platstypen ”%s” är redan registrerad." - -#: includes/locations.php:25 -msgid "Class \"%s\" does not exist." -msgstr "Klassen ”%s” finns inte." - -#: includes/ajax/class-acf-ajax.php:157 -msgid "Invalid nonce." -msgstr "Ogiltig engångskod." - -#: includes/fields/class-acf-field-user.php:375 -msgid "Error loading field." -msgstr "Fel vid inläsning av fält." - -#: assets/build/js/acf-input.js:2750 assets/build/js/acf-input.js:2819 -#: assets/build/js/acf-input.js:2926 assets/build/js/acf-input.js:3000 -msgid "Location not found: %s" -msgstr "Plats hittades inte: %s" - -#: includes/forms/form-user.php:353 -msgid "Error: %s" -msgstr "Fel: %s" - -#: includes/locations/class-acf-location-widget.php:22 -msgid "Widget" -msgstr "Widget" - -#: includes/locations/class-acf-location-user-role.php:24 -msgid "User Role" -msgstr "Användarroll" - -#: includes/locations/class-acf-location-comment.php:22 -msgid "Comment" -msgstr "Kommentera" - -#: includes/locations/class-acf-location-post-format.php:22 -msgid "Post Format" -msgstr "Inläggsformat" - -#: includes/locations/class-acf-location-nav-menu-item.php:22 -msgid "Menu Item" -msgstr "Menyval" - -#: includes/locations/class-acf-location-post-status.php:22 -msgid "Post Status" -msgstr "Inläggsstatus" - -#: includes/acf-wp-functions.php:74 -#: includes/locations/class-acf-location-nav-menu.php:89 -msgid "Menus" -msgstr "Menyer" - -#: includes/locations/class-acf-location-nav-menu.php:80 -msgid "Menu Locations" -msgstr "Menyplatser" - -#: includes/locations/class-acf-location-nav-menu.php:22 -msgid "Menu" -msgstr "Meny" - -#: includes/locations/class-acf-location-post-taxonomy.php:22 -msgid "Post Taxonomy" -msgstr "Inläggstaxonomi" - -#: includes/locations/class-acf-location-page-type.php:114 -msgid "Child Page (has parent)" -msgstr "Undersida (har överordnad)" - -#: includes/locations/class-acf-location-page-type.php:113 -msgid "Parent Page (has children)" -msgstr "Överordnad sida (har undersidor)" - -#: includes/locations/class-acf-location-page-type.php:112 -msgid "Top Level Page (no parent)" -msgstr "Toppnivåsida (ingen överordnad)" - -#: includes/locations/class-acf-location-page-type.php:111 -msgid "Posts Page" -msgstr "Inläggssida" - -#: includes/locations/class-acf-location-page-type.php:110 -msgid "Front Page" -msgstr "Startsida" - -#: includes/locations/class-acf-location-page-type.php:22 -msgid "Page Type" -msgstr "Sidtyp" - -#: includes/locations/class-acf-location-current-user.php:73 -msgid "Viewing back end" -msgstr "Visar back-end" - -#: includes/locations/class-acf-location-current-user.php:72 -msgid "Viewing front end" -msgstr "Visar front-end" - -#: includes/locations/class-acf-location-current-user.php:71 -msgid "Logged in" -msgstr "Inloggad" - -#: includes/locations/class-acf-location-current-user.php:22 -msgid "Current User" -msgstr "Nuvarande användare" - -#: includes/locations/class-acf-location-page-template.php:22 -msgid "Page Template" -msgstr "Sidmall" - -#: includes/locations/class-acf-location-user-form.php:74 -msgid "Register" -msgstr "Registrera" - -#: includes/locations/class-acf-location-user-form.php:73 -msgid "Add / Edit" -msgstr "Lägg till/redigera" - -#: includes/locations/class-acf-location-user-form.php:22 -msgid "User Form" -msgstr "Användarformulär" - -#: includes/locations/class-acf-location-page-parent.php:22 -msgid "Page Parent" -msgstr "Överordnad sida" - -#: includes/locations/class-acf-location-current-user-role.php:77 -msgid "Super Admin" -msgstr "Superadmin" - -#: includes/locations/class-acf-location-current-user-role.php:22 -msgid "Current User Role" -msgstr "Nuvarande användarroll" - -#: includes/locations/class-acf-location-page-template.php:73 -#: includes/locations/class-acf-location-post-template.php:85 -msgid "Default Template" -msgstr "Standardmall" - -#: includes/locations/class-acf-location-post-template.php:22 -msgid "Post Template" -msgstr "Inläggsmall" - -#: includes/locations/class-acf-location-post-category.php:22 -msgid "Post Category" -msgstr "Inläggskategori" - -#: includes/locations/class-acf-location-attachment.php:84 -msgid "All %s formats" -msgstr "Alla %s-format" - -#: includes/locations/class-acf-location-attachment.php:22 -msgid "Attachment" -msgstr "Bilaga" - -#: includes/validation.php:366 -msgid "%s value is required" -msgstr "%s-värde är obligatoriskt" - -#: includes/admin/views/acf-field-group/conditional-logic.php:59 -msgid "Show this field if" -msgstr "Visa detta fält om" - -#: includes/admin/views/acf-field-group/conditional-logic.php:26 -#: includes/admin/views/acf-field-group/field.php:109 includes/fields.php:411 -msgid "Conditional Logic" -msgstr "Villkorad logik" - -#: includes/admin/views/acf-field-group/conditional-logic.php:156 -#: includes/admin/views/acf-field-group/location-rule.php:92 -msgid "and" -msgstr "och" - -#: includes/admin/post-types/admin-field-groups.php:123 -#: includes/admin/post-types/admin-post-types.php:143 -#: includes/admin/post-types/admin-taxonomies.php:143 -msgid "Local JSON" -msgstr "Lokal JSON" - -#: includes/admin/views/acf-field-group/pro-features.php:46 -msgid "Clone Field" -msgstr "Klona fält" - -#: includes/admin/views/upgrade/notice.php:30 -msgid "" -"Please also check all premium add-ons (%s) are updated to the latest version." -msgstr "" -"Kontrollera också att alla premiumutökningar (%s) är uppdaterade till den " -"senaste versionen." - -#: includes/admin/views/upgrade/notice.php:28 -msgid "" -"This version contains improvements to your database and requires an upgrade." -msgstr "" -"Denna version innehåller förbättringar av din databas och kräver en " -"uppgradering." - -#: includes/admin/views/upgrade/notice.php:28 -msgid "Thank you for updating to %1$s v%2$s!" -msgstr "Tack för att du uppdaterade till %1$s v%2$s!" - -#: includes/admin/views/upgrade/notice.php:27 -msgid "Database Upgrade Required" -msgstr "Databasuppgradering krävs" - -#: includes/admin/post-types/admin-field-group.php:141 -#: includes/admin/views/upgrade/notice.php:18 -msgid "Options Page" -msgstr "Alternativsida" - -#: includes/admin/views/upgrade/notice.php:15 includes/fields.php:462 -msgid "Gallery" -msgstr "Galleri" - -#: includes/admin/views/upgrade/notice.php:12 includes/fields.php:452 -msgid "Flexible Content" -msgstr "Flexibelt innehåll" - -#: includes/admin/views/upgrade/notice.php:9 includes/fields.php:472 -msgid "Repeater" -msgstr "Repeterare" - -#: includes/admin/views/tools/tools.php:24 -msgid "Back to all tools" -msgstr "Tillbaka till alla verktyg" - -#: includes/admin/views/acf-field-group/options.php:195 -msgid "" -"If multiple field groups appear on an edit screen, the first field group's " -"options will be used (the one with the lowest order number)" -msgstr "" -"Om flera fältgrupper visas på en redigeringssida, kommer den första " -"fältgruppens alternativ att användas (den med lägsta sorteringsnummer)" - -#: includes/admin/views/acf-field-group/options.php:195 -msgid "Select items to hide them from the edit screen." -msgstr "Markera objekt för att dölja dem från redigeringsvyn." - -#: includes/admin/views/acf-field-group/options.php:194 -msgid "Hide on screen" -msgstr "Dölj på skärmen" - -#: includes/admin/views/acf-field-group/options.php:186 -msgid "Send Trackbacks" -msgstr "Skicka trackbacks" - -#: includes/admin/post-types/admin-taxonomy.php:128 -#: includes/admin/views/acf-field-group/options.php:185 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:159 -#: assets/build/js/acf-internal-post-type.js:180 -#: assets/build/js/acf-internal-post-type.js:254 -msgid "Tags" -msgstr "Etiketter" - -#: includes/admin/post-types/admin-taxonomy.php:130 -#: includes/admin/views/acf-field-group/options.php:184 -#: assets/build/js/acf-internal-post-type.js:183 -#: assets/build/js/acf-internal-post-type.js:257 -msgid "Categories" -msgstr "Kategorier" - -#: includes/admin/views/acf-field-group/options.php:182 -#: includes/admin/views/acf-post-type/advanced-settings.php:28 -msgid "Page Attributes" -msgstr "Sidattribut" - -#: includes/admin/views/acf-field-group/options.php:181 -msgid "Format" -msgstr "Format" - -#: includes/admin/views/acf-field-group/options.php:180 -#: includes/admin/views/acf-post-type/advanced-settings.php:22 -msgid "Author" -msgstr "Författare" - -#: includes/admin/views/acf-field-group/options.php:179 -msgid "Slug" -msgstr "Slug" - -#: includes/admin/views/acf-field-group/options.php:178 -#: includes/admin/views/acf-post-type/advanced-settings.php:27 -msgid "Revisions" -msgstr "Versioner" - -#: includes/acf-wp-functions.php:66 -#: includes/admin/views/acf-field-group/options.php:177 -#: includes/admin/views/acf-post-type/advanced-settings.php:23 -msgid "Comments" -msgstr "Kommentarer" - -#: includes/admin/views/acf-field-group/options.php:176 -msgid "Discussion" -msgstr "Diskussion" - -#: includes/admin/views/acf-field-group/options.php:174 -#: includes/admin/views/acf-post-type/advanced-settings.php:26 -msgid "Excerpt" -msgstr "Utdrag" - -#: includes/admin/views/acf-field-group/options.php:173 -msgid "Content Editor" -msgstr "Innehållsredigerare" - -#: includes/admin/views/acf-field-group/options.php:172 -msgid "Permalink" -msgstr "Permalänk" - -#: includes/admin/views/acf-field-group/options.php:250 -msgid "Shown in field group list" -msgstr "Visa i fältgrupplista" - -#: includes/admin/views/acf-field-group/options.php:157 -msgid "Field groups with a lower order will appear first" -msgstr "Fältgrupper med lägre ordningsnummer kommer synas först" - -#: includes/admin/views/acf-field-group/options.php:156 -msgid "Order No." -msgstr "Sorteringsnummer" - -#: includes/admin/views/acf-field-group/options.php:147 -msgid "Below fields" -msgstr "Under fält" - -#: includes/admin/views/acf-field-group/options.php:146 -msgid "Below labels" -msgstr "Under etiketter" - -#: includes/admin/views/acf-field-group/options.php:139 -msgid "Instruction Placement" -msgstr "Instruktionsplacering" - -#: includes/admin/views/acf-field-group/options.php:122 -msgid "Label Placement" -msgstr "Etikettplacering" - -#: includes/admin/views/acf-field-group/options.php:110 -msgid "Side" -msgstr "Vid sidan" - -#: includes/admin/views/acf-field-group/options.php:109 -msgid "Normal (after content)" -msgstr "Normal (efter innehåll)" - -#: includes/admin/views/acf-field-group/options.php:108 -msgid "High (after title)" -msgstr "Hög (efter rubrik)" - -#: includes/admin/views/acf-field-group/options.php:101 -msgid "Position" -msgstr "Position" - -#: includes/admin/views/acf-field-group/options.php:92 -msgid "Seamless (no metabox)" -msgstr "Sömnlöst (ingen metaruta)" - -#: includes/admin/views/acf-field-group/options.php:91 -msgid "Standard (WP metabox)" -msgstr "Standard (WP meta-ruta)" - -#: includes/admin/views/acf-field-group/options.php:84 -msgid "Style" -msgstr "Stil" - -#: includes/admin/views/acf-field-group/fields.php:55 -msgid "Type" -msgstr "Typ" - -#: includes/admin/post-types/admin-field-groups.php:117 -#: includes/admin/post-types/admin-post-types.php:136 -#: includes/admin/post-types/admin-taxonomies.php:136 -#: includes/admin/views/acf-field-group/fields.php:54 -msgid "Key" -msgstr "Nyckel" - -#. translators: Hidden accessibility text for the positional order number of -#. the field. -#: includes/admin/views/acf-field-group/fields.php:48 -msgid "Order" -msgstr "Sortering" - -#: includes/admin/views/acf-field-group/field.php:322 -msgid "Close Field" -msgstr "Stäng fält" - -#: includes/admin/views/acf-field-group/field.php:253 -msgid "id" -msgstr "id" - -#: includes/admin/views/acf-field-group/field.php:237 -msgid "class" -msgstr "klass" - -#: includes/admin/views/acf-field-group/field.php:279 -msgid "width" -msgstr "bredd" - -#: includes/admin/views/acf-field-group/field.php:273 -msgid "Wrapper Attributes" -msgstr "Omslagsattribut" - -#: includes/admin/views/acf-field-group/field.php:196 -msgid "Required" -msgstr "Obligatoriskt" - -#: includes/admin/views/acf-field-group/field.php:221 -msgid "Instructions for authors. Shown when submitting data" -msgstr "Instruktioner för författare. Visas när data skickas" - -#: includes/admin/views/acf-field-group/field.php:220 -msgid "Instructions" -msgstr "Instruktioner" - -#: includes/admin/views/acf-field-group/field.php:129 -msgid "Field Type" -msgstr "Fälttyp" - -#: includes/admin/views/acf-field-group/field.php:170 -msgid "Single word, no spaces. Underscores and dashes allowed" -msgstr "Enstaka ord, inga mellanslag. Understreck och bindestreck tillåtna" - -#: includes/admin/views/acf-field-group/field.php:169 -msgid "Field Name" -msgstr "Fältnamn" - -#: includes/admin/views/acf-field-group/field.php:157 -msgid "This is the name which will appear on the EDIT page" -msgstr "Detta är namnet som kommer att visas på REDIGERINGS-sidan" - -#: includes/admin/views/acf-field-group/field.php:156 -#: includes/admin/views/browse-fields-modal.php:59 -msgid "Field Label" -msgstr "Fältetikett" - -#: includes/admin/views/acf-field-group/field.php:81 -msgid "Delete" -msgstr "Ta bort" - -#: includes/admin/views/acf-field-group/field.php:81 -msgid "Delete field" -msgstr "Ta bort fält" - -#: includes/admin/views/acf-field-group/field.php:79 -msgid "Move" -msgstr "Flytta" - -#: includes/admin/views/acf-field-group/field.php:79 -msgid "Move field to another group" -msgstr "Flytta fältet till en annan grupp" - -#: includes/admin/views/acf-field-group/field.php:77 -msgid "Duplicate field" -msgstr "Duplicera fält" - -#: includes/admin/views/acf-field-group/field.php:73 -#: includes/admin/views/acf-field-group/field.php:76 -msgid "Edit field" -msgstr "Redigera fält" - -#: includes/admin/views/acf-field-group/field.php:69 -msgid "Drag to reorder" -msgstr "Dra för att sortera om" - -#: includes/admin/post-types/admin-field-group.php:103 -#: includes/admin/views/acf-field-group/location-group.php:3 -#: assets/build/js/acf-field-group.js:2347 -#: assets/build/js/acf-field-group.js:2763 -msgid "Show this field group if" -msgstr "Visa denna fältgrupp om" - -#: includes/admin/views/upgrade/upgrade.php:94 -#: includes/ajax/class-acf-ajax-upgrade.php:34 -msgid "No updates available." -msgstr "Inga uppdateringar tillgängliga." - -#: includes/admin/views/upgrade/upgrade.php:33 -msgid "Database upgrade complete. See what's new" -msgstr "Databasuppgradering slutförd. Se vad som är nytt" - -#: includes/admin/views/upgrade/upgrade.php:30 -msgid "Reading upgrade tasks..." -msgstr "Läser in uppgraderingsuppgifter …" - -#: includes/admin/views/upgrade/network.php:165 -#: includes/admin/views/upgrade/upgrade.php:65 -msgid "Upgrade failed." -msgstr "Uppgradering misslyckades." - -#: includes/admin/views/upgrade/network.php:162 -msgid "Upgrade complete." -msgstr "Uppgradering slutförd." - -#: includes/admin/views/upgrade/network.php:148 -#: includes/admin/views/upgrade/upgrade.php:31 -msgid "Upgrading data to version %s" -msgstr "Uppgraderar data till version %s" - -#: includes/admin/views/upgrade/network.php:121 -#: includes/admin/views/upgrade/notice.php:44 -msgid "" -"It is strongly recommended that you backup your database before proceeding. " -"Are you sure you wish to run the updater now?" -msgstr "" -"Det rekommenderas starkt att du säkerhetskopierar din databas innan du " -"fortsätter. Är du säker på att du vill köra uppdateraren nu?" - -#: includes/admin/views/upgrade/network.php:117 -msgid "Please select at least one site to upgrade." -msgstr "Välj minst en webbplats att uppgradera." - -#: includes/admin/views/upgrade/network.php:97 -msgid "" -"Database Upgrade complete. Return to network dashboard" -msgstr "" -"Uppgradering av databas slutförd. Tillbaka till nätverkets " -"adminpanel" - -#: includes/admin/views/upgrade/network.php:80 -msgid "Site is up to date" -msgstr "Webbplatsen är uppdaterad" - -#: includes/admin/views/upgrade/network.php:78 -msgid "Site requires database upgrade from %1$s to %2$s" -msgstr "Webbplatsen kräver databasuppgradering från %1$s till %2$s" - -#: includes/admin/views/upgrade/network.php:36 -#: includes/admin/views/upgrade/network.php:47 -msgid "Site" -msgstr "Webbplats" - -#: includes/admin/views/upgrade/network.php:26 -#: includes/admin/views/upgrade/network.php:27 -#: includes/admin/views/upgrade/network.php:96 -msgid "Upgrade Sites" -msgstr "Uppgradera webbplatser" - -#: includes/admin/views/upgrade/network.php:26 -msgid "" -"The following sites require a DB upgrade. Check the ones you want to update " -"and then click %s." -msgstr "" -"Följande webbplatser kräver en DB-uppgradering. Kontrollera de du vill " -"uppdatera och klicka sedan på %s." - -#: includes/admin/views/acf-field-group/conditional-logic.php:171 -#: includes/admin/views/acf-field-group/locations.php:38 -msgid "Add rule group" -msgstr "Lägg till regelgrupp" - -#: includes/admin/views/acf-field-group/locations.php:10 -msgid "" -"Create a set of rules to determine which edit screens will use these " -"advanced custom fields" -msgstr "" -"Skapa en uppsättning regler för att avgöra vilka redigeringsvyer som ska " -"använda dessa avancerade anpassade fält" - -#: includes/admin/views/acf-field-group/locations.php:9 -msgid "Rules" -msgstr "Regler" - -#: includes/admin/tools/class-acf-admin-tool-export.php:510 -msgid "Copied" -msgstr "Kopierad" - -#: includes/admin/tools/class-acf-admin-tool-export.php:486 -msgid "Copy to clipboard" -msgstr "Kopiera till urklipp" - -#: includes/admin/tools/class-acf-admin-tool-export.php:385 -msgid "" -"Select the items you would like to export and then select your export " -"method. Export As JSON to export to a .json file which you can then import " -"to another ACF installation. Generate PHP to export to PHP code which you " -"can place in your theme." -msgstr "" -"Välj vilka objekt du vill exportera och sedan exportmetod. ”Exportera som " -"JSON” för att exportera till en .json-fil som du sedan kan importera till " -"någon annan ACF-installation. ”Generera PHP” för att exportera PHP kod som " -"du kan lägga till i ditt tema." - -#: includes/admin/tools/class-acf-admin-tool-export.php:233 -msgid "Select Field Groups" -msgstr "Välj fältgrupper" - -#: includes/admin/tools/class-acf-admin-tool-export.php:96 -#: includes/admin/tools/class-acf-admin-tool-export.php:131 -msgid "No field groups selected" -msgstr "Inga fältgrupper valda" - -#: includes/admin/tools/class-acf-admin-tool-export.php:39 -#: includes/admin/tools/class-acf-admin-tool-export.php:393 -#: includes/admin/tools/class-acf-admin-tool-export.php:421 -msgid "Generate PHP" -msgstr "Generera PHP" - -#: includes/admin/tools/class-acf-admin-tool-export.php:35 -msgid "Export Field Groups" -msgstr "Exportera fältgrupper" - -#: includes/admin/tools/class-acf-admin-tool-import.php:177 -msgid "Import file empty" -msgstr "Importerad fil är tom" - -#: includes/admin/tools/class-acf-admin-tool-import.php:168 -msgid "Incorrect file type" -msgstr "Felaktig filtyp" - -#: includes/admin/tools/class-acf-admin-tool-import.php:163 -msgid "Error uploading file. Please try again" -msgstr "Fel vid uppladdning av fil. Försök igen" - -#: includes/admin/tools/class-acf-admin-tool-import.php:50 -msgid "" -"Select the Advanced Custom Fields JSON file you would like to import. When " -"you click the import button below, ACF will import the items in that file." -msgstr "" -"Välj den JSON-fil för Advanced Custom Fields som du vill importera. När du " -"klickar på importknappen nedan kommer ACF att importera objekten i den filen." - -#: includes/admin/tools/class-acf-admin-tool-import.php:27 -msgid "Import Field Groups" -msgstr "Importera fältgrupper" - -#: includes/admin/admin-internal-post-type-list.php:401 -msgid "Sync" -msgstr "Synkronisera" - -#: includes/admin/admin-internal-post-type-list.php:858 -msgid "Select %s" -msgstr "Välj %s" - -#: includes/admin/admin-internal-post-type-list.php:442 -#: includes/admin/admin-internal-post-type-list.php:474 -#: includes/admin/views/acf-field-group/field.php:77 -msgid "Duplicate" -msgstr "Duplicera" - -#: includes/admin/admin-internal-post-type-list.php:442 -msgid "Duplicate this item" -msgstr "Duplicera detta objekt" - -#: includes/admin/views/acf-post-type/advanced-settings.php:41 -msgid "Supports" -msgstr "Stöder" - -#: includes/admin/admin.php:261 includes/admin/views/browse-fields-modal.php:92 -msgid "Documentation" -msgstr "Dokumentation" - -#: includes/admin/post-types/admin-field-groups.php:116 -#: includes/admin/post-types/admin-post-types.php:135 -#: includes/admin/post-types/admin-taxonomies.php:135 -#: includes/admin/views/acf-field-group/options.php:249 -#: includes/admin/views/acf-post-type/advanced-settings.php:62 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:114 -#: includes/admin/views/upgrade/network.php:38 -#: includes/admin/views/upgrade/network.php:49 -msgid "Description" -msgstr "Beskrivning" - -#: includes/admin/admin-internal-post-type-list.php:398 -#: includes/admin/admin-internal-post-type-list.php:747 -msgid "Sync available" -msgstr "Synkronisering tillgänglig" - -#. translators: %s number of field groups synchronized -#: includes/admin/post-types/admin-field-groups.php:381 -msgid "Field group synchronized." -msgid_plural "%s field groups synchronized." -msgstr[0] "Fältgrupp synkroniserad." -msgstr[1] "%s fältgrupper synkroniserade." - -#. translators: %s number of field groups duplicated -#: includes/admin/post-types/admin-field-groups.php:374 -msgid "Field group duplicated." -msgid_plural "%s field groups duplicated." -msgstr[0] "Fältgrupp duplicerad." -msgstr[1] "%s fältgrupper duplicerade." - -#: includes/admin/admin-internal-post-type-list.php:137 -msgid "Active (%s)" -msgid_plural "Active (%s)" -msgstr[0] "Aktiv (%s)" -msgstr[1] "Aktiva (%s)" - -#: includes/admin/admin-upgrade.php:254 -msgid "Review sites & upgrade" -msgstr "Granska webbplatser och uppgradera" - -#: includes/admin/admin-upgrade.php:59 includes/admin/admin-upgrade.php:93 -#: includes/admin/admin-upgrade.php:94 includes/admin/admin-upgrade.php:230 -#: includes/admin/views/upgrade/network.php:24 -#: includes/admin/views/upgrade/upgrade.php:26 -msgid "Upgrade Database" -msgstr "Uppgradera databas" - -#: includes/admin/views/acf-field-group/options.php:175 -#: includes/admin/views/acf-post-type/advanced-settings.php:30 -msgid "Custom Fields" -msgstr "Anpassade fält" - -#: includes/admin/post-types/admin-field-group.php:616 -msgid "Move Field" -msgstr "Flytta fält" - -#: includes/admin/post-types/admin-field-group.php:605 -#: includes/admin/post-types/admin-field-group.php:609 -msgid "Please select the destination for this field" -msgstr "Välj destinationen för detta fält" - -#. translators: Confirmation message once a field has been moved to a different -#. field group. -#: includes/admin/post-types/admin-field-group.php:567 -msgid "The %1$s field can now be found in the %2$s field group" -msgstr "Fältet %1$s kan nu hittas i fältgruppen %2$s" - -#: includes/admin/post-types/admin-field-group.php:564 -msgid "Move Complete." -msgstr "Flytt färdig." - -#: includes/admin/views/acf-field-group/field.php:39 -#: includes/admin/views/acf-field-group/options.php:217 -#: includes/admin/views/acf-post-type/advanced-settings.php:78 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:130 -msgid "Active" -msgstr "Aktiv" - -#: includes/admin/post-types/admin-field-group.php:266 -msgid "Field Keys" -msgstr "Fältnycklar" - -#: includes/admin/post-types/admin-field-group.php:164 -#: includes/admin/tools/class-acf-admin-tool-export.php:342 -msgid "Settings" -msgstr "Inställningar" - -#: includes/admin/post-types/admin-field-groups.php:118 -msgid "Location" -msgstr "Plats" - -#: includes/admin/post-types/admin-field-group.php:104 -#: assets/build/js/acf-input.js:983 assets/build/js/acf-input.js:1075 -msgid "Null" -msgstr "Null" - -#: includes/admin/post-types/admin-field-group.php:101 -#: includes/class-acf-internal-post-type.php:730 -#: includes/post-types/class-acf-field-group.php:345 -#: assets/build/js/acf-field-group.js:1510 -#: assets/build/js/acf-field-group.js:1821 -msgid "copy" -msgstr "kopiera" - -#: includes/admin/post-types/admin-field-group.php:100 -#: assets/build/js/acf-field-group.js:623 -#: assets/build/js/acf-field-group.js:778 -msgid "(this field)" -msgstr "(detta fält)" - -#: includes/admin/post-types/admin-field-group.php:98 -#: assets/build/js/acf-input.js:918 assets/build/js/acf-input.js:943 -#: assets/build/js/acf-input.js:1002 assets/build/js/acf-input.js:1030 -msgid "Checked" -msgstr "Ikryssad" - -#: includes/admin/post-types/admin-field-group.php:94 -#: assets/build/js/acf-field-group.js:1615 -#: assets/build/js/acf-field-group.js:1933 -msgid "Move Custom Field" -msgstr "Flytta anpassat fält" - -#: includes/admin/post-types/admin-field-group.php:93 -#: assets/build/js/acf-field-group.js:649 -#: assets/build/js/acf-field-group.js:804 -msgid "No toggle fields available" -msgstr "Inga fält för att slå på/av är tillgängliga" - -#: includes/admin/post-types/admin-field-group.php:91 -msgid "Field group title is required" -msgstr "Rubrik för fältgrupp är obligatoriskt" - -#: includes/admin/post-types/admin-field-group.php:90 -#: assets/build/js/acf-field-group.js:1604 -#: assets/build/js/acf-field-group.js:1919 -msgid "This field cannot be moved until its changes have been saved" -msgstr "Detta fält kan inte flyttas innan dess ändringar har sparats" - -#: includes/admin/post-types/admin-field-group.php:89 -#: assets/build/js/acf-field-group.js:1414 -#: assets/build/js/acf-field-group.js:1716 -msgid "The string \"field_\" may not be used at the start of a field name" -msgstr "Strängen ”field_” får inte användas i början av ett fältnamn" - -#: includes/admin/post-types/admin-field-group.php:71 -msgid "Field group draft updated." -msgstr "Fältgruppsutkast uppdaterat." - -#: includes/admin/post-types/admin-field-group.php:70 -msgid "Field group scheduled for." -msgstr "Fältgrupp schemalagd för." - -#: includes/admin/post-types/admin-field-group.php:69 -msgid "Field group submitted." -msgstr "Fältgrupp skickad." - -#: includes/admin/post-types/admin-field-group.php:68 -msgid "Field group saved." -msgstr "Fältgrupp sparad." - -#: includes/admin/post-types/admin-field-group.php:67 -msgid "Field group published." -msgstr "Fältgrupp publicerad." - -#: includes/admin/post-types/admin-field-group.php:64 -msgid "Field group deleted." -msgstr "Fältgrupp borttagen." - -#: includes/admin/post-types/admin-field-group.php:62 -#: includes/admin/post-types/admin-field-group.php:63 -#: includes/admin/post-types/admin-field-group.php:65 -msgid "Field group updated." -msgstr "Fältgrupp uppdaterad." - -#: includes/admin/admin-tools.php:118 -#: includes/admin/views/global/navigation.php:246 -#: includes/admin/views/tools/tools.php:21 -msgid "Tools" -msgstr "Verktyg" - -#: includes/locations/abstract-acf-location.php:106 -msgid "is not equal to" -msgstr "är inte lika med" - -#: includes/locations/abstract-acf-location.php:105 -msgid "is equal to" -msgstr "är lika med" - -#: includes/locations.php:102 -msgid "Forms" -msgstr "Formulär" - -#: includes/admin/post-types/admin-post-type.php:127 includes/locations.php:100 -#: includes/locations/class-acf-location-page.php:22 -#: assets/build/js/acf-internal-post-type.js:175 -#: assets/build/js/acf-internal-post-type.js:249 -msgid "Page" -msgstr "Sida" - -#: includes/admin/post-types/admin-post-type.php:125 includes/locations.php:99 -#: includes/locations/class-acf-location-post.php:22 -#: assets/build/js/acf-internal-post-type.js:172 -#: assets/build/js/acf-internal-post-type.js:246 -msgid "Post" -msgstr "Inlägg" - -#: includes/fields.php:354 -msgid "Relational" -msgstr "Relationellt" - -#: includes/fields.php:353 -msgid "Choice" -msgstr "Val" - -#: includes/fields.php:351 -msgid "Basic" -msgstr "Grundläggande" - -#: includes/fields.php:320 -msgid "Unknown" -msgstr "Okänt" - -#: includes/fields.php:320 -msgid "Field type does not exist" -msgstr "Fälttyp finns inte" - -#: includes/forms/form-front.php:236 -msgid "Spam Detected" -msgstr "Skräppost upptäckt" - -#: includes/forms/form-front.php:107 -msgid "Post updated" -msgstr "Inlägg uppdaterat" - -#: includes/forms/form-front.php:106 -msgid "Update" -msgstr "Uppdatera" - -#: includes/forms/form-front.php:57 -msgid "Validate Email" -msgstr "Validera e-post" - -#: includes/fields.php:352 includes/forms/form-front.php:49 -msgid "Content" -msgstr "Innehåll" - -#: includes/admin/views/acf-post-type/advanced-settings.php:21 -#: includes/forms/form-front.php:40 -msgid "Title" -msgstr "Rubrik" - -#: includes/assets.php:372 includes/forms/form-comment.php:160 -#: assets/build/js/acf-input.js:7382 assets/build/js/acf-input.js:7968 -msgid "Edit field group" -msgstr "Redigera fältgrupp" - -#: includes/admin/post-types/admin-field-group.php:117 -#: assets/build/js/acf-input.js:1125 assets/build/js/acf-input.js:1230 -msgid "Selection is less than" -msgstr "Valet är mindre än" - -#: includes/admin/post-types/admin-field-group.php:116 -#: assets/build/js/acf-input.js:1106 assets/build/js/acf-input.js:1202 -msgid "Selection is greater than" -msgstr "Valet är större än" - -#: includes/admin/post-types/admin-field-group.php:115 -#: assets/build/js/acf-input.js:1075 assets/build/js/acf-input.js:1170 -msgid "Value is less than" -msgstr "Värde är mindre än" - -#: includes/admin/post-types/admin-field-group.php:114 -#: assets/build/js/acf-input.js:1045 assets/build/js/acf-input.js:1139 -msgid "Value is greater than" -msgstr "Värde är större än" - -#: includes/admin/post-types/admin-field-group.php:113 -#: assets/build/js/acf-input.js:888 assets/build/js/acf-input.js:960 -msgid "Value contains" -msgstr "Värde innehåller" - -#: includes/admin/post-types/admin-field-group.php:112 -#: assets/build/js/acf-input.js:862 assets/build/js/acf-input.js:926 -msgid "Value matches pattern" -msgstr "Värde matchar mönster" - -#: includes/admin/post-types/admin-field-group.php:111 -#: assets/build/js/acf-input.js:840 assets/build/js/acf-input.js:1023 -#: assets/build/js/acf-input.js:903 assets/build/js/acf-input.js:1116 -msgid "Value is not equal to" -msgstr "Värde är inte lika med" - -#: includes/admin/post-types/admin-field-group.php:110 -#: assets/build/js/acf-input.js:810 assets/build/js/acf-input.js:964 -#: assets/build/js/acf-input.js:864 assets/build/js/acf-input.js:1053 -msgid "Value is equal to" -msgstr "Värde är lika med" - -#: includes/admin/post-types/admin-field-group.php:109 -#: assets/build/js/acf-input.js:788 assets/build/js/acf-input.js:841 -msgid "Has no value" -msgstr "Har inget värde" - -#: includes/admin/post-types/admin-field-group.php:108 -#: assets/build/js/acf-input.js:758 assets/build/js/acf-input.js:783 -msgid "Has any value" -msgstr "Har något värde" - -#: includes/admin/admin-internal-post-type.php:345 -#: includes/admin/views/browse-fields-modal.php:62 includes/assets.php:353 -#: assets/build/js/acf.js:1564 assets/build/js/acf.js:1658 -msgid "Cancel" -msgstr "Avbryt" - -#: includes/assets.php:349 assets/build/js/acf.js:1738 -#: assets/build/js/acf.js:1855 -msgid "Are you sure?" -msgstr "Är du säker?" - -#: includes/assets.php:369 assets/build/js/acf-input.js:9442 -#: assets/build/js/acf-input.js:10294 -msgid "%d fields require attention" -msgstr "%d fält kräver din uppmärksamhet" - -#: includes/assets.php:368 assets/build/js/acf-input.js:9440 -#: assets/build/js/acf-input.js:10290 -msgid "1 field requires attention" -msgstr "1 fält kräver din uppmärksamhet" - -#: includes/assets.php:367 includes/validation.php:288 -#: includes/validation.php:298 assets/build/js/acf-input.js:9435 -#: assets/build/js/acf-input.js:10285 -msgid "Validation failed" -msgstr "Validering misslyckades" - -#: includes/assets.php:366 assets/build/js/acf-input.js:9603 -#: assets/build/js/acf-input.js:10473 -msgid "Validation successful" -msgstr "Validering lyckades" - -#: includes/media.php:54 assets/build/js/acf-input.js:7210 -#: assets/build/js/acf-input.js:7772 -msgid "Restricted" -msgstr "Begränsad" - -#: includes/media.php:53 assets/build/js/acf-input.js:7025 -#: assets/build/js/acf-input.js:7536 -msgid "Collapse Details" -msgstr "Minimera detaljer" - -#: includes/media.php:52 assets/build/js/acf-input.js:7025 -#: assets/build/js/acf-input.js:7533 -msgid "Expand Details" -msgstr "Expandera detaljer" - -#: includes/admin/views/acf-post-type/advanced-settings.php:465 -#: includes/media.php:51 assets/build/js/acf-input.js:6892 -#: assets/build/js/acf-input.js:7381 -msgid "Uploaded to this post" -msgstr "Uppladdat till detta inlägg" - -#: includes/media.php:50 assets/build/js/acf-input.js:6931 -#: assets/build/js/acf-input.js:7420 -msgctxt "verb" -msgid "Update" -msgstr "Uppdatera" - -#: includes/media.php:49 -msgctxt "verb" -msgid "Edit" -msgstr "Redigera" - -#: includes/assets.php:363 assets/build/js/acf-input.js:9212 -#: assets/build/js/acf-input.js:10056 -msgid "The changes you made will be lost if you navigate away from this page" -msgstr "" -"De ändringar du gjort kommer att gå förlorade om du navigerar bort från " -"denna sida" - -#: includes/api/api-helpers.php:3395 -msgid "File type must be %s." -msgstr "Filtyp måste vara %s." - -#: includes/admin/post-types/admin-field-group.php:102 -#: includes/admin/views/acf-field-group/conditional-logic.php:59 -#: includes/admin/views/acf-field-group/conditional-logic.php:169 -#: includes/admin/views/acf-field-group/location-group.php:3 -#: includes/admin/views/acf-field-group/locations.php:36 -#: includes/api/api-helpers.php:3391 assets/build/js/acf-field-group.js:771 -#: assets/build/js/acf-field-group.js:2385 -#: assets/build/js/acf-field-group.js:933 -#: assets/build/js/acf-field-group.js:2807 -msgid "or" -msgstr "eller" - -#: includes/api/api-helpers.php:3364 -msgid "File size must not exceed %s." -msgstr "Filstorleken får inte överskrida %s." - -#: includes/api/api-helpers.php:3359 -msgid "File size must be at least %s." -msgstr "Filstorlek måste vara lägst %s." - -#: includes/api/api-helpers.php:3344 -msgid "Image height must not exceed %dpx." -msgstr "Bildens höjd får inte överskrida %d px." - -#: includes/api/api-helpers.php:3339 -msgid "Image height must be at least %dpx." -msgstr "Bildens höjd måste vara åtminstone %d px." - -#: includes/api/api-helpers.php:3325 -msgid "Image width must not exceed %dpx." -msgstr "Bildens bredd får inte överskrida %d px." - -#: includes/api/api-helpers.php:3320 -msgid "Image width must be at least %dpx." -msgstr "Bildens bredd måste vara åtminstone %d px." - -#: includes/api/api-helpers.php:1561 includes/api/api-term.php:147 -msgid "(no title)" -msgstr "(ingen rubrik)" - -#: includes/api/api-helpers.php:853 -msgid "Full Size" -msgstr "Full storlek" - -#: includes/api/api-helpers.php:812 -msgid "Large" -msgstr "Stor" - -#: includes/api/api-helpers.php:811 -msgid "Medium" -msgstr "Medium" - -#: includes/api/api-helpers.php:810 -msgid "Thumbnail" -msgstr "Miniatyr" - -#: includes/acf-field-functions.php:854 -#: includes/admin/post-types/admin-field-group.php:99 -#: assets/build/js/acf-field-group.js:1077 -#: assets/build/js/acf-field-group.js:1260 -msgid "(no label)" -msgstr "(ingen etikett)" - -#: includes/fields/class-acf-field-textarea.php:145 -msgid "Sets the textarea height" -msgstr "Ställer in textområdets höjd" - -#: includes/fields/class-acf-field-textarea.php:144 -msgid "Rows" -msgstr "Rader" - -#: includes/fields/class-acf-field-textarea.php:25 -msgid "Text Area" -msgstr "Textområde" - -#: includes/fields/class-acf-field-checkbox.php:451 -msgid "Prepend an extra checkbox to toggle all choices" -msgstr "Förbered en extra kryssruta för att slå på/av alla val" - -#: includes/fields/class-acf-field-checkbox.php:413 -msgid "Save 'custom' values to the field's choices" -msgstr "Spara ”anpassade” värden till fältets val" - -#: includes/fields/class-acf-field-checkbox.php:402 -msgid "Allow 'custom' values to be added" -msgstr "Tillåt att ”anpassade” värden kan läggas till" - -#: includes/fields/class-acf-field-checkbox.php:38 -msgid "Add new choice" -msgstr "Lägg till nytt val" - -#: includes/fields/class-acf-field-checkbox.php:174 -msgid "Toggle All" -msgstr "Slå på/av alla" - -#: includes/fields/class-acf-field-page_link.php:506 -msgid "Allow Archives URLs" -msgstr "Tillåt arkiv-URL:er" - -#: includes/fields/class-acf-field-page_link.php:179 -msgid "Archives" -msgstr "Arkiv" - -#: includes/fields/class-acf-field-page_link.php:25 -msgid "Page Link" -msgstr "Sidlänk" - -#: includes/fields/class-acf-field-taxonomy.php:943 -#: includes/locations/class-acf-location-user-form.php:72 -msgid "Add" -msgstr "Lägg till" - -#: includes/admin/views/acf-field-group/fields.php:53 -#: includes/fields/class-acf-field-taxonomy.php:908 -msgid "Name" -msgstr "Namn" - -#: includes/fields/class-acf-field-taxonomy.php:892 -msgid "%s added" -msgstr "%s har lagts till" - -#: includes/fields/class-acf-field-taxonomy.php:856 -msgid "%s already exists" -msgstr "%s finns redan" - -#: includes/fields/class-acf-field-taxonomy.php:844 -msgid "User unable to add new %s" -msgstr "Användare kan inte lägga till ny %s" - -#: includes/fields/class-acf-field-taxonomy.php:742 -msgid "Term ID" -msgstr "Term-ID" - -#: includes/fields/class-acf-field-taxonomy.php:741 -msgid "Term Object" -msgstr "Term-objekt" - -#: includes/fields/class-acf-field-taxonomy.php:726 -msgid "Load value from posts terms" -msgstr "Hämta värde från inläggets termer" - -#: includes/fields/class-acf-field-taxonomy.php:725 -msgid "Load Terms" -msgstr "Ladda termer" - -#: includes/fields/class-acf-field-taxonomy.php:715 -msgid "Connect selected terms to the post" -msgstr "Koppla valda termer till inlägget" - -#: includes/fields/class-acf-field-taxonomy.php:714 -msgid "Save Terms" -msgstr "Spara termer" - -#: includes/fields/class-acf-field-taxonomy.php:704 -msgid "Allow new terms to be created whilst editing" -msgstr "Tillåt att nya termer skapas vid redigering" - -#: includes/fields/class-acf-field-taxonomy.php:703 -msgid "Create Terms" -msgstr "Skapa termer" - -#: includes/fields/class-acf-field-taxonomy.php:762 -msgid "Radio Buttons" -msgstr "Radioknappar" - -#: includes/fields/class-acf-field-taxonomy.php:761 -msgid "Single Value" -msgstr "Enskild värde" - -#: includes/fields/class-acf-field-taxonomy.php:759 -msgid "Multi Select" -msgstr "Flerval" - -#: includes/fields/class-acf-field-checkbox.php:25 -#: includes/fields/class-acf-field-taxonomy.php:758 -msgid "Checkbox" -msgstr "Kryssruta" - -#: includes/fields/class-acf-field-taxonomy.php:757 -msgid "Multiple Values" -msgstr "Flera värden" - -#: includes/fields/class-acf-field-taxonomy.php:752 -msgid "Select the appearance of this field" -msgstr "Välj utseendet på detta fält" - -#: includes/fields/class-acf-field-taxonomy.php:751 -msgid "Appearance" -msgstr "Utseende" - -#: includes/fields/class-acf-field-taxonomy.php:693 -msgid "Select the taxonomy to be displayed" -msgstr "Välj taxonomin som ska visas" - -#: includes/fields/class-acf-field-taxonomy.php:654 -msgctxt "No Terms" -msgid "No %s" -msgstr "Inga %s" - -#: includes/fields/class-acf-field-number.php:266 -msgid "Value must be equal to or lower than %d" -msgstr "Värdet måste vara lika med eller lägre än %d" - -#: includes/fields/class-acf-field-number.php:259 -msgid "Value must be equal to or higher than %d" -msgstr "Värdet måste vara lika med eller högre än %d" - -#: includes/fields/class-acf-field-number.php:244 -msgid "Value must be a number" -msgstr "Värdet måste vara ett nummer" - -#: includes/fields/class-acf-field-number.php:25 -msgid "Number" -msgstr "Nummer" - -#: includes/fields/class-acf-field-radio.php:264 -msgid "Save 'other' values to the field's choices" -msgstr "Spara ”andra” värden i fältets val" - -#: includes/fields/class-acf-field-radio.php:253 -msgid "Add 'other' choice to allow for custom values" -msgstr "Lägg till valet ”annat” för att tillåta anpassade värden" - -#: includes/admin/views/global/navigation.php:196 -msgid "Other" -msgstr "Annat" - -#: includes/fields/class-acf-field-radio.php:25 -msgid "Radio Button" -msgstr "Alternativknapp" - -#: includes/fields/class-acf-field-accordion.php:107 -msgid "" -"Define an endpoint for the previous accordion to stop. This accordion will " -"not be visible." -msgstr "" -"Definiera en ändpunkt för föregående dragspel att stoppa. Detta dragspel " -"kommer inte att vara synligt." - -#: includes/fields/class-acf-field-accordion.php:96 -msgid "Allow this accordion to open without closing others." -msgstr "Tillåt detta dragspel öppna utan att stänga andra." - -#: includes/fields/class-acf-field-accordion.php:95 -msgid "Multi-Expand" -msgstr "Multi-expandera" - -#: includes/fields/class-acf-field-accordion.php:85 -msgid "Display this accordion as open on page load." -msgstr "Visa detta dragspel som öppet på sidladdning." - -#: includes/fields/class-acf-field-accordion.php:84 -msgid "Open" -msgstr "Öppen" - -#: includes/fields/class-acf-field-accordion.php:25 -msgid "Accordion" -msgstr "Dragspel" - -#: includes/fields/class-acf-field-file.php:267 -#: includes/fields/class-acf-field-file.php:279 -msgid "Restrict which files can be uploaded" -msgstr "Begränsa vilka filer som kan laddas upp" - -#: includes/fields/class-acf-field-file.php:220 -msgid "File ID" -msgstr "Fil-ID" - -#: includes/fields/class-acf-field-file.php:219 -msgid "File URL" -msgstr "Fil-URL" - -#: includes/fields/class-acf-field-file.php:218 -msgid "File Array" -msgstr "Fil-array" - -#: includes/fields/class-acf-field-file.php:186 -msgid "Add File" -msgstr "Lägg till fil" - -#: includes/admin/tools/class-acf-admin-tool-import.php:156 -#: includes/fields/class-acf-field-file.php:186 -msgid "No file selected" -msgstr "Ingen fil vald" - -#: includes/fields/class-acf-field-file.php:150 -msgid "File name" -msgstr "Filnamn" - -#: includes/fields/class-acf-field-file.php:63 -#: assets/build/js/acf-input.js:2474 assets/build/js/acf-input.js:2625 -msgid "Update File" -msgstr "Uppdatera fil" - -#: includes/fields/class-acf-field-file.php:62 -#: assets/build/js/acf-input.js:2473 assets/build/js/acf-input.js:2624 -msgid "Edit File" -msgstr "Redigera fil" - -#: includes/admin/tools/class-acf-admin-tool-import.php:58 -#: includes/fields/class-acf-field-file.php:61 -#: assets/build/js/acf-input.js:2447 assets/build/js/acf-input.js:2597 -msgid "Select File" -msgstr "Välj fil" - -#: includes/fields/class-acf-field-file.php:25 -msgid "File" -msgstr "Fil" - -#: includes/fields/class-acf-field-password.php:25 -msgid "Password" -msgstr "Lösenord" - -#: includes/fields/class-acf-field-select.php:392 -msgid "Specify the value returned" -msgstr "Specificera värdet att returnera" - -#: includes/fields/class-acf-field-select.php:461 -msgid "Use AJAX to lazy load choices?" -msgstr "Använda AJAX för att ladda alternativ efter att sidan laddats?" - -#: includes/fields/class-acf-field-checkbox.php:362 -#: includes/fields/class-acf-field-select.php:381 -msgid "Enter each default value on a new line" -msgstr "Ange varje standardvärde på en ny rad" - -#: includes/fields/class-acf-field-select.php:252 includes/media.php:48 -#: assets/build/js/acf-input.js:6790 assets/build/js/acf-input.js:7266 -msgctxt "verb" -msgid "Select" -msgstr "Välj" - -#: includes/fields/class-acf-field-select.php:121 -msgctxt "Select2 JS load_fail" -msgid "Loading failed" -msgstr "Laddning misslyckades" - -#: includes/fields/class-acf-field-select.php:120 -msgctxt "Select2 JS searching" -msgid "Searching…" -msgstr "Söker…" - -#: includes/fields/class-acf-field-select.php:119 -msgctxt "Select2 JS load_more" -msgid "Loading more results…" -msgstr "Laddar in fler resultat …" - -#: includes/fields/class-acf-field-select.php:118 -msgctxt "Select2 JS selection_too_long_n" -msgid "You can only select %d items" -msgstr "Du kan endast välja %d objekt" - -#: includes/fields/class-acf-field-select.php:117 -msgctxt "Select2 JS selection_too_long_1" -msgid "You can only select 1 item" -msgstr "Du kan endast välja 1 objekt" - -#: includes/fields/class-acf-field-select.php:116 -msgctxt "Select2 JS input_too_long_n" -msgid "Please delete %d characters" -msgstr "Ta bort %d tecken" - -#: includes/fields/class-acf-field-select.php:115 -msgctxt "Select2 JS input_too_long_1" -msgid "Please delete 1 character" -msgstr "Ta bort 1 tecken" - -#: includes/fields/class-acf-field-select.php:114 -msgctxt "Select2 JS input_too_short_n" -msgid "Please enter %d or more characters" -msgstr "Ange %d eller fler tecken" - -#: includes/fields/class-acf-field-select.php:113 -msgctxt "Select2 JS input_too_short_1" -msgid "Please enter 1 or more characters" -msgstr "Ange 1 eller fler tecken" - -#: includes/fields/class-acf-field-select.php:112 -msgctxt "Select2 JS matches_0" -msgid "No matches found" -msgstr "Inga matchningar hittades" - -#: includes/fields/class-acf-field-select.php:111 -msgctxt "Select2 JS matches_n" -msgid "%d results are available, use up and down arrow keys to navigate." -msgstr "" -"%d resultat är tillgängliga, använd tangenterna med uppåt- och nedåtpil för " -"att navigera." - -#: includes/fields/class-acf-field-select.php:110 -msgctxt "Select2 JS matches_1" -msgid "One result is available, press enter to select it." -msgstr "" -"Ett resultat är tillgängligt, tryck på returtangenten för att välja det." - -#: includes/fields/class-acf-field-select.php:25 -#: includes/fields/class-acf-field-taxonomy.php:763 -msgctxt "noun" -msgid "Select" -msgstr "Välj" - -#: includes/fields/class-acf-field-user.php:73 -msgid "User ID" -msgstr "Användar-ID" - -#: includes/fields/class-acf-field-user.php:72 -msgid "User Object" -msgstr "Användarobjekt" - -#: includes/fields/class-acf-field-user.php:71 -msgid "User Array" -msgstr "Användar-array" - -#: includes/fields/class-acf-field-user.php:59 -msgid "All user roles" -msgstr "Alla användarroller" - -#: includes/fields/class-acf-field-user.php:51 -msgid "Filter by Role" -msgstr "Filtrera efter roll" - -#: includes/fields/class-acf-field-user.php:15 includes/locations.php:101 -msgid "User" -msgstr "Användare" - -#: includes/fields/class-acf-field-separator.php:25 -msgid "Separator" -msgstr "Avgränsare" - -#: includes/fields/class-acf-field-color_picker.php:75 -msgid "Select Color" -msgstr "Välj färg" - -#: includes/admin/post-types/admin-post-type.php:129 -#: includes/admin/post-types/admin-taxonomy.php:131 -#: includes/fields/class-acf-field-color_picker.php:73 -#: assets/build/js/acf-internal-post-type.js:72 -#: assets/build/js/acf-internal-post-type.js:86 -msgid "Default" -msgstr "Standard" - -#: includes/admin/views/acf-post-type/advanced-settings.php:89 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:141 -#: includes/fields/class-acf-field-color_picker.php:71 -msgid "Clear" -msgstr "Rensa" - -#: includes/fields/class-acf-field-color_picker.php:25 -msgid "Color Picker" -msgstr "Färgväljare" - -#: includes/fields/class-acf-field-date_time_picker.php:88 -msgctxt "Date Time Picker JS pmTextShort" -msgid "P" -msgstr "P" - -#: includes/fields/class-acf-field-date_time_picker.php:87 -msgctxt "Date Time Picker JS pmText" -msgid "PM" -msgstr "PM" - -#: includes/fields/class-acf-field-date_time_picker.php:84 -msgctxt "Date Time Picker JS amTextShort" -msgid "A" -msgstr "A" - -#: includes/fields/class-acf-field-date_time_picker.php:83 -msgctxt "Date Time Picker JS amText" -msgid "AM" -msgstr "AM" - -#: includes/fields/class-acf-field-date_time_picker.php:81 -msgctxt "Date Time Picker JS selectText" -msgid "Select" -msgstr "Välj" - -#: includes/fields/class-acf-field-date_time_picker.php:80 -msgctxt "Date Time Picker JS closeText" -msgid "Done" -msgstr "Klart" - -#: includes/fields/class-acf-field-date_time_picker.php:79 -msgctxt "Date Time Picker JS currentText" -msgid "Now" -msgstr "Nu" - -#: includes/fields/class-acf-field-date_time_picker.php:78 -msgctxt "Date Time Picker JS timezoneText" -msgid "Time Zone" -msgstr "Tidszon" - -#: includes/fields/class-acf-field-date_time_picker.php:77 -msgctxt "Date Time Picker JS microsecText" -msgid "Microsecond" -msgstr "Mikrosekund" - -#: includes/fields/class-acf-field-date_time_picker.php:76 -msgctxt "Date Time Picker JS millisecText" -msgid "Millisecond" -msgstr "Millisekund" - -#: includes/fields/class-acf-field-date_time_picker.php:75 -msgctxt "Date Time Picker JS secondText" -msgid "Second" -msgstr "Sekund" - -#: includes/fields/class-acf-field-date_time_picker.php:74 -msgctxt "Date Time Picker JS minuteText" -msgid "Minute" -msgstr "Minut" - -#: includes/fields/class-acf-field-date_time_picker.php:73 -msgctxt "Date Time Picker JS hourText" -msgid "Hour" -msgstr "Timme" - -#: includes/fields/class-acf-field-date_time_picker.php:72 -msgctxt "Date Time Picker JS timeText" -msgid "Time" -msgstr "Tid" - -#: includes/fields/class-acf-field-date_time_picker.php:71 -msgctxt "Date Time Picker JS timeOnlyTitle" -msgid "Choose Time" -msgstr "Välj tid" - -#: includes/fields/class-acf-field-date_time_picker.php:25 -msgid "Date Time Picker" -msgstr "Datum/tidväljare" - -#: includes/fields/class-acf-field-accordion.php:106 -msgid "Endpoint" -msgstr "Ändpunkt" - -#: includes/admin/views/acf-field-group/options.php:130 -#: includes/fields/class-acf-field-tab.php:115 -msgid "Left aligned" -msgstr "Vänsterjusterad" - -#: includes/admin/views/acf-field-group/options.php:129 -#: includes/fields/class-acf-field-tab.php:114 -msgid "Top aligned" -msgstr "Toppjusterad" - -#: includes/fields/class-acf-field-tab.php:110 -msgid "Placement" -msgstr "Placering" - -#: includes/fields/class-acf-field-tab.php:26 -msgid "Tab" -msgstr "Flik" - -#: includes/fields/class-acf-field-url.php:162 -msgid "Value must be a valid URL" -msgstr "Värde måste vara en giltig URL" - -#: includes/fields/class-acf-field-link.php:177 -msgid "Link URL" -msgstr "Länk-URL" - -#: includes/fields/class-acf-field-link.php:176 -msgid "Link Array" -msgstr "Länk-array" - -#: includes/fields/class-acf-field-link.php:145 -msgid "Opens in a new window/tab" -msgstr "Öppnas i ett nytt fönster/flik" - -#: includes/fields/class-acf-field-link.php:140 -msgid "Select Link" -msgstr "Välj länk" - -#: includes/fields/class-acf-field-link.php:25 -msgid "Link" -msgstr "Länk" - -#: includes/fields/class-acf-field-email.php:25 -msgid "Email" -msgstr "E-post" - -#: includes/fields/class-acf-field-number.php:188 -#: includes/fields/class-acf-field-range.php:217 -msgid "Step Size" -msgstr "Stegstorlek" - -#: includes/fields/class-acf-field-number.php:158 -#: includes/fields/class-acf-field-range.php:195 -msgid "Maximum Value" -msgstr "Maximalt värde" - -#: includes/fields/class-acf-field-number.php:148 -#: includes/fields/class-acf-field-range.php:184 -msgid "Minimum Value" -msgstr "Minsta värde" - -#: includes/fields/class-acf-field-range.php:25 -msgid "Range" -msgstr "Intervall" - -#: includes/fields/class-acf-field-button-group.php:175 -#: includes/fields/class-acf-field-checkbox.php:379 -#: includes/fields/class-acf-field-radio.php:220 -#: includes/fields/class-acf-field-select.php:399 -msgid "Both (Array)" -msgstr "Båda (Array)" - -#: includes/admin/views/acf-field-group/fields.php:52 -#: includes/fields/class-acf-field-button-group.php:174 -#: includes/fields/class-acf-field-checkbox.php:378 -#: includes/fields/class-acf-field-radio.php:219 -#: includes/fields/class-acf-field-select.php:398 -msgid "Label" -msgstr "Etikett" - -#: includes/fields/class-acf-field-button-group.php:173 -#: includes/fields/class-acf-field-checkbox.php:377 -#: includes/fields/class-acf-field-radio.php:218 -#: includes/fields/class-acf-field-select.php:397 -msgid "Value" -msgstr "Värde" - -#: includes/fields/class-acf-field-button-group.php:222 -#: includes/fields/class-acf-field-checkbox.php:441 -#: includes/fields/class-acf-field-radio.php:292 -msgid "Vertical" -msgstr "Vertikal" - -#: includes/fields/class-acf-field-button-group.php:221 -#: includes/fields/class-acf-field-checkbox.php:442 -#: includes/fields/class-acf-field-radio.php:293 -msgid "Horizontal" -msgstr "Horisontell" - -#: includes/fields/class-acf-field-button-group.php:148 -#: includes/fields/class-acf-field-checkbox.php:352 -#: includes/fields/class-acf-field-radio.php:193 -#: includes/fields/class-acf-field-select.php:370 -msgid "red : Red" -msgstr "röd : Röd" - -#: includes/fields/class-acf-field-button-group.php:148 -#: includes/fields/class-acf-field-checkbox.php:352 -#: includes/fields/class-acf-field-radio.php:193 -#: includes/fields/class-acf-field-select.php:370 -msgid "For more control, you may specify both a value and label like this:" -msgstr "" -"För mer kontroll kan du specificera både ett värde och en etikett så här:" - -#: includes/fields/class-acf-field-button-group.php:148 -#: includes/fields/class-acf-field-checkbox.php:352 -#: includes/fields/class-acf-field-radio.php:193 -#: includes/fields/class-acf-field-select.php:370 -msgid "Enter each choice on a new line." -msgstr "Ange varje val på en ny rad." - -#: includes/fields/class-acf-field-button-group.php:147 -#: includes/fields/class-acf-field-checkbox.php:351 -#: includes/fields/class-acf-field-radio.php:192 -#: includes/fields/class-acf-field-select.php:369 -msgid "Choices" -msgstr "Val" - -#: includes/fields/class-acf-field-button-group.php:24 -msgid "Button Group" -msgstr "Knappgrupp" - -#: includes/fields/class-acf-field-button-group.php:194 -#: includes/fields/class-acf-field-page_link.php:538 -#: includes/fields/class-acf-field-post_object.php:448 -#: includes/fields/class-acf-field-radio.php:238 -#: includes/fields/class-acf-field-select.php:429 -#: includes/fields/class-acf-field-taxonomy.php:772 -#: includes/fields/class-acf-field-user.php:103 -msgid "Allow Null" -msgstr "Tillåt värdet ”null”" - -#: includes/fields/class-acf-field-page_link.php:263 -#: includes/fields/class-acf-field-post_object.php:257 -#: includes/fields/class-acf-field-taxonomy.php:930 -msgid "Parent" -msgstr "Överordnad" - -#: includes/fields/class-acf-field-wysiwyg.php:390 -msgid "TinyMCE will not be initialized until field is clicked" -msgstr "TinyMCE kommer inte att initialiseras förrän fältet är klickat" - -#: includes/fields/class-acf-field-wysiwyg.php:389 -msgid "Delay Initialization" -msgstr "Fördröjd initialisering" - -#: includes/fields/class-acf-field-wysiwyg.php:378 -msgid "Show Media Upload Buttons" -msgstr "Visa knappar för mediauppladdning" - -#: includes/fields/class-acf-field-wysiwyg.php:362 -msgid "Toolbar" -msgstr "Verktygsfält" - -#: includes/fields/class-acf-field-wysiwyg.php:354 -msgid "Text Only" -msgstr "Endast text" - -#: includes/fields/class-acf-field-wysiwyg.php:353 -msgid "Visual Only" -msgstr "Endast visuell" - -#: includes/fields/class-acf-field-wysiwyg.php:352 -msgid "Visual & Text" -msgstr "Visuell och text" - -#: includes/fields/class-acf-field-wysiwyg.php:347 -msgid "Tabs" -msgstr "Flikar" - -#: includes/fields/class-acf-field-wysiwyg.php:285 -msgid "Click to initialize TinyMCE" -msgstr "Klicka för att initialisera TinyMCE" - -#: includes/fields/class-acf-field-wysiwyg.php:279 -msgctxt "Name for the Text editor tab (formerly HTML)" -msgid "Text" -msgstr "Text" - -#: includes/fields/class-acf-field-wysiwyg.php:278 -msgid "Visual" -msgstr "Visuellt" - -#: includes/fields/class-acf-field-text.php:189 -#: includes/fields/class-acf-field-textarea.php:236 -msgid "Value must not exceed %d characters" -msgstr "Värde får inte överstiga %d tecken" - -#: includes/fields/class-acf-field-text.php:124 -#: includes/fields/class-acf-field-textarea.php:124 -msgid "Leave blank for no limit" -msgstr "Lämna fältet tomt för att inte sätta någon begränsning" - -#: includes/fields/class-acf-field-text.php:123 -#: includes/fields/class-acf-field-textarea.php:123 -msgid "Character Limit" -msgstr "Teckenbegränsning" - -#: includes/fields/class-acf-field-email.php:158 -#: includes/fields/class-acf-field-number.php:209 -#: includes/fields/class-acf-field-password.php:105 -#: includes/fields/class-acf-field-range.php:239 -#: includes/fields/class-acf-field-text.php:164 -msgid "Appears after the input" -msgstr "Visas efter inmatningen" - -#: includes/fields/class-acf-field-email.php:157 -#: includes/fields/class-acf-field-number.php:208 -#: includes/fields/class-acf-field-password.php:104 -#: includes/fields/class-acf-field-range.php:238 -#: includes/fields/class-acf-field-text.php:163 -msgid "Append" -msgstr "Lägg till efter" - -#: includes/fields/class-acf-field-email.php:148 -#: includes/fields/class-acf-field-number.php:199 -#: includes/fields/class-acf-field-password.php:95 -#: includes/fields/class-acf-field-range.php:229 -#: includes/fields/class-acf-field-text.php:154 -msgid "Appears before the input" -msgstr "Visas före inmatningen" - -#: includes/fields/class-acf-field-email.php:147 -#: includes/fields/class-acf-field-number.php:198 -#: includes/fields/class-acf-field-password.php:94 -#: includes/fields/class-acf-field-range.php:228 -#: includes/fields/class-acf-field-text.php:153 -msgid "Prepend" -msgstr "Lägg till före" - -#: includes/fields/class-acf-field-email.php:138 -#: includes/fields/class-acf-field-number.php:179 -#: includes/fields/class-acf-field-password.php:85 -#: includes/fields/class-acf-field-text.php:144 -#: includes/fields/class-acf-field-textarea.php:156 -#: includes/fields/class-acf-field-url.php:122 -msgid "Appears within the input" -msgstr "Visas inuti inmatningen" - -#: includes/fields/class-acf-field-email.php:137 -#: includes/fields/class-acf-field-number.php:178 -#: includes/fields/class-acf-field-password.php:84 -#: includes/fields/class-acf-field-text.php:143 -#: includes/fields/class-acf-field-textarea.php:155 -#: includes/fields/class-acf-field-url.php:121 -msgid "Placeholder Text" -msgstr "Platshållartext" - -#: includes/fields/class-acf-field-button-group.php:158 -#: includes/fields/class-acf-field-email.php:118 -#: includes/fields/class-acf-field-number.php:129 -#: includes/fields/class-acf-field-radio.php:203 -#: includes/fields/class-acf-field-range.php:165 -#: includes/fields/class-acf-field-text.php:104 -#: includes/fields/class-acf-field-textarea.php:104 -#: includes/fields/class-acf-field-url.php:102 -#: includes/fields/class-acf-field-wysiwyg.php:312 -msgid "Appears when creating a new post" -msgstr "Visas när ett nytt inlägg skapas" - -#: includes/fields/class-acf-field-text.php:25 -msgid "Text" -msgstr "Text" - -#: includes/fields/class-acf-field-relationship.php:794 -msgid "%1$s requires at least %2$s selection" -msgid_plural "%1$s requires at least %2$s selections" -msgstr[0] "%1$s kräver minst %2$s val" -msgstr[1] "%1$s kräver minst %2$s val" - -#: includes/fields/class-acf-field-post_object.php:417 -#: includes/fields/class-acf-field-relationship.php:644 -msgid "Post ID" -msgstr "Inläggs-ID" - -#: includes/fields/class-acf-field-post_object.php:17 -#: includes/fields/class-acf-field-post_object.php:416 -#: includes/fields/class-acf-field-relationship.php:643 -msgid "Post Object" -msgstr "Inläggsobjekt" - -#: includes/fields/class-acf-field-relationship.php:676 -msgid "Maximum Posts" -msgstr "Maximalt antal inlägg" - -#: includes/fields/class-acf-field-relationship.php:666 -msgid "Minimum Posts" -msgstr "Minsta antal inlägg" - -#: includes/admin/views/acf-field-group/options.php:183 -#: includes/admin/views/acf-post-type/advanced-settings.php:29 -#: includes/fields/class-acf-field-relationship.php:701 -msgid "Featured Image" -msgstr "Utvald bild" - -#: includes/fields/class-acf-field-relationship.php:697 -msgid "Selected elements will be displayed in each result" -msgstr "Valda element kommer att visas i varje resultat" - -#: includes/fields/class-acf-field-relationship.php:696 -msgid "Elements" -msgstr "Element" - -#: includes/fields/class-acf-field-relationship.php:630 -#: includes/fields/class-acf-field-taxonomy.php:20 -#: includes/fields/class-acf-field-taxonomy.php:692 -#: includes/locations/class-acf-location-taxonomy.php:22 -msgid "Taxonomy" -msgstr "Taxonomi" - -#: includes/fields/class-acf-field-relationship.php:629 -#: includes/locations/class-acf-location-post-type.php:22 -#: includes/post-types/class-acf-post-type.php:92 -msgid "Post Type" -msgstr "Inläggstyp" - -#: includes/fields/class-acf-field-relationship.php:623 -msgid "Filters" -msgstr "Filter" - -#: includes/fields/class-acf-field-page_link.php:499 -#: includes/fields/class-acf-field-post_object.php:404 -#: includes/fields/class-acf-field-relationship.php:616 -msgid "All taxonomies" -msgstr "Alla taxonomier" - -#: includes/fields/class-acf-field-page_link.php:491 -#: includes/fields/class-acf-field-post_object.php:396 -#: includes/fields/class-acf-field-relationship.php:608 -msgid "Filter by Taxonomy" -msgstr "Filtrera efter taxonomi" - -#: includes/fields/class-acf-field-page_link.php:469 -#: includes/fields/class-acf-field-post_object.php:374 -#: includes/fields/class-acf-field-relationship.php:586 -msgid "All post types" -msgstr "Alla inläggstyper" - -#: includes/fields/class-acf-field-page_link.php:461 -#: includes/fields/class-acf-field-post_object.php:366 -#: includes/fields/class-acf-field-relationship.php:578 -msgid "Filter by Post Type" -msgstr "Filtrera efter inläggstyp" - -#: includes/fields/class-acf-field-relationship.php:476 -msgid "Search..." -msgstr "Sök …" - -#: includes/fields/class-acf-field-relationship.php:406 -msgid "Select taxonomy" -msgstr "Välj taxonomi" - -#: includes/fields/class-acf-field-relationship.php:397 -msgid "Select post type" -msgstr "Välj inläggstyp" - -#: includes/fields/class-acf-field-relationship.php:61 -#: assets/build/js/acf-input.js:3930 assets/build/js/acf-input.js:4214 -msgid "No matches found" -msgstr "Inga matchningar hittades" - -#: includes/fields/class-acf-field-relationship.php:60 -#: assets/build/js/acf-input.js:3913 assets/build/js/acf-input.js:4193 -msgid "Loading" -msgstr "Laddar in" - -#: includes/fields/class-acf-field-relationship.php:59 -#: assets/build/js/acf-input.js:3818 assets/build/js/acf-input.js:4084 -msgid "Maximum values reached ( {max} values )" -msgstr "Maximalt antal värden har nåtts ({max} värden)" - -#: includes/fields/class-acf-field-relationship.php:17 -msgid "Relationship" -msgstr "Relationer" - -#: includes/fields/class-acf-field-file.php:291 -#: includes/fields/class-acf-field-image.php:317 -msgid "Comma separated list. Leave blank for all types" -msgstr "Kommaseparerad lista. Lämna tomt för alla typer" - -#: includes/fields/class-acf-field-file.php:290 -#: includes/fields/class-acf-field-image.php:316 -msgid "Allowed File Types" -msgstr "Tillåtna filtyper" - -#: includes/fields/class-acf-field-file.php:278 -#: includes/fields/class-acf-field-image.php:280 -msgid "Maximum" -msgstr "Maximalt" - -#: includes/fields/class-acf-field-file.php:154 -#: includes/fields/class-acf-field-file.php:270 -#: includes/fields/class-acf-field-file.php:282 -#: includes/fields/class-acf-field-image.php:271 -#: includes/fields/class-acf-field-image.php:307 -msgid "File size" -msgstr "Filstorlek" - -#: includes/fields/class-acf-field-image.php:245 -#: includes/fields/class-acf-field-image.php:281 -msgid "Restrict which images can be uploaded" -msgstr "Begränsa vilka bilder som kan laddas upp" - -#: includes/fields/class-acf-field-file.php:266 -#: includes/fields/class-acf-field-image.php:244 -msgid "Minimum" -msgstr "Minimum" - -#: includes/fields/class-acf-field-file.php:235 -#: includes/fields/class-acf-field-image.php:210 -msgid "Uploaded to post" -msgstr "Uppladdat till inlägg" - -#: includes/fields/class-acf-field-file.php:234 -#: includes/fields/class-acf-field-image.php:209 -#: includes/locations/class-acf-location-attachment.php:73 -#: includes/locations/class-acf-location-comment.php:61 -#: includes/locations/class-acf-location-nav-menu.php:74 -#: includes/locations/class-acf-location-taxonomy.php:63 -#: includes/locations/class-acf-location-user-form.php:71 -#: includes/locations/class-acf-location-user-role.php:78 -#: includes/locations/class-acf-location-widget.php:65 -msgid "All" -msgstr "Alla" - -#: includes/fields/class-acf-field-file.php:229 -#: includes/fields/class-acf-field-image.php:204 -msgid "Limit the media library choice" -msgstr "Begränsa mediabiblioteksvalet" - -#: includes/fields/class-acf-field-file.php:228 -#: includes/fields/class-acf-field-image.php:203 -msgid "Library" -msgstr "Bibliotek" - -#: includes/fields/class-acf-field-image.php:336 -msgid "Preview Size" -msgstr "Förhandsgranska storlek" - -#: includes/fields/class-acf-field-image.php:195 -msgid "Image ID" -msgstr "Bild-ID" - -#: includes/fields/class-acf-field-image.php:194 -msgid "Image URL" -msgstr "Bild-URL" - -#: includes/fields/class-acf-field-image.php:193 -msgid "Image Array" -msgstr "Bild-array" - -#: includes/fields/class-acf-field-button-group.php:168 -#: includes/fields/class-acf-field-checkbox.php:372 -#: includes/fields/class-acf-field-file.php:213 -#: includes/fields/class-acf-field-link.php:171 -#: includes/fields/class-acf-field-radio.php:213 -msgid "Specify the returned value on front end" -msgstr "Specificera returvärdet på front-end" - -#: includes/fields/class-acf-field-button-group.php:167 -#: includes/fields/class-acf-field-checkbox.php:371 -#: includes/fields/class-acf-field-file.php:212 -#: includes/fields/class-acf-field-link.php:170 -#: includes/fields/class-acf-field-radio.php:212 -#: includes/fields/class-acf-field-taxonomy.php:736 -msgid "Return Value" -msgstr "Returvärde" - -#: includes/fields/class-acf-field-image.php:162 -msgid "Add Image" -msgstr "Lägg till bild" - -#: includes/fields/class-acf-field-image.php:162 -msgid "No image selected" -msgstr "Ingen bild vald" - -#: includes/assets.php:352 includes/fields/class-acf-field-file.php:162 -#: includes/fields/class-acf-field-image.php:142 -#: includes/fields/class-acf-field-link.php:145 assets/build/js/acf.js:1563 -#: assets/build/js/acf.js:1657 -msgid "Remove" -msgstr "Ta bort" - -#: includes/admin/views/acf-field-group/field.php:76 -#: includes/fields/class-acf-field-file.php:160 -#: includes/fields/class-acf-field-image.php:140 -#: includes/fields/class-acf-field-link.php:145 -msgid "Edit" -msgstr "Redigera" - -#: includes/fields/class-acf-field-image.php:70 includes/media.php:55 -#: assets/build/js/acf-input.js:6837 assets/build/js/acf-input.js:7320 -msgid "All images" -msgstr "Alla bilder" - -#: includes/fields/class-acf-field-image.php:69 -#: assets/build/js/acf-input.js:3181 assets/build/js/acf-input.js:3399 -msgid "Update Image" -msgstr "Uppdatera bild" - -#: includes/fields/class-acf-field-image.php:68 -#: assets/build/js/acf-input.js:3180 assets/build/js/acf-input.js:3398 -msgid "Edit Image" -msgstr "Redigera bild" - -#: includes/fields/class-acf-field-image.php:67 -#: assets/build/js/acf-input.js:3156 assets/build/js/acf-input.js:3373 -msgid "Select Image" -msgstr "Välj bild" - -#: includes/fields/class-acf-field-image.php:25 -msgid "Image" -msgstr "Bild" - -#: includes/fields/class-acf-field-message.php:125 -msgid "Allow HTML markup to display as visible text instead of rendering" -msgstr "" -"Tillåt att HTML-märkkod visas som synlig text i stället för att renderas" - -#: includes/fields/class-acf-field-message.php:124 -msgid "Escape HTML" -msgstr "Inaktivera HTML-rendering" - -#: includes/fields/class-acf-field-message.php:116 -#: includes/fields/class-acf-field-textarea.php:172 -msgid "No Formatting" -msgstr "Ingen formatering" - -#: includes/fields/class-acf-field-message.php:115 -#: includes/fields/class-acf-field-textarea.php:171 -msgid "Automatically add <br>" -msgstr "Lägg automatiskt till <br>" - -#: includes/fields/class-acf-field-message.php:114 -#: includes/fields/class-acf-field-textarea.php:170 -msgid "Automatically add paragraphs" -msgstr "Lägg automatiskt till stycken" - -#: includes/fields/class-acf-field-message.php:110 -#: includes/fields/class-acf-field-textarea.php:166 -msgid "Controls how new lines are rendered" -msgstr "Styr hur nya rader visas" - -#: includes/fields/class-acf-field-message.php:109 -#: includes/fields/class-acf-field-textarea.php:165 -msgid "New Lines" -msgstr "Nya rader" - -#: includes/fields/class-acf-field-date_picker.php:232 -#: includes/fields/class-acf-field-date_time_picker.php:220 -msgid "Week Starts On" -msgstr "Veckan börjar på" - -#: includes/fields/class-acf-field-date_picker.php:201 -msgid "The format used when saving a value" -msgstr "Formatet som används när ett värde sparas" - -#: includes/fields/class-acf-field-date_picker.php:200 -msgid "Save Format" -msgstr "Spara format" - -#: includes/fields/class-acf-field-date_picker.php:67 -msgctxt "Date Picker JS weekHeader" -msgid "Wk" -msgstr "V" - -#: includes/fields/class-acf-field-date_picker.php:66 -msgctxt "Date Picker JS prevText" -msgid "Prev" -msgstr "Föreg." - -#: includes/fields/class-acf-field-date_picker.php:65 -msgctxt "Date Picker JS nextText" -msgid "Next" -msgstr "Nästa" - -#: includes/fields/class-acf-field-date_picker.php:64 -msgctxt "Date Picker JS currentText" -msgid "Today" -msgstr "Idag" - -#: includes/fields/class-acf-field-date_picker.php:63 -msgctxt "Date Picker JS closeText" -msgid "Done" -msgstr "Klart" - -#: includes/fields/class-acf-field-date_picker.php:25 -msgid "Date Picker" -msgstr "Datumväljare" - -#: includes/fields/class-acf-field-image.php:248 -#: includes/fields/class-acf-field-image.php:284 -#: includes/fields/class-acf-field-oembed.php:268 -msgid "Width" -msgstr "Bredd" - -#: includes/fields/class-acf-field-oembed.php:265 -#: includes/fields/class-acf-field-oembed.php:277 -msgid "Embed Size" -msgstr "Inbäddad storlek" - -#: includes/fields/class-acf-field-oembed.php:222 -msgid "Enter URL" -msgstr "Ange URL" - -#: includes/fields/class-acf-field-oembed.php:25 -msgid "oEmbed" -msgstr "oEmbed" - -#: includes/fields/class-acf-field-true_false.php:184 -msgid "Text shown when inactive" -msgstr "Text som visas när inaktivt" - -#: includes/fields/class-acf-field-true_false.php:183 -msgid "Off Text" -msgstr "”Av”-text" - -#: includes/fields/class-acf-field-true_false.php:168 -msgid "Text shown when active" -msgstr "Text som visas när aktivt" - -#: includes/fields/class-acf-field-true_false.php:167 -msgid "On Text" -msgstr "”På”-text" - -#: includes/fields/class-acf-field-select.php:450 -#: includes/fields/class-acf-field-true_false.php:199 -msgid "Stylized UI" -msgstr "Stiliserat användargränssnitt" - -#: includes/fields/class-acf-field-button-group.php:157 -#: includes/fields/class-acf-field-checkbox.php:361 -#: includes/fields/class-acf-field-color_picker.php:156 -#: includes/fields/class-acf-field-email.php:117 -#: includes/fields/class-acf-field-number.php:128 -#: includes/fields/class-acf-field-radio.php:202 -#: includes/fields/class-acf-field-range.php:164 -#: includes/fields/class-acf-field-select.php:380 -#: includes/fields/class-acf-field-text.php:103 -#: includes/fields/class-acf-field-textarea.php:103 -#: includes/fields/class-acf-field-true_false.php:147 -#: includes/fields/class-acf-field-url.php:101 -#: includes/fields/class-acf-field-wysiwyg.php:311 -msgid "Default Value" -msgstr "Standardvärde" - -#: includes/fields/class-acf-field-true_false.php:138 -msgid "Displays text alongside the checkbox" -msgstr "Visar text bredvid kryssrutan" - -#: includes/fields/class-acf-field-message.php:26 -#: includes/fields/class-acf-field-message.php:99 -#: includes/fields/class-acf-field-true_false.php:137 -msgid "Message" -msgstr "Meddelande" - -#: includes/assets.php:351 includes/fields/class-acf-field-true_false.php:86 -#: includes/fields/class-acf-field-true_false.php:187 -#: assets/build/js/acf.js:1740 assets/build/js/acf.js:1857 -msgid "No" -msgstr "Nej" - -#: includes/assets.php:350 includes/fields/class-acf-field-true_false.php:83 -#: includes/fields/class-acf-field-true_false.php:171 -#: assets/build/js/acf.js:1739 assets/build/js/acf.js:1856 -msgid "Yes" -msgstr "Ja" - -#: includes/fields/class-acf-field-true_false.php:25 -msgid "True / False" -msgstr "Sant/falskt" - -#: includes/fields/class-acf-field-group.php:474 -msgid "Row" -msgstr "Rad" - -#: includes/fields/class-acf-field-group.php:473 -msgid "Table" -msgstr "Tabell" - -#: includes/admin/post-types/admin-field-group.php:140 -#: includes/fields/class-acf-field-group.php:472 -msgid "Block" -msgstr "Block" - -#: includes/fields/class-acf-field-group.php:467 -msgid "Specify the style used to render the selected fields" -msgstr "Specificera stilen för att rendera valda fält" - -#: includes/fields.php:356 includes/fields/class-acf-field-button-group.php:215 -#: includes/fields/class-acf-field-checkbox.php:435 -#: includes/fields/class-acf-field-group.php:466 -#: includes/fields/class-acf-field-radio.php:286 -msgid "Layout" -msgstr "Layout" - -#: includes/fields/class-acf-field-group.php:450 -msgid "Sub Fields" -msgstr "Underfält" - -#: includes/fields/class-acf-field-group.php:25 -msgid "Group" -msgstr "Grupp" - -#: includes/fields/class-acf-field-google-map.php:235 -msgid "Customize the map height" -msgstr "Anpassa karthöjden" - -#: includes/fields/class-acf-field-google-map.php:234 -#: includes/fields/class-acf-field-image.php:259 -#: includes/fields/class-acf-field-image.php:295 -#: includes/fields/class-acf-field-oembed.php:280 -msgid "Height" -msgstr "Höjd" - -#: includes/fields/class-acf-field-google-map.php:223 -msgid "Set the initial zoom level" -msgstr "Ställ in den initiala zoomnivån" - -#: includes/fields/class-acf-field-google-map.php:222 -msgid "Zoom" -msgstr "Zooma" - -#: includes/fields/class-acf-field-google-map.php:196 -#: includes/fields/class-acf-field-google-map.php:209 -msgid "Center the initial map" -msgstr "Centrera den inledande kartan" - -#: includes/fields/class-acf-field-google-map.php:195 -#: includes/fields/class-acf-field-google-map.php:208 -msgid "Center" -msgstr "Centrerat" - -#: includes/fields/class-acf-field-google-map.php:163 -msgid "Search for address..." -msgstr "Sök efter adress …" - -#: includes/fields/class-acf-field-google-map.php:160 -msgid "Find current location" -msgstr "Hitta nuvarande plats" - -#: includes/fields/class-acf-field-google-map.php:159 -msgid "Clear location" -msgstr "Rensa plats" - -#: includes/fields/class-acf-field-google-map.php:158 -#: includes/fields/class-acf-field-relationship.php:628 -msgid "Search" -msgstr "Sök" - -#: includes/fields/class-acf-field-google-map.php:63 -#: assets/build/js/acf-input.js:2840 assets/build/js/acf-input.js:3026 -msgid "Sorry, this browser does not support geolocation" -msgstr "Denna webbläsare saknar stöd för platsinformation" - -#: includes/fields/class-acf-field-google-map.php:25 -msgid "Google Map" -msgstr "Google Map" - -#: includes/fields/class-acf-field-date_picker.php:212 -#: includes/fields/class-acf-field-date_time_picker.php:201 -#: includes/fields/class-acf-field-time_picker.php:132 -msgid "The format returned via template functions" -msgstr "Formatet returnerad via mallfunktioner" - -#: includes/fields/class-acf-field-color_picker.php:180 -#: includes/fields/class-acf-field-date_picker.php:211 -#: includes/fields/class-acf-field-date_time_picker.php:200 -#: includes/fields/class-acf-field-image.php:187 -#: includes/fields/class-acf-field-post_object.php:411 -#: includes/fields/class-acf-field-relationship.php:638 -#: includes/fields/class-acf-field-select.php:391 -#: includes/fields/class-acf-field-time_picker.php:131 -#: includes/fields/class-acf-field-user.php:66 -msgid "Return Format" -msgstr "Returformat" - -#: includes/fields/class-acf-field-date_picker.php:190 -#: includes/fields/class-acf-field-date_picker.php:221 -#: includes/fields/class-acf-field-date_time_picker.php:192 -#: includes/fields/class-acf-field-date_time_picker.php:210 -#: includes/fields/class-acf-field-time_picker.php:123 -#: includes/fields/class-acf-field-time_picker.php:139 -msgid "Custom:" -msgstr "Anpassad:" - -#: includes/fields/class-acf-field-date_picker.php:182 -#: includes/fields/class-acf-field-date_time_picker.php:183 -#: includes/fields/class-acf-field-time_picker.php:116 -msgid "The format displayed when editing a post" -msgstr "Formatet visas när ett inlägg redigeras" - -#: includes/fields/class-acf-field-date_picker.php:181 -#: includes/fields/class-acf-field-date_time_picker.php:182 -#: includes/fields/class-acf-field-time_picker.php:115 -msgid "Display Format" -msgstr "Visningsformat" - -#: includes/fields/class-acf-field-time_picker.php:25 -msgid "Time Picker" -msgstr "Tidsväljare" - -#. translators: counts for inactive field groups -#: acf.php:503 -msgid "Inactive (%s)" -msgid_plural "Inactive (%s)" -msgstr[0] "Inaktiv (%s)" -msgstr[1] "Inaktiva (%s)" - -#: acf.php:462 -msgid "No Fields found in Trash" -msgstr "Inga fält hittades i papperskorgen" - -#: acf.php:461 -msgid "No Fields found" -msgstr "Inga fält hittades" - -#: acf.php:460 -msgid "Search Fields" -msgstr "Sök fält" - -#: acf.php:459 -msgid "View Field" -msgstr "Visa fält" - -#: acf.php:458 includes/admin/views/acf-field-group/fields.php:115 -msgid "New Field" -msgstr "Nytt fält" - -#: acf.php:457 -msgid "Edit Field" -msgstr "Redigera fält" - -#: acf.php:456 -msgid "Add New Field" -msgstr "Lägg till nytt fält" - -#: acf.php:454 -msgid "Field" -msgstr "Fält" - -#: acf.php:453 includes/admin/post-types/admin-field-group.php:163 -#: includes/admin/post-types/admin-field-groups.php:119 -#: includes/admin/views/acf-field-group/fields.php:32 -msgid "Fields" -msgstr "Fält" - -#: acf.php:428 -msgid "No Field Groups found in Trash" -msgstr "Inga fältgrupper hittades i papperskorgen" - -#: acf.php:427 -msgid "No Field Groups found" -msgstr "Inga fältgrupper hittades" - -#: acf.php:426 -msgid "Search Field Groups" -msgstr "Sök fältgrupper" - -#: acf.php:425 -msgid "View Field Group" -msgstr "Visa fältgrupp" - -#: acf.php:424 -msgid "New Field Group" -msgstr "Ny fältgrupp" - -#: acf.php:423 -msgid "Edit Field Group" -msgstr "Redigera fältgrupp" - -#: acf.php:422 -msgid "Add New Field Group" -msgstr "Lägg till ny fältgrupp" - -#: acf.php:421 acf.php:455 -#: includes/admin/views/acf-post-type/advanced-settings.php:219 -#: includes/admin/views/acf-post-type/advanced-settings.php:221 -#: includes/post-types/class-acf-post-type.php:93 -#: includes/post-types/class-acf-taxonomy.php:92 -msgid "Add New" -msgstr "Lägg till nytt" - -#: acf.php:420 -msgid "Field Group" -msgstr "Fältgrupp" - -#: acf.php:419 includes/admin/post-types/admin-field-groups.php:78 -#: includes/admin/post-types/admin-post-types.php:138 -#: includes/admin/post-types/admin-taxonomies.php:138 -msgid "Field Groups" -msgstr "Fältgrupper" - -#. Description of the plugin -msgid "Customize WordPress with powerful, professional and intuitive fields." -msgstr "Anpassa WordPress med kraftfulla, professionella och intuitiva fält." - -#. Plugin URI of the plugin -msgid "https://www.advancedcustomfields.com" -msgstr "https://www.advancedcustomfields.com" - -#. Plugin Name of the plugin -#: acf.php:94 -msgid "Advanced Custom Fields" -msgstr "Advanced Custom Fields" - -#: pro/acf-pro.php:27 -msgid "Advanced Custom Fields PRO" -msgstr "Advanced Custom Fields PRO" - -#: pro/blocks.php:170 -msgid "Block type name is required." -msgstr "Blocktypsnamn är obligatoriskt." - -#. translators: The name of the block type -#: pro/blocks.php:178 -msgid "Block type \"%s\" is already registered." -msgstr "Blocktypen \"%s\" är redan registrerad." - -#: pro/blocks.php:726 -msgid "Switch to Edit" -msgstr "Växla till Redigera" - -#: pro/blocks.php:727 -msgid "Switch to Preview" -msgstr "Växla till förhandsgranskning" - -#: pro/blocks.php:728 -msgid "Change content alignment" -msgstr "Ändra innehållsjustering" - -#. translators: %s: Block type title -#: pro/blocks.php:731 -msgid "%s settings" -msgstr "%s-inställningar" - -#: pro/blocks.php:936 -msgid "This block contains no editable fields." -msgstr "Det här blocket innehåller inga redigerbara fält." - -#. translators: %s: an admin URL to the field group edit screen -#: pro/blocks.php:942 -msgid "" -"Assign a field group to add fields to " -"this block." -msgstr "" -"Tilldela en fältgrupp för att lägga " -"till fält i detta block." - -#: pro/options-page.php:78 -msgid "Options Updated" -msgstr "Alternativ uppdaterade" - -#: pro/updates.php:99 -msgid "" -"To enable updates, please enter your license key on the Updates page. If you don't have a licence key, please see details & pricing." -msgstr "" -"Om du vill aktivera uppdateringar anger du din licensnyckel på sidan Uppdateringar. Om du inte har en licensnyckel, se uppgifter och priser." - -#: pro/updates.php:159 -msgid "" -"ACF Activation Error. Your defined license key has changed, but an " -"error occurred when deactivating your old licence" -msgstr "" -"ACF-aktiveringsfel. Din definierade licensnyckel har ändrats, men ett " -"fel uppstod vid inaktivering av din gamla licens" - -#: pro/updates.php:154 -msgid "" -"ACF Activation Error. Your defined license key has changed, but an " -"error occurred when connecting to activation server" -msgstr "" -"ACF-aktiveringsfel. Din definierade licensnyckel har ändrats, men ett " -"fel uppstod vid anslutning till aktiveringsservern" - -#: pro/updates.php:192 -msgid "ACF Activation Error" -msgstr "ACF-aktiveringsfel" - -#: pro/updates.php:187 -msgid "" -"ACF Activation Error. An error occurred when connecting to activation " -"server" -msgstr "" -"ACF-aktiveringsfel. Ett fel uppstod vid anslutning till " -"aktiveringsservern" - -#: pro/updates.php:279 -msgid "Check Again" -msgstr "Kontrollera igen" - -#: pro/updates.php:593 -msgid "ACF Activation Error. Could not connect to activation server" -msgstr "ACF-aktiveringsfel. Kunde inte ansluta till aktiveringsservern" - -#: pro/admin/admin-options-page.php:195 -msgid "Publish" -msgstr "Publicera" - -#: pro/admin/admin-options-page.php:199 -msgid "" -"No Custom Field Groups found for this options page. Create a " -"Custom Field Group" -msgstr "" -"Inga fältgrupper hittades för denna inställningssida. Skapa " -"en fältgrupp" - -#: pro/admin/admin-updates.php:52 -msgid "Error. Could not connect to update server" -msgstr "Fel. Kunde inte ansluta till uppdateringsservern" - -#: pro/admin/admin-updates.php:212 -msgid "" -"Error. Could not authenticate update package. Please check again or " -"deactivate and reactivate your ACF PRO license." -msgstr "" -"Fel. Det gick inte att autentisera uppdateringspaketet. Kontrollera " -"igen eller inaktivera och återaktivera din ACF PRO-licens." - -#: pro/admin/admin-updates.php:199 -msgid "" -"Error. Your license for this site has expired or been deactivated. " -"Please reactivate your ACF PRO license." -msgstr "" -"Fel. Din licens för denna webbplats har gått ut eller inaktiverats. " -"Återaktivera din ACF PRO-licens." - -#: pro/fields/class-acf-field-clone.php:27, -#: pro/fields/class-acf-field-repeater.php:31 -msgid "" -"Allows you to select and display existing fields. It does not duplicate any " -"fields in the database, but loads and displays the selected fields at run-" -"time. The Clone field can either replace itself with the selected fields or " -"display the selected fields as a group of subfields." -msgstr "" - -#: pro/fields/class-acf-field-clone.php:819 -msgid "Select one or more fields you wish to clone" -msgstr "Välj ett eller flera fält som du vill klona" - -#: pro/fields/class-acf-field-clone.php:838 -msgid "Display" -msgstr "Visning" - -#: pro/fields/class-acf-field-clone.php:839 -msgid "Specify the style used to render the clone field" -msgstr "Specificera stilen som ska användas för att rendera det klonade fältet" - -#: pro/fields/class-acf-field-clone.php:844 -msgid "Group (displays selected fields in a group within this field)" -msgstr "Grupp (visar valda fält i en grupp i detta fält)" - -#: pro/fields/class-acf-field-clone.php:845 -msgid "Seamless (replaces this field with selected fields)" -msgstr "Sömlös (ersätter detta fält med valda fält)" - -#: pro/fields/class-acf-field-clone.php:868 -msgid "Labels will be displayed as %s" -msgstr "Etiketter kommer att visas som %s" - -#: pro/fields/class-acf-field-clone.php:873 -msgid "Prefix Field Labels" -msgstr "Prefix för fältetiketter" - -#: pro/fields/class-acf-field-clone.php:883 -msgid "Values will be saved as %s" -msgstr "Värden sparas som %s" - -#: pro/fields/class-acf-field-clone.php:888 -msgid "Prefix Field Names" -msgstr "Prefix för fältnamn" - -#: pro/fields/class-acf-field-clone.php:1005 -msgid "Unknown field" -msgstr "Okänt fält" - -#: pro/fields/class-acf-field-clone.php:1042 -msgid "Unknown field group" -msgstr "Okänd fältgrupp" - -#: pro/fields/class-acf-field-clone.php:1046 -msgid "All fields from %s field group" -msgstr "Alla fält från %s fältgrupp" - -#: pro/fields/class-acf-field-flexible-content.php:27 -msgid "" -"Allows you to define, create and manage content with total control by " -"creating layouts that contain subfields that content editors can choose from." -msgstr "" - -#: pro/fields/class-acf-field-flexible-content.php:36, -#: pro/fields/class-acf-field-repeater.php:103, -#: pro/fields/class-acf-field-repeater.php:297 -msgid "Add Row" -msgstr "Lägg till rad" - -#: pro/fields/class-acf-field-flexible-content.php:76, -#: pro/fields/class-acf-field-flexible-content.php:943, -#: pro/fields/class-acf-field-flexible-content.php:1022 -msgid "layout" -msgid_plural "layouts" -msgstr[0] "layout" -msgstr[1] "layouter" - -#: pro/fields/class-acf-field-flexible-content.php:77 -msgid "layouts" -msgstr "layouter" - -#: pro/fields/class-acf-field-flexible-content.php:81, -#: pro/fields/class-acf-field-flexible-content.php:942, -#: pro/fields/class-acf-field-flexible-content.php:1021 -msgid "This field requires at least {min} {label} {identifier}" -msgstr "Detta fält kräver minst {min} {label} {identifier}" - -#: pro/fields/class-acf-field-flexible-content.php:82 -msgid "This field has a limit of {max} {label} {identifier}" -msgstr "Detta fält har en gräns på {max} {label} {identifier}" - -#: pro/fields/class-acf-field-flexible-content.php:85 -msgid "{available} {label} {identifier} available (max {max})" -msgstr "{available} {label} {identifier} tillgänglig (max {max})" - -#: pro/fields/class-acf-field-flexible-content.php:86 -msgid "{required} {label} {identifier} required (min {min})" -msgstr "{required} {label} {identifier} krävs (min {min})" - -#: pro/fields/class-acf-field-flexible-content.php:89 -msgid "Flexible Content requires at least 1 layout" -msgstr "Flexibelt innehåll kräver minst 1 layout" - -#: pro/fields/class-acf-field-flexible-content.php:282 -msgid "Click the \"%s\" button below to start creating your layout" -msgstr "Klicka på knappen ”%s” nedan för att börja skapa din layout" - -#: pro/fields/class-acf-field-flexible-content.php:423 -msgid "Add layout" -msgstr "Lägg till layout" - -#: pro/fields/class-acf-field-flexible-content.php:424 -msgid "Duplicate layout" -msgstr "Duplicera layout" - -#: pro/fields/class-acf-field-flexible-content.php:425 -msgid "Remove layout" -msgstr "Ta bort layout" - -#: pro/fields/class-acf-field-flexible-content.php:426, -#: pro/fields/class-acf-repeater-table.php:382 -msgid "Click to toggle" -msgstr "Klicka för att växla" - -#: pro/fields/class-acf-field-flexible-content.php:562 -msgid "Delete Layout" -msgstr "Ta bort layout" - -#: pro/fields/class-acf-field-flexible-content.php:563 -msgid "Duplicate Layout" -msgstr "Duplicera layout" - -#: pro/fields/class-acf-field-flexible-content.php:564 -msgid "Add New Layout" -msgstr "Lägg till ny layout" - -#: pro/fields/class-acf-field-flexible-content.php:564 -#, fuzzy -#| msgid "Add layout" -msgid "Add Layout" -msgstr "Lägg till layout" - -#: pro/fields/class-acf-field-flexible-content.php:647 -msgid "Min" -msgstr "Min" - -#: pro/fields/class-acf-field-flexible-content.php:662 -msgid "Max" -msgstr "Max" - -#: pro/fields/class-acf-field-flexible-content.php:705 -msgid "Minimum Layouts" -msgstr "Lägsta tillåtna antal layouter" - -#: pro/fields/class-acf-field-flexible-content.php:716 -msgid "Maximum Layouts" -msgstr "Högsta tillåtna antal layouter" - -#: pro/fields/class-acf-field-flexible-content.php:727, -#: pro/fields/class-acf-field-repeater.php:293 -msgid "Button Label" -msgstr "Knappetikett" - -#: pro/fields/class-acf-field-flexible-content.php:1710, -#: pro/fields/class-acf-field-repeater.php:918 -msgid "%s must be of type array or null." -msgstr "%s måste vara av typen array eller null." - -#: pro/fields/class-acf-field-flexible-content.php:1721 -msgid "%1$s must contain at least %2$s %3$s layout." -msgid_plural "%1$s must contain at least %2$s %3$s layouts." -msgstr[0] "%1$s måste innehålla minst %2$s %3$s layout." -msgstr[1] "%1$s måste innehålla minst %2$s %3$s layouter." - -#: pro/fields/class-acf-field-flexible-content.php:1737 -msgid "%1$s must contain at most %2$s %3$s layout." -msgid_plural "%1$s must contain at most %2$s %3$s layouts." -msgstr[0] "%1$s får innehålla högst %2$s %3$s layout." -msgstr[1] "%1$s får innehålla högst %2$s %3$s layouter." - -#: pro/fields/class-acf-field-gallery.php:27 -msgid "" -"An interactive interface for managing a collection of attachments, such as " -"images." -msgstr "" - -#: pro/fields/class-acf-field-gallery.php:77 -msgid "Add Image to Gallery" -msgstr "Lägg till bild i galleriet" - -#: pro/fields/class-acf-field-gallery.php:78 -msgid "Maximum selection reached" -msgstr "Högsta tillåtna antal val uppnått" - -#: pro/fields/class-acf-field-gallery.php:324 -msgid "Length" -msgstr "Längd" - -#: pro/fields/class-acf-field-gallery.php:368 -msgid "Caption" -msgstr "Bildtext" - -#: pro/fields/class-acf-field-gallery.php:380 -msgid "Alt Text" -msgstr "Alternativ text" - -#: pro/fields/class-acf-field-gallery.php:504 -msgid "Add to gallery" -msgstr "Lägg till i galleri" - -#: pro/fields/class-acf-field-gallery.php:508 -msgid "Bulk actions" -msgstr "Massåtgärder" - -#: pro/fields/class-acf-field-gallery.php:509 -msgid "Sort by date uploaded" -msgstr "Sortera efter uppladdningsdatum" - -#: pro/fields/class-acf-field-gallery.php:510 -msgid "Sort by date modified" -msgstr "Sortera efter redigeringsdatum" - -#: pro/fields/class-acf-field-gallery.php:511 -msgid "Sort by title" -msgstr "Sortera efter rubrik" - -#: pro/fields/class-acf-field-gallery.php:512 -msgid "Reverse current order" -msgstr "Omvänd nuvarande ordning" - -#: pro/fields/class-acf-field-gallery.php:524 -msgid "Close" -msgstr "Stäng" - -#: pro/fields/class-acf-field-gallery.php:615 -msgid "Minimum Selection" -msgstr "Minsta tillåtna antal val" - -#: pro/fields/class-acf-field-gallery.php:625 -msgid "Maximum Selection" -msgstr "Högsta tillåtna antal val" - -#: pro/fields/class-acf-field-gallery.php:707 -msgid "Allowed file types" -msgstr "Tillåtna filtyper" - -#: pro/fields/class-acf-field-gallery.php:727 -msgid "Insert" -msgstr "Infoga" - -#: pro/fields/class-acf-field-gallery.php:728 -msgid "Specify where new attachments are added" -msgstr "Specifiera var nya bilagor läggs till" - -#: pro/fields/class-acf-field-gallery.php:732 -msgid "Append to the end" -msgstr "Lägg till i slutet" - -#: pro/fields/class-acf-field-gallery.php:733 -msgid "Prepend to the beginning" -msgstr "Lägg till början" - -#: pro/fields/class-acf-field-repeater.php:66, -#: pro/fields/class-acf-field-repeater.php:463 -#, fuzzy -#| msgid "Minimum rows reached ({min} rows)" -msgid "Minimum rows not reached ({min} rows)" -msgstr "Minsta tillåtna antal rader uppnått ({min} rader)" - -#: pro/fields/class-acf-field-repeater.php:67 -msgid "Maximum rows reached ({max} rows)" -msgstr "Högsta tillåtna antal rader uppnått ({max} rader)" - -#: pro/fields/class-acf-field-repeater.php:68 -msgid "Error loading page" -msgstr "Kunde inte ladda in sida" - -#: pro/fields/class-acf-field-repeater.php:69 -msgid "Order will be assigned upon save" -msgstr "" - -#: pro/fields/class-acf-field-repeater.php:196 -msgid "Useful for fields with a large number of rows." -msgstr "Användbart för fält med ett stort antal rader." - -#: pro/fields/class-acf-field-repeater.php:207 -msgid "Rows Per Page" -msgstr "Rader per sida" - -#: pro/fields/class-acf-field-repeater.php:208 -msgid "Set the number of rows to be displayed on a page." -msgstr "Ange antalet rader som ska visas på en sida." - -#: pro/fields/class-acf-field-repeater.php:240 -msgid "Minimum Rows" -msgstr "Minsta tillåtna antal rader" - -#: pro/fields/class-acf-field-repeater.php:251 -msgid "Maximum Rows" -msgstr "Högsta tillåtna antal rader" - -#: pro/fields/class-acf-field-repeater.php:281 -msgid "Collapsed" -msgstr "Ihopfälld" - -#: pro/fields/class-acf-field-repeater.php:282 -msgid "Select a sub field to show when row is collapsed" -msgstr "Välj ett underfält att visa när raden är ihopfälld" - -#: pro/fields/class-acf-field-repeater.php:1060 -#, fuzzy -#| msgid "Invalid field key." -msgid "Invalid field key or name." -msgstr "Ogiltig fältnyckel." - -#: pro/fields/class-acf-field-repeater.php:1069 -msgid "There was an error retrieving the field." -msgstr "Ett fel uppstod vid hämtning av fältet." - -#: pro/fields/class-acf-repeater-table.php:369 -#, fuzzy -#| msgid "Drag to reorder" -msgid "Click to reorder" -msgstr "Dra och släpp för att ändra ordning" - -#: pro/fields/class-acf-repeater-table.php:402 -msgid "Add row" -msgstr "Lägg till rad" - -#: pro/fields/class-acf-repeater-table.php:403 -msgid "Duplicate row" -msgstr "Duplicera rad" - -#: pro/fields/class-acf-repeater-table.php:404 -msgid "Remove row" -msgstr "Ta bort rad" - -#: pro/fields/class-acf-repeater-table.php:448, -#: pro/fields/class-acf-repeater-table.php:465, -#: pro/fields/class-acf-repeater-table.php:466 -msgid "Current Page" -msgstr "Nuvarande sida" - -#: pro/fields/class-acf-repeater-table.php:456, -#: pro/fields/class-acf-repeater-table.php:457 -#, fuzzy -#| msgid "First page" -msgid "First Page" -msgstr "Första sidan" - -#: pro/fields/class-acf-repeater-table.php:460, -#: pro/fields/class-acf-repeater-table.php:461 -#, fuzzy -#| msgid "Previous page" -msgid "Previous Page" -msgstr "Föregående sida" - -#. translators: 1: Current page, 2: Total pages. -#: pro/fields/class-acf-repeater-table.php:470 -msgctxt "paging" -msgid "%1$s of %2$s" -msgstr "%1$s av %2$s" - -#: pro/fields/class-acf-repeater-table.php:477, -#: pro/fields/class-acf-repeater-table.php:478 -#, fuzzy -#| msgid "Next page" -msgid "Next Page" -msgstr "Nästa sida" - -#: pro/fields/class-acf-repeater-table.php:481, -#: pro/fields/class-acf-repeater-table.php:482 -#, fuzzy -#| msgid "Last page" -msgid "Last Page" -msgstr "Sista sidan" - -#: pro/locations/class-acf-location-block.php:71 -msgid "No block types exist" -msgstr "Det finns inga blocktyper" - -#: pro/locations/class-acf-location-options-page.php:70 -msgid "No options pages exist" -msgstr "Det finns inga alternativsidor" - -#: pro/admin/views/html-settings-updates.php:6 -msgid "Deactivate License" -msgstr "Inaktivera licens" - -#: pro/admin/views/html-settings-updates.php:6 -msgid "Activate License" -msgstr "Aktivera licens" - -#: pro/admin/views/html-settings-updates.php:16 -msgid "License Information" -msgstr "Licensinformation" - -#: pro/admin/views/html-settings-updates.php:34 -msgid "" -"To unlock updates, please enter your license key below. If you don't have a " -"licence key, please see details & pricing." -msgstr "" -"För att låsa upp uppdateringar, fyll i din licensnyckel här nedan. Om du " -"inte har en licensnyckel, gå till sidan detaljer och priser." - -#: pro/admin/views/html-settings-updates.php:37 -msgid "License Key" -msgstr "Licensnyckel" - -#: pro/admin/views/html-settings-updates.php:22 -msgid "Your license key is defined in wp-config.php." -msgstr "Din licensnyckel är angiven i wp-config.php." - -#: pro/admin/views/html-settings-updates.php:29 -msgid "Retry Activation" -msgstr "Försök aktivera igen" - -#: pro/admin/views/html-settings-updates.php:61 -msgid "Update Information" -msgstr "Uppdateringsinformation" - -#: pro/admin/views/html-settings-updates.php:68 -msgid "Current Version" -msgstr "Nuvarande version" - -#: pro/admin/views/html-settings-updates.php:76 -msgid "Latest Version" -msgstr "Senaste version" - -#: pro/admin/views/html-settings-updates.php:84 -msgid "Update Available" -msgstr "Uppdatering tillgänglig" - -#: pro/admin/views/html-settings-updates.php:98 -msgid "Upgrade Notice" -msgstr "Uppgraderingsnotering" - -#: pro/admin/views/html-settings-updates.php:126 -msgid "Check For Updates" -msgstr "" - -#: pro/admin/views/html-settings-updates.php:121 -#, fuzzy -#| msgid "Please enter your license key above to unlock updates" -msgid "Enter your license key to unlock updates" -msgstr "Fyll i din licensnyckel här ovan för att låsa upp uppdateringar" - -#: pro/admin/views/html-settings-updates.php:119 -msgid "Update Plugin" -msgstr "Uppdatera tillägg" - -#: pro/admin/views/html-settings-updates.php:117 -msgid "Please reactivate your license to unlock updates" -msgstr "Återaktivera din licens för att låsa upp uppdateringar" diff --git a/lang/acf-tr_TR.mo b/lang/acf-tr_TR.mo deleted file mode 100644 index 36f0a45..0000000 Binary files a/lang/acf-tr_TR.mo and /dev/null differ diff --git a/lang/acf-tr_TR.po b/lang/acf-tr_TR.po deleted file mode 100644 index a4f5a2b..0000000 --- a/lang/acf-tr_TR.po +++ /dev/null @@ -1,6183 +0,0 @@ -# Advanced Custom Fields Translations are a combination of translate.wordpress.org contributions, -# combined with user contributed strings for the PRO version. -# Translations from translate.wordpress.org take priority over translations in this file. -# translate.wordpress.org contributions are synced at the time of each release. -# -# If you would like to contribute translations, please visit -# https://translate.wordpress.org/projects/wp-plugins/advanced-custom-fields/stable/ -# -# For additional ACF PRO strings, please submit a pull request over on the ACF GitHub repo at -# http://github.com/advancedcustomfields/acf using the .pot (and any existing .po) files in /lang/pro/ -# -# This file is distributed under the same license as Advanced Custom Fields. -msgid "" -msgstr "" -"PO-Revision-Date: 2023-11-28T09:14:32+00:00\n" -"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n" -"Language: tr_TR\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: gettext\n" -"Project-Id-Version: Advanced Custom Fields\n" - -#: includes/admin/views/global/navigation.php:221 -msgid "Renew ACF PRO License" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:17 -msgid "Renew License" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:14 -msgid "Manage License" -msgstr "" - -#: includes/admin/views/acf-field-group/options.php:102 -msgid "'High' position not supported in the Block Editor" -msgstr "" - -#: includes/admin/views/options-page-preview.php:30 -msgid "Upgrade to ACF PRO" -msgstr "" - -#. translators: %s URL to ACF options pages documentation -#: includes/admin/views/options-page-preview.php:7 -msgid "" -"ACF options pages are custom admin " -"pages for managing global settings via fields. You can create multiple pages " -"and sub-pages." -msgstr "" - -#: includes/admin/views/global/header.php:35 -msgid "Add Options Page" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:703 -msgid "In the editor used as the placeholder of the title." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:702 -msgid "Title Placeholder" -msgstr "" - -#: includes/admin/views/global/navigation.php:97 -msgid "4 Months Free" -msgstr "" - -#. translators: %s - A singular label for a post type or taxonomy. -#: includes/admin/views/global/form-top.php:56 -msgid " (Duplicated from %s)" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:298 -msgid "Select Options Pages" -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:107 -msgid "Duplicate taxonomy" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:106 -#: includes/admin/post-types/admin-taxonomy.php:106 -msgid "Create taxonomy" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:105 -msgid "Duplicate post type" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:104 -#: includes/admin/post-types/admin-taxonomy.php:108 -msgid "Create post type" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:103 -#: includes/admin/post-types/admin-taxonomy.php:105 -msgid "Link field groups" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:102 -#: includes/admin/post-types/admin-taxonomy.php:104 -msgid "Add fields" -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:121 -#: assets/build/js/acf-field-group.js:2753 -#: assets/build/js/acf-field-group.js:3236 -msgid "This Field" -msgstr "" - -#: includes/admin/admin.php:267 -msgid "ACF PRO" -msgstr "" - -#: includes/admin/admin.php:265 -msgid "Feedback" -msgstr "" - -#: includes/admin/admin.php:263 -msgid "Support" -msgstr "" - -#. translators: This text is prepended by a link to ACF's website, and appended -#. by a link to WP Engine's website. -#: includes/admin/admin.php:238 -msgid "is developed and maintained by" -msgstr "" - -#. translators: %s - either "post type" or "taxonomy" -#: includes/admin/admin-internal-post-type.php:321 -msgid "Add this %s to the location rules of the selected field groups." -msgstr "" - -#. translators: %s the URL to ACF's bidirectional relationship documentation -#: includes/acf-bidirectional-functions.php:271 -msgid "" -"Enabling the bidirectional setting allows you to update a value in the " -"target fields for each value selected for this field, adding or removing the " -"Post ID, Taxonomy ID or User ID of the item being updated. For more " -"information, please read the documentation." -msgstr "" - -#: includes/acf-bidirectional-functions.php:247 -msgid "" -"Select field(s) to store the reference back to the item being updated. You " -"may select this field. Target fields must be compatible with where this " -"field is being displayed. For example, if this field is displayed on a " -"Taxonomy, your target field should be of type Taxonomy" -msgstr "" - -#: includes/acf-bidirectional-functions.php:246 -msgid "Target Field" -msgstr "" - -#: includes/acf-bidirectional-functions.php:220 -msgid "Update a field on the selected values, referencing back to this ID" -msgstr "" - -#: includes/acf-bidirectional-functions.php:219 -msgid "Bidirectional" -msgstr "" - -#. translators: %s A field type name, such as "Relationship" -#: includes/acf-bidirectional-functions.php:192 -msgid "%s Field" -msgstr "" - -#: includes/fields/class-acf-field-page_link.php:517 -#: includes/fields/class-acf-field-post_object.php:426 -#: includes/fields/class-acf-field-select.php:407 -#: includes/fields/class-acf-field-user.php:82 -msgid "Select Multiple" -msgstr "" - -#: includes/admin/views/global/navigation.php:233 -msgid "WP Engine logo" -msgstr "" - -#: includes/admin/views/acf-taxonomy/basic-settings.php:58 -msgid "Lower case letters, underscores and dashes only, Max 32 characters." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1136 -msgid "The capability name for assigning terms of this taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1135 -msgid "Assign Terms Capability" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1119 -msgid "The capability name for deleting terms of this taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1118 -msgid "Delete Terms Capability" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1102 -msgid "The capability name for editing terms of this taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1101 -msgid "Edit Terms Capability" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1085 -msgid "The capability name for managing terms of this taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1084 -msgid "Manage Terms Capability" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:886 -msgid "" -"Sets whether posts should be excluded from search results and taxonomy " -"archive pages." -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:74 -msgid "More Tools from WP Engine" -msgstr "" - -#. translators: %s - WP Engine logo -#: includes/admin/views/acf-field-group/pro-features.php:69 -msgid "Built for those that build with WordPress, by the team at %s" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:6 -msgid "View Pricing & Upgrade" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:3 -#: includes/admin/views/options-page-preview.php:29 -msgid "Learn More" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:28 -msgid "" -"Speed up your workflow and develop better websites with features like ACF " -"Blocks and Options Pages, and sophisticated field types like Repeater, " -"Flexible Content, Clone, and Gallery." -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:2 -msgid "Unlock Advanced Features and Build Even More with ACF PRO" -msgstr "" - -#. translators: %s - singular label of post type/taxonomy, i.e. "Movie"/"Genre" -#: includes/admin/views/global/form-top.php:19 -msgid "%s fields" -msgstr "" - -#: includes/admin/post-types/admin-taxonomies.php:293 -msgid "No terms" -msgstr "" - -#: includes/admin/post-types/admin-taxonomies.php:266 -msgid "No post types" -msgstr "" - -#: includes/admin/post-types/admin-post-types.php:289 -msgid "No posts" -msgstr "" - -#: includes/admin/post-types/admin-post-types.php:263 -msgid "No taxonomies" -msgstr "" - -#: includes/admin/post-types/admin-post-types.php:208 -#: includes/admin/post-types/admin-taxonomies.php:208 -msgid "No field groups" -msgstr "" - -#: includes/admin/post-types/admin-field-groups.php:281 -msgid "No fields" -msgstr "" - -#: includes/admin/post-types/admin-field-groups.php:154 -#: includes/admin/post-types/admin-post-types.php:172 -#: includes/admin/post-types/admin-taxonomies.php:172 -msgid "No description" -msgstr "" - -#: includes/fields/class-acf-field-page_link.php:484 -#: includes/fields/class-acf-field-post_object.php:389 -#: includes/fields/class-acf-field-relationship.php:601 -msgid "Any post status" -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:284 -msgid "" -"This taxonomy key is already in use by another taxonomy registered outside " -"of ACF and cannot be used." -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:279 -msgid "" -"This taxonomy key is already in use by another taxonomy in ACF and cannot be " -"used." -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:252 -msgid "" -"The taxonomy key must only contain lower case alphanumeric characters, " -"underscores or dashes." -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:247 -msgid "The taxonomy key must be under 32 characters." -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:99 -msgid "No Taxonomies found in Trash" -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:98 -msgid "No Taxonomies found" -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:97 -msgid "Search Taxonomies" -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:96 -msgid "View Taxonomy" -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:95 -msgid "New Taxonomy" -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:94 -msgid "Edit Taxonomy" -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:93 -msgid "Add New Taxonomy" -msgstr "" - -#: includes/post-types/class-acf-post-type.php:100 -msgid "No Post Types found in Trash" -msgstr "" - -#: includes/post-types/class-acf-post-type.php:99 -msgid "No Post Types found" -msgstr "" - -#: includes/post-types/class-acf-post-type.php:98 -msgid "Search Post Types" -msgstr "" - -#: includes/post-types/class-acf-post-type.php:97 -msgid "View Post Type" -msgstr "" - -#: includes/post-types/class-acf-post-type.php:96 -msgid "New Post Type" -msgstr "" - -#: includes/post-types/class-acf-post-type.php:95 -msgid "Edit Post Type" -msgstr "" - -#: includes/post-types/class-acf-post-type.php:94 -msgid "Add New Post Type" -msgstr "" - -#: includes/post-types/class-acf-post-type.php:361 -msgid "" -"This post type key is already in use by another post type registered outside " -"of ACF and cannot be used." -msgstr "" - -#: includes/post-types/class-acf-post-type.php:356 -msgid "" -"This post type key is already in use by another post type in ACF and cannot " -"be used." -msgstr "" - -#. translators: %s a link to WordPress.org's Reserved Terms page -#: includes/post-types/class-acf-post-type.php:335 -#: includes/post-types/class-acf-taxonomy.php:258 -msgid "" -"This field must not be a WordPress reserved " -"term." -msgstr "" - -#: includes/post-types/class-acf-post-type.php:329 -msgid "" -"The post type key must only contain lower case alphanumeric characters, " -"underscores or dashes." -msgstr "" - -#: includes/post-types/class-acf-post-type.php:324 -msgid "The post type key must be under 20 characters." -msgstr "" - -#: includes/fields/class-acf-field-wysiwyg.php:27 -msgid "We do not recommend using this field in ACF Blocks." -msgstr "" - -#: includes/fields/class-acf-field-wysiwyg.php:27 -msgid "" -"Displays the WordPress WYSIWYG editor as seen in Posts and Pages allowing " -"for a rich text-editing experience that also allows for multimedia content." -msgstr "" - -#: includes/fields/class-acf-field-wysiwyg.php:25 -msgid "WYSIWYG Editor" -msgstr "" - -#: includes/fields/class-acf-field-user.php:17 -msgid "" -"Allows the selection of one or more users which can be used to create " -"relationships between data objects." -msgstr "" - -#: includes/fields/class-acf-field-url.php:26 -msgid "A text input specifically designed for storing web addresses." -msgstr "" - -#: includes/fields/class-acf-field-url.php:25 -msgid "URL" -msgstr "" - -#: includes/fields/class-acf-field-true_false.php:27 -msgid "" -"A toggle that allows you to pick a value of 1 or 0 (on or off, true or " -"false, etc). Can be presented as a stylized switch or checkbox." -msgstr "" - -#: includes/fields/class-acf-field-time_picker.php:27 -msgid "" -"An interactive UI for picking a time. The time format can be customized " -"using the field settings." -msgstr "" - -#: includes/fields/class-acf-field-textarea.php:26 -msgid "A basic textarea input for storing paragraphs of text." -msgstr "" - -#: includes/fields/class-acf-field-text.php:26 -msgid "A basic text input, useful for storing single string values." -msgstr "" - -#: includes/fields/class-acf-field-taxonomy.php:22 -msgid "" -"Allows the selection of one or more taxonomy terms based on the criteria and " -"options specified in the fields settings." -msgstr "" - -#: includes/fields/class-acf-field-tab.php:28 -msgid "" -"Allows you to group fields into tabbed sections in the edit screen. Useful " -"for keeping fields organized and structured." -msgstr "" - -#: includes/fields/class-acf-field-select.php:27 -msgid "A dropdown list with a selection of choices that you specify." -msgstr "" - -#: includes/fields/class-acf-field-relationship.php:19 -msgid "" -"A dual-column interface to select one or more posts, pages, or custom post " -"type items to create a relationship with the item that you're currently " -"editing. Includes options to search and filter." -msgstr "" - -#: includes/fields/class-acf-field-range.php:26 -msgid "" -"An input for selecting a numerical value within a specified range using a " -"range slider element." -msgstr "" - -#: includes/fields/class-acf-field-radio.php:27 -msgid "" -"A group of radio button inputs that allows the user to make a single " -"selection from values that you specify." -msgstr "" - -#: includes/fields/class-acf-field-post_object.php:19 -msgid "" -"An interactive and customizable UI for picking one or many posts, pages or " -"post type items with the option to search. " -msgstr "" - -#: includes/fields/class-acf-field-password.php:26 -msgid "An input for providing a password using a masked field." -msgstr "" - -#: includes/fields/class-acf-field-page_link.php:476 -#: includes/fields/class-acf-field-post_object.php:381 -#: includes/fields/class-acf-field-relationship.php:593 -msgid "Filter by Post Status" -msgstr "" - -#: includes/fields/class-acf-field-page_link.php:27 -msgid "" -"An interactive dropdown to select one or more posts, pages, custom post type " -"items or archive URLs, with the option to search." -msgstr "" - -#: includes/fields/class-acf-field-oembed.php:27 -msgid "" -"An interactive component for embedding videos, images, tweets, audio and " -"other content by making use of the native WordPress oEmbed functionality." -msgstr "" - -#: includes/fields/class-acf-field-number.php:26 -msgid "An input limited to numerical values." -msgstr "" - -#: includes/fields/class-acf-field-message.php:28 -msgid "" -"Used to display a message to editors alongside other fields. Useful for " -"providing additional context or instructions around your fields." -msgstr "" - -#: includes/fields/class-acf-field-link.php:27 -msgid "" -"Allows you to specify a link and its properties such as title and target " -"using the WordPress native link picker." -msgstr "" - -#: includes/fields/class-acf-field-image.php:27 -msgid "Uses the native WordPress media picker to upload, or choose images." -msgstr "" - -#: includes/fields/class-acf-field-group.php:27 -msgid "" -"Provides a way to structure fields into groups to better organize the data " -"and the edit screen." -msgstr "" - -#: includes/fields/class-acf-field-google-map.php:27 -msgid "" -"An interactive UI for selecting a location using Google Maps. Requires a " -"Google Maps API key and additional configuration to display correctly." -msgstr "" - -#: includes/fields/class-acf-field-file.php:27 -msgid "Uses the native WordPress media picker to upload, or choose files." -msgstr "" - -#: includes/fields/class-acf-field-email.php:26 -msgid "A text input specifically designed for storing email addresses." -msgstr "" - -#: includes/fields/class-acf-field-date_time_picker.php:27 -msgid "" -"An interactive UI for picking a date and time. The date return format can be " -"customized using the field settings." -msgstr "" - -#: includes/fields/class-acf-field-date_picker.php:27 -msgid "" -"An interactive UI for picking a date. The date return format can be " -"customized using the field settings." -msgstr "" - -#: includes/fields/class-acf-field-color_picker.php:27 -msgid "An interactive UI for selecting a color, or specifying a Hex value." -msgstr "" - -#: includes/fields/class-acf-field-checkbox.php:27 -msgid "" -"A group of checkbox inputs that allow the user to select one, or multiple " -"values that you specify." -msgstr "" - -#: includes/fields/class-acf-field-button-group.php:26 -msgid "" -"A group of buttons with values that you specify, users can choose one option " -"from the values provided." -msgstr "" - -#: includes/fields/class-acf-field-accordion.php:27 -msgid "" -"Allows you to group and organize custom fields into collapsable panels that " -"are shown while editing content. Useful for keeping large datasets tidy." -msgstr "" - -#: includes/fields.php:475 -msgid "" -"This provides a solution for repeating content such as slides, team members, " -"and call-to-action tiles, by acting as a parent to a set of subfields which " -"can be repeated again and again." -msgstr "" - -#: includes/fields.php:465 -msgid "" -"This provides an interactive interface for managing a collection of " -"attachments. Most settings are similar to the Image field type. Additional " -"settings allow you to specify where new attachments are added in the gallery " -"and the minimum/maximum number of attachments allowed." -msgstr "" - -#: includes/fields.php:455 -msgid "" -"This provides a simple, structured, layout-based editor. The Flexible " -"Content field allows you to define, create and manage content with total " -"control by using layouts and subfields to design the available blocks." -msgstr "" - -#: includes/fields.php:445 -msgid "" -"This allows you to select and display existing fields. It does not duplicate " -"any fields in the database, but loads and displays the selected fields at " -"run-time. The Clone field can either replace itself with the selected fields " -"or display the selected fields as a group of subfields." -msgstr "" - -#: pro/fields/class-acf-field-clone.php:25 -msgctxt "noun" -msgid "Clone" -msgstr "Kopyala" - -#: includes/admin/views/global/navigation.php:86 includes/fields.php:357 -msgid "PRO" -msgstr "" - -#: includes/fields.php:355 includes/fields.php:412 -msgid "Advanced" -msgstr "" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:85 -msgid "JSON (newer)" -msgstr "" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:81 -msgid "Original" -msgstr "" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:55 -msgid "Invalid post ID." -msgstr "" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:47 -msgid "Invalid post type selected for review." -msgstr "" - -#: includes/admin/views/global/navigation.php:186 -msgid "More" -msgstr "" - -#: includes/admin/views/browse-fields-modal.php:86 -msgid "Tutorial" -msgstr "" - -#: includes/admin/views/browse-fields-modal.php:75 -msgid "Available with ACF PRO" -msgstr "" - -#: includes/admin/views/browse-fields-modal.php:63 -msgid "Select Field" -msgstr "" - -#. translators: %s: A link to the popular fields used in ACF -#: includes/admin/views/browse-fields-modal.php:50 -msgid "Try a different search term or browse %s" -msgstr "" - -#: includes/admin/views/browse-fields-modal.php:47 -msgid "Popular fields" -msgstr "" - -#. translators: %s: The invalid search term -#: includes/admin/views/browse-fields-modal.php:40 -msgid "No search results for '%s'" -msgstr "" - -#: includes/admin/views/browse-fields-modal.php:13 -msgid "Search fields..." -msgstr "" - -#: includes/admin/views/browse-fields-modal.php:11 -msgid "Select Field Type" -msgstr "" - -#: includes/admin/views/browse-fields-modal.php:4 -msgid "Popular" -msgstr "" - -#: includes/admin/views/acf-taxonomy/list-empty.php:7 -msgid "Add Taxonomy" -msgstr "" - -#: includes/admin/views/acf-taxonomy/list-empty.php:6 -msgid "Create custom taxonomies to classify post type content" -msgstr "" - -#: includes/admin/views/acf-taxonomy/list-empty.php:5 -msgid "Add Your First Taxonomy" -msgstr "" - -#: includes/admin/views/acf-taxonomy/basic-settings.php:122 -msgid "Hierarchical taxonomies can have descendants (like categories)." -msgstr "" - -#: includes/admin/views/acf-taxonomy/basic-settings.php:107 -msgid "Makes a taxonomy visible on the frontend and in the admin dashboard." -msgstr "" - -#: includes/admin/views/acf-taxonomy/basic-settings.php:91 -msgid "One or many post types that can be classified with this taxonomy." -msgstr "" - -#. translators: example taxonomy -#: includes/admin/views/acf-taxonomy/basic-settings.php:60 -msgid "genre" -msgstr "" - -#. translators: example taxonomy -#: includes/admin/views/acf-taxonomy/basic-settings.php:42 -msgid "Genre" -msgstr "" - -#. translators: example taxonomy -#: includes/admin/views/acf-taxonomy/basic-settings.php:25 -msgid "Genres" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1211 -msgid "" -"Optional custom controller to use instead of `WP_REST_Terms_Controller `." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1155 -msgid "Expose this post type in the REST API." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1055 -msgid "Customize the query variable name" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1028 -msgid "" -"Terms can be accessed using the non-pretty permalink, e.g., {query_var}" -"={term_slug}." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:981 -msgid "Parent-child terms in URLs for hierarchical taxonomies." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:941 -msgid "Customize the slug used in the URL" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:924 -msgid "Permalinks for this taxonomy are disabled." -msgstr "" - -#. translators: this string will be appended with the new permalink structure. -#: includes/admin/views/acf-taxonomy/advanced-settings.php:921 -msgid "" -"Rewrite the URL using the taxonomy key as the slug. Your permalink structure " -"will be" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:913 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1030 -#: includes/admin/views/acf-taxonomy/basic-settings.php:57 -msgid "Taxonomy Key" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:911 -msgid "Select the type of permalink to use for this taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:896 -msgid "Display a column for the taxonomy on post type listing screens." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:895 -msgid "Show Admin Column" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:882 -msgid "Show the taxonomy in the quick/bulk edit panel." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:881 -msgid "Quick Edit" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:868 -msgid "List the taxonomy in the Tag Cloud Widget controls." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:867 -msgid "Tag Cloud" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:824 -msgid "" -"A PHP function name to be called for sanitizing taxonomy data saved from a " -"meta box." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:823 -msgid "Meta Box Sanitization Callback" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:805 -msgid "" -"A PHP function name to be called to handle the content of a meta box on your " -"taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:804 -msgid "Register Meta Box Callback" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:763 -msgid "No Meta Box" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:762 -msgid "Custom Meta Box" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:758 -msgid "" -"Controls the meta box on the content editor screen. By default, the " -"Categories meta box is shown for hierarchical taxonomies, and the Tags meta " -"box is shown for non-hierarchical taxonomies." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:757 -msgid "Meta Box" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:746 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:767 -msgid "Categories Meta Box" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:745 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:766 -msgid "Tags Meta Box" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:704 -msgid "A link to a tag" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:703 -msgid "Describes a navigation link block variation used in the block editor." -msgstr "" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:698 -msgid "A link to a %s" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:683 -msgid "Tag Link" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:682 -msgid "" -"Assigns a title for navigation link block variation used in the block editor." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:663 -msgid "← Go to tags" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:662 -msgid "" -"Assigns the text used to link back to the main index after updating a term." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:661 -msgid "Back To Items" -msgstr "" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:657 -msgid "← Go to %s" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:642 -msgid "Tags list" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:641 -msgid "Assigns text to the table hidden heading." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:622 -msgid "Tags list navigation" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:621 -msgid "Assigns text to the table pagination hidden heading." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:597 -msgid "Filter by category" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:596 -msgid "Assigns text to the filter button in the posts lists table." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:595 -msgid "Filter By Item" -msgstr "" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:591 -msgid "Filter by %s" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:575 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:576 -msgid "" -"The description is not prominent by default; however, some themes may show " -"it." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:574 -msgid "Describes the Description field on the Edit Tags screen." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:573 -msgid "Description Field Description" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:554 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:555 -msgid "" -"Assign a parent term to create a hierarchy. The term Jazz, for example, " -"would be the parent of Bebop and Big Band" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:553 -msgid "Describes the Parent field on the Edit Tags screen." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:552 -msgid "Parent Field Description" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:538 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:539 -msgid "" -"The \"slug\" is the URL-friendly version of the name. It is usually all " -"lower case and contains only letters, numbers, and hyphens." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:537 -msgid "Describes the Slug field on the Edit Tags screen." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:536 -msgid "Slug Field Description" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:522 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:523 -msgid "The name is how it appears on your site" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:521 -msgid "Describes the Name field on the Edit Tags screen." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:520 -msgid "Name Field Description" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:507 -msgid "No tags" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:506 -msgid "" -"Assigns the text displayed in the posts and media list tables when no tags " -"or categories are available." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:505 -msgid "No Terms" -msgstr "" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:501 -msgid "No %s" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:486 -msgid "No tags found" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:485 -msgid "" -"Assigns the text displayed when clicking the 'choose from most used' text in " -"the taxonomy meta box when no tags are available, and assigns the text used " -"in the terms list table when there are no items for a taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:484 -msgid "Not Found" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:463 -msgid "Assigns text to the Title field of the Most Used tab." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:462 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:464 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:465 -msgid "Most Used" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:444 -msgid "Choose from the most used tags" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:443 -msgid "" -"Assigns the 'choose from most used' text used in the meta box when " -"JavaScript is disabled. Only used on non-hierarchical taxonomies." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:442 -msgid "Choose From Most Used" -msgstr "" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:438 -msgid "Choose from the most used %s" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:418 -msgid "Add or remove tags" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:417 -msgid "" -"Assigns the add or remove items text used in the meta box when JavaScript is " -"disabled. Only used on non-hierarchical taxonomies" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:416 -msgid "Add Or Remove Items" -msgstr "" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:412 -msgid "Add or remove %s" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:392 -msgid "Separate tags with commas" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:391 -msgid "" -"Assigns the separate item with commas text used in the taxonomy meta box. " -"Only used on non-hierarchical taxonomies." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:390 -msgid "Separate Items With Commas" -msgstr "" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:386 -msgid "Separate %s with commas" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:366 -msgid "Popular Tags" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:365 -msgid "Assigns popular items text. Only used for non-hierarchical taxonomies." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:364 -msgid "Popular Items" -msgstr "" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:361 -msgid "Popular %s" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:347 -msgid "Search Tags" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:346 -msgid "Assigns search items text." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:323 -msgid "Parent Category:" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:322 -msgid "Assigns parent item text, but with a colon (:) added to the end." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:321 -msgid "Parent Item With Colon" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:298 -msgid "Parent Category" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:297 -msgid "Assigns parent item text. Only used on hierarchical taxonomies." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:296 -msgid "Parent Item" -msgstr "" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:293 -msgid "Parent %s" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:278 -msgid "New Tag Name" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:277 -msgid "Assigns the new item name text." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:276 -msgid "New Item Name" -msgstr "" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:273 -msgid "New %s Name" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:258 -msgid "Add New Tag" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:257 -msgid "Assigns the add new item text." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:238 -msgid "Update Tag" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:237 -msgid "Assigns the update item text." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:236 -msgid "Update Item" -msgstr "" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:233 -msgid "Update %s" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:218 -msgid "View Tag" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:217 -msgid "In the admin bar to view term during editing." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:198 -msgid "Edit Tag" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:197 -msgid "At the top of the editor screen when editing a term." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:178 -msgid "All Tags" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:177 -msgid "Assigns the all items text." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:158 -msgid "Assigns the menu name text." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:157 -msgid "Menu Label" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:131 -msgid "Active taxonomies are enabled and registered with WordPress." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:115 -msgid "A descriptive summary of the taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:95 -msgid "A descriptive summary of the term." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:94 -msgid "Term Description" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:76 -msgid "Single word, no spaces. Underscores and dashes allowed." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:75 -msgid "Term Slug" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:56 -msgid "The name of the default term." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:55 -msgid "Term Name" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:41 -msgid "" -"Create a term for the taxonomy that cannot be deleted. It will not be " -"selected for posts by default." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:40 -msgid "Default Term" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:28 -msgid "" -"Whether terms in this taxonomy should be sorted in the order they are " -"provided to `wp_set_object_terms()`." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:27 -msgid "Sort Terms" -msgstr "" - -#: includes/admin/views/acf-post-type/list-empty.php:7 -msgid "Add Post Type" -msgstr "" - -#: includes/admin/views/acf-post-type/list-empty.php:6 -msgid "" -"Expand the functionality of WordPress beyond standard posts and pages with " -"custom post types." -msgstr "" - -#: includes/admin/views/acf-post-type/list-empty.php:5 -msgid "Add Your First Post Type" -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:136 -#: includes/admin/views/acf-taxonomy/basic-settings.php:135 -msgid "I know what I'm doing, show me all the options." -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:135 -#: includes/admin/views/acf-taxonomy/basic-settings.php:134 -msgid "Advanced Configuration" -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:123 -msgid "Hierarchical post types can have descendants (like pages)." -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:122 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:980 -#: includes/admin/views/acf-taxonomy/basic-settings.php:121 -msgid "Hierarchical" -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:107 -msgid "Visible on the frontend and in the admin dashboard." -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:106 -#: includes/admin/views/acf-taxonomy/basic-settings.php:106 -msgid "Public" -msgstr "" - -#. translators: example post type -#: includes/admin/views/acf-post-type/basic-settings.php:59 -msgid "movie" -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:57 -msgid "Lower case letters, underscores and dashes only, Max 20 characters." -msgstr "" - -#. translators: example post type -#: includes/admin/views/acf-post-type/basic-settings.php:41 -msgid "Movie" -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:39 -#: includes/admin/views/acf-taxonomy/basic-settings.php:40 -msgid "Singular Label" -msgstr "" - -#. translators: example post type -#: includes/admin/views/acf-post-type/basic-settings.php:24 -msgid "Movies" -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:22 -#: includes/admin/views/acf-taxonomy/basic-settings.php:23 -msgid "Plural Label" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1270 -msgid "" -"Optional custom controller to use instead of `WP_REST_Posts_Controller`." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1269 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1210 -msgid "Controller Class" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1251 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1191 -msgid "The namespace part of the REST API URL." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1250 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1190 -msgid "Namespace Route" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1232 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1172 -msgid "The base URL for the post type REST API URLs." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1231 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1171 -msgid "Base URL" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1217 -msgid "" -"Exposes this post type in the REST API. Required to use the block editor." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1216 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1154 -msgid "Show In REST API" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1195 -msgid "Customize the query variable name." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1194 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1054 -msgid "Query Variable" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1172 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1032 -msgid "No Query Variable Support" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1171 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1031 -msgid "Custom Query Variable" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1168 -msgid "" -"Items can be accessed using the non-pretty permalink, eg. {post_type}" -"={post_slug}." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1167 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1027 -msgid "Query Variable Support" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1142 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1003 -msgid "URLs for an item and items can be accessed with a query string." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1141 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1002 -msgid "Publicly Queryable" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1120 -msgid "Custom slug for the Archive URL." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1119 -msgid "Archive Slug" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1106 -msgid "" -"Has an item archive that can be customized with an archive template file in " -"your theme." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1105 -msgid "Archive" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1085 -msgid "Pagination support for the items URLs such as the archives." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1084 -msgid "Pagination" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1067 -msgid "RSS feed URL for the post type items." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1066 -msgid "Feed URL" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1048 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:961 -msgid "" -"Alters the permalink structure to add the `WP_Rewrite::$front` prefix to " -"URLs." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1047 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:960 -msgid "Front URL Prefix" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1028 -msgid "Customize the slug used in the URL." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1027 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:940 -msgid "URL Slug" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1011 -msgid "Permalinks for this post type are disabled." -msgstr "" - -#. translators: this string will be appended with the new permalink structure. -#: includes/admin/views/acf-post-type/advanced-settings.php:1010 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:923 -msgid "" -"Rewrite the URL using a custom slug defined in the input below. Your " -"permalink structure will be" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1002 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:915 -msgid "No Permalink (prevent URL rewriting)" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1001 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:914 -msgid "Custom Permalink" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1000 -#: includes/admin/views/acf-post-type/advanced-settings.php:1170 -#: includes/admin/views/acf-post-type/basic-settings.php:56 -msgid "Post Type Key" -msgstr "" - -#. translators: this string will be appended with the new permalink structure. -#: includes/admin/views/acf-post-type/advanced-settings.php:998 -#: includes/admin/views/acf-post-type/advanced-settings.php:1008 -msgid "" -"Rewrite the URL using the post type key as the slug. Your permalink " -"structure will be" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:996 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:910 -msgid "Permalink Rewrite" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:982 -msgid "Delete items by a user when that user is deleted." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:981 -msgid "Delete With User" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:967 -msgid "Allow the post type to be exported from 'Tools' > 'Export'." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:966 -msgid "Can Export" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:935 -msgid "Optionally provide a plural to be used in capabilities." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:934 -msgid "Plural Capability Name" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:916 -msgid "Choose another post type to base the capabilities for this post type." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:915 -msgid "Singular Capability Name" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:901 -msgid "" -"By default the capabilities of the post type will inherit the 'Post' " -"capability names, eg. edit_post, delete_posts. Enable to use post type " -"specific capabilities, eg. edit_{singular}, delete_{plural}." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:900 -msgid "Rename Capabilities" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:885 -msgid "Exclude From Search" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:872 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:854 -msgid "" -"Allow items to be added to menus in the 'Appearance' > 'Menus' screen. Must " -"be turned on in 'Screen options'." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:871 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:853 -msgid "Appearance Menus Support" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:853 -msgid "Appears as an item in the 'New' menu in the admin bar." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:852 -msgid "Show In Admin Bar" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:821 -msgid "" -"A PHP function name to be called when setting up the meta boxes for the edit " -"screen." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:820 -msgid "Custom Meta Box Callback" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:800 -msgid "Menu Icon" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:782 -msgid "The position in the sidebar menu in the admin dashboard." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:781 -msgid "Menu Position" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:763 -msgid "" -"By default the post type will get a new top level item in the admin menu. If " -"an existing top level item is supplied here, the post type will be added as " -"a submenu item under it." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:762 -msgid "Admin Menu Parent" -msgstr "" - -#. translators: %s = "dashicon class name", link to the WordPress dashicon -#. documentation. -#: includes/admin/views/acf-post-type/advanced-settings.php:750 -msgid "" -"The icon used for the post type menu item in the admin dashboard. Can be a " -"URL or %s to use for the icon." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:745 -msgid "Dashicon class name" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:734 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:734 -msgid "Admin editor navigation in the sidebar menu." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:733 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:733 -msgid "Show In Admin Menu" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:720 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:719 -msgid "Items can be edited and managed in the admin dashboard." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:719 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:718 -msgid "Show In UI" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:689 -msgid "A link to a post." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:688 -msgid "Description for a navigation link block variation." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:687 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:702 -msgid "Item Link Description" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:683 -msgid "A link to a %s." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:668 -msgid "Post Link" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:667 -msgid "Title for a navigation link block variation." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:666 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:681 -msgid "Item Link" -msgstr "" - -#. translators: %s Singular form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:663 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:678 -msgid "%s Link" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:648 -msgid "Post updated." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:647 -msgid "In the editor notice after an item is updated." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:646 -msgid "Item Updated" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:643 -msgid "%s updated." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:628 -msgid "Post scheduled." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:627 -msgid "In the editor notice after scheduling an item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:626 -msgid "Item Scheduled" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:623 -msgid "%s scheduled." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:608 -msgid "Post reverted to draft." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:607 -msgid "In the editor notice after reverting an item to draft." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:606 -msgid "Item Reverted To Draft" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:603 -msgid "%s reverted to draft." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:588 -msgid "Post published privately." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:587 -msgid "In the editor notice after publishing a private item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:586 -msgid "Item Published Privately" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:583 -msgid "%s published privately." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:568 -msgid "Post published." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:567 -msgid "In the editor notice after publishing an item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:566 -msgid "Item Published" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:563 -msgid "%s published." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:548 -msgid "Posts list" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:547 -msgid "Used by screen readers for the items list on the post type list screen." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:546 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:640 -msgid "Items List" -msgstr "" - -#. translators: %s Plural form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:543 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:637 -msgid "%s list" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:528 -msgid "Posts list navigation" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:527 -msgid "" -"Used by screen readers for the filter list pagination on the post type list " -"screen." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:526 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:620 -msgid "Items List Navigation" -msgstr "" - -#. translators: %s Plural form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:523 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:617 -msgid "%s list navigation" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:507 -msgid "Filter posts by date" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:506 -msgid "" -"Used by screen readers for the filter by date heading on the post type list " -"screen." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:505 -msgid "Filter Items By Date" -msgstr "" - -#. translators: %s Plural form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:501 -msgid "Filter %s by date" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:486 -msgid "Filter posts list" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:485 -msgid "" -"Used by screen readers for the filter links heading on the post type list " -"screen." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:484 -msgid "Filter Items List" -msgstr "" - -#. translators: %s Plural form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:480 -msgid "Filter %s list" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:464 -msgid "In the media modal showing all media uploaded to this item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:463 -msgid "Uploaded To This Item" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:459 -msgid "Uploaded to this %s" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:444 -msgid "Insert into post" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:443 -msgid "As the button label when adding media to content." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:442 -msgid "Insert Into Media Button" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:438 -msgid "Insert into %s" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:423 -msgid "Use as featured image" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:422 -msgid "" -"As the button label for selecting to use an image as the featured image." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:421 -msgid "Use Featured Image" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:408 -msgid "Remove featured image" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:407 -msgid "As the button label when removing the featured image." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:406 -msgid "Remove Featured Image" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:393 -msgid "Set featured image" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:392 -msgid "As the button label when setting the featured image." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:391 -msgid "Set Featured Image" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:378 -msgid "Featured image" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:377 -msgid "In the editor used for the title of the featured image meta box." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:376 -msgid "Featured Image Meta Box" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:363 -msgid "Post Attributes" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:362 -msgid "In the editor used for the title of the post attributes meta box." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:361 -msgid "Attributes Meta Box" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:358 -msgid "%s Attributes" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:343 -msgid "Post Archives" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:342 -msgid "" -"Adds 'Post Type Archive' items with this label to the list of posts shown " -"when adding items to an existing menu in a CPT with archives enabled. Only " -"appears when editing menus in 'Live Preview' mode and a custom archive slug " -"has been provided." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:341 -msgid "Archives Nav Menu" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:338 -msgid "%s Archives" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:323 -msgid "No posts found in Trash" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:322 -msgid "" -"At the top of the post type list screen when there are no posts in the trash." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:321 -msgid "No Items Found in Trash" -msgstr "" - -#. translators: %s Plural form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:317 -msgid "No %s found in Trash" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:302 -msgid "No posts found" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:301 -msgid "" -"At the top of the post type list screen when there are no posts to display." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:300 -msgid "No Items Found" -msgstr "" - -#. translators: %s Plural form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:296 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:480 -msgid "No %s found" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:281 -msgid "Search Posts" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:280 -msgid "At the top of the items screen when searching for an item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:279 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:345 -msgid "Search Items" -msgstr "" - -#. translators: %s Singular form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:276 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:342 -msgid "Search %s" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:261 -msgid "Parent Page:" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:260 -msgid "For hierarchical types in the post type list screen." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:259 -msgid "Parent Item Prefix" -msgstr "" - -#. translators: %s Singular form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:256 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:318 -msgid "Parent %s:" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:241 -msgid "New Post" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:239 -msgid "New Item" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:236 -msgid "New %s" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:206 -msgid "Add New Post" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:205 -msgid "At the top of the editor screen when adding a new item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:204 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:256 -msgid "Add New Item" -msgstr "" - -#. translators: %s Singular form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:201 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:253 -msgid "Add New %s" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:186 -msgid "View Posts" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:185 -msgid "" -"Appears in the admin bar in the 'All Posts' view, provided the post type " -"supports archives and the home page is not an archive of that post type." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:184 -msgid "View Items" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:166 -msgid "View Post" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:165 -msgid "In the admin bar to view item when editing it." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:164 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:216 -msgid "View Item" -msgstr "" - -#. translators: %s Singular form of post type name -#. translators: %s Plural form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:161 -#: includes/admin/views/acf-post-type/advanced-settings.php:181 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:213 -msgid "View %s" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:146 -msgid "Edit Post" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:145 -msgid "At the top of the editor screen when editing an item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:144 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:196 -msgid "Edit Item" -msgstr "" - -#. translators: %s Singular form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:141 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:193 -msgid "Edit %s" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:126 -msgid "All Posts" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:125 -#: includes/admin/views/acf-post-type/advanced-settings.php:220 -#: includes/admin/views/acf-post-type/advanced-settings.php:240 -msgid "In the post type submenu in the admin dashboard." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:124 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:176 -msgid "All Items" -msgstr "" - -#. translators: %s Plural form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:121 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:173 -msgid "All %s" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:105 -msgid "Admin menu name for the post type." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:104 -msgid "Menu Name" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:90 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:142 -msgid "Regenerate all labels using the Singular and Plural labels" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:88 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:140 -msgid "Regenerate" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:79 -msgid "Active post types are enabled and registered with WordPress." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:63 -msgid "A descriptive summary of the post type." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:48 -msgid "Add Custom" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:42 -msgid "Enable various features in the content editor." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:31 -msgid "Post Formats" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:25 -msgid "Editor" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:24 -msgid "Trackbacks" -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:87 -msgid "Select existing taxonomies to classify items of the post type." -msgstr "" - -#: includes/admin/views/acf-field-group/field.php:145 -msgid "Browse Fields" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:292 -msgid "Nothing to import" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:287 -msgid ". The Custom Post Type UI plugin can be deactivated." -msgstr "" - -#. translators: %d - number of items imported from CPTUI -#: includes/admin/tools/class-acf-admin-tool-import.php:278 -msgid "Imported %d item from Custom Post Type UI -" -msgid_plural "Imported %d items from Custom Post Type UI -" -msgstr[0] "" -msgstr[1] "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:262 -msgid "Failed to import taxonomies." -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:244 -msgid "Failed to import post types." -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:233 -msgid "Nothing from Custom Post Type UI plugin selected for import." -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:209 -msgid "Imported 1 item" -msgid_plural "Imported %s items" -msgstr[0] "" -msgstr[1] "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:122 -msgid "" -"Importing a Post Type or Taxonomy with the same key as one that already " -"exists will overwrite the settings for the existing Post Type or Taxonomy " -"with those of the import." -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:111 -#: includes/admin/tools/class-acf-admin-tool-import.php:127 -msgid "Import from Custom Post Type UI" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:412 -msgid "" -"The following code can be used to register a local version of the selected " -"items. Storing field groups, post types, or taxonomies locally can provide " -"many benefits such as faster load times, version control & dynamic fields/" -"settings. Simply copy and paste the following code to your theme's functions." -"php file or include it within an external file, then deactivate or delete " -"the items from the ACF admin." -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:411 -msgid "Export - Generate PHP" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:384 -msgid "Export" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:276 -msgid "Select Taxonomies" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:254 -msgid "Select Post Types" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:167 -msgid "Exported 1 item." -msgid_plural "Exported %s items." -msgstr[0] "" -msgstr[1] "" - -#: includes/admin/post-types/admin-taxonomy.php:129 -#: assets/build/js/acf-internal-post-type.js:182 -#: assets/build/js/acf-internal-post-type.js:256 -msgid "Category" -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:127 -#: assets/build/js/acf-internal-post-type.js:179 -#: assets/build/js/acf-internal-post-type.js:253 -msgid "Tag" -msgstr "" - -#. translators: %s taxonomy name -#: includes/admin/post-types/admin-taxonomy.php:82 -msgid "%s taxonomy created" -msgstr "" - -#. translators: %s taxonomy name -#: includes/admin/post-types/admin-taxonomy.php:76 -msgid "%s taxonomy updated" -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:56 -msgid "Taxonomy draft updated." -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:55 -msgid "Taxonomy scheduled for." -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:54 -msgid "Taxonomy submitted." -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:53 -msgid "Taxonomy saved." -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:49 -msgid "Taxonomy deleted." -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:48 -msgid "Taxonomy updated." -msgstr "" - -#: includes/admin/post-types/admin-taxonomies.php:377 -#: includes/admin/post-types/admin-taxonomy.php:157 -msgid "" -"This taxonomy could not be registered because its key is in use by another " -"taxonomy registered by another plugin or theme." -msgstr "" - -#. translators: %s number of taxonomies synchronized -#: includes/admin/post-types/admin-taxonomies.php:359 -msgid "Taxonomy synchronized." -msgid_plural "%s taxonomies synchronized." -msgstr[0] "" -msgstr[1] "" - -#. translators: %s number of taxonomies duplicated -#: includes/admin/post-types/admin-taxonomies.php:352 -msgid "Taxonomy duplicated." -msgid_plural "%s taxonomies duplicated." -msgstr[0] "" -msgstr[1] "" - -#. translators: %s number of taxonomies deactivated -#: includes/admin/post-types/admin-taxonomies.php:345 -msgid "Taxonomy deactivated." -msgid_plural "%s taxonomies deactivated." -msgstr[0] "" -msgstr[1] "" - -#. translators: %s number of taxonomies activated -#: includes/admin/post-types/admin-taxonomies.php:338 -msgid "Taxonomy activated." -msgid_plural "%s taxonomies activated." -msgstr[0] "" -msgstr[1] "" - -#: includes/admin/post-types/admin-taxonomies.php:139 -msgid "Terms" -msgstr "" - -#. translators: %s number of post types synchronized -#: includes/admin/post-types/admin-post-types.php:352 -msgid "Post type synchronized." -msgid_plural "%s post types synchronized." -msgstr[0] "" -msgstr[1] "" - -#. translators: %s number of post types duplicated -#: includes/admin/post-types/admin-post-types.php:345 -msgid "Post type duplicated." -msgid_plural "%s post types duplicated." -msgstr[0] "" -msgstr[1] "" - -#. translators: %s number of post types deactivated -#: includes/admin/post-types/admin-post-types.php:338 -msgid "Post type deactivated." -msgid_plural "%s post types deactivated." -msgstr[0] "" -msgstr[1] "" - -#. translators: %s number of post types activated -#: includes/admin/post-types/admin-post-types.php:331 -msgid "Post type activated." -msgid_plural "%s post types activated." -msgstr[0] "" -msgstr[1] "" - -#: includes/admin/post-types/admin-post-types.php:112 -#: includes/admin/post-types/admin-taxonomies.php:137 -#: includes/admin/tools/class-acf-admin-tool-import.php:82 -#: includes/admin/views/acf-taxonomy/basic-settings.php:82 -#: includes/post-types/class-acf-post-type.php:91 -msgid "Post Types" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:162 -#: includes/admin/post-types/admin-taxonomy.php:164 -msgid "Advanced Settings" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:161 -#: includes/admin/post-types/admin-taxonomy.php:163 -msgid "Basic Settings" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:155 -#: includes/admin/post-types/admin-post-types.php:370 -msgid "" -"This post type could not be registered because its key is in use by another " -"post type registered by another plugin or theme." -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:128 -#: assets/build/js/acf-internal-post-type.js:176 -#: assets/build/js/acf-internal-post-type.js:250 -msgid "Pages" -msgstr "" - -#: includes/admin/admin-internal-post-type.php:355 -msgid "Link Existing Field Groups" -msgstr "" - -#. translators: %s post type name -#: includes/admin/post-types/admin-post-type.php:80 -msgid "%s post type created" -msgstr "" - -#. translators: %s taxonomy name -#: includes/admin/post-types/admin-taxonomy.php:78 -msgid "Add fields to %s" -msgstr "" - -#. translators: %s post type name -#: includes/admin/post-types/admin-post-type.php:76 -msgid "%s post type updated" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:56 -msgid "Post type draft updated." -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:55 -msgid "Post type scheduled for." -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:54 -msgid "Post type submitted." -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:53 -msgid "Post type saved." -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:50 -msgid "Post type updated." -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:49 -msgid "Post type deleted." -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:120 -#: assets/build/js/acf-field-group.js:1146 -#: assets/build/js/acf-field-group.js:1366 -msgid "Type to search..." -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:105 -#: assets/build/js/acf-field-group.js:1172 -#: assets/build/js/acf-field-group.js:2319 -#: assets/build/js/acf-field-group.js:1414 -#: assets/build/js/acf-field-group.js:2727 -msgid "PRO Only" -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:97 -#: assets/build/js/acf-internal-post-type.js:308 -#: assets/build/js/acf-internal-post-type.js:417 -msgid "Field groups linked successfully." -msgstr "" - -#. translators: %s - URL to ACF tools page. -#: includes/admin/admin.php:195 -msgid "" -"Import Post Types and Taxonomies registered with Custom Post Type UI and " -"manage them with ACF. Get Started." -msgstr "" - -#: includes/admin/admin.php:48 includes/admin/admin.php:267 -msgid "ACF" -msgstr "" - -#: includes/admin/admin-internal-post-type.php:322 -msgid "taxonomy" -msgstr "" - -#: includes/admin/admin-internal-post-type.php:322 -msgid "post type" -msgstr "" - -#: includes/admin/admin-internal-post-type.php:346 -msgid "Done" -msgstr "" - -#: includes/admin/admin-internal-post-type.php:332 -msgid "Field Group(s)" -msgstr "" - -#: includes/admin/admin-internal-post-type.php:331 -msgid "Select one or many field groups..." -msgstr "" - -#: includes/admin/admin-internal-post-type.php:330 -msgid "Please select the field groups to link." -msgstr "" - -#: includes/admin/admin-internal-post-type.php:288 -msgid "Field group linked successfully." -msgid_plural "Field groups linked successfully." -msgstr[0] "" -msgstr[1] "" - -#: includes/admin/admin-internal-post-type-list.php:261 -#: includes/admin/post-types/admin-post-types.php:371 -#: includes/admin/post-types/admin-taxonomies.php:378 -msgctxt "post status" -msgid "Registration Failed" -msgstr "" - -#: includes/admin/admin-internal-post-type-list.php:260 -msgid "" -"This item could not be registered because its key is in use by another item " -"registered by another plugin or theme." -msgstr "" - -#: includes/acf-internal-post-type-functions.php:482 -#: includes/acf-internal-post-type-functions.php:511 -msgid "REST API" -msgstr "" - -#: includes/acf-internal-post-type-functions.php:481 -#: includes/acf-internal-post-type-functions.php:510 -#: includes/acf-internal-post-type-functions.php:537 -msgid "Permissions" -msgstr "" - -#: includes/acf-internal-post-type-functions.php:480 -#: includes/acf-internal-post-type-functions.php:509 -msgid "URLs" -msgstr "" - -#: includes/acf-internal-post-type-functions.php:479 -#: includes/acf-internal-post-type-functions.php:508 -#: includes/acf-internal-post-type-functions.php:535 -msgid "Visibility" -msgstr "" - -#: includes/acf-internal-post-type-functions.php:478 -#: includes/acf-internal-post-type-functions.php:507 -#: includes/acf-internal-post-type-functions.php:536 -msgid "Labels" -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:269 -msgid "Field Settings Tabs" -msgstr "" - -#. Author URI of the plugin -msgid "" -"https://wpengine.com/?utm_source=wordpress." -"org&utm_medium=referral&utm_campaign=plugin_directory&utm_content=advanced_custom_fields" -msgstr "" - -#: includes/api/api-template.php:867 -msgid "[ACF shortcode value disabled for preview]" -msgstr "" - -#: includes/admin/admin-internal-post-type.php:298 -#: includes/admin/post-types/admin-field-group.php:571 -msgid "Close Modal" -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:96 -#: assets/build/js/acf-field-group.js:1670 -#: assets/build/js/acf-field-group.js:1993 -msgid "Field moved to other group" -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:95 -#: assets/build/js/acf.js:1437 assets/build/js/acf.js:1517 -msgid "Close modal" -msgstr "" - -#: includes/fields/class-acf-field-tab.php:125 -msgid "Start a new group of tabs at this tab." -msgstr "" - -#: includes/fields/class-acf-field-tab.php:124 -msgid "New Tab Group" -msgstr "" - -#: includes/fields/class-acf-field-select.php:451 -#: includes/fields/class-acf-field-true_false.php:200 -msgid "Use a stylized checkbox using select2" -msgstr "" - -#: includes/fields/class-acf-field-radio.php:260 -msgid "Save Other Choice" -msgstr "" - -#: includes/fields/class-acf-field-radio.php:249 -msgid "Allow Other Choice" -msgstr "" - -#: includes/fields/class-acf-field-checkbox.php:450 -msgid "Add Toggle All" -msgstr "" - -#: includes/fields/class-acf-field-checkbox.php:409 -msgid "Save Custom Values" -msgstr "" - -#: includes/fields/class-acf-field-checkbox.php:398 -msgid "Allow Custom Values" -msgstr "" - -#: includes/fields/class-acf-field-checkbox.php:148 -msgid "Checkbox custom values cannot be empty. Uncheck any empty values." -msgstr "" - -#: pro/admin/admin-updates.php:122, -#: pro/admin/views/html-settings-updates.php:12 -msgid "Updates" -msgstr "Güncellemeler" - -#: includes/admin/views/global/navigation.php:176 -msgid "Advanced Custom Fields logo" -msgstr "" - -#: includes/admin/views/global/form-top.php:89 -msgid "Save Changes" -msgstr "" - -#: includes/admin/views/global/form-top.php:76 -msgid "Field Group Title" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:704 -#: includes/admin/views/global/form-top.php:3 -msgid "Add title" -msgstr "" - -#. translators: %s url to getting started guide -#: includes/admin/views/acf-field-group/list-empty.php:20 -#: includes/admin/views/acf-post-type/list-empty.php:12 -#: includes/admin/views/acf-taxonomy/list-empty.php:12 -#: includes/admin/views/options-page-preview.php:13 -msgid "" -"New to ACF? Take a look at our getting " -"started guide." -msgstr "" - -#: includes/admin/views/acf-field-group/list-empty.php:15 -msgid "Add Field Group" -msgstr "" - -#. translators: %s url to creating a field group page -#: includes/admin/views/acf-field-group/list-empty.php:10 -msgid "" -"ACF uses field groups to group custom " -"fields together, and then attach those fields to edit screens." -msgstr "" - -#: includes/admin/views/acf-field-group/list-empty.php:5 -msgid "Add Your First Field Group" -msgstr "" - -#: includes/admin/admin-options-pages-preview.php:28 -#: includes/admin/views/acf-field-group/pro-features.php:54 -#: includes/admin/views/global/navigation.php:86 -#: includes/admin/views/global/navigation.php:250 -msgid "Options Pages" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:50 -msgid "ACF Blocks" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:58 -msgid "Gallery Field" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:38 -msgid "Flexible Content Field" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:42 -msgid "Repeater Field" -msgstr "" - -#: includes/admin/views/global/navigation.php:212 -msgid "Unlock Extra Features with ACF PRO" -msgstr "" - -#: includes/admin/views/acf-field-group/options.php:267 -msgid "Delete Field Group" -msgstr "" - -#. translators: 1: Post creation date 2: Post creation time -#: includes/admin/views/acf-field-group/options.php:261 -msgid "Created on %1$s at %2$s" -msgstr "" - -#: includes/acf-field-group-functions.php:497 -msgid "Group Settings" -msgstr "" - -#: includes/acf-field-group-functions.php:495 -msgid "Location Rules" -msgstr "" - -#. translators: %s url to field types list -#: includes/admin/views/acf-field-group/fields.php:72 -msgid "" -"Choose from over 30 field types. Learn " -"more." -msgstr "" - -#: includes/admin/views/acf-field-group/fields.php:65 -msgid "" -"Get started creating new custom fields for your posts, pages, custom post " -"types and other WordPress content." -msgstr "" - -#: includes/admin/views/acf-field-group/fields.php:64 -msgid "Add Your First Field" -msgstr "" - -#. translators: A symbol (or text, if not available in your locale) meaning -#. "Order Number", in terms of positional placement. -#: includes/admin/views/acf-field-group/fields.php:43 -msgid "#" -msgstr "" - -#: includes/admin/views/acf-field-group/fields.php:33 -#: includes/admin/views/acf-field-group/fields.php:67 -#: includes/admin/views/acf-field-group/fields.php:103 -#: includes/admin/views/global/form-top.php:85 -msgid "Add Field" -msgstr "" - -#: includes/acf-field-group-functions.php:496 includes/fields.php:410 -msgid "Presentation" -msgstr "" - -#: includes/fields.php:409 -msgid "Validation" -msgstr "" - -#: includes/acf-internal-post-type-functions.php:477 -#: includes/acf-internal-post-type-functions.php:506 includes/fields.php:408 -msgid "General" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:70 -msgid "Import JSON" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:392 -msgid "Export As JSON" -msgstr "" - -#. translators: %s number of field groups deactivated -#: includes/admin/post-types/admin-field-groups.php:367 -msgid "Field group deactivated." -msgid_plural "%s field groups deactivated." -msgstr[0] "" -msgstr[1] "" - -#. translators: %s number of field groups activated -#: includes/admin/post-types/admin-field-groups.php:360 -msgid "Field group activated." -msgid_plural "%s field groups activated." -msgstr[0] "" -msgstr[1] "" - -#: includes/admin/admin-internal-post-type-list.php:452 -#: includes/admin/admin-internal-post-type-list.php:478 -msgid "Deactivate" -msgstr "" - -#: includes/admin/admin-internal-post-type-list.php:452 -msgid "Deactivate this item" -msgstr "" - -#: includes/admin/admin-internal-post-type-list.php:448 -#: includes/admin/admin-internal-post-type-list.php:477 -msgid "Activate" -msgstr "" - -#: includes/admin/admin-internal-post-type-list.php:448 -msgid "Activate this item" -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:92 -#: assets/build/js/acf-field-group.js:2812 -#: assets/build/js/acf-field-group.js:3313 -msgid "Move field group to trash?" -msgstr "" - -#: acf.php:497 includes/admin/admin-internal-post-type-list.php:248 -#: includes/admin/post-types/admin-field-group.php:297 -#: includes/admin/post-types/admin-post-type.php:295 -#: includes/admin/post-types/admin-taxonomy.php:297 -msgctxt "post status" -msgid "Inactive" -msgstr "" - -#. Author of the plugin -msgid "WP Engine" -msgstr "" - -#: acf.php:555 -msgid "" -"Advanced Custom Fields and Advanced Custom Fields PRO should not be active " -"at the same time. We've automatically deactivated Advanced Custom Fields PRO." -msgstr "" - -#: acf.php:553 -msgid "" -"Advanced Custom Fields and Advanced Custom Fields PRO should not be active " -"at the same time. We've automatically deactivated Advanced Custom Fields." -msgstr "" - -#: includes/acf-value-functions.php:374 -msgid "" -"%1$s - We've detected one or more calls to retrieve ACF " -"field values before ACF has been initialized. This is not supported and can " -"result in malformed or missing data. Learn how to fix this." -msgstr "" -"%1$s - ACF başlatılmadan önce ACF alan değerlerini almak " -"için bir veya daha fazla çağrı algıladık. Bu desteklenmez ve hatalı " -"biçimlendirilmiş veya eksik verilere neden olabilir. Bunu nasıl düzelteceğinizi öğrenin." - -#: includes/fields/class-acf-field-user.php:551 -msgid "%1$s must have a user with the %2$s role." -msgid_plural "%1$s must have a user with one of the following roles: %2$s" -msgstr[0] "%1$s %2$s rolüne sahip bir kullanıcıya sahip olmalıdır." -msgstr[1] "%1$s şu rollerden birine ait bir kullanıcıya sahip olmalıdır: %2$s" - -#: includes/fields/class-acf-field-user.php:542 -msgid "%1$s must have a valid user ID." -msgstr "%1$s geçerli bir kullanıcı kimliğine sahip olmalıdır." - -#: includes/fields/class-acf-field-user.php:380 -msgid "Invalid request." -msgstr "Geçersiz istek." - -#: includes/fields/class-acf-field-select.php:684 -msgid "%1$s is not one of %2$s" -msgstr "%1$s bir %2$s değil" - -#: includes/fields/class-acf-field-post_object.php:700 -msgid "%1$s must have term %2$s." -msgid_plural "%1$s must have one of the following terms: %2$s" -msgstr[0] "%1$s %2$s terimine sahip olmalı." -msgstr[1] "%1$s şu terimlerden biri olmalı: %2$s" - -#: includes/fields/class-acf-field-post_object.php:684 -msgid "%1$s must be of post type %2$s." -msgid_plural "%1$s must be of one of the following post types: %2$s" -msgstr[0] "%1$s %2$s yazı tipinde olmalıdır." -msgstr[1] "%1$s şu yazı tiplerinden birinde olmalıdır: %2$s" - -#: includes/fields/class-acf-field-post_object.php:675 -msgid "%1$s must have a valid post ID." -msgstr "%1$s geçerli bir yazı kimliği olmalıdır." - -#: includes/fields/class-acf-field-file.php:475 -msgid "%s requires a valid attachment ID." -msgstr "%s geçerli bir ek kimliği gerektirir." - -#: includes/admin/views/acf-field-group/options.php:233 -msgid "Show in REST API" -msgstr "REST API'da göster" - -#: includes/fields/class-acf-field-color_picker.php:168 -msgid "Enable Transparency" -msgstr "Saydamlığı etkinleştir" - -#: includes/fields/class-acf-field-color_picker.php:187 -msgid "RGBA Array" -msgstr "RGBA dizisi" - -#: includes/fields/class-acf-field-color_picker.php:98 -msgid "RGBA String" -msgstr "RGBA metni" - -#: includes/fields/class-acf-field-color_picker.php:97 -#: includes/fields/class-acf-field-color_picker.php:186 -msgid "Hex String" -msgstr "Hex metin" - -#: includes/admin/views/browse-fields-modal.php:65 -msgid "Upgrade to PRO" -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:297 -#: includes/admin/post-types/admin-post-type.php:295 -#: includes/admin/post-types/admin-taxonomy.php:297 -msgctxt "post status" -msgid "Active" -msgstr "Etkin" - -#: includes/fields/class-acf-field-email.php:181 -msgid "'%s' is not a valid email address" -msgstr "'%s' geçerli bir e-posta adresi değil" - -#: includes/fields/class-acf-field-color_picker.php:76 -msgid "Color value" -msgstr "Renk değeri" - -#: includes/fields/class-acf-field-color_picker.php:74 -msgid "Select default color" -msgstr "Varsayılan rengi seç" - -#: includes/fields/class-acf-field-color_picker.php:72 -msgid "Clear color" -msgstr "Rengi temizle" - -#: includes/acf-wp-functions.php:90 -msgid "Blocks" -msgstr "Bloklar" - -#: includes/acf-wp-functions.php:86 -msgid "Options" -msgstr "Ayarlar" - -#: includes/acf-wp-functions.php:82 -msgid "Users" -msgstr "Kullanıcılar" - -#: includes/acf-wp-functions.php:78 -msgid "Menu items" -msgstr "Menü ögeleri" - -#: includes/acf-wp-functions.php:70 -msgid "Widgets" -msgstr "Bileşenler" - -#: includes/acf-wp-functions.php:62 -msgid "Attachments" -msgstr "Dosya ekleri" - -#: includes/acf-wp-functions.php:57 -#: includes/admin/post-types/admin-post-types.php:137 -#: includes/admin/post-types/admin-taxonomies.php:112 -#: includes/admin/tools/class-acf-admin-tool-import.php:93 -#: includes/admin/views/acf-post-type/basic-settings.php:86 -#: includes/post-types/class-acf-taxonomy.php:90 -#: includes/post-types/class-acf-taxonomy.php:91 -msgid "Taxonomies" -msgstr "Taksonomiler" - -#: includes/acf-wp-functions.php:44 -#: includes/admin/post-types/admin-post-type.php:126 -#: includes/admin/post-types/admin-post-types.php:139 -#: includes/admin/views/acf-post-type/advanced-settings.php:106 -#: assets/build/js/acf-internal-post-type.js:173 -#: assets/build/js/acf-internal-post-type.js:247 -msgid "Posts" -msgstr "İletiler" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:76 -msgid "Last updated: %s" -msgstr "Son güncellenme: %s" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:70 -msgid "Sorry, this post is unavailable for diff comparison." -msgstr "" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:42 -msgid "Invalid field group parameter(s)." -msgstr "Geçersiz alan grubu parametresi/leri." - -#: includes/admin/admin-internal-post-type-list.php:413 -msgid "Awaiting save" -msgstr "Kayıt edilmeyi bekliyor" - -#: includes/admin/admin-internal-post-type-list.php:410 -msgid "Saved" -msgstr "Kaydedildi" - -#: includes/admin/admin-internal-post-type-list.php:406 -#: includes/admin/tools/class-acf-admin-tool-import.php:49 -msgid "Import" -msgstr "İçe aktar" - -#: includes/admin/admin-internal-post-type-list.php:402 -msgid "Review changes" -msgstr "Değişiklikleri incele" - -#: includes/admin/admin-internal-post-type-list.php:378 -msgid "Located in: %s" -msgstr "Konumu: %s" - -#: includes/admin/admin-internal-post-type-list.php:375 -msgid "Located in plugin: %s" -msgstr "Eklenti içinde konumlu: %s" - -#: includes/admin/admin-internal-post-type-list.php:372 -msgid "Located in theme: %s" -msgstr "Tema içinde konumlu: %s" - -#: includes/admin/post-types/admin-field-groups.php:261 -msgid "Various" -msgstr "Çeşitli" - -#: includes/admin/admin-internal-post-type-list.php:216 -#: includes/admin/admin-internal-post-type-list.php:485 -msgid "Sync changes" -msgstr "Değişiklikleri eşitle" - -#: includes/admin/admin-internal-post-type-list.php:215 -msgid "Loading diff" -msgstr "Fark yükleniyor" - -#: includes/admin/admin-internal-post-type-list.php:214 -msgid "Review local JSON changes" -msgstr "Yerel JSON değişikliklerini incele" - -#: includes/admin/admin.php:170 -msgid "Visit website" -msgstr "Web sitesini ziyaret et" - -#: includes/admin/admin.php:169 -msgid "View details" -msgstr "Ayrıntıları görüntüle" - -#: includes/admin/admin.php:168 -msgid "Version %s" -msgstr "Sürüm %s" - -#: includes/admin/admin.php:167 -msgid "Information" -msgstr "Bilgi" - -#: includes/admin/admin.php:158 -msgid "" -"Help Desk. The support professionals on " -"our Help Desk will assist with your more in depth, technical challenges." -msgstr "" -"Yardım masası. Yardım masamızdaki " -"profesyonel destek çalışanlarımızı daha derin, teknik sorunların üstesinden " -"gelmenize yardımcı olabilirler." - -#: includes/admin/admin.php:154 -msgid "" -"Discussions. We have an active and " -"friendly community on our Community Forums who may be able to help you " -"figure out the 'how-tos' of the ACF world." -msgstr "" - -#: includes/admin/admin.php:150 -msgid "" -"Documentation. Our extensive " -"documentation contains references and guides for most situations you may " -"encounter." -msgstr "" -"Belgeler. Karşınıza çıkabilecek bir çok " -"konu hakkında geniş içerikli belgelerimize baş vurabilirsiniz." - -#: includes/admin/admin.php:147 -msgid "" -"We are fanatical about support, and want you to get the best out of your " -"website with ACF. If you run into any difficulties, there are several places " -"you can find help:" -msgstr "" -"Destek konusunu çok ciddiye alıyoruz ve size ACF ile sitenizde en iyi " -"çözümlere ulaşmanızı istiyoruz. Eğer bir sorunla karşılaşırsanız yardım " -"alabileceğiniz bir kaç yer var:" - -#: includes/admin/admin.php:144 includes/admin/admin.php:146 -msgid "Help & Support" -msgstr "Yardım ve destek" - -#: includes/admin/admin.php:135 -msgid "" -"Please use the Help & Support tab to get in touch should you find yourself " -"requiring assistance." -msgstr "" -"İşin içinden çıkamadığınızda lütfen Yardım ve destek sekmesinden irtibata " -"geçin." - -#: includes/admin/admin.php:132 -msgid "" -"Before creating your first Field Group, we recommend first reading our Getting started guide to familiarize " -"yourself with the plugin's philosophy and best practises." -msgstr "" -"İlk alan grubunuzu oluşturmadan önce Başlarken rehberimize okumanızı öneririz, bu sayede eklentinin " -"filozofisini daha iyi anlayabilir ve en iyi çözümleri öğrenebilirsiniz." - -#: includes/admin/admin.php:130 -msgid "" -"The Advanced Custom Fields plugin provides a visual form builder to " -"customize WordPress edit screens with extra fields, and an intuitive API to " -"display custom field values in any theme template file." -msgstr "" -"The Advanced Custom Fields eklentisi bir görsel form oluşturucu ile " -"WordPress düzenleme ekranlarını ek alanlarla özelleştirme imkanı sağlıyor, " -"ve sezgisel API ile her türlü tema şablon dosyasında bu özel alanlar " -"gösterilebiliyor." - -#: includes/admin/admin.php:127 includes/admin/admin.php:129 -msgid "Overview" -msgstr "Genel görünüm" - -#: includes/locations.php:36 -msgid "Location type \"%s\" is already registered." -msgstr "Konum türü \"%s\" zaten kayıtlı." - -#: includes/locations.php:25 -msgid "Class \"%s\" does not exist." -msgstr "\"%s\" sınıfı mevcut değil." - -#: includes/ajax/class-acf-ajax.php:157 -msgid "Invalid nonce." -msgstr "Geçersiz nonce." - -#: includes/fields/class-acf-field-user.php:375 -msgid "Error loading field." -msgstr "Alan yükleme sırasında hata." - -#: assets/build/js/acf-input.js:2750 assets/build/js/acf-input.js:2819 -#: assets/build/js/acf-input.js:2926 assets/build/js/acf-input.js:3000 -msgid "Location not found: %s" -msgstr "Konum bulunamadı: %s" - -#: includes/forms/form-user.php:353 -msgid "Error: %s" -msgstr "Hata: %s" - -#: includes/locations/class-acf-location-widget.php:22 -msgid "Widget" -msgstr "Bileşen" - -#: includes/locations/class-acf-location-user-role.php:24 -msgid "User Role" -msgstr "Kullanıcı kuralı" - -#: includes/locations/class-acf-location-comment.php:22 -msgid "Comment" -msgstr "Yorum" - -#: includes/locations/class-acf-location-post-format.php:22 -msgid "Post Format" -msgstr "Yazı biçimi" - -#: includes/locations/class-acf-location-nav-menu-item.php:22 -msgid "Menu Item" -msgstr "Menü ögesi" - -#: includes/locations/class-acf-location-post-status.php:22 -msgid "Post Status" -msgstr "Yazı durumu" - -#: includes/acf-wp-functions.php:74 -#: includes/locations/class-acf-location-nav-menu.php:89 -msgid "Menus" -msgstr "Menüler" - -#: includes/locations/class-acf-location-nav-menu.php:80 -msgid "Menu Locations" -msgstr "Menü konumları" - -#: includes/locations/class-acf-location-nav-menu.php:22 -msgid "Menu" -msgstr "Menü" - -#: includes/locations/class-acf-location-post-taxonomy.php:22 -msgid "Post Taxonomy" -msgstr "Yazı taksonomisi" - -#: includes/locations/class-acf-location-page-type.php:114 -msgid "Child Page (has parent)" -msgstr "Alt sayfa (ebeveyni olan)" - -#: includes/locations/class-acf-location-page-type.php:113 -msgid "Parent Page (has children)" -msgstr "Üst sayfa (alt sayfası olan)" - -#: includes/locations/class-acf-location-page-type.php:112 -msgid "Top Level Page (no parent)" -msgstr "Üst düzey sayfa (ebeveynsiz)" - -#: includes/locations/class-acf-location-page-type.php:111 -msgid "Posts Page" -msgstr "Yazılar sayfası" - -#: includes/locations/class-acf-location-page-type.php:110 -msgid "Front Page" -msgstr "Ön Sayfa" - -#: includes/locations/class-acf-location-page-type.php:22 -msgid "Page Type" -msgstr "Sayfa tipi" - -#: includes/locations/class-acf-location-current-user.php:73 -msgid "Viewing back end" -msgstr "Arka yüz görüntüleniyor" - -#: includes/locations/class-acf-location-current-user.php:72 -msgid "Viewing front end" -msgstr "Ön yüz görüntüleniyor" - -#: includes/locations/class-acf-location-current-user.php:71 -msgid "Logged in" -msgstr "Giriş yapıldı" - -#: includes/locations/class-acf-location-current-user.php:22 -msgid "Current User" -msgstr "Şu anki kullanıcı" - -#: includes/locations/class-acf-location-page-template.php:22 -msgid "Page Template" -msgstr "Sayfa şablonu" - -#: includes/locations/class-acf-location-user-form.php:74 -msgid "Register" -msgstr "Kayıt ol" - -#: includes/locations/class-acf-location-user-form.php:73 -msgid "Add / Edit" -msgstr "Ekle / düzenle" - -#: includes/locations/class-acf-location-user-form.php:22 -msgid "User Form" -msgstr "Kullanıcı formu" - -#: includes/locations/class-acf-location-page-parent.php:22 -msgid "Page Parent" -msgstr "Sayfa ebeveyni" - -#: includes/locations/class-acf-location-current-user-role.php:77 -msgid "Super Admin" -msgstr "Süper yönetici" - -#: includes/locations/class-acf-location-current-user-role.php:22 -msgid "Current User Role" -msgstr "Şu anki kullanıcı rolü" - -#: includes/locations/class-acf-location-page-template.php:73 -#: includes/locations/class-acf-location-post-template.php:85 -msgid "Default Template" -msgstr "Varsayılan şablon" - -#: includes/locations/class-acf-location-post-template.php:22 -msgid "Post Template" -msgstr "Yazı şablonu" - -#: includes/locations/class-acf-location-post-category.php:22 -msgid "Post Category" -msgstr "Yazı kategorisi" - -#: includes/locations/class-acf-location-attachment.php:84 -msgid "All %s formats" -msgstr "Tüm %s biçimleri" - -#: includes/locations/class-acf-location-attachment.php:22 -msgid "Attachment" -msgstr "Eklenti" - -#: includes/validation.php:366 -msgid "%s value is required" -msgstr "%s değeri gerekli" - -#: includes/admin/views/acf-field-group/conditional-logic.php:59 -msgid "Show this field if" -msgstr "Alanı bu şart gerçekleşirse göster" - -#: includes/admin/views/acf-field-group/conditional-logic.php:26 -#: includes/admin/views/acf-field-group/field.php:109 includes/fields.php:411 -msgid "Conditional Logic" -msgstr "Koşullu mantık" - -#: includes/admin/views/acf-field-group/conditional-logic.php:156 -#: includes/admin/views/acf-field-group/location-rule.php:92 -msgid "and" -msgstr "ve" - -#: includes/admin/post-types/admin-field-groups.php:123 -#: includes/admin/post-types/admin-post-types.php:143 -#: includes/admin/post-types/admin-taxonomies.php:143 -msgid "Local JSON" -msgstr "Yerel JSON" - -#: includes/admin/views/acf-field-group/pro-features.php:46 -msgid "Clone Field" -msgstr "" - -#: includes/admin/views/upgrade/notice.php:30 -msgid "" -"Please also check all premium add-ons (%s) are updated to the latest version." -msgstr "" -"Lütfen ayrıca premium eklentilerin de (%s) en üst sürüme güncellendiğinden " -"emin olun." - -#: includes/admin/views/upgrade/notice.php:28 -msgid "" -"This version contains improvements to your database and requires an upgrade." -msgstr "" -"Bu sürüm veritabanınız için iyileştirmeler içeriyor ve yükseltme " -"gerektiriyor." - -#: includes/admin/views/upgrade/notice.php:28 -msgid "Thank you for updating to %1$s v%2$s!" -msgstr "%1$s v%2$s sürümüne güncellediğiniz için teşekkür ederiz!" - -#: includes/admin/views/upgrade/notice.php:27 -msgid "Database Upgrade Required" -msgstr "Veritabanı yükseltmesi gerekiyor" - -#: includes/admin/post-types/admin-field-group.php:141 -#: includes/admin/views/upgrade/notice.php:18 -msgid "Options Page" -msgstr "Seçenekler sayfası" - -#: includes/admin/views/upgrade/notice.php:15 includes/fields.php:462 -msgid "Gallery" -msgstr "Galeri" - -#: includes/admin/views/upgrade/notice.php:12 includes/fields.php:452 -msgid "Flexible Content" -msgstr "Esnek içerik" - -#: includes/admin/views/upgrade/notice.php:9 includes/fields.php:472 -msgid "Repeater" -msgstr "Tekrarlayıcı" - -#: includes/admin/views/tools/tools.php:24 -msgid "Back to all tools" -msgstr "Tüm araçlara geri dön" - -#: includes/admin/views/acf-field-group/options.php:195 -msgid "" -"If multiple field groups appear on an edit screen, the first field group's " -"options will be used (the one with the lowest order number)" -msgstr "" -"Eğer düzenleme ekranında birden çok alan grubu ortaya çıkarsa, ilk alan " -"grubunun seçenekleri kullanılır (en düşük sıralama numarasına sahip olan)" - -#: includes/admin/views/acf-field-group/options.php:195 -msgid "Select items to hide them from the edit screen." -msgstr "Düzenleme ekranından gizlemek istediğiniz ögeleri seçin." - -#: includes/admin/views/acf-field-group/options.php:194 -msgid "Hide on screen" -msgstr "Ekranda gizle" - -#: includes/admin/views/acf-field-group/options.php:186 -msgid "Send Trackbacks" -msgstr "Geri izlemeleri gönder" - -#: includes/admin/post-types/admin-taxonomy.php:128 -#: includes/admin/views/acf-field-group/options.php:185 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:159 -#: assets/build/js/acf-internal-post-type.js:180 -#: assets/build/js/acf-internal-post-type.js:254 -msgid "Tags" -msgstr "Etiketler" - -#: includes/admin/post-types/admin-taxonomy.php:130 -#: includes/admin/views/acf-field-group/options.php:184 -#: assets/build/js/acf-internal-post-type.js:183 -#: assets/build/js/acf-internal-post-type.js:257 -msgid "Categories" -msgstr "Kategoriler" - -#: includes/admin/views/acf-field-group/options.php:182 -#: includes/admin/views/acf-post-type/advanced-settings.php:28 -msgid "Page Attributes" -msgstr "Sayfa özellikleri" - -#: includes/admin/views/acf-field-group/options.php:181 -msgid "Format" -msgstr "Biçim" - -#: includes/admin/views/acf-field-group/options.php:180 -#: includes/admin/views/acf-post-type/advanced-settings.php:22 -msgid "Author" -msgstr "Yazar" - -#: includes/admin/views/acf-field-group/options.php:179 -msgid "Slug" -msgstr "Kısa isim" - -#: includes/admin/views/acf-field-group/options.php:178 -#: includes/admin/views/acf-post-type/advanced-settings.php:27 -msgid "Revisions" -msgstr "Sürümler" - -#: includes/acf-wp-functions.php:66 -#: includes/admin/views/acf-field-group/options.php:177 -#: includes/admin/views/acf-post-type/advanced-settings.php:23 -msgid "Comments" -msgstr "Yorumlar" - -#: includes/admin/views/acf-field-group/options.php:176 -msgid "Discussion" -msgstr "Tartışma" - -#: includes/admin/views/acf-field-group/options.php:174 -#: includes/admin/views/acf-post-type/advanced-settings.php:26 -msgid "Excerpt" -msgstr "Özet" - -#: includes/admin/views/acf-field-group/options.php:173 -msgid "Content Editor" -msgstr "İçerik düzenleyici" - -#: includes/admin/views/acf-field-group/options.php:172 -msgid "Permalink" -msgstr "Kalıcı bağlantı" - -#: includes/admin/views/acf-field-group/options.php:250 -msgid "Shown in field group list" -msgstr "Alan grubu listesinde görüntülenir" - -#: includes/admin/views/acf-field-group/options.php:157 -msgid "Field groups with a lower order will appear first" -msgstr "Daha düşük sıralamaya sahip alan grupları daha önce görünür" - -#: includes/admin/views/acf-field-group/options.php:156 -msgid "Order No." -msgstr "Sipariş No." - -#: includes/admin/views/acf-field-group/options.php:147 -msgid "Below fields" -msgstr "Alanlarının altında" - -#: includes/admin/views/acf-field-group/options.php:146 -msgid "Below labels" -msgstr "Etiketlerin altında" - -#: includes/admin/views/acf-field-group/options.php:139 -msgid "Instruction Placement" -msgstr "" - -#: includes/admin/views/acf-field-group/options.php:122 -msgid "Label Placement" -msgstr "" - -#: includes/admin/views/acf-field-group/options.php:110 -msgid "Side" -msgstr "Yan" - -#: includes/admin/views/acf-field-group/options.php:109 -msgid "Normal (after content)" -msgstr "Normal (içerikten sonra)" - -#: includes/admin/views/acf-field-group/options.php:108 -msgid "High (after title)" -msgstr "Yüksek (başlıktan sonra)" - -#: includes/admin/views/acf-field-group/options.php:101 -msgid "Position" -msgstr "Konum" - -#: includes/admin/views/acf-field-group/options.php:92 -msgid "Seamless (no metabox)" -msgstr "Pürüzsüz (metabox yok)" - -#: includes/admin/views/acf-field-group/options.php:91 -msgid "Standard (WP metabox)" -msgstr "Standart (WP metabox)" - -#: includes/admin/views/acf-field-group/options.php:84 -msgid "Style" -msgstr "Stil" - -#: includes/admin/views/acf-field-group/fields.php:55 -msgid "Type" -msgstr "Tür" - -#: includes/admin/post-types/admin-field-groups.php:117 -#: includes/admin/post-types/admin-post-types.php:136 -#: includes/admin/post-types/admin-taxonomies.php:136 -#: includes/admin/views/acf-field-group/fields.php:54 -msgid "Key" -msgstr "Anahtar" - -#. translators: Hidden accessibility text for the positional order number of -#. the field. -#: includes/admin/views/acf-field-group/fields.php:48 -msgid "Order" -msgstr "Düzen" - -#: includes/admin/views/acf-field-group/field.php:322 -msgid "Close Field" -msgstr "Alanı kapat" - -#: includes/admin/views/acf-field-group/field.php:253 -msgid "id" -msgstr "id" - -#: includes/admin/views/acf-field-group/field.php:237 -msgid "class" -msgstr "sınıf" - -#: includes/admin/views/acf-field-group/field.php:279 -msgid "width" -msgstr "genişlik" - -#: includes/admin/views/acf-field-group/field.php:273 -msgid "Wrapper Attributes" -msgstr "Kapsayıcı öznitelikleri" - -#: includes/admin/views/acf-field-group/field.php:196 -msgid "Required" -msgstr "" - -#: includes/admin/views/acf-field-group/field.php:221 -msgid "Instructions for authors. Shown when submitting data" -msgstr "Yazarlara gösterilecek talimatlar. Veri gönderirken gösterilir" - -#: includes/admin/views/acf-field-group/field.php:220 -msgid "Instructions" -msgstr "Yönergeler" - -#: includes/admin/views/acf-field-group/field.php:129 -msgid "Field Type" -msgstr "Alan tipi" - -#: includes/admin/views/acf-field-group/field.php:170 -msgid "Single word, no spaces. Underscores and dashes allowed" -msgstr "Tek kelime, boşluksuz. Alt çizgi ve tireye izin var" - -#: includes/admin/views/acf-field-group/field.php:169 -msgid "Field Name" -msgstr "Alan adı" - -#: includes/admin/views/acf-field-group/field.php:157 -msgid "This is the name which will appear on the EDIT page" -msgstr "Bu isim DÜZENLEME sayfasında görüntülenecek isimdir" - -#: includes/admin/views/acf-field-group/field.php:156 -#: includes/admin/views/browse-fields-modal.php:59 -msgid "Field Label" -msgstr "Alan etiketi" - -#: includes/admin/views/acf-field-group/field.php:81 -msgid "Delete" -msgstr "Sil" - -#: includes/admin/views/acf-field-group/field.php:81 -msgid "Delete field" -msgstr "Sil alanı" - -#: includes/admin/views/acf-field-group/field.php:79 -msgid "Move" -msgstr "Taşı" - -#: includes/admin/views/acf-field-group/field.php:79 -msgid "Move field to another group" -msgstr "Alanı başka gruba taşı" - -#: includes/admin/views/acf-field-group/field.php:77 -msgid "Duplicate field" -msgstr "Alanı çoğalt" - -#: includes/admin/views/acf-field-group/field.php:73 -#: includes/admin/views/acf-field-group/field.php:76 -msgid "Edit field" -msgstr "Alanı düzenle" - -#: includes/admin/views/acf-field-group/field.php:69 -msgid "Drag to reorder" -msgstr "Yeniden düzenlemek için sürükleyin" - -#: includes/admin/post-types/admin-field-group.php:103 -#: includes/admin/views/acf-field-group/location-group.php:3 -#: assets/build/js/acf-field-group.js:2347 -#: assets/build/js/acf-field-group.js:2763 -msgid "Show this field group if" -msgstr "Bu alan grubunu şu koşulda göster" - -#: includes/admin/views/upgrade/upgrade.php:94 -#: includes/ajax/class-acf-ajax-upgrade.php:34 -msgid "No updates available." -msgstr "Güncelleme yok." - -#: includes/admin/views/upgrade/upgrade.php:33 -msgid "Database upgrade complete. See what's new" -msgstr "Veritabanı yükseltme tamamlandı. Yenilikler " - -#: includes/admin/views/upgrade/upgrade.php:30 -msgid "Reading upgrade tasks..." -msgstr "Yükseltme görevlerini okuyor..." - -#: includes/admin/views/upgrade/network.php:165 -#: includes/admin/views/upgrade/upgrade.php:65 -msgid "Upgrade failed." -msgstr "Yükseltme başarısız oldu." - -#: includes/admin/views/upgrade/network.php:162 -msgid "Upgrade complete." -msgstr "Yükseltme başarılı." - -#: includes/admin/views/upgrade/network.php:148 -#: includes/admin/views/upgrade/upgrade.php:31 -msgid "Upgrading data to version %s" -msgstr "Veri %s sürümüne yükseltiliyor" - -#: includes/admin/views/upgrade/network.php:121 -#: includes/admin/views/upgrade/notice.php:44 -msgid "" -"It is strongly recommended that you backup your database before proceeding. " -"Are you sure you wish to run the updater now?" -msgstr "" -"Devam etmeden önce veritabanınızı yedeklemeniz önemle önerilir. " -"Güncelleştiriciyi şimdi çalıştırmak istediğinizden emin misiniz?" - -#: includes/admin/views/upgrade/network.php:117 -msgid "Please select at least one site to upgrade." -msgstr "Lütfen yükseltmek için en az site seçin." - -#: includes/admin/views/upgrade/network.php:97 -msgid "" -"Database Upgrade complete. Return to network dashboard" -msgstr "" -"Veritabanı güncellemesi tamamlandı. Ağ panosuna geri dön" - -#: includes/admin/views/upgrade/network.php:80 -msgid "Site is up to date" -msgstr "Site güncel" - -#: includes/admin/views/upgrade/network.php:78 -msgid "Site requires database upgrade from %1$s to %2$s" -msgstr "Site %1$s sürümünden %2$s sürümüne veritabanı yükseltmesi gerektiriyor" - -#: includes/admin/views/upgrade/network.php:36 -#: includes/admin/views/upgrade/network.php:47 -msgid "Site" -msgstr "Site" - -#: includes/admin/views/upgrade/network.php:26 -#: includes/admin/views/upgrade/network.php:27 -#: includes/admin/views/upgrade/network.php:96 -msgid "Upgrade Sites" -msgstr "Siteleri yükselt" - -#: includes/admin/views/upgrade/network.php:26 -msgid "" -"The following sites require a DB upgrade. Check the ones you want to update " -"and then click %s." -msgstr "" -"Şu siteler için VT güncellemesi gerekiyor. Güncellemek istediklerinizi " -"işaretleyin ve %s tuşuna basın." - -#: includes/admin/views/acf-field-group/conditional-logic.php:171 -#: includes/admin/views/acf-field-group/locations.php:38 -msgid "Add rule group" -msgstr "Kural grubu ekle" - -#: includes/admin/views/acf-field-group/locations.php:10 -msgid "" -"Create a set of rules to determine which edit screens will use these " -"advanced custom fields" -msgstr "" -"Bu gelişmiş özel alanları hangi düzenleme ekranlarının kullanacağını " -"belirlemek için bir kural seti oluşturun" - -#: includes/admin/views/acf-field-group/locations.php:9 -msgid "Rules" -msgstr "Kurallar" - -#: includes/admin/tools/class-acf-admin-tool-export.php:510 -msgid "Copied" -msgstr "Kopyalandı" - -#: includes/admin/tools/class-acf-admin-tool-export.php:486 -msgid "Copy to clipboard" -msgstr "Panoya kopyala" - -#: includes/admin/tools/class-acf-admin-tool-export.php:385 -msgid "" -"Select the items you would like to export and then select your export " -"method. Export As JSON to export to a .json file which you can then import " -"to another ACF installation. Generate PHP to export to PHP code which you " -"can place in your theme." -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:233 -msgid "Select Field Groups" -msgstr "Alan gruplarını seç" - -#: includes/admin/tools/class-acf-admin-tool-export.php:96 -#: includes/admin/tools/class-acf-admin-tool-export.php:131 -msgid "No field groups selected" -msgstr "Hiç alan grubu seçilmemiş" - -#: includes/admin/tools/class-acf-admin-tool-export.php:39 -#: includes/admin/tools/class-acf-admin-tool-export.php:393 -#: includes/admin/tools/class-acf-admin-tool-export.php:421 -msgid "Generate PHP" -msgstr "PHP oluştur" - -#: includes/admin/tools/class-acf-admin-tool-export.php:35 -msgid "Export Field Groups" -msgstr "Alan gruplarını dışarı aktar" - -#: includes/admin/tools/class-acf-admin-tool-import.php:177 -msgid "Import file empty" -msgstr "İçe aktarılan dosya boş" - -#: includes/admin/tools/class-acf-admin-tool-import.php:168 -msgid "Incorrect file type" -msgstr "Geçersiz dosya tipi" - -#: includes/admin/tools/class-acf-admin-tool-import.php:163 -msgid "Error uploading file. Please try again" -msgstr "Dosya yüklenirken hata oluştu. Lütfen tekrar deneyin" - -#: includes/admin/tools/class-acf-admin-tool-import.php:50 -msgid "" -"Select the Advanced Custom Fields JSON file you would like to import. When " -"you click the import button below, ACF will import the items in that file." -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:27 -msgid "Import Field Groups" -msgstr "Alan gruplarını içeri aktar" - -#: includes/admin/admin-internal-post-type-list.php:401 -msgid "Sync" -msgstr "Eşitle" - -#: includes/admin/admin-internal-post-type-list.php:858 -msgid "Select %s" -msgstr "Seç %s" - -#: includes/admin/admin-internal-post-type-list.php:442 -#: includes/admin/admin-internal-post-type-list.php:474 -#: includes/admin/views/acf-field-group/field.php:77 -msgid "Duplicate" -msgstr "Mükerrer" - -#: includes/admin/admin-internal-post-type-list.php:442 -msgid "Duplicate this item" -msgstr "Bu ögeyi çoğalt" - -#: includes/admin/views/acf-post-type/advanced-settings.php:41 -msgid "Supports" -msgstr "" - -#: includes/admin/admin.php:261 includes/admin/views/browse-fields-modal.php:92 -msgid "Documentation" -msgstr "" - -#: includes/admin/post-types/admin-field-groups.php:116 -#: includes/admin/post-types/admin-post-types.php:135 -#: includes/admin/post-types/admin-taxonomies.php:135 -#: includes/admin/views/acf-field-group/options.php:249 -#: includes/admin/views/acf-post-type/advanced-settings.php:62 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:114 -#: includes/admin/views/upgrade/network.php:38 -#: includes/admin/views/upgrade/network.php:49 -msgid "Description" -msgstr "Açıklama" - -#: includes/admin/admin-internal-post-type-list.php:398 -#: includes/admin/admin-internal-post-type-list.php:747 -msgid "Sync available" -msgstr "Eşitleme mevcut" - -#. translators: %s number of field groups synchronized -#: includes/admin/post-types/admin-field-groups.php:381 -msgid "Field group synchronized." -msgid_plural "%s field groups synchronized." -msgstr[0] "" -msgstr[1] "" - -#. translators: %s number of field groups duplicated -#: includes/admin/post-types/admin-field-groups.php:374 -msgid "Field group duplicated." -msgid_plural "%s field groups duplicated." -msgstr[0] "Alan grubu çoğaltıldı." -msgstr[1] "%s alan grubu çoğaltıldı." - -#: includes/admin/admin-internal-post-type-list.php:137 -msgid "Active (%s)" -msgid_plural "Active (%s)" -msgstr[0] "Etkin (%s)" -msgstr[1] "Etkin (%s)" - -#: includes/admin/admin-upgrade.php:254 -msgid "Review sites & upgrade" -msgstr "Siteleri incele ve güncelle" - -#: includes/admin/admin-upgrade.php:59 includes/admin/admin-upgrade.php:93 -#: includes/admin/admin-upgrade.php:94 includes/admin/admin-upgrade.php:230 -#: includes/admin/views/upgrade/network.php:24 -#: includes/admin/views/upgrade/upgrade.php:26 -msgid "Upgrade Database" -msgstr "Veritabanını güncelle" - -#: includes/admin/views/acf-field-group/options.php:175 -#: includes/admin/views/acf-post-type/advanced-settings.php:30 -msgid "Custom Fields" -msgstr "Ek alanlar" - -#: includes/admin/post-types/admin-field-group.php:616 -msgid "Move Field" -msgstr "Alanı taşı" - -#: includes/admin/post-types/admin-field-group.php:605 -#: includes/admin/post-types/admin-field-group.php:609 -msgid "Please select the destination for this field" -msgstr "Lütfen bu alan için bir hedef seçin" - -#. translators: Confirmation message once a field has been moved to a different -#. field group. -#: includes/admin/post-types/admin-field-group.php:567 -msgid "The %1$s field can now be found in the %2$s field group" -msgstr "%1$s alanı artık %2$s alan grubunda bulunabilir" - -#: includes/admin/post-types/admin-field-group.php:564 -msgid "Move Complete." -msgstr "Taşıma tamamlandı." - -#: includes/admin/views/acf-field-group/field.php:39 -#: includes/admin/views/acf-field-group/options.php:217 -#: includes/admin/views/acf-post-type/advanced-settings.php:78 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:130 -msgid "Active" -msgstr "Etkinleştir" - -#: includes/admin/post-types/admin-field-group.php:266 -msgid "Field Keys" -msgstr "Alan anahtarları" - -#: includes/admin/post-types/admin-field-group.php:164 -#: includes/admin/tools/class-acf-admin-tool-export.php:342 -msgid "Settings" -msgstr "Ayarlar" - -#: includes/admin/post-types/admin-field-groups.php:118 -msgid "Location" -msgstr "Konum" - -#: includes/admin/post-types/admin-field-group.php:104 -#: assets/build/js/acf-input.js:983 assets/build/js/acf-input.js:1075 -msgid "Null" -msgstr "Boş" - -#: includes/admin/post-types/admin-field-group.php:101 -#: includes/class-acf-internal-post-type.php:730 -#: includes/post-types/class-acf-field-group.php:345 -#: assets/build/js/acf-field-group.js:1510 -#: assets/build/js/acf-field-group.js:1821 -msgid "copy" -msgstr "kopyala" - -#: includes/admin/post-types/admin-field-group.php:100 -#: assets/build/js/acf-field-group.js:623 -#: assets/build/js/acf-field-group.js:778 -msgid "(this field)" -msgstr "(bu alan)" - -#: includes/admin/post-types/admin-field-group.php:98 -#: assets/build/js/acf-input.js:918 assets/build/js/acf-input.js:943 -#: assets/build/js/acf-input.js:1002 assets/build/js/acf-input.js:1030 -msgid "Checked" -msgstr "İşaretlendi" - -#: includes/admin/post-types/admin-field-group.php:94 -#: assets/build/js/acf-field-group.js:1615 -#: assets/build/js/acf-field-group.js:1933 -msgid "Move Custom Field" -msgstr "Özel alanı taşı" - -#: includes/admin/post-types/admin-field-group.php:93 -#: assets/build/js/acf-field-group.js:649 -#: assets/build/js/acf-field-group.js:804 -msgid "No toggle fields available" -msgstr "Kullanılabilir aç-kapa alan yok" - -#: includes/admin/post-types/admin-field-group.php:91 -msgid "Field group title is required" -msgstr "Alan grubu başlığı gerekli" - -#: includes/admin/post-types/admin-field-group.php:90 -#: assets/build/js/acf-field-group.js:1604 -#: assets/build/js/acf-field-group.js:1919 -msgid "This field cannot be moved until its changes have been saved" -msgstr "Bu alan, üzerinde yapılan değişiklikler kaydedilene kadar taşınamaz" - -#: includes/admin/post-types/admin-field-group.php:89 -#: assets/build/js/acf-field-group.js:1414 -#: assets/build/js/acf-field-group.js:1716 -msgid "The string \"field_\" may not be used at the start of a field name" -msgstr "Artık alan isimlerinin başlangıcında “field_” kullanılmayacak" - -#: includes/admin/post-types/admin-field-group.php:71 -msgid "Field group draft updated." -msgstr "Alan grubu taslağı güncellendi." - -#: includes/admin/post-types/admin-field-group.php:70 -msgid "Field group scheduled for." -msgstr "Alan grubu zamanlandı." - -#: includes/admin/post-types/admin-field-group.php:69 -msgid "Field group submitted." -msgstr "Alan grubu gönderildi." - -#: includes/admin/post-types/admin-field-group.php:68 -msgid "Field group saved." -msgstr "Alan grubu kaydedildi." - -#: includes/admin/post-types/admin-field-group.php:67 -msgid "Field group published." -msgstr "Alan grubu yayımlandı." - -#: includes/admin/post-types/admin-field-group.php:64 -msgid "Field group deleted." -msgstr "Alan grubu silindi." - -#: includes/admin/post-types/admin-field-group.php:62 -#: includes/admin/post-types/admin-field-group.php:63 -#: includes/admin/post-types/admin-field-group.php:65 -msgid "Field group updated." -msgstr "Alan grubu güncellendi." - -#: includes/admin/admin-tools.php:118 -#: includes/admin/views/global/navigation.php:246 -#: includes/admin/views/tools/tools.php:21 -msgid "Tools" -msgstr "Araçlar" - -#: includes/locations/abstract-acf-location.php:106 -msgid "is not equal to" -msgstr "eşit değilse" - -#: includes/locations/abstract-acf-location.php:105 -msgid "is equal to" -msgstr "eşitse" - -#: includes/locations.php:102 -msgid "Forms" -msgstr "Formlar" - -#: includes/admin/post-types/admin-post-type.php:127 includes/locations.php:100 -#: includes/locations/class-acf-location-page.php:22 -#: assets/build/js/acf-internal-post-type.js:175 -#: assets/build/js/acf-internal-post-type.js:249 -msgid "Page" -msgstr "Sayfa" - -#: includes/admin/post-types/admin-post-type.php:125 includes/locations.php:99 -#: includes/locations/class-acf-location-post.php:22 -#: assets/build/js/acf-internal-post-type.js:172 -#: assets/build/js/acf-internal-post-type.js:246 -msgid "Post" -msgstr "Yazı" - -#: includes/fields.php:354 -msgid "Relational" -msgstr "İlişkisel" - -#: includes/fields.php:353 -msgid "Choice" -msgstr "Seçim" - -#: includes/fields.php:351 -msgid "Basic" -msgstr "Basit" - -#: includes/fields.php:320 -msgid "Unknown" -msgstr "Bilinmeyen" - -#: includes/fields.php:320 -msgid "Field type does not exist" -msgstr "Var olmayan alan tipi" - -#: includes/forms/form-front.php:236 -msgid "Spam Detected" -msgstr "İstenmeyen tespit edildi" - -#: includes/forms/form-front.php:107 -msgid "Post updated" -msgstr "Yazı güncellendi" - -#: includes/forms/form-front.php:106 -msgid "Update" -msgstr "Güncelleme" - -#: includes/forms/form-front.php:57 -msgid "Validate Email" -msgstr "E-postayı doğrula" - -#: includes/fields.php:352 includes/forms/form-front.php:49 -msgid "Content" -msgstr "İçerik" - -#: includes/admin/views/acf-post-type/advanced-settings.php:21 -#: includes/forms/form-front.php:40 -msgid "Title" -msgstr "Başlık" - -#: includes/assets.php:372 includes/forms/form-comment.php:160 -#: assets/build/js/acf-input.js:7382 assets/build/js/acf-input.js:7968 -msgid "Edit field group" -msgstr "Alan grubunu düzenle" - -#: includes/admin/post-types/admin-field-group.php:117 -#: assets/build/js/acf-input.js:1125 assets/build/js/acf-input.js:1230 -msgid "Selection is less than" -msgstr "Seçim daha az" - -#: includes/admin/post-types/admin-field-group.php:116 -#: assets/build/js/acf-input.js:1106 assets/build/js/acf-input.js:1202 -msgid "Selection is greater than" -msgstr "Seçin daha büyük" - -#: includes/admin/post-types/admin-field-group.php:115 -#: assets/build/js/acf-input.js:1075 assets/build/js/acf-input.js:1170 -msgid "Value is less than" -msgstr "Değer daha az" - -#: includes/admin/post-types/admin-field-group.php:114 -#: assets/build/js/acf-input.js:1045 assets/build/js/acf-input.js:1139 -msgid "Value is greater than" -msgstr "Değer daha büyük" - -#: includes/admin/post-types/admin-field-group.php:113 -#: assets/build/js/acf-input.js:888 assets/build/js/acf-input.js:960 -msgid "Value contains" -msgstr "Değer içeriyor" - -#: includes/admin/post-types/admin-field-group.php:112 -#: assets/build/js/acf-input.js:862 assets/build/js/acf-input.js:926 -msgid "Value matches pattern" -msgstr "Değer bir desenle eşleşir" - -#: includes/admin/post-types/admin-field-group.php:111 -#: assets/build/js/acf-input.js:840 assets/build/js/acf-input.js:1023 -#: assets/build/js/acf-input.js:903 assets/build/js/acf-input.js:1116 -msgid "Value is not equal to" -msgstr "Değer eşit değilse" - -#: includes/admin/post-types/admin-field-group.php:110 -#: assets/build/js/acf-input.js:810 assets/build/js/acf-input.js:964 -#: assets/build/js/acf-input.js:864 assets/build/js/acf-input.js:1053 -msgid "Value is equal to" -msgstr "Değer eşitse" - -#: includes/admin/post-types/admin-field-group.php:109 -#: assets/build/js/acf-input.js:788 assets/build/js/acf-input.js:841 -msgid "Has no value" -msgstr "Hiçbir değer" - -#: includes/admin/post-types/admin-field-group.php:108 -#: assets/build/js/acf-input.js:758 assets/build/js/acf-input.js:783 -msgid "Has any value" -msgstr "Herhangi bir değer" - -#: includes/admin/admin-internal-post-type.php:345 -#: includes/admin/views/browse-fields-modal.php:62 includes/assets.php:353 -#: assets/build/js/acf.js:1564 assets/build/js/acf.js:1658 -msgid "Cancel" -msgstr "Vazgeç" - -#: includes/assets.php:349 assets/build/js/acf.js:1738 -#: assets/build/js/acf.js:1855 -msgid "Are you sure?" -msgstr "Emin misiniz?" - -#: includes/assets.php:369 assets/build/js/acf-input.js:9442 -#: assets/build/js/acf-input.js:10294 -msgid "%d fields require attention" -msgstr "%d alan dikkatinizi gerektiriyor" - -#: includes/assets.php:368 assets/build/js/acf-input.js:9440 -#: assets/build/js/acf-input.js:10290 -msgid "1 field requires attention" -msgstr "1 alan dikkatinizi gerektiriyor" - -#: includes/assets.php:367 includes/validation.php:288 -#: includes/validation.php:298 assets/build/js/acf-input.js:9435 -#: assets/build/js/acf-input.js:10285 -msgid "Validation failed" -msgstr "Doğrulama başarısız" - -#: includes/assets.php:366 assets/build/js/acf-input.js:9603 -#: assets/build/js/acf-input.js:10473 -msgid "Validation successful" -msgstr "Doğrulama başarılı" - -#: includes/media.php:54 assets/build/js/acf-input.js:7210 -#: assets/build/js/acf-input.js:7772 -msgid "Restricted" -msgstr "Kısıtlı" - -#: includes/media.php:53 assets/build/js/acf-input.js:7025 -#: assets/build/js/acf-input.js:7536 -msgid "Collapse Details" -msgstr "Detayları daralt" - -#: includes/media.php:52 assets/build/js/acf-input.js:7025 -#: assets/build/js/acf-input.js:7533 -msgid "Expand Details" -msgstr "Ayrıntıları genişlet" - -#: includes/admin/views/acf-post-type/advanced-settings.php:465 -#: includes/media.php:51 assets/build/js/acf-input.js:6892 -#: assets/build/js/acf-input.js:7381 -msgid "Uploaded to this post" -msgstr "Bu yazıya yüklenmiş" - -#: includes/media.php:50 assets/build/js/acf-input.js:6931 -#: assets/build/js/acf-input.js:7420 -msgctxt "verb" -msgid "Update" -msgstr "Güncelleme" - -#: includes/media.php:49 -msgctxt "verb" -msgid "Edit" -msgstr "Düzenle" - -#: includes/assets.php:363 assets/build/js/acf-input.js:9212 -#: assets/build/js/acf-input.js:10056 -msgid "The changes you made will be lost if you navigate away from this page" -msgstr "" -"Bu sayfadan başka bir sayfaya geçerseniz yaptığınız değişiklikler kaybolacak" - -#: includes/api/api-helpers.php:3395 -msgid "File type must be %s." -msgstr "Dosya tipi %s olmalı." - -#: includes/admin/post-types/admin-field-group.php:102 -#: includes/admin/views/acf-field-group/conditional-logic.php:59 -#: includes/admin/views/acf-field-group/conditional-logic.php:169 -#: includes/admin/views/acf-field-group/location-group.php:3 -#: includes/admin/views/acf-field-group/locations.php:36 -#: includes/api/api-helpers.php:3391 assets/build/js/acf-field-group.js:771 -#: assets/build/js/acf-field-group.js:2385 -#: assets/build/js/acf-field-group.js:933 -#: assets/build/js/acf-field-group.js:2807 -msgid "or" -msgstr "veya" - -#: includes/api/api-helpers.php:3364 -msgid "File size must not exceed %s." -msgstr "Dosya boyutu %s boyutunu geçmemeli." - -#: includes/api/api-helpers.php:3359 -msgid "File size must be at least %s." -msgstr "Dosya boyutu en az %s olmalı." - -#: includes/api/api-helpers.php:3344 -msgid "Image height must not exceed %dpx." -msgstr "Görsel yüksekliği %dpx değerini geçmemeli." - -#: includes/api/api-helpers.php:3339 -msgid "Image height must be at least %dpx." -msgstr "Görsel yüksekliği en az %dpx olmalı." - -#: includes/api/api-helpers.php:3325 -msgid "Image width must not exceed %dpx." -msgstr "Görsel genişliği %dpx değerini geçmemeli." - -#: includes/api/api-helpers.php:3320 -msgid "Image width must be at least %dpx." -msgstr "Görsel genişliği en az %dpx olmalı." - -#: includes/api/api-helpers.php:1561 includes/api/api-term.php:147 -msgid "(no title)" -msgstr "(başlık yok)" - -#: includes/api/api-helpers.php:853 -msgid "Full Size" -msgstr "Tam boyut" - -#: includes/api/api-helpers.php:812 -msgid "Large" -msgstr "Büyük" - -#: includes/api/api-helpers.php:811 -msgid "Medium" -msgstr "Orta" - -#: includes/api/api-helpers.php:810 -msgid "Thumbnail" -msgstr "Küçük resim" - -#: includes/acf-field-functions.php:854 -#: includes/admin/post-types/admin-field-group.php:99 -#: assets/build/js/acf-field-group.js:1077 -#: assets/build/js/acf-field-group.js:1260 -msgid "(no label)" -msgstr "(etiket yok)" - -#: includes/fields/class-acf-field-textarea.php:145 -msgid "Sets the textarea height" -msgstr "Metin alanı yüksekliğini ayarla" - -#: includes/fields/class-acf-field-textarea.php:144 -msgid "Rows" -msgstr "Satırlar" - -#: includes/fields/class-acf-field-textarea.php:25 -msgid "Text Area" -msgstr "Metin alanı" - -#: includes/fields/class-acf-field-checkbox.php:451 -msgid "Prepend an extra checkbox to toggle all choices" -msgstr "" -"En başa tüm seçimleri tersine çevirmek için ekstra bir seçim kutusu ekle" - -#: includes/fields/class-acf-field-checkbox.php:413 -msgid "Save 'custom' values to the field's choices" -msgstr "‘Özel’ değerleri alanın seçenekleri arasına kaydet" - -#: includes/fields/class-acf-field-checkbox.php:402 -msgid "Allow 'custom' values to be added" -msgstr "‘Özel’ alanların eklenebilmesine izin ver" - -#: includes/fields/class-acf-field-checkbox.php:38 -msgid "Add new choice" -msgstr "Yeni seçenek ekle" - -#: includes/fields/class-acf-field-checkbox.php:174 -msgid "Toggle All" -msgstr "Tümünü aç/kapat" - -#: includes/fields/class-acf-field-page_link.php:506 -msgid "Allow Archives URLs" -msgstr "Arşivler adresine izin ver" - -#: includes/fields/class-acf-field-page_link.php:179 -msgid "Archives" -msgstr "Arşivler" - -#: includes/fields/class-acf-field-page_link.php:25 -msgid "Page Link" -msgstr "Sayfa bağlantısı" - -#: includes/fields/class-acf-field-taxonomy.php:943 -#: includes/locations/class-acf-location-user-form.php:72 -msgid "Add" -msgstr "Ekle" - -#: includes/admin/views/acf-field-group/fields.php:53 -#: includes/fields/class-acf-field-taxonomy.php:908 -msgid "Name" -msgstr "Bağlantı ismi" - -#: includes/fields/class-acf-field-taxonomy.php:892 -msgid "%s added" -msgstr "%s eklendi" - -#: includes/fields/class-acf-field-taxonomy.php:856 -msgid "%s already exists" -msgstr "%s zaten mevcut" - -#: includes/fields/class-acf-field-taxonomy.php:844 -msgid "User unable to add new %s" -msgstr "Kullanıcı yeni %s ekleyemiyor" - -#: includes/fields/class-acf-field-taxonomy.php:742 -msgid "Term ID" -msgstr "Terim no" - -#: includes/fields/class-acf-field-taxonomy.php:741 -msgid "Term Object" -msgstr "Terim nesnesi" - -#: includes/fields/class-acf-field-taxonomy.php:726 -msgid "Load value from posts terms" -msgstr "Yazının terimlerinden değerleri yükle" - -#: includes/fields/class-acf-field-taxonomy.php:725 -msgid "Load Terms" -msgstr "Terimleri yükle" - -#: includes/fields/class-acf-field-taxonomy.php:715 -msgid "Connect selected terms to the post" -msgstr "Seçilmiş terimleri yazıya bağla" - -#: includes/fields/class-acf-field-taxonomy.php:714 -msgid "Save Terms" -msgstr "Terimleri kaydet" - -#: includes/fields/class-acf-field-taxonomy.php:704 -msgid "Allow new terms to be created whilst editing" -msgstr "Düzenlenirken yeni terimlerin oluşabilmesine izin ver" - -#: includes/fields/class-acf-field-taxonomy.php:703 -msgid "Create Terms" -msgstr "Terimleri oluştur" - -#: includes/fields/class-acf-field-taxonomy.php:762 -msgid "Radio Buttons" -msgstr "Tekli seçim" - -#: includes/fields/class-acf-field-taxonomy.php:761 -msgid "Single Value" -msgstr "Tek değer" - -#: includes/fields/class-acf-field-taxonomy.php:759 -msgid "Multi Select" -msgstr "Çoklu seçim" - -#: includes/fields/class-acf-field-checkbox.php:25 -#: includes/fields/class-acf-field-taxonomy.php:758 -msgid "Checkbox" -msgstr "İşaret kutusu" - -#: includes/fields/class-acf-field-taxonomy.php:757 -msgid "Multiple Values" -msgstr "Çoklu değer" - -#: includes/fields/class-acf-field-taxonomy.php:752 -msgid "Select the appearance of this field" -msgstr "Bu alanın görünümünü seçin" - -#: includes/fields/class-acf-field-taxonomy.php:751 -msgid "Appearance" -msgstr "Görünüm" - -#: includes/fields/class-acf-field-taxonomy.php:693 -msgid "Select the taxonomy to be displayed" -msgstr "Görüntülenecek taksonomiyi seçin" - -#: includes/fields/class-acf-field-taxonomy.php:654 -msgctxt "No Terms" -msgid "No %s" -msgstr "" - -#: includes/fields/class-acf-field-number.php:266 -msgid "Value must be equal to or lower than %d" -msgstr "Değer %d değerine eşit ya da daha küçük olmalı" - -#: includes/fields/class-acf-field-number.php:259 -msgid "Value must be equal to or higher than %d" -msgstr "Değer %d değerine eşit ya da daha büyük olmalı" - -#: includes/fields/class-acf-field-number.php:244 -msgid "Value must be a number" -msgstr "Değer bir sayı olmalı" - -#: includes/fields/class-acf-field-number.php:25 -msgid "Number" -msgstr "Numara" - -#: includes/fields/class-acf-field-radio.php:264 -msgid "Save 'other' values to the field's choices" -msgstr "‘Diğer’ değerlerini alanın seçenekleri arasına kaydet" - -#: includes/fields/class-acf-field-radio.php:253 -msgid "Add 'other' choice to allow for custom values" -msgstr "Özel değerlere izin vermek için 'diğer' seçeneği ekle" - -#: includes/admin/views/global/navigation.php:196 -msgid "Other" -msgstr "Diğer" - -#: includes/fields/class-acf-field-radio.php:25 -msgid "Radio Button" -msgstr "Radyo düğmesi" - -#: includes/fields/class-acf-field-accordion.php:107 -msgid "" -"Define an endpoint for the previous accordion to stop. This accordion will " -"not be visible." -msgstr "" -"Önceki akordeonun durması için bir son nokta tanımlayın. Bu akordeon " -"görüntülenmeyecek." - -#: includes/fields/class-acf-field-accordion.php:96 -msgid "Allow this accordion to open without closing others." -msgstr "Bu akordeonun diğerlerini kapatmadan açılmasını sağla." - -#: includes/fields/class-acf-field-accordion.php:95 -msgid "Multi-Expand" -msgstr "" - -#: includes/fields/class-acf-field-accordion.php:85 -msgid "Display this accordion as open on page load." -msgstr "Sayfa yüklemesi sırasında bu akordeonu açık olarak görüntüle." - -#: includes/fields/class-acf-field-accordion.php:84 -msgid "Open" -msgstr "Açık" - -#: includes/fields/class-acf-field-accordion.php:25 -msgid "Accordion" -msgstr "Akordiyon" - -#: includes/fields/class-acf-field-file.php:267 -#: includes/fields/class-acf-field-file.php:279 -msgid "Restrict which files can be uploaded" -msgstr "Yüklenebilecek dosyaları sınırlandırın" - -#: includes/fields/class-acf-field-file.php:220 -msgid "File ID" -msgstr "Dosya no" - -#: includes/fields/class-acf-field-file.php:219 -msgid "File URL" -msgstr "Dosya adresi" - -#: includes/fields/class-acf-field-file.php:218 -msgid "File Array" -msgstr "Dosya dizisi" - -#: includes/fields/class-acf-field-file.php:186 -msgid "Add File" -msgstr "Dosya Ekle" - -#: includes/admin/tools/class-acf-admin-tool-import.php:156 -#: includes/fields/class-acf-field-file.php:186 -msgid "No file selected" -msgstr "Dosya seçilmedi" - -#: includes/fields/class-acf-field-file.php:150 -msgid "File name" -msgstr "Dosya adı" - -#: includes/fields/class-acf-field-file.php:63 -#: assets/build/js/acf-input.js:2474 assets/build/js/acf-input.js:2625 -msgid "Update File" -msgstr "Dosyayı güncelle" - -#: includes/fields/class-acf-field-file.php:62 -#: assets/build/js/acf-input.js:2473 assets/build/js/acf-input.js:2624 -msgid "Edit File" -msgstr "Dosya düzenle" - -#: includes/admin/tools/class-acf-admin-tool-import.php:58 -#: includes/fields/class-acf-field-file.php:61 -#: assets/build/js/acf-input.js:2447 assets/build/js/acf-input.js:2597 -msgid "Select File" -msgstr "Dosya seç" - -#: includes/fields/class-acf-field-file.php:25 -msgid "File" -msgstr "Dosya" - -#: includes/fields/class-acf-field-password.php:25 -msgid "Password" -msgstr "Parola" - -#: includes/fields/class-acf-field-select.php:392 -msgid "Specify the value returned" -msgstr "Dönecek değeri belirt" - -#: includes/fields/class-acf-field-select.php:461 -msgid "Use AJAX to lazy load choices?" -msgstr "Seçimlerin tembel yüklenmesi için AJAX kullanılsın mı?" - -#: includes/fields/class-acf-field-checkbox.php:362 -#: includes/fields/class-acf-field-select.php:381 -msgid "Enter each default value on a new line" -msgstr "Her satıra bir değer girin" - -#: includes/fields/class-acf-field-select.php:252 includes/media.php:48 -#: assets/build/js/acf-input.js:6790 assets/build/js/acf-input.js:7266 -msgctxt "verb" -msgid "Select" -msgstr "Seçim" - -#: includes/fields/class-acf-field-select.php:121 -msgctxt "Select2 JS load_fail" -msgid "Loading failed" -msgstr "Yükleme başarısız oldu" - -#: includes/fields/class-acf-field-select.php:120 -msgctxt "Select2 JS searching" -msgid "Searching…" -msgstr "Aranıyor…" - -#: includes/fields/class-acf-field-select.php:119 -msgctxt "Select2 JS load_more" -msgid "Loading more results…" -msgstr "Daha fazla sonuç yükleniyor…" - -#: includes/fields/class-acf-field-select.php:118 -msgctxt "Select2 JS selection_too_long_n" -msgid "You can only select %d items" -msgstr "Sadece %d öge seçebilirsiniz" - -#: includes/fields/class-acf-field-select.php:117 -msgctxt "Select2 JS selection_too_long_1" -msgid "You can only select 1 item" -msgstr "Sadece 1 öge seçebilirsiniz" - -#: includes/fields/class-acf-field-select.php:116 -msgctxt "Select2 JS input_too_long_n" -msgid "Please delete %d characters" -msgstr "Lütfen %d karakter silin" - -#: includes/fields/class-acf-field-select.php:115 -msgctxt "Select2 JS input_too_long_1" -msgid "Please delete 1 character" -msgstr "Lütfen 1 karakter silin" - -#: includes/fields/class-acf-field-select.php:114 -msgctxt "Select2 JS input_too_short_n" -msgid "Please enter %d or more characters" -msgstr "Lütfen %d veya daha fazla karakter girin" - -#: includes/fields/class-acf-field-select.php:113 -msgctxt "Select2 JS input_too_short_1" -msgid "Please enter 1 or more characters" -msgstr "Lütfen 1 veya daha fazla karakter girin" - -#: includes/fields/class-acf-field-select.php:112 -msgctxt "Select2 JS matches_0" -msgid "No matches found" -msgstr "Eşleşme yok" - -#: includes/fields/class-acf-field-select.php:111 -msgctxt "Select2 JS matches_n" -msgid "%d results are available, use up and down arrow keys to navigate." -msgstr "%d sonuç bulundu. Dolaşmak için yukarı ve aşağı okları kullanın." - -#: includes/fields/class-acf-field-select.php:110 -msgctxt "Select2 JS matches_1" -msgid "One result is available, press enter to select it." -msgstr "Bir sonuç bulundu, seçmek için enter tuşuna basın." - -#: includes/fields/class-acf-field-select.php:25 -#: includes/fields/class-acf-field-taxonomy.php:763 -msgctxt "noun" -msgid "Select" -msgstr "Seçim" - -#: includes/fields/class-acf-field-user.php:73 -msgid "User ID" -msgstr "Kullanıcı No" - -#: includes/fields/class-acf-field-user.php:72 -msgid "User Object" -msgstr "Kullanıcı nesnesi" - -#: includes/fields/class-acf-field-user.php:71 -msgid "User Array" -msgstr "Kullanıcı dizisi" - -#: includes/fields/class-acf-field-user.php:59 -msgid "All user roles" -msgstr "Bütün kullanıcı rolleri" - -#: includes/fields/class-acf-field-user.php:51 -msgid "Filter by Role" -msgstr "" - -#: includes/fields/class-acf-field-user.php:15 includes/locations.php:101 -msgid "User" -msgstr "Kullanıcı" - -#: includes/fields/class-acf-field-separator.php:25 -msgid "Separator" -msgstr "Ayırıcı" - -#: includes/fields/class-acf-field-color_picker.php:75 -msgid "Select Color" -msgstr "Renk seç" - -#: includes/admin/post-types/admin-post-type.php:129 -#: includes/admin/post-types/admin-taxonomy.php:131 -#: includes/fields/class-acf-field-color_picker.php:73 -#: assets/build/js/acf-internal-post-type.js:72 -#: assets/build/js/acf-internal-post-type.js:86 -msgid "Default" -msgstr "Varsayılan" - -#: includes/admin/views/acf-post-type/advanced-settings.php:89 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:141 -#: includes/fields/class-acf-field-color_picker.php:71 -msgid "Clear" -msgstr "Temizle" - -#: includes/fields/class-acf-field-color_picker.php:25 -msgid "Color Picker" -msgstr "Renk seçici" - -#: includes/fields/class-acf-field-date_time_picker.php:88 -msgctxt "Date Time Picker JS pmTextShort" -msgid "P" -msgstr "P" - -#: includes/fields/class-acf-field-date_time_picker.php:87 -msgctxt "Date Time Picker JS pmText" -msgid "PM" -msgstr "PM" - -#: includes/fields/class-acf-field-date_time_picker.php:84 -msgctxt "Date Time Picker JS amTextShort" -msgid "A" -msgstr "A" - -#: includes/fields/class-acf-field-date_time_picker.php:83 -msgctxt "Date Time Picker JS amText" -msgid "AM" -msgstr "AM" - -#: includes/fields/class-acf-field-date_time_picker.php:81 -msgctxt "Date Time Picker JS selectText" -msgid "Select" -msgstr "Seçim" - -#: includes/fields/class-acf-field-date_time_picker.php:80 -msgctxt "Date Time Picker JS closeText" -msgid "Done" -msgstr "Bitti" - -#: includes/fields/class-acf-field-date_time_picker.php:79 -msgctxt "Date Time Picker JS currentText" -msgid "Now" -msgstr "Şimdi" - -#: includes/fields/class-acf-field-date_time_picker.php:78 -msgctxt "Date Time Picker JS timezoneText" -msgid "Time Zone" -msgstr "Zaman dilimi" - -#: includes/fields/class-acf-field-date_time_picker.php:77 -msgctxt "Date Time Picker JS microsecText" -msgid "Microsecond" -msgstr "Mikrosaniye" - -#: includes/fields/class-acf-field-date_time_picker.php:76 -msgctxt "Date Time Picker JS millisecText" -msgid "Millisecond" -msgstr "Milisaniye" - -#: includes/fields/class-acf-field-date_time_picker.php:75 -msgctxt "Date Time Picker JS secondText" -msgid "Second" -msgstr "İkinci" - -#: includes/fields/class-acf-field-date_time_picker.php:74 -msgctxt "Date Time Picker JS minuteText" -msgid "Minute" -msgstr "Dakika" - -#: includes/fields/class-acf-field-date_time_picker.php:73 -msgctxt "Date Time Picker JS hourText" -msgid "Hour" -msgstr "Saat" - -#: includes/fields/class-acf-field-date_time_picker.php:72 -msgctxt "Date Time Picker JS timeText" -msgid "Time" -msgstr "Zaman" - -#: includes/fields/class-acf-field-date_time_picker.php:71 -msgctxt "Date Time Picker JS timeOnlyTitle" -msgid "Choose Time" -msgstr "Zamanı se" - -#: includes/fields/class-acf-field-date_time_picker.php:25 -msgid "Date Time Picker" -msgstr "Tarih zaman seçici" - -#: includes/fields/class-acf-field-accordion.php:106 -msgid "Endpoint" -msgstr "Uç nokta" - -#: includes/admin/views/acf-field-group/options.php:130 -#: includes/fields/class-acf-field-tab.php:115 -msgid "Left aligned" -msgstr "Sola hizalı" - -#: includes/admin/views/acf-field-group/options.php:129 -#: includes/fields/class-acf-field-tab.php:114 -msgid "Top aligned" -msgstr "Üste hizalı" - -#: includes/fields/class-acf-field-tab.php:110 -msgid "Placement" -msgstr "Konumlandırma" - -#: includes/fields/class-acf-field-tab.php:26 -msgid "Tab" -msgstr "Sekme" - -#: includes/fields/class-acf-field-url.php:162 -msgid "Value must be a valid URL" -msgstr "Değer geçerli bir web adresi olmalı" - -#: includes/fields/class-acf-field-link.php:177 -msgid "Link URL" -msgstr "Bağlantı adresi" - -#: includes/fields/class-acf-field-link.php:176 -msgid "Link Array" -msgstr "Bağlantı dizisi" - -#: includes/fields/class-acf-field-link.php:145 -msgid "Opens in a new window/tab" -msgstr "Yeni pencerede/sekmede açılır" - -#: includes/fields/class-acf-field-link.php:140 -msgid "Select Link" -msgstr "Bağlantı seç" - -#: includes/fields/class-acf-field-link.php:25 -msgid "Link" -msgstr "Link" - -#: includes/fields/class-acf-field-email.php:25 -msgid "Email" -msgstr "EPosta" - -#: includes/fields/class-acf-field-number.php:188 -#: includes/fields/class-acf-field-range.php:217 -msgid "Step Size" -msgstr "Adım boyutu" - -#: includes/fields/class-acf-field-number.php:158 -#: includes/fields/class-acf-field-range.php:195 -msgid "Maximum Value" -msgstr "En fazla değer" - -#: includes/fields/class-acf-field-number.php:148 -#: includes/fields/class-acf-field-range.php:184 -msgid "Minimum Value" -msgstr "En az değer" - -#: includes/fields/class-acf-field-range.php:25 -msgid "Range" -msgstr "Aralık" - -#: includes/fields/class-acf-field-button-group.php:175 -#: includes/fields/class-acf-field-checkbox.php:379 -#: includes/fields/class-acf-field-radio.php:220 -#: includes/fields/class-acf-field-select.php:399 -msgid "Both (Array)" -msgstr "İkisi de (Dizi)" - -#: includes/admin/views/acf-field-group/fields.php:52 -#: includes/fields/class-acf-field-button-group.php:174 -#: includes/fields/class-acf-field-checkbox.php:378 -#: includes/fields/class-acf-field-radio.php:219 -#: includes/fields/class-acf-field-select.php:398 -msgid "Label" -msgstr "Etiket" - -#: includes/fields/class-acf-field-button-group.php:173 -#: includes/fields/class-acf-field-checkbox.php:377 -#: includes/fields/class-acf-field-radio.php:218 -#: includes/fields/class-acf-field-select.php:397 -msgid "Value" -msgstr "Değer" - -#: includes/fields/class-acf-field-button-group.php:222 -#: includes/fields/class-acf-field-checkbox.php:441 -#: includes/fields/class-acf-field-radio.php:292 -msgid "Vertical" -msgstr "Dikey" - -#: includes/fields/class-acf-field-button-group.php:221 -#: includes/fields/class-acf-field-checkbox.php:442 -#: includes/fields/class-acf-field-radio.php:293 -msgid "Horizontal" -msgstr "Yatay" - -#: includes/fields/class-acf-field-button-group.php:148 -#: includes/fields/class-acf-field-checkbox.php:352 -#: includes/fields/class-acf-field-radio.php:193 -#: includes/fields/class-acf-field-select.php:370 -msgid "red : Red" -msgstr "kirmizi : Kırmızı" - -#: includes/fields/class-acf-field-button-group.php:148 -#: includes/fields/class-acf-field-checkbox.php:352 -#: includes/fields/class-acf-field-radio.php:193 -#: includes/fields/class-acf-field-select.php:370 -msgid "For more control, you may specify both a value and label like this:" -msgstr "" -"Daha fazla kontrol için, hem bir değeri hem de bir etiketi şu şekilde " -"belirtebilirsiniz:" - -#: includes/fields/class-acf-field-button-group.php:148 -#: includes/fields/class-acf-field-checkbox.php:352 -#: includes/fields/class-acf-field-radio.php:193 -#: includes/fields/class-acf-field-select.php:370 -msgid "Enter each choice on a new line." -msgstr "Her seçeneği yeni bir satıra girin." - -#: includes/fields/class-acf-field-button-group.php:147 -#: includes/fields/class-acf-field-checkbox.php:351 -#: includes/fields/class-acf-field-radio.php:192 -#: includes/fields/class-acf-field-select.php:369 -msgid "Choices" -msgstr "Seçimler" - -#: includes/fields/class-acf-field-button-group.php:24 -msgid "Button Group" -msgstr "Tuş grubu" - -#: includes/fields/class-acf-field-button-group.php:194 -#: includes/fields/class-acf-field-page_link.php:538 -#: includes/fields/class-acf-field-post_object.php:448 -#: includes/fields/class-acf-field-radio.php:238 -#: includes/fields/class-acf-field-select.php:429 -#: includes/fields/class-acf-field-taxonomy.php:772 -#: includes/fields/class-acf-field-user.php:103 -msgid "Allow Null" -msgstr "" - -#: includes/fields/class-acf-field-page_link.php:263 -#: includes/fields/class-acf-field-post_object.php:257 -#: includes/fields/class-acf-field-taxonomy.php:930 -msgid "Parent" -msgstr "Ana" - -#: includes/fields/class-acf-field-wysiwyg.php:390 -msgid "TinyMCE will not be initialized until field is clicked" -msgstr "Alan tıklanana kadar TinyMCE hazırlanmayacaktır" - -#: includes/fields/class-acf-field-wysiwyg.php:389 -msgid "Delay Initialization" -msgstr "" - -#: includes/fields/class-acf-field-wysiwyg.php:378 -msgid "Show Media Upload Buttons" -msgstr "" - -#: includes/fields/class-acf-field-wysiwyg.php:362 -msgid "Toolbar" -msgstr "Araç çubuğu" - -#: includes/fields/class-acf-field-wysiwyg.php:354 -msgid "Text Only" -msgstr "Sadece Metin" - -#: includes/fields/class-acf-field-wysiwyg.php:353 -msgid "Visual Only" -msgstr "Sadece görsel" - -#: includes/fields/class-acf-field-wysiwyg.php:352 -msgid "Visual & Text" -msgstr "Görsel ve metin" - -#: includes/fields/class-acf-field-wysiwyg.php:347 -msgid "Tabs" -msgstr "Seklemeler" - -#: includes/fields/class-acf-field-wysiwyg.php:285 -msgid "Click to initialize TinyMCE" -msgstr "TinyMCE hazırlamak için tıklayın" - -#: includes/fields/class-acf-field-wysiwyg.php:279 -msgctxt "Name for the Text editor tab (formerly HTML)" -msgid "Text" -msgstr "Metin" - -#: includes/fields/class-acf-field-wysiwyg.php:278 -msgid "Visual" -msgstr "Görsel" - -#: includes/fields/class-acf-field-text.php:189 -#: includes/fields/class-acf-field-textarea.php:236 -msgid "Value must not exceed %d characters" -msgstr "Değer %d karakteri geçmemelidir" - -#: includes/fields/class-acf-field-text.php:124 -#: includes/fields/class-acf-field-textarea.php:124 -msgid "Leave blank for no limit" -msgstr "Limit olmaması için boş bırakın" - -#: includes/fields/class-acf-field-text.php:123 -#: includes/fields/class-acf-field-textarea.php:123 -msgid "Character Limit" -msgstr "Karakter limiti" - -#: includes/fields/class-acf-field-email.php:158 -#: includes/fields/class-acf-field-number.php:209 -#: includes/fields/class-acf-field-password.php:105 -#: includes/fields/class-acf-field-range.php:239 -#: includes/fields/class-acf-field-text.php:164 -msgid "Appears after the input" -msgstr "Girdi alanından sonra görünür" - -#: includes/fields/class-acf-field-email.php:157 -#: includes/fields/class-acf-field-number.php:208 -#: includes/fields/class-acf-field-password.php:104 -#: includes/fields/class-acf-field-range.php:238 -#: includes/fields/class-acf-field-text.php:163 -msgid "Append" -msgstr "Sonuna ekle" - -#: includes/fields/class-acf-field-email.php:148 -#: includes/fields/class-acf-field-number.php:199 -#: includes/fields/class-acf-field-password.php:95 -#: includes/fields/class-acf-field-range.php:229 -#: includes/fields/class-acf-field-text.php:154 -msgid "Appears before the input" -msgstr "Girdi alanından önce görünür" - -#: includes/fields/class-acf-field-email.php:147 -#: includes/fields/class-acf-field-number.php:198 -#: includes/fields/class-acf-field-password.php:94 -#: includes/fields/class-acf-field-range.php:228 -#: includes/fields/class-acf-field-text.php:153 -msgid "Prepend" -msgstr "Önüne ekle" - -#: includes/fields/class-acf-field-email.php:138 -#: includes/fields/class-acf-field-number.php:179 -#: includes/fields/class-acf-field-password.php:85 -#: includes/fields/class-acf-field-text.php:144 -#: includes/fields/class-acf-field-textarea.php:156 -#: includes/fields/class-acf-field-url.php:122 -msgid "Appears within the input" -msgstr "Girdi alanının içinde görünür" - -#: includes/fields/class-acf-field-email.php:137 -#: includes/fields/class-acf-field-number.php:178 -#: includes/fields/class-acf-field-password.php:84 -#: includes/fields/class-acf-field-text.php:143 -#: includes/fields/class-acf-field-textarea.php:155 -#: includes/fields/class-acf-field-url.php:121 -msgid "Placeholder Text" -msgstr "Yer tutucu metin" - -#: includes/fields/class-acf-field-button-group.php:158 -#: includes/fields/class-acf-field-email.php:118 -#: includes/fields/class-acf-field-number.php:129 -#: includes/fields/class-acf-field-radio.php:203 -#: includes/fields/class-acf-field-range.php:165 -#: includes/fields/class-acf-field-text.php:104 -#: includes/fields/class-acf-field-textarea.php:104 -#: includes/fields/class-acf-field-url.php:102 -#: includes/fields/class-acf-field-wysiwyg.php:312 -msgid "Appears when creating a new post" -msgstr "Yeni bir yazı oluştururken görünür" - -#: includes/fields/class-acf-field-text.php:25 -msgid "Text" -msgstr "Metin" - -#: includes/fields/class-acf-field-relationship.php:794 -msgid "%1$s requires at least %2$s selection" -msgid_plural "%1$s requires at least %2$s selections" -msgstr[0] "%1$s en az %2$s seçim gerektirir" -msgstr[1] "%1$s en az %2$s seçim gerektirir" - -#: includes/fields/class-acf-field-post_object.php:417 -#: includes/fields/class-acf-field-relationship.php:644 -msgid "Post ID" -msgstr "Yazı ID" - -#: includes/fields/class-acf-field-post_object.php:17 -#: includes/fields/class-acf-field-post_object.php:416 -#: includes/fields/class-acf-field-relationship.php:643 -msgid "Post Object" -msgstr "Yazı nesnesi" - -#: includes/fields/class-acf-field-relationship.php:676 -msgid "Maximum Posts" -msgstr "" - -#: includes/fields/class-acf-field-relationship.php:666 -msgid "Minimum Posts" -msgstr "" - -#: includes/admin/views/acf-field-group/options.php:183 -#: includes/admin/views/acf-post-type/advanced-settings.php:29 -#: includes/fields/class-acf-field-relationship.php:701 -msgid "Featured Image" -msgstr "Öne çıkan görsel" - -#: includes/fields/class-acf-field-relationship.php:697 -msgid "Selected elements will be displayed in each result" -msgstr "Her sonuç içinde seçilmiş elemanlar görüntülenir" - -#: includes/fields/class-acf-field-relationship.php:696 -msgid "Elements" -msgstr "Elemanlar" - -#: includes/fields/class-acf-field-relationship.php:630 -#: includes/fields/class-acf-field-taxonomy.php:20 -#: includes/fields/class-acf-field-taxonomy.php:692 -#: includes/locations/class-acf-location-taxonomy.php:22 -msgid "Taxonomy" -msgstr "Etiketleme" - -#: includes/fields/class-acf-field-relationship.php:629 -#: includes/locations/class-acf-location-post-type.php:22 -#: includes/post-types/class-acf-post-type.php:92 -msgid "Post Type" -msgstr "Yazı tipi" - -#: includes/fields/class-acf-field-relationship.php:623 -msgid "Filters" -msgstr "Filtreler" - -#: includes/fields/class-acf-field-page_link.php:499 -#: includes/fields/class-acf-field-post_object.php:404 -#: includes/fields/class-acf-field-relationship.php:616 -msgid "All taxonomies" -msgstr "Tüm taksonomiler" - -#: includes/fields/class-acf-field-page_link.php:491 -#: includes/fields/class-acf-field-post_object.php:396 -#: includes/fields/class-acf-field-relationship.php:608 -msgid "Filter by Taxonomy" -msgstr "Taksonomiye göre filtre" - -#: includes/fields/class-acf-field-page_link.php:469 -#: includes/fields/class-acf-field-post_object.php:374 -#: includes/fields/class-acf-field-relationship.php:586 -msgid "All post types" -msgstr "Tüm yazı tipleri" - -#: includes/fields/class-acf-field-page_link.php:461 -#: includes/fields/class-acf-field-post_object.php:366 -#: includes/fields/class-acf-field-relationship.php:578 -msgid "Filter by Post Type" -msgstr "Yazı tipine göre filtre" - -#: includes/fields/class-acf-field-relationship.php:476 -msgid "Search..." -msgstr "Ara..." - -#: includes/fields/class-acf-field-relationship.php:406 -msgid "Select taxonomy" -msgstr "Taksonomi seç" - -#: includes/fields/class-acf-field-relationship.php:397 -msgid "Select post type" -msgstr "Yazı tipi seç" - -#: includes/fields/class-acf-field-relationship.php:61 -#: assets/build/js/acf-input.js:3930 assets/build/js/acf-input.js:4214 -msgid "No matches found" -msgstr "Eşleşme yok" - -#: includes/fields/class-acf-field-relationship.php:60 -#: assets/build/js/acf-input.js:3913 assets/build/js/acf-input.js:4193 -msgid "Loading" -msgstr "Yükleniyor" - -#: includes/fields/class-acf-field-relationship.php:59 -#: assets/build/js/acf-input.js:3818 assets/build/js/acf-input.js:4084 -msgid "Maximum values reached ( {max} values )" -msgstr "En yüksek değerlere ulaşıldı ({max} değerleri)" - -#: includes/fields/class-acf-field-relationship.php:17 -msgid "Relationship" -msgstr "İlişkili" - -#: includes/fields/class-acf-field-file.php:291 -#: includes/fields/class-acf-field-image.php:317 -msgid "Comma separated list. Leave blank for all types" -msgstr "Virgül ile ayrılmış liste. Tüm tipler için boş bırakın" - -#: includes/fields/class-acf-field-file.php:290 -#: includes/fields/class-acf-field-image.php:316 -msgid "Allowed File Types" -msgstr "" - -#: includes/fields/class-acf-field-file.php:278 -#: includes/fields/class-acf-field-image.php:280 -msgid "Maximum" -msgstr "En fazla" - -#: includes/fields/class-acf-field-file.php:154 -#: includes/fields/class-acf-field-file.php:270 -#: includes/fields/class-acf-field-file.php:282 -#: includes/fields/class-acf-field-image.php:271 -#: includes/fields/class-acf-field-image.php:307 -msgid "File size" -msgstr "Dosya boyutu" - -#: includes/fields/class-acf-field-image.php:245 -#: includes/fields/class-acf-field-image.php:281 -msgid "Restrict which images can be uploaded" -msgstr "Hangi görsellerin yüklenebileceğini sınırlandırın" - -#: includes/fields/class-acf-field-file.php:266 -#: includes/fields/class-acf-field-image.php:244 -msgid "Minimum" -msgstr "En az" - -#: includes/fields/class-acf-field-file.php:235 -#: includes/fields/class-acf-field-image.php:210 -msgid "Uploaded to post" -msgstr "Yazıya yüklendi" - -#: includes/fields/class-acf-field-file.php:234 -#: includes/fields/class-acf-field-image.php:209 -#: includes/locations/class-acf-location-attachment.php:73 -#: includes/locations/class-acf-location-comment.php:61 -#: includes/locations/class-acf-location-nav-menu.php:74 -#: includes/locations/class-acf-location-taxonomy.php:63 -#: includes/locations/class-acf-location-user-form.php:71 -#: includes/locations/class-acf-location-user-role.php:78 -#: includes/locations/class-acf-location-widget.php:65 -msgid "All" -msgstr "Tümü" - -#: includes/fields/class-acf-field-file.php:229 -#: includes/fields/class-acf-field-image.php:204 -msgid "Limit the media library choice" -msgstr "Ortam kitaplığı seçimini sınırlayın" - -#: includes/fields/class-acf-field-file.php:228 -#: includes/fields/class-acf-field-image.php:203 -msgid "Library" -msgstr "Kitaplık" - -#: includes/fields/class-acf-field-image.php:336 -msgid "Preview Size" -msgstr "Önizleme boyutu" - -#: includes/fields/class-acf-field-image.php:195 -msgid "Image ID" -msgstr "Görsel no" - -#: includes/fields/class-acf-field-image.php:194 -msgid "Image URL" -msgstr "Resim Adresi" - -#: includes/fields/class-acf-field-image.php:193 -msgid "Image Array" -msgstr "Görsel dizisi" - -#: includes/fields/class-acf-field-button-group.php:168 -#: includes/fields/class-acf-field-checkbox.php:372 -#: includes/fields/class-acf-field-file.php:213 -#: includes/fields/class-acf-field-link.php:171 -#: includes/fields/class-acf-field-radio.php:213 -msgid "Specify the returned value on front end" -msgstr "Ön yüzden dönecek değeri belirleyin" - -#: includes/fields/class-acf-field-button-group.php:167 -#: includes/fields/class-acf-field-checkbox.php:371 -#: includes/fields/class-acf-field-file.php:212 -#: includes/fields/class-acf-field-link.php:170 -#: includes/fields/class-acf-field-radio.php:212 -#: includes/fields/class-acf-field-taxonomy.php:736 -msgid "Return Value" -msgstr "Dönüş değeri" - -#: includes/fields/class-acf-field-image.php:162 -msgid "Add Image" -msgstr "Görsel ekle" - -#: includes/fields/class-acf-field-image.php:162 -msgid "No image selected" -msgstr "Resim seçilmedi" - -#: includes/assets.php:352 includes/fields/class-acf-field-file.php:162 -#: includes/fields/class-acf-field-image.php:142 -#: includes/fields/class-acf-field-link.php:145 assets/build/js/acf.js:1563 -#: assets/build/js/acf.js:1657 -msgid "Remove" -msgstr "Kaldır" - -#: includes/admin/views/acf-field-group/field.php:76 -#: includes/fields/class-acf-field-file.php:160 -#: includes/fields/class-acf-field-image.php:140 -#: includes/fields/class-acf-field-link.php:145 -msgid "Edit" -msgstr "Düzenle" - -#: includes/fields/class-acf-field-image.php:70 includes/media.php:55 -#: assets/build/js/acf-input.js:6837 assets/build/js/acf-input.js:7320 -msgid "All images" -msgstr "Tüm görseller" - -#: includes/fields/class-acf-field-image.php:69 -#: assets/build/js/acf-input.js:3181 assets/build/js/acf-input.js:3399 -msgid "Update Image" -msgstr "Görseli güncelle" - -#: includes/fields/class-acf-field-image.php:68 -#: assets/build/js/acf-input.js:3180 assets/build/js/acf-input.js:3398 -msgid "Edit Image" -msgstr "Resmi düzenle" - -#: includes/fields/class-acf-field-image.php:67 -#: assets/build/js/acf-input.js:3156 assets/build/js/acf-input.js:3373 -msgid "Select Image" -msgstr "Resim Seç" - -#: includes/fields/class-acf-field-image.php:25 -msgid "Image" -msgstr "Görsel" - -#: includes/fields/class-acf-field-message.php:125 -msgid "Allow HTML markup to display as visible text instead of rendering" -msgstr "Görünür metin olarak HTML kodlamasının görüntülenmesine izin ver" - -#: includes/fields/class-acf-field-message.php:124 -msgid "Escape HTML" -msgstr "HTML’i güvenli hale getir" - -#: includes/fields/class-acf-field-message.php:116 -#: includes/fields/class-acf-field-textarea.php:172 -msgid "No Formatting" -msgstr "Biçimlendirme yok" - -#: includes/fields/class-acf-field-message.php:115 -#: includes/fields/class-acf-field-textarea.php:171 -msgid "Automatically add <br>" -msgstr "Otomatik ekle <br>" - -#: includes/fields/class-acf-field-message.php:114 -#: includes/fields/class-acf-field-textarea.php:170 -msgid "Automatically add paragraphs" -msgstr "Otomatik paragraf ekle" - -#: includes/fields/class-acf-field-message.php:110 -#: includes/fields/class-acf-field-textarea.php:166 -msgid "Controls how new lines are rendered" -msgstr "Yeni satırların nasıl görüntüleneceğini denetler" - -#: includes/fields/class-acf-field-message.php:109 -#: includes/fields/class-acf-field-textarea.php:165 -msgid "New Lines" -msgstr "Yeni satırlar" - -#: includes/fields/class-acf-field-date_picker.php:232 -#: includes/fields/class-acf-field-date_time_picker.php:220 -msgid "Week Starts On" -msgstr "Hafta başlangıcı" - -#: includes/fields/class-acf-field-date_picker.php:201 -msgid "The format used when saving a value" -msgstr "Bir değer kaydedilirken kullanılacak biçim" - -#: includes/fields/class-acf-field-date_picker.php:200 -msgid "Save Format" -msgstr "Biçimi kaydet" - -#: includes/fields/class-acf-field-date_picker.php:67 -msgctxt "Date Picker JS weekHeader" -msgid "Wk" -msgstr "Hf" - -#: includes/fields/class-acf-field-date_picker.php:66 -msgctxt "Date Picker JS prevText" -msgid "Prev" -msgstr "Önceki" - -#: includes/fields/class-acf-field-date_picker.php:65 -msgctxt "Date Picker JS nextText" -msgid "Next" -msgstr "Sonraki" - -#: includes/fields/class-acf-field-date_picker.php:64 -msgctxt "Date Picker JS currentText" -msgid "Today" -msgstr "Bugün" - -#: includes/fields/class-acf-field-date_picker.php:63 -msgctxt "Date Picker JS closeText" -msgid "Done" -msgstr "Bitti" - -#: includes/fields/class-acf-field-date_picker.php:25 -msgid "Date Picker" -msgstr "Tarih seçici" - -#: includes/fields/class-acf-field-image.php:248 -#: includes/fields/class-acf-field-image.php:284 -#: includes/fields/class-acf-field-oembed.php:268 -msgid "Width" -msgstr "Genişlik" - -#: includes/fields/class-acf-field-oembed.php:265 -#: includes/fields/class-acf-field-oembed.php:277 -msgid "Embed Size" -msgstr "Gömme boyutu" - -#: includes/fields/class-acf-field-oembed.php:222 -msgid "Enter URL" -msgstr "Adres girin" - -#: includes/fields/class-acf-field-oembed.php:25 -msgid "oEmbed" -msgstr "oEmbed" - -#: includes/fields/class-acf-field-true_false.php:184 -msgid "Text shown when inactive" -msgstr "Etkin değilken görüntülenen metin" - -#: includes/fields/class-acf-field-true_false.php:183 -msgid "Off Text" -msgstr "Kapalı metni" - -#: includes/fields/class-acf-field-true_false.php:168 -msgid "Text shown when active" -msgstr "Etkinken görüntülenen metin" - -#: includes/fields/class-acf-field-true_false.php:167 -msgid "On Text" -msgstr "Açık metni" - -#: includes/fields/class-acf-field-select.php:450 -#: includes/fields/class-acf-field-true_false.php:199 -msgid "Stylized UI" -msgstr "" - -#: includes/fields/class-acf-field-button-group.php:157 -#: includes/fields/class-acf-field-checkbox.php:361 -#: includes/fields/class-acf-field-color_picker.php:156 -#: includes/fields/class-acf-field-email.php:117 -#: includes/fields/class-acf-field-number.php:128 -#: includes/fields/class-acf-field-radio.php:202 -#: includes/fields/class-acf-field-range.php:164 -#: includes/fields/class-acf-field-select.php:380 -#: includes/fields/class-acf-field-text.php:103 -#: includes/fields/class-acf-field-textarea.php:103 -#: includes/fields/class-acf-field-true_false.php:147 -#: includes/fields/class-acf-field-url.php:101 -#: includes/fields/class-acf-field-wysiwyg.php:311 -msgid "Default Value" -msgstr "Varsayılan değer" - -#: includes/fields/class-acf-field-true_false.php:138 -msgid "Displays text alongside the checkbox" -msgstr "İşaret kutusunun yanında görüntülenen metin" - -#: includes/fields/class-acf-field-message.php:26 -#: includes/fields/class-acf-field-message.php:99 -#: includes/fields/class-acf-field-true_false.php:137 -msgid "Message" -msgstr "Mesaj" - -#: includes/assets.php:351 includes/fields/class-acf-field-true_false.php:86 -#: includes/fields/class-acf-field-true_false.php:187 -#: assets/build/js/acf.js:1740 assets/build/js/acf.js:1857 -msgid "No" -msgstr "Hayır" - -#: includes/assets.php:350 includes/fields/class-acf-field-true_false.php:83 -#: includes/fields/class-acf-field-true_false.php:171 -#: assets/build/js/acf.js:1739 assets/build/js/acf.js:1856 -msgid "Yes" -msgstr "Evet" - -#: includes/fields/class-acf-field-true_false.php:25 -msgid "True / False" -msgstr "Doğru / yanlış" - -#: includes/fields/class-acf-field-group.php:474 -msgid "Row" -msgstr "Satır" - -#: includes/fields/class-acf-field-group.php:473 -msgid "Table" -msgstr "Tablo" - -#: includes/admin/post-types/admin-field-group.php:140 -#: includes/fields/class-acf-field-group.php:472 -msgid "Block" -msgstr "Blok" - -#: includes/fields/class-acf-field-group.php:467 -msgid "Specify the style used to render the selected fields" -msgstr "Seçili alanları görüntülemek için kullanılacak stili belirtin" - -#: includes/fields.php:356 includes/fields/class-acf-field-button-group.php:215 -#: includes/fields/class-acf-field-checkbox.php:435 -#: includes/fields/class-acf-field-group.php:466 -#: includes/fields/class-acf-field-radio.php:286 -msgid "Layout" -msgstr "Yerleşim" - -#: includes/fields/class-acf-field-group.php:450 -msgid "Sub Fields" -msgstr "Alt alanlar" - -#: includes/fields/class-acf-field-group.php:25 -msgid "Group" -msgstr "Grup" - -#: includes/fields/class-acf-field-google-map.php:235 -msgid "Customize the map height" -msgstr "Harita yüksekliğini özelleştir" - -#: includes/fields/class-acf-field-google-map.php:234 -#: includes/fields/class-acf-field-image.php:259 -#: includes/fields/class-acf-field-image.php:295 -#: includes/fields/class-acf-field-oembed.php:280 -msgid "Height" -msgstr "Ağırlık" - -#: includes/fields/class-acf-field-google-map.php:223 -msgid "Set the initial zoom level" -msgstr "Temel yaklaşma seviyesini belirle" - -#: includes/fields/class-acf-field-google-map.php:222 -msgid "Zoom" -msgstr "Yakınlaşma" - -#: includes/fields/class-acf-field-google-map.php:196 -#: includes/fields/class-acf-field-google-map.php:209 -msgid "Center the initial map" -msgstr "Haritayı ortala" - -#: includes/fields/class-acf-field-google-map.php:195 -#: includes/fields/class-acf-field-google-map.php:208 -msgid "Center" -msgstr "Merkez" - -#: includes/fields/class-acf-field-google-map.php:163 -msgid "Search for address..." -msgstr "Adres arayın…" - -#: includes/fields/class-acf-field-google-map.php:160 -msgid "Find current location" -msgstr "Şu anki konumu bul" - -#: includes/fields/class-acf-field-google-map.php:159 -msgid "Clear location" -msgstr "Konumu temizle" - -#: includes/fields/class-acf-field-google-map.php:158 -#: includes/fields/class-acf-field-relationship.php:628 -msgid "Search" -msgstr "Ara" - -#: includes/fields/class-acf-field-google-map.php:63 -#: assets/build/js/acf-input.js:2840 assets/build/js/acf-input.js:3026 -msgid "Sorry, this browser does not support geolocation" -msgstr "Üzgünüz, bu tarayıcı konumlandırma desteklemiyor" - -#: includes/fields/class-acf-field-google-map.php:25 -msgid "Google Map" -msgstr "Google haritası" - -#: includes/fields/class-acf-field-date_picker.php:212 -#: includes/fields/class-acf-field-date_time_picker.php:201 -#: includes/fields/class-acf-field-time_picker.php:132 -msgid "The format returned via template functions" -msgstr "Tema işlevlerinden dönen biçim" - -#: includes/fields/class-acf-field-color_picker.php:180 -#: includes/fields/class-acf-field-date_picker.php:211 -#: includes/fields/class-acf-field-date_time_picker.php:200 -#: includes/fields/class-acf-field-image.php:187 -#: includes/fields/class-acf-field-post_object.php:411 -#: includes/fields/class-acf-field-relationship.php:638 -#: includes/fields/class-acf-field-select.php:391 -#: includes/fields/class-acf-field-time_picker.php:131 -#: includes/fields/class-acf-field-user.php:66 -msgid "Return Format" -msgstr "Dönüş biçimi" - -#: includes/fields/class-acf-field-date_picker.php:190 -#: includes/fields/class-acf-field-date_picker.php:221 -#: includes/fields/class-acf-field-date_time_picker.php:192 -#: includes/fields/class-acf-field-date_time_picker.php:210 -#: includes/fields/class-acf-field-time_picker.php:123 -#: includes/fields/class-acf-field-time_picker.php:139 -msgid "Custom:" -msgstr "Özel:" - -#: includes/fields/class-acf-field-date_picker.php:182 -#: includes/fields/class-acf-field-date_time_picker.php:183 -#: includes/fields/class-acf-field-time_picker.php:116 -msgid "The format displayed when editing a post" -msgstr "Bir yazı düzenlenirken görüntülenecek biçim" - -#: includes/fields/class-acf-field-date_picker.php:181 -#: includes/fields/class-acf-field-date_time_picker.php:182 -#: includes/fields/class-acf-field-time_picker.php:115 -msgid "Display Format" -msgstr "Gösterim biçimi" - -#: includes/fields/class-acf-field-time_picker.php:25 -msgid "Time Picker" -msgstr "Zaman seçici" - -#. translators: counts for inactive field groups -#: acf.php:503 -msgid "Inactive (%s)" -msgid_plural "Inactive (%s)" -msgstr[0] "" -msgstr[1] "" - -#: acf.php:462 -msgid "No Fields found in Trash" -msgstr "Çöpte alan bulunamadı" - -#: acf.php:461 -msgid "No Fields found" -msgstr "Hiç alan bulunamadı" - -#: acf.php:460 -msgid "Search Fields" -msgstr "Alanlarda ara" - -#: acf.php:459 -msgid "View Field" -msgstr "Alanı görüntüle" - -#: acf.php:458 includes/admin/views/acf-field-group/fields.php:115 -msgid "New Field" -msgstr "Yeni alan" - -#: acf.php:457 -msgid "Edit Field" -msgstr "Alanı düzenle" - -#: acf.php:456 -msgid "Add New Field" -msgstr "Yeni elan ekle" - -#: acf.php:454 -msgid "Field" -msgstr "Alan" - -#: acf.php:453 includes/admin/post-types/admin-field-group.php:163 -#: includes/admin/post-types/admin-field-groups.php:119 -#: includes/admin/views/acf-field-group/fields.php:32 -msgid "Fields" -msgstr "Alanlar" - -#: acf.php:428 -msgid "No Field Groups found in Trash" -msgstr "Çöpte alan grubu bulunamadı" - -#: acf.php:427 -msgid "No Field Groups found" -msgstr "Hiç alan grubu bulunamadı" - -#: acf.php:426 -msgid "Search Field Groups" -msgstr "Alan gruplarında ara" - -#: acf.php:425 -msgid "View Field Group" -msgstr "Alan grubunu görüntüle" - -#: acf.php:424 -msgid "New Field Group" -msgstr "Yeni alan grubu" - -#: acf.php:423 -msgid "Edit Field Group" -msgstr "Alan grubunu düzenle" - -#: acf.php:422 -msgid "Add New Field Group" -msgstr "Yeni alan grubu ekle" - -#: acf.php:421 acf.php:455 -#: includes/admin/views/acf-post-type/advanced-settings.php:219 -#: includes/admin/views/acf-post-type/advanced-settings.php:221 -#: includes/post-types/class-acf-post-type.php:93 -#: includes/post-types/class-acf-taxonomy.php:92 -msgid "Add New" -msgstr "Yeni ekle" - -#: acf.php:420 -msgid "Field Group" -msgstr "Alan grubu" - -#: acf.php:419 includes/admin/post-types/admin-field-groups.php:78 -#: includes/admin/post-types/admin-post-types.php:138 -#: includes/admin/post-types/admin-taxonomies.php:138 -msgid "Field Groups" -msgstr "Alan grupları" - -#. Description of the plugin -msgid "Customize WordPress with powerful, professional and intuitive fields." -msgstr "Güçlü, profesyonel ve sezgisel alanlar ile WordPress'i özelleştirin." - -#. Plugin URI of the plugin -msgid "https://www.advancedcustomfields.com" -msgstr "https://www.advancedcustomfields.com" - -#. Plugin Name of the plugin -#: acf.php:94 -msgid "Advanced Custom Fields" -msgstr "Advanced Custom Fields" - -#: pro/acf-pro.php:27 -msgid "Advanced Custom Fields PRO" -msgstr "Advanced Custom Fields PRO" - -#: pro/blocks.php:170 -msgid "Block type name is required." -msgstr "Blok türü adı gereklidir." - -#. translators: The name of the block type -#: pro/blocks.php:178 -msgid "Block type \"%s\" is already registered." -msgstr "Blok türü \"%s\" zaten kayıtlı." - -#: pro/blocks.php:726 -msgid "Switch to Edit" -msgstr "Düzenlemeye geç" - -#: pro/blocks.php:727 -msgid "Switch to Preview" -msgstr "Önizlemeye geç" - -#: pro/blocks.php:728 -msgid "Change content alignment" -msgstr "İçerik hizalamasını değiştir" - -#. translators: %s: Block type title -#: pro/blocks.php:731 -msgid "%s settings" -msgstr "%s ayarları" - -#: pro/blocks.php:936 -msgid "This block contains no editable fields." -msgstr "" - -#. translators: %s: an admin URL to the field group edit screen -#: pro/blocks.php:942 -msgid "" -"Assign a field group to add fields to " -"this block." -msgstr "" - -#: pro/options-page.php:78 -msgid "Options Updated" -msgstr "Seçenekler güncellendi" - -#: pro/updates.php:99 -msgid "" -"To enable updates, please enter your license key on the Updates page. If you don't have a licence key, please see details & pricing." -msgstr "" -"Güncellemeleri etkinleştirmek için lütfen Güncellemeler " -"sayfasında lisans anahtarınızı girin. Eğer bir lisans anahtarınız yoksa " -"lütfen detaylar ve fiyatlama sayfasına bakın." - -#: pro/updates.php:159 -msgid "" -"ACF Activation Error. Your defined license key has changed, but an " -"error occurred when deactivating your old licence" -msgstr "" -"ACF etkinleştirme hatası. Tanımlı lisans anahtarınız değişti, ancak " -"eski lisansınızı devre dışı bırakırken bir hata oluştu" - -#: pro/updates.php:154 -msgid "" -"ACF Activation Error. Your defined license key has changed, but an " -"error occurred when connecting to activation server" -msgstr "" -"ACF etkinleştirme hatası. Tanımlı lisans anahtarınız değişti, ancak " -"etkinleştirme sunucusuna bağlanırken bir hata oluştu" - -#: pro/updates.php:192 -msgid "ACF Activation Error" -msgstr "ACF etkinleştirme hatası" - -#: pro/updates.php:187 -msgid "" -"ACF Activation Error. An error occurred when connecting to activation " -"server" -msgstr "" -"ACF etkinleştirme hatası. Etkinleştirme sunucusuna bağlanırken bir " -"hata oluştu" - -#: pro/updates.php:279 -msgid "Check Again" -msgstr "Tekrar kontrol et" - -#: pro/updates.php:593 -msgid "ACF Activation Error. Could not connect to activation server" -msgstr "" -"ACF etkinleştirme hatası. Etkinleştirme sunucusu ile bağlantı " -"kurulamadı" - -#: pro/admin/admin-options-page.php:195 -msgid "Publish" -msgstr "Yayımla" - -#: pro/admin/admin-options-page.php:199 -msgid "" -"No Custom Field Groups found for this options page. Create a " -"Custom Field Group" -msgstr "" -"Bu seçenekler sayfası için hiç özel alan grubu bulunamadı. Bir özel alan grubu oluştur" - -#: pro/admin/admin-updates.php:52 -msgid "Error. Could not connect to update server" -msgstr " Hata. Güncelleme sunucusu ile bağlantı kurulamadı" - -#: pro/admin/admin-updates.php:212 -msgid "" -"Error. Could not authenticate update package. Please check again or " -"deactivate and reactivate your ACF PRO license." -msgstr "" -"Hata. Güncelleme paketi için kimlik doğrulaması yapılamadı. Lütfen " -"ACF PRO lisansınızı kontrol edin ya da lisansınızı etkisizleştirip, tekrar " -"etkinleştirin." - -#: pro/admin/admin-updates.php:199 -msgid "" -"Error. Your license for this site has expired or been deactivated. " -"Please reactivate your ACF PRO license." -msgstr "" -"Hata. Bu sitenin lisansının süresi dolmuş veya devre dışı bırakılmış. " -"Lütfen ACF PRO lisansınızı yeniden etkinleştirin." - -#: pro/fields/class-acf-field-clone.php:27, -#: pro/fields/class-acf-field-repeater.php:31 -msgid "" -"Allows you to select and display existing fields. It does not duplicate any " -"fields in the database, but loads and displays the selected fields at run-" -"time. The Clone field can either replace itself with the selected fields or " -"display the selected fields as a group of subfields." -msgstr "" - -#: pro/fields/class-acf-field-clone.php:819 -msgid "Select one or more fields you wish to clone" -msgstr "Çoğaltmak için bir ya da daha fazla alan seçin" - -#: pro/fields/class-acf-field-clone.php:838 -msgid "Display" -msgstr "Görüntüle" - -#: pro/fields/class-acf-field-clone.php:839 -msgid "Specify the style used to render the clone field" -msgstr "Çoğaltılacak alanın görünümü için stili belirleyin" - -#: pro/fields/class-acf-field-clone.php:844 -msgid "Group (displays selected fields in a group within this field)" -msgstr "Grup (bu alanın içinde seçili alanları grup olarak gösterir)" - -#: pro/fields/class-acf-field-clone.php:845 -msgid "Seamless (replaces this field with selected fields)" -msgstr "Pürüzsüz (bu alanı seçişmiş olan alanlarla değiştirir)" - -#: pro/fields/class-acf-field-clone.php:868 -msgid "Labels will be displayed as %s" -msgstr "Etiketler %s olarak görüntülenir" - -#: pro/fields/class-acf-field-clone.php:873 -msgid "Prefix Field Labels" -msgstr "Alan etiketlerine ön ek ekle" - -#: pro/fields/class-acf-field-clone.php:883 -msgid "Values will be saved as %s" -msgstr "Değerler %s olarak kaydedilecek" - -#: pro/fields/class-acf-field-clone.php:888 -msgid "Prefix Field Names" -msgstr "Alan isimlerine ön ek ekle" - -#: pro/fields/class-acf-field-clone.php:1005 -msgid "Unknown field" -msgstr "Bilinmeyen alan" - -#: pro/fields/class-acf-field-clone.php:1042 -msgid "Unknown field group" -msgstr "Bilinmeyen alan grubu" - -#: pro/fields/class-acf-field-clone.php:1046 -msgid "All fields from %s field group" -msgstr "%s alan grubundaki tüm alanlar" - -#: pro/fields/class-acf-field-flexible-content.php:27 -msgid "" -"Allows you to define, create and manage content with total control by " -"creating layouts that contain subfields that content editors can choose from." -msgstr "" - -#: pro/fields/class-acf-field-flexible-content.php:36, -#: pro/fields/class-acf-field-repeater.php:103, -#: pro/fields/class-acf-field-repeater.php:297 -msgid "Add Row" -msgstr "Satır ekle" - -#: pro/fields/class-acf-field-flexible-content.php:76, -#: pro/fields/class-acf-field-flexible-content.php:943, -#: pro/fields/class-acf-field-flexible-content.php:1022 -msgid "layout" -msgid_plural "layouts" -msgstr[0] "yerleşim" -msgstr[1] "yerleşimler" - -#: pro/fields/class-acf-field-flexible-content.php:77 -msgid "layouts" -msgstr "yerleşimler" - -#: pro/fields/class-acf-field-flexible-content.php:81, -#: pro/fields/class-acf-field-flexible-content.php:942, -#: pro/fields/class-acf-field-flexible-content.php:1021 -msgid "This field requires at least {min} {label} {identifier}" -msgstr "Bu alan için en az gereken {min} {label} {identifier}" - -#: pro/fields/class-acf-field-flexible-content.php:82 -msgid "This field has a limit of {max} {label} {identifier}" -msgstr "Bu alan için sınır {max} {label} {identifier}" - -#: pro/fields/class-acf-field-flexible-content.php:85 -msgid "{available} {label} {identifier} available (max {max})" -msgstr "{available} {label} {identifier} kullanılabilir (en fazla {max})" - -#: pro/fields/class-acf-field-flexible-content.php:86 -msgid "{required} {label} {identifier} required (min {min})" -msgstr "{required} {label} {identifier} gerekli (min {min})" - -#: pro/fields/class-acf-field-flexible-content.php:89 -msgid "Flexible Content requires at least 1 layout" -msgstr "Esnek içerik, en az 1 yerleşim gerektirir" - -#: pro/fields/class-acf-field-flexible-content.php:282 -msgid "Click the \"%s\" button below to start creating your layout" -msgstr "" -"Kendi yerleşiminizi oluşturmaya başlamak için aşağıdaki \"%s \" tuşuna " -"tıklayın" - -#: pro/fields/class-acf-field-flexible-content.php:423 -msgid "Add layout" -msgstr "Yerleşim ekle" - -#: pro/fields/class-acf-field-flexible-content.php:424 -msgid "Duplicate layout" -msgstr "Düzeni çoğalt" - -#: pro/fields/class-acf-field-flexible-content.php:425 -msgid "Remove layout" -msgstr "Yerleşimi çıkar" - -#: pro/fields/class-acf-field-flexible-content.php:426, -#: pro/fields/class-acf-repeater-table.php:382 -msgid "Click to toggle" -msgstr "Geçiş yapmak için tıklayın" - -#: pro/fields/class-acf-field-flexible-content.php:562 -msgid "Delete Layout" -msgstr "Yerleşimi sil" - -#: pro/fields/class-acf-field-flexible-content.php:563 -msgid "Duplicate Layout" -msgstr "Yerleşimi çoğalt" - -#: pro/fields/class-acf-field-flexible-content.php:564 -msgid "Add New Layout" -msgstr "Yeni yerleşim ekle" - -#: pro/fields/class-acf-field-flexible-content.php:564 -#, fuzzy -#| msgid "Add layout" -msgid "Add Layout" -msgstr "Yerleşim ekle" - -#: pro/fields/class-acf-field-flexible-content.php:647 -msgid "Min" -msgstr "En düşük" - -#: pro/fields/class-acf-field-flexible-content.php:662 -msgid "Max" -msgstr "En yüksek" - -#: pro/fields/class-acf-field-flexible-content.php:705 -msgid "Minimum Layouts" -msgstr "En az yerleşim" - -#: pro/fields/class-acf-field-flexible-content.php:716 -msgid "Maximum Layouts" -msgstr "En fazla yerleşim" - -#: pro/fields/class-acf-field-flexible-content.php:727, -#: pro/fields/class-acf-field-repeater.php:293 -msgid "Button Label" -msgstr "Tuş etiketi" - -#: pro/fields/class-acf-field-flexible-content.php:1710, -#: pro/fields/class-acf-field-repeater.php:918 -msgid "%s must be of type array or null." -msgstr "%s dizi veya null türünde olmalıdır." - -#: pro/fields/class-acf-field-flexible-content.php:1721 -msgid "%1$s must contain at least %2$s %3$s layout." -msgid_plural "%1$s must contain at least %2$s %3$s layouts." -msgstr[0] "%1$s en az %2$s %3$s düzen içermelidir." -msgstr[1] "%1$s en az %2$s %3$s düzen içermelidir." - -#: pro/fields/class-acf-field-flexible-content.php:1737 -msgid "%1$s must contain at most %2$s %3$s layout." -msgid_plural "%1$s must contain at most %2$s %3$s layouts." -msgstr[0] "%1$s en fazla %2$s %3$s düzeni içermelidir." -msgstr[1] "%1$s en fazla %2$s %3$s düzeni içermelidir." - -#: pro/fields/class-acf-field-gallery.php:27 -msgid "" -"An interactive interface for managing a collection of attachments, such as " -"images." -msgstr "" - -#: pro/fields/class-acf-field-gallery.php:77 -msgid "Add Image to Gallery" -msgstr "Galeriye görsel ekle" - -#: pro/fields/class-acf-field-gallery.php:78 -msgid "Maximum selection reached" -msgstr "En fazla seçim aşıldı" - -#: pro/fields/class-acf-field-gallery.php:324 -msgid "Length" -msgstr "Uzunluk" - -#: pro/fields/class-acf-field-gallery.php:368 -msgid "Caption" -msgstr "Başlık" - -#: pro/fields/class-acf-field-gallery.php:380 -msgid "Alt Text" -msgstr "Alternatif metin" - -#: pro/fields/class-acf-field-gallery.php:504 -msgid "Add to gallery" -msgstr "Galeriye ekle" - -#: pro/fields/class-acf-field-gallery.php:508 -msgid "Bulk actions" -msgstr "Toplu eylemler" - -#: pro/fields/class-acf-field-gallery.php:509 -msgid "Sort by date uploaded" -msgstr "Yüklenme tarihine göre sırala" - -#: pro/fields/class-acf-field-gallery.php:510 -msgid "Sort by date modified" -msgstr "Değiştirme tarihine göre sırala" - -#: pro/fields/class-acf-field-gallery.php:511 -msgid "Sort by title" -msgstr "Başlığa göre sırala" - -#: pro/fields/class-acf-field-gallery.php:512 -msgid "Reverse current order" -msgstr "Sıralamayı ters çevir" - -#: pro/fields/class-acf-field-gallery.php:524 -msgid "Close" -msgstr "Kapat" - -#: pro/fields/class-acf-field-gallery.php:615 -msgid "Minimum Selection" -msgstr "En az seçim" - -#: pro/fields/class-acf-field-gallery.php:625 -msgid "Maximum Selection" -msgstr "En fazla seçim" - -#: pro/fields/class-acf-field-gallery.php:707 -msgid "Allowed file types" -msgstr "İzin verilen dosya tipleri" - -#: pro/fields/class-acf-field-gallery.php:727 -msgid "Insert" -msgstr "Ekle" - -#: pro/fields/class-acf-field-gallery.php:728 -msgid "Specify where new attachments are added" -msgstr "Yeni eklerin nereye ekleneceğini belirtin" - -#: pro/fields/class-acf-field-gallery.php:732 -msgid "Append to the end" -msgstr "Sona ekle" - -#: pro/fields/class-acf-field-gallery.php:733 -msgid "Prepend to the beginning" -msgstr "En başa ekleyin" - -#: pro/fields/class-acf-field-repeater.php:66, -#: pro/fields/class-acf-field-repeater.php:463 -#, fuzzy -#| msgid "Minimum rows reached ({min} rows)" -msgid "Minimum rows not reached ({min} rows)" -msgstr "En az satır sayısına ulaşıldı ({min} satır)" - -#: pro/fields/class-acf-field-repeater.php:67 -msgid "Maximum rows reached ({max} rows)" -msgstr "En fazla satır değerine ulaşıldı ({max} satır)" - -#: pro/fields/class-acf-field-repeater.php:68 -msgid "Error loading page" -msgstr "" - -#: pro/fields/class-acf-field-repeater.php:69 -msgid "Order will be assigned upon save" -msgstr "" - -#: pro/fields/class-acf-field-repeater.php:196 -msgid "Useful for fields with a large number of rows." -msgstr "" - -#: pro/fields/class-acf-field-repeater.php:207 -msgid "Rows Per Page" -msgstr "" - -#: pro/fields/class-acf-field-repeater.php:208 -msgid "Set the number of rows to be displayed on a page." -msgstr "" - -#: pro/fields/class-acf-field-repeater.php:240 -msgid "Minimum Rows" -msgstr "En az satır" - -#: pro/fields/class-acf-field-repeater.php:251 -msgid "Maximum Rows" -msgstr "En fazla satır" - -#: pro/fields/class-acf-field-repeater.php:281 -msgid "Collapsed" -msgstr "Daraltılmış" - -#: pro/fields/class-acf-field-repeater.php:282 -msgid "Select a sub field to show when row is collapsed" -msgstr "Satır toparlandığında görüntülenecek alt alanı seçin" - -#: pro/fields/class-acf-field-repeater.php:1060 -#, fuzzy -#| msgid "Invalid field group ID." -msgid "Invalid field key or name." -msgstr "Geçersiz alan grup no." - -#: pro/fields/class-acf-field-repeater.php:1069 -msgid "There was an error retrieving the field." -msgstr "" - -#: pro/fields/class-acf-repeater-table.php:369 -#, fuzzy -#| msgid "Drag to reorder" -msgid "Click to reorder" -msgstr "Yeniden düzenlemek için sürükleyin" - -#: pro/fields/class-acf-repeater-table.php:402 -msgid "Add row" -msgstr "Satır ekle" - -#: pro/fields/class-acf-repeater-table.php:403 -msgid "Duplicate row" -msgstr "Satırı çoğalt" - -#: pro/fields/class-acf-repeater-table.php:404 -msgid "Remove row" -msgstr "Satır çıkar" - -#: pro/fields/class-acf-repeater-table.php:448, -#: pro/fields/class-acf-repeater-table.php:465, -#: pro/fields/class-acf-repeater-table.php:466 -msgid "Current Page" -msgstr "" - -#: pro/fields/class-acf-repeater-table.php:456, -#: pro/fields/class-acf-repeater-table.php:457 -#, fuzzy -#| msgid "Front Page" -msgid "First Page" -msgstr "Ön sayfa" - -#: pro/fields/class-acf-repeater-table.php:460, -#: pro/fields/class-acf-repeater-table.php:461 -#, fuzzy -#| msgid "Posts Page" -msgid "Previous Page" -msgstr "Yazılar sayfası" - -#. translators: 1: Current page, 2: Total pages. -#: pro/fields/class-acf-repeater-table.php:470 -msgctxt "paging" -msgid "%1$s of %2$s" -msgstr "" - -#: pro/fields/class-acf-repeater-table.php:477, -#: pro/fields/class-acf-repeater-table.php:478 -#, fuzzy -#| msgid "Front Page" -msgid "Next Page" -msgstr "Ön sayfa" - -#: pro/fields/class-acf-repeater-table.php:481, -#: pro/fields/class-acf-repeater-table.php:482 -#, fuzzy -#| msgid "Posts Page" -msgid "Last Page" -msgstr "Yazılar sayfası" - -#: pro/locations/class-acf-location-block.php:71 -msgid "No block types exist" -msgstr "Hiç blok tipi yok" - -#: pro/locations/class-acf-location-options-page.php:70 -msgid "No options pages exist" -msgstr "Seçenekler sayfayı mevcut değil" - -#: pro/admin/views/html-settings-updates.php:6 -msgid "Deactivate License" -msgstr "Lisansı devre dışı bırak" - -#: pro/admin/views/html-settings-updates.php:6 -msgid "Activate License" -msgstr "Lisansı etkinleştir" - -#: pro/admin/views/html-settings-updates.php:16 -msgid "License Information" -msgstr "Lisans bilgisi" - -#: pro/admin/views/html-settings-updates.php:34 -msgid "" -"To unlock updates, please enter your license key below. If you don't have a " -"licence key, please see details & pricing." -msgstr "" -"Güncellemeleri açmak için lisans anahtarınızı aşağıya girin. Eğer bir lisans " -"anahtarınız yoksa lütfen detaylar ve " -"fiyatlama sayfasına bakın." - -#: pro/admin/views/html-settings-updates.php:37 -msgid "License Key" -msgstr "Lisans anahtarı" - -#: pro/admin/views/html-settings-updates.php:22 -msgid "Your license key is defined in wp-config.php." -msgstr "Lisans anahtarınız wp-config.php içinde tanımlanmış." - -#: pro/admin/views/html-settings-updates.php:29 -msgid "Retry Activation" -msgstr "Etkinleştirmeyi yeniden dene" - -#: pro/admin/views/html-settings-updates.php:61 -msgid "Update Information" -msgstr "Güncelleme bilgisi" - -#: pro/admin/views/html-settings-updates.php:68 -msgid "Current Version" -msgstr "Mevcut sürüm" - -#: pro/admin/views/html-settings-updates.php:76 -msgid "Latest Version" -msgstr "En son sürüm" - -#: pro/admin/views/html-settings-updates.php:84 -msgid "Update Available" -msgstr "Güncelleme mevcut" - -#: pro/admin/views/html-settings-updates.php:98 -msgid "Upgrade Notice" -msgstr "Yükseltme bildirimi" - -#: pro/admin/views/html-settings-updates.php:126 -msgid "Check For Updates" -msgstr "" - -#: pro/admin/views/html-settings-updates.php:121 -#, fuzzy -#| msgid "Please enter your license key above to unlock updates" -msgid "Enter your license key to unlock updates" -msgstr "" -"Güncelleştirmelerin kilidini açmak için yukardaki alana lisans anahtarını " -"girin" - -#: pro/admin/views/html-settings-updates.php:119 -msgid "Update Plugin" -msgstr "Eklentiyi güncelle" - -#: pro/admin/views/html-settings-updates.php:117 -msgid "Please reactivate your license to unlock updates" -msgstr "" -"Güncellemelerin kilidini açmak için lütfen lisansınızı yeniden etkinleştirin" diff --git a/lang/acf-uk.mo b/lang/acf-uk.mo deleted file mode 100644 index e6a81b4..0000000 Binary files a/lang/acf-uk.mo and /dev/null differ diff --git a/lang/acf-uk.po b/lang/acf-uk.po deleted file mode 100644 index 59418a5..0000000 --- a/lang/acf-uk.po +++ /dev/null @@ -1,6210 +0,0 @@ -# Advanced Custom Fields Translations are a combination of translate.wordpress.org contributions, -# combined with user contributed strings for the PRO version. -# Translations from translate.wordpress.org take priority over translations in this file. -# translate.wordpress.org contributions are synced at the time of each release. -# -# If you would like to contribute translations, please visit -# https://translate.wordpress.org/projects/wp-plugins/advanced-custom-fields/stable/ -# -# For additional ACF PRO strings, please submit a pull request over on the ACF GitHub repo at -# http://github.com/advancedcustomfields/acf using the .pot (and any existing .po) files in /lang/pro/ -# -# This file is distributed under the same license as Advanced Custom Fields. -msgid "" -msgstr "" -"PO-Revision-Date: 2023-11-28T09:14:32+00:00\n" -"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n" -"Language: uk\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: gettext\n" -"Project-Id-Version: Advanced Custom Fields\n" - -#: includes/admin/views/global/navigation.php:221 -msgid "Renew ACF PRO License" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:17 -msgid "Renew License" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:14 -msgid "Manage License" -msgstr "" - -#: includes/admin/views/acf-field-group/options.php:102 -msgid "'High' position not supported in the Block Editor" -msgstr "" - -#: includes/admin/views/options-page-preview.php:30 -msgid "Upgrade to ACF PRO" -msgstr "" - -#. translators: %s URL to ACF options pages documentation -#: includes/admin/views/options-page-preview.php:7 -msgid "" -"ACF options pages are custom admin " -"pages for managing global settings via fields. You can create multiple pages " -"and sub-pages." -msgstr "" - -#: includes/admin/views/global/header.php:35 -msgid "Add Options Page" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:703 -msgid "In the editor used as the placeholder of the title." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:702 -msgid "Title Placeholder" -msgstr "" - -#: includes/admin/views/global/navigation.php:97 -msgid "4 Months Free" -msgstr "" - -#. translators: %s - A singular label for a post type or taxonomy. -#: includes/admin/views/global/form-top.php:56 -msgid " (Duplicated from %s)" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:298 -msgid "Select Options Pages" -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:107 -msgid "Duplicate taxonomy" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:106 -#: includes/admin/post-types/admin-taxonomy.php:106 -msgid "Create taxonomy" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:105 -msgid "Duplicate post type" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:104 -#: includes/admin/post-types/admin-taxonomy.php:108 -msgid "Create post type" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:103 -#: includes/admin/post-types/admin-taxonomy.php:105 -msgid "Link field groups" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:102 -#: includes/admin/post-types/admin-taxonomy.php:104 -msgid "Add fields" -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:121 -#: assets/build/js/acf-field-group.js:2753 -#: assets/build/js/acf-field-group.js:3236 -msgid "This Field" -msgstr "" - -#: includes/admin/admin.php:267 -msgid "ACF PRO" -msgstr "" - -#: includes/admin/admin.php:265 -msgid "Feedback" -msgstr "" - -#: includes/admin/admin.php:263 -msgid "Support" -msgstr "" - -#. translators: This text is prepended by a link to ACF's website, and appended -#. by a link to WP Engine's website. -#: includes/admin/admin.php:238 -msgid "is developed and maintained by" -msgstr "" - -#. translators: %s - either "post type" or "taxonomy" -#: includes/admin/admin-internal-post-type.php:321 -msgid "Add this %s to the location rules of the selected field groups." -msgstr "" - -#. translators: %s the URL to ACF's bidirectional relationship documentation -#: includes/acf-bidirectional-functions.php:271 -msgid "" -"Enabling the bidirectional setting allows you to update a value in the " -"target fields for each value selected for this field, adding or removing the " -"Post ID, Taxonomy ID or User ID of the item being updated. For more " -"information, please read the documentation." -msgstr "" - -#: includes/acf-bidirectional-functions.php:247 -msgid "" -"Select field(s) to store the reference back to the item being updated. You " -"may select this field. Target fields must be compatible with where this " -"field is being displayed. For example, if this field is displayed on a " -"Taxonomy, your target field should be of type Taxonomy" -msgstr "" - -#: includes/acf-bidirectional-functions.php:246 -msgid "Target Field" -msgstr "" - -#: includes/acf-bidirectional-functions.php:220 -msgid "Update a field on the selected values, referencing back to this ID" -msgstr "" - -#: includes/acf-bidirectional-functions.php:219 -msgid "Bidirectional" -msgstr "" - -#. translators: %s A field type name, such as "Relationship" -#: includes/acf-bidirectional-functions.php:192 -msgid "%s Field" -msgstr "" - -#: includes/fields/class-acf-field-page_link.php:517 -#: includes/fields/class-acf-field-post_object.php:426 -#: includes/fields/class-acf-field-select.php:407 -#: includes/fields/class-acf-field-user.php:82 -msgid "Select Multiple" -msgstr "" - -#: includes/admin/views/global/navigation.php:233 -msgid "WP Engine logo" -msgstr "" - -#: includes/admin/views/acf-taxonomy/basic-settings.php:58 -msgid "Lower case letters, underscores and dashes only, Max 32 characters." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1136 -msgid "The capability name for assigning terms of this taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1135 -msgid "Assign Terms Capability" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1119 -msgid "The capability name for deleting terms of this taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1118 -msgid "Delete Terms Capability" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1102 -msgid "The capability name for editing terms of this taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1101 -msgid "Edit Terms Capability" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1085 -msgid "The capability name for managing terms of this taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1084 -msgid "Manage Terms Capability" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:886 -msgid "" -"Sets whether posts should be excluded from search results and taxonomy " -"archive pages." -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:74 -msgid "More Tools from WP Engine" -msgstr "" - -#. translators: %s - WP Engine logo -#: includes/admin/views/acf-field-group/pro-features.php:69 -msgid "Built for those that build with WordPress, by the team at %s" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:6 -msgid "View Pricing & Upgrade" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:3 -#: includes/admin/views/options-page-preview.php:29 -msgid "Learn More" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:28 -msgid "" -"Speed up your workflow and develop better websites with features like ACF " -"Blocks and Options Pages, and sophisticated field types like Repeater, " -"Flexible Content, Clone, and Gallery." -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:2 -msgid "Unlock Advanced Features and Build Even More with ACF PRO" -msgstr "" - -#. translators: %s - singular label of post type/taxonomy, i.e. "Movie"/"Genre" -#: includes/admin/views/global/form-top.php:19 -msgid "%s fields" -msgstr "" - -#: includes/admin/post-types/admin-taxonomies.php:293 -msgid "No terms" -msgstr "" - -#: includes/admin/post-types/admin-taxonomies.php:266 -msgid "No post types" -msgstr "" - -#: includes/admin/post-types/admin-post-types.php:289 -msgid "No posts" -msgstr "" - -#: includes/admin/post-types/admin-post-types.php:263 -msgid "No taxonomies" -msgstr "" - -#: includes/admin/post-types/admin-post-types.php:208 -#: includes/admin/post-types/admin-taxonomies.php:208 -msgid "No field groups" -msgstr "" - -#: includes/admin/post-types/admin-field-groups.php:281 -msgid "No fields" -msgstr "" - -#: includes/admin/post-types/admin-field-groups.php:154 -#: includes/admin/post-types/admin-post-types.php:172 -#: includes/admin/post-types/admin-taxonomies.php:172 -msgid "No description" -msgstr "" - -#: includes/fields/class-acf-field-page_link.php:484 -#: includes/fields/class-acf-field-post_object.php:389 -#: includes/fields/class-acf-field-relationship.php:601 -msgid "Any post status" -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:284 -msgid "" -"This taxonomy key is already in use by another taxonomy registered outside " -"of ACF and cannot be used." -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:279 -msgid "" -"This taxonomy key is already in use by another taxonomy in ACF and cannot be " -"used." -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:252 -msgid "" -"The taxonomy key must only contain lower case alphanumeric characters, " -"underscores or dashes." -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:247 -msgid "The taxonomy key must be under 32 characters." -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:99 -msgid "No Taxonomies found in Trash" -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:98 -msgid "No Taxonomies found" -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:97 -msgid "Search Taxonomies" -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:96 -msgid "View Taxonomy" -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:95 -msgid "New Taxonomy" -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:94 -msgid "Edit Taxonomy" -msgstr "" - -#: includes/post-types/class-acf-taxonomy.php:93 -msgid "Add New Taxonomy" -msgstr "" - -#: includes/post-types/class-acf-post-type.php:100 -msgid "No Post Types found in Trash" -msgstr "" - -#: includes/post-types/class-acf-post-type.php:99 -msgid "No Post Types found" -msgstr "" - -#: includes/post-types/class-acf-post-type.php:98 -msgid "Search Post Types" -msgstr "" - -#: includes/post-types/class-acf-post-type.php:97 -msgid "View Post Type" -msgstr "" - -#: includes/post-types/class-acf-post-type.php:96 -msgid "New Post Type" -msgstr "" - -#: includes/post-types/class-acf-post-type.php:95 -msgid "Edit Post Type" -msgstr "" - -#: includes/post-types/class-acf-post-type.php:94 -msgid "Add New Post Type" -msgstr "" - -#: includes/post-types/class-acf-post-type.php:361 -msgid "" -"This post type key is already in use by another post type registered outside " -"of ACF and cannot be used." -msgstr "" - -#: includes/post-types/class-acf-post-type.php:356 -msgid "" -"This post type key is already in use by another post type in ACF and cannot " -"be used." -msgstr "" - -#. translators: %s a link to WordPress.org's Reserved Terms page -#: includes/post-types/class-acf-post-type.php:335 -#: includes/post-types/class-acf-taxonomy.php:258 -msgid "" -"This field must not be a WordPress reserved " -"term." -msgstr "" - -#: includes/post-types/class-acf-post-type.php:329 -msgid "" -"The post type key must only contain lower case alphanumeric characters, " -"underscores or dashes." -msgstr "" - -#: includes/post-types/class-acf-post-type.php:324 -msgid "The post type key must be under 20 characters." -msgstr "" - -#: includes/fields/class-acf-field-wysiwyg.php:27 -msgid "We do not recommend using this field in ACF Blocks." -msgstr "" - -#: includes/fields/class-acf-field-wysiwyg.php:27 -msgid "" -"Displays the WordPress WYSIWYG editor as seen in Posts and Pages allowing " -"for a rich text-editing experience that also allows for multimedia content." -msgstr "" - -#: includes/fields/class-acf-field-wysiwyg.php:25 -msgid "WYSIWYG Editor" -msgstr "" - -#: includes/fields/class-acf-field-user.php:17 -msgid "" -"Allows the selection of one or more users which can be used to create " -"relationships between data objects." -msgstr "" - -#: includes/fields/class-acf-field-url.php:26 -msgid "A text input specifically designed for storing web addresses." -msgstr "" - -#: includes/fields/class-acf-field-url.php:25 -msgid "URL" -msgstr "" - -#: includes/fields/class-acf-field-true_false.php:27 -msgid "" -"A toggle that allows you to pick a value of 1 or 0 (on or off, true or " -"false, etc). Can be presented as a stylized switch or checkbox." -msgstr "" - -#: includes/fields/class-acf-field-time_picker.php:27 -msgid "" -"An interactive UI for picking a time. The time format can be customized " -"using the field settings." -msgstr "" - -#: includes/fields/class-acf-field-textarea.php:26 -msgid "A basic textarea input for storing paragraphs of text." -msgstr "" - -#: includes/fields/class-acf-field-text.php:26 -msgid "A basic text input, useful for storing single string values." -msgstr "" - -#: includes/fields/class-acf-field-taxonomy.php:22 -msgid "" -"Allows the selection of one or more taxonomy terms based on the criteria and " -"options specified in the fields settings." -msgstr "" - -#: includes/fields/class-acf-field-tab.php:28 -msgid "" -"Allows you to group fields into tabbed sections in the edit screen. Useful " -"for keeping fields organized and structured." -msgstr "" - -#: includes/fields/class-acf-field-select.php:27 -msgid "A dropdown list with a selection of choices that you specify." -msgstr "" - -#: includes/fields/class-acf-field-relationship.php:19 -msgid "" -"A dual-column interface to select one or more posts, pages, or custom post " -"type items to create a relationship with the item that you're currently " -"editing. Includes options to search and filter." -msgstr "" - -#: includes/fields/class-acf-field-range.php:26 -msgid "" -"An input for selecting a numerical value within a specified range using a " -"range slider element." -msgstr "" - -#: includes/fields/class-acf-field-radio.php:27 -msgid "" -"A group of radio button inputs that allows the user to make a single " -"selection from values that you specify." -msgstr "" - -#: includes/fields/class-acf-field-post_object.php:19 -msgid "" -"An interactive and customizable UI for picking one or many posts, pages or " -"post type items with the option to search. " -msgstr "" - -#: includes/fields/class-acf-field-password.php:26 -msgid "An input for providing a password using a masked field." -msgstr "" - -#: includes/fields/class-acf-field-page_link.php:476 -#: includes/fields/class-acf-field-post_object.php:381 -#: includes/fields/class-acf-field-relationship.php:593 -msgid "Filter by Post Status" -msgstr "" - -#: includes/fields/class-acf-field-page_link.php:27 -msgid "" -"An interactive dropdown to select one or more posts, pages, custom post type " -"items or archive URLs, with the option to search." -msgstr "" - -#: includes/fields/class-acf-field-oembed.php:27 -msgid "" -"An interactive component for embedding videos, images, tweets, audio and " -"other content by making use of the native WordPress oEmbed functionality." -msgstr "" - -#: includes/fields/class-acf-field-number.php:26 -msgid "An input limited to numerical values." -msgstr "" - -#: includes/fields/class-acf-field-message.php:28 -msgid "" -"Used to display a message to editors alongside other fields. Useful for " -"providing additional context or instructions around your fields." -msgstr "" - -#: includes/fields/class-acf-field-link.php:27 -msgid "" -"Allows you to specify a link and its properties such as title and target " -"using the WordPress native link picker." -msgstr "" - -#: includes/fields/class-acf-field-image.php:27 -msgid "Uses the native WordPress media picker to upload, or choose images." -msgstr "" - -#: includes/fields/class-acf-field-group.php:27 -msgid "" -"Provides a way to structure fields into groups to better organize the data " -"and the edit screen." -msgstr "" - -#: includes/fields/class-acf-field-google-map.php:27 -msgid "" -"An interactive UI for selecting a location using Google Maps. Requires a " -"Google Maps API key and additional configuration to display correctly." -msgstr "" - -#: includes/fields/class-acf-field-file.php:27 -msgid "Uses the native WordPress media picker to upload, or choose files." -msgstr "" - -#: includes/fields/class-acf-field-email.php:26 -msgid "A text input specifically designed for storing email addresses." -msgstr "" - -#: includes/fields/class-acf-field-date_time_picker.php:27 -msgid "" -"An interactive UI for picking a date and time. The date return format can be " -"customized using the field settings." -msgstr "" - -#: includes/fields/class-acf-field-date_picker.php:27 -msgid "" -"An interactive UI for picking a date. The date return format can be " -"customized using the field settings." -msgstr "" - -#: includes/fields/class-acf-field-color_picker.php:27 -msgid "An interactive UI for selecting a color, or specifying a Hex value." -msgstr "" - -#: includes/fields/class-acf-field-checkbox.php:27 -msgid "" -"A group of checkbox inputs that allow the user to select one, or multiple " -"values that you specify." -msgstr "" - -#: includes/fields/class-acf-field-button-group.php:26 -msgid "" -"A group of buttons with values that you specify, users can choose one option " -"from the values provided." -msgstr "" - -#: includes/fields/class-acf-field-accordion.php:27 -msgid "" -"Allows you to group and organize custom fields into collapsable panels that " -"are shown while editing content. Useful for keeping large datasets tidy." -msgstr "" - -#: includes/fields.php:475 -msgid "" -"This provides a solution for repeating content such as slides, team members, " -"and call-to-action tiles, by acting as a parent to a set of subfields which " -"can be repeated again and again." -msgstr "" - -#: includes/fields.php:465 -msgid "" -"This provides an interactive interface for managing a collection of " -"attachments. Most settings are similar to the Image field type. Additional " -"settings allow you to specify where new attachments are added in the gallery " -"and the minimum/maximum number of attachments allowed." -msgstr "" - -#: includes/fields.php:455 -msgid "" -"This provides a simple, structured, layout-based editor. The Flexible " -"Content field allows you to define, create and manage content with total " -"control by using layouts and subfields to design the available blocks." -msgstr "" - -#: includes/fields.php:445 -msgid "" -"This allows you to select and display existing fields. It does not duplicate " -"any fields in the database, but loads and displays the selected fields at " -"run-time. The Clone field can either replace itself with the selected fields " -"or display the selected fields as a group of subfields." -msgstr "" - -#: pro/fields/class-acf-field-clone.php:25 -msgctxt "noun" -msgid "Clone" -msgstr "Клон" - -#: includes/admin/views/global/navigation.php:86 includes/fields.php:357 -msgid "PRO" -msgstr "" - -#: includes/fields.php:355 includes/fields.php:412 -msgid "Advanced" -msgstr "" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:85 -msgid "JSON (newer)" -msgstr "" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:81 -msgid "Original" -msgstr "" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:55 -msgid "Invalid post ID." -msgstr "" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:47 -msgid "Invalid post type selected for review." -msgstr "" - -#: includes/admin/views/global/navigation.php:186 -msgid "More" -msgstr "" - -#: includes/admin/views/browse-fields-modal.php:86 -msgid "Tutorial" -msgstr "" - -#: includes/admin/views/browse-fields-modal.php:75 -msgid "Available with ACF PRO" -msgstr "" - -#: includes/admin/views/browse-fields-modal.php:63 -msgid "Select Field" -msgstr "" - -#. translators: %s: A link to the popular fields used in ACF -#: includes/admin/views/browse-fields-modal.php:50 -msgid "Try a different search term or browse %s" -msgstr "" - -#: includes/admin/views/browse-fields-modal.php:47 -msgid "Popular fields" -msgstr "" - -#. translators: %s: The invalid search term -#: includes/admin/views/browse-fields-modal.php:40 -msgid "No search results for '%s'" -msgstr "" - -#: includes/admin/views/browse-fields-modal.php:13 -msgid "Search fields..." -msgstr "" - -#: includes/admin/views/browse-fields-modal.php:11 -msgid "Select Field Type" -msgstr "" - -#: includes/admin/views/browse-fields-modal.php:4 -msgid "Popular" -msgstr "" - -#: includes/admin/views/acf-taxonomy/list-empty.php:7 -msgid "Add Taxonomy" -msgstr "" - -#: includes/admin/views/acf-taxonomy/list-empty.php:6 -msgid "Create custom taxonomies to classify post type content" -msgstr "" - -#: includes/admin/views/acf-taxonomy/list-empty.php:5 -msgid "Add Your First Taxonomy" -msgstr "" - -#: includes/admin/views/acf-taxonomy/basic-settings.php:122 -msgid "Hierarchical taxonomies can have descendants (like categories)." -msgstr "" - -#: includes/admin/views/acf-taxonomy/basic-settings.php:107 -msgid "Makes a taxonomy visible on the frontend and in the admin dashboard." -msgstr "" - -#: includes/admin/views/acf-taxonomy/basic-settings.php:91 -msgid "One or many post types that can be classified with this taxonomy." -msgstr "" - -#. translators: example taxonomy -#: includes/admin/views/acf-taxonomy/basic-settings.php:60 -msgid "genre" -msgstr "" - -#. translators: example taxonomy -#: includes/admin/views/acf-taxonomy/basic-settings.php:42 -msgid "Genre" -msgstr "" - -#. translators: example taxonomy -#: includes/admin/views/acf-taxonomy/basic-settings.php:25 -msgid "Genres" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1211 -msgid "" -"Optional custom controller to use instead of `WP_REST_Terms_Controller `." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1155 -msgid "Expose this post type in the REST API." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1055 -msgid "Customize the query variable name" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1028 -msgid "" -"Terms can be accessed using the non-pretty permalink, e.g., {query_var}" -"={term_slug}." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:981 -msgid "Parent-child terms in URLs for hierarchical taxonomies." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:941 -msgid "Customize the slug used in the URL" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:924 -msgid "Permalinks for this taxonomy are disabled." -msgstr "" - -#. translators: this string will be appended with the new permalink structure. -#: includes/admin/views/acf-taxonomy/advanced-settings.php:921 -msgid "" -"Rewrite the URL using the taxonomy key as the slug. Your permalink structure " -"will be" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:913 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1030 -#: includes/admin/views/acf-taxonomy/basic-settings.php:57 -msgid "Taxonomy Key" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:911 -msgid "Select the type of permalink to use for this taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:896 -msgid "Display a column for the taxonomy on post type listing screens." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:895 -msgid "Show Admin Column" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:882 -msgid "Show the taxonomy in the quick/bulk edit panel." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:881 -msgid "Quick Edit" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:868 -msgid "List the taxonomy in the Tag Cloud Widget controls." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:867 -msgid "Tag Cloud" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:824 -msgid "" -"A PHP function name to be called for sanitizing taxonomy data saved from a " -"meta box." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:823 -msgid "Meta Box Sanitization Callback" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:805 -msgid "" -"A PHP function name to be called to handle the content of a meta box on your " -"taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:804 -msgid "Register Meta Box Callback" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:763 -msgid "No Meta Box" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:762 -msgid "Custom Meta Box" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:758 -msgid "" -"Controls the meta box on the content editor screen. By default, the " -"Categories meta box is shown for hierarchical taxonomies, and the Tags meta " -"box is shown for non-hierarchical taxonomies." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:757 -msgid "Meta Box" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:746 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:767 -msgid "Categories Meta Box" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:745 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:766 -msgid "Tags Meta Box" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:704 -msgid "A link to a tag" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:703 -msgid "Describes a navigation link block variation used in the block editor." -msgstr "" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:698 -msgid "A link to a %s" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:683 -msgid "Tag Link" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:682 -msgid "" -"Assigns a title for navigation link block variation used in the block editor." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:663 -msgid "← Go to tags" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:662 -msgid "" -"Assigns the text used to link back to the main index after updating a term." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:661 -msgid "Back To Items" -msgstr "" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:657 -msgid "← Go to %s" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:642 -msgid "Tags list" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:641 -msgid "Assigns text to the table hidden heading." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:622 -msgid "Tags list navigation" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:621 -msgid "Assigns text to the table pagination hidden heading." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:597 -msgid "Filter by category" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:596 -msgid "Assigns text to the filter button in the posts lists table." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:595 -msgid "Filter By Item" -msgstr "" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:591 -msgid "Filter by %s" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:575 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:576 -msgid "" -"The description is not prominent by default; however, some themes may show " -"it." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:574 -msgid "Describes the Description field on the Edit Tags screen." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:573 -msgid "Description Field Description" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:554 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:555 -msgid "" -"Assign a parent term to create a hierarchy. The term Jazz, for example, " -"would be the parent of Bebop and Big Band" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:553 -msgid "Describes the Parent field on the Edit Tags screen." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:552 -msgid "Parent Field Description" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:538 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:539 -msgid "" -"The \"slug\" is the URL-friendly version of the name. It is usually all " -"lower case and contains only letters, numbers, and hyphens." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:537 -msgid "Describes the Slug field on the Edit Tags screen." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:536 -msgid "Slug Field Description" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:522 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:523 -msgid "The name is how it appears on your site" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:521 -msgid "Describes the Name field on the Edit Tags screen." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:520 -msgid "Name Field Description" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:507 -msgid "No tags" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:506 -msgid "" -"Assigns the text displayed in the posts and media list tables when no tags " -"or categories are available." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:505 -msgid "No Terms" -msgstr "" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:501 -msgid "No %s" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:486 -msgid "No tags found" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:485 -msgid "" -"Assigns the text displayed when clicking the 'choose from most used' text in " -"the taxonomy meta box when no tags are available, and assigns the text used " -"in the terms list table when there are no items for a taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:484 -msgid "Not Found" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:463 -msgid "Assigns text to the Title field of the Most Used tab." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:462 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:464 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:465 -msgid "Most Used" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:444 -msgid "Choose from the most used tags" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:443 -msgid "" -"Assigns the 'choose from most used' text used in the meta box when " -"JavaScript is disabled. Only used on non-hierarchical taxonomies." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:442 -msgid "Choose From Most Used" -msgstr "" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:438 -msgid "Choose from the most used %s" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:418 -msgid "Add or remove tags" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:417 -msgid "" -"Assigns the add or remove items text used in the meta box when JavaScript is " -"disabled. Only used on non-hierarchical taxonomies" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:416 -msgid "Add Or Remove Items" -msgstr "" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:412 -msgid "Add or remove %s" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:392 -msgid "Separate tags with commas" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:391 -msgid "" -"Assigns the separate item with commas text used in the taxonomy meta box. " -"Only used on non-hierarchical taxonomies." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:390 -msgid "Separate Items With Commas" -msgstr "" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:386 -msgid "Separate %s with commas" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:366 -msgid "Popular Tags" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:365 -msgid "Assigns popular items text. Only used for non-hierarchical taxonomies." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:364 -msgid "Popular Items" -msgstr "" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:361 -msgid "Popular %s" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:347 -msgid "Search Tags" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:346 -msgid "Assigns search items text." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:323 -msgid "Parent Category:" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:322 -msgid "Assigns parent item text, but with a colon (:) added to the end." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:321 -msgid "Parent Item With Colon" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:298 -msgid "Parent Category" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:297 -msgid "Assigns parent item text. Only used on hierarchical taxonomies." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:296 -msgid "Parent Item" -msgstr "" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:293 -msgid "Parent %s" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:278 -msgid "New Tag Name" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:277 -msgid "Assigns the new item name text." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:276 -msgid "New Item Name" -msgstr "" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:273 -msgid "New %s Name" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:258 -msgid "Add New Tag" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:257 -msgid "Assigns the add new item text." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:238 -msgid "Update Tag" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:237 -msgid "Assigns the update item text." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:236 -msgid "Update Item" -msgstr "" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:233 -msgid "Update %s" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:218 -msgid "View Tag" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:217 -msgid "In the admin bar to view term during editing." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:198 -msgid "Edit Tag" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:197 -msgid "At the top of the editor screen when editing a term." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:178 -msgid "All Tags" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:177 -msgid "Assigns the all items text." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:158 -msgid "Assigns the menu name text." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:157 -msgid "Menu Label" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:131 -msgid "Active taxonomies are enabled and registered with WordPress." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:115 -msgid "A descriptive summary of the taxonomy." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:95 -msgid "A descriptive summary of the term." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:94 -msgid "Term Description" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:76 -msgid "Single word, no spaces. Underscores and dashes allowed." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:75 -msgid "Term Slug" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:56 -msgid "The name of the default term." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:55 -msgid "Term Name" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:41 -msgid "" -"Create a term for the taxonomy that cannot be deleted. It will not be " -"selected for posts by default." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:40 -msgid "Default Term" -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:28 -msgid "" -"Whether terms in this taxonomy should be sorted in the order they are " -"provided to `wp_set_object_terms()`." -msgstr "" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:27 -msgid "Sort Terms" -msgstr "" - -#: includes/admin/views/acf-post-type/list-empty.php:7 -msgid "Add Post Type" -msgstr "" - -#: includes/admin/views/acf-post-type/list-empty.php:6 -msgid "" -"Expand the functionality of WordPress beyond standard posts and pages with " -"custom post types." -msgstr "" - -#: includes/admin/views/acf-post-type/list-empty.php:5 -msgid "Add Your First Post Type" -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:136 -#: includes/admin/views/acf-taxonomy/basic-settings.php:135 -msgid "I know what I'm doing, show me all the options." -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:135 -#: includes/admin/views/acf-taxonomy/basic-settings.php:134 -msgid "Advanced Configuration" -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:123 -msgid "Hierarchical post types can have descendants (like pages)." -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:122 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:980 -#: includes/admin/views/acf-taxonomy/basic-settings.php:121 -msgid "Hierarchical" -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:107 -msgid "Visible on the frontend and in the admin dashboard." -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:106 -#: includes/admin/views/acf-taxonomy/basic-settings.php:106 -msgid "Public" -msgstr "" - -#. translators: example post type -#: includes/admin/views/acf-post-type/basic-settings.php:59 -msgid "movie" -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:57 -msgid "Lower case letters, underscores and dashes only, Max 20 characters." -msgstr "" - -#. translators: example post type -#: includes/admin/views/acf-post-type/basic-settings.php:41 -msgid "Movie" -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:39 -#: includes/admin/views/acf-taxonomy/basic-settings.php:40 -msgid "Singular Label" -msgstr "" - -#. translators: example post type -#: includes/admin/views/acf-post-type/basic-settings.php:24 -msgid "Movies" -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:22 -#: includes/admin/views/acf-taxonomy/basic-settings.php:23 -msgid "Plural Label" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1270 -msgid "" -"Optional custom controller to use instead of `WP_REST_Posts_Controller`." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1269 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1210 -msgid "Controller Class" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1251 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1191 -msgid "The namespace part of the REST API URL." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1250 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1190 -msgid "Namespace Route" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1232 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1172 -msgid "The base URL for the post type REST API URLs." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1231 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1171 -msgid "Base URL" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1217 -msgid "" -"Exposes this post type in the REST API. Required to use the block editor." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1216 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1154 -msgid "Show In REST API" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1195 -msgid "Customize the query variable name." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1194 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1054 -msgid "Query Variable" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1172 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1032 -msgid "No Query Variable Support" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1171 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1031 -msgid "Custom Query Variable" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1168 -msgid "" -"Items can be accessed using the non-pretty permalink, eg. {post_type}" -"={post_slug}." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1167 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1027 -msgid "Query Variable Support" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1142 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1003 -msgid "URLs for an item and items can be accessed with a query string." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1141 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1002 -msgid "Publicly Queryable" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1120 -msgid "Custom slug for the Archive URL." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1119 -msgid "Archive Slug" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1106 -msgid "" -"Has an item archive that can be customized with an archive template file in " -"your theme." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1105 -msgid "Archive" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1085 -msgid "Pagination support for the items URLs such as the archives." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1084 -msgid "Pagination" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1067 -msgid "RSS feed URL for the post type items." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1066 -msgid "Feed URL" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1048 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:961 -msgid "" -"Alters the permalink structure to add the `WP_Rewrite::$front` prefix to " -"URLs." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1047 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:960 -msgid "Front URL Prefix" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1028 -msgid "Customize the slug used in the URL." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1027 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:940 -msgid "URL Slug" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1011 -msgid "Permalinks for this post type are disabled." -msgstr "" - -#. translators: this string will be appended with the new permalink structure. -#: includes/admin/views/acf-post-type/advanced-settings.php:1010 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:923 -msgid "" -"Rewrite the URL using a custom slug defined in the input below. Your " -"permalink structure will be" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1002 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:915 -msgid "No Permalink (prevent URL rewriting)" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1001 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:914 -msgid "Custom Permalink" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1000 -#: includes/admin/views/acf-post-type/advanced-settings.php:1170 -#: includes/admin/views/acf-post-type/basic-settings.php:56 -msgid "Post Type Key" -msgstr "" - -#. translators: this string will be appended with the new permalink structure. -#: includes/admin/views/acf-post-type/advanced-settings.php:998 -#: includes/admin/views/acf-post-type/advanced-settings.php:1008 -msgid "" -"Rewrite the URL using the post type key as the slug. Your permalink " -"structure will be" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:996 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:910 -msgid "Permalink Rewrite" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:982 -msgid "Delete items by a user when that user is deleted." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:981 -msgid "Delete With User" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:967 -msgid "Allow the post type to be exported from 'Tools' > 'Export'." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:966 -msgid "Can Export" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:935 -msgid "Optionally provide a plural to be used in capabilities." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:934 -msgid "Plural Capability Name" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:916 -msgid "Choose another post type to base the capabilities for this post type." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:915 -msgid "Singular Capability Name" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:901 -msgid "" -"By default the capabilities of the post type will inherit the 'Post' " -"capability names, eg. edit_post, delete_posts. Enable to use post type " -"specific capabilities, eg. edit_{singular}, delete_{plural}." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:900 -msgid "Rename Capabilities" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:885 -msgid "Exclude From Search" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:872 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:854 -msgid "" -"Allow items to be added to menus in the 'Appearance' > 'Menus' screen. Must " -"be turned on in 'Screen options'." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:871 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:853 -msgid "Appearance Menus Support" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:853 -msgid "Appears as an item in the 'New' menu in the admin bar." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:852 -msgid "Show In Admin Bar" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:821 -msgid "" -"A PHP function name to be called when setting up the meta boxes for the edit " -"screen." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:820 -msgid "Custom Meta Box Callback" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:800 -msgid "Menu Icon" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:782 -msgid "The position in the sidebar menu in the admin dashboard." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:781 -msgid "Menu Position" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:763 -msgid "" -"By default the post type will get a new top level item in the admin menu. If " -"an existing top level item is supplied here, the post type will be added as " -"a submenu item under it." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:762 -msgid "Admin Menu Parent" -msgstr "" - -#. translators: %s = "dashicon class name", link to the WordPress dashicon -#. documentation. -#: includes/admin/views/acf-post-type/advanced-settings.php:750 -msgid "" -"The icon used for the post type menu item in the admin dashboard. Can be a " -"URL or %s to use for the icon." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:745 -msgid "Dashicon class name" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:734 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:734 -msgid "Admin editor navigation in the sidebar menu." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:733 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:733 -msgid "Show In Admin Menu" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:720 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:719 -msgid "Items can be edited and managed in the admin dashboard." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:719 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:718 -msgid "Show In UI" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:689 -msgid "A link to a post." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:688 -msgid "Description for a navigation link block variation." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:687 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:702 -msgid "Item Link Description" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:683 -msgid "A link to a %s." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:668 -msgid "Post Link" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:667 -msgid "Title for a navigation link block variation." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:666 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:681 -msgid "Item Link" -msgstr "" - -#. translators: %s Singular form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:663 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:678 -msgid "%s Link" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:648 -msgid "Post updated." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:647 -msgid "In the editor notice after an item is updated." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:646 -msgid "Item Updated" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:643 -msgid "%s updated." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:628 -msgid "Post scheduled." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:627 -msgid "In the editor notice after scheduling an item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:626 -msgid "Item Scheduled" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:623 -msgid "%s scheduled." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:608 -msgid "Post reverted to draft." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:607 -msgid "In the editor notice after reverting an item to draft." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:606 -msgid "Item Reverted To Draft" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:603 -msgid "%s reverted to draft." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:588 -msgid "Post published privately." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:587 -msgid "In the editor notice after publishing a private item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:586 -msgid "Item Published Privately" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:583 -msgid "%s published privately." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:568 -msgid "Post published." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:567 -msgid "In the editor notice after publishing an item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:566 -msgid "Item Published" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:563 -msgid "%s published." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:548 -msgid "Posts list" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:547 -msgid "Used by screen readers for the items list on the post type list screen." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:546 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:640 -msgid "Items List" -msgstr "" - -#. translators: %s Plural form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:543 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:637 -msgid "%s list" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:528 -msgid "Posts list navigation" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:527 -msgid "" -"Used by screen readers for the filter list pagination on the post type list " -"screen." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:526 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:620 -msgid "Items List Navigation" -msgstr "" - -#. translators: %s Plural form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:523 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:617 -msgid "%s list navigation" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:507 -msgid "Filter posts by date" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:506 -msgid "" -"Used by screen readers for the filter by date heading on the post type list " -"screen." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:505 -msgid "Filter Items By Date" -msgstr "" - -#. translators: %s Plural form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:501 -msgid "Filter %s by date" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:486 -msgid "Filter posts list" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:485 -msgid "" -"Used by screen readers for the filter links heading on the post type list " -"screen." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:484 -msgid "Filter Items List" -msgstr "" - -#. translators: %s Plural form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:480 -msgid "Filter %s list" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:464 -msgid "In the media modal showing all media uploaded to this item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:463 -msgid "Uploaded To This Item" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:459 -msgid "Uploaded to this %s" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:444 -msgid "Insert into post" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:443 -msgid "As the button label when adding media to content." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:442 -msgid "Insert Into Media Button" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:438 -msgid "Insert into %s" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:423 -msgid "Use as featured image" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:422 -msgid "" -"As the button label for selecting to use an image as the featured image." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:421 -msgid "Use Featured Image" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:408 -msgid "Remove featured image" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:407 -msgid "As the button label when removing the featured image." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:406 -msgid "Remove Featured Image" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:393 -msgid "Set featured image" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:392 -msgid "As the button label when setting the featured image." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:391 -msgid "Set Featured Image" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:378 -msgid "Featured image" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:377 -msgid "In the editor used for the title of the featured image meta box." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:376 -msgid "Featured Image Meta Box" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:363 -msgid "Post Attributes" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:362 -msgid "In the editor used for the title of the post attributes meta box." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:361 -msgid "Attributes Meta Box" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:358 -msgid "%s Attributes" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:343 -msgid "Post Archives" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:342 -msgid "" -"Adds 'Post Type Archive' items with this label to the list of posts shown " -"when adding items to an existing menu in a CPT with archives enabled. Only " -"appears when editing menus in 'Live Preview' mode and a custom archive slug " -"has been provided." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:341 -msgid "Archives Nav Menu" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:338 -msgid "%s Archives" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:323 -msgid "No posts found in Trash" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:322 -msgid "" -"At the top of the post type list screen when there are no posts in the trash." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:321 -msgid "No Items Found in Trash" -msgstr "" - -#. translators: %s Plural form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:317 -msgid "No %s found in Trash" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:302 -msgid "No posts found" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:301 -msgid "" -"At the top of the post type list screen when there are no posts to display." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:300 -msgid "No Items Found" -msgstr "" - -#. translators: %s Plural form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:296 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:480 -msgid "No %s found" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:281 -msgid "Search Posts" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:280 -msgid "At the top of the items screen when searching for an item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:279 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:345 -msgid "Search Items" -msgstr "" - -#. translators: %s Singular form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:276 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:342 -msgid "Search %s" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:261 -msgid "Parent Page:" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:260 -msgid "For hierarchical types in the post type list screen." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:259 -msgid "Parent Item Prefix" -msgstr "" - -#. translators: %s Singular form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:256 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:318 -msgid "Parent %s:" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:241 -msgid "New Post" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:239 -msgid "New Item" -msgstr "" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:236 -msgid "New %s" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:206 -msgid "Add New Post" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:205 -msgid "At the top of the editor screen when adding a new item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:204 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:256 -msgid "Add New Item" -msgstr "" - -#. translators: %s Singular form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:201 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:253 -msgid "Add New %s" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:186 -msgid "View Posts" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:185 -msgid "" -"Appears in the admin bar in the 'All Posts' view, provided the post type " -"supports archives and the home page is not an archive of that post type." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:184 -msgid "View Items" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:166 -msgid "View Post" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:165 -msgid "In the admin bar to view item when editing it." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:164 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:216 -msgid "View Item" -msgstr "" - -#. translators: %s Singular form of post type name -#. translators: %s Plural form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:161 -#: includes/admin/views/acf-post-type/advanced-settings.php:181 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:213 -msgid "View %s" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:146 -msgid "Edit Post" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:145 -msgid "At the top of the editor screen when editing an item." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:144 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:196 -msgid "Edit Item" -msgstr "" - -#. translators: %s Singular form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:141 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:193 -msgid "Edit %s" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:126 -msgid "All Posts" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:125 -#: includes/admin/views/acf-post-type/advanced-settings.php:220 -#: includes/admin/views/acf-post-type/advanced-settings.php:240 -msgid "In the post type submenu in the admin dashboard." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:124 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:176 -msgid "All Items" -msgstr "" - -#. translators: %s Plural form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:121 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:173 -msgid "All %s" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:105 -msgid "Admin menu name for the post type." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:104 -msgid "Menu Name" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:90 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:142 -msgid "Regenerate all labels using the Singular and Plural labels" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:88 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:140 -msgid "Regenerate" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:79 -msgid "Active post types are enabled and registered with WordPress." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:63 -msgid "A descriptive summary of the post type." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:48 -msgid "Add Custom" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:42 -msgid "Enable various features in the content editor." -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:31 -msgid "Post Formats" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:25 -msgid "Editor" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:24 -msgid "Trackbacks" -msgstr "" - -#: includes/admin/views/acf-post-type/basic-settings.php:87 -msgid "Select existing taxonomies to classify items of the post type." -msgstr "" - -#: includes/admin/views/acf-field-group/field.php:145 -msgid "Browse Fields" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:292 -msgid "Nothing to import" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:287 -msgid ". The Custom Post Type UI plugin can be deactivated." -msgstr "" - -#. translators: %d - number of items imported from CPTUI -#: includes/admin/tools/class-acf-admin-tool-import.php:278 -msgid "Imported %d item from Custom Post Type UI -" -msgid_plural "Imported %d items from Custom Post Type UI -" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:262 -msgid "Failed to import taxonomies." -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:244 -msgid "Failed to import post types." -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:233 -msgid "Nothing from Custom Post Type UI plugin selected for import." -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:209 -msgid "Imported 1 item" -msgid_plural "Imported %s items" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:122 -msgid "" -"Importing a Post Type or Taxonomy with the same key as one that already " -"exists will overwrite the settings for the existing Post Type or Taxonomy " -"with those of the import." -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:111 -#: includes/admin/tools/class-acf-admin-tool-import.php:127 -msgid "Import from Custom Post Type UI" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:412 -msgid "" -"The following code can be used to register a local version of the selected " -"items. Storing field groups, post types, or taxonomies locally can provide " -"many benefits such as faster load times, version control & dynamic fields/" -"settings. Simply copy and paste the following code to your theme's functions." -"php file or include it within an external file, then deactivate or delete " -"the items from the ACF admin." -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:411 -msgid "Export - Generate PHP" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:384 -msgid "Export" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:276 -msgid "Select Taxonomies" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:254 -msgid "Select Post Types" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:167 -msgid "Exported 1 item." -msgid_plural "Exported %s items." -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: includes/admin/post-types/admin-taxonomy.php:129 -#: assets/build/js/acf-internal-post-type.js:182 -#: assets/build/js/acf-internal-post-type.js:256 -msgid "Category" -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:127 -#: assets/build/js/acf-internal-post-type.js:179 -#: assets/build/js/acf-internal-post-type.js:253 -msgid "Tag" -msgstr "" - -#. translators: %s taxonomy name -#: includes/admin/post-types/admin-taxonomy.php:82 -msgid "%s taxonomy created" -msgstr "" - -#. translators: %s taxonomy name -#: includes/admin/post-types/admin-taxonomy.php:76 -msgid "%s taxonomy updated" -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:56 -msgid "Taxonomy draft updated." -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:55 -msgid "Taxonomy scheduled for." -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:54 -msgid "Taxonomy submitted." -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:53 -msgid "Taxonomy saved." -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:49 -msgid "Taxonomy deleted." -msgstr "" - -#: includes/admin/post-types/admin-taxonomy.php:48 -msgid "Taxonomy updated." -msgstr "" - -#: includes/admin/post-types/admin-taxonomies.php:377 -#: includes/admin/post-types/admin-taxonomy.php:157 -msgid "" -"This taxonomy could not be registered because its key is in use by another " -"taxonomy registered by another plugin or theme." -msgstr "" - -#. translators: %s number of taxonomies synchronized -#: includes/admin/post-types/admin-taxonomies.php:359 -msgid "Taxonomy synchronized." -msgid_plural "%s taxonomies synchronized." -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. translators: %s number of taxonomies duplicated -#: includes/admin/post-types/admin-taxonomies.php:352 -msgid "Taxonomy duplicated." -msgid_plural "%s taxonomies duplicated." -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. translators: %s number of taxonomies deactivated -#: includes/admin/post-types/admin-taxonomies.php:345 -msgid "Taxonomy deactivated." -msgid_plural "%s taxonomies deactivated." -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. translators: %s number of taxonomies activated -#: includes/admin/post-types/admin-taxonomies.php:338 -msgid "Taxonomy activated." -msgid_plural "%s taxonomies activated." -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: includes/admin/post-types/admin-taxonomies.php:139 -msgid "Terms" -msgstr "" - -#. translators: %s number of post types synchronized -#: includes/admin/post-types/admin-post-types.php:352 -msgid "Post type synchronized." -msgid_plural "%s post types synchronized." -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. translators: %s number of post types duplicated -#: includes/admin/post-types/admin-post-types.php:345 -msgid "Post type duplicated." -msgid_plural "%s post types duplicated." -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. translators: %s number of post types deactivated -#: includes/admin/post-types/admin-post-types.php:338 -msgid "Post type deactivated." -msgid_plural "%s post types deactivated." -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. translators: %s number of post types activated -#: includes/admin/post-types/admin-post-types.php:331 -msgid "Post type activated." -msgid_plural "%s post types activated." -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: includes/admin/post-types/admin-post-types.php:112 -#: includes/admin/post-types/admin-taxonomies.php:137 -#: includes/admin/tools/class-acf-admin-tool-import.php:82 -#: includes/admin/views/acf-taxonomy/basic-settings.php:82 -#: includes/post-types/class-acf-post-type.php:91 -msgid "Post Types" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:162 -#: includes/admin/post-types/admin-taxonomy.php:164 -msgid "Advanced Settings" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:161 -#: includes/admin/post-types/admin-taxonomy.php:163 -msgid "Basic Settings" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:155 -#: includes/admin/post-types/admin-post-types.php:370 -msgid "" -"This post type could not be registered because its key is in use by another " -"post type registered by another plugin or theme." -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:128 -#: assets/build/js/acf-internal-post-type.js:176 -#: assets/build/js/acf-internal-post-type.js:250 -msgid "Pages" -msgstr "" - -#: includes/admin/admin-internal-post-type.php:355 -msgid "Link Existing Field Groups" -msgstr "" - -#. translators: %s post type name -#: includes/admin/post-types/admin-post-type.php:80 -msgid "%s post type created" -msgstr "" - -#. translators: %s taxonomy name -#: includes/admin/post-types/admin-taxonomy.php:78 -msgid "Add fields to %s" -msgstr "" - -#. translators: %s post type name -#: includes/admin/post-types/admin-post-type.php:76 -msgid "%s post type updated" -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:56 -msgid "Post type draft updated." -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:55 -msgid "Post type scheduled for." -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:54 -msgid "Post type submitted." -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:53 -msgid "Post type saved." -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:50 -msgid "Post type updated." -msgstr "" - -#: includes/admin/post-types/admin-post-type.php:49 -msgid "Post type deleted." -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:120 -#: assets/build/js/acf-field-group.js:1146 -#: assets/build/js/acf-field-group.js:1366 -msgid "Type to search..." -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:105 -#: assets/build/js/acf-field-group.js:1172 -#: assets/build/js/acf-field-group.js:2319 -#: assets/build/js/acf-field-group.js:1414 -#: assets/build/js/acf-field-group.js:2727 -msgid "PRO Only" -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:97 -#: assets/build/js/acf-internal-post-type.js:308 -#: assets/build/js/acf-internal-post-type.js:417 -msgid "Field groups linked successfully." -msgstr "" - -#. translators: %s - URL to ACF tools page. -#: includes/admin/admin.php:195 -msgid "" -"Import Post Types and Taxonomies registered with Custom Post Type UI and " -"manage them with ACF. Get Started." -msgstr "" - -#: includes/admin/admin.php:48 includes/admin/admin.php:267 -msgid "ACF" -msgstr "" - -#: includes/admin/admin-internal-post-type.php:322 -msgid "taxonomy" -msgstr "" - -#: includes/admin/admin-internal-post-type.php:322 -msgid "post type" -msgstr "" - -#: includes/admin/admin-internal-post-type.php:346 -msgid "Done" -msgstr "" - -#: includes/admin/admin-internal-post-type.php:332 -msgid "Field Group(s)" -msgstr "" - -#: includes/admin/admin-internal-post-type.php:331 -msgid "Select one or many field groups..." -msgstr "" - -#: includes/admin/admin-internal-post-type.php:330 -msgid "Please select the field groups to link." -msgstr "" - -#: includes/admin/admin-internal-post-type.php:288 -msgid "Field group linked successfully." -msgid_plural "Field groups linked successfully." -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: includes/admin/admin-internal-post-type-list.php:261 -#: includes/admin/post-types/admin-post-types.php:371 -#: includes/admin/post-types/admin-taxonomies.php:378 -msgctxt "post status" -msgid "Registration Failed" -msgstr "" - -#: includes/admin/admin-internal-post-type-list.php:260 -msgid "" -"This item could not be registered because its key is in use by another item " -"registered by another plugin or theme." -msgstr "" - -#: includes/acf-internal-post-type-functions.php:482 -#: includes/acf-internal-post-type-functions.php:511 -msgid "REST API" -msgstr "" - -#: includes/acf-internal-post-type-functions.php:481 -#: includes/acf-internal-post-type-functions.php:510 -#: includes/acf-internal-post-type-functions.php:537 -msgid "Permissions" -msgstr "" - -#: includes/acf-internal-post-type-functions.php:480 -#: includes/acf-internal-post-type-functions.php:509 -msgid "URLs" -msgstr "" - -#: includes/acf-internal-post-type-functions.php:479 -#: includes/acf-internal-post-type-functions.php:508 -#: includes/acf-internal-post-type-functions.php:535 -msgid "Visibility" -msgstr "" - -#: includes/acf-internal-post-type-functions.php:478 -#: includes/acf-internal-post-type-functions.php:507 -#: includes/acf-internal-post-type-functions.php:536 -msgid "Labels" -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:269 -msgid "Field Settings Tabs" -msgstr "" - -#. Author URI of the plugin -msgid "" -"https://wpengine.com/?utm_source=wordpress." -"org&utm_medium=referral&utm_campaign=plugin_directory&utm_content=advanced_custom_fields" -msgstr "" - -#: includes/api/api-template.php:867 -msgid "[ACF shortcode value disabled for preview]" -msgstr "" - -#: includes/admin/admin-internal-post-type.php:298 -#: includes/admin/post-types/admin-field-group.php:571 -msgid "Close Modal" -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:96 -#: assets/build/js/acf-field-group.js:1670 -#: assets/build/js/acf-field-group.js:1993 -msgid "Field moved to other group" -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:95 -#: assets/build/js/acf.js:1437 assets/build/js/acf.js:1517 -msgid "Close modal" -msgstr "" - -#: includes/fields/class-acf-field-tab.php:125 -msgid "Start a new group of tabs at this tab." -msgstr "" - -#: includes/fields/class-acf-field-tab.php:124 -msgid "New Tab Group" -msgstr "" - -#: includes/fields/class-acf-field-select.php:451 -#: includes/fields/class-acf-field-true_false.php:200 -msgid "Use a stylized checkbox using select2" -msgstr "" - -#: includes/fields/class-acf-field-radio.php:260 -msgid "Save Other Choice" -msgstr "" - -#: includes/fields/class-acf-field-radio.php:249 -msgid "Allow Other Choice" -msgstr "" - -#: includes/fields/class-acf-field-checkbox.php:450 -msgid "Add Toggle All" -msgstr "" - -#: includes/fields/class-acf-field-checkbox.php:409 -msgid "Save Custom Values" -msgstr "" - -#: includes/fields/class-acf-field-checkbox.php:398 -msgid "Allow Custom Values" -msgstr "" - -#: includes/fields/class-acf-field-checkbox.php:148 -msgid "Checkbox custom values cannot be empty. Uncheck any empty values." -msgstr "" - -#: pro/admin/admin-updates.php:122, -#: pro/admin/views/html-settings-updates.php:12 -msgid "Updates" -msgstr "Оновлення" - -#: includes/admin/views/global/navigation.php:176 -msgid "Advanced Custom Fields logo" -msgstr "" - -#: includes/admin/views/global/form-top.php:89 -msgid "Save Changes" -msgstr "" - -#: includes/admin/views/global/form-top.php:76 -msgid "Field Group Title" -msgstr "" - -#: includes/admin/views/acf-post-type/advanced-settings.php:704 -#: includes/admin/views/global/form-top.php:3 -msgid "Add title" -msgstr "" - -#. translators: %s url to getting started guide -#: includes/admin/views/acf-field-group/list-empty.php:20 -#: includes/admin/views/acf-post-type/list-empty.php:12 -#: includes/admin/views/acf-taxonomy/list-empty.php:12 -#: includes/admin/views/options-page-preview.php:13 -msgid "" -"New to ACF? Take a look at our getting " -"started guide." -msgstr "" - -#: includes/admin/views/acf-field-group/list-empty.php:15 -msgid "Add Field Group" -msgstr "" - -#. translators: %s url to creating a field group page -#: includes/admin/views/acf-field-group/list-empty.php:10 -msgid "" -"ACF uses field groups to group custom " -"fields together, and then attach those fields to edit screens." -msgstr "" - -#: includes/admin/views/acf-field-group/list-empty.php:5 -msgid "Add Your First Field Group" -msgstr "" - -#: includes/admin/admin-options-pages-preview.php:28 -#: includes/admin/views/acf-field-group/pro-features.php:54 -#: includes/admin/views/global/navigation.php:86 -#: includes/admin/views/global/navigation.php:250 -msgid "Options Pages" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:50 -msgid "ACF Blocks" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:58 -msgid "Gallery Field" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:38 -msgid "Flexible Content Field" -msgstr "" - -#: includes/admin/views/acf-field-group/pro-features.php:42 -msgid "Repeater Field" -msgstr "" - -#: includes/admin/views/global/navigation.php:212 -msgid "Unlock Extra Features with ACF PRO" -msgstr "" - -#: includes/admin/views/acf-field-group/options.php:267 -msgid "Delete Field Group" -msgstr "" - -#. translators: 1: Post creation date 2: Post creation time -#: includes/admin/views/acf-field-group/options.php:261 -msgid "Created on %1$s at %2$s" -msgstr "" - -#: includes/acf-field-group-functions.php:497 -msgid "Group Settings" -msgstr "" - -#: includes/acf-field-group-functions.php:495 -msgid "Location Rules" -msgstr "" - -#. translators: %s url to field types list -#: includes/admin/views/acf-field-group/fields.php:72 -msgid "" -"Choose from over 30 field types. Learn " -"more." -msgstr "" - -#: includes/admin/views/acf-field-group/fields.php:65 -msgid "" -"Get started creating new custom fields for your posts, pages, custom post " -"types and other WordPress content." -msgstr "" - -#: includes/admin/views/acf-field-group/fields.php:64 -msgid "Add Your First Field" -msgstr "" - -#. translators: A symbol (or text, if not available in your locale) meaning -#. "Order Number", in terms of positional placement. -#: includes/admin/views/acf-field-group/fields.php:43 -msgid "#" -msgstr "" - -#: includes/admin/views/acf-field-group/fields.php:33 -#: includes/admin/views/acf-field-group/fields.php:67 -#: includes/admin/views/acf-field-group/fields.php:103 -#: includes/admin/views/global/form-top.php:85 -msgid "Add Field" -msgstr "" - -#: includes/acf-field-group-functions.php:496 includes/fields.php:410 -msgid "Presentation" -msgstr "" - -#: includes/fields.php:409 -msgid "Validation" -msgstr "" - -#: includes/acf-internal-post-type-functions.php:477 -#: includes/acf-internal-post-type-functions.php:506 includes/fields.php:408 -msgid "General" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:70 -msgid "Import JSON" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:392 -msgid "Export As JSON" -msgstr "" - -#. translators: %s number of field groups deactivated -#: includes/admin/post-types/admin-field-groups.php:367 -msgid "Field group deactivated." -msgid_plural "%s field groups deactivated." -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. translators: %s number of field groups activated -#: includes/admin/post-types/admin-field-groups.php:360 -msgid "Field group activated." -msgid_plural "%s field groups activated." -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: includes/admin/admin-internal-post-type-list.php:452 -#: includes/admin/admin-internal-post-type-list.php:478 -msgid "Deactivate" -msgstr "" - -#: includes/admin/admin-internal-post-type-list.php:452 -msgid "Deactivate this item" -msgstr "" - -#: includes/admin/admin-internal-post-type-list.php:448 -#: includes/admin/admin-internal-post-type-list.php:477 -msgid "Activate" -msgstr "" - -#: includes/admin/admin-internal-post-type-list.php:448 -msgid "Activate this item" -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:92 -#: assets/build/js/acf-field-group.js:2812 -#: assets/build/js/acf-field-group.js:3313 -msgid "Move field group to trash?" -msgstr "" - -#: acf.php:497 includes/admin/admin-internal-post-type-list.php:248 -#: includes/admin/post-types/admin-field-group.php:297 -#: includes/admin/post-types/admin-post-type.php:295 -#: includes/admin/post-types/admin-taxonomy.php:297 -msgctxt "post status" -msgid "Inactive" -msgstr "" - -#. Author of the plugin -msgid "WP Engine" -msgstr "" - -#: acf.php:555 -msgid "" -"Advanced Custom Fields and Advanced Custom Fields PRO should not be active " -"at the same time. We've automatically deactivated Advanced Custom Fields PRO." -msgstr "" - -#: acf.php:553 -msgid "" -"Advanced Custom Fields and Advanced Custom Fields PRO should not be active " -"at the same time. We've automatically deactivated Advanced Custom Fields." -msgstr "" - -#: includes/acf-value-functions.php:374 -msgid "" -"%1$s - We've detected one or more calls to retrieve ACF " -"field values before ACF has been initialized. This is not supported and can " -"result in malformed or missing data. Learn how to fix this." -msgstr "" - -#: includes/fields/class-acf-field-user.php:551 -msgid "%1$s must have a user with the %2$s role." -msgid_plural "%1$s must have a user with one of the following roles: %2$s" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: includes/fields/class-acf-field-user.php:542 -msgid "%1$s must have a valid user ID." -msgstr "" - -#: includes/fields/class-acf-field-user.php:380 -msgid "Invalid request." -msgstr "Невірний запит." - -#: includes/fields/class-acf-field-select.php:684 -msgid "%1$s is not one of %2$s" -msgstr "" - -#: includes/fields/class-acf-field-post_object.php:700 -msgid "%1$s must have term %2$s." -msgid_plural "%1$s must have one of the following terms: %2$s" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: includes/fields/class-acf-field-post_object.php:684 -msgid "%1$s must be of post type %2$s." -msgid_plural "%1$s must be of one of the following post types: %2$s" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: includes/fields/class-acf-field-post_object.php:675 -msgid "%1$s must have a valid post ID." -msgstr "" - -#: includes/fields/class-acf-field-file.php:475 -msgid "%s requires a valid attachment ID." -msgstr "" - -#: includes/admin/views/acf-field-group/options.php:233 -msgid "Show in REST API" -msgstr "Показати в REST API" - -#: includes/fields/class-acf-field-color_picker.php:168 -msgid "Enable Transparency" -msgstr "Увімкнути прозорість" - -#: includes/fields/class-acf-field-color_picker.php:187 -msgid "RGBA Array" -msgstr "RGBA Масив" - -#: includes/fields/class-acf-field-color_picker.php:98 -msgid "RGBA String" -msgstr "RGBA рядок" - -#: includes/fields/class-acf-field-color_picker.php:97 -#: includes/fields/class-acf-field-color_picker.php:186 -msgid "Hex String" -msgstr "HEX рядок" - -#: includes/admin/views/browse-fields-modal.php:65 -msgid "Upgrade to PRO" -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:297 -#: includes/admin/post-types/admin-post-type.php:295 -#: includes/admin/post-types/admin-taxonomy.php:297 -msgctxt "post status" -msgid "Active" -msgstr "Діюча" - -#: includes/fields/class-acf-field-email.php:181 -msgid "'%s' is not a valid email address" -msgstr "'%s' неправильна адреса електронної пошти" - -#: includes/fields/class-acf-field-color_picker.php:76 -msgid "Color value" -msgstr "Значення кольору" - -#: includes/fields/class-acf-field-color_picker.php:74 -msgid "Select default color" -msgstr "Вибрати колір за замовчуванням" - -#: includes/fields/class-acf-field-color_picker.php:72 -msgid "Clear color" -msgstr "Очистити колір" - -#: includes/acf-wp-functions.php:90 -msgid "Blocks" -msgstr "Блоки" - -#: includes/acf-wp-functions.php:86 -msgid "Options" -msgstr "Параметри" - -#: includes/acf-wp-functions.php:82 -msgid "Users" -msgstr "Користувачі" - -#: includes/acf-wp-functions.php:78 -msgid "Menu items" -msgstr "Пункти Меню" - -#: includes/acf-wp-functions.php:70 -msgid "Widgets" -msgstr "Віджети" - -#: includes/acf-wp-functions.php:62 -msgid "Attachments" -msgstr "Вкладення" - -#: includes/acf-wp-functions.php:57 -#: includes/admin/post-types/admin-post-types.php:137 -#: includes/admin/post-types/admin-taxonomies.php:112 -#: includes/admin/tools/class-acf-admin-tool-import.php:93 -#: includes/admin/views/acf-post-type/basic-settings.php:86 -#: includes/post-types/class-acf-taxonomy.php:90 -#: includes/post-types/class-acf-taxonomy.php:91 -msgid "Taxonomies" -msgstr "Таксономії" - -#: includes/acf-wp-functions.php:44 -#: includes/admin/post-types/admin-post-type.php:126 -#: includes/admin/post-types/admin-post-types.php:139 -#: includes/admin/views/acf-post-type/advanced-settings.php:106 -#: assets/build/js/acf-internal-post-type.js:173 -#: assets/build/js/acf-internal-post-type.js:247 -msgid "Posts" -msgstr "Записи" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:76 -msgid "Last updated: %s" -msgstr "Останнє оновлення: %s" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:70 -msgid "Sorry, this post is unavailable for diff comparison." -msgstr "" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:42 -msgid "Invalid field group parameter(s)." -msgstr "Недійсний параметр(и) групи полів." - -#: includes/admin/admin-internal-post-type-list.php:413 -msgid "Awaiting save" -msgstr "Чекає збереження" - -#: includes/admin/admin-internal-post-type-list.php:410 -msgid "Saved" -msgstr "Збережено" - -#: includes/admin/admin-internal-post-type-list.php:406 -#: includes/admin/tools/class-acf-admin-tool-import.php:49 -msgid "Import" -msgstr "Імпорт" - -#: includes/admin/admin-internal-post-type-list.php:402 -msgid "Review changes" -msgstr "Перегляньте зміни" - -#: includes/admin/admin-internal-post-type-list.php:378 -msgid "Located in: %s" -msgstr "Розташовано в: %s" - -#: includes/admin/admin-internal-post-type-list.php:375 -msgid "Located in plugin: %s" -msgstr "Розташовано в плагіні: %s" - -#: includes/admin/admin-internal-post-type-list.php:372 -msgid "Located in theme: %s" -msgstr "Розташовано в Темі: %s" - -#: includes/admin/post-types/admin-field-groups.php:261 -msgid "Various" -msgstr "Різні" - -#: includes/admin/admin-internal-post-type-list.php:216 -#: includes/admin/admin-internal-post-type-list.php:485 -msgid "Sync changes" -msgstr "Синхронізувати зміни" - -#: includes/admin/admin-internal-post-type-list.php:215 -msgid "Loading diff" -msgstr "Завантаження різного" - -#: includes/admin/admin-internal-post-type-list.php:214 -msgid "Review local JSON changes" -msgstr "Перегляньте локальні зміни JSON" - -#: includes/admin/admin.php:170 -msgid "Visit website" -msgstr "Відвідати Сайт" - -#: includes/admin/admin.php:169 -msgid "View details" -msgstr "Переглянути деталі" - -#: includes/admin/admin.php:168 -msgid "Version %s" -msgstr "Версія %s" - -#: includes/admin/admin.php:167 -msgid "Information" -msgstr "Інформація" - -#: includes/admin/admin.php:158 -msgid "" -"Help Desk. The support professionals on " -"our Help Desk will assist with your more in depth, technical challenges." -msgstr "" -"Служба Підтримки. Фахівці Служби " -"підтримки в нашому довідковому бюро допоможуть вирішити ваші більш детальні " -"технічні завдання." - -#: includes/admin/admin.php:154 -msgid "" -"Discussions. We have an active and " -"friendly community on our Community Forums who may be able to help you " -"figure out the 'how-tos' of the ACF world." -msgstr "" - -#: includes/admin/admin.php:150 -msgid "" -"Documentation. Our extensive " -"documentation contains references and guides for most situations you may " -"encounter." -msgstr "" -"Документація. Наша розширена " -"документація містить посилання та інструкції щодо більшості ситуацій, з " -"якими ви можете зіткнутися." - -#: includes/admin/admin.php:147 -msgid "" -"We are fanatical about support, and want you to get the best out of your " -"website with ACF. If you run into any difficulties, there are several places " -"you can find help:" -msgstr "" -"Ми відповідально ставимося до підтримки і хочемо, щоб ви отримали найкращі " -"результати від свого веб-сайту за допомогою ACF. Якщо у вас виникнуть " -"труднощі, ви можете знайти допомогу в кількох місцях:" - -#: includes/admin/admin.php:144 includes/admin/admin.php:146 -msgid "Help & Support" -msgstr "Довідка та Підтримка" - -#: includes/admin/admin.php:135 -msgid "" -"Please use the Help & Support tab to get in touch should you find yourself " -"requiring assistance." -msgstr "" -"Будь ласка, скористайтесь вкладкою Довідка та Підтримка, щоб зв’язатись, " -"якщо вам потрібна допомога." - -#: includes/admin/admin.php:132 -msgid "" -"Before creating your first Field Group, we recommend first reading our Getting started guide to familiarize " -"yourself with the plugin's philosophy and best practises." -msgstr "" -"Перш ніж створювати свою першу групу полів, ми рекомендуємо спочатку " -"прочитати наш посібник Початок роботи , щоб ознайомитись із філософією та найкращими практиками плагіна." - -#: includes/admin/admin.php:130 -msgid "" -"The Advanced Custom Fields plugin provides a visual form builder to " -"customize WordPress edit screens with extra fields, and an intuitive API to " -"display custom field values in any theme template file." -msgstr "" -"Плагін Advanced Custom Fields пропонує візуальний конструктор форм для " -"налаштування екранів редагування WordPress з додатковими полями та " -"інтуїтивний API для відображення значень користувацьких полів у будь-якому " -"файлі шаблону теми." - -#: includes/admin/admin.php:127 includes/admin/admin.php:129 -msgid "Overview" -msgstr "Огляд" - -#: includes/locations.php:36 -msgid "Location type \"%s\" is already registered." -msgstr "Тип розташування \"%s\" вже зареєстровано." - -#: includes/locations.php:25 -msgid "Class \"%s\" does not exist." -msgstr "Клас \"%s\" не існує." - -#: includes/ajax/class-acf-ajax.php:157 -msgid "Invalid nonce." -msgstr "Невірний ідентифікатор." - -#: includes/fields/class-acf-field-user.php:375 -msgid "Error loading field." -msgstr "Помилка при завантаженні поля." - -#: assets/build/js/acf-input.js:2750 assets/build/js/acf-input.js:2819 -#: assets/build/js/acf-input.js:2926 assets/build/js/acf-input.js:3000 -msgid "Location not found: %s" -msgstr "Локація не знайдена: %s" - -#: includes/forms/form-user.php:353 -msgid "Error: %s" -msgstr "Помилка: %s" - -#: includes/locations/class-acf-location-widget.php:22 -msgid "Widget" -msgstr "Віджет" - -#: includes/locations/class-acf-location-user-role.php:24 -msgid "User Role" -msgstr "Роль користувача" - -#: includes/locations/class-acf-location-comment.php:22 -msgid "Comment" -msgstr "Коментар" - -#: includes/locations/class-acf-location-post-format.php:22 -msgid "Post Format" -msgstr "Формат запису" - -#: includes/locations/class-acf-location-nav-menu-item.php:22 -msgid "Menu Item" -msgstr "Пункт меню" - -#: includes/locations/class-acf-location-post-status.php:22 -msgid "Post Status" -msgstr "Статус запису" - -#: includes/acf-wp-functions.php:74 -#: includes/locations/class-acf-location-nav-menu.php:89 -msgid "Menus" -msgstr "Меню" - -#: includes/locations/class-acf-location-nav-menu.php:80 -msgid "Menu Locations" -msgstr "Області для меню" - -#: includes/locations/class-acf-location-nav-menu.php:22 -msgid "Menu" -msgstr "Меню" - -#: includes/locations/class-acf-location-post-taxonomy.php:22 -msgid "Post Taxonomy" -msgstr "Таксономія запису" - -#: includes/locations/class-acf-location-page-type.php:114 -msgid "Child Page (has parent)" -msgstr "Дочірня сторінка (має батьківську)" - -#: includes/locations/class-acf-location-page-type.php:113 -msgid "Parent Page (has children)" -msgstr "Батьківська сторінка (має нащадків)" - -#: includes/locations/class-acf-location-page-type.php:112 -msgid "Top Level Page (no parent)" -msgstr "Сторінка верхнього рівня (без батьків)" - -#: includes/locations/class-acf-location-page-type.php:111 -msgid "Posts Page" -msgstr "Сторінка записів" - -#: includes/locations/class-acf-location-page-type.php:110 -msgid "Front Page" -msgstr "Головна сторінка" - -#: includes/locations/class-acf-location-page-type.php:22 -msgid "Page Type" -msgstr "Тип сторінки" - -#: includes/locations/class-acf-location-current-user.php:73 -msgid "Viewing back end" -msgstr "Переглянути бекенд" - -#: includes/locations/class-acf-location-current-user.php:72 -msgid "Viewing front end" -msgstr "Переглянути фронтенд" - -#: includes/locations/class-acf-location-current-user.php:71 -msgid "Logged in" -msgstr "Авторизовані" - -#: includes/locations/class-acf-location-current-user.php:22 -msgid "Current User" -msgstr "Поточний користувач" - -#: includes/locations/class-acf-location-page-template.php:22 -msgid "Page Template" -msgstr "Шаблон сторінки" - -#: includes/locations/class-acf-location-user-form.php:74 -msgid "Register" -msgstr "Зареєструватись" - -#: includes/locations/class-acf-location-user-form.php:73 -msgid "Add / Edit" -msgstr "Додати / Редагувати" - -#: includes/locations/class-acf-location-user-form.php:22 -msgid "User Form" -msgstr "Форма користувача" - -#: includes/locations/class-acf-location-page-parent.php:22 -msgid "Page Parent" -msgstr "Батьківська сторінка" - -#: includes/locations/class-acf-location-current-user-role.php:77 -msgid "Super Admin" -msgstr "Супер-адмін" - -#: includes/locations/class-acf-location-current-user-role.php:22 -msgid "Current User Role" -msgstr "Поточна роль користувача" - -#: includes/locations/class-acf-location-page-template.php:73 -#: includes/locations/class-acf-location-post-template.php:85 -msgid "Default Template" -msgstr "Стандартний шаблон" - -#: includes/locations/class-acf-location-post-template.php:22 -msgid "Post Template" -msgstr "Шаблон запису" - -#: includes/locations/class-acf-location-post-category.php:22 -msgid "Post Category" -msgstr "Категорія запису" - -#: includes/locations/class-acf-location-attachment.php:84 -msgid "All %s formats" -msgstr "Всі %s формати" - -#: includes/locations/class-acf-location-attachment.php:22 -msgid "Attachment" -msgstr "Вкладений файл" - -#: includes/validation.php:366 -msgid "%s value is required" -msgstr "%s значення обов'язкове" - -#: includes/admin/views/acf-field-group/conditional-logic.php:59 -msgid "Show this field if" -msgstr "Показувати поле, якщо" - -#: includes/admin/views/acf-field-group/conditional-logic.php:26 -#: includes/admin/views/acf-field-group/field.php:109 includes/fields.php:411 -msgid "Conditional Logic" -msgstr "Умовна логіка" - -#: includes/admin/views/acf-field-group/conditional-logic.php:156 -#: includes/admin/views/acf-field-group/location-rule.php:92 -msgid "and" -msgstr "та" - -#: includes/admin/post-types/admin-field-groups.php:123 -#: includes/admin/post-types/admin-post-types.php:143 -#: includes/admin/post-types/admin-taxonomies.php:143 -msgid "Local JSON" -msgstr "Локальний JSON" - -#: includes/admin/views/acf-field-group/pro-features.php:46 -msgid "Clone Field" -msgstr "Клонувати поле" - -#: includes/admin/views/upgrade/notice.php:30 -msgid "" -"Please also check all premium add-ons (%s) are updated to the latest version." -msgstr "" -"Також перевірте, чи всі додаткові доповнення (%s) оновлені до останньої " -"версії." - -#: includes/admin/views/upgrade/notice.php:28 -msgid "" -"This version contains improvements to your database and requires an upgrade." -msgstr "Ця версія містить вдосконалення вашої бази даних і вимагає оновлення." - -#: includes/admin/views/upgrade/notice.php:28 -msgid "Thank you for updating to %1$s v%2$s!" -msgstr "Дякуємо за оновлення до %1$s v%2$s!" - -#: includes/admin/views/upgrade/notice.php:27 -msgid "Database Upgrade Required" -msgstr "Необхідно оновити базу даних" - -#: includes/admin/post-types/admin-field-group.php:141 -#: includes/admin/views/upgrade/notice.php:18 -msgid "Options Page" -msgstr "Сторінка опцій" - -#: includes/admin/views/upgrade/notice.php:15 includes/fields.php:462 -msgid "Gallery" -msgstr "Галерея" - -#: includes/admin/views/upgrade/notice.php:12 includes/fields.php:452 -msgid "Flexible Content" -msgstr "Гнучкий вміст" - -#: includes/admin/views/upgrade/notice.php:9 includes/fields.php:472 -msgid "Repeater" -msgstr "Повторювальне поле" - -#: includes/admin/views/tools/tools.php:24 -msgid "Back to all tools" -msgstr "Повернутися до всіх інструментів" - -#: includes/admin/views/acf-field-group/options.php:195 -msgid "" -"If multiple field groups appear on an edit screen, the first field group's " -"options will be used (the one with the lowest order number)" -msgstr "" -"Якщо декілька груп полів відображаються на екрані редагування, то " -"використовуватимуться параметри першої групи. (з найменшим порядковим " -"номером)" - -#: includes/admin/views/acf-field-group/options.php:195 -msgid "Select items to hide them from the edit screen." -msgstr "Оберіть що ховати з екрану редагування/створення." - -#: includes/admin/views/acf-field-group/options.php:194 -msgid "Hide on screen" -msgstr "Ховати на екрані" - -#: includes/admin/views/acf-field-group/options.php:186 -msgid "Send Trackbacks" -msgstr "Надіслати трекбеки" - -#: includes/admin/post-types/admin-taxonomy.php:128 -#: includes/admin/views/acf-field-group/options.php:185 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:159 -#: assets/build/js/acf-internal-post-type.js:180 -#: assets/build/js/acf-internal-post-type.js:254 -msgid "Tags" -msgstr "Позначки" - -#: includes/admin/post-types/admin-taxonomy.php:130 -#: includes/admin/views/acf-field-group/options.php:184 -#: assets/build/js/acf-internal-post-type.js:183 -#: assets/build/js/acf-internal-post-type.js:257 -msgid "Categories" -msgstr "Категорії" - -#: includes/admin/views/acf-field-group/options.php:182 -#: includes/admin/views/acf-post-type/advanced-settings.php:28 -msgid "Page Attributes" -msgstr "Властивості сторінки" - -#: includes/admin/views/acf-field-group/options.php:181 -msgid "Format" -msgstr "Формат" - -#: includes/admin/views/acf-field-group/options.php:180 -#: includes/admin/views/acf-post-type/advanced-settings.php:22 -msgid "Author" -msgstr "Автор" - -#: includes/admin/views/acf-field-group/options.php:179 -msgid "Slug" -msgstr "Частина посилання" - -#: includes/admin/views/acf-field-group/options.php:178 -#: includes/admin/views/acf-post-type/advanced-settings.php:27 -msgid "Revisions" -msgstr "Редакції" - -#: includes/acf-wp-functions.php:66 -#: includes/admin/views/acf-field-group/options.php:177 -#: includes/admin/views/acf-post-type/advanced-settings.php:23 -msgid "Comments" -msgstr "Коментарі" - -#: includes/admin/views/acf-field-group/options.php:176 -msgid "Discussion" -msgstr "Обговорення" - -#: includes/admin/views/acf-field-group/options.php:174 -#: includes/admin/views/acf-post-type/advanced-settings.php:26 -msgid "Excerpt" -msgstr "Уривок" - -#: includes/admin/views/acf-field-group/options.php:173 -msgid "Content Editor" -msgstr "Редактор матеріалу" - -#: includes/admin/views/acf-field-group/options.php:172 -msgid "Permalink" -msgstr "Постійне посилання" - -#: includes/admin/views/acf-field-group/options.php:250 -msgid "Shown in field group list" -msgstr "Відображається на сторінці груп полів" - -#: includes/admin/views/acf-field-group/options.php:157 -msgid "Field groups with a lower order will appear first" -msgstr "Групи полів з нижчим порядком з’являться спочатку" - -#: includes/admin/views/acf-field-group/options.php:156 -msgid "Order No." -msgstr "Порядок розташування" - -#: includes/admin/views/acf-field-group/options.php:147 -msgid "Below fields" -msgstr "Під полями" - -#: includes/admin/views/acf-field-group/options.php:146 -msgid "Below labels" -msgstr "Під ярликами" - -#: includes/admin/views/acf-field-group/options.php:139 -msgid "Instruction Placement" -msgstr "" - -#: includes/admin/views/acf-field-group/options.php:122 -msgid "Label Placement" -msgstr "" - -#: includes/admin/views/acf-field-group/options.php:110 -msgid "Side" -msgstr "Збоку" - -#: includes/admin/views/acf-field-group/options.php:109 -msgid "Normal (after content)" -msgstr "Стандартно (після тектового редактора)" - -#: includes/admin/views/acf-field-group/options.php:108 -msgid "High (after title)" -msgstr "Вгорі (під заголовком)" - -#: includes/admin/views/acf-field-group/options.php:101 -msgid "Position" -msgstr "Положення" - -#: includes/admin/views/acf-field-group/options.php:92 -msgid "Seamless (no metabox)" -msgstr "Спрощений (без метабоксу)" - -#: includes/admin/views/acf-field-group/options.php:91 -msgid "Standard (WP metabox)" -msgstr "Стандартний (WP метабокс)" - -#: includes/admin/views/acf-field-group/options.php:84 -msgid "Style" -msgstr "Стиль" - -#: includes/admin/views/acf-field-group/fields.php:55 -msgid "Type" -msgstr "Тип" - -#: includes/admin/post-types/admin-field-groups.php:117 -#: includes/admin/post-types/admin-post-types.php:136 -#: includes/admin/post-types/admin-taxonomies.php:136 -#: includes/admin/views/acf-field-group/fields.php:54 -msgid "Key" -msgstr "Ключ" - -#. translators: Hidden accessibility text for the positional order number of -#. the field. -#: includes/admin/views/acf-field-group/fields.php:48 -msgid "Order" -msgstr "Порядок" - -#: includes/admin/views/acf-field-group/field.php:322 -msgid "Close Field" -msgstr "Закрити поле" - -#: includes/admin/views/acf-field-group/field.php:253 -msgid "id" -msgstr "id" - -#: includes/admin/views/acf-field-group/field.php:237 -msgid "class" -msgstr "клас" - -#: includes/admin/views/acf-field-group/field.php:279 -msgid "width" -msgstr "ширина" - -#: includes/admin/views/acf-field-group/field.php:273 -msgid "Wrapper Attributes" -msgstr "Атрибути обгортки" - -#: includes/admin/views/acf-field-group/field.php:196 -msgid "Required" -msgstr "Вимагається" - -#: includes/admin/views/acf-field-group/field.php:221 -msgid "Instructions for authors. Shown when submitting data" -msgstr "Напишіть короткий опис для поля" - -#: includes/admin/views/acf-field-group/field.php:220 -msgid "Instructions" -msgstr "Інструкція" - -#: includes/admin/views/acf-field-group/field.php:129 -msgid "Field Type" -msgstr "Тип поля" - -#: includes/admin/views/acf-field-group/field.php:170 -msgid "Single word, no spaces. Underscores and dashes allowed" -msgstr "Одне слово, без пробілів. Можете використовувати нижнє підкреслення." - -#: includes/admin/views/acf-field-group/field.php:169 -msgid "Field Name" -msgstr "Ярлик" - -#: includes/admin/views/acf-field-group/field.php:157 -msgid "This is the name which will appear on the EDIT page" -msgstr "Ця назва відображується на сторінці редагування" - -#: includes/admin/views/acf-field-group/field.php:156 -#: includes/admin/views/browse-fields-modal.php:59 -msgid "Field Label" -msgstr "Назва поля" - -#: includes/admin/views/acf-field-group/field.php:81 -msgid "Delete" -msgstr "Видалити" - -#: includes/admin/views/acf-field-group/field.php:81 -msgid "Delete field" -msgstr "Видалити поле" - -#: includes/admin/views/acf-field-group/field.php:79 -msgid "Move" -msgstr "Перемістити" - -#: includes/admin/views/acf-field-group/field.php:79 -msgid "Move field to another group" -msgstr "Перемістити поле до іншої групи" - -#: includes/admin/views/acf-field-group/field.php:77 -msgid "Duplicate field" -msgstr "Дублювати поле" - -#: includes/admin/views/acf-field-group/field.php:73 -#: includes/admin/views/acf-field-group/field.php:76 -msgid "Edit field" -msgstr "Редагувати поле" - -#: includes/admin/views/acf-field-group/field.php:69 -msgid "Drag to reorder" -msgstr "Перетягніть, щоб змінити порядок" - -#: includes/admin/post-types/admin-field-group.php:103 -#: includes/admin/views/acf-field-group/location-group.php:3 -#: assets/build/js/acf-field-group.js:2347 -#: assets/build/js/acf-field-group.js:2763 -msgid "Show this field group if" -msgstr "Показувати групу полів, якщо" - -#: includes/admin/views/upgrade/upgrade.php:94 -#: includes/ajax/class-acf-ajax-upgrade.php:34 -msgid "No updates available." -msgstr "Немає оновлень." - -#: includes/admin/views/upgrade/upgrade.php:33 -msgid "Database upgrade complete. See what's new" -msgstr "" -"Оновлення бази даних завершено. Подивіться, що нового" - -#: includes/admin/views/upgrade/upgrade.php:30 -msgid "Reading upgrade tasks..." -msgstr "Читання завдань для оновлення…" - -#: includes/admin/views/upgrade/network.php:165 -#: includes/admin/views/upgrade/upgrade.php:65 -msgid "Upgrade failed." -msgstr "Помилка оновлення." - -#: includes/admin/views/upgrade/network.php:162 -msgid "Upgrade complete." -msgstr "Оновлення завершено." - -#: includes/admin/views/upgrade/network.php:148 -#: includes/admin/views/upgrade/upgrade.php:31 -msgid "Upgrading data to version %s" -msgstr "Оновлення даних до версії %s" - -#: includes/admin/views/upgrade/network.php:121 -#: includes/admin/views/upgrade/notice.php:44 -msgid "" -"It is strongly recommended that you backup your database before proceeding. " -"Are you sure you wish to run the updater now?" -msgstr "" -"Настійно рекомендується зробити резервну копію вашої бази даних, перш ніж " -"продовжити. Ви впевнені, що хочете запустити програму оновлення зараз?" - -#: includes/admin/views/upgrade/network.php:117 -msgid "Please select at least one site to upgrade." -msgstr "Виберіть принаймні один сайт для оновлення." - -#: includes/admin/views/upgrade/network.php:97 -msgid "" -"Database Upgrade complete. Return to network dashboard" -msgstr "" -"Оновлення бази даних завершено. Повернутися до Майстерні" - -#: includes/admin/views/upgrade/network.php:80 -msgid "Site is up to date" -msgstr "Сайт оновлено" - -#: includes/admin/views/upgrade/network.php:78 -msgid "Site requires database upgrade from %1$s to %2$s" -msgstr "Для сайту потрібно оновити базу даних з %1$s до %2$s" - -#: includes/admin/views/upgrade/network.php:36 -#: includes/admin/views/upgrade/network.php:47 -msgid "Site" -msgstr "Сайт" - -#: includes/admin/views/upgrade/network.php:26 -#: includes/admin/views/upgrade/network.php:27 -#: includes/admin/views/upgrade/network.php:96 -msgid "Upgrade Sites" -msgstr "Оновити сайти" - -#: includes/admin/views/upgrade/network.php:26 -msgid "" -"The following sites require a DB upgrade. Check the ones you want to update " -"and then click %s." -msgstr "" -"Для наступних сайтів потрібне оновлення БД. Позначте ті, які потрібно " -"оновити, а потім натисніть %s." - -#: includes/admin/views/acf-field-group/conditional-logic.php:171 -#: includes/admin/views/acf-field-group/locations.php:38 -msgid "Add rule group" -msgstr "Додати групу умов" - -#: includes/admin/views/acf-field-group/locations.php:10 -msgid "" -"Create a set of rules to determine which edit screens will use these " -"advanced custom fields" -msgstr "" -"Створіть набір умов, щоб визначити де використовувати ці додаткові поля" - -#: includes/admin/views/acf-field-group/locations.php:9 -msgid "Rules" -msgstr "Умови" - -#: includes/admin/tools/class-acf-admin-tool-export.php:510 -msgid "Copied" -msgstr "Скопійовано" - -#: includes/admin/tools/class-acf-admin-tool-export.php:486 -msgid "Copy to clipboard" -msgstr "Копіювати в буфер обміну" - -#: includes/admin/tools/class-acf-admin-tool-export.php:385 -msgid "" -"Select the items you would like to export and then select your export " -"method. Export As JSON to export to a .json file which you can then import " -"to another ACF installation. Generate PHP to export to PHP code which you " -"can place in your theme." -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:233 -msgid "Select Field Groups" -msgstr "Оберіть групи полів" - -#: includes/admin/tools/class-acf-admin-tool-export.php:96 -#: includes/admin/tools/class-acf-admin-tool-export.php:131 -msgid "No field groups selected" -msgstr "Не обрано груп полів" - -#: includes/admin/tools/class-acf-admin-tool-export.php:39 -#: includes/admin/tools/class-acf-admin-tool-export.php:393 -#: includes/admin/tools/class-acf-admin-tool-export.php:421 -msgid "Generate PHP" -msgstr "Генерувати PHP" - -#: includes/admin/tools/class-acf-admin-tool-export.php:35 -msgid "Export Field Groups" -msgstr "Експортувати групи полів" - -#: includes/admin/tools/class-acf-admin-tool-import.php:177 -msgid "Import file empty" -msgstr "Файл імпорту порожній" - -#: includes/admin/tools/class-acf-admin-tool-import.php:168 -msgid "Incorrect file type" -msgstr "Невірний тип файлу" - -#: includes/admin/tools/class-acf-admin-tool-import.php:163 -msgid "Error uploading file. Please try again" -msgstr "Помилка завантаження файлу. Спробуйте знову" - -#: includes/admin/tools/class-acf-admin-tool-import.php:50 -msgid "" -"Select the Advanced Custom Fields JSON file you would like to import. When " -"you click the import button below, ACF will import the items in that file." -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:27 -msgid "Import Field Groups" -msgstr "Імпортувати групи полів" - -#: includes/admin/admin-internal-post-type-list.php:401 -msgid "Sync" -msgstr "Синхронізація" - -#: includes/admin/admin-internal-post-type-list.php:858 -msgid "Select %s" -msgstr "Вибрати %s" - -#: includes/admin/admin-internal-post-type-list.php:442 -#: includes/admin/admin-internal-post-type-list.php:474 -#: includes/admin/views/acf-field-group/field.php:77 -msgid "Duplicate" -msgstr "Дублювати" - -#: includes/admin/admin-internal-post-type-list.php:442 -msgid "Duplicate this item" -msgstr "Дублювати цей елемент" - -#: includes/admin/views/acf-post-type/advanced-settings.php:41 -msgid "Supports" -msgstr "" - -#: includes/admin/admin.php:261 includes/admin/views/browse-fields-modal.php:92 -msgid "Documentation" -msgstr "Документатція" - -#: includes/admin/post-types/admin-field-groups.php:116 -#: includes/admin/post-types/admin-post-types.php:135 -#: includes/admin/post-types/admin-taxonomies.php:135 -#: includes/admin/views/acf-field-group/options.php:249 -#: includes/admin/views/acf-post-type/advanced-settings.php:62 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:114 -#: includes/admin/views/upgrade/network.php:38 -#: includes/admin/views/upgrade/network.php:49 -msgid "Description" -msgstr "Опис" - -#: includes/admin/admin-internal-post-type-list.php:398 -#: includes/admin/admin-internal-post-type-list.php:747 -msgid "Sync available" -msgstr "Доступна синхронізація" - -#. translators: %s number of field groups synchronized -#: includes/admin/post-types/admin-field-groups.php:381 -msgid "Field group synchronized." -msgid_plural "%s field groups synchronized." -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. translators: %s number of field groups duplicated -#: includes/admin/post-types/admin-field-groups.php:374 -msgid "Field group duplicated." -msgid_plural "%s field groups duplicated." -msgstr[0] "Групу полів продубльовано." -msgstr[1] "%s групи полів продубльовано." -msgstr[2] "%s груп полів продубльовано." - -#: includes/admin/admin-internal-post-type-list.php:137 -msgid "Active (%s)" -msgid_plural "Active (%s)" -msgstr[0] "Активні (%s)" -msgstr[1] "Активні (%s)" -msgstr[2] "Активні (%s)" - -#: includes/admin/admin-upgrade.php:254 -msgid "Review sites & upgrade" -msgstr "Перегляд сайтів & оновлення" - -#: includes/admin/admin-upgrade.php:59 includes/admin/admin-upgrade.php:93 -#: includes/admin/admin-upgrade.php:94 includes/admin/admin-upgrade.php:230 -#: includes/admin/views/upgrade/network.php:24 -#: includes/admin/views/upgrade/upgrade.php:26 -msgid "Upgrade Database" -msgstr "Оновити базу даних" - -#: includes/admin/views/acf-field-group/options.php:175 -#: includes/admin/views/acf-post-type/advanced-settings.php:30 -msgid "Custom Fields" -msgstr "Додаткові поля" - -#: includes/admin/post-types/admin-field-group.php:616 -msgid "Move Field" -msgstr "Перемістити поле" - -#: includes/admin/post-types/admin-field-group.php:605 -#: includes/admin/post-types/admin-field-group.php:609 -msgid "Please select the destination for this field" -msgstr "Будь ласка, оберіть групу, в яку перемістити" - -#. translators: Confirmation message once a field has been moved to a different -#. field group. -#: includes/admin/post-types/admin-field-group.php:567 -msgid "The %1$s field can now be found in the %2$s field group" -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:564 -msgid "Move Complete." -msgstr "Переміщення завершене." - -#: includes/admin/views/acf-field-group/field.php:39 -#: includes/admin/views/acf-field-group/options.php:217 -#: includes/admin/views/acf-post-type/advanced-settings.php:78 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:130 -msgid "Active" -msgstr "Активно" - -#: includes/admin/post-types/admin-field-group.php:266 -msgid "Field Keys" -msgstr "Ключі поля" - -#: includes/admin/post-types/admin-field-group.php:164 -#: includes/admin/tools/class-acf-admin-tool-export.php:342 -msgid "Settings" -msgstr "Налаштування" - -#: includes/admin/post-types/admin-field-groups.php:118 -msgid "Location" -msgstr "Розташування" - -#: includes/admin/post-types/admin-field-group.php:104 -#: assets/build/js/acf-input.js:983 assets/build/js/acf-input.js:1075 -msgid "Null" -msgstr "Нуль" - -#: includes/admin/post-types/admin-field-group.php:101 -#: includes/class-acf-internal-post-type.php:730 -#: includes/post-types/class-acf-field-group.php:345 -#: assets/build/js/acf-field-group.js:1510 -#: assets/build/js/acf-field-group.js:1821 -msgid "copy" -msgstr "копіювати" - -#: includes/admin/post-types/admin-field-group.php:100 -#: assets/build/js/acf-field-group.js:623 -#: assets/build/js/acf-field-group.js:778 -msgid "(this field)" -msgstr "(це поле)" - -#: includes/admin/post-types/admin-field-group.php:98 -#: assets/build/js/acf-input.js:918 assets/build/js/acf-input.js:943 -#: assets/build/js/acf-input.js:1002 assets/build/js/acf-input.js:1030 -msgid "Checked" -msgstr "Перевірено" - -#: includes/admin/post-types/admin-field-group.php:94 -#: assets/build/js/acf-field-group.js:1615 -#: assets/build/js/acf-field-group.js:1933 -msgid "Move Custom Field" -msgstr "Перемістити поле" - -#: includes/admin/post-types/admin-field-group.php:93 -#: assets/build/js/acf-field-group.js:649 -#: assets/build/js/acf-field-group.js:804 -msgid "No toggle fields available" -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:91 -msgid "Field group title is required" -msgstr "Заголовок обов’язковий" - -#: includes/admin/post-types/admin-field-group.php:90 -#: assets/build/js/acf-field-group.js:1604 -#: assets/build/js/acf-field-group.js:1919 -msgid "This field cannot be moved until its changes have been saved" -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:89 -#: assets/build/js/acf-field-group.js:1414 -#: assets/build/js/acf-field-group.js:1716 -msgid "The string \"field_\" may not be used at the start of a field name" -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:71 -msgid "Field group draft updated." -msgstr "Чернетку групи полів оновлено." - -#: includes/admin/post-types/admin-field-group.php:70 -msgid "Field group scheduled for." -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:69 -msgid "Field group submitted." -msgstr "Групу полів надіслано." - -#: includes/admin/post-types/admin-field-group.php:68 -msgid "Field group saved." -msgstr "Групу полів збережено." - -#: includes/admin/post-types/admin-field-group.php:67 -msgid "Field group published." -msgstr "Групу полів опубліковано." - -#: includes/admin/post-types/admin-field-group.php:64 -msgid "Field group deleted." -msgstr "Групу полів видалено." - -#: includes/admin/post-types/admin-field-group.php:62 -#: includes/admin/post-types/admin-field-group.php:63 -#: includes/admin/post-types/admin-field-group.php:65 -msgid "Field group updated." -msgstr "Групу полів оновлено." - -#: includes/admin/admin-tools.php:118 -#: includes/admin/views/global/navigation.php:246 -#: includes/admin/views/tools/tools.php:21 -msgid "Tools" -msgstr "Інструменти" - -#: includes/locations/abstract-acf-location.php:106 -msgid "is not equal to" -msgstr "не дорівнює" - -#: includes/locations/abstract-acf-location.php:105 -msgid "is equal to" -msgstr "дорівнює" - -#: includes/locations.php:102 -msgid "Forms" -msgstr "Форми" - -#: includes/admin/post-types/admin-post-type.php:127 includes/locations.php:100 -#: includes/locations/class-acf-location-page.php:22 -#: assets/build/js/acf-internal-post-type.js:175 -#: assets/build/js/acf-internal-post-type.js:249 -msgid "Page" -msgstr "Сторінка" - -#: includes/admin/post-types/admin-post-type.php:125 includes/locations.php:99 -#: includes/locations/class-acf-location-post.php:22 -#: assets/build/js/acf-internal-post-type.js:172 -#: assets/build/js/acf-internal-post-type.js:246 -msgid "Post" -msgstr "Запис" - -#: includes/fields.php:354 -msgid "Relational" -msgstr "" - -#: includes/fields.php:353 -msgid "Choice" -msgstr "Вибір" - -#: includes/fields.php:351 -msgid "Basic" -msgstr "Загальне" - -#: includes/fields.php:320 -msgid "Unknown" -msgstr "Невідомий" - -#: includes/fields.php:320 -msgid "Field type does not exist" -msgstr "Тип поля не існує" - -#: includes/forms/form-front.php:236 -msgid "Spam Detected" -msgstr "" - -#: includes/forms/form-front.php:107 -msgid "Post updated" -msgstr "Запис оновлено" - -#: includes/forms/form-front.php:106 -msgid "Update" -msgstr "Оновити" - -#: includes/forms/form-front.php:57 -msgid "Validate Email" -msgstr "" - -#: includes/fields.php:352 includes/forms/form-front.php:49 -msgid "Content" -msgstr "Вміст" - -#: includes/admin/views/acf-post-type/advanced-settings.php:21 -#: includes/forms/form-front.php:40 -msgid "Title" -msgstr "Заголовок" - -#: includes/assets.php:372 includes/forms/form-comment.php:160 -#: assets/build/js/acf-input.js:7382 assets/build/js/acf-input.js:7968 -msgid "Edit field group" -msgstr "Редагувати групу полів" - -#: includes/admin/post-types/admin-field-group.php:117 -#: assets/build/js/acf-input.js:1125 assets/build/js/acf-input.js:1230 -msgid "Selection is less than" -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:116 -#: assets/build/js/acf-input.js:1106 assets/build/js/acf-input.js:1202 -msgid "Selection is greater than" -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:115 -#: assets/build/js/acf-input.js:1075 assets/build/js/acf-input.js:1170 -msgid "Value is less than" -msgstr "Значення меньше ніж" - -#: includes/admin/post-types/admin-field-group.php:114 -#: assets/build/js/acf-input.js:1045 assets/build/js/acf-input.js:1139 -msgid "Value is greater than" -msgstr "Значення більше ніж" - -#: includes/admin/post-types/admin-field-group.php:113 -#: assets/build/js/acf-input.js:888 assets/build/js/acf-input.js:960 -msgid "Value contains" -msgstr "Значення містить" - -#: includes/admin/post-types/admin-field-group.php:112 -#: assets/build/js/acf-input.js:862 assets/build/js/acf-input.js:926 -msgid "Value matches pattern" -msgstr "Значення відповідає шаблону" - -#: includes/admin/post-types/admin-field-group.php:111 -#: assets/build/js/acf-input.js:840 assets/build/js/acf-input.js:1023 -#: assets/build/js/acf-input.js:903 assets/build/js/acf-input.js:1116 -msgid "Value is not equal to" -msgstr "Значення не дорівноє" - -#: includes/admin/post-types/admin-field-group.php:110 -#: assets/build/js/acf-input.js:810 assets/build/js/acf-input.js:964 -#: assets/build/js/acf-input.js:864 assets/build/js/acf-input.js:1053 -msgid "Value is equal to" -msgstr "Значення дорівнює" - -#: includes/admin/post-types/admin-field-group.php:109 -#: assets/build/js/acf-input.js:788 assets/build/js/acf-input.js:841 -msgid "Has no value" -msgstr "" - -#: includes/admin/post-types/admin-field-group.php:108 -#: assets/build/js/acf-input.js:758 assets/build/js/acf-input.js:783 -msgid "Has any value" -msgstr "" - -#: includes/admin/admin-internal-post-type.php:345 -#: includes/admin/views/browse-fields-modal.php:62 includes/assets.php:353 -#: assets/build/js/acf.js:1564 assets/build/js/acf.js:1658 -msgid "Cancel" -msgstr "Скасувати" - -#: includes/assets.php:349 assets/build/js/acf.js:1738 -#: assets/build/js/acf.js:1855 -msgid "Are you sure?" -msgstr "Ви впевнені?" - -#: includes/assets.php:369 assets/build/js/acf-input.js:9442 -#: assets/build/js/acf-input.js:10294 -msgid "%d fields require attention" -msgstr "" - -#: includes/assets.php:368 assets/build/js/acf-input.js:9440 -#: assets/build/js/acf-input.js:10290 -msgid "1 field requires attention" -msgstr "1 поле потребує уваги" - -#: includes/assets.php:367 includes/validation.php:288 -#: includes/validation.php:298 assets/build/js/acf-input.js:9435 -#: assets/build/js/acf-input.js:10285 -msgid "Validation failed" -msgstr "Помилка валідації" - -#: includes/assets.php:366 assets/build/js/acf-input.js:9603 -#: assets/build/js/acf-input.js:10473 -msgid "Validation successful" -msgstr "Валідація успішна" - -#: includes/media.php:54 assets/build/js/acf-input.js:7210 -#: assets/build/js/acf-input.js:7772 -msgid "Restricted" -msgstr "Обмежено" - -#: includes/media.php:53 assets/build/js/acf-input.js:7025 -#: assets/build/js/acf-input.js:7536 -msgid "Collapse Details" -msgstr "Згорнути деталі" - -#: includes/media.php:52 assets/build/js/acf-input.js:7025 -#: assets/build/js/acf-input.js:7533 -msgid "Expand Details" -msgstr "Показати деталі" - -#: includes/admin/views/acf-post-type/advanced-settings.php:465 -#: includes/media.php:51 assets/build/js/acf-input.js:6892 -#: assets/build/js/acf-input.js:7381 -msgid "Uploaded to this post" -msgstr "Завантажено до цього запису." - -#: includes/media.php:50 assets/build/js/acf-input.js:6931 -#: assets/build/js/acf-input.js:7420 -msgctxt "verb" -msgid "Update" -msgstr "Оновлення" - -#: includes/media.php:49 -msgctxt "verb" -msgid "Edit" -msgstr "Редагувати" - -#: includes/assets.php:363 assets/build/js/acf-input.js:9212 -#: assets/build/js/acf-input.js:10056 -msgid "The changes you made will be lost if you navigate away from this page" -msgstr "Зміни, які ви внесли, буде втрачено, якщо ви перейдете з цієї сторінки" - -#: includes/api/api-helpers.php:3395 -msgid "File type must be %s." -msgstr "Тип файлу має бути %s." - -#: includes/admin/post-types/admin-field-group.php:102 -#: includes/admin/views/acf-field-group/conditional-logic.php:59 -#: includes/admin/views/acf-field-group/conditional-logic.php:169 -#: includes/admin/views/acf-field-group/location-group.php:3 -#: includes/admin/views/acf-field-group/locations.php:36 -#: includes/api/api-helpers.php:3391 assets/build/js/acf-field-group.js:771 -#: assets/build/js/acf-field-group.js:2385 -#: assets/build/js/acf-field-group.js:933 -#: assets/build/js/acf-field-group.js:2807 -msgid "or" -msgstr "або" - -#: includes/api/api-helpers.php:3364 -msgid "File size must not exceed %s." -msgstr "Розмір файлу не повинен перевищувати %s." - -#: includes/api/api-helpers.php:3359 -msgid "File size must be at least %s." -msgstr "Розмір файлу має бути принаймні %s." - -#: includes/api/api-helpers.php:3344 -msgid "Image height must not exceed %dpx." -msgstr "Висота зображення не повинна перевищувати %dpx." - -#: includes/api/api-helpers.php:3339 -msgid "Image height must be at least %dpx." -msgstr "Висота зображення має бути принаймні %dpx." - -#: includes/api/api-helpers.php:3325 -msgid "Image width must not exceed %dpx." -msgstr "Ширина зображення не повинна перевищувати %dpx." - -#: includes/api/api-helpers.php:3320 -msgid "Image width must be at least %dpx." -msgstr "Ширина зображення має бути принаймні %dpx." - -#: includes/api/api-helpers.php:1561 includes/api/api-term.php:147 -msgid "(no title)" -msgstr "(без назви)" - -#: includes/api/api-helpers.php:853 -msgid "Full Size" -msgstr "Повний розмір" - -#: includes/api/api-helpers.php:812 -msgid "Large" -msgstr "Великий" - -#: includes/api/api-helpers.php:811 -msgid "Medium" -msgstr "Середній" - -#: includes/api/api-helpers.php:810 -msgid "Thumbnail" -msgstr "Мініатюра" - -#: includes/acf-field-functions.php:854 -#: includes/admin/post-types/admin-field-group.php:99 -#: assets/build/js/acf-field-group.js:1077 -#: assets/build/js/acf-field-group.js:1260 -msgid "(no label)" -msgstr "(Без мітки)" - -#: includes/fields/class-acf-field-textarea.php:145 -msgid "Sets the textarea height" -msgstr "Встановлює висоту текстової області" - -#: includes/fields/class-acf-field-textarea.php:144 -msgid "Rows" -msgstr "Рядки" - -#: includes/fields/class-acf-field-textarea.php:25 -msgid "Text Area" -msgstr "Текстова область" - -#: includes/fields/class-acf-field-checkbox.php:451 -msgid "Prepend an extra checkbox to toggle all choices" -msgstr "Додайте додатковий прапорець, щоб перемикати всі варіанти" - -#: includes/fields/class-acf-field-checkbox.php:413 -msgid "Save 'custom' values to the field's choices" -msgstr "" - -#: includes/fields/class-acf-field-checkbox.php:402 -msgid "Allow 'custom' values to be added" -msgstr "" - -#: includes/fields/class-acf-field-checkbox.php:38 -msgid "Add new choice" -msgstr "Додати новий вибір" - -#: includes/fields/class-acf-field-checkbox.php:174 -msgid "Toggle All" -msgstr "Перемкнути всі" - -#: includes/fields/class-acf-field-page_link.php:506 -msgid "Allow Archives URLs" -msgstr "" - -#: includes/fields/class-acf-field-page_link.php:179 -msgid "Archives" -msgstr "Архіви" - -#: includes/fields/class-acf-field-page_link.php:25 -msgid "Page Link" -msgstr "Посилання сторінки" - -#: includes/fields/class-acf-field-taxonomy.php:943 -#: includes/locations/class-acf-location-user-form.php:72 -msgid "Add" -msgstr "Додати" - -#: includes/admin/views/acf-field-group/fields.php:53 -#: includes/fields/class-acf-field-taxonomy.php:908 -msgid "Name" -msgstr "Ім'я" - -#: includes/fields/class-acf-field-taxonomy.php:892 -msgid "%s added" -msgstr "%s доданий" - -#: includes/fields/class-acf-field-taxonomy.php:856 -msgid "%s already exists" -msgstr "" - -#: includes/fields/class-acf-field-taxonomy.php:844 -msgid "User unable to add new %s" -msgstr "" - -#: includes/fields/class-acf-field-taxonomy.php:742 -msgid "Term ID" -msgstr "ID терміну" - -#: includes/fields/class-acf-field-taxonomy.php:741 -msgid "Term Object" -msgstr "" - -#: includes/fields/class-acf-field-taxonomy.php:726 -msgid "Load value from posts terms" -msgstr "" - -#: includes/fields/class-acf-field-taxonomy.php:725 -msgid "Load Terms" -msgstr "Завантажити терміни" - -#: includes/fields/class-acf-field-taxonomy.php:715 -msgid "Connect selected terms to the post" -msgstr "" - -#: includes/fields/class-acf-field-taxonomy.php:714 -msgid "Save Terms" -msgstr "Зберегти терміни" - -#: includes/fields/class-acf-field-taxonomy.php:704 -msgid "Allow new terms to be created whilst editing" -msgstr "" - -#: includes/fields/class-acf-field-taxonomy.php:703 -msgid "Create Terms" -msgstr "Створити терміни" - -#: includes/fields/class-acf-field-taxonomy.php:762 -msgid "Radio Buttons" -msgstr "Радіо кнопка" - -#: includes/fields/class-acf-field-taxonomy.php:761 -msgid "Single Value" -msgstr "" - -#: includes/fields/class-acf-field-taxonomy.php:759 -msgid "Multi Select" -msgstr "Вибір декількох" - -#: includes/fields/class-acf-field-checkbox.php:25 -#: includes/fields/class-acf-field-taxonomy.php:758 -msgid "Checkbox" -msgstr "Галочка" - -#: includes/fields/class-acf-field-taxonomy.php:757 -msgid "Multiple Values" -msgstr "Декілька значень" - -#: includes/fields/class-acf-field-taxonomy.php:752 -msgid "Select the appearance of this field" -msgstr "" - -#: includes/fields/class-acf-field-taxonomy.php:751 -msgid "Appearance" -msgstr "Вигляд" - -#: includes/fields/class-acf-field-taxonomy.php:693 -msgid "Select the taxonomy to be displayed" -msgstr "" - -#: includes/fields/class-acf-field-taxonomy.php:654 -msgctxt "No Terms" -msgid "No %s" -msgstr "Ні %s" - -#: includes/fields/class-acf-field-number.php:266 -msgid "Value must be equal to or lower than %d" -msgstr "" - -#: includes/fields/class-acf-field-number.php:259 -msgid "Value must be equal to or higher than %d" -msgstr "" - -#: includes/fields/class-acf-field-number.php:244 -msgid "Value must be a number" -msgstr "Значення має бути числом" - -#: includes/fields/class-acf-field-number.php:25 -msgid "Number" -msgstr "Число" - -#: includes/fields/class-acf-field-radio.php:264 -msgid "Save 'other' values to the field's choices" -msgstr "" - -#: includes/fields/class-acf-field-radio.php:253 -msgid "Add 'other' choice to allow for custom values" -msgstr "Додати вибір 'Інше', для користувацьких значень" - -#: includes/admin/views/global/navigation.php:196 -msgid "Other" -msgstr "Інше" - -#: includes/fields/class-acf-field-radio.php:25 -msgid "Radio Button" -msgstr "Радіо Кнопки" - -#: includes/fields/class-acf-field-accordion.php:107 -msgid "" -"Define an endpoint for the previous accordion to stop. This accordion will " -"not be visible." -msgstr "" - -#: includes/fields/class-acf-field-accordion.php:96 -msgid "Allow this accordion to open without closing others." -msgstr "" - -#: includes/fields/class-acf-field-accordion.php:95 -msgid "Multi-Expand" -msgstr "" - -#: includes/fields/class-acf-field-accordion.php:85 -msgid "Display this accordion as open on page load." -msgstr "" - -#: includes/fields/class-acf-field-accordion.php:84 -msgid "Open" -msgstr "Відкрити" - -#: includes/fields/class-acf-field-accordion.php:25 -msgid "Accordion" -msgstr "Акордеон" - -#: includes/fields/class-acf-field-file.php:267 -#: includes/fields/class-acf-field-file.php:279 -msgid "Restrict which files can be uploaded" -msgstr "" - -#: includes/fields/class-acf-field-file.php:220 -msgid "File ID" -msgstr "ID файлу" - -#: includes/fields/class-acf-field-file.php:219 -msgid "File URL" -msgstr "URL файлу" - -#: includes/fields/class-acf-field-file.php:218 -msgid "File Array" -msgstr "Масив файлу" - -#: includes/fields/class-acf-field-file.php:186 -msgid "Add File" -msgstr "Додати файл" - -#: includes/admin/tools/class-acf-admin-tool-import.php:156 -#: includes/fields/class-acf-field-file.php:186 -msgid "No file selected" -msgstr "Файл не вибрано" - -#: includes/fields/class-acf-field-file.php:150 -msgid "File name" -msgstr "Назва файлу" - -#: includes/fields/class-acf-field-file.php:63 -#: assets/build/js/acf-input.js:2474 assets/build/js/acf-input.js:2625 -msgid "Update File" -msgstr "Оновити файл" - -#: includes/fields/class-acf-field-file.php:62 -#: assets/build/js/acf-input.js:2473 assets/build/js/acf-input.js:2624 -msgid "Edit File" -msgstr "Редагувати файл" - -#: includes/admin/tools/class-acf-admin-tool-import.php:58 -#: includes/fields/class-acf-field-file.php:61 -#: assets/build/js/acf-input.js:2447 assets/build/js/acf-input.js:2597 -msgid "Select File" -msgstr "Оберіть файл" - -#: includes/fields/class-acf-field-file.php:25 -msgid "File" -msgstr "Файл" - -#: includes/fields/class-acf-field-password.php:25 -msgid "Password" -msgstr "Пароль" - -#: includes/fields/class-acf-field-select.php:392 -msgid "Specify the value returned" -msgstr "" - -#: includes/fields/class-acf-field-select.php:461 -msgid "Use AJAX to lazy load choices?" -msgstr "Використати AJAX для завантаження значень?" - -#: includes/fields/class-acf-field-checkbox.php:362 -#: includes/fields/class-acf-field-select.php:381 -msgid "Enter each default value on a new line" -msgstr "Введіть значення. Одне значення в одному рядку" - -#: includes/fields/class-acf-field-select.php:252 includes/media.php:48 -#: assets/build/js/acf-input.js:6790 assets/build/js/acf-input.js:7266 -msgctxt "verb" -msgid "Select" -msgstr "Вибрати" - -#: includes/fields/class-acf-field-select.php:121 -msgctxt "Select2 JS load_fail" -msgid "Loading failed" -msgstr "Помилка завантаження" - -#: includes/fields/class-acf-field-select.php:120 -msgctxt "Select2 JS searching" -msgid "Searching…" -msgstr "Пошук…" - -#: includes/fields/class-acf-field-select.php:119 -msgctxt "Select2 JS load_more" -msgid "Loading more results…" -msgstr "Завантаження результатів…" - -#: includes/fields/class-acf-field-select.php:118 -msgctxt "Select2 JS selection_too_long_n" -msgid "You can only select %d items" -msgstr "" - -#: includes/fields/class-acf-field-select.php:117 -msgctxt "Select2 JS selection_too_long_1" -msgid "You can only select 1 item" -msgstr "Ви можете вибрати тільки 1 позицію" - -#: includes/fields/class-acf-field-select.php:116 -msgctxt "Select2 JS input_too_long_n" -msgid "Please delete %d characters" -msgstr "" - -#: includes/fields/class-acf-field-select.php:115 -msgctxt "Select2 JS input_too_long_1" -msgid "Please delete 1 character" -msgstr "Будь ласка видаліть 1 символ" - -#: includes/fields/class-acf-field-select.php:114 -msgctxt "Select2 JS input_too_short_n" -msgid "Please enter %d or more characters" -msgstr "Введіть %d або більше символів" - -#: includes/fields/class-acf-field-select.php:113 -msgctxt "Select2 JS input_too_short_1" -msgid "Please enter 1 or more characters" -msgstr "Будь ласка введіть 1 або більше символів" - -#: includes/fields/class-acf-field-select.php:112 -msgctxt "Select2 JS matches_0" -msgid "No matches found" -msgstr "Співпадінь не знайдено" - -#: includes/fields/class-acf-field-select.php:111 -msgctxt "Select2 JS matches_n" -msgid "%d results are available, use up and down arrow keys to navigate." -msgstr "" - -#: includes/fields/class-acf-field-select.php:110 -msgctxt "Select2 JS matches_1" -msgid "One result is available, press enter to select it." -msgstr "" -"Лише один результат доступний, натисніть клавішу ENTER, щоб вибрати його." - -#: includes/fields/class-acf-field-select.php:25 -#: includes/fields/class-acf-field-taxonomy.php:763 -msgctxt "noun" -msgid "Select" -msgstr "Вибрати" - -#: includes/fields/class-acf-field-user.php:73 -msgid "User ID" -msgstr "ID користувача" - -#: includes/fields/class-acf-field-user.php:72 -msgid "User Object" -msgstr "Об'єкт користувача" - -#: includes/fields/class-acf-field-user.php:71 -msgid "User Array" -msgstr "Користувацький масив" - -#: includes/fields/class-acf-field-user.php:59 -msgid "All user roles" -msgstr "Всі ролі користувачів" - -#: includes/fields/class-acf-field-user.php:51 -msgid "Filter by Role" -msgstr "" - -#: includes/fields/class-acf-field-user.php:15 includes/locations.php:101 -msgid "User" -msgstr "Користувач" - -#: includes/fields/class-acf-field-separator.php:25 -msgid "Separator" -msgstr "Роздільник" - -#: includes/fields/class-acf-field-color_picker.php:75 -msgid "Select Color" -msgstr "Обрати колір" - -#: includes/admin/post-types/admin-post-type.php:129 -#: includes/admin/post-types/admin-taxonomy.php:131 -#: includes/fields/class-acf-field-color_picker.php:73 -#: assets/build/js/acf-internal-post-type.js:72 -#: assets/build/js/acf-internal-post-type.js:86 -msgid "Default" -msgstr "За замовчуванням" - -#: includes/admin/views/acf-post-type/advanced-settings.php:89 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:141 -#: includes/fields/class-acf-field-color_picker.php:71 -msgid "Clear" -msgstr "Очистити" - -#: includes/fields/class-acf-field-color_picker.php:25 -msgid "Color Picker" -msgstr "Вибір кольору" - -#: includes/fields/class-acf-field-date_time_picker.php:88 -msgctxt "Date Time Picker JS pmTextShort" -msgid "P" -msgstr "P" - -#: includes/fields/class-acf-field-date_time_picker.php:87 -msgctxt "Date Time Picker JS pmText" -msgid "PM" -msgstr "PM" - -#: includes/fields/class-acf-field-date_time_picker.php:84 -msgctxt "Date Time Picker JS amTextShort" -msgid "A" -msgstr "A" - -#: includes/fields/class-acf-field-date_time_picker.php:83 -msgctxt "Date Time Picker JS amText" -msgid "AM" -msgstr "AM" - -#: includes/fields/class-acf-field-date_time_picker.php:81 -msgctxt "Date Time Picker JS selectText" -msgid "Select" -msgstr "Обрати" - -#: includes/fields/class-acf-field-date_time_picker.php:80 -msgctxt "Date Time Picker JS closeText" -msgid "Done" -msgstr "Готово" - -#: includes/fields/class-acf-field-date_time_picker.php:79 -msgctxt "Date Time Picker JS currentText" -msgid "Now" -msgstr "Зараз" - -#: includes/fields/class-acf-field-date_time_picker.php:78 -msgctxt "Date Time Picker JS timezoneText" -msgid "Time Zone" -msgstr "Часовий пояс" - -#: includes/fields/class-acf-field-date_time_picker.php:77 -msgctxt "Date Time Picker JS microsecText" -msgid "Microsecond" -msgstr "Мікросекунд" - -#: includes/fields/class-acf-field-date_time_picker.php:76 -msgctxt "Date Time Picker JS millisecText" -msgid "Millisecond" -msgstr "Мілісекунд" - -#: includes/fields/class-acf-field-date_time_picker.php:75 -msgctxt "Date Time Picker JS secondText" -msgid "Second" -msgstr "Секунд" - -#: includes/fields/class-acf-field-date_time_picker.php:74 -msgctxt "Date Time Picker JS minuteText" -msgid "Minute" -msgstr "Хвилина" - -#: includes/fields/class-acf-field-date_time_picker.php:73 -msgctxt "Date Time Picker JS hourText" -msgid "Hour" -msgstr "Година" - -#: includes/fields/class-acf-field-date_time_picker.php:72 -msgctxt "Date Time Picker JS timeText" -msgid "Time" -msgstr "Час" - -#: includes/fields/class-acf-field-date_time_picker.php:71 -msgctxt "Date Time Picker JS timeOnlyTitle" -msgid "Choose Time" -msgstr "Виберіть час" - -#: includes/fields/class-acf-field-date_time_picker.php:25 -msgid "Date Time Picker" -msgstr "Вибір дати і часу" - -#: includes/fields/class-acf-field-accordion.php:106 -msgid "Endpoint" -msgstr "Кінцева точка" - -#: includes/admin/views/acf-field-group/options.php:130 -#: includes/fields/class-acf-field-tab.php:115 -msgid "Left aligned" -msgstr "Зліва" - -#: includes/admin/views/acf-field-group/options.php:129 -#: includes/fields/class-acf-field-tab.php:114 -msgid "Top aligned" -msgstr "Зверху" - -#: includes/fields/class-acf-field-tab.php:110 -msgid "Placement" -msgstr "Розміщення" - -#: includes/fields/class-acf-field-tab.php:26 -msgid "Tab" -msgstr "Вкладка" - -#: includes/fields/class-acf-field-url.php:162 -msgid "Value must be a valid URL" -msgstr "Значення має бути адресою URl" - -#: includes/fields/class-acf-field-link.php:177 -msgid "Link URL" -msgstr "URL посилання" - -#: includes/fields/class-acf-field-link.php:176 -msgid "Link Array" -msgstr "Масив посилання" - -#: includes/fields/class-acf-field-link.php:145 -msgid "Opens in a new window/tab" -msgstr "" - -#: includes/fields/class-acf-field-link.php:140 -msgid "Select Link" -msgstr "Оберіть посилання" - -#: includes/fields/class-acf-field-link.php:25 -msgid "Link" -msgstr "Посилання" - -#: includes/fields/class-acf-field-email.php:25 -msgid "Email" -msgstr "Email" - -#: includes/fields/class-acf-field-number.php:188 -#: includes/fields/class-acf-field-range.php:217 -msgid "Step Size" -msgstr "Розмір кроку" - -#: includes/fields/class-acf-field-number.php:158 -#: includes/fields/class-acf-field-range.php:195 -msgid "Maximum Value" -msgstr "Максимальне значення" - -#: includes/fields/class-acf-field-number.php:148 -#: includes/fields/class-acf-field-range.php:184 -msgid "Minimum Value" -msgstr "Мінімальне значення" - -#: includes/fields/class-acf-field-range.php:25 -msgid "Range" -msgstr "Діапазон (Range)" - -#: includes/fields/class-acf-field-button-group.php:175 -#: includes/fields/class-acf-field-checkbox.php:379 -#: includes/fields/class-acf-field-radio.php:220 -#: includes/fields/class-acf-field-select.php:399 -msgid "Both (Array)" -msgstr "Галочка" - -#: includes/admin/views/acf-field-group/fields.php:52 -#: includes/fields/class-acf-field-button-group.php:174 -#: includes/fields/class-acf-field-checkbox.php:378 -#: includes/fields/class-acf-field-radio.php:219 -#: includes/fields/class-acf-field-select.php:398 -msgid "Label" -msgstr "Мітка" - -#: includes/fields/class-acf-field-button-group.php:173 -#: includes/fields/class-acf-field-checkbox.php:377 -#: includes/fields/class-acf-field-radio.php:218 -#: includes/fields/class-acf-field-select.php:397 -msgid "Value" -msgstr "Значення" - -#: includes/fields/class-acf-field-button-group.php:222 -#: includes/fields/class-acf-field-checkbox.php:441 -#: includes/fields/class-acf-field-radio.php:292 -msgid "Vertical" -msgstr "Вертикально" - -#: includes/fields/class-acf-field-button-group.php:221 -#: includes/fields/class-acf-field-checkbox.php:442 -#: includes/fields/class-acf-field-radio.php:293 -msgid "Horizontal" -msgstr "Горизонтально" - -#: includes/fields/class-acf-field-button-group.php:148 -#: includes/fields/class-acf-field-checkbox.php:352 -#: includes/fields/class-acf-field-radio.php:193 -#: includes/fields/class-acf-field-select.php:370 -msgid "red : Red" -msgstr "red : Червоний" - -#: includes/fields/class-acf-field-button-group.php:148 -#: includes/fields/class-acf-field-checkbox.php:352 -#: includes/fields/class-acf-field-radio.php:193 -#: includes/fields/class-acf-field-select.php:370 -msgid "For more control, you may specify both a value and label like this:" -msgstr "Для більшого контролю, Ви можете вказати маркувати значення:" - -#: includes/fields/class-acf-field-button-group.php:148 -#: includes/fields/class-acf-field-checkbox.php:352 -#: includes/fields/class-acf-field-radio.php:193 -#: includes/fields/class-acf-field-select.php:370 -msgid "Enter each choice on a new line." -msgstr "У кожному рядку по варіанту" - -#: includes/fields/class-acf-field-button-group.php:147 -#: includes/fields/class-acf-field-checkbox.php:351 -#: includes/fields/class-acf-field-radio.php:192 -#: includes/fields/class-acf-field-select.php:369 -msgid "Choices" -msgstr "Варіанти вибору" - -#: includes/fields/class-acf-field-button-group.php:24 -msgid "Button Group" -msgstr "Група кнопок" - -#: includes/fields/class-acf-field-button-group.php:194 -#: includes/fields/class-acf-field-page_link.php:538 -#: includes/fields/class-acf-field-post_object.php:448 -#: includes/fields/class-acf-field-radio.php:238 -#: includes/fields/class-acf-field-select.php:429 -#: includes/fields/class-acf-field-taxonomy.php:772 -#: includes/fields/class-acf-field-user.php:103 -msgid "Allow Null" -msgstr "" - -#: includes/fields/class-acf-field-page_link.php:263 -#: includes/fields/class-acf-field-post_object.php:257 -#: includes/fields/class-acf-field-taxonomy.php:930 -msgid "Parent" -msgstr "Предок" - -#: includes/fields/class-acf-field-wysiwyg.php:390 -msgid "TinyMCE will not be initialized until field is clicked" -msgstr "" - -#: includes/fields/class-acf-field-wysiwyg.php:389 -msgid "Delay Initialization" -msgstr "" - -#: includes/fields/class-acf-field-wysiwyg.php:378 -msgid "Show Media Upload Buttons" -msgstr "" - -#: includes/fields/class-acf-field-wysiwyg.php:362 -msgid "Toolbar" -msgstr "Верхня панель" - -#: includes/fields/class-acf-field-wysiwyg.php:354 -msgid "Text Only" -msgstr "Лише текст" - -#: includes/fields/class-acf-field-wysiwyg.php:353 -msgid "Visual Only" -msgstr "Візуальний лише" - -#: includes/fields/class-acf-field-wysiwyg.php:352 -msgid "Visual & Text" -msgstr "Візуальний і Текстовий" - -#: includes/fields/class-acf-field-wysiwyg.php:347 -msgid "Tabs" -msgstr "Вкладки" - -#: includes/fields/class-acf-field-wysiwyg.php:285 -msgid "Click to initialize TinyMCE" -msgstr "Натисніть, щоб ініціалізувати TinyMCE" - -#: includes/fields/class-acf-field-wysiwyg.php:279 -msgctxt "Name for the Text editor tab (formerly HTML)" -msgid "Text" -msgstr "Текст" - -#: includes/fields/class-acf-field-wysiwyg.php:278 -msgid "Visual" -msgstr "Візуальний" - -#: includes/fields/class-acf-field-text.php:189 -#: includes/fields/class-acf-field-textarea.php:236 -msgid "Value must not exceed %d characters" -msgstr "Значення не має перевищувати %d символів" - -#: includes/fields/class-acf-field-text.php:124 -#: includes/fields/class-acf-field-textarea.php:124 -msgid "Leave blank for no limit" -msgstr "Щоб зняти обмеження — нічого не вказуйте тут" - -#: includes/fields/class-acf-field-text.php:123 -#: includes/fields/class-acf-field-textarea.php:123 -msgid "Character Limit" -msgstr "Ліміт символів" - -#: includes/fields/class-acf-field-email.php:158 -#: includes/fields/class-acf-field-number.php:209 -#: includes/fields/class-acf-field-password.php:105 -#: includes/fields/class-acf-field-range.php:239 -#: includes/fields/class-acf-field-text.php:164 -msgid "Appears after the input" -msgstr "Розміщується в кінці поля" - -#: includes/fields/class-acf-field-email.php:157 -#: includes/fields/class-acf-field-number.php:208 -#: includes/fields/class-acf-field-password.php:104 -#: includes/fields/class-acf-field-range.php:238 -#: includes/fields/class-acf-field-text.php:163 -msgid "Append" -msgstr "Після поля" - -#: includes/fields/class-acf-field-email.php:148 -#: includes/fields/class-acf-field-number.php:199 -#: includes/fields/class-acf-field-password.php:95 -#: includes/fields/class-acf-field-range.php:229 -#: includes/fields/class-acf-field-text.php:154 -msgid "Appears before the input" -msgstr "Розміщується на початку поля" - -#: includes/fields/class-acf-field-email.php:147 -#: includes/fields/class-acf-field-number.php:198 -#: includes/fields/class-acf-field-password.php:94 -#: includes/fields/class-acf-field-range.php:228 -#: includes/fields/class-acf-field-text.php:153 -msgid "Prepend" -msgstr "Перед полем" - -#: includes/fields/class-acf-field-email.php:138 -#: includes/fields/class-acf-field-number.php:179 -#: includes/fields/class-acf-field-password.php:85 -#: includes/fields/class-acf-field-text.php:144 -#: includes/fields/class-acf-field-textarea.php:156 -#: includes/fields/class-acf-field-url.php:122 -msgid "Appears within the input" -msgstr "Показується, якщо поле порожнє" - -#: includes/fields/class-acf-field-email.php:137 -#: includes/fields/class-acf-field-number.php:178 -#: includes/fields/class-acf-field-password.php:84 -#: includes/fields/class-acf-field-text.php:143 -#: includes/fields/class-acf-field-textarea.php:155 -#: includes/fields/class-acf-field-url.php:121 -msgid "Placeholder Text" -msgstr "Текст заповнювач" - -#: includes/fields/class-acf-field-button-group.php:158 -#: includes/fields/class-acf-field-email.php:118 -#: includes/fields/class-acf-field-number.php:129 -#: includes/fields/class-acf-field-radio.php:203 -#: includes/fields/class-acf-field-range.php:165 -#: includes/fields/class-acf-field-text.php:104 -#: includes/fields/class-acf-field-textarea.php:104 -#: includes/fields/class-acf-field-url.php:102 -#: includes/fields/class-acf-field-wysiwyg.php:312 -msgid "Appears when creating a new post" -msgstr "З'являється при створенні нового матеріалу" - -#: includes/fields/class-acf-field-text.php:25 -msgid "Text" -msgstr "Текст" - -#: includes/fields/class-acf-field-relationship.php:794 -msgid "%1$s requires at least %2$s selection" -msgid_plural "%1$s requires at least %2$s selections" -msgstr[0] "%1$s вимагає принаймні %2$s вибір" -msgstr[1] "%1$s вимагає принаймні %2$s виділення" -msgstr[2] "%1$s вимагає принаймні %2$s виділень" - -#: includes/fields/class-acf-field-post_object.php:417 -#: includes/fields/class-acf-field-relationship.php:644 -msgid "Post ID" -msgstr "ID Запису" - -#: includes/fields/class-acf-field-post_object.php:17 -#: includes/fields/class-acf-field-post_object.php:416 -#: includes/fields/class-acf-field-relationship.php:643 -msgid "Post Object" -msgstr "Об’єкт запису" - -#: includes/fields/class-acf-field-relationship.php:676 -msgid "Maximum Posts" -msgstr "" - -#: includes/fields/class-acf-field-relationship.php:666 -msgid "Minimum Posts" -msgstr "" - -#: includes/admin/views/acf-field-group/options.php:183 -#: includes/admin/views/acf-post-type/advanced-settings.php:29 -#: includes/fields/class-acf-field-relationship.php:701 -msgid "Featured Image" -msgstr "Головне зображення" - -#: includes/fields/class-acf-field-relationship.php:697 -msgid "Selected elements will be displayed in each result" -msgstr "Вибрані елементи будуть відображені в кожному результаті" - -#: includes/fields/class-acf-field-relationship.php:696 -msgid "Elements" -msgstr "Елементи" - -#: includes/fields/class-acf-field-relationship.php:630 -#: includes/fields/class-acf-field-taxonomy.php:20 -#: includes/fields/class-acf-field-taxonomy.php:692 -#: includes/locations/class-acf-location-taxonomy.php:22 -msgid "Taxonomy" -msgstr "Таксономія" - -#: includes/fields/class-acf-field-relationship.php:629 -#: includes/locations/class-acf-location-post-type.php:22 -#: includes/post-types/class-acf-post-type.php:92 -msgid "Post Type" -msgstr "Тип запису" - -#: includes/fields/class-acf-field-relationship.php:623 -msgid "Filters" -msgstr "Фільтри" - -#: includes/fields/class-acf-field-page_link.php:499 -#: includes/fields/class-acf-field-post_object.php:404 -#: includes/fields/class-acf-field-relationship.php:616 -msgid "All taxonomies" -msgstr "Всі таксономії" - -#: includes/fields/class-acf-field-page_link.php:491 -#: includes/fields/class-acf-field-post_object.php:396 -#: includes/fields/class-acf-field-relationship.php:608 -msgid "Filter by Taxonomy" -msgstr "Фільтр за типом таксономією" - -#: includes/fields/class-acf-field-page_link.php:469 -#: includes/fields/class-acf-field-post_object.php:374 -#: includes/fields/class-acf-field-relationship.php:586 -msgid "All post types" -msgstr "Всі типи матеріалів" - -#: includes/fields/class-acf-field-page_link.php:461 -#: includes/fields/class-acf-field-post_object.php:366 -#: includes/fields/class-acf-field-relationship.php:578 -msgid "Filter by Post Type" -msgstr "Фільтр за типом матеріалу" - -#: includes/fields/class-acf-field-relationship.php:476 -msgid "Search..." -msgstr "Шукати..." - -#: includes/fields/class-acf-field-relationship.php:406 -msgid "Select taxonomy" -msgstr "Оберіть таксономію" - -#: includes/fields/class-acf-field-relationship.php:397 -msgid "Select post type" -msgstr "Вибір типу матеріалу" - -#: includes/fields/class-acf-field-relationship.php:61 -#: assets/build/js/acf-input.js:3930 assets/build/js/acf-input.js:4214 -msgid "No matches found" -msgstr "Співпадінь не знайдено" - -#: includes/fields/class-acf-field-relationship.php:60 -#: assets/build/js/acf-input.js:3913 assets/build/js/acf-input.js:4193 -msgid "Loading" -msgstr "Завантаження" - -#: includes/fields/class-acf-field-relationship.php:59 -#: assets/build/js/acf-input.js:3818 assets/build/js/acf-input.js:4084 -msgid "Maximum values reached ( {max} values )" -msgstr "Досягнуто максимальних значень ( {max} values )" - -#: includes/fields/class-acf-field-relationship.php:17 -msgid "Relationship" -msgstr "Зв'язок" - -#: includes/fields/class-acf-field-file.php:291 -#: includes/fields/class-acf-field-image.php:317 -msgid "Comma separated list. Leave blank for all types" -msgstr "Перелік, розділений комами. Залиште порожнім для всіх типів" - -#: includes/fields/class-acf-field-file.php:290 -#: includes/fields/class-acf-field-image.php:316 -msgid "Allowed File Types" -msgstr "" - -#: includes/fields/class-acf-field-file.php:278 -#: includes/fields/class-acf-field-image.php:280 -msgid "Maximum" -msgstr "Максимум" - -#: includes/fields/class-acf-field-file.php:154 -#: includes/fields/class-acf-field-file.php:270 -#: includes/fields/class-acf-field-file.php:282 -#: includes/fields/class-acf-field-image.php:271 -#: includes/fields/class-acf-field-image.php:307 -msgid "File size" -msgstr "Розмір файлу" - -#: includes/fields/class-acf-field-image.php:245 -#: includes/fields/class-acf-field-image.php:281 -msgid "Restrict which images can be uploaded" -msgstr "Обмежте, які зображення можна завантажувати" - -#: includes/fields/class-acf-field-file.php:266 -#: includes/fields/class-acf-field-image.php:244 -msgid "Minimum" -msgstr "Мінімум" - -#: includes/fields/class-acf-field-file.php:235 -#: includes/fields/class-acf-field-image.php:210 -msgid "Uploaded to post" -msgstr "Завантажено до матеріалу" - -#: includes/fields/class-acf-field-file.php:234 -#: includes/fields/class-acf-field-image.php:209 -#: includes/locations/class-acf-location-attachment.php:73 -#: includes/locations/class-acf-location-comment.php:61 -#: includes/locations/class-acf-location-nav-menu.php:74 -#: includes/locations/class-acf-location-taxonomy.php:63 -#: includes/locations/class-acf-location-user-form.php:71 -#: includes/locations/class-acf-location-user-role.php:78 -#: includes/locations/class-acf-location-widget.php:65 -msgid "All" -msgstr "Все" - -#: includes/fields/class-acf-field-file.php:229 -#: includes/fields/class-acf-field-image.php:204 -msgid "Limit the media library choice" -msgstr "Обмежте вибір медіатеки" - -#: includes/fields/class-acf-field-file.php:228 -#: includes/fields/class-acf-field-image.php:203 -msgid "Library" -msgstr "Бібліотека" - -#: includes/fields/class-acf-field-image.php:336 -msgid "Preview Size" -msgstr "Розмір мініатюр" - -#: includes/fields/class-acf-field-image.php:195 -msgid "Image ID" -msgstr "ID зображення" - -#: includes/fields/class-acf-field-image.php:194 -msgid "Image URL" -msgstr "URL зображення" - -#: includes/fields/class-acf-field-image.php:193 -msgid "Image Array" -msgstr "Масив зображення" - -#: includes/fields/class-acf-field-button-group.php:168 -#: includes/fields/class-acf-field-checkbox.php:372 -#: includes/fields/class-acf-field-file.php:213 -#: includes/fields/class-acf-field-link.php:171 -#: includes/fields/class-acf-field-radio.php:213 -msgid "Specify the returned value on front end" -msgstr "" - -#: includes/fields/class-acf-field-button-group.php:167 -#: includes/fields/class-acf-field-checkbox.php:371 -#: includes/fields/class-acf-field-file.php:212 -#: includes/fields/class-acf-field-link.php:170 -#: includes/fields/class-acf-field-radio.php:212 -#: includes/fields/class-acf-field-taxonomy.php:736 -msgid "Return Value" -msgstr "Повернення значення" - -#: includes/fields/class-acf-field-image.php:162 -msgid "Add Image" -msgstr "Додати зображення" - -#: includes/fields/class-acf-field-image.php:162 -msgid "No image selected" -msgstr "Зображення не вибране" - -#: includes/assets.php:352 includes/fields/class-acf-field-file.php:162 -#: includes/fields/class-acf-field-image.php:142 -#: includes/fields/class-acf-field-link.php:145 assets/build/js/acf.js:1563 -#: assets/build/js/acf.js:1657 -msgid "Remove" -msgstr "Видалити" - -#: includes/admin/views/acf-field-group/field.php:76 -#: includes/fields/class-acf-field-file.php:160 -#: includes/fields/class-acf-field-image.php:140 -#: includes/fields/class-acf-field-link.php:145 -msgid "Edit" -msgstr "Редагувати" - -#: includes/fields/class-acf-field-image.php:70 includes/media.php:55 -#: assets/build/js/acf-input.js:6837 assets/build/js/acf-input.js:7320 -msgid "All images" -msgstr "Усі зображення" - -#: includes/fields/class-acf-field-image.php:69 -#: assets/build/js/acf-input.js:3181 assets/build/js/acf-input.js:3399 -msgid "Update Image" -msgstr "Оновити зображення" - -#: includes/fields/class-acf-field-image.php:68 -#: assets/build/js/acf-input.js:3180 assets/build/js/acf-input.js:3398 -msgid "Edit Image" -msgstr "Редагувати зображення" - -#: includes/fields/class-acf-field-image.php:67 -#: assets/build/js/acf-input.js:3156 assets/build/js/acf-input.js:3373 -msgid "Select Image" -msgstr "Обрати зображення" - -#: includes/fields/class-acf-field-image.php:25 -msgid "Image" -msgstr "Зображення" - -#: includes/fields/class-acf-field-message.php:125 -msgid "Allow HTML markup to display as visible text instead of rendering" -msgstr "" - -#: includes/fields/class-acf-field-message.php:124 -msgid "Escape HTML" -msgstr "" - -#: includes/fields/class-acf-field-message.php:116 -#: includes/fields/class-acf-field-textarea.php:172 -msgid "No Formatting" -msgstr "Без форматування" - -#: includes/fields/class-acf-field-message.php:115 -#: includes/fields/class-acf-field-textarea.php:171 -msgid "Automatically add <br>" -msgstr "Автоматичне перенесення рядків (додається теґ <br>)" - -#: includes/fields/class-acf-field-message.php:114 -#: includes/fields/class-acf-field-textarea.php:170 -msgid "Automatically add paragraphs" -msgstr "Автоматично додавати абзаци" - -#: includes/fields/class-acf-field-message.php:110 -#: includes/fields/class-acf-field-textarea.php:166 -msgid "Controls how new lines are rendered" -msgstr "Вкажіть спосіб обробки нових рядків" - -#: includes/fields/class-acf-field-message.php:109 -#: includes/fields/class-acf-field-textarea.php:165 -msgid "New Lines" -msgstr "Перенесення рядків" - -#: includes/fields/class-acf-field-date_picker.php:232 -#: includes/fields/class-acf-field-date_time_picker.php:220 -msgid "Week Starts On" -msgstr "Тиждень починається з" - -#: includes/fields/class-acf-field-date_picker.php:201 -msgid "The format used when saving a value" -msgstr "" - -#: includes/fields/class-acf-field-date_picker.php:200 -msgid "Save Format" -msgstr "Зберегти формат" - -#: includes/fields/class-acf-field-date_picker.php:67 -msgctxt "Date Picker JS weekHeader" -msgid "Wk" -msgstr "Wk" - -#: includes/fields/class-acf-field-date_picker.php:66 -msgctxt "Date Picker JS prevText" -msgid "Prev" -msgstr "Попередній" - -#: includes/fields/class-acf-field-date_picker.php:65 -msgctxt "Date Picker JS nextText" -msgid "Next" -msgstr "Далі" - -#: includes/fields/class-acf-field-date_picker.php:64 -msgctxt "Date Picker JS currentText" -msgid "Today" -msgstr "Сьогодні" - -#: includes/fields/class-acf-field-date_picker.php:63 -msgctxt "Date Picker JS closeText" -msgid "Done" -msgstr "Готово" - -#: includes/fields/class-acf-field-date_picker.php:25 -msgid "Date Picker" -msgstr "Вибір дати" - -#: includes/fields/class-acf-field-image.php:248 -#: includes/fields/class-acf-field-image.php:284 -#: includes/fields/class-acf-field-oembed.php:268 -msgid "Width" -msgstr "Ширина" - -#: includes/fields/class-acf-field-oembed.php:265 -#: includes/fields/class-acf-field-oembed.php:277 -msgid "Embed Size" -msgstr "Розмір вставки" - -#: includes/fields/class-acf-field-oembed.php:222 -msgid "Enter URL" -msgstr "Введіть URL" - -#: includes/fields/class-acf-field-oembed.php:25 -msgid "oEmbed" -msgstr "oEmbed" - -#: includes/fields/class-acf-field-true_false.php:184 -msgid "Text shown when inactive" -msgstr "Текст відображається, коли неактивний" - -#: includes/fields/class-acf-field-true_false.php:183 -msgid "Off Text" -msgstr "Текст вимкнено" - -#: includes/fields/class-acf-field-true_false.php:168 -msgid "Text shown when active" -msgstr "Текст відображається, коли активний" - -#: includes/fields/class-acf-field-true_false.php:167 -msgid "On Text" -msgstr "На тексті" - -#: includes/fields/class-acf-field-select.php:450 -#: includes/fields/class-acf-field-true_false.php:199 -msgid "Stylized UI" -msgstr "Стилізований інтерфейс користувача" - -#: includes/fields/class-acf-field-button-group.php:157 -#: includes/fields/class-acf-field-checkbox.php:361 -#: includes/fields/class-acf-field-color_picker.php:156 -#: includes/fields/class-acf-field-email.php:117 -#: includes/fields/class-acf-field-number.php:128 -#: includes/fields/class-acf-field-radio.php:202 -#: includes/fields/class-acf-field-range.php:164 -#: includes/fields/class-acf-field-select.php:380 -#: includes/fields/class-acf-field-text.php:103 -#: includes/fields/class-acf-field-textarea.php:103 -#: includes/fields/class-acf-field-true_false.php:147 -#: includes/fields/class-acf-field-url.php:101 -#: includes/fields/class-acf-field-wysiwyg.php:311 -msgid "Default Value" -msgstr "Значення за замовчуванням" - -#: includes/fields/class-acf-field-true_false.php:138 -msgid "Displays text alongside the checkbox" -msgstr "Відображати текст поруч із прапорцем" - -#: includes/fields/class-acf-field-message.php:26 -#: includes/fields/class-acf-field-message.php:99 -#: includes/fields/class-acf-field-true_false.php:137 -msgid "Message" -msgstr "Повідомлення" - -#: includes/assets.php:351 includes/fields/class-acf-field-true_false.php:86 -#: includes/fields/class-acf-field-true_false.php:187 -#: assets/build/js/acf.js:1740 assets/build/js/acf.js:1857 -msgid "No" -msgstr "Ні" - -#: includes/assets.php:350 includes/fields/class-acf-field-true_false.php:83 -#: includes/fields/class-acf-field-true_false.php:171 -#: assets/build/js/acf.js:1739 assets/build/js/acf.js:1856 -msgid "Yes" -msgstr "Так" - -#: includes/fields/class-acf-field-true_false.php:25 -msgid "True / False" -msgstr "Так / Ні" - -#: includes/fields/class-acf-field-group.php:474 -msgid "Row" -msgstr "Рядок" - -#: includes/fields/class-acf-field-group.php:473 -msgid "Table" -msgstr "Таблиця" - -#: includes/admin/post-types/admin-field-group.php:140 -#: includes/fields/class-acf-field-group.php:472 -msgid "Block" -msgstr "Блок" - -#: includes/fields/class-acf-field-group.php:467 -msgid "Specify the style used to render the selected fields" -msgstr "Укажіть стиль для візуалізації вибраних полів" - -#: includes/fields.php:356 includes/fields/class-acf-field-button-group.php:215 -#: includes/fields/class-acf-field-checkbox.php:435 -#: includes/fields/class-acf-field-group.php:466 -#: includes/fields/class-acf-field-radio.php:286 -msgid "Layout" -msgstr "Компонування" - -#: includes/fields/class-acf-field-group.php:450 -msgid "Sub Fields" -msgstr "Підполя" - -#: includes/fields/class-acf-field-group.php:25 -msgid "Group" -msgstr "Група" - -#: includes/fields/class-acf-field-google-map.php:235 -msgid "Customize the map height" -msgstr "" - -#: includes/fields/class-acf-field-google-map.php:234 -#: includes/fields/class-acf-field-image.php:259 -#: includes/fields/class-acf-field-image.php:295 -#: includes/fields/class-acf-field-oembed.php:280 -msgid "Height" -msgstr "Висота" - -#: includes/fields/class-acf-field-google-map.php:223 -msgid "Set the initial zoom level" -msgstr "Встановіть початковий рівень масштабування" - -#: includes/fields/class-acf-field-google-map.php:222 -msgid "Zoom" -msgstr "Збільшити" - -#: includes/fields/class-acf-field-google-map.php:196 -#: includes/fields/class-acf-field-google-map.php:209 -msgid "Center the initial map" -msgstr "Відцентруйте початкову карту" - -#: includes/fields/class-acf-field-google-map.php:195 -#: includes/fields/class-acf-field-google-map.php:208 -msgid "Center" -msgstr "Центр" - -#: includes/fields/class-acf-field-google-map.php:163 -msgid "Search for address..." -msgstr "Шукати адресу..." - -#: includes/fields/class-acf-field-google-map.php:160 -msgid "Find current location" -msgstr "Знайдіть поточне місце розташування" - -#: includes/fields/class-acf-field-google-map.php:159 -msgid "Clear location" -msgstr "Очистити розміщення" - -#: includes/fields/class-acf-field-google-map.php:158 -#: includes/fields/class-acf-field-relationship.php:628 -msgid "Search" -msgstr "Пошук" - -#: includes/fields/class-acf-field-google-map.php:63 -#: assets/build/js/acf-input.js:2840 assets/build/js/acf-input.js:3026 -msgid "Sorry, this browser does not support geolocation" -msgstr "Вибачте, цей браузер не підтримує автоматичне визначення локації" - -#: includes/fields/class-acf-field-google-map.php:25 -msgid "Google Map" -msgstr "Google Map" - -#: includes/fields/class-acf-field-date_picker.php:212 -#: includes/fields/class-acf-field-date_time_picker.php:201 -#: includes/fields/class-acf-field-time_picker.php:132 -msgid "The format returned via template functions" -msgstr "" - -#: includes/fields/class-acf-field-color_picker.php:180 -#: includes/fields/class-acf-field-date_picker.php:211 -#: includes/fields/class-acf-field-date_time_picker.php:200 -#: includes/fields/class-acf-field-image.php:187 -#: includes/fields/class-acf-field-post_object.php:411 -#: includes/fields/class-acf-field-relationship.php:638 -#: includes/fields/class-acf-field-select.php:391 -#: includes/fields/class-acf-field-time_picker.php:131 -#: includes/fields/class-acf-field-user.php:66 -msgid "Return Format" -msgstr "Формат повернення" - -#: includes/fields/class-acf-field-date_picker.php:190 -#: includes/fields/class-acf-field-date_picker.php:221 -#: includes/fields/class-acf-field-date_time_picker.php:192 -#: includes/fields/class-acf-field-date_time_picker.php:210 -#: includes/fields/class-acf-field-time_picker.php:123 -#: includes/fields/class-acf-field-time_picker.php:139 -msgid "Custom:" -msgstr "Користувацький:" - -#: includes/fields/class-acf-field-date_picker.php:182 -#: includes/fields/class-acf-field-date_time_picker.php:183 -#: includes/fields/class-acf-field-time_picker.php:116 -msgid "The format displayed when editing a post" -msgstr "" - -#: includes/fields/class-acf-field-date_picker.php:181 -#: includes/fields/class-acf-field-date_time_picker.php:182 -#: includes/fields/class-acf-field-time_picker.php:115 -msgid "Display Format" -msgstr "Формат показу" - -#: includes/fields/class-acf-field-time_picker.php:25 -msgid "Time Picker" -msgstr "Вибір часу" - -#. translators: counts for inactive field groups -#: acf.php:503 -msgid "Inactive (%s)" -msgid_plural "Inactive (%s)" -msgstr[0] "Неактивний (%s)" -msgstr[1] "Неактивні (%s)" -msgstr[2] "Неактивних (%s)" - -#: acf.php:462 -msgid "No Fields found in Trash" -msgstr "Не знайдено полів у кошику" - -#: acf.php:461 -msgid "No Fields found" -msgstr "Не знайдено полів" - -#: acf.php:460 -msgid "Search Fields" -msgstr "Шукати поля" - -#: acf.php:459 -msgid "View Field" -msgstr "Переглянути\t поле" - -#: acf.php:458 includes/admin/views/acf-field-group/fields.php:115 -msgid "New Field" -msgstr "Нове поле" - -#: acf.php:457 -msgid "Edit Field" -msgstr "Редагувати поле" - -#: acf.php:456 -msgid "Add New Field" -msgstr "Додати нове поле" - -#: acf.php:454 -msgid "Field" -msgstr "Поле" - -#: acf.php:453 includes/admin/post-types/admin-field-group.php:163 -#: includes/admin/post-types/admin-field-groups.php:119 -#: includes/admin/views/acf-field-group/fields.php:32 -msgid "Fields" -msgstr "Поля" - -#: acf.php:428 -msgid "No Field Groups found in Trash" -msgstr "У кошику немає груп полів" - -#: acf.php:427 -msgid "No Field Groups found" -msgstr "Не знайдено груп полів" - -#: acf.php:426 -msgid "Search Field Groups" -msgstr "Шукати групи полів" - -#: acf.php:425 -msgid "View Field Group" -msgstr "Переглянути групу полів" - -#: acf.php:424 -msgid "New Field Group" -msgstr "Нова група полів" - -#: acf.php:423 -msgid "Edit Field Group" -msgstr "Редагувати групу полів" - -#: acf.php:422 -msgid "Add New Field Group" -msgstr "Додати нову групу полів" - -#: acf.php:421 acf.php:455 -#: includes/admin/views/acf-post-type/advanced-settings.php:219 -#: includes/admin/views/acf-post-type/advanced-settings.php:221 -#: includes/post-types/class-acf-post-type.php:93 -#: includes/post-types/class-acf-taxonomy.php:92 -msgid "Add New" -msgstr "Додати новий" - -#: acf.php:420 -msgid "Field Group" -msgstr "Група полів" - -#: acf.php:419 includes/admin/post-types/admin-field-groups.php:78 -#: includes/admin/post-types/admin-post-types.php:138 -#: includes/admin/post-types/admin-taxonomies.php:138 -msgid "Field Groups" -msgstr "Групи полів" - -#. Description of the plugin -msgid "Customize WordPress with powerful, professional and intuitive fields." -msgstr "" -"Налаштуйте WordPress за допомогою потужних, професійних та інтуїтивно " -"зрозумілих полів." - -#. Plugin URI of the plugin -msgid "https://www.advancedcustomfields.com" -msgstr "https://www.advancedcustomfields.com" - -#. Plugin Name of the plugin -#: acf.php:94 -msgid "Advanced Custom Fields" -msgstr "Advanced Custom Fields" - -#: pro/acf-pro.php:27 -msgid "Advanced Custom Fields PRO" -msgstr "Додаткові поля Pro" - -#: pro/blocks.php:170 -msgid "Block type name is required." -msgstr "" - -#. translators: The name of the block type -#: pro/blocks.php:178 -msgid "Block type \"%s\" is already registered." -msgstr "" - -#: pro/blocks.php:726 -msgid "Switch to Edit" -msgstr "" - -#: pro/blocks.php:727 -msgid "Switch to Preview" -msgstr "" - -#: pro/blocks.php:728 -msgid "Change content alignment" -msgstr "" - -#. translators: %s: Block type title -#: pro/blocks.php:731 -#, fuzzy -#| msgid "Settings" -msgid "%s settings" -msgstr "Налаштування" - -#: pro/blocks.php:936 -msgid "This block contains no editable fields." -msgstr "" - -#. translators: %s: an admin URL to the field group edit screen -#: pro/blocks.php:942 -msgid "" -"Assign a field group to add fields to " -"this block." -msgstr "" - -#: pro/options-page.php:78 -msgid "Options Updated" -msgstr "Опції оновлено" - -#: pro/updates.php:99 -#, fuzzy -msgid "" -"To enable updates, please enter your license key on the Updates page. If you don't have a licence key, please see details & pricing." -msgstr "" -"Щоб розблокувати оновлення, будь ласка, введіть код ліцензії. Якщо не маєте " -"ліцензії, перегляньте" - -#: pro/updates.php:159 -msgid "" -"ACF Activation Error. Your defined license key has changed, but an " -"error occurred when deactivating your old licence" -msgstr "" - -#: pro/updates.php:154 -msgid "" -"ACF Activation Error. Your defined license key has changed, but an " -"error occurred when connecting to activation server" -msgstr "" - -#: pro/updates.php:192 -msgid "ACF Activation Error" -msgstr "" - -#: pro/updates.php:187 -#, fuzzy -#| msgid "Error. Could not connect to update server" -msgid "" -"ACF Activation Error. An error occurred when connecting to activation " -"server" -msgstr "Помилка. Неможливо під’єднатися до сервера оновлення" - -#: pro/updates.php:279 -msgid "Check Again" -msgstr "Перевірити знову" - -#: pro/updates.php:593 -#, fuzzy -#| msgid "Error. Could not connect to update server" -msgid "ACF Activation Error. Could not connect to activation server" -msgstr "Помилка. Неможливо під’єднатися до сервера оновлення" - -#: pro/admin/admin-options-page.php:195 -msgid "Publish" -msgstr "Опублікувати" - -#: pro/admin/admin-options-page.php:199 -msgid "" -"No Custom Field Groups found for this options page. Create a " -"Custom Field Group" -msgstr "" -"Немає полів для цієї сторінки опцій. Створити групу " -"додаткових полів" - -#: pro/admin/admin-updates.php:52 -msgid "Error. Could not connect to update server" -msgstr "Помилка. Неможливо під’єднатися до сервера оновлення" - -#: pro/admin/admin-updates.php:212 -msgid "" -"Error. Could not authenticate update package. Please check again or " -"deactivate and reactivate your ACF PRO license." -msgstr "" - -#: pro/admin/admin-updates.php:199 -msgid "" -"Error. Your license for this site has expired or been deactivated. " -"Please reactivate your ACF PRO license." -msgstr "" - -#: pro/fields/class-acf-field-clone.php:27, -#: pro/fields/class-acf-field-repeater.php:31 -msgid "" -"Allows you to select and display existing fields. It does not duplicate any " -"fields in the database, but loads and displays the selected fields at run-" -"time. The Clone field can either replace itself with the selected fields or " -"display the selected fields as a group of subfields." -msgstr "" - -#: pro/fields/class-acf-field-clone.php:819 -msgid "Select one or more fields you wish to clone" -msgstr "" - -#: pro/fields/class-acf-field-clone.php:838 -msgid "Display" -msgstr "Таблиця" - -#: pro/fields/class-acf-field-clone.php:839 -msgid "Specify the style used to render the clone field" -msgstr "" - -#: pro/fields/class-acf-field-clone.php:844 -#, fuzzy -#| msgid "Please select the field group you wish this field to move to" -msgid "Group (displays selected fields in a group within this field)" -msgstr "Будь ласка, оберіть групу полів куди Ви хочете перемістити це поле" - -#: pro/fields/class-acf-field-clone.php:845 -msgid "Seamless (replaces this field with selected fields)" -msgstr "" - -#: pro/fields/class-acf-field-clone.php:868 -msgid "Labels will be displayed as %s" -msgstr "" - -#: pro/fields/class-acf-field-clone.php:873 -#, fuzzy -#| msgid "Field Label" -msgid "Prefix Field Labels" -msgstr "Назва поля" - -#: pro/fields/class-acf-field-clone.php:883 -msgid "Values will be saved as %s" -msgstr "" - -#: pro/fields/class-acf-field-clone.php:888 -#, fuzzy -#| msgid "Field Name" -msgid "Prefix Field Names" -msgstr "Ярлик" - -#: pro/fields/class-acf-field-clone.php:1005 -msgid "Unknown field" -msgstr "Невідоме поле" - -#: pro/fields/class-acf-field-clone.php:1042 -#, fuzzy -msgid "Unknown field group" -msgstr "Редагувати групу полів" - -#: pro/fields/class-acf-field-clone.php:1046 -msgid "All fields from %s field group" -msgstr "" - -#: pro/fields/class-acf-field-flexible-content.php:27 -msgid "" -"Allows you to define, create and manage content with total control by " -"creating layouts that contain subfields that content editors can choose from." -msgstr "" - -#: pro/fields/class-acf-field-flexible-content.php:36, -#: pro/fields/class-acf-field-repeater.php:103, -#: pro/fields/class-acf-field-repeater.php:297 -msgid "Add Row" -msgstr "Додати рядок" - -#: pro/fields/class-acf-field-flexible-content.php:76, -#: pro/fields/class-acf-field-flexible-content.php:943, -#: pro/fields/class-acf-field-flexible-content.php:1022 -#, fuzzy -msgid "layout" -msgid_plural "layouts" -msgstr[0] "Шаблон структури" -msgstr[1] "Шаблон структури" -msgstr[2] "Шаблон структури" - -#: pro/fields/class-acf-field-flexible-content.php:77 -#, fuzzy -msgid "layouts" -msgstr "Шаблон структури" - -#: pro/fields/class-acf-field-flexible-content.php:81, -#: pro/fields/class-acf-field-flexible-content.php:942, -#: pro/fields/class-acf-field-flexible-content.php:1021 -msgid "This field requires at least {min} {label} {identifier}" -msgstr "" - -#: pro/fields/class-acf-field-flexible-content.php:82 -msgid "This field has a limit of {max} {label} {identifier}" -msgstr "" - -#: pro/fields/class-acf-field-flexible-content.php:85 -msgid "{available} {label} {identifier} available (max {max})" -msgstr "" - -#: pro/fields/class-acf-field-flexible-content.php:86 -msgid "{required} {label} {identifier} required (min {min})" -msgstr "" - -#: pro/fields/class-acf-field-flexible-content.php:89 -msgid "Flexible Content requires at least 1 layout" -msgstr "" - -#: pro/fields/class-acf-field-flexible-content.php:282 -msgid "Click the \"%s\" button below to start creating your layout" -msgstr "" - -#: pro/fields/class-acf-field-flexible-content.php:423 -msgid "Add layout" -msgstr "Додати шаблон" - -#: pro/fields/class-acf-field-flexible-content.php:424 -#, fuzzy -#| msgid "Duplicate Layout" -msgid "Duplicate layout" -msgstr "Дублювати шаблон" - -#: pro/fields/class-acf-field-flexible-content.php:425 -msgid "Remove layout" -msgstr "Видалити шаблон" - -#: pro/fields/class-acf-field-flexible-content.php:426, -#: pro/fields/class-acf-repeater-table.php:382 -msgid "Click to toggle" -msgstr "" - -#: pro/fields/class-acf-field-flexible-content.php:562 -msgid "Delete Layout" -msgstr "Видалити шаблон" - -#: pro/fields/class-acf-field-flexible-content.php:563 -msgid "Duplicate Layout" -msgstr "Дублювати шаблон" - -#: pro/fields/class-acf-field-flexible-content.php:564 -msgid "Add New Layout" -msgstr "Додати новий шаблон" - -#: pro/fields/class-acf-field-flexible-content.php:564 -#, fuzzy -#| msgid "Add layout" -msgid "Add Layout" -msgstr "Додати шаблон" - -#: pro/fields/class-acf-field-flexible-content.php:647 -msgid "Min" -msgstr "Мін." - -#: pro/fields/class-acf-field-flexible-content.php:662 -msgid "Max" -msgstr "Макс." - -#: pro/fields/class-acf-field-flexible-content.php:705 -msgid "Minimum Layouts" -msgstr "Мінімум шаблонів" - -#: pro/fields/class-acf-field-flexible-content.php:716 -msgid "Maximum Layouts" -msgstr "Максимум шаблонів" - -#: pro/fields/class-acf-field-flexible-content.php:727, -#: pro/fields/class-acf-field-repeater.php:293 -msgid "Button Label" -msgstr "Текст для кнопки" - -#: pro/fields/class-acf-field-flexible-content.php:1710, -#: pro/fields/class-acf-field-repeater.php:918 -msgid "%s must be of type array or null." -msgstr "" - -#: pro/fields/class-acf-field-flexible-content.php:1721 -msgid "%1$s must contain at least %2$s %3$s layout." -msgid_plural "%1$s must contain at least %2$s %3$s layouts." -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: pro/fields/class-acf-field-flexible-content.php:1737 -msgid "%1$s must contain at most %2$s %3$s layout." -msgid_plural "%1$s must contain at most %2$s %3$s layouts." -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: pro/fields/class-acf-field-gallery.php:27 -msgid "" -"An interactive interface for managing a collection of attachments, such as " -"images." -msgstr "" - -#: pro/fields/class-acf-field-gallery.php:77 -msgid "Add Image to Gallery" -msgstr "Додати зображення до галереї" - -#: pro/fields/class-acf-field-gallery.php:78 -#, fuzzy -msgid "Maximum selection reached" -msgstr "Досягнуто максимального вибору" - -#: pro/fields/class-acf-field-gallery.php:324 -msgid "Length" -msgstr "Довжина" - -#: pro/fields/class-acf-field-gallery.php:368 -msgid "Caption" -msgstr "Підпис" - -#: pro/fields/class-acf-field-gallery.php:380 -msgid "Alt Text" -msgstr "Альтернативний текст" - -#: pro/fields/class-acf-field-gallery.php:504 -msgid "Add to gallery" -msgstr "Додати до галереї" - -#: pro/fields/class-acf-field-gallery.php:508 -msgid "Bulk actions" -msgstr "Масові дії" - -#: pro/fields/class-acf-field-gallery.php:509 -msgid "Sort by date uploaded" -msgstr "Сортувати за датою завантаження" - -#: pro/fields/class-acf-field-gallery.php:510 -msgid "Sort by date modified" -msgstr "Сортувати за датою зміни" - -#: pro/fields/class-acf-field-gallery.php:511 -msgid "Sort by title" -msgstr "Сортувати за назвою" - -#: pro/fields/class-acf-field-gallery.php:512 -msgid "Reverse current order" -msgstr "Зворотній поточний порядок" - -#: pro/fields/class-acf-field-gallery.php:524 -msgid "Close" -msgstr "Закрити" - -#: pro/fields/class-acf-field-gallery.php:615 -msgid "Minimum Selection" -msgstr "Мінімальна вибірка" - -#: pro/fields/class-acf-field-gallery.php:625 -msgid "Maximum Selection" -msgstr "Максимальна вибірка" - -#: pro/fields/class-acf-field-gallery.php:707 -msgid "Allowed file types" -msgstr "Дозволені типи файлів" - -#: pro/fields/class-acf-field-gallery.php:727 -msgid "Insert" -msgstr "Вставити" - -#: pro/fields/class-acf-field-gallery.php:728 -msgid "Specify where new attachments are added" -msgstr "" - -#: pro/fields/class-acf-field-gallery.php:732 -msgid "Append to the end" -msgstr "Розміщується в кінці" - -#: pro/fields/class-acf-field-gallery.php:733 -msgid "Prepend to the beginning" -msgstr "" - -#: pro/fields/class-acf-field-repeater.php:66, -#: pro/fields/class-acf-field-repeater.php:463 -msgid "Minimum rows not reached ({min} rows)" -msgstr "" - -#: pro/fields/class-acf-field-repeater.php:67 -msgid "Maximum rows reached ({max} rows)" -msgstr "" - -#: pro/fields/class-acf-field-repeater.php:68 -msgid "Error loading page" -msgstr "" - -#: pro/fields/class-acf-field-repeater.php:69 -msgid "Order will be assigned upon save" -msgstr "" - -#: pro/fields/class-acf-field-repeater.php:196 -msgid "Useful for fields with a large number of rows." -msgstr "" - -#: pro/fields/class-acf-field-repeater.php:207 -#, fuzzy -#| msgid "Posts Page" -msgid "Rows Per Page" -msgstr "Сторінка з публікаціями" - -#: pro/fields/class-acf-field-repeater.php:208 -msgid "Set the number of rows to be displayed on a page." -msgstr "" - -#: pro/fields/class-acf-field-repeater.php:240 -msgid "Minimum Rows" -msgstr "Мінімум рядків" - -#: pro/fields/class-acf-field-repeater.php:251 -msgid "Maximum Rows" -msgstr "Максимум рядків" - -#: pro/fields/class-acf-field-repeater.php:281 -#, fuzzy -#| msgid "Collapse Details" -msgid "Collapsed" -msgstr "Сховати деталі" - -#: pro/fields/class-acf-field-repeater.php:282 -msgid "Select a sub field to show when row is collapsed" -msgstr "" - -#: pro/fields/class-acf-field-repeater.php:1060 -msgid "Invalid field key or name." -msgstr "" - -#: pro/fields/class-acf-field-repeater.php:1069 -msgid "There was an error retrieving the field." -msgstr "" - -#: pro/fields/class-acf-repeater-table.php:369 -#, fuzzy -#| msgid "Drag to reorder" -msgid "Click to reorder" -msgstr "Перетягніть, щоб змінити порядок" - -#: pro/fields/class-acf-repeater-table.php:402 -msgid "Add row" -msgstr "Додати рядок" - -#: pro/fields/class-acf-repeater-table.php:403 -#, fuzzy -#| msgid "Duplicate" -msgid "Duplicate row" -msgstr "Дублювати" - -#: pro/fields/class-acf-repeater-table.php:404 -msgid "Remove row" -msgstr "Видалити рядок" - -#: pro/fields/class-acf-repeater-table.php:448, -#: pro/fields/class-acf-repeater-table.php:465, -#: pro/fields/class-acf-repeater-table.php:466 -#, fuzzy -#| msgid "Current User" -msgid "Current Page" -msgstr "Поточний користувач" - -#: pro/fields/class-acf-repeater-table.php:456, -#: pro/fields/class-acf-repeater-table.php:457 -#, fuzzy -#| msgid "Front Page" -msgid "First Page" -msgstr "Головна сторінка" - -#: pro/fields/class-acf-repeater-table.php:460, -#: pro/fields/class-acf-repeater-table.php:461 -#, fuzzy -#| msgid "Posts Page" -msgid "Previous Page" -msgstr "Сторінка з публікаціями" - -#. translators: 1: Current page, 2: Total pages. -#: pro/fields/class-acf-repeater-table.php:470 -msgctxt "paging" -msgid "%1$s of %2$s" -msgstr "" - -#: pro/fields/class-acf-repeater-table.php:477, -#: pro/fields/class-acf-repeater-table.php:478 -#, fuzzy -#| msgid "Front Page" -msgid "Next Page" -msgstr "Головна сторінка" - -#: pro/fields/class-acf-repeater-table.php:481, -#: pro/fields/class-acf-repeater-table.php:482 -#, fuzzy -#| msgid "Posts Page" -msgid "Last Page" -msgstr "Сторінка з публікаціями" - -#: pro/locations/class-acf-location-block.php:71 -msgid "No block types exist" -msgstr "" - -#: pro/locations/class-acf-location-options-page.php:70 -msgid "No options pages exist" -msgstr "" - -#: pro/admin/views/html-settings-updates.php:6 -msgid "Deactivate License" -msgstr "Деактивувати ліцензію" - -#: pro/admin/views/html-settings-updates.php:6 -msgid "Activate License" -msgstr "Активувати ліцензію" - -#: pro/admin/views/html-settings-updates.php:16 -msgid "License Information" -msgstr "Інформація про ліцензію" - -#: pro/admin/views/html-settings-updates.php:34 -#, fuzzy -msgid "" -"To unlock updates, please enter your license key below. If you don't have a " -"licence key, please see details & pricing." -msgstr "" -"Щоб розблокувати оновлення, будь ласка, введіть код ліцензії. Якщо не маєте " -"ліцензії, перегляньте" - -#: pro/admin/views/html-settings-updates.php:37 -msgid "License Key" -msgstr "Код ліцензії" - -#: pro/admin/views/html-settings-updates.php:22 -msgid "Your license key is defined in wp-config.php." -msgstr "" - -#: pro/admin/views/html-settings-updates.php:29 -#, fuzzy -#| msgid "Better Validation" -msgid "Retry Activation" -msgstr "Поліпшена перевірка" - -#: pro/admin/views/html-settings-updates.php:61 -msgid "Update Information" -msgstr "Інформація про оновлення" - -#: pro/admin/views/html-settings-updates.php:68 -msgid "Current Version" -msgstr "Поточна версія" - -#: pro/admin/views/html-settings-updates.php:76 -msgid "Latest Version" -msgstr "Остання версія" - -#: pro/admin/views/html-settings-updates.php:84 -msgid "Update Available" -msgstr "Доступні оновлення" - -#: pro/admin/views/html-settings-updates.php:98 -#, fuzzy -msgid "Upgrade Notice" -msgstr "Оновити базу даних" - -#: pro/admin/views/html-settings-updates.php:126 -msgid "Check For Updates" -msgstr "" - -#: pro/admin/views/html-settings-updates.php:121 -#, fuzzy -#| msgid "Please enter your license key above to unlock updates" -msgid "Enter your license key to unlock updates" -msgstr "Будь ласка, введіть код ліцензії, щоб розблокувати оновлення" - -#: pro/admin/views/html-settings-updates.php:119 -msgid "Update Plugin" -msgstr "Оновити плаґін" - -#: pro/admin/views/html-settings-updates.php:117 -#, fuzzy -#| msgid "Please enter your license key above to unlock updates" -msgid "Please reactivate your license to unlock updates" -msgstr "Будь ласка, введіть код ліцензії, щоб розблокувати оновлення" diff --git a/lang/acf-zh_CN.mo b/lang/acf-zh_CN.mo deleted file mode 100644 index d5123af..0000000 Binary files a/lang/acf-zh_CN.mo and /dev/null differ diff --git a/lang/acf-zh_CN.po b/lang/acf-zh_CN.po deleted file mode 100644 index 4fc4764..0000000 --- a/lang/acf-zh_CN.po +++ /dev/null @@ -1,6193 +0,0 @@ -# Advanced Custom Fields Translations are a combination of translate.wordpress.org contributions, -# combined with user contributed strings for the PRO version. -# Translations from translate.wordpress.org take priority over translations in this file. -# translate.wordpress.org contributions are synced at the time of each release. -# -# If you would like to contribute translations, please visit -# https://translate.wordpress.org/projects/wp-plugins/advanced-custom-fields/stable/ -# -# For additional ACF PRO strings, please submit a pull request over on the ACF GitHub repo at -# http://github.com/advancedcustomfields/acf using the .pot (and any existing .po) files in /lang/pro/ -# -# This file is distributed under the same license as Advanced Custom Fields. -msgid "" -msgstr "" -"PO-Revision-Date: 2023-11-28T09:14:32+00:00\n" -"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n" -"Language: zh_CN\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: gettext\n" -"Project-Id-Version: Advanced Custom Fields\n" - -#: includes/admin/views/global/navigation.php:221 -msgid "Renew ACF PRO License" -msgstr "续订 ACF PRO 许可证" - -#: includes/admin/views/acf-field-group/pro-features.php:17 -msgid "Renew License" -msgstr "更新许可证" - -#: includes/admin/views/acf-field-group/pro-features.php:14 -msgid "Manage License" -msgstr "管理许可证" - -#: includes/admin/views/acf-field-group/options.php:102 -msgid "'High' position not supported in the Block Editor" -msgstr "块编辑器不支持“高”位置" - -#: includes/admin/views/options-page-preview.php:30 -msgid "Upgrade to ACF PRO" -msgstr "升级到 ACF PRO" - -#. translators: %s URL to ACF options pages documentation -#: includes/admin/views/options-page-preview.php:7 -msgid "" -"ACF options pages are custom admin " -"pages for managing global settings via fields. You can create multiple pages " -"and sub-pages." -msgstr "" -"ACF选项页是通过字段管理全局设置的自定义" -"管理页。您可以创建多个页面和子页面。" - -#: includes/admin/views/global/header.php:35 -msgid "Add Options Page" -msgstr "添加选项页面" - -#: includes/admin/views/acf-post-type/advanced-settings.php:703 -msgid "In the editor used as the placeholder of the title." -msgstr "在编辑器中用作标题的占位符。" - -#: includes/admin/views/acf-post-type/advanced-settings.php:702 -msgid "Title Placeholder" -msgstr "标题占位符" - -#: includes/admin/views/global/navigation.php:97 -msgid "4 Months Free" -msgstr "4个月免费" - -#. translators: %s - A singular label for a post type or taxonomy. -#: includes/admin/views/global/form-top.php:56 -msgid " (Duplicated from %s)" -msgstr " (复制自 %s)" - -#: includes/admin/tools/class-acf-admin-tool-export.php:298 -msgid "Select Options Pages" -msgstr "选择选项页面" - -#: includes/admin/post-types/admin-taxonomy.php:107 -msgid "Duplicate taxonomy" -msgstr "克隆分类法" - -#: includes/admin/post-types/admin-post-type.php:106 -#: includes/admin/post-types/admin-taxonomy.php:106 -msgid "Create taxonomy" -msgstr "创建分类法" - -#: includes/admin/post-types/admin-post-type.php:105 -msgid "Duplicate post type" -msgstr "克隆文章类型" - -#: includes/admin/post-types/admin-post-type.php:104 -#: includes/admin/post-types/admin-taxonomy.php:108 -msgid "Create post type" -msgstr "创建文章类型" - -#: includes/admin/post-types/admin-post-type.php:103 -#: includes/admin/post-types/admin-taxonomy.php:105 -msgid "Link field groups" -msgstr "链接字段组" - -#: includes/admin/post-types/admin-post-type.php:102 -#: includes/admin/post-types/admin-taxonomy.php:104 -msgid "Add fields" -msgstr "添加字段" - -#: includes/admin/post-types/admin-field-group.php:121 -#: assets/build/js/acf-field-group.js:2753 -#: assets/build/js/acf-field-group.js:3236 -msgid "This Field" -msgstr "这个字段" - -#: includes/admin/admin.php:267 -msgid "ACF PRO" -msgstr "ACF PRO" - -#: includes/admin/admin.php:265 -msgid "Feedback" -msgstr "反馈" - -#: includes/admin/admin.php:263 -msgid "Support" -msgstr "支持" - -#. translators: This text is prepended by a link to ACF's website, and appended -#. by a link to WP Engine's website. -#: includes/admin/admin.php:238 -msgid "is developed and maintained by" -msgstr "开发和维护者" - -#. translators: %s - either "post type" or "taxonomy" -#: includes/admin/admin-internal-post-type.php:321 -msgid "Add this %s to the location rules of the selected field groups." -msgstr "将此 %s 添加到所选字段组的位置规则中。" - -#. translators: %s the URL to ACF's bidirectional relationship documentation -#: includes/acf-bidirectional-functions.php:271 -msgid "" -"Enabling the bidirectional setting allows you to update a value in the " -"target fields for each value selected for this field, adding or removing the " -"Post ID, Taxonomy ID or User ID of the item being updated. For more " -"information, please read the documentation." -msgstr "" -"启用双向设置允许您更新为此字段选择的每个值的目标字段中的值,添加或删除正在更" -"新的项目的文章 ID、分类法 ID 或用户 ID。有关更多信息,请阅读文档。" - -#: includes/acf-bidirectional-functions.php:247 -msgid "" -"Select field(s) to store the reference back to the item being updated. You " -"may select this field. Target fields must be compatible with where this " -"field is being displayed. For example, if this field is displayed on a " -"Taxonomy, your target field should be of type Taxonomy" -msgstr "" -"选择字段以将引用存储回正在更新的项目。您可以选择该字段。目标字段必须与该字段" -"的显示位置兼容。例如,如果此字段显示在分类法上,则您的目标字段应为分类法类型" - -#: includes/acf-bidirectional-functions.php:246 -msgid "Target Field" -msgstr "目标字段" - -#: includes/acf-bidirectional-functions.php:220 -msgid "Update a field on the selected values, referencing back to this ID" -msgstr "更新所选值的字段,引用回此 ID" - -#: includes/acf-bidirectional-functions.php:219 -msgid "Bidirectional" -msgstr "双向" - -#. translators: %s A field type name, such as "Relationship" -#: includes/acf-bidirectional-functions.php:192 -msgid "%s Field" -msgstr "%s 字段" - -#: includes/fields/class-acf-field-page_link.php:517 -#: includes/fields/class-acf-field-post_object.php:426 -#: includes/fields/class-acf-field-select.php:407 -#: includes/fields/class-acf-field-user.php:82 -msgid "Select Multiple" -msgstr "选择多个" - -#: includes/admin/views/global/navigation.php:233 -msgid "WP Engine logo" -msgstr "WP Engine logo" - -#: includes/admin/views/acf-taxonomy/basic-settings.php:58 -msgid "Lower case letters, underscores and dashes only, Max 32 characters." -msgstr "仅小写字母、下划线和破折号,最多 32 个字符。" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1136 -msgid "The capability name for assigning terms of this taxonomy." -msgstr "用于分配此分类的术语的功能名称。" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1135 -msgid "Assign Terms Capability" -msgstr "分配分类项能力" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1119 -msgid "The capability name for deleting terms of this taxonomy." -msgstr "用于删除该分类法的分类项的功能名称。" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1118 -msgid "Delete Terms Capability" -msgstr "删除分类项功能" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1102 -msgid "The capability name for editing terms of this taxonomy." -msgstr "用于编辑该分类法的分类项的功能名称。" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1101 -msgid "Edit Terms Capability" -msgstr "编辑分类项能力" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1085 -msgid "The capability name for managing terms of this taxonomy." -msgstr "用于管理该分类法的分类项的功能名称。" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1084 -msgid "Manage Terms Capability" -msgstr "管理分类项能力" - -#: includes/admin/views/acf-post-type/advanced-settings.php:886 -msgid "" -"Sets whether posts should be excluded from search results and taxonomy " -"archive pages." -msgstr "设置帖子是否应从搜索结果和分类存档页面中排除。" - -#: includes/admin/views/acf-field-group/pro-features.php:74 -msgid "More Tools from WP Engine" -msgstr "WP Engine 的更多工具" - -#. translators: %s - WP Engine logo -#: includes/admin/views/acf-field-group/pro-features.php:69 -msgid "Built for those that build with WordPress, by the team at %s" -msgstr "由 %s 团队专为使用 WordPress 构建的用户而构建" - -#: includes/admin/views/acf-field-group/pro-features.php:6 -msgid "View Pricing & Upgrade" -msgstr "查看定价和升级" - -#: includes/admin/views/acf-field-group/pro-features.php:3 -#: includes/admin/views/options-page-preview.php:29 -msgid "Learn More" -msgstr "了解更多" - -#: includes/admin/views/acf-field-group/pro-features.php:28 -msgid "" -"Speed up your workflow and develop better websites with features like ACF " -"Blocks and Options Pages, and sophisticated field types like Repeater, " -"Flexible Content, Clone, and Gallery." -msgstr "" -"利用 ACF 块和选项页面等功能以及循环、弹性内容、克隆和图库等复杂的字段类型,加" -"快您的工作流程并开发更好的网站。" - -#: includes/admin/views/acf-field-group/pro-features.php:2 -msgid "Unlock Advanced Features and Build Even More with ACF PRO" -msgstr "使用 ACF PRO 解锁高级功能并构建更多功能" - -#. translators: %s - singular label of post type/taxonomy, i.e. "Movie"/"Genre" -#: includes/admin/views/global/form-top.php:19 -msgid "%s fields" -msgstr "%s 字段" - -#: includes/admin/post-types/admin-taxonomies.php:293 -msgid "No terms" -msgstr "无分类项" - -#: includes/admin/post-types/admin-taxonomies.php:266 -msgid "No post types" -msgstr "无文章类型" - -#: includes/admin/post-types/admin-post-types.php:289 -msgid "No posts" -msgstr "无文章" - -#: includes/admin/post-types/admin-post-types.php:263 -msgid "No taxonomies" -msgstr "无分类" - -#: includes/admin/post-types/admin-post-types.php:208 -#: includes/admin/post-types/admin-taxonomies.php:208 -msgid "No field groups" -msgstr "无字段分组" - -#: includes/admin/post-types/admin-field-groups.php:281 -msgid "No fields" -msgstr "无字段" - -#: includes/admin/post-types/admin-field-groups.php:154 -#: includes/admin/post-types/admin-post-types.php:172 -#: includes/admin/post-types/admin-taxonomies.php:172 -msgid "No description" -msgstr "无描述" - -#: includes/fields/class-acf-field-page_link.php:484 -#: includes/fields/class-acf-field-post_object.php:389 -#: includes/fields/class-acf-field-relationship.php:601 -msgid "Any post status" -msgstr "任何文章状态" - -#: includes/post-types/class-acf-taxonomy.php:284 -msgid "" -"This taxonomy key is already in use by another taxonomy registered outside " -"of ACF and cannot be used." -msgstr "" -"这个分类标准的关键字已经被ACF以外注册的另一个分类标准所使用,不能使用。" - -#: includes/post-types/class-acf-taxonomy.php:279 -msgid "" -"This taxonomy key is already in use by another taxonomy in ACF and cannot be " -"used." -msgstr "此分类法已被 ACF 中的另一个分类法使用,因此无法使用。" - -#: includes/post-types/class-acf-taxonomy.php:252 -msgid "" -"The taxonomy key must only contain lower case alphanumeric characters, " -"underscores or dashes." -msgstr "分类法只能包含小写字母数字字符、下划线或破折号。" - -#: includes/post-types/class-acf-taxonomy.php:247 -msgid "The taxonomy key must be under 32 characters." -msgstr "分类法必须少于 32 个字符。" - -#: includes/post-types/class-acf-taxonomy.php:99 -msgid "No Taxonomies found in Trash" -msgstr "回收站中未找到分类法" - -#: includes/post-types/class-acf-taxonomy.php:98 -msgid "No Taxonomies found" -msgstr "未找到分类法" - -#: includes/post-types/class-acf-taxonomy.php:97 -msgid "Search Taxonomies" -msgstr "搜索分类法" - -#: includes/post-types/class-acf-taxonomy.php:96 -msgid "View Taxonomy" -msgstr "查看分类法" - -#: includes/post-types/class-acf-taxonomy.php:95 -msgid "New Taxonomy" -msgstr "新分类法" - -#: includes/post-types/class-acf-taxonomy.php:94 -msgid "Edit Taxonomy" -msgstr "编辑分类法" - -#: includes/post-types/class-acf-taxonomy.php:93 -msgid "Add New Taxonomy" -msgstr "新增分类法" - -#: includes/post-types/class-acf-post-type.php:100 -msgid "No Post Types found in Trash" -msgstr "在回收站中找不到文章类型" - -#: includes/post-types/class-acf-post-type.php:99 -msgid "No Post Types found" -msgstr "找不到文章类型" - -#: includes/post-types/class-acf-post-type.php:98 -msgid "Search Post Types" -msgstr "搜索文章类型" - -#: includes/post-types/class-acf-post-type.php:97 -msgid "View Post Type" -msgstr "查看文章类型" - -#: includes/post-types/class-acf-post-type.php:96 -msgid "New Post Type" -msgstr "新文章类型" - -#: includes/post-types/class-acf-post-type.php:95 -msgid "Edit Post Type" -msgstr "编辑文章类型" - -#: includes/post-types/class-acf-post-type.php:94 -msgid "Add New Post Type" -msgstr "新增文章类型" - -#: includes/post-types/class-acf-post-type.php:361 -msgid "" -"This post type key is already in use by another post type registered outside " -"of ACF and cannot be used." -msgstr "此帖子类型密钥已被 ACF 外部注册的另一个帖子类型使用,因此无法使用。" - -#: includes/post-types/class-acf-post-type.php:356 -msgid "" -"This post type key is already in use by another post type in ACF and cannot " -"be used." -msgstr "此帖子类型密钥已被 ACF 中的另一个帖子类型使用,无法使用。" - -#. translators: %s a link to WordPress.org's Reserved Terms page -#: includes/post-types/class-acf-post-type.php:335 -#: includes/post-types/class-acf-taxonomy.php:258 -msgid "" -"This field must not be a WordPress reserved " -"term." -msgstr "此字段不得是 WordPress 保留词。" - -#: includes/post-types/class-acf-post-type.php:329 -msgid "" -"The post type key must only contain lower case alphanumeric characters, " -"underscores or dashes." -msgstr "帖子类型键只能包含小写字母数字字符、下划线或破折号。" - -#: includes/post-types/class-acf-post-type.php:324 -msgid "The post type key must be under 20 characters." -msgstr "帖子类型键必须少于 20 个字符。" - -#: includes/fields/class-acf-field-wysiwyg.php:27 -msgid "We do not recommend using this field in ACF Blocks." -msgstr "我们不建议在 ACF 块中使用此字段。" - -#: includes/fields/class-acf-field-wysiwyg.php:27 -msgid "" -"Displays the WordPress WYSIWYG editor as seen in Posts and Pages allowing " -"for a rich text-editing experience that also allows for multimedia content." -msgstr "" -"显示 WordPress 可视化编辑器,如文章和页面中所示,可提供丰富的文本编辑体验,还" -"支持多媒体内容。" - -#: includes/fields/class-acf-field-wysiwyg.php:25 -msgid "WYSIWYG Editor" -msgstr "可视化编辑器" - -#: includes/fields/class-acf-field-user.php:17 -msgid "" -"Allows the selection of one or more users which can be used to create " -"relationships between data objects." -msgstr "允许选择一个或多个可用于在数据对象之间创建关系的用户。" - -#: includes/fields/class-acf-field-url.php:26 -msgid "A text input specifically designed for storing web addresses." -msgstr "专门为存储网址而设计的文本输入。" - -#: includes/fields/class-acf-field-url.php:25 -msgid "URL" -msgstr "URL" - -#: includes/fields/class-acf-field-true_false.php:27 -msgid "" -"A toggle that allows you to pick a value of 1 or 0 (on or off, true or " -"false, etc). Can be presented as a stylized switch or checkbox." -msgstr "" -"允许您选择值 1 或 0(打开或关闭、true 或 false 等)的切换开关。可以呈现为程式" -"化的开关或复选框。" - -#: includes/fields/class-acf-field-time_picker.php:27 -msgid "" -"An interactive UI for picking a time. The time format can be customized " -"using the field settings." -msgstr "用于选择时间的交互式 UI。可以使用字段设置自定义时间格式。" - -#: includes/fields/class-acf-field-textarea.php:26 -msgid "A basic textarea input for storing paragraphs of text." -msgstr "用于存储文本段落的基本文本区域输入。" - -#: includes/fields/class-acf-field-text.php:26 -msgid "A basic text input, useful for storing single string values." -msgstr "基本文本输入,可用于存储单个字符串值。" - -#: includes/fields/class-acf-field-taxonomy.php:22 -msgid "" -"Allows the selection of one or more taxonomy terms based on the criteria and " -"options specified in the fields settings." -msgstr "允许根据字段设置中指定的条件和选项选择一个或多个分类术语。" - -#: includes/fields/class-acf-field-tab.php:28 -msgid "" -"Allows you to group fields into tabbed sections in the edit screen. Useful " -"for keeping fields organized and structured." -msgstr "" -"允许您将字段分组到编辑屏幕中的选项卡部分。对于保持字段的组织性和结构化很有" -"用。" - -#: includes/fields/class-acf-field-select.php:27 -msgid "A dropdown list with a selection of choices that you specify." -msgstr "包含您指定的选项的下拉列表。" - -#: includes/fields/class-acf-field-relationship.php:19 -msgid "" -"A dual-column interface to select one or more posts, pages, or custom post " -"type items to create a relationship with the item that you're currently " -"editing. Includes options to search and filter." -msgstr "" -"双栏界面,用于选择一个或多个帖子、页面或自定义帖子类型项目,以创建与您当前正" -"在编辑的项目的关系。包括搜索和过滤选项。" - -#: includes/fields/class-acf-field-range.php:26 -msgid "" -"An input for selecting a numerical value within a specified range using a " -"range slider element." -msgstr "用于使用范围滑块元素选择指定范围内的数值的输入。" - -#: includes/fields/class-acf-field-radio.php:27 -msgid "" -"A group of radio button inputs that allows the user to make a single " -"selection from values that you specify." -msgstr "一组单选按钮输入,允许用户从您指定的值中进行单一选择。" - -#: includes/fields/class-acf-field-post_object.php:19 -msgid "" -"An interactive and customizable UI for picking one or many posts, pages or " -"post type items with the option to search. " -msgstr "" -"一种交互式且可定制的用户界面,用于选择一个或多个帖子、页面或帖子类型项目,并" -"提供搜索选项。 " - -#: includes/fields/class-acf-field-password.php:26 -msgid "An input for providing a password using a masked field." -msgstr "使用屏蔽字段提供密码的输入。" - -#: includes/fields/class-acf-field-page_link.php:476 -#: includes/fields/class-acf-field-post_object.php:381 -#: includes/fields/class-acf-field-relationship.php:593 -msgid "Filter by Post Status" -msgstr "按文章状态过滤" - -#: includes/fields/class-acf-field-page_link.php:27 -msgid "" -"An interactive dropdown to select one or more posts, pages, custom post type " -"items or archive URLs, with the option to search." -msgstr "" -"交互式下拉菜单,用于选择一个或多个帖子、页面、自定义帖子类型项目或存档 URL," -"并提供搜索选项。" - -#: includes/fields/class-acf-field-oembed.php:27 -msgid "" -"An interactive component for embedding videos, images, tweets, audio and " -"other content by making use of the native WordPress oEmbed functionality." -msgstr "" -"一个交互式组件,用于通过使用本机 WordPress oEmbed 功能来嵌入视频、图像、推" -"文、音频和其他内容。" - -#: includes/fields/class-acf-field-number.php:26 -msgid "An input limited to numerical values." -msgstr "输入仅限于数值。" - -#: includes/fields/class-acf-field-message.php:28 -msgid "" -"Used to display a message to editors alongside other fields. Useful for " -"providing additional context or instructions around your fields." -msgstr "" -"用于与其他字段一起向编辑者显示消息。对于提供有关您的字段的附加上下文或说明很" -"有用。" - -#: includes/fields/class-acf-field-link.php:27 -msgid "" -"Allows you to specify a link and its properties such as title and target " -"using the WordPress native link picker." -msgstr "允许您使用 WordPress 本机链接选择器指定链接及其属性,例如标题和目标。" - -#: includes/fields/class-acf-field-image.php:27 -msgid "Uses the native WordPress media picker to upload, or choose images." -msgstr "使用本机 WordPress 媒体选择器上传或选择图像。" - -#: includes/fields/class-acf-field-group.php:27 -msgid "" -"Provides a way to structure fields into groups to better organize the data " -"and the edit screen." -msgstr "提供一种将字段组织为组的方法,以更好地组织数据和编辑屏幕。" - -#: includes/fields/class-acf-field-google-map.php:27 -msgid "" -"An interactive UI for selecting a location using Google Maps. Requires a " -"Google Maps API key and additional configuration to display correctly." -msgstr "" -"用于使用 Google 地图选择位置的交互式 UI。需要 Google 地图 API 密钥和其他配置" -"才能正确显示。" - -#: includes/fields/class-acf-field-file.php:27 -msgid "Uses the native WordPress media picker to upload, or choose files." -msgstr "使用本机 WordPress 媒体选择器上传或选择文件。" - -#: includes/fields/class-acf-field-email.php:26 -msgid "A text input specifically designed for storing email addresses." -msgstr "专门用于存储电子邮件地址的文本输入。" - -#: includes/fields/class-acf-field-date_time_picker.php:27 -msgid "" -"An interactive UI for picking a date and time. The date return format can be " -"customized using the field settings." -msgstr "用于选择日期和时间的交互式 UI。可以使用字段设置自定义日期返回格式。" - -#: includes/fields/class-acf-field-date_picker.php:27 -msgid "" -"An interactive UI for picking a date. The date return format can be " -"customized using the field settings." -msgstr "用于选择日期的交互式用户界面。可以使用字段设置自定义日期返回格式。" - -#: includes/fields/class-acf-field-color_picker.php:27 -msgid "An interactive UI for selecting a color, or specifying a Hex value." -msgstr "用于选择颜色或指定十六进制值的交互式 UI。" - -#: includes/fields/class-acf-field-checkbox.php:27 -msgid "" -"A group of checkbox inputs that allow the user to select one, or multiple " -"values that you specify." -msgstr "一组复选框输入,允许用户选择您指定的一个或多个值。" - -#: includes/fields/class-acf-field-button-group.php:26 -msgid "" -"A group of buttons with values that you specify, users can choose one option " -"from the values provided." -msgstr "一组具有您指定的值的按钮,用户可以从提供的值中选择一个选项。" - -#: includes/fields/class-acf-field-accordion.php:27 -msgid "" -"Allows you to group and organize custom fields into collapsable panels that " -"are shown while editing content. Useful for keeping large datasets tidy." -msgstr "" -"允许您将自定义字段分组并组织到可折叠面板中,这些面板在编辑内容时显示。对于保" -"持大型数据集整洁很有用。" - -#: includes/fields.php:475 -msgid "" -"This provides a solution for repeating content such as slides, team members, " -"and call-to-action tiles, by acting as a parent to a set of subfields which " -"can be repeated again and again." -msgstr "" -"这提供了一种通过充当一组可以一次又一次重复的子字段的父字段来重复幻灯片、团队" -"成员和号召性用语图块等内容的解决方案。" - -#: includes/fields.php:465 -msgid "" -"This provides an interactive interface for managing a collection of " -"attachments. Most settings are similar to the Image field type. Additional " -"settings allow you to specify where new attachments are added in the gallery " -"and the minimum/maximum number of attachments allowed." -msgstr "" -"这提供了用于管理附件集合的交互式界面。大多数设置与图像字段类型类似。其他设置" -"允许您指定在库中添加新附件的位置以及允许的最小/最大附件数量。" - -#: includes/fields.php:455 -msgid "" -"This provides a simple, structured, layout-based editor. The Flexible " -"Content field allows you to define, create and manage content with total " -"control by using layouts and subfields to design the available blocks." -msgstr "" -"这提供了一个简单、结构化、基于布局的编辑器。弹性内容字段允许您通过使用布局和" -"子字段来设计可用块来定义、创建和管理具有完全控制的内容。" - -#: includes/fields.php:445 -msgid "" -"This allows you to select and display existing fields. It does not duplicate " -"any fields in the database, but loads and displays the selected fields at " -"run-time. The Clone field can either replace itself with the selected fields " -"or display the selected fields as a group of subfields." -msgstr "" -"这允许您选择并显示现有字段。它不会复制数据库中的任何字段,而是在运行时加载并" -"显示所选字段。克隆字段可以用所选字段替换自身,也可以将所选字段显示为一组子字" -"段。" - -#: includes/fields.php:442 -msgctxt "noun" -msgid "Clone" -msgstr "克隆" - -#: includes/admin/views/global/navigation.php:86 includes/fields.php:357 -msgid "PRO" -msgstr "PRO" - -#: includes/fields.php:355 includes/fields.php:412 -msgid "Advanced" -msgstr "高级" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:85 -msgid "JSON (newer)" -msgstr "JSON (新)" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:81 -msgid "Original" -msgstr "原始" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:55 -msgid "Invalid post ID." -msgstr "文章 ID 无效。" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:47 -msgid "Invalid post type selected for review." -msgstr "选择进行审核的帖子类型无效。" - -#: includes/admin/views/global/navigation.php:186 -msgid "More" -msgstr "更多" - -#: includes/admin/views/browse-fields-modal.php:86 -msgid "Tutorial" -msgstr "教程" - -#: includes/admin/views/browse-fields-modal.php:75 -msgid "Available with ACF PRO" -msgstr "适用于 ACF PRO" - -#: includes/admin/views/browse-fields-modal.php:63 -msgid "Select Field" -msgstr "选择字段" - -#. translators: %s: A link to the popular fields used in ACF -#: includes/admin/views/browse-fields-modal.php:50 -msgid "Try a different search term or browse %s" -msgstr "尝试不同的搜索词或浏览 %s" - -#: includes/admin/views/browse-fields-modal.php:47 -msgid "Popular fields" -msgstr "热门字段" - -#. translators: %s: The invalid search term -#: includes/admin/views/browse-fields-modal.php:40 -msgid "No search results for '%s'" -msgstr "没有搜索到“%s”结果" - -#: includes/admin/views/browse-fields-modal.php:13 -msgid "Search fields..." -msgstr "搜索字段..." - -#: includes/admin/views/browse-fields-modal.php:11 -msgid "Select Field Type" -msgstr "选择字段类型" - -#: includes/admin/views/browse-fields-modal.php:4 -msgid "Popular" -msgstr "热门" - -#: includes/admin/views/acf-taxonomy/list-empty.php:7 -msgid "Add Taxonomy" -msgstr "添加分类法" - -#: includes/admin/views/acf-taxonomy/list-empty.php:6 -msgid "Create custom taxonomies to classify post type content" -msgstr "创建自定义分类法对文章类型内容进行分类" - -#: includes/admin/views/acf-taxonomy/list-empty.php:5 -msgid "Add Your First Taxonomy" -msgstr "添加您的第一个分类法" - -#: includes/admin/views/acf-taxonomy/basic-settings.php:122 -msgid "Hierarchical taxonomies can have descendants (like categories)." -msgstr "分层分类法可以有后代(如类别)。" - -#: includes/admin/views/acf-taxonomy/basic-settings.php:107 -msgid "Makes a taxonomy visible on the frontend and in the admin dashboard." -msgstr "使分类在前端和管理仪表板中可见。" - -#: includes/admin/views/acf-taxonomy/basic-settings.php:91 -msgid "One or many post types that can be classified with this taxonomy." -msgstr "可以使用此分类法对一种或多种文章类型进行分类。" - -#. translators: example taxonomy -#: includes/admin/views/acf-taxonomy/basic-settings.php:60 -msgid "genre" -msgstr "类型" - -#. translators: example taxonomy -#: includes/admin/views/acf-taxonomy/basic-settings.php:42 -msgid "Genre" -msgstr "类型" - -#. translators: example taxonomy -#: includes/admin/views/acf-taxonomy/basic-settings.php:25 -msgid "Genres" -msgstr "类型" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1211 -msgid "" -"Optional custom controller to use instead of `WP_REST_Terms_Controller `." -msgstr "使用可选的自定义控制器来代替“WP_REST_Terms_Controller”。" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1155 -msgid "Expose this post type in the REST API." -msgstr "在 REST API 中公开此文章类型。" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1055 -msgid "Customize the query variable name" -msgstr "自定义查询变量名" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1028 -msgid "" -"Terms can be accessed using the non-pretty permalink, e.g., {query_var}" -"={term_slug}." -msgstr "可以使用非漂亮的永久链接访问术语,例如 {query_var}={term_slug}。" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:981 -msgid "Parent-child terms in URLs for hierarchical taxonomies." -msgstr "分层分类法 URL 中的父子术语。" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:941 -msgid "Customize the slug used in the URL" -msgstr "自定义 URL 中使用的 slug" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:924 -msgid "Permalinks for this taxonomy are disabled." -msgstr "此分类的永久链接已禁用。" - -#. translators: this string will be appended with the new permalink structure. -#: includes/admin/views/acf-taxonomy/advanced-settings.php:921 -msgid "" -"Rewrite the URL using the taxonomy key as the slug. Your permalink structure " -"will be" -msgstr "使用分类键作为 slug 重写 URL。您的永久链接结构将是" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:913 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1030 -#: includes/admin/views/acf-taxonomy/basic-settings.php:57 -msgid "Taxonomy Key" -msgstr "分类法键" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:911 -msgid "Select the type of permalink to use for this taxonomy." -msgstr "选择用于此分类的永久链接类型。" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:896 -msgid "Display a column for the taxonomy on post type listing screens." -msgstr "在帖子类型列表屏幕上显示分类法列。" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:895 -msgid "Show Admin Column" -msgstr "显示管理栏" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:882 -msgid "Show the taxonomy in the quick/bulk edit panel." -msgstr "在快速/批量编辑面板中显示分类。" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:881 -msgid "Quick Edit" -msgstr "快速编辑" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:868 -msgid "List the taxonomy in the Tag Cloud Widget controls." -msgstr "列出标签云小部件控件中的分类法。" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:867 -msgid "Tag Cloud" -msgstr "标签云" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:824 -msgid "" -"A PHP function name to be called for sanitizing taxonomy data saved from a " -"meta box." -msgstr "要调用的 PHP 函数名称,用于清理从元框中保存的分类数据。" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:823 -msgid "Meta Box Sanitization Callback" -msgstr "Meta Box 清理回调" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:805 -msgid "" -"A PHP function name to be called to handle the content of a meta box on your " -"taxonomy." -msgstr "要调用的 PHP 函数名称来处理分类法上元框的内容。" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:804 -msgid "Register Meta Box Callback" -msgstr "注册元框回调" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:763 -msgid "No Meta Box" -msgstr "无 Meta Box" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:762 -msgid "Custom Meta Box" -msgstr "自定义 Meta Box" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:758 -msgid "" -"Controls the meta box on the content editor screen. By default, the " -"Categories meta box is shown for hierarchical taxonomies, and the Tags meta " -"box is shown for non-hierarchical taxonomies." -msgstr "" -"控制内容编辑器屏幕上的元框。默认情况下,对于分层分类法显示“类别”元框,对于非" -"分层分类法显示“标签”元框。" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:757 -msgid "Meta Box" -msgstr "Meta Box" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:746 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:767 -msgid "Categories Meta Box" -msgstr "分类 Meta Box" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:745 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:766 -msgid "Tags Meta Box" -msgstr "标签 Meta Box" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:704 -msgid "A link to a tag" -msgstr "指向标签的链接" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:703 -msgid "Describes a navigation link block variation used in the block editor." -msgstr "描述块编辑器中使用的导航链接块变体。" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:698 -msgid "A link to a %s" -msgstr "%s 的链接" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:683 -msgid "Tag Link" -msgstr "标签链接" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:682 -msgid "" -"Assigns a title for navigation link block variation used in the block editor." -msgstr "为块编辑器中使用的导航链接块变体分配标题。" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:663 -msgid "← Go to tags" -msgstr "← 转到标签" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:662 -msgid "" -"Assigns the text used to link back to the main index after updating a term." -msgstr "在更新分类项后,指定用于链接回主索引的文本。" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:661 -msgid "Back To Items" -msgstr "返回项目" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:657 -msgid "← Go to %s" -msgstr "← 前往 %s" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:642 -msgid "Tags list" -msgstr "标签列表" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:641 -msgid "Assigns text to the table hidden heading." -msgstr "将文本分配给表格隐藏标题。" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:622 -msgid "Tags list navigation" -msgstr "标签列表导航" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:621 -msgid "Assigns text to the table pagination hidden heading." -msgstr "将文本分配给表格分页隐藏标题。" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:597 -msgid "Filter by category" -msgstr "按类别过滤" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:596 -msgid "Assigns text to the filter button in the posts lists table." -msgstr "将文本分配给帖子列表中的过滤器按钮。" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:595 -msgid "Filter By Item" -msgstr "按项目过滤" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:591 -msgid "Filter by %s" -msgstr "按 %s 过滤" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:575 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:576 -msgid "" -"The description is not prominent by default; however, some themes may show " -"it." -msgstr "默认情况下描述不突出;但是,某些主题可能会显示它。" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:574 -msgid "Describes the Description field on the Edit Tags screen." -msgstr "描述编辑标签屏幕上的描述字段。" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:573 -msgid "Description Field Description" -msgstr "描述 字段 描述" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:554 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:555 -msgid "" -"Assign a parent term to create a hierarchy. The term Jazz, for example, " -"would be the parent of Bebop and Big Band" -msgstr "" -"指定父分类项以创建层次结构。例如,“爵士乐”一词就是“Bebop”和“Big Band”的父词" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:553 -msgid "Describes the Parent field on the Edit Tags screen." -msgstr "描述编辑标签屏幕上的父字段。" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:552 -msgid "Parent Field Description" -msgstr "父字段描述" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:538 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:539 -msgid "" -"The \"slug\" is the URL-friendly version of the name. It is usually all " -"lower case and contains only letters, numbers, and hyphens." -msgstr "" -"“slug”是该名称的 URL 友好版本。它通常全部小写,仅包含字母、数字和连字符。" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:537 -msgid "Describes the Slug field on the Edit Tags screen." -msgstr "描述编辑标签屏幕上的 Slug 字段。" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:536 -msgid "Slug Field Description" -msgstr "Slug 字段描述" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:522 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:523 -msgid "The name is how it appears on your site" -msgstr "该名称是它在您网站上的显示方式" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:521 -msgid "Describes the Name field on the Edit Tags screen." -msgstr "描述编辑标签屏幕上的名称字段。" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:520 -msgid "Name Field Description" -msgstr "名称 字段 描述" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:507 -msgid "No tags" -msgstr "无标签" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:506 -msgid "" -"Assigns the text displayed in the posts and media list tables when no tags " -"or categories are available." -msgstr "当没有可用标签或类别时,分配帖子和媒体列表中显示的文本。" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:505 -msgid "No Terms" -msgstr "无分类项" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:501 -msgid "No %s" -msgstr "无 %s" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:486 -msgid "No tags found" -msgstr "未找到标签" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:485 -msgid "" -"Assigns the text displayed when clicking the 'choose from most used' text in " -"the taxonomy meta box when no tags are available, and assigns the text used " -"in the terms list table when there are no items for a taxonomy." -msgstr "" -"当没有可用标签时,分配在分类元框中单击“从最常用的选择”文本时显示的文本,并在" -"没有分类项时分配术语列表中使用的文本。" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:484 -msgid "Not Found" -msgstr "未找到" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:463 -msgid "Assigns text to the Title field of the Most Used tab." -msgstr "将文本分配给最常用选项卡的标题字段。" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:462 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:464 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:465 -msgid "Most Used" -msgstr "最常被使用" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:444 -msgid "Choose from the most used tags" -msgstr "从最常用的标签中选择" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:443 -msgid "" -"Assigns the 'choose from most used' text used in the meta box when " -"JavaScript is disabled. Only used on non-hierarchical taxonomies." -msgstr "" -"当禁用 JavaScript 时,指定元框中使用的“从最常用的选项中选择”文本。仅用于非层" -"次分类法。" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:442 -msgid "Choose From Most Used" -msgstr "从最常用的中选择" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:438 -msgid "Choose from the most used %s" -msgstr "从最常用的 %s 中选择" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:418 -msgid "Add or remove tags" -msgstr "添加或删除标签" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:417 -msgid "" -"Assigns the add or remove items text used in the meta box when JavaScript is " -"disabled. Only used on non-hierarchical taxonomies" -msgstr "" -"禁用 JavaScript 时分配在元框中使用的添加或删除项目文本。仅用于非层次分类法" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:416 -msgid "Add Or Remove Items" -msgstr "添加或删除项目" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:412 -msgid "Add or remove %s" -msgstr "添加或删除%s" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:392 -msgid "Separate tags with commas" -msgstr "用逗号分隔标签" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:391 -msgid "" -"Assigns the separate item with commas text used in the taxonomy meta box. " -"Only used on non-hierarchical taxonomies." -msgstr "使用分类元框中使用的逗号文本分配单独的项目。仅用于非层次分类法。" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:390 -msgid "Separate Items With Commas" -msgstr "用逗号分隔项目" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:386 -msgid "Separate %s with commas" -msgstr "用逗号分隔 %s" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:366 -msgid "Popular Tags" -msgstr "热门标签" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:365 -msgid "Assigns popular items text. Only used for non-hierarchical taxonomies." -msgstr "分配热门项目文本。仅用于非层次分类法。" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:364 -msgid "Popular Items" -msgstr "热门项目" - -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:361 -msgid "Popular %s" -msgstr "热门 %s" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:347 -msgid "Search Tags" -msgstr "搜索标签" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:346 -msgid "Assigns search items text." -msgstr "分配搜索项文本。" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:323 -msgid "Parent Category:" -msgstr "父级分类:" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:322 -msgid "Assigns parent item text, but with a colon (:) added to the end." -msgstr "分配父项文本,但在末尾添加冒号 (:)。" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:321 -msgid "Parent Item With Colon" -msgstr "带冒号的父项" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:298 -msgid "Parent Category" -msgstr "父类别" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:297 -msgid "Assigns parent item text. Only used on hierarchical taxonomies." -msgstr "分配父项文本。仅用于分层分类法。" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:296 -msgid "Parent Item" -msgstr "父级项目" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:293 -msgid "Parent %s" -msgstr "上级 %s" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:278 -msgid "New Tag Name" -msgstr "新标签名称" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:277 -msgid "Assigns the new item name text." -msgstr "分配新的项目名称文本。" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:276 -msgid "New Item Name" -msgstr "新项目名称" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:273 -msgid "New %s Name" -msgstr "新 %s 名称" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:258 -msgid "Add New Tag" -msgstr "新增标签" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:257 -msgid "Assigns the add new item text." -msgstr "分配新的项目名称文本。" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:238 -msgid "Update Tag" -msgstr "更新标签" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:237 -msgid "Assigns the update item text." -msgstr "分配更新项目文本。" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:236 -msgid "Update Item" -msgstr "更新项目" - -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-taxonomy/advanced-settings.php:233 -msgid "Update %s" -msgstr "更新 %s" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:218 -msgid "View Tag" -msgstr "查看标签" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:217 -msgid "In the admin bar to view term during editing." -msgstr "在管理栏中可以在编辑期间查看分类项。" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:198 -msgid "Edit Tag" -msgstr "编辑标签" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:197 -msgid "At the top of the editor screen when editing a term." -msgstr "编辑分类项时位于编辑器屏幕的顶部。" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:178 -msgid "All Tags" -msgstr "所有标签" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:177 -msgid "Assigns the all items text." -msgstr "分配所有项目文本。" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:158 -msgid "Assigns the menu name text." -msgstr "分配菜单名称文本。" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:157 -msgid "Menu Label" -msgstr "菜单标签" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:131 -msgid "Active taxonomies are enabled and registered with WordPress." -msgstr "活动分类法已启用并在 WordPress 中注册。" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:115 -msgid "A descriptive summary of the taxonomy." -msgstr "分类法的描述性摘要。" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:95 -msgid "A descriptive summary of the term." -msgstr "该分类项的描述性摘要。" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:94 -msgid "Term Description" -msgstr "分类项说明" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:76 -msgid "Single word, no spaces. Underscores and dashes allowed." -msgstr "单个字符串,不能有空格,允许下划线和破折号。" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:75 -msgid "Term Slug" -msgstr "分类项 Slug" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:56 -msgid "The name of the default term." -msgstr "默认分类项的名称。" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:55 -msgid "Term Name" -msgstr "分类项名称" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:41 -msgid "" -"Create a term for the taxonomy that cannot be deleted. It will not be " -"selected for posts by default." -msgstr "为无法删除的分类法创建分类项。默认情况下不会选择它来发布帖子。" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:40 -msgid "Default Term" -msgstr "默认分类项" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:28 -msgid "" -"Whether terms in this taxonomy should be sorted in the order they are " -"provided to `wp_set_object_terms()`." -msgstr "" -"此分类法中的分类项是否应按照提供给“wp_set_object_terms()”的顺序进行排序。" - -#: includes/admin/views/acf-taxonomy/advanced-settings.php:27 -msgid "Sort Terms" -msgstr "排序分类项" - -#: includes/admin/views/acf-post-type/list-empty.php:7 -msgid "Add Post Type" -msgstr "添加文章类型" - -#: includes/admin/views/acf-post-type/list-empty.php:6 -msgid "" -"Expand the functionality of WordPress beyond standard posts and pages with " -"custom post types." -msgstr "使用自定义文章类型将 WordPress 的功能扩展到标准文章和页面之外。" - -#: includes/admin/views/acf-post-type/list-empty.php:5 -msgid "Add Your First Post Type" -msgstr "添加您的第一个文章类型" - -#: includes/admin/views/acf-post-type/basic-settings.php:136 -#: includes/admin/views/acf-taxonomy/basic-settings.php:135 -msgid "I know what I'm doing, show me all the options." -msgstr "我知道我在做什么,告诉我所有的选择。" - -#: includes/admin/views/acf-post-type/basic-settings.php:135 -#: includes/admin/views/acf-taxonomy/basic-settings.php:134 -msgid "Advanced Configuration" -msgstr "高级配置" - -#: includes/admin/views/acf-post-type/basic-settings.php:123 -msgid "Hierarchical post types can have descendants (like pages)." -msgstr "分层文章类型可以有后代(如页面)。" - -#: includes/admin/views/acf-post-type/basic-settings.php:122 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:980 -#: includes/admin/views/acf-taxonomy/basic-settings.php:121 -msgid "Hierarchical" -msgstr "分层" - -#: includes/admin/views/acf-post-type/basic-settings.php:107 -msgid "Visible on the frontend and in the admin dashboard." -msgstr "在前端和管理仪表板中可见。" - -#: includes/admin/views/acf-post-type/basic-settings.php:106 -#: includes/admin/views/acf-taxonomy/basic-settings.php:106 -msgid "Public" -msgstr "公开" - -#. translators: example post type -#: includes/admin/views/acf-post-type/basic-settings.php:59 -msgid "movie" -msgstr "电影" - -#: includes/admin/views/acf-post-type/basic-settings.php:57 -msgid "Lower case letters, underscores and dashes only, Max 20 characters." -msgstr "仅限小写字母、下划线和破折号,最多 20 个字符。" - -#. translators: example post type -#: includes/admin/views/acf-post-type/basic-settings.php:41 -msgid "Movie" -msgstr "电影" - -#: includes/admin/views/acf-post-type/basic-settings.php:39 -#: includes/admin/views/acf-taxonomy/basic-settings.php:40 -msgid "Singular Label" -msgstr "单一标签" - -#. translators: example post type -#: includes/admin/views/acf-post-type/basic-settings.php:24 -msgid "Movies" -msgstr "电影" - -#: includes/admin/views/acf-post-type/basic-settings.php:22 -#: includes/admin/views/acf-taxonomy/basic-settings.php:23 -msgid "Plural Label" -msgstr "复数标签" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1270 -msgid "" -"Optional custom controller to use instead of `WP_REST_Posts_Controller`." -msgstr "使用可选的自定义控制器来代替“WP_REST_Posts_Controller”。" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1269 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1210 -msgid "Controller Class" -msgstr "控制器类" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1251 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1191 -msgid "The namespace part of the REST API URL." -msgstr "REST API URL 的命名空间部分。" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1250 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1190 -msgid "Namespace Route" -msgstr "命名空间路由" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1232 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1172 -msgid "The base URL for the post type REST API URLs." -msgstr "文章类型 REST API URL 的基本 URL。" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1231 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1171 -msgid "Base URL" -msgstr "基本网址" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1217 -msgid "" -"Exposes this post type in the REST API. Required to use the block editor." -msgstr "在 REST API 中公开此帖子类型。需要使用块编辑器。" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1216 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1154 -msgid "Show In REST API" -msgstr "在 REST API 中显示" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1195 -msgid "Customize the query variable name." -msgstr "自定义查询变量名称。" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1194 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1054 -msgid "Query Variable" -msgstr "查询变量" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1172 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1032 -msgid "No Query Variable Support" -msgstr "不支持查询变量" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1171 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1031 -msgid "Custom Query Variable" -msgstr "自定义查询变量" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1168 -msgid "" -"Items can be accessed using the non-pretty permalink, eg. {post_type}" -"={post_slug}." -msgstr "可以使用非漂亮的永久链接访问项目,例如。 {post_type}={post_slug}。" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1167 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1027 -msgid "Query Variable Support" -msgstr "查询变量支持" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1142 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1003 -msgid "URLs for an item and items can be accessed with a query string." -msgstr "可以使用查询字符串访问一个或多个项目的 URL。" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1141 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:1002 -msgid "Publicly Queryable" -msgstr "可公开查询" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1120 -msgid "Custom slug for the Archive URL." -msgstr "存档 URL 的自定义 slug。" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1119 -msgid "Archive Slug" -msgstr "归档 Slug" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1106 -msgid "" -"Has an item archive that can be customized with an archive template file in " -"your theme." -msgstr "拥有一个项目存档,可以使用主题中的存档模板文件进行自定义。" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1105 -msgid "Archive" -msgstr "归档" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1085 -msgid "Pagination support for the items URLs such as the archives." -msgstr "对项目 URL(例如归档)的分页支持。" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1084 -msgid "Pagination" -msgstr "分页" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1067 -msgid "RSS feed URL for the post type items." -msgstr "文章类型项目的 RSS 源 URL。" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1066 -msgid "Feed URL" -msgstr "Feed 网址" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1048 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:961 -msgid "" -"Alters the permalink structure to add the `WP_Rewrite::$front` prefix to " -"URLs." -msgstr "更改永久链接结构以将 `WP_Rewrite::$front` 前缀添加到 URL。" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1047 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:960 -msgid "Front URL Prefix" -msgstr "前面的 URL 前缀" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1028 -msgid "Customize the slug used in the URL." -msgstr "自定义 URL 中使用的 slug。" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1027 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:940 -msgid "URL Slug" -msgstr "URL Slug" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1011 -msgid "Permalinks for this post type are disabled." -msgstr "此文章类型的永久链接已禁用。" - -#. translators: this string will be appended with the new permalink structure. -#: includes/admin/views/acf-post-type/advanced-settings.php:1010 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:923 -msgid "" -"Rewrite the URL using a custom slug defined in the input below. Your " -"permalink structure will be" -msgstr "使用下面输入中定义的自定义 slug 重写 URL。您的永久链接结构将是" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1002 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:915 -msgid "No Permalink (prevent URL rewriting)" -msgstr "无固定链接(防止 URL 重写)" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1001 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:914 -msgid "Custom Permalink" -msgstr "自定义固定链接" - -#: includes/admin/views/acf-post-type/advanced-settings.php:1000 -#: includes/admin/views/acf-post-type/advanced-settings.php:1170 -#: includes/admin/views/acf-post-type/basic-settings.php:56 -msgid "Post Type Key" -msgstr "文章类型键" - -#. translators: this string will be appended with the new permalink structure. -#: includes/admin/views/acf-post-type/advanced-settings.php:998 -#: includes/admin/views/acf-post-type/advanced-settings.php:1008 -msgid "" -"Rewrite the URL using the post type key as the slug. Your permalink " -"structure will be" -msgstr "使用文章类型键作为 slug 重写 URL。您的永久链接结构将是" - -#: includes/admin/views/acf-post-type/advanced-settings.php:996 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:910 -msgid "Permalink Rewrite" -msgstr "永久链接重写" - -#: includes/admin/views/acf-post-type/advanced-settings.php:982 -msgid "Delete items by a user when that user is deleted." -msgstr "删除用户后,删除该用户的项目。" - -#: includes/admin/views/acf-post-type/advanced-settings.php:981 -msgid "Delete With User" -msgstr "与用户一起删除" - -#: includes/admin/views/acf-post-type/advanced-settings.php:967 -msgid "Allow the post type to be exported from 'Tools' > 'Export'." -msgstr "允许从“工具”>“导出”导出文章类型。" - -#: includes/admin/views/acf-post-type/advanced-settings.php:966 -msgid "Can Export" -msgstr "可以导出" - -#: includes/admin/views/acf-post-type/advanced-settings.php:935 -msgid "Optionally provide a plural to be used in capabilities." -msgstr "可以选择提供要在功能中使用的复数。" - -#: includes/admin/views/acf-post-type/advanced-settings.php:934 -msgid "Plural Capability Name" -msgstr "复数能力名称" - -#: includes/admin/views/acf-post-type/advanced-settings.php:916 -msgid "Choose another post type to base the capabilities for this post type." -msgstr "选择另一个文章类型以基于此文章类型的功能。" - -#: includes/admin/views/acf-post-type/advanced-settings.php:915 -msgid "Singular Capability Name" -msgstr "单一能力名称" - -#: includes/admin/views/acf-post-type/advanced-settings.php:901 -msgid "" -"By default the capabilities of the post type will inherit the 'Post' " -"capability names, eg. edit_post, delete_posts. Enable to use post type " -"specific capabilities, eg. edit_{singular}, delete_{plural}." -msgstr "" -"默认情况下,文章类型的功能将继承“文章”功能名称,例如。编辑帖子、删除帖子。允" -"许使用文章类型特定的功能,例如。编辑_{单数},删除_{复数}。" - -#: includes/admin/views/acf-post-type/advanced-settings.php:900 -msgid "Rename Capabilities" -msgstr "重命名功能" - -#: includes/admin/views/acf-post-type/advanced-settings.php:885 -msgid "Exclude From Search" -msgstr "从搜索中排除" - -#: includes/admin/views/acf-post-type/advanced-settings.php:872 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:854 -msgid "" -"Allow items to be added to menus in the 'Appearance' > 'Menus' screen. Must " -"be turned on in 'Screen options'." -msgstr "允许将项目添加到“外观”>“菜单”屏幕中的菜单。必须在“屏幕选项”中打开。" - -#: includes/admin/views/acf-post-type/advanced-settings.php:871 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:853 -msgid "Appearance Menus Support" -msgstr "外观菜单支持" - -#: includes/admin/views/acf-post-type/advanced-settings.php:853 -msgid "Appears as an item in the 'New' menu in the admin bar." -msgstr "显示为管理栏中“新建”菜单中的一个项目。" - -#: includes/admin/views/acf-post-type/advanced-settings.php:852 -msgid "Show In Admin Bar" -msgstr "在管理栏中显示" - -#: includes/admin/views/acf-post-type/advanced-settings.php:821 -msgid "" -"A PHP function name to be called when setting up the meta boxes for the edit " -"screen." -msgstr "为编辑屏幕设置元框时要调用的 PHP 函数名称。" - -#: includes/admin/views/acf-post-type/advanced-settings.php:820 -msgid "Custom Meta Box Callback" -msgstr "自定义 Meta Box 回调" - -#: includes/admin/views/acf-post-type/advanced-settings.php:800 -msgid "Menu Icon" -msgstr "菜单图标" - -#: includes/admin/views/acf-post-type/advanced-settings.php:782 -msgid "The position in the sidebar menu in the admin dashboard." -msgstr "管理仪表板侧边栏菜单中的位置。" - -#: includes/admin/views/acf-post-type/advanced-settings.php:781 -msgid "Menu Position" -msgstr "菜单位置" - -#: includes/admin/views/acf-post-type/advanced-settings.php:763 -msgid "" -"By default the post type will get a new top level item in the admin menu. If " -"an existing top level item is supplied here, the post type will be added as " -"a submenu item under it." -msgstr "" -"默认情况下,文章类型将在管理菜单中获得一个新的顶级项目。如果此处提供了现有的" -"顶级项目,则文章类型将作为其下的子菜单项添加。" - -#: includes/admin/views/acf-post-type/advanced-settings.php:762 -msgid "Admin Menu Parent" -msgstr "管理菜单父级" - -#. translators: %s = "dashicon class name", link to the WordPress dashicon -#. documentation. -#: includes/admin/views/acf-post-type/advanced-settings.php:750 -msgid "" -"The icon used for the post type menu item in the admin dashboard. Can be a " -"URL or %s to use for the icon." -msgstr "用于管理仪表板中的文章类型菜单项的图标。可以是用于图标的 URL 或 %s。" - -#: includes/admin/views/acf-post-type/advanced-settings.php:745 -msgid "Dashicon class name" -msgstr "Dashicon 类名" - -#: includes/admin/views/acf-post-type/advanced-settings.php:734 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:734 -msgid "Admin editor navigation in the sidebar menu." -msgstr "侧边栏菜单中的管理编辑器导航。" - -#: includes/admin/views/acf-post-type/advanced-settings.php:733 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:733 -msgid "Show In Admin Menu" -msgstr "在管理菜单中显示" - -#: includes/admin/views/acf-post-type/advanced-settings.php:720 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:719 -msgid "Items can be edited and managed in the admin dashboard." -msgstr "可以在管理仪表板中编辑和管理项目。" - -#: includes/admin/views/acf-post-type/advanced-settings.php:719 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:718 -msgid "Show In UI" -msgstr "在用户界面中显示" - -#: includes/admin/views/acf-post-type/advanced-settings.php:689 -msgid "A link to a post." -msgstr "文章的链接。" - -#: includes/admin/views/acf-post-type/advanced-settings.php:688 -msgid "Description for a navigation link block variation." -msgstr "导航链接块变体的描述。" - -#: includes/admin/views/acf-post-type/advanced-settings.php:687 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:702 -msgid "Item Link Description" -msgstr "项目链接说明" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:683 -msgid "A link to a %s." -msgstr "%s 的链接" - -#: includes/admin/views/acf-post-type/advanced-settings.php:668 -msgid "Post Link" -msgstr "文章链接" - -#: includes/admin/views/acf-post-type/advanced-settings.php:667 -msgid "Title for a navigation link block variation." -msgstr "导航链接块变体的标题。" - -#: includes/admin/views/acf-post-type/advanced-settings.php:666 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:681 -msgid "Item Link" -msgstr "项目链接" - -#. translators: %s Singular form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:663 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:678 -msgid "%s Link" -msgstr "%s 链接" - -#: includes/admin/views/acf-post-type/advanced-settings.php:648 -msgid "Post updated." -msgstr "文章已更新。" - -#: includes/admin/views/acf-post-type/advanced-settings.php:647 -msgid "In the editor notice after an item is updated." -msgstr "项目更新后在编辑器通知中。" - -#: includes/admin/views/acf-post-type/advanced-settings.php:646 -msgid "Item Updated" -msgstr "项目已更新。" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:643 -msgid "%s updated." -msgstr "%s 已更新。" - -#: includes/admin/views/acf-post-type/advanced-settings.php:628 -msgid "Post scheduled." -msgstr "文章已计划。" - -#: includes/admin/views/acf-post-type/advanced-settings.php:627 -msgid "In the editor notice after scheduling an item." -msgstr "在安排项目后的编辑器通知中。" - -#: includes/admin/views/acf-post-type/advanced-settings.php:626 -msgid "Item Scheduled" -msgstr "项目已计划" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:623 -msgid "%s scheduled." -msgstr "%s 已计划。" - -#: includes/admin/views/acf-post-type/advanced-settings.php:608 -msgid "Post reverted to draft." -msgstr "文章已恢复为草稿。" - -#: includes/admin/views/acf-post-type/advanced-settings.php:607 -msgid "In the editor notice after reverting an item to draft." -msgstr "将项目恢复为草稿后在编辑器通知中。" - -#: includes/admin/views/acf-post-type/advanced-settings.php:606 -msgid "Item Reverted To Draft" -msgstr "项目恢复为草稿" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:603 -msgid "%s reverted to draft." -msgstr "%s 已恢复为草稿。" - -#: includes/admin/views/acf-post-type/advanced-settings.php:588 -msgid "Post published privately." -msgstr "文章已私密发布。" - -#: includes/admin/views/acf-post-type/advanced-settings.php:587 -msgid "In the editor notice after publishing a private item." -msgstr "在编辑发布私密项目后的通知中。" - -#: includes/admin/views/acf-post-type/advanced-settings.php:586 -msgid "Item Published Privately" -msgstr "私密项目已发布。" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:583 -msgid "%s published privately." -msgstr "%s 已私密发布" - -#: includes/admin/views/acf-post-type/advanced-settings.php:568 -msgid "Post published." -msgstr "文章已发布。" - -#: includes/admin/views/acf-post-type/advanced-settings.php:567 -msgid "In the editor notice after publishing an item." -msgstr "在编辑发布项目后的通知中。" - -#: includes/admin/views/acf-post-type/advanced-settings.php:566 -msgid "Item Published" -msgstr "项目已发布" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:563 -msgid "%s published." -msgstr "%s 已发布。" - -#: includes/admin/views/acf-post-type/advanced-settings.php:548 -msgid "Posts list" -msgstr "文章列表" - -#: includes/admin/views/acf-post-type/advanced-settings.php:547 -msgid "Used by screen readers for the items list on the post type list screen." -msgstr "由屏幕阅读器用于文章类型列表屏幕上的项目列表。" - -#: includes/admin/views/acf-post-type/advanced-settings.php:546 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:640 -msgid "Items List" -msgstr "项目列表" - -#. translators: %s Plural form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:543 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:637 -msgid "%s list" -msgstr "%s 列表" - -#: includes/admin/views/acf-post-type/advanced-settings.php:528 -msgid "Posts list navigation" -msgstr "文章列表导航" - -#: includes/admin/views/acf-post-type/advanced-settings.php:527 -msgid "" -"Used by screen readers for the filter list pagination on the post type list " -"screen." -msgstr "由屏幕阅读器用于文章类型列表屏幕上的过滤器列表分页。" - -#: includes/admin/views/acf-post-type/advanced-settings.php:526 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:620 -msgid "Items List Navigation" -msgstr "项目列表导航" - -#. translators: %s Plural form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:523 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:617 -msgid "%s list navigation" -msgstr "%s 列表导航" - -#: includes/admin/views/acf-post-type/advanced-settings.php:507 -msgid "Filter posts by date" -msgstr "按日期过滤文章" - -#: includes/admin/views/acf-post-type/advanced-settings.php:506 -msgid "" -"Used by screen readers for the filter by date heading on the post type list " -"screen." -msgstr "屏幕阅读器用于按文章类型列表屏幕上的日期标题进行过滤。" - -#: includes/admin/views/acf-post-type/advanced-settings.php:505 -msgid "Filter Items By Date" -msgstr "按日期过滤项目" - -#. translators: %s Plural form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:501 -msgid "Filter %s by date" -msgstr "按日期过滤 %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:486 -msgid "Filter posts list" -msgstr "筛选文章列表" - -#: includes/admin/views/acf-post-type/advanced-settings.php:485 -msgid "" -"Used by screen readers for the filter links heading on the post type list " -"screen." -msgstr "由屏幕阅读器用于文章类型列表屏幕上的过滤器链接标题。" - -#: includes/admin/views/acf-post-type/advanced-settings.php:484 -msgid "Filter Items List" -msgstr "筛选项目列表" - -#. translators: %s Plural form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:480 -msgid "Filter %s list" -msgstr "筛选 %s 列表" - -#: includes/admin/views/acf-post-type/advanced-settings.php:464 -msgid "In the media modal showing all media uploaded to this item." -msgstr "在媒体模式中显示上传到此项目的所有媒体。" - -#: includes/admin/views/acf-post-type/advanced-settings.php:463 -msgid "Uploaded To This Item" -msgstr "已上传至此项目" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:459 -msgid "Uploaded to this %s" -msgstr "已上传至此 %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:444 -msgid "Insert into post" -msgstr "插入至文章" - -#: includes/admin/views/acf-post-type/advanced-settings.php:443 -msgid "As the button label when adding media to content." -msgstr "作为向内容添加媒体时的按钮标签。" - -#: includes/admin/views/acf-post-type/advanced-settings.php:442 -msgid "Insert Into Media Button" -msgstr "插入到媒体按钮" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:438 -msgid "Insert into %s" -msgstr "插入至 %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:423 -msgid "Use as featured image" -msgstr "用作特色图像" - -#: includes/admin/views/acf-post-type/advanced-settings.php:422 -msgid "" -"As the button label for selecting to use an image as the featured image." -msgstr "作为选择使用图像作为特色图像的按钮标签。" - -#: includes/admin/views/acf-post-type/advanced-settings.php:421 -msgid "Use Featured Image" -msgstr "使用特色图像" - -#: includes/admin/views/acf-post-type/advanced-settings.php:408 -msgid "Remove featured image" -msgstr "移除特色图片" - -#: includes/admin/views/acf-post-type/advanced-settings.php:407 -msgid "As the button label when removing the featured image." -msgstr "作为删除特色图像时的按钮标签。" - -#: includes/admin/views/acf-post-type/advanced-settings.php:406 -msgid "Remove Featured Image" -msgstr "移除特色图片" - -#: includes/admin/views/acf-post-type/advanced-settings.php:393 -msgid "Set featured image" -msgstr "设置特色图像" - -#: includes/admin/views/acf-post-type/advanced-settings.php:392 -msgid "As the button label when setting the featured image." -msgstr "作为设置特色图片时的按钮标签。" - -#: includes/admin/views/acf-post-type/advanced-settings.php:391 -msgid "Set Featured Image" -msgstr "设置特色图像" - -#: includes/admin/views/acf-post-type/advanced-settings.php:378 -msgid "Featured image" -msgstr "特色图像" - -#: includes/admin/views/acf-post-type/advanced-settings.php:377 -msgid "In the editor used for the title of the featured image meta box." -msgstr "在编辑器中用于特色图像 meta box 的标题。" - -#: includes/admin/views/acf-post-type/advanced-settings.php:376 -msgid "Featured Image Meta Box" -msgstr "特色图像 Meta Box" - -#: includes/admin/views/acf-post-type/advanced-settings.php:363 -msgid "Post Attributes" -msgstr "文章属性" - -#: includes/admin/views/acf-post-type/advanced-settings.php:362 -msgid "In the editor used for the title of the post attributes meta box." -msgstr "在编辑器中用于文章属性 Meta Box 的标题。" - -#: includes/admin/views/acf-post-type/advanced-settings.php:361 -msgid "Attributes Meta Box" -msgstr "属性 Meta Box" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:358 -msgid "%s Attributes" -msgstr "%s 属性" - -#: includes/admin/views/acf-post-type/advanced-settings.php:343 -msgid "Post Archives" -msgstr "文章归档" - -#: includes/admin/views/acf-post-type/advanced-settings.php:342 -msgid "" -"Adds 'Post Type Archive' items with this label to the list of posts shown " -"when adding items to an existing menu in a CPT with archives enabled. Only " -"appears when editing menus in 'Live Preview' mode and a custom archive slug " -"has been provided." -msgstr "" -"将带有此标签的“文章类型存档”项目添加到在启用存档的情况下将项目添加到 CPT 中的" -"现有菜单时显示的文章列表。仅当在“实时预览”模式下编辑菜单并且提供了自定义存档" -"段时才会出现。" - -#: includes/admin/views/acf-post-type/advanced-settings.php:341 -msgid "Archives Nav Menu" -msgstr "归档导航菜单" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:338 -msgid "%s Archives" -msgstr "%s 归档" - -#: includes/admin/views/acf-post-type/advanced-settings.php:323 -msgid "No posts found in Trash" -msgstr "在回收站中未找到文章" - -#: includes/admin/views/acf-post-type/advanced-settings.php:322 -msgid "" -"At the top of the post type list screen when there are no posts in the trash." -msgstr "当回收站中没有文章时,位于文章类型列表屏幕的顶部。" - -#: includes/admin/views/acf-post-type/advanced-settings.php:321 -msgid "No Items Found in Trash" -msgstr "在回收站中未找到项目" - -#. translators: %s Plural form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:317 -msgid "No %s found in Trash" -msgstr "在回收站中未找到 %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:302 -msgid "No posts found" -msgstr "未找到文章" - -#: includes/admin/views/acf-post-type/advanced-settings.php:301 -msgid "" -"At the top of the post type list screen when there are no posts to display." -msgstr "当没有可显示的帖子时,位于文章类型列表屏幕的顶部。" - -#: includes/admin/views/acf-post-type/advanced-settings.php:300 -msgid "No Items Found" -msgstr "未找到项目。" - -#. translators: %s Plural form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:296 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:480 -msgid "No %s found" -msgstr "未找到 %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:281 -msgid "Search Posts" -msgstr "搜索文章" - -#: includes/admin/views/acf-post-type/advanced-settings.php:280 -msgid "At the top of the items screen when searching for an item." -msgstr "搜索项目时位于项目屏幕的顶部。" - -#: includes/admin/views/acf-post-type/advanced-settings.php:279 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:345 -msgid "Search Items" -msgstr "搜索项目" - -#. translators: %s Singular form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:276 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:342 -msgid "Search %s" -msgstr "搜索 %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:261 -msgid "Parent Page:" -msgstr "父页:" - -#: includes/admin/views/acf-post-type/advanced-settings.php:260 -msgid "For hierarchical types in the post type list screen." -msgstr "对于文章类型列表屏幕中的分层类型。" - -#: includes/admin/views/acf-post-type/advanced-settings.php:259 -msgid "Parent Item Prefix" -msgstr "父项前缀" - -#. translators: %s Singular form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:256 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:318 -msgid "Parent %s:" -msgstr "父级 %s:" - -#: includes/admin/views/acf-post-type/advanced-settings.php:241 -msgid "New Post" -msgstr "新文章" - -#: includes/admin/views/acf-post-type/advanced-settings.php:239 -msgid "New Item" -msgstr "新项目" - -#. translators: %s Singular form of post type name -#: includes/admin/views/acf-post-type/advanced-settings.php:236 -msgid "New %s" -msgstr "新 %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:206 -msgid "Add New Post" -msgstr "新增文章" - -#: includes/admin/views/acf-post-type/advanced-settings.php:205 -msgid "At the top of the editor screen when adding a new item." -msgstr "添加新项目时位于编辑器屏幕的顶部。" - -#: includes/admin/views/acf-post-type/advanced-settings.php:204 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:256 -msgid "Add New Item" -msgstr "新增项目" - -#. translators: %s Singular form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:201 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:253 -msgid "Add New %s" -msgstr "新增 %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:186 -msgid "View Posts" -msgstr "查看文章" - -#: includes/admin/views/acf-post-type/advanced-settings.php:185 -msgid "" -"Appears in the admin bar in the 'All Posts' view, provided the post type " -"supports archives and the home page is not an archive of that post type." -msgstr "" -"显示在管理栏中的“所有文章”视图中,前提是文章类型支持存档并且主页不是该文章类" -"型的存档。" - -#: includes/admin/views/acf-post-type/advanced-settings.php:184 -msgid "View Items" -msgstr "查看项目" - -#: includes/admin/views/acf-post-type/advanced-settings.php:166 -msgid "View Post" -msgstr "查看文章" - -#: includes/admin/views/acf-post-type/advanced-settings.php:165 -msgid "In the admin bar to view item when editing it." -msgstr "在管理栏中编辑项目时可以查看项目。" - -#: includes/admin/views/acf-post-type/advanced-settings.php:164 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:216 -msgid "View Item" -msgstr "查看项目" - -#. translators: %s Singular form of post type name -#. translators: %s Plural form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:161 -#: includes/admin/views/acf-post-type/advanced-settings.php:181 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:213 -msgid "View %s" -msgstr "查看 %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:146 -msgid "Edit Post" -msgstr "编辑文章" - -#: includes/admin/views/acf-post-type/advanced-settings.php:145 -msgid "At the top of the editor screen when editing an item." -msgstr "编辑项目时位于编辑器屏幕的顶部。" - -#: includes/admin/views/acf-post-type/advanced-settings.php:144 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:196 -msgid "Edit Item" -msgstr "编辑项目" - -#. translators: %s Singular form of post type name -#. translators: %s Singular form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:141 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:193 -msgid "Edit %s" -msgstr "编辑 %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:126 -msgid "All Posts" -msgstr "所有文章" - -#: includes/admin/views/acf-post-type/advanced-settings.php:125 -#: includes/admin/views/acf-post-type/advanced-settings.php:220 -#: includes/admin/views/acf-post-type/advanced-settings.php:240 -msgid "In the post type submenu in the admin dashboard." -msgstr "在管理仪表板的文章类型子菜单中。" - -#: includes/admin/views/acf-post-type/advanced-settings.php:124 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:176 -msgid "All Items" -msgstr "所有项目" - -#. translators: %s Plural form of post type name -#. translators: %s Plural form of taxonomy name -#: includes/admin/views/acf-post-type/advanced-settings.php:121 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:173 -msgid "All %s" -msgstr "所有 %s" - -#: includes/admin/views/acf-post-type/advanced-settings.php:105 -msgid "Admin menu name for the post type." -msgstr "文章类型的管理菜单名称。" - -#: includes/admin/views/acf-post-type/advanced-settings.php:104 -msgid "Menu Name" -msgstr "菜单名称" - -#: includes/admin/views/acf-post-type/advanced-settings.php:90 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:142 -msgid "Regenerate all labels using the Singular and Plural labels" -msgstr "使用单数和复数标签重新生成所有标签" - -#: includes/admin/views/acf-post-type/advanced-settings.php:88 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:140 -msgid "Regenerate" -msgstr "重新生成" - -#: includes/admin/views/acf-post-type/advanced-settings.php:79 -msgid "Active post types are enabled and registered with WordPress." -msgstr "活动文章类型已在 WordPress 中启用并注册。" - -#: includes/admin/views/acf-post-type/advanced-settings.php:63 -msgid "A descriptive summary of the post type." -msgstr "文章类型的描述性摘要。" - -#: includes/admin/views/acf-post-type/advanced-settings.php:48 -msgid "Add Custom" -msgstr "添加自定义" - -#: includes/admin/views/acf-post-type/advanced-settings.php:42 -msgid "Enable various features in the content editor." -msgstr "启用内容编辑器中的各种功能。" - -#: includes/admin/views/acf-post-type/advanced-settings.php:31 -msgid "Post Formats" -msgstr "文章格式" - -#: includes/admin/views/acf-post-type/advanced-settings.php:25 -msgid "Editor" -msgstr "编辑" - -#: includes/admin/views/acf-post-type/advanced-settings.php:24 -msgid "Trackbacks" -msgstr "引用通告" - -#: includes/admin/views/acf-post-type/basic-settings.php:87 -msgid "Select existing taxonomies to classify items of the post type." -msgstr "选择现有分类法对文章类型的项目进行分类。" - -#: includes/admin/views/acf-field-group/field.php:145 -msgid "Browse Fields" -msgstr "浏览字段" - -#: includes/admin/tools/class-acf-admin-tool-import.php:292 -msgid "Nothing to import" -msgstr "没有什么可导入的" - -#: includes/admin/tools/class-acf-admin-tool-import.php:287 -msgid ". The Custom Post Type UI plugin can be deactivated." -msgstr "可以停用自定义文章类型 UI 插件。" - -#. translators: %d - number of items imported from CPTUI -#: includes/admin/tools/class-acf-admin-tool-import.php:278 -msgid "Imported %d item from Custom Post Type UI -" -msgid_plural "Imported %d items from Custom Post Type UI -" -msgstr[0] "已从自定义文章类型 UI 导入 %d 项 -" - -#: includes/admin/tools/class-acf-admin-tool-import.php:262 -msgid "Failed to import taxonomies." -msgstr "导入分类法失败。" - -#: includes/admin/tools/class-acf-admin-tool-import.php:244 -msgid "Failed to import post types." -msgstr "导入文章类型失败。" - -#: includes/admin/tools/class-acf-admin-tool-import.php:233 -msgid "Nothing from Custom Post Type UI plugin selected for import." -msgstr "自定义文章类型 UI 插件中没有选择导入。" - -#: includes/admin/tools/class-acf-admin-tool-import.php:209 -msgid "Imported 1 item" -msgid_plural "Imported %s items" -msgstr[0] "已导入 %s 个项目" - -#: includes/admin/tools/class-acf-admin-tool-import.php:122 -msgid "" -"Importing a Post Type or Taxonomy with the same key as one that already " -"exists will overwrite the settings for the existing Post Type or Taxonomy " -"with those of the import." -msgstr "" -"导入与现有文章类型或分类法具有相同键的文章类型或分类法将会用导入的设置覆盖现" -"有文章类型或分类法的设置。" - -#: includes/admin/tools/class-acf-admin-tool-import.php:111 -#: includes/admin/tools/class-acf-admin-tool-import.php:127 -msgid "Import from Custom Post Type UI" -msgstr "从自定义文章类型 UI 导入" - -#: includes/admin/tools/class-acf-admin-tool-export.php:412 -msgid "" -"The following code can be used to register a local version of the selected " -"items. Storing field groups, post types, or taxonomies locally can provide " -"many benefits such as faster load times, version control & dynamic fields/" -"settings. Simply copy and paste the following code to your theme's functions." -"php file or include it within an external file, then deactivate or delete " -"the items from the ACF admin." -msgstr "" -"以下代码可用于注册所选项目的本地版本。在本地存储字段组、帖子类型或分类法可以" -"提供许多好处,例如更快的加载时间、版本控制和动态字段/设置。只需将以下代码复制" -"并粘贴到主题的functions.php 文件中或将其包含在外部文件中,然后从ACF 管理中停" -"用或删除这些项目。" - -#: includes/admin/tools/class-acf-admin-tool-export.php:411 -msgid "Export - Generate PHP" -msgstr "导出 - 生成 PHP" - -#: includes/admin/tools/class-acf-admin-tool-export.php:384 -msgid "Export" -msgstr "导出" - -#: includes/admin/tools/class-acf-admin-tool-export.php:276 -msgid "Select Taxonomies" -msgstr "选择分类法" - -#: includes/admin/tools/class-acf-admin-tool-export.php:254 -msgid "Select Post Types" -msgstr "选择文章类型" - -#: includes/admin/tools/class-acf-admin-tool-export.php:167 -msgid "Exported 1 item." -msgid_plural "Exported %s items." -msgstr[0] "已导出 %s 个项目。" - -#: includes/admin/post-types/admin-taxonomy.php:129 -#: assets/build/js/acf-internal-post-type.js:182 -#: assets/build/js/acf-internal-post-type.js:256 -msgid "Category" -msgstr "分类" - -#: includes/admin/post-types/admin-taxonomy.php:127 -#: assets/build/js/acf-internal-post-type.js:179 -#: assets/build/js/acf-internal-post-type.js:253 -msgid "Tag" -msgstr "标签" - -#. translators: %s taxonomy name -#: includes/admin/post-types/admin-taxonomy.php:82 -msgid "%s taxonomy created" -msgstr "%s 分类法已创建" - -#. translators: %s taxonomy name -#: includes/admin/post-types/admin-taxonomy.php:76 -msgid "%s taxonomy updated" -msgstr "%s 分类法已更新" - -#: includes/admin/post-types/admin-taxonomy.php:56 -msgid "Taxonomy draft updated." -msgstr "分类法草稿已更新。" - -#: includes/admin/post-types/admin-taxonomy.php:55 -msgid "Taxonomy scheduled for." -msgstr "分类法已计划。" - -#: includes/admin/post-types/admin-taxonomy.php:54 -msgid "Taxonomy submitted." -msgstr "已提交分类法。" - -#: includes/admin/post-types/admin-taxonomy.php:53 -msgid "Taxonomy saved." -msgstr "分类法已保存。" - -#: includes/admin/post-types/admin-taxonomy.php:49 -msgid "Taxonomy deleted." -msgstr "分类法已删除。" - -#: includes/admin/post-types/admin-taxonomy.php:48 -msgid "Taxonomy updated." -msgstr "分类法已更新。" - -#: includes/admin/post-types/admin-taxonomies.php:377 -#: includes/admin/post-types/admin-taxonomy.php:157 -msgid "" -"This taxonomy could not be registered because its key is in use by another " -"taxonomy registered by another plugin or theme." -msgstr "" -"无法注册此分类法,因为其密钥已被另一个插件或主题注册的另一个分类法使用。" - -#. translators: %s number of taxonomies synchronized -#: includes/admin/post-types/admin-taxonomies.php:359 -msgid "Taxonomy synchronized." -msgid_plural "%s taxonomies synchronized." -msgstr[0] "%s 分类法已同步。" - -#. translators: %s number of taxonomies duplicated -#: includes/admin/post-types/admin-taxonomies.php:352 -msgid "Taxonomy duplicated." -msgid_plural "%s taxonomies duplicated." -msgstr[0] "%s 分类法已复制。" - -#. translators: %s number of taxonomies deactivated -#: includes/admin/post-types/admin-taxonomies.php:345 -msgid "Taxonomy deactivated." -msgid_plural "%s taxonomies deactivated." -msgstr[0] "%s 分类法已停用。" - -#. translators: %s number of taxonomies activated -#: includes/admin/post-types/admin-taxonomies.php:338 -msgid "Taxonomy activated." -msgid_plural "%s taxonomies activated." -msgstr[0] "%s 分类法已激活。" - -#: includes/admin/post-types/admin-taxonomies.php:139 -msgid "Terms" -msgstr "分类项" - -#. translators: %s number of post types synchronized -#: includes/admin/post-types/admin-post-types.php:352 -msgid "Post type synchronized." -msgid_plural "%s post types synchronized." -msgstr[0] "%s 个文章类型已同步。" - -#. translators: %s number of post types duplicated -#: includes/admin/post-types/admin-post-types.php:345 -msgid "Post type duplicated." -msgid_plural "%s post types duplicated." -msgstr[0] "%s 个文章类型已复制。" - -#. translators: %s number of post types deactivated -#: includes/admin/post-types/admin-post-types.php:338 -msgid "Post type deactivated." -msgid_plural "%s post types deactivated." -msgstr[0] "%s 个文章类型已停用。" - -#. translators: %s number of post types activated -#: includes/admin/post-types/admin-post-types.php:331 -msgid "Post type activated." -msgid_plural "%s post types activated." -msgstr[0] "%s 个文章类型已激活。" - -#: includes/admin/post-types/admin-post-types.php:112 -#: includes/admin/post-types/admin-taxonomies.php:137 -#: includes/admin/tools/class-acf-admin-tool-import.php:82 -#: includes/admin/views/acf-taxonomy/basic-settings.php:82 -#: includes/post-types/class-acf-post-type.php:91 -msgid "Post Types" -msgstr "文章类型" - -#: includes/admin/post-types/admin-post-type.php:162 -#: includes/admin/post-types/admin-taxonomy.php:164 -msgid "Advanced Settings" -msgstr "高级设置" - -#: includes/admin/post-types/admin-post-type.php:161 -#: includes/admin/post-types/admin-taxonomy.php:163 -msgid "Basic Settings" -msgstr "基本设置" - -#: includes/admin/post-types/admin-post-type.php:155 -#: includes/admin/post-types/admin-post-types.php:370 -msgid "" -"This post type could not be registered because its key is in use by another " -"post type registered by another plugin or theme." -msgstr "" -"无法注册此帖子类型,因为其密钥已被另一个插件或主题注册的另一个帖子类型使用。" - -#: includes/admin/post-types/admin-post-type.php:128 -#: assets/build/js/acf-internal-post-type.js:176 -#: assets/build/js/acf-internal-post-type.js:250 -msgid "Pages" -msgstr "页面" - -#: includes/admin/admin-internal-post-type.php:355 -msgid "Link Existing Field Groups" -msgstr "链接现有字段组" - -#. translators: %s post type name -#: includes/admin/post-types/admin-post-type.php:80 -msgid "%s post type created" -msgstr "%s 文章类型已创建" - -#. translators: %s taxonomy name -#: includes/admin/post-types/admin-taxonomy.php:78 -msgid "Add fields to %s" -msgstr "将字段添加到 %s" - -#. translators: %s post type name -#: includes/admin/post-types/admin-post-type.php:76 -msgid "%s post type updated" -msgstr "%s 文章类型已更新" - -#: includes/admin/post-types/admin-post-type.php:56 -msgid "Post type draft updated." -msgstr "文章类型草稿已更新。" - -#: includes/admin/post-types/admin-post-type.php:55 -msgid "Post type scheduled for." -msgstr "已计划文章类型。" - -#: includes/admin/post-types/admin-post-type.php:54 -msgid "Post type submitted." -msgstr "已提交文章类型。" - -#: includes/admin/post-types/admin-post-type.php:53 -msgid "Post type saved." -msgstr "文章类型已保存。" - -#: includes/admin/post-types/admin-post-type.php:50 -msgid "Post type updated." -msgstr "文章类型已更新。" - -#: includes/admin/post-types/admin-post-type.php:49 -msgid "Post type deleted." -msgstr "文章类型已删除。" - -#: includes/admin/post-types/admin-field-group.php:120 -#: assets/build/js/acf-field-group.js:1146 -#: assets/build/js/acf-field-group.js:1366 -msgid "Type to search..." -msgstr "输入以搜索……" - -#: includes/admin/post-types/admin-field-group.php:105 -#: assets/build/js/acf-field-group.js:1172 -#: assets/build/js/acf-field-group.js:2319 -#: assets/build/js/acf-field-group.js:1414 -#: assets/build/js/acf-field-group.js:2727 -msgid "PRO Only" -msgstr "仅限专业版" - -#: includes/admin/post-types/admin-field-group.php:97 -#: assets/build/js/acf-internal-post-type.js:308 -#: assets/build/js/acf-internal-post-type.js:417 -msgid "Field groups linked successfully." -msgstr "字段组链接成功。" - -#. translators: %s - URL to ACF tools page. -#: includes/admin/admin.php:195 -msgid "" -"Import Post Types and Taxonomies registered with Custom Post Type UI and " -"manage them with ACF. Get Started." -msgstr "" -"导入使用自定义帖子类型 UI 注册的帖子类型和分类法并使用 ACF 进行管理。 开始使用。" - -#: includes/admin/admin.php:48 includes/admin/admin.php:267 -msgid "ACF" -msgstr "ACF" - -#: includes/admin/admin-internal-post-type.php:322 -msgid "taxonomy" -msgstr "分类法" - -#: includes/admin/admin-internal-post-type.php:322 -msgid "post type" -msgstr "文章类型" - -#: includes/admin/admin-internal-post-type.php:346 -msgid "Done" -msgstr "完成" - -#: includes/admin/admin-internal-post-type.php:332 -msgid "Field Group(s)" -msgstr "字段组" - -#: includes/admin/admin-internal-post-type.php:331 -msgid "Select one or many field groups..." -msgstr "选择一个或多个字段组..." - -#: includes/admin/admin-internal-post-type.php:330 -msgid "Please select the field groups to link." -msgstr "请选择要链接的字段组。" - -#: includes/admin/admin-internal-post-type.php:288 -msgid "Field group linked successfully." -msgid_plural "Field groups linked successfully." -msgstr[0] "字段组链接成功。" - -#: includes/admin/admin-internal-post-type-list.php:261 -#: includes/admin/post-types/admin-post-types.php:371 -#: includes/admin/post-types/admin-taxonomies.php:378 -msgctxt "post status" -msgid "Registration Failed" -msgstr "注册失败" - -#: includes/admin/admin-internal-post-type-list.php:260 -msgid "" -"This item could not be registered because its key is in use by another item " -"registered by another plugin or theme." -msgstr "无法注册此项目,因为其密钥已被另一个插件或主题注册的另一个项目使用。" - -#: includes/acf-internal-post-type-functions.php:482 -#: includes/acf-internal-post-type-functions.php:511 -msgid "REST API" -msgstr "REST API" - -#: includes/acf-internal-post-type-functions.php:481 -#: includes/acf-internal-post-type-functions.php:510 -#: includes/acf-internal-post-type-functions.php:537 -msgid "Permissions" -msgstr "权限" - -#: includes/acf-internal-post-type-functions.php:480 -#: includes/acf-internal-post-type-functions.php:509 -msgid "URLs" -msgstr "网址" - -#: includes/acf-internal-post-type-functions.php:479 -#: includes/acf-internal-post-type-functions.php:508 -#: includes/acf-internal-post-type-functions.php:535 -msgid "Visibility" -msgstr "可见性" - -#: includes/acf-internal-post-type-functions.php:478 -#: includes/acf-internal-post-type-functions.php:507 -#: includes/acf-internal-post-type-functions.php:536 -msgid "Labels" -msgstr "标签" - -#: includes/admin/post-types/admin-field-group.php:269 -msgid "Field Settings Tabs" -msgstr "字段设置选项卡" - -#. Author URI of the plugin -msgid "" -"https://wpengine.com/?utm_source=wordpress." -"org&utm_medium=referral&utm_campaign=plugin_directory&utm_content=advanced_custom_fields" -msgstr "" -"https://wpengine.com/?utm_source=wordpress." -"org&utm_medium=referral&utm_campaign=plugin_directory&utm_content=advanced_custom_fields" - -#: includes/api/api-template.php:867 -msgid "[ACF shortcode value disabled for preview]" -msgstr "[预览时禁用 ACF 短代码值]" - -#: includes/admin/admin-internal-post-type.php:298 -#: includes/admin/post-types/admin-field-group.php:571 -msgid "Close Modal" -msgstr "关闭模态框" - -#: includes/admin/post-types/admin-field-group.php:96 -#: assets/build/js/acf-field-group.js:1670 -#: assets/build/js/acf-field-group.js:1993 -msgid "Field moved to other group" -msgstr "字段移至其他组" - -#: includes/admin/post-types/admin-field-group.php:95 -#: assets/build/js/acf.js:1437 assets/build/js/acf.js:1517 -msgid "Close modal" -msgstr "关闭模态框" - -#: includes/fields/class-acf-field-tab.php:125 -msgid "Start a new group of tabs at this tab." -msgstr "在此选项卡上启动一组新选项卡。" - -#: includes/fields/class-acf-field-tab.php:124 -msgid "New Tab Group" -msgstr "新标签组" - -#: includes/fields/class-acf-field-select.php:451 -#: includes/fields/class-acf-field-true_false.php:200 -msgid "Use a stylized checkbox using select2" -msgstr "使用 select2 使用程式化复选框" - -#: includes/fields/class-acf-field-radio.php:260 -msgid "Save Other Choice" -msgstr "保存其他选择" - -#: includes/fields/class-acf-field-radio.php:249 -msgid "Allow Other Choice" -msgstr "允许其他选择" - -#: includes/fields/class-acf-field-checkbox.php:450 -msgid "Add Toggle All" -msgstr "添加 全部切换" - -#: includes/fields/class-acf-field-checkbox.php:409 -msgid "Save Custom Values" -msgstr "保存自定义值" - -#: includes/fields/class-acf-field-checkbox.php:398 -msgid "Allow Custom Values" -msgstr "允许自定义值" - -#: includes/fields/class-acf-field-checkbox.php:148 -msgid "Checkbox custom values cannot be empty. Uncheck any empty values." -msgstr "复选框自定义值不能为空。取消选中任何空值。" - -#: includes/admin/views/global/navigation.php:248 -msgid "Updates" -msgstr "更新" - -#: includes/admin/views/global/navigation.php:176 -msgid "Advanced Custom Fields logo" -msgstr "高级自定义字段 LOGO" - -#: includes/admin/views/global/form-top.php:89 -msgid "Save Changes" -msgstr "保存更改" - -#: includes/admin/views/global/form-top.php:76 -msgid "Field Group Title" -msgstr "字段组标题" - -#: includes/admin/views/acf-post-type/advanced-settings.php:704 -#: includes/admin/views/global/form-top.php:3 -msgid "Add title" -msgstr "添加标题" - -#. translators: %s url to getting started guide -#: includes/admin/views/acf-field-group/list-empty.php:20 -#: includes/admin/views/acf-post-type/list-empty.php:12 -#: includes/admin/views/acf-taxonomy/list-empty.php:12 -#: includes/admin/views/options-page-preview.php:13 -msgid "" -"New to ACF? Take a look at our getting " -"started guide." -msgstr "ACF 新手?请查看我们的入门指南。" - -#: includes/admin/views/acf-field-group/list-empty.php:15 -msgid "Add Field Group" -msgstr "添加字段组" - -#. translators: %s url to creating a field group page -#: includes/admin/views/acf-field-group/list-empty.php:10 -msgid "" -"ACF uses field groups to group custom " -"fields together, and then attach those fields to edit screens." -msgstr "" -"ACF 使用字段组将自定义字段分组在一起,然" -"后将这些字段附加到编辑屏幕。" - -#: includes/admin/views/acf-field-group/list-empty.php:5 -msgid "Add Your First Field Group" -msgstr "添加您的第一个字段组" - -#: includes/admin/admin-options-pages-preview.php:28 -#: includes/admin/views/acf-field-group/pro-features.php:54 -#: includes/admin/views/global/navigation.php:86 -#: includes/admin/views/global/navigation.php:250 -msgid "Options Pages" -msgstr "选项页" - -#: includes/admin/views/acf-field-group/pro-features.php:50 -msgid "ACF Blocks" -msgstr "ACF 块" - -#: includes/admin/views/acf-field-group/pro-features.php:58 -msgid "Gallery Field" -msgstr "画廊字段" - -#: includes/admin/views/acf-field-group/pro-features.php:38 -msgid "Flexible Content Field" -msgstr "弹性内容字段" - -#: includes/admin/views/acf-field-group/pro-features.php:42 -msgid "Repeater Field" -msgstr "循环字段" - -#: includes/admin/views/global/navigation.php:212 -msgid "Unlock Extra Features with ACF PRO" -msgstr "使用 ACF PRO 解锁额外功能" - -#: includes/admin/views/acf-field-group/options.php:267 -msgid "Delete Field Group" -msgstr "删除字段组" - -#. translators: 1: Post creation date 2: Post creation time -#: includes/admin/views/acf-field-group/options.php:261 -msgid "Created on %1$s at %2$s" -msgstr "于 %1$s 在 %2$s 创建" - -#: includes/acf-field-group-functions.php:497 -msgid "Group Settings" -msgstr "群组设置" - -#: includes/acf-field-group-functions.php:495 -msgid "Location Rules" -msgstr "定位规则" - -#. translators: %s url to field types list -#: includes/admin/views/acf-field-group/fields.php:72 -msgid "" -"Choose from over 30 field types. Learn " -"more." -msgstr "" -"从30多种字段类型中进行选择了解更多信息。" - -#: includes/admin/views/acf-field-group/fields.php:65 -msgid "" -"Get started creating new custom fields for your posts, pages, custom post " -"types and other WordPress content." -msgstr "" -"开始为您的文章、页面、自定义帖子类型和其他WordPress内容创建新的自定义字段。" - -#: includes/admin/views/acf-field-group/fields.php:64 -msgid "Add Your First Field" -msgstr "添加您的第一个字段" - -#. translators: A symbol (or text, if not available in your locale) meaning -#. "Order Number", in terms of positional placement. -#: includes/admin/views/acf-field-group/fields.php:43 -msgid "#" -msgstr "#" - -#: includes/admin/views/acf-field-group/fields.php:33 -#: includes/admin/views/acf-field-group/fields.php:67 -#: includes/admin/views/acf-field-group/fields.php:103 -#: includes/admin/views/global/form-top.php:85 -msgid "Add Field" -msgstr "添加字段" - -#: includes/acf-field-group-functions.php:496 includes/fields.php:410 -msgid "Presentation" -msgstr "展示" - -#: includes/fields.php:409 -msgid "Validation" -msgstr "验证" - -#: includes/acf-internal-post-type-functions.php:477 -#: includes/acf-internal-post-type-functions.php:506 includes/fields.php:408 -msgid "General" -msgstr "常规" - -#: includes/admin/tools/class-acf-admin-tool-import.php:70 -msgid "Import JSON" -msgstr "导入 JSON" - -#: includes/admin/tools/class-acf-admin-tool-export.php:392 -msgid "Export As JSON" -msgstr "导出为 JSON" - -#. translators: %s number of field groups deactivated -#: includes/admin/post-types/admin-field-groups.php:367 -msgid "Field group deactivated." -msgid_plural "%s field groups deactivated." -msgstr[0] "%s 字段组已停用。" - -#. translators: %s number of field groups activated -#: includes/admin/post-types/admin-field-groups.php:360 -msgid "Field group activated." -msgid_plural "%s field groups activated." -msgstr[0] "%s 个字段组已激活。" - -#: includes/admin/admin-internal-post-type-list.php:452 -#: includes/admin/admin-internal-post-type-list.php:478 -msgid "Deactivate" -msgstr "停用" - -#: includes/admin/admin-internal-post-type-list.php:452 -msgid "Deactivate this item" -msgstr "停用此项目" - -#: includes/admin/admin-internal-post-type-list.php:448 -#: includes/admin/admin-internal-post-type-list.php:477 -msgid "Activate" -msgstr "激活" - -#: includes/admin/admin-internal-post-type-list.php:448 -msgid "Activate this item" -msgstr "激活此项目" - -#: includes/admin/post-types/admin-field-group.php:92 -#: assets/build/js/acf-field-group.js:2812 -#: assets/build/js/acf-field-group.js:3313 -msgid "Move field group to trash?" -msgstr "将字段组移至回收站?" - -#: acf.php:497 includes/admin/admin-internal-post-type-list.php:248 -#: includes/admin/post-types/admin-field-group.php:297 -#: includes/admin/post-types/admin-post-type.php:295 -#: includes/admin/post-types/admin-taxonomy.php:297 -msgctxt "post status" -msgid "Inactive" -msgstr "停用" - -#. Author of the plugin -msgid "WP Engine" -msgstr "WP Engine" - -#: acf.php:555 -msgid "" -"Advanced Custom Fields and Advanced Custom Fields PRO should not be active " -"at the same time. We've automatically deactivated Advanced Custom Fields PRO." -msgstr "" -"高级自定义字段和高级自定义字段 PRO 不应同时处于活动状态。我们已自动停用高级自" -"定义字段 PRO。" - -#: acf.php:553 -msgid "" -"Advanced Custom Fields and Advanced Custom Fields PRO should not be active " -"at the same time. We've automatically deactivated Advanced Custom Fields." -msgstr "" -"高级自定义字段和高级自定义字段 PRO 不应同时处于活动状态。我们已自动停用高级自" -"定义字段。" - -#: includes/acf-value-functions.php:374 -msgid "" -"%1$s - We've detected one or more calls to retrieve ACF " -"field values before ACF has been initialized. This is not supported and can " -"result in malformed or missing data. Learn how to fix this." -msgstr "" -"%1$s - 我们检测到在 ACF 初始化之前检索 ACF 字段值的一次或多" -"次调用。不支持此操作,并且可能会导致数据格式错误或丢失。 了解如何解决此问题。" - -#: includes/fields/class-acf-field-user.php:551 -msgid "%1$s must have a user with the %2$s role." -msgid_plural "%1$s must have a user with one of the following roles: %2$s" -msgstr[0] "%1$s 必须拥有具有以下角色之一的用户:%2$s" - -#: includes/fields/class-acf-field-user.php:542 -msgid "%1$s must have a valid user ID." -msgstr "%1$s 必须具有有效的用户 ID。" - -#: includes/fields/class-acf-field-user.php:380 -msgid "Invalid request." -msgstr "无效的请求。" - -#: includes/fields/class-acf-field-select.php:684 -msgid "%1$s is not one of %2$s" -msgstr "%1$s 不是 %2$s 之一。" - -#: includes/fields/class-acf-field-post_object.php:700 -msgid "%1$s must have term %2$s." -msgid_plural "%1$s must have one of the following terms: %2$s" -msgstr[0] "%1$s 必须具有以下分类项之一:%2$s" - -#: includes/fields/class-acf-field-post_object.php:684 -msgid "%1$s must be of post type %2$s." -msgid_plural "%1$s must be of one of the following post types: %2$s" -msgstr[0] "%1$s 必须属于以下文章类型之一:%2$s" - -#: includes/fields/class-acf-field-post_object.php:675 -msgid "%1$s must have a valid post ID." -msgstr "%1$s 必须具有有效的文章 ID。" - -#: includes/fields/class-acf-field-file.php:475 -msgid "%s requires a valid attachment ID." -msgstr "%s 需要有效的附件 ID。" - -#: includes/admin/views/acf-field-group/options.php:233 -msgid "Show in REST API" -msgstr "在 REST API 中显示" - -#: includes/fields/class-acf-field-color_picker.php:168 -msgid "Enable Transparency" -msgstr "启用透明度" - -#: includes/fields/class-acf-field-color_picker.php:187 -msgid "RGBA Array" -msgstr "RGBA 数组" - -#: includes/fields/class-acf-field-color_picker.php:98 -msgid "RGBA String" -msgstr "RGBA 字符串" - -#: includes/fields/class-acf-field-color_picker.php:97 -#: includes/fields/class-acf-field-color_picker.php:186 -msgid "Hex String" -msgstr "十六进制字符串" - -#: includes/admin/views/browse-fields-modal.php:65 -msgid "Upgrade to PRO" -msgstr "升级到专业版" - -#: includes/admin/post-types/admin-field-group.php:297 -#: includes/admin/post-types/admin-post-type.php:295 -#: includes/admin/post-types/admin-taxonomy.php:297 -msgctxt "post status" -msgid "Active" -msgstr "启用" - -#: includes/fields/class-acf-field-email.php:181 -msgid "'%s' is not a valid email address" -msgstr "“%s”不是有效的电子邮件地址" - -#: includes/fields/class-acf-field-color_picker.php:76 -msgid "Color value" -msgstr "颜色值" - -#: includes/fields/class-acf-field-color_picker.php:74 -msgid "Select default color" -msgstr "选择默认颜色" - -#: includes/fields/class-acf-field-color_picker.php:72 -msgid "Clear color" -msgstr "清除颜色" - -#: includes/acf-wp-functions.php:90 -msgid "Blocks" -msgstr "区块" - -#: includes/acf-wp-functions.php:86 -msgid "Options" -msgstr "选项" - -#: includes/acf-wp-functions.php:82 -msgid "Users" -msgstr "用户" - -#: includes/acf-wp-functions.php:78 -msgid "Menu items" -msgstr "菜单项" - -#: includes/acf-wp-functions.php:70 -msgid "Widgets" -msgstr "小工具" - -#: includes/acf-wp-functions.php:62 -msgid "Attachments" -msgstr "附件" - -#: includes/acf-wp-functions.php:57 -#: includes/admin/post-types/admin-post-types.php:137 -#: includes/admin/post-types/admin-taxonomies.php:112 -#: includes/admin/tools/class-acf-admin-tool-import.php:93 -#: includes/admin/views/acf-post-type/basic-settings.php:86 -#: includes/post-types/class-acf-taxonomy.php:90 -#: includes/post-types/class-acf-taxonomy.php:91 -msgid "Taxonomies" -msgstr "分类法" - -#: includes/acf-wp-functions.php:44 -#: includes/admin/post-types/admin-post-type.php:126 -#: includes/admin/post-types/admin-post-types.php:139 -#: includes/admin/views/acf-post-type/advanced-settings.php:106 -#: assets/build/js/acf-internal-post-type.js:173 -#: assets/build/js/acf-internal-post-type.js:247 -msgid "Posts" -msgstr "文章" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:76 -msgid "Last updated: %s" -msgstr "最后更新:%s" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:70 -msgid "Sorry, this post is unavailable for diff comparison." -msgstr "抱歉,这篇文章无法进行差异比较。" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:42 -msgid "Invalid field group parameter(s)." -msgstr "无效的字段组参数。" - -#: includes/admin/admin-internal-post-type-list.php:413 -msgid "Awaiting save" -msgstr "等待保存" - -#: includes/admin/admin-internal-post-type-list.php:410 -msgid "Saved" -msgstr "已保存" - -#: includes/admin/admin-internal-post-type-list.php:406 -#: includes/admin/tools/class-acf-admin-tool-import.php:49 -msgid "Import" -msgstr "导入" - -#: includes/admin/admin-internal-post-type-list.php:402 -msgid "Review changes" -msgstr "查看变更" - -#: includes/admin/admin-internal-post-type-list.php:378 -msgid "Located in: %s" -msgstr "位于:%s" - -#: includes/admin/admin-internal-post-type-list.php:375 -msgid "Located in plugin: %s" -msgstr "位于插件中:%s" - -#: includes/admin/admin-internal-post-type-list.php:372 -msgid "Located in theme: %s" -msgstr "位于主题中:%s" - -#: includes/admin/post-types/admin-field-groups.php:261 -msgid "Various" -msgstr "各种各样的" - -#: includes/admin/admin-internal-post-type-list.php:216 -#: includes/admin/admin-internal-post-type-list.php:485 -msgid "Sync changes" -msgstr "同步更改" - -#: includes/admin/admin-internal-post-type-list.php:215 -msgid "Loading diff" -msgstr "加载差异" - -#: includes/admin/admin-internal-post-type-list.php:214 -msgid "Review local JSON changes" -msgstr "查看本地JSON更改" - -#: includes/admin/admin.php:170 -msgid "Visit website" -msgstr "访问网站" - -#: includes/admin/admin.php:169 -msgid "View details" -msgstr "查看详情" - -#: includes/admin/admin.php:168 -msgid "Version %s" -msgstr "版本 %s" - -#: includes/admin/admin.php:167 -msgid "Information" -msgstr "信息" - -#: includes/admin/admin.php:158 -msgid "" -"Help Desk. The support professionals on " -"our Help Desk will assist with your more in depth, technical challenges." -msgstr "" -"服务台。我们服务台上的支持专业人员将协助" -"您解决更深入的技术难题。" - -#: includes/admin/admin.php:154 -msgid "" -"Discussions. We have an active and " -"friendly community on our Community Forums who may be able to help you " -"figure out the 'how-tos' of the ACF world." -msgstr "" -"讨论。我们的社区论坛上有一个活跃且友好的" -"社区,他们也许能够帮助您了解 ACF 世界的“操作方法”。" - -#: includes/admin/admin.php:150 -msgid "" -"Documentation. Our extensive " -"documentation contains references and guides for most situations you may " -"encounter." -msgstr "" -"文档。我们详尽的文档包含您可能遇到的大多" -"数情况的参考和指南。" - -#: includes/admin/admin.php:147 -msgid "" -"We are fanatical about support, and want you to get the best out of your " -"website with ACF. If you run into any difficulties, there are several places " -"you can find help:" -msgstr "" -"我们热衷于支持,并希望您通过ACF充分利用自己的网站。如果遇到任何困难,可以在几" -"个地方找到帮助:" - -#: includes/admin/admin.php:144 includes/admin/admin.php:146 -msgid "Help & Support" -msgstr "帮助和支持" - -#: includes/admin/admin.php:135 -msgid "" -"Please use the Help & Support tab to get in touch should you find yourself " -"requiring assistance." -msgstr "如果您需要帮助,请使用“帮助和支持”选项卡进行联系。" - -#: includes/admin/admin.php:132 -msgid "" -"Before creating your first Field Group, we recommend first reading our Getting started guide to familiarize " -"yourself with the plugin's philosophy and best practises." -msgstr "" -"在创建您的第一个字段组之前,我们建议您先阅读" -"入门指南,以熟悉插件的原理和最佳实践。" - -#: includes/admin/admin.php:130 -msgid "" -"The Advanced Custom Fields plugin provides a visual form builder to " -"customize WordPress edit screens with extra fields, and an intuitive API to " -"display custom field values in any theme template file." -msgstr "" -"Advanced Custom Fields 插件提供了一个可视化的表单生成器,用于自定义带有额外字" -"段的WordPress编辑屏幕,以及一个直观的API,用于在任何主题模板文件中显示自定义" -"字段的值。" - -#: includes/admin/admin.php:127 includes/admin/admin.php:129 -msgid "Overview" -msgstr "概述" - -#: includes/locations.php:36 -msgid "Location type \"%s\" is already registered." -msgstr "位置类型“%s”已被注册。" - -#: includes/locations.php:25 -msgid "Class \"%s\" does not exist." -msgstr "Class“%s”不存在。" - -#: includes/ajax/class-acf-ajax.php:157 -msgid "Invalid nonce." -msgstr "无效的随机数。" - -#: includes/fields/class-acf-field-user.php:375 -msgid "Error loading field." -msgstr "加载字段时出错。" - -#: assets/build/js/acf-input.js:2750 assets/build/js/acf-input.js:2819 -#: assets/build/js/acf-input.js:2926 assets/build/js/acf-input.js:3000 -msgid "Location not found: %s" -msgstr "找不到位置:%s" - -#: includes/forms/form-user.php:353 -msgid "Error: %s" -msgstr "错误:%s" - -#: includes/locations/class-acf-location-widget.php:22 -msgid "Widget" -msgstr "小工具" - -#: includes/locations/class-acf-location-user-role.php:24 -msgid "User Role" -msgstr "用户角色" - -#: includes/locations/class-acf-location-comment.php:22 -msgid "Comment" -msgstr "评论" - -#: includes/locations/class-acf-location-post-format.php:22 -msgid "Post Format" -msgstr "文章格式" - -#: includes/locations/class-acf-location-nav-menu-item.php:22 -msgid "Menu Item" -msgstr "菜单项" - -#: includes/locations/class-acf-location-post-status.php:22 -msgid "Post Status" -msgstr "文章状态" - -#: includes/acf-wp-functions.php:74 -#: includes/locations/class-acf-location-nav-menu.php:89 -msgid "Menus" -msgstr "菜单" - -#: includes/locations/class-acf-location-nav-menu.php:80 -msgid "Menu Locations" -msgstr "菜单位置" - -#: includes/locations/class-acf-location-nav-menu.php:22 -msgid "Menu" -msgstr "菜单" - -#: includes/locations/class-acf-location-post-taxonomy.php:22 -msgid "Post Taxonomy" -msgstr "文章分类法" - -#: includes/locations/class-acf-location-page-type.php:114 -msgid "Child Page (has parent)" -msgstr "子页面(有父页面)" - -#: includes/locations/class-acf-location-page-type.php:113 -msgid "Parent Page (has children)" -msgstr "父页面(有子页)" - -#: includes/locations/class-acf-location-page-type.php:112 -msgid "Top Level Page (no parent)" -msgstr "顶级页面 (无父页面)" - -#: includes/locations/class-acf-location-page-type.php:111 -msgid "Posts Page" -msgstr "文章页" - -#: includes/locations/class-acf-location-page-type.php:110 -msgid "Front Page" -msgstr "首页" - -#: includes/locations/class-acf-location-page-type.php:22 -msgid "Page Type" -msgstr "页面类型" - -#: includes/locations/class-acf-location-current-user.php:73 -msgid "Viewing back end" -msgstr "查看后端" - -#: includes/locations/class-acf-location-current-user.php:72 -msgid "Viewing front end" -msgstr "查看前端" - -#: includes/locations/class-acf-location-current-user.php:71 -msgid "Logged in" -msgstr "登录" - -#: includes/locations/class-acf-location-current-user.php:22 -msgid "Current User" -msgstr "当前用户" - -#: includes/locations/class-acf-location-page-template.php:22 -msgid "Page Template" -msgstr "页面模板" - -#: includes/locations/class-acf-location-user-form.php:74 -msgid "Register" -msgstr "注册" - -#: includes/locations/class-acf-location-user-form.php:73 -msgid "Add / Edit" -msgstr "添加 / 编辑" - -#: includes/locations/class-acf-location-user-form.php:22 -msgid "User Form" -msgstr "用户表单" - -#: includes/locations/class-acf-location-page-parent.php:22 -msgid "Page Parent" -msgstr "父级页面" - -#: includes/locations/class-acf-location-current-user-role.php:77 -msgid "Super Admin" -msgstr "超级管理员" - -#: includes/locations/class-acf-location-current-user-role.php:22 -msgid "Current User Role" -msgstr "当前用户角色" - -#: includes/locations/class-acf-location-page-template.php:73 -#: includes/locations/class-acf-location-post-template.php:85 -msgid "Default Template" -msgstr "默认模板" - -#: includes/locations/class-acf-location-post-template.php:22 -msgid "Post Template" -msgstr "文章模板" - -#: includes/locations/class-acf-location-post-category.php:22 -msgid "Post Category" -msgstr "文章类别" - -#: includes/locations/class-acf-location-attachment.php:84 -msgid "All %s formats" -msgstr "所有 %s 格式" - -#: includes/locations/class-acf-location-attachment.php:22 -msgid "Attachment" -msgstr "附件" - -#: includes/validation.php:366 -msgid "%s value is required" -msgstr "%s 的值是必填项" - -#: includes/admin/views/acf-field-group/conditional-logic.php:59 -msgid "Show this field if" -msgstr "显示此字段的条件" - -#: includes/admin/views/acf-field-group/conditional-logic.php:26 -#: includes/admin/views/acf-field-group/field.php:109 includes/fields.php:411 -msgid "Conditional Logic" -msgstr "条件逻辑" - -#: includes/admin/views/acf-field-group/conditional-logic.php:156 -#: includes/admin/views/acf-field-group/location-rule.php:92 -msgid "and" -msgstr "与" - -#: includes/admin/post-types/admin-field-groups.php:123 -#: includes/admin/post-types/admin-post-types.php:143 -#: includes/admin/post-types/admin-taxonomies.php:143 -msgid "Local JSON" -msgstr "本地 JSON" - -#: includes/admin/views/acf-field-group/pro-features.php:46 -msgid "Clone Field" -msgstr "克隆字段" - -#: includes/admin/views/upgrade/notice.php:30 -msgid "" -"Please also check all premium add-ons (%s) are updated to the latest version." -msgstr "还请检查所有高级扩展(%s)是否已更新到最新版本。" - -#: includes/admin/views/upgrade/notice.php:28 -msgid "" -"This version contains improvements to your database and requires an upgrade." -msgstr "此版本包含对数据库的改进,需要升级。" - -#: includes/admin/views/upgrade/notice.php:28 -msgid "Thank you for updating to %1$s v%2$s!" -msgstr "感谢您更新到 %1$s v%2$s!" - -#: includes/admin/views/upgrade/notice.php:27 -msgid "Database Upgrade Required" -msgstr "需要升级数据库" - -#: includes/admin/post-types/admin-field-group.php:141 -#: includes/admin/views/upgrade/notice.php:18 -msgid "Options Page" -msgstr "选项页面" - -#: includes/admin/views/upgrade/notice.php:15 includes/fields.php:462 -msgid "Gallery" -msgstr "画廊" - -#: includes/admin/views/upgrade/notice.php:12 includes/fields.php:452 -msgid "Flexible Content" -msgstr "弹性内容" - -#: includes/admin/views/upgrade/notice.php:9 includes/fields.php:472 -msgid "Repeater" -msgstr "循环" - -#: includes/admin/views/tools/tools.php:24 -msgid "Back to all tools" -msgstr "返回所有工具" - -#: includes/admin/views/acf-field-group/options.php:195 -msgid "" -"If multiple field groups appear on an edit screen, the first field group's " -"options will be used (the one with the lowest order number)" -msgstr "" -"如果多个字段组同时出现在编辑界面,会使用第一个字段组里的选项(就是序号最小的" -"那个字段组)" - -#: includes/admin/views/acf-field-group/options.php:195 -msgid "Select items to hide them from the edit screen." -msgstr "选择需要在编辑界面隐藏的条目。" - -#: includes/admin/views/acf-field-group/options.php:194 -msgid "Hide on screen" -msgstr "隐藏元素" - -#: includes/admin/views/acf-field-group/options.php:186 -msgid "Send Trackbacks" -msgstr "发送 Trackbacks" - -#: includes/admin/post-types/admin-taxonomy.php:128 -#: includes/admin/views/acf-field-group/options.php:185 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:159 -#: assets/build/js/acf-internal-post-type.js:180 -#: assets/build/js/acf-internal-post-type.js:254 -msgid "Tags" -msgstr "标签" - -#: includes/admin/post-types/admin-taxonomy.php:130 -#: includes/admin/views/acf-field-group/options.php:184 -#: assets/build/js/acf-internal-post-type.js:183 -#: assets/build/js/acf-internal-post-type.js:257 -msgid "Categories" -msgstr "类别" - -#: includes/admin/views/acf-field-group/options.php:182 -#: includes/admin/views/acf-post-type/advanced-settings.php:28 -msgid "Page Attributes" -msgstr "页面属性" - -#: includes/admin/views/acf-field-group/options.php:181 -msgid "Format" -msgstr "格式" - -#: includes/admin/views/acf-field-group/options.php:180 -#: includes/admin/views/acf-post-type/advanced-settings.php:22 -msgid "Author" -msgstr "作者" - -#: includes/admin/views/acf-field-group/options.php:179 -msgid "Slug" -msgstr "别名" - -#: includes/admin/views/acf-field-group/options.php:178 -#: includes/admin/views/acf-post-type/advanced-settings.php:27 -msgid "Revisions" -msgstr "修订" - -#: includes/acf-wp-functions.php:66 -#: includes/admin/views/acf-field-group/options.php:177 -#: includes/admin/views/acf-post-type/advanced-settings.php:23 -msgid "Comments" -msgstr "评论" - -#: includes/admin/views/acf-field-group/options.php:176 -msgid "Discussion" -msgstr "讨论" - -#: includes/admin/views/acf-field-group/options.php:174 -#: includes/admin/views/acf-post-type/advanced-settings.php:26 -msgid "Excerpt" -msgstr "摘要" - -#: includes/admin/views/acf-field-group/options.php:173 -msgid "Content Editor" -msgstr "内容编辑器" - -#: includes/admin/views/acf-field-group/options.php:172 -msgid "Permalink" -msgstr "固定链接" - -#: includes/admin/views/acf-field-group/options.php:250 -msgid "Shown in field group list" -msgstr "在字段组列表中显示" - -#: includes/admin/views/acf-field-group/options.php:157 -msgid "Field groups with a lower order will appear first" -msgstr "序号小的字段组会排在最前面" - -#: includes/admin/views/acf-field-group/options.php:156 -msgid "Order No." -msgstr "序号" - -#: includes/admin/views/acf-field-group/options.php:147 -msgid "Below fields" -msgstr "字段之下" - -#: includes/admin/views/acf-field-group/options.php:146 -msgid "Below labels" -msgstr "标签之下" - -#: includes/admin/views/acf-field-group/options.php:139 -msgid "Instruction Placement" -msgstr "说明位置" - -#: includes/admin/views/acf-field-group/options.php:122 -msgid "Label Placement" -msgstr "标签位置" - -#: includes/admin/views/acf-field-group/options.php:110 -msgid "Side" -msgstr "边栏" - -#: includes/admin/views/acf-field-group/options.php:109 -msgid "Normal (after content)" -msgstr "正常(内容之后)" - -#: includes/admin/views/acf-field-group/options.php:108 -msgid "High (after title)" -msgstr "高(标题之后)" - -#: includes/admin/views/acf-field-group/options.php:101 -msgid "Position" -msgstr "位置" - -#: includes/admin/views/acf-field-group/options.php:92 -msgid "Seamless (no metabox)" -msgstr "无缝(无 metabox)" - -#: includes/admin/views/acf-field-group/options.php:91 -msgid "Standard (WP metabox)" -msgstr "标准(WP Metabox)" - -#: includes/admin/views/acf-field-group/options.php:84 -msgid "Style" -msgstr "样式" - -#: includes/admin/views/acf-field-group/fields.php:55 -msgid "Type" -msgstr "类型" - -#: includes/admin/post-types/admin-field-groups.php:117 -#: includes/admin/post-types/admin-post-types.php:136 -#: includes/admin/post-types/admin-taxonomies.php:136 -#: includes/admin/views/acf-field-group/fields.php:54 -msgid "Key" -msgstr "密钥" - -#. translators: Hidden accessibility text for the positional order number of -#. the field. -#: includes/admin/views/acf-field-group/fields.php:48 -msgid "Order" -msgstr "序号" - -#: includes/admin/views/acf-field-group/field.php:322 -msgid "Close Field" -msgstr "关闭字段" - -#: includes/admin/views/acf-field-group/field.php:253 -msgid "id" -msgstr "id" - -#: includes/admin/views/acf-field-group/field.php:237 -msgid "class" -msgstr "class" - -#: includes/admin/views/acf-field-group/field.php:279 -msgid "width" -msgstr "宽度" - -#: includes/admin/views/acf-field-group/field.php:273 -msgid "Wrapper Attributes" -msgstr "包装属性" - -#: includes/admin/views/acf-field-group/field.php:196 -msgid "Required" -msgstr "必填" - -#: includes/admin/views/acf-field-group/field.php:221 -msgid "Instructions for authors. Shown when submitting data" -msgstr "显示给内容作者的说明文字,在提交数据时显示" - -#: includes/admin/views/acf-field-group/field.php:220 -msgid "Instructions" -msgstr "说明" - -#: includes/admin/views/acf-field-group/field.php:129 -msgid "Field Type" -msgstr "字段类型" - -#: includes/admin/views/acf-field-group/field.php:170 -msgid "Single word, no spaces. Underscores and dashes allowed" -msgstr "单个字符串,不能有空格,允许下划线和破折号。" - -#: includes/admin/views/acf-field-group/field.php:169 -msgid "Field Name" -msgstr "字段名称" - -#: includes/admin/views/acf-field-group/field.php:157 -msgid "This is the name which will appear on the EDIT page" -msgstr "在编辑界面显示的名字" - -#: includes/admin/views/acf-field-group/field.php:156 -#: includes/admin/views/browse-fields-modal.php:59 -msgid "Field Label" -msgstr "字段标签" - -#: includes/admin/views/acf-field-group/field.php:81 -msgid "Delete" -msgstr "删除" - -#: includes/admin/views/acf-field-group/field.php:81 -msgid "Delete field" -msgstr "删除字段" - -#: includes/admin/views/acf-field-group/field.php:79 -msgid "Move" -msgstr "移动" - -#: includes/admin/views/acf-field-group/field.php:79 -msgid "Move field to another group" -msgstr "把字段移动到其它群组" - -#: includes/admin/views/acf-field-group/field.php:77 -msgid "Duplicate field" -msgstr "复制字段" - -#: includes/admin/views/acf-field-group/field.php:73 -#: includes/admin/views/acf-field-group/field.php:76 -msgid "Edit field" -msgstr "编辑字段" - -#: includes/admin/views/acf-field-group/field.php:69 -msgid "Drag to reorder" -msgstr "拖拽排序" - -#: includes/admin/post-types/admin-field-group.php:103 -#: includes/admin/views/acf-field-group/location-group.php:3 -#: assets/build/js/acf-field-group.js:2347 -#: assets/build/js/acf-field-group.js:2763 -msgid "Show this field group if" -msgstr "显示此字段组的条件" - -#: includes/admin/views/upgrade/upgrade.php:94 -#: includes/ajax/class-acf-ajax-upgrade.php:34 -msgid "No updates available." -msgstr "没有可用更新。" - -#: includes/admin/views/upgrade/upgrade.php:33 -msgid "Database upgrade complete. See what's new" -msgstr "数据库升级完成。查看新的部分 。" - -#: includes/admin/views/upgrade/upgrade.php:30 -msgid "Reading upgrade tasks..." -msgstr "阅读更新任务..." - -#: includes/admin/views/upgrade/network.php:165 -#: includes/admin/views/upgrade/upgrade.php:65 -msgid "Upgrade failed." -msgstr "升级失败。" - -#: includes/admin/views/upgrade/network.php:162 -msgid "Upgrade complete." -msgstr "升级完成。" - -#: includes/admin/views/upgrade/network.php:148 -#: includes/admin/views/upgrade/upgrade.php:31 -msgid "Upgrading data to version %s" -msgstr "升级数据到 %s 版本" - -#: includes/admin/views/upgrade/network.php:121 -#: includes/admin/views/upgrade/notice.php:44 -msgid "" -"It is strongly recommended that you backup your database before proceeding. " -"Are you sure you wish to run the updater now?" -msgstr "升级前最好先备份一下。确定现在升级吗?" - -#: includes/admin/views/upgrade/network.php:117 -msgid "Please select at least one site to upgrade." -msgstr "请选择至少一个要升级的站点。" - -#: includes/admin/views/upgrade/network.php:97 -msgid "" -"Database Upgrade complete. Return to network dashboard" -msgstr "数据库升级完成,返回网络面板" - -#: includes/admin/views/upgrade/network.php:80 -msgid "Site is up to date" -msgstr "网站已是最新版" - -#: includes/admin/views/upgrade/network.php:78 -msgid "Site requires database upgrade from %1$s to %2$s" -msgstr "站点需要将数据库从 %1$s 升级到 %2$s" - -#: includes/admin/views/upgrade/network.php:36 -#: includes/admin/views/upgrade/network.php:47 -msgid "Site" -msgstr "网站" - -#: includes/admin/views/upgrade/network.php:26 -#: includes/admin/views/upgrade/network.php:27 -#: includes/admin/views/upgrade/network.php:96 -msgid "Upgrade Sites" -msgstr "升级站点" - -#: includes/admin/views/upgrade/network.php:26 -msgid "" -"The following sites require a DB upgrade. Check the ones you want to update " -"and then click %s." -msgstr "下面的网站需要升级数据库,点击 %s 。" - -#: includes/admin/views/acf-field-group/conditional-logic.php:171 -#: includes/admin/views/acf-field-group/locations.php:38 -msgid "Add rule group" -msgstr "添加规则组" - -#: includes/admin/views/acf-field-group/locations.php:10 -msgid "" -"Create a set of rules to determine which edit screens will use these " -"advanced custom fields" -msgstr "创建一组规则以确定自定义字段在哪个编辑界面上显示" - -#: includes/admin/views/acf-field-group/locations.php:9 -msgid "Rules" -msgstr "规则" - -#: includes/admin/tools/class-acf-admin-tool-export.php:510 -msgid "Copied" -msgstr "复制" - -#: includes/admin/tools/class-acf-admin-tool-export.php:486 -msgid "Copy to clipboard" -msgstr "复制到剪贴板" - -#: includes/admin/tools/class-acf-admin-tool-export.php:385 -msgid "" -"Select the items you would like to export and then select your export " -"method. Export As JSON to export to a .json file which you can then import " -"to another ACF installation. Generate PHP to export to PHP code which you " -"can place in your theme." -msgstr "" -"选择您要导出的项目,然后选择导出方法。导出为 JSON 以导出到 .json 文件,然后可" -"以将其导入到另一个 ACF 安装中。生成 PHP 以导出到 PHP 代码,您可以将其放置在主" -"题中。" - -#: includes/admin/tools/class-acf-admin-tool-export.php:233 -msgid "Select Field Groups" -msgstr "选择字段组" - -#: includes/admin/tools/class-acf-admin-tool-export.php:96 -#: includes/admin/tools/class-acf-admin-tool-export.php:131 -msgid "No field groups selected" -msgstr "没选择字段组" - -#: includes/admin/tools/class-acf-admin-tool-export.php:39 -#: includes/admin/tools/class-acf-admin-tool-export.php:393 -#: includes/admin/tools/class-acf-admin-tool-export.php:421 -msgid "Generate PHP" -msgstr "生成 PHP" - -#: includes/admin/tools/class-acf-admin-tool-export.php:35 -msgid "Export Field Groups" -msgstr "导出字段组" - -#: includes/admin/tools/class-acf-admin-tool-import.php:177 -msgid "Import file empty" -msgstr "导入的文件是空白的" - -#: includes/admin/tools/class-acf-admin-tool-import.php:168 -msgid "Incorrect file type" -msgstr "文本类型不对" - -#: includes/admin/tools/class-acf-admin-tool-import.php:163 -msgid "Error uploading file. Please try again" -msgstr "文件上传失败,请重试" - -#: includes/admin/tools/class-acf-admin-tool-import.php:50 -msgid "" -"Select the Advanced Custom Fields JSON file you would like to import. When " -"you click the import button below, ACF will import the items in that file." -msgstr "" -"选择您要导入的高级自定义字段 JSON 文件。当您单击下面的导入按钮时,ACF 将导入" -"该文件中的项目。" - -#: includes/admin/tools/class-acf-admin-tool-import.php:27 -msgid "Import Field Groups" -msgstr "导入字段组" - -#: includes/admin/admin-internal-post-type-list.php:401 -msgid "Sync" -msgstr "同步" - -#: includes/admin/admin-internal-post-type-list.php:858 -msgid "Select %s" -msgstr "选择 %s" - -#: includes/admin/admin-internal-post-type-list.php:442 -#: includes/admin/admin-internal-post-type-list.php:474 -#: includes/admin/views/acf-field-group/field.php:77 -msgid "Duplicate" -msgstr "复制" - -#: includes/admin/admin-internal-post-type-list.php:442 -msgid "Duplicate this item" -msgstr "复制此项" - -#: includes/admin/views/acf-post-type/advanced-settings.php:41 -msgid "Supports" -msgstr "支持" - -#: includes/admin/admin.php:261 includes/admin/views/browse-fields-modal.php:92 -msgid "Documentation" -msgstr "文档" - -#: includes/admin/post-types/admin-field-groups.php:116 -#: includes/admin/post-types/admin-post-types.php:135 -#: includes/admin/post-types/admin-taxonomies.php:135 -#: includes/admin/views/acf-field-group/options.php:249 -#: includes/admin/views/acf-post-type/advanced-settings.php:62 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:114 -#: includes/admin/views/upgrade/network.php:38 -#: includes/admin/views/upgrade/network.php:49 -msgid "Description" -msgstr "描述" - -#: includes/admin/admin-internal-post-type-list.php:398 -#: includes/admin/admin-internal-post-type-list.php:747 -msgid "Sync available" -msgstr "有可用同步" - -#. translators: %s number of field groups synchronized -#: includes/admin/post-types/admin-field-groups.php:381 -msgid "Field group synchronized." -msgid_plural "%s field groups synchronized." -msgstr[0] "%s 个字段组已同步。" - -#. translators: %s number of field groups duplicated -#: includes/admin/post-types/admin-field-groups.php:374 -msgid "Field group duplicated." -msgid_plural "%s field groups duplicated." -msgstr[0] "%s已复制字段组。" - -#: includes/admin/admin-internal-post-type-list.php:137 -msgid "Active (%s)" -msgid_plural "Active (%s)" -msgstr[0] "启用 (%s)" - -#: includes/admin/admin-upgrade.php:254 -msgid "Review sites & upgrade" -msgstr "检查网站并升级" - -#: includes/admin/admin-upgrade.php:59 includes/admin/admin-upgrade.php:93 -#: includes/admin/admin-upgrade.php:94 includes/admin/admin-upgrade.php:230 -#: includes/admin/views/upgrade/network.php:24 -#: includes/admin/views/upgrade/upgrade.php:26 -msgid "Upgrade Database" -msgstr "升级数据库" - -#: includes/admin/views/acf-field-group/options.php:175 -#: includes/admin/views/acf-post-type/advanced-settings.php:30 -msgid "Custom Fields" -msgstr "字段" - -#: includes/admin/post-types/admin-field-group.php:616 -msgid "Move Field" -msgstr "移动字段" - -#: includes/admin/post-types/admin-field-group.php:605 -#: includes/admin/post-types/admin-field-group.php:609 -msgid "Please select the destination for this field" -msgstr "请选择这个字段的位置" - -#. translators: Confirmation message once a field has been moved to a different -#. field group. -#: includes/admin/post-types/admin-field-group.php:567 -msgid "The %1$s field can now be found in the %2$s field group" -msgstr "现在可以在 %2$s 字段组中找到 %1$s 字段" - -#: includes/admin/post-types/admin-field-group.php:564 -msgid "Move Complete." -msgstr "移动完成。" - -#: includes/admin/views/acf-field-group/field.php:39 -#: includes/admin/views/acf-field-group/options.php:217 -#: includes/admin/views/acf-post-type/advanced-settings.php:78 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:130 -msgid "Active" -msgstr "激活" - -#: includes/admin/post-types/admin-field-group.php:266 -msgid "Field Keys" -msgstr "字段 Keys" - -#: includes/admin/post-types/admin-field-group.php:164 -#: includes/admin/tools/class-acf-admin-tool-export.php:342 -msgid "Settings" -msgstr "设置" - -#: includes/admin/post-types/admin-field-groups.php:118 -msgid "Location" -msgstr "位置" - -#: includes/admin/post-types/admin-field-group.php:104 -#: assets/build/js/acf-input.js:983 assets/build/js/acf-input.js:1075 -msgid "Null" -msgstr "Null" - -#: includes/admin/post-types/admin-field-group.php:101 -#: includes/class-acf-internal-post-type.php:730 -#: includes/post-types/class-acf-field-group.php:345 -#: assets/build/js/acf-field-group.js:1510 -#: assets/build/js/acf-field-group.js:1821 -msgid "copy" -msgstr "复制" - -#: includes/admin/post-types/admin-field-group.php:100 -#: assets/build/js/acf-field-group.js:623 -#: assets/build/js/acf-field-group.js:778 -msgid "(this field)" -msgstr "(这个字段)" - -#: includes/admin/post-types/admin-field-group.php:98 -#: assets/build/js/acf-input.js:918 assets/build/js/acf-input.js:943 -#: assets/build/js/acf-input.js:1002 assets/build/js/acf-input.js:1030 -msgid "Checked" -msgstr "已选中" - -#: includes/admin/post-types/admin-field-group.php:94 -#: assets/build/js/acf-field-group.js:1615 -#: assets/build/js/acf-field-group.js:1933 -msgid "Move Custom Field" -msgstr "移动自定义字段" - -#: includes/admin/post-types/admin-field-group.php:93 -#: assets/build/js/acf-field-group.js:649 -#: assets/build/js/acf-field-group.js:804 -msgid "No toggle fields available" -msgstr "没有可用的切换字段" - -#: includes/admin/post-types/admin-field-group.php:91 -msgid "Field group title is required" -msgstr "字段组的标题是必填项" - -#: includes/admin/post-types/admin-field-group.php:90 -#: assets/build/js/acf-field-group.js:1604 -#: assets/build/js/acf-field-group.js:1919 -msgid "This field cannot be moved until its changes have been saved" -msgstr "保存这个字段的修改以后才能移动这个字段" - -#: includes/admin/post-types/admin-field-group.php:89 -#: assets/build/js/acf-field-group.js:1414 -#: assets/build/js/acf-field-group.js:1716 -msgid "The string \"field_\" may not be used at the start of a field name" -msgstr "\"field_\" 这个字符串不能作为字段名字的开始部分" - -#: includes/admin/post-types/admin-field-group.php:71 -msgid "Field group draft updated." -msgstr "字段组草稿已更新。" - -#: includes/admin/post-types/admin-field-group.php:70 -msgid "Field group scheduled for." -msgstr "字段组已定时。" - -#: includes/admin/post-types/admin-field-group.php:69 -msgid "Field group submitted." -msgstr "字段组已提交。" - -#: includes/admin/post-types/admin-field-group.php:68 -msgid "Field group saved." -msgstr "字段组已保存。" - -#: includes/admin/post-types/admin-field-group.php:67 -msgid "Field group published." -msgstr "字段组已发布。" - -#: includes/admin/post-types/admin-field-group.php:64 -msgid "Field group deleted." -msgstr "字段组已删除。" - -#: includes/admin/post-types/admin-field-group.php:62 -#: includes/admin/post-types/admin-field-group.php:63 -#: includes/admin/post-types/admin-field-group.php:65 -msgid "Field group updated." -msgstr "字段组已更新。" - -#: includes/admin/admin-tools.php:118 -#: includes/admin/views/global/navigation.php:246 -#: includes/admin/views/tools/tools.php:21 -msgid "Tools" -msgstr "工具" - -#: includes/locations/abstract-acf-location.php:106 -msgid "is not equal to" -msgstr "不等于" - -#: includes/locations/abstract-acf-location.php:105 -msgid "is equal to" -msgstr "等于" - -#: includes/locations.php:102 -msgid "Forms" -msgstr "表单" - -#: includes/admin/post-types/admin-post-type.php:127 includes/locations.php:100 -#: includes/locations/class-acf-location-page.php:22 -#: assets/build/js/acf-internal-post-type.js:175 -#: assets/build/js/acf-internal-post-type.js:249 -msgid "Page" -msgstr "页面" - -#: includes/admin/post-types/admin-post-type.php:125 includes/locations.php:99 -#: includes/locations/class-acf-location-post.php:22 -#: assets/build/js/acf-internal-post-type.js:172 -#: assets/build/js/acf-internal-post-type.js:246 -msgid "Post" -msgstr "文章" - -#: includes/fields.php:354 -msgid "Relational" -msgstr "关系" - -#: includes/fields.php:353 -msgid "Choice" -msgstr "选项" - -#: includes/fields.php:351 -msgid "Basic" -msgstr "基本" - -#: includes/fields.php:320 -msgid "Unknown" -msgstr "未知" - -#: includes/fields.php:320 -msgid "Field type does not exist" -msgstr "字段类型不存在" - -#: includes/forms/form-front.php:236 -msgid "Spam Detected" -msgstr "检测到垃圾邮件" - -#: includes/forms/form-front.php:107 -msgid "Post updated" -msgstr "文章已更新" - -#: includes/forms/form-front.php:106 -msgid "Update" -msgstr "更新" - -#: includes/forms/form-front.php:57 -msgid "Validate Email" -msgstr "验证邮箱" - -#: includes/fields.php:352 includes/forms/form-front.php:49 -msgid "Content" -msgstr "内容" - -#: includes/admin/views/acf-post-type/advanced-settings.php:21 -#: includes/forms/form-front.php:40 -msgid "Title" -msgstr "标题" - -#: includes/assets.php:372 includes/forms/form-comment.php:160 -#: assets/build/js/acf-input.js:7382 assets/build/js/acf-input.js:7968 -msgid "Edit field group" -msgstr "编辑字段组" - -#: includes/admin/post-types/admin-field-group.php:117 -#: assets/build/js/acf-input.js:1125 assets/build/js/acf-input.js:1230 -msgid "Selection is less than" -msgstr "选择小于" - -#: includes/admin/post-types/admin-field-group.php:116 -#: assets/build/js/acf-input.js:1106 assets/build/js/acf-input.js:1202 -msgid "Selection is greater than" -msgstr "选择大于" - -#: includes/admin/post-types/admin-field-group.php:115 -#: assets/build/js/acf-input.js:1075 assets/build/js/acf-input.js:1170 -msgid "Value is less than" -msgstr "值小于" - -#: includes/admin/post-types/admin-field-group.php:114 -#: assets/build/js/acf-input.js:1045 assets/build/js/acf-input.js:1139 -msgid "Value is greater than" -msgstr "值大于" - -#: includes/admin/post-types/admin-field-group.php:113 -#: assets/build/js/acf-input.js:888 assets/build/js/acf-input.js:960 -msgid "Value contains" -msgstr "值包含" - -#: includes/admin/post-types/admin-field-group.php:112 -#: assets/build/js/acf-input.js:862 assets/build/js/acf-input.js:926 -msgid "Value matches pattern" -msgstr "值匹配模式" - -#: includes/admin/post-types/admin-field-group.php:111 -#: assets/build/js/acf-input.js:840 assets/build/js/acf-input.js:1023 -#: assets/build/js/acf-input.js:903 assets/build/js/acf-input.js:1116 -msgid "Value is not equal to" -msgstr "值不等于" - -#: includes/admin/post-types/admin-field-group.php:110 -#: assets/build/js/acf-input.js:810 assets/build/js/acf-input.js:964 -#: assets/build/js/acf-input.js:864 assets/build/js/acf-input.js:1053 -msgid "Value is equal to" -msgstr "值等于" - -#: includes/admin/post-types/admin-field-group.php:109 -#: assets/build/js/acf-input.js:788 assets/build/js/acf-input.js:841 -msgid "Has no value" -msgstr "没有价值" - -#: includes/admin/post-types/admin-field-group.php:108 -#: assets/build/js/acf-input.js:758 assets/build/js/acf-input.js:783 -msgid "Has any value" -msgstr "有任何价值" - -#: includes/admin/admin-internal-post-type.php:345 -#: includes/admin/views/browse-fields-modal.php:62 includes/assets.php:353 -#: assets/build/js/acf.js:1564 assets/build/js/acf.js:1658 -msgid "Cancel" -msgstr "退出" - -#: includes/assets.php:349 assets/build/js/acf.js:1738 -#: assets/build/js/acf.js:1855 -msgid "Are you sure?" -msgstr "确定吗?" - -#: includes/assets.php:369 assets/build/js/acf-input.js:9442 -#: assets/build/js/acf-input.js:10294 -msgid "%d fields require attention" -msgstr "%d 个字段需要注意" - -#: includes/assets.php:368 assets/build/js/acf-input.js:9440 -#: assets/build/js/acf-input.js:10290 -msgid "1 field requires attention" -msgstr "1 个字段需要注意" - -#: includes/assets.php:367 includes/validation.php:288 -#: includes/validation.php:298 assets/build/js/acf-input.js:9435 -#: assets/build/js/acf-input.js:10285 -msgid "Validation failed" -msgstr "验证失败" - -#: includes/assets.php:366 assets/build/js/acf-input.js:9603 -#: assets/build/js/acf-input.js:10473 -msgid "Validation successful" -msgstr "验证成功" - -#: includes/media.php:54 assets/build/js/acf-input.js:7210 -#: assets/build/js/acf-input.js:7772 -msgid "Restricted" -msgstr "限制" - -#: includes/media.php:53 assets/build/js/acf-input.js:7025 -#: assets/build/js/acf-input.js:7536 -msgid "Collapse Details" -msgstr "折叠" - -#: includes/media.php:52 assets/build/js/acf-input.js:7025 -#: assets/build/js/acf-input.js:7533 -msgid "Expand Details" -msgstr "展开" - -#: includes/admin/views/acf-post-type/advanced-settings.php:465 -#: includes/media.php:51 assets/build/js/acf-input.js:6892 -#: assets/build/js/acf-input.js:7381 -msgid "Uploaded to this post" -msgstr "上传到这个文章" - -#: includes/media.php:50 assets/build/js/acf-input.js:6931 -#: assets/build/js/acf-input.js:7420 -msgctxt "verb" -msgid "Update" -msgstr "更新" - -#: includes/media.php:49 -msgctxt "verb" -msgid "Edit" -msgstr "编辑" - -#: includes/assets.php:363 assets/build/js/acf-input.js:9212 -#: assets/build/js/acf-input.js:10056 -msgid "The changes you made will be lost if you navigate away from this page" -msgstr "如果浏览其它页面,会丢失当前所做的修改" - -#: includes/api/api-helpers.php:3395 -msgid "File type must be %s." -msgstr "字段类型必须是 %s。" - -#: includes/admin/post-types/admin-field-group.php:102 -#: includes/admin/views/acf-field-group/conditional-logic.php:59 -#: includes/admin/views/acf-field-group/conditional-logic.php:169 -#: includes/admin/views/acf-field-group/location-group.php:3 -#: includes/admin/views/acf-field-group/locations.php:36 -#: includes/api/api-helpers.php:3391 assets/build/js/acf-field-group.js:771 -#: assets/build/js/acf-field-group.js:2385 -#: assets/build/js/acf-field-group.js:933 -#: assets/build/js/acf-field-group.js:2807 -msgid "or" -msgstr "或" - -#: includes/api/api-helpers.php:3364 -msgid "File size must not exceed %s." -msgstr "文件尺寸最大不能超过 %s。" - -#: includes/api/api-helpers.php:3359 -msgid "File size must be at least %s." -msgstr "文件尺寸至少得是 %s。" - -#: includes/api/api-helpers.php:3344 -msgid "Image height must not exceed %dpx." -msgstr "图像高度最大不能超过 %dpx。" - -#: includes/api/api-helpers.php:3339 -msgid "Image height must be at least %dpx." -msgstr "图像高度至少得是 %dpx。" - -#: includes/api/api-helpers.php:3325 -msgid "Image width must not exceed %dpx." -msgstr "图像宽度最大不能超过 %dpx。" - -#: includes/api/api-helpers.php:3320 -msgid "Image width must be at least %dpx." -msgstr "图像宽度至少得是 %dpx。" - -#: includes/api/api-helpers.php:1561 includes/api/api-term.php:147 -msgid "(no title)" -msgstr "(无标题)" - -#: includes/api/api-helpers.php:853 -msgid "Full Size" -msgstr "原图" - -#: includes/api/api-helpers.php:812 -msgid "Large" -msgstr "大" - -#: includes/api/api-helpers.php:811 -msgid "Medium" -msgstr "中" - -#: includes/api/api-helpers.php:810 -msgid "Thumbnail" -msgstr "缩略图" - -#: includes/acf-field-functions.php:854 -#: includes/admin/post-types/admin-field-group.php:99 -#: assets/build/js/acf-field-group.js:1077 -#: assets/build/js/acf-field-group.js:1260 -msgid "(no label)" -msgstr "(无标签)" - -#: includes/fields/class-acf-field-textarea.php:145 -msgid "Sets the textarea height" -msgstr "设置文本区域的高度" - -#: includes/fields/class-acf-field-textarea.php:144 -msgid "Rows" -msgstr "行" - -#: includes/fields/class-acf-field-textarea.php:25 -msgid "Text Area" -msgstr "文本区域" - -#: includes/fields/class-acf-field-checkbox.php:451 -msgid "Prepend an extra checkbox to toggle all choices" -msgstr "添加一个可以全选的复选框" - -#: includes/fields/class-acf-field-checkbox.php:413 -msgid "Save 'custom' values to the field's choices" -msgstr "将 \"自定义\" 值保存到字段的选择中" - -#: includes/fields/class-acf-field-checkbox.php:402 -msgid "Allow 'custom' values to be added" -msgstr "允许添加 \"自定义\" 值" - -#: includes/fields/class-acf-field-checkbox.php:38 -msgid "Add new choice" -msgstr "添加新选项" - -#: includes/fields/class-acf-field-checkbox.php:174 -msgid "Toggle All" -msgstr "全选" - -#: includes/fields/class-acf-field-page_link.php:506 -msgid "Allow Archives URLs" -msgstr "允许存档 url" - -#: includes/fields/class-acf-field-page_link.php:179 -msgid "Archives" -msgstr "存档" - -#: includes/fields/class-acf-field-page_link.php:25 -msgid "Page Link" -msgstr "页面链接" - -#: includes/fields/class-acf-field-taxonomy.php:943 -#: includes/locations/class-acf-location-user-form.php:72 -msgid "Add" -msgstr "添加" - -#: includes/admin/views/acf-field-group/fields.php:53 -#: includes/fields/class-acf-field-taxonomy.php:908 -msgid "Name" -msgstr "名称" - -#: includes/fields/class-acf-field-taxonomy.php:892 -msgid "%s added" -msgstr "%s 已添加" - -#: includes/fields/class-acf-field-taxonomy.php:856 -msgid "%s already exists" -msgstr "%s 已存在" - -#: includes/fields/class-acf-field-taxonomy.php:844 -msgid "User unable to add new %s" -msgstr "用户无法添加新的 %s" - -#: includes/fields/class-acf-field-taxonomy.php:742 -msgid "Term ID" -msgstr "内容ID" - -#: includes/fields/class-acf-field-taxonomy.php:741 -msgid "Term Object" -msgstr "对象缓存" - -#: includes/fields/class-acf-field-taxonomy.php:726 -msgid "Load value from posts terms" -msgstr "从文章项目中加载值" - -#: includes/fields/class-acf-field-taxonomy.php:725 -msgid "Load Terms" -msgstr "加载项目" - -#: includes/fields/class-acf-field-taxonomy.php:715 -msgid "Connect selected terms to the post" -msgstr "连接所选项目到文章" - -#: includes/fields/class-acf-field-taxonomy.php:714 -msgid "Save Terms" -msgstr "保存项目" - -#: includes/fields/class-acf-field-taxonomy.php:704 -msgid "Allow new terms to be created whilst editing" -msgstr "在编辑时允许可以创建新的项目" - -#: includes/fields/class-acf-field-taxonomy.php:703 -msgid "Create Terms" -msgstr "创建项目" - -#: includes/fields/class-acf-field-taxonomy.php:762 -msgid "Radio Buttons" -msgstr "单选框" - -#: includes/fields/class-acf-field-taxonomy.php:761 -msgid "Single Value" -msgstr "单个值" - -#: includes/fields/class-acf-field-taxonomy.php:759 -msgid "Multi Select" -msgstr "多选" - -#: includes/fields/class-acf-field-checkbox.php:25 -#: includes/fields/class-acf-field-taxonomy.php:758 -msgid "Checkbox" -msgstr "复选框" - -#: includes/fields/class-acf-field-taxonomy.php:757 -msgid "Multiple Values" -msgstr "多选" - -#: includes/fields/class-acf-field-taxonomy.php:752 -msgid "Select the appearance of this field" -msgstr "为这个字段选择外观" - -#: includes/fields/class-acf-field-taxonomy.php:751 -msgid "Appearance" -msgstr "外观" - -#: includes/fields/class-acf-field-taxonomy.php:693 -msgid "Select the taxonomy to be displayed" -msgstr "选择要显示的分类法" - -#: includes/fields/class-acf-field-taxonomy.php:654 -msgctxt "No Terms" -msgid "No %s" -msgstr "无 %s" - -#: includes/fields/class-acf-field-number.php:266 -msgid "Value must be equal to or lower than %d" -msgstr "值要小于等于 %d" - -#: includes/fields/class-acf-field-number.php:259 -msgid "Value must be equal to or higher than %d" -msgstr "值要大于等于 %d" - -#: includes/fields/class-acf-field-number.php:244 -msgid "Value must be a number" -msgstr "值必须是数字" - -#: includes/fields/class-acf-field-number.php:25 -msgid "Number" -msgstr "数字" - -#: includes/fields/class-acf-field-radio.php:264 -msgid "Save 'other' values to the field's choices" -msgstr "存档为字段的选择的 'other' 的值" - -#: includes/fields/class-acf-field-radio.php:253 -msgid "Add 'other' choice to allow for custom values" -msgstr "为自定义值添加 'other' 选择" - -#: includes/admin/views/global/navigation.php:196 -msgid "Other" -msgstr "其他" - -#: includes/fields/class-acf-field-radio.php:25 -msgid "Radio Button" -msgstr "单选按钮" - -#: includes/fields/class-acf-field-accordion.php:107 -msgid "" -"Define an endpoint for the previous accordion to stop. This accordion will " -"not be visible." -msgstr "定义上一个手风琴停止的端点。此手风琴将不可见。" - -#: includes/fields/class-acf-field-accordion.php:96 -msgid "Allow this accordion to open without closing others." -msgstr "允许此手风琴打开而不关闭其他。" - -#: includes/fields/class-acf-field-accordion.php:95 -msgid "Multi-Expand" -msgstr "多扩展" - -#: includes/fields/class-acf-field-accordion.php:85 -msgid "Display this accordion as open on page load." -msgstr "将此手风琴显示为在页面加载时打开。" - -#: includes/fields/class-acf-field-accordion.php:84 -msgid "Open" -msgstr "打开" - -#: includes/fields/class-acf-field-accordion.php:25 -msgid "Accordion" -msgstr "手风琴" - -#: includes/fields/class-acf-field-file.php:267 -#: includes/fields/class-acf-field-file.php:279 -msgid "Restrict which files can be uploaded" -msgstr "限制什么类型的文件可以上传" - -#: includes/fields/class-acf-field-file.php:220 -msgid "File ID" -msgstr "文件ID" - -#: includes/fields/class-acf-field-file.php:219 -msgid "File URL" -msgstr "文件URL" - -#: includes/fields/class-acf-field-file.php:218 -msgid "File Array" -msgstr "文件数组" - -#: includes/fields/class-acf-field-file.php:186 -msgid "Add File" -msgstr "添加文件" - -#: includes/admin/tools/class-acf-admin-tool-import.php:156 -#: includes/fields/class-acf-field-file.php:186 -msgid "No file selected" -msgstr "没选择文件" - -#: includes/fields/class-acf-field-file.php:150 -msgid "File name" -msgstr "文件名" - -#: includes/fields/class-acf-field-file.php:63 -#: assets/build/js/acf-input.js:2474 assets/build/js/acf-input.js:2625 -msgid "Update File" -msgstr "更新文件" - -#: includes/fields/class-acf-field-file.php:62 -#: assets/build/js/acf-input.js:2473 assets/build/js/acf-input.js:2624 -msgid "Edit File" -msgstr "编辑文件" - -#: includes/admin/tools/class-acf-admin-tool-import.php:58 -#: includes/fields/class-acf-field-file.php:61 -#: assets/build/js/acf-input.js:2447 assets/build/js/acf-input.js:2597 -msgid "Select File" -msgstr "选择文件" - -#: includes/fields/class-acf-field-file.php:25 -msgid "File" -msgstr "文件" - -#: includes/fields/class-acf-field-password.php:25 -msgid "Password" -msgstr "密码" - -#: includes/fields/class-acf-field-select.php:392 -msgid "Specify the value returned" -msgstr "指定返回的值" - -#: includes/fields/class-acf-field-select.php:461 -msgid "Use AJAX to lazy load choices?" -msgstr "使用 AJAX 惰性选择?" - -#: includes/fields/class-acf-field-checkbox.php:362 -#: includes/fields/class-acf-field-select.php:381 -msgid "Enter each default value on a new line" -msgstr "每行输入一个默认值" - -#: includes/fields/class-acf-field-select.php:252 includes/media.php:48 -#: assets/build/js/acf-input.js:6790 assets/build/js/acf-input.js:7266 -msgctxt "verb" -msgid "Select" -msgstr "选择" - -#: includes/fields/class-acf-field-select.php:121 -msgctxt "Select2 JS load_fail" -msgid "Loading failed" -msgstr "加载失败" - -#: includes/fields/class-acf-field-select.php:120 -msgctxt "Select2 JS searching" -msgid "Searching…" -msgstr "搜索中…" - -#: includes/fields/class-acf-field-select.php:119 -msgctxt "Select2 JS load_more" -msgid "Loading more results…" -msgstr "载入更多结果…" - -#: includes/fields/class-acf-field-select.php:118 -msgctxt "Select2 JS selection_too_long_n" -msgid "You can only select %d items" -msgstr "只能选择 %d 项" - -#: includes/fields/class-acf-field-select.php:117 -msgctxt "Select2 JS selection_too_long_1" -msgid "You can only select 1 item" -msgstr "您只能选择1项" - -#: includes/fields/class-acf-field-select.php:116 -msgctxt "Select2 JS input_too_long_n" -msgid "Please delete %d characters" -msgstr "请删除 %d 个字符" - -#: includes/fields/class-acf-field-select.php:115 -msgctxt "Select2 JS input_too_long_1" -msgid "Please delete 1 character" -msgstr "请删除1个字符" - -#: includes/fields/class-acf-field-select.php:114 -msgctxt "Select2 JS input_too_short_n" -msgid "Please enter %d or more characters" -msgstr "请输入 %d 或者更多字符" - -#: includes/fields/class-acf-field-select.php:113 -msgctxt "Select2 JS input_too_short_1" -msgid "Please enter 1 or more characters" -msgstr "请输入至少一个字符" - -#: includes/fields/class-acf-field-select.php:112 -msgctxt "Select2 JS matches_0" -msgid "No matches found" -msgstr "找不到匹配项" - -#: includes/fields/class-acf-field-select.php:111 -msgctxt "Select2 JS matches_n" -msgid "%d results are available, use up and down arrow keys to navigate." -msgstr "%d 结果可用, 请使用向上和向下箭头键进行导航。" - -#: includes/fields/class-acf-field-select.php:110 -msgctxt "Select2 JS matches_1" -msgid "One result is available, press enter to select it." -msgstr "一个结果是可用的,按回车选择它。" - -#: includes/fields/class-acf-field-select.php:25 -#: includes/fields/class-acf-field-taxonomy.php:763 -msgctxt "noun" -msgid "Select" -msgstr "下拉选择" - -#: includes/fields/class-acf-field-user.php:73 -msgid "User ID" -msgstr "用户 ID" - -#: includes/fields/class-acf-field-user.php:72 -msgid "User Object" -msgstr "用户对象" - -#: includes/fields/class-acf-field-user.php:71 -msgid "User Array" -msgstr "數組" - -#: includes/fields/class-acf-field-user.php:59 -msgid "All user roles" -msgstr "所有用户角色" - -#: includes/fields/class-acf-field-user.php:51 -msgid "Filter by Role" -msgstr "按角色过滤" - -#: includes/fields/class-acf-field-user.php:15 includes/locations.php:101 -msgid "User" -msgstr "用户" - -#: includes/fields/class-acf-field-separator.php:25 -msgid "Separator" -msgstr "分隔线" - -#: includes/fields/class-acf-field-color_picker.php:75 -msgid "Select Color" -msgstr "选择颜色" - -#: includes/admin/post-types/admin-post-type.php:129 -#: includes/admin/post-types/admin-taxonomy.php:131 -#: includes/fields/class-acf-field-color_picker.php:73 -#: assets/build/js/acf-internal-post-type.js:72 -#: assets/build/js/acf-internal-post-type.js:86 -msgid "Default" -msgstr "默认" - -#: includes/admin/views/acf-post-type/advanced-settings.php:89 -#: includes/admin/views/acf-taxonomy/advanced-settings.php:141 -#: includes/fields/class-acf-field-color_picker.php:71 -msgid "Clear" -msgstr "清除" - -#: includes/fields/class-acf-field-color_picker.php:25 -msgid "Color Picker" -msgstr "颜色选择" - -#: includes/fields/class-acf-field-date_time_picker.php:88 -msgctxt "Date Time Picker JS pmTextShort" -msgid "P" -msgstr "P" - -#: includes/fields/class-acf-field-date_time_picker.php:87 -msgctxt "Date Time Picker JS pmText" -msgid "PM" -msgstr "下午" - -#: includes/fields/class-acf-field-date_time_picker.php:84 -msgctxt "Date Time Picker JS amTextShort" -msgid "A" -msgstr "A" - -#: includes/fields/class-acf-field-date_time_picker.php:83 -msgctxt "Date Time Picker JS amText" -msgid "AM" -msgstr "上午" - -#: includes/fields/class-acf-field-date_time_picker.php:81 -msgctxt "Date Time Picker JS selectText" -msgid "Select" -msgstr "选择" - -#: includes/fields/class-acf-field-date_time_picker.php:80 -msgctxt "Date Time Picker JS closeText" -msgid "Done" -msgstr "已完成" - -#: includes/fields/class-acf-field-date_time_picker.php:79 -msgctxt "Date Time Picker JS currentText" -msgid "Now" -msgstr "现在" - -#: includes/fields/class-acf-field-date_time_picker.php:78 -msgctxt "Date Time Picker JS timezoneText" -msgid "Time Zone" -msgstr "时区" - -#: includes/fields/class-acf-field-date_time_picker.php:77 -msgctxt "Date Time Picker JS microsecText" -msgid "Microsecond" -msgstr "微秒" - -#: includes/fields/class-acf-field-date_time_picker.php:76 -msgctxt "Date Time Picker JS millisecText" -msgid "Millisecond" -msgstr "毫秒" - -#: includes/fields/class-acf-field-date_time_picker.php:75 -msgctxt "Date Time Picker JS secondText" -msgid "Second" -msgstr "秒" - -#: includes/fields/class-acf-field-date_time_picker.php:74 -msgctxt "Date Time Picker JS minuteText" -msgid "Minute" -msgstr "分钟" - -#: includes/fields/class-acf-field-date_time_picker.php:73 -msgctxt "Date Time Picker JS hourText" -msgid "Hour" -msgstr "小时" - -#: includes/fields/class-acf-field-date_time_picker.php:72 -msgctxt "Date Time Picker JS timeText" -msgid "Time" -msgstr "时间" - -#: includes/fields/class-acf-field-date_time_picker.php:71 -msgctxt "Date Time Picker JS timeOnlyTitle" -msgid "Choose Time" -msgstr "选择时间" - -#: includes/fields/class-acf-field-date_time_picker.php:25 -msgid "Date Time Picker" -msgstr "日期时间选择器" - -#: includes/fields/class-acf-field-accordion.php:106 -msgid "Endpoint" -msgstr "端点" - -#: includes/admin/views/acf-field-group/options.php:130 -#: includes/fields/class-acf-field-tab.php:115 -msgid "Left aligned" -msgstr "左对齐" - -#: includes/admin/views/acf-field-group/options.php:129 -#: includes/fields/class-acf-field-tab.php:114 -msgid "Top aligned" -msgstr "顶部对齐" - -#: includes/fields/class-acf-field-tab.php:110 -msgid "Placement" -msgstr "位置" - -#: includes/fields/class-acf-field-tab.php:26 -msgid "Tab" -msgstr "选项卡" - -#: includes/fields/class-acf-field-url.php:162 -msgid "Value must be a valid URL" -msgstr "值必须是有效的地址" - -#: includes/fields/class-acf-field-link.php:177 -msgid "Link URL" -msgstr "链接 URL" - -#: includes/fields/class-acf-field-link.php:176 -msgid "Link Array" -msgstr "链接数组" - -#: includes/fields/class-acf-field-link.php:145 -msgid "Opens in a new window/tab" -msgstr "在新窗口/选项卡中打开" - -#: includes/fields/class-acf-field-link.php:140 -msgid "Select Link" -msgstr "选择链接" - -#: includes/fields/class-acf-field-link.php:25 -msgid "Link" -msgstr "链接" - -#: includes/fields/class-acf-field-email.php:25 -msgid "Email" -msgstr "电子邮件" - -#: includes/fields/class-acf-field-number.php:188 -#: includes/fields/class-acf-field-range.php:217 -msgid "Step Size" -msgstr "步长" - -#: includes/fields/class-acf-field-number.php:158 -#: includes/fields/class-acf-field-range.php:195 -msgid "Maximum Value" -msgstr "最大值" - -#: includes/fields/class-acf-field-number.php:148 -#: includes/fields/class-acf-field-range.php:184 -msgid "Minimum Value" -msgstr "最小值" - -#: includes/fields/class-acf-field-range.php:25 -msgid "Range" -msgstr "范围(滑块)" - -#: includes/fields/class-acf-field-button-group.php:175 -#: includes/fields/class-acf-field-checkbox.php:379 -#: includes/fields/class-acf-field-radio.php:220 -#: includes/fields/class-acf-field-select.php:399 -msgid "Both (Array)" -msgstr "两个 (阵列)" - -#: includes/admin/views/acf-field-group/fields.php:52 -#: includes/fields/class-acf-field-button-group.php:174 -#: includes/fields/class-acf-field-checkbox.php:378 -#: includes/fields/class-acf-field-radio.php:219 -#: includes/fields/class-acf-field-select.php:398 -msgid "Label" -msgstr "标签" - -#: includes/fields/class-acf-field-button-group.php:173 -#: includes/fields/class-acf-field-checkbox.php:377 -#: includes/fields/class-acf-field-radio.php:218 -#: includes/fields/class-acf-field-select.php:397 -msgid "Value" -msgstr "值" - -#: includes/fields/class-acf-field-button-group.php:222 -#: includes/fields/class-acf-field-checkbox.php:441 -#: includes/fields/class-acf-field-radio.php:292 -msgid "Vertical" -msgstr "垂直" - -#: includes/fields/class-acf-field-button-group.php:221 -#: includes/fields/class-acf-field-checkbox.php:442 -#: includes/fields/class-acf-field-radio.php:293 -msgid "Horizontal" -msgstr "水平" - -#: includes/fields/class-acf-field-button-group.php:148 -#: includes/fields/class-acf-field-checkbox.php:352 -#: includes/fields/class-acf-field-radio.php:193 -#: includes/fields/class-acf-field-select.php:370 -msgid "red : Red" -msgstr "red : Red" - -#: includes/fields/class-acf-field-button-group.php:148 -#: includes/fields/class-acf-field-checkbox.php:352 -#: includes/fields/class-acf-field-radio.php:193 -#: includes/fields/class-acf-field-select.php:370 -msgid "For more control, you may specify both a value and label like this:" -msgstr "如果需要更多控制,您按照一下格式,定义一个值和标签对:" - -#: includes/fields/class-acf-field-button-group.php:148 -#: includes/fields/class-acf-field-checkbox.php:352 -#: includes/fields/class-acf-field-radio.php:193 -#: includes/fields/class-acf-field-select.php:370 -msgid "Enter each choice on a new line." -msgstr "输入选项,每行一个。" - -#: includes/fields/class-acf-field-button-group.php:147 -#: includes/fields/class-acf-field-checkbox.php:351 -#: includes/fields/class-acf-field-radio.php:192 -#: includes/fields/class-acf-field-select.php:369 -msgid "Choices" -msgstr "选项" - -#: includes/fields/class-acf-field-button-group.php:24 -msgid "Button Group" -msgstr "按钮组" - -#: includes/fields/class-acf-field-button-group.php:194 -#: includes/fields/class-acf-field-page_link.php:538 -#: includes/fields/class-acf-field-post_object.php:448 -#: includes/fields/class-acf-field-radio.php:238 -#: includes/fields/class-acf-field-select.php:429 -#: includes/fields/class-acf-field-taxonomy.php:772 -#: includes/fields/class-acf-field-user.php:103 -msgid "Allow Null" -msgstr "允许空值" - -#: includes/fields/class-acf-field-page_link.php:263 -#: includes/fields/class-acf-field-post_object.php:257 -#: includes/fields/class-acf-field-taxonomy.php:930 -msgid "Parent" -msgstr "父级" - -#: includes/fields/class-acf-field-wysiwyg.php:390 -msgid "TinyMCE will not be initialized until field is clicked" -msgstr "TinyMCE 在栏位没有点击之前不会初始化" - -#: includes/fields/class-acf-field-wysiwyg.php:389 -msgid "Delay Initialization" -msgstr "延迟初始化" - -#: includes/fields/class-acf-field-wysiwyg.php:378 -msgid "Show Media Upload Buttons" -msgstr "显示媒体上传按钮" - -#: includes/fields/class-acf-field-wysiwyg.php:362 -msgid "Toolbar" -msgstr "工具条" - -#: includes/fields/class-acf-field-wysiwyg.php:354 -msgid "Text Only" -msgstr "纯文本" - -#: includes/fields/class-acf-field-wysiwyg.php:353 -msgid "Visual Only" -msgstr "只有显示" - -#: includes/fields/class-acf-field-wysiwyg.php:352 -msgid "Visual & Text" -msgstr "显示与文本" - -#: includes/fields/class-acf-field-wysiwyg.php:347 -msgid "Tabs" -msgstr "标签" - -#: includes/fields/class-acf-field-wysiwyg.php:285 -msgid "Click to initialize TinyMCE" -msgstr "点击初始化 TinyMCE 编辑器" - -#: includes/fields/class-acf-field-wysiwyg.php:279 -msgctxt "Name for the Text editor tab (formerly HTML)" -msgid "Text" -msgstr "文本" - -#: includes/fields/class-acf-field-wysiwyg.php:278 -msgid "Visual" -msgstr "显示" - -#: includes/fields/class-acf-field-text.php:189 -#: includes/fields/class-acf-field-textarea.php:236 -msgid "Value must not exceed %d characters" -msgstr "值不得超过%d个字符" - -#: includes/fields/class-acf-field-text.php:124 -#: includes/fields/class-acf-field-textarea.php:124 -msgid "Leave blank for no limit" -msgstr "留空则不限制" - -#: includes/fields/class-acf-field-text.php:123 -#: includes/fields/class-acf-field-textarea.php:123 -msgid "Character Limit" -msgstr "字符限制" - -#: includes/fields/class-acf-field-email.php:158 -#: includes/fields/class-acf-field-number.php:209 -#: includes/fields/class-acf-field-password.php:105 -#: includes/fields/class-acf-field-range.php:239 -#: includes/fields/class-acf-field-text.php:164 -msgid "Appears after the input" -msgstr "在 input 后面显示" - -#: includes/fields/class-acf-field-email.php:157 -#: includes/fields/class-acf-field-number.php:208 -#: includes/fields/class-acf-field-password.php:104 -#: includes/fields/class-acf-field-range.php:238 -#: includes/fields/class-acf-field-text.php:163 -msgid "Append" -msgstr "追加" - -#: includes/fields/class-acf-field-email.php:148 -#: includes/fields/class-acf-field-number.php:199 -#: includes/fields/class-acf-field-password.php:95 -#: includes/fields/class-acf-field-range.php:229 -#: includes/fields/class-acf-field-text.php:154 -msgid "Appears before the input" -msgstr "在 input 前面显示" - -#: includes/fields/class-acf-field-email.php:147 -#: includes/fields/class-acf-field-number.php:198 -#: includes/fields/class-acf-field-password.php:94 -#: includes/fields/class-acf-field-range.php:228 -#: includes/fields/class-acf-field-text.php:153 -msgid "Prepend" -msgstr "前置" - -#: includes/fields/class-acf-field-email.php:138 -#: includes/fields/class-acf-field-number.php:179 -#: includes/fields/class-acf-field-password.php:85 -#: includes/fields/class-acf-field-text.php:144 -#: includes/fields/class-acf-field-textarea.php:156 -#: includes/fields/class-acf-field-url.php:122 -msgid "Appears within the input" -msgstr "在 input 内部显示" - -#: includes/fields/class-acf-field-email.php:137 -#: includes/fields/class-acf-field-number.php:178 -#: includes/fields/class-acf-field-password.php:84 -#: includes/fields/class-acf-field-text.php:143 -#: includes/fields/class-acf-field-textarea.php:155 -#: includes/fields/class-acf-field-url.php:121 -msgid "Placeholder Text" -msgstr "占位符文本" - -#: includes/fields/class-acf-field-button-group.php:158 -#: includes/fields/class-acf-field-email.php:118 -#: includes/fields/class-acf-field-number.php:129 -#: includes/fields/class-acf-field-radio.php:203 -#: includes/fields/class-acf-field-range.php:165 -#: includes/fields/class-acf-field-text.php:104 -#: includes/fields/class-acf-field-textarea.php:104 -#: includes/fields/class-acf-field-url.php:102 -#: includes/fields/class-acf-field-wysiwyg.php:312 -msgid "Appears when creating a new post" -msgstr "创建新文章的时候显示" - -#: includes/fields/class-acf-field-text.php:25 -msgid "Text" -msgstr "文本" - -#: includes/fields/class-acf-field-relationship.php:794 -msgid "%1$s requires at least %2$s selection" -msgid_plural "%1$s requires at least %2$s selections" -msgstr[0] "%1$s 至少需要 %2$s 个选择" - -#: includes/fields/class-acf-field-post_object.php:417 -#: includes/fields/class-acf-field-relationship.php:644 -msgid "Post ID" -msgstr "文章 ID" - -#: includes/fields/class-acf-field-post_object.php:17 -#: includes/fields/class-acf-field-post_object.php:416 -#: includes/fields/class-acf-field-relationship.php:643 -msgid "Post Object" -msgstr "文章对象" - -#: includes/fields/class-acf-field-relationship.php:676 -msgid "Maximum Posts" -msgstr "最大文章数" - -#: includes/fields/class-acf-field-relationship.php:666 -msgid "Minimum Posts" -msgstr "最小文章数" - -#: includes/admin/views/acf-field-group/options.php:183 -#: includes/admin/views/acf-post-type/advanced-settings.php:29 -#: includes/fields/class-acf-field-relationship.php:701 -msgid "Featured Image" -msgstr "特色图像" - -#: includes/fields/class-acf-field-relationship.php:697 -msgid "Selected elements will be displayed in each result" -msgstr "选择的元素将在每个结果中显示" - -#: includes/fields/class-acf-field-relationship.php:696 -msgid "Elements" -msgstr "元素" - -#: includes/fields/class-acf-field-relationship.php:630 -#: includes/fields/class-acf-field-taxonomy.php:20 -#: includes/fields/class-acf-field-taxonomy.php:692 -#: includes/locations/class-acf-location-taxonomy.php:22 -msgid "Taxonomy" -msgstr "分类法" - -#: includes/fields/class-acf-field-relationship.php:629 -#: includes/locations/class-acf-location-post-type.php:22 -#: includes/post-types/class-acf-post-type.php:92 -msgid "Post Type" -msgstr "文章类型" - -#: includes/fields/class-acf-field-relationship.php:623 -msgid "Filters" -msgstr "过滤器" - -#: includes/fields/class-acf-field-page_link.php:499 -#: includes/fields/class-acf-field-post_object.php:404 -#: includes/fields/class-acf-field-relationship.php:616 -msgid "All taxonomies" -msgstr "所有分类法" - -#: includes/fields/class-acf-field-page_link.php:491 -#: includes/fields/class-acf-field-post_object.php:396 -#: includes/fields/class-acf-field-relationship.php:608 -msgid "Filter by Taxonomy" -msgstr "按分类筛选" - -#: includes/fields/class-acf-field-page_link.php:469 -#: includes/fields/class-acf-field-post_object.php:374 -#: includes/fields/class-acf-field-relationship.php:586 -msgid "All post types" -msgstr "所有文章类型" - -#: includes/fields/class-acf-field-page_link.php:461 -#: includes/fields/class-acf-field-post_object.php:366 -#: includes/fields/class-acf-field-relationship.php:578 -msgid "Filter by Post Type" -msgstr "按文章类型筛选" - -#: includes/fields/class-acf-field-relationship.php:476 -msgid "Search..." -msgstr "搜索..." - -#: includes/fields/class-acf-field-relationship.php:406 -msgid "Select taxonomy" -msgstr "选择分类" - -#: includes/fields/class-acf-field-relationship.php:397 -msgid "Select post type" -msgstr "选择文章类型" - -#: includes/fields/class-acf-field-relationship.php:61 -#: assets/build/js/acf-input.js:3930 assets/build/js/acf-input.js:4214 -msgid "No matches found" -msgstr "找不到匹配项" - -#: includes/fields/class-acf-field-relationship.php:60 -#: assets/build/js/acf-input.js:3913 assets/build/js/acf-input.js:4193 -msgid "Loading" -msgstr "加载" - -#: includes/fields/class-acf-field-relationship.php:59 -#: assets/build/js/acf-input.js:3818 assets/build/js/acf-input.js:4084 -msgid "Maximum values reached ( {max} values )" -msgstr "达到了最大值 ( {max} 值 )" - -#: includes/fields/class-acf-field-relationship.php:17 -msgid "Relationship" -msgstr "关系" - -#: includes/fields/class-acf-field-file.php:291 -#: includes/fields/class-acf-field-image.php:317 -msgid "Comma separated list. Leave blank for all types" -msgstr "用英文逗号分隔开,留空则为全部类型" - -#: includes/fields/class-acf-field-file.php:290 -#: includes/fields/class-acf-field-image.php:316 -msgid "Allowed File Types" -msgstr "允许的文件类型" - -#: includes/fields/class-acf-field-file.php:278 -#: includes/fields/class-acf-field-image.php:280 -msgid "Maximum" -msgstr "最大" - -#: includes/fields/class-acf-field-file.php:154 -#: includes/fields/class-acf-field-file.php:270 -#: includes/fields/class-acf-field-file.php:282 -#: includes/fields/class-acf-field-image.php:271 -#: includes/fields/class-acf-field-image.php:307 -msgid "File size" -msgstr "文件尺寸" - -#: includes/fields/class-acf-field-image.php:245 -#: includes/fields/class-acf-field-image.php:281 -msgid "Restrict which images can be uploaded" -msgstr "限制可以上传的图像" - -#: includes/fields/class-acf-field-file.php:266 -#: includes/fields/class-acf-field-image.php:244 -msgid "Minimum" -msgstr "最小" - -#: includes/fields/class-acf-field-file.php:235 -#: includes/fields/class-acf-field-image.php:210 -msgid "Uploaded to post" -msgstr "上传到文章" - -#: includes/fields/class-acf-field-file.php:234 -#: includes/fields/class-acf-field-image.php:209 -#: includes/locations/class-acf-location-attachment.php:73 -#: includes/locations/class-acf-location-comment.php:61 -#: includes/locations/class-acf-location-nav-menu.php:74 -#: includes/locations/class-acf-location-taxonomy.php:63 -#: includes/locations/class-acf-location-user-form.php:71 -#: includes/locations/class-acf-location-user-role.php:78 -#: includes/locations/class-acf-location-widget.php:65 -msgid "All" -msgstr "所有" - -#: includes/fields/class-acf-field-file.php:229 -#: includes/fields/class-acf-field-image.php:204 -msgid "Limit the media library choice" -msgstr "限制媒体库的选择" - -#: includes/fields/class-acf-field-file.php:228 -#: includes/fields/class-acf-field-image.php:203 -msgid "Library" -msgstr "库" - -#: includes/fields/class-acf-field-image.php:336 -msgid "Preview Size" -msgstr "预览图大小" - -#: includes/fields/class-acf-field-image.php:195 -msgid "Image ID" -msgstr "图像ID" - -#: includes/fields/class-acf-field-image.php:194 -msgid "Image URL" -msgstr "图像 URL" - -#: includes/fields/class-acf-field-image.php:193 -msgid "Image Array" -msgstr "图像数组" - -#: includes/fields/class-acf-field-button-group.php:168 -#: includes/fields/class-acf-field-checkbox.php:372 -#: includes/fields/class-acf-field-file.php:213 -#: includes/fields/class-acf-field-link.php:171 -#: includes/fields/class-acf-field-radio.php:213 -msgid "Specify the returned value on front end" -msgstr "指定前端返回的值" - -#: includes/fields/class-acf-field-button-group.php:167 -#: includes/fields/class-acf-field-checkbox.php:371 -#: includes/fields/class-acf-field-file.php:212 -#: includes/fields/class-acf-field-link.php:170 -#: includes/fields/class-acf-field-radio.php:212 -#: includes/fields/class-acf-field-taxonomy.php:736 -msgid "Return Value" -msgstr "返回值" - -#: includes/fields/class-acf-field-image.php:162 -msgid "Add Image" -msgstr "添加图片" - -#: includes/fields/class-acf-field-image.php:162 -msgid "No image selected" -msgstr "没有选择图片" - -#: includes/assets.php:352 includes/fields/class-acf-field-file.php:162 -#: includes/fields/class-acf-field-image.php:142 -#: includes/fields/class-acf-field-link.php:145 assets/build/js/acf.js:1563 -#: assets/build/js/acf.js:1657 -msgid "Remove" -msgstr "删除" - -#: includes/admin/views/acf-field-group/field.php:76 -#: includes/fields/class-acf-field-file.php:160 -#: includes/fields/class-acf-field-image.php:140 -#: includes/fields/class-acf-field-link.php:145 -msgid "Edit" -msgstr "编辑" - -#: includes/fields/class-acf-field-image.php:70 includes/media.php:55 -#: assets/build/js/acf-input.js:6837 assets/build/js/acf-input.js:7320 -msgid "All images" -msgstr "所有图片" - -#: includes/fields/class-acf-field-image.php:69 -#: assets/build/js/acf-input.js:3181 assets/build/js/acf-input.js:3399 -msgid "Update Image" -msgstr "更新图像" - -#: includes/fields/class-acf-field-image.php:68 -#: assets/build/js/acf-input.js:3180 assets/build/js/acf-input.js:3398 -msgid "Edit Image" -msgstr "编辑图片" - -#: includes/fields/class-acf-field-image.php:67 -#: assets/build/js/acf-input.js:3156 assets/build/js/acf-input.js:3373 -msgid "Select Image" -msgstr "选择图像" - -#: includes/fields/class-acf-field-image.php:25 -msgid "Image" -msgstr "图像" - -#: includes/fields/class-acf-field-message.php:125 -msgid "Allow HTML markup to display as visible text instead of rendering" -msgstr "显示 HTML 文本,而不是渲染 HTML" - -#: includes/fields/class-acf-field-message.php:124 -msgid "Escape HTML" -msgstr "转义 HTML" - -#: includes/fields/class-acf-field-message.php:116 -#: includes/fields/class-acf-field-textarea.php:172 -msgid "No Formatting" -msgstr "无格式" - -#: includes/fields/class-acf-field-message.php:115 -#: includes/fields/class-acf-field-textarea.php:171 -msgid "Automatically add <br>" -msgstr "自动添加 <br>" - -#: includes/fields/class-acf-field-message.php:114 -#: includes/fields/class-acf-field-textarea.php:170 -msgid "Automatically add paragraphs" -msgstr "自动添加段落" - -#: includes/fields/class-acf-field-message.php:110 -#: includes/fields/class-acf-field-textarea.php:166 -msgid "Controls how new lines are rendered" -msgstr "控制怎么显示新行" - -#: includes/fields/class-acf-field-message.php:109 -#: includes/fields/class-acf-field-textarea.php:165 -msgid "New Lines" -msgstr "新行" - -#: includes/fields/class-acf-field-date_picker.php:232 -#: includes/fields/class-acf-field-date_time_picker.php:220 -msgid "Week Starts On" -msgstr "每周开始于" - -#: includes/fields/class-acf-field-date_picker.php:201 -msgid "The format used when saving a value" -msgstr "保存值时使用的格式" - -#: includes/fields/class-acf-field-date_picker.php:200 -msgid "Save Format" -msgstr "保存格式" - -#: includes/fields/class-acf-field-date_picker.php:67 -msgctxt "Date Picker JS weekHeader" -msgid "Wk" -msgstr "周" - -#: includes/fields/class-acf-field-date_picker.php:66 -msgctxt "Date Picker JS prevText" -msgid "Prev" -msgstr "上一页" - -#: includes/fields/class-acf-field-date_picker.php:65 -msgctxt "Date Picker JS nextText" -msgid "Next" -msgstr "下一个" - -#: includes/fields/class-acf-field-date_picker.php:64 -msgctxt "Date Picker JS currentText" -msgid "Today" -msgstr "今日" - -#: includes/fields/class-acf-field-date_picker.php:63 -msgctxt "Date Picker JS closeText" -msgid "Done" -msgstr "完成" - -#: includes/fields/class-acf-field-date_picker.php:25 -msgid "Date Picker" -msgstr "日期选择" - -#: includes/fields/class-acf-field-image.php:248 -#: includes/fields/class-acf-field-image.php:284 -#: includes/fields/class-acf-field-oembed.php:268 -msgid "Width" -msgstr "宽度" - -#: includes/fields/class-acf-field-oembed.php:265 -#: includes/fields/class-acf-field-oembed.php:277 -msgid "Embed Size" -msgstr "嵌入尺寸" - -#: includes/fields/class-acf-field-oembed.php:222 -msgid "Enter URL" -msgstr "输入 URL" - -#: includes/fields/class-acf-field-oembed.php:25 -msgid "oEmbed" -msgstr "oEmbed(嵌入)" - -#: includes/fields/class-acf-field-true_false.php:184 -msgid "Text shown when inactive" -msgstr "非激活时显示的文字" - -#: includes/fields/class-acf-field-true_false.php:183 -msgid "Off Text" -msgstr "关闭文本" - -#: includes/fields/class-acf-field-true_false.php:168 -msgid "Text shown when active" -msgstr "激活时显示的文本" - -#: includes/fields/class-acf-field-true_false.php:167 -msgid "On Text" -msgstr "打开文本" - -#: includes/fields/class-acf-field-select.php:450 -#: includes/fields/class-acf-field-true_false.php:199 -msgid "Stylized UI" -msgstr "风格化的用户界面" - -#: includes/fields/class-acf-field-button-group.php:157 -#: includes/fields/class-acf-field-checkbox.php:361 -#: includes/fields/class-acf-field-color_picker.php:156 -#: includes/fields/class-acf-field-email.php:117 -#: includes/fields/class-acf-field-number.php:128 -#: includes/fields/class-acf-field-radio.php:202 -#: includes/fields/class-acf-field-range.php:164 -#: includes/fields/class-acf-field-select.php:380 -#: includes/fields/class-acf-field-text.php:103 -#: includes/fields/class-acf-field-textarea.php:103 -#: includes/fields/class-acf-field-true_false.php:147 -#: includes/fields/class-acf-field-url.php:101 -#: includes/fields/class-acf-field-wysiwyg.php:311 -msgid "Default Value" -msgstr "默认值" - -#: includes/fields/class-acf-field-true_false.php:138 -msgid "Displays text alongside the checkbox" -msgstr "在复选框旁边显示文本" - -#: includes/fields/class-acf-field-message.php:26 -#: includes/fields/class-acf-field-message.php:99 -#: includes/fields/class-acf-field-true_false.php:137 -msgid "Message" -msgstr "消息" - -#: includes/assets.php:351 includes/fields/class-acf-field-true_false.php:86 -#: includes/fields/class-acf-field-true_false.php:187 -#: assets/build/js/acf.js:1740 assets/build/js/acf.js:1857 -msgid "No" -msgstr "否" - -#: includes/assets.php:350 includes/fields/class-acf-field-true_false.php:83 -#: includes/fields/class-acf-field-true_false.php:171 -#: assets/build/js/acf.js:1739 assets/build/js/acf.js:1856 -msgid "Yes" -msgstr "是" - -#: includes/fields/class-acf-field-true_false.php:25 -msgid "True / False" -msgstr "真 / 假 (开关)" - -#: includes/fields/class-acf-field-group.php:474 -msgid "Row" -msgstr "行" - -#: includes/fields/class-acf-field-group.php:473 -msgid "Table" -msgstr "表" - -#: includes/admin/post-types/admin-field-group.php:140 -#: includes/fields/class-acf-field-group.php:472 -msgid "Block" -msgstr "区块" - -#: includes/fields/class-acf-field-group.php:467 -msgid "Specify the style used to render the selected fields" -msgstr "指定用于呈现所选字段的样式" - -#: includes/fields.php:356 includes/fields/class-acf-field-button-group.php:215 -#: includes/fields/class-acf-field-checkbox.php:435 -#: includes/fields/class-acf-field-group.php:466 -#: includes/fields/class-acf-field-radio.php:286 -msgid "Layout" -msgstr "样式" - -#: includes/fields/class-acf-field-group.php:450 -msgid "Sub Fields" -msgstr "子字段" - -#: includes/fields/class-acf-field-group.php:25 -msgid "Group" -msgstr "分组" - -#: includes/fields/class-acf-field-google-map.php:235 -msgid "Customize the map height" -msgstr "自定义地图高度" - -#: includes/fields/class-acf-field-google-map.php:234 -#: includes/fields/class-acf-field-image.php:259 -#: includes/fields/class-acf-field-image.php:295 -#: includes/fields/class-acf-field-oembed.php:280 -msgid "Height" -msgstr "高度" - -#: includes/fields/class-acf-field-google-map.php:223 -msgid "Set the initial zoom level" -msgstr "设置初始缩放级别" - -#: includes/fields/class-acf-field-google-map.php:222 -msgid "Zoom" -msgstr "缩放" - -#: includes/fields/class-acf-field-google-map.php:196 -#: includes/fields/class-acf-field-google-map.php:209 -msgid "Center the initial map" -msgstr "居中显示初始地图" - -#: includes/fields/class-acf-field-google-map.php:195 -#: includes/fields/class-acf-field-google-map.php:208 -msgid "Center" -msgstr "居中" - -#: includes/fields/class-acf-field-google-map.php:163 -msgid "Search for address..." -msgstr "搜索地址..." - -#: includes/fields/class-acf-field-google-map.php:160 -msgid "Find current location" -msgstr "搜索当前位置" - -#: includes/fields/class-acf-field-google-map.php:159 -msgid "Clear location" -msgstr "清除位置" - -#: includes/fields/class-acf-field-google-map.php:158 -#: includes/fields/class-acf-field-relationship.php:628 -msgid "Search" -msgstr "搜索" - -#: includes/fields/class-acf-field-google-map.php:63 -#: assets/build/js/acf-input.js:2840 assets/build/js/acf-input.js:3026 -msgid "Sorry, this browser does not support geolocation" -msgstr "抱歉,浏览器不支持定位" - -#: includes/fields/class-acf-field-google-map.php:25 -msgid "Google Map" -msgstr "谷歌地图" - -#: includes/fields/class-acf-field-date_picker.php:212 -#: includes/fields/class-acf-field-date_time_picker.php:201 -#: includes/fields/class-acf-field-time_picker.php:132 -msgid "The format returned via template functions" -msgstr "通过模板函数返回的格式" - -#: includes/fields/class-acf-field-color_picker.php:180 -#: includes/fields/class-acf-field-date_picker.php:211 -#: includes/fields/class-acf-field-date_time_picker.php:200 -#: includes/fields/class-acf-field-image.php:187 -#: includes/fields/class-acf-field-post_object.php:411 -#: includes/fields/class-acf-field-relationship.php:638 -#: includes/fields/class-acf-field-select.php:391 -#: includes/fields/class-acf-field-time_picker.php:131 -#: includes/fields/class-acf-field-user.php:66 -msgid "Return Format" -msgstr "返回格式" - -#: includes/fields/class-acf-field-date_picker.php:190 -#: includes/fields/class-acf-field-date_picker.php:221 -#: includes/fields/class-acf-field-date_time_picker.php:192 -#: includes/fields/class-acf-field-date_time_picker.php:210 -#: includes/fields/class-acf-field-time_picker.php:123 -#: includes/fields/class-acf-field-time_picker.php:139 -msgid "Custom:" -msgstr "自定义:" - -#: includes/fields/class-acf-field-date_picker.php:182 -#: includes/fields/class-acf-field-date_time_picker.php:183 -#: includes/fields/class-acf-field-time_picker.php:116 -msgid "The format displayed when editing a post" -msgstr "编辑文章的时候显示的格式" - -#: includes/fields/class-acf-field-date_picker.php:181 -#: includes/fields/class-acf-field-date_time_picker.php:182 -#: includes/fields/class-acf-field-time_picker.php:115 -msgid "Display Format" -msgstr "显示格式" - -#: includes/fields/class-acf-field-time_picker.php:25 -msgid "Time Picker" -msgstr "时间选择" - -#. translators: counts for inactive field groups -#: acf.php:503 -msgid "Inactive (%s)" -msgid_plural "Inactive (%s)" -msgstr[0] "已停用 (%s)" - -#: acf.php:462 -msgid "No Fields found in Trash" -msgstr "回收站里没有字段" - -#: acf.php:461 -msgid "No Fields found" -msgstr "没找到字段" - -#: acf.php:460 -msgid "Search Fields" -msgstr "搜索字段" - -#: acf.php:459 -msgid "View Field" -msgstr "视图字段" - -#: acf.php:458 includes/admin/views/acf-field-group/fields.php:115 -msgid "New Field" -msgstr "新字段" - -#: acf.php:457 -msgid "Edit Field" -msgstr "编辑字段" - -#: acf.php:456 -msgid "Add New Field" -msgstr "添加新字段" - -#: acf.php:454 -msgid "Field" -msgstr "字段" - -#: acf.php:453 includes/admin/post-types/admin-field-group.php:163 -#: includes/admin/post-types/admin-field-groups.php:119 -#: includes/admin/views/acf-field-group/fields.php:32 -msgid "Fields" -msgstr "字段" - -#: acf.php:428 -msgid "No Field Groups found in Trash" -msgstr "回收站中没有找到字段组" - -#: acf.php:427 -msgid "No Field Groups found" -msgstr "没有找到字段组" - -#: acf.php:426 -msgid "Search Field Groups" -msgstr "搜索字段组" - -#: acf.php:425 -msgid "View Field Group" -msgstr "查看字段组" - -#: acf.php:424 -msgid "New Field Group" -msgstr "新建字段组" - -#: acf.php:423 -msgid "Edit Field Group" -msgstr "编辑字段组" - -#: acf.php:422 -msgid "Add New Field Group" -msgstr "添加字段组" - -#: acf.php:421 acf.php:455 -#: includes/admin/views/acf-post-type/advanced-settings.php:219 -#: includes/admin/views/acf-post-type/advanced-settings.php:221 -#: includes/post-types/class-acf-post-type.php:93 -#: includes/post-types/class-acf-taxonomy.php:92 -msgid "Add New" -msgstr "新建" - -#: acf.php:420 -msgid "Field Group" -msgstr "字段组" - -#: acf.php:419 includes/admin/post-types/admin-field-groups.php:78 -#: includes/admin/post-types/admin-post-types.php:138 -#: includes/admin/post-types/admin-taxonomies.php:138 -msgid "Field Groups" -msgstr "字段组" - -#. Description of the plugin -msgid "Customize WordPress with powerful, professional and intuitive fields." -msgstr "【高级自定义字段 ACF】使用强大、专业和直观的字段自定义WordPress。" - -#. Plugin URI of the plugin -msgid "https://www.advancedcustomfields.com" -msgstr "https://www.advancedcustomfields.com" - -#. Plugin Name of the plugin -#: acf.php:94 -msgid "Advanced Custom Fields" -msgstr "Advanced Custom Fields" - -#: pro/acf-pro.php:27 -msgid "Advanced Custom Fields PRO" -msgstr "Advanced Custom Fields 专业版" - -#: pro/blocks.php:170 -msgid "Block type name is required." -msgstr "" - -#. translators: The name of the block type -#: pro/blocks.php:178 -msgid "Block type \"%s\" is already registered." -msgstr "" - -#: pro/blocks.php:726 -msgid "Switch to Edit" -msgstr "" - -#: pro/blocks.php:727 -msgid "Switch to Preview" -msgstr "" - -#: pro/blocks.php:728 -msgid "Change content alignment" -msgstr "" - -#. translators: %s: Block type title -#: pro/blocks.php:731 -msgid "%s settings" -msgstr "" - -#: pro/blocks.php:936 -msgid "This block contains no editable fields." -msgstr "" - -#. translators: %s: an admin URL to the field group edit screen -#: pro/blocks.php:942 -msgid "" -"Assign a field group to add fields to " -"this block." -msgstr "" - -#: pro/options-page.php:78 -msgid "Options Updated" -msgstr "选项已更新" - -#: pro/updates.php:99 -msgid "" -"To enable updates, please enter your license key on the Updates page. If you don't have a licence key, please see details & pricing." -msgstr "" - -#: pro/updates.php:159 -msgid "" -"ACF Activation Error. Your defined license key has changed, but an " -"error occurred when deactivating your old licence" -msgstr "" - -#: pro/updates.php:154 -msgid "" -"ACF Activation Error. Your defined license key has changed, but an " -"error occurred when connecting to activation server" -msgstr "" - -#: pro/updates.php:192 -msgid "ACF Activation Error" -msgstr "" - -#: pro/updates.php:187 -msgid "" -"ACF Activation Error. An error occurred when connecting to activation " -"server" -msgstr "" - -#: pro/updates.php:279 -msgid "Check Again" -msgstr "重新检查" - -#: pro/updates.php:593 -msgid "ACF Activation Error. Could not connect to activation server" -msgstr "" - -#: pro/admin/admin-options-page.php:195 -msgid "Publish" -msgstr "发布" - -#: pro/admin/admin-options-page.php:199 -msgid "" -"No Custom Field Groups found for this options page. Create a " -"Custom Field Group" -msgstr "" -"这个选项页上还没有自定义字段群组。创建自定义字段群组" - -#: pro/admin/admin-updates.php:52 -msgid "Error. Could not connect to update server" -msgstr "错误,不能连接到更新服务器" - -#: pro/admin/admin-updates.php:212 -msgid "" -"Error. Could not authenticate update package. Please check again or " -"deactivate and reactivate your ACF PRO license." -msgstr "" - -#: pro/admin/admin-updates.php:199 -msgid "" -"Error. Your license for this site has expired or been deactivated. " -"Please reactivate your ACF PRO license." -msgstr "" - -#: pro/fields/class-acf-field-clone.php:27, -#: pro/fields/class-acf-field-repeater.php:31 -msgid "" -"Allows you to select and display existing fields. It does not duplicate any " -"fields in the database, but loads and displays the selected fields at run-" -"time. The Clone field can either replace itself with the selected fields or " -"display the selected fields as a group of subfields." -msgstr "" - -#: pro/fields/class-acf-field-clone.php:819 -msgid "Select one or more fields you wish to clone" -msgstr "" - -#: pro/fields/class-acf-field-clone.php:838 -msgid "Display" -msgstr "显示" - -#: pro/fields/class-acf-field-clone.php:839 -msgid "Specify the style used to render the clone field" -msgstr "" - -#: pro/fields/class-acf-field-clone.php:844 -msgid "Group (displays selected fields in a group within this field)" -msgstr "" - -#: pro/fields/class-acf-field-clone.php:845 -msgid "Seamless (replaces this field with selected fields)" -msgstr "" - -#: pro/fields/class-acf-field-clone.php:868 -msgid "Labels will be displayed as %s" -msgstr "" - -#: pro/fields/class-acf-field-clone.php:873 -msgid "Prefix Field Labels" -msgstr "" - -#: pro/fields/class-acf-field-clone.php:883 -msgid "Values will be saved as %s" -msgstr "" - -#: pro/fields/class-acf-field-clone.php:888 -msgid "Prefix Field Names" -msgstr "" - -#: pro/fields/class-acf-field-clone.php:1005 -msgid "Unknown field" -msgstr "" - -#: pro/fields/class-acf-field-clone.php:1042 -msgid "Unknown field group" -msgstr "" - -#: pro/fields/class-acf-field-clone.php:1046 -msgid "All fields from %s field group" -msgstr "" - -#: pro/fields/class-acf-field-flexible-content.php:27 -msgid "" -"Allows you to define, create and manage content with total control by " -"creating layouts that contain subfields that content editors can choose from." -msgstr "" - -#: pro/fields/class-acf-field-flexible-content.php:36, -#: pro/fields/class-acf-field-repeater.php:103, -#: pro/fields/class-acf-field-repeater.php:297 -msgid "Add Row" -msgstr "添加行" - -#: pro/fields/class-acf-field-flexible-content.php:76, -#: pro/fields/class-acf-field-flexible-content.php:943, -#: pro/fields/class-acf-field-flexible-content.php:1022 -#, fuzzy -#| msgid "layout" -msgid "layout" -msgid_plural "layouts" -msgstr[0] "布局" - -#: pro/fields/class-acf-field-flexible-content.php:77 -msgid "layouts" -msgstr "布局" - -#: pro/fields/class-acf-field-flexible-content.php:81, -#: pro/fields/class-acf-field-flexible-content.php:942, -#: pro/fields/class-acf-field-flexible-content.php:1021 -msgid "This field requires at least {min} {label} {identifier}" -msgstr "这个字段需要至少 {min} {label} {identifier}" - -#: pro/fields/class-acf-field-flexible-content.php:82 -msgid "This field has a limit of {max} {label} {identifier}" -msgstr "" - -#: pro/fields/class-acf-field-flexible-content.php:85 -msgid "{available} {label} {identifier} available (max {max})" -msgstr "{available} {label} {identifier} 可用 (max {max})" - -#: pro/fields/class-acf-field-flexible-content.php:86 -msgid "{required} {label} {identifier} required (min {min})" -msgstr "{required} {label} {identifier} 需要 (min {min})" - -#: pro/fields/class-acf-field-flexible-content.php:89 -msgid "Flexible Content requires at least 1 layout" -msgstr "灵活内容字段需要至少一个布局" - -#: pro/fields/class-acf-field-flexible-content.php:282 -msgid "Click the \"%s\" button below to start creating your layout" -msgstr "点击下面的 \"%s\" 按钮创建布局" - -#: pro/fields/class-acf-field-flexible-content.php:423 -msgid "Add layout" -msgstr "添加布局" - -#: pro/fields/class-acf-field-flexible-content.php:424 -msgid "Duplicate layout" -msgstr "" - -#: pro/fields/class-acf-field-flexible-content.php:425 -msgid "Remove layout" -msgstr "删除布局" - -#: pro/fields/class-acf-field-flexible-content.php:426, -#: pro/fields/class-acf-repeater-table.php:382 -msgid "Click to toggle" -msgstr "" - -#: pro/fields/class-acf-field-flexible-content.php:562 -msgid "Delete Layout" -msgstr "删除布局" - -#: pro/fields/class-acf-field-flexible-content.php:563 -msgid "Duplicate Layout" -msgstr "复制布局" - -#: pro/fields/class-acf-field-flexible-content.php:564 -msgid "Add New Layout" -msgstr "添加新布局" - -#: pro/fields/class-acf-field-flexible-content.php:564 -#, fuzzy -#| msgid "Add layout" -msgid "Add Layout" -msgstr "添加布局" - -#: pro/fields/class-acf-field-flexible-content.php:647 -msgid "Min" -msgstr "最小" - -#: pro/fields/class-acf-field-flexible-content.php:662 -msgid "Max" -msgstr "最大" - -#: pro/fields/class-acf-field-flexible-content.php:705 -msgid "Minimum Layouts" -msgstr "最小布局" - -#: pro/fields/class-acf-field-flexible-content.php:716 -msgid "Maximum Layouts" -msgstr "最大布局" - -#: pro/fields/class-acf-field-flexible-content.php:727, -#: pro/fields/class-acf-field-repeater.php:293 -msgid "Button Label" -msgstr "按钮标签" - -#: pro/fields/class-acf-field-flexible-content.php:1710, -#: pro/fields/class-acf-field-repeater.php:918 -msgid "%s must be of type array or null." -msgstr "" - -#: pro/fields/class-acf-field-flexible-content.php:1721 -msgid "%1$s must contain at least %2$s %3$s layout." -msgid_plural "%1$s must contain at least %2$s %3$s layouts." -msgstr[0] "" - -#: pro/fields/class-acf-field-flexible-content.php:1737 -msgid "%1$s must contain at most %2$s %3$s layout." -msgid_plural "%1$s must contain at most %2$s %3$s layouts." -msgstr[0] "" - -#: pro/fields/class-acf-field-gallery.php:27 -msgid "" -"An interactive interface for managing a collection of attachments, such as " -"images." -msgstr "" - -#: pro/fields/class-acf-field-gallery.php:77 -msgid "Add Image to Gallery" -msgstr "添加图片到相册" - -#: pro/fields/class-acf-field-gallery.php:78 -msgid "Maximum selection reached" -msgstr "已到最大选择" - -#: pro/fields/class-acf-field-gallery.php:324 -msgid "Length" -msgstr "长度" - -#: pro/fields/class-acf-field-gallery.php:368 -msgid "Caption" -msgstr "标题" - -#: pro/fields/class-acf-field-gallery.php:380 -msgid "Alt Text" -msgstr "" - -#: pro/fields/class-acf-field-gallery.php:504 -msgid "Add to gallery" -msgstr "添加到相册" - -#: pro/fields/class-acf-field-gallery.php:508 -msgid "Bulk actions" -msgstr "批量动作" - -#: pro/fields/class-acf-field-gallery.php:509 -msgid "Sort by date uploaded" -msgstr "按上传日期排序" - -#: pro/fields/class-acf-field-gallery.php:510 -msgid "Sort by date modified" -msgstr "按修改日期排序" - -#: pro/fields/class-acf-field-gallery.php:511 -msgid "Sort by title" -msgstr "按标题排序" - -#: pro/fields/class-acf-field-gallery.php:512 -msgid "Reverse current order" -msgstr "颠倒当前排序" - -#: pro/fields/class-acf-field-gallery.php:524 -msgid "Close" -msgstr "关闭" - -#: pro/fields/class-acf-field-gallery.php:615 -msgid "Minimum Selection" -msgstr "最小选择" - -#: pro/fields/class-acf-field-gallery.php:625 -msgid "Maximum Selection" -msgstr "最大选择" - -#: pro/fields/class-acf-field-gallery.php:707 -msgid "Allowed file types" -msgstr "允许的文字类型" - -#: pro/fields/class-acf-field-gallery.php:727 -msgid "Insert" -msgstr "" - -#: pro/fields/class-acf-field-gallery.php:728 -msgid "Specify where new attachments are added" -msgstr "" - -#: pro/fields/class-acf-field-gallery.php:732 -msgid "Append to the end" -msgstr "" - -#: pro/fields/class-acf-field-gallery.php:733 -msgid "Prepend to the beginning" -msgstr "" - -#: pro/fields/class-acf-field-repeater.php:66, -#: pro/fields/class-acf-field-repeater.php:463 -#, fuzzy -#| msgid "Minimum rows reached ({min} rows)" -msgid "Minimum rows not reached ({min} rows)" -msgstr "已到最小行数 ({min} 行)" - -#: pro/fields/class-acf-field-repeater.php:67 -msgid "Maximum rows reached ({max} rows)" -msgstr "已到最大行数 ({max} 行)" - -#: pro/fields/class-acf-field-repeater.php:68 -msgid "Error loading page" -msgstr "" - -#: pro/fields/class-acf-field-repeater.php:69 -msgid "Order will be assigned upon save" -msgstr "" - -#: pro/fields/class-acf-field-repeater.php:196 -msgid "Useful for fields with a large number of rows." -msgstr "" - -#: pro/fields/class-acf-field-repeater.php:207 -msgid "Rows Per Page" -msgstr "" - -#: pro/fields/class-acf-field-repeater.php:208 -msgid "Set the number of rows to be displayed on a page." -msgstr "" - -#: pro/fields/class-acf-field-repeater.php:240 -msgid "Minimum Rows" -msgstr "最小行数" - -#: pro/fields/class-acf-field-repeater.php:251 -msgid "Maximum Rows" -msgstr "最大行数" - -#: pro/fields/class-acf-field-repeater.php:281 -msgid "Collapsed" -msgstr "" - -#: pro/fields/class-acf-field-repeater.php:282 -msgid "Select a sub field to show when row is collapsed" -msgstr "" - -#: pro/fields/class-acf-field-repeater.php:1060 -msgid "Invalid field key or name." -msgstr "" - -#: pro/fields/class-acf-field-repeater.php:1069 -msgid "There was an error retrieving the field." -msgstr "" - -#: pro/fields/class-acf-repeater-table.php:369 -#, fuzzy -#| msgid "Drag to reorder" -msgid "Click to reorder" -msgstr "拖拽排序" - -#: pro/fields/class-acf-repeater-table.php:402 -msgid "Add row" -msgstr "添加行" - -#: pro/fields/class-acf-repeater-table.php:403 -msgid "Duplicate row" -msgstr "" - -#: pro/fields/class-acf-repeater-table.php:404 -msgid "Remove row" -msgstr "删除行" - -#: pro/fields/class-acf-repeater-table.php:448, -#: pro/fields/class-acf-repeater-table.php:465, -#: pro/fields/class-acf-repeater-table.php:466 -msgid "Current Page" -msgstr "" - -#: pro/fields/class-acf-repeater-table.php:456, -#: pro/fields/class-acf-repeater-table.php:457 -#, fuzzy -#| msgid "Front Page" -msgid "First Page" -msgstr "首页" - -#: pro/fields/class-acf-repeater-table.php:460, -#: pro/fields/class-acf-repeater-table.php:461 -#, fuzzy -#| msgid "Posts Page" -msgid "Previous Page" -msgstr "文章页" - -#. translators: 1: Current page, 2: Total pages. -#: pro/fields/class-acf-repeater-table.php:470 -msgctxt "paging" -msgid "%1$s of %2$s" -msgstr "" - -#: pro/fields/class-acf-repeater-table.php:477, -#: pro/fields/class-acf-repeater-table.php:478 -#, fuzzy -#| msgid "Front Page" -msgid "Next Page" -msgstr "首页" - -#: pro/fields/class-acf-repeater-table.php:481, -#: pro/fields/class-acf-repeater-table.php:482 -#, fuzzy -#| msgid "Posts Page" -msgid "Last Page" -msgstr "文章页" - -#: pro/locations/class-acf-location-block.php:71 -msgid "No block types exist" -msgstr "" - -#: pro/locations/class-acf-location-options-page.php:70 -msgid "No options pages exist" -msgstr "还没有选项页面" - -#: pro/admin/views/html-settings-updates.php:6 -msgid "Deactivate License" -msgstr "关闭许可证" - -#: pro/admin/views/html-settings-updates.php:6 -msgid "Activate License" -msgstr "激活许可证" - -#: pro/admin/views/html-settings-updates.php:16 -msgid "License Information" -msgstr "" - -#: pro/admin/views/html-settings-updates.php:34 -msgid "" -"To unlock updates, please enter your license key below. If you don't have a " -"licence key, please see details & pricing." -msgstr "" - -#: pro/admin/views/html-settings-updates.php:37 -msgid "License Key" -msgstr "许可证号" - -#: pro/admin/views/html-settings-updates.php:22 -msgid "Your license key is defined in wp-config.php." -msgstr "" - -#: pro/admin/views/html-settings-updates.php:29 -msgid "Retry Activation" -msgstr "" - -#: pro/admin/views/html-settings-updates.php:61 -msgid "Update Information" -msgstr "更新信息" - -#: pro/admin/views/html-settings-updates.php:68 -msgid "Current Version" -msgstr "当前版本" - -#: pro/admin/views/html-settings-updates.php:76 -msgid "Latest Version" -msgstr "最新版本" - -#: pro/admin/views/html-settings-updates.php:84 -msgid "Update Available" -msgstr "可用更新" - -#: pro/admin/views/html-settings-updates.php:98 -msgid "Upgrade Notice" -msgstr "更新通知" - -#: pro/admin/views/html-settings-updates.php:126 -msgid "Check For Updates" -msgstr "" - -#: pro/admin/views/html-settings-updates.php:121 -#, fuzzy -#| msgid "Please enter your license key above to unlock updates" -msgid "Enter your license key to unlock updates" -msgstr "在上面输入许可证号解锁更新" - -#: pro/admin/views/html-settings-updates.php:119 -msgid "Update Plugin" -msgstr "更新插件" - -#: pro/admin/views/html-settings-updates.php:117 -msgid "Please reactivate your license to unlock updates" -msgstr "" diff --git a/lang/acf-zh_TW.mo b/lang/acf-zh_TW.mo deleted file mode 100644 index 416c2cf..0000000 Binary files a/lang/acf-zh_TW.mo and /dev/null differ diff --git a/lang/acf-zh_TW.po b/lang/acf-zh_TW.po deleted file mode 100644 index 4058a8a..0000000 --- a/lang/acf-zh_TW.po +++ /dev/null @@ -1,830 +0,0 @@ -# Advanced Custom Fields Translations are a combination of translate.wordpress.org contributions, -# combined with user contributed strings for the PRO version. -# Translations from translate.wordpress.org take priority over translations in this file. -# translate.wordpress.org contributions are synced at the time of each release. -# -# If you would like to contribute translations, please visit -# https://translate.wordpress.org/projects/wp-plugins/advanced-custom-fields/stable/ -# -# For additional ACF PRO strings, please submit a pull request over on the ACF GitHub repo at -# http://github.com/advancedcustomfields/acf using the .pot (and any existing .po) files in /lang/pro/ -# -# This file is distributed under the same license as Advanced Custom Fields. -msgid "" -msgstr "" -"PO-Revision-Date: 2023-11-28T09:14:32+00:00\n" -"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n" -"Language: zh_TW\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: gettext\n" -"Project-Id-Version: Advanced Custom Fields\n" - -#: pro/acf-pro.php:27 -msgid "Advanced Custom Fields PRO" -msgstr "Advanced Custom Fields PRO" - -#: pro/blocks.php:170 -#, fuzzy -#| msgid "%s value is required" -msgid "Block type name is required." -msgstr "%s 值為必填" - -#. translators: The name of the block type -#: pro/blocks.php:178 -msgid "Block type \"%s\" is already registered." -msgstr "" - -#: pro/blocks.php:726 -msgid "Switch to Edit" -msgstr "切換至編輯" - -#: pro/blocks.php:727 -msgid "Switch to Preview" -msgstr "切換至預覽" - -#: pro/blocks.php:728 -msgid "Change content alignment" -msgstr "" - -#. translators: %s: Block type title -#: pro/blocks.php:731 -#, fuzzy -#| msgid "Settings" -msgid "%s settings" -msgstr "設定" - -#: pro/blocks.php:936 -msgid "This block contains no editable fields." -msgstr "" - -#. translators: %s: an admin URL to the field group edit screen -#: pro/blocks.php:942 -msgid "" -"Assign a field group to add fields to " -"this block." -msgstr "" - -#: pro/options-page.php:47 -msgid "Options" -msgstr "選項" - -#: pro/options-page.php:77, pro/fields/class-acf-field-gallery.php:527 -msgid "Update" -msgstr "更新" - -#: pro/options-page.php:78 -msgid "Options Updated" -msgstr "選項已更新" - -#: pro/updates.php:99 -#, fuzzy -#| msgid "" -#| "To enable updates, please enter your license key on the Updates page. If you don't have a licence key, please see details & pricing." -msgid "" -"To enable updates, please enter your license key on the Updates page. If you don't have a licence key, please see details & pricing." -msgstr "" -"要啟用更新,請在更新頁面上輸入您的授權金鑰。 如果您沒有授" -"權金鑰,請參閱詳情和定價。" - -#: pro/updates.php:159 -msgid "" -"ACF Activation Error. Your defined license key has changed, but an " -"error occurred when deactivating your old licence" -msgstr "" - -#: pro/updates.php:154 -msgid "" -"ACF Activation Error. Your defined license key has changed, but an " -"error occurred when connecting to activation server" -msgstr "" - -#: pro/updates.php:192 -msgid "ACF Activation Error" -msgstr "" - -#: pro/updates.php:187 -#, fuzzy -#| msgid "Error. Could not connect to update server" -msgid "" -"ACF Activation Error. An error occurred when connecting to activation " -"server" -msgstr "錯誤。 無法連接到更新伺服器" - -#: pro/updates.php:279 -msgid "Check Again" -msgstr "再檢查一次" - -#: pro/updates.php:593 -#, fuzzy -#| msgid "Error. Could not connect to update server" -msgid "ACF Activation Error. Could not connect to activation server" -msgstr "錯誤。 無法連接到更新伺服器" - -#: pro/admin/admin-options-page.php:195 -msgid "Publish" -msgstr "發佈" - -#: pro/admin/admin-options-page.php:199 -msgid "" -"No Custom Field Groups found for this options page. Create a " -"Custom Field Group" -msgstr "此設定頁沒有自訂欄位群組。建立一個自訂欄位群組" - -#: pro/admin/admin-options-page.php:309 -msgid "Edit field group" -msgstr "編輯欄位群組" - -#: pro/admin/admin-updates.php:52 -msgid "Error. Could not connect to update server" -msgstr "錯誤。 無法連接到更新伺服器" - -#: pro/admin/admin-updates.php:122, -#: pro/admin/views/html-settings-updates.php:12 -msgid "Updates" -msgstr "更新" - -#: pro/admin/admin-updates.php:212 -msgid "" -"Error. Could not authenticate update package. Please check again or " -"deactivate and reactivate your ACF PRO license." -msgstr "" -"錯誤。無法對更新包進行驗證。請再次檢查或停用並重新啟動您的 ACF PRO 授" -"權。" - -#: pro/admin/admin-updates.php:199 -#, fuzzy -#| msgid "" -#| "Error. Could not authenticate update package. Please check again " -#| "or deactivate and reactivate your ACF PRO license." -msgid "" -"Error. Your license for this site has expired or been deactivated. " -"Please reactivate your ACF PRO license." -msgstr "" -"錯誤。無法對更新包進行驗證。請再次檢查或停用並重新啟動您的 ACF PRO 授" -"權。" - -#: pro/fields/class-acf-field-clone.php:25 -msgctxt "noun" -msgid "Clone" -msgstr "分身" - -#: pro/fields/class-acf-field-clone.php:27, -#: pro/fields/class-acf-field-repeater.php:31 -msgid "" -"Allows you to select and display existing fields. It does not duplicate any " -"fields in the database, but loads and displays the selected fields at run-" -"time. The Clone field can either replace itself with the selected fields or " -"display the selected fields as a group of subfields." -msgstr "" - -#: pro/fields/class-acf-field-clone.php:818, -#: pro/fields/class-acf-field-flexible-content.php:78 -msgid "Fields" -msgstr "欄位" - -#: pro/fields/class-acf-field-clone.php:819 -msgid "Select one or more fields you wish to clone" -msgstr "選取一或多個你希望複製的欄位" - -#: pro/fields/class-acf-field-clone.php:838 -msgid "Display" -msgstr "顯示" - -#: pro/fields/class-acf-field-clone.php:839 -msgid "Specify the style used to render the clone field" -msgstr "指定繪製分身欄位的樣式" - -#: pro/fields/class-acf-field-clone.php:844 -msgid "Group (displays selected fields in a group within this field)" -msgstr "群組(顯示該欄位內群組中被選定的欄位)" - -#: pro/fields/class-acf-field-clone.php:845 -msgid "Seamless (replaces this field with selected fields)" -msgstr "無縫(用選定欄位取代此欄位)" - -#: pro/fields/class-acf-field-clone.php:854, -#: pro/fields/class-acf-field-flexible-content.php:558, -#: pro/fields/class-acf-field-flexible-content.php:616, -#: pro/fields/class-acf-field-repeater.php:177 -msgid "Layout" -msgstr "版面配置" - -#: pro/fields/class-acf-field-clone.php:855 -msgid "Specify the style used to render the selected fields" -msgstr "指定用於呈現選定欄位的樣式" - -#: pro/fields/class-acf-field-clone.php:860, -#: pro/fields/class-acf-field-flexible-content.php:629, -#: pro/fields/class-acf-field-repeater.php:185, -#: pro/locations/class-acf-location-block.php:22 -msgid "Block" -msgstr "區塊" - -#: pro/fields/class-acf-field-clone.php:861, -#: pro/fields/class-acf-field-flexible-content.php:628, -#: pro/fields/class-acf-field-repeater.php:184 -msgid "Table" -msgstr "表格" - -#: pro/fields/class-acf-field-clone.php:862, -#: pro/fields/class-acf-field-flexible-content.php:630, -#: pro/fields/class-acf-field-repeater.php:186 -msgid "Row" -msgstr "行" - -#: pro/fields/class-acf-field-clone.php:868 -msgid "Labels will be displayed as %s" -msgstr "標籤將顯示為%s" - -#: pro/fields/class-acf-field-clone.php:873 -msgid "Prefix Field Labels" -msgstr "前置欄位標籤" - -#: pro/fields/class-acf-field-clone.php:883 -msgid "Values will be saved as %s" -msgstr "值將被儲存為 %s" - -#: pro/fields/class-acf-field-clone.php:888 -msgid "Prefix Field Names" -msgstr "前置欄位名稱" - -#: pro/fields/class-acf-field-clone.php:1005 -msgid "Unknown field" -msgstr "未知的欄位" - -#: pro/fields/class-acf-field-clone.php:1009 -msgid "(no title)" -msgstr "(無標題)" - -#: pro/fields/class-acf-field-clone.php:1042 -msgid "Unknown field group" -msgstr "未知的欄位群組" - -#: pro/fields/class-acf-field-clone.php:1046 -msgid "All fields from %s field group" -msgstr "所有欄位來自 %s 欄位群組" - -#: pro/fields/class-acf-field-flexible-content.php:25 -msgid "Flexible Content" -msgstr "彈性內容" - -#: pro/fields/class-acf-field-flexible-content.php:27 -msgid "" -"Allows you to define, create and manage content with total control by " -"creating layouts that contain subfields that content editors can choose from." -msgstr "" - -#: pro/fields/class-acf-field-flexible-content.php:27 -msgid "We do not recommend using this field in ACF Blocks." -msgstr "" - -#: pro/fields/class-acf-field-flexible-content.php:36, -#: pro/fields/class-acf-field-repeater.php:103, -#: pro/fields/class-acf-field-repeater.php:297 -msgid "Add Row" -msgstr "新增列" - -#: pro/fields/class-acf-field-flexible-content.php:76, -#: pro/fields/class-acf-field-flexible-content.php:943, -#: pro/fields/class-acf-field-flexible-content.php:1022 -msgid "layout" -msgid_plural "layouts" -msgstr[0] "版面配置" - -#: pro/fields/class-acf-field-flexible-content.php:77 -msgid "layouts" -msgstr "版面" - -#: pro/fields/class-acf-field-flexible-content.php:81, -#: pro/fields/class-acf-field-flexible-content.php:942, -#: pro/fields/class-acf-field-flexible-content.php:1021 -msgid "This field requires at least {min} {label} {identifier}" -msgstr "這個欄位至少需要 {min} {label} {identifier}" - -#: pro/fields/class-acf-field-flexible-content.php:82 -msgid "This field has a limit of {max} {label} {identifier}" -msgstr "此欄位的限制為 {max} {label} {identifier}" - -#: pro/fields/class-acf-field-flexible-content.php:85 -msgid "{available} {label} {identifier} available (max {max})" -msgstr "{available} {label} {identifier} 可用 (最大 {max})" - -#: pro/fields/class-acf-field-flexible-content.php:86 -msgid "{required} {label} {identifier} required (min {min})" -msgstr "{required} {label} {identifier} 需要 (最小 {min})" - -#: pro/fields/class-acf-field-flexible-content.php:89 -msgid "Flexible Content requires at least 1 layout" -msgstr "彈性內容需要至少 1 個版面配置" - -#: pro/fields/class-acf-field-flexible-content.php:282 -msgid "Click the \"%s\" button below to start creating your layout" -msgstr "點擊下方的 \"%s\" 按鈕以新增設定" - -#: pro/fields/class-acf-field-flexible-content.php:420, -#: pro/fields/class-acf-repeater-table.php:366 -msgid "Drag to reorder" -msgstr "拖曳排序" - -#: pro/fields/class-acf-field-flexible-content.php:423 -msgid "Add layout" -msgstr "新增版面" - -#: pro/fields/class-acf-field-flexible-content.php:424 -#, fuzzy -#| msgid "Duplicate Layout" -msgid "Duplicate layout" -msgstr "複製版面" - -#: pro/fields/class-acf-field-flexible-content.php:425 -msgid "Remove layout" -msgstr "移除版面" - -#: pro/fields/class-acf-field-flexible-content.php:426, -#: pro/fields/class-acf-repeater-table.php:382 -msgid "Click to toggle" -msgstr "點擊切換" - -#: pro/fields/class-acf-field-flexible-content.php:562 -msgid "Delete Layout" -msgstr "刪除版面" - -#: pro/fields/class-acf-field-flexible-content.php:563 -msgid "Duplicate Layout" -msgstr "複製版面" - -#: pro/fields/class-acf-field-flexible-content.php:564 -msgid "Add New Layout" -msgstr "新增版面" - -#: pro/fields/class-acf-field-flexible-content.php:564 -#, fuzzy -#| msgid "Add layout" -msgid "Add Layout" -msgstr "新增版面" - -#: pro/fields/class-acf-field-flexible-content.php:593 -msgid "Label" -msgstr "標籤" - -#: pro/fields/class-acf-field-flexible-content.php:609 -msgid "Name" -msgstr "名稱" - -#: pro/fields/class-acf-field-flexible-content.php:647 -msgid "Min" -msgstr "最小" - -#: pro/fields/class-acf-field-flexible-content.php:662 -msgid "Max" -msgstr "最大" - -#: pro/fields/class-acf-field-flexible-content.php:705 -msgid "Minimum Layouts" -msgstr "最少可使用版面數量" - -#: pro/fields/class-acf-field-flexible-content.php:716 -msgid "Maximum Layouts" -msgstr "最多可使用版面數量" - -#: pro/fields/class-acf-field-flexible-content.php:727, -#: pro/fields/class-acf-field-repeater.php:293 -msgid "Button Label" -msgstr "按鈕標籤" - -#: pro/fields/class-acf-field-flexible-content.php:1710, -#: pro/fields/class-acf-field-repeater.php:918 -msgid "%s must be of type array or null." -msgstr "" - -#: pro/fields/class-acf-field-flexible-content.php:1721 -msgid "%1$s must contain at least %2$s %3$s layout." -msgid_plural "%1$s must contain at least %2$s %3$s layouts." -msgstr[0] "" - -#: pro/fields/class-acf-field-flexible-content.php:1737 -msgid "%1$s must contain at most %2$s %3$s layout." -msgid_plural "%1$s must contain at most %2$s %3$s layouts." -msgstr[0] "" - -#: pro/fields/class-acf-field-gallery.php:25 -msgid "Gallery" -msgstr "圖庫" - -#: pro/fields/class-acf-field-gallery.php:27 -msgid "" -"An interactive interface for managing a collection of attachments, such as " -"images." -msgstr "" - -#: pro/fields/class-acf-field-gallery.php:77 -msgid "Add Image to Gallery" -msgstr "新增圖片到圖庫" - -#: pro/fields/class-acf-field-gallery.php:78 -msgid "Maximum selection reached" -msgstr "已達到最大選擇" - -#: pro/fields/class-acf-field-gallery.php:324 -msgid "Length" -msgstr "長度" - -#: pro/fields/class-acf-field-gallery.php:339 -msgid "Edit" -msgstr "編輯" - -#: pro/fields/class-acf-field-gallery.php:340, -#: pro/fields/class-acf-field-gallery.php:495 -msgid "Remove" -msgstr "刪除" - -#: pro/fields/class-acf-field-gallery.php:356 -msgid "Title" -msgstr "標題" - -#: pro/fields/class-acf-field-gallery.php:368 -msgid "Caption" -msgstr "標題" - -#: pro/fields/class-acf-field-gallery.php:380 -msgid "Alt Text" -msgstr "替代文字" - -#: pro/fields/class-acf-field-gallery.php:392 -msgid "Description" -msgstr "描述" - -#: pro/fields/class-acf-field-gallery.php:504 -msgid "Add to gallery" -msgstr "加入圖庫" - -#: pro/fields/class-acf-field-gallery.php:508 -msgid "Bulk actions" -msgstr "批次操作" - -#: pro/fields/class-acf-field-gallery.php:509 -msgid "Sort by date uploaded" -msgstr "依上傳日期排序" - -#: pro/fields/class-acf-field-gallery.php:510 -msgid "Sort by date modified" -msgstr "依修改日期排序" - -#: pro/fields/class-acf-field-gallery.php:511 -msgid "Sort by title" -msgstr "依標題排序" - -#: pro/fields/class-acf-field-gallery.php:512 -msgid "Reverse current order" -msgstr "反向目前順序" - -#: pro/fields/class-acf-field-gallery.php:524 -msgid "Close" -msgstr "關閉" - -#: pro/fields/class-acf-field-gallery.php:556 -msgid "Return Format" -msgstr "回傳格式" - -#: pro/fields/class-acf-field-gallery.php:562 -msgid "Image Array" -msgstr "圖片陣列" - -#: pro/fields/class-acf-field-gallery.php:563 -msgid "Image URL" -msgstr "圖片網址" - -#: pro/fields/class-acf-field-gallery.php:564 -msgid "Image ID" -msgstr "圖片ID" - -#: pro/fields/class-acf-field-gallery.php:572 -msgid "Library" -msgstr "媒體庫" - -#: pro/fields/class-acf-field-gallery.php:573 -msgid "Limit the media library choice" -msgstr "限制媒體庫選擇" - -#: pro/fields/class-acf-field-gallery.php:578, -#: pro/locations/class-acf-location-block.php:66 -msgid "All" -msgstr "所有" - -#: pro/fields/class-acf-field-gallery.php:579 -msgid "Uploaded to post" -msgstr "已上傳至文章" - -#: pro/fields/class-acf-field-gallery.php:615 -msgid "Minimum Selection" -msgstr "最小選擇" - -#: pro/fields/class-acf-field-gallery.php:625 -msgid "Maximum Selection" -msgstr "最大選擇" - -#: pro/fields/class-acf-field-gallery.php:635 -msgid "Minimum" -msgstr "最小" - -#: pro/fields/class-acf-field-gallery.php:636, -#: pro/fields/class-acf-field-gallery.php:672 -msgid "Restrict which images can be uploaded" -msgstr "限制哪些圖片可以上傳" - -#: pro/fields/class-acf-field-gallery.php:639, -#: pro/fields/class-acf-field-gallery.php:675 -msgid "Width" -msgstr "寬" - -#: pro/fields/class-acf-field-gallery.php:650, -#: pro/fields/class-acf-field-gallery.php:686 -msgid "Height" -msgstr "高" - -#: pro/fields/class-acf-field-gallery.php:662, -#: pro/fields/class-acf-field-gallery.php:698 -msgid "File size" -msgstr "檔案容量" - -#: pro/fields/class-acf-field-gallery.php:671 -msgid "Maximum" -msgstr "最大" - -#: pro/fields/class-acf-field-gallery.php:707 -msgid "Allowed file types" -msgstr "允許的檔案類型" - -#: pro/fields/class-acf-field-gallery.php:708 -msgid "Comma separated list. Leave blank for all types" -msgstr "請以逗號分隔列出。留白表示允許所有類型" - -#: pro/fields/class-acf-field-gallery.php:727 -msgid "Insert" -msgstr "插入" - -#: pro/fields/class-acf-field-gallery.php:728 -msgid "Specify where new attachments are added" -msgstr "指定新附件加入的位置" - -#: pro/fields/class-acf-field-gallery.php:732 -msgid "Append to the end" -msgstr "附加在後" - -#: pro/fields/class-acf-field-gallery.php:733 -msgid "Prepend to the beginning" -msgstr "插入至最前" - -#: pro/fields/class-acf-field-gallery.php:741 -msgid "Preview Size" -msgstr "預覽圖大小" - -#: pro/fields/class-acf-field-gallery.php:844 -#, fuzzy -#| msgid "%s requires at least %s selection" -#| msgid_plural "%s requires at least %s selections" -msgid "%1$s requires at least %2$s selection" -msgid_plural "%1$s requires at least %2$s selections" -msgstr[0] "%s 需要至少 %s 選擇" - -#: pro/fields/class-acf-field-repeater.php:29 -msgid "Repeater" -msgstr "重複器" - -#: pro/fields/class-acf-field-repeater.php:66, -#: pro/fields/class-acf-field-repeater.php:463 -#, fuzzy -#| msgid "Minimum rows reached ({min} rows)" -msgid "Minimum rows not reached ({min} rows)" -msgstr "已達最小行數 ( {min} 行 )" - -#: pro/fields/class-acf-field-repeater.php:67 -msgid "Maximum rows reached ({max} rows)" -msgstr "已達最大行數 ( {max} 行 )" - -#: pro/fields/class-acf-field-repeater.php:68 -msgid "Error loading page" -msgstr "" - -#: pro/fields/class-acf-field-repeater.php:69 -msgid "Order will be assigned upon save" -msgstr "" - -#: pro/fields/class-acf-field-repeater.php:162 -msgid "Sub Fields" -msgstr "子欄位" - -#: pro/fields/class-acf-field-repeater.php:195 -#, fuzzy -#| msgid "Position" -msgid "Pagination" -msgstr "欄位群組位置" - -#: pro/fields/class-acf-field-repeater.php:196 -msgid "Useful for fields with a large number of rows." -msgstr "" - -#: pro/fields/class-acf-field-repeater.php:207 -#, fuzzy -#| msgid "Posts Page" -msgid "Rows Per Page" -msgstr "文章頁面" - -#: pro/fields/class-acf-field-repeater.php:208 -#, fuzzy -#| msgid "Select the taxonomy to be displayed" -msgid "Set the number of rows to be displayed on a page." -msgstr "選擇要顯示的分類法" - -#: pro/fields/class-acf-field-repeater.php:240 -msgid "Minimum Rows" -msgstr "最小行數" - -#: pro/fields/class-acf-field-repeater.php:251 -msgid "Maximum Rows" -msgstr "最大行數" - -#: pro/fields/class-acf-field-repeater.php:281 -msgid "Collapsed" -msgstr "收合" - -#: pro/fields/class-acf-field-repeater.php:282 -msgid "Select a sub field to show when row is collapsed" -msgstr "選取一個子欄位,讓它在行列收合時顯示" - -#: pro/fields/class-acf-field-repeater.php:1045 -msgid "Invalid nonce." -msgstr "" - -#: pro/fields/class-acf-field-repeater.php:1060 -msgid "Invalid field key or name." -msgstr "" - -#: pro/fields/class-acf-field-repeater.php:1069 -msgid "There was an error retrieving the field." -msgstr "" - -#: pro/fields/class-acf-repeater-table.php:369 -#, fuzzy -#| msgid "Drag to reorder" -msgid "Click to reorder" -msgstr "拖曳排序" - -#: pro/fields/class-acf-repeater-table.php:402 -msgid "Add row" -msgstr "新增列" - -#: pro/fields/class-acf-repeater-table.php:403 -#, fuzzy -#| msgid "Duplicate" -msgid "Duplicate row" -msgstr "複製" - -#: pro/fields/class-acf-repeater-table.php:404 -msgid "Remove row" -msgstr "移除列" - -#: pro/fields/class-acf-repeater-table.php:448, -#: pro/fields/class-acf-repeater-table.php:465, -#: pro/fields/class-acf-repeater-table.php:466 -#, fuzzy -#| msgid "Current User" -msgid "Current Page" -msgstr "目前使用者" - -#: pro/fields/class-acf-repeater-table.php:456, -#: pro/fields/class-acf-repeater-table.php:457 -#, fuzzy -#| msgid "Front Page" -msgid "First Page" -msgstr "網站首頁" - -#: pro/fields/class-acf-repeater-table.php:460, -#: pro/fields/class-acf-repeater-table.php:461 -#, fuzzy -#| msgid "Posts Page" -msgid "Previous Page" -msgstr "文章頁面" - -#. translators: 1: Current page, 2: Total pages. -#: pro/fields/class-acf-repeater-table.php:470 -msgctxt "paging" -msgid "%1$s of %2$s" -msgstr "" - -#: pro/fields/class-acf-repeater-table.php:477, -#: pro/fields/class-acf-repeater-table.php:478 -#, fuzzy -#| msgid "Front Page" -msgid "Next Page" -msgstr "網站首頁" - -#: pro/fields/class-acf-repeater-table.php:481, -#: pro/fields/class-acf-repeater-table.php:482 -#, fuzzy -#| msgid "Posts Page" -msgid "Last Page" -msgstr "文章頁面" - -#: pro/locations/class-acf-location-block.php:71 -#, fuzzy -#| msgid "No options pages exist" -msgid "No block types exist" -msgstr "設定頁面不存在" - -#: pro/locations/class-acf-location-options-page.php:22 -msgid "Options Page" -msgstr "設定頁面" - -#: pro/locations/class-acf-location-options-page.php:70 -msgid "No options pages exist" -msgstr "設定頁面不存在" - -#: pro/admin/views/html-settings-updates.php:6 -msgid "Deactivate License" -msgstr "停用授權" - -#: pro/admin/views/html-settings-updates.php:6 -msgid "Activate License" -msgstr "啟用授權" - -#: pro/admin/views/html-settings-updates.php:16 -msgid "License Information" -msgstr "授權資訊" - -#: pro/admin/views/html-settings-updates.php:34 -msgid "" -"To unlock updates, please enter your license key below. If you don't have a " -"licence key, please see details & pricing." -msgstr "" -"要解鎖更新服務,請於下方輸入您的授權金鑰。若你沒有授權金鑰,請查閱 詳情與價目。" - -#: pro/admin/views/html-settings-updates.php:37 -msgid "License Key" -msgstr "授權金鑰" - -#: pro/admin/views/html-settings-updates.php:22 -msgid "Your license key is defined in wp-config.php." -msgstr "" - -#: pro/admin/views/html-settings-updates.php:29 -#, fuzzy -#| msgid "Activation Code" -msgid "Retry Activation" -msgstr "啟用碼" - -#: pro/admin/views/html-settings-updates.php:61 -msgid "Update Information" -msgstr "更新資訊" - -#: pro/admin/views/html-settings-updates.php:68 -msgid "Current Version" -msgstr "目前版本" - -#: pro/admin/views/html-settings-updates.php:76 -msgid "Latest Version" -msgstr "最新版本" - -#: pro/admin/views/html-settings-updates.php:84 -msgid "Update Available" -msgstr "可用更新" - -#: pro/admin/views/html-settings-updates.php:91 -msgid "No" -msgstr "否" - -#: pro/admin/views/html-settings-updates.php:89 -msgid "Yes" -msgstr "是" - -#: pro/admin/views/html-settings-updates.php:98 -msgid "Upgrade Notice" -msgstr "升級提醒" - -#: pro/admin/views/html-settings-updates.php:126 -msgid "Check For Updates" -msgstr "" - -#: pro/admin/views/html-settings-updates.php:121 -#, fuzzy -#| msgid "Please enter your license key above to unlock updates" -msgid "Enter your license key to unlock updates" -msgstr "請於上方輸入你的授權金鑰以解鎖更新" - -#: pro/admin/views/html-settings-updates.php:119 -msgid "Update Plugin" -msgstr "更新外掛" - -#: pro/admin/views/html-settings-updates.php:117 -#, fuzzy -#| msgid "Please enter your license key above to unlock updates" -msgid "Please reactivate your license to unlock updates" -msgstr "請於上方輸入你的授權金鑰以解鎖更新" diff --git a/lang/pro/acf-en_GB.po b/lang/pro/acf-en_GB.po index a60be1f..42b6ebe 100644 --- a/lang/pro/acf-en_GB.po +++ b/lang/pro/acf-en_GB.po @@ -4,7 +4,7 @@ msgid "" msgstr "" "Project-Id-Version: Advanced Custom Fields PRO\n" "Report-Msgid-Bugs-To: https://support.advancedcustomfields.com\n" -"POT-Creation-Date: 2023-11-28 09:14+0000\n" +"POT-Creation-Date: 2024-02-26 11:28+0000\n" "PO-Revision-Date: \n" "Last-Translator: WP Engine \n" "Language-Team: WP Engine \n" @@ -18,15 +18,15 @@ msgstr "" "_nx_noop:1,2,3c;_x:1,2c;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;" "esc_html_e;esc_html_x:1,2c\n" "X-Poedit-SourceCharset: UTF-8\n" -"X-Generator: Poedit 3.4.1\n" +"X-Generator: Poedit 3.4.2\n" "X-Poedit-SearchPath-0: .\n" "X-Poedit-SearchPathExcluded-0: *.js\n" -#: pro/acf-pro.php:27 +#: pro/acf-pro.php:22 msgid "Advanced Custom Fields PRO" msgstr "" -#: pro/acf-pro.php:196 +#: pro/acf-pro.php:181 msgid "" "Your license has expired. Please renew to continue to have access to " "updates, support & PRO features." @@ -34,7 +34,7 @@ msgstr "" "Your licence has expired. Please renew to continue to have access to " "updates, support & PRO features." -#: pro/acf-pro.php:193 +#: pro/acf-pro.php:178 msgid "" "Activate your license to enable access to updates, support & PRO " "features." @@ -42,7 +42,7 @@ msgstr "" "Activate your licence to enable access to updates, support & PRO " "features." -#: pro/acf-pro.php:211, pro/admin/views/html-settings-updates.php:114 +#: pro/acf-pro.php:196, pro/admin/views/html-settings-updates.php:114 msgid "Manage License" msgstr "Manage Licence" @@ -55,51 +55,51 @@ msgstr "" msgid "Block type \"%s\" is already registered." msgstr "" -#: pro/blocks.php:726 +#: pro/blocks.php:725 msgid "Switch to Edit" msgstr "" -#: pro/blocks.php:727 +#: pro/blocks.php:726 msgid "Switch to Preview" msgstr "" -#: pro/blocks.php:728 +#: pro/blocks.php:727 msgid "Change content alignment" msgstr "" #. translators: %s: Block type title -#: pro/blocks.php:731 +#: pro/blocks.php:730 msgid "%s settings" msgstr "" -#: pro/blocks.php:939 +#: pro/blocks.php:938 msgid "This block contains no editable fields." msgstr "" #. translators: %s: an admin URL to the field group edit screen -#: pro/blocks.php:945 +#: pro/blocks.php:944 msgid "" "Assign a field group to add fields to " "this block." msgstr "" -#: pro/options-page.php:46, +#: pro/options-page.php:44, #: pro/admin/views/acf-ui-options-page/advanced-settings.php:209 msgid "Options" msgstr "" -#: pro/options-page.php:76, pro/fields/class-acf-field-gallery.php:512, +#: pro/options-page.php:74, pro/fields/class-acf-field-gallery.php:504, #: pro/post-types/acf-ui-options-page.php:172, #: pro/admin/views/acf-ui-options-page/advanced-settings.php:137 msgid "Update" msgstr "" -#: pro/options-page.php:77, pro/post-types/acf-ui-options-page.php:173 +#: pro/options-page.php:75, pro/post-types/acf-ui-options-page.php:173 msgid "Options Updated" msgstr "" #. translators: %1 A link to the updates page. %2 link to the pricing page -#: pro/updates.php:74 +#: pro/updates.php:72 msgid "" "To enable updates, please enter your license key on the Updates page. If you don't have a license key, please see " @@ -109,7 +109,7 @@ msgstr "" "href=“%1$s”>Updates page. If you don’t have a licence key, please see details & pricing." -#: pro/updates.php:70 +#: pro/updates.php:68 msgid "" "To enable updates, please enter your license key on the Updates page of the main site. If you don't have a license " @@ -119,7 +119,7 @@ msgstr "" "href=“%1$s”>Updates page of the main site. If you don’t have a licence " "key, please see details & pricing." -#: pro/updates.php:136 +#: pro/updates.php:133 msgid "" "Your defined license key has changed, but an error occurred when " "deactivating your old license" @@ -127,7 +127,7 @@ msgstr "" "Your defined licence key has changed, but an error occurred when " "deactivating your old licence" -#: pro/updates.php:133 +#: pro/updates.php:130 msgid "" "Your defined license key has changed, but an error occurred when connecting " "to activation server" @@ -135,7 +135,7 @@ msgstr "" "Your defined licence key has changed, but an error occurred when connecting " "to activation server" -#: pro/updates.php:177 +#: pro/updates.php:174 msgid "" "ACF PRO — Your license key has been activated " "successfully. Access to updates, support & PRO features is now enabled." @@ -143,15 +143,15 @@ msgstr "" "ACF PRO — Your licence key has been activated " "successfully. Access to updates, support & PRO features is now enabled." -#: pro/updates.php:168 +#: pro/updates.php:165 msgid "There was an issue activating your license key." msgstr "There was an issue activating your licence key." -#: pro/updates.php:164 +#: pro/updates.php:161 msgid "An error occurred when connecting to activation server" msgstr "An error occurred when connecting to activation server" -#: pro/updates.php:265 +#: pro/updates.php:262 msgid "" "An internal error occurred when trying to check your license key. Please try " "again later." @@ -159,37 +159,37 @@ msgstr "" "An internal error occurred when trying to check your licence key. Please try " "again later." -#: pro/updates.php:263 +#: pro/updates.php:260 msgid "" "The ACF activation server is temporarily unavailable for scheduled " "maintenance. Please try again later." msgstr "" -#: pro/updates.php:233 +#: pro/updates.php:230 msgid "You have reached the activation limit for the license." msgstr "You have reached the activation limit for the licence." -#: pro/updates.php:242, pro/updates.php:214 +#: pro/updates.php:239, pro/updates.php:211 msgid "View your licenses" msgstr "View your licences" -#: pro/updates.php:255 +#: pro/updates.php:252 msgid "check again" msgstr "" -#: pro/updates.php:259 +#: pro/updates.php:256 msgid "%1$s or %2$s." msgstr "" -#: pro/updates.php:219 +#: pro/updates.php:216 msgid "Your license key has expired and cannot be activated." msgstr "Your licence key has expired and cannot be activated." -#: pro/updates.php:228 +#: pro/updates.php:225 msgid "View your subscriptions" msgstr "" -#: pro/updates.php:205 +#: pro/updates.php:202 msgid "" "License key not found. Make sure you have copied your license key exactly as " "it appears in your receipt or your account." @@ -197,11 +197,11 @@ msgstr "" "Licence key not found. Make sure you have copied your licence key exactly as " "it appears in your receipt or your account." -#: pro/updates.php:203 +#: pro/updates.php:200 msgid "Your license key has been deactivated." msgstr "Your licence key has been deactivated." -#: pro/updates.php:201 +#: pro/updates.php:198 msgid "" "Your license key has been activated successfully. Access to updates, support " "& PRO features is now enabled." @@ -210,24 +210,24 @@ msgstr "" "& PRO features is now enabled." #. translators: %s an untranslatable internal upstream error message -#: pro/updates.php:269 +#: pro/updates.php:266 msgid "An unknown error occurred while trying to validate your license: %s." msgstr "An unknown error occurred while trying to validate your licence: %s." -#: pro/updates.php:343 -msgid "ACF PRO — " +#: pro/updates.php:337, pro/updates.php:926 +msgid "ACF PRO —" msgstr "" -#: pro/updates.php:353 +#: pro/updates.php:346 msgid "Check again" msgstr "" -#: pro/updates.php:683 +#: pro/updates.php:678 msgid "Could not connect to the activation server" msgstr "" #. translators: %s - URL to ACF updates page -#: pro/updates.php:727 +#: pro/updates.php:722 msgid "" "Your license key is valid but not activated on this site. Please deactivate and then reactivate the license." @@ -235,7 +235,7 @@ msgstr "" "Your licence key is valid but not activated on this site. Please deactivate and then reactivate the licence." -#: pro/updates.php:931 +#: pro/updates.php:926 msgid "" "Your site URL has changed since last activating your license. We've " "automatically activated it for this site URL." @@ -243,7 +243,7 @@ msgstr "" "Your site URL has changed since last activating your licence. We’ve " "automatically activated it for this site URL." -#: pro/updates.php:923 +#: pro/updates.php:918 msgid "" "Your site URL has changed since last activating your license, but we weren't " "able to automatically reactivate it: %s" @@ -251,17 +251,17 @@ msgstr "" "Your site URL has changed since last activating your licence, but we weren’t " "able to automatically reactivate it: %s" -#: pro/admin/admin-options-page.php:194 +#: pro/admin/admin-options-page.php:160 msgid "Publish" msgstr "" -#: pro/admin/admin-options-page.php:197 +#: pro/admin/admin-options-page.php:163 msgid "" "No Custom Field Groups found for this options page. Create a " "Custom Field Group" msgstr "" -#: pro/admin/admin-options-page.php:299 +#: pro/admin/admin-options-page.php:260 msgid "Edit field group" msgstr "" @@ -297,12 +297,12 @@ msgstr "" "Error. Your licence for this site has expired or been " "deactivated. Please reactivate your ACF PRO licence." -#: pro/fields/class-acf-field-clone.php:25 +#: pro/fields/class-acf-field-clone.php:23 msgctxt "noun" msgid "Clone" msgstr "" -#: pro/fields/class-acf-field-clone.php:27, +#: pro/fields/class-acf-field-clone.php:25, #: pro/fields/class-acf-field-repeater.php:31 msgid "" "Allows you to select and display existing fields. It does not duplicate any " @@ -311,410 +311,411 @@ msgid "" "display the selected fields as a group of subfields." msgstr "" -#: pro/fields/class-acf-field-clone.php:770, -#: pro/fields/class-acf-field-flexible-content.php:77 +#: pro/fields/class-acf-field-clone.php:737, +#: pro/fields/class-acf-field-flexible-content.php:71 msgid "Fields" msgstr "" -#: pro/fields/class-acf-field-clone.php:771 +#: pro/fields/class-acf-field-clone.php:738 msgid "Select one or more fields you wish to clone" msgstr "" -#: pro/fields/class-acf-field-clone.php:790 +#: pro/fields/class-acf-field-clone.php:757 msgid "Display" msgstr "" -#: pro/fields/class-acf-field-clone.php:791 +#: pro/fields/class-acf-field-clone.php:758 msgid "Specify the style used to render the clone field" msgstr "" -#: pro/fields/class-acf-field-clone.php:796 +#: pro/fields/class-acf-field-clone.php:763 msgid "Group (displays selected fields in a group within this field)" msgstr "" -#: pro/fields/class-acf-field-clone.php:797 +#: pro/fields/class-acf-field-clone.php:764 msgid "Seamless (replaces this field with selected fields)" msgstr "" -#: pro/fields/class-acf-field-clone.php:806, -#: pro/fields/class-acf-field-flexible-content.php:531, -#: pro/fields/class-acf-field-flexible-content.php:594, +#: pro/fields/class-acf-field-clone.php:773, +#: pro/fields/class-acf-field-flexible-content.php:512, +#: pro/fields/class-acf-field-flexible-content.php:575, #: pro/fields/class-acf-field-repeater.php:177 msgid "Layout" msgstr "" -#: pro/fields/class-acf-field-clone.php:807 +#: pro/fields/class-acf-field-clone.php:774 msgid "Specify the style used to render the selected fields" msgstr "" -#: pro/fields/class-acf-field-clone.php:812, -#: pro/fields/class-acf-field-flexible-content.php:607, +#: pro/fields/class-acf-field-clone.php:779, +#: pro/fields/class-acf-field-flexible-content.php:588, #: pro/fields/class-acf-field-repeater.php:185, #: pro/locations/class-acf-location-block.php:22 msgid "Block" msgstr "" -#: pro/fields/class-acf-field-clone.php:813, -#: pro/fields/class-acf-field-flexible-content.php:606, +#: pro/fields/class-acf-field-clone.php:780, +#: pro/fields/class-acf-field-flexible-content.php:587, #: pro/fields/class-acf-field-repeater.php:184 msgid "Table" msgstr "" -#: pro/fields/class-acf-field-clone.php:814, -#: pro/fields/class-acf-field-flexible-content.php:608, +#: pro/fields/class-acf-field-clone.php:781, +#: pro/fields/class-acf-field-flexible-content.php:589, #: pro/fields/class-acf-field-repeater.php:186 msgid "Row" msgstr "" -#: pro/fields/class-acf-field-clone.php:820 +#: pro/fields/class-acf-field-clone.php:787 msgid "Labels will be displayed as %s" msgstr "" -#: pro/fields/class-acf-field-clone.php:825 +#: pro/fields/class-acf-field-clone.php:792 msgid "Prefix Field Labels" msgstr "" -#: pro/fields/class-acf-field-clone.php:835 +#: pro/fields/class-acf-field-clone.php:802 msgid "Values will be saved as %s" msgstr "" -#: pro/fields/class-acf-field-clone.php:840 +#: pro/fields/class-acf-field-clone.php:807 msgid "Prefix Field Names" msgstr "" -#: pro/fields/class-acf-field-clone.php:946 +#: pro/fields/class-acf-field-clone.php:907 msgid "Unknown field" msgstr "" -#: pro/fields/class-acf-field-clone.php:950 +#: pro/fields/class-acf-field-clone.php:911 msgid "(no title)" msgstr "" -#: pro/fields/class-acf-field-clone.php:982 +#: pro/fields/class-acf-field-clone.php:941 msgid "Unknown field group" msgstr "" -#: pro/fields/class-acf-field-clone.php:986 +#: pro/fields/class-acf-field-clone.php:945 msgid "All fields from %s field group" msgstr "" -#: pro/fields/class-acf-field-flexible-content.php:25 +#: pro/fields/class-acf-field-flexible-content.php:22 msgid "Flexible Content" msgstr "" -#: pro/fields/class-acf-field-flexible-content.php:27 +#: pro/fields/class-acf-field-flexible-content.php:24 msgid "" "Allows you to define, create and manage content with total control by " "creating layouts that contain subfields that content editors can choose from." msgstr "" -#: pro/fields/class-acf-field-flexible-content.php:27 +#: pro/fields/class-acf-field-flexible-content.php:24 msgid "We do not recommend using this field in ACF Blocks." msgstr "" -#: pro/fields/class-acf-field-flexible-content.php:36, +#: pro/fields/class-acf-field-flexible-content.php:33, #: pro/fields/class-acf-field-repeater.php:103, #: pro/fields/class-acf-field-repeater.php:297 msgid "Add Row" msgstr "" -#: pro/fields/class-acf-field-flexible-content.php:75, -#: pro/fields/class-acf-field-flexible-content.php:906, -#: pro/fields/class-acf-field-flexible-content.php:984 +#: pro/fields/class-acf-field-flexible-content.php:69, +#: pro/fields/class-acf-field-flexible-content.php:870, +#: pro/fields/class-acf-field-flexible-content.php:948 msgid "layout" msgid_plural "layouts" msgstr[0] "" msgstr[1] "" -#: pro/fields/class-acf-field-flexible-content.php:76 +#: pro/fields/class-acf-field-flexible-content.php:70 msgid "layouts" msgstr "" -#: pro/fields/class-acf-field-flexible-content.php:80, -#: pro/fields/class-acf-field-flexible-content.php:905, -#: pro/fields/class-acf-field-flexible-content.php:983 +#: pro/fields/class-acf-field-flexible-content.php:74, +#: pro/fields/class-acf-field-flexible-content.php:869, +#: pro/fields/class-acf-field-flexible-content.php:947 msgid "This field requires at least {min} {label} {identifier}" msgstr "" -#: pro/fields/class-acf-field-flexible-content.php:81 +#: pro/fields/class-acf-field-flexible-content.php:75 msgid "This field has a limit of {max} {label} {identifier}" msgstr "" -#: pro/fields/class-acf-field-flexible-content.php:84 +#: pro/fields/class-acf-field-flexible-content.php:78 msgid "{available} {label} {identifier} available (max {max})" msgstr "" -#: pro/fields/class-acf-field-flexible-content.php:85 +#: pro/fields/class-acf-field-flexible-content.php:79 msgid "{required} {label} {identifier} required (min {min})" msgstr "" -#: pro/fields/class-acf-field-flexible-content.php:88 +#: pro/fields/class-acf-field-flexible-content.php:82 msgid "Flexible Content requires at least 1 layout" msgstr "" -#: pro/fields/class-acf-field-flexible-content.php:270 +#. translators: %s the button label used for adding a new layout. +#: pro/fields/class-acf-field-flexible-content.php:257 msgid "Click the \"%s\" button below to start creating your layout" msgstr "" -#: pro/fields/class-acf-field-flexible-content.php:397, -#: pro/fields/class-acf-repeater-table.php:366 +#: pro/fields/class-acf-field-flexible-content.php:378, +#: pro/fields/class-acf-repeater-table.php:363 msgid "Drag to reorder" msgstr "" -#: pro/fields/class-acf-field-flexible-content.php:400 +#: pro/fields/class-acf-field-flexible-content.php:381 msgid "Add layout" msgstr "" -#: pro/fields/class-acf-field-flexible-content.php:401 +#: pro/fields/class-acf-field-flexible-content.php:382 msgid "Duplicate layout" msgstr "" -#: pro/fields/class-acf-field-flexible-content.php:402 +#: pro/fields/class-acf-field-flexible-content.php:383 msgid "Remove layout" msgstr "" -#: pro/fields/class-acf-field-flexible-content.php:403, -#: pro/fields/class-acf-repeater-table.php:382 +#: pro/fields/class-acf-field-flexible-content.php:384, +#: pro/fields/class-acf-repeater-table.php:379 msgid "Click to toggle" msgstr "" -#: pro/fields/class-acf-field-flexible-content.php:539 +#: pro/fields/class-acf-field-flexible-content.php:520 msgid "Delete Layout" msgstr "" -#: pro/fields/class-acf-field-flexible-content.php:540 +#: pro/fields/class-acf-field-flexible-content.php:521 msgid "Duplicate Layout" msgstr "" -#: pro/fields/class-acf-field-flexible-content.php:541 +#: pro/fields/class-acf-field-flexible-content.php:522 msgid "Add New Layout" msgstr "" -#: pro/fields/class-acf-field-flexible-content.php:541 +#: pro/fields/class-acf-field-flexible-content.php:522 msgid "Add Layout" msgstr "" -#: pro/fields/class-acf-field-flexible-content.php:570 +#: pro/fields/class-acf-field-flexible-content.php:551 msgid "Label" msgstr "" -#: pro/fields/class-acf-field-flexible-content.php:587 +#: pro/fields/class-acf-field-flexible-content.php:568 msgid "Name" msgstr "" -#: pro/fields/class-acf-field-flexible-content.php:625 +#: pro/fields/class-acf-field-flexible-content.php:606 msgid "Min" msgstr "" -#: pro/fields/class-acf-field-flexible-content.php:640 +#: pro/fields/class-acf-field-flexible-content.php:621 msgid "Max" msgstr "" -#: pro/fields/class-acf-field-flexible-content.php:683 +#: pro/fields/class-acf-field-flexible-content.php:662 msgid "Minimum Layouts" msgstr "" -#: pro/fields/class-acf-field-flexible-content.php:694 +#: pro/fields/class-acf-field-flexible-content.php:673 msgid "Maximum Layouts" msgstr "" -#: pro/fields/class-acf-field-flexible-content.php:705, +#: pro/fields/class-acf-field-flexible-content.php:684, #: pro/fields/class-acf-field-repeater.php:293 msgid "Button Label" msgstr "" -#: pro/fields/class-acf-field-flexible-content.php:1628, -#: pro/fields/class-acf-field-repeater.php:918 +#: pro/fields/class-acf-field-flexible-content.php:1555, +#: pro/fields/class-acf-field-repeater.php:912 msgid "%s must be of type array or null." msgstr "" -#: pro/fields/class-acf-field-flexible-content.php:1639 +#: pro/fields/class-acf-field-flexible-content.php:1566 msgid "%1$s must contain at least %2$s %3$s layout." msgid_plural "%1$s must contain at least %2$s %3$s layouts." msgstr[0] "" msgstr[1] "" -#: pro/fields/class-acf-field-flexible-content.php:1655 +#: pro/fields/class-acf-field-flexible-content.php:1582 msgid "%1$s must contain at most %2$s %3$s layout." msgid_plural "%1$s must contain at most %2$s %3$s layouts." msgstr[0] "" msgstr[1] "" -#: pro/fields/class-acf-field-gallery.php:25 +#: pro/fields/class-acf-field-gallery.php:23 msgid "Gallery" msgstr "" -#: pro/fields/class-acf-field-gallery.php:27 +#: pro/fields/class-acf-field-gallery.php:25 msgid "" "An interactive interface for managing a collection of attachments, such as " "images." msgstr "" -#: pro/fields/class-acf-field-gallery.php:77 +#: pro/fields/class-acf-field-gallery.php:73 msgid "Add Image to Gallery" msgstr "" -#: pro/fields/class-acf-field-gallery.php:78 +#: pro/fields/class-acf-field-gallery.php:74 msgid "Maximum selection reached" msgstr "" -#: pro/fields/class-acf-field-gallery.php:309 +#: pro/fields/class-acf-field-gallery.php:303 msgid "Length" msgstr "" -#: pro/fields/class-acf-field-gallery.php:324 +#: pro/fields/class-acf-field-gallery.php:318 msgid "Edit" msgstr "" -#: pro/fields/class-acf-field-gallery.php:325, -#: pro/fields/class-acf-field-gallery.php:480 +#: pro/fields/class-acf-field-gallery.php:319, +#: pro/fields/class-acf-field-gallery.php:472 msgid "Remove" msgstr "" -#: pro/fields/class-acf-field-gallery.php:341 +#: pro/fields/class-acf-field-gallery.php:335 msgid "Title" msgstr "" -#: pro/fields/class-acf-field-gallery.php:353 +#: pro/fields/class-acf-field-gallery.php:347 msgid "Caption" msgstr "" -#: pro/fields/class-acf-field-gallery.php:365 +#: pro/fields/class-acf-field-gallery.php:359 msgid "Alt Text" msgstr "" -#: pro/fields/class-acf-field-gallery.php:377, -#: pro/admin/post-types/admin-ui-options-pages.php:121, +#: pro/fields/class-acf-field-gallery.php:371, +#: pro/admin/post-types/admin-ui-options-pages.php:117, #: pro/admin/views/acf-ui-options-page/advanced-settings.php:125 msgid "Description" msgstr "" -#: pro/fields/class-acf-field-gallery.php:489 +#: pro/fields/class-acf-field-gallery.php:481 msgid "Add to gallery" msgstr "" -#: pro/fields/class-acf-field-gallery.php:493 +#: pro/fields/class-acf-field-gallery.php:485 msgid "Bulk actions" msgstr "" -#: pro/fields/class-acf-field-gallery.php:494 +#: pro/fields/class-acf-field-gallery.php:486 msgid "Sort by date uploaded" msgstr "" -#: pro/fields/class-acf-field-gallery.php:495 +#: pro/fields/class-acf-field-gallery.php:487 msgid "Sort by date modified" msgstr "" -#: pro/fields/class-acf-field-gallery.php:496 +#: pro/fields/class-acf-field-gallery.php:488 msgid "Sort by title" msgstr "" -#: pro/fields/class-acf-field-gallery.php:497 +#: pro/fields/class-acf-field-gallery.php:489 msgid "Reverse current order" msgstr "" -#: pro/fields/class-acf-field-gallery.php:509 +#: pro/fields/class-acf-field-gallery.php:501 msgid "Close" msgstr "" -#: pro/fields/class-acf-field-gallery.php:540 +#: pro/fields/class-acf-field-gallery.php:530 msgid "Return Format" msgstr "" -#: pro/fields/class-acf-field-gallery.php:546 +#: pro/fields/class-acf-field-gallery.php:536 msgid "Image Array" msgstr "" -#: pro/fields/class-acf-field-gallery.php:547 +#: pro/fields/class-acf-field-gallery.php:537 msgid "Image URL" msgstr "" -#: pro/fields/class-acf-field-gallery.php:548 +#: pro/fields/class-acf-field-gallery.php:538 msgid "Image ID" msgstr "" -#: pro/fields/class-acf-field-gallery.php:556 +#: pro/fields/class-acf-field-gallery.php:546 msgid "Library" msgstr "" -#: pro/fields/class-acf-field-gallery.php:557 +#: pro/fields/class-acf-field-gallery.php:547 msgid "Limit the media library choice" msgstr "" -#: pro/fields/class-acf-field-gallery.php:562, +#: pro/fields/class-acf-field-gallery.php:552, #: pro/locations/class-acf-location-block.php:66 msgid "All" msgstr "" -#: pro/fields/class-acf-field-gallery.php:563 +#: pro/fields/class-acf-field-gallery.php:553 msgid "Uploaded to post" msgstr "" -#: pro/fields/class-acf-field-gallery.php:599 +#: pro/fields/class-acf-field-gallery.php:589 msgid "Minimum Selection" msgstr "" -#: pro/fields/class-acf-field-gallery.php:609 +#: pro/fields/class-acf-field-gallery.php:599 msgid "Maximum Selection" msgstr "" -#: pro/fields/class-acf-field-gallery.php:619 +#: pro/fields/class-acf-field-gallery.php:609 msgid "Minimum" msgstr "" -#: pro/fields/class-acf-field-gallery.php:620, -#: pro/fields/class-acf-field-gallery.php:656 +#: pro/fields/class-acf-field-gallery.php:610, +#: pro/fields/class-acf-field-gallery.php:646 msgid "Restrict which images can be uploaded" msgstr "" -#: pro/fields/class-acf-field-gallery.php:623, -#: pro/fields/class-acf-field-gallery.php:659 +#: pro/fields/class-acf-field-gallery.php:613, +#: pro/fields/class-acf-field-gallery.php:649 msgid "Width" msgstr "" -#: pro/fields/class-acf-field-gallery.php:634, -#: pro/fields/class-acf-field-gallery.php:670 +#: pro/fields/class-acf-field-gallery.php:624, +#: pro/fields/class-acf-field-gallery.php:660 msgid "Height" msgstr "" -#: pro/fields/class-acf-field-gallery.php:646, -#: pro/fields/class-acf-field-gallery.php:682 +#: pro/fields/class-acf-field-gallery.php:636, +#: pro/fields/class-acf-field-gallery.php:672 msgid "File size" msgstr "" -#: pro/fields/class-acf-field-gallery.php:655 +#: pro/fields/class-acf-field-gallery.php:645 msgid "Maximum" msgstr "" -#: pro/fields/class-acf-field-gallery.php:691 +#: pro/fields/class-acf-field-gallery.php:681 msgid "Allowed File Types" msgstr "" -#: pro/fields/class-acf-field-gallery.php:692 +#: pro/fields/class-acf-field-gallery.php:682 msgid "Comma separated list. Leave blank for all types" msgstr "" -#: pro/fields/class-acf-field-gallery.php:711 +#: pro/fields/class-acf-field-gallery.php:701 msgid "Insert" msgstr "" -#: pro/fields/class-acf-field-gallery.php:712 +#: pro/fields/class-acf-field-gallery.php:702 msgid "Specify where new attachments are added" msgstr "" -#: pro/fields/class-acf-field-gallery.php:716 +#: pro/fields/class-acf-field-gallery.php:706 msgid "Append to the end" msgstr "" -#: pro/fields/class-acf-field-gallery.php:717 +#: pro/fields/class-acf-field-gallery.php:707 msgid "Prepend to the beginning" msgstr "" -#: pro/fields/class-acf-field-gallery.php:725 +#: pro/fields/class-acf-field-gallery.php:715 msgid "Preview Size" msgstr "" -#: pro/fields/class-acf-field-gallery.php:825 +#: pro/fields/class-acf-field-gallery.php:811 msgid "%1$s requires at least %2$s selection" msgid_plural "%1$s requires at least %2$s selections" msgstr[0] "" @@ -725,7 +726,7 @@ msgid "Repeater" msgstr "" #: pro/fields/class-acf-field-repeater.php:66, -#: pro/fields/class-acf-field-repeater.php:463 +#: pro/fields/class-acf-field-repeater.php:461 msgid "Minimum rows not reached ({min} rows)" msgstr "" @@ -777,63 +778,63 @@ msgstr "" msgid "Select a sub field to show when row is collapsed" msgstr "" -#: pro/fields/class-acf-field-repeater.php:1045 +#: pro/fields/class-acf-field-repeater.php:1038 msgid "Invalid nonce." msgstr "" -#: pro/fields/class-acf-field-repeater.php:1060 +#: pro/fields/class-acf-field-repeater.php:1053 msgid "Invalid field key or name." msgstr "" -#: pro/fields/class-acf-field-repeater.php:1069 +#: pro/fields/class-acf-field-repeater.php:1062 msgid "There was an error retrieving the field." msgstr "" -#: pro/fields/class-acf-repeater-table.php:369 +#: pro/fields/class-acf-repeater-table.php:366 msgid "Click to reorder" msgstr "" -#: pro/fields/class-acf-repeater-table.php:402 +#: pro/fields/class-acf-repeater-table.php:399 msgid "Add row" msgstr "" -#: pro/fields/class-acf-repeater-table.php:403 +#: pro/fields/class-acf-repeater-table.php:400 msgid "Duplicate row" msgstr "" -#: pro/fields/class-acf-repeater-table.php:404 +#: pro/fields/class-acf-repeater-table.php:401 msgid "Remove row" msgstr "" -#: pro/fields/class-acf-repeater-table.php:448, -#: pro/fields/class-acf-repeater-table.php:465, -#: pro/fields/class-acf-repeater-table.php:466 +#: pro/fields/class-acf-repeater-table.php:445, +#: pro/fields/class-acf-repeater-table.php:462, +#: pro/fields/class-acf-repeater-table.php:463 msgid "Current Page" msgstr "" -#: pro/fields/class-acf-repeater-table.php:456, -#: pro/fields/class-acf-repeater-table.php:457 +#: pro/fields/class-acf-repeater-table.php:453, +#: pro/fields/class-acf-repeater-table.php:454 msgid "First Page" msgstr "" -#: pro/fields/class-acf-repeater-table.php:460, -#: pro/fields/class-acf-repeater-table.php:461 +#: pro/fields/class-acf-repeater-table.php:457, +#: pro/fields/class-acf-repeater-table.php:458 msgid "Previous Page" msgstr "" #. translators: 1: Current page, 2: Total pages. -#: pro/fields/class-acf-repeater-table.php:470 +#: pro/fields/class-acf-repeater-table.php:467 msgctxt "paging" msgid "%1$s of %2$s" msgstr "" -#: pro/fields/class-acf-repeater-table.php:477, -#: pro/fields/class-acf-repeater-table.php:478 +#: pro/fields/class-acf-repeater-table.php:474, +#: pro/fields/class-acf-repeater-table.php:475 msgid "Next Page" msgstr "" -#: pro/fields/class-acf-repeater-table.php:481, -#: pro/fields/class-acf-repeater-table.php:482 +#: pro/fields/class-acf-repeater-table.php:478, +#: pro/fields/class-acf-repeater-table.php:479 msgid "Last Page" msgstr "" @@ -851,14 +852,14 @@ msgstr "" #: pro/locations/class-acf-location-options-page.php:74, #: pro/post-types/acf-ui-options-page.php:95, -#: pro/admin/post-types/admin-ui-options-page.php:492 +#: pro/admin/post-types/admin-ui-options-page.php:476 msgid "Add New Options Page" msgstr "" #: pro/post-types/acf-ui-options-page.php:92, #: pro/post-types/acf-ui-options-page.php:93, -#: pro/admin/post-types/admin-ui-options-pages.php:98, -#: pro/admin/post-types/admin-ui-options-pages.php:98 +#: pro/admin/post-types/admin-ui-options-pages.php:94, +#: pro/admin/post-types/admin-ui-options-pages.php:94 msgid "Options Pages" msgstr "" @@ -890,13 +891,13 @@ msgstr "" msgid "No Options Pages found in Trash" msgstr "No Options Pages found in Bin" -#: pro/post-types/acf-ui-options-page.php:198 +#: pro/post-types/acf-ui-options-page.php:202 msgid "" "The menu slug must only contain lower case alphanumeric characters, " "underscores or dashes." msgstr "" -#: pro/post-types/acf-ui-options-page.php:230 +#: pro/post-types/acf-ui-options-page.php:234 msgid "This Menu Slug is already in use by another ACF Options Page." msgstr "" @@ -963,67 +964,67 @@ msgstr "" msgid "Default" msgstr "" -#: pro/admin/post-types/admin-ui-options-page.php:159 +#: pro/admin/post-types/admin-ui-options-page.php:157 msgid "Basic Settings" msgstr "" -#: pro/admin/post-types/admin-ui-options-page.php:160 +#: pro/admin/post-types/admin-ui-options-page.php:158 msgid "Advanced Settings" msgstr "" -#: pro/admin/post-types/admin-ui-options-page.php:294 +#: pro/admin/post-types/admin-ui-options-page.php:283 msgctxt "post status" msgid "Active" msgstr "" -#: pro/admin/post-types/admin-ui-options-page.php:294 +#: pro/admin/post-types/admin-ui-options-page.php:283 msgctxt "post status" msgid "Inactive" msgstr "" -#: pro/admin/post-types/admin-ui-options-page.php:377 +#: pro/admin/post-types/admin-ui-options-page.php:361 msgid "No Parent" msgstr "" -#: pro/admin/post-types/admin-ui-options-page.php:460 +#: pro/admin/post-types/admin-ui-options-page.php:444 msgid "The provided Menu Slug already exists." msgstr "" -#: pro/admin/post-types/admin-ui-options-pages.php:122 +#: pro/admin/post-types/admin-ui-options-pages.php:118 msgid "Key" msgstr "" -#: pro/admin/post-types/admin-ui-options-pages.php:126 +#: pro/admin/post-types/admin-ui-options-pages.php:122 msgid "Local JSON" msgstr "" -#: pro/admin/post-types/admin-ui-options-pages.php:155 +#: pro/admin/post-types/admin-ui-options-pages.php:151 msgid "No description" msgstr "" #. translators: %s number of post types activated -#: pro/admin/post-types/admin-ui-options-pages.php:183 +#: pro/admin/post-types/admin-ui-options-pages.php:179 msgid "Options page activated." msgid_plural "%s options pages activated." msgstr[0] "" msgstr[1] "" #. translators: %s number of post types deactivated -#: pro/admin/post-types/admin-ui-options-pages.php:190 +#: pro/admin/post-types/admin-ui-options-pages.php:186 msgid "Options page deactivated." msgid_plural "%s options pages deactivated." msgstr[0] "" msgstr[1] "" #. translators: %s number of post types duplicated -#: pro/admin/post-types/admin-ui-options-pages.php:197 +#: pro/admin/post-types/admin-ui-options-pages.php:193 msgid "Options page duplicated." msgid_plural "%s options pages duplicated." msgstr[0] "" msgstr[1] "" #. translators: %s number of post types synchronized -#: pro/admin/post-types/admin-ui-options-pages.php:204 +#: pro/admin/post-types/admin-ui-options-pages.php:200 msgid "Options page synchronized." msgid_plural "%s options pages synchronized." msgstr[0] "" @@ -1111,59 +1112,59 @@ msgid "View pricing & purchase" msgstr "" #. translators: %s - link to ACF website -#: pro/admin/views/html-settings-updates.php:218 +#: pro/admin/views/html-settings-updates.php:219 msgid "Don't have an ACF PRO license? %s" msgstr "Don’t have an ACF PRO licence? %s" -#: pro/admin/views/html-settings-updates.php:232 +#: pro/admin/views/html-settings-updates.php:234 msgid "Update Information" msgstr "" -#: pro/admin/views/html-settings-updates.php:239 +#: pro/admin/views/html-settings-updates.php:241 msgid "Current Version" msgstr "" -#: pro/admin/views/html-settings-updates.php:247 +#: pro/admin/views/html-settings-updates.php:249 msgid "Latest Version" msgstr "" -#: pro/admin/views/html-settings-updates.php:255 +#: pro/admin/views/html-settings-updates.php:257 msgid "Update Available" msgstr "" -#: pro/admin/views/html-settings-updates.php:262 +#: pro/admin/views/html-settings-updates.php:264 msgid "No" msgstr "" -#: pro/admin/views/html-settings-updates.php:260 +#: pro/admin/views/html-settings-updates.php:262 msgid "Yes" msgstr "" -#: pro/admin/views/html-settings-updates.php:269 +#: pro/admin/views/html-settings-updates.php:271 msgid "Upgrade Notice" msgstr "" -#: pro/admin/views/html-settings-updates.php:298 +#: pro/admin/views/html-settings-updates.php:300 msgid "Check For Updates" msgstr "" -#: pro/admin/views/html-settings-updates.php:295 +#: pro/admin/views/html-settings-updates.php:297 msgid "Enter your license key to unlock updates" msgstr "Enter your licence key to unlock updates" -#: pro/admin/views/html-settings-updates.php:293 +#: pro/admin/views/html-settings-updates.php:295 msgid "Update Plugin" msgstr "" -#: pro/admin/views/html-settings-updates.php:291 +#: pro/admin/views/html-settings-updates.php:293 msgid "Update ACF in Network Admin" msgstr "" -#: pro/admin/views/html-settings-updates.php:289 +#: pro/admin/views/html-settings-updates.php:291 msgid "Please reactivate your license to unlock updates" msgstr "Please reactivate your licence to unlock updates" -#: pro/admin/views/html-settings-updates.php:287 +#: pro/admin/views/html-settings-updates.php:289 msgid "Please upgrade WordPress to update ACF" msgstr "" @@ -1325,7 +1326,7 @@ msgid "Done" msgstr "" #. translators: %s URL to ACF options pages documentation -#: pro/admin/views/acf-ui-options-page/list-empty.php:4 +#: pro/admin/views/acf-ui-options-page/list-empty.php:10 msgid "" "ACF options pages are custom admin " "pages for managing global settings via fields. You can create multiple pages " @@ -1333,16 +1334,16 @@ msgid "" msgstr "" #. translators: %s url to getting started guide -#: pro/admin/views/acf-ui-options-page/list-empty.php:10 +#: pro/admin/views/acf-ui-options-page/list-empty.php:16 msgid "" "New to ACF? Take a look at our getting " "started guide." msgstr "" -#: pro/admin/views/acf-ui-options-page/list-empty.php:18 +#: pro/admin/views/acf-ui-options-page/list-empty.php:24 msgid "Add Your First Options Page" msgstr "" -#: pro/admin/views/acf-ui-options-page/list-empty.php:20 +#: pro/admin/views/acf-ui-options-page/list-empty.php:26 msgid "Add Options Page" msgstr "" diff --git a/lang/pro/acf.pot b/lang/pro/acf.pot index 9a1a7e2..fee0378 100644 --- a/lang/pro/acf.pot +++ b/lang/pro/acf.pot @@ -1,4 +1,4 @@ -# Copyright (C) 2023 Advanced Custom Fields PRO +# Copyright (C) 2024 Advanced Custom Fields PRO # This file is distributed under the same license as the Advanced Custom Fields PRO package. msgid "" msgstr "" @@ -7,7 +7,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language-Team: WP Engine \n" -"POT-Creation-Date: 2023-11-28 09:14+0000\n" +"POT-Creation-Date: 2024-02-26 11:28+0000\n" "Report-Msgid-Bugs-To: https://support.advancedcustomfields.com\n" "X-Poedit-Basepath: ..\n" "X-Poedit-KeywordsList: __;_e;_ex:1,2c;_n:1,2;_n_noop:1,2;_nx:1,2,4c;_nx_noop:1,2,3c;_x:1,2c;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c\n" @@ -16,19 +16,19 @@ msgstr "" "X-Poedit-SourceCharset: UTF-8\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: pro/acf-pro.php:27 +#: pro/acf-pro.php:22 msgid "Advanced Custom Fields PRO" msgstr "" -#: pro/acf-pro.php:196 +#: pro/acf-pro.php:181 msgid "Your license has expired. Please renew to continue to have access to updates, support & PRO features." msgstr "" -#: pro/acf-pro.php:193 +#: pro/acf-pro.php:178 msgid "Activate your license to enable access to updates, support & PRO features." msgstr "" -#: pro/acf-pro.php:211, pro/admin/views/html-settings-updates.php:114 +#: pro/acf-pro.php:196, pro/admin/views/html-settings-updates.php:114 msgid "Manage License" msgstr "" @@ -41,156 +41,156 @@ msgstr "" msgid "Block type \"%s\" is already registered." msgstr "" -#: pro/blocks.php:726 +#: pro/blocks.php:725 msgid "Switch to Edit" msgstr "" -#: pro/blocks.php:727 +#: pro/blocks.php:726 msgid "Switch to Preview" msgstr "" -#: pro/blocks.php:728 +#: pro/blocks.php:727 msgid "Change content alignment" msgstr "" #. translators: %s: Block type title -#: pro/blocks.php:731 +#: pro/blocks.php:730 msgid "%s settings" msgstr "" -#: pro/blocks.php:939 +#: pro/blocks.php:938 msgid "This block contains no editable fields." msgstr "" #. translators: %s: an admin URL to the field group edit screen -#: pro/blocks.php:945 +#: pro/blocks.php:944 msgid "Assign a field group to add fields to this block." msgstr "" -#: pro/options-page.php:46, pro/admin/views/acf-ui-options-page/advanced-settings.php:209 +#: pro/options-page.php:44, pro/admin/views/acf-ui-options-page/advanced-settings.php:209 msgid "Options" msgstr "" -#: pro/options-page.php:76, pro/fields/class-acf-field-gallery.php:512, pro/post-types/acf-ui-options-page.php:172, pro/admin/views/acf-ui-options-page/advanced-settings.php:137 +#: pro/options-page.php:74, pro/fields/class-acf-field-gallery.php:504, pro/post-types/acf-ui-options-page.php:172, pro/admin/views/acf-ui-options-page/advanced-settings.php:137 msgid "Update" msgstr "" -#: pro/options-page.php:77, pro/post-types/acf-ui-options-page.php:173 +#: pro/options-page.php:75, pro/post-types/acf-ui-options-page.php:173 msgid "Options Updated" msgstr "" #. translators: %1 A link to the updates page. %2 link to the pricing page -#: pro/updates.php:74 +#: pro/updates.php:72 msgid "To enable updates, please enter your license key on the Updates page. If you don't have a license key, please see details & pricing." msgstr "" -#: pro/updates.php:70 +#: pro/updates.php:68 msgid "To enable updates, please enter your license key on the Updates page of the main site. If you don't have a license key, please see details & pricing." msgstr "" -#: pro/updates.php:136 +#: pro/updates.php:133 msgid "Your defined license key has changed, but an error occurred when deactivating your old license" msgstr "" -#: pro/updates.php:133 +#: pro/updates.php:130 msgid "Your defined license key has changed, but an error occurred when connecting to activation server" msgstr "" -#: pro/updates.php:177 +#: pro/updates.php:174 msgid "ACF PRO — Your license key has been activated successfully. Access to updates, support & PRO features is now enabled." msgstr "" -#: pro/updates.php:168 +#: pro/updates.php:165 msgid "There was an issue activating your license key." msgstr "" -#: pro/updates.php:164 +#: pro/updates.php:161 msgid "An error occurred when connecting to activation server" msgstr "" -#: pro/updates.php:265 +#: pro/updates.php:262 msgid "An internal error occurred when trying to check your license key. Please try again later." msgstr "" -#: pro/updates.php:263 +#: pro/updates.php:260 msgid "The ACF activation server is temporarily unavailable for scheduled maintenance. Please try again later." msgstr "" -#: pro/updates.php:233 +#: pro/updates.php:230 msgid "You have reached the activation limit for the license." msgstr "" -#: pro/updates.php:242, pro/updates.php:214 +#: pro/updates.php:239, pro/updates.php:211 msgid "View your licenses" msgstr "" -#: pro/updates.php:255 +#: pro/updates.php:252 msgid "check again" msgstr "" -#: pro/updates.php:259 +#: pro/updates.php:256 msgid "%1$s or %2$s." msgstr "" -#: pro/updates.php:219 +#: pro/updates.php:216 msgid "Your license key has expired and cannot be activated." msgstr "" -#: pro/updates.php:228 +#: pro/updates.php:225 msgid "View your subscriptions" msgstr "" -#: pro/updates.php:205 +#: pro/updates.php:202 msgid "License key not found. Make sure you have copied your license key exactly as it appears in your receipt or your account." msgstr "" -#: pro/updates.php:203 +#: pro/updates.php:200 msgid "Your license key has been deactivated." msgstr "" -#: pro/updates.php:201 +#: pro/updates.php:198 msgid "Your license key has been activated successfully. Access to updates, support & PRO features is now enabled." msgstr "" #. translators: %s an untranslatable internal upstream error message -#: pro/updates.php:269 +#: pro/updates.php:266 msgid "An unknown error occurred while trying to validate your license: %s." msgstr "" -#: pro/updates.php:343 -msgid "ACF PRO — " +#: pro/updates.php:337, pro/updates.php:926 +msgid "ACF PRO —" msgstr "" -#: pro/updates.php:353 +#: pro/updates.php:346 msgid "Check again" msgstr "" -#: pro/updates.php:683 +#: pro/updates.php:678 msgid "Could not connect to the activation server" msgstr "" #. translators: %s - URL to ACF updates page -#: pro/updates.php:727 +#: pro/updates.php:722 msgid "Your license key is valid but not activated on this site. Please deactivate and then reactivate the license." msgstr "" -#: pro/updates.php:931 +#: pro/updates.php:926 msgid "Your site URL has changed since last activating your license. We've automatically activated it for this site URL." msgstr "" -#: pro/updates.php:923 +#: pro/updates.php:918 msgid "Your site URL has changed since last activating your license, but we weren't able to automatically reactivate it: %s" msgstr "" -#: pro/admin/admin-options-page.php:194 +#: pro/admin/admin-options-page.php:160 msgid "Publish" msgstr "" -#: pro/admin/admin-options-page.php:197 +#: pro/admin/admin-options-page.php:163 msgid "No Custom Field Groups found for this options page. Create a Custom Field Group" msgstr "" -#: pro/admin/admin-options-page.php:299 +#: pro/admin/admin-options-page.php:260 msgid "Edit field group" msgstr "" @@ -215,386 +215,387 @@ msgstr "" msgid "Error. Your license for this site has expired or been deactivated. Please reactivate your ACF PRO license." msgstr "" -#: pro/fields/class-acf-field-clone.php:25 +#: pro/fields/class-acf-field-clone.php:23 msgctxt "noun" msgid "Clone" msgstr "" -#: pro/fields/class-acf-field-clone.php:27, pro/fields/class-acf-field-repeater.php:31 +#: pro/fields/class-acf-field-clone.php:25, pro/fields/class-acf-field-repeater.php:31 msgid "Allows you to select and display existing fields. It does not duplicate any fields in the database, but loads and displays the selected fields at run-time. The Clone field can either replace itself with the selected fields or display the selected fields as a group of subfields." msgstr "" -#: pro/fields/class-acf-field-clone.php:770, pro/fields/class-acf-field-flexible-content.php:77 +#: pro/fields/class-acf-field-clone.php:737, pro/fields/class-acf-field-flexible-content.php:71 msgid "Fields" msgstr "" -#: pro/fields/class-acf-field-clone.php:771 +#: pro/fields/class-acf-field-clone.php:738 msgid "Select one or more fields you wish to clone" msgstr "" -#: pro/fields/class-acf-field-clone.php:790 +#: pro/fields/class-acf-field-clone.php:757 msgid "Display" msgstr "" -#: pro/fields/class-acf-field-clone.php:791 +#: pro/fields/class-acf-field-clone.php:758 msgid "Specify the style used to render the clone field" msgstr "" -#: pro/fields/class-acf-field-clone.php:796 +#: pro/fields/class-acf-field-clone.php:763 msgid "Group (displays selected fields in a group within this field)" msgstr "" -#: pro/fields/class-acf-field-clone.php:797 +#: pro/fields/class-acf-field-clone.php:764 msgid "Seamless (replaces this field with selected fields)" msgstr "" -#: pro/fields/class-acf-field-clone.php:806, pro/fields/class-acf-field-flexible-content.php:531, pro/fields/class-acf-field-flexible-content.php:594, pro/fields/class-acf-field-repeater.php:177 +#: pro/fields/class-acf-field-clone.php:773, pro/fields/class-acf-field-flexible-content.php:512, pro/fields/class-acf-field-flexible-content.php:575, pro/fields/class-acf-field-repeater.php:177 msgid "Layout" msgstr "" -#: pro/fields/class-acf-field-clone.php:807 +#: pro/fields/class-acf-field-clone.php:774 msgid "Specify the style used to render the selected fields" msgstr "" -#: pro/fields/class-acf-field-clone.php:812, pro/fields/class-acf-field-flexible-content.php:607, pro/fields/class-acf-field-repeater.php:185, pro/locations/class-acf-location-block.php:22 +#: pro/fields/class-acf-field-clone.php:779, pro/fields/class-acf-field-flexible-content.php:588, pro/fields/class-acf-field-repeater.php:185, pro/locations/class-acf-location-block.php:22 msgid "Block" msgstr "" -#: pro/fields/class-acf-field-clone.php:813, pro/fields/class-acf-field-flexible-content.php:606, pro/fields/class-acf-field-repeater.php:184 +#: pro/fields/class-acf-field-clone.php:780, pro/fields/class-acf-field-flexible-content.php:587, pro/fields/class-acf-field-repeater.php:184 msgid "Table" msgstr "" -#: pro/fields/class-acf-field-clone.php:814, pro/fields/class-acf-field-flexible-content.php:608, pro/fields/class-acf-field-repeater.php:186 +#: pro/fields/class-acf-field-clone.php:781, pro/fields/class-acf-field-flexible-content.php:589, pro/fields/class-acf-field-repeater.php:186 msgid "Row" msgstr "" -#: pro/fields/class-acf-field-clone.php:820 +#: pro/fields/class-acf-field-clone.php:787 msgid "Labels will be displayed as %s" msgstr "" -#: pro/fields/class-acf-field-clone.php:825 +#: pro/fields/class-acf-field-clone.php:792 msgid "Prefix Field Labels" msgstr "" -#: pro/fields/class-acf-field-clone.php:835 +#: pro/fields/class-acf-field-clone.php:802 msgid "Values will be saved as %s" msgstr "" -#: pro/fields/class-acf-field-clone.php:840 +#: pro/fields/class-acf-field-clone.php:807 msgid "Prefix Field Names" msgstr "" -#: pro/fields/class-acf-field-clone.php:946 +#: pro/fields/class-acf-field-clone.php:907 msgid "Unknown field" msgstr "" -#: pro/fields/class-acf-field-clone.php:950 +#: pro/fields/class-acf-field-clone.php:911 msgid "(no title)" msgstr "" -#: pro/fields/class-acf-field-clone.php:982 +#: pro/fields/class-acf-field-clone.php:941 msgid "Unknown field group" msgstr "" -#: pro/fields/class-acf-field-clone.php:986 +#: pro/fields/class-acf-field-clone.php:945 msgid "All fields from %s field group" msgstr "" -#: pro/fields/class-acf-field-flexible-content.php:25 +#: pro/fields/class-acf-field-flexible-content.php:22 msgid "Flexible Content" msgstr "" -#: pro/fields/class-acf-field-flexible-content.php:27 +#: pro/fields/class-acf-field-flexible-content.php:24 msgid "Allows you to define, create and manage content with total control by creating layouts that contain subfields that content editors can choose from." msgstr "" -#: pro/fields/class-acf-field-flexible-content.php:27 +#: pro/fields/class-acf-field-flexible-content.php:24 msgid "We do not recommend using this field in ACF Blocks." msgstr "" -#: pro/fields/class-acf-field-flexible-content.php:36, pro/fields/class-acf-field-repeater.php:103, pro/fields/class-acf-field-repeater.php:297 +#: pro/fields/class-acf-field-flexible-content.php:33, pro/fields/class-acf-field-repeater.php:103, pro/fields/class-acf-field-repeater.php:297 msgid "Add Row" msgstr "" -#: pro/fields/class-acf-field-flexible-content.php:75, pro/fields/class-acf-field-flexible-content.php:906, pro/fields/class-acf-field-flexible-content.php:984 +#: pro/fields/class-acf-field-flexible-content.php:69, pro/fields/class-acf-field-flexible-content.php:870, pro/fields/class-acf-field-flexible-content.php:948 msgid "layout" msgid_plural "layouts" msgstr[0] "" msgstr[1] "" -#: pro/fields/class-acf-field-flexible-content.php:76 +#: pro/fields/class-acf-field-flexible-content.php:70 msgid "layouts" msgstr "" -#: pro/fields/class-acf-field-flexible-content.php:80, pro/fields/class-acf-field-flexible-content.php:905, pro/fields/class-acf-field-flexible-content.php:983 +#: pro/fields/class-acf-field-flexible-content.php:74, pro/fields/class-acf-field-flexible-content.php:869, pro/fields/class-acf-field-flexible-content.php:947 msgid "This field requires at least {min} {label} {identifier}" msgstr "" -#: pro/fields/class-acf-field-flexible-content.php:81 +#: pro/fields/class-acf-field-flexible-content.php:75 msgid "This field has a limit of {max} {label} {identifier}" msgstr "" -#: pro/fields/class-acf-field-flexible-content.php:84 +#: pro/fields/class-acf-field-flexible-content.php:78 msgid "{available} {label} {identifier} available (max {max})" msgstr "" -#: pro/fields/class-acf-field-flexible-content.php:85 +#: pro/fields/class-acf-field-flexible-content.php:79 msgid "{required} {label} {identifier} required (min {min})" msgstr "" -#: pro/fields/class-acf-field-flexible-content.php:88 +#: pro/fields/class-acf-field-flexible-content.php:82 msgid "Flexible Content requires at least 1 layout" msgstr "" -#: pro/fields/class-acf-field-flexible-content.php:270 +#. translators: %s the button label used for adding a new layout. +#: pro/fields/class-acf-field-flexible-content.php:257 msgid "Click the \"%s\" button below to start creating your layout" msgstr "" -#: pro/fields/class-acf-field-flexible-content.php:397, pro/fields/class-acf-repeater-table.php:366 +#: pro/fields/class-acf-field-flexible-content.php:378, pro/fields/class-acf-repeater-table.php:363 msgid "Drag to reorder" msgstr "" -#: pro/fields/class-acf-field-flexible-content.php:400 +#: pro/fields/class-acf-field-flexible-content.php:381 msgid "Add layout" msgstr "" -#: pro/fields/class-acf-field-flexible-content.php:401 +#: pro/fields/class-acf-field-flexible-content.php:382 msgid "Duplicate layout" msgstr "" -#: pro/fields/class-acf-field-flexible-content.php:402 +#: pro/fields/class-acf-field-flexible-content.php:383 msgid "Remove layout" msgstr "" -#: pro/fields/class-acf-field-flexible-content.php:403, pro/fields/class-acf-repeater-table.php:382 +#: pro/fields/class-acf-field-flexible-content.php:384, pro/fields/class-acf-repeater-table.php:379 msgid "Click to toggle" msgstr "" -#: pro/fields/class-acf-field-flexible-content.php:539 +#: pro/fields/class-acf-field-flexible-content.php:520 msgid "Delete Layout" msgstr "" -#: pro/fields/class-acf-field-flexible-content.php:540 +#: pro/fields/class-acf-field-flexible-content.php:521 msgid "Duplicate Layout" msgstr "" -#: pro/fields/class-acf-field-flexible-content.php:541 +#: pro/fields/class-acf-field-flexible-content.php:522 msgid "Add New Layout" msgstr "" -#: pro/fields/class-acf-field-flexible-content.php:541 +#: pro/fields/class-acf-field-flexible-content.php:522 msgid "Add Layout" msgstr "" -#: pro/fields/class-acf-field-flexible-content.php:570 +#: pro/fields/class-acf-field-flexible-content.php:551 msgid "Label" msgstr "" -#: pro/fields/class-acf-field-flexible-content.php:587 +#: pro/fields/class-acf-field-flexible-content.php:568 msgid "Name" msgstr "" -#: pro/fields/class-acf-field-flexible-content.php:625 +#: pro/fields/class-acf-field-flexible-content.php:606 msgid "Min" msgstr "" -#: pro/fields/class-acf-field-flexible-content.php:640 +#: pro/fields/class-acf-field-flexible-content.php:621 msgid "Max" msgstr "" -#: pro/fields/class-acf-field-flexible-content.php:683 +#: pro/fields/class-acf-field-flexible-content.php:662 msgid "Minimum Layouts" msgstr "" -#: pro/fields/class-acf-field-flexible-content.php:694 +#: pro/fields/class-acf-field-flexible-content.php:673 msgid "Maximum Layouts" msgstr "" -#: pro/fields/class-acf-field-flexible-content.php:705, pro/fields/class-acf-field-repeater.php:293 +#: pro/fields/class-acf-field-flexible-content.php:684, pro/fields/class-acf-field-repeater.php:293 msgid "Button Label" msgstr "" -#: pro/fields/class-acf-field-flexible-content.php:1628, pro/fields/class-acf-field-repeater.php:918 +#: pro/fields/class-acf-field-flexible-content.php:1555, pro/fields/class-acf-field-repeater.php:912 msgid "%s must be of type array or null." msgstr "" -#: pro/fields/class-acf-field-flexible-content.php:1639 +#: pro/fields/class-acf-field-flexible-content.php:1566 msgid "%1$s must contain at least %2$s %3$s layout." msgid_plural "%1$s must contain at least %2$s %3$s layouts." msgstr[0] "" msgstr[1] "" -#: pro/fields/class-acf-field-flexible-content.php:1655 +#: pro/fields/class-acf-field-flexible-content.php:1582 msgid "%1$s must contain at most %2$s %3$s layout." msgid_plural "%1$s must contain at most %2$s %3$s layouts." msgstr[0] "" msgstr[1] "" -#: pro/fields/class-acf-field-gallery.php:25 +#: pro/fields/class-acf-field-gallery.php:23 msgid "Gallery" msgstr "" -#: pro/fields/class-acf-field-gallery.php:27 +#: pro/fields/class-acf-field-gallery.php:25 msgid "An interactive interface for managing a collection of attachments, such as images." msgstr "" -#: pro/fields/class-acf-field-gallery.php:77 +#: pro/fields/class-acf-field-gallery.php:73 msgid "Add Image to Gallery" msgstr "" -#: pro/fields/class-acf-field-gallery.php:78 +#: pro/fields/class-acf-field-gallery.php:74 msgid "Maximum selection reached" msgstr "" -#: pro/fields/class-acf-field-gallery.php:309 +#: pro/fields/class-acf-field-gallery.php:303 msgid "Length" msgstr "" -#: pro/fields/class-acf-field-gallery.php:324 +#: pro/fields/class-acf-field-gallery.php:318 msgid "Edit" msgstr "" -#: pro/fields/class-acf-field-gallery.php:325, pro/fields/class-acf-field-gallery.php:480 +#: pro/fields/class-acf-field-gallery.php:319, pro/fields/class-acf-field-gallery.php:472 msgid "Remove" msgstr "" -#: pro/fields/class-acf-field-gallery.php:341 +#: pro/fields/class-acf-field-gallery.php:335 msgid "Title" msgstr "" -#: pro/fields/class-acf-field-gallery.php:353 +#: pro/fields/class-acf-field-gallery.php:347 msgid "Caption" msgstr "" -#: pro/fields/class-acf-field-gallery.php:365 +#: pro/fields/class-acf-field-gallery.php:359 msgid "Alt Text" msgstr "" -#: pro/fields/class-acf-field-gallery.php:377, pro/admin/post-types/admin-ui-options-pages.php:121, pro/admin/views/acf-ui-options-page/advanced-settings.php:125 +#: pro/fields/class-acf-field-gallery.php:371, pro/admin/post-types/admin-ui-options-pages.php:117, pro/admin/views/acf-ui-options-page/advanced-settings.php:125 msgid "Description" msgstr "" -#: pro/fields/class-acf-field-gallery.php:489 +#: pro/fields/class-acf-field-gallery.php:481 msgid "Add to gallery" msgstr "" -#: pro/fields/class-acf-field-gallery.php:493 +#: pro/fields/class-acf-field-gallery.php:485 msgid "Bulk actions" msgstr "" -#: pro/fields/class-acf-field-gallery.php:494 +#: pro/fields/class-acf-field-gallery.php:486 msgid "Sort by date uploaded" msgstr "" -#: pro/fields/class-acf-field-gallery.php:495 +#: pro/fields/class-acf-field-gallery.php:487 msgid "Sort by date modified" msgstr "" -#: pro/fields/class-acf-field-gallery.php:496 +#: pro/fields/class-acf-field-gallery.php:488 msgid "Sort by title" msgstr "" -#: pro/fields/class-acf-field-gallery.php:497 +#: pro/fields/class-acf-field-gallery.php:489 msgid "Reverse current order" msgstr "" -#: pro/fields/class-acf-field-gallery.php:509 +#: pro/fields/class-acf-field-gallery.php:501 msgid "Close" msgstr "" -#: pro/fields/class-acf-field-gallery.php:540 +#: pro/fields/class-acf-field-gallery.php:530 msgid "Return Format" msgstr "" -#: pro/fields/class-acf-field-gallery.php:546 +#: pro/fields/class-acf-field-gallery.php:536 msgid "Image Array" msgstr "" -#: pro/fields/class-acf-field-gallery.php:547 +#: pro/fields/class-acf-field-gallery.php:537 msgid "Image URL" msgstr "" -#: pro/fields/class-acf-field-gallery.php:548 +#: pro/fields/class-acf-field-gallery.php:538 msgid "Image ID" msgstr "" -#: pro/fields/class-acf-field-gallery.php:556 +#: pro/fields/class-acf-field-gallery.php:546 msgid "Library" msgstr "" -#: pro/fields/class-acf-field-gallery.php:557 +#: pro/fields/class-acf-field-gallery.php:547 msgid "Limit the media library choice" msgstr "" -#: pro/fields/class-acf-field-gallery.php:562, pro/locations/class-acf-location-block.php:66 +#: pro/fields/class-acf-field-gallery.php:552, pro/locations/class-acf-location-block.php:66 msgid "All" msgstr "" -#: pro/fields/class-acf-field-gallery.php:563 +#: pro/fields/class-acf-field-gallery.php:553 msgid "Uploaded to post" msgstr "" -#: pro/fields/class-acf-field-gallery.php:599 +#: pro/fields/class-acf-field-gallery.php:589 msgid "Minimum Selection" msgstr "" -#: pro/fields/class-acf-field-gallery.php:609 +#: pro/fields/class-acf-field-gallery.php:599 msgid "Maximum Selection" msgstr "" -#: pro/fields/class-acf-field-gallery.php:619 +#: pro/fields/class-acf-field-gallery.php:609 msgid "Minimum" msgstr "" -#: pro/fields/class-acf-field-gallery.php:620, pro/fields/class-acf-field-gallery.php:656 +#: pro/fields/class-acf-field-gallery.php:610, pro/fields/class-acf-field-gallery.php:646 msgid "Restrict which images can be uploaded" msgstr "" -#: pro/fields/class-acf-field-gallery.php:623, pro/fields/class-acf-field-gallery.php:659 +#: pro/fields/class-acf-field-gallery.php:613, pro/fields/class-acf-field-gallery.php:649 msgid "Width" msgstr "" -#: pro/fields/class-acf-field-gallery.php:634, pro/fields/class-acf-field-gallery.php:670 +#: pro/fields/class-acf-field-gallery.php:624, pro/fields/class-acf-field-gallery.php:660 msgid "Height" msgstr "" -#: pro/fields/class-acf-field-gallery.php:646, pro/fields/class-acf-field-gallery.php:682 +#: pro/fields/class-acf-field-gallery.php:636, pro/fields/class-acf-field-gallery.php:672 msgid "File size" msgstr "" -#: pro/fields/class-acf-field-gallery.php:655 +#: pro/fields/class-acf-field-gallery.php:645 msgid "Maximum" msgstr "" -#: pro/fields/class-acf-field-gallery.php:691 +#: pro/fields/class-acf-field-gallery.php:681 msgid "Allowed File Types" msgstr "" -#: pro/fields/class-acf-field-gallery.php:692 +#: pro/fields/class-acf-field-gallery.php:682 msgid "Comma separated list. Leave blank for all types" msgstr "" -#: pro/fields/class-acf-field-gallery.php:711 +#: pro/fields/class-acf-field-gallery.php:701 msgid "Insert" msgstr "" -#: pro/fields/class-acf-field-gallery.php:712 +#: pro/fields/class-acf-field-gallery.php:702 msgid "Specify where new attachments are added" msgstr "" -#: pro/fields/class-acf-field-gallery.php:716 +#: pro/fields/class-acf-field-gallery.php:706 msgid "Append to the end" msgstr "" -#: pro/fields/class-acf-field-gallery.php:717 +#: pro/fields/class-acf-field-gallery.php:707 msgid "Prepend to the beginning" msgstr "" -#: pro/fields/class-acf-field-gallery.php:725 +#: pro/fields/class-acf-field-gallery.php:715 msgid "Preview Size" msgstr "" -#: pro/fields/class-acf-field-gallery.php:825 +#: pro/fields/class-acf-field-gallery.php:811 msgid "%1$s requires at least %2$s selection" msgid_plural "%1$s requires at least %2$s selections" msgstr[0] "" @@ -604,7 +605,7 @@ msgstr[1] "" msgid "Repeater" msgstr "" -#: pro/fields/class-acf-field-repeater.php:66, pro/fields/class-acf-field-repeater.php:463 +#: pro/fields/class-acf-field-repeater.php:66, pro/fields/class-acf-field-repeater.php:461 msgid "Minimum rows not reached ({min} rows)" msgstr "" @@ -656,57 +657,57 @@ msgstr "" msgid "Select a sub field to show when row is collapsed" msgstr "" -#: pro/fields/class-acf-field-repeater.php:1045 +#: pro/fields/class-acf-field-repeater.php:1038 msgid "Invalid nonce." msgstr "" -#: pro/fields/class-acf-field-repeater.php:1060 +#: pro/fields/class-acf-field-repeater.php:1053 msgid "Invalid field key or name." msgstr "" -#: pro/fields/class-acf-field-repeater.php:1069 +#: pro/fields/class-acf-field-repeater.php:1062 msgid "There was an error retrieving the field." msgstr "" -#: pro/fields/class-acf-repeater-table.php:369 +#: pro/fields/class-acf-repeater-table.php:366 msgid "Click to reorder" msgstr "" -#: pro/fields/class-acf-repeater-table.php:402 +#: pro/fields/class-acf-repeater-table.php:399 msgid "Add row" msgstr "" -#: pro/fields/class-acf-repeater-table.php:403 +#: pro/fields/class-acf-repeater-table.php:400 msgid "Duplicate row" msgstr "" -#: pro/fields/class-acf-repeater-table.php:404 +#: pro/fields/class-acf-repeater-table.php:401 msgid "Remove row" msgstr "" -#: pro/fields/class-acf-repeater-table.php:448, pro/fields/class-acf-repeater-table.php:465, pro/fields/class-acf-repeater-table.php:466 +#: pro/fields/class-acf-repeater-table.php:445, pro/fields/class-acf-repeater-table.php:462, pro/fields/class-acf-repeater-table.php:463 msgid "Current Page" msgstr "" -#: pro/fields/class-acf-repeater-table.php:456, pro/fields/class-acf-repeater-table.php:457 +#: pro/fields/class-acf-repeater-table.php:453, pro/fields/class-acf-repeater-table.php:454 msgid "First Page" msgstr "" -#: pro/fields/class-acf-repeater-table.php:460, pro/fields/class-acf-repeater-table.php:461 +#: pro/fields/class-acf-repeater-table.php:457, pro/fields/class-acf-repeater-table.php:458 msgid "Previous Page" msgstr "" #. translators: 1: Current page, 2: Total pages. -#: pro/fields/class-acf-repeater-table.php:470 +#: pro/fields/class-acf-repeater-table.php:467 msgctxt "paging" msgid "%1$s of %2$s" msgstr "" -#: pro/fields/class-acf-repeater-table.php:477, pro/fields/class-acf-repeater-table.php:478 +#: pro/fields/class-acf-repeater-table.php:474, pro/fields/class-acf-repeater-table.php:475 msgid "Next Page" msgstr "" -#: pro/fields/class-acf-repeater-table.php:481, pro/fields/class-acf-repeater-table.php:482 +#: pro/fields/class-acf-repeater-table.php:478, pro/fields/class-acf-repeater-table.php:479 msgid "Last Page" msgstr "" @@ -722,11 +723,11 @@ msgstr "" msgid "Select options page..." msgstr "" -#: pro/locations/class-acf-location-options-page.php:74, pro/post-types/acf-ui-options-page.php:95, pro/admin/post-types/admin-ui-options-page.php:492 +#: pro/locations/class-acf-location-options-page.php:74, pro/post-types/acf-ui-options-page.php:95, pro/admin/post-types/admin-ui-options-page.php:476 msgid "Add New Options Page" msgstr "" -#: pro/post-types/acf-ui-options-page.php:92, pro/post-types/acf-ui-options-page.php:93, pro/admin/post-types/admin-ui-options-pages.php:98, pro/admin/post-types/admin-ui-options-pages.php:98 +#: pro/post-types/acf-ui-options-page.php:92, pro/post-types/acf-ui-options-page.php:93, pro/admin/post-types/admin-ui-options-pages.php:94, pro/admin/post-types/admin-ui-options-pages.php:94 msgid "Options Pages" msgstr "" @@ -758,11 +759,11 @@ msgstr "" msgid "No Options Pages found in Trash" msgstr "" -#: pro/post-types/acf-ui-options-page.php:198 +#: pro/post-types/acf-ui-options-page.php:202 msgid "The menu slug must only contain lower case alphanumeric characters, underscores or dashes." msgstr "" -#: pro/post-types/acf-ui-options-page.php:230 +#: pro/post-types/acf-ui-options-page.php:234 msgid "This Menu Slug is already in use by another ACF Options Page." msgstr "" @@ -829,67 +830,67 @@ msgstr "" msgid "Default" msgstr "" -#: pro/admin/post-types/admin-ui-options-page.php:159 +#: pro/admin/post-types/admin-ui-options-page.php:157 msgid "Basic Settings" msgstr "" -#: pro/admin/post-types/admin-ui-options-page.php:160 +#: pro/admin/post-types/admin-ui-options-page.php:158 msgid "Advanced Settings" msgstr "" -#: pro/admin/post-types/admin-ui-options-page.php:294 +#: pro/admin/post-types/admin-ui-options-page.php:283 msgctxt "post status" msgid "Active" msgstr "" -#: pro/admin/post-types/admin-ui-options-page.php:294 +#: pro/admin/post-types/admin-ui-options-page.php:283 msgctxt "post status" msgid "Inactive" msgstr "" -#: pro/admin/post-types/admin-ui-options-page.php:377 +#: pro/admin/post-types/admin-ui-options-page.php:361 msgid "No Parent" msgstr "" -#: pro/admin/post-types/admin-ui-options-page.php:460 +#: pro/admin/post-types/admin-ui-options-page.php:444 msgid "The provided Menu Slug already exists." msgstr "" -#: pro/admin/post-types/admin-ui-options-pages.php:122 +#: pro/admin/post-types/admin-ui-options-pages.php:118 msgid "Key" msgstr "" -#: pro/admin/post-types/admin-ui-options-pages.php:126 +#: pro/admin/post-types/admin-ui-options-pages.php:122 msgid "Local JSON" msgstr "" -#: pro/admin/post-types/admin-ui-options-pages.php:155 +#: pro/admin/post-types/admin-ui-options-pages.php:151 msgid "No description" msgstr "" #. translators: %s number of post types activated -#: pro/admin/post-types/admin-ui-options-pages.php:183 +#: pro/admin/post-types/admin-ui-options-pages.php:179 msgid "Options page activated." msgid_plural "%s options pages activated." msgstr[0] "" msgstr[1] "" #. translators: %s number of post types deactivated -#: pro/admin/post-types/admin-ui-options-pages.php:190 +#: pro/admin/post-types/admin-ui-options-pages.php:186 msgid "Options page deactivated." msgid_plural "%s options pages deactivated." msgstr[0] "" msgstr[1] "" #. translators: %s number of post types duplicated -#: pro/admin/post-types/admin-ui-options-pages.php:197 +#: pro/admin/post-types/admin-ui-options-pages.php:193 msgid "Options page duplicated." msgid_plural "%s options pages duplicated." msgstr[0] "" msgstr[1] "" #. translators: %s number of post types synchronized -#: pro/admin/post-types/admin-ui-options-pages.php:204 +#: pro/admin/post-types/admin-ui-options-pages.php:200 msgid "Options page synchronized." msgid_plural "%s options pages synchronized." msgstr[0] "" @@ -976,59 +977,59 @@ msgid "View pricing & purchase" msgstr "" #. translators: %s - link to ACF website -#: pro/admin/views/html-settings-updates.php:218 +#: pro/admin/views/html-settings-updates.php:219 msgid "Don't have an ACF PRO license? %s" msgstr "" -#: pro/admin/views/html-settings-updates.php:232 +#: pro/admin/views/html-settings-updates.php:234 msgid "Update Information" msgstr "" -#: pro/admin/views/html-settings-updates.php:239 +#: pro/admin/views/html-settings-updates.php:241 msgid "Current Version" msgstr "" -#: pro/admin/views/html-settings-updates.php:247 +#: pro/admin/views/html-settings-updates.php:249 msgid "Latest Version" msgstr "" -#: pro/admin/views/html-settings-updates.php:255 +#: pro/admin/views/html-settings-updates.php:257 msgid "Update Available" msgstr "" -#: pro/admin/views/html-settings-updates.php:262 +#: pro/admin/views/html-settings-updates.php:264 msgid "No" msgstr "" -#: pro/admin/views/html-settings-updates.php:260 +#: pro/admin/views/html-settings-updates.php:262 msgid "Yes" msgstr "" -#: pro/admin/views/html-settings-updates.php:269 +#: pro/admin/views/html-settings-updates.php:271 msgid "Upgrade Notice" msgstr "" -#: pro/admin/views/html-settings-updates.php:298 +#: pro/admin/views/html-settings-updates.php:300 msgid "Check For Updates" msgstr "" -#: pro/admin/views/html-settings-updates.php:295 +#: pro/admin/views/html-settings-updates.php:297 msgid "Enter your license key to unlock updates" msgstr "" -#: pro/admin/views/html-settings-updates.php:293 +#: pro/admin/views/html-settings-updates.php:295 msgid "Update Plugin" msgstr "" -#: pro/admin/views/html-settings-updates.php:291 +#: pro/admin/views/html-settings-updates.php:293 msgid "Update ACF in Network Admin" msgstr "" -#: pro/admin/views/html-settings-updates.php:289 +#: pro/admin/views/html-settings-updates.php:291 msgid "Please reactivate your license to unlock updates" msgstr "" -#: pro/admin/views/html-settings-updates.php:287 +#: pro/admin/views/html-settings-updates.php:289 msgid "Please upgrade WordPress to update ACF" msgstr "" @@ -1169,19 +1170,19 @@ msgid "Done" msgstr "" #. translators: %s URL to ACF options pages documentation -#: pro/admin/views/acf-ui-options-page/list-empty.php:4 +#: pro/admin/views/acf-ui-options-page/list-empty.php:10 msgid "ACF options pages are custom admin pages for managing global settings via fields. You can create multiple pages and sub-pages." msgstr "" #. translators: %s url to getting started guide -#: pro/admin/views/acf-ui-options-page/list-empty.php:10 +#: pro/admin/views/acf-ui-options-page/list-empty.php:16 msgid "New to ACF? Take a look at our getting started guide." msgstr "" -#: pro/admin/views/acf-ui-options-page/list-empty.php:18 +#: pro/admin/views/acf-ui-options-page/list-empty.php:24 msgid "Add Your First Options Page" msgstr "" -#: pro/admin/views/acf-ui-options-page/list-empty.php:20 +#: pro/admin/views/acf-ui-options-page/list-empty.php:26 msgid "Add Options Page" msgstr "" diff --git a/pro/acf-pro.php b/pro/acf-pro.php index d097c14..b08ba5d 100644 --- a/pro/acf-pro.php +++ b/pro/acf-pro.php @@ -2,22 +2,17 @@ if ( ! class_exists( 'acf_pro' ) ) : + /** + * The main ACF PRO class. + */ class acf_pro { - /* - * __construct - * - * - * - * @type function - * @date 23/06/12 - * @since 5.0.0 - * - * @param N/A - * @return N/A - */ - - function __construct() { + /** + * Main ACF PRO constructor + * + * @since 5.0.0 + */ + public function __construct() { // constants acf()->define( 'ACF_PRO', true ); @@ -56,8 +51,6 @@ function __construct() { * Registers the `acf-ui-options-page` post type and initializes the UI. * * @since 6.2 - * - * @return void */ public function register_ui_options_pages() { if ( ! acf_get_setting( 'enable_options_pages_ui' ) ) { @@ -97,18 +90,16 @@ function include_field_types() { acf_include( 'pro/fields/class-acf-field-clone.php' ); } - /* - * include_location_rules - * - * description - * - * @type function - * @date 10/6/17 - * @since 5.6.0 - * - * @param $post_id (int) - * @return $post_id (int) - */ + /** + * description + * + * @type function + * @date 10/6/17 + * @since 5.6.0 + * + * @param $post_id (int) + * @return $post_id (int) + */ function include_location_rules() { @@ -120,8 +111,6 @@ function include_location_rules() { * Registers styles and scripts used by ACF PRO. * * @since 5.0.0 - * - * @return void */ public function register_assets() { $version = acf_get_setting( 'version' ); @@ -137,18 +126,18 @@ public function register_assets() { wp_register_style( 'acf-pro-field-group', acf_get_url( 'assets/build/css/pro/acf-pro-field-group.css' ), array( 'acf-input' ), $version ); } - /* - * input_admin_enqueue_scripts - * - * description - * - * @type function - * @date 4/11/2013 - * @since 5.0.0 - * - * @param $post_id (int) - * @return $post_id (int) - */ + /** + * input_admin_enqueue_scripts + * + * description + * + * @type function + * @date 4/11/2013 + * @since 5.0.0 + * + * @param $post_id (int) + * @return $post_id (int) + */ function input_admin_enqueue_scripts() { @@ -158,18 +147,16 @@ function input_admin_enqueue_scripts() { } - /* - * field_group_admin_enqueue_scripts - * - * description - * - * @type function - * @date 4/11/2013 - * @since 5.0.0 - * - * @param $post_id (int) - * @return $post_id (int) - */ + /** + * description + * + * @type function + * @date 4/11/2013 + * @since 5.0.0 + * + * @param $post_id (int) + * @return $post_id (int) + */ function field_group_admin_enqueue_scripts() { @@ -181,8 +168,6 @@ function field_group_admin_enqueue_scripts() { * Checks for a license status error and renders it if necessary. * * @since 6.2.1 - * - * @return void */ public function maybe_show_license_status_error() { $license_status = acf_pro_get_license_status(); diff --git a/pro/acf-ui-options-page-functions.php b/pro/acf-ui-options-page-functions.php index 891e6f7..d6bd9df 100644 --- a/pro/acf-ui-options-page-functions.php +++ b/pro/acf-ui-options-page-functions.php @@ -10,7 +10,7 @@ * * @since 6.2 * - * @param int|string $id The post ID being queried. + * @param integer|string $id The post ID being queried. * @return array|false The UI options page array. */ function acf_get_ui_options_page( $id ) { @@ -22,7 +22,7 @@ function acf_get_ui_options_page( $id ) { * * @since 6.2 * - * @param int|string $id The post ID. + * @param integer|string $id The post ID. * @return array|false The UI options page array. */ function acf_get_raw_ui_options_page( $id ) { @@ -34,8 +34,8 @@ function acf_get_raw_ui_options_page( $id ) { * * @since 6.2 * - * @param int|string $id The post ID, key, or name. - * @return object|bool The post object, or false on failure. + * @param integer|string $id The post ID, key, or name. + * @return object|boolean The post object, or false on failure. */ function acf_get_ui_options_page_post( $id ) { return acf_get_internal_post_type_post( $id, 'acf-ui-options-page' ); @@ -47,7 +47,7 @@ function acf_get_ui_options_page_post( $id ) { * @since 6.2 * * @param string $id The identifier. - * @return bool + * @return boolean */ function acf_is_ui_options_page_key( $id ) { return acf_is_internal_post_type_key( $id, 'acf-ui-options-page' ); @@ -59,7 +59,7 @@ function acf_is_ui_options_page_key( $id ) { * @since 6.2 * * @param array $ui_options_page The ACF UI options page array to validate. - * @return array|bool + * @return array|boolean */ function acf_validate_ui_options_page( array $ui_options_page = array() ) { return acf_validate_internal_post_type( $ui_options_page, 'acf-ui-options-page' ); @@ -142,8 +142,8 @@ function acf_flush_ui_options_page_cache( array $ui_options_page ) { * * @since 6.2 * - * @param int|string $id The ACF UI options page ID, key or name. - * @return bool True if the options page was deleted. + * @param integer|string $id The ACF UI options page ID, key or name. + * @return boolean True if the options page was deleted. */ function acf_delete_ui_options_page( $id = 0 ) { return acf_delete_internal_post_type( $id, 'acf-ui-options-page' ); @@ -154,8 +154,8 @@ function acf_delete_ui_options_page( $id = 0 ) { * * @since 6.2 * - * @param int|string $id The UI options page ID, key, or name. - * @return bool True if the options page was trashed. + * @param integer|string $id The UI options page ID, key, or name. + * @return boolean True if the options page was trashed. */ function acf_trash_ui_options_page( $id = 0 ) { return acf_trash_internal_post_type( $id, 'acf-ui-options-page' ); @@ -166,8 +166,8 @@ function acf_trash_ui_options_page( $id = 0 ) { * * @since 6.2 * - * @param int|string $id The UI options page ID, key, or name. - * @return bool True if the options page was untrashed. + * @param integer|string $id The UI options page ID, key, or name. + * @return boolean True if the options page was untrashed. */ function acf_untrash_ui_options_page( $id = 0 ) { return acf_untrash_internal_post_type( $id, 'acf-ui-options-page' ); @@ -179,7 +179,7 @@ function acf_untrash_ui_options_page( $id = 0 ) { * @since 6.2 * * @param array $ui_options_page The ACF UI options page array. - * @return bool + * @return boolean */ function acf_is_ui_options_page( $ui_options_page ) { return acf_is_internal_post_type( $ui_options_page, 'acf-ui-options-page' ); @@ -190,9 +190,9 @@ function acf_is_ui_options_page( $ui_options_page ) { * * @since 6.2 * - * @param int|string $id The ACF UI options page ID, key or name. - * @param int $new_post_id Optional ID to override. - * @return array|bool The new ACF UI options page, or false on failure. + * @param integer|string $id The ACF UI options page ID, key or name. + * @param integer $new_post_id Optional ID to override. + * @return array|boolean The new ACF UI options page, or false on failure. */ function acf_duplicate_ui_options_page( $id = 0, $new_post_id = 0 ) { return acf_duplicate_internal_post_type( $id, $new_post_id, 'acf-ui-options-page' ); @@ -203,9 +203,9 @@ function acf_duplicate_ui_options_page( $id = 0, $new_post_id = 0 ) { * * @since 6.2 * - * @param int|string $id The ACF UI options page ID, key or name. - * @param bool $activate True if the UI options page should be activated. - * @return bool + * @param integer|string $id The ACF UI options page ID, key or name. + * @param boolean $activate True if the UI options page should be activated. + * @return boolean */ function acf_update_ui_options_page_active_status( $id, $activate = true ) { return acf_update_internal_post_type_active_status( $id, $activate, 'acf-ui-options-page' ); @@ -216,7 +216,7 @@ function acf_update_ui_options_page_active_status( $id, $activate = true ) { * * @since 6.2 * - * @param int $post_id The ACF UI options page ID. + * @param integer $post_id The ACF UI options page ID. * @return string */ function acf_get_ui_options_page_edit_link( $post_id ) { @@ -241,7 +241,7 @@ function acf_prepare_ui_options_page_for_export( array $ui_options_page = array( * @since 6.2 * * @param array $ui_options_page The ACF UI options page array. - * @return string|bool + * @return string|boolean */ function acf_export_ui_options_page_as_php( array $ui_options_page ) { return acf_export_internal_post_type_as_php( $ui_options_page, 'acf-ui-options-page' ); diff --git a/pro/admin/admin-options-page.php b/pro/admin/admin-options-page.php index df3f154..c2dec93 100644 --- a/pro/admin/admin-options-page.php +++ b/pro/admin/admin-options-page.php @@ -12,40 +12,23 @@ class acf_admin_options_page { var $page; - /* - * __construct - * - * Initialize filters, action, variables and includes - * - * @type function - * @date 23/06/12 - * @since 5.0.0 - * - * @param n/a - * @return n/a - */ - - function __construct() { - + /** + * Initialize filters, action, variables and includes + * + * @since 5.0.0 + */ + public function __construct() { // add menu items add_action( 'admin_menu', array( $this, 'admin_menu' ), 99, 0 ); } - /* - * admin_menu - * - * description - * - * @type function - * @date 24/02/2014 - * @since 5.0.0 - * - * @param - * @return - */ - - function admin_menu() { + /** + * description + * + * @since 5.0.0 + */ + public function admin_menu() { // vars $pages = acf_get_options_pages(); @@ -74,18 +57,16 @@ function admin_menu() { } - /* - * load - * - * description - * - * @type function - * @date 2/02/13 - * @since 3.6 - * - * @param $post_id (int) - * @return $post_id (int) - */ + /** + * description + * + * @type function + * @date 2/02/13 + * @since 3.6 + * + * @param $post_id (int) + * @return $post_id (int) + */ function admin_load() { @@ -121,7 +102,7 @@ function admin_load() { do_action( 'acf/options_page/save', $this->page['post_id'], $this->page['menu_slug'] ); // redirect - wp_redirect( add_query_arg( array( 'message' => '1' ) ) ); + wp_safe_redirect( add_query_arg( array( 'message' => '1' ) ) ); exit; } } @@ -144,39 +125,24 @@ function admin_load() { } - /* - * admin_enqueue_scripts - * - * This function will enqueue the 'post.js' script which adds support for 'Screen Options' column toggle - * - * @type function - * @date 23/03/2016 - * @since 5.3.2 - * - * @param - * @return - */ - - function admin_enqueue_scripts() { + /** + * This function will enqueue the 'post.js' script which adds support for 'Screen Options' column toggle + * + * @since 5.3.2 + */ + public function admin_enqueue_scripts() { wp_enqueue_script( 'post' ); } - /* - * admin_head - * - * This action will find and add field groups to the current edit page - * - * @type action (admin_head) - * @date 23/06/12 - * @since 3.1.8 - * - * @param n/a - * @return n/a - */ - - function admin_head() { + /** + * This action will find and add field groups to the current edit page + * + * @type action (admin_head) + * @since 3.1.8 + */ + public function admin_head() { // get field groups $field_groups = acf_get_field_groups( @@ -224,28 +190,26 @@ function admin_head() { } - /* - * postbox_submitdiv - * - * This function will render the submitdiv metabox - * - * @type function - * @date 23/03/2016 - * @since 5.3.2 - * - * @param n/a - * @return n/a - */ + /** + * This function will render the submitdiv metabox + * + * @type function + * @date 23/03/2016 + * @since 5.3.2 + * + * @param n/a + * @return n/a + */ function postbox_submitdiv( $post, $args ) { /** - * Fires before the major-publishing-actions div. + * Fires before the major-publishing-actions div. * - * @date 24/9/18 - * @since 5.7.7 + * @date 24/9/18 + * @since 5.7.7 * - * @param array $page The current options page. + * @param array $page The current options page. */ do_action( 'acf/options_page/submitbox_before_major_actions', $this->page ); ?> @@ -253,17 +217,17 @@ function postbox_submitdiv( $post, $args ) {
                            - +
                            page ); ?> @@ -277,15 +241,12 @@ function postbox_submitdiv( $post, $args ) { /** * Renders a postbox on an ACF options page. * - * @date 24/02/2014 * @since 5.0.0 * - * @param object $post - * @param array $args - * - * @return void + * @param object $post The post object + * @param array $args The metabox arguments */ - function postbox_acf( $post, $args ) { + public function postbox_acf( $post, $args ) { $id = $args['id']; $field_group = $args['args']['field_group']; @@ -323,14 +284,11 @@ function postbox_acf( $post, $args ) { } - /* - * html - * - * @description: - * @since: 2.0.4 - * @created: 5/12/12 - */ - + /** + * description + * + * @since 2.0.4 + */ function html() { // load view diff --git a/pro/admin/admin-updates.php b/pro/admin/admin-updates.php index dcba873..6f9aad1 100644 --- a/pro/admin/admin-updates.php +++ b/pro/admin/admin-updates.php @@ -136,8 +136,8 @@ function load() { add_action( 'admin_body_class', array( $this, 'admin_body_class' ) ); // Check activate. - if ( acf_verify_nonce( 'activate_pro_license' ) ) { - acf_pro_activate_license( sanitize_text_field( $_POST['acf_pro_license'] ) ); + if ( acf_verify_nonce( 'activate_pro_license' ) && ! empty( $_POST['acf_pro_license'] ) ) { + acf_pro_activate_license( sanitize_text_field( $_POST['acf_pro_license'] ) ); //phpcs:ignore WordPress.Security.ValidatedSanitizedInput.MissingUnslash -- unslash not needed. // Check deactivate. } elseif ( acf_verify_nonce( 'deactivate_pro_license' ) ) { diff --git a/pro/admin/post-types/admin-ui-options-page.php b/pro/admin/post-types/admin-ui-options-page.php index 66dcc20..42fdfbe 100644 --- a/pro/admin/post-types/admin-ui-options-page.php +++ b/pro/admin/post-types/admin-ui-options-page.php @@ -144,9 +144,7 @@ public function admin_enqueue_scripts() { /** * Sets up all functionality for the post type edit page to work. * - * @since 3.1.8 - * - * @return void + * @since 3.1.8 */ public function admin_head() { // global. @@ -176,8 +174,6 @@ public function admin_head() { /** * This action will allow ACF to render metaboxes after the title. - * - * @return void */ public function edit_form_after_title() { @@ -198,10 +194,10 @@ public function edit_form_after_title() { /** * This function will add extra HTML to the acf form data element * - * @since 5.3.8 + * @since 5.3.8 * - * @param array $args Arguments array to pass through to action. - * @return void + * @param array $args Arguments array to pass through to action. + * @return void */ public function form_data( $args ) { do_action( 'acf/ui_options_page/form_data', $args ); @@ -222,9 +218,7 @@ public function admin_l10n( $l10n ) { /** * Admin footer third party hook support * - * @since 5.3.2 - * - * @return void + * @since 5.3.2 */ public function admin_footer() { do_action( 'acf/ui_options_page/admin_footer' ); @@ -245,8 +239,7 @@ public function screen_settings( $html ) { /** * Sets the "Edit Post Type" screen to use a one-column layout. * - * @param integer $columns Number of columns for layout. - * + * @param integer $columns Number of columns for layout. * @return integer */ public function screen_layout( $columns = 0 ) { @@ -256,8 +249,7 @@ public function screen_layout( $columns = 0 ) { /** * Force basic settings to always be visible * - * @param array $hidden_metaboxes The metaboxes hidden on this page. - * + * @param array $hidden_metaboxes The metaboxes hidden on this page. * @return array */ public function force_basic_settings( $hidden_metaboxes ) { @@ -270,8 +262,7 @@ public function force_basic_settings( $hidden_metaboxes ) { /** * Force advanced settings to be visible * - * @param array $hidden_metaboxes The metaboxes hidden on this page. - * + * @param array $hidden_metaboxes The metaboxes hidden on this page. * @return array */ public function force_advanced_settings( $hidden_metaboxes ) { @@ -284,9 +275,7 @@ public function force_advanced_settings( $hidden_metaboxes ) { /** * This function will customize the publish metabox * - * @since 5.2.9 - * - * @return void + * @since 5.2.9 */ public function post_submitbox_misc_actions() { global $acf_ui_options_page; @@ -306,9 +295,8 @@ public function post_submitbox_misc_actions() { * * @since 1.0.0 * - * @param integer $post_id The post ID. - * @param WP_Post $post The post object. - * + * @param integer $post_id The post ID. + * @param WP_Post $post The post object. * @return integer $post_id */ public function save_post( $post_id, $post ) { @@ -336,8 +324,6 @@ public function save_post( $post_id, $post ) { * Renders HTML for the basic settings metabox. * * @since 6.2 - * - * @return void */ public function mb_basic_settings() { global $acf_ui_options_page, $acf_parent_page_options; @@ -356,8 +342,6 @@ public function mb_basic_settings() { * Renders the HTML for the advanced settings metabox. * * @since 6.2 - * - * @return void */ public function mb_advanced_settings() { acf_get_view( __DIR__ . '/../views/acf-ui-options-page/advanced-settings.php' ); diff --git a/pro/admin/post-types/admin-ui-options-pages.php b/pro/admin/post-types/admin-ui-options-pages.php index 90e9038..f971c73 100644 --- a/pro/admin/post-types/admin-ui-options-pages.php +++ b/pro/admin/post-types/admin-ui-options-pages.php @@ -38,7 +38,7 @@ class ACF_Admin_UI_Options_Pages extends ACF_Admin_Internal_Post_Type_List { /** * If this is a pro feature or not. * - * @var bool + * @var boolean */ public $is_pro_feature = true; @@ -46,8 +46,6 @@ class ACF_Admin_UI_Options_Pages extends ACF_Admin_Internal_Post_Type_List { * Constructor. * * @since 6.2 - * - * @return void */ public function __construct() { add_action( 'admin_menu', array( $this, 'admin_menu' ) ); @@ -58,8 +56,6 @@ public function __construct() { * Current screen actions for the post types list admin page. * * @since 6.1 - * - * @return void */ public function current_screen() { // Bail early if not post types admin page. @@ -168,8 +164,8 @@ public function render_admin_table_column( $column_name, $post ) { * * @since 6.1 * - * @param string $action The action being performed. - * @param int $count The number of items the action was performed on. + * @param string $action The action being performed. + * @param integer $count The number of items the action was performed on. * @return string */ public function get_action_notice_text( $action, $count = 1 ) { diff --git a/pro/admin/views/acf-ui-options-page/list-empty.php b/pro/admin/views/acf-ui-options-page/list-empty.php index cbb7a89..5437f68 100644 --- a/pro/admin/views/acf-ui-options-page/list-empty.php +++ b/pro/admin/views/acf-ui-options-page/list-empty.php @@ -1,4 +1,10 @@ options pages are custom admin pages for managing global settings via fields. You can create multiple pages and sub-pages.', 'acf' ), diff --git a/pro/admin/views/html-options-page.php b/pro/admin/views/html-options-page.php index 851aac4..ce671ad 100644 --- a/pro/admin/views/html-options-page.php +++ b/pro/admin/views/html-options-page.php @@ -1,6 +1,6 @@
                            -

                            +

                            diff --git a/pro/admin/views/html-settings-updates.php b/pro/admin/views/html-settings-updates.php index 9fccb80..1f3593f 100644 --- a/pro/admin/views/html-settings-updates.php +++ b/pro/admin/views/html-settings-updates.php @@ -11,7 +11,7 @@ /** * Renders the license status table. * - * @since 6.? + * @since 6.2.3 * * @param array $status The current license status array. * @return void @@ -98,7 +98,7 @@ function acf_pro_render_license_status_table( $status ) { /** * Renders the "Manage License"/"Renew Subscription" button. * - * @since 6.? + * @since 6.2.3 * * @param array $status The current license status. * @return void @@ -181,7 +181,7 @@ function acf_pro_render_manage_license_button( $status ) { $activate_deactivate_btn_id = $active ? 'id="deactivate-license" ' : ''; $activate_deactivate_btn_class = $active ? ' acf-btn-tertiary' : ''; ?> - type="submit" value="" class="acf-btn"> + type="submit" value="" class="acf-btn"> @@ -290,12 +292,12 @@ function acf_pro_render_manage_license_button( $status ) { - + - +
                            diff --git a/pro/blocks.php b/pro/blocks.php old mode 100644 new mode 100755 index 9ad971d..b2c1a9b --- a/pro/blocks.php +++ b/pro/blocks.php @@ -138,7 +138,7 @@ function acf_handle_json_block_registration( $settings, $metadata ) { * @since 6.0.0 * * @param array $metadata The raw block metadata array. - * @return bool + * @return boolean */ function acf_is_acf_block_json( $metadata ) { return ( isset( $metadata['acf'] ) && $metadata['acf'] ); @@ -231,7 +231,7 @@ function acf_register_block( $block ) { * @since 5.7.12 * * @param string $name The block type name. - * @return bool + * @return boolean */ function acf_has_block_type( $name ) { return acf_get_store( 'block-types' )->has( $name ); @@ -482,8 +482,8 @@ function acf_get_block_back_compat_attribute_key_array() { * @since 5.9.2 * * @param array $attributes The block attributes. - * @param string $content The block content. - * @param WP_Block $wp_block The block instance (since WP 5.5). + * @param string $content The block content. + * @param WP_Block $wp_block The block instance (since WP 5.5). * @return string The block HTML. */ function acf_render_block_callback( $attributes, $content = '', $wp_block = null ) { @@ -511,11 +511,11 @@ function acf_render_block_callback( $attributes, $content = '', $wp_block = null * @since 5.7.13 * * @param array $attributes The block attributes. - * @param string $content The block content. - * @param bool $is_preview Whether or not the block is being rendered for editing preview. - * @param int $post_id The current post being edited or viewed. - * @param WP_Block $wp_block The block instance (since WP 5.5). - * @param array $context The block context array. + * @param string $content The block content. + * @param boolean $is_preview Whether or not the block is being rendered for editing preview. + * @param integer $post_id The current post being edited or viewed. + * @param WP_Block $wp_block The block instance (since WP 5.5). + * @param array $context The block context array. * @return string The block HTML. */ function acf_rendered_block( $attributes, $content = '', $is_preview = false, $post_id = 0, $wp_block = null, $context = false ) { @@ -548,7 +548,6 @@ function acf_rendered_block( $attributes, $content = '', $is_preview = false, $p if ( $form ) { // Load the block form since we're in edit mode. - // Set flag for post REST cleanup of media enqueue count during preloads. acf_set_data( 'acf_did_render_block_form', true ); @@ -614,11 +613,11 @@ function acf_rendered_block( $attributes, $content = '', $is_preview = false, $p * @since 5.7.12 * * @param array $attributes The block attributes. - * @param string $content The block content. - * @param bool $is_preview Whether or not the block is being rendered for editing preview. - * @param int $post_id The current post being edited or viewed. - * @param WP_Block $wp_block The block instance (since WP 5.5). - * @param array $context The block context array. + * @param string $content The block content. + * @param boolean $is_preview Whether or not the block is being rendered for editing preview. + * @param integer $post_id The current post being edited or viewed. + * @param WP_Block $wp_block The block instance (since WP 5.5). + * @param array $context The block context array. * @return void|string */ function acf_render_block( $attributes, $content = '', $is_preview = false, $post_id = 0, $wp_block = null, $context = false ) { @@ -1026,7 +1025,7 @@ function acf_parse_save_blocks_callback( $matches ) { * @since 6.0.0 * * @param array $attributes A block attributes array. - * @param array $context The block context array, defaults to an empty array. + * @param array $context The block context array, defaults to an empty array. * @return string A block ID. */ function acf_get_block_id( $attributes, $context = array() ) { diff --git a/pro/fields/class-acf-field-clone.php b/pro/fields/class-acf-field-clone.php index 3c8af0a..58dcdc5 100644 --- a/pro/fields/class-acf-field-clone.php +++ b/pro/fields/class-acf-field-clone.php @@ -5,18 +5,16 @@ class acf_field_clone extends acf_field { - /* - * __construct - * - * This function will setup the field type data - * - * @type function - * @date 5/03/2014 - * @since 5.0.0 - * - * @param n/a - * @return n/a - */ + /** + * This function will setup the field type data + * + * @type function + * @date 5/03/2014 + * @since 5.0.0 + * + * @param n/a + * @return n/a + */ function initialize() { @@ -52,18 +50,16 @@ function initialize() { } - /* - * is_enabled - * - * This function will return true if acf_local functionality is enabled - * - * @type function - * @date 14/07/2016 - * @since 5.4.0 - * - * @param n/a - * @return n/a - */ + /** + * This function will return true if acf_local functionality is enabled + * + * @type function + * @date 14/07/2016 + * @since 5.4.0 + * + * @param n/a + * @return n/a + */ function is_enabled() { @@ -71,19 +67,17 @@ function is_enabled() { } - /* - * load_field() - * - * This filter is appied to the $field after it is loaded from the database - * - * @type filter - * @since 3.6 - * @date 23/01/13 - * - * @param $field - the field array holding all the field options - * - * @return $field - the field array holding all the field options - */ + /** + * This filter is appied to the $field after it is loaded from the database + * + * @type filter + * @since 3.6 + * @date 23/01/13 + * + * @param $field - the field array holding all the field options + * + * @return $field - the field array holding all the field options + */ function load_field( $field ) { @@ -101,19 +95,17 @@ function load_field( $field ) { } - /* - * acf_get_fields - * - * This function will hook into the 'acf/get_fields' filter and inject/replace seamless clones fields - * - * @type function - * @date 17/06/2016 - * @since 5.3.8 - * - * @param $fields (array) - * @param $parent (array) - * @return $fields - */ + /** + * This function will hook into the 'acf/get_fields' filter and inject/replace seamless clones fields + * + * @type function + * @date 17/06/2016 + * @since 5.3.8 + * + * @param $fields (array) + * @param $parent (array) + * @return $fields + */ function acf_get_fields( $fields, $parent ) { @@ -164,19 +156,17 @@ function acf_get_fields( $fields, $parent ) { } - /* - * get_cloned_fields - * - * This function will return an array of fields for a given clone field - * - * @type function - * @date 28/06/2016 - * @since 5.3.8 - * - * @param $field (array) - * @param $parent (array) - * @return (array) - */ + /** + * This function will return an array of fields for a given clone field + * + * @type function + * @date 28/06/2016 + * @since 5.3.8 + * + * @param $field (array) + * @param $parent (array) + * @return (array) + */ function get_cloned_fields( $field ) { @@ -241,20 +231,18 @@ function get_cloned_fields( $field ) { } - /* - * acf_clone_field - * - * This function is run when cloning a clone field - * Important to run the acf_clone_field function on sub fields to pass on settings such as 'parent_layout' - * - * @type function - * @date 28/06/2016 - * @since 5.3.8 - * - * @param $field (array) - * @param $clone_field (array) - * @return $field - */ + /** + * This function is run when cloning a clone field + * Important to run the acf_clone_field function on sub fields to pass on settings such as 'parent_layout' + * + * @type function + * @date 28/06/2016 + * @since 5.3.8 + * + * @param $field (array) + * @param $clone_field (array) + * @return $field + */ function acf_clone_field( $field, $clone_field ) { @@ -322,21 +310,19 @@ function acf_clone_field( $field, $clone_field ) { } - /* - * acf_clone_clone_field - * - * This function is run when cloning a clone field - * Important to run the acf_clone_field function on sub fields to pass on settings such as 'parent_layout' - * Do not delete! Removing this logic causes major issues with cloned clone fields within a flexible content layout. - * - * @type function - * @date 28/06/2016 - * @since 5.3.8 - * - * @param $field (array) - * @param $clone_field (array) - * @return $field - */ + /** + * This function is run when cloning a clone field + * Important to run the acf_clone_field function on sub fields to pass on settings such as 'parent_layout' + * Do not delete! Removing this logic causes major issues with cloned clone fields within a flexible content layout. + * + * @type function + * @date 28/06/2016 + * @since 5.3.8 + * + * @param $field (array) + * @param $clone_field (array) + * @return $field + */ function acf_clone_clone_field( $field, $clone_field ) { @@ -367,18 +353,16 @@ function acf_clone_clone_field( $field, $clone_field ) { } - /* - * prepare_field_for_db - * - * description - * - * @type function - * @date 4/11/16 - * @since 5.5.0 - * - * @param $post_id (int) - * @return $post_id (int) - */ + /** + * description + * + * @type function + * @date 4/11/16 + * @since 5.5.0 + * + * @param $post_id (int) + * @return $post_id (int) + */ function prepare_field_for_db( $field ) { @@ -408,7 +392,6 @@ function prepare_field_for_db( $field ) { // acf_log('== prepare_field_for_db =='); // acf_log('- clone name:', $field['name']); // acf_log('- clone _name:', $field['_name']); - // loop foreach ( $field['sub_fields'] as &$sub_field ) { $sub_field['name'] = $prefix . $sub_field['name']; @@ -419,20 +402,18 @@ function prepare_field_for_db( $field ) { } - /* - * load_value() - * - * This filter is applied to the $value after it is loaded from the db - * - * @type filter - * @since 3.6 - * @date 23/01/13 - * - * @param $value (mixed) the value found in the database - * @param $post_id (mixed) the $post_id from which the value was loaded - * @param $field (array) the field array holding all the field options - * @return $value - */ + /** + * This filter is applied to the $value after it is loaded from the db + * + * @type filter + * @since 3.6 + * @date 23/01/13 + * + * @param $value (mixed) the value found in the database + * @param $post_id (mixed) the post_id from which the value was loaded + * @param $field (array) the field array holding all the field options + * @return $value + */ function load_value( $value, $post_id, $field ) { @@ -459,23 +440,19 @@ function load_value( $value, $post_id, $field ) { } - /* - * format_value() - * - * This filter is appied to the $value after it is loaded from the db and before it is returned to the template - * - * @type filter - * @since 3.6 - * @date 23/01/13 - * - * @param $value (mixed) the value which was loaded from the database - * @param $post_id (mixed) the $post_id from which the value was loaded - * @param $field (array) the field array holding all the field options - * - * @return $value (mixed) the modified value - */ - - function format_value( $value, $post_id, $field ) { + /** + * This filter is appied to the $value after it is loaded from the db and before it is returned to the template + * + * @type filter + * @since 3.6 + * + * @param mixed $value The value which was loaded from the database. + * @param mixed $post_id The $post_id from which the value was loaded. + * @param array $field The field array holding all the field options. + * @param boolean $escape_html Should the field return a HTML safe formatted value. + * @return mixed $value The modified value. + */ + public function format_value( $value, $post_id, $field, $escape_html = false ) { // bail early if no value if ( empty( $value ) ) { @@ -492,7 +469,7 @@ function format_value( $value, $post_id, $field ) { $sub_value = acf_extract_var( $value, $sub_field['key'] ); // format value - $sub_value = acf_format_value( $sub_value, $post_id, $sub_field ); + $sub_value = acf_format_value( $sub_value, $post_id, $sub_field, $escape_html ); // append to $row $value[ $sub_field['__name'] ] = $sub_value; @@ -505,9 +482,9 @@ function format_value( $value, $post_id, $field ) { /** * Apply basic formatting to prepare the value for default REST output. * - * @param mixed $value - * @param string|int $post_id - * @param array $field + * @param mixed $value + * @param string|integer $post_id + * @param array $field * @return mixed */ public function format_value_for_rest( $value, $post_id, array $field ) { @@ -534,21 +511,19 @@ public function format_value_for_rest( $value, $post_id, array $field ) { return $value; } - /* - * update_value() - * - * This filter is appied to the $value before it is updated in the db - * - * @type filter - * @since 3.6 - * @date 23/01/13 - * - * @param $value - the value which will be saved in the database - * @param $field - the field array holding all the field options - * @param $post_id - the $post_id of which the value will be saved - * - * @return $value - the modified value - */ + /** + * This filter is appied to the $value before it is updated in the db + * + * @type filter + * @since 3.6 + * @date 23/01/13 + * + * @param $value - the value which will be saved in the database + * @param $field - the field array holding all the field options + * @param $post_id - the post_id of which the value will be saved + * + * @return $value - the modified value + */ function update_value( $value, $post_id, $field ) { @@ -598,17 +573,15 @@ function update_value( $value, $post_id, $field ) { } - /* - * render_field() - * - * Create the HTML interface for your field - * - * @param $field - an array holding all the field's data - * - * @type action - * @since 3.6 - * @date 23/01/13 - */ + /** + * Create the HTML interface for your field + * + * @param $field - an array holding all the field's data + * + * @type action + * @since 3.6 + * @date 23/01/13 + */ function render_field( $field ) { @@ -652,18 +625,16 @@ function render_field( $field ) { } - /* - * render_field_block - * - * description - * - * @type function - * @date 12/07/2016 - * @since 5.4.0 - * - * @param $post_id (int) - * @return $post_id (int) - */ + /** + * description + * + * @type function + * @date 12/07/2016 + * @since 5.4.0 + * + * @param $post_id (int) + * @return $post_id (int) + */ function render_field_block( $field ) { @@ -671,7 +642,7 @@ function render_field_block( $field ) { $label_placement = $field['layout'] == 'block' ? 'top' : 'left'; // html - echo '
                            '; + echo '
                            '; foreach ( $field['sub_fields'] as $sub_field ) { acf_render_field_wrap( $sub_field ); @@ -681,18 +652,16 @@ function render_field_block( $field ) { } - /* - * render_field_table - * - * description - * - * @type function - * @date 12/07/2016 - * @since 5.4.0 - * - * @param $post_id (int) - * @return $post_id (int) - */ + /** + * description + * + * @type function + * @date 12/07/2016 + * @since 5.4.0 + * + * @param $post_id (int) + * @return $post_id (int) + */ function render_field_table( $field ) { @@ -745,18 +714,16 @@ function render_field_table( $field ) { } - /* - * render_field_settings() - * - * Create extra options for your field. This is rendered when editing a field. - * The value of $field['name'] can be used (like bellow) to save extra data to the $field - * - * @param $field - an array holding all the field's data - * - * @type action - * @since 3.6 - * @date 23/01/13 - */ + /** + * Create extra options for your field. This is rendered when editing a field. + * The value of $field['name'] can be used (like bellow) to save extra data to the $field + * + * @param $field - an array holding all the field's data + * + * @type action + * @since 3.6 + * @date 23/01/13 + */ function render_field_settings( $field ) { @@ -848,18 +815,16 @@ function render_field_settings( $field ) { } - /* - * get_clone_setting_choices - * - * This function will return an array of choices data for Select2 - * - * @type function - * @date 17/06/2016 - * @since 5.3.8 - * - * @param $value (mixed) - * @return (array) - */ + /** + * This function will return an array of choices data for Select2 + * + * @type function + * @date 17/06/2016 + * @since 5.3.8 + * + * @param $value (mixed) + * @return (array) + */ function get_clone_setting_choices( $value ) { @@ -884,18 +849,16 @@ function get_clone_setting_choices( $value ) { } - /* - * get_clone_setting_choice - * - * This function will return the label for a given clone choice - * - * @type function - * @date 17/06/2016 - * @since 5.3.8 - * - * @param $selector (mixed) - * @return (string) - */ + /** + * This function will return the label for a given clone choice + * + * @type function + * @date 17/06/2016 + * @since 5.3.8 + * + * @param $selector (mixed) + * @return (string) + */ function get_clone_setting_choice( $selector = '' ) { @@ -926,18 +889,16 @@ function get_clone_setting_choice( $selector = '' ) { } - /* - * get_clone_setting_field_choice - * - * This function will return the text for a field choice - * - * @type function - * @date 20/07/2016 - * @since 5.4.0 - * - * @param $field (array) - * @return (string) - */ + /** + * This function will return the text for a field choice + * + * @type function + * @date 20/07/2016 + * @since 5.4.0 + * + * @param $field (array) + * @return (string) + */ function get_clone_setting_field_choice( $field ) { @@ -962,18 +923,16 @@ function get_clone_setting_field_choice( $field ) { } - /* - * get_clone_setting_group_choice - * - * This function will return the text for a group choice - * - * @type function - * @date 20/07/2016 - * @since 5.4.0 - * - * @param $field_group (array) - * @return (string) - */ + /** + * This function will return the text for a group choice + * + * @type function + * @date 20/07/2016 + * @since 5.4.0 + * + * @param $field_group (array) + * @return (string) + */ function get_clone_setting_group_choice( $field_group ) { @@ -987,18 +946,16 @@ function get_clone_setting_group_choice( $field_group ) { } - /* - * ajax_query - * - * description - * - * @type function - * @date 17/06/2016 - * @since 5.3.8 - * - * @param $post_id (int) - * @return $post_id (int) - */ + /** + * description + * + * @type function + * @date 17/06/2016 + * @since 5.3.8 + * + * @param $post_id (int) + * @return $post_id (int) + */ function ajax_query() { @@ -1177,18 +1134,16 @@ function ajax_query() { } - /* - * acf_prepare_field - * - * This function will restore a field's key ready for input - * - * @type function - * @date 6/09/2016 - * @since 5.4.0 - * - * @param $field (array) - * @return $field - */ + /** + * This function will restore a field's key ready for input + * + * @type function + * @date 6/09/2016 + * @since 5.4.0 + * + * @param $field (array) + * @return $field + */ function acf_prepare_field( $field ) { @@ -1207,18 +1162,16 @@ function acf_prepare_field( $field ) { } - /* - * validate_value - * - * description - * - * @type function - * @date 11/02/2014 - * @since 5.0.0 - * - * @param $post_id (int) - * @return $post_id (int) - */ + /** + * description + * + * @type function + * @date 11/02/2014 + * @since 5.0.0 + * + * @param $post_id (int) + * @return $post_id (int) + */ function validate_value( $valid, $value, $field, $input ) { diff --git a/pro/fields/class-acf-field-flexible-content.php b/pro/fields/class-acf-field-flexible-content.php index de25734..c2da86a 100644 --- a/pro/fields/class-acf-field-flexible-content.php +++ b/pro/fields/class-acf-field-flexible-content.php @@ -5,20 +5,17 @@ class acf_field_flexible_content extends acf_field { - /* - * __construct - * - * This function will setup the field type data - * - * @type function - * @date 5/03/2014 - * @since 5.0.0 - * - * @param n/a - * @return n/a - */ - - function initialize() { + /** + * This function will setup the field type data + * + * @type function + * @date 5/03/2014 + * @since 5.0.0 + * + * @param n/a + * @return n/a + */ + public function initialize() { // vars $this->name = 'flexible_content'; @@ -52,20 +49,17 @@ function initialize() { } - /* - * input_admin_enqueue_scripts - * - * description - * - * @type function - * @date 16/12/2015 - * @since 5.3.2 - * - * @param $post_id (int) - * @return $post_id (int) - */ - - function input_admin_enqueue_scripts() { + /** + * Admin scripts enqueue for field. + * + * @type function + * @date 16/12/2015 + * @since 5.3.2 + * + * @param $post_id (int) + * @return $post_id (int) + */ + public function input_admin_enqueue_scripts() { // localize acf_localize_text( @@ -91,18 +85,16 @@ function input_admin_enqueue_scripts() { } - /* - * get_valid_layout - * - * This function will fill in the missing keys to create a valid layout - * - * @type function - * @date 3/10/13 - * @since 1.1.0 - * - * @param $layout (array) - * @return $layout (array) - */ + /** + * This function will fill in the missing keys to create a valid layout + * + * @type function + * @date 3/10/13 + * @since 1.1.0 + * + * @param $layout (array) + * @return $layout (array) + */ function get_valid_layout( $layout = array() ) { @@ -125,19 +117,17 @@ function get_valid_layout( $layout = array() ) { } - /* - * load_field() - * - * This filter is appied to the $field after it is loaded from the database - * - * @type filter - * @since 3.6 - * @date 23/01/13 - * - * @param $field - the field array holding all the field options - * - * @return $field - the field array holding all the field options - */ + /** + * This filter is appied to the $field after it is loaded from the database + * + * @type filter + * @since 3.6 + * @date 23/01/13 + * + * @param $field - the field array holding all the field options + * + * @return $field - the field array holding all the field options + */ function load_field( $field ) { @@ -185,20 +175,18 @@ function load_field( $field ) { } - /* - * get_sub_field - * - * This function will return a specific sub field - * - * @type function - * @date 29/09/2016 - * @since 5.4.0 - * - * @param $sub_field - * @param $selector (string) - * @param $field (array) - * @return $post_id (int) - */ + /** + * This function will return a specific sub field + * + * @type function + * @date 29/09/2016 + * @since 5.4.0 + * + * @param $sub_field + * @param $selector (string) + * @param $field (array) + * @return $post_id (int) + */ function get_sub_field( $sub_field, $id, $field ) { // Get active layout. @@ -228,17 +216,15 @@ function get_sub_field( $sub_field, $id, $field ) { } - /* - * render_field() - * - * Create the HTML interface for your field - * - * @param $field - an array holding all the field's data - * - * @type action - * @since 3.6 - * @date 23/01/13 - */ + /** + * Create the HTML interface for your field + * + * @param $field - an array holding all the field's data + * + * @type action + * @since 3.6 + * @date 23/01/13 + */ function render_field( $field ) { @@ -267,86 +253,79 @@ function render_field( $field ) { } // no value message + // translators: %s the button label used for adding a new layout. $no_value_message = __( 'Click the "%s" button below to start creating your layout', 'acf' ); $no_value_message = apply_filters( 'acf/fields/flexible_content/no_value_message', $no_value_message, $field ); $no_value_message = sprintf( $no_value_message, $field['button_label'] ); ?> -
                            > +
                            > - $field['name'] ) ); ?> + $field['name'] ) ); ?> -
                            - -
                            +
                            + +
                            -
                            - - render_layout( $field, $layout, 'acfcloneindex', array() ); ?> - -
                            +
                            + + render_layout( $field, $layout, 'acfcloneindex', array() ); ?> + +
                            -
                            - $value ) : +
                            + $value ) { - // validate - if ( ! is_array( $value ) ) { - continue; - } + // validate + if ( ! is_array( $value ) ) { + continue; + } - if ( empty( $layouts[ $value['acf_fc_layout'] ] ) ) { - continue; - } + if ( empty( $layouts[ $value['acf_fc_layout'] ] ) ) { + continue; + } - // render - $this->render_layout( $field, $layouts[ $value['acf_fc_layout'] ], $i, $value ); - endforeach; - endif; - ?> -
                            + // render + $this->render_layout( $field, $layouts[ $value['acf_fc_layout'] ], $i, $value ); + } + } + ?> +
                            -
                            - -
                            +
                            + +
                            - - -
                            + printf( '
                          • %s
                          • ', acf_esc_attrs( $atts ), acf_esc_html( $layout['label'] ) ); + } + echo ''; + ?> +
                            'layout', 'data-id' => $id, 'data-layout' => $layout['name'], + 'data-max' => $layout['max'], + 'data-label' => $layout['label'], ); // clone @@ -383,7 +364,7 @@ function render_layout( $field, $layout, $i, $value ) { reset_rows(); ?> -
                            > +
                            > -
                            +
                            - - - - + + + +
                            @@ -556,114 +537,112 @@ public function render_field_settings( $field ) { ); ?> -
                              -
                            • - 'text', - 'name' => 'label', - 'class' => 'layout-label', - 'prefix' => $layout_prefix, - 'value' => $layout['label'], - 'prepend' => __( 'Label', 'acf' ), - ) - ); - - ?> -
                            • -
                            • - 'text', - 'name' => 'name', - 'class' => 'layout-name', - 'input-data' => array( '1p-ignore' => 'true' ), - 'prefix' => $layout_prefix, - 'value' => $layout['name'], - 'prepend' => __( 'Name', 'acf' ), - ) - ); - - ?> -
                            • -
                            • -
                              -
                              - 'select', - 'name' => 'display', - 'prefix' => $layout_prefix, - 'value' => $layout['display'], - 'class' => 'acf-is-prepended', - 'choices' => array( - 'table' => __( 'Table', 'acf' ), - 'block' => __( 'Block', 'acf' ), - 'row' => __( 'Row', 'acf' ), - ), - ) - ); - - ?> -
                              -
                            • -
                            • - 'text', - 'name' => 'min', - 'prefix' => $layout_prefix, - 'value' => $layout['min'], - 'prepend' => __( 'Min', 'acf' ), - ) - ); - - ?> -
                            • -
                            • +
                                +
                              • 'text', - 'name' => 'max', + 'name' => 'label', + 'class' => 'layout-label', 'prefix' => $layout_prefix, - 'value' => $layout['max'], - 'prepend' => __( 'Max', 'acf' ), + 'value' => $layout['label'], + 'prepend' => __( 'Label', 'acf' ), ) ); ?> -
                              • -
                              -
                              - +
                            • + 'text', + 'name' => 'name', + 'class' => 'layout-name', + 'input-data' => array( '1p-ignore' => 'true' ), + 'prefix' => $layout_prefix, + 'value' => $layout['name'], + 'prepend' => __( 'Name', 'acf' ), + ) + ); + + ?> +
                            • +
                            • +
                              +
                              + 'select', + 'name' => 'display', + 'prefix' => $layout_prefix, + 'value' => $layout['display'], + 'class' => 'acf-is-prepended', + 'choices' => array( + 'table' => __( 'Table', 'acf' ), + 'block' => __( 'Block', 'acf' ), + 'row' => __( 'Row', 'acf' ), + ), + ) + ); + + ?> +
                              +
                            • +
                            • + 'text', + 'name' => 'min', + 'prefix' => $layout_prefix, + 'value' => $layout['min'], + 'prepend' => __( 'Min', 'acf' ), + ) + ); + + ?> +
                            • +
                            • + 'text', + 'name' => 'max', + 'prefix' => $layout_prefix, + 'value' => $layout['max'], + 'prepend' => __( 'Max', 'acf' ), + ) + ); + + ?> +
                            • +
                            +
                            + $layout['sub_fields'], - 'parent' => $field['ID'], - 'is_subfield' => true, - ); + // vars + $args = array( + 'fields' => $layout['sub_fields'], + 'parent' => $field['ID'], + 'is_subfield' => true, + ); - acf_get_view( 'acf-field-group/fields', $args ); + acf_get_view( 'acf-field-group/fields', $args ); - ?> + ?> +
                            -
                            get_layout_title( $field, $layout, $options['i'], $options['value'] ); // echo - echo $title; + echo acf_esc_html( $title ); die; } - function get_layout_title( $field, $layout, $i, $value ) { + /** + * Get a layout title for a field. + * + * @param array $field The field array + * @param array $layout The layout array + * @param integer $i The order number of the layout + * @param array $value The value of the layout + * @return string The layout title, optionally filtered. + */ + public function get_layout_title( $field, $layout, $i, $value ) { // vars $rows = array(); @@ -1425,26 +1369,22 @@ function get_layout_title( $field, $layout, $i, $value ) { $order = is_numeric( $i ) ? $i + 1 : 0; $title = '' . $order . ' ' . acf_esc_html( $title ); - // return return $title; } - /* - * clone_any_field - * - * This function will update clone field settings based on the origional field - * - * @type function - * @date 28/06/2016 - * @since 5.3.8 - * - * @param $clone (array) - * @param $field (array) - * @return $clone - */ - - function clone_any_field( $field, $clone_field ) { + /** + * This function will update clone field settings based on the origional field + * + * @type function + * @date 28/06/2016 + * @since 5.3.8 + * + * @param $clone (array) + * @param $field (array) + * @return $clone + */ + public function clone_any_field( $field, $clone_field ) { // remove parent_layout // - allows a sub field to be rendered as a normal field @@ -1460,20 +1400,15 @@ function clone_any_field( $field, $clone_field ) { } - /* - * prepare_field_for_export - * - * description - * - * @type function - * @date 11/03/2014 - * @since 5.0.0 - * - * @param $post_id (int) - * @return $post_id (int) - */ - - function prepare_field_for_export( $field ) { + /** + * Handles preparing the layouts for export. + * + * @since 5.0.0 + * + * @param array $field The whole fiel array + * @return array The export ready field array. + */ + public function prepare_field_for_export( $field ) { // loop if ( ! empty( $field['layouts'] ) ) { @@ -1496,20 +1431,17 @@ function prepare_any_field_for_export( $field ) { } - /* - * prepare_field_for_import - * - * description - * - * @type function - * @date 11/03/2014 - * @since 5.0.0 - * - * @param $post_id (int) - * @return $post_id (int) - */ - - function prepare_field_for_import( $field ) { + /** + * description + * + * @type function + * @date 11/03/2014 + * @since 5.0.0 + * + * @param $post_id (int) + * @return $post_id (int) + */ + public function prepare_field_for_import( $field ) { // Bail early if no layouts if ( empty( $field['layouts'] ) ) { @@ -1554,18 +1486,16 @@ function prepare_field_for_import( $field ) { } - /* - * validate_any_field - * - * This function will add compatibility for the 'column_width' setting - * - * @type function - * @date 30/1/17 - * @since 5.5.6 - * - * @param $field (array) - * @return $field - */ + /** + * This function will add compatibility for the 'column_width' setting + * + * @type function + * @date 30/1/17 + * @since 5.5.6 + * + * @param $field (array) + * @return $field + */ function validate_any_field( $field ) { @@ -1579,18 +1509,16 @@ function validate_any_field( $field ) { } - /* - * translate_field - * - * This function will translate field settings - * - * @type function - * @date 8/03/2016 - * @since 5.3.2 - * - * @param $field (array) - * @return $field - */ + /** + * This function will translate field settings + * + * @type function + * @date 8/03/2016 + * @since 5.3.2 + * + * @param $field (array) + * @return $field + */ function translate_field( $field ) { @@ -1611,11 +1539,10 @@ function translate_field( $field ) { /** * Additional validation for the flexible content field when submitted via REST. * - * @param bool $valid - * @param int $value - * @param array $field - * - * @return bool|WP_Error + * @param boolean $valid The current validity booleean + * @param integer $value The value of the field + * @param array $field The field array + * @return boolean|WP */ public function validate_rest_value( $valid, $value, $field ) { $param = sprintf( '%s[%s]', $field['prefix'], $field['name'] ); @@ -1723,9 +1650,9 @@ public function get_rest_schema( array $field ) { /** * Apply basic formatting to prepare the value for default REST output. * - * @param mixed $value - * @param int|string $post_id - * @param array $field + * @param mixed $value + * @param integer|string $post_id + * @param array $field * @return array|mixed */ public function format_value_for_rest( $value, $post_id, array $field ) { diff --git a/pro/fields/class-acf-field-gallery.php b/pro/fields/class-acf-field-gallery.php index 410223d..c560db2 100644 --- a/pro/fields/class-acf-field-gallery.php +++ b/pro/fields/class-acf-field-gallery.php @@ -5,18 +5,16 @@ class acf_field_gallery extends acf_field { - /* - * __construct - * - * This function will setup the field type data - * - * @type function - * @date 5/03/2014 - * @since 5.0.0 - * - * @param n/a - * @return n/a - */ + /** + * This function will setup the field type data + * + * @type function + * @date 5/03/2014 + * @since 5.0.0 + * + * @param n/a + * @return n/a + */ function initialize() { @@ -56,18 +54,16 @@ function initialize() { add_action( 'wp_ajax_nopriv_acf/fields/gallery/get_sort_order', array( $this, 'ajax_get_sort_order' ) ); } - /* - * input_admin_enqueue_scripts - * - * description - * - * @type function - * @date 16/12/2015 - * @since 5.3.2 - * - * @param $post_id (int) - * @return $post_id (int) - */ + /** + * description + * + * @type function + * @date 16/12/2015 + * @since 5.3.2 + * + * @param $post_id (int) + * @return $post_id (int) + */ function input_admin_enqueue_scripts() { @@ -81,18 +77,16 @@ function input_admin_enqueue_scripts() { } - /* - * ajax_get_attachment - * - * description - * - * @type function - * @date 13/12/2013 - * @since 5.0.0 - * - * @param $post_id (int) - * @return $post_id (int) - */ + /** + * description + * + * @type function + * @date 13/12/2013 + * @since 5.0.0 + * + * @param $post_id (int) + * @return $post_id (int) + */ function ajax_get_attachment() { @@ -129,21 +123,23 @@ function ajax_get_attachment() { } - /* - * ajax_update_attachment - * - * description - * - * @type function - * @date 13/12/2013 - * @since 5.0.0 - * - * @param $post_id (int) - * @return $post_id (int) - */ + /** + * description + * + * @type function + * @date 13/12/2013 + * @since 5.0.0 + * + * @param $post_id (int) + * @return $post_id (int) + */ function ajax_update_attachment() { + if ( ! isset( $_POST['nonce'] ) ) { + wp_send_json_error(); + } + // validate nonce if ( ! wp_verify_nonce( sanitize_text_field( wp_unslash( $_POST['nonce'] ) ), 'acf_nonce' ) ) { wp_send_json_error(); @@ -205,18 +201,16 @@ function ajax_update_attachment() { } - /* - * ajax_get_sort_order - * - * description - * - * @type function - * @date 13/12/2013 - * @since 5.0.0 - * - * @param $post_id (int) - * @return $post_id (int) - */ + /** + * description + * + * @type function + * @date 13/12/2013 + * @since 5.0.0 + * + * @param $post_id (int) + * @return $post_id (int) + */ function ajax_get_sort_order() { @@ -277,8 +271,8 @@ function ajax_get_sort_order() { * @date 13/12/2013 * @since 5.0.0 * - * @param int $id The attachment ID. - * @param array $field The field array. + * @param integer $id The attachment ID. + * @param array $field The field array. * @return void */ function render_attachment( $id, $field ) { @@ -316,13 +310,13 @@ function render_attachment( $id, $field ) { ?> @@ -386,20 +380,18 @@ function render_attachment( $id, $field ) { " alt="" /> -
                            +
                            - +
                            @@ -486,15 +478,15 @@ function render_field( $field ) { diff --git a/pro/locations/class-acf-location-block.php b/pro/locations/class-acf-location-block.php old mode 100644 new mode 100755 index 6564352..59fc72b --- a/pro/locations/class-acf-location-block.php +++ b/pro/locations/class-acf-location-block.php @@ -30,10 +30,10 @@ public function initialize() { * @date 9/4/20 * @since 5.9.0 * - * @param array $rule The location rule. - * @param array $screen The screen args. + * @param array $rule The location rule. + * @param array $screen The screen args. * @param array $field_group The field group settings. - * @return bool + * @return boolean */ public function match( $rule, $screen, $field_group ) { diff --git a/pro/locations/class-acf-location-options-page.php b/pro/locations/class-acf-location-options-page.php index caeff25..247fdc0 100644 --- a/pro/locations/class-acf-location-options-page.php +++ b/pro/locations/class-acf-location-options-page.php @@ -30,10 +30,10 @@ public function initialize() { * @date 9/4/20 * @since 5.9.0 * - * @param array $rule The location rule. - * @param array $screen The screen args. + * @param array $rule The location rule. + * @param array $screen The screen args. * @param array $field_group The field group settings. - * @return bool + * @return boolean */ public function match( $rule, $screen, $field_group ) { diff --git a/pro/options-page.php b/pro/options-page.php index 4fdffc8..b025a94 100644 --- a/pro/options-page.php +++ b/pro/options-page.php @@ -12,18 +12,16 @@ class acf_options_page { var $pages = array(); - /* - * __construct - * - * Initialize filters, action, variables and includes - * - * @type function - * @date 23/06/12 - * @since 5.0.0 - * - * @param n/a - * @return n/a - */ + /** + * Initialize filters, action, variables and includes + * + * @type function + * @date 23/06/12 + * @since 5.0.0 + * + * @param n/a + * @return n/a + */ function __construct() { @@ -114,18 +112,16 @@ function validate_page( $page ) { } - /* - * add_page - * - * This function will store an options page settings - * - * @type function - * @date 9/6/17 - * @since 5.6.0 - * - * @param $page (array) - * @return n/a - */ + /** + * This function will store an options page settings + * + * @type function + * @date 9/6/17 + * @since 5.6.0 + * + * @param $page (array) + * @return n/a + */ function add_page( $page ) { @@ -146,18 +142,16 @@ function add_page( $page ) { } - /* - * add_sub_page - * - * description - * - * @type function - * @date 9/6/17 - * @since 5.6.0 - * - * @param $post_id (int) - * @return $post_id (int) - */ + /** + * description + * + * @type function + * @date 9/6/17 + * @since 5.6.0 + * + * @param $post_id (int) + * @return $post_id (int) + */ function add_sub_page( $page ) { @@ -179,19 +173,17 @@ function add_sub_page( $page ) { } - /* - * update_page - * - * This function will update an options page settings - * - * @type function - * @date 9/6/17 - * @since 5.6.0 - * - * @param $slug (string) - * @param $data (array) - * @return (array) - */ + /** + * This function will update an options page settings + * + * @type function + * @date 9/6/17 + * @since 5.6.0 + * + * @param $slug (string) + * @param $data (array) + * @return (array) + */ function update_page( $slug = '', $data = array() ) { @@ -214,18 +206,16 @@ function update_page( $slug = '', $data = array() ) { } - /* - * get_page - * - * This function will return an options page settings - * - * @type function - * @date 6/07/2016 - * @since 5.4.0 - * - * @param $slug (string) - * @return (mixed) - */ + /** + * This function will return an options page settings + * + * @type function + * @date 6/07/2016 + * @since 5.4.0 + * + * @param $slug (string) + * @return (mixed) + */ function get_page( $slug ) { @@ -233,18 +223,16 @@ function get_page( $slug ) { } - /* - * get_pages - * - * This function will return all options page settings - * - * @type function - * @date 6/07/2016 - * @since 5.4.0 - * - * @param $slug (string) - * @return (mixed) - */ + /** + * This function will return all options page settings + * + * @type function + * @date 6/07/2016 + * @since 5.4.0 + * + * @param $slug (string) + * @return (mixed) + */ function get_pages() { @@ -254,17 +242,17 @@ function get_pages() { /* - * acf_options_page - * - * This function will return the options page instance - * - * @type function - * @date 9/6/17 - * @since 5.6.0 - * - * @param n/a - * @return (object) - */ + * acf_options_page + * + * This function will return the options page instance + * + * @type function + * @date 9/6/17 + * @since 5.6.0 + * + * @param n/a + * @return (object) + */ function acf_options_page() { @@ -287,19 +275,16 @@ function acf_options_page() { endif; // class_exists check -/* -* acf_add_options_page -* -* alias of acf_options_page()->add_page() -* -* @type function -* @date 24/02/2014 -* @since 5.0.0 -* -* @param $page (mixed) -* @return (array) -*/ - +/** + * alias of acf_options_page()->add_page() + * + * @type function + * @date 24/02/2014 + * @since 5.0.0 + * + * @param $page (mixed) + * @return (array) + */ if ( ! function_exists( 'acf_add_options_page' ) ) : function acf_add_options_page( $page = '' ) { @@ -310,19 +295,16 @@ function acf_add_options_page( $page = '' ) { endif; -/* -* acf_add_options_sub_page -* -* alias of acf_options_page()->add_sub_page() -* -* @type function -* @date 24/02/2014 -* @since 5.0.0 -* -* @param $page (mixed) -* @return (array) -*/ - +/** + * alias of acf_options_page()->add_sub_page() + * + * @type function + * @date 24/02/2014 + * @since 5.0.0 + * + * @param $page (mixed) + * @return (array) + */ if ( ! function_exists( 'acf_add_options_sub_page' ) ) : function acf_add_options_sub_page( $page = '' ) { @@ -333,20 +315,17 @@ function acf_add_options_sub_page( $page = '' ) { endif; -/* -* acf_update_options_page -* -* alias of acf_options_page()->update_page() -* -* @type function -* @date 24/02/2014 -* @since 5.0.0 -* -* @param $slug (string) -* @param $page (mixed) -* @return (array) -*/ - +/** + * alias of acf_options_page()->update_page() + * + * @type function + * @date 24/02/2014 + * @since 5.0.0 + * + * @param $slug (string) + * @param $page (mixed) + * @return (array) + */ if ( ! function_exists( 'acf_update_options_page' ) ) : function acf_update_options_page( $slug = '', $data = array() ) { @@ -357,19 +336,16 @@ function acf_update_options_page( $slug = '', $data = array() ) { endif; -/* -* acf_get_options_page -* -* This function will return an options page settings -* -* @type function -* @date 24/02/2014 -* @since 5.0.0 -* -* @param $slug (string) -* @return (array) -*/ - +/** + * This function will return an options page settings + * + * @type function + * @date 24/02/2014 + * @since 5.0.0 + * + * @param $slug (string) + * @return (array) + */ if ( ! function_exists( 'acf_get_options_page' ) ) : function acf_get_options_page( $slug ) { @@ -392,19 +368,16 @@ function acf_get_options_page( $slug ) { endif; -/* -* acf_get_options_pages -* -* This function will return all options page settings -* -* @type function -* @date 24/02/2014 -* @since 5.0.0 -* -* @param n/a -* @return (array) -*/ - +/** + * This function will return all options page settings + * + * @type function + * @date 24/02/2014 + * @since 5.0.0 + * + * @param n/a + * @return (array) + */ if ( ! function_exists( 'acf_get_options_pages' ) ) : function acf_get_options_pages() { @@ -482,19 +455,16 @@ function acf_get_options_pages() { endif; -/* -* acf_set_options_page_title -* -* This function is used to customize the options page admin menu title -* -* @type function -* @date 13/07/13 -* @since 4.0.0 -* -* @param $title (string) -* @return n/a -*/ - +/** + * This function is used to customize the options page admin menu title + * + * @type function + * @date 13/07/13 + * @since 4.0.0 + * + * @param $title (string) + * @return n/a + */ if ( ! function_exists( 'acf_set_options_page_title' ) ) : function acf_set_options_page_title( $title = 'Options' ) { @@ -511,19 +481,16 @@ function acf_set_options_page_title( $title = 'Options' ) { endif; -/* -* acf_set_options_page_menu -* -* This function is used to customize the options page admin menu name -* -* @type function -* @date 13/07/13 -* @since 4.0.0 -* -* @param $title (string) -* @return n/a -*/ - +/** + * This function is used to customize the options page admin menu name + * + * @type function + * @date 13/07/13 + * @since 4.0.0 + * + * @param $title (string) + * @return n/a + */ if ( ! function_exists( 'acf_set_options_page_menu' ) ) : function acf_set_options_page_menu( $title = 'Options' ) { @@ -539,19 +506,16 @@ function acf_set_options_page_menu( $title = 'Options' ) { endif; -/* -* acf_set_options_page_capability -* -* This function is used to customize the options page capability. Defaults to 'edit_posts' -* -* @type function -* @date 13/07/13 -* @since 4.0.0 -* -* @param $title (string) -* @return n/a -*/ - +/** + * This function is used to customize the options page capability. Defaults to 'edit_posts' + * + * @type function + * @date 13/07/13 + * @since 4.0.0 + * + * @param $title (string) + * @return n/a + */ if ( ! function_exists( 'acf_set_options_page_capability' ) ) : function acf_set_options_page_capability( $capability = 'edit_posts' ) { @@ -567,19 +531,16 @@ function acf_set_options_page_capability( $capability = 'edit_posts' ) { endif; -/* -* register_options_page() -* -* This is an old function which is now referencing the new 'acf_add_options_sub_page' function -* -* @type function -* @since 3.0.0 -* @date 29/01/13 -* -* @param {string} $title -* @return N/A -*/ - +/** + * This is an old function which is now referencing the new 'acf_add_options_sub_page' function + * + * @type function + * @since 3.0.0 + * @date 29/01/13 + * + * @param {string} $title + * @return N/A + */ if ( ! function_exists( 'register_options_page' ) ) : function register_options_page( $page = '' ) { diff --git a/pro/post-types/acf-ui-options-page.php b/pro/post-types/acf-ui-options-page.php index 91be26a..a667204 100644 --- a/pro/post-types/acf-ui-options-page.php +++ b/pro/post-types/acf-ui-options-page.php @@ -185,10 +185,14 @@ public function get_settings_array() { * * @since 6.2 * - * @return bool validity status + * @return boolean validity status */ public function ajax_validate_values() { - $to_validate = acf_sanitize_request_args( $_POST['acf_ui_options_page'] ); // phpcs:ignore WordPress.Security.NonceVerification.Missing -- Verified elsewhere. + if ( empty( $_POST['acf_ui_options_page'] ) ) { // phpcs:ignore WordPress.Security.NonceVerification.Missing -- Verified elsewhere. + return false; + } + + $to_validate = acf_sanitize_request_args( wp_unslash( $_POST['acf_ui_options_page'] ) ); // phpcs:ignore WordPress.Security.NonceVerification.Missing -- Verified elsewhere. $post_id = acf_request_arg( 'post_id' ); $valid = true; $menu_slug = (string) $to_validate['menu_slug']; @@ -280,8 +284,6 @@ public function setup_local_json() { * Includes all local JSON options pages. * * @since 6.1 - * - * @return void */ public function include_json_options_pages() { $local_json = acf_get_instance( 'ACF_Local_JSON' ); diff --git a/pro/updates.php b/pro/updates.php index f9e1c6d..a2ff654 100644 --- a/pro/updates.php +++ b/pro/updates.php @@ -11,7 +11,6 @@ class acf_pro_updates { /** * Initialize filters, action, variables and includes * - * @date 23/06/12 * @since 5.0.0 */ public function __construct() { @@ -52,7 +51,6 @@ public function init() { /** * Displays an update message for plugin list screens. * - * @date 14/06/2016 * @since 5.3.8 * * @param array $plugin_data An array of plugin metadata. @@ -87,7 +85,6 @@ public function modify_plugin_update_message( $plugin_data, $response ) { * Check if a license is defined in wp-config.php and requires activation. * Also checks if the license key has been changed and reactivates. * - * @date 29/09/2021 * @since 5.11.0 */ function acf_pro_check_defined_license() { @@ -109,7 +106,7 @@ function acf_pro_check_defined_license() { // Check if we've been asked to clear the transient to retry activation. if ( acf_verify_nonce( 'acf_delete_activation_transient' ) || ( isset( $_REQUEST['acf_retry_nonce'] ) && wp_verify_nonce( sanitize_text_field( wp_unslash( $_REQUEST['acf_retry_nonce'] ) ), 'acf_retry_activation' ) ) ) { - delete_transient( 'acf_activation_error' ); + acf_pro_delete_license_transient( 'acf_activation_error' ); } else { // If we've failed activation recently, check if the key has been changed, otherwise return. $activation_data = acf_pro_get_activation_failure_transient(); @@ -170,7 +167,7 @@ function acf_pro_check_defined_license() { } else { // Delete any previously saved activation error transient. - delete_transient( 'acf_activation_error' ); + acf_pro_delete_license_transient( 'acf_activation_error' ); // Use our own success message instead of the one from connect so it can be translated. acf_add_admin_notice( @@ -270,18 +267,17 @@ function acf_pro_get_translated_connect_message( $text ) { } /** - * Set the automatic activation failure transient + * Set the automatic activation failure transient * - * @date 11/10/2021 - * @since 5.11.0 + * @since 5.11.0 * - * @param string $error_text string containing the error text message. - * @param string $license_key the license key that was used during the failed activation. + * @param string $error_text string containing the error text message. + * @param string $license_key the license key that was used during the failed activation. * - * @return void + * @return void */ function acf_pro_set_activation_failure_transient( $error_text, $license_key ) { - set_transient( + acf_pro_set_license_transient( 'acf_activation_error', array( 'error' => $error_text, @@ -292,21 +288,19 @@ function acf_pro_set_activation_failure_transient( $error_text, $license_key ) { } /** - * Get the automatic activation failure transient + * Get the automatic activation failure transient * - * @date 11/10/2021 - * @since 5.11.0 + * @since 5.11.0 * - * @return array|false Activation failure transient array, or false if it's not set. + * @return array|false Activation failure transient array, or false if it's not set. */ function acf_pro_get_activation_failure_transient() { - return get_transient( 'acf_activation_error' ); + return acf_pro_get_license_transient( 'acf_activation_error' ); } /** * Display the stored activation error * - * @date 11/10/2021 * @since 5.11.0 */ function acf_pro_display_activation_error( $screen ) { @@ -335,23 +329,21 @@ function acf_pro_display_activation_error( $screen ) { // Check if the license key is defined. If not, delete the transient. if ( ! defined( 'ACF_PRO_LICENSE' ) || empty( ACF_PRO_LICENSE ) || ! is_string( ACF_PRO_LICENSE ) ) { - delete_transient( 'acf_activation_error' ); + acf_pro_delete_license_transient( 'acf_activation_error' ); return; } // Prepend ACF PRO for context since we're not in an ACF PRO admin screen. - $activation_data['error'] = __( 'ACF PRO — ', 'acf' ) . $activation_data['error']; - - // Append a retry link if we're not already on the settings page and we don't already have a link from upstream. - if ( ! acf_is_screen( 'acf_page_acf-settings-updates' ) ) { - if ( strpos( $activation_data['error'], 'http' ) === false ) { - $nonce = wp_create_nonce( 'acf_retry_activation' ); - $check_again_url = 'edit.php?post_type=acf-field-group'; - if ( acf_is_updates_page_visible() ) { - $check_again_url .= '&page=acf-settings-updates'; - } - $activation_data['error'] = $activation_data['error'] . ' ' . __( 'Check again', 'acf' ) . ''; + $activation_data['error'] = __( 'ACF PRO —', 'acf' ) . ' ' . $activation_data['error']; + + // Append a retry link if we don't already have a link from upstream. + if ( strpos( $activation_data['error'], 'http' ) === false ) { + $nonce = wp_create_nonce( 'acf_retry_activation' ); + $check_again_url = 'edit.php?post_type=acf-field-group'; + if ( acf_is_updates_page_visible() ) { + $check_again_url .= '&page=acf-settings-updates'; } + $activation_data['error'] = $activation_data['error'] . ' ' . __( 'Check again', 'acf' ) . ''; } // Add a non-dismissible error message with the activation error. @@ -359,18 +351,15 @@ function acf_pro_display_activation_error( $screen ) { } /** - * This function will return the license + * This function will return the license * - * @type function - * @date 20/09/2016 - * @since 5.4.0 + * @since 5.4.0 * - * @return $license Activated license array + * @return array|boolean $license The ACF PRO license array on success, or false on failure. */ function acf_pro_get_license() { - - // get option - $license = get_option( 'acf_pro_license' ); + // get license data + $license = acf_pro_get_license_option( 'acf_pro_license' ); // bail early if no value if ( ! $license ) { @@ -401,7 +390,11 @@ function acf_get_home_url() { add_filter( 'wpml_get_home_url', 'acf_license_ml_intercept', 99, 2 ); add_filter( 'trp_home_url', 'acf_license_ml_intercept', 99, 2 ); - $home_url = home_url(); + if ( acf_is_multisite_sub_site() ) { + $home_url = get_home_url( get_main_site_id() ); + } else { + $home_url = home_url(); + } // Re-enable WPML and TranslatePress's home url overrides. remove_filter( 'wpml_get_home_url', 'acf_license_ml_intercept', 99 ); @@ -416,7 +409,7 @@ function acf_get_home_url() { * @since 6.0.1 * * @param string $home_url the multilingual plugin converted home URL. - * @param string $url the original home URL. + * @param string $url the original home URL. * * @return string $url */ @@ -432,6 +425,12 @@ function acf_license_ml_intercept( $home_url, $url ) { * @return boolean true if the updates page should be hidden as we're not the primary multisite site. */ function acf_is_updates_page_visible() { + + // Hide the updates page if we're a multisite subsite, legacy multisite, and the primary site is active. + if ( acf_is_multisite_sub_site() && acf_pro_is_legacy_multisite() && acf_pro_is_license_active() ) { + return false; + } + return acf_get_setting( 'show_updates' ); } @@ -441,7 +440,7 @@ function acf_is_updates_page_visible() { * @since 5.4.0 * * @param boolean $skip_url_check Skip the check of the current site url. - * @return string|bool License key on success, or false on failure. + * @return string|boolean License key on success, or false on failure. */ function acf_pro_get_license_key( $skip_url_check = false ) { $license = acf_pro_get_license(); @@ -460,14 +459,12 @@ function acf_pro_get_license_key( $skip_url_check = false ) { } /** - * This function will update the DB license + * This function will update the DB license * - * @type function - * @date 20/09/2016 - * @since 5.4.0 + * @since 5.4.0 * - * @param string $key The license key - * @return bool The result of the update_option call + * @param string $key The license key. + * @return boolean The result of the update_option call */ function acf_pro_update_license( $key = '' ) { @@ -499,13 +496,13 @@ function acf_pro_update_license( $key = '' ) { ); // update - return update_option( 'acf_pro_license', $value ); + return acf_pro_update_license_option( 'acf_pro_license', $value ); } /** * Get count of registered ACF Blocks * - * @return int + * @return integer */ function acf_pro_get_registered_block_count() { return acf_get_store( 'block-types' )->count(); @@ -517,9 +514,9 @@ function acf_pro_get_registered_block_count() { * * @since 5.11.0 * - * @param string $license_key License key to activate. - * @param boolean $silent Return errors rather than displaying them. - * @param boolean $automatic True if this activation is happening automatically. + * @param string $license_key License key to activate. + * @param boolean $silent Return errors rather than displaying them. + * @param boolean $automatic True if this activation is happening automatically. * @return mixed $response A wp-error instance, or an array with a boolean success key, and string message key. */ function acf_pro_activate_license( $license_key, $silent = false, $automatic = false ) { @@ -604,10 +601,9 @@ function acf_pro_activate_license( $license_key, $silent = false, $automatic = f * Deactivates the registered license key. * Formally ACF_Admin_Updates::deactivate_pro_licence since 5.0.0 * - * @date 30/09/2021 * @since 5.11.0 * - * @param bool $silent Return errors rather than displaying them + * @param boolean $silent Return errors rather than displaying them * @return mixed $response A wp-error instance, or an array with a boolean success key, and string message key */ function acf_pro_deactivate_license( $silent = false ) { @@ -665,7 +661,6 @@ function acf_pro_deactivate_license( $silent = false ) { /** * Adds an admin notice using the provided WP_Error. * - * @date 14/1/19 * @since 5.7.10 * * @param WP_Error $wp_error The error to display. @@ -691,7 +686,7 @@ function display_wp_activation_error( $wp_error ) { * * @since 6.2.2 * - * @param bool $force_check If we should force a call to the API. + * @param boolean $force_check If we should force a call to the API. * @return array */ function acf_pro_get_license_status( $force_check = false ) { @@ -702,7 +697,7 @@ function acf_pro_get_license_status( $force_check = false ) { $license = ACF_PRO_LICENSE; } - $status = get_option( 'acf_pro_license_status', array() ); + $status = acf_pro_get_license_option( 'acf_pro_license_status', array() ); $next_check = isset( $status['next_check'] ) ? (int) $status['next_check'] : 0; // Call the API if necessary, if we have a license. @@ -771,10 +766,10 @@ function acf_pro_parse_license_status( $status = array() ) { * @since 6.2.2 * * @param array $status The current license status. - * @return bool True if the value was set, false otherwise. + * @return boolean True if the value was set, false otherwise. */ function acf_pro_update_license_status( $status ) { - return update_option( + return acf_pro_update_license_option( 'acf_pro_license_status', acf_pro_parse_license_status( $status ) ); @@ -785,10 +780,10 @@ function acf_pro_update_license_status( $status ) { * * @since 6.2 * - * @return bool True if the transient was deleted, false otherwise. + * @return boolean True if the transient was deleted, false otherwise. */ function acf_pro_remove_license_status() { - return delete_option( 'acf_pro_license_status' ); + return acf_pro_delete_license_option( 'acf_pro_license_status' ); } /** @@ -797,7 +792,7 @@ function acf_pro_remove_license_status() { * @since 6.2.2 * * @param array $status Optional license status array. - * @return bool True if active, false if not. + * @return boolean True if active, false if not. */ function acf_pro_is_license_active( $status = array() ) { if ( empty( $status ) ) { @@ -813,7 +808,7 @@ function acf_pro_is_license_active( $status = array() ) { * @since 6.2.2 * * @param array $status Optional license status array. - * @return bool True if expired, false if not. + * @return boolean True if expired, false if not. */ function acf_pro_is_license_expired( $status = array() ) { if ( empty( $status ) ) { @@ -829,7 +824,7 @@ function acf_pro_is_license_expired( $status = array() ) { * @since 6.2.2 * * @param array $status Optional license status array. - * @return bool True if refunded, false if not. + * @return boolean True if refunded, false if not. */ function acf_pro_was_license_refunded( $status = array() ) { if ( empty( $status ) ) { @@ -846,7 +841,7 @@ function acf_pro_was_license_refunded( $status = array() ) { * * @param array $license Optional ACF license array. * @param string $url An optional URL to provide. - * @return bool True if the URL has changed, false otherwise. + * @return boolean True if the URL has changed, false otherwise. */ function acf_pro_has_license_url_changed( $license = array(), $url = '' ) { $license = ! empty( $license ) ? $license : acf_pro_get_license(); @@ -892,7 +887,7 @@ function acf_pro_maybe_reactivate_license() { } // Bail if we're in an AJAX request, or tried this recently. - if ( acf_is_ajax() || get_transient( 'acf_pro_license_reactivated' ) ) { + if ( acf_is_ajax() || acf_pro_get_license_transient( 'acf_pro_license_reactivated' ) ) { return; } @@ -904,7 +899,7 @@ function acf_pro_maybe_reactivate_license() { } // Set a transient, so we don't keep trying this in a short period. - set_transient( 'acf_pro_license_reactivated', true, 3 * HOUR_IN_SECONDS ); + acf_pro_set_license_transient( 'acf_pro_license_reactivated', true, HOUR_IN_SECONDS ); // Prevent subsequent attempts at reactivation by updating the license URL. acf_pro_update_license( $license['key'] ); @@ -928,7 +923,7 @@ function acf_pro_maybe_reactivate_license() { acf_pro_update_license_status( $license_status ); } else { acf_add_admin_notice( - __( "Your site URL has changed since last activating your license. We've automatically activated it for this site URL.", 'acf' ), + __( 'ACF PRO —', 'acf' ) . ' ' . __( "Your site URL has changed since last activating your license. We've automatically activated it for this site URL.", 'acf' ), 'success' ); } @@ -957,3 +952,132 @@ function acf_pro_get_manage_license_url( $status = array() ) { return $url; } + +/** + * Returns a multisite compatible licensing data value + * For multisite installs, this is from the main site options if available or the normal option otherwise. + * + * @since 6.2.6 + * + * @param string $option_name The option name to load. + * @param mixed $default_value The default value to return if not set. + * @return mixed the resulting option value from cache or database. + */ +function acf_pro_get_license_option( $option_name, $default_value = false ) { + if ( acf_pro_is_legacy_multisite() ) { + return get_blog_option( get_main_site_id(), $option_name, $default_value ); + } + + return get_option( $option_name, $default_value ); +} + +/** + * Updates a multisite compatible licensing data value + * For multisite installs, this is from the main site options if available or the normal option otherwise. + * + * @since 6.2.6 + * + * @param string $option_name The option name to update. + * @param mixed $value The new value to set. + * @return boolean True if the value was updated, false otherwise. + */ +function acf_pro_update_license_option( $option_name, $value = false ) { + if ( acf_pro_is_legacy_multisite() ) { + return update_blog_option( get_main_site_id(), $option_name, $value ); + } + + return update_option( $option_name, $value ); +} + +/** + * Deletes a multisite compatible licensing data value + * For multisite installs, this is from the main site options if available or the normal option otherwise. + * + * @since 6.2.6 + * + * @param string $option_name The option name to load. + * @return boolean The result of the deletion request. + */ +function acf_pro_delete_license_option( $option_name ) { + if ( acf_pro_is_legacy_multisite() && acf_is_multisite_sub_site() ) { + return delete_blog_option( get_main_site_id(), $option_name ); + } + + return delete_option( $option_name ); +} + +/** + * Returns a license related transient + * For multisite installs, this is from the network, otherwise from the normal transient function. + * + * @since 6.2.6 + * + * @param string $transient_name The name of the transient to return. + * @return mixed the resulting transient value from cache or database. + */ +function acf_pro_get_license_transient( $transient_name ) { + if ( acf_pro_is_legacy_multisite() ) { + return get_site_transient( $transient_name ); + } else { + return get_transient( $transient_name ); + } +} + +/** + * Updates a license related transient + * For multisite installs, this is from the network, otherwise from the normal transient function. + * + * @since 6.2.6 + * + * @param string $name The name of the transient to update. + * @param mixed $value The new value of the transient. + * @return mixed The result of the set function. + */ +function acf_pro_set_license_transient( $name, $value ) { + if ( acf_pro_is_legacy_multisite() ) { + return set_site_transient( $name, $value ); + } else { + return set_transient( $name, $value ); + } +} + +/** + * Deletes a license related transient + * For multisite installs, this is from the network, otherwise from the normal transient function. + * + * @since 6.2.6 + * + * @param string $transient_name The name of the transient to return. + * @return boolean True if the transient was deleted, false otherwise. + */ +function acf_pro_delete_license_transient( $transient_name ) { + if ( acf_pro_is_legacy_multisite() ) { + return delete_site_transient( $transient_name ); + } else { + return delete_transient( $transient_name ); + } +} + +/** + * Checks if the current license allows the legacy multisite behavior if we're on a multisite install. + * + * @since 6.2.6 + * + * @param array $status Optional license status array. + * @return boolean True if legacy multisite, false if not. + */ +function acf_pro_is_legacy_multisite( array $status = array() ) { + if ( ! is_multisite() ) { + return false; + } + + if ( empty( $status ) ) { + $status = get_blog_option( get_main_site_id(), 'acf_pro_license_status', array() ); + } + + if ( ! is_array( $status ) || ! isset( $status['legacy_multisite'] ) ) { + return false; + } + + return $status['legacy_multisite'] === true; +} diff --git a/readme.txt b/readme.txt index b6dfdff..89004fa 100644 --- a/readme.txt +++ b/readme.txt @@ -2,9 +2,9 @@ Contributors: elliotcondon Tags: acf, fields, custom fields, meta, repeater Requires at least: 5.8 -Tested up to: 6.4 +Tested up to: 6.4.3 Requires PHP: 7.0 -Stable tag: 6.2.4 +Stable tag: 6.2.7 License: GPLv2 or later License URI: https://www.gnu.org/licenses/gpl-2.0.html @@ -92,6 +92,45 @@ From your WordPress dashboard == Changelog == += 6.2.7 = +*Release Date 27th February 2024* + +* Security Fix - `the_field` now escapes potentially unsafe HTML as notified since ACF 6.2.5. For full information, please read [the release blog post](https://www.advancedcustomfields.com/blog/acf-6-2-7-security-release/) +* Security Fix - Field and Layout names are now enforced to alphanumeric characters, resolving a potential XSS issue +* Security Fix - The default render template for select2 fields no longer allows HTML to be rendered resolving a potential XSS issue +* Security Enhancement - A `acf/shortcode/prevent_access` filter is now available to limit what data the ACF shortcode is allowed to access +* Security Enhancement - i18n translated strings are now escaped on output +* Enhancement - ACF now universally uses WordPress file system functions rather than native PHP functions + += 6.2.6.1 = +*Release Date 7th February 2024* + +* Fix - Fatal JS error no longer occurs when editing fields in the classic editor when Yoast or other plugins which load block editor components are installed +* Fix - Using `$escape_html` on get functions for array returning field types no longer produces an Array to string conversion error + += 6.2.6 = +*Release Date 6th February 2024* + +* Enhancement - The `get_field()` and other `get_` functions now support an `escape_html` parameter which return an HTML safe field value +* Enhancement - The URL field will be now escaped with `esc_url` rather than `wp_kses_post` when returning an HTML safe value +* Fix - ACF fields will now correctly save into the WordPress created revision resolving issues with previews of drafts on WordPress 6.4 or newer +* Fix - Multisite subsites will now correctly be activated by the main site where the ACF PRO license allows, hiding the updates page on those subsites +* Fix - Field types in which the `required` property would have no effect (such as the tab, or accordion) will no longer show the option +* Fix - Duplicating a field group now maintains the current page of field groups being displayed +* Fix - Fields in ACF Blocks in edit mode in hybrid themes will now use ACF’s styling, rather than some attributes being overridden by the theme +* Fix - Text in some admin notices will no longer overlap the dismiss button +* Fix - The word `link` is now prohibited from being used as a CPT name to avoid a WordPress core conflict +* Fix - Flexible content layouts can no longer be duplicated over their maximum count limit +* Fix - All ACF notifications shown outside of ACF’s admin screens are now prefixed with the plugin name +* Fix - ACF no longer checks if a polyfill is needed for , ]` and - * marks start and end positions of items to be ignored. - * - * @var array[] - */ - private $ignoreItems = array(); - - /** - * @param string $serialized - * @param string[] $allowedClasses - */ - public function __construct($serialized, array $allowedClasses) - { - $this->serialized = $serialized; - $this->allowedClasses = $allowedClasses; - - $this->buildIgnoreItems(); - $this->substituteObjects(); - } - - /** - * @return string - */ - public function getSubstitutedSerialized() - { - return $this->serialized; - } - - /** - * Identifies items to be ignored - like nested serializations in string literals. - */ - private function buildIgnoreItems() - { - $offset = 0; - while (preg_match(self::PATTERN_STRING, $this->serialized, $matches, PREG_OFFSET_CAPTURE, $offset)) { - $length = (int)$matches[1][0]; // given length in serialized data (e.g. `s:123:"` --> 123) - $start = $matches[2][1]; // offset position of quote character - $end = $start + $length + 1; - $offset = $end + 1; - - // serialized string nested in outer serialized string - if ($this->ignore($start, $end)) { - continue; - } - - $this->ignoreItems[] = array($start, $end); - } - } - - /** - * Substitutes disallowed object class names and respects items to be ignored. - */ - private function substituteObjects() - { - $offset = 0; - while (preg_match(self::PATTERN_OBJECT, $this->serialized, $matches, PREG_OFFSET_CAPTURE, $offset)) { - $completeMatch = (string)$matches[0][0]; - $completeLength = strlen($completeMatch); - $start = $matches[0][1]; - $end = $start + $completeLength; - $leftBorder = (string)$matches[1][0]; - $className = (string)$matches[2][0]; - $objectSize = (int)$matches[3][0]; - $offset = $end + 1; - - // class name is actually allowed - skip this item - if (in_array($className, $this->allowedClasses, true)) { - continue; - } - // serialized object nested in outer serialized string - if ($this->ignore($start, $end)) { - continue; - } - - $incompleteItem = $this->sanitizeItem($className, $leftBorder, $objectSize); - $incompleteItemLength = strlen($incompleteItem); - $offset = $start + $incompleteItemLength + 1; - - $this->replace($incompleteItem, $start, $end); - $this->shift($end, $incompleteItemLength - $completeLength); - } - } - - /** - * Replaces sanitized object class names in serialized data. - * - * @param string $replacement Sanitized object data - * @param int $start Start offset in serialized data - * @param int $end End offset in serialized data - */ - private function replace($replacement, $start, $end) - { - $this->serialized = substr($this->serialized, 0, $start) - . $replacement . substr($this->serialized, $end); - } - - /** - * Whether given offset positions should be ignored. - * - * @param int $start - * @param int $end - * @return bool - */ - private function ignore($start, $end) - { - foreach ($this->ignoreItems as $ignoreItem) { - if ($ignoreItem[0] <= $start && $ignoreItem[1] >= $end) { - return true; - } - } - - return false; - } - - /** - * Shifts offset positions of ignore items by `$size`. - * This is necessary whenever object class names have been - * substituted which have a different length than before. - * - * @param int $offset - * @param int $size - */ - private function shift($offset, $size) - { - foreach ($this->ignoreItems as &$ignoreItem) { - // only focus on items starting after given offset - if ($ignoreItem[0] < $offset) { - continue; - } - $ignoreItem[0] += $size; - $ignoreItem[1] += $size; - } - } - - /** - * Sanitizes object class item. - * - * @param string $className - * @param int $leftBorder - * @param int $objectSize - * @return string - */ - private function sanitizeItem($className, $leftBorder, $objectSize) - { - return sprintf( - '%sO:22:"__PHP_Incomplete_Class":%d:{s:27:"__PHP_Incomplete_Class_Name";%s', - $leftBorder, - $objectSize + 1, // size of object + 1 for added string - \serialize($className) - ); - } -} diff --git a/vendor/polyfill-unserialize/src/Unserialize.php b/vendor/polyfill-unserialize/src/Unserialize.php deleted file mode 100644 index f22f799..0000000 --- a/vendor/polyfill-unserialize/src/Unserialize.php +++ /dev/null @@ -1,39 +0,0 @@ -= 70000) { - return \unserialize($serialized, $options); - } - if (!array_key_exists('allowed_classes', $options) || true === $options['allowed_classes']) { - return \unserialize($serialized); - } - $allowedClasses = $options['allowed_classes']; - if (false === $allowedClasses) { - $allowedClasses = array(); - } - if (!is_array($allowedClasses)) { - $allowedClasses = array(); - trigger_error( - 'unserialize(): allowed_classes option should be array or boolean', - E_USER_WARNING - ); - } - - $worker = new DisallowedClassesSubstitutor($serialized, $allowedClasses); - - return \unserialize($worker->getSubstitutedSerialized()); - } -}
                            + field['collapsed'] ) : ?> - + - + - - - + + +